From 10145aeb3c916023b84b83973af45bc83c24a906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Wed, 5 Jan 2022 15:21:53 +0100 Subject: [PATCH 01/90] cjio-9 subset more than one type: `subset --cotype Building,TINRelief,Road` --- CHANGELOG.md | 4 ++++ cjio/cityjson.py | 28 ++++++++++++++++------------ cjio/cjio.py | 7 ++++--- tests/test_cityjson.py | 6 +++--- 4 files changed, 27 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9f634e..9b79aae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [unreleased] +### Added +- Subset more than one CityObject type (#9) + ## [0.7.0] - 2021-12-01 ### Changed diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 008a762..3772203 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -18,6 +18,7 @@ from sys import platform from click import progressbar from datetime import datetime, date +from typing import Tuple MODULE_NUMPY_AVAILABLE = True MODULE_PYPROJ_AVAILABLE = True MODULE_EARCUT_AVAILABLE = True @@ -737,19 +738,22 @@ def get_subset_ids(self, lsIDs, exclude=False, update_metadata=True): return cm2 - def get_subset_cotype(self, cotype, exclude=False): + def get_subset_cotype(self, cotypes: Tuple[str], exclude=False): # print ('get_subset_cotype') - lsCOtypes = [cotype] - if cotype == 'Building': - lsCOtypes.append('BuildingInstallation') - lsCOtypes.append('BuildingPart') - if cotype == 'Bridge': - lsCOtypes.append('BridgePart') - lsCOtypes.append('BridgeInstallation') - lsCOtypes.append('BridgeConstructionElement') - if cotype == 'Tunnel': - lsCOtypes.append('TunnelInstallation') - lsCOtypes.append('TunnelPart') + if not isinstance(cotypes, tuple): + raise TypeError("cotypes must be a tuple of CityObject types") + lsCOtypes = list(cotypes) + for cotype in cotypes: + if cotype == 'Building': + lsCOtypes.append('BuildingInstallation') + lsCOtypes.append('BuildingPart') + if cotype == 'Bridge': + lsCOtypes.append('BridgePart') + lsCOtypes.append('BridgeInstallation') + lsCOtypes.append('BridgeConstructionElement') + if cotype == 'Tunnel': + lsCOtypes.append('TunnelInstallation') + lsCOtypes.append('TunnelPart') #-- new sliced CityJSON object cm2 = CityJSON() cm2.j["version"] = self.j["version"] diff --git a/cjio/cjio.py b/cjio/cjio.py index ae6f8f3..22c5ad7 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -328,15 +328,16 @@ def processor(cm): @click.option('--bbox', nargs=4, type=float, help='2D bbox: minx miny maxx maxy.') @click.option('--random', type=int, help='Number of random City Objects to select.') @click.option('--cotype', + multiple=True, type=click.Choice(['Building', 'Bridge', 'Road', 'TransportSquare', 'LandUse', 'Railway', 'TINRelief', 'WaterBody', 'PlantCover', 'SolitaryVegetationObject', 'CityFurniture', 'GenericCityObject', 'Tunnel']), - help='The City Object type') + help='The City Object type; can be used multiple times.') @click.option('--exclude', is_flag=True, help='Excludes the selection, thus delete the selected object(s).') def subset_cmd(id, bbox, random, cotype, exclude): """ Create a subset, City Objects can be selected by: (1) IDs of City Objects; (2) bbox; - (3) City Object type; + (3) City Object type(s); (4) randomly. These can be combined, except random which overwrites others. @@ -349,7 +350,7 @@ def subset_cmd(id, bbox, random, cotype, exclude): cjio myfile.city.json subset --bbox 104607 490148 104703 490257 save out.city.json cjio myfile.city.json subset --id house12 save out.city.json cjio myfile.city.json subset --random 5 save out.city.json - cjio myfile.city.json subset --cotype LandUse save out.city.json + cjio myfile.city.json subset --cotype LandUse --cotype Building save out.city.json """ def processor(cm): utils.print_cmd_status('Subset of CityJSON') diff --git a/tests/test_cityjson.py b/tests/test_cityjson.py index 16b44c4..1b45388 100644 --- a/tests/test_cityjson.py +++ b/tests/test_cityjson.py @@ -101,9 +101,9 @@ def test_subset_random(self, zurich_subset): cnt = sum(1 for co in subset.j["CityObjects"].values() if co["type"] == "Building") assert cnt == 10 - def test_subset_cotype(self, zurich_subset): - subset = zurich_subset.get_subset_cotype("Building") - types = ["Building", "BuildingPart", "BuildingInstallation", "BuildingConstructiveElement", "BuildingFurniture", "BuildingStorey", "BuildingRoom", "BuildingUnit"] + def test_subset_cotype(self, delft): + subset = delft.get_subset_cotype(["Building", "LandUse"]) + types = ["LandUse", "Building", "BuildingPart", "BuildingInstallation", "BuildingConstructiveElement", "BuildingFurniture", "BuildingStorey", "BuildingRoom", "BuildingUnit"] for co in subset.j['CityObjects']: assert subset.j['CityObjects'][co]['type'] in types From 724ce052a9d6dd64469649fd68c97388603cfa1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Wed, 5 Jan 2022 15:54:24 +0100 Subject: [PATCH 02/90] cjio-10 BBOX subset in a loop has unreliable behaviour --- CHANGELOG.md | 3 +++ cjio/cityjson.py | 2 +- tests/test_cityjson.py | 11 +++++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b79aae..930863a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ### Added - Subset more than one CityObject type (#9) +### Fixed +- Subset with BBOX does not modify the input model anymore (#10) + ## [0.7.0] - 2021-12-01 ### Changed diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 3772203..cb4acb6 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -629,7 +629,7 @@ def get_subset_bbox(self, bbox, exclude=False): re.add(each) for each in re: - cm2.j["CityObjects"][each] = self.j["CityObjects"][each] + cm2.j["CityObjects"][each] = copy.deepcopy(self.j["CityObjects"][each]) #-- geometry subset.process_geometry(self.j, cm2.j) #-- templates diff --git a/tests/test_cityjson.py b/tests/test_cityjson.py index 1b45388..e6bae4b 100644 --- a/tests/test_cityjson.py +++ b/tests/test_cityjson.py @@ -95,6 +95,17 @@ def test_subset_bbox(self, zurich_subset): (centroid[1] >= bbox[1]) and (centroid[0] < bbox[2]) and (centroid[1] < bbox[3])) + + def test_subset_bbox_loop(self, delft): + """Issue #10""" + bbox = delft.update_bbox() + subs_box = (84873.68845606346, 447503.6748565406, 84919.65679078053, 447548.4091420035) + nr_cos = [] + for i in range(4): + s = delft.get_subset_bbox(subs_box) + nr_cos.append(len(s.j["CityObjects"])) + _f = nr_cos[0] + assert all(i == _f for i in nr_cos) def test_subset_random(self, zurich_subset): subset = zurich_subset.get_subset_random(10) From a156e6945ddead375bd8caa5f6608f199663d4bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Wed, 5 Jan 2022 16:21:33 +0100 Subject: [PATCH 03/90] cjio-19 cityjson.load() crashes when reading a geom of type "GeometryInstance" Fixes #19 --- CHANGELOG.md | 1 + cjio/cityjson.py | 2 +- cjio/models.py | 3 +++ tests/test_io.py | 13 ++++++++++--- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 930863a..32705bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ ### Fixed - Subset with BBOX does not modify the input model anymore (#10) +- `cityjson.load()` does not fail on a `GeometryInstance`, however it does not load it either (#19) ## [0.7.0] - 2021-12-01 diff --git a/cjio/cityjson.py b/cjio/cityjson.py index cb4acb6..8613c22 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -252,7 +252,7 @@ def load_from_j(self, transform: bool = True): geometry.append( models.Geometry( type=geom['type'], - lod=geom['lod'], + lod=geom.get('lod'), boundaries=geom['boundaries'], semantics_obj=semantics, texture_obj=texture, diff --git a/cjio/models.py b/cjio/models.py index d1f469f..f08c16c 100644 --- a/cjio/models.py +++ b/cjio/models.py @@ -5,6 +5,7 @@ from copy import deepcopy import collections from typing import Iterable, Mapping +import warnings # TODO BD: this iteration is not really nice, maybe implement it in a way that don't need to use .items() and .values() # for co_id, co in cm.cityobjects.items(): @@ -282,6 +283,8 @@ def _dereference_boundaries(self, btype, boundaries, vertices, transform=None): sh.append(s) solids.append(sh) return solids + elif btype.lower() == 'geometryinstance': + warnings.warn("Unsupported geometry type GeometryInstance", UserWarning) else: raise TypeError("Unknown geometry type: {}".format(btype)) diff --git a/tests/test_io.py b/tests/test_io.py index 2198393..ec61480 100644 --- a/tests/test_io.py +++ b/tests/test_io.py @@ -2,14 +2,21 @@ """ import os + +import pytest + from cjio import cityjson class TestLoading: - def test_from_path(self, data_dir): - p = os.path.join(data_dir, 'rotterdam', 'rotterdam_subset.json') + @pytest.mark.parametrize("file", ( + ('rotterdam', 'rotterdam_subset.json'), + ('dummy', 'dummy.json') # Issue #19 with loading GeometryInstance + )) + def test_from_path(self, data_dir, file): + p = os.path.join(data_dir, *file) cm = cityjson.load(p) assert hasattr(cm, 'cityobjects') - assert '{71B60053-BC28-404D-BAB9-8A642AAC0CF4}' in cm.cityobjects + # assert '{71B60053-BC28-404D-BAB9-8A642AAC0CF4}' in cm.cityobjects class TestExport: def test_save_to_path(self, data_dir): From 98a21a1479d0f3d1285583f0f9be5ac345f6c310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Wed, 5 Jan 2022 17:34:12 +0100 Subject: [PATCH 04/90] Fixes #83 --- cjio/geom_help.py | 6 +++--- tests/test_cityjson.py | 2 +- tests/test_convert.py | 19 ++++++++++++++++--- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/cjio/geom_help.py b/cjio/geom_help.py index 30e9524..2df7b08 100755 --- a/cjio/geom_help.py +++ b/cjio/geom_help.py @@ -36,7 +36,7 @@ def to_2d(p, n): # newell = np.array([1, 3, 4.2]) # n = newell/math.sqrt(p[0]*p[0] + p[1]*p[1] + p[2]*p[2]) x3 = np.array([1.1, 1.1, 1.1]) #-- is this always a good value?? - if((n==x3).all()): + if (n == x3).all(): x3 += np.array([1,2,3]) x3 = x3 - np.dot(x3, n) * n # print(n, x3) @@ -61,9 +61,9 @@ def get_normal_newell(poly): if (n==np.array([0.0, 0.0, 0.0])).all(): # print("one wrong") - return (n, False) + return n n = n / math.sqrt(n[0]*n[0] + n[1]*n[1] + n[2]*n[2]) - return (n, True) + return n def triangulate_face(face, vnp): diff --git a/tests/test_cityjson.py b/tests/test_cityjson.py index e6bae4b..c32ba4e 100644 --- a/tests/test_cityjson.py +++ b/tests/test_cityjson.py @@ -113,7 +113,7 @@ def test_subset_random(self, zurich_subset): assert cnt == 10 def test_subset_cotype(self, delft): - subset = delft.get_subset_cotype(["Building", "LandUse"]) + subset = delft.get_subset_cotype(("Building", "LandUse")) types = ["LandUse", "Building", "BuildingPart", "BuildingInstallation", "BuildingConstructiveElement", "BuildingFurniture", "BuildingStorey", "BuildingRoom", "BuildingUnit"] for co in subset.j['CityObjects']: diff --git a/tests/test_convert.py b/tests/test_convert.py index 9c141c3..bb86106 100644 --- a/tests/test_convert.py +++ b/tests/test_convert.py @@ -1,10 +1,23 @@ -from cjio import convert +import pytest +import os +from cjio import convert, cityjson + + +@pytest.fixture(scope="function", + params=[ + ('rotterdam', 'rotterdam_subset.json'), + ('delft.json',) + ]) +def several_cms(data_dir, request): + p = os.path.join(data_dir, *request.param) + with open(p, 'r') as f: + yield cityjson.CityJSON(file=f) class TestGltf: - def test_convert_to_glb(self, delft): - glb = convert.to_glb(delft.j) + def test_convert_to_glb(self, several_cms): + glb = convert.to_glb(several_cms.j) class TestB3dm: From ddcec741ba32ef41e27dc7fb7e979e7b5de66a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Thu, 6 Jan 2022 17:06:42 +0100 Subject: [PATCH 05/90] Update glb export to v1.1 --- cjio/cityjson.py | 9 ++++----- cjio/cjio.py | 2 +- cjio/convert.py | 15 ++++++++------- tests/test_convert.py | 12 ++++++++++-- 4 files changed, 23 insertions(+), 15 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 926b810..82d0a00 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1527,15 +1527,14 @@ def triangulate_face(self, face, vnp): def export2b3dm(self): - glb = convert.to_glb(self.j) + glb = convert.to_glb(self) b3dm = convert.to_b3dm(self, glb) return b3dm - def export2gltf(self): - # TODO B: probably no need to double wrap this to_gltf(), but its long, and - # the current cityjson.py is long already - glb = convert.to_glb(self.j) + def export2glb(self): + self.decompress() + glb = convert.to_glb(self) return glb def export2jsonl(self): diff --git a/cjio/cjio.py b/cjio/cjio.py index b7da62d..c81a62d 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -168,7 +168,7 @@ def exporter(cm): bufferbin = "{}.glb".format(fname) binfile = os.path.join(os.path.dirname(output['path']), bufferbin) utils.print_cmd_status("Exporting CityJSON to glb %s" % binfile) - glb = cm.export2gltf() + glb = cm.export2glb() # TODO B: how many buffer can there be in the 'buffers'? try: glb.seek(0) diff --git a/cjio/convert.py b/cjio/convert.py index f59d621..1670593 100644 --- a/cjio/convert.py +++ b/cjio/convert.py @@ -100,7 +100,7 @@ def to_b3dm(cm, glb): return b3dm_bin -def to_glb(j): +def to_glb(cm): """Convert to Binary glTF (.glb) Adapted from CityJSON2glTF: https://github.com/tudelft3d/CityJSON2glTF @@ -118,7 +118,7 @@ def to_glb(j): gltf_bin = bytearray() glb = BytesIO() try: - if len(j['CityObjects']) == 0: + if len(cm.j['CityObjects']) == 0: return glb except KeyError as e: raise TypeError("Not a CityJSON") @@ -140,14 +140,15 @@ def to_glb(j): matid = 0 material_ids = [] - vertexlist = np.array(j["vertices"]) - for coi,theid in enumerate(j['CityObjects']): + vertexlist = np.array(cm.j["vertices"]) + + for coi,theid in enumerate(cm.j['CityObjects']): forimax = [] - if len(j['CityObjects'][theid]['geometry']) != 0: + if "geometry" in cm.j['CityObjects'][theid] and len(cm.j['CityObjects'][theid]['geometry']) != 0: - comType = j['CityObjects'][theid]['type'] + comType = cm.j['CityObjects'][theid]['type'] if (comType == "Building" or comType == "BuildingPart" or comType == "BuildingInstallation"): matid = 0 elif (comType == "TINRelief"): @@ -171,7 +172,7 @@ def to_glb(j): matid = 9 material_ids.append(matid) - for geom in j['CityObjects'][theid]['geometry']: + for geom in cm.j['CityObjects'][theid]['geometry']: poscount = poscount + 1 if geom['type'] == "Solid": triList = [] diff --git a/tests/test_convert.py b/tests/test_convert.py index bb86106..7208098 100644 --- a/tests/test_convert.py +++ b/tests/test_convert.py @@ -17,11 +17,19 @@ def several_cms(data_dir, request): class TestGltf: def test_convert_to_glb(self, several_cms): - glb = convert.to_glb(several_cms.j) + glb = several_cms.export2glb() + + def test_debug_den_haag_glb(self, data_dir): + # CityJSON v1.1 + p = os.path.join(data_dir, "DH_01.city.json") + with open(p, 'r') as f: + cm = cityjson.CityJSON(file=f) + glb = cm.export2glb() + class TestB3dm: def test_convert_to_b3dm(self, delft): - glb = convert.to_glb(delft.j) + glb = delft.export2glb() b3dm = convert.to_b3dm(delft, glb) From db9ac34105fbb0ac6be39980984e3e67baf14828 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Thu, 6 Jan 2022 18:44:40 +0100 Subject: [PATCH 06/90] Fix glb export when CityObject does not have geometry Fixes #20 --- CHANGELOG.md | 1 + cjio/convert.py | 10 ++++++---- tests/test_convert.py | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d2be73..a428044 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### Fixed - Subset with BBOX does not modify the input model anymore (#10) - `cityjson.load()` does not fail on a `GeometryInstance`, however it does not load it either (#19) +- Fixes to the *glb* exporter (#20, #57, #83) ## [0.7.3] - 2021-12-15 diff --git a/cjio/convert.py b/cjio/convert.py index 1670593..9939a63 100644 --- a/cjio/convert.py +++ b/cjio/convert.py @@ -140,10 +140,11 @@ def to_glb(cm): matid = 0 material_ids = [] - vertexlist = np.array(cm.j["vertices"]) - for coi,theid in enumerate(cm.j['CityObjects']): + # CityObject index with geometry that goes into the glb + coi = 0 + for theid in cm.j['CityObjects']: forimax = [] if "geometry" in cm.j['CityObjects'][theid] and len(cm.j['CityObjects'][theid]['geometry']) != 0: @@ -163,8 +164,7 @@ def to_glb(cm): matid = 5 elif (comType == "CityFurniture"): matid = 6 - elif ( - comType == "Bridge" or comType == "BridgePart" or comType == "BridgeInstallation" or comType == "BridgeConstructionElement"): + elif (comType == "Bridge" or comType == "BridgePart" or comType == "BridgeInstallation" or comType == "BridgeConstructionElement"): matid = 7 elif (comType == "Tunnel" or comType == "TunnelPart" or comType == "TunnelInstallation"): matid = 8 @@ -305,6 +305,8 @@ def to_glb(cm): # one node per CityObject node_indices.append(coi) + coi += 1 + #-- buffers buffer = dict() offset, padding = byte_offset(len(gltf_bin), 4) diff --git a/tests/test_convert.py b/tests/test_convert.py index 7208098..14ada7c 100644 --- a/tests/test_convert.py +++ b/tests/test_convert.py @@ -21,7 +21,7 @@ def test_convert_to_glb(self, several_cms): def test_debug_den_haag_glb(self, data_dir): # CityJSON v1.1 - p = os.path.join(data_dir, "DH_01.city.json") + p = os.path.join(data_dir, "DH_01_subs.city.json") with open(p, 'r') as f: cm = cityjson.CityJSON(file=f) glb = cm.export2glb() From 0b0352bb85a3bc917fc2d499d347aaf5af18805f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Thu, 6 Jan 2022 20:33:37 +0100 Subject: [PATCH 07/90] Fix coordinate system on glb export --- CHANGELOG.md | 2 +- cjio/convert.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a428044..f0d429f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ ### Fixed - Subset with BBOX does not modify the input model anymore (#10) - `cityjson.load()` does not fail on a `GeometryInstance`, however it does not load it either (#19) -- Fixes to the *glb* exporter (#20, #57, #83) +- Fixes to the *glb* exporter (#20, #57, #83), and fixed the coordinate system ## [0.7.3] - 2021-12-15 diff --git a/cjio/convert.py b/cjio/convert.py index 9939a63..bc8aadf 100644 --- a/cjio/convert.py +++ b/cjio/convert.py @@ -200,7 +200,10 @@ def to_glb(cm): # need to reindex the vertices, otherwise if the vtx index exceeds the nr. of vertices in the # accessor then we get "ACCESSOR_INDEX_OOB" error for i,v in enumerate(flatgeom): - vtx_np[i] = vertexlist[v] + # Need to swap the axis, because gltf uses a right-handed coordinate + # system. glTF defines +Y as up, +Z as forward, and -X as right; + # the front of a glTF asset faces +Z. + vtx_np[i] = np.array((vertexlist[v][1], vertexlist[v][2], vertexlist[v][0])) vtx_idx_np[i] = i bin_vtx = vtx_np.astype(np.float32).tostring() # convert geometry indices to binary From b52015b1a164e17cf7079c773063e92931ed0253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Mon, 10 Jan 2022 19:15:17 +0100 Subject: [PATCH 08/90] Update triangulate method fixtures to parameterized fixtures --- tests/conftest.py | 46 +++++++++++++++++++++--------------------- tests/test_cityjson.py | 6 ++---- 2 files changed, 25 insertions(+), 27 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 4386c9a..82f628d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -137,29 +137,29 @@ def vertices(): ] -@pytest.fixture(scope='session') -def materials(data_dir): - p1 = os.path.join(data_dir, 'material', 'mt-1.json') - p2 = os.path.join(data_dir, 'material', 'mt-2.json') - p3 = os.path.join(data_dir, 'dummy', 'composite_solid_with_material.json') - p4 = os.path.join(data_dir, 'dummy', 'dummy.json') - p5 = os.path.join(data_dir, 'dummy', 'multisurface_with_material.json') - cj = [] - for p in (p1, p2, p3, p4, p5): - with open(p, 'r') as f: - cj.append(cityjson.CityJSON(file=f)) - return cj - -@pytest.fixture(scope='session') -def triangulated(data_dir): - p1 = os.path.join(data_dir, 'material', 'mt-1-triangulated.json') - p2 = os.path.join(data_dir, 'material', 'mt-2-triangulated.json') - p3 = os.path.join(data_dir, 'dummy', 'dummy-triangulated.json') - cj = [] - for p in (p1, p2, p3): - with open(p, 'r') as f: - cj.append(cityjson.CityJSON(file=f)) - return cj +@pytest.fixture(scope='session', + params=[ + ('material', 'mt-1.json'), + ('material', 'mt-2.json'), + ('dummy', 'composite_solid_with_material.json'), + ('dummy', 'dummy.json'), + ('dummy', 'multisurface_with_material.json') + ]) +def materials(data_dir, request): + p = os.path.join(data_dir, *request.param) + with open(p, 'r') as f: + yield cityjson.CityJSON(file=f) + +@pytest.fixture(scope='session', + params=[ + ('material', 'mt-1-triangulated.json'), + ('material', 'mt-2-triangulated.json'), + ('dummy', 'dummy-triangulated.json') + ]) +def triangulated(data_dir, request): + p = os.path.join(data_dir, *request.param) + with open(p, 'r') as f: + yield cityjson.CityJSON(file=f) @pytest.fixture(scope='session') diff --git a/tests/test_cityjson.py b/tests/test_cityjson.py index c32ba4e..b016d97 100644 --- a/tests/test_cityjson.py +++ b/tests/test_cityjson.py @@ -202,13 +202,11 @@ def test_convert_to_stl(self, delft): def test_triangulate(self, materials): """Test #101""" cm = materials - for item in cm: - item.triangulate() + cm.triangulate() def test_is_triangulate(self, triangulated): cm = triangulated - for item in cm: - assert item.is_triangulated() + assert cm.is_triangulated() def test_convert_to_jsonl(self, delft): cm = copy.deepcopy(delft) From ccbad37b27a5418933bbd880bbdab5df0eb30237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Mon, 10 Jan 2022 19:22:46 +0100 Subject: [PATCH 09/90] Revert get_normal_newell so that it also returns the boolean --- cjio/geom_help.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cjio/geom_help.py b/cjio/geom_help.py index 2df7b08..cb1b282 100755 --- a/cjio/geom_help.py +++ b/cjio/geom_help.py @@ -61,9 +61,9 @@ def get_normal_newell(poly): if (n==np.array([0.0, 0.0, 0.0])).all(): # print("one wrong") - return n + return (n, False) n = n / math.sqrt(n[0]*n[0] + n[1]*n[1] + n[2]*n[2]) - return n + return (n, True) def triangulate_face(face, vnp): @@ -82,7 +82,7 @@ def triangulate_face(face, vnp): total += len(face[i]) rings[i] = total # 1. normal with Newell's method - n = get_normal_newell(sfv) + n, b = get_normal_newell(sfv) sfv2d = np.zeros((sfv.shape[0], 2)) for i, p in enumerate(sfv): xy = to_2d(p, n) From 8734e51747db6d6a08274ca5dad2a57282134a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Mon, 10 Jan 2022 19:26:59 +0100 Subject: [PATCH 10/90] Fix materials merge test --- tests/conftest.py | 12 ++++++++++++ tests/test_cityjson.py | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 82f628d..5767798 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -150,6 +150,18 @@ def materials(data_dir, request): with open(p, 'r') as f: yield cityjson.CityJSON(file=f) +@pytest.fixture(scope='session') +def materials_two(data_dir): + """Two models with materials for testing their merging""" + cms = [] + p = os.path.join(data_dir, 'material', 'mt-1.json') + with open(p, 'r') as f: + cms.append(cityjson.CityJSON(file=f)) + p = os.path.join(data_dir, 'material', 'mt-2.json') + with open(p, 'r') as f: + cms.append(cityjson.CityJSON(file=f)) + yield cms + @pytest.fixture(scope='session', params=[ ('material', 'mt-1-triangulated.json'), diff --git a/tests/test_cityjson.py b/tests/test_cityjson.py index b016d97..dfee132 100644 --- a/tests/test_cityjson.py +++ b/tests/test_cityjson.py @@ -222,12 +222,12 @@ def test_filter_lod(self, multi_lod): for geom in cm.j['CityObjects'][coid]['geometry']: assert geom["lod"] == "1.3" - def test_merge_materials(self, materials): + def test_merge_materials(self, materials_two): """Testing #100 Merging two files with materials. One has the member 'values', the other has the member 'value' on their CityObjects. """ - cm1, cm2 = materials[:2] + cm1, cm2 = materials_two # cm1 contains the CityObject with 'value'. During the merge, the Material Object # from cm1 is appended to the list of Materials in cm2 assert cm2.merge([cm1, ]) From b9d83654b5d1ef32f2924a9ccf20fb9ad521cd9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Mon, 10 Jan 2022 19:36:01 +0100 Subject: [PATCH 11/90] cjio-35 Make export format an argument not an option --- CHANGELOG.md | 3 +++ README.rst | 4 ++-- cjio/cjio.py | 13 ++++++------- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0d429f..b523c93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ - `cityjson.load()` does not fail on a `GeometryInstance`, however it does not load it either (#19) - Fixes to the *glb* exporter (#20, #57, #83), and fixed the coordinate system +### Changed +- Export format is an argument, not an option (#35), e.g. `cjio ... export obj out.obj` + ## [0.7.3] - 2021-12-15 ### Fixed diff --git a/README.rst b/README.rst index 00c5b52..be3d0eb 100644 --- a/README.rst +++ b/README.rst @@ -151,14 +151,14 @@ Convert the CityJSON ``example.city.json`` to a glb file .. code:: console - cjio example.json export --format glb /home/elvis/gltfs + cjio example.json export glb /home/elvis/gltfs Convert the CityJSON ``example.city.json`` to a glb file ``/home/elvis/test.glb`` .. code:: console - cjio example.city.json export --format glb /home/elvis/test.glb + cjio example.city.json export glb /home/elvis/test.glb Usage of the API ---------------- diff --git a/cjio/cjio.py b/cjio/cjio.py index c81a62d..4477e66 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -120,23 +120,22 @@ def processor(cm): @cli.command('export') -@click.argument('filename') -@click.option('--format', +@click.argument('format', type=click.Choice(['obj', 'jsonl', 'stl', 'glb', 'b3dm']), - required=True, - help="Export format") + required=True) +@click.argument('filename') def export_cmd(filename, format): """Export to another format. OBJ, Binary glTF (glb), Batched 3DModel (b3dm), STL, JSONL (JSON Lines, for streaming). - Currently textures are not supported, sorry. + Currently, textures are not supported, sorry. Usage examples: \b - cjio myfile.city.json export --format obj myfile.obj - cjio myfile.city.json export --format jsonl myfile.txt + cjio myfile.city.json export obj myfile.obj + cjio myfile.city.json export jsonl myfile.txt """ def exporter(cm): output = utils.verify_filename(filename) From 654d2d1cf496a7d8047d51a9e76e96b9236daca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Mon, 10 Jan 2022 20:16:05 +0100 Subject: [PATCH 12/90] Test fixtures have function scope instead of session --- tests/conftest.py | 44 +++++++++++++++++++-------------------- tests/test_api.py | 2 +- tests/test_appearances.py | 5 ++++- tests/test_cityjson.py | 2 +- tests/test_cityobjects.py | 2 +- tests/test_cli.py | 2 +- 6 files changed, 30 insertions(+), 27 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 5767798..28f1492 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -19,53 +19,53 @@ def pytest_collection_modifyitems(config, items): if "balazs" in item.keywords: item.add_marker(skip_balazs) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def data_dir(): package_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) yield os.path.join(package_dir, 'tests', 'data') -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def data_output_dir(): package_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) d = os.path.join(package_dir, "tmp") os.makedirs(d, exist_ok=True) yield d -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def delft(data_dir): p = os.path.join(data_dir, 'delft.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def delft_path(data_dir): p = os.path.join(data_dir, 'delft.json') yield p -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def delft_1b(data_dir): p = os.path.join(data_dir, 'delft_1b.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def rotterdam_subset(data_dir): p = os.path.join(data_dir, 'rotterdam', 'rotterdam_subset.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def rotterdam_subset_path(data_dir): p = os.path.join(data_dir, 'rotterdam', 'rotterdam_subset.json') yield p -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def zurich_subset(data_dir): p = os.path.join(data_dir, 'zurich', 'zurich_subset_lod2.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def zurich_subset_path(data_dir): p = os.path.join(data_dir, 'zurich', 'zurich_subset_lod2.json') yield p @@ -78,54 +78,54 @@ def ms_triangles(data_dir): with open(p, 'rb') as fo: yield pickle.load(fo) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def dummy(data_dir): p = os.path.join(data_dir, 'dummy', 'dummy.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def dummy_noappearance(data_dir): p = os.path.join(data_dir, 'dummy', 'dummy_noappearance.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def cube(data_dir): p = os.path.join(data_dir, 'cube.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def cube_compressed(data_dir): p = os.path.join(data_dir, 'cube.c.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def minimal(data_dir): p = os.path.join(data_dir, 'minimal.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def rectangle(data_dir): p = os.path.join(data_dir, 'dummy', 'rectangle.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def multi_lod(data_dir): p = os.path.join(data_dir, 'multi_lod.json') with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def multi_lod_path(data_dir): p = os.path.join(data_dir, 'multi_lod.json') yield p -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def vertices(): yield [ (0.0,1.0,0.0), @@ -137,7 +137,7 @@ def vertices(): ] -@pytest.fixture(scope='session', +@pytest.fixture(scope='function', params=[ ('material', 'mt-1.json'), ('material', 'mt-2.json'), @@ -150,7 +150,7 @@ def materials(data_dir, request): with open(p, 'r') as f: yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def materials_two(data_dir): """Two models with materials for testing their merging""" cms = [] @@ -162,7 +162,7 @@ def materials_two(data_dir): cms.append(cityjson.CityJSON(file=f)) yield cms -@pytest.fixture(scope='session', +@pytest.fixture(scope='function', params=[ ('material', 'mt-1-triangulated.json'), ('material', 'mt-2-triangulated.json'), @@ -174,6 +174,6 @@ def triangulated(data_dir, request): yield cityjson.CityJSON(file=f) -@pytest.fixture(scope='session') +@pytest.fixture(scope='function') def mt_1_path(data_dir): return os.path.join(data_dir, 'material', 'mt-1.json') diff --git a/tests/test_api.py b/tests/test_api.py index dd8a9a0..14c700b 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -5,7 +5,7 @@ from cjio import models, cityjson -@pytest.fixture(scope='module') +@pytest.fixture(scope='function') def cm_rdam_subset(rotterdam_subset): rotterdam_subset.cityobjects = dict() for co_id, co in rotterdam_subset.j['CityObjects'].items(): diff --git a/tests/test_appearances.py b/tests/test_appearances.py index 42e5f52..96b85df 100644 --- a/tests/test_appearances.py +++ b/tests/test_appearances.py @@ -52,4 +52,7 @@ def test_update_textures_url(rotterdam_subset): def test_update_textures_none(dummy_noappearance): with pytest.raises(errors.InvalidOperation): - dummy_noappearance.update_textures_location('somepath', relative=True) \ No newline at end of file + dummy_noappearance.update_textures_location('somepath', relative=True) +# +# def test_remove_textures(rotterdam_subset): +# cm = rotterdam_subset. \ No newline at end of file diff --git a/tests/test_cityjson.py b/tests/test_cityjson.py index dfee132..3904c24 100644 --- a/tests/test_cityjson.py +++ b/tests/test_cityjson.py @@ -7,7 +7,7 @@ import json -@pytest.fixture(scope='module') +@pytest.fixture(scope='function') def cm_zur_subset(zurich_subset): zurich_subset.cityobjects = dict() for co_id, co in zurich_subset.j['CityObjects'].items(): diff --git a/tests/test_cityobjects.py b/tests/test_cityobjects.py index e07c816..516ee81 100644 --- a/tests/test_cityobjects.py +++ b/tests/test_cityobjects.py @@ -5,7 +5,7 @@ from cjio import models -@pytest.fixture(scope='module') +@pytest.fixture(scope='function') def cm_rdam_subset(rotterdam_subset): rotterdam_subset.cityobjects = dict() for co_id, co in rotterdam_subset.j['CityObjects'].items(): diff --git a/tests/test_cli.py b/tests/test_cli.py index 41f1c92..efbda85 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -40,7 +40,7 @@ def test_export_obj_cli(self, delft_path, data_output_dir): result = runner.invoke(cjio.cli, args=[delft_path, 'export', - '--format', 'obj', + 'obj', p_out]) assert result.exit_code == 0 From c91054a5b92433720dcedbd39e50183a27777776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Mon, 10 Jan 2022 20:31:30 +0100 Subject: [PATCH 13/90] Fix the removal of texture and material from the geometry --- CHANGELOG.md | 2 ++ cjio/cityjson.py | 19 ++++++++++--------- tests/test_appearances.py | 12 +++++++++--- 3 files changed, 21 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b523c93..1dd736c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ - Subset with BBOX does not modify the input model anymore (#10) - `cityjson.load()` does not fail on a `GeometryInstance`, however it does not load it either (#19) - Fixes to the *glb* exporter (#20, #57, #83), and fixed the coordinate system +- `texture` and `material` are correctly removed from the geometries of the CityObjects with `textures/materials_remove` +- `vertex-texture` is removed from the CityJSON with `textures_remove` ### Changed - Export format is an argument, not an option (#35), e.g. `cjio ... export obj out.obj` diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 82d0a00..b45af22 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -908,26 +908,27 @@ def validate_textures(self): def remove_textures(self): - for i in self.j["CityObjects"]: - if "texture" in self.j["CityObjects"][i]: - del self.j["CityObjects"][i]["texture"] + for co in self.j["CityObjects"].values(): + for geom in co["geometry"]: + if "texture" in geom: + del geom["texture"] if "appearance" in self.j: if "textures" in self.j["appearance"]: del self.j["appearance"]["textures"] - if "vertices-texture" in self.j["appearance"]: - del self.j["appearance"]["vertices-texture"] + if "vertex-texture" in self.j["appearance"]: + del self.j["appearance"]["vertex-texture"] if "default-theme-texture" in self.j["appearance"]: del self.j["appearance"]["default-theme-texture"] - # print (len(self.j["appearance"])) if "appearance" in self.j: if self.j["appearance"] is None or len(self.j["appearance"]) == 0: del self.j["appearance"] return True def remove_materials(self): - for i in self.j["CityObjects"]: - if "material" in self.j["CityObjects"][i]: - del self.j["CityObjects"][i]["material"] + for co in self.j["CityObjects"].values(): + for geom in co["geometry"]: + if "material" in geom: + del geom["material"] if "appearance" in self.j: if "materials" in self.j["appearance"]: del self.j["appearance"]["materials"] diff --git a/tests/test_appearances.py b/tests/test_appearances.py index 96b85df..1fec914 100644 --- a/tests/test_appearances.py +++ b/tests/test_appearances.py @@ -53,6 +53,12 @@ def test_update_textures_url(rotterdam_subset): def test_update_textures_none(dummy_noappearance): with pytest.raises(errors.InvalidOperation): dummy_noappearance.update_textures_location('somepath', relative=True) -# -# def test_remove_textures(rotterdam_subset): -# cm = rotterdam_subset. \ No newline at end of file + +def test_remove_textures(rotterdam_subset): + cm = rotterdam_subset + cm.remove_textures() + if "appearance" in cm.j: + assert cm.j.get("appearance").get("textures") is None + assert cm.j.get("appearance").get("vertex-texture") is None + assert cm.j.get("appearance").get("default-theme-texture") is None + assert all("texture" not in geom for co in cm.j["CityObjects"].values() for geom in co["geometry"]) From 0cdccddf3b7941e1b32f583f4f52449084745a99 Mon Sep 17 00:00:00 2001 From: Giuseppe PERONATO Date: Thu, 13 Jan 2022 23:01:24 +0100 Subject: [PATCH 14/90] loop on co without geometry --- cjio/cityjson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index b45af22..6be28bb 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -245,7 +245,7 @@ def load_from_j(self, transform: bool = True): parents = co['parents'] if 'parents' in co else None attributes = co['attributes'] if 'attributes' in co else None geometry = [] - for geom in co['geometry']: + for geom in co.get('geometry',[]): semantics = geom['semantics'] if 'semantics' in geom else None texture = geom['texture'] if 'texture' in geom else None geometry.append( From 9faee89f638d98450d46ada05b53a614143b386d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Wed, 19 Jan 2022 15:54:32 +0100 Subject: [PATCH 15/90] Revert conditional NumPy import (Fixes #42) I'll figure what to do with the windows executables if it comes to that --- cjio/cityjson.py | 5 +---- cjio/convert.py | 6 +----- cjio/geom_help.py | 24 +----------------------- 3 files changed, 3 insertions(+), 32 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 6be28bb..d1a8e1d 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -24,10 +24,7 @@ MODULE_PANDAS_AVAILABLE = True MODULE_CJVAL_AVAILABLE = True -try: - import numpy as np -except ImportError as e: - MODULE_NUMPY_AVAILABLE = False +import numpy as np try: import pyproj except ImportError as e: diff --git a/cjio/convert.py b/cjio/convert.py index bc8aadf..1c9579b 100644 --- a/cjio/convert.py +++ b/cjio/convert.py @@ -3,11 +3,7 @@ from cjio import geom_help -MODULE_NUMPY_AVAILABLE = True -try: - import numpy as np -except ImportError as e: - MODULE_NUMPY_AVAILABLE = False +import numpy as np def flatten(x): result = [] diff --git a/cjio/geom_help.py b/cjio/geom_help.py index cb1b282..4153408 100755 --- a/cjio/geom_help.py +++ b/cjio/geom_help.py @@ -1,28 +1,6 @@ import math -# FIXME: temporary solution to make Numpy conditional because of PyInstaller issues on Windows -# Traceback (most recent call last): -# -# File "site-packages\numpy\core\__init__.py", line 24, in -# -# File "c:\python38\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 621, in exec_module -# -# exec(bytecode, module.__dict__) -# -# File "site-packages\numpy\core\multiarray.py", line 14, in -# -# File "c:\python38\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 621, in exec_module -# -# exec(bytecode, module.__dict__) -# -# File "site-packages\numpy\core\overrides.py", line 7, in -# -# ImportError: DLL load failed while importing _multiarray_umath: The specified module could not be found. -MODULE_NUMPY_AVAILABLE = True -try: - import numpy as np -except ImportError as e: - MODULE_NUMPY_AVAILABLE = False +import numpy as np MODULE_EARCUT_AVAILABLE = True try: From 362e038a16e91daff42b714b6ededffa68e34b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Wed, 19 Jan 2022 15:59:58 +0100 Subject: [PATCH 16/90] Remove unused imports and the unused remove_textures module --- cjio/cityjson.py | 8 +------- cjio/metadata.py | 4 +--- cjio/remove_textures.py | 13 ------------- cjio/subset.py | 2 +- 4 files changed, 3 insertions(+), 24 deletions(-) delete mode 100755 cjio/remove_textures.py diff --git a/cjio/cityjson.py b/cjio/cityjson.py index d1a8e1d..9b6904c 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1,22 +1,16 @@ import os import re -import shutil import json -import collections import urllib.request -import tempfile import math import shutil -from pkg_resources import resource_filename -from pkg_resources import resource_listdir import copy import random from io import StringIO -from sys import platform from click import progressbar -from datetime import datetime, date +from datetime import datetime from typing import Tuple MODULE_NUMPY_AVAILABLE = True MODULE_PYPROJ_AVAILABLE = True diff --git a/cjio/metadata.py b/cjio/metadata.py index 9701128..2dfb6b6 100644 --- a/cjio/metadata.py +++ b/cjio/metadata.py @@ -1,13 +1,11 @@ """Module containing metadata related functions""" import uuid -import json import os -import time import re import collections, functools, operator import sys -from datetime import date, datetime +from datetime import date import platform def generate_metadata(citymodel: dict, diff --git a/cjio/remove_textures.py b/cjio/remove_textures.py deleted file mode 100755 index e4bb9d4..0000000 --- a/cjio/remove_textures.py +++ /dev/null @@ -1,13 +0,0 @@ - -import json - - -def remove_textures(j): - if "appearance" in j: - if "textures" in j["appearance"]: - del j["appearance"]["textures"] - if "vertices-texture" in j["appearance"]: - del j["appearance"]["vertices-texture"] - if "default-theme-texture" in j["appearance"]: - del j["appearance"]["default-theme-texture"] - diff --git a/cjio/subset.py b/cjio/subset.py index 805c56e..f0a3dad 100755 --- a/cjio/subset.py +++ b/cjio/subset.py @@ -1,5 +1,5 @@ +"""CityModel subset functions""" -import json def select_co_bbox(j, bbox): #-- select the CO whose From 2424e261078d228590b5d8addd5ecf77639c1d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Wed, 19 Jan 2022 18:52:33 +0100 Subject: [PATCH 17/90] Numpy is a hard requirement --- CHANGELOG.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dd736c..52a2a5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ ### Changed - Export format is an argument, not an option (#35), e.g. `cjio ... export obj out.obj` +- NumPy is a hard requirement ## [0.7.3] - 2021-12-15 diff --git a/setup.py b/setup.py index 628f992..43413f8 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ ], install_requires=[ 'Click', + 'numpy' ], extras_require={ 'develop': [ @@ -39,7 +40,6 @@ 'bump2version' ], 'export': [ - 'numpy', 'pandas', 'mapbox-earcut' ], From 556bbef17c400dd3daee55c8de025bf2bf6d001d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Fri, 21 Jan 2022 14:45:47 +0100 Subject: [PATCH 18/90] dockerignore --- .dockerignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..b2637b0 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,8 @@ +venv +.pytest_cache +.git +.run +docs +tests +tmp +cjio.egg-info \ No newline at end of file From abbf1917ed61ff16a62e6489c4744bbdb7e93fb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Fri, 21 Jan 2022 14:46:10 +0100 Subject: [PATCH 19/90] Change entrypoint to root path --- uid_entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uid_entrypoint.sh b/uid_entrypoint.sh index 42b21b8..4cba88e 100755 --- a/uid_entrypoint.sh +++ b/uid_entrypoint.sh @@ -11,4 +11,4 @@ fi echo "Running as $(whoami)" -exec "/app/.venv/bin/$@" +exec "$@" From 3d52deffa860837bb88bf305e1044687160c975f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Fri, 21 Jan 2022 14:46:27 +0100 Subject: [PATCH 20/90] Exclude pycharm run dir --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b6444e3..ed08c4b 100644 --- a/.gitignore +++ b/.gitignore @@ -114,6 +114,7 @@ ENV/ # PyCharm .idea* +/.run/ # KDE .directory From 24b26a51ed564faca3b1dbbc57eee52bf7eb1d4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Fri, 21 Jan 2022 14:46:51 +0100 Subject: [PATCH 21/90] Ubuntu based docker image with image stripping --- Dockerfile | 107 +++++------------------ cjio.dockerfile | 30 +++++++ strip-docker-image-export | 178 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 231 insertions(+), 84 deletions(-) create mode 100644 cjio.dockerfile create mode 100755 strip-docker-image-export diff --git a/Dockerfile b/Dockerfile index 666e842..f122554 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,96 +1,35 @@ -FROM alpine:3.10 +FROM ubuntu:20.04 +LABEL org.opencontainers.image.authors="b.dukai@tudelft.nl" +LABEL maintainer.email="b.dukai@tudelft.nl" maintainer.name="Balázs Dukai" +LABEL description="cjio, or CityJSON/io" -# -# Install proj4 -# -ARG PROJ_VERSION=6.2.0 -RUN apk --update add sqlite libstdc++ sqlite-libs libgcc && \ - apk --update add --virtual .proj4-deps \ - make \ - gcc \ - g++ \ - file \ - sqlite-dev \ - unzip && \ - cd /tmp && \ - wget http://download.osgeo.org/proj/proj-${PROJ_VERSION}.tar.gz && \ - tar xfvz proj-${PROJ_VERSION}.tar.gz && \ - rm -f proj-${PROJ_VERSION}.tar.gz && \ - wget http://download.osgeo.org/proj/proj-datumgrid-1.8.zip && \ - unzip proj-datumgrid-1.8.zip -d proj-${PROJ_VERSION}/nad/ && \ - rm -f proj-datumgrid-1.8.zip && \ - wget http://download.osgeo.org/proj/proj-datumgrid-europe-1.1.zip && \ - unzip proj-datumgrid-europe-1.1.zip -d proj-${PROJ_VERSION}/nad/ && \ - rm -f proj-datumgrid-europe-1.1.zip && \ - wget http://download.osgeo.org/proj/proj-datumgrid-north-america-1.1.zip && \ - unzip proj-datumgrid-north-america-1.1.zip -d proj-${PROJ_VERSION}/nad/ && \ - rm -f proj-datumgrid-north-america-1.1.zip && \ - wget http://download.osgeo.org/proj/proj-datumgrid-oceania-1.0.zip && \ - unzip proj-datumgrid-oceania-1.0.zip -d proj-${PROJ_VERSION}/nad/ && \ - rm -f proj-datumgrid-oceania-1.0.zip && \ - cd proj-${PROJ_VERSION} && \ - ./configure && \ - make -j 4 && \ - make install && \ - echo "Entering root folder" && \ - cd / &&\ - echo "Cleaning dependencies tmp and manuals" && \ - apk del .proj4-deps && \ - rm -rf /tmp/* && \ - rm -rf /user/local/man && \ - proj - -# Install geos -ARG GEOS_VERSION=3.7.1 -RUN apk --update add --virtual .geos-deps \ - which \ - make \ - gcc \ - g++ \ - file \ - git \ - autoconf \ - automake \ - libtool && \ - cd /tmp && \ - git clone https://git.osgeo.org/gitea/geos/geos.git geos && \ - cd geos && \ - git checkout ${GEOS_VERSION} && \ - ./autogen.sh && \ - ./configure && \ - make -j 4 && \ - make install && \ - cd ~ && \ - apk del .geos-deps && \ - rm -rf /tmp/* && \ - rm -rf /user/local/man - -RUN adduser -u 1001 -G root -s /bin/bash -D app && \ +RUN useradd -u 1001 -G root -s /bin/bash app && \ chgrp -R 0 /etc/passwd && \ chmod -R g=u /etc/passwd && \ mkdir /app && \ chgrp -R 0 /app && \ - chmod -R g=u /app && \ - apk --update add \ - gcc \ - bash \ - make \ - git \ - libc-dev \ - python3 + chmod -R g=u /app -ARG PIP_VERSION="pip==19.2.1" -ARG SETUPTOOL_VERSION="setuptools==41.0.1" +RUN echo 'deb http://archive.ubuntu.com/ubuntu focal universe' >> /etc/apt/sources.list && \ + apt-get update && \ + apt-get install -y \ + gcc \ + g++ \ + libgeos-3.8.0 \ + libproj15 \ + python3 \ + python3-pip + +ARG PIP_VERSION="pip==21.3.1" +ARG SETUPTOOL_VERSION="setuptools==60.5.0" +COPY setup.py setup.cfg README.rst LICENSE CHANGELOG.md /app/ +COPY cjio /app/cjio RUN cd /app && \ - apk --update add --virtual .cjio-build-deps \ - musl-dev \ - python3-dev && \ - python3 -m venv .venv --system-site-packages && \ - .venv/bin/pip3 install ${PIP_VERSION} ${SETUPTOOL_VERSION} cjio shapely && \ - apk del .cjio-build-deps && \ + python3 -m pip install ${PIP_VERSION} ${SETUPTOOL_VERSION} && \ + pip install .[export,validate,reproject] && \ rm -rf /tmp/* && \ rm -rf /user/local/man && \ - .venv/bin/cjio --help + cjio --version COPY --chown=1001:0 uid_entrypoint.sh /usr/local/bin/ diff --git a/cjio.dockerfile b/cjio.dockerfile new file mode 100644 index 0000000..c136cff --- /dev/null +++ b/cjio.dockerfile @@ -0,0 +1,30 @@ +FROM ubuntu:20.04 + +RUN useradd -u 1001 -G root -s /bin/bash app && \ + chgrp -R 0 /etc/passwd && \ + chmod -R g=u /etc/passwd && \ + mkdir /app && \ + chgrp -R 0 /app && \ + chmod -R g=u /app +RUN apt-get update && \ + apt-get install -y python3 + +COPY --from=tudelft3d/cjio:latest /usr/local/bin/ /usr/local/bin/ +COPY --from=tudelft3d/cjio:latest /usr/local/lib/ /usr/local/lib/ + +COPY --chown=1001:0 uid_entrypoint.sh /usr/local/bin/ + +RUN mkdir /data && \ + chown 1001 /data && \ + chgrp 0 /data && \ + chmod g=u /data + +WORKDIR /data + +ENV LANG="C.UTF-8" + +USER 1001 + +ENTRYPOINT ["/usr/local/bin/uid_entrypoint.sh"] + +CMD ["/bin/bash"] \ No newline at end of file diff --git a/strip-docker-image-export b/strip-docker-image-export new file mode 100755 index 0000000..9bed7e8 --- /dev/null +++ b/strip-docker-image-export @@ -0,0 +1,178 @@ +#!/bin/bash + +# NAME +# strip-docker-image-export - exports the bare essentials from a Docker image +# +# SYNOPSIS +# strip-docker-image-export [-d export-dir ] [-p package | -f file] [-v] +# +# +# OPTIONS +# -d export-directory to copy content to, defaults to /export. +# -p package package to include from image, multiple -p allowed. +# -f file file to include from image, multiple -f allowed. +# -v verbose +# +# DESCRIPTION +# this script copies all the files from an installed package and copies them +# to an export directory. Additional files can be added. When an executable +# is copied, all dynamic libraries required by the executed are included too. +# +# EXAMPLE +# The following example strips the nginx installation from the default NGiNX docker image, +# and allows the files in ./export to be added to a scratch image. +# +# docker run -v $PWD/export/:/export \ +# -v $PWD/bin:/mybin nginx \ +# /mybin/strip-image.sh \ +# -p nginx \ +# -f /etc/passwd \ +# -f /etc/group \ +# -f '/lib/*/libnss*' \ +# -f /bin/ls \ +# -f /bin/cat \ +# -f /bin/sh \ +# -f /bin/mkdir \ +# -f /bin/ps \ +# -f /var/run \ +# -f /var/log/nginx \ +# -d /export +# CAVEATS +# requires an image that has a bash, readlink and ldd installed. +# +# AUTHOR +# Mark van Holsteijn +# +# COPYRIGHT +# +# Copyright 2015 Xebia Nederland B.V. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +export EXPORT_DIR=/export + +function usage() { + echo "usage: $(basename $0) [-v] [-d export-dir ] [-p package | -f file]" >&2 + echo " $@" >&2 +} + +function parse_commandline() { + + while getopts "vp:f:d:" OPT; do + case "$OPT" in + v) + VERBOSE=v + ;; + p) + PACKAGES="$PACKAGES $OPTARG" + ;; + f) + FILES="$FILES $OPTARG" + ;; + d) + EXPORT_DIR="$OPTARG" + ;; + *) + usage + exit 1 + ;; + esac + done + shift $((OPTIND-1)) + + if [ -z "$PACKAGES" -a -z "$FILES" ] ; then + usage "Missing -p or -f options" + exit 1 + fi + if [ ! -d $EXPORT_DIR ] ; then + usage "$EXPORT_DIR is not a directory." + exit 1 + fi +} + +function print_file() { + if [ "$1" = "/usr/bin/ldd" ]; then + exit + fi + + if [ -e "$1" ] ; then + echo "$1" + else + test -n "$VERBOSE" && echo "INFO: ignoring not existent file '$1'" >&2 + fi + + if [ -s "$1" ] ; then + TARGET=$(readlink "$1") + if [ -n "$TARGET" ] ; then + if expr "$TARGET" : '^/' >/dev/null 2>&1 ; then + list_dependencies "$TARGET" + else + list_dependencies $(dirname "$1")/"$TARGET" + fi + fi + fi +} + +function list_dependencies() { + for FILE in $@ ; do + if [ -e "$FILE" ] ; then + print_file "$FILE" + if /usr/bin/ldd "$FILE" >/dev/null 2>&1 ; then + /usr/bin/ldd "$FILE" | \ + awk '/statically/{next;} /=>/ { print $3; next; } { print $1 }' | \ + while read LINE ; do + test -n "$VERBOSE" && echo "INFO: including $LINE" >&2 + print_file "$LINE" + done + fi + else + test -n "$VERBOSE" && echo "INFO: ignoring not existent file $FILE" >&2 + fi + done +} + +function list_packages() { + if test -e /usr/bin/dpkg; then + DEPS=$(/usr/bin/dpkg -L $1) + elif test -e /usr/bin/rpm; then + DEPS=$(/usr/bin/rpm -ql $1) + elif test -e /sbin/apk; then + DEPS=$(/sbin/apk info -L $1 | grep -Ev '^$|contains:' | sed 's/^/\//g') + else + echo 'WARN: Unknown OS, aborted list_packages()' + exit + fi + while read FILE ; do + if [ ! -d "$FILE" ] ; then + list_dependencies "$FILE" + fi + done <<< "$DEPS" +} + +function list_all_packages() { + for i in "$@" ; do + list_packages "$i" + done +} + +parse_commandline "$@" + + +tar czf - $( + + ( + list_all_packages $PACKAGES + list_dependencies $FILES + ) | sort -u + +) | ( cd $EXPORT_DIR ; tar -xzh${VERBOSE}f - ) From 95a10dcf77b63c75b3ff54260e7251a080a81412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Fri, 21 Jan 2022 14:45:47 +0100 Subject: [PATCH 22/90] dockerignore --- .dockerignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..b2637b0 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,8 @@ +venv +.pytest_cache +.git +.run +docs +tests +tmp +cjio.egg-info \ No newline at end of file From f2bd8724d4aefd48ab6da62bd281173c8a87d964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Fri, 21 Jan 2022 14:46:10 +0100 Subject: [PATCH 23/90] Change entrypoint to root path --- uid_entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uid_entrypoint.sh b/uid_entrypoint.sh index 42b21b8..4cba88e 100755 --- a/uid_entrypoint.sh +++ b/uid_entrypoint.sh @@ -11,4 +11,4 @@ fi echo "Running as $(whoami)" -exec "/app/.venv/bin/$@" +exec "$@" From 35afc95da9ab06b46f632e4810a8fddee347d757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Fri, 21 Jan 2022 14:46:27 +0100 Subject: [PATCH 24/90] Exclude pycharm run dir --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b6444e3..ed08c4b 100644 --- a/.gitignore +++ b/.gitignore @@ -114,6 +114,7 @@ ENV/ # PyCharm .idea* +/.run/ # KDE .directory From 78344f38f0c9575e8ecc51013555ffc685a88fbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Tue, 25 Jan 2022 17:01:23 +0100 Subject: [PATCH 25/90] Debian based multi-stage docker build --- Dockerfile | 40 +++++---- cjio.dockerfile | 30 ------- strip-docker-image-export | 178 -------------------------------------- 3 files changed, 25 insertions(+), 223 deletions(-) delete mode 100644 cjio.dockerfile delete mode 100755 strip-docker-image-export diff --git a/Dockerfile b/Dockerfile index f122554..312a739 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,29 +1,25 @@ -FROM ubuntu:20.04 -LABEL org.opencontainers.image.authors="b.dukai@tudelft.nl" -LABEL maintainer.email="b.dukai@tudelft.nl" maintainer.name="Balázs Dukai" -LABEL description="cjio, or CityJSON/io" +FROM python:3.8.12-slim-bullseye AS builder -RUN useradd -u 1001 -G root -s /bin/bash app && \ +RUN useradd -u 1001 -G root app && \ chgrp -R 0 /etc/passwd && \ chmod -R g=u /etc/passwd && \ mkdir /app && \ chgrp -R 0 /app && \ chmod -R g=u /app -RUN echo 'deb http://archive.ubuntu.com/ubuntu focal universe' >> /etc/apt/sources.list && \ - apt-get update && \ - apt-get install -y \ +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + build-essential \ gcc \ - g++ \ - libgeos-3.8.0 \ - libproj15 \ - python3 \ - python3-pip + libgeos-3.9.0 \ + libproj19 ARG PIP_VERSION="pip==21.3.1" ARG SETUPTOOL_VERSION="setuptools==60.5.0" COPY setup.py setup.cfg README.rst LICENSE CHANGELOG.md /app/ COPY cjio /app/cjio +RUN python -m venv /opt/venv +ENV PATH="/opt/venv/bin:$PATH" RUN cd /app && \ python3 -m pip install ${PIP_VERSION} ${SETUPTOOL_VERSION} && \ pip install .[export,validate,reproject] && \ @@ -31,7 +27,22 @@ RUN cd /app && \ rm -rf /user/local/man && \ cjio --version +FROM python:3.8.12-slim AS cjio +LABEL org.opencontainers.image.authors="b.dukai@tudelft.nl" +LABEL maintainer.email="b.dukai@tudelft.nl" maintainer.name="Balázs Dukai" +LABEL description="cjio, or CityJSON/io" + +RUN useradd -u 1001 -G root -s /bin/bash app && \ + chgrp -R 0 /etc/passwd && \ + chmod -R g=u /etc/passwd && \ + mkdir /app && \ + chgrp -R 0 /app && \ + chmod -R g=u /app + +COPY --from=builder /opt/venv /opt/venv + COPY --chown=1001:0 uid_entrypoint.sh /usr/local/bin/ +ENV PATH="/opt/venv/bin:$PATH" RUN mkdir /data && \ chown 1001 /data && \ @@ -46,5 +57,4 @@ USER 1001 ENTRYPOINT ["/usr/local/bin/uid_entrypoint.sh"] -CMD ["/bin/bash"] - +CMD ["cjio"] \ No newline at end of file diff --git a/cjio.dockerfile b/cjio.dockerfile deleted file mode 100644 index c136cff..0000000 --- a/cjio.dockerfile +++ /dev/null @@ -1,30 +0,0 @@ -FROM ubuntu:20.04 - -RUN useradd -u 1001 -G root -s /bin/bash app && \ - chgrp -R 0 /etc/passwd && \ - chmod -R g=u /etc/passwd && \ - mkdir /app && \ - chgrp -R 0 /app && \ - chmod -R g=u /app -RUN apt-get update && \ - apt-get install -y python3 - -COPY --from=tudelft3d/cjio:latest /usr/local/bin/ /usr/local/bin/ -COPY --from=tudelft3d/cjio:latest /usr/local/lib/ /usr/local/lib/ - -COPY --chown=1001:0 uid_entrypoint.sh /usr/local/bin/ - -RUN mkdir /data && \ - chown 1001 /data && \ - chgrp 0 /data && \ - chmod g=u /data - -WORKDIR /data - -ENV LANG="C.UTF-8" - -USER 1001 - -ENTRYPOINT ["/usr/local/bin/uid_entrypoint.sh"] - -CMD ["/bin/bash"] \ No newline at end of file diff --git a/strip-docker-image-export b/strip-docker-image-export deleted file mode 100755 index 9bed7e8..0000000 --- a/strip-docker-image-export +++ /dev/null @@ -1,178 +0,0 @@ -#!/bin/bash - -# NAME -# strip-docker-image-export - exports the bare essentials from a Docker image -# -# SYNOPSIS -# strip-docker-image-export [-d export-dir ] [-p package | -f file] [-v] -# -# -# OPTIONS -# -d export-directory to copy content to, defaults to /export. -# -p package package to include from image, multiple -p allowed. -# -f file file to include from image, multiple -f allowed. -# -v verbose -# -# DESCRIPTION -# this script copies all the files from an installed package and copies them -# to an export directory. Additional files can be added. When an executable -# is copied, all dynamic libraries required by the executed are included too. -# -# EXAMPLE -# The following example strips the nginx installation from the default NGiNX docker image, -# and allows the files in ./export to be added to a scratch image. -# -# docker run -v $PWD/export/:/export \ -# -v $PWD/bin:/mybin nginx \ -# /mybin/strip-image.sh \ -# -p nginx \ -# -f /etc/passwd \ -# -f /etc/group \ -# -f '/lib/*/libnss*' \ -# -f /bin/ls \ -# -f /bin/cat \ -# -f /bin/sh \ -# -f /bin/mkdir \ -# -f /bin/ps \ -# -f /var/run \ -# -f /var/log/nginx \ -# -d /export -# CAVEATS -# requires an image that has a bash, readlink and ldd installed. -# -# AUTHOR -# Mark van Holsteijn -# -# COPYRIGHT -# -# Copyright 2015 Xebia Nederland B.V. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -export EXPORT_DIR=/export - -function usage() { - echo "usage: $(basename $0) [-v] [-d export-dir ] [-p package | -f file]" >&2 - echo " $@" >&2 -} - -function parse_commandline() { - - while getopts "vp:f:d:" OPT; do - case "$OPT" in - v) - VERBOSE=v - ;; - p) - PACKAGES="$PACKAGES $OPTARG" - ;; - f) - FILES="$FILES $OPTARG" - ;; - d) - EXPORT_DIR="$OPTARG" - ;; - *) - usage - exit 1 - ;; - esac - done - shift $((OPTIND-1)) - - if [ -z "$PACKAGES" -a -z "$FILES" ] ; then - usage "Missing -p or -f options" - exit 1 - fi - if [ ! -d $EXPORT_DIR ] ; then - usage "$EXPORT_DIR is not a directory." - exit 1 - fi -} - -function print_file() { - if [ "$1" = "/usr/bin/ldd" ]; then - exit - fi - - if [ -e "$1" ] ; then - echo "$1" - else - test -n "$VERBOSE" && echo "INFO: ignoring not existent file '$1'" >&2 - fi - - if [ -s "$1" ] ; then - TARGET=$(readlink "$1") - if [ -n "$TARGET" ] ; then - if expr "$TARGET" : '^/' >/dev/null 2>&1 ; then - list_dependencies "$TARGET" - else - list_dependencies $(dirname "$1")/"$TARGET" - fi - fi - fi -} - -function list_dependencies() { - for FILE in $@ ; do - if [ -e "$FILE" ] ; then - print_file "$FILE" - if /usr/bin/ldd "$FILE" >/dev/null 2>&1 ; then - /usr/bin/ldd "$FILE" | \ - awk '/statically/{next;} /=>/ { print $3; next; } { print $1 }' | \ - while read LINE ; do - test -n "$VERBOSE" && echo "INFO: including $LINE" >&2 - print_file "$LINE" - done - fi - else - test -n "$VERBOSE" && echo "INFO: ignoring not existent file $FILE" >&2 - fi - done -} - -function list_packages() { - if test -e /usr/bin/dpkg; then - DEPS=$(/usr/bin/dpkg -L $1) - elif test -e /usr/bin/rpm; then - DEPS=$(/usr/bin/rpm -ql $1) - elif test -e /sbin/apk; then - DEPS=$(/sbin/apk info -L $1 | grep -Ev '^$|contains:' | sed 's/^/\//g') - else - echo 'WARN: Unknown OS, aborted list_packages()' - exit - fi - while read FILE ; do - if [ ! -d "$FILE" ] ; then - list_dependencies "$FILE" - fi - done <<< "$DEPS" -} - -function list_all_packages() { - for i in "$@" ; do - list_packages "$i" - done -} - -parse_commandline "$@" - - -tar czf - $( - - ( - list_all_packages $PACKAGES - list_dependencies $FILES - ) | sort -u - -) | ( cd $EXPORT_DIR ; tar -xzh${VERBOSE}f - ) From e8e6f7ab15f0f57e7ccdafeba878979daf4a06e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Tue, 25 Jan 2022 17:01:49 +0100 Subject: [PATCH 26/90] Remove Travis-CI --- .travis.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d3de423..0000000 --- a/.travis.yml +++ /dev/null @@ -1,32 +0,0 @@ -sudo: required - -language: cpp - -services: - - docker - -install: skip - -script: - - echo "skipping tests" - - docker login --username ${DOCKER_USERNAME} --password ${DOCKER_PASSWORD} - - docker pull tudelft3d/cjio:latest || true - - docker build . --cache-from tudelft3d/cjio:latest -t tudelft3d/cjio:latest - - -deploy: - - provider: script - script: docker push tudelft3d/cjio:latest - skip_cleanup: true - on: - branch: master - - provider: script - script: docker tag tudelft3d/cjio:latest tudelft3d/cjio:dev ; docker push tudelft3d/cjio:dev - skip_cleanup: true - on: - branch: develop - - provider: script - script: docker tag tudelft3d/cjio:latest tudelft3d/cjio:${TRAVIS_TAG} ; docker push tudelft3d/cjio:${TRAVIS_TAG} - skip_cleanup: true - on: - tags: true From 5dd58061bdc7b2898658810aaad7c0ed2c6b0e4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Tue, 25 Jan 2022 17:15:28 +0100 Subject: [PATCH 27/90] Docker build on master --- .github/workflows/docker-image-master.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/docker-image-master.yml diff --git a/.github/workflows/docker-image-master.yml b/.github/workflows/docker-image-master.yml new file mode 100644 index 0000000..55645fa --- /dev/null +++ b/.github/workflows/docker-image-master.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ master, docker-ubuntu ] + pull_request: + branches: [ master ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag tudelft3d/cjio:latest \ No newline at end of file From 9463deb221ce85ccbd3c4187bbd6a6ce5a7522e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Tue, 25 Jan 2022 17:37:50 +0100 Subject: [PATCH 28/90] Add docker image labels --- .github/workflows/docker-image-master.yml | 2 +- CHANGELOG.md | 1 + Dockerfile | 8 +++++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-image-master.yml b/.github/workflows/docker-image-master.yml index 55645fa..b4673ec 100644 --- a/.github/workflows/docker-image-master.yml +++ b/.github/workflows/docker-image-master.yml @@ -2,7 +2,7 @@ name: Docker Image CI on: push: - branches: [ master, docker-ubuntu ] + branches: [ master ] pull_request: branches: [ master ] diff --git a/CHANGELOG.md b/CHANGELOG.md index 52a2a5a..baa93c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - Fixes to the *glb* exporter (#20, #57, #83), and fixed the coordinate system - `texture` and `material` are correctly removed from the geometries of the CityObjects with `textures/materials_remove` - `vertex-texture` is removed from the CityJSON with `textures_remove` +- Docker image build (#77, #132) ### Changed - Export format is an argument, not an option (#35), e.g. `cjio ... export obj out.obj` diff --git a/Dockerfile b/Dockerfile index 312a739..62bf097 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,9 +28,11 @@ RUN cd /app && \ cjio --version FROM python:3.8.12-slim AS cjio -LABEL org.opencontainers.image.authors="b.dukai@tudelft.nl" -LABEL maintainer.email="b.dukai@tudelft.nl" maintainer.name="Balázs Dukai" -LABEL description="cjio, or CityJSON/io" +LABEL org.opencontainers.image.authors="Balázs Dukai " +LABEL org.opencontainers.image.licenses="MIT" +LABEL org.opencontainers.image.url="https://github.com/cityjson/cjio" +LABEL org.opencontainers.image.description="Python CLI to process and manipulate CityJSON files. The different operators can be chained to perform several processing operations in one step, the CityJSON model goes through them and different versions of the CityJSON model can be saved as files along the pipeline." +LABEL org.opencontainers.image.title="cjio" RUN useradd -u 1001 -G root -s /bin/bash app && \ chgrp -R 0 /etc/passwd && \ From fba710724930bbc7c8b41a46a6350adc02667d82 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 3 Feb 2022 11:17:34 +0100 Subject: [PATCH 29/90] Remove code for older versions of cityjson --- cjio/cityjson.py | 31 +++++++------------------------ 1 file changed, 7 insertions(+), 24 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 9b6904c..d91fd9b 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -335,18 +335,9 @@ def get_version(self): def get_epsg(self): if "metadata" not in self.j: return None - if "crs" in self.j["metadata"] and "epsg" in self.j["metadata"]["crs"]: - return self.j["metadata"]["crs"]["epsg"] - elif "referenceSystem" in self.j["metadata"]: + if "referenceSystem" in self.j["metadata"]: s = self.j["metadata"]["referenceSystem"] - if "urn" in s.lower(): - if "epsg" in s.lower(): - return int(s[s.find("::")+2:]) - else: - print_cmd_warning("Only EPSG codes are supported in the URN. CRS is set to undefined.") - return None - elif "://www.opengis.net/def/crs/" in s.lower(): - return int(s[s.rfind("/")+1:]) + return int(s[s.rfind("/")+1:]) else: return None @@ -472,19 +463,11 @@ def set_epsg(self, newepsg): return False if "metadata" not in self.j: self.j["metadata"] = {} - if float(self.get_version()) < 0.7: - if "crs" not in self.j["metadata"]: - self.j["metadata"]["crs"] = {} - if "epsg" not in self.j["metadata"]["crs"]: - self.j["metadata"]["crs"]["epsg"] = {} - self.j["metadata"]["crs"]["epsg"] = i - return True - else: - if "referenceSystem" not in self.j["metadata"]: - self.j["metadata"]["referenceSystem"] = {} - s = 'urn:ogc:def:crs:EPSG::' + str(i) - self.j["metadata"]["referenceSystem"] = s - return True + if "referenceSystem" not in self.j["metadata"]: + self.j["metadata"]["referenceSystem"] = {} + s = 'https://www.opengis.net/def/crs/EPSG/0/' + str(i) + self.j["metadata"]["referenceSystem"] = s + return True def update_bbox_each_cityobjects(self, addifmissing=False): From 1c50328462d376cb0c5fa64b77a2b6e94520cf51 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 3 Feb 2022 11:18:14 +0100 Subject: [PATCH 30/90] WIP to handle metadata & +metadata-extended better It is a small mess right now --- cjio/cityjson.py | 91 +++++++++++++++++++++++++++++++++--------------- cjio/metadata.py | 40 ++------------------- 2 files changed, 65 insertions(+), 66 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index d91fd9b..4746db0 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -5,6 +5,7 @@ import json import urllib.request import math +import uuid import shutil import copy import random @@ -45,6 +46,17 @@ CITYJSON_VERSIONS_SUPPORTED = ['0.6', '0.8', '0.9', '1.0', '1.1'] +CITYJSON_PROPERTIES = ["type", + "version", + "extensions", + "transform", + "metadata", + "CityObjects", + "vertices", + "appearance", + "geometry-templates", + "+metadata-extended" + ] def load(path, transform: bool = True): @@ -435,6 +447,11 @@ def calculate_bbox(self): return bbox + def update_metadata(self): + self.update_bbox() + self.update_metadata_identifier() + + def update_bbox(self): """ Update the bbox (["metadata"]["geographicalExtent"]) of the CityJSON. @@ -450,6 +467,14 @@ def update_bbox(self): self.j["metadata"]["geographicalExtent"] = bbox return bbox + def update_metadata_identifier(self): + """ + Replaces the metadata/identifier (if present) by a new one (UUID) + """ + if "metadata" in self.j: + if "identifier" in self.j["metadata"]: + self.j["metadata"]["identifier"] = str(uuid.uuid4()) + def set_epsg(self, newepsg): if newepsg == None: @@ -540,8 +565,8 @@ def get_identifier(self): If there is one in metadata, it will be returned. Otherwise, the filename will. """ if "metadata" in self.j: - if "citymodelIdentifier" in self.j["metadata"]: - cm_id = self.j["metadata"]["citymodelIdentifier"] + if "identifier" in self.j["metadata"]: + cm_id = self.j["metadata"]["identifier"] if cm_id: template = "{cm_id} ({file_id})" @@ -549,8 +574,8 @@ def get_identifier(self): template = "{file_id}" if "metadata" in self.j: - if "fileIdentifier" in self.j["metadata"]: - return template.format(cm_id=cm_id, file_id=self.j["metadata"]["fileIdentifier"]) + if "identifier" in self.j["metadata"]: + return template.format(cm_id=cm_id, file_id=self.j["metadata"]["identifier"]) if self.path: return os.path.basename(self.path) @@ -566,8 +591,8 @@ def get_title(self): """ if "metadata" in self.j: - if "datasetTitle" in self.j["metadata"]: - return self.j["metadata"]["datasetTitle"] + if "title" in self.j["metadata"]: + return self.j["metadata"]["title"] return self.get_identifier() @@ -616,7 +641,7 @@ def get_subset_bbox(self, bbox, exclude=False): if self.has_metadata_extended(): try: cm2.j["+metadata-extended"] = copy.deepcopy(self.j["+metadata-extended"]) - cm2.update_metadata_extended(overwrite=True, new_uuid=True) + cm2.update_metadata_extended(overwrite=True) fids = [fid for fid in cm2.j["CityObjects"]] cm2.add_lineage_item("Subset of {} by bounding box {}".format(self.get_identifier(), bbox), features=fids) except: @@ -661,19 +686,21 @@ def get_subset_random(self, number=1, exclude=False): sallkeys = set(self.j["CityObjects"].keys()) re = sallkeys ^ re re = list(re) - cm = self.get_subset_ids(re, update_metadata=False) #-- do not overwrite the metadata there, only here - cm.update_bbox() - if self.has_metadata_extended(): - try: - cm.update_metadata_extended(overwrite=True) - fids = [fid for fid in cm.j["CityObjects"]] - cm.add_lineage_item("Random subset of {}".format(self.get_identifier()), features=fids) - except: - pass + cm = self.get_subset_ids(re) #-- do not overwrite the metadata there, only here + # cm.update_bbox() + # cm.update_identifier() + #-- TODO: copy the metadata, what about the name/uuid + # if self.has_metadata_extended(): + # try: + # cm.update_metadata_extended(overwrite=True) + # fids = [fid for fid in cm.j["CityObjects"]] + # cm.add_lineage_item("Random subset of {}".format(self.get_identifier()), features=fids) + # except: + # pass return cm - def get_subset_ids(self, lsIDs, exclude=False, update_metadata=True): + def get_subset_ids(self, lsIDs, exclude=False): #-- new sliced CityJSON object cm2 = CityJSON() cm2.j["version"] = self.j["version"] @@ -684,9 +711,11 @@ def get_subset_ids(self, lsIDs, exclude=False, update_metadata=True): cm2.j["transform"] = self.j["transform"] #-- copy selected CO to the j2 re = subset.select_co_ids(self.j, lsIDs) + #-- exclude (inverse selection) if exclude == True: allkeys = set(self.j["CityObjects"].keys()) re = allkeys ^ re + #-- select only the COs for each in re: cm2.j["CityObjects"][each] = self.j["CityObjects"][each] #-- geometry @@ -697,17 +726,23 @@ def get_subset_ids(self, lsIDs, exclude=False, update_metadata=True): if ("appearance" in self.j): cm2.j["appearance"] = {} subset.process_appearance(self.j, cm2.j) - cm2.update_bbox() + #-- copy all other non mandatory properties + for p in self.j: + if p not in CITYJSON_PROPERTIES: + cm2.j[p] = self.j[p] #-- metadata + if "metadata" in self.j: + cm2.j["metadata"] = self.j["metadata"] + cm2.update_metadata() # print(update_metadata) - if (update_metadata) and self.has_metadata_extended(): - try: - cm2.j["+metadata-extended"] = copy.deepcopy(self.j["+metadata-extended"]) - cm2.update_metadata_extended(overwrite=True, new_uuid=True) - fids = [fid for fid in cm2.j["CityObjects"]] - cm2.add_lineage_item("Subset of {} based on user specified IDs".format(self.get_identifier()), features=fids) - except: - pass + # if self.has_metadata_extended(): + # try: + # cm2.j["+metadata-extended"] = copy.deepcopy(self.j["+metadata-extended"]) + # cm2.update_metadata_extended(overwrite=True, new_uuid=True) + # fids = [fid for fid in cm2.j["CityObjects"]] + # cm2.add_lineage_item("Subset of {} based on user specified IDs".format(self.get_identifier()), features=fids) + # except: + # pass return cm2 @@ -1759,8 +1794,8 @@ def add_metadata_extended_property(self): if "extensions" not in self.j: self.j["extensions"] = {} self.j["extensions"]["MetadataExtended"]= {} - self.j["extensions"]["MetadataExtended"]["url"] = "https://raw.githubusercontent.com/cityjson/metadata-extended/main/metadata-extended.ext.json" - self.j["extensions"]["MetadataExtended"]["version"] = "1.0" + self.j["extensions"]["MetadataExtended"]["url"] = "https://raw.githubusercontent.com/cityjson/metadata-extended/0.5/metadata-extended.ext.json" + self.j["extensions"]["MetadataExtended"]["version"] = "0.5" def get_metadata(self): """ diff --git a/cjio/metadata.py b/cjio/metadata.py index 2dfb6b6..7457a6f 100644 --- a/cjio/metadata.py +++ b/cjio/metadata.py @@ -10,9 +10,7 @@ def generate_metadata(citymodel: dict, filename: str = None, - reference_date: str = None, - overwrite_values: bool = False, - recompute_uuid: bool = False): + overwrite_values: bool = False): """Returns a tuple containing a dictionary of the metadata and a list of errors. Keyword arguments: @@ -21,35 +19,6 @@ def generate_metadata(citymodel: dict, overwrite_values -- Boolean that forces to overwrite existing values if True (default: False) """ - def citymodelIdentifier_func(): - return str(uuid.uuid4()) - - def datasetReferenceDate_func() -> str: - """ - Try to get the date that a file was created, falling back to when it was - last modified if that isn't possible. - See http://stackoverflow.com/a/39501288/1709587 for explanation. - - If the CityModel is newly created then the file doesn't exist yet. In this case - we fall back to the 'reference_date' argument. - """ - if filename is None and reference_date is None: - raise ValueError("Need to provide either a filename or reference_date in order to compute the datasetReferenceDate") - elif filename: - if platform.system() == 'Windows': - return str(date.fromtimestamp(os.path.getctime(filename))) - else: - stat = os.stat(filename) - try: - return str(date.fromtimestamp(stat.st_birthtime)) - except AttributeError: - # We're probably on Linux. No easy way to get creation dates here, - # so we'll settle for when its content was last modified. - return str(date.fromtimestamp(stat.st_mtime)) - else: - return reference_date - - def distributionFormatVersion_func(): return citymodel["version"] @@ -136,8 +105,6 @@ def presentLoDs_func(): "datasetCharacterSet": "UTF-8", "datasetTopicCategory": "geoscientificInformation", "distributionFormatVersion": distributionFormatVersion_func, - "spatialRepresentationType": "vector", - "fileIdentifier": fileIdentifier_func, "metadataStandard": "ISO 19115 - Geographic Information - Metadata", "metadataStandardVersion": "ISO 19115:2014(E)", "metadataCharacterSet": "UTF-8", @@ -168,10 +135,7 @@ def compute_item(key, value): metadata = citymodel["+metadata-extended"].copy() else: metadata = {} - if ("citymodelIdentifier" not in metadata) or recompute_uuid: - metadata["citymodelIdentifier"] = citymodelIdentifier_func() - if "datasetReferenceDate" not in metadata: - metadata["datasetReferenceDate"] = datasetReferenceDate_func() + bad_list = [] populate_metadata_dict(md_dictionary) From 27105037f9106f882f26d555b072b09ec3de6ea4 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 3 Feb 2022 16:26:51 +0100 Subject: [PATCH 31/90] Formatting code --- cjio/cityjson.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 4746db0..a903fec 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -567,19 +567,15 @@ def get_identifier(self): if "metadata" in self.j: if "identifier" in self.j["metadata"]: cm_id = self.j["metadata"]["identifier"] - if cm_id: template = "{cm_id} ({file_id})" else: template = "{file_id}" - if "metadata" in self.j: if "identifier" in self.j["metadata"]: return template.format(cm_id=cm_id, file_id=self.j["metadata"]["identifier"]) - if self.path: return os.path.basename(self.path) - return "unknown" From 7cee766a5fb6598399aace9b96654797ee7a213d Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 3 Feb 2022 16:27:12 +0100 Subject: [PATCH 32/90] Remove functions in metadata not needed --- cjio/metadata.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cjio/metadata.py b/cjio/metadata.py index 7457a6f..0793598 100644 --- a/cjio/metadata.py +++ b/cjio/metadata.py @@ -19,9 +19,6 @@ def generate_metadata(citymodel: dict, overwrite_values -- Boolean that forces to overwrite existing values if True (default: False) """ - def distributionFormatVersion_func(): - return citymodel["version"] - def fileIdentifier_func(): return os.path.basename(filename) @@ -104,7 +101,6 @@ def presentLoDs_func(): md_dictionary = { "datasetCharacterSet": "UTF-8", "datasetTopicCategory": "geoscientificInformation", - "distributionFormatVersion": distributionFormatVersion_func, "metadataStandard": "ISO 19115 - Geographic Information - Metadata", "metadataStandardVersion": "ISO 19115:2014(E)", "metadataCharacterSet": "UTF-8", From b068f390d608bd1a1777880c185d5cf330cf9eed Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 3 Feb 2022 16:27:22 +0100 Subject: [PATCH 33/90] clean code, remove unused function --- cjio/subset.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cjio/subset.py b/cjio/subset.py index f0a3dad..9694b7b 100755 --- a/cjio/subset.py +++ b/cjio/subset.py @@ -1,10 +1,6 @@ """CityModel subset functions""" -def select_co_bbox(j, bbox): - #-- select the CO whose - pass - def select_co_ids(j, IDs): IDs = list(IDs) re = set() From 31879f7d5e334607cc1c3d397b89adb0faf8bf78 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 3 Feb 2022 16:27:36 +0100 Subject: [PATCH 34/90] Do not select parent of COs in subset, just children --- cjio/subset.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cjio/subset.py b/cjio/subset.py index 9694b7b..10d8565 100755 --- a/cjio/subset.py +++ b/cjio/subset.py @@ -23,13 +23,13 @@ def select_co_ids(j, IDs): if "children" in j['CityObjects'][id]: for child in j['CityObjects'][id]['children']: re.add(child) - if "parents" in j['CityObjects'][id]: - for p in j['CityObjects'][id]['parents']: - re.add(p) - #-- add siblings - if "children" in j['CityObjects'][p]: - for child in j['CityObjects'][p]['children']: - re.add(child) + # if "parents" in j['CityObjects'][id]: + # for p in j['CityObjects'][id]['parents']: + # re.add(p) + # #-- add siblings + # if "children" in j['CityObjects'][p]: + # for child in j['CityObjects'][p]['children']: + # re.add(child) return re From 1a27024ed2a948fc2590983d9539578292b8c354 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 3 Feb 2022 16:27:51 +0100 Subject: [PATCH 35/90] WIP to refactor subset functions --- cjio/cityjson.py | 116 +++++++++++++++-------------------------------- 1 file changed, 36 insertions(+), 80 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index a903fec..aa749b4 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -594,12 +594,6 @@ def get_title(self): def get_subset_bbox(self, bbox, exclude=False): # print ('get_subset_bbox') - #-- new sliced CityJSON object - cm2 = CityJSON() - cm2.j["version"] = self.j["version"] - cm2.path = self.path - if "transform" in self.j: - cm2.j["transform"] = self.j["transform"] re = set() for coid in self.j["CityObjects"]: centroid = self.get_centroid(coid) @@ -609,40 +603,15 @@ def get_subset_bbox(self, bbox, exclude=False): (centroid[0] < bbox[2]) and (centroid[1] < bbox[3]) ): re.add(coid) - re2 = copy.deepcopy(re) - if exclude == True: - allkeys = set(self.j["CityObjects"].keys()) - re = allkeys ^ re #-- also add the parent-children - for theid in re2: + for theid in re: if "children" in self.j['CityObjects'][theid]: for child in self.j['CityObjects'][theid]['children']: re.add(child) if "parents" in self.j['CityObjects'][theid]: for each in self.j['CityObjects'][theid]['parents']: re.add(each) - - for each in re: - cm2.j["CityObjects"][each] = copy.deepcopy(self.j["CityObjects"][each]) - #-- geometry - subset.process_geometry(self.j, cm2.j) - #-- templates - subset.process_templates(self.j, cm2.j) - #-- appearance - if ("appearance" in self.j): - cm2.j["appearance"] = {} - subset.process_appearance(self.j, cm2.j) - cm2.update_bbox() - #-- metadata - if self.has_metadata_extended(): - try: - cm2.j["+metadata-extended"] = copy.deepcopy(self.j["+metadata-extended"]) - cm2.update_metadata_extended(overwrite=True) - fids = [fid for fid in cm2.j["CityObjects"]] - cm2.add_lineage_item("Subset of {} by bounding box {}".format(self.get_identifier(), bbox), features=fids) - except: - pass - return cm2 + return self.subset(lsIDs=re, exclude=exclude) def is_co_toplevel(self, co): @@ -665,38 +634,14 @@ def get_ordered_ids_top_co(self, limit, offset): return re[offset:(offset+limit)] - def get_subset_random(self, number=1, exclude=False): - random.seed() - total = len(self.j["CityObjects"]) - if number > total: - number = total - allkeys = list(self.j["CityObjects"].keys()) - re = set() - count = 0 - while (count < number): - t = allkeys[random.randint(0, total - 1)] - if self.is_co_toplevel(self.j["CityObjects"][t]): - re.add(t) - count += 1 + def subset(self, lsIDs, exclude=False): + #-- copy selected CO to the j2 + re = subset.select_co_ids(self.j, lsIDs) + #-- exclude if exclude == True: sallkeys = set(self.j["CityObjects"].keys()) - re = sallkeys ^ re + re = sallkeys - re re = list(re) - cm = self.get_subset_ids(re) #-- do not overwrite the metadata there, only here - # cm.update_bbox() - # cm.update_identifier() - #-- TODO: copy the metadata, what about the name/uuid - # if self.has_metadata_extended(): - # try: - # cm.update_metadata_extended(overwrite=True) - # fids = [fid for fid in cm.j["CityObjects"]] - # cm.add_lineage_item("Random subset of {}".format(self.get_identifier()), features=fids) - # except: - # pass - return cm - - - def get_subset_ids(self, lsIDs, exclude=False): #-- new sliced CityJSON object cm2 = CityJSON() cm2.j["version"] = self.j["version"] @@ -705,12 +650,6 @@ def get_subset_ids(self, lsIDs, exclude=False): cm2.j["extensions"] = self.j["extensions"] if "transform" in self.j: cm2.j["transform"] = self.j["transform"] - #-- copy selected CO to the j2 - re = subset.select_co_ids(self.j, lsIDs) - #-- exclude (inverse selection) - if exclude == True: - allkeys = set(self.j["CityObjects"].keys()) - re = allkeys ^ re #-- select only the COs for each in re: cm2.j["CityObjects"][each] = self.j["CityObjects"][each] @@ -730,18 +669,37 @@ def get_subset_ids(self, lsIDs, exclude=False): if "metadata" in self.j: cm2.j["metadata"] = self.j["metadata"] cm2.update_metadata() - # print(update_metadata) - # if self.has_metadata_extended(): - # try: - # cm2.j["+metadata-extended"] = copy.deepcopy(self.j["+metadata-extended"]) - # cm2.update_metadata_extended(overwrite=True, new_uuid=True) - # fids = [fid for fid in cm2.j["CityObjects"]] - # cm2.add_lineage_item("Subset of {} based on user specified IDs".format(self.get_identifier()), features=fids) - # except: - # pass + if self.has_metadata_extended(): + try: + cm2.j["+metadata-extended"] = copy.deepcopy(self.j["+metadata-extended"]) + cm2.update_metadata_extended(overwrite=True) + fids = [fid for fid in cm2.j["CityObjects"]] + cm2.add_lineage_item("Subset of {}".format(self.get_identifier()), features=fids) + except: + pass return cm2 + def get_subset_random(self, number=1, exclude=False): + random.seed() + total = len(self.j["CityObjects"]) + if number > total: + number = total + allkeys = list(self.j["CityObjects"].keys()) + re = set() + count = 0 + while (count < number): + t = allkeys[random.randint(0, total - 1)] + if self.is_co_toplevel(self.j["CityObjects"][t]): + re.add(t) + count += 1 + return self.subset(lsIDs=re, exclude=exclude) + + + def get_subset_ids(self, lsIDs, exclude=False): + return self.subset(lsIDs=set(lsIDs), exclude=exclude) + + def get_subset_cotype(self, cotypes: Tuple[str], exclude=False): # print ('get_subset_cotype') if not isinstance(cotypes, tuple): @@ -1820,9 +1778,7 @@ def compute_metadata_extended(self, overwrite=False, new_uuid=False): """ return generate_metadata(citymodel=self.j, filename=self.path, - reference_date=self.reference_date, - overwrite_values=overwrite, - recompute_uuid=new_uuid) + overwrite_values=overwrite) def update_metadata_extended(self, overwrite=False, new_uuid=False): From e955ee2d92f8d6746e629019a4e9e8b84c929645 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 3 Feb 2022 16:46:30 +0100 Subject: [PATCH 36/90] WIP again on subset working but do we fetch parents? --- cjio/cityjson.py | 74 +++++++++++++----------------------------------- cjio/cjio.py | 3 +- 2 files changed, 20 insertions(+), 57 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index aa749b4..d7d9724 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -603,14 +603,6 @@ def get_subset_bbox(self, bbox, exclude=False): (centroid[0] < bbox[2]) and (centroid[1] < bbox[3]) ): re.add(coid) - #-- also add the parent-children - for theid in re: - if "children" in self.j['CityObjects'][theid]: - for child in self.j['CityObjects'][theid]['children']: - re.add(child) - if "parents" in self.j['CityObjects'][theid]: - for each in self.j['CityObjects'][theid]['parents']: - re.add(each) return self.subset(lsIDs=re, exclude=exclude) @@ -700,54 +692,26 @@ def get_subset_ids(self, lsIDs, exclude=False): return self.subset(lsIDs=set(lsIDs), exclude=exclude) - def get_subset_cotype(self, cotypes: Tuple[str], exclude=False): - # print ('get_subset_cotype') - if not isinstance(cotypes, tuple): - raise TypeError("cotypes must be a tuple of CityObject types") - lsCOtypes = list(cotypes) - for cotype in cotypes: - if cotype == 'Building': - lsCOtypes.append('BuildingInstallation') - lsCOtypes.append('BuildingPart') - if cotype == 'Bridge': - lsCOtypes.append('BridgePart') - lsCOtypes.append('BridgeInstallation') - lsCOtypes.append('BridgeConstructionElement') - if cotype == 'Tunnel': - lsCOtypes.append('TunnelInstallation') - lsCOtypes.append('TunnelPart') - #-- new sliced CityJSON object - cm2 = CityJSON() - cm2.j["version"] = self.j["version"] - cm2.path = self.path - if "transform" in self.j: - cm2.j["transform"] = self.j["transform"] - #-- copy selected CO to the j2 + def get_subset_cotype(self, cotypes, exclude=False): + # random.seed() + # total = len(self.j["CityObjects"]) + # if number > total: + # number = total + # allkeys = list(self.j["CityObjects"].keys()) + # re = set() + # count = 0 + # while (count < number): + # t = allkeys[random.randint(0, total - 1)] + # if self.is_co_toplevel(self.j["CityObjects"][t]): + # re.add(t) + # count += 1 + # return self.subset(lsIDs=re, exclude=exclude) + re = set() for theid in self.j["CityObjects"]: - if exclude == False: - if self.j["CityObjects"][theid]["type"] in lsCOtypes: - cm2.j["CityObjects"][theid] = self.j["CityObjects"][theid] - else: - if self.j["CityObjects"][theid]["type"] not in lsCOtypes: - cm2.j["CityObjects"][theid] = self.j["CityObjects"][theid] - #-- geometry - subset.process_geometry(self.j, cm2.j) - #-- templates - subset.process_templates(self.j, cm2.j) - #-- appearance - if ("appearance" in self.j): - cm2.j["appearance"] = {} - subset.process_appearance(self.j, cm2.j) - cm2.update_bbox() - #-- metadata - if self.has_metadata_extended(): - try: - cm2.j["metadata"] = copy.deepcopy(self.j["metadata"]) - cm2.update_metadata_extended(overwrite=True, new_uuid=True) - cm2.add_lineage_item("Subset of {} by object type {}".format(self.get_identifier(), cotype)) - except: - pass - return cm2 + if self.j["CityObjects"][theid]["type"] in cotypes: + re.add(theid) + return self.subset(lsIDs=re, exclude=exclude) + def get_textures_location(self): diff --git a/cjio/cjio.py b/cjio/cjio.py index 4477e66..18df279 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -327,8 +327,7 @@ def processor(cm): @click.option('--random', type=int, help='Number of random City Objects to select.') @click.option('--cotype', multiple=True, - type=click.Choice(['Building', 'Bridge', 'Road', 'TransportSquare', 'LandUse', 'Railway', 'TINRelief', 'WaterBody', 'PlantCover', 'SolitaryVegetationObject', 'CityFurniture', 'GenericCityObject', 'Tunnel']), - help='The City Object type; can be used multiple times.') + help='The City Object types; can be used multiple times.') @click.option('--exclude', is_flag=True, help='Excludes the selection, thus delete the selected object(s).') def subset_cmd(id, bbox, random, cotype, exclude): """ From 0ce2134007c1ce8c1db770729fc29866f8ac1b19 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 3 Feb 2022 16:52:23 +0100 Subject: [PATCH 37/90] Add parents+siblings for subset this ensures that files are valid, otherwise we create invalid files :\ --- cjio/subset.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cjio/subset.py b/cjio/subset.py index 10d8565..9694b7b 100755 --- a/cjio/subset.py +++ b/cjio/subset.py @@ -23,13 +23,13 @@ def select_co_ids(j, IDs): if "children" in j['CityObjects'][id]: for child in j['CityObjects'][id]['children']: re.add(child) - # if "parents" in j['CityObjects'][id]: - # for p in j['CityObjects'][id]['parents']: - # re.add(p) - # #-- add siblings - # if "children" in j['CityObjects'][p]: - # for child in j['CityObjects'][p]['children']: - # re.add(child) + if "parents" in j['CityObjects'][id]: + for p in j['CityObjects'][id]['parents']: + re.add(p) + #-- add siblings + if "children" in j['CityObjects'][p]: + for child in j['CityObjects'][p]['children']: + re.add(child) return re From 22823ba664963b6d9d546795f389e82a4370378b Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 4 Feb 2022 09:54:30 +0100 Subject: [PATCH 38/90] Add subset/radius operator --- cjio/cityjson.py | 11 ++++++++++- cjio/cjio.py | 10 ++++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index d7d9724..3f553f1 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -605,6 +605,15 @@ def get_subset_bbox(self, bbox, exclude=False): re.add(coid) return self.subset(lsIDs=re, exclude=exclude) + def get_subset_radius(self, x, y, radius, exclude=False): + re = set() + for coid in self.j["CityObjects"]: + centroid = self.get_centroid(coid) + if (centroid is not None): + dist = ((centroid[0] - x)**2) + ((centroid[1] - y)**2) + if dist < radius**2: + re.add(coid) + return self.subset(lsIDs=re, exclude=exclude) def is_co_toplevel(self, co): return ("parents" not in co) @@ -711,7 +720,7 @@ def get_subset_cotype(self, cotypes, exclude=False): if self.j["CityObjects"][theid]["type"] in cotypes: re.add(theid) return self.subset(lsIDs=re, exclude=exclude) - + def get_textures_location(self): diff --git a/cjio/cjio.py b/cjio/cjio.py index 18df279..e8f2b70 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -324,12 +324,11 @@ def processor(cm): @cli.command('subset') @click.option('--id', multiple=True, help='The ID of the City Objects; can be used multiple times.') @click.option('--bbox', nargs=4, type=float, help='2D bbox: minx miny maxx maxy.') +@click.option('--radius', nargs=3, type=float, help='x y radius') @click.option('--random', type=int, help='Number of random City Objects to select.') -@click.option('--cotype', - multiple=True, - help='The City Object types; can be used multiple times.') +@click.option('--cotype', multiple=True, help='The City Object types; can be used multiple times.') @click.option('--exclude', is_flag=True, help='Excludes the selection, thus delete the selected object(s).') -def subset_cmd(id, bbox, random, cotype, exclude): +def subset_cmd(id, bbox, random, cotype, radius, exclude): """ Create a subset, City Objects can be selected by: (1) IDs of City Objects; @@ -345,6 +344,7 @@ def subset_cmd(id, bbox, random, cotype, exclude): \b cjio myfile.city.json subset --bbox 104607 490148 104703 490257 save out.city.json + cjio myfile.city.json subset --radius 500.0 610.0 50.0 --exclude save out.city.json cjio myfile.city.json subset --id house12 save out.city.json cjio myfile.city.json subset --random 5 save out.city.json cjio myfile.city.json subset --cotype LandUse --cotype Building save out.city.json @@ -355,6 +355,8 @@ def processor(cm): if random is not None: s = s.get_subset_random(random, exclude=exclude) return s + elif radius is not None and len(radius) > 0: + s = s.get_subset_radius(radius[0], radius[1], radius[2], exclude=exclude) elif id is not None and len(id) > 0: s = s.get_subset_ids(id, exclude=exclude) elif bbox is not None and len(bbox) > 0: From eb426c967109557ed5fb66a275953468013a9b30 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 4 Feb 2022 11:47:17 +0100 Subject: [PATCH 39/90] Add version for MetadataExtended, define once and reuse --- cjio/cityjson.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 3f553f1..ed92a6d 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -46,6 +46,8 @@ CITYJSON_VERSIONS_SUPPORTED = ['0.6', '0.8', '0.9', '1.0', '1.1'] +METADATAEXTENDED_VERSION = "0.5" + CITYJSON_PROPERTIES = ["type", "version", "extensions", @@ -1721,8 +1723,8 @@ def add_metadata_extended_property(self): if "extensions" not in self.j: self.j["extensions"] = {} self.j["extensions"]["MetadataExtended"]= {} - self.j["extensions"]["MetadataExtended"]["url"] = "https://raw.githubusercontent.com/cityjson/metadata-extended/0.5/metadata-extended.ext.json" - self.j["extensions"]["MetadataExtended"]["version"] = "0.5" + self.j["extensions"]["MetadataExtended"]["url"] = "https://raw.githubusercontent.com/cityjson/metadata-extended/{}/metadata-extended.ext.json".format(METADATAEXTENDED_VERSION) + self.j["extensions"]["MetadataExtended"]["version"] = METADATAEXTENDED_VERSION def get_metadata(self): """ From 4b2ac0db608b51d7ce5d2851cbc71a6de7f037f7 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 4 Feb 2022 11:47:31 +0100 Subject: [PATCH 40/90] Clean code: remove unused variables --- cjio/cityjson.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index ed92a6d..55c6946 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1747,7 +1747,7 @@ def get_metadata_extended(self): return self.j["+metadata-extended"] - def compute_metadata_extended(self, overwrite=False, new_uuid=False): + def compute_metadata_extended(self, overwrite=False): """ Returns the +metadata-extended of this CityJSON file """ @@ -1756,12 +1756,12 @@ def compute_metadata_extended(self, overwrite=False, new_uuid=False): overwrite_values=overwrite) - def update_metadata_extended(self, overwrite=False, new_uuid=False): + def update_metadata_extended(self, overwrite=False): """ Computes and updates the "metadata" property of this CityJSON dataset """ self.add_metadata_extended_property() - metadata, errors = self.compute_metadata_extended(overwrite, new_uuid) + metadata, errors = self.compute_metadata_extended(overwrite) self.j["+metadata-extended"] = metadata self.update_bbox() return (True, errors) From b3c56883d2c530e23435eea6a6cb758089fb5d8d Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 4 Feb 2022 11:47:55 +0100 Subject: [PATCH 41/90] Fix bug in metadata-extended generation when CO has no "geometry" since new in v1.1 --- cjio/metadata.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/cjio/metadata.py b/cjio/metadata.py index 0793598..fb64797 100644 --- a/cjio/metadata.py +++ b/cjio/metadata.py @@ -46,9 +46,10 @@ def cityfeatureMetadata_func(): def LoD_func(): presentLoDs = CityObjects_md[cm_type]["presentLoDs"] - for g in CityObjects[c_o]["geometry"]: - if "template" in g.keys(): - LoD = str(citymodel["geometry-templates"]["templates"][g["template"]]["lod"]) + if "geometry" in CityObjects[c_o]: + for g in CityObjects[c_o]["geometry"]: + if "template" in g.keys(): + LoD = str(citymodel["geometry-templates"]["templates"][g["template"]]["lod"]) else: LoD = str(g["lod"]) if LoD in presentLoDs: @@ -84,10 +85,11 @@ def LoD_func(): CityObjects_md[parent(cm_type)][cm_type+"s"] += 1 else: CityObjects_md[cm_type]["uniqueFeatureCount"] += 1 - CityObjects_md[cm_type]["aggregateFeatureCount"] += len(CityObjects[c_o]["geometry"]) + if "geometry" in CityObjects[c_o]: + CityObjects_md[cm_type]["aggregateFeatureCount"] += len(CityObjects[c_o]["geometry"]) LoD_func() if cm_type == "TINRelief": - CityObjects_md[cm_type]["triangleCount"] += sum([len(b) for g in CityObjects[c_o]["geometry"] for b in g["boundaries"]]) + CityObjects_md[cm_type]["triangleCount"] += sum([len(b) for g in CityObjects[c_o].get("geometry", []) for b in g["boundaries"]]) return CityObjects_md def thematicModels_func(): From e80044a13046f854df5d634412dfd3b953f8ee27 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 4 Feb 2022 14:14:14 +0100 Subject: [PATCH 42/90] Output of `info --long` has things sorted fixes #62 --- cjio/cityjson.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 55c6946..354f7d0 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -924,7 +924,7 @@ def get_info(self, long=False): #-- all/long version s.append("vertices_total = {}".format(len(self.j["vertices"]))) s.append("is_triangulated = {}".format(self.is_triangulated())) - d = set() + geoms = set() lod = set() sem_srf = set() co_attributes = set() @@ -934,7 +934,7 @@ def get_info(self, long=False): co_attributes.add(attr) if 'geometry' in self.j['CityObjects'][key]: for geom in self.j['CityObjects'][key]['geometry']: - d.add(geom["type"]) + geoms.add(geom["type"]) if "lod" in geom: lod.add(geom["lod"]) else: #-- it's a geometry-template @@ -942,10 +942,11 @@ def get_info(self, long=False): if "semantics" in geom: for srf in geom["semantics"]["surfaces"]: sem_srf.add(srf["type"]) - s.append("geom primitives = {}".format(list(d))) - s.append("LoD = {}".format(list(lod))) - s.append("semantics surfaces = {}".format(list(sem_srf))) - s.append("attributes = {}".format(list(co_attributes))) + getsorted = lambda a : sorted(list(a)) + s.append("geom primitives = {}".format(getsorted(geoms))) + s.append("LoD = {}".format(getsorted(lod))) + s.append("semantics surfaces = {}".format(getsorted(sem_srf))) + s.append("attributes = {}".format(getsorted(co_attributes))) return s From aa94699b1337c1173fc32e51c6984a3a772bc812 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Wed, 23 Feb 2022 09:22:26 +0100 Subject: [PATCH 43/90] Fix the crs_translate ops that didn't work with --values for compressed datasets --- cjio/cityjson.py | 20 +++++++------------- cjio/cjio.py | 8 ++++++-- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 354f7d0..4ba117b 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1675,24 +1675,18 @@ def filter_lod(self, thelod): def translate(self, values, minimum_xyz): if minimum_xyz == True: - #-- find the minimums - bbox = [9e9, 9e9, 9e9] - for v in self.j["vertices"]: - for i in range(3): - if v[i] < bbox[i]: - bbox[i] = v[i] - bbox[0] = -bbox[0] - bbox[1] = -bbox[1] - bbox[2] = -bbox[2] + self.j["transform"]["translate"][0] -= bbox[0] + self.j["transform"]["translate"][1] -= bbox[1] + self.j["transform"]["translate"][2] -= bbox[2] else: bbox = values - for v in self.j['vertices']: - v[0] = v[0] + bbox[0] - v[1] = v[1] + bbox[1] - v[2] = v[2] + bbox[2] + self.j["transform"]["translate"][0] += bbox[0] + self.j["transform"]["translate"][1] += bbox[1] + self.j["transform"]["translate"][2] += bbox[2] self.set_epsg(None) self.update_bbox() return bbox + def has_metadata(self): """ diff --git a/cjio/cjio.py b/cjio/cjio.py index e8f2b70..43e3d1c 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -549,14 +549,18 @@ def processor(cm): return cm return processor + @cli.command('crs_translate') @click.option('--values', nargs=3, type=float, help='(x, y, z)') def crs_translate_cmd(values): """ Translate the coordinates. - All are moved (-minx, -miny, -minz) of the model. - Three values can also be given, eg: + By default, they are all moved by (-minx, -miny, -minz), + so the values are smaller (often useful for further processing data). + The CRS/EPSG is updated to 'None'. + Three specific values for the translation can also be given. + $ cjio myfile.city.json crs_translate save out.city.json $ cjio myfile.city.json crs_translate --values -100 -25 -1 save out.city.json """ def processor(cm): From 4ff241e328a3213387dc9bd51c0c395819c1acb3 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 25 Feb 2022 09:38:30 +0100 Subject: [PATCH 44/90] WIP with Shewchuk Triangle works but holes not handled yet --- cjio/cityjson.py | 61 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 4ba117b..46b9481 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -2,6 +2,8 @@ import os import re +import triangle + import json import urllib.request import math @@ -1423,7 +1425,65 @@ def upgrade_version(self, newversion, digit): return (re, reasons) + def triangulate_face_2(self, face, vnp): + print("face:", face) + print("vnp:", vnp) + + sf = np.array([], dtype=np.int64) + #-- if a triangle then do nothing + if ( (len(face) == 1) and (len(face[0]) == 3) ): + return (np.array(face), True) + + for ring in face: + sf = np.hstack( (sf, np.array(ring)) ) + sfv = vnp[sf] + print("sf", sf) + print("sfv", sfv.shape) + print("vnp", vnp) + # print(sfv) + + rings = np.zeros(len(face), dtype=np.int64) + total = 0 + for i in range(len(face)): + total += len(face[i]) + rings[i] = total + print("rings", rings[-1]) + + # 1. normal with Newell's method + n, b = geom_help.get_normal_newell(sfv) + + # 2. project to the plane to get xy + sfv2d = np.zeros( (sfv.shape[0], 2)) + # print (sfv2d) + for i,p in enumerate(sfv): + xy = geom_help.to_2d(p, n) + sfv2d[i][0] = xy[0] + sfv2d[i][1] = xy[1] + # print(sfv2d) + + #-- deal with segments/constraints + sg = np.zeros( (rings[-1], 2), dtype=np.int64) + print("sg.shape", sg.shape) + + for i,e in enumerate(sg): + sg[i][0] = i + sg[i][1] = i + 1 + starti = 0 + for each in rings: + sg[each - 1][1] = starti + starti = each + print("sg", sg) + + A = dict(vertices=sfv2d, segments=sg) + re = triangle.triangulate(A, 'p') + print("triangles", re['triangles']) + return (re['triangles'], True) + + + def triangulate_face(self, face, vnp): + if len(face) > 1: + print("==>", len(face)) sf = np.array([], dtype=np.int64) if ( (len(face) == 1) and (len(face[0]) == 3) ): return (np.array(face), True) @@ -1853,6 +1913,7 @@ def triangulate(self): re = np.array(face) b = True else: + # re, b = self.triangulate_face_2(face, vnp) re, b = self.triangulate_face(face, vnp) if b == True: From d3f151d1b32c6f01dfbf71cf10daa8c78ff6c171 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 25 Feb 2022 11:28:40 +0100 Subject: [PATCH 45/90] WIP triangulation with Shewchuk orientation issues to fix still... --- cjio/cityjson.py | 73 +++++++++++++++++++++++++++++++++++------------ cjio/geom_help.py | 4 +++ 2 files changed, 59 insertions(+), 18 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 46b9481..e1e6c1e 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1426,8 +1426,8 @@ def upgrade_version(self, newversion, digit): def triangulate_face_2(self, face, vnp): - print("face:", face) - print("vnp:", vnp) + print("==>face:", face) + # print("vnp:", vnp) sf = np.array([], dtype=np.int64) #-- if a triangle then do nothing @@ -1437,9 +1437,9 @@ def triangulate_face_2(self, face, vnp): for ring in face: sf = np.hstack( (sf, np.array(ring)) ) sfv = vnp[sf] - print("sf", sf) - print("sfv", sfv.shape) - print("vnp", vnp) + # print("sf", sf) + # print("sfv", sfv) + # print("vnp", vnp) # print(sfv) rings = np.zeros(len(face), dtype=np.int64) @@ -1447,13 +1447,14 @@ def triangulate_face_2(self, face, vnp): for i in range(len(face)): total += len(face[i]) rings[i] = total - print("rings", rings[-1]) + # print("rings", rings[-1]) # 1. normal with Newell's method n, b = geom_help.get_normal_newell(sfv) + print("n:", n) # 2. project to the plane to get xy - sfv2d = np.zeros( (sfv.shape[0], 2)) + sfv2d = np.zeros((sfv.shape[0], 2)) # print (sfv2d) for i,p in enumerate(sfv): xy = geom_help.to_2d(p, n) @@ -1463,8 +1464,7 @@ def triangulate_face_2(self, face, vnp): #-- deal with segments/constraints sg = np.zeros( (rings[-1], 2), dtype=np.int64) - print("sg.shape", sg.shape) - + # print("sg.shape", sg.shape) for i,e in enumerate(sg): sg[i][0] = i sg[i][1] = i + 1 @@ -1472,12 +1472,49 @@ def triangulate_face_2(self, face, vnp): for each in rings: sg[each - 1][1] = starti starti = each - print("sg", sg) - - A = dict(vertices=sfv2d, segments=sg) + # print("sg", sg) + + #-- deal with holes + if len(rings) > 1: + print("==> irings") + holes = np.zeros((len(rings) - 1, 2)) + for k in range(len(rings) - 1): + a = sfv2d[rings[k]:rings[k+1]] + c = geom_help.get_centroid(a) + holes[k][0] = c.x + holes[k][1] = c.y + # print("holes:", holes) + A = dict(vertices=sfv2d, segments=sg, holes=holes) + else: + A = dict(vertices=sfv2d, segments=sg) + print(sfv2d) re = triangle.triangulate(A, 'p') - print("triangles", re['triangles']) - return (re['triangles'], True) + re = re['triangles'] + # print("triangles", re) + + + for i,each in enumerate(re): + re[i] = sf[each] + + + ##-- check orientation + # t = re['triangles'][0] + # print(t) + # print("sfv:", sfv) + # # print(sfv[t[1]]) + # veca = sfv[t[1]] - sfv[t[0]] + # vecb = sfv[t[2]] - sfv[t[0]] + # i = (veca[1] * vecb[2]) - (veca[2] * vecb[1]) + # j = (veca[0] * vecb[2]) - (veca[2] * vecb[0]) + # k = (veca[0] * vecb[1]) - (veca[1] * vecb[0]) + # print (i,j,k) + # # zz = np.dot(n, [i, j, k]) + # # print(zz) + + # print(re['triangles']) + + return (re, True) + @@ -1913,8 +1950,8 @@ def triangulate(self): re = np.array(face) b = True else: - # re, b = self.triangulate_face_2(face, vnp) - re, b = self.triangulate_face(face, vnp) + re, b = self.triangulate_face_2(face, vnp) + # re, b = self.triangulate_face(face, vnp) if b == True: for t in re: @@ -1995,7 +2032,7 @@ def triangulate(self): re = np.array(face) b = True else: - re, b = self.triangulate_face(face, vnp) + re, b = self.triangulate_face_2(face, vnp) if b == True: for t in re: tlist3 = [] @@ -2091,7 +2128,7 @@ def triangulate(self): re = np.array(face) b = True else: - re, b = self.triangulate_face(face, vnp) + re, b = self.triangulate_face_2(face, vnp) if b == True: for t in re: tlist4 = [] diff --git a/cjio/geom_help.py b/cjio/geom_help.py index 4153408..5fcfb86 100755 --- a/cjio/geom_help.py +++ b/cjio/geom_help.py @@ -43,6 +43,10 @@ def get_normal_newell(poly): n = n / math.sqrt(n[0]*n[0] + n[1]*n[1] + n[2]*n[2]) return (n, True) +def get_centroid(ring): + from shapely.geometry.polygon import LinearRing + r = LinearRing(ring) + return r.representative_point() def triangulate_face(face, vnp): if not MODULE_EARCUT_AVAILABLE: From bf94da0a8de4791bba570a91ea9fe7c3078ab963 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 25 Feb 2022 14:24:30 +0100 Subject: [PATCH 46/90] still WIP --- cjio/cityjson.py | 56 +++++++++++++++++++++++++++++++---------------- cjio/geom_help.py | 5 +++++ 2 files changed, 42 insertions(+), 19 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index e1e6c1e..66f73ce 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1429,11 +1429,11 @@ def triangulate_face_2(self, face, vnp): print("==>face:", face) # print("vnp:", vnp) - sf = np.array([], dtype=np.int64) #-- if a triangle then do nothing if ( (len(face) == 1) and (len(face[0]) == 3) ): return (np.array(face), True) + sf = np.array([], dtype=np.int64) for ring in face: sf = np.hstack( (sf, np.array(ring)) ) sfv = vnp[sf] @@ -1447,7 +1447,7 @@ def triangulate_face_2(self, face, vnp): for i in range(len(face)): total += len(face[i]) rings[i] = total - # print("rings", rings[-1]) + print("rings", rings) # 1. normal with Newell's method n, b = geom_help.get_normal_newell(sfv) @@ -1480,40 +1480,58 @@ def triangulate_face_2(self, face, vnp): holes = np.zeros((len(rings) - 1, 2)) for k in range(len(rings) - 1): a = sfv2d[rings[k]:rings[k+1]] - c = geom_help.get_centroid(a) - holes[k][0] = c.x - holes[k][1] = c.y - # print("holes:", holes) + print("a", a) + sg1 = np.zeros( (a.shape[0], 2), dtype=np.int64) + for i,e in enumerate(sg1): + sg1[i][0] = i + sg1[i][1] = i + 1 + sg1[-1][1] = 0 + pcl = dict(vertices=a, segments=sg1) + trl = triangle.triangulate(pcl, 'p') + t = trl['triangles'][0] + print("trl", t) + c = np.average(a[t], axis=0) + print("c", c) + # a0 = np.average(b, axis=0) + # c = geom_help.get_centroid(a) + holes[k][0] = c[0] + holes[k][1] = c[1] + # print(sfv2d) + print("holes:", holes) A = dict(vertices=sfv2d, segments=sg, holes=holes) else: A = dict(vertices=sfv2d, segments=sg) print(sfv2d) re = triangle.triangulate(A, 'p') + + if 'triangles' not in re: + return([], False) re = re['triangles'] - # print("triangles", re) - - for i,each in enumerate(re): re[i] = sf[each] + return (re, True) + # print("triangles", re) + # print("re:", re) - ##-- check orientation - # t = re['triangles'][0] - # print(t) - # print("sfv:", sfv) + # ##-- check orientation + # t = re[0] + # print("t", t) + # # print("sfv:", sfv) # # print(sfv[t[1]]) - # veca = sfv[t[1]] - sfv[t[0]] - # vecb = sfv[t[2]] - sfv[t[0]] + # veca = vnp[t[1]] - vnp[t[0]] + # vecb = vnp[t[2]] - vnp[t[0]] + # # thecross = np.zeros(3) # i = (veca[1] * vecb[2]) - (veca[2] * vecb[1]) # j = (veca[0] * vecb[2]) - (veca[2] * vecb[0]) # k = (veca[0] * vecb[1]) - (veca[1] * vecb[0]) - # print (i,j,k) - # # zz = np.dot(n, [i, j, k]) - # # print(zz) + + # print ("normal", i, -j, k) + # zz = np.dot(n, [i, -j, k]) + # print("dot", zz) # print(re['triangles']) - return (re, True) diff --git a/cjio/geom_help.py b/cjio/geom_help.py index 5fcfb86..638f859 100755 --- a/cjio/geom_help.py +++ b/cjio/geom_help.py @@ -45,7 +45,12 @@ def get_normal_newell(poly): def get_centroid(ring): from shapely.geometry.polygon import LinearRing + from shapely.geometry.polygon import Point r = LinearRing(ring) + c = r.representative_point() + print("centroidddd:", r.contains(c)) + # print("centroidddd:", r.contains(Point(66, 11))) + # return r.centroid return r.representative_point() def triangulate_face(face, vnp): From 9e9cbdc8afc6be174f2fe84cd89fba59bdab38a6 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 25 Feb 2022 15:49:05 +0100 Subject: [PATCH 47/90] Fix crashes, 3dbag tile of Delft is working! --- cjio/cityjson.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 66f73ce..956d79a 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1508,7 +1508,13 @@ def triangulate_face_2(self, face, vnp): return([], False) re = re['triangles'] for i,each in enumerate(re): - re[i] = sf[each] + # re[i] = sf[each] + try: + re[i] = sf[each] + except: + return(re, False) + # print("oupsie") + return (re, True) # print("triangles", re) @@ -1915,6 +1921,9 @@ def triangulate(self): vnp = np.array(self.j["vertices"]) for theid in self.j['CityObjects']: + print("=======") + print(theid) + print("=======") for geom in self.j['CityObjects'][theid]['geometry']: sflag = False mflag = False From e9727ad52d20e2dd3b888287f88e9646f745847e Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Fri, 25 Feb 2022 16:51:25 +0100 Subject: [PATCH 48/90] Clean the code for triangulation of faces - one function in geom_help.py - cleaned the import warning and extra installs --- cjio/cityjson.py | 193 ++++------------------------------------------ cjio/cjio.py | 14 ++-- cjio/geom_help.py | 145 +++++++++++++++++++++++++--------- 3 files changed, 130 insertions(+), 222 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 956d79a..30a7e65 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -2,8 +2,6 @@ import os import re -import triangle - import json import urllib.request import math @@ -17,7 +15,7 @@ from typing import Tuple MODULE_NUMPY_AVAILABLE = True MODULE_PYPROJ_AVAILABLE = True -MODULE_EARCUT_AVAILABLE = True +MODULE_TRIANGLE_AVAILABLE = True MODULE_PANDAS_AVAILABLE = True MODULE_CJVAL_AVAILABLE = True @@ -27,9 +25,9 @@ except ImportError as e: MODULE_PYPROJ_AVAILABLE = False try: - import mapbox_earcut + import triangle except ImportError as e: - MODULE_EARCUT_AVAILABLE = False + MODULE_TRIANGLE_AVAILABLE = False try: import pandas except ImportError as e: @@ -1425,168 +1423,6 @@ def upgrade_version(self, newversion, digit): return (re, reasons) - def triangulate_face_2(self, face, vnp): - print("==>face:", face) - # print("vnp:", vnp) - - #-- if a triangle then do nothing - if ( (len(face) == 1) and (len(face[0]) == 3) ): - return (np.array(face), True) - - sf = np.array([], dtype=np.int64) - for ring in face: - sf = np.hstack( (sf, np.array(ring)) ) - sfv = vnp[sf] - # print("sf", sf) - # print("sfv", sfv) - # print("vnp", vnp) - # print(sfv) - - rings = np.zeros(len(face), dtype=np.int64) - total = 0 - for i in range(len(face)): - total += len(face[i]) - rings[i] = total - print("rings", rings) - - # 1. normal with Newell's method - n, b = geom_help.get_normal_newell(sfv) - print("n:", n) - - # 2. project to the plane to get xy - sfv2d = np.zeros((sfv.shape[0], 2)) - # print (sfv2d) - for i,p in enumerate(sfv): - xy = geom_help.to_2d(p, n) - sfv2d[i][0] = xy[0] - sfv2d[i][1] = xy[1] - # print(sfv2d) - - #-- deal with segments/constraints - sg = np.zeros( (rings[-1], 2), dtype=np.int64) - # print("sg.shape", sg.shape) - for i,e in enumerate(sg): - sg[i][0] = i - sg[i][1] = i + 1 - starti = 0 - for each in rings: - sg[each - 1][1] = starti - starti = each - # print("sg", sg) - - #-- deal with holes - if len(rings) > 1: - print("==> irings") - holes = np.zeros((len(rings) - 1, 2)) - for k in range(len(rings) - 1): - a = sfv2d[rings[k]:rings[k+1]] - print("a", a) - sg1 = np.zeros( (a.shape[0], 2), dtype=np.int64) - for i,e in enumerate(sg1): - sg1[i][0] = i - sg1[i][1] = i + 1 - sg1[-1][1] = 0 - pcl = dict(vertices=a, segments=sg1) - trl = triangle.triangulate(pcl, 'p') - t = trl['triangles'][0] - print("trl", t) - c = np.average(a[t], axis=0) - print("c", c) - # a0 = np.average(b, axis=0) - # c = geom_help.get_centroid(a) - holes[k][0] = c[0] - holes[k][1] = c[1] - # print(sfv2d) - print("holes:", holes) - A = dict(vertices=sfv2d, segments=sg, holes=holes) - else: - A = dict(vertices=sfv2d, segments=sg) - print(sfv2d) - re = triangle.triangulate(A, 'p') - - if 'triangles' not in re: - return([], False) - re = re['triangles'] - for i,each in enumerate(re): - # re[i] = sf[each] - try: - re[i] = sf[each] - except: - return(re, False) - # print("oupsie") - - return (re, True) - # print("triangles", re) - - # print("re:", re) - - # ##-- check orientation - # t = re[0] - # print("t", t) - # # print("sfv:", sfv) - # # print(sfv[t[1]]) - # veca = vnp[t[1]] - vnp[t[0]] - # vecb = vnp[t[2]] - vnp[t[0]] - # # thecross = np.zeros(3) - # i = (veca[1] * vecb[2]) - (veca[2] * vecb[1]) - # j = (veca[0] * vecb[2]) - (veca[2] * vecb[0]) - # k = (veca[0] * vecb[1]) - (veca[1] * vecb[0]) - - # print ("normal", i, -j, k) - # zz = np.dot(n, [i, -j, k]) - # print("dot", zz) - - # print(re['triangles']) - - - - - - def triangulate_face(self, face, vnp): - if len(face) > 1: - print("==>", len(face)) - sf = np.array([], dtype=np.int64) - if ( (len(face) == 1) and (len(face[0]) == 3) ): - return (np.array(face), True) - for ring in face: - sf = np.hstack( (sf, np.array(ring)) ) - sfv = vnp[sf] - # print(sf) - # print(sfv) - rings = np.zeros(len(face), dtype=np.int32) - total = 0 - for i in range(len(face)): - total += len(face[i]) - rings[i] = total - # print(rings) - - # 1. normal with Newell's method - n, b = geom_help.get_normal_newell(sfv) - - #-- if already a triangle then return it - if b == False: - return (n, False) - # print ("Newell:", n) - - # 2. project to the plane to get xy - sfv2d = np.zeros( (sfv.shape[0], 2)) - # print (sfv2d) - for i,p in enumerate(sfv): - xy = geom_help.to_2d(p, n) - # print("xy", xy) - sfv2d[i][0] = xy[0] - sfv2d[i][1] = xy[1] - result = mapbox_earcut.triangulate_float64(sfv2d, rings) - # print (result.reshape(-1, 3)) - - for i,each in enumerate(result): - # print (sf[i]) - result[i] = sf[each] - - # print (result.reshape(-1, 3)) - return (result.reshape(-1, 3), True) - - def export2b3dm(self): glb = convert.to_glb(self) b3dm = convert.to_b3dm(self, glb) @@ -1661,18 +1497,20 @@ def export2obj(self): # print(vnp) #-- start with the CO for theid in self.j['CityObjects']: + if 'geometry' not in self.j['CityObjects'][theid]: + continue for geom in self.j['CityObjects'][theid]['geometry']: out.write('o ' + str(theid) + '\n') if ( (geom['type'] == 'MultiSurface') or (geom['type'] == 'CompositeSurface') ): for face in geom['boundaries']: - re, b = self.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp) if b == True: for t in re: out.write("f %d %d %d\n" % (t[0] + 1, t[1] + 1, t[2] + 1)) elif (geom['type'] == 'Solid'): for shell in geom['boundaries']: for i, face in enumerate(shell): - re, b = self.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp) if b == True: for t in re: out.write("f %d %d %d\n" % (t[0] + 1, t[1] + 1, t[2] + 1)) @@ -1702,7 +1540,7 @@ def export2stl(self): for geom in self.j['CityObjects'][theid]['geometry']: if ( (geom['type'] == 'MultiSurface') or (geom['type'] == 'CompositeSurface') ): for face in geom['boundaries']: - re, b = self.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp) n, bb = geom_help.get_normal_newell(face) if b == True: for t in re: @@ -1714,7 +1552,7 @@ def export2stl(self): elif (geom['type'] == 'Solid'): for shell in geom['boundaries']: for i, face in enumerate(shell): - re, b = self.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp) if b == True: for t in re: out.write("facet normal %f %f %f\nouter loop\n" % (n[0], n[1], n[2])) @@ -1921,9 +1759,8 @@ def triangulate(self): vnp = np.array(self.j["vertices"]) for theid in self.j['CityObjects']: - print("=======") - print(theid) - print("=======") + if 'geometry' not in self.j['CityObjects'][theid]: + continue for geom in self.j['CityObjects'][theid]['geometry']: sflag = False mflag = False @@ -1977,8 +1814,8 @@ def triangulate(self): re = np.array(face) b = True else: - re, b = self.triangulate_face_2(face, vnp) - # re, b = self.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp) + # re, b = geom_help.triangulate_face(face, vnp) if b == True: for t in re: @@ -2059,7 +1896,7 @@ def triangulate(self): re = np.array(face) b = True else: - re, b = self.triangulate_face_2(face, vnp) + re, b = geom_help.triangulate_face(face, vnp) if b == True: for t in re: tlist3 = [] @@ -2155,7 +1992,7 @@ def triangulate(self): re = np.array(face) b = True else: - re, b = self.triangulate_face_2(face, vnp) + re, b = geom_help.triangulate_face(face, vnp) if b == True: for t in re: tlist4 = [] diff --git a/cjio/cjio.py b/cjio/cjio.py index 43e3d1c..d8c16f4 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -199,10 +199,10 @@ def exporter(cm): def processor(cm): #-- mapbox_earcut available? - if (format != 'jsonl') and (cityjson.MODULE_EARCUT_AVAILABLE == False): - str = "OBJ|glTF|b3dm export skipped: Python module 'mapbox_earcut' missing (to triangulate faces)" + if (format != 'jsonl') and (cityjson.MODULE_TRIANGLE_AVAILABLE == False): + str = "OBJ|glTF|b3dm export skipped: Python module 'triangle' missing (to triangulate faces)" utils.print_cmd_alert(str) - str = "Install it: https://pypi.org/project/mapbox-earcut/" + str = "Install it: https://pypi.org/project/triangle/" utils.print_cmd_warning(str) raise click.ClickException('Abort.') else: @@ -653,11 +653,11 @@ def triangulate_cmd(): #-- mapbox_earcut available? def processor(cm): utils.print_cmd_status('Triangulate the CityJSON file') - if (cityjson.MODULE_EARCUT_AVAILABLE == False): - str = "Cannot triangulate: Python module 'mapbox_earcut' missing. Stopping here." - utils.print_cmd_alert(str) - str = "Install it: https://pypi.org/project/mapbox-earcut/" + if (cityjson.MODULE_TRIANGLE_AVAILABLE == False): + str = "Cannot triangulate: Python module 'triangle' missing. Stopping here." utils.print_cmd_alert(str) + str = "Install it: https://pypi.org/project/triangle/" + utils.print_cmd_warning(str) raise click.ClickException('Abort.') return cm if not(cm.is_triangulated()): diff --git a/cjio/geom_help.py b/cjio/geom_help.py index 638f859..291251b 100755 --- a/cjio/geom_help.py +++ b/cjio/geom_help.py @@ -2,11 +2,11 @@ import numpy as np -MODULE_EARCUT_AVAILABLE = True +MODULE_TRIANGLE_AVAILABLE = True try: - import mapbox_earcut + import triangle except ImportError as e: - MODULE_EARCUT_AVAILABLE = False + MODULE_TRIANGLE_AVAILABLE = False def to_2d(p, n): #-- n must be normalised @@ -43,42 +43,113 @@ def get_normal_newell(poly): n = n / math.sqrt(n[0]*n[0] + n[1]*n[1] + n[2]*n[2]) return (n, True) -def get_centroid(ring): - from shapely.geometry.polygon import LinearRing - from shapely.geometry.polygon import Point - r = LinearRing(ring) - c = r.representative_point() - print("centroidddd:", r.contains(c)) - # print("centroidddd:", r.contains(Point(66, 11))) - # return r.centroid - return r.representative_point() +##-- with Shewchuk Triangle library def triangulate_face(face, vnp): - if not MODULE_EARCUT_AVAILABLE: - raise ModuleNotFoundError("mapbox-earcut is not installed") - if ((len(face) == 1) and (len(face[0]) == 3)): - # print ("Already a triangle") - return face - sf = np.array([], dtype=np.int32) - for ring in face: - sf = np.hstack((sf, np.array(ring))) - sfv = vnp[sf] - rings = np.zeros(len(face), dtype=np.int32) - total = 0 - for i in range(len(face)): - total += len(face[i]) - rings[i] = total + #-- if a triangle then do nothing + if ( (len(face) == 1) and (len(face[0]) == 3) ): + return (np.array(face), True) + sf = np.array([], dtype=np.int64) + for ring in face: + sf = np.hstack( (sf, np.array(ring)) ) + sfv = vnp[sf] + + rings = np.zeros(len(face), dtype=np.int64) + total = 0 + for i in range(len(face)): + total += len(face[i]) + rings[i] = total + + # 1. normal with Newell's method + n, b = get_normal_newell(sfv) + + # 2. project to the plane to get xy + sfv2d = np.zeros((sfv.shape[0], 2)) + for i,p in enumerate(sfv): + xy = to_2d(p, n) + sfv2d[i][0] = xy[0] + sfv2d[i][1] = xy[1] + + #-- 3. deal with segments/constraints, prepare the Triangle input + sg = np.zeros( (rings[-1], 2), dtype=np.int64) + for i,e in enumerate(sg): + sg[i][0] = i + sg[i][1] = i + 1 + starti = 0 + for each in rings: + sg[each - 1][1] = starti + starti = each + #-- deal with holes + if len(rings) > 1: + holes = np.zeros((len(rings) - 1, 2)) + for k in range(len(rings) - 1): + #-- basically triangulate the Triangle the Ring, and find the centre + #-- of mass of the first triangle + a = sfv2d[rings[k]:rings[k+1]] + sg1 = np.zeros( (a.shape[0], 2), dtype=np.int64) + for i,e in enumerate(sg1): + sg1[i][0] = i + sg1[i][1] = i + 1 + sg1[-1][1] = 0 + pcl = dict(vertices=a, segments=sg1) + trl = triangle.triangulate(pcl, 'p') + t = trl['triangles'][0] + c = np.average(a[t], axis=0) #-- find its centre of mass + holes[k][0] = c[0] + holes[k][1] = c[1] + A = dict(vertices=sfv2d, segments=sg, holes=holes) + else: + A = dict(vertices=sfv2d, segments=sg) + re = triangle.triangulate(A, 'p') + #-- check the output + if 'triangles' not in re: + return([], False) + re = re['triangles'] + for i,each in enumerate(re): + try: + re[i] = sf[each] + except: + return(re, False) + return (re, True) + +def triangulate_face_mapbox_earcut(face, vnp): + sf = np.array([], dtype=np.int64) + if ( (len(face) == 1) and (len(face[0]) == 3) ): + return (np.array(face), True) + for ring in face: + sf = np.hstack( (sf, np.array(ring)) ) + sfv = vnp[sf] + # print(sf) + # print(sfv) + rings = np.zeros(len(face), dtype=np.int32) + total = 0 + for i in range(len(face)): + total += len(face[i]) + rings[i] = total + # print(rings) + # 1. normal with Newell's method - n, b = get_normal_newell(sfv) - sfv2d = np.zeros((sfv.shape[0], 2)) - for i, p in enumerate(sfv): - xy = to_2d(p, n) - sfv2d[i][0] = xy[0] - sfv2d[i][1] = xy[1] - result = mapbox_earcut.triangulate_float32(sfv2d, rings) + n, b = geom_help.get_normal_newell(sfv) + + #-- if already a triangle then return it + if b == False: + return (n, False) + # print ("Newell:", n) - for i, each in enumerate(result): - result[i] = int(sf[each]) + # 2. project to the plane to get xy + sfv2d = np.zeros( (sfv.shape[0], 2)) + # print (sfv2d) + for i,p in enumerate(sfv): + xy = geom_help.to_2d(p, n) + # print("xy", xy) + sfv2d[i][0] = xy[0] + sfv2d[i][1] = xy[1] + result = mapbox_earcut.triangulate_float64(sfv2d, rings) + # print (result.reshape(-1, 3)) - # print (type(result.reshape(-1, 3).tolist()[0][0])) - return result.reshape(-1, 3).tolist() + for i,each in enumerate(result): + # print (sf[i]) + result[i] = sf[each] + + # print (result.reshape(-1, 3)) + return (result.reshape(-1, 3), True) \ No newline at end of file From 138a25f5e2fb793d59d684f163c9cac22d3da4ab Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Wed, 9 Mar 2022 09:10:09 +0100 Subject: [PATCH 49/90] Fix bug where Triangle segfault with duplicate points A bit slower but it's now fixed, doesn't crash but doesn't necessarily returns a valid triangulation, but then it's faulty input so little we can do --- cjio/geom_help.py | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/cjio/geom_help.py b/cjio/geom_help.py index 291251b..b5ac6b0 100755 --- a/cjio/geom_help.py +++ b/cjio/geom_help.py @@ -46,9 +46,22 @@ def get_normal_newell(poly): ##-- with Shewchuk Triangle library def triangulate_face(face, vnp): - #-- if a triangle then do nothing - if ( (len(face) == 1) and (len(face[0]) == 3) ): - return (np.array(face), True) + #-- remove duplicate vertices, which can *easily* make Triangle segfault + for i,each in enumerate(face): + if len(set(each)) < len(each): #-- there are duplicates + re = [] + for k in each: + if re.count(k) == 0: + re.append(k) + face[i] = re + + if ( (len(face) == 1) and (len(face[0]) <= 3) ): + if len(face[0]) == 3: + #-- if a triangle then do nothing + return (np.array(face), True) + else: + #-- if collapsed then ignore and return false + return (np.array(face), False) sf = np.array([], dtype=np.int64) for ring in face: sf = np.hstack( (sf, np.array(ring)) ) From 88689e5b48f8fc5f32be6e32e937b5e5084bd73b Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 15 Mar 2022 08:43:16 +0100 Subject: [PATCH 50/90] Output a fixed number of digits (based on "transform") for OBJ export and fixed the bug where the model wasn't compressed after OBJ export fixes #134 --- cjio/cityjson.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 30a7e65..b809015 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1476,11 +1476,14 @@ def export2jsonl(self): return out def export2obj(self): + imp_digits = math.ceil(abs(math.log(self.j["transform"]["scale"][0], 10))) + ids = "." + str(imp_digits) + "f" self.decompress() out = StringIO() #-- write vertices for v in self.j['vertices']: - out.write('v ' + str(v[0]) + ' ' + str(v[1]) + ' ' + str(v[2]) + '\n') + s = format("v {} {} {}\n".format(format(v[0], ids), format(v[1], ids), format(v[2], ids))) + out.write(s) vnp = np.array(self.j["vertices"]) #-- translate to minx,miny minx = 9e9 @@ -1514,6 +1517,7 @@ def export2obj(self): if b == True: for t in re: out.write("f %d %d %d\n" % (t[0] + 1, t[1] + 1, t[2] + 1)) + self.compress(imp_digits) return out def export2stl(self): From 45242a87d9213631c418140f8a8e607baf7b94a2 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Wed, 16 Mar 2022 16:46:15 +0100 Subject: [PATCH 51/90] Fix bug with invalid data when triangulating, but still segfault... --- cjio/cityjson.py | 2 +- cjio/geom_help.py | 17 +++++++++++++++-- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index b809015..ba56ea4 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1761,8 +1761,8 @@ def triangulate(self): Triangulate the CityJSON file face by face together with the texture information. """ vnp = np.array(self.j["vertices"]) - for theid in self.j['CityObjects']: + # print(theid) if 'geometry' not in self.j['CityObjects'][theid]: continue for geom in self.j['CityObjects'][theid]['geometry']: diff --git a/cjio/geom_help.py b/cjio/geom_help.py index b5ac6b0..5cdcded 100755 --- a/cjio/geom_help.py +++ b/cjio/geom_help.py @@ -46,6 +46,7 @@ def get_normal_newell(poly): ##-- with Shewchuk Triangle library def triangulate_face(face, vnp): + # print(face) #-- remove duplicate vertices, which can *easily* make Triangle segfault for i,each in enumerate(face): if len(set(each)) < len(each): #-- there are duplicates @@ -54,7 +55,8 @@ def triangulate_face(face, vnp): if re.count(k) == 0: re.append(k) face[i] = re - + # print(face) + # print(len(face)) if ( (len(face) == 1) and (len(face[0]) <= 3) ): if len(face[0]) == 3: #-- if a triangle then do nothing @@ -62,6 +64,11 @@ def triangulate_face(face, vnp): else: #-- if collapsed then ignore and return false return (np.array(face), False) + + for i, ring in enumerate(face): + if len(ring) < 3: + #-- if a triangle then do nothing + return (np.zeros(1), False) sf = np.array([], dtype=np.int64) for ring in face: sf = np.hstack( (sf, np.array(ring)) ) @@ -113,7 +120,13 @@ def triangulate_face(face, vnp): A = dict(vertices=sfv2d, segments=sg, holes=holes) else: A = dict(vertices=sfv2d, segments=sg) - re = triangle.triangulate(A, 'p') + + try: + re = triangle.triangulate(A, 'p') + except: + print("Houston we have a problem...") + # re = {} + return(np.array(face), False) #-- check the output if 'triangles' not in re: return([], False) From 87d3d31bb509ee2ba645ac81d4a1e7b34b26e4fa Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Thu, 17 Mar 2022 07:46:13 +0100 Subject: [PATCH 52/90] Put back the mapbox-earcut triangulator, this is now the option '--sloppy' So if the Shewchuk's triangulator fails because of faulty input, then the user can fall back on that library, which is not crashing but outputs collapsed triangles often... Works for triangulate(), and for export() of OBJ and STL --- cjio/cityjson.py | 26 ++++++++++++++++---------- cjio/cjio.py | 30 ++++++++++++++++++++++-------- cjio/geom_help.py | 19 ++++++++++++++++--- 3 files changed, 54 insertions(+), 21 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index ba56ea4..cbc8ceb 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -16,6 +16,7 @@ MODULE_NUMPY_AVAILABLE = True MODULE_PYPROJ_AVAILABLE = True MODULE_TRIANGLE_AVAILABLE = True +MODULE_EARCUT_AVAILABLE = True MODULE_PANDAS_AVAILABLE = True MODULE_CJVAL_AVAILABLE = True @@ -28,6 +29,10 @@ import triangle except ImportError as e: MODULE_TRIANGLE_AVAILABLE = False +try: + import mapbox_earcut +except ImportError as e: + MODULE_EARCUT_AVAILABLE = False try: import pandas except ImportError as e: @@ -1475,7 +1480,7 @@ def export2jsonl(self): idsdone.add(theid) return out - def export2obj(self): + def export2obj(self, sloppy): imp_digits = math.ceil(abs(math.log(self.j["transform"]["scale"][0], 10))) ids = "." + str(imp_digits) + "f" self.decompress() @@ -1506,21 +1511,21 @@ def export2obj(self): out.write('o ' + str(theid) + '\n') if ( (geom['type'] == 'MultiSurface') or (geom['type'] == 'CompositeSurface') ): for face in geom['boundaries']: - re, b = geom_help.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp, sloppy) if b == True: for t in re: out.write("f %d %d %d\n" % (t[0] + 1, t[1] + 1, t[2] + 1)) elif (geom['type'] == 'Solid'): for shell in geom['boundaries']: for i, face in enumerate(shell): - re, b = geom_help.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp, sloppy) if b == True: for t in re: out.write("f %d %d %d\n" % (t[0] + 1, t[1] + 1, t[2] + 1)) self.compress(imp_digits) return out - def export2stl(self): + def export2stl(self, sloppy): #TODO: refectoring, duplicated code from 2obj() out = StringIO() out.write("solid\n") @@ -1544,7 +1549,7 @@ def export2stl(self): for geom in self.j['CityObjects'][theid]['geometry']: if ( (geom['type'] == 'MultiSurface') or (geom['type'] == 'CompositeSurface') ): for face in geom['boundaries']: - re, b = geom_help.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp, sloppy) n, bb = geom_help.get_normal_newell(face) if b == True: for t in re: @@ -1556,7 +1561,8 @@ def export2stl(self): elif (geom['type'] == 'Solid'): for shell in geom['boundaries']: for i, face in enumerate(shell): - re, b = geom_help.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp, sloppy) + n, bb = geom_help.get_normal_newell(face) if b == True: for t in re: out.write("facet normal %f %f %f\nouter loop\n" % (n[0], n[1], n[2])) @@ -1756,7 +1762,7 @@ def add_lineage_item(self, description: str, features: list = None, source: list self.j["+metadata-extended"]["lineage"].append(new_item) - def triangulate(self): + def triangulate(self, sloppy): """ Triangulate the CityJSON file face by face together with the texture information. """ @@ -1818,7 +1824,7 @@ def triangulate(self): re = np.array(face) b = True else: - re, b = geom_help.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp, sloppy) # re, b = geom_help.triangulate_face(face, vnp) if b == True: @@ -1900,7 +1906,7 @@ def triangulate(self): re = np.array(face) b = True else: - re, b = geom_help.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp, sloppy) if b == True: for t in re: tlist3 = [] @@ -1996,7 +2002,7 @@ def triangulate(self): re = np.array(face) b = True else: - re, b = geom_help.triangulate_face(face, vnp) + re, b = geom_help.triangulate_face(face, vnp, sloppy) if b == True: for t in re: tlist4 = [] diff --git a/cjio/cjio.py b/cjio/cjio.py index d8c16f4..76df5b2 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -124,7 +124,8 @@ def processor(cm): type=click.Choice(['obj', 'jsonl', 'stl', 'glb', 'b3dm']), required=True) @click.argument('filename') -def export_cmd(filename, format): +@click.option('--sloppy', is_flag=True, help='Use a more lenient triangulator (mapbox-earcut), which is also less robust.') +def export_cmd(filename, format, sloppy): """Export to another format. OBJ, Binary glTF (glb), Batched 3DModel (b3dm), STL, JSONL (JSON Lines, for streaming). @@ -135,9 +136,10 @@ def export_cmd(filename, format): \b cjio myfile.city.json export obj myfile.obj + cjio myfile.city.json export --sloppy obj myfile.obj cjio myfile.city.json export jsonl myfile.txt """ - def exporter(cm): + def exporter(cm, sloppy): output = utils.verify_filename(filename) if output['dir']: os.makedirs(output['path'], exist_ok=True) @@ -150,7 +152,7 @@ def exporter(cm): utils.print_cmd_status("Exporting CityJSON to OBJ (%s)" % (output['path'])) try: with click.open_file(output['path'], mode='w') as fo: - re = cm.export2obj() + re = cm.export2obj(sloppy) fo.write(re.getvalue()) except IOError as e: raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) @@ -158,7 +160,7 @@ def exporter(cm): utils.print_cmd_status("Exporting CityJSON to STL (%s)" % (output['path'])) try: with click.open_file(output['path'], mode='w') as fo: - re = cm.export2stl() + re = cm.export2stl(sloppy) fo.write(re.getvalue()) except IOError as e: raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) @@ -198,7 +200,6 @@ def exporter(cm): raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) def processor(cm): - #-- mapbox_earcut available? if (format != 'jsonl') and (cityjson.MODULE_TRIANGLE_AVAILABLE == False): str = "OBJ|glTF|b3dm export skipped: Python module 'triangle' missing (to triangulate faces)" utils.print_cmd_alert(str) @@ -206,7 +207,7 @@ def processor(cm): utils.print_cmd_warning(str) raise click.ClickException('Abort.') else: - exporter(cm) + exporter(cm, sloppy) return cm return processor @@ -642,13 +643,19 @@ def processor(cm): return processor @cli.command('triangulate') -def triangulate_cmd(): +@click.option('--sloppy', is_flag=True, help='Use a more lenient triangulator (mapbox-earcut), which is also less robust.') +def triangulate_cmd(sloppy): """ Triangulate every surface. + If the robust method fails (crash) then it is caused by invalid input. + You can use the option '--sloppy' which uses a more lenient library (mapbox-earcut), + but watch out it is less robust (collapsed triangles could be created). + Takes care of updating: (1) semantics; (2) textures; (3) material. $ cjio myfile.city.json triangulate save mytriangles.city.json + $ cjio myfile.city.json triangulate --sloppy save mytriangles.city.json """ #-- mapbox_earcut available? def processor(cm): @@ -661,7 +668,14 @@ def processor(cm): raise click.ClickException('Abort.') return cm if not(cm.is_triangulated()): - cm.triangulate() + if sloppy == True and cityjson.MODULE_EARCUT_AVAILABLE == False: + str = "Cannot triangulate: Python module 'mapbox_earcut' missing. Stopping here." + utils.print_cmd_alert(str) + str = "Install it: https://pypi.org/project/mapbox-earcut/" + utils.print_cmd_warning(str) + raise click.ClickException('Abort.') + else: + cm.triangulate(sloppy) else: utils.print_cmd_status('This file is already triangulated!') return cm diff --git a/cjio/geom_help.py b/cjio/geom_help.py index 5cdcded..0d63c8f 100755 --- a/cjio/geom_help.py +++ b/cjio/geom_help.py @@ -8,6 +8,12 @@ except ImportError as e: MODULE_TRIANGLE_AVAILABLE = False +MODULE_EARCUT_AVAILABLE = True +try: + import mapbox_earcut +except ImportError as e: + MODULE_EARCUT_AVAILABLE = False + def to_2d(p, n): #-- n must be normalised # p = np.array([1, 2, 3]) @@ -44,8 +50,15 @@ def get_normal_newell(poly): return (n, True) +def triangulate_face(face, vnp, sloppy=False): + if sloppy == False: + return triangulate_face_shewchuk(face, vnp) + else: + return triangulate_face_mapbox_earcut(face, vnp) + + ##-- with Shewchuk Triangle library -def triangulate_face(face, vnp): +def triangulate_face_shewchuk(face, vnp): # print(face) #-- remove duplicate vertices, which can *easily* make Triangle segfault for i,each in enumerate(face): @@ -155,7 +168,7 @@ def triangulate_face_mapbox_earcut(face, vnp): # print(rings) # 1. normal with Newell's method - n, b = geom_help.get_normal_newell(sfv) + n, b = get_normal_newell(sfv) #-- if already a triangle then return it if b == False: @@ -166,7 +179,7 @@ def triangulate_face_mapbox_earcut(face, vnp): sfv2d = np.zeros( (sfv.shape[0], 2)) # print (sfv2d) for i,p in enumerate(sfv): - xy = geom_help.to_2d(p, n) + xy = to_2d(p, n) # print("xy", xy) sfv2d[i][0] = xy[0] sfv2d[i][1] = xy[1] From dd60d73a063b993e71b6f1a0212567b189b744e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Fri, 25 Mar 2022 15:14:56 +0100 Subject: [PATCH 53/90] Deep copy from source CM in subset With a shallow copy CityObjects the geometry gets scrambled in subsequent subsets Fixes #86 --- cjio/cityjson.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index cbc8ceb..6ced43b 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -652,15 +652,15 @@ def subset(self, lsIDs, exclude=False): re = list(re) #-- new sliced CityJSON object cm2 = CityJSON() - cm2.j["version"] = self.j["version"] - cm2.path = self.path + cm2.j["version"] = copy.deepcopy(self.j["version"]) + cm2.path = copy.deepcopy(self.path) if "extensions" in self.j: - cm2.j["extensions"] = self.j["extensions"] + cm2.j["extensions"] = copy.deepcopy(self.j["extensions"]) if "transform" in self.j: - cm2.j["transform"] = self.j["transform"] + cm2.j["transform"] = copy.deepcopy(self.j["transform"]) #-- select only the COs for each in re: - cm2.j["CityObjects"][each] = self.j["CityObjects"][each] + cm2.j["CityObjects"][each] = copy.deepcopy(self.j["CityObjects"][each]) #-- geometry subset.process_geometry(self.j, cm2.j) #-- templates @@ -672,10 +672,10 @@ def subset(self, lsIDs, exclude=False): #-- copy all other non mandatory properties for p in self.j: if p not in CITYJSON_PROPERTIES: - cm2.j[p] = self.j[p] + cm2.j[p] = copy.deepcopy(self.j[p]) #-- metadata if "metadata" in self.j: - cm2.j["metadata"] = self.j["metadata"] + cm2.j["metadata"] = copy.deepcopy(self.j["metadata"]) cm2.update_metadata() if self.has_metadata_extended(): try: From 2e2c6a53eb4aac65d0c1677d4a5b8088f29ded3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Sun, 3 Apr 2022 10:16:41 +0200 Subject: [PATCH 54/90] Fix random subset It was sampling with replacement while removing duplicates from the sample afterwards. Therefore it was often returning less number of objects than requested. Fixes #120 --- cjio/cityjson.py | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 6ced43b..5dfc8d9 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -689,19 +689,15 @@ def subset(self, lsIDs, exclude=False): def get_subset_random(self, number=1, exclude=False): - random.seed() - total = len(self.j["CityObjects"]) - if number > total: - number = total - allkeys = list(self.j["CityObjects"].keys()) - re = set() - count = 0 - while (count < number): - t = allkeys[random.randint(0, total - 1)] - if self.is_co_toplevel(self.j["CityObjects"][t]): - re.add(t) - count += 1 - return self.subset(lsIDs=re, exclude=exclude) + """Get a random sample of CityObjects without replacement.""" + top_level_cos = [id for id, co in self.j["CityObjects"].items() + if self.is_co_toplevel(co)] + try: + random_ids = random.sample(top_level_cos, k=number) + except ValueError: + # If the sample size 'k' is larger than the number of CityObjects + random_ids = top_level_cos + return self.subset(lsIDs=random_ids, exclude=exclude) def get_subset_ids(self, lsIDs, exclude=False): From c5bc17f98b3cbe8f6bd42c93b7c1405f8e5840cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Sun, 3 Apr 2022 11:50:14 +0200 Subject: [PATCH 55/90] Add triangle library to install extras; Fix stl export test --- setup.py | 3 ++- tests/test_cityjson.py | 4 ++-- tests/test_cli.py | 8 +++++--- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 43413f8..4405ac1 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,8 @@ ], 'export': [ 'pandas', - 'mapbox-earcut' + 'mapbox-earcut', + 'triangle' ], 'validate': [ 'cjvalpy' diff --git a/tests/test_cityjson.py b/tests/test_cityjson.py index 3904c24..3258113 100644 --- a/tests/test_cityjson.py +++ b/tests/test_cityjson.py @@ -197,12 +197,12 @@ def test_reproject(self, delft_1b): def test_convert_to_stl(self, delft): cm = copy.deepcopy(delft) - obj = cm.export2stl() + obj = cm.export2stl(sloppy=True) def test_triangulate(self, materials): """Test #101""" cm = materials - cm.triangulate() + cm.triangulate(sloppy=False) def test_is_triangulate(self, triangulated): cm = triangulated diff --git a/tests/test_cli.py b/tests/test_cli.py index efbda85..37719e1 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -42,7 +42,8 @@ def test_export_obj_cli(self, delft_path, data_output_dir): 'export', 'obj', p_out]) - + if result.exit_code != 0: + print(f"CLI returned '{result.output}'") assert result.exit_code == 0 assert os.path.exists(p_out) == True @@ -54,14 +55,15 @@ def test_metadata_get_cli(self, delft_path): args=[delft_path, 'metadata_get']) - assert result.exit_code == 0 + assert result.exit_code == 0 def test_info_cli(self, delft_path): runner = CliRunner() result = runner.invoke(cjio.cli, args=[delft_path, 'info']) - + if result.exit_code != 0: + print(f"CLI returned '{result.output}'") assert result.exit_code == 0 def test_merge_cli(self, delft_path, rotterdam_subset_path, data_output_dir): From ebc357dd4c51cb9990e9c561ecd9c700a9233b11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Sun, 3 Apr 2022 12:13:34 +0200 Subject: [PATCH 56/90] Get meaningful error message from cityjson.get_epsg --- cjio/cityjson.py | 3 ++- tests/data/delft.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 5dfc8d9..8f18885 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -12,7 +12,6 @@ from io import StringIO from click import progressbar from datetime import datetime -from typing import Tuple MODULE_NUMPY_AVAILABLE = True MODULE_PYPROJ_AVAILABLE = True MODULE_TRIANGLE_AVAILABLE = True @@ -356,6 +355,8 @@ def get_epsg(self): return None if "referenceSystem" in self.j["metadata"]: s = self.j["metadata"]["referenceSystem"] + if "opengis.net/def/crs" not in s or s.rfind("/") < 0: + raise ValueError(f"Invalid CRS string '{s}'. CRS needs to be formatted according to the OGC Name Type Specification: 'http://www.opengis.net/def/crs/{{authority}}/{{version}}/{{code}}'") return int(s[s.rfind("/")+1:]) else: return None diff --git a/tests/data/delft.json b/tests/data/delft.json index cde287a..5a391da 100644 --- a/tests/data/delft.json +++ b/tests/data/delft.json @@ -1 +1 @@ -{"CityObjects":{"b0a8da4cc-2d2a-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09d7049cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[0,1,2]],[[0,3,1]],[[4,5,6]],[[4,7,5]],[[8,3,0]],[[4,9,7]],[[7,10,11]],[[11,12,13]],[[13,14,15]],[[13,12,14]],[[11,10,12]],[[7,9,10]],[[16,4,3]],[[9,16,17]],[[9,4,16]],[[18,8,0]],[[16,3,8]],[[0,19,18]],[[0,20,19]],[[21,1,3]],[[22,1,21]],[[23,3,4]],[[21,3,23]],[[24,4,6]],[[23,4,24]],[[25,6,5]],[[24,6,25]],[[26,5,7]],[[25,5,26]],[[27,7,11]],[[26,7,27]],[[28,11,13]],[[27,11,28]],[[29,27,28]],[[30,13,15]],[[28,13,30]],[[31,10,9]],[[32,10,31]],[[33,9,17]],[[31,9,33]],[[34,17,16]],[[33,17,34]],[[35,16,8]],[[34,16,35]],[[36,8,18]],[[35,8,36]],[[37,18,19]],[[36,18,37]],[[38,36,37]],[[39,19,20]],[[37,19,39]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"b1105d28c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-52.4)","identificatiebagpnd":"503100000000035","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027121)","inonderzoek":"0","lokaalid":"G0503.032e68eff7ec49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.0,"min-height-surface":-0.100000001490116,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85012.966 447473.243)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:6)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[40,41,42]],[[43,44,40]],[[45,46,47]],[[48,49,50]],[[48,51,52]],[[48,53,49]],[[45,47,54]],[[53,55,56]],[[57,53,52]],[[52,53,48]],[[58,55,59]],[[59,55,57]],[[59,57,60]],[[55,53,57]],[[46,61,62]],[[63,64,62]],[[64,65,66]],[[65,64,67]],[[68,65,67]],[[67,64,63]],[[69,67,63]],[[70,71,63]],[[63,62,61]],[[72,71,73]],[[74,72,75]],[[76,74,77]],[[77,74,75]],[[78,77,75]],[[75,72,79]],[[80,75,79]],[[81,80,79]],[[82,81,79]],[[79,72,73]],[[83,79,84]],[[84,79,85]],[[86,84,85]],[[87,86,88]],[[88,86,85]],[[85,79,89]],[[89,79,73]],[[73,71,90]],[[91,73,92]],[[92,73,90]],[[90,71,93]],[[93,71,70]],[[46,62,52]],[[43,40,54]],[[94,95,96]],[[94,70,61]],[[94,61,95]],[[70,63,61]],[[51,46,52]],[[51,47,46]],[[44,41,40]],[[45,54,40]],[[97,42,98]],[[99,42,97]],[[100,99,97]],[[100,97,101]],[[98,42,102]],[[103,98,104]],[[104,98,105]],[[106,104,105]],[[107,108,109]],[[105,107,110]],[[110,107,109]],[[109,108,111]],[[98,102,105]],[[105,112,107]],[[113,112,102]],[[112,113,114]],[[114,113,115]],[[112,105,102]],[[113,102,116]],[[42,41,102]],[[117,118,44]],[[44,118,41]],[[119,117,43]],[[43,117,44]],[[120,119,54]],[[54,119,43]],[[121,120,47]],[[47,120,54]],[[122,121,51]],[[51,121,47]],[[123,122,48]],[[48,122,51]],[[124,123,50]],[[50,123,48]],[[125,124,49]],[[49,124,50]],[[126,125,53]],[[53,125,49]],[[127,126,56]],[[56,126,53]],[[128,127,55]],[[55,127,56]],[[129,128,58]],[[58,128,55]],[[130,129,59]],[[59,129,58]],[[131,130,60]],[[60,130,59]],[[132,131,57]],[[57,131,60]],[[133,132,52]],[[52,132,57]],[[134,133,62]],[[62,133,52]],[[135,134,64]],[[64,134,62]],[[136,135,66]],[[66,135,64]],[[137,136,65]],[[65,136,66]],[[138,137,68]],[[68,137,65]],[[139,138,67]],[[67,138,68]],[[140,139,69]],[[69,139,67]],[[141,140,63]],[[63,140,69]],[[142,141,71]],[[71,141,63]],[[143,142,72]],[[72,142,71]],[[144,143,74]],[[74,143,72]],[[145,144,76]],[[76,144,74]],[[146,145,77]],[[77,145,76]],[[147,146,78]],[[78,146,77]],[[148,147,75]],[[75,147,78]],[[149,148,80]],[[80,148,75]],[[150,149,81]],[[81,149,80]],[[151,150,82]],[[82,150,81]],[[152,151,79]],[[79,151,82]],[[153,152,83]],[[83,152,79]],[[154,153,84]],[[84,153,83]],[[155,154,86]],[[86,154,84]],[[156,155,87]],[[87,155,86]],[[157,156,88]],[[88,156,87]],[[158,157,85]],[[85,157,88]],[[159,158,89]],[[89,158,85]],[[160,159,73]],[[73,159,89]],[[161,160,91]],[[91,160,73]],[[162,161,92]],[[92,161,91]],[[163,162,90]],[[90,162,92]],[[164,163,93]],[[93,163,90]],[[165,164,70]],[[70,164,93]],[[166,165,94]],[[94,165,70]],[[167,166,96]],[[96,166,94]],[[168,167,95]],[[95,167,96]],[[169,168,61]],[[61,168,95]],[[170,169,46]],[[46,169,61]],[[171,170,45]],[[45,170,46]],[[172,171,40]],[[40,171,45]],[[173,172,42]],[[42,172,40]],[[174,173,99]],[[99,173,42]],[[175,174,100]],[[100,174,99]],[[176,175,101]],[[101,175,100]],[[177,176,97]],[[97,176,101]],[[178,177,98]],[[98,177,97]],[[179,178,103]],[[103,178,98]],[[180,179,104]],[[104,179,103]],[[181,180,106]],[[106,180,104]],[[182,181,105]],[[105,181,106]],[[183,182,110]],[[110,182,105]],[[184,183,109]],[[109,183,110]],[[185,184,111]],[[111,184,109]],[[186,185,108]],[[108,185,111]],[[187,186,107]],[[107,186,108]],[[188,187,112]],[[112,187,107]],[[189,188,114]],[[114,188,112]],[[190,189,115]],[[115,189,114]],[[191,190,113]],[[113,190,115]],[[192,191,116]],[[116,191,113]],[[193,192,102]],[[102,192,116]],[[118,193,41]],[[41,193,102]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11267a1d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000004048","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027095)","inonderzoek":"0","lokaalid":"G0503.032e68f0085849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.89000010490417,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84841.951 447542.723)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:168)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[194,195,196]],[[195,197,196]],[[197,198,199]],[[197,195,198]],[[195,200,198]],[[198,200,201]],[[202,203,204]],[[204,203,205]],[[204,205,194]],[[194,205,206]],[[194,206,207]],[[194,207,195]],[[208,202,209]],[[209,202,204]],[[209,204,196]],[[196,204,194]],[[210,208,197]],[[197,208,209]],[[197,209,196]],[[211,210,199]],[[199,210,197]],[[212,211,198]],[[198,211,199]],[[213,212,201]],[[201,212,198]],[[214,213,215]],[[215,213,216]],[[216,213,200]],[[200,213,201]],[[203,214,205]],[[205,214,206]],[[206,214,215]],[[206,215,207]],[[207,215,216]],[[207,216,195]],[[195,216,200]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126a169-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000032718","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027096)","inonderzoek":"0","lokaalid":"G0503.032e68f0086549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84835.527 447547.038)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:170)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[217,207,218]],[[218,207,219]],[[217,216,207]],[[217,220,221]],[[216,217,221]],[[222,223,220]],[[221,220,223]],[[224,223,225]],[[226,222,220]],[[225,223,222]],[[227,226,220]],[[228,226,227]],[[229,228,227]],[[230,231,217]],[[217,231,232]],[[217,232,233]],[[217,233,220]],[[234,230,235]],[[235,230,218]],[[218,230,217]],[[236,234,237]],[[237,234,235]],[[237,235,219]],[[219,235,218]],[[206,236,207]],[[207,236,237]],[[207,237,219]],[[215,206,216]],[[216,206,207]],[[238,215,221]],[[221,215,216]],[[239,238,223]],[[223,238,221]],[[240,239,224]],[[224,239,223]],[[241,240,225]],[[225,240,224]],[[242,241,222]],[[222,241,225]],[[243,242,226]],[[226,242,222]],[[244,243,228]],[[228,243,226]],[[245,244,229]],[[229,244,228]],[[246,245,247]],[[247,245,248]],[[248,245,227]],[[227,245,229]],[[231,246,232]],[[232,246,247]],[[232,247,233]],[[233,247,248]],[[233,248,220]],[[220,248,227]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126c87e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026153","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027097)","inonderzoek":"0","lokaalid":"G0503.032e68f0086649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.49000000953674,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84830.424 447550.641)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:172)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[233,249,248]],[[248,249,250]],[[250,251,252]],[[250,253,251]],[[254,255,253]],[[249,254,253]],[[249,233,256]],[[250,249,253]],[[233,257,256]],[[232,258,233]],[[233,258,259]],[[233,259,260]],[[233,260,257]],[[247,232,248]],[[248,232,233]],[[261,247,250]],[[250,247,248]],[[262,261,252]],[[252,261,250]],[[263,262,251]],[[251,262,252]],[[264,263,253]],[[253,263,251]],[[265,264,255]],[[255,264,253]],[[266,265,254]],[[254,265,255]],[[267,266,249]],[[249,266,254]],[[268,267,269]],[[269,267,270]],[[270,267,256]],[[256,267,249]],[[258,268,259]],[[259,268,269]],[[259,269,260]],[[260,269,270]],[[260,270,257]],[[257,270,256]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126c883-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000026154","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027023)","inonderzoek":"0","lokaalid":"G0503.032e68f0086749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.48000001907349,"min-height-surface":0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84843.704 447561.474)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:1)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[271,272,270]],[[271,270,260]],[[272,273,270]],[[272,274,273]],[[275,276,277]],[[277,276,278]],[[277,278,271]],[[271,278,272]],[[259,275,260]],[[260,275,277]],[[260,277,271]],[[269,259,270]],[[270,259,260]],[[279,269,273]],[[273,269,270]],[[280,279,274]],[[274,279,273]],[[276,280,278]],[[278,280,272]],[[272,280,274]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715ef-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026151","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000061493)","inonderzoek":"0","lokaalid":"G0503.032e68f0087749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.29999995231628,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84850.858 447537.122)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:164)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[281,282,283]],[[281,284,282]],[[281,285,284]],[[281,286,285]],[[281,287,288]],[[286,281,289]],[[289,281,288]],[[288,287,290]],[[291,292,281]],[[281,292,287]],[[293,291,294]],[[294,291,283]],[[283,291,281]],[[295,293,296]],[[296,293,294]],[[296,294,282]],[[282,294,283]],[[297,295,284]],[[284,295,296]],[[284,296,282]],[[298,297,285]],[[285,297,284]],[[299,298,286]],[[286,298,285]],[[300,299,301]],[[301,299,289]],[[289,299,286]],[[302,300,303]],[[303,300,301]],[[303,301,288]],[[288,301,289]],[[304,302,290]],[[290,302,303]],[[290,303,288]],[[292,304,287]],[[287,304,290]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715f4-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026152","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027094)","inonderzoek":"0","lokaalid":"G0503.032e68f0087849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.04999995231628,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84845.575 447540.308)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:166)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[301,303,305]],[[301,306,307]],[[301,305,306]],[[305,308,309]],[[305,310,308]],[[308,310,311]],[[311,310,312]],[[305,303,310]],[[300,302,301]],[[301,302,303]],[[313,300,307]],[[307,300,301]],[[209,313,196]],[[196,313,306]],[[306,313,307]],[[204,209,194]],[[194,209,196]],[[194,196,305]],[[305,196,306]],[[205,204,206]],[[206,204,207]],[[207,204,195]],[[195,204,194]],[[195,194,309]],[[309,194,305]],[[314,205,236]],[[236,205,206]],[[236,206,237]],[[237,206,219]],[[219,206,207]],[[219,207,315]],[[315,207,308]],[[308,207,195]],[[308,195,309]],[[316,314,317]],[[317,314,236]],[[317,236,237]],[[317,237,318]],[[318,237,219]],[[318,219,315]],[[318,315,311]],[[311,315,308]],[[319,316,312]],[[312,316,317]],[[312,317,318]],[[312,318,311]],[[320,319,310]],[[310,319,312]],[[302,320,303]],[[303,320,310]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715fe-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:56.3)","identificatiebagpnd":"503100000026156","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027033)","inonderzoek":"0","lokaalid":"G0503.032e68f0087a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.0699999332428,"min-height-surface":0.439999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84883.885 447560.978)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:19A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[321,322,323]],[[323,324,325]],[[323,326,321]],[[325,327,328]],[[326,325,328]],[[323,325,326]],[[323,329,324]],[[329,330,331]],[[324,329,332]],[[332,329,331]],[[331,330,333]],[[334,331,333]],[[335,336,337]],[[337,336,338]],[[337,338,329]],[[329,338,330]],[[339,335,340]],[[340,335,341]],[[341,335,337]],[[341,337,323]],[[323,337,329]],[[342,339,343]],[[343,339,340]],[[343,340,322]],[[322,340,341]],[[322,341,323]],[[344,342,321]],[[321,342,343]],[[321,343,322]],[[345,344,326]],[[326,344,321]],[[346,345,328]],[[328,345,326]],[[347,346,327]],[[327,346,328]],[[348,347,325]],[[325,347,327]],[[349,348,324]],[[324,348,325]],[[350,349,332]],[[332,349,324]],[[351,350,331]],[[331,350,332]],[[352,351,334]],[[334,351,331]],[[353,352,333]],[[333,352,334]],[[336,353,338]],[[338,353,330]],[[330,353,333]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11271601-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000005344","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0087b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.97000002861023,"min-height-surface":0.490000009536743,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[354,355,356]],[[357,356,358]],[[357,358,359]],[[359,358,360]],[[356,361,358]],[[358,361,362]],[[356,363,361]],[[356,355,363]],[[364,365,357]],[[357,365,356]],[[366,364,359]],[[359,364,357]],[[367,366,360]],[[360,366,359]],[[368,367,358]],[[358,367,360]],[[343,368,322]],[[322,368,362]],[[362,368,358]],[[340,343,341]],[[341,343,323]],[[323,343,322]],[[323,322,361]],[[361,322,362]],[[369,340,370]],[[370,340,341]],[[370,341,363]],[[363,341,323]],[[363,323,361]],[[371,369,372]],[[372,369,370]],[[372,370,355]],[[355,370,363]],[[373,371,354]],[[354,371,372]],[[354,372,355]],[[365,373,356]],[[356,373,354]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1127160e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026155","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0087e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[374,375,376]],[[318,377,376]],[[375,378,376]],[[376,379,318]],[[318,379,315]],[[376,378,379]],[[375,380,378]],[[381,382,383]],[[383,382,384]],[[383,384,374]],[[374,384,375]],[[385,381,376]],[[376,381,383]],[[376,383,374]],[[386,385,377]],[[377,385,376]],[[317,386,318]],[[318,386,377]],[[237,317,219]],[[219,317,315]],[[315,317,318]],[[235,237,218]],[[218,237,219]],[[218,219,379]],[[379,219,315]],[[277,235,271]],[[271,235,378]],[[378,235,218]],[[378,218,379]],[[278,277,272]],[[272,277,271]],[[272,271,380]],[[380,271,378]],[[382,278,384]],[[384,278,375]],[[375,278,272]],[[375,272,380]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1127b2f3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000004630","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027131)","inonderzoek":"0","lokaalid":"G0503.032e68f0093c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.07999992370605,"min-height-surface":-0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84941.813 447486.436)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:76)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[387,388,389]],[[387,389,390]],[[390,389,391]],[[389,388,392]],[[389,393,394]],[[389,392,393]],[[388,395,392]],[[396,397,398]],[[398,397,399]],[[398,399,387]],[[387,399,388]],[[400,396,401]],[[401,396,398]],[[401,398,390]],[[390,398,387]],[[402,400,403]],[[403,400,404]],[[404,400,391]],[[391,400,401]],[[391,401,390]],[[405,402,406]],[[406,402,403]],[[406,403,407]],[[407,403,404]],[[407,404,389]],[[389,404,391]],[[408,405,409]],[[409,405,406]],[[409,406,410]],[[410,406,407]],[[410,407,394]],[[394,407,389]],[[411,408,412]],[[412,408,409]],[[412,409,413]],[[413,409,410]],[[413,410,393]],[[393,410,394]],[[414,411,392]],[[392,411,412]],[[392,412,413]],[[392,413,393]],[[415,414,416]],[[416,414,395]],[[395,414,392]],[[397,415,399]],[[399,415,416]],[[399,416,388]],[[388,416,395]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128005c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000004571","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027130)","inonderzoek":"0","lokaalid":"G0503.032e68f0094c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.97000002861023,"min-height-surface":-0.100000001490116,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84948.166 447484.337)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:74)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[417,418,398]],[[417,398,419]],[[419,398,401]],[[398,418,420]],[[398,416,399]],[[398,420,416]],[[418,421,420]],[[422,423,424]],[[424,423,425]],[[424,425,417]],[[417,425,418]],[[426,422,427]],[[427,422,424]],[[427,424,419]],[[419,424,417]],[[428,426,400]],[[400,426,401]],[[401,426,427]],[[401,427,419]],[[429,428,396]],[[396,428,400]],[[396,400,398]],[[398,400,401]],[[430,429,397]],[[397,429,396]],[[397,396,399]],[[399,396,398]],[[431,430,415]],[[415,430,397]],[[415,397,416]],[[416,397,399]],[[432,431,420]],[[420,431,415]],[[420,415,416]],[[433,432,434]],[[434,432,421]],[[421,432,420]],[[423,433,425]],[[425,433,434]],[[425,434,418]],[[418,434,421]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280066-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000027887","identificatiebagvbohoogstehuisnummer":"(1:503010000027074)","identificatiebagvbolaagstehuisnummer":"(1:503010000027073)","inonderzoek":"0","lokaalid":"G0503.032e68f0094e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84920.286 447536.887)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:24-26)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[435,436,437]],[[438,439,440]],[[438,440,441]],[[437,442,443]],[[443,438,441]],[[436,442,437]],[[443,444,445]],[[438,443,445]],[[441,437,443]],[[436,446,442]],[[447,448,449]],[[449,448,450]],[[449,450,435]],[[435,450,436]],[[451,447,452]],[[452,447,449]],[[452,449,437]],[[437,449,435]],[[453,451,454]],[[454,451,452]],[[454,452,441]],[[441,452,437]],[[455,453,456]],[[456,453,454]],[[456,454,440]],[[440,454,441]],[[457,455,458]],[[458,455,456]],[[458,456,439]],[[439,456,440]],[[459,457,438]],[[438,457,458]],[[438,458,439]],[[460,459,461]],[[461,459,445]],[[445,459,438]],[[462,460,463]],[[463,460,461]],[[463,461,444]],[[444,461,445]],[[464,462,443]],[[443,462,463]],[[443,463,444]],[[465,464,442]],[[442,464,443]],[[466,465,446]],[[446,465,442]],[[448,466,450]],[[450,466,436]],[[436,466,446]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128006b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000004642","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027075)","inonderzoek":"0","lokaalid":"G0503.032e68f0094f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84924.277 447540.160)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:28)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[467,468,469]],[[468,467,470]],[[467,439,470]],[[435,440,471]],[[439,467,471]],[[441,440,435]],[[437,441,435]],[[435,471,472]],[[436,435,472]],[[439,471,440]],[[467,473,471]],[[474,475,467]],[[467,475,473]],[[476,474,469]],[[469,474,467]],[[477,476,468]],[[468,476,469]],[[478,477,470]],[[470,477,468]],[[458,478,439]],[[439,478,470]],[[456,458,440]],[[440,458,439]],[[454,456,441]],[[441,456,440]],[[452,454,437]],[[437,454,441]],[[449,452,435]],[[435,452,437]],[[450,449,436]],[[436,449,435]],[[479,450,472]],[[472,450,436]],[[480,479,471]],[[471,479,472]],[[475,480,473]],[[473,480,471]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280070-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000026299","identificatiebagvbohoogstehuisnummer":"(1:503010000027112)","identificatiebagvbolaagstehuisnummer":"(1:503010000027111)","inonderzoek":"0","lokaalid":"G0503.032e68f0095049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84945.216 447536.460)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33-35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[481,482,483]],[[481,484,485]],[[482,481,485]],[[486,482,485]],[[485,484,487]],[[488,485,487]],[[487,484,489]],[[490,491,492]],[[492,491,493]],[[492,493,494]],[[494,493,495]],[[494,495,481]],[[481,495,484]],[[496,490,497]],[[497,490,492]],[[497,492,498]],[[498,492,494]],[[498,494,483]],[[483,494,481]],[[499,496,500]],[[500,496,497]],[[500,497,501]],[[501,497,498]],[[501,498,482]],[[482,498,483]],[[502,499,486]],[[486,499,500]],[[486,500,501]],[[486,501,482]],[[503,502,485]],[[485,502,486]],[[504,503,488]],[[488,503,485]],[[505,504,487]],[[487,504,488]],[[506,505,489]],[[489,505,487]],[[491,506,493]],[[493,506,495]],[[495,506,484]],[[484,506,489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280075-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000026298","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060272)","inonderzoek":"0","lokaalid":"G0503.032e68f0095149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.09999990463257,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84949.097 447541.631)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[498,507,494]],[[507,498,508]],[[508,498,501]],[[507,509,494]],[[509,510,494]],[[494,510,495]],[[510,509,511]],[[509,512,511]],[[513,514,515]],[[515,514,516]],[[515,516,507]],[[507,516,509]],[[517,513,508]],[[508,513,515]],[[508,515,507]],[[500,517,501]],[[501,517,508]],[[497,500,498]],[[498,500,501]],[[492,497,494]],[[494,497,498]],[[493,492,495]],[[495,492,494]],[[518,493,510]],[[510,493,495]],[[519,518,511]],[[511,518,510]],[[520,519,512]],[[512,519,511]],[[514,520,516]],[[516,520,509]],[[509,520,512]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128007a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000004647","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003297)","inonderzoek":"0","lokaalid":"G0503.032e68f0095249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.10999989509583,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84949.891 447597.257)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[521,522,523]],[[523,524,525]],[[524,526,527]],[[524,523,528]],[[524,528,526]],[[529,530,531]],[[528,529,531]],[[523,532,528]],[[528,532,529]],[[523,522,532]],[[532,522,533]],[[534,535,536]],[[536,535,537]],[[536,537,521]],[[521,537,522]],[[538,534,523]],[[523,534,536]],[[523,536,521]],[[539,538,525]],[[525,538,523]],[[540,539,524]],[[524,539,525]],[[541,540,527]],[[527,540,524]],[[542,541,526]],[[526,541,527]],[[543,542,528]],[[528,542,526]],[[544,543,531]],[[531,543,528]],[[545,544,530]],[[530,544,531]],[[546,545,529]],[[529,545,530]],[[547,546,532]],[[532,546,529]],[[548,547,533]],[[533,547,532]],[[535,548,537]],[[537,548,522]],[[522,548,533]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128007f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37.4)","identificatiebagpnd":"503100000004637","identificatiebagvbohoogstehuisnummer":"(1:503010000027084)","identificatiebagvbolaagstehuisnummer":"(1:503010000027076)","inonderzoek":"0","lokaalid":"G0503.032e68f0095349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.1100001335144,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84940.274 447558.360)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:30-46)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[549,550,551]],[[550,552,551]],[[550,553,552]],[[552,553,554]],[[555,556,549]],[[549,556,550]],[[557,555,551]],[[551,555,549]],[[558,557,552]],[[552,557,551]],[[559,558,554]],[[554,558,552]],[[560,559,553]],[[553,559,554]],[[556,560,550]],[[550,560,553]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11282794-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004645","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003305)","inonderzoek":"0","lokaalid":"G0503.032e68f0095449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.15999984741211,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84996.140 447550.544)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[561,562,563]],[[564,565,566]],[[566,565,567]],[[564,562,561]],[[565,564,561]],[[561,568,569]],[[561,570,568]],[[570,561,571]],[[572,561,569]],[[572,565,561]],[[573,574,575]],[[575,574,576]],[[575,576,564]],[[564,576,562]],[[577,573,578]],[[578,573,566]],[[566,573,575]],[[566,575,564]],[[579,577,580]],[[580,577,578]],[[580,578,567]],[[567,578,566]],[[581,579,565]],[[565,579,580]],[[565,580,567]],[[582,581,572]],[[572,581,565]],[[583,582,569]],[[569,582,572]],[[584,583,568]],[[568,583,569]],[[585,584,570]],[[570,584,568]],[[586,585,571]],[[571,585,570]],[[587,586,561]],[[561,586,571]],[[588,587,563]],[[563,587,561]],[[574,588,576]],[[576,588,562]],[[562,588,563]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11282799-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000025336","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003307)","inonderzoek":"0","lokaalid":"G0503.032e68f0095549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.67000007629395,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85001.101 447546.689)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:47)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[589,590,591]],[[592,591,590]],[[590,589,593]],[[593,589,594]],[[595,596,594]],[[589,595,594]],[[589,597,595]],[[589,598,597]],[[597,598,599]],[[600,601,602]],[[602,601,603]],[[602,603,604]],[[604,603,605]],[[604,605,589]],[[589,605,598]],[[606,600,607]],[[607,600,602]],[[607,602,608]],[[608,602,604]],[[608,604,591]],[[591,604,589]],[[609,606,592]],[[592,606,607]],[[592,607,608]],[[592,608,591]],[[610,609,590]],[[590,609,592]],[[575,610,564]],[[564,610,593]],[[593,610,590]],[[576,575,562]],[[562,575,564]],[[562,564,594]],[[594,564,593]],[[611,576,596]],[[596,576,562]],[[596,562,594]],[[612,611,595]],[[595,611,596]],[[613,612,597]],[[597,612,595]],[[614,613,599]],[[599,613,597]],[[601,614,603]],[[603,614,605]],[[605,614,598]],[[598,614,599]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128279e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000004646","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027115)","inonderzoek":"0","lokaalid":"G0503.032e68f0095649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84953.045 447544.630)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[615,616,617]],[[617,616,618]],[[616,615,515]],[[615,516,515]],[[615,619,516]],[[615,620,619]],[[621,622,623]],[[623,622,624]],[[623,624,615]],[[615,624,620]],[[625,621,617]],[[617,621,623]],[[617,623,615]],[[626,625,618]],[[618,625,617]],[[627,626,616]],[[616,626,618]],[[628,627,513]],[[513,627,515]],[[515,627,616]],[[629,628,514]],[[514,628,513]],[[514,513,516]],[[516,513,515]],[[630,629,619]],[[619,629,514]],[[619,514,516]],[[622,630,624]],[[624,630,620]],[[620,630,619]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000004644","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027117)","inonderzoek":"0","lokaalid":"G0503.032e68f0095749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.46000003814697,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84957.402 447548.205)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[631,632,633]],[[631,634,632]],[[631,635,636]],[[634,631,636]],[[636,635,637]],[[637,635,638]],[[639,637,640]],[[640,637,638]],[[641,640,642]],[[642,640,638]],[[643,644,631]],[[631,644,635]],[[645,643,633]],[[633,643,631]],[[646,645,632]],[[632,645,633]],[[647,646,634]],[[634,646,632]],[[623,647,615]],[[615,647,636]],[[636,647,634]],[[624,623,620]],[[620,623,615]],[[620,615,637]],[[637,615,636]],[[648,624,639]],[[639,624,620]],[[639,620,637]],[[649,648,640]],[[640,648,639]],[[650,649,641]],[[641,649,640]],[[651,650,642]],[[642,650,641]],[[652,651,638]],[[638,651,642]],[[644,652,635]],[[635,652,638]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004636","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003304)","inonderzoek":"0","lokaalid":"G0503.032e68f0095849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84988.378 447559.512)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:44)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[653,654,655]],[[656,657,658]],[[656,659,657]],[[659,660,661]],[[662,663,664]],[[660,662,664]],[[665,662,660]],[[659,653,660]],[[662,665,666]],[[659,656,653]],[[660,653,665]],[[656,654,653]],[[667,668,669]],[[669,668,670]],[[669,670,656]],[[656,670,654]],[[671,667,672]],[[672,667,669]],[[672,669,658]],[[658,669,656]],[[673,671,657]],[[657,671,672]],[[657,672,658]],[[674,673,659]],[[659,673,657]],[[675,674,661]],[[661,674,659]],[[676,675,660]],[[660,675,661]],[[677,676,664]],[[664,676,660]],[[678,677,663]],[[663,677,664]],[[679,678,662]],[[662,678,663]],[[680,679,666]],[[666,679,662]],[[681,680,665]],[[665,680,666]],[[682,681,653]],[[653,681,665]],[[683,682,655]],[[655,682,653]],[[668,683,670]],[[670,683,654]],[[654,683,655]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827ad-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004640","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003305)","inonderzoek":"0","lokaalid":"G0503.032e68f0095949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.05999994277954,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84991.913 447554.453)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[684,685,686]],[[687,688,689]],[[686,690,684]],[[686,691,690]],[[690,689,692]],[[689,693,694]],[[689,688,693]],[[689,690,691]],[[695,687,689]],[[696,695,689]],[[691,696,689]],[[578,691,686]],[[578,580,691]],[[697,698,577]],[[577,698,579]],[[577,579,578]],[[578,579,580]],[[699,697,686]],[[686,697,577]],[[686,577,578]],[[700,699,685]],[[685,699,686]],[[672,700,658]],[[658,700,684]],[[684,700,685]],[[669,672,656]],[[656,672,658]],[[656,658,690]],[[690,658,684]],[[670,669,654]],[[654,669,656]],[[654,656,692]],[[692,656,690]],[[701,670,689]],[[689,670,654]],[[689,654,692]],[[702,701,694]],[[694,701,689]],[[703,702,693]],[[693,702,694]],[[704,703,688]],[[688,703,693]],[[705,704,687]],[[687,704,688]],[[706,705,695]],[[695,705,687]],[[707,706,696]],[[696,706,695]],[[708,707,691]],[[691,707,696]],[[698,708,579]],[[579,708,580]],[[580,708,691]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827b2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000028346","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003299)","inonderzoek":"0","lokaalid":"G0503.032e68f0095a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.00999999046326,"min-height-surface":0.129999995231628,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84958.769 447588.042)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[709,710,711]],[[712,713,714]],[[711,712,714]],[[712,715,713]],[[712,716,715]],[[712,717,716]],[[712,718,717]],[[712,719,718]],[[712,720,719]],[[712,721,720]],[[712,722,721]],[[712,723,722]],[[712,724,723]],[[712,725,724]],[[712,726,725]],[[712,727,726]],[[712,728,727]],[[712,729,728]],[[729,712,730]],[[730,712,731]],[[731,712,732]],[[732,712,733]],[[733,712,734]],[[734,712,735]],[[735,712,736]],[[736,712,737]],[[711,738,712]],[[739,740,738]],[[711,739,738]],[[711,710,741]],[[711,741,739]],[[710,742,741]],[[710,743,742]],[[744,745,746]],[[746,745,747]],[[746,747,709]],[[709,747,710]],[[748,744,711]],[[711,744,746]],[[711,746,709]],[[749,748,714]],[[714,748,711]],[[750,749,713]],[[713,749,714]],[[751,750,715]],[[715,750,713]],[[752,751,716]],[[716,751,715]],[[753,752,717]],[[717,752,716]],[[754,753,718]],[[718,753,717]],[[755,754,719]],[[719,754,718]],[[756,755,720]],[[720,755,719]],[[757,756,721]],[[721,756,720]],[[758,757,722]],[[722,757,721]],[[759,758,723]],[[723,758,722]],[[760,759,724]],[[724,759,723]],[[761,760,725]],[[725,760,724]],[[762,761,726]],[[726,761,725]],[[763,762,727]],[[727,762,726]],[[764,763,728]],[[728,763,727]],[[765,764,729]],[[729,764,728]],[[766,765,730]],[[730,765,729]],[[767,766,731]],[[731,766,730]],[[768,767,732]],[[732,767,731]],[[769,768,733]],[[733,768,732]],[[770,769,734]],[[734,769,733]],[[771,770,735]],[[735,770,734]],[[772,771,736]],[[736,771,735]],[[773,772,774]],[[774,772,737]],[[737,772,736]],[[775,773,776]],[[776,773,774]],[[776,774,712]],[[712,774,737]],[[777,775,778]],[[778,775,776]],[[778,776,738]],[[738,776,712]],[[779,777,740]],[[740,777,778]],[[740,778,738]],[[780,779,739]],[[739,779,740]],[[781,780,741]],[[741,780,739]],[[782,781,742]],[[742,781,741]],[[783,782,743]],[[743,782,742]],[[745,783,747]],[[747,783,710]],[[710,783,743]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827b7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000004643","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003298)","inonderzoek":"0","lokaalid":"G0503.032e68f0095b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.00999999046326,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84955.890 447590.722)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:38)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[712,784,737]],[[737,785,786]],[[737,787,785]],[[737,788,787]],[[737,789,788]],[[737,790,789]],[[737,791,790]],[[737,792,791]],[[737,793,792]],[[737,794,793]],[[737,784,794]],[[712,795,784]],[[712,796,795]],[[712,797,796]],[[712,798,797]],[[712,799,798]],[[712,800,799]],[[712,801,800]],[[712,802,801]],[[712,803,802]],[[712,804,803]],[[712,805,804]],[[712,806,805]],[[712,807,806]],[[712,738,807]],[[807,536,808]],[[807,809,536]],[[809,810,537]],[[536,809,537]],[[810,809,811]],[[812,738,813]],[[807,812,809]],[[807,738,812]],[[776,778,712]],[[712,778,738]],[[774,776,737]],[[737,776,712]],[[814,774,786]],[[786,774,737]],[[815,814,785]],[[785,814,786]],[[816,815,787]],[[787,815,785]],[[817,816,788]],[[788,816,787]],[[818,817,789]],[[789,817,788]],[[819,818,790]],[[790,818,789]],[[820,819,791]],[[791,819,790]],[[821,820,792]],[[792,820,791]],[[822,821,793]],[[793,821,792]],[[823,822,794]],[[794,822,793]],[[824,823,784]],[[784,823,794]],[[825,824,795]],[[795,824,784]],[[826,825,796]],[[796,825,795]],[[827,826,797]],[[797,826,796]],[[828,827,798]],[[798,827,797]],[[829,828,799]],[[799,828,798]],[[830,829,800]],[[800,829,799]],[[831,830,801]],[[801,830,800]],[[832,831,802]],[[802,831,801]],[[833,832,803]],[[803,832,802]],[[834,833,804]],[[804,833,803]],[[835,834,805]],[[805,834,804]],[[836,835,806]],[[806,835,805]],[[837,836,807]],[[807,836,806]],[[838,837,808]],[[808,837,807]],[[839,838,534]],[[534,838,536]],[[536,838,808]],[[840,839,535]],[[535,839,534]],[[535,534,537]],[[537,534,536]],[[841,840,810]],[[810,840,535]],[[810,535,537]],[[842,841,811]],[[811,841,810]],[[843,842,809]],[[809,842,811]],[[844,843,812]],[[812,843,809]],[[845,844,813]],[[813,844,812]],[[778,845,738]],[[738,845,813]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b22139d30-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[846,847,848]],[[849,850,851]],[[852,853,164]],[[164,853,854]],[[855,856,164]],[[857,858,859]],[[860,861,862]],[[857,852,863]],[[864,865,866]],[[867,868,869]],[[870,871,872]],[[870,865,873]],[[874,875,876]],[[871,875,872]],[[877,878,864]],[[879,880,881]],[[882,883,884]],[[885,886,887]],[[888,889,890]],[[891,892,893]],[[894,895,896]],[[890,889,897]],[[898,899,900]],[[901,902,899]],[[903,896,904]],[[896,901,898]],[[905,894,906]],[[848,847,907]],[[908,909,847]],[[910,911,912]],[[913,846,911]],[[911,914,912]],[[915,916,917]],[[918,915,917]],[[919,885,920]],[[921,887,886]],[[922,923,895]],[[924,902,901]],[[897,850,882]],[[916,914,925]],[[846,908,847]],[[913,909,908]],[[926,849,851]],[[884,927,928]],[[929,869,868]],[[883,930,919]],[[878,873,865]],[[931,932,873]],[[869,877,864]],[[878,865,864]],[[933,905,934]],[[906,891,893]],[[935,936,937]],[[938,846,939]],[[876,932,880]],[[876,875,871]],[[881,931,877]],[[881,932,931]],[[849,930,883]],[[885,915,920]],[[940,864,866]],[[941,942,943]],[[879,881,877]],[[880,932,881]],[[927,944,916]],[[916,925,927]],[[945,946,947]],[[929,948,949]],[[950,951,877]],[[951,880,879]],[[871,870,873]],[[872,865,870]],[[952,928,925]],[[925,914,952]],[[953,897,889]],[[850,883,882]],[[938,954,846]],[[955,884,928]],[[956,910,912]],[[954,928,952]],[[888,936,934]],[[954,911,846]],[[848,939,846]],[[895,904,896]],[[933,922,895]],[[957,958,923]],[[959,863,852]],[[856,960,858]],[[959,852,856]],[[961,864,962]],[[947,963,953]],[[851,850,897]],[[906,893,964]],[[892,889,893]],[[939,848,907]],[[939,965,938]],[[894,905,966]],[[906,964,905]],[[967,968,941]],[[969,943,942]],[[955,970,971]],[[888,964,893]],[[972,958,957]],[[973,904,958]],[[849,883,850]],[[919,918,883]],[[954,955,928]],[[883,917,944]],[[928,927,925]],[[944,917,916]],[[858,857,863]],[[859,852,857]],[[950,945,947]],[[974,877,945]],[[932,871,873]],[[932,876,871]],[[931,878,877]],[[931,873,878]],[[968,868,975]],[[862,941,976]],[[926,977,849]],[[867,978,868]],[[919,886,885]],[[862,976,921]],[[911,952,914]],[[911,954,952]],[[883,918,917]],[[920,915,918]],[[905,933,966]],[[905,964,934]],[[858,940,866]],[[962,864,940]],[[898,901,899]],[[895,894,966]],[[973,924,903]],[[924,901,903]],[[901,896,903]],[[898,894,896]],[[904,973,903]],[[979,902,924]],[[856,858,863]],[[866,859,858]],[[980,981,982]],[[165,943,969]],[[918,919,920]],[[930,886,919]],[[846,913,908]],[[956,909,913]],[[164,856,852]],[[960,962,940]],[[983,973,972]],[[979,924,973]],[[984,985,961]],[[986,867,987]],[[165,855,164]],[[988,980,942]],[[986,978,867]],[[982,165,969]],[[989,948,929]],[[978,981,975]],[[855,981,978]],[[855,165,981]],[[980,975,981]],[[868,978,975]],[[947,851,963]],[[947,926,851]],[[990,938,965]],[[922,933,934]],[[991,992,937]],[[882,884,955]],[[877,951,879]],[[950,880,951]],[[890,897,882]],[[963,851,897]],[[993,984,961]],[[987,867,961]],[[946,926,947]],[[946,977,926]],[[994,939,907]],[[983,972,935]],[[967,929,868]],[[869,864,961]],[[977,948,989]],[[945,877,869]],[[849,989,930]],[[849,977,989]],[[867,869,961]],[[949,977,945]],[[945,977,946]],[[945,869,949]],[[941,988,942]],[[968,975,988]],[[884,944,927]],[[884,883,944]],[[959,856,863]],[[985,987,961]],[[942,980,969]],[[988,975,980]],[[935,937,992]],[[888,934,964]],[[972,957,935]],[[922,934,936]],[[971,970,937]],[[935,957,936]],[[889,888,893]],[[890,936,888]],[[890,937,936]],[[991,954,938]],[[890,971,937]],[[955,954,970]],[[947,953,889]],[[963,897,953]],[[930,861,886]],[[930,967,861]],[[886,860,921]],[[861,941,862]],[[976,941,943]],[[861,967,941]],[[936,957,922]],[[935,992,990]],[[962,993,961]],[[985,855,987]],[[856,985,984]],[[856,855,985]],[[994,979,973]],[[994,902,979]],[[957,923,922]],[[958,904,923]],[[933,895,966]],[[923,904,895]],[[855,986,987]],[[855,978,986]],[[990,992,938]],[[937,970,991]],[[913,910,956]],[[913,911,910]],[[950,974,945]],[[950,877,974]],[[939,983,965]],[[973,958,972]],[[983,990,965]],[[983,935,990]],[[994,983,939]],[[994,973,983]],[[858,960,940]],[[856,984,993]],[[929,949,869]],[[948,977,949]],[[882,971,890]],[[882,955,971]],[[989,967,930]],[[989,929,967]],[[941,968,988]],[[967,868,968]],[[954,991,970]],[[938,992,991]],[[921,860,862]],[[886,861,860]],[[960,993,962]],[[960,856,993]],[[980,982,969]],[[981,165,982]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2214d56a-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[995,176,177]],[[995,177,178]],[[179,995,178]],[[179,176,995]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22183104-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef608549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[996,997,998]],[[999,1000,1001]],[[999,996,1000]],[[1000,996,1002]],[[999,997,996]],[[998,997,1003]],[[998,1004,1005]],[[998,1003,1004]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221a544c-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1006,1007,1008]],[[1009,1010,1011]],[[1012,1013,1014]],[[1015,1008,1010]],[[1016,1017,1011]],[[1016,1018,1017]],[[1016,1008,1019]],[[1018,1016,1020]],[[1013,1020,1021]],[[1022,1009,1011]],[[1014,1021,1023]],[[1012,1022,1011]],[[1017,1012,1011]],[[1017,1013,1012]],[[1015,1023,1006]],[[1014,1013,1021]],[[1020,1019,1021]],[[1020,1016,1019]],[[1019,1008,1007]],[[1015,1006,1008]],[[1024,1025,1010]],[[1023,1021,1006]],[[1009,1024,1010]],[[1009,1014,1023]],[[1024,1009,1023]],[[1025,1015,1010]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221b16fc-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef947849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1026,1027,1028]],[[1029,1030,1031]],[[1032,1027,1033]],[[1032,1028,1027]],[[1032,1034,1028]],[[1032,1035,1034]],[[1032,1036,1035]],[[1031,1037,1038]],[[1039,1040,1041]],[[1042,1043,1044]],[[1045,1042,1044]],[[1045,1046,1042]],[[1047,1045,1044]],[[1048,1049,1050]],[[1029,1031,1051]],[[1052,1053,1054]],[[1052,1038,1053]],[[1052,1031,1038]],[[1039,1041,1032]],[[1032,1041,1036]],[[1030,1029,1055]],[[1056,1030,1055]],[[1055,1029,1047]],[[1057,1055,1058]],[[1058,1055,1059]],[[1059,1055,1060]],[[1060,1055,1032]],[[1060,1033,1061]],[[1045,1029,1051]],[[1047,1048,1050]],[[1062,1055,1057]],[[1055,1047,1050]],[[1048,1047,1044]],[[1029,1045,1047]],[[1049,1039,1050]],[[1049,1040,1039]],[[1051,1052,1054]],[[1051,1031,1052]],[[1032,1055,1050]],[[1062,1056,1055]],[[1060,1032,1033]],[[1050,1039,1032]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221b8c65-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1063,1064,1065]],[[1064,1066,1065]],[[1064,1067,1066]],[[1068,1065,1066]],[[1066,1069,1070]],[[1071,1066,1072]],[[1072,1066,1073]],[[1073,1066,1074]],[[1074,1066,1075]],[[1075,1066,1076]],[[1076,1066,1077]],[[1077,1066,1078]],[[1078,1066,1079]],[[1079,1066,1080]],[[1080,1066,1081]],[[1081,1066,1082]],[[1082,1083,1084]],[[1084,1083,1085]],[[1085,1083,1086]],[[1086,1083,1087]],[[1087,1083,1088]],[[1088,1083,1089]],[[1089,1083,1090]],[[1090,1083,1091]],[[1091,1083,1092]],[[1092,1083,1093]],[[1083,1082,1066]],[[1083,1066,1070]],[[1094,1066,1071]],[[1094,1068,1066]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221d3a47-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.22217ab858564a8fa4707f2a0b468ec2","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1095,1096,1097]],[[1098,1099,1100]],[[1099,1095,1100]],[[1101,1100,1102]],[[1103,1104,1099]],[[1096,1095,1104]],[[1105,1106,1104]],[[1106,1097,1096]],[[1101,1098,1100]],[[1104,1095,1099]],[[1103,1098,1101]],[[1103,1099,1098]],[[1105,1103,1101]],[[1105,1104,1103]],[[1104,1106,1096]],[[1105,1097,1106]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221dafb6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef4b0449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1107,1108,1109]],[[1110,1111,1112]],[[1113,1114,1115]],[[1116,1117,1118]],[[1119,1120,1121]],[[1121,1122,1119]],[[1123,1120,1124]],[[1124,1120,1125]],[[1125,1120,1126]],[[1117,1127,1118]],[[1128,1126,1119]],[[1129,1130,1131]],[[1132,1133,1115]],[[1134,1135,1136]],[[1137,1107,1138]],[[1138,1139,1137]],[[1140,1109,1141]],[[1142,1143,1144]],[[1145,1146,1147]],[[1148,433,1149]],[[1147,1150,1151]],[[1152,415,432]],[[1153,412,414]],[[1154,1155,1156]],[[1157,1158,1159]],[[1160,1161,1162]],[[1163,1164,1165]],[[1166,1167,1168]],[[1169,1154,1156]],[[1170,1171,1167]],[[1172,1160,1162]],[[1162,1161,1173]],[[1174,1172,1162]],[[1175,1176,1177]],[[1175,1178,1172]],[[1179,1180,1181]],[[1182,1183,1149]],[[1184,1185,1177]],[[1186,1187,1145]],[[1145,1187,1188]],[[1189,432,1190]],[[1151,1191,1192]],[[1193,1194,1195]],[[1186,1192,1196]],[[1197,1198,1199]],[[1200,1201,1199]],[[1202,1203,1197]],[[1201,1204,1197]],[[1197,1204,1202]],[[1205,1206,1207]],[[1199,1201,1197]],[[1208,1209,1210]],[[1189,1195,432]],[[1211,1212,1213]],[[1214,1215,1207]],[[1206,1216,1211]],[[1211,1217,1218]],[[1217,1211,1216]],[[1213,1206,1211]],[[1219,1149,1220]],[[1221,1222,1223]],[[1224,1225,1226]],[[1227,1111,1115]],[[1228,1110,1225]],[[1225,1110,1229]],[[1111,1230,1112]],[[1231,1232,1163]],[[1163,1233,1158]],[[1234,1235,1236]],[[1222,1228,1223]],[[1237,1238,1134]],[[1128,1130,1129]],[[1189,1214,1201]],[[1239,433,1148]],[[1235,1240,1144]],[[1240,1241,1142]],[[1180,1242,414]],[[1243,1244,1153]],[[1245,1138,1109]],[[1245,1139,1138]],[[1137,1246,1107]],[[1141,1247,1140]],[[1131,1248,1139]],[[1249,1238,1248]],[[1165,1164,1157]],[[1165,1231,1163]],[[1220,1250,1219]],[[1251,1215,1252]],[[1253,1254,1144]],[[1221,1223,1224]],[[1255,1113,1221]],[[1132,1256,1133]],[[1195,1194,1257]],[[1258,1259,1260]],[[1157,1261,1166]],[[1262,1263,1233]],[[1168,1171,1231]],[[1171,1264,1231]],[[1164,1163,1158]],[[1233,1263,1158]],[[1174,1154,1265]],[[1266,1232,1231]],[[1267,1184,1243]],[[1268,415,1152]],[[1115,1222,1113]],[[1115,1110,1228]],[[1237,1269,1246]],[[1270,1247,1141]],[[1189,1271,1272]],[[1210,433,1273]],[[1234,1250,1274]],[[1275,1143,1142]],[[1131,1249,1248]],[[1276,1277,1249]],[[1249,1277,1238]],[[1278,1122,1133]],[[1238,1277,1279]],[[1131,1280,1129]],[[1281,1282,1283]],[[1284,412,1244]],[[1242,1285,414]],[[1286,1243,1153]],[[1193,1195,1189]],[[1194,1258,1260]],[[1147,1151,1192]],[[1185,1178,1177]],[[1132,1287,1256]],[[1127,1288,1118]],[[1289,1136,1290]],[[1237,1248,1238]],[[1185,1184,1291]],[[1242,1180,1292]],[[1248,1137,1139]],[[1248,1237,1137]],[[1186,1293,1294]],[[1186,1196,1292]],[[1242,1267,1286]],[[1282,1176,1283]],[[1221,1224,1226]],[[1223,1225,1224]],[[1149,1183,1148]],[[1271,1190,1210]],[[1295,1140,1247]],[[1295,1109,1140]],[[1264,1296,1266]],[[1296,1232,1266]],[[1296,1169,1233]],[[1169,1263,1262]],[[1289,1269,1136]],[[1108,1246,1269]],[[1170,1175,1265]],[[1172,1174,1265]],[[1236,1235,1144]],[[1297,1113,1255]],[[1288,1279,1118]],[[1279,1130,1118]],[[1287,1117,1116]],[[1279,1277,1130]],[[1255,1221,1226]],[[1113,1222,1221]],[[1240,1142,1144]],[[1250,1226,1298]],[[1276,1130,1277]],[[1129,1126,1128]],[[1149,1274,1220]],[[1149,1143,1274]],[[1253,1270,1290]],[[1141,1108,1289]],[[1285,1153,414]],[[1285,1286,1153]],[[1254,1290,1299]],[[1136,1135,1117]],[[1144,1300,1236]],[[1290,1117,1299]],[[1283,1176,1159]],[[1176,1170,1261]],[[1117,1135,1127]],[[1134,1238,1301]],[[1299,1117,1287]],[[1290,1136,1117]],[[1191,1185,1291]],[[1191,1178,1185]],[[1270,1253,1144]],[[1270,1289,1290]],[[1181,1259,1258]],[[414,415,1259]],[[1302,1258,1194]],[[1179,1181,1258]],[[1189,1190,1271]],[[432,433,1190]],[[1142,1234,1274]],[[1241,1235,1234]],[[1250,1255,1226]],[[1234,1236,1297]],[[1257,1152,432]],[[1260,1259,1152]],[[1274,1275,1142]],[[1274,1143,1275]],[[1159,1176,1303]],[[1282,1243,1177]],[[1223,1228,1225]],[[1222,1115,1228]],[[1231,1264,1266]],[[1169,1262,1233]],[[1300,1299,1114]],[[1287,1304,1256]],[[1132,1299,1287]],[[1300,1254,1299]],[[1297,1114,1113]],[[1236,1300,1114]],[[1305,1306,1252]],[[1252,1215,1272]],[[1278,1128,1122]],[[1126,1120,1119]],[[1128,1116,1118]],[[1304,1287,1116]],[[1232,1233,1163]],[[1232,1296,1233]],[[1210,1307,1271]],[[1209,1308,1307]],[[1309,1200,1199]],[[1310,1193,1200]],[[1234,1297,1255]],[[1236,1114,1297]],[[1172,1265,1175]],[[1311,1296,1264]],[[1142,1241,1234]],[[1240,1235,1241]],[[1289,1108,1269]],[[1141,1109,1108]],[[1138,1107,1109]],[[1246,1108,1107]],[[1308,1208,1148]],[[1273,433,1239]],[[1208,1210,1239]],[[1239,1210,1273]],[[1130,1128,1118]],[[1119,1122,1128]],[[1293,1312,1294]],[[1293,1186,1292]],[[1259,1268,1152]],[[1259,415,1268]],[[1131,1276,1249]],[[1131,1130,1276]],[[1302,1179,1258]],[[1312,1293,1292]],[[1179,1292,1180]],[[1179,1312,1292]],[[1184,1242,1292]],[[1286,1285,1242]],[[1184,1177,1243]],[[1178,1175,1177]],[[1146,1145,1188]],[[1147,1186,1145]],[[1200,1193,1201]],[[1294,1312,1302]],[[1257,1194,1260]],[[1302,1312,1179]],[[1247,1270,1144]],[[1141,1289,1270]],[[1274,1250,1220]],[[1234,1255,1250]],[[1307,1210,1209]],[[1190,433,1210]],[[1307,1272,1271]],[[1307,1183,1252]],[[1307,1252,1272]],[[1207,1206,1213]],[[1306,1251,1252]],[[1215,1214,1272]],[[1207,1215,1251]],[[1207,1213,1214]],[[1305,1182,1313]],[[1313,1314,1306]],[[1171,1170,1265]],[[1176,1175,1170]],[[1303,1261,1159]],[[1303,1176,1261]],[[1165,1166,1231]],[[1261,1170,1167]],[[1157,1166,1165]],[[1261,1167,1166]],[[1176,1282,1177]],[[1243,1284,1244]],[[1153,1244,412]],[[1243,1282,1281]],[[1214,1189,1272]],[[1201,1193,1189]],[[1265,1311,1171]],[[1265,1154,1311]],[[1193,1302,1194]],[[1193,1310,1302]],[[1115,1111,1110]],[[1227,1230,1111]],[[1166,1168,1231]],[[1167,1171,1168]],[[1192,1191,1291]],[[1151,1178,1191]],[[1196,1192,1291]],[[1186,1147,1192]],[[1184,1196,1291]],[[1184,1292,1196]],[[1114,1132,1115]],[[1114,1299,1132]],[[1304,1278,1133]],[[1116,1128,1278]],[[414,1181,1180]],[[414,1259,1181]],[[1306,1314,1251]],[[1205,1250,1298]],[[1205,1298,1206]],[[1226,1206,1298]],[[1313,1219,1314]],[[1314,1219,1205]],[[1296,1311,1169]],[[1174,1155,1154]],[[1315,1129,1280]],[[1315,1126,1129]],[[1313,1182,1149]],[[1313,1306,1305]],[[1183,1305,1252]],[[1183,1182,1305]],[[1261,1157,1159]],[[1164,1158,1157]],[[1183,1308,1148]],[[1183,1307,1308]],[[1148,1208,1239]],[[1308,1209,1208]],[[1294,1309,1199]],[[1294,1302,1309]],[[1309,1310,1200]],[[1309,1302,1310]],[[1286,1267,1243]],[[1242,1184,1267]],[[1135,1301,1127]],[[1238,1279,1288]],[[1288,1301,1238]],[[1288,1127,1301]],[[1135,1134,1301]],[[1136,1269,1237]],[[1137,1237,1246]],[[1134,1136,1237]],[[1195,1257,432]],[[1260,1152,1257]],[[1171,1311,1264]],[[1154,1169,1311]],[[1159,1281,1283]],[[1284,1243,1281]],[[1159,1284,1281]],[[1159,412,1284]],[[1278,1304,1116]],[[1133,1256,1304]],[[1205,1219,1250]],[[1313,1149,1219]],[[1207,1314,1205]],[[1207,1251,1314]],[[1144,1254,1300]],[[1253,1290,1254]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221e7287-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1316,1317,1318]],[[1319,1320,1321]],[[1322,1323,1324]],[[1325,1326,1327]],[[1328,1329,1330]],[[1331,1332,1333]],[[1334,1335,1336]],[[1337,1338,1339]],[[1340,1341,1342]],[[1343,1337,1344]],[[1340,1345,1341]],[[1345,1346,1341]],[[1345,1347,1346]],[[1348,1347,1343]],[[1349,1350,1351]],[[1335,1352,1353]],[[1354,1355,1356]],[[1357,1358,1359]],[[1360,1361,1362]],[[1363,1364,1365]],[[1359,1358,1366]],[[1336,1335,1367]],[[1368,1369,1370]],[[1371,1372,1373]],[[1374,1375,1376]],[[1375,1377,1376]],[[1368,1378,1379]],[[1380,1381,1382]],[[1383,1384,1385]],[[1386,1387,1388]],[[1386,1388,1389]],[[1390,1391,1392]],[[1387,1393,1388]],[[1394,1395,1396]],[[1397,1398,1393]],[[1399,1381,1400]],[[1392,1401,1398]],[[1402,1403,1323]],[[1404,1405,1406]],[[1407,1408,1409]],[[1410,1411,1409]],[[1412,1404,1413]],[[1414,1415,1416]],[[1415,1417,1416]],[[1418,1419,1420]],[[1421,1422,1423]],[[1424,673,674]],[[1425,1426,1427]],[[1428,1318,1429]],[[1430,1431,1432]],[[1433,1434,1435]],[[1436,699,700]],[[1437,1438,1439]],[[610,575,1440]],[[1441,1438,1442]],[[1443,1375,1444]],[[1445,1446,1447]],[[1448,1449,1450]],[[1377,1324,1323]],[[1377,1451,1324]],[[1377,1375,1451]],[[1402,1452,1403]],[[1453,575,577]],[[1454,1455,1456]],[[1457,1458,1459]],[[1460,1461,1425]],[[1462,1463,1457]],[[1464,1465,1466]],[[1467,1468,1402]],[[1469,1470,1471]],[[1472,1473,1474]],[[1362,1475,1476]],[[1477,1478,1455]],[[1479,1465,1478]],[[1454,1480,1467]],[[1481,1482,1483]],[[1484,1485,1486]],[[1487,1488,1489]],[[1485,1490,1486]],[[1491,1492,1493]],[[1373,1494,1495]],[[1495,1353,1372]],[[1371,1373,1495]],[[1367,1353,1496]],[[1371,1495,1372]],[[1496,1353,1495]],[[1495,1494,1497]],[[1484,1486,1498]],[[1499,1411,1413]],[[1410,1500,1501]],[[1502,1373,1372]],[[1502,1503,1329]],[[1504,1505,1506]],[[1481,1507,607]],[[1508,1509,1510]],[[1511,1455,1512]],[[1513,1514,1515]],[[1516,1491,1488]],[[1440,1517,1518]],[[1510,1509,1519]],[[1520,1433,1521]],[[1522,1523,1400]],[[1449,1524,1471]],[[1370,1369,1525]],[[1526,1498,1486]],[[1527,1469,1370]],[[1528,1529,1463]],[[1468,1467,1530]],[[1468,1529,1438]],[[1468,1463,1529]],[[1444,1531,1532]],[[1533,1534,1535]],[[1329,1536,1330]],[[1537,1538,1539]],[[1503,1540,1325]],[[1541,1542,1320]],[[1543,1336,1329]],[[1543,1329,1328]],[[1330,1503,1485]],[[1320,1319,1544]],[[1506,1545,1509]],[[1519,1360,1362]],[[1459,1454,1504]],[[1546,1547,1456]],[[1504,1547,1505]],[[1547,1454,1456]],[[1494,1336,1548]],[[1549,1550,1334]],[[1551,1552,1518]],[[1553,1529,1528]],[[1554,1555,1436]],[[577,699,1555]],[[1556,1347,1350]],[[1556,1346,1347]],[[1557,1546,1456]],[[1456,1455,1558]],[[1559,1560,1407]],[[1561,1562,1563]],[[1446,1464,1322]],[[1512,1465,1464]],[[1564,1558,1565]],[[1511,1512,1566]],[[1567,1568,1569]],[[1570,1506,1509]],[[1358,1344,1339]],[[1358,1357,1344]],[[1329,1503,1536]],[[1571,1538,1572]],[[1447,1487,1445]],[[1512,1445,1566]],[[1573,1504,1506]],[[1459,1574,1454]],[[1548,1336,1367]],[[1494,1329,1336]],[[1373,1329,1494]],[[1373,1502,1329]],[[1575,1576,1317]],[[1577,1424,674]],[[1501,1413,1411]],[[1578,1579,1580]],[[1411,1581,1409]],[[1417,1420,1416]],[[1582,1362,1476]],[[1519,1583,1360]],[[1584,1585,1586]],[[1515,1583,1519]],[[1585,1483,1586]],[[1508,1587,1570]],[[1470,1469,1588]],[[1353,1367,1335]],[[1428,1429,1589]],[[1385,1590,1591]],[[1382,1384,1429]],[[1385,1591,1592]],[[1446,1322,1324]],[[1466,1323,1322]],[[1593,1594,1595]],[[1578,1596,1579]],[[672,1595,700]],[[672,673,1597]],[[1598,1394,1396]],[[1318,1428,1433]],[[1520,1434,1433]],[[1599,1578,1404]],[[1600,1430,1426]],[[1437,1403,1452]],[[1601,1602,1430]],[[1427,1437,1603]],[[1554,1436,700]],[[1555,699,1436]],[[1446,1445,1464]],[[1512,1464,1445]],[[1604,1350,1348]],[[1605,1349,1606]],[[1607,1608,1609]],[[1609,1608,1472]],[[1332,1610,1611]],[[1442,1438,1529]],[[1612,1613,1527]],[[1348,1344,1357]],[[1509,1515,1519]],[[1509,1545,1513]],[[1614,1615,1453]],[[1616,1617,1472]],[[1524,1448,1618]],[[1531,1619,1620]],[[1353,1352,1621]],[[1358,1622,1366]],[[1623,1345,1340]],[[1623,1624,1345]],[[1625,1626,1627]],[[1532,1628,1629]],[[1507,1544,1630]],[[1631,1326,1540]],[[1630,1544,1319]],[[1542,1541,1632]],[[1555,1554,577]],[[1431,1633,1634]],[[1635,1636,1637]],[[1584,1510,1519]],[[607,1638,1474]],[[1639,1637,1640]],[[1380,1400,1381]],[[1591,1403,1592]],[[1477,1467,1402]],[[1477,1454,1467]],[[1476,1475,1641]],[[1362,1361,1475]],[[1361,1360,1642]],[[1558,1511,1489]],[[1643,1479,1478]],[[1323,1465,1479]],[[1564,1456,1558]],[[1454,1574,1480]],[[577,1644,1614]],[[1645,1461,1617]],[[1646,1482,1647]],[[1648,1649,1482]],[[1338,1623,1650]],[[1338,1624,1623]],[[1361,1641,1475]],[[1491,1565,1488]],[[1429,1522,1382]],[[1399,1391,1381]],[[1651,1652,1653]],[[1654,1563,1655]],[[1415,1560,1559]],[[1407,1581,1417]],[[1581,1411,1499]],[[1656,1657,1658]],[[1328,1330,1485]],[[1536,1503,1330]],[[1413,1404,1578]],[[1412,1501,1656]],[[1406,1405,1659]],[[1576,1395,1317]],[[1474,1647,607]],[[1482,1649,1483]],[[1660,1592,1403]],[[1385,1384,1590]],[[1661,1662,1602]],[[1521,1589,1662]],[[1663,1442,1664]],[[1638,1472,1474]],[[1327,1476,1665]],[[1493,1564,1565]],[[1666,1447,1667]],[[1668,1669,1670]],[[1671,1572,1631]],[[1321,1630,1319]],[[1540,1671,1631]],[[1538,1502,1539]],[[1507,1672,1541]],[[1537,1539,1321]],[[1538,1537,1572]],[[1673,1674,1675]],[[1327,1326,1582]],[[1673,1676,1537]],[[1674,1673,1321]],[[1631,1572,1537]],[[1632,1674,1542]],[[1539,1630,1321]],[[1344,1337,1339]],[[1343,1347,1345]],[[1468,1677,1463]],[[1678,1574,1677]],[[1427,1602,1679]],[[1662,1385,1679]],[[1625,1666,1667]],[[1626,1444,1627]],[[1497,1496,1495]],[[1497,1548,1496]],[[1635,1680,1636]],[[1611,1664,1462]],[[1542,1674,1321]],[[1676,1326,1631]],[[1647,1481,607]],[[1647,1482,1481]],[[1681,1660,1403]],[[1681,1682,1660]],[[1509,1513,1515]],[[1545,1557,1514]],[[1407,1560,1408]],[[1651,1416,1683]],[[1684,1575,1317]],[[1404,1406,1576]],[[1468,1530,1677]],[[1467,1480,1530]],[[1581,1407,1409]],[[1581,1685,1417]],[[1490,1327,1526]],[[1326,1675,1582]],[[1486,1490,1526]],[[1485,1503,1325]],[[1582,1476,1327]],[[1641,1493,1476]],[[1667,1446,1324]],[[1667,1447,1446]],[[1686,1607,1609]],[[1440,575,1517]],[[675,1577,674]],[[1419,1687,1420]],[[1530,1678,1677]],[[1530,1480,1678]],[[1351,1355,1354]],[[1356,1688,1354]],[[1640,1474,1689]],[[1638,607,609]],[[1411,1410,1501]],[[1408,1560,1690]],[[1691,1661,1692]],[[1693,1634,1633]],[[1570,1573,1506]],[[1333,1694,1573]],[[1570,1587,1695]],[[1611,1696,1664]],[[1697,1370,1469]],[[1370,1525,1612]],[[1550,1698,1699]],[[1700,1701,1702]],[[1352,1335,1703]],[[1704,1526,1665]],[[1705,1706,1702]],[[1669,1668,1625]],[[1699,1703,1550]],[[1471,1524,1697]],[[1707,1708,1699]],[[1708,1588,1621]],[[1328,1709,1543]],[[1703,1335,1334]],[[1709,1549,1543]],[[1334,1336,1543]],[[1470,1710,1471]],[[1697,1711,1370]],[[1621,1527,1359]],[[1588,1469,1527]],[[1359,1527,1357]],[[1359,1366,1621]],[[1435,1693,1712]],[[673,1424,1577]],[[1481,1483,1507]],[[1567,1636,1568]],[[1713,1444,1626]],[[1629,1714,1524]],[[1507,1541,1544]],[[1542,1321,1320]],[[1462,1528,1463]],[[1664,1442,1553]],[[1664,1553,1528]],[[1442,1529,1553]],[[1679,1385,1592]],[[1383,1429,1384]],[[1589,1383,1385]],[[1589,1429,1383]],[[1627,1444,1715]],[[1713,1443,1444]],[[1438,1441,1439]],[[1461,1552,1425]],[[1483,1716,1507]],[[1717,1718,1582]],[[1544,1541,1320]],[[1672,1632,1541]],[[1323,1477,1402]],[[1643,1478,1477]],[[1621,1352,1708]],[[1621,1622,1353]],[[1451,1443,1713]],[[1451,1375,1443]],[[1407,1417,1559]],[[1580,1719,1720]],[[1655,1562,1690]],[[1561,1500,1721]],[[1450,1627,1448]],[[1618,1629,1524]],[[1722,1441,1442]],[[1439,1603,1437]],[[1659,1658,1657]],[[1723,1404,1656]],[[1723,1656,1658]],[[1501,1657,1656]],[[1345,1624,1343]],[[1338,1337,1624]],[[1431,1634,1724]],[[1691,1521,1662]],[[1689,1474,1473]],[[1646,1647,1474]],[[1564,1725,1726]],[[1642,1641,1361]],[[1725,1642,1360]],[[1493,1641,1642]],[[1714,1697,1524]],[[1711,1368,1370]],[[1671,1571,1572]],[[1671,1540,1571]],[[1649,1586,1483]],[[1727,1510,1584]],[[1628,1728,1714]],[[1620,1619,1369]],[[1410,1721,1500]],[[1410,1409,1408]],[[1729,1597,673]],[[1594,1693,1730]],[[1597,1593,672]],[[1594,1712,1693]],[[1435,1731,1316]],[[1432,1692,1601]],[[1577,1732,673]],[[1595,1733,700]],[[1597,1729,1712]],[[1316,1684,1317]],[[1731,1734,1316]],[[1735,1421,1423]],[[1575,1599,1404]],[[1596,1422,1421]],[[1520,1724,1634]],[[1520,1521,1691]],[[1378,1728,1379]],[[1531,1375,1619]],[[1736,1435,1712]],[[1434,1520,1634]],[[1633,1733,1730]],[[1693,1434,1634]],[[1368,1379,1369]],[[1728,1628,1379]],[[1558,1737,1511]],[[1558,1455,1737]],[[1425,1439,1738]],[[1722,1609,1472]],[[1460,1617,1461]],[[1460,1722,1617]],[[1645,1616,1518]],[[1739,610,1440]],[[1323,1643,1477]],[[1323,1479,1643]],[[1365,1604,1740]],[[1350,1347,1348]],[[1357,1740,1348]],[[1365,1364,1351]],[[1741,1740,1357]],[[1604,1348,1740]],[[1534,1364,1363]],[[1364,1356,1351]],[[1632,1675,1674]],[[1632,1672,1742]],[[1604,1351,1350]],[[1604,1365,1351]],[[1743,1744,1615]],[[1426,1425,1552]],[[1659,1723,1658]],[[1405,1404,1723]],[[1707,1745,1470]],[[1707,1701,1745]],[[1654,1655,1652]],[[1563,1562,1655]],[[1651,1654,1652]],[[1683,1563,1654]],[[1390,1392,1398]],[[1746,1401,1392]],[[1638,1739,1440]],[[609,610,1739]],[[1382,1590,1384]],[[1382,1381,1591]],[[1382,1591,1590]],[[1381,1403,1591]],[[1633,1554,700]],[[1747,1644,1554]],[[1334,1550,1703]],[[1550,1549,1748]],[[1458,1677,1574]],[[1678,1480,1574]],[[1749,1459,1504]],[[1458,1463,1677]],[[1749,1457,1459]],[[1611,1610,1750]],[[1694,1749,1504]],[[1332,1457,1749]],[[1568,1750,1695]],[[1695,1573,1570]],[[1742,1582,1675]],[[1672,1507,1716]],[[1687,1419,1751]],[[1751,1752,1577]],[[1711,1378,1368]],[[1714,1728,1378]],[[1449,1448,1524]],[[1627,1715,1618]],[[1492,1665,1476]],[[1753,1669,1450]],[[1449,1754,1755]],[[1487,1489,1445]],[[1702,1706,1704]],[[1526,1327,1665]],[[1707,1705,1701]],[[1498,1526,1706]],[[1698,1748,1705]],[[1498,1706,1705]],[[1702,1704,1756]],[[1706,1526,1704]],[[1705,1748,1498]],[[1705,1707,1698]],[[1627,1618,1448]],[[1629,1628,1714]],[[1459,1458,1574]],[[1457,1463,1458]],[[1332,1611,1457]],[[1664,1528,1462]],[[1663,1609,1442]],[[1439,1425,1603]],[[1650,1340,1342]],[[1650,1623,1340]],[[1499,1578,1685]],[[1757,1734,1596]],[[1757,1596,1578]],[[1734,1732,1596]],[[1607,1686,1696]],[[1686,1663,1696]],[[1432,1601,1430]],[[1692,1724,1691]],[[1427,1681,1437]],[[1682,1592,1660]],[[1715,1532,1618]],[[1531,1444,1375]],[[1731,1435,1736]],[[1434,1693,1435]],[[1689,1607,1639]],[[1689,1608,1607]],[[1720,1719,1418]],[[1758,1735,1423]],[[1719,1579,1418]],[[1596,1421,1579]],[[1321,1673,1537]],[[1675,1326,1676]],[[1537,1676,1631]],[[1673,1675,1676]],[[1655,1690,1652]],[[1562,1408,1690]],[[1560,1415,1690]],[[1559,1417,1415]],[[1714,1711,1697]],[[1714,1378,1711]],[[1725,1564,1493]],[[1726,1456,1564]],[[1642,1725,1493]],[[1726,1583,1456]],[[1360,1726,1725]],[[1360,1583,1726]],[[1357,1527,1613]],[[1527,1370,1612]],[[1740,1741,1363]],[[1613,1525,1741]],[[1740,1363,1365]],[[1741,1525,1363]],[[1745,1754,1470]],[[1745,1701,1754]],[[1710,1754,1449]],[[1710,1470,1754]],[[1640,1689,1639]],[[1473,1608,1689]],[[1713,1625,1667]],[[1713,1626,1625]],[[1351,1356,1355]],[[1364,1688,1356]],[[1759,1331,1573]],[[1332,1749,1694]],[[1573,1694,1504]],[[1333,1332,1694]],[[1573,1331,1333]],[[1759,1610,1760]],[[1598,1522,1429]],[[1523,1401,1399]],[[1598,1523,1522]],[[1598,1401,1523]],[[1500,1561,1563]],[[1721,1562,1561]],[[1583,1557,1456]],[[1557,1545,1505]],[[1460,1738,1722]],[[1460,1425,1738]],[[1751,1577,675]],[[1752,1422,1596]],[[1729,1732,1731]],[[1752,1596,1732]],[[1516,1756,1491]],[[1489,1566,1445]],[[1670,1761,1516]],[[1492,1476,1493]],[[1762,1743,1615]],[[1633,700,1733]],[[1615,1744,1552]],[[1743,1633,1431]],[[1747,1633,1743]],[[1747,1554,1633]],[[1406,1659,1657]],[[1405,1723,1659]],[[1470,1708,1707]],[[1352,1703,1699]],[[1739,1638,609]],[[1440,1472,1638]],[[1632,1742,1675]],[[1585,1716,1483]],[[1763,1717,1742]],[[1718,1362,1582]],[[1722,1472,1617]],[[1608,1473,1472]],[[1523,1399,1400]],[[1401,1746,1399]],[[1597,1594,1593]],[[1693,1633,1730]],[[1595,1594,1730]],[[1597,1712,1594]],[[1607,1696,1680]],[[1686,1764,1663]],[[1760,1610,1332]],[[1508,1570,1509]],[[1759,1695,1610]],[[1759,1573,1695]],[[1331,1760,1332]],[[1331,1759,1760]],[[1695,1750,1610]],[[1680,1696,1611]],[[1457,1611,1462]],[[1750,1680,1611]],[[1601,1661,1602]],[[1601,1692,1661]],[[1644,1762,1615]],[[1615,1551,1453]],[[1600,1431,1430]],[[1724,1692,1432]],[[1690,1653,1652]],[[1690,1415,1414]],[[1654,1651,1683]],[[1653,1414,1651]],[[1651,1414,1416]],[[1653,1690,1414]],[[1661,1691,1662]],[[1724,1520,1691]],[[1455,1454,1477]],[[1547,1504,1454]],[[1722,1439,1441]],[[1722,1738,1439]],[[1753,1761,1670]],[[1701,1705,1702]],[[1668,1516,1488]],[[1761,1702,1516]],[[1516,1702,1756]],[[1761,1755,1702]],[[1669,1753,1670]],[[1755,1754,1700]],[[1579,1765,1418]],[[1579,1421,1735]],[[1599,1757,1578]],[[1599,1684,1757]],[[1751,1758,1423]],[[1765,1579,1735]],[[1687,1751,675]],[[1752,1732,1577]],[[1640,1646,1474]],[[1640,1648,1646]],[[1357,1613,1741]],[[1612,1525,1613]],[[1516,1668,1670]],[[1625,1627,1669]],[[1487,1668,1488]],[[1666,1625,1668]],[[1755,1700,1702]],[[1754,1701,1700]],[[1593,1595,672]],[[1730,1733,1595]],[[1442,1609,1722]],[[1764,1686,1609]],[[575,1453,1517]],[[1615,1552,1551]],[[1614,1453,577]],[[1551,1517,1453]],[[1325,1540,1326]],[[1503,1571,1540]],[[1519,1718,1717]],[[1519,1362,1718]],[[1527,1621,1588]],[[1366,1622,1621]],[[1727,1584,1586]],[[1519,1717,1584]],[[1649,1567,1586]],[[1569,1508,1727]],[[1489,1511,1566]],[[1737,1455,1511]],[[1696,1663,1664]],[[1764,1609,1663]],[[1618,1532,1629]],[[1715,1444,1532]],[[1549,1709,1498]],[[1328,1485,1484]],[[1748,1549,1498]],[[1334,1543,1549]],[[1484,1709,1328]],[[1484,1498,1709]],[[1396,1406,1657]],[[1766,1395,1576]],[[1666,1487,1447]],[[1666,1668,1487]],[[1464,1466,1322]],[[1465,1323,1466]],[[1387,1390,1398]],[[1387,1391,1390]],[[1765,1419,1418]],[[1765,1735,1758]],[[1419,1758,1751]],[[1419,1765,1758]],[[1614,1644,1615]],[[1747,1743,1762]],[[1554,1644,577]],[[1747,1762,1644]],[[1712,1729,1736]],[[673,1732,1729]],[[1379,1620,1369]],[[1379,1628,1620]],[[1628,1531,1620]],[[1628,1532,1531]],[[1522,1380,1382]],[[1522,1400,1380]],[[1503,1538,1571]],[[1503,1502,1538]],[[1506,1505,1545]],[[1547,1546,1505]],[[1546,1557,1505]],[[1514,1513,1545]],[[1583,1514,1557]],[[1583,1515,1514]],[[1551,1518,1517]],[[1552,1461,1518]],[[1616,1645,1617]],[[1518,1461,1645]],[[1440,1616,1472]],[[1440,1518,1616]],[[1432,1431,1724]],[[1744,1743,1431]],[[1767,1755,1761]],[[1767,1449,1755]],[[1704,1492,1756]],[[1493,1565,1491]],[[1756,1492,1491]],[[1704,1665,1492]],[[1699,1708,1352]],[[1470,1588,1708]],[[1404,1412,1656]],[[1413,1501,1412]],[[1420,1720,1418]],[[1580,1579,1719]],[[1417,1720,1420]],[[1417,1685,1720]],[[1685,1580,1720]],[[1685,1578,1580]],[[1391,1746,1392]],[[1391,1399,1746]],[[1423,1752,1751]],[[1423,1422,1752]],[[1565,1489,1488]],[[1565,1558,1489]],[[1490,1325,1327]],[[1490,1485,1325]],[[1581,1499,1685]],[[1413,1578,1499]],[[1727,1567,1569]],[[1680,1750,1568]],[[1568,1587,1569]],[[1568,1695,1587]],[[1727,1508,1510]],[[1569,1587,1508]],[[1637,1636,1649]],[[1680,1568,1636]],[[1586,1567,1727]],[[1649,1636,1567]],[[1767,1450,1449]],[[1669,1627,1450]],[[1767,1753,1450]],[[1767,1761,1753]],[[1435,1316,1433]],[[1684,1599,1575]],[[1734,1684,1316]],[[1734,1757,1684]],[[1662,1589,1385]],[[1521,1433,1428]],[[1521,1428,1589]],[[1433,1316,1318]],[[1598,1318,1317]],[[1598,1429,1318]],[[1469,1471,1697]],[[1710,1449,1471]],[[1349,1605,1556]],[[1606,1346,1605]],[[1349,1556,1350]],[[1605,1346,1556]],[[1425,1427,1603]],[[1430,1602,1427]],[[1427,1679,1681]],[[1602,1662,1679]],[[1679,1682,1681]],[[1679,1592,1682]],[[1496,1548,1367]],[[1497,1494,1548]],[[1729,1731,1736]],[[1732,1734,1731]],[[1534,1533,1364]],[[1535,1364,1533]],[[1525,1534,1363]],[[1525,1535,1534]],[[1387,1397,1393]],[[1387,1398,1397]],[[1744,1600,1552]],[[1430,1427,1426]],[[1337,1343,1624]],[[1344,1348,1343]],[[1699,1698,1707]],[[1550,1748,1698]],[[1404,1576,1575]],[[1766,1396,1395]],[[1406,1766,1576]],[[1406,1396,1766]],[[1354,1349,1351]],[[1354,1606,1349]],[[1721,1408,1562]],[[1721,1410,1408]],[[1648,1637,1649]],[[1639,1607,1635]],[[1639,1635,1637]],[[1607,1680,1635]],[[1317,1394,1598]],[[1317,1395,1394]],[[1716,1585,1672]],[[1717,1582,1742]],[[1763,1585,1584]],[[1742,1672,1585]],[[1585,1763,1742]],[[1584,1717,1763]],[[1552,1600,1426]],[[1744,1431,1600]],[[1646,1648,1482]],[[1640,1637,1648]],[[1438,1437,1452]],[[1681,1403,1437]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22204791-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1768,1769,1770]],[[1771,1772,1773]],[[1774,1775,1776]],[[1777,1778,1779]],[[1780,1781,1782]],[[1783,1784,1778]],[[1785,1783,1778]],[[1786,1787,1783]],[[1788,1789,1790]],[[1791,1786,1783]],[[1792,1793,1786]],[[1794,1792,1786]],[[1795,1796,1792]],[[1794,1797,1792]],[[1795,1792,1797]],[[1798,1799,1800]],[[1791,1794,1786]],[[1801,1797,1794]],[[1802,1794,1791]],[[1785,1791,1783]],[[1803,1802,1791]],[[1804,1785,1805]],[[1798,1800,1806]],[[1807,1808,1799]],[[1799,1808,1800]],[[1809,1810,1774]],[[1811,1809,1812]],[[1813,1814,1815]],[[1812,1816,1811]],[[1812,1815,1816]],[[1812,1813,1815]],[[1813,1817,1814]],[[1818,1772,1817]],[[1771,1770,1772]],[[1771,1768,1770]],[[1768,1819,1769]],[[1820,1821,1822]],[[1820,1782,1823]],[[1821,1820,1823]],[[1823,1782,1781]],[[1788,1780,1782]],[[1788,1790,1780]],[[1824,1825,1789]],[[1826,1825,1824]],[[1827,1789,1788]],[[1776,1775,1828]],[[1810,1828,1775]],[[1776,1829,1808]],[[1776,1828,1829]],[[1812,1774,1830]],[[1830,1774,1776]],[[1820,1819,1771]],[[1819,1822,1769]],[[1827,1824,1789]],[[1827,1831,1824]],[[1807,1799,1779]],[[1800,1808,1828]],[[1832,1804,1777]],[[1785,1778,1777]],[[1798,1832,1779]],[[1805,1785,1777]],[[1773,1818,1817]],[[1773,1772,1818]],[[1809,1774,1812]],[[1810,1775,1774]],[[1777,1804,1805]],[[1806,1785,1804]],[[1830,1807,1779]],[[1808,1829,1828]],[[1830,1808,1807]],[[1830,1776,1808]],[[1771,1819,1768]],[[1820,1822,1819]],[[1773,1813,1812]],[[1773,1817,1813]],[[1831,1826,1824]],[[1831,1825,1826]],[[1832,1798,1806]],[[1779,1799,1798]],[[1804,1832,1806]],[[1777,1779,1832]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22206eb6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1833,1834,1835]],[[1836,1837,1838]],[[1839,174,1840]],[[1841,1842,172]],[[1837,172,1843]],[[1844,1845,1843]],[[1846,172,173]],[[1847,1848,1846]],[[1849,1850,1851]],[[1846,1843,172]],[[1834,173,1835]],[[1852,1853,1835]],[[1835,173,1840]],[[173,1839,1840]],[[173,174,1839]],[[1845,1837,1843]],[[1845,1838,1837]],[[1854,1853,1852]],[[1855,1856,1857]],[[1848,1858,1846]],[[1846,1858,1843]],[[1835,1853,1833]],[[1849,1851,1846]],[[1855,1857,1849]],[[1851,1847,1846]],[[1833,1846,173]],[[1849,1857,1850]],[[172,1836,1841]],[[172,1837,1836]],[[1859,1850,1857]],[[1859,1851,1850]],[[1834,1833,173]],[[1853,1846,1833]],[[1853,1849,1846]],[[1856,1860,1859]],[[1860,1854,1852]],[[1860,1853,1854]],[[1853,1855,1849]],[[1853,1860,1855]],[[1857,1856,1859]],[[1855,1860,1856]],[[1858,1844,1843]],[[1858,1845,1844]],[[1838,1841,1836]],[[1838,1842,1841]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222095f0-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1861,1862,1863]],[[1864,1865,1866]],[[1867,1868,1865]],[[1869,1870,1871]],[[1872,1873,1870]],[[1874,1875,1876]],[[1877,1869,1871]],[[1863,1873,1867]],[[1863,1878,1873]],[[1862,1879,1878]],[[1868,1875,1874]],[[1867,1873,1876]],[[1876,1869,1877]],[[1872,1870,1869]],[[1867,1864,1863]],[[1866,1863,1864]],[[1874,1876,1877]],[[1875,1867,1876]],[[1861,1863,1866]],[[1862,1878,1863]],[[1876,1872,1869]],[[1876,1873,1872]],[[1864,1867,1865]],[[1875,1868,1867]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2221a6f3-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1880,1881,1882]],[[1880,1882,1883]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2221ce24-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.35f5257403d44b2da79b759adfef6652","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1884,1885,1886]],[[1884,1886,1887]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2222df3c-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1888,1889,1890]],[[1888,1891,1892]],[[1888,1893,1891]],[[1888,1894,1893]],[[1888,1890,1894]],[[1889,1895,1890]],[[1889,1896,1895]],[[1889,1897,1896]],[[1898,1899,1889]],[[1900,1898,1889]],[[1901,1900,1889]],[[1902,1901,1889]],[[1902,1903,1901]],[[1902,1904,1903]],[[1902,1905,1904]],[[1902,1906,1905]],[[1907,1908,1902]],[[1902,1908,1909]],[[1910,1907,1911]],[[1911,1907,1912]],[[1912,1907,1902]],[[1913,1914,1912]],[[1915,1913,1912]],[[1912,1916,1917]],[[1918,1919,1912]],[[1920,1918,1912]],[[1921,1920,1912]],[[1922,1921,1917]],[[1917,1916,1923]],[[1924,1917,1923]],[[1925,1926,1917]],[[1927,1925,1917]],[[1928,1927,1917]],[[1923,122,123]],[[1916,121,122]],[[1888,1892,120]],[[121,1888,120]],[[1924,1923,123]],[[1924,1928,1917]],[[1923,1916,122]],[[1907,1929,1908]],[[1912,1914,1911]],[[1910,1929,1907]],[[1902,1889,1916]],[[1899,1897,1889]],[[1912,1902,1916]],[[1909,1906,1902]],[[1916,1888,121]],[[1916,1889,1888]],[[1930,1917,1926]],[[1930,1922,1917]],[[1921,1912,1917]],[[1919,1915,1912]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2223065e-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef501749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1931,1932,1933]],[[1934,350,351]],[[1935,347,348]],[[347,1936,346]],[[1937,1938,1939]],[[1940,1941,1942]],[[1943,1941,1940]],[[1944,1945,1946]],[[1947,1948,1949]],[[1950,1951,1952]],[[1953,1954,1955]],[[1956,1957,1958]],[[1959,1960,1961]],[[1962,1963,1959]],[[1964,1962,1959]],[[1965,1961,1966]],[[1967,1968,1969]],[[1970,1971,1972]],[[1973,1974,1975]],[[1976,292,291]],[[1959,1961,1977]],[[1978,1979,1980]],[[1981,1982,1983]],[[1984,319,320]],[[1985,304,1986]],[[1987,1988,1989]],[[1990,386,1989]],[[386,1991,385]],[[385,1991,383]],[[383,1991,1992]],[[1993,1994,1995]],[[1996,1997,1998]],[[1999,2000,2001]],[[2002,2003,2000]],[[2004,2005,2006]],[[2007,2008,2009]],[[2010,2011,2012]],[[2013,2014,2015]],[[1933,1932,2016]],[[2011,2017,2018]],[[2018,2019,2011]],[[2019,2018,2020]],[[2021,2022,2023]],[[2024,2025,2026]],[[2027,2028,352]],[[2029,2030,2031]],[[2032,2002,2033]],[[1989,386,317]],[[1980,2034,2035]],[[2035,350,1980]],[[2013,2036,2037]],[[1985,1982,304]],[[1963,2038,2039]],[[2040,2041,2042]],[[2043,2044,1983]],[[2045,2046,2047]],[[2007,2048,2008]],[[2049,2050,2051]],[[2052,2053,2054]],[[2055,2056,2057]],[[2020,2009,2058]],[[2059,2060,350]],[[2061,1974,2062]],[[2063,2064,1960]],[[2065,1975,2066]],[[2067,292,1976]],[[347,1947,2068]],[[2069,2070,2071]],[[2045,1994,1993]],[[2072,2073,1982]],[[2074,2071,2075]],[[2076,2077,2078]],[[2046,1984,320]],[[2046,2045,1984]],[[2079,2080,2081]],[[2082,2081,2083]],[[292,1986,304]],[[2084,2052,2054]],[[349,2085,2086]],[[2057,1947,347]],[[2087,2067,1976]],[[2088,2052,2067]],[[2060,2089,1978]],[[2090,2091,2092]],[[2093,2094,2001]],[[2008,2095,2096]],[[2097,2098,2099]],[[2037,2100,2101]],[[2102,2033,2103]],[[2104,2097,2001]],[[2105,2106,2107]],[[2108,2109,2110]],[[2111,2078,2112]],[[2074,1945,1943]],[[2113,2114,2075]],[[1953,1950,1954]],[[2028,2115,2116]],[[1997,2117,2118]],[[2088,2061,2062]],[[2119,2062,1974]],[[2067,2052,292]],[[2088,2120,2052]],[[2087,2061,2088]],[[2121,1961,1969]],[[293,2065,291]],[[2065,1973,1975]],[[2122,2123,1963]],[[2124,2120,2088]],[[2125,2041,2126]],[[2040,2127,2120]],[[1961,1960,1967]],[[2042,2041,2125]],[[2128,2129,352]],[[2116,2130,2080]],[[1935,2057,347]],[[1958,1936,1956]],[[2057,2056,2131]],[[2132,2127,1948]],[[2037,2110,2100]],[[2133,2093,2109]],[[2032,2033,2048]],[[2134,2015,2135]],[[2004,2136,2000]],[[2032,2048,2007]],[[2137,2138,2038]],[[2139,2140,2042]],[[1986,2054,1985]],[[2084,292,2052]],[[2141,1981,2142]],[[2143,2053,2144]],[[1979,2145,2034]],[[349,350,2146]],[[1991,2109,2093]],[[1991,386,2109]],[[2147,2137,2038]],[[2148,2138,2137]],[[2124,2149,2120]],[[2039,2122,1963]],[[2052,2120,2053]],[[2088,2062,2124]],[[2106,2150,2151]],[[2097,1999,2001]],[[2152,2153,2154]],[[2006,2136,2004]],[[320,2155,2047]],[[2156,304,1982]],[[2157,2156,2073]],[[2158,304,2156]],[[2086,2085,2057]],[[2159,2146,1937]],[[2160,2155,320]],[[2161,2158,2162]],[[2163,2164,2165]],[[2166,1941,2165]],[[2167,2168,2157]],[[2158,302,304]],[[2169,2170,2161]],[[2169,2160,2170]],[[2103,2033,2171]],[[2103,2150,2134]],[[2172,2144,2053]],[[2173,1983,1982]],[[1994,2073,2072]],[[2110,2109,1990]],[[2060,1978,350]],[[2089,1979,1978]],[[2174,2175,2051]],[[2176,2011,2019]],[[2177,2178,1952]],[[2112,1954,1950]],[[2153,2179,2154]],[[2005,2004,1999]],[[2139,2180,2069]],[[2070,1951,2071]],[[2181,1940,1942]],[[2182,1948,2127]],[[1968,2040,2120]],[[1958,1943,1940]],[[2183,2184,2154]],[[2179,2153,2098]],[[2010,2012,2016]],[[2011,2176,2185]],[[2147,1962,1964]],[[2147,2038,1963]],[[1998,2118,2020]],[[2009,2017,2007]],[[1996,2029,2031]],[[2020,2186,2009]],[[2009,2008,2058]],[[2048,2102,2008]],[[2013,2187,2014]],[[2014,2135,2015]],[[2003,2032,2007]],[[2003,2002,2032]],[[2066,1975,2061]],[[2065,2188,1973]],[[2189,1950,1952]],[[2189,2112,1950]],[[2129,2027,352]],[[2129,2115,2027]],[[1968,1967,2040]],[[1960,2123,2063]],[[2190,1995,1994]],[[319,1984,1993]],[[291,2191,1976]],[[2192,2065,2191]],[[2108,2133,2109]],[[2104,2193,2179]],[[2036,2108,2110]],[[2036,2015,2107]],[[1960,1959,2123]],[[1962,2147,1963]],[[2049,2194,2118]],[[2175,2174,2176]],[[2155,2169,2162]],[[2170,302,2158]],[[1987,1989,317]],[[1988,1990,1989]],[[2195,2118,2117]],[[2186,2017,2009]],[[320,2047,2046]],[[2155,2196,2047]],[[2026,2197,1934]],[[2198,2030,2199]],[[2200,2128,2023]],[[2117,2021,2195]],[[2199,2030,2029]],[[2083,2201,2117]],[[2028,2116,2202]],[[2203,2197,2204]],[[2119,2205,2062]],[[2119,1961,2121]],[[1964,1959,1977]],[[1963,2123,1959]],[[1999,2004,2000]],[[1999,2097,2005]],[[2086,2057,2206]],[[2085,349,2055]],[[2193,2207,2183]],[[2154,2208,2152]],[[2058,2096,2014]],[[2058,2008,2096]],[[2167,2073,1994]],[[2156,1982,2073]],[[2195,2050,2118]],[[2051,2175,2049]],[[2095,2102,2134]],[[2102,2103,2134]],[[2135,2095,2134]],[[2048,2033,2102]],[[2034,1938,2209]],[[2085,2055,2057]],[[2209,1938,1937]],[[2210,2053,1971]],[[2131,2056,1970]],[[2127,2053,2120]],[[2131,1970,2132]],[[2172,1939,1938]],[[2025,2116,2204]],[[2130,2129,2211]],[[2025,2202,2116]],[[351,2028,2202]],[[2136,2002,2000]],[[2171,2033,2002]],[[1947,2131,1948]],[[1947,2057,2131]],[[2146,2212,2213]],[[2146,2034,2212]],[[2175,2176,2194]],[[2174,2185,2176]],[[2162,2158,2156]],[[2161,2170,2158]],[[2164,2166,2165]],[[2214,1941,2166]],[[319,1987,317]],[[319,1988,1987]],[[2215,1983,2044]],[[2072,2190,1994]],[[2216,2044,2217]],[[2092,2215,2044]],[[2053,2143,2054]],[[2217,2044,2043]],[[2143,1985,2054]],[[2143,2173,1985]],[[2218,2215,2092]],[[2141,2110,1981]],[[2219,2220,2221]],[[2220,2222,2164]],[[2223,2196,2167]],[[2155,2162,2168]],[[2223,2167,1994]],[[2157,2162,2156]],[[2201,2022,2117]],[[2200,2023,2022]],[[2082,2083,2224]],[[2130,2116,2115]],[[2094,2104,2001]],[[2133,2108,2193]],[[2133,2193,2104]],[[2108,2107,2207]],[[2056,2225,1970]],[[2172,1938,2145]],[[351,2024,1934]],[[2204,2197,2026]],[[2113,2163,2165]],[[2222,2214,2166]],[[2226,2199,2029]],[[2100,2218,2091]],[[2183,2154,2179]],[[2184,2208,2154]],[[2122,2063,2123]],[[2122,2125,2126]],[[2199,2090,2089]],[[2227,2228,2145]],[[2146,2035,2034]],[[2146,350,2035]],[[2142,1981,1983]],[[1995,1988,319]],[[302,2160,320]],[[302,2170,2160]],[[2185,1931,2229]],[[2174,1932,1931]],[[2069,2074,2230]],[[1945,1941,1943]],[[2231,2068,2232]],[[1956,347,2068]],[[2233,2230,2234]],[[2068,1947,1949]],[[2232,1949,2231]],[[2230,2074,1943]],[[2235,2076,2236]],[[2237,2164,2163]],[[2159,2055,349]],[[2159,1939,2055]],[[2191,2066,1976]],[[2191,2065,2066]],[[293,2188,2065]],[[293,2119,1973]],[[2205,2121,2149]],[[2205,2119,2121]],[[2205,2124,2062]],[[2205,2149,2124]],[[2096,2095,2135]],[[2008,2102,2095]],[[2116,2203,2204]],[[2081,2082,2203]],[[2058,2014,2187]],[[2096,2135,2014]],[[2148,2139,2138]],[[2148,2180,2139]],[[291,2192,2191]],[[291,2065,2192]],[[2113,2075,2163]],[[1955,1954,2078]],[[2071,2077,2075]],[[2076,2237,2163]],[[2197,2030,2059]],[[2199,2089,2198]],[[2238,2030,2198]],[[2197,2203,2082]],[[2227,2239,2228]],[[2092,2044,2216]],[[2034,2145,1938]],[[2228,2144,2145]],[[2104,2098,2097]],[[2104,2179,2098]],[[2133,2094,2093]],[[2133,2104,2094]],[[1998,2020,2058]],[[2118,2019,2020]],[[2018,2186,2020]],[[2018,2017,2186]],[[2081,2080,2083]],[[2211,2128,2240]],[[2201,2200,2022]],[[2240,2128,2200]],[[2200,2241,2240]],[[2081,2203,2079]],[[1941,1946,2165]],[[1945,2074,1946]],[[1978,1980,350]],[[1979,2034,1980]],[[2242,2190,2072]],[[1995,319,1993]],[[1981,2072,1982]],[[1981,2110,2242]],[[1981,2242,2072]],[[2110,1988,2242]],[[2242,1995,2190]],[[2242,1988,1995]],[[2110,1990,1988]],[[2109,386,1990]],[[2036,2107,2108]],[[2015,2105,2107]],[[2080,2130,2240]],[[2129,2128,2211]],[[2080,2241,2083]],[[2080,2240,2241]],[[2149,1969,2120]],[[2149,2121,1969]],[[1969,1968,2120]],[[1969,1961,1967]],[[2056,1939,2225]],[[2056,2055,1939]],[[2162,2169,2161]],[[2155,2160,2169]],[[2030,2238,2059]],[[2198,2089,2060]],[[1934,2059,350]],[[2238,2198,2060]],[[1994,2045,2047]],[[1993,1984,2045]],[[2213,2209,1937]],[[2212,2034,2209]],[[2067,2087,2088]],[[2243,2066,2061]],[[2178,2189,1952]],[[2178,2112,2189]],[[1949,2182,2231]],[[1957,1956,2068]],[[293,1973,2188]],[[2119,1974,1973]],[[1946,2114,2165]],[[2114,2074,2075]],[[2064,2244,1960]],[[2040,2042,2127]],[[1939,2159,1937]],[[349,2146,2159]],[[2012,2229,2016]],[[2229,1931,1933]],[[2016,2229,1933]],[[2185,2174,1931]],[[2245,2111,2112]],[[2077,2076,2163]],[[2178,2245,2112]],[[2236,2076,2111]],[[2244,2040,1967]],[[2126,2063,2122]],[[2091,2218,2092]],[[2100,2110,2218]],[[2239,2090,2092]],[[2199,2226,2091]],[[2196,2168,2167]],[[2196,2155,2168]],[[2215,2142,1983]],[[2215,2218,2141]],[[2215,2141,2142]],[[2218,2110,2141]],[[2241,2201,2083]],[[2241,2200,2201]],[[2184,2107,2106]],[[2153,2099,2098]],[[2208,2106,2152]],[[2006,2099,2153]],[[2151,2153,2152]],[[2151,2006,2153]],[[2134,2105,2015]],[[2106,2151,2152]],[[2134,2150,2105]],[[2103,2151,2150]],[[2237,2221,2164]],[[2219,2177,2214]],[[2164,2221,2220]],[[2246,2235,2219]],[[2164,2222,2166]],[[2220,2214,2222]],[[2247,2230,2233]],[[2234,2231,2182]],[[1976,2243,2087]],[[1975,1974,2061]],[[2139,2042,2125]],[[2040,2064,2041]],[[2138,2125,2038]],[[2138,2139,2125]],[[1985,2173,1982]],[[2143,2144,2217]],[[2184,2106,2208]],[[2105,2150,2106]],[[2144,2172,2145]],[[2225,1939,2172]],[[352,2028,351]],[[2027,2115,2028]],[[2225,2210,1970]],[[2210,2172,2053]],[[2132,1972,2127]],[[1971,2053,1972]],[[2247,2127,2042]],[[1972,2053,2127]],[[1998,1997,2118]],[[2224,2083,2117]],[[2224,2117,1997]],[[2022,2021,2117]],[[2100,2226,2029]],[[2100,2091,2226]],[[2187,1998,2058]],[[2187,2248,1998]],[[2051,2195,2021]],[[2051,2050,2195]],[[2112,2078,1954]],[[2111,2076,2078]],[[1936,2181,1942]],[[1936,1940,2181]],[[2068,1949,2232]],[[1948,2182,1949]],[[1970,2210,1971]],[[2225,2172,2210]],[[2173,2043,1983]],[[2173,2143,2043]],[[2143,2217,2043]],[[2144,2228,2216]],[[2131,2132,1948]],[[1970,1972,2132]],[[2245,2236,2111]],[[2177,2219,2235]],[[2029,2248,2100]],[[2029,1996,2248]],[[1997,1996,2224]],[[2030,2197,2031]],[[2224,1996,2031]],[[1998,2248,1996]],[[2031,2082,2224]],[[2031,2197,2082]],[[347,1956,1936]],[[2068,2231,1957]],[[2234,1957,2231]],[[1958,1940,1936]],[[2177,2235,2236]],[[2237,2076,2235]],[[2089,2090,1979]],[[2092,2228,2239]],[[2227,2090,2239]],[[2199,2091,2090]],[[1979,2227,2145]],[[1979,2090,2227]],[[2220,2219,2214]],[[2246,2237,2235]],[[2221,2246,2219]],[[2221,2237,2246]],[[2108,2207,2193]],[[2107,2184,2207]],[[2193,2183,2179]],[[2207,2184,2183]],[[2026,2025,2204]],[[2026,1934,2024]],[[2202,2024,351]],[[2202,2025,2024]],[[2167,2157,2073]],[[2168,2162,2157]],[[2234,1958,1957]],[[2234,1943,1958]],[[2099,2005,2097]],[[2099,2006,2005]],[[2177,2245,2178]],[[2177,2236,2245]],[[1986,2084,2054]],[[1986,292,2084]],[[2136,2171,2002]],[[2136,2006,2171]],[[2148,2147,1964]],[[2148,2137,2147]],[[348,2086,2206]],[[348,349,2086]],[[2248,2101,2100]],[[2248,2187,2101]],[[2110,2037,2036]],[[2101,2187,2037]],[[2187,2013,2037]],[[2015,2036,2013]],[[2087,2243,2061]],[[1976,2066,2243]],[[2047,2223,1994]],[[2047,2196,2223]],[[1941,1944,1946]],[[1941,1945,1944]],[[2234,2230,1943]],[[2069,2071,2074]],[[2165,2114,2113]],[[1946,2074,2114]],[[2182,2233,2234]],[[2140,2139,2069]],[[2127,2247,2182]],[[2247,2140,2230]],[[2140,2069,2230]],[[2180,2070,2069]],[[2182,2247,2233]],[[2042,2140,2247]],[[2071,1953,2077]],[[2071,1951,1953]],[[2077,1953,1955]],[[1951,1950,1953]],[[2075,2077,2163]],[[1955,2078,2077]],[[2197,2059,1934]],[[2238,2060,2059]],[[1977,1965,1966]],[[1977,1961,1965]],[[2116,2079,2203]],[[2116,2080,2079]],[[2012,2185,2229]],[[2012,2011,2185]],[[2144,2216,2217]],[[2228,2092,2216]],[[2103,2006,2151]],[[2103,2171,2006]],[[2206,1935,348]],[[2206,2057,1935]],[[2125,2039,2038]],[[2125,2122,2039]],[[1960,2244,1967]],[[2064,2040,2244]],[[2194,2019,2118]],[[2194,2176,2019]],[[2064,2126,2041]],[[2064,2063,2126]],[[2129,2130,2115]],[[2211,2240,2130]],[[2148,2070,2180]],[[2148,1951,2070]],[[2194,2049,2175]],[[2118,2050,2049]],[[2146,2213,1937]],[[2212,2209,2213]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222354ba-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a0e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2249,2250,2251]],[[2249,2251,2252]],[[2252,2251,2253]],[[2251,344,345]],[[2253,2251,345]],[[2250,344,2251]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222465d8-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2254,2255,2256]],[[2257,2254,2256]],[[2258,2254,2257]],[[2258,2259,2254]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22250278-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2260,2261,2262]],[[2263,2264,2265]],[[2266,2267,2268]],[[2269,2270,2271]],[[2272,2273,2274]],[[2272,2274,2275]],[[2276,2277,2270]],[[2277,2273,2270]],[[2278,2279,2280]],[[2281,2274,2282]],[[2283,2284,2285]],[[2286,2287,2288]],[[2289,2281,2284]],[[2290,2291,2292]],[[2293,2294,2295]],[[2296,2290,2297]],[[2298,2296,2297]],[[2299,2292,2300]],[[2301,2302,2303]],[[2304,2305,2306]],[[2307,2308,2309]],[[2310,2311,2312]],[[2313,2314,2312]],[[2315,2316,2317]],[[2318,2319,2320]],[[2321,2322,2323]],[[2318,2324,2319]],[[2319,2324,2325]],[[2326,2327,2328]],[[2328,2329,2330]],[[2331,2311,2310]],[[2314,2313,2332]],[[2333,2334,2335]],[[2336,2308,2322]],[[2337,2338,2339]],[[2340,2341,2342]],[[2343,2344,2345]],[[2346,2347,2348]],[[2349,2350,2351]],[[2352,2353,2354]],[[2353,2352,2355]],[[2356,2357,2358]],[[2359,2360,2358]],[[2361,2362,2363]],[[2360,2348,2364]],[[2365,2366,2367]],[[2365,2368,2366]],[[2365,2369,2370]],[[2345,2371,2343]],[[2345,2344,2372]],[[2373,2374,2375]],[[2363,2362,2376]],[[2377,2378,2379]],[[2380,2381,2382]],[[2375,2374,2377]],[[2377,2380,2378]],[[2341,2383,2342]],[[2384,2385,2386]],[[2385,2387,2388]],[[2384,2373,2389]],[[2390,2385,2391]],[[2383,2392,2393]],[[2394,2387,2395]],[[2396,2335,2397]],[[2398,2399,2400]],[[2401,2402,2403]],[[2401,2404,2402]],[[2405,2400,2335]],[[2406,2405,2335]],[[2407,2408,2409]],[[2410,2411,2412]],[[2412,2411,2413]],[[2339,2338,2414]],[[2411,2415,2416]],[[2417,2418,2419]],[[2420,2421,2422]],[[2423,2424,2425]],[[2423,2426,2424]],[[2427,2424,2428]],[[2429,2430,2431]],[[2432,2433,2434]],[[2435,2436,2437]],[[2306,2438,2439]],[[2440,2441,2442]],[[2443,2444,2445]],[[2443,2446,2447]],[[2448,2445,2449]],[[2450,2451,2438]],[[2452,2453,2454]],[[2455,2456,2457]],[[2458,2444,2459]],[[2460,2461,2462]],[[2463,2464,2465]],[[2466,2467,2468]],[[2452,2440,2453]],[[2469,2470,2471]],[[2472,2264,2473]],[[2266,2474,2267]],[[2475,2268,2267]],[[2475,2476,2268]],[[2475,2477,2476]],[[2466,2478,2475]],[[2475,2478,2477]],[[2466,2468,2478]],[[2466,2479,2467]],[[2480,2481,2479]],[[2479,2481,2467]],[[2480,2482,2483]],[[2481,2480,2483]],[[2484,2482,2485]],[[2486,2487,2303]],[[2488,2489,2490]],[[2491,2492,2488]],[[2493,2494,2495]],[[2496,2497,2489]],[[2498,2499,2496]],[[2500,2501,2502]],[[2503,2504,2500]],[[2505,2506,2507]],[[2419,2418,2508]],[[2469,2487,2486]],[[2509,2260,2510]],[[2511,2469,2486]],[[2510,2302,2301]],[[2302,2486,2303]],[[2261,2260,2509]],[[2260,2302,2510]],[[2509,2483,2261]],[[2483,2484,2261]],[[2483,2482,2484]],[[2512,2513,2514]],[[2465,2515,2516]],[[2517,2485,2518]],[[2516,2485,2482]],[[2516,2518,2485]],[[2519,2520,2521]],[[2522,2523,2524]],[[2455,2457,2441]],[[2525,2526,2527]],[[2528,2451,2450]],[[2450,2438,2306]],[[2529,2530,2531]],[[2532,2533,2534]],[[2535,2536,2537]],[[2538,2419,2539]],[[2540,2541,2542]],[[2534,2430,2543]],[[2544,2545,2501]],[[2546,2507,2502]],[[2547,2536,2530]],[[2548,2549,2420]],[[2415,2541,2550]],[[2551,2552,2553]],[[2287,2286,2295]],[[2295,2554,2293]],[[2293,2554,2555]],[[2282,2274,2556]],[[2294,2557,2290]],[[2555,2554,2557]],[[2300,2558,2556]],[[2282,2554,2288]],[[2352,2356,2358]],[[2348,2360,2359]],[[2528,2459,2451]],[[2459,2444,2451]],[[2559,2560,2561]],[[2501,2546,2502]],[[2561,2544,2501]],[[2562,2545,2544]],[[2563,2564,2565]],[[2566,2567,2568]],[[2569,2570,2571]],[[2436,2542,2572]],[[2264,2573,2265]],[[2501,2545,2546]],[[2574,2434,2306]],[[2420,2575,2548]],[[2417,2419,2576]],[[2493,2495,2562]],[[2577,2578,2579]],[[2580,2316,2324]],[[2333,2581,2572]],[[2582,2583,2584]],[[2402,2398,2405]],[[2399,2404,2585]],[[2586,2587,2588]],[[2589,2495,2494]],[[2590,2591,2592]],[[2588,2593,2594]],[[2553,2537,2536]],[[2595,2508,2596]],[[2535,2597,2582]],[[2338,2322,2414]],[[2598,2599,2349]],[[2599,2600,2601]],[[2602,2381,2603]],[[2602,2362,2382]],[[2474,2604,2605]],[[2474,2269,2267]],[[2471,2473,2469]],[[2264,2487,2473]],[[2606,2607,2608]],[[2609,2610,2489]],[[2611,2612,2613]],[[2614,2615,2338]],[[2616,2442,2525]],[[2617,2618,2619]],[[2620,2266,2263]],[[2268,2264,2263]],[[2557,2554,2282]],[[2288,2281,2282]],[[2357,2359,2358]],[[2357,2348,2359]],[[2356,2346,2357]],[[2367,2621,2622]],[[2598,2349,2351]],[[2601,2350,2349]],[[2305,2543,2429]],[[2623,2534,2543]],[[2557,2291,2290]],[[2557,2558,2291]],[[2381,2380,2603]],[[2382,2362,2361]],[[2624,2574,2439]],[[2304,2623,2543]],[[2379,2622,2621]],[[2361,2363,2622]],[[2625,2626,2279]],[[2626,2627,2283]],[[2628,2629,2524]],[[2630,2440,2442]],[[2294,2555,2557]],[[2294,2293,2555]],[[2398,2402,2399]],[[2392,2631,2395]],[[2632,2512,2633]],[[2634,2516,2482]],[[2521,2635,2464]],[[2617,2619,2515]],[[2290,2636,2505]],[[2299,2300,2637]],[[2507,2506,2502]],[[2607,2638,2639]],[[2471,2640,2472]],[[2640,2641,2620]],[[2642,2643,2644]],[[2500,2502,2643]],[[2515,2465,2635]],[[2521,2464,2632]],[[2561,2645,2493]],[[2594,2494,2645]],[[2444,2458,2445]],[[2456,2646,2458]],[[2379,2378,2622]],[[2377,2647,2380]],[[2648,2534,2623]],[[2533,2649,2430]],[[2650,2651,2623]],[[2596,2649,2648]],[[2369,2652,2371]],[[2371,2652,2343]],[[2344,2363,2376]],[[2344,2652,2363]],[[2635,2653,2464]],[[2654,2655,2656]],[[2464,2513,2632]],[[2512,2628,2657]],[[2434,2304,2306]],[[2433,2432,2658]],[[2433,2658,2304]],[[2432,2426,2658]],[[2428,2426,2432]],[[2423,2659,2575]],[[2610,2660,2496]],[[2499,2497,2496]],[[2416,2415,2661]],[[2411,2410,2334]],[[2319,2325,2328]],[[2662,2316,2663]],[[2603,2647,2374]],[[2603,2380,2647]],[[2664,2307,2309]],[[2307,2312,2308]],[[2647,2377,2374]],[[2377,2379,2375]],[[2498,2665,2666]],[[2498,2660,2665]],[[2667,2565,2331]],[[2564,2566,2668]],[[2493,2562,2544]],[[2669,2545,2562]],[[2655,2616,2527]],[[2657,2670,2671]],[[2340,2375,2672]],[[2340,2373,2375]],[[2290,2292,2636]],[[2673,2558,2300]],[[2445,2674,2454]],[[2445,2646,2674]],[[2263,2266,2268]],[[2263,2265,2620]],[[2392,2585,2675]],[[2390,2387,2385]],[[2676,2396,2397]],[[2677,2406,2335]],[[2678,2611,2583]],[[2591,2588,2576]],[[2586,2679,2680]],[[2418,2681,2682]],[[2645,2683,2594]],[[2660,2498,2496]],[[2684,2683,2645]],[[2587,2685,2576]],[[2684,2560,2559]],[[2684,2645,2560]],[[2380,2382,2378]],[[2381,2602,2382]],[[2437,2436,2572]],[[2334,2677,2335]],[[2552,2686,2437]],[[2435,2687,2436]],[[2651,2650,2540]],[[2548,2575,2661]],[[2542,2688,2540]],[[2569,2689,2690]],[[2687,2691,2688]],[[2623,2304,2692]],[[2540,2691,2651]],[[2686,2552,2693]],[[2572,2542,2541]],[[2436,2687,2542]],[[2694,2570,2695]],[[2571,2693,2569]],[[2354,2353,2351]],[[2352,2358,2355]],[[2677,2410,2412]],[[2677,2334,2410]],[[2594,2696,2589]],[[2414,2669,2696]],[[2697,2563,2565]],[[2698,2564,2563]],[[2699,2583,2611]],[[2613,2337,2591]],[[2415,2334,2541]],[[2415,2411,2334]],[[2294,2296,2298]],[[2294,2290,2296]],[[2593,2339,2696]],[[2593,2696,2594]],[[2696,2339,2414]],[[2588,2591,2337]],[[2504,2559,2501]],[[2606,2608,2700]],[[2323,2701,2437]],[[2702,2547,2689]],[[2628,2524,2523]],[[2525,2441,2461]],[[2557,2556,2558]],[[2274,2273,2556]],[[2400,2585,2397]],[[2404,2675,2585]],[[2635,2465,2653]],[[2516,2634,2463]],[[2666,2638,2607]],[[2665,2639,2638]],[[2541,2333,2572]],[[2541,2334,2333]],[[2703,2704,2470]],[[2705,2666,2607]],[[2639,2660,2706]],[[2639,2665,2660]],[[2540,2549,2550]],[[2707,2692,2421]],[[2520,2519,2708]],[[2632,2513,2512]],[[2709,2629,2634]],[[2657,2523,2670]],[[2710,2369,2371]],[[2370,2368,2365]],[[2648,2695,2596]],[[2648,2694,2695]],[[2415,2550,2661]],[[2541,2540,2550]],[[2582,2678,2583]],[[2597,2612,2678]],[[2539,2611,2711]],[[2678,2612,2611]],[[2333,2712,2581]],[[2407,2664,2309]],[[2572,2581,2437]],[[2321,2336,2322]],[[2581,2323,2437]],[[2321,2713,2407]],[[2279,2626,2285]],[[2279,2278,2625]],[[2514,2629,2628]],[[2514,2634,2629]],[[2714,2520,2708]],[[2714,2618,2520]],[[2715,2698,2697]],[[2715,2564,2698]],[[2460,2671,2670]],[[2716,2708,2633]],[[2460,2462,2671]],[[2714,2708,2671]],[[2716,2512,2657]],[[2628,2523,2657]],[[2470,2469,2511]],[[2473,2487,2469]],[[2623,2651,2570]],[[2691,2686,2717]],[[2571,2651,2691]],[[2571,2570,2651]],[[2571,2717,2693]],[[2571,2691,2717]],[[2718,2319,2328]],[[2718,2578,2719]],[[2669,2546,2545]],[[2669,2507,2546]],[[2706,2608,2639]],[[2720,2705,2607]],[[2639,2608,2607]],[[2700,2683,2684]],[[2437,2721,2552]],[[2701,2615,2722]],[[2721,2701,2722]],[[2323,2322,2723]],[[2537,2721,2722]],[[2437,2701,2721]],[[2724,2427,2428]],[[2725,2659,2425]],[[2331,2726,2311]],[[2317,2311,2727]],[[2728,2567,2564]],[[2568,2315,2317]],[[2564,2668,2565]],[[2726,2727,2311]],[[2430,2429,2543]],[[2528,2729,2459]],[[2554,2286,2288]],[[2554,2295,2286]],[[2521,2617,2635]],[[2619,2518,2515]],[[2644,2730,2642]],[[2620,2265,2573]],[[2502,2506,2643]],[[2507,2290,2505]],[[2731,2505,2636]],[[2732,2506,2505]],[[2674,2733,2734]],[[2456,2458,2457]],[[2695,2569,2596]],[[2695,2570,2569]],[[2691,2540,2688]],[[2650,2707,2540]],[[2542,2687,2688]],[[2686,2691,2687]],[[2703,2641,2704]],[[2573,2264,2472]],[[2471,2472,2473]],[[2471,2470,2704]],[[2471,2704,2640]],[[2735,2500,2642]],[[2643,2642,2500]],[[2730,2736,2737]],[[2650,2692,2707]],[[2658,2426,2423]],[[2633,2519,2632]],[[2520,2618,2521]],[[2428,2424,2426]],[[2427,2724,2725]],[[2648,2532,2534]],[[2648,2649,2532]],[[2660,2610,2706]],[[2489,2488,2609]],[[2738,2735,2641]],[[2642,2730,2735]],[[2566,2726,2668]],[[2566,2568,2726]],[[2285,2626,2283]],[[2625,2280,2627]],[[2283,2289,2284]],[[2283,2627,2289]],[[2623,2692,2650]],[[2421,2658,2422]],[[2739,2394,2631]],[[2739,2387,2394]],[[2623,2694,2648]],[[2623,2570,2694]],[[2559,2561,2501]],[[2560,2645,2561]],[[2397,2341,2340]],[[2397,2585,2341]],[[2600,2355,2350]],[[2358,2350,2355]],[[2386,2385,2388]],[[2384,2389,2391]],[[2329,2715,2740]],[[2728,2564,2715]],[[2439,2574,2306]],[[2434,2433,2304]],[[2564,2567,2566]],[[2327,2326,2316]],[[2349,2599,2601]],[[2353,2355,2599]],[[2400,2399,2585]],[[2402,2404,2399]],[[2584,2531,2530]],[[2690,2689,2547]],[[2690,2547,2529]],[[2551,2693,2552]],[[2584,2530,2536]],[[2529,2547,2530]],[[2392,2395,2390]],[[2631,2394,2395]],[[2401,2675,2404]],[[2401,2631,2675]],[[2550,2548,2661]],[[2550,2549,2548]],[[2741,2697,2667]],[[2698,2563,2697]],[[2557,2282,2556]],[[2288,2287,2281]],[[2635,2617,2515]],[[2521,2618,2617]],[[2680,2679,2706]],[[2682,2742,2609]],[[2561,2493,2544]],[[2645,2494,2493]],[[2743,2370,2369]],[[2710,2368,2370]],[[2630,2656,2709]],[[2630,2442,2654]],[[2606,2700,2559]],[[2700,2608,2679]],[[2559,2700,2684]],[[2608,2706,2679]],[[2491,2488,2490]],[[2609,2742,2610]],[[2537,2553,2552]],[[2536,2547,2553]],[[2721,2537,2552]],[[2722,2597,2535]],[[2624,2434,2574]],[[2624,2432,2434]],[[2580,2318,2579]],[[2320,2718,2719]],[[2273,2637,2556]],[[2292,2291,2673]],[[2636,2299,2277]],[[2300,2556,2637]],[[2277,2299,2637]],[[2636,2292,2299]],[[2685,2417,2576]],[[2685,2681,2418]],[[2335,2400,2397]],[[2405,2398,2400]],[[2445,2458,2646]],[[2455,2441,2440]],[[2700,2679,2683]],[[2586,2680,2587]],[[2588,2587,2576]],[[2588,2594,2586]],[[2273,2277,2637]],[[2636,2276,2731]],[[2306,2305,2450]],[[2304,2543,2305]],[[2277,2276,2636]],[[2732,2505,2731]],[[2422,2423,2575]],[[2424,2427,2725]],[[2659,2423,2425]],[[2422,2658,2423]],[[2514,2464,2634]],[[2464,2653,2465]],[[2634,2464,2463]],[[2514,2513,2464]],[[2534,2533,2430]],[[2532,2649,2533]],[[2744,2745,2352]],[[2746,2621,2367]],[[2357,2346,2348]],[[2745,2744,2747]],[[2366,2364,2367]],[[2348,2347,2364]],[[2747,2347,2346]],[[2744,2621,2347]],[[2652,2367,2622]],[[2364,2746,2367]],[[2363,2652,2622]],[[2344,2343,2652]],[[2307,2313,2312]],[[2332,2740,2314]],[[2748,2314,2740]],[[2565,2668,2331]],[[2314,2310,2312]],[[2314,2667,2331]],[[2314,2331,2310]],[[2668,2726,2331]],[[2336,2407,2309]],[[2332,2313,2307]],[[2332,2664,2409]],[[2332,2307,2664]],[[2465,2516,2463]],[[2515,2518,2516]],[[2672,2379,2621]],[[2672,2375,2379]],[[2459,2729,2458]],[[2431,2441,2457]],[[2338,2723,2322]],[[2701,2323,2723]],[[2722,2615,2597]],[[2701,2723,2615]],[[2726,2568,2727]],[[2315,2327,2316]],[[2749,2272,2275]],[[2749,2273,2272]],[[2347,2746,2364]],[[2347,2621,2746]],[[2292,2673,2300]],[[2291,2558,2673]],[[2732,2276,2736]],[[2750,2605,2604]],[[2640,2620,2573]],[[2737,2604,2620]],[[2447,2446,2448]],[[2443,2445,2446]],[[2652,2365,2367]],[[2652,2369,2365]],[[2498,2666,2470]],[[2665,2638,2666]],[[2590,2613,2591]],[[2612,2597,2614]],[[2613,2338,2337]],[[2615,2723,2338]],[[2613,2614,2338]],[[2597,2615,2614]],[[2611,2613,2711]],[[2612,2614,2613]],[[2594,2589,2494]],[[2495,2669,2562]],[[2611,2539,2699]],[[2751,2531,2584]],[[2583,2751,2584]],[[2419,2508,2595]],[[2678,2582,2597]],[[2584,2536,2535]],[[2722,2535,2537]],[[2582,2584,2535]],[[2407,2336,2321]],[[2309,2308,2336]],[[2408,2407,2713]],[[2409,2664,2407]],[[2581,2321,2323]],[[2581,2713,2321]],[[2738,2641,2705]],[[2735,2730,2737]],[[2735,2752,2500]],[[2720,2606,2503]],[[2568,2317,2727]],[[2316,2311,2317]],[[2304,2421,2692]],[[2304,2658,2421]],[[2753,2448,2449]],[[2446,2445,2448]],[[2683,2586,2594]],[[2683,2679,2586]],[[2686,2435,2437]],[[2686,2687,2435]],[[2284,2281,2287]],[[2289,2627,2281]],[[2409,2408,2397]],[[2712,2333,2396]],[[2676,2408,2713]],[[2676,2397,2408]],[[2713,2712,2676]],[[2333,2335,2396]],[[2754,2531,2755]],[[2699,2539,2419]],[[2595,2755,2419]],[[2531,2751,2755]],[[2601,2600,2350]],[[2599,2355,2600]],[[2714,2462,2461]],[[2714,2671,2462]],[[2342,2383,2393]],[[2341,2585,2392]],[[2391,2342,2393]],[[2389,2340,2342]],[[2305,2528,2450]],[[2729,2431,2457]],[[2429,2528,2305]],[[2429,2431,2528]],[[2745,2356,2352]],[[2745,2346,2356]],[[2353,2598,2351]],[[2353,2599,2598]],[[2741,2748,2740]],[[2697,2565,2667]],[[2748,2667,2314]],[[2748,2741,2667]],[[2750,2276,2270]],[[2604,2736,2276]],[[2337,2593,2588]],[[2337,2339,2593]],[[2666,2705,2470]],[[2752,2503,2500]],[[2752,2738,2705]],[[2752,2735,2738]],[[2720,2752,2705]],[[2720,2503,2752]],[[2705,2703,2470]],[[2705,2641,2703]],[[2504,2606,2559]],[[2720,2607,2606]],[[2715,2741,2740]],[[2715,2697,2741]],[[2734,2733,2456]],[[2674,2646,2733]],[[2500,2504,2501]],[[2503,2606,2504]],[[2576,2592,2591]],[[2576,2419,2592]],[[2590,2538,2539]],[[2592,2419,2538]],[[2644,2732,2730]],[[2731,2276,2732]],[[2452,2455,2440]],[[2455,2734,2456]],[[2452,2734,2455]],[[2733,2646,2456]],[[2424,2725,2425]],[[2724,2659,2725]],[[2506,2644,2643]],[[2506,2732,2644]],[[2274,2627,2280]],[[2274,2281,2627]],[[2626,2625,2627]],[[2278,2280,2625]],[[2756,2718,2328]],[[2756,2578,2718]],[[2529,2754,2596]],[[2529,2531,2754]],[[2569,2693,2689]],[[2553,2547,2702]],[[2689,2693,2551]],[[2717,2686,2693]],[[2702,2551,2553]],[[2702,2689,2551]],[[2676,2712,2396]],[[2713,2581,2712]],[[2632,2519,2521]],[[2633,2708,2519]],[[2590,2539,2711]],[[2419,2755,2699]],[[2751,2699,2755]],[[2751,2583,2699]],[[2696,2495,2589]],[[2696,2669,2495]],[[2472,2640,2573]],[[2704,2641,2640]],[[2737,2736,2604]],[[2730,2732,2736]],[[2276,2750,2604]],[[2270,2269,2757]],[[2620,2604,2474]],[[2750,2270,2757]],[[2605,2757,2474]],[[2605,2750,2757]],[[2620,2474,2266]],[[2757,2269,2474]],[[2707,2420,2549]],[[2422,2575,2420]],[[2420,2707,2421]],[[2549,2540,2707]],[[2587,2681,2685]],[[2706,2742,2682]],[[2508,2418,2492]],[[2417,2685,2418]],[[2492,2609,2488]],[[2492,2682,2609]],[[2671,2716,2657]],[[2514,2628,2512]],[[2708,2716,2671]],[[2633,2512,2716]],[[2418,2682,2492]],[[2681,2706,2682]],[[2523,2522,2670]],[[2654,2656,2630]],[[2522,2460,2670]],[[2522,2526,2460]],[[2524,2527,2522]],[[2442,2441,2525]],[[2526,2525,2461]],[[2527,2616,2525]],[[2460,2526,2461]],[[2522,2527,2526]],[[2524,2655,2527]],[[2524,2629,2655]],[[2709,2655,2629]],[[2709,2656,2655]],[[2616,2654,2442]],[[2616,2655,2654]],[[2641,2737,2620]],[[2641,2735,2737]],[[2489,2610,2496]],[[2742,2706,2610]],[[2613,2590,2711]],[[2592,2538,2590]],[[2378,2361,2622]],[[2378,2382,2361]],[[2663,2326,2328]],[[2663,2316,2326]],[[2728,2327,2567]],[[2329,2328,2327]],[[2567,2315,2568]],[[2567,2327,2315]],[[2325,2663,2328]],[[2662,2324,2316]],[[2325,2662,2663]],[[2325,2324,2662]],[[2447,2753,2449]],[[2447,2448,2753]],[[2454,2734,2452]],[[2454,2674,2734]],[[2329,2728,2715]],[[2329,2327,2728]],[[2754,2595,2596]],[[2754,2755,2595]],[[2391,2389,2342]],[[2373,2340,2389]],[[2392,2390,2393]],[[2385,2384,2391]],[[2393,2390,2391]],[[2395,2387,2390]],[[2458,2729,2457]],[[2528,2431,2729]],[[2745,2747,2346]],[[2744,2347,2747]],[[2579,2320,2719]],[[2319,2718,2320]],[[2579,2318,2320]],[[2580,2324,2318]],[[2710,2743,2369]],[[2710,2370,2743]],[[2596,2690,2529]],[[2596,2569,2690]],[[2341,2392,2383]],[[2675,2631,2392]],[[2719,2577,2579]],[[2719,2578,2577]],[[2360,2366,2368]],[[2360,2364,2366]],[[2681,2680,2706]],[[2681,2587,2680]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222836f6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cff49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2758,2759,2760]],[[2761,2762,2763]],[[2764,2765,2766]],[[2767,2768,2769]],[[2766,2770,2771]],[[2772,2761,2763]],[[2773,2774,2775]],[[2776,2773,2777]],[[2775,2774,2778]],[[2770,2772,2776]],[[2779,2780,2781]],[[2779,2782,2783]],[[2774,2784,2785]],[[2786,2787,2788]],[[2789,2790,2786]],[[2776,2774,2773]],[[2791,2792,2758]],[[2791,2793,2794]],[[2795,2794,2793]],[[2784,2796,2763]],[[2774,2797,2782]],[[2796,2776,2772]],[[2762,2794,2763]],[[2758,2795,2793]],[[2798,2794,2795]],[[2767,2759,2758]],[[2798,2795,2760]],[[2799,2800,2789]],[[2780,2779,2800]],[[2759,2798,2760]],[[2760,2795,2758]],[[2762,2791,2794]],[[2758,2793,2791]],[[2774,2785,2797]],[[2797,2783,2782]],[[2801,2802,2803]],[[2802,2768,2767]],[[2800,2790,2789]],[[2800,2783,2790]],[[2771,2770,2777]],[[2801,2803,2761]],[[2796,2772,2763]],[[2801,2765,2802]],[[2803,2762,2761]],[[2803,2792,2762]],[[2762,2792,2791]],[[2803,2802,2767]],[[2792,2767,2758]],[[2792,2803,2767]],[[2769,2759,2767]],[[2769,2798,2759]],[[2784,2804,2785]],[[2783,2800,2779]],[[2804,2797,2785]],[[2805,2787,2783]],[[2765,2764,2802]],[[2764,2768,2802]],[[2772,2801,2761]],[[2772,2770,2801]],[[2770,2765,2801]],[[2770,2766,2765]],[[2805,2783,2797]],[[2787,2790,2783]],[[2799,2780,2800]],[[2799,2781,2780]],[[2789,2786,2788]],[[2790,2787,2786]],[[2787,2784,2763]],[[2787,2804,2784]],[[2770,2776,2777]],[[2796,2784,2774]],[[2778,2774,2782]],[[2776,2796,2774]],[[2804,2805,2797]],[[2804,2787,2805]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2228f9ca-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef607d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2806,242,243]],[[244,2807,2806]],[[2807,241,2806]],[[245,2808,244]],[[2809,2810,2811]],[[2812,215,238]],[[2810,2813,238]],[[2814,213,215]],[[241,2807,2809]],[[2812,2813,2815]],[[2809,2807,2813]],[[245,247,261]],[[2807,244,2808]],[[2808,245,261]],[[2811,2810,238]],[[239,240,2809]],[[2814,2812,2815]],[[238,2813,2812]],[[213,2814,2815]],[[215,2812,2814]],[[244,2806,243]],[[241,242,2806]],[[2810,2809,2813]],[[240,241,2809]],[[239,2811,238]],[[239,2809,2811]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222920fb-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.2a5997ebc5054d16864de6fe20493984","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2816,2817,2818]],[[2819,2818,2820]],[[2821,2822,2820]],[[2817,2822,2818]],[[2819,2817,2823]],[[2822,2824,2818]],[[2819,2816,2818]],[[2823,2817,2816]],[[2822,2819,2820]],[[2823,2816,2819]],[[2819,2822,2817]],[[2821,2824,2822]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222b6a92-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5d1a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2825,2826,2827]],[[2827,2828,183]],[[2829,2828,2830]],[[2829,2831,2828]],[[2832,2827,183]],[[2828,182,183]],[[2826,2830,2828]],[[2833,2829,2834]],[[2835,2832,183]],[[2835,2827,2832]],[[182,2836,2834]],[[182,2831,2836]],[[2826,2828,2827]],[[2831,182,2828]],[[2825,2835,183]],[[2825,2827,2835]],[[2836,2833,2834]],[[2836,2831,2829]],[[2834,2829,2830]],[[2833,2836,2829]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222c557f-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2837,2838,2839]],[[2840,2841,2839]],[[2838,2842,2839]],[[2839,2843,2840]],[[2843,2839,2842]],[[2844,2845,2846]],[[2844,2843,2842]],[[2844,2847,2845]],[[2844,2848,2847]],[[2849,2847,2848]],[[2850,2851,2852]],[[2852,2851,2853]],[[2850,2849,2848]],[[2851,2850,2848]],[[2851,2854,2855]],[[2851,2848,2854]],[[2854,2848,2856]],[[2844,2842,2848]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222ddc12-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2857,184,185]],[[2857,185,2858]],[[185,186,2859]],[[2859,2860,185]],[[2861,2862,2863]],[[2864,2865,2866]],[[2867,2868,191]],[[2869,2870,2871]],[[2872,2873,2874]],[[2875,2876,2877]],[[2878,2879,2880]],[[2879,2881,2882]],[[2883,2873,2884]],[[2885,2886,2887]],[[2887,2886,2888]],[[2889,2890,2891]],[[2892,2893,2894]],[[2895,192,2894]],[[2896,2897,2898]],[[192,2867,191]],[[2870,2869,2899]],[[2900,2901,2902]],[[2903,2904,2905]],[[2906,189,2907]],[[2898,186,187]],[[2908,2909,2910]],[[2858,185,2860]],[[2911,2912,2913]],[[2914,2915,2916]],[[2917,2918,188]],[[188,189,2906]],[[2919,2920,2874]],[[2921,2922,2923]],[[2924,2925,2867]],[[2926,2927,2928]],[[2929,2930,2907]],[[2931,190,2932]],[[2933,2934,2928]],[[2935,2936,2937]],[[2893,2923,2938]],[[2939,2913,2912]],[[2940,2941,2942]],[[2942,2872,2920]],[[190,2943,189]],[[2929,2907,189]],[[2944,2945,2946]],[[2908,2910,2947]],[[2920,2872,2874]],[[2942,2921,2923]],[[2938,2875,2948]],[[2876,2913,2877]],[[2880,2882,2887]],[[2884,2941,2940]],[[2862,2906,2907]],[[2949,188,2906]],[[2876,2950,2874]],[[2951,2922,2950]],[[2881,2884,2952]],[[2940,2942,2923]],[[2911,2953,2954]],[[2911,2955,2953]],[[2938,2923,2875]],[[2877,2913,2948]],[[2896,2861,2956]],[[2957,2909,2908]],[[2876,2951,2950]],[[2876,2875,2951]],[[190,2931,2943]],[[2924,2867,192]],[[2950,2919,2874]],[[2950,2921,2919]],[[2958,2944,2959]],[[2958,2945,2944]],[[2921,2942,2920]],[[2960,2872,2942]],[[186,2898,2859]],[[2917,188,2862]],[[2895,2961,2962]],[[2892,2963,2964]],[[2945,2965,2909]],[[2958,2910,2965]],[[2885,2889,2886]],[[2885,2881,2952]],[[2895,2966,192]],[[2967,2968,2969]],[[2943,2929,189]],[[2943,2930,2929]],[[2862,2949,2906]],[[2862,188,2949]],[[2944,2903,2959]],[[2970,2900,2971]],[[2972,2973,2964]],[[2871,2948,2974]],[[2882,2881,2885]],[[2883,2884,2881]],[[2941,2960,2942]],[[2873,2872,2960]],[[2933,2869,2912]],[[2925,2868,2867]],[[2969,2865,2975]],[[2948,2913,2974]],[[187,2918,2898]],[[187,188,2918]],[[2879,2883,2881]],[[2879,2873,2883]],[[2961,2895,2894]],[[2976,2966,2895]],[[2954,2933,2912]],[[2934,2955,2928]],[[2945,2909,2977]],[[2965,2910,2909]],[[2858,2860,2947]],[[2860,2900,2902]],[[2946,2945,2977]],[[2958,2965,2945]],[[2971,2978,2979]],[[2946,2903,2944]],[[2930,2932,2980]],[[2905,2959,2903]],[[2936,2905,2981]],[[2936,2959,2905]],[[2869,2939,2912]],[[2974,2913,2939]],[[2873,2941,2884]],[[2873,2960,2941]],[[2937,2982,2935]],[[2983,2915,2914]],[[2984,2916,2864]],[[2985,2981,2904]],[[2865,2864,2975]],[[2915,2983,2986]],[[2987,2932,2975]],[[190,191,2868]],[[2930,2931,2932]],[[2930,2943,2931]],[[2940,2923,2964]],[[2922,2951,2875]],[[2948,2875,2877]],[[2923,2922,2875]],[[2988,2967,2969]],[[2864,2987,2975]],[[2916,2915,2864]],[[2986,2932,2987]],[[2864,2915,2987]],[[2914,2984,2989]],[[2933,2928,2990]],[[2991,2982,2985]],[[2992,2978,2993]],[[2992,2979,2978]],[[2868,2925,2994]],[[2871,2870,2938]],[[2907,2863,2862]],[[2896,2898,2918]],[[2995,2996,2927]],[[2955,2911,2928]],[[2990,2928,2996]],[[2911,2936,2926]],[[2997,2908,2947]],[[2997,2957,2908]],[[2899,2990,2995]],[[2869,2933,2990]],[[2893,2892,2964]],[[2894,2963,2892]],[[2919,2921,2920]],[[2950,2922,2921]],[[2973,2890,2952]],[[2889,2885,2952]],[[2886,2891,2963]],[[2886,2889,2891]],[[2995,2998,2926]],[[2999,2926,2991]],[[2971,2986,2978]],[[3000,3001,2999]],[[3001,3000,2989]],[[3002,2978,2983]],[[2904,2901,2985]],[[2980,2907,2930]],[[2985,2901,2992]],[[2863,2907,2980]],[[2995,2926,3001]],[[2989,2995,3001]],[[2891,2890,2973]],[[2952,2884,2940]],[[2991,2926,2982]],[[2928,2911,2926]],[[2984,2995,2989]],[[2927,2926,2998]],[[2899,2995,2984]],[[2990,2996,2995]],[[2981,2937,2936]],[[2981,2985,2937]],[[2900,2970,2901]],[[2904,2903,2946]],[[2901,2970,2992]],[[2981,2905,2904]],[[2992,2970,2979]],[[3003,2946,2977]],[[2977,2902,3003]],[[2902,2957,2860]],[[2904,3003,2901]],[[2860,2997,2947]],[[2977,2957,2902]],[[2977,2909,2957]],[[2997,2860,2957]],[[2859,2897,2860]],[[2954,2934,2933]],[[2953,2955,2934]],[[2983,2978,2986]],[[2863,2971,2861]],[[2986,2863,2980]],[[2897,2900,2860]],[[2986,2971,2863]],[[2979,2970,2971]],[[2932,2986,2980]],[[2987,2915,2986]],[[2911,2954,2912]],[[2953,2934,2954]],[[2983,3000,3002]],[[3001,2926,2999]],[[2973,2952,2940]],[[2890,2889,2952]],[[2964,2973,2940]],[[2964,2963,2972]],[[2891,2972,2963]],[[2891,2973,2972]],[[2899,2866,2968]],[[2984,2864,2866]],[[2865,2968,2866]],[[2962,2961,2938]],[[2926,2935,2982]],[[2926,2936,2935]],[[2932,2868,2994]],[[2932,190,2868]],[[2966,2988,3004]],[[2994,2975,2932]],[[2966,3004,192]],[[2967,2976,2962]],[[3004,2988,2925]],[[2968,2865,2969]],[[2994,2988,2969]],[[2966,2976,2988]],[[2901,3003,2902]],[[2904,2946,3003]],[[2984,2914,2916]],[[2989,2983,2914]],[[3002,2993,2978]],[[2982,2937,2985]],[[2993,2985,2992]],[[2993,2991,2985]],[[3002,2991,2993]],[[3002,2999,2991]],[[2887,2882,2885]],[[2880,2879,2882]],[[2988,2994,2925]],[[2969,2975,2994]],[[3002,3000,2999]],[[2983,2989,3000]],[[2971,2956,2861]],[[2971,2900,2956]],[[2990,2899,2869]],[[2984,2866,2899]],[[2948,2871,2938]],[[2899,2968,2962]],[[2962,2938,2870]],[[2961,2893,2938]],[[2895,2962,2976]],[[2870,2899,2962]],[[2976,2967,2988]],[[2962,2968,2967]],[[2939,2871,2974]],[[2939,2869,2871]],[[2900,2897,2956]],[[2918,2861,2896]],[[2898,2897,2859]],[[2896,2956,2897]],[[2861,2917,2862]],[[2861,2918,2917]],[[3004,2924,192]],[[3004,2925,2924]],[[2923,2893,2964]],[[2961,2894,2893]],[[2995,2927,2998]],[[2996,2928,2927]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222e2a53-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3005,3006,3007]],[[3005,3007,3008]],[[3008,3009,3010]],[[3008,3011,3009]],[[3008,3007,3011]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222ec5e4-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3012,3013,3014]],[[3013,3015,3014]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2230c204-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3016,3017,3018]],[[3016,3019,3020]],[[3020,3019,3021]],[[3021,3019,3022]],[[3022,3019,3023]],[[3016,3018,3019]],[[3017,3024,3018]],[[3025,3026,3024]],[[3024,3026,3027]],[[3028,3025,3024]],[[3017,3028,3024]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2231105d-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3029,3030,3031]],[[3030,3032,3031]],[[3031,3033,3034]],[[3031,3032,3033]],[[3033,3032,3035]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2231d343-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.21ab1c490f1540238f61717fe02159de","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3036,3037,3038]],[[3036,3038,3039]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2232218d-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef749949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3040,3041,3042]],[[3043,3044,3045]],[[3045,3046,3047]],[[2257,3043,2258]],[[2256,3048,3049]],[[3048,2256,3050]],[[3051,2256,2255]],[[3052,2256,3053]],[[3052,3050,2256]],[[3054,2256,3055]],[[2259,3056,3057]],[[3058,3059,3060]],[[3061,2256,3062]],[[3059,1788,1782]],[[3063,2256,3064]],[[3063,3062,2256]],[[3065,2256,3051]],[[3065,3064,2256]],[[3066,3051,2255]],[[3067,3066,2255]],[[3068,2255,3069]],[[3069,3070,3071]],[[3071,3072,3073]],[[3073,3072,3074]],[[3074,3075,3076]],[[3058,3060,3077]],[[3059,1782,3060]],[[3076,3078,3077]],[[3061,3079,2256]],[[2256,3079,3080]],[[3078,3058,3077]],[[3080,3055,2256]],[[3078,3076,3075]],[[3075,3074,3072]],[[3072,3071,3070]],[[3070,3069,3081]],[[3081,3069,2255]],[[2255,3082,3083]],[[3083,3081,2255]],[[2259,3084,3082]],[[2259,3085,3084]],[[2259,3086,3085]],[[2259,3087,3086]],[[2259,3088,3087]],[[2259,3089,3088]],[[2259,3057,3089]],[[3090,3056,2259]],[[3091,3090,2259]],[[3092,3091,2259]],[[3047,3093,3043]],[[2259,3094,3092]],[[2259,3095,3094]],[[2259,3096,3095]],[[2259,3097,3096]],[[2259,3098,3097]],[[2259,2258,3098]],[[3043,3093,3099]],[[3045,3047,3043]],[[3045,3042,3046]],[[3100,3101,3102]],[[3100,3041,3101]],[[3046,3103,3104]],[[3105,3106,3107]],[[3108,3103,3046]],[[3105,3109,3106]],[[3103,3110,3111]],[[3103,3112,3110]],[[3041,3100,3042]],[[3112,3113,3114]],[[3115,3116,3117]],[[3115,3118,3116]],[[3119,3120,3121]],[[3122,3123,3124]],[[3125,3126,3127]],[[3128,3129,3126]],[[3130,3131,3129]],[[3132,3133,3134]],[[3135,1830,1779]],[[3136,3137,3138]],[[3138,3139,3140]],[[3140,3141,3142]],[[3142,3143,3144]],[[3144,3145,3146]],[[3146,3122,3147]],[[3147,3122,3124]],[[3124,3123,3148]],[[3135,1779,3149]],[[3148,3150,3149]],[[3151,3152,3136]],[[3151,3132,3153]],[[3149,3150,3135]],[[3133,3131,3154]],[[3155,3156,3127]],[[3150,3148,3123]],[[3157,3156,3155]],[[3157,3119,3158]],[[3146,3145,3122]],[[3120,3118,3115]],[[3145,3144,3143]],[[3139,3141,3140]],[[3143,3142,3141]],[[3137,3139,3138]],[[3152,3137,3136]],[[3159,3160,3161]],[[3162,3163,3117]],[[3162,3160,3163]],[[3152,3151,3153]],[[3153,3132,3134]],[[3130,3154,3131]],[[3134,3133,3154]],[[3128,3130,3129]],[[3125,3128,3126]],[[3156,3125,3127]],[[3158,3156,3157]],[[3121,3158,3119]],[[3115,3121,3120]],[[3163,3115,3117]],[[3113,3164,3161]],[[3160,3159,3163]],[[3164,3113,3102]],[[3161,3164,3159]],[[3108,3165,3103]],[[3101,3041,3166]],[[3164,3101,3167]],[[3168,3169,3170]],[[3171,3172,3173]],[[3174,3175,3176]],[[3177,3178,3179]],[[3175,3180,3179]],[[3181,3182,3183]],[[3184,3185,3186]],[[3187,3188,3189]],[[3190,1771,1773]],[[3191,3192,3193]],[[3188,3194,3193]],[[3192,3195,3196]],[[3196,3171,3173]],[[3173,3172,3197]],[[3198,3199,3200]],[[3190,1773,3199]],[[3197,3201,3200]],[[3202,3203,3189]],[[3202,3183,3204]],[[3199,3198,3190]],[[3181,3185,3205]],[[3200,3201,3198]],[[3186,3178,3206]],[[3207,3208,3176]],[[3201,3197,3172]],[[3209,3210,3207]],[[3209,3211,3212]],[[3196,3195,3171]],[[3211,3169,3213]],[[3195,3192,3191]],[[3191,3193,3194]],[[3194,3188,3187]],[[3204,3203,3202]],[[3187,3189,3203]],[[3182,3204,3183]],[[3205,3182,3181]],[[3166,3214,3170]],[[3185,3184,3205]],[[3186,3206,3184]],[[3178,3177,3206]],[[3179,3180,3177]],[[3175,3174,3180]],[[3176,3208,3174]],[[3207,3210,3208]],[[3209,3212,3210]],[[3211,3213,3212]],[[3169,3168,3213]],[[3170,3214,3168]],[[3166,3041,3214]],[[3054,3053,2256]],[[2258,3099,3098]],[[3215,3216,2257]],[[2255,3068,3067]],[[2259,2255,2254]],[[2259,3082,2255]],[[3215,2257,3049]],[[3049,2257,2256]],[[3216,3043,2257]],[[3043,3099,2258]],[[3164,3102,3101]],[[3113,3112,3165]],[[3113,3165,3102]],[[3112,3103,3165]],[[3042,3100,3046]],[[3108,3046,3100]],[[3109,3217,3107]],[[3109,3110,3106]],[[3111,3109,3107]],[[3111,3110,3109]],[[3217,3105,3107]],[[3217,3109,3105]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2c15e416-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efc86849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3218,3219,3220]],[[3221,3222,3223]],[[3224,3225,3226]],[[3227,3228,3221]],[[3229,3230,3231]],[[3232,3233,3234]],[[3235,3236,3237]],[[3238,3239,3240]],[[3241,3242,3243]],[[3243,3244,3241]],[[3241,3244,3245]],[[3246,3247,3248]],[[3249,3245,3250]],[[3251,3247,3252]],[[3253,3254,3255]],[[3256,3252,3257]],[[3256,3251,3252]],[[3245,3258,3259]],[[3260,3261,3218]],[[3262,3225,3263]],[[3264,3220,3265]],[[3266,3265,3220]],[[3267,3268,3266]],[[3269,3267,3270]],[[3271,3269,3270]],[[3272,3271,3273]],[[3274,3272,3275]],[[3276,3277,3278]],[[3279,3280,3281]],[[3282,3283,3284]],[[3285,3286,3287]],[[3288,3289,3290]],[[3291,3292,3293]],[[3294,3295,3296]],[[3297,3298,3299]],[[3297,3294,3300]],[[3297,3301,3298]],[[3297,3302,3301]],[[3296,3295,3303]],[[3297,3304,3302]],[[3297,3300,3304]],[[3294,3305,3300]],[[3306,3289,3307]],[[3295,3308,3303]],[[3308,3309,3310]],[[3291,3311,3309]],[[3293,3312,3311]],[[3313,3314,3315]],[[3306,3292,3289]],[[3289,3288,3307]],[[3316,3317,3288]],[[3318,3319,3320]],[[3321,3287,3317]],[[3319,3322,3323]],[[3324,3318,3320]],[[3325,3326,3327]],[[3319,3323,3320]],[[3328,3329,3330]],[[3322,3331,3332]],[[3329,3333,3330]],[[3334,3282,3335]],[[3336,3337,3338]],[[3284,3339,3335]],[[3340,3276,3341]],[[3330,3342,3343]],[[3278,3344,3274]],[[3345,3341,3346]],[[3278,3347,3341]],[[3274,3275,3347]],[[3272,3273,3275]],[[3271,3348,3273]],[[3271,3270,3348]],[[3267,3349,3270]],[[3267,3266,3349]],[[3268,3265,3266]],[[3350,3220,3264]],[[3218,3351,3219]],[[3352,3242,3241]],[[3352,3353,3354]],[[3355,3234,3242]],[[3356,3357,3358]],[[3359,3238,3240]],[[3227,3360,3361]],[[3244,3258,3245]],[[3333,3362,3330]],[[3363,3337,3336]],[[3343,3364,3346]],[[3365,3366,3340]],[[3346,3364,3367]],[[3368,3333,3363]],[[3282,3284,3335]],[[3369,3329,3339]],[[3335,3339,3370]],[[3284,3369,3339]],[[3327,3334,3335]],[[3283,3369,3284]],[[3343,3363,3364]],[[3333,3337,3363]],[[3371,3338,3346]],[[3366,3276,3340]],[[3372,3338,3373]],[[3371,3336,3338]],[[3287,3324,3320]],[[3324,3319,3318]],[[3316,3314,3317]],[[3315,3285,3374]],[[3337,3280,3373]],[[3337,3366,3280]],[[3313,3321,3317]],[[3374,3287,3321]],[[3367,3371,3346]],[[3367,3336,3371]],[[3375,3246,3376]],[[3359,3259,3238]],[[3328,3330,3370]],[[3343,3346,3370]],[[3364,3336,3367]],[[3364,3363,3336]],[[3253,3377,3254]],[[3375,3378,3379]],[[3365,3281,3366]],[[3280,3366,3281]],[[3380,3331,3322]],[[3322,3381,3380]],[[3382,3334,3327]],[[3381,3369,3334]],[[3345,3340,3341]],[[3383,3365,3340]],[[3384,3279,3281]],[[3373,3280,3279]],[[3372,3373,3279]],[[3338,3337,3373]],[[3253,3255,3385]],[[3248,3247,3386]],[[3253,3387,3251]],[[3386,3247,3251]],[[3376,3388,3389]],[[3376,3246,3254]],[[3389,3253,3251]],[[3254,3246,3248]],[[3290,3316,3288]],[[3290,3314,3316]],[[3286,3324,3287]],[[3286,3319,3324]],[[3390,3384,3365]],[[3346,3338,3384]],[[3314,3313,3317]],[[3314,3290,3315]],[[3362,3342,3330]],[[3362,3363,3343]],[[3389,3251,3256]],[[3387,3386,3251]],[[3362,3368,3363]],[[3362,3333,3368]],[[3389,3377,3253]],[[3388,3376,3377]],[[3255,3254,3248]],[[3377,3376,3254]],[[3334,3283,3282]],[[3334,3369,3283]],[[3390,3345,3346]],[[3383,3340,3345]],[[3323,3332,3327]],[[3332,3331,3325]],[[3330,3343,3370]],[[3342,3362,3343]],[[3390,3365,3383]],[[3384,3281,3365]],[[3361,3360,3224]],[[3361,3224,3227]],[[3391,3392,3393]],[[3394,3395,3396]],[[3397,3398,3399]],[[3228,3400,3221]],[[3382,3380,3381]],[[3326,3331,3380]],[[3227,3401,3360]],[[3401,3227,3223]],[[3384,3372,3279]],[[3384,3338,3372]],[[3250,3379,3402]],[[3224,3401,3225]],[[3354,3355,3242]],[[3354,3234,3355]],[[3250,3245,3259]],[[3378,3402,3379]],[[3244,3259,3258]],[[3375,3379,3246]],[[3403,3238,3244]],[[3243,3403,3244]],[[3352,3354,3242]],[[3353,3234,3354]],[[3345,3390,3383]],[[3346,3384,3390]],[[3313,3315,3321]],[[3290,3285,3315]],[[3404,3245,3249]],[[3404,3241,3245]],[[3315,3374,3321]],[[3285,3287,3374]],[[3385,3386,3387]],[[3255,3248,3386]],[[3224,3228,3227]],[[3405,3406,3407]],[[3393,3392,3408]],[[3399,3398,3234]],[[3231,3237,3229]],[[3393,3358,3391]],[[3222,3221,3357]],[[3223,3227,3221]],[[3351,3223,3407]],[[3223,3263,3401]],[[3409,3405,3410]],[[3411,3261,3260]],[[3350,3262,3218]],[[3218,3262,3260]],[[3400,3228,3230]],[[3412,3232,3413]],[[3233,3232,3230]],[[3234,3353,3232]],[[3253,3385,3387]],[[3255,3386,3385]],[[3350,3218,3220]],[[3261,3411,3218]],[[3230,3232,3231]],[[3353,3413,3232]],[[3263,3260,3262]],[[3223,3351,3260]],[[3351,3411,3260]],[[3351,3218,3411]],[[3391,3358,3357]],[[3414,3415,3406]],[[3416,3237,3412]],[[3231,3232,3237]],[[3357,3356,3222]],[[3417,3406,3405]],[[3410,3405,3407]],[[3223,3222,3409]],[[3406,3417,3418]],[[3419,3420,3229]],[[3236,3229,3237]],[[3236,3421,3419]],[[3358,3396,3356]],[[3422,3393,3421]],[[3327,3332,3325]],[[3323,3322,3332]],[[3382,3326,3380]],[[3325,3331,3326]],[[3356,3409,3222]],[[3395,3394,3409]],[[3244,3238,3259]],[[3240,3225,3247]],[[3416,3412,3413]],[[3237,3232,3412]],[[3415,3235,3413]],[[3415,3423,3235]],[[3419,3421,3393]],[[3423,3415,3414]],[[3418,3414,3406]],[[3421,3424,3414]],[[3405,3394,3417]],[[3405,3409,3394]],[[3420,3419,3408]],[[3229,3236,3419]],[[3416,3235,3237]],[[3424,3421,3236]],[[3394,3396,3417]],[[3358,3393,3422]],[[3356,3395,3409]],[[3356,3396,3395]],[[3398,3397,3243]],[[3243,3397,3425]],[[3221,3391,3357]],[[3221,3392,3391]],[[3233,3399,3234]],[[3233,3230,3228]],[[3228,3397,3233]],[[3426,3427,3425]],[[3276,3278,3341]],[[3277,3344,3278]],[[3326,3382,3327]],[[3381,3334,3382]],[[3413,3235,3416]],[[3423,3236,3235]],[[3291,3293,3311]],[[3292,3312,3293]],[[3312,3306,3307]],[[3312,3292,3306]],[[3419,3393,3408]],[[3421,3414,3422]],[[3396,3418,3417]],[[3396,3358,3422]],[[3418,3422,3414]],[[3418,3396,3422]],[[3339,3328,3370]],[[3339,3329,3328]],[[3308,3291,3309]],[[3295,3292,3291]],[[3223,3410,3407]],[[3223,3409,3410]],[[3278,3274,3347]],[[3344,3272,3274]],[[3239,3427,3240]],[[3226,3225,3240]],[[3246,3379,3247]],[[3427,3226,3240]],[[3233,3397,3399]],[[3425,3403,3243]],[[3426,3425,3397]],[[3427,3239,3425]],[[3376,3389,3256]],[[3388,3377,3389]],[[3305,3296,3303]],[[3305,3294,3296]],[[3426,3226,3427]],[[3428,3228,3224]],[[3428,3224,3226]],[[3360,3401,3224]],[[3429,3250,3402]],[[3429,3249,3250]],[[3397,3228,3428]],[[3230,3420,3400]],[[3303,3308,3310]],[[3295,3291,3308]],[[3423,3424,3236]],[[3423,3414,3424]],[[3401,3263,3225]],[[3223,3260,3263]],[[3428,3426,3397]],[[3428,3226,3426]],[[3403,3239,3238]],[[3403,3425,3239]],[[3392,3420,3408]],[[3230,3229,3420]],[[3392,3400,3420]],[[3392,3221,3400]],[[3379,3240,3247]],[[3379,3250,3359]],[[3379,3359,3240]],[[3250,3259,3359]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c160b4a-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf249cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3430,3431,3432]],[[3433,3434,3435]],[[3436,3437,3438]],[[3439,3440,3441]],[[3442,3443,3444]],[[3445,3446,3447]],[[3448,3449,3450]],[[3451,3452,3453]],[[3454,3455,3456]],[[3457,3456,3458]],[[3459,3458,3460]],[[3461,3462,3463]],[[3464,3465,3466]],[[3467,3468,3469]],[[3470,3471,3472]],[[3473,3474,3475]],[[3476,3477,3478]],[[3479,3437,3452]],[[3480,3481,3482]],[[3483,3484,3485]],[[3486,3487,3488]],[[3489,3490,3491]],[[3492,3493,3494]],[[3495,3496,3497]],[[3498,3499,3500]],[[3437,3501,3502]],[[3503,3504,3505]],[[3506,3507,3508]],[[3509,3510,3511]],[[3472,3471,3512]],[[3513,3431,3514]],[[3515,3512,3471]],[[3516,3517,3518]],[[3519,3520,3521]],[[3522,3520,3519]],[[3478,3440,3523]],[[3466,3524,3525]],[[3526,3478,3477]],[[3527,3519,3528]],[[3529,3530,3531]],[[3532,3469,3533]],[[3534,3476,3535]],[[3536,3517,3516]],[[3537,3538,3539]],[[3540,3541,3542]],[[3541,3543,3544]],[[3545,3546,3547]],[[3533,3548,3532]],[[3542,3541,3549]],[[3550,3544,3551]],[[3543,3552,3467]],[[3553,3525,3554]],[[3534,3522,3519]],[[3555,3517,3556]],[[3543,3557,3544]],[[3467,3469,3557]],[[3557,3543,3467]],[[3548,3468,3554]],[[3552,3543,3541]],[[3552,3558,3467]],[[3559,3560,3523]],[[3520,3478,3530]],[[3561,3562,3530]],[[3529,3520,3530]],[[3562,3521,3531]],[[3521,3520,3529]],[[3545,3547,3563]],[[3538,3478,3539]],[[3564,3526,3477]],[[3539,3478,3526]],[[3541,3544,3550]],[[3557,3469,3565]],[[3541,3550,3549]],[[3544,3557,3551]],[[3527,3546,3566]],[[3547,3567,3563]],[[3568,3549,3550]],[[3539,3542,3549]],[[3565,3537,3569]],[[3539,3549,3568]],[[3536,3525,3570]],[[3525,3553,3466]],[[3555,3571,3537]],[[3568,3550,3551]],[[3534,3535,3522]],[[3468,3553,3554]],[[3561,3572,3562]],[[3562,3531,3530]],[[3541,3540,3552]],[[3527,3468,3558]],[[3468,3467,3558]],[[3468,3533,3469]],[[3468,3548,3533]],[[3518,3517,3532]],[[3563,3567,3542]],[[3547,3558,3540]],[[3573,3574,3575]],[[3576,3577,3431]],[[3439,3560,3559]],[[3523,3530,3478]],[[3527,3534,3519]],[[3478,3520,3522]],[[3578,3466,3553]],[[3578,3464,3466]],[[3566,3476,3534]],[[3478,3522,3535]],[[3579,3580,3553]],[[3581,3582,3583]],[[3584,3582,3581]],[[3585,3586,3570]],[[3555,3537,3565]],[[3551,3557,3565]],[[3528,3587,3441]],[[3521,3529,3531]],[[3588,3577,3576]],[[3589,3431,3577]],[[3575,3590,3573]],[[3432,3574,3430]],[[3591,3592,3593]],[[3591,3594,3575]],[[3595,3596,3597]],[[3598,3590,3594]],[[3515,3471,3599]],[[3600,3601,3602]],[[3575,3594,3590]],[[3603,3434,3433]],[[3472,3604,3470]],[[3605,3513,3604]],[[3606,3596,3607]],[[3470,3608,3434]],[[3553,3464,3578]],[[3609,3584,3581]],[[3553,3609,3464]],[[3584,3610,3582]],[[3611,3610,3584]],[[3538,3583,3610]],[[3580,3611,3584]],[[3611,3538,3610]],[[3526,3563,3539]],[[3526,3564,3563]],[[3546,3612,3566]],[[3546,3564,3477]],[[3465,3581,3583]],[[3465,3609,3581]],[[3609,3580,3584]],[[3613,3579,3614]],[[3553,3580,3609]],[[3613,3611,3580]],[[3563,3542,3539]],[[3540,3558,3552]],[[3567,3540,3542]],[[3567,3547,3540]],[[3579,3613,3580]],[[3579,3615,3614]],[[3616,3617,3618]],[[3561,3530,3619]],[[3620,3621,3622]],[[3623,3624,3625]],[[3554,3518,3548]],[[3554,3516,3518]],[[3439,3559,3440]],[[3560,3618,3523]],[[3532,3565,3469]],[[3465,3464,3609]],[[3537,3571,3586]],[[3556,3536,3571]],[[3570,3586,3536]],[[3556,3517,3536]],[[3569,3551,3565]],[[3571,3536,3586]],[[3568,3537,3539]],[[3586,3538,3537]],[[3565,3532,3555]],[[3548,3518,3532]],[[3610,3583,3582]],[[3538,3586,3583]],[[3587,3562,3572]],[[3587,3521,3562]],[[3593,3515,3626]],[[3470,3599,3471]],[[3612,3546,3477]],[[3545,3563,3564]],[[3525,3516,3554]],[[3525,3536,3516]],[[3432,3591,3575]],[[3605,3512,3515]],[[3524,3570,3525]],[[3524,3585,3570]],[[3441,3468,3528]],[[3441,3553,3468]],[[3593,3592,3515]],[[3592,3605,3515]],[[3595,3513,3514]],[[3605,3591,3513]],[[3616,3627,3441]],[[3618,3560,3627]],[[3528,3521,3587]],[[3528,3519,3521]],[[3628,3465,3583]],[[3524,3466,3465]],[[3589,3629,3431]],[[3630,3431,3629]],[[3591,3432,3431]],[[3575,3574,3432]],[[3517,3555,3532]],[[3556,3571,3555]],[[3461,3463,3460]],[[3631,3632,3484]],[[3483,3633,3634]],[[3635,3485,3636]],[[3637,3480,3638]],[[3639,3579,3632]],[[3640,3600,3641]],[[3642,3434,3603]],[[3643,3501,3644]],[[3502,3434,3437]],[[3645,3646,3438]],[[3647,3648,3436]],[[3649,3650,3651]],[[3652,3653,3654]],[[3546,3527,3558]],[[3528,3468,3527]],[[3547,3546,3558]],[[3545,3564,3546]],[[3655,3656,3657]],[[3658,3637,3638]],[[3659,3660,3661]],[[3625,3629,3589]],[[3662,3663,3648]],[[3644,3437,3664]],[[3665,3666,3667]],[[3661,3660,3603]],[[3668,3669,3670]],[[3671,3606,3607]],[[3577,3588,3672]],[[3621,3660,3659]],[[3673,3446,3674]],[[3675,3444,3676]],[[3445,3677,3446]],[[3678,3679,3673]],[[3461,3460,3458]],[[3680,3484,3483]],[[3674,3681,3452]],[[3682,3683,3684]],[[3674,3449,3685]],[[3686,3681,3687]],[[3688,3453,3452]],[[3689,3690,3691]],[[3451,3683,3692]],[[3495,3688,3496]],[[3693,3645,3694]],[[3695,3497,3496]],[[3445,3450,3677]],[[3674,3446,3677]],[[3696,3448,3450]],[[3674,3677,3450]],[[3446,3697,3447]],[[3698,3699,3700]],[[3701,3448,3696]],[[3702,3703,3704]],[[3705,3706,3445]],[[3448,3701,3707]],[[3447,3697,3493]],[[3446,3673,3679]],[[3628,3585,3524]],[[3583,3586,3585]],[[3505,3708,3709]],[[3710,3504,3711]],[[3712,3713,3714]],[[3715,3716,3717]],[[3718,3719,3720]],[[3721,3722,3650]],[[3723,3724,3725]],[[3726,3727,3717]],[[3718,3503,3719]],[[3711,3728,3729]],[[3725,3724,3730]],[[3503,3731,3504]],[[3732,3733,3734]],[[3587,3572,3733]],[[3735,3736,3737]],[[3737,3510,3738]],[[3739,3740,3698]],[[3741,3446,3679]],[[3699,3704,3700]],[[3703,3697,3741]],[[3465,3628,3524]],[[3583,3585,3628]],[[3742,3449,3448]],[[3674,3450,3449]],[[3742,3743,3685]],[[3744,3496,3688]],[[3745,3690,3746]],[[3689,3747,3748]],[[3749,3750,3751]],[[3752,3753,3754]],[[3740,3442,3444]],[[3443,3755,3444]],[[3739,3756,3757]],[[3700,3679,3756]],[[3493,3492,3447]],[[3758,3696,3705]],[[3759,3760,3761]],[[3718,3720,3762]],[[3763,3704,3699]],[[3700,3756,3698]],[[3686,3764,3765]],[[3689,3748,3695]],[[3597,3596,3766]],[[3767,3768,3769]],[[3770,3771,3772]],[[3773,3774,3713]],[[3775,3776,3777]],[[3778,3779,3780]],[[3781,3514,3776]],[[3641,3600,3782]],[[3783,3784,3785]],[[3786,3752,3751]],[[3787,3784,3776]],[[3788,3775,3789]],[[3790,3791,3714]],[[3709,3708,3710]],[[3790,3792,3793]],[[3794,3795,3761]],[[3796,3431,3430]],[[3797,3798,3796]],[[3799,3573,3590]],[[3430,3574,3573]],[[3800,3707,3676]],[[3707,3800,3742]],[[3636,3801,3802]],[[3803,3456,3457]],[[3804,3635,3486]],[[3805,3801,3806]],[[3807,3483,3804]],[[3802,3801,3808]],[[3633,3807,3487]],[[3488,3804,3486]],[[3635,3802,3486]],[[3809,3810,3811]],[[3487,3457,3458]],[[3812,3802,3808]],[[3803,3813,3456]],[[3809,3811,3806]],[[3706,3696,3450]],[[3742,3800,3743]],[[3641,3814,3815]],[[3816,3817,3818]],[[3819,3820,3814]],[[3816,3818,3821]],[[3779,3822,3823]],[[3819,3814,3641]],[[3823,3824,3820]],[[3825,3814,3826]],[[3705,3696,3706]],[[3701,3676,3707]],[[3605,3604,3472]],[[3513,3827,3604]],[[3605,3472,3512]],[[3604,3827,3470]],[[3828,3829,3631]],[[3830,3831,3632]],[[3692,3683,3832]],[[3684,3497,3833]],[[3834,3835,3682]],[[3682,3832,3683]],[[3495,3451,3453]],[[3684,3683,3451]],[[3836,3835,3498]],[[3646,3436,3438]],[[3442,3739,3837]],[[3756,3679,3757]],[[3456,3838,3673]],[[3839,3811,3840]],[[3841,3842,3455]],[[3843,3844,3845]],[[3846,3489,3491]],[[3847,3842,3841]],[[3848,3845,3844]],[[3848,3849,3845]],[[3850,3841,3851]],[[3852,3845,3849]],[[3839,3850,3853]],[[3847,3854,3852]],[[3850,3855,3841]],[[3856,3490,3844]],[[3786,3789,3753]],[[3775,3857,3776]],[[3858,3816,3859]],[[3774,3792,3790]],[[3859,3816,3821]],[[3858,3817,3816]],[[3860,3629,3625]],[[3430,3573,3799]],[[3861,3862,3863]],[[3796,3576,3431]],[[3457,3812,3808]],[[3635,3636,3802]],[[3662,3644,3663]],[[3501,3437,3644]],[[3808,3805,3457]],[[3808,3801,3805]],[[3783,3864,3865]],[[3865,3866,3867]],[[3608,3771,3867]],[[3868,3514,3781]],[[3865,3864,3866]],[[3713,3716,3715]],[[3594,3593,3598]],[[3470,3434,3799]],[[3513,3597,3827]],[[3626,3515,3599]],[[3867,3866,3434]],[[3864,3869,3866]],[[3788,3789,3786]],[[3870,3778,3780]],[[3869,3871,3866]],[[3869,3857,3871]],[[3686,3765,3745]],[[3687,3681,3685]],[[3616,3618,3627]],[[3872,3523,3618]],[[3566,3534,3527]],[[3566,3612,3476]],[[3635,3483,3485]],[[3634,3873,3680]],[[3498,3874,3499]],[[3438,3479,3694]],[[3875,3876,3661]],[[3877,3621,3863]],[[3433,3875,3661]],[[3661,3876,3659]],[[3878,3879,3880]],[[3666,3876,3875]],[[3667,3666,3875]],[[3622,3630,3620]],[[3700,3741,3679]],[[3697,3446,3741]],[[3881,3763,3699]],[[3704,3741,3700]],[[3568,3569,3537]],[[3568,3551,3569]],[[3737,3654,3759]],[[3882,3883,3509]],[[3650,3649,3884]],[[3883,3735,3738]],[[3650,3884,3736]],[[3649,3736,3884]],[[3496,3744,3690]],[[3744,3681,3746]],[[3811,3853,3456]],[[3455,3838,3456]],[[3806,3811,3456]],[[3810,3840,3811]],[[3451,3495,3497]],[[3453,3688,3495]],[[3601,3826,3602]],[[3885,3886,3887]],[[3653,3888,3711]],[[3721,3650,3888]],[[3874,3693,3694]],[[3647,3646,3645]],[[3599,3470,3626]],[[3766,3608,3470]],[[3889,3890,3502]],[[3435,3434,3502]],[[3891,3892,3893]],[[3880,3666,3665]],[[3435,3665,3667]],[[3880,3894,3666]],[[3895,3673,3896]],[[3846,3896,3489]],[[3837,3897,3442]],[[3491,3755,3443]],[[3898,3782,3859]],[[3899,3774,3773]],[[3714,3900,3790]],[[3901,3885,3887]],[[3902,3759,3761]],[[3762,3720,3710]],[[3653,3711,3729]],[[3888,3903,3711]],[[3720,3719,3709]],[[3904,3710,3708]],[[3723,3710,3794]],[[3761,3723,3794]],[[3434,3773,3903]],[[3714,3791,3712]],[[3794,3710,3711]],[[3711,3903,3713]],[[3641,3782,3866]],[[3600,3885,3901]],[[3903,3773,3713]],[[3905,3906,3898]],[[3866,3773,3434]],[[3866,3782,3773]],[[3907,3899,3906]],[[3773,3782,3898]],[[3792,3899,3907]],[[3908,3905,3821]],[[3858,3901,3887]],[[3782,3600,3901]],[[3793,3792,3909]],[[3774,3899,3792]],[[3827,3766,3470]],[[3608,3867,3434]],[[3910,3615,3579]],[[3614,3611,3613]],[[3911,3481,3480]],[[3911,3615,3481]],[[3910,3482,3481]],[[3481,3615,3910]],[[3912,3913,3658]],[[3480,3482,3638]],[[3914,3912,3658]],[[3473,3637,3913]],[[3915,3914,3639]],[[3638,3482,3639]],[[3631,3830,3632]],[[3916,3473,3913]],[[3758,3675,3676]],[[3758,3705,3675]],[[3764,3800,3676]],[[3745,3691,3690]],[[3800,3917,3743]],[[3800,3764,3917]],[[3904,3504,3710]],[[3505,3719,3503]],[[3794,3711,3713]],[[3728,3731,3729]],[[3784,3783,3670]],[[3781,3918,3868]],[[3770,3772,3919]],[[3920,3606,3671]],[[3771,3918,3772]],[[3769,3768,3868]],[[3771,3921,3918]],[[3769,3608,3767]],[[3781,3669,3919]],[[3669,3922,3770]],[[3771,3770,3867]],[[3919,3669,3770]],[[3787,3869,3785]],[[3865,3668,3670]],[[3868,3768,3514]],[[3769,3921,3608]],[[3772,3918,3781]],[[3918,3921,3868]],[[3625,3589,3623]],[[3923,3623,3672]],[[3923,3588,3798]],[[3923,3672,3588]],[[3430,3799,3797]],[[3626,3470,3799]],[[3799,3624,3797]],[[3624,3623,3923]],[[3873,3924,3484]],[[3462,3461,3655]],[[3639,3658,3638]],[[3913,3637,3658]],[[3838,3896,3673]],[[3838,3848,3489]],[[3443,3925,3491]],[[3443,3897,3925]],[[3704,3703,3741]],[[3493,3697,3703]],[[3731,3654,3653]],[[3654,3722,3721]],[[3898,3859,3821]],[[3782,3858,3859]],[[3926,3734,3619]],[[3733,3572,3561]],[[3734,3561,3619]],[[3734,3733,3561]],[[3459,3460,3634]],[[3463,3924,3460]],[[3893,3892,3643]],[[3890,3927,3879]],[[3501,3889,3502]],[[3501,3892,3891]],[[3747,3764,3676]],[[3747,3691,3765]],[[3460,3873,3634]],[[3460,3924,3873]],[[3745,3765,3691]],[[3764,3747,3765]],[[3698,3740,3444]],[[3698,3756,3739]],[[3853,3851,3454]],[[3849,3838,3455]],[[3538,3637,3475]],[[3911,3480,3637]],[[3928,3736,3649]],[[3654,3737,3736]],[[3489,3848,3844]],[[3838,3849,3848]],[[3715,3717,3929]],[[3716,3713,3726]],[[3930,3759,3931]],[[3909,3737,3759]],[[3723,3760,3724]],[[3759,3724,3760]],[[3730,3724,3503]],[[3503,3654,3731]],[[3698,3881,3699]],[[3763,3702,3704]],[[3826,3814,3824]],[[3908,3909,3907]],[[3780,3823,3820]],[[3886,3817,3887]],[[3820,3824,3814]],[[3776,3909,3818]],[[3870,3932,3778]],[[3779,3932,3822]],[[3933,3750,3822]],[[3823,3780,3779]],[[3933,3932,3870]],[[3779,3778,3932]],[[3917,3686,3687]],[[3917,3764,3686]],[[3837,3739,3757]],[[3442,3740,3739]],[[3678,3837,3757]],[[3897,3443,3442]],[[3678,3897,3837]],[[3895,3896,3846]],[[3805,3803,3457]],[[3813,3806,3456]],[[3801,3809,3806]],[[3801,3810,3809]],[[3732,3616,3441]],[[3732,3734,3926]],[[3618,3617,3872]],[[3617,3732,3926]],[[3872,3619,3523]],[[3872,3926,3619]],[[3825,3826,3601]],[[3824,3776,3818]],[[3934,3647,3693]],[[3648,3663,3436]],[[3875,3433,3667]],[[3661,3603,3433]],[[3883,3935,3735]],[[3936,3650,3736]],[[3738,3735,3737]],[[3937,3507,3936]],[[3882,3508,3935]],[[3650,3722,3651]],[[3735,3936,3736]],[[3937,3935,3507]],[[3832,3835,3836]],[[3834,3498,3835]],[[3938,3682,3833]],[[3747,3834,3682]],[[3923,3798,3797]],[[3588,3576,3798]],[[3797,3796,3430]],[[3798,3576,3796]],[[3894,3876,3666]],[[3894,3630,3876]],[[3715,3939,3713]],[[3939,3929,3930]],[[3939,3795,3794]],[[3931,3759,3902]],[[3713,3939,3794]],[[3715,3929,3939]],[[3922,3668,3865]],[[3922,3669,3668]],[[3851,3853,3850]],[[3454,3456,3853]],[[3827,3597,3766]],[[3513,3595,3597]],[[3637,3473,3475]],[[3913,3831,3916]],[[3893,3643,3662]],[[3892,3501,3643]],[[3893,3662,3934]],[[3643,3644,3662]],[[3707,3742,3448]],[[3685,3449,3742]],[[3500,3479,3452]],[[3438,3437,3479]],[[3940,3498,3834]],[[3499,3479,3500]],[[3915,3639,3632]],[[3914,3658,3639]],[[3940,3874,3498]],[[3694,3479,3499]],[[3925,3846,3491]],[[3925,3897,3895]],[[3807,3804,3488]],[[3483,3635,3804]],[[3487,3807,3488]],[[3633,3483,3807]],[[3871,3788,3866]],[[3871,3857,3775]],[[3828,3631,3484]],[[3657,3474,3830]],[[3475,3461,3458]],[[3656,3474,3657]],[[3829,3941,3462]],[[3461,3475,3655]],[[3652,3721,3888]],[[3652,3654,3721]],[[3433,3435,3667]],[[3502,3879,3878]],[[3587,3732,3441]],[[3587,3733,3732]],[[3878,3880,3665]],[[3879,3927,3880]],[[3600,3640,3601]],[[3815,3814,3825]],[[3886,3602,3817]],[[3602,3824,3818]],[[3654,3928,3722]],[[3722,3928,3651]],[[3868,3921,3769]],[[3771,3608,3921]],[[3600,3886,3885]],[[3600,3602,3886]],[[3857,3869,3787]],[[3670,3669,3781]],[[3864,3785,3869]],[[3864,3783,3785]],[[3486,3812,3457]],[[3486,3802,3812]],[[3620,3861,3863]],[[3630,3629,3861]],[[3817,3858,3887]],[[3782,3901,3858]],[[3839,3855,3850]],[[3854,3843,3852]],[[3508,3650,3506]],[[3508,3888,3650]],[[3451,3692,3452]],[[3836,3498,3500]],[[3500,3692,3836]],[[3500,3452,3692]],[[3795,3902,3761]],[[3795,3931,3902]],[[3681,3744,3688]],[[3746,3690,3744]],[[3872,3617,3926]],[[3616,3732,3617]],[[3903,3882,3511]],[[3903,3508,3882]],[[3855,3847,3841]],[[3843,3845,3852]],[[3842,3847,3852]],[[3854,3856,3843]],[[3805,3813,3803]],[[3805,3806,3813]],[[3867,3922,3865]],[[3867,3770,3922]],[[3490,3489,3844]],[[3896,3838,3489]],[[3843,3856,3844]],[[3755,3491,3490]],[[3598,3593,3626]],[[3594,3591,3593]],[[3504,3728,3711]],[[3504,3731,3728]],[[3786,3780,3866]],[[3751,3750,3870]],[[3751,3870,3780]],[[3750,3933,3870]],[[3820,3819,3780]],[[3815,3825,3640]],[[3780,3641,3866]],[[3780,3819,3641]],[[3815,3640,3641]],[[3825,3601,3640]],[[3510,3509,3738]],[[3882,3935,3883]],[[3717,3727,3929]],[[3942,3759,3727]],[[3726,3712,3727]],[[3909,3759,3942]],[[3943,3944,3791]],[[3945,3727,3712]],[[3716,3726,3717]],[[3713,3712,3726]],[[3944,3712,3791]],[[3944,3945,3712]],[[3934,3648,3647]],[[3934,3662,3648]],[[3831,3915,3632]],[[3831,3913,3912]],[[3538,3911,3637]],[[3614,3615,3911]],[[3790,3943,3791]],[[3942,3944,3943]],[[3842,3849,3455]],[[3842,3852,3849]],[[3497,3938,3833]],[[3748,3682,3938]],[[3497,3695,3938]],[[3747,3682,3748]],[[3634,3680,3483]],[[3873,3484,3680]],[[3788,3786,3866]],[[3751,3780,3786]],[[3672,3589,3577]],[[3672,3623,3589]],[[3939,3930,3795]],[[3795,3930,3931]],[[3904,3505,3504]],[[3904,3708,3505]],[[3789,3777,3753]],[[3822,3824,3823]],[[3789,3775,3777]],[[3788,3871,3775]],[[3777,3754,3753]],[[3822,3750,3749]],[[3751,3754,3749]],[[3933,3822,3932]],[[3749,3754,3822]],[[3777,3776,3822]],[[3894,3893,3934]],[[3894,3891,3893]],[[3773,3906,3899]],[[3773,3898,3906]],[[3663,3664,3436]],[[3663,3644,3664]],[[3694,3645,3438]],[[3693,3647,3645]],[[3444,3946,3881]],[[3702,3493,3703]],[[3862,3877,3863]],[[3862,3624,3877]],[[3877,3947,3621]],[[3660,3642,3603]],[[3622,3621,3659]],[[3947,3660,3621]],[[3942,3945,3944]],[[3942,3727,3945]],[[3690,3689,3496]],[[3748,3938,3695]],[[3496,3689,3695]],[[3691,3747,3689]],[[3627,3439,3441]],[[3627,3560,3439]],[[3878,3435,3502]],[[3878,3665,3435]],[[3818,3908,3821]],[[3909,3792,3907]],[[3784,3781,3776]],[[3919,3772,3781]],[[3784,3670,3781]],[[3783,3865,3670]],[[3861,3860,3862]],[[3861,3629,3860]],[[3671,3595,3514]],[[3607,3596,3595]],[[3915,3912,3914]],[[3915,3831,3912]],[[3727,3930,3929]],[[3727,3759,3930]],[[3830,3916,3831]],[[3474,3473,3916]],[[3924,3828,3484]],[[3924,3463,3941]],[[3657,3829,3655]],[[3828,3924,3941]],[[3829,3462,3655]],[[3941,3463,3462]],[[3631,3829,3657]],[[3828,3941,3829]],[[3840,3856,3855]],[[3755,3490,3856]],[[3855,3854,3847]],[[3855,3856,3854]],[[3759,3503,3724]],[[3759,3654,3503]],[[3651,3928,3649]],[[3654,3736,3928]],[[3497,3684,3451]],[[3833,3682,3684]],[[3595,3671,3607]],[[3514,3768,3920]],[[3514,3920,3671]],[[3768,3606,3920]],[[3927,3891,3894]],[[3889,3501,3891]],[[3880,3927,3894]],[[3879,3502,3890]],[[3891,3890,3889]],[[3891,3927,3890]],[[3810,3636,3485]],[[3810,3801,3636]],[[3861,3620,3630]],[[3863,3621,3620]],[[3777,3822,3754]],[[3776,3824,3822]],[[3647,3436,3646]],[[3664,3437,3436]],[[3947,3642,3660]],[[3947,3877,3642]],[[3718,3730,3503]],[[3718,3762,3730]],[[3657,3830,3631]],[[3474,3916,3830]],[[3452,3681,3688]],[[3674,3685,3681]],[[3743,3687,3685]],[[3743,3917,3687]],[[3681,3745,3746]],[[3681,3686,3745]],[[3633,3459,3634]],[[3633,3458,3459]],[[3935,3508,3507]],[[3903,3888,3508]],[[3639,3910,3579]],[[3639,3482,3910]],[[3596,3608,3766]],[[3596,3606,3767]],[[3596,3767,3608]],[[3606,3768,3767]],[[3942,3793,3909]],[[3942,3943,3793]],[[3774,3790,3900]],[[3793,3943,3790]],[[3817,3602,3818]],[[3826,3824,3602]],[[3559,3523,3440]],[[3619,3530,3523]],[[3720,3709,3710]],[[3719,3505,3709]],[[3758,3701,3696]],[[3758,3676,3701]],[[3725,3762,3723]],[[3725,3730,3762]],[[3731,3653,3729]],[[3652,3888,3653]],[[3444,3881,3698]],[[3946,3675,3494]],[[3475,3656,3655]],[[3475,3474,3656]],[[3946,3702,3763]],[[3494,3493,3702]],[[3881,3946,3763]],[[3675,3705,3492]],[[3851,3455,3454]],[[3851,3841,3455]],[[3774,3714,3713]],[[3774,3900,3714]],[[3797,3624,3923]],[[3799,3434,3624]],[[3624,3642,3877]],[[3624,3434,3642]],[[3538,3614,3911]],[[3538,3611,3614]],[[3513,3591,3431]],[[3605,3592,3591]],[[3936,3506,3650]],[[3936,3507,3506]],[[3906,3905,3907]],[[3818,3909,3908]],[[3821,3905,3898]],[[3908,3907,3905]],[[3705,3445,3447]],[[3706,3450,3445]],[[3934,3940,3834]],[[3934,3693,3940]],[[3499,3874,3694]],[[3940,3693,3874]],[[3633,3487,3458]],[[3486,3457,3487]],[[3799,3598,3626]],[[3799,3590,3598]],[[3876,3622,3659]],[[3876,3630,3622]],[[3751,3752,3754]],[[3786,3753,3752]],[[3755,3840,3810]],[[3755,3856,3840]],[[3811,3839,3853]],[[3840,3855,3839]],[[3760,3723,3761]],[[3762,3710,3723]],[[3862,3625,3624]],[[3862,3860,3625]],[[3535,3476,3478]],[[3612,3477,3476]],[[3675,3492,3494]],[[3705,3447,3492]],[[3882,3509,3511]],[[3883,3738,3509]],[[3735,3937,3936]],[[3735,3935,3937]],[[3925,3895,3846]],[[3897,3673,3895]],[[3702,3946,3494]],[[3444,3675,3946]],[[3679,3678,3757]],[[3673,3897,3678]],[[3692,3832,3836]],[[3682,3835,3832]],[[3857,3787,3776]],[[3785,3784,3787]],[[3948,3458,3456]],[[3949,3948,3673]],[[3673,3948,3456]],[[3950,3949,3674]],[[3674,3949,3673]],[[3951,3950,3452]],[[3452,3950,3674]],[[3437,3951,3452]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c160b4d-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efc5ef49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[3952,3953,3954]],[[3955,3956,3957]],[[3957,3958,3955]],[[3959,3960,3954]],[[3960,3956,3954]],[[3961,3962,3963]],[[3961,3963,3964]],[[3965,3966,3967]],[[3968,3969,3970]],[[3971,3972,3973]],[[3971,3974,3972]],[[3975,3976,3977]],[[3978,3979,3974]],[[3980,3981,3982]],[[3971,3973,3983]],[[3972,3984,3973]],[[3985,3986,3987]],[[3988,3989,3990]],[[3991,3992,3993]],[[3994,3995,3996]],[[3997,3998,3999]],[[3994,4000,4001]],[[4002,4003,4004]],[[4005,4006,4007]],[[3967,3981,3965]],[[3967,4008,3990]],[[4009,3990,4008]],[[4010,4011,3982]],[[4012,3965,3981]],[[4013,4014,3981]],[[4015,4016,4010]],[[4013,3981,3980]],[[3980,3982,4017]],[[4017,3982,4018]],[[4018,3982,4011]],[[4011,4010,4016]],[[4019,4015,4010]],[[4020,4019,4010]],[[4021,4020,4010]],[[4022,4021,4010]],[[4023,4024,4025]],[[4010,4026,4022]],[[4010,4027,4026]],[[4024,4028,4029]],[[4030,4031,4032]],[[4033,4034,4035]],[[4036,4037,4038]],[[4039,4040,4041]],[[4042,4043,4044]],[[4044,4045,4046]],[[4047,4048,4049]],[[4050,4051,4052]],[[4035,4053,4054]],[[4055,4056,4057]],[[4035,4054,4058]],[[4056,4059,4024]],[[4060,4024,4029]],[[4061,4058,4027]],[[4062,4024,4023]],[[4026,4027,4058]],[[4061,4063,4064]],[[4027,4065,4061]],[[4066,4027,4010]],[[4067,4066,4010]],[[4068,4067,4010]],[[4068,4069,4067]],[[4070,4071,4072]],[[4073,4074,4075]],[[4076,4077,4074]],[[4078,4079,4080]],[[4081,4082,4083]],[[4084,3962,4085]],[[3963,3962,4084]],[[4085,3962,4086]],[[4086,3962,4087]],[[4088,4089,4078]],[[4080,4088,4078]],[[4090,4091,4079]],[[4079,4092,4080]],[[4079,4093,4092]],[[4079,4094,4093]],[[4095,4096,4097]],[[4079,4098,4094]],[[4079,4091,4098]],[[4090,4099,4091]],[[4090,4100,4099]],[[4090,4101,4100]],[[4101,4090,4102]],[[4102,4090,4103]],[[4090,4104,4103]],[[4090,4105,4104]],[[4090,4106,4105]],[[4090,4107,4106]],[[4090,4108,4107]],[[4090,4097,4096]],[[4108,4090,4109]],[[4109,4090,4110]],[[4110,4090,4111]],[[4111,4090,4096]],[[4095,4112,4096]],[[4113,4114,4112]],[[4115,4116,4114]],[[4115,4114,4117]],[[4117,4114,4118]],[[4118,4114,4113]],[[4119,4118,4120]],[[4120,4118,4121]],[[4095,4113,4112]],[[4121,4118,4113]],[[4122,4095,4097]],[[4123,4124,4097]],[[4097,4125,4122]],[[4097,4126,4125]],[[4097,4127,4126]],[[4097,4128,4127]],[[4128,4097,4129]],[[4129,4097,4130]],[[4097,4131,4130]],[[4097,4124,4131]],[[4132,4123,4097]],[[4133,4134,4097]],[[4097,4134,4132]],[[4133,4135,4136]],[[4133,4136,4134]],[[4135,4137,4136]],[[4137,4138,4136]],[[4137,3954,4138]],[[3954,3953,4138]],[[3954,3956,3952]],[[3955,3952,3956]],[[4139,4140,3958]],[[4141,4142,4143]],[[3958,4140,3955]],[[4139,4142,4141]],[[4140,4139,4144]],[[4144,4139,4141]],[[4145,4146,4147]],[[4148,4149,4150]],[[4001,4151,3994]],[[4152,4003,3995]],[[4153,3972,4154]],[[4155,4003,4002]],[[4073,4156,4071]],[[4157,4158,4159]],[[4009,4160,3988]],[[4009,4161,4160]],[[4145,4162,4163]],[[4164,4165,4166]],[[4167,4168,4169]],[[4170,4171,4172]],[[4147,4171,4164]],[[4163,4006,4005]],[[4173,4174,4175]],[[4176,4177,4178]],[[3997,4179,3998]],[[4180,4181,4182]],[[4183,4184,4185]],[[4154,4003,4186]],[[4187,4002,4000]],[[4000,4004,4001]],[[4185,4184,4188]],[[4189,4190,4191]],[[4152,3994,4151]],[[3996,4000,3994]],[[4192,4193,4194]],[[4195,4196,4197]],[[4150,4198,4199]],[[4200,4168,4201]],[[4202,4200,4201]],[[4168,4166,4169]],[[4164,4203,4165]],[[4204,3996,3989]],[[4165,4169,4166]],[[4150,3996,4148]],[[4175,4205,4173]],[[4161,4009,4173]],[[4164,4168,4200]],[[4164,4166,4168]],[[4183,4185,4206]],[[4188,4154,4185]],[[3968,3970,4186]],[[4186,4003,3968]],[[4207,4203,4171]],[[4208,4162,4161]],[[4203,4209,4165]],[[4172,4171,4147]],[[4179,4210,3969]],[[4211,4179,3969]],[[4001,4004,4151]],[[4003,3989,3995]],[[3988,4147,3989]],[[4005,4007,4147]],[[4147,4212,3989]],[[4147,4200,4212]],[[4213,4214,4215]],[[4215,4214,4149]],[[4216,4217,4218]],[[4167,4198,4202]],[[4187,4219,4002]],[[4220,4221,4211]],[[4222,4158,4071]],[[4223,4224,4077]],[[4073,4072,4225]],[[4070,4073,4071]],[[4197,4226,4074]],[[4227,4228,4229]],[[4207,4171,4170]],[[4176,4007,4006]],[[4230,4177,4176]],[[4230,4231,4177]],[[4232,4233,4170]],[[4207,4175,4174]],[[4175,4233,4205]],[[4232,4234,4231]],[[4216,4235,4236]],[[4237,4236,4212]],[[4150,4238,4198]],[[4238,4214,4237]],[[4239,4076,4074]],[[4229,4240,4227]],[[4241,3991,3999]],[[4185,4210,4242]],[[4242,3997,4206]],[[4190,4243,4181]],[[4244,4245,4220]],[[4179,4245,4244]],[[4246,3968,4155]],[[4211,3969,3968]],[[4247,4248,4249]],[[4158,4072,4071]],[[3985,4250,4182]],[[3992,3991,4241]],[[4184,4251,4188]],[[3984,3986,3985]],[[4160,4145,3988]],[[4162,4208,4163]],[[4249,4222,4193]],[[4249,4158,4222]],[[4068,4249,4248]],[[4252,4253,4254]],[[4255,4244,4220]],[[3998,4255,3999]],[[4255,3998,4244]],[[4243,4241,3999]],[[4256,4248,4247]],[[4257,4258,4259]],[[4220,4245,4221]],[[4244,3998,4179]],[[4072,4157,4225]],[[4197,4074,4225]],[[4194,4193,4260]],[[4222,4260,4193]],[[4161,4176,4208]],[[4176,4178,4007]],[[4261,4032,4262]],[[4229,4263,4264]],[[4265,4082,4081]],[[4083,4082,4266]],[[4267,4030,4032]],[[4268,4269,4270]],[[4074,4226,4239]],[[4076,4271,4224]],[[4263,4272,4273]],[[4253,4274,4082]],[[3964,4274,4253]],[[3964,3963,4269]],[[4275,4276,4082]],[[4274,3964,4269]],[[4259,4277,4257]],[[4256,4278,4248]],[[4279,4280,4249]],[[4281,4256,4247]],[[4158,4226,4159]],[[4077,4076,4223]],[[4159,4226,4196]],[[4239,4249,4076]],[[4202,4198,4282]],[[4238,4149,4214]],[[4237,4214,4213]],[[4215,4217,4236]],[[4273,4264,4263]],[[4283,4253,4276]],[[4284,4283,4276]],[[4253,4082,4276]],[[4217,4216,4236]],[[4285,4286,4287]],[[4198,4238,4237]],[[4236,3989,4212]],[[4229,4030,4240]],[[4261,4288,4289]],[[4264,4031,4229]],[[4290,4270,4077]],[[4030,4229,4031]],[[4264,4273,4270]],[[4270,4290,4262]],[[4290,4077,4271]],[[4204,4285,4291]],[[4292,4216,4293]],[[4204,4236,4285]],[[4286,4293,4294]],[[4152,3995,3994]],[[3989,3996,3995]],[[4295,3993,4189]],[[4180,4182,4250]],[[4296,3985,4182]],[[3984,4153,3987]],[[4000,4002,4004]],[[4219,4155,4002]],[[3964,4068,4010]],[[3964,4271,4068]],[[4278,4256,4277]],[[4278,4068,4248]],[[4263,4228,4297]],[[4284,4276,4275]],[[4220,4298,4000]],[[4298,4211,3968]],[[4246,4298,3968]],[[4221,4245,4211]],[[4191,4180,4250]],[[4191,4181,4180]],[[4251,4153,4154]],[[3993,4184,4183]],[[4222,4156,4260]],[[4222,4071,4156]],[[4215,4236,4213]],[[4235,4285,4236]],[[4225,4157,4159]],[[4072,4158,4157]],[[4251,4154,4188]],[[3972,4003,4154]],[[4147,4232,4172]],[[4233,4175,4170]],[[4053,4035,4034]],[[4024,4064,4025]],[[3973,3984,4296]],[[4296,3984,3985]],[[4281,4247,4249]],[[4281,4277,4256]],[[4280,4281,4249]],[[4258,4257,4281]],[[4299,4055,4045]],[[4055,4047,4049]],[[4168,4167,4201]],[[4199,4198,4167]],[[4255,4243,3999]],[[4190,4300,3992]],[[4272,4283,4301]],[[4297,4228,4254]],[[4280,4258,4281]],[[4280,4279,4259]],[[4281,4257,4277]],[[4258,4280,4259]],[[4282,4237,4212]],[[4213,4236,4237]],[[4295,4302,4153]],[[4302,3985,3987]],[[4251,3993,4295]],[[4250,3985,4303]],[[4246,4155,4219]],[[3968,4003,4155]],[[3991,4206,3997]],[[4206,4185,4242]],[[3991,3997,3999]],[[4242,4210,4179]],[[4304,4037,4050]],[[4305,4052,4306]],[[4189,4300,4190]],[[4189,4303,4295]],[[3993,3992,4300]],[[4241,4243,3992]],[[4189,3993,4300]],[[4251,4184,3993]],[[4250,4189,4191]],[[4250,4303,4189]],[[4050,4037,4051]],[[4041,4307,4033]],[[4062,4308,4024]],[[4051,4061,4052]],[[4227,4254,4228]],[[4272,4254,4283]],[[4051,4037,4309]],[[4050,4052,4310]],[[4311,4312,4046]],[[4313,4038,4304]],[[4061,4035,4058]],[[4314,4309,4315]],[[4192,4279,4249]],[[4075,4259,4279]],[[4284,4301,4283]],[[4272,4297,4254]],[[4316,4040,4317]],[[4318,4317,4319]],[[4320,4056,4049]],[[4056,4060,4057]],[[4044,4306,4045]],[[4305,4042,4310]],[[4148,4293,4218]],[[4217,4215,4149]],[[4148,4218,4149]],[[4293,4216,4218]],[[4150,4149,4238]],[[4218,4217,4149]],[[4235,4292,4285]],[[4235,4216,4292]],[[4287,4294,3996]],[[4286,4292,4293]],[[4287,4286,4294]],[[4285,4292,4286]],[[4261,4262,4288]],[[4321,4267,4261]],[[4288,4262,4322]],[[4032,4270,4262]],[[4290,4271,4322]],[[4323,4030,4267]],[[4322,4271,4288]],[[4254,4253,4283]],[[4042,4044,4046]],[[4324,4306,4044]],[[4294,4148,3996]],[[4294,4293,4148]],[[4081,4272,4301]],[[4081,4325,4272]],[[4055,4049,4056]],[[4048,4320,4049]],[[4299,4326,4055]],[[4327,4047,4055]],[[4048,4328,4320]],[[4056,4024,4060]],[[4251,4295,4153]],[[4302,3987,4153]],[[4317,4329,4319]],[[4318,4319,4041]],[[4330,4316,4318]],[[4319,4307,4041]],[[4316,4317,4318]],[[4331,4039,4035]],[[4073,4070,4072]],[[4073,4260,4156]],[[4262,4290,4322]],[[4077,4224,4271]],[[4052,4047,4306]],[[4052,4061,4047]],[[4325,4081,4268]],[[4082,4274,4266]],[[4273,4325,4270]],[[4269,3963,4270]],[[4270,4325,4268]],[[4273,4272,4325]],[[4268,4083,4266]],[[4268,4081,4083]],[[4202,4282,4212]],[[4198,4237,4282]],[[4200,4202,4212]],[[4201,4167,4202]],[[3991,4183,4206]],[[3991,3993,4183]],[[4035,4041,4033]],[[4330,4318,4041]],[[4236,4204,3989]],[[4291,4287,4204]],[[4288,4271,4289]],[[4289,4321,4332]],[[4311,4333,4312]],[[4329,4317,4333]],[[4209,4203,4207]],[[4230,4161,4173]],[[4082,4265,4275]],[[4265,4301,4284]],[[4301,4265,4081]],[[4284,4275,4265]],[[4172,4232,4170]],[[4231,4205,4233]],[[4234,4232,4147]],[[4231,4233,4232]],[[4007,4234,4147]],[[4007,4178,4234]],[[4181,4255,4220]],[[4181,4243,4255]],[[4045,4055,4057]],[[4326,4327,4055]],[[4328,4059,4334]],[[4024,4308,4028]],[[4047,4328,4048]],[[4334,4056,4320]],[[4328,4024,4059]],[[4061,4064,4024]],[[4311,4319,4329]],[[4046,4307,4319]],[[4252,4030,4323]],[[4252,4240,4030]],[[4279,4192,4075]],[[4249,4193,4192]],[[4046,4312,4042]],[[4315,4309,4037]],[[4036,4315,4037]],[[4335,4314,4315]],[[4040,4316,4041]],[[4335,4315,4036]],[[4223,4076,4224]],[[4271,3964,4321]],[[4336,4313,4042]],[[4336,4036,4038]],[[4204,4287,3996]],[[4291,4285,4287]],[[4231,4178,4177]],[[4231,4234,4178]],[[4306,4327,4045]],[[4306,4047,4327]],[[4041,4316,4330]],[[4312,4036,4336]],[[4035,4039,4041]],[[4331,4335,4312]],[[4063,4061,4065]],[[4314,4035,4061]],[[4324,4043,4306]],[[4324,4044,4043]],[[4073,4194,4260]],[[4075,4192,4194]],[[4042,4312,4336]],[[4333,4317,4312]],[[4205,4230,4173]],[[4205,4231,4230]],[[4174,4173,4150]],[[4009,3996,4173]],[[4165,4174,4169]],[[4165,4209,4174]],[[4175,4207,4170]],[[4174,4209,4207]],[[4331,4040,4039]],[[4312,4317,4040]],[[4271,4321,4289]],[[3964,4253,4321]],[[4252,4323,4253]],[[4321,4253,4323]],[[4261,4267,4032]],[[4321,4323,4267]],[[4327,4299,4045]],[[4327,4326,4299]],[[4228,4263,4229]],[[4297,4272,4263]],[[4169,4199,4167]],[[4169,4150,4199]],[[4194,4073,4075]],[[4225,4074,4073]],[[4335,4331,4035]],[[4312,4040,4331]],[[4145,4163,4146]],[[4208,4006,4163]],[[4158,4239,4226]],[[4158,4249,4239]],[[4160,4162,4145]],[[4160,4161,4162]],[[4312,4335,4036]],[[4035,4314,4335]],[[4009,3988,3990]],[[4145,4147,3988]],[[4051,4314,4061]],[[4051,4309,4314]],[[4319,4311,4046]],[[4329,4333,4311]],[[4249,4271,4076]],[[4249,4068,4271]],[[4061,4328,4047]],[[4061,4024,4328]],[[4147,4164,4200]],[[4171,4203,4164]],[[4174,4150,4169]],[[4173,3996,4150]],[[3969,4210,4186]],[[4185,4154,4210]],[[4245,4179,4211]],[[3997,4242,4179]],[[4304,4038,4037]],[[4313,4336,4038]],[[4310,4337,4050]],[[4337,4313,4304]],[[4328,4334,4320]],[[4059,4056,4334]],[[4159,4195,4225]],[[4159,4196,4195]],[[4004,4152,4151]],[[4004,4003,4152]],[[4032,4264,4270]],[[4032,4031,4264]],[[4305,4310,4052]],[[4337,4304,4050]],[[4153,3984,3972]],[[3987,3986,3984]],[[4043,4305,4306]],[[4043,4042,4305]],[[4243,4190,3992]],[[4181,4191,4190]],[[4042,4337,4310]],[[4042,4313,4337]],[[4187,4246,4219]],[[4187,4000,4298]],[[4187,4298,4246]],[[4220,4211,4298]],[[4266,4269,4268]],[[4266,4274,4269]],[[3969,4186,3970]],[[4210,4154,4186]],[[4303,4302,4295]],[[4303,3985,4302]],[[4195,4197,4225]],[[4196,4226,4197]],[[4208,4176,4006]],[[4161,4230,4176]],[[4227,4252,4254]],[[4227,4240,4252]],[[4332,4261,4289]],[[4332,4321,4261]],[[4069,4278,4277]],[[4069,4068,4278]],[[4069,4259,4075]],[[4069,4277,4259]],[[4146,4005,4147]],[[4146,4163,4005]],[[4078,4087,3962]],[[3964,4079,3962]],[[4338,4087,4078]],[[4339,3964,3962]],[[4340,3978,3983]],[[3978,3974,3971]],[[4339,3961,3964]],[[4339,3962,3961]],[[3979,3977,4341]],[[3976,3974,4341]],[[3975,3977,4340]],[[3976,4341,3977]],[[3983,3978,3971]],[[4340,3977,3979]],[[3974,3979,4341]],[[3978,4340,3979]],[[4338,4078,4089]],[[3962,4079,4078]],[[4014,4012,3981]],[[4014,3965,4012]],[[4008,3967,3966]],[[3990,3981,3967]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c1659af-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe75149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:22.000"},"geometry":[{"boundaries":[[[4342,4343,4344]],[[4345,4346,4342]],[[4345,4342,4344]],[[4344,4343,4347]],[[4347,4343,4348]],[[4349,4350,4346]],[[4346,4351,4342]],[[4346,4352,4351]],[[4346,4353,4352]],[[4346,4354,4353]],[[4346,4355,4354]],[[4346,4350,4355]],[[4349,4356,4350]],[[4357,4358,4359]],[[4349,4360,4356]],[[4361,4362,4363]],[[4364,4365,4360]],[[4366,4367,4368]],[[4369,4370,4365]],[[4371,4372,4373]],[[4374,4375,4376]],[[4376,4377,4378]],[[4379,4380,4362]],[[4381,4382,4383]],[[4384,4385,4386]],[[4387,4388,4389]],[[4390,4391,4392]],[[4393,4394,4395]],[[4396,4397,4398]],[[4396,4399,4400]],[[4401,4402,4403]],[[4400,4404,4370]],[[4368,4405,4406]],[[4399,4396,4406]],[[4407,4408,4382]],[[4409,4410,4411]],[[4412,4413,4414]],[[4369,4349,4413]],[[4415,4416,4417]],[[4367,4416,4368]],[[4415,4418,4414]],[[4416,4349,4368]],[[4419,4372,4420]],[[4421,4422,4423]],[[4424,4372,4371]],[[4425,4426,4427]],[[4428,4429,4430]],[[4431,4426,4403]],[[4432,4433,4434]],[[4426,4435,4427]],[[4374,4436,4375]],[[4436,4437,4438]],[[4427,4435,4439]],[[4435,4426,4431]],[[4414,4418,4370]],[[4415,4413,4416]],[[4440,4401,4374]],[[4437,4426,4425]],[[4377,4376,4375]],[[4375,4436,4438]],[[4397,4396,4400]],[[4373,4441,4442]],[[4418,4443,4370]],[[4398,4366,4396]],[[4349,4444,4445]],[[4430,4411,4403]],[[4438,4446,4434]],[[4435,4431,4439]],[[4447,4448,4387]],[[4449,4358,4450]],[[4451,4440,4374]],[[4375,4438,4433]],[[4433,4452,4377]],[[4375,4433,4377]],[[4442,4371,4373]],[[4420,4429,4428]],[[4453,4451,4376]],[[4454,4455,4456]],[[4428,4430,4403]],[[4457,4349,4458]],[[4459,4460,4429]],[[4461,4462,4349]],[[4463,4389,4388]],[[4464,4465,4466]],[[4368,4371,4405]],[[4371,4445,4424]],[[4409,4460,4467]],[[4468,4469,4390]],[[4406,4396,4366]],[[4405,4371,4399]],[[4374,4401,4436]],[[4403,4426,4437]],[[4357,4447,4470]],[[4471,4472,4340]],[[4401,4440,4402]],[[4473,4474,4444]],[[4372,4473,4420]],[[4372,4424,4473]],[[4376,4451,4374]],[[4402,4428,4403]],[[4455,4451,4453]],[[4428,4454,4420]],[[4404,4456,4453]],[[4404,4441,4475]],[[4445,4444,4474]],[[4349,4460,4461]],[[4359,4449,4388]],[[4476,4477,4478]],[[4479,4450,4480]],[[4481,4482,4463]],[[4438,4425,4446]],[[4438,4437,4425]],[[4366,4398,4367]],[[4443,4418,4415]],[[4483,4484,4485]],[[4486,4480,4358]],[[4388,4387,4448]],[[4389,4487,4387]],[[4486,4479,4480]],[[4488,4489,4490]],[[4491,4449,4450]],[[4479,4486,4492]],[[4357,4486,4358]],[[4493,4494,4495]],[[4496,4497,4498]],[[4499,4500,4498]],[[4417,4416,4367]],[[4413,4349,4416]],[[4442,4441,4404]],[[4373,4372,4475]],[[4370,4369,4414]],[[4414,4369,4412]],[[4501,4502,4503]],[[4504,4505,4506]],[[4448,4359,4388]],[[4480,4450,4358]],[[4507,4432,4434]],[[4508,4509,4510]],[[4463,4511,4481]],[[4472,3975,4340]],[[4512,4340,4482]],[[4513,4495,4494]],[[4481,4511,4449]],[[4463,4388,4449]],[[4491,4481,4449]],[[4511,4463,4449]],[[4437,4401,4403]],[[4437,4436,4401]],[[4427,4446,4425]],[[4431,4403,4411]],[[4479,4493,4450]],[[4514,4515,3975]],[[4450,4493,4495]],[[4516,4500,4517]],[[4489,4495,4513]],[[4493,4479,4492]],[[4368,4445,4371]],[[4474,4473,4424]],[[4368,4406,4366]],[[4405,4399,4406]],[[4463,4487,4389]],[[4340,4477,4487]],[[4512,4471,4340]],[[4518,4519,4471]],[[4518,4512,4519]],[[4482,4487,4463]],[[4471,4512,4518]],[[4482,4481,4491]],[[4442,4399,4371]],[[4442,4400,4399]],[[4451,4402,4440]],[[4451,4455,4402]],[[4454,4419,4420]],[[4520,4462,4461]],[[4424,4445,4474]],[[4368,4349,4445]],[[4413,4415,4414]],[[4417,4443,4415]],[[4449,4359,4358]],[[4448,4447,4357]],[[4446,4521,4434]],[[4522,4439,4431]],[[4523,4524,4525]],[[4526,4527,4528]],[[4443,4397,4370]],[[4442,4404,4400]],[[4370,4397,4400]],[[4443,4417,4397]],[[4529,4530,4531]],[[4496,4499,4497]],[[4532,4533,4534]],[[4535,4536,4537]],[[4538,4539,4540]],[[4541,4542,4543]],[[4544,4545,4546]],[[4547,4548,4549]],[[4550,4551,4552]],[[4553,4554,4395]],[[4555,4510,4556]],[[4557,4558,4559]],[[4560,4550,4561]],[[4408,4562,4361]],[[4523,4361,4363]],[[4563,4548,4547]],[[4509,4564,4565]],[[4392,4391,4566]],[[4567,4509,4565]],[[4411,4522,4431]],[[4568,4569,4570]],[[4468,4392,4571]],[[4363,4572,4523]],[[4523,4572,4524]],[[4573,4574,4565]],[[4575,4521,4446]],[[4556,4510,4567]],[[4576,4577,4421]],[[4510,4509,4567]],[[4508,4578,4577]],[[4421,4423,4564]],[[4579,4580,4581]],[[4582,4583,4584]],[[4585,4586,4386]],[[4531,4587,4588]],[[4386,4586,4589]],[[4590,4591,4543]],[[4534,4592,4532]],[[4593,4594,4595]],[[4596,4589,4586]],[[4564,4423,4597]],[[4566,4598,4362]],[[4580,4423,4581]],[[4599,4600,4580]],[[4380,4566,4362]],[[4391,4601,4602]],[[4574,4469,4603]],[[4565,4564,4597]],[[4604,4597,4600]],[[4521,4605,4507]],[[4605,4422,4507]],[[4601,4606,4607]],[[4429,4460,4409]],[[4522,4608,4439]],[[4598,4609,4363]],[[4610,4590,4611]],[[4609,4602,4612]],[[4613,4614,4615]],[[4525,4524,4614]],[[4616,4586,4585]],[[4608,4617,4618]],[[4363,4612,4572]],[[4612,4524,4572]],[[4619,4620,4534]],[[4541,4621,4622]],[[4623,4624,4625]],[[4362,4598,4363]],[[4626,4391,4602]],[[4627,4628,4623]],[[4629,4630,4631]],[[4632,4559,4525]],[[4523,4558,4361]],[[4621,4594,4620]],[[4536,4484,4633]],[[4634,4635,4636]],[[4385,4585,4386]],[[4637,4638,4639]],[[4385,4640,4641]],[[4362,4562,4379]],[[4642,4643,4644]],[[4601,4645,4606]],[[4469,4574,4573]],[[4377,4452,4378]],[[4646,4507,4422]],[[4612,4614,4524]],[[4584,4647,4582]],[[4648,4594,4591]],[[4649,4650,4651]],[[4652,4653,4579]],[[4654,4655,4606]],[[4656,4384,4386]],[[4628,4627,4532]],[[4640,4657,4588]],[[4386,4589,4656]],[[4658,4464,4384]],[[4659,4529,4660]],[[4466,4661,4464]],[[4637,4662,4660]],[[4663,4664,4656]],[[4665,4657,4385]],[[4648,4591,4590]],[[4594,4621,4591]],[[4609,4612,4363]],[[4648,4614,4612]],[[4666,4667,4668]],[[4669,4648,4610]],[[4670,4671,4672]],[[4548,4673,4549]],[[4674,4675,4526]],[[4676,4610,4611]],[[4540,4677,4678]],[[4679,4680,4681]],[[4682,4539,4683]],[[4684,4685,4686]],[[4667,4526,4668]],[[4528,4683,4687]],[[4688,4675,4674]],[[4526,4528,4674]],[[4561,4689,4560]],[[4668,4526,4689]],[[4690,4560,4688]],[[4688,4674,4691]],[[4527,4682,4683]],[[4538,4634,4686]],[[4686,4685,4538]],[[4687,4674,4528]],[[4539,4538,4685]],[[4635,4659,4636]],[[4527,4683,4528]],[[4539,4685,4683]],[[4529,4531,4660]],[[4692,4532,4531]],[[4693,4694,4530]],[[4624,4592,4593]],[[4693,4677,4694]],[[4695,4611,4696]],[[4538,4540,4678]],[[4697,4540,4539]],[[4574,4556,4567]],[[4698,4452,4432]],[[4699,4676,4611]],[[4668,4689,4700]],[[4701,4702,4703]],[[4537,4633,4663]],[[4651,4704,4484]],[[4705,4706,4476]],[[4650,4707,4708]],[[4709,4499,4496]],[[4704,4485,4484]],[[4702,4483,4485]],[[4710,4711,4702]],[[4663,4589,4537]],[[4514,4506,4505]],[[4712,4713,4492]],[[4657,4660,4588]],[[4660,4531,4588]],[[4384,4665,4385]],[[4588,4587,4640]],[[4552,4714,4382]],[[4552,4715,4716]],[[4656,4658,4384]],[[4478,4717,4476]],[[4656,4664,4658]],[[4710,4702,4718]],[[4665,4464,4661]],[[4658,4664,4719]],[[4720,4721,4722]],[[4702,4485,4703]],[[4723,4503,4701]],[[4724,4722,4721]],[[4387,4720,4447]],[[4701,4703,4723]],[[4357,4496,4486]],[[4704,4723,4703]],[[4704,4725,4723]],[[4726,4727,4728]],[[4725,4729,4726]],[[4728,4730,4731]],[[4516,4732,4500]],[[4731,4709,4733]],[[4734,4735,4556]],[[4644,4736,4642]],[[4603,4734,4556]],[[4735,4644,4555]],[[4556,4735,4555]],[[4546,4545,4736]],[[4731,4737,4728]],[[4627,4623,4585]],[[4728,4737,4726]],[[4470,4709,4496]],[[4707,4727,4729]],[[4727,4738,4739]],[[4729,4708,4707]],[[4596,4535,4537]],[[4658,4719,4465]],[[4705,4710,4718]],[[4740,4741,4618]],[[4581,4423,4422]],[[4741,4575,4618]],[[4521,4507,4434]],[[4740,4605,4741]],[[4581,4422,4605]],[[4740,4581,4605]],[[4579,4653,4599]],[[4742,4634,4636]],[[4538,4678,4634]],[[4678,4635,4634]],[[4678,4693,4529]],[[4510,4743,4508]],[[4393,4453,4378]],[[4378,4698,4577]],[[4432,4507,4698]],[[4618,4617,4744]],[[4604,4654,4645]],[[4745,4522,4410]],[[4655,4607,4606]],[[4740,4579,4581]],[[4740,4652,4579]],[[4590,4543,4542]],[[4591,4621,4543]],[[4635,4529,4659]],[[4635,4678,4529]],[[4685,4684,4683]],[[4691,4674,4687]],[[4746,4491,4450]],[[4519,4512,4491]],[[4618,4744,4740]],[[4744,4458,4652]],[[4592,4534,4620]],[[4694,4695,4747]],[[4529,4693,4530]],[[4678,4677,4693]],[[4434,4433,4438]],[[4432,4452,4433]],[[4394,4577,4578]],[[4646,4422,4421]],[[4689,4675,4560]],[[4689,4526,4675]],[[4655,4599,4653]],[[4580,4597,4423]],[[4748,4749,4631]],[[4750,4751,4707]],[[4623,4625,4752]],[[4536,4753,4649]],[[4641,4627,4585]],[[4592,4620,4593]],[[4743,4644,4554]],[[4570,4545,4754]],[[4735,4736,4644]],[[4735,4734,4546]],[[4545,4755,4736]],[[4756,4757,4643]],[[4756,4755,4545]],[[4642,4736,4755]],[[4570,4756,4545]],[[4642,4755,4756]],[[4735,4546,4736]],[[4571,4380,4544]],[[4599,4654,4600]],[[4604,4573,4597]],[[4599,4655,4654]],[[4573,4565,4597]],[[4503,4724,4701]],[[4758,4487,4477]],[[4759,4720,4722]],[[4760,4487,4758]],[[4701,4718,4702]],[[4701,4724,4718]],[[4720,4759,4447]],[[4733,4737,4731]],[[4739,4761,4730]],[[4762,4515,4732]],[[4542,4696,4611]],[[4694,4677,4695]],[[4763,4764,4765]],[[4766,4712,4492]],[[4517,4730,4516]],[[4761,4762,4732]],[[4662,4639,4767]],[[4768,4742,4636]],[[4470,4733,4709]],[[4731,4517,4709]],[[4749,4750,4650]],[[4650,4750,4707]],[[4456,4419,4454]],[[4475,4372,4419]],[[4402,4454,4428]],[[4402,4455,4454]],[[4483,4633,4484]],[[4483,4711,4769]],[[4658,4465,4464]],[[4466,4465,4478]],[[4770,4407,4714]],[[4568,4570,4754]],[[4771,4700,4563]],[[4557,4383,4558]],[[4679,4551,4772]],[[4552,4382,4381]],[[4715,4551,4679]],[[4772,4550,4773]],[[4694,4533,4530]],[[4694,4747,4533]],[[4530,4692,4531]],[[4530,4533,4692]],[[4531,4532,4587]],[[4692,4533,4532]],[[4690,4688,4691]],[[4560,4675,4688]],[[4549,4673,4583]],[[4548,4559,4632]],[[4774,4775,4472]],[[4519,4746,4488]],[[4556,4574,4603]],[[4567,4565,4574]],[[4652,4458,4653]],[[4653,4458,4655]],[[4770,4568,4754]],[[4714,4552,4716]],[[4776,4647,4669]],[[4583,4673,4615]],[[4719,4717,4465]],[[4719,4664,4777]],[[4719,4777,4778]],[[4769,4663,4633]],[[4385,4657,4640]],[[4661,4779,4639]],[[4575,4608,4618]],[[4575,4427,4608]],[[4716,4715,4681]],[[4552,4551,4715]],[[4569,4716,4681]],[[4568,4714,4716]],[[4478,4779,4466]],[[4660,4662,4659]],[[4768,4639,4779]],[[4662,4636,4659]],[[4657,4637,4660]],[[4638,4661,4639]],[[4661,4466,4779]],[[4465,4717,4478]],[[4381,4383,4780]],[[4408,4361,4558]],[[4563,4557,4548]],[[4383,4408,4558]],[[4781,4557,4563]],[[4780,4383,4557]],[[4768,4478,4477]],[[4768,4779,4478]],[[4629,4631,4535]],[[4749,4650,4649]],[[4680,4686,4742]],[[4782,4691,4687]],[[4676,4671,4776]],[[4783,4549,4582]],[[4468,4390,4392]],[[4469,4645,4601]],[[4762,4648,4458]],[[4762,4594,4648]],[[4607,4602,4601]],[[4648,4612,4602]],[[4762,4458,4349]],[[4648,4602,4458]],[[4740,4744,4652]],[[4617,4458,4744]],[[4617,4522,4745]],[[4460,4349,4467]],[[4385,4641,4585]],[[4640,4587,4641]],[[4491,4746,4519]],[[4450,4495,4746]],[[4508,4553,4578]],[[4554,4453,4393]],[[4444,4462,4473]],[[4444,4349,4462]],[[4420,4459,4429]],[[4520,4473,4462]],[[4420,4520,4459]],[[4420,4473,4520]],[[4515,4784,4732]],[[4498,4497,4499]],[[4492,4498,4766]],[[4486,4496,4498]],[[4698,4646,4577]],[[4698,4507,4646]],[[4464,4665,4384]],[[4661,4638,4665]],[[4472,4785,4786]],[[4787,4774,4488]],[[4788,4774,4787]],[[4746,4495,4489]],[[4620,4622,4621]],[[4696,4542,4541]],[[4490,4489,4506]],[[4488,4746,4489]],[[4789,4490,4506]],[[4789,4787,4490]],[[4781,4700,4561]],[[4563,4547,4771]],[[4666,4771,4547]],[[4668,4700,4771]],[[4608,4427,4439]],[[4575,4446,4427]],[[4456,4475,4419]],[[4441,4373,4475]],[[4768,4767,4639]],[[4768,4636,4767]],[[4724,4721,4790]],[[4720,4387,4760]],[[4645,4573,4604]],[[4645,4469,4573]],[[4722,4502,4759]],[[4503,4723,4501]],[[4748,4631,4630]],[[4749,4753,4631]],[[4506,4713,4504]],[[4492,4494,4493]],[[4468,4734,4603]],[[4571,4546,4734]],[[4615,4584,4583]],[[4648,4669,4584]],[[4376,4378,4453]],[[4452,4698,4378]],[[4394,4393,4378]],[[4395,4554,4393]],[[4791,4504,4712]],[[4513,4494,4713]],[[4390,4601,4391]],[[4390,4469,4601]],[[4684,4782,4687]],[[4680,4690,4691]],[[4765,4789,4506]],[[4788,4775,4774]],[[4514,4763,4765]],[[4764,4785,4788]],[[4786,4792,4763]],[[4786,4785,4792]],[[4509,4576,4564]],[[4577,4646,4421]],[[4561,4550,4780]],[[4560,4773,4550]],[[4550,4381,4780]],[[4550,4552,4381]],[[4519,4774,4471]],[[4519,4488,4774]],[[4599,4580,4579]],[[4600,4597,4580]],[[4514,4765,4506]],[[4763,4792,4764]],[[4726,4501,4725]],[[4737,4502,4501]],[[4723,4725,4501]],[[4708,4729,4725]],[[4727,4726,4729]],[[4737,4501,4726]],[[4502,4733,4759]],[[4502,4737,4733]],[[4382,4408,4383]],[[4382,4714,4407]],[[4747,4619,4533]],[[4619,4622,4620]],[[4776,4669,4610]],[[4647,4584,4669]],[[4484,4536,4651]],[[4753,4749,4649]],[[4554,4643,4681]],[[4643,4642,4756]],[[4716,4569,4568]],[[4757,4756,4570]],[[4506,4513,4713]],[[4506,4489,4513]],[[4757,4569,4681]],[[4757,4570,4569]],[[4762,4748,4594]],[[4750,4749,4748]],[[4762,4738,4748]],[[4751,4727,4707]],[[4759,4470,4447]],[[4759,4733,4470]],[[4448,4357,4359]],[[4470,4496,4357]],[[4793,4705,4476]],[[4790,4721,4758]],[[4718,4706,4705]],[[4721,4720,4760]],[[4616,4629,4596]],[[4631,4753,4535]],[[4636,4662,4767]],[[4637,4639,4662]],[[4576,4508,4577]],[[4510,4555,4743]],[[4673,4613,4615]],[[4525,4614,4613]],[[4763,4514,3975]],[[4515,4762,3975]],[[4621,4541,4543]],[[4622,4696,4541]],[[4577,4394,4378]],[[4578,4395,4394]],[[4794,4758,4477]],[[4706,4790,4758]],[[4721,4760,4758]],[[4387,4487,4760]],[[4722,4503,4502]],[[4722,4724,4503]],[[4719,4778,4717]],[[4711,4483,4702]],[[4613,4632,4525]],[[4548,4557,4559]],[[4673,4632,4613]],[[4673,4548,4632]],[[4667,4672,4527]],[[4540,4697,4677]],[[4526,4667,4527]],[[4666,4547,4783]],[[4533,4619,4534]],[[4747,4622,4619]],[[4566,4626,4598]],[[4566,4391,4626]],[[4453,4456,4455]],[[4404,4475,4456]],[[4512,4482,4491]],[[4340,4487,4482]],[[4680,4742,4768]],[[4686,4634,4742]],[[4747,4696,4622]],[[4747,4695,4696]],[[4793,4476,4717]],[[4706,4794,4476]],[[4611,4590,4542]],[[4610,4648,4590]],[[4784,4515,4791]],[[4712,4784,4791]],[[4568,4770,4714]],[[4380,4571,4392]],[[4417,4398,4397]],[[4417,4367,4398]],[[4505,4515,4514]],[[4505,4791,4515]],[[4766,4784,4712]],[[4766,4498,4500]],[[4583,4582,4549]],[[4647,4776,4582]],[[4498,4492,4486]],[[4713,4494,4492]],[[3975,4786,4763]],[[3975,4472,4786]],[[4695,4697,4699]],[[4682,4527,4672]],[[4670,4672,4667]],[[4795,4682,4672]],[[4704,4708,4725]],[[4651,4650,4708]],[[4784,4500,4732]],[[4784,4766,4500]],[[4748,4595,4594]],[[4625,4630,4752]],[[4748,4625,4595]],[[4748,4630,4625]],[[4727,4739,4728]],[[4761,4732,4516]],[[4499,4517,4500]],[[4730,4761,4516]],[[4709,4517,4499]],[[4731,4730,4517]],[[4683,4684,4687]],[[4782,4680,4691]],[[4686,4782,4684]],[[4686,4680,4782]],[[4361,4562,4362]],[[4408,4407,4562]],[[4778,4793,4717]],[[4778,4710,4793]],[[4715,4679,4681]],[[4773,4680,4679]],[[4379,4796,4380]],[[4754,4545,4544]],[[4571,4544,4546]],[[4796,4754,4544]],[[4549,4783,4547]],[[4783,4776,4671]],[[4667,4666,4670]],[[4668,4771,4666]],[[4793,4710,4705]],[[4778,4777,4711]],[[4778,4711,4710]],[[4777,4664,4769]],[[4682,4697,4539]],[[4682,4795,4697]],[[4490,4787,4488]],[[4788,4785,4775]],[[4789,4788,4787]],[[4789,4764,4788]],[[4679,4772,4773]],[[4551,4550,4772]],[[4485,4704,4703]],[[4651,4708,4704]],[[4559,4523,4525]],[[4559,4558,4523]],[[4738,4751,4750]],[[4738,4761,4739]],[[4753,4536,4535]],[[4649,4651,4536]],[[4645,4654,4606]],[[4604,4600,4654]],[[4564,4576,4421]],[[4509,4508,4576]],[[4566,4380,4392]],[[4796,4544,4380]],[[4508,4743,4553]],[[4555,4644,4743]],[[4578,4553,4395]],[[4743,4554,4553]],[[4699,4697,4795]],[[4695,4677,4697]],[[4734,4468,4571]],[[4603,4469,4468]],[[4728,4739,4730]],[[4727,4751,4738]],[[4648,4615,4614]],[[4648,4584,4615]],[[4672,4671,4795]],[[4670,4783,4671]],[[4781,4561,4780]],[[4700,4689,4561]],[[4774,4472,4471]],[[4775,4785,4472]],[[4349,4369,4360]],[[4413,4412,4369]],[[4718,4790,4706]],[[4718,4724,4790]],[[4741,4521,4575]],[[4741,4605,4521]],[[4557,4781,4780]],[[4563,4700,4781]],[[4586,4616,4596]],[[4752,4630,4616]],[[4596,4629,4535]],[[4616,4630,4629]],[[4712,4504,4713]],[[4791,4505,4504]],[[4624,4628,4592]],[[4532,4592,4628]],[[4587,4627,4641]],[[4587,4532,4627]],[[4616,4623,4752]],[[4616,4585,4623]],[[4626,4609,4598]],[[4626,4602,4609]],[[4409,4457,4410]],[[4617,4608,4522]],[[4797,4745,4457]],[[4409,4411,4430]],[[4773,4690,4680]],[[4773,4560,4690]],[[4695,4699,4611]],[[4795,4671,4676]],[[4797,4457,4458]],[[4467,4349,4457]],[[4476,4794,4477]],[[4706,4758,4794]],[[4748,4738,4750]],[[4762,4761,4738]],[[4407,4379,4562]],[[4407,4770,4379]],[[4458,4607,4655]],[[4458,4602,4607]],[[4369,4364,4360]],[[4369,4365,4364]],[[4596,4537,4589]],[[4536,4633,4537]],[[4625,4624,4595]],[[4623,4628,4624]],[[4745,4410,4457]],[[4522,4411,4410]],[[4429,4409,4430]],[[4467,4457,4409]],[[4459,4461,4460]],[[4459,4520,4461]],[[4681,4643,4757]],[[4554,4644,4643]],[[4624,4593,4595]],[[4620,4594,4593]],[[4617,4797,4458]],[[4617,4745,4797]],[[4610,4676,4776]],[[4699,4795,4676]],[[4483,4769,4633]],[[4656,4589,4663]],[[4777,4769,4711]],[[4664,4663,4769]],[[4657,4638,4637]],[[4657,4665,4638]],[[4765,4764,4789]],[[4792,4785,4764]],[[4776,4783,4582]],[[4670,4666,4783]],[[4796,4770,4754]],[[4796,4379,4770]],[[4798,4345,4344]],[[4347,4798,4344]],[[4799,4347,4348]],[[4800,4365,4370]],[[4404,4800,4370]],[[4801,4453,4554]],[[4681,4801,4554]],[[4802,4681,4680]],[[4768,4802,4680]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c16cf36-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:22.000"},"geometry":[{"boundaries":[[[4803,4804,4805]],[[4806,4807,4808]],[[4809,4810,4811]],[[4812,4813,4810]],[[4810,4814,4815]],[[4816,4817,4814]],[[4818,4819,4816]],[[4820,4821,4818]],[[4822,4823,4824]],[[4825,4826,4820]],[[4827,4828,4829]],[[4830,4831,4832]],[[4828,4833,4834]],[[4831,4835,4836]],[[4837,4831,4838]],[[4836,4825,4831]],[[4839,4840,4841]],[[4839,4842,4840]],[[4839,4843,4842]],[[4844,4845,4839]],[[4846,4847,4848]],[[4839,4849,4844]],[[4850,4849,4839]],[[4851,4852,4849]],[[4853,4854,4850]],[[4855,4853,4850]],[[4848,4855,4850]],[[4848,4856,4855]],[[4857,4858,4848]],[[4846,4859,4860]],[[4861,4862,4848]],[[4863,4846,4860]],[[4864,4865,4847]],[[4866,4864,4847]],[[4848,4867,4846]],[[4868,4869,4866]],[[4870,4871,4868]],[[4872,4870,4868]],[[4872,4873,4870]],[[4874,4875,4872]],[[4874,4876,4875]],[[4877,4878,4879]],[[4879,4878,4880]],[[4880,4878,4881]],[[4882,4880,4881]],[[4866,4883,4864]],[[4884,4885,4886]],[[4887,4888,4889]],[[4890,4891,4892]],[[4893,4894,4895]],[[4896,4885,4884]],[[4884,4897,4898]],[[4899,4900,4901]],[[4902,4903,4904]],[[4905,4906,4907]],[[4908,4909,4910]],[[4911,4912,4904]],[[4907,4913,4914]],[[4908,4915,4916]],[[4917,4918,4919]],[[4920,4921,4922]],[[4923,4924,4919]],[[4913,4903,4902]],[[4925,4890,4926]],[[4927,4928,4889]],[[4902,4929,4913]],[[4930,4931,4932]],[[4933,4934,4935]],[[4936,4937,4938]],[[4923,4919,4939]],[[4940,4941,4942]],[[4936,4943,4937]],[[4878,4944,4945]],[[4946,4947,4941]],[[4948,4949,4881]],[[4950,4874,4878]],[[4881,4945,4948]],[[4944,4874,4872]],[[4868,4951,4872]],[[4952,4944,4951]],[[4953,4951,4954]],[[4868,4871,4869]],[[4846,4863,4847]],[[4862,4857,4848]],[[4847,4861,4848]],[[4955,4956,4957]],[[4958,4959,4841]],[[4960,4961,4962]],[[4963,4964,4965]],[[4966,4967,4968]],[[4820,4969,4827]],[[4970,4971,4972]],[[4973,4974,4975]],[[4820,4976,4821]],[[4977,4837,4978]],[[4979,4980,4981]],[[4982,4983,4984]],[[4985,4986,4827]],[[4987,4988,4989]],[[4990,4991,4830]],[[4992,4838,4833]],[[4993,4994,4995]],[[4994,4996,4997]],[[4998,4999,5000]],[[4836,5001,4825]],[[4824,5002,5003]],[[4822,4824,5003]],[[5004,4979,5005]],[[5005,5006,5004]],[[5007,5008,4972]],[[4969,5009,4827]],[[5010,5011,5012]],[[5013,5014,4980]],[[5005,5015,5006]],[[4824,5016,5017]],[[5018,5019,5020]],[[5021,5022,5023]],[[5024,5025,5026]],[[4831,4830,4835]],[[5027,5010,5028]],[[5029,5030,5031]],[[4830,5032,5033]],[[4838,4978,4837]],[[5034,5016,4824]],[[5035,5016,5034]],[[5036,5037,5029]],[[5038,4978,5039]],[[5000,4972,5030]],[[5040,4983,4989]],[[5041,4837,4977]],[[5030,5037,4998]],[[4998,5000,5030]],[[5042,4984,5031]],[[5038,5041,4977]],[[4984,4983,5029]],[[4988,4957,4990]],[[5043,5044,5045]],[[5046,5008,5026]],[[5047,5048,5049]],[[5050,5051,5052]],[[4999,5053,5054]],[[5055,5035,5056]],[[4823,5034,4824]],[[5054,5053,5035]],[[5015,5057,5058]],[[5046,5059,5008]],[[5041,4832,4837]],[[4830,4991,5060]],[[5061,5008,5007]],[[5006,5062,5063]],[[4823,4822,5000]],[[4972,5008,5030]],[[4970,4822,5064]],[[5065,5048,5019]],[[5066,4822,5003]],[[4970,5000,4822]],[[5067,5068,4983]],[[4998,5037,5068]],[[5069,5070,5071]],[[5052,5072,4804]],[[5073,5074,5075]],[[5076,5077,5078]],[[5052,5051,5072]],[[5079,5080,5081]],[[5082,5083,5072]],[[5084,5069,5077]],[[5049,4994,5047]],[[5072,5051,5082]],[[5085,5086,5087]],[[4810,4815,4811]],[[5085,5087,4969]],[[5088,4996,5089]],[[4803,5075,4804]],[[4803,5073,5075]],[[4984,5029,5031]],[[4983,5036,5029]],[[4994,4993,5090]],[[5078,5077,5091]],[[5020,5092,5090]],[[5019,5048,5092]],[[5090,5047,4994]],[[5092,5048,5047]],[[5093,5094,5095]],[[4811,4804,5072]],[[5096,4929,5097]],[[5098,4919,4918]],[[5066,5064,4822]],[[5099,4970,5064]],[[5100,5028,5101]],[[5053,4998,5068]],[[5102,5027,5028]],[[5017,5002,4824]],[[5103,4820,4826]],[[4986,4833,4828]],[[5104,5090,4993]],[[5092,5047,5090]],[[5105,5106,5107]],[[5108,4904,5109]],[[5110,5111,5112]],[[5113,5114,5115]],[[5116,5117,5118]],[[5119,5120,5121]],[[4838,4992,5122]],[[4833,4986,4992]],[[5123,5124,5125]],[[5126,4894,5127]],[[4995,5128,4993]],[[5129,5130,5131]],[[4813,4812,5128]],[[5076,5072,5083]],[[5049,4996,4994]],[[4813,5132,4810]],[[5098,5133,4943]],[[5134,5096,4886]],[[5032,4974,5135]],[[5136,4956,4974]],[[5064,4806,5099]],[[5137,5138,5139]],[[4807,5137,5139]],[[5019,5092,5020]],[[5139,5138,5140]],[[5137,5003,5138]],[[4820,4818,4969]],[[4819,4817,4816]],[[5041,4989,4990]],[[4988,4955,4957]],[[4956,5060,4991]],[[4956,5136,5060]],[[5059,5042,5031]],[[4982,4989,4983]],[[5141,5134,5142]],[[4895,4896,5143]],[[5068,5036,4983]],[[5068,5037,5036]],[[5031,5030,5008]],[[5029,5037,5030]],[[4911,4904,4903]],[[5144,4899,5145]],[[4901,4900,4912]],[[4898,5146,5147]],[[5148,5149,5145]],[[5109,4904,4900]],[[5099,4971,4970]],[[5099,5150,4971]],[[4829,4820,4827]],[[5103,4976,4820]],[[5151,5152,5049]],[[5153,5027,5102]],[[5154,5049,5048]],[[5101,5155,5156]],[[5157,5100,5158]],[[5154,5016,5158]],[[5156,5089,5101]],[[4997,5132,4813]],[[4929,4914,4913]],[[5117,5159,5118]],[[5160,5161,5119]],[[5162,4939,4919]],[[5163,5164,5165]],[[5165,5164,5166]],[[5141,5167,5134]],[[5160,4929,5167]],[[5168,5169,5170]],[[5171,5045,5172]],[[5026,5170,5173]],[[5169,5174,5024]],[[5080,5079,5018]],[[5019,5138,5003]],[[5091,5080,5175]],[[5020,5090,5131]],[[5018,5140,5019]],[[5176,5177,5139]],[[5138,5019,5140]],[[5003,5002,5065]],[[5090,5104,5129]],[[4993,5128,4812]],[[4993,5094,5104]],[[5178,4809,5095]],[[4886,5097,5179]],[[4886,5180,5142]],[[5143,4893,4895]],[[5112,5117,5180]],[[4990,4989,4988]],[[5040,5067,4983]],[[5181,5182,5183]],[[5184,5142,5185]],[[5131,5175,5080]],[[5177,4808,5139]],[[5078,5091,5175]],[[5081,4805,5079]],[[5186,5187,4893]],[[5159,5188,5189]],[[4896,4895,4885]],[[4894,5126,5190]],[[5080,5018,5020]],[[5139,4808,4807]],[[5045,5044,5172]],[[4987,4989,4982]],[[5097,4929,4902]],[[4914,5191,4907]],[[5077,5081,5091]],[[5077,5069,5081]],[[5192,5193,5120]],[[5192,5194,5193]],[[5195,5196,5197]],[[5198,5164,5163]],[[5078,5093,5076]],[[4809,4811,5072]],[[5173,5169,5024]],[[5199,5062,5200]],[[4806,4808,5099]],[[5201,4964,4963]],[[5099,4808,5150]],[[5202,4964,5203]],[[5079,5177,5176]],[[5079,4805,5177]],[[5023,5022,5204]],[[5168,5061,5205]],[[5026,5173,5024]],[[5170,5169,5173]],[[5200,5062,5206]],[[5170,5026,5061]],[[5017,5154,5048]],[[5100,5157,5102]],[[5155,5101,5028]],[[5089,5152,5151]],[[5207,5208,5192]],[[5207,5167,5141]],[[5123,5209,5124]],[[5125,5210,5211]],[[5212,5213,5214]],[[5214,5184,5185]],[[5215,5216,5217]],[[5218,5219,5220]],[[5075,5052,4804]],[[5075,5074,5050]],[[5075,5050,5052]],[[5074,5070,5082]],[[5097,4886,5096]],[[5112,5111,5159]],[[5085,4816,5086]],[[4819,4821,5221]],[[4901,4912,5222]],[[4900,4904,4912]],[[5223,5222,5224]],[[5223,4901,5222]],[[4995,4813,5128]],[[5086,4816,4810]],[[4809,4812,4810]],[[5094,4993,4812]],[[4994,4997,4995]],[[5049,5152,4996]],[[5112,5159,5117]],[[5213,5212,5225]],[[5042,5059,5171]],[[5031,5008,5059]],[[5149,5179,5108]],[[5097,4902,5108]],[[5145,5109,5144]],[[5108,4902,4904]],[[5032,5136,4974]],[[5032,5060,5136]],[[5226,5124,5209]],[[5220,5227,5228]],[[5229,5106,5230]],[[5105,5124,5226]],[[5225,5231,5232]],[[5233,5234,5232]],[[5235,5236,5230]],[[5114,4947,4946]],[[5237,5238,5239]],[[5240,5241,5209]],[[5239,5242,5237]],[[5241,5230,5226]],[[5237,5243,5238]],[[5244,5236,5235]],[[5245,5246,5217]],[[4942,5247,5238]],[[5248,5245,5217]],[[5249,5115,4946]],[[5250,5107,5106]],[[5251,5252,5210]],[[5253,5254,5255]],[[5207,5160,5167]],[[5194,5256,5193]],[[5257,5253,5258]],[[5254,5253,5257]],[[5259,5260,4920]],[[5184,5261,5207]],[[5183,5182,5194]],[[5261,5262,5208]],[[5183,5194,5263]],[[5081,5069,5264]],[[5077,5083,5084]],[[5082,5070,5083]],[[5070,5069,5084]],[[5083,5070,5084]],[[5074,5071,5070]],[[5154,5151,5049]],[[5089,5265,5088]],[[5089,4996,5152]],[[5088,5132,4997]],[[5149,4886,5179]],[[4885,5110,5112]],[[5140,5176,5139]],[[4805,4808,5177]],[[5266,4940,5243]],[[5267,5248,5268]],[[5122,5269,4978]],[[5056,5068,5067]],[[5038,5067,5040]],[[5039,5055,5056]],[[5041,5040,4989]],[[5041,5038,5040]],[[5046,5026,5025]],[[5008,5061,5026]],[[4942,5244,5247]],[[5270,5271,5272]],[[5111,5188,5159]],[[5211,5210,5252]],[[5118,5273,5212]],[[5231,5233,5232]],[[5118,5212,5116]],[[5214,5234,5261]],[[5273,5225,5212]],[[5232,5234,5213]],[[4970,4972,5000]],[[4971,5007,4972]],[[5274,5275,5276]],[[5160,5119,4914]],[[5142,5134,4886]],[[5167,5096,5134]],[[5124,5105,5210]],[[5277,5278,5252]],[[5187,5216,5218]],[[5219,5240,5220]],[[5279,5242,5239]],[[5242,5216,5243]],[[5147,5143,4884]],[[5280,5281,5282]],[[5283,4916,5284]],[[5285,5224,5286]],[[5287,5283,5284]],[[5288,5289,5253]],[[5282,5187,5186]],[[5127,4894,4893]],[[5290,5145,4899]],[[5290,5146,5291]],[[5034,5054,5035]],[[5034,4823,4999]],[[5190,5228,5188]],[[5227,5125,5211]],[[4915,4908,5292]],[[4916,5283,5293]],[[4916,4909,4908]],[[5294,5191,5295]],[[5296,5297,5197]],[[5298,5256,5194]],[[5299,5300,5301]],[[5298,5254,5256]],[[4887,5302,5301]],[[5255,5288,5253]],[[5303,5165,5166]],[[5304,4935,4934]],[[5305,5306,5307]],[[5308,5304,4934]],[[5307,5233,5231]],[[5278,5231,5225]],[[5309,5277,5251]],[[5233,5306,5182]],[[5181,5233,5182]],[[5306,5298,5182]],[[5263,5194,5310]],[[5182,5298,5194]],[[5255,5311,5288]],[[5312,4934,5313]],[[5250,5307,5314]],[[5250,5229,5113]],[[5305,5315,5311]],[[4934,5312,5308]],[[5255,5298,5306]],[[5255,5254,5298]],[[5311,5289,5288]],[[5316,5317,5318]],[[5258,5121,5193]],[[5295,5191,5119]],[[5319,4931,4907]],[[5312,5289,5311]],[[5094,5178,5095]],[[5094,4812,5178]],[[5110,5188,5111]],[[5110,5190,5188]],[[4886,5112,5180]],[[4886,4885,5112]],[[4978,5038,4977]],[[5039,5067,5038]],[[5041,4990,4832]],[[4830,5060,5032]],[[4957,4991,4990]],[[4957,4956,4991]],[[5181,5262,5261]],[[5208,5263,5310]],[[5320,4931,5319]],[[4903,4913,4907]],[[5131,5080,5020]],[[5091,5081,5080]],[[4920,5319,5295]],[[4907,5191,5294]],[[5292,4943,5321]],[[4933,5162,5322]],[[5095,4809,5072]],[[5178,4812,4809]],[[5018,5176,5140]],[[5018,5079,5176]],[[5133,5323,5321]],[[5284,4916,4915]],[[4887,4889,5302]],[[5255,5306,5311]],[[5305,5311,5306]],[[5308,5324,5304]],[[5325,4926,4890]],[[5326,5327,5328]],[[5024,5046,5025]],[[5024,5174,5046]],[[5109,5145,5149]],[[5329,5146,4897]],[[4886,5149,4884]],[[5329,5330,5291]],[[5189,5211,5118]],[[5278,5314,5231]],[[5331,5332,5224]],[[5286,4912,4911]],[[5113,5307,5250]],[[5306,5233,5307]],[[5088,4810,5132]],[[4816,4814,4810]],[[5010,4985,5009]],[[5087,5086,5265]],[[5153,5011,5027]],[[4992,4986,4985]],[[4985,5010,4992]],[[5155,5028,5010]],[[5016,5055,5102]],[[5011,5010,5027]],[[4838,5122,4978]],[[5012,5011,5153]],[[4992,5012,5122]],[[4992,5010,5012]],[[5172,5333,4987]],[[4982,4984,5042]],[[5292,4937,4943]],[[5334,5335,5317]],[[5336,5334,5317]],[[4910,4930,5337]],[[5338,5318,5335]],[[4910,4909,5339]],[[5063,5340,5004]],[[4808,4805,5341]],[[5086,5088,5265]],[[5086,4810,5088]],[[5342,5331,5274]],[[5133,5321,4943]],[[5098,4918,5287]],[[4918,4917,5343]],[[5210,5105,5309]],[[5250,5314,5309]],[[5309,5314,5277]],[[5307,5231,5314]],[[5252,5278,5273]],[[5277,5314,5278]],[[4942,4941,5244]],[[5344,5271,4941]],[[5117,5116,5185]],[[5184,5141,5142]],[[5234,5181,5261]],[[5183,5263,5262]],[[5233,5181,5234]],[[5183,5262,5181]],[[5259,5289,5260]],[[5311,5315,5312]],[[5289,5345,4921]],[[5345,5313,5338]],[[4920,4922,5346]],[[4922,5347,5348]],[[5294,5295,5319]],[[5348,5347,5338]],[[4922,4921,5347]],[[5260,5289,4921]],[[5056,5053,5068]],[[5054,5034,4999]],[[5294,5319,4907]],[[5339,5349,4910]],[[5350,5316,5318]],[[5351,4921,5345]],[[5352,5353,5354]],[[5355,5196,5163]],[[5123,5125,5227]],[[5124,5210,5125]],[[5035,5055,5016]],[[5153,5122,5012]],[[5344,5267,5268]],[[5248,5271,5268]],[[5042,5172,4982]],[[4955,4988,4987]],[[4890,5305,4891]],[[5324,4935,5304]],[[5350,4938,5316]],[[4937,5292,5336]],[[5196,5165,5354]],[[5356,4939,5162]],[[5246,5357,5217]],[[5246,5245,5266]],[[5357,5215,5217]],[[5243,4942,5238]],[[4834,4838,4831]],[[5001,4826,4825]],[[5326,5163,5195]],[[5296,5196,5358]],[[4971,5150,5007]],[[4808,5341,5061]],[[4995,4997,4813]],[[4996,5088,4997]],[[5118,5211,5273]],[[5359,5228,5211]],[[5209,5241,5226]],[[5230,5106,5226]],[[5346,4932,5319]],[[5348,5338,5337]],[[5247,5360,5241]],[[5236,5229,5230]],[[5163,5165,5355]],[[5303,5356,5353]],[[5258,5361,5121]],[[5260,4921,4920]],[[5319,4920,5346]],[[5361,5259,4920]],[[5361,5295,5121]],[[5361,4920,5295]],[[5126,5218,5220]],[[5219,5238,5241]],[[5239,5219,5218]],[[5239,5238,5219]],[[4937,5316,4938]],[[5312,5345,5289]],[[4937,5317,5316]],[[5335,5337,5338]],[[5214,5116,5212]],[[5185,5180,5117]],[[5362,5323,5098]],[[4917,4924,5275]],[[5287,5362,5098]],[[5323,4915,5321]],[[5098,5323,5133]],[[5362,4915,5323]],[[4884,5143,4896]],[[5363,5281,5280]],[[5064,5066,4806]],[[5003,5137,4807]],[[5184,5207,5141]],[[5208,5310,5192]],[[5213,5225,5232]],[[5273,5278,5225]],[[5322,5350,5313]],[[5317,5335,5318]],[[4907,4931,4905]],[[4906,4903,4907]],[[4930,5364,4931]],[[4911,4906,5364]],[[5364,4906,4905]],[[4911,4903,4906]],[[5234,5214,5213]],[[5261,5184,5214]],[[4900,5144,5109]],[[4900,4899,5144]],[[5218,5216,5242]],[[5215,5243,5216]],[[5333,4975,4987]],[[4974,4956,4975]],[[5357,5243,5215]],[[5357,5246,5266]],[[5016,5157,5158]],[[5102,5028,5100]],[[5365,5282,5281]],[[5366,5216,5282]],[[4893,5187,5127]],[[5282,5216,5187]],[[5149,5108,5109]],[[5179,5097,5108]],[[4933,5322,4934]],[[5162,4936,5322]],[[5338,5313,5318]],[[5322,4938,5350]],[[4915,5292,5321]],[[4908,4910,5336]],[[4937,5336,5317]],[[5292,4908,5336]],[[5187,5218,5127]],[[5279,5239,5218]],[[4807,5066,5003]],[[4807,4806,5066]],[[4932,5348,5337]],[[5347,5351,5338]],[[5346,5348,4932]],[[5346,4922,5348]],[[5154,5017,5016]],[[5048,5065,5017]],[[5359,5188,5228]],[[5189,5118,5159]],[[5333,4973,4975]],[[5135,4974,4973]],[[5217,5366,5281]],[[5217,5216,5366]],[[5366,5365,5281]],[[5366,5282,5365]],[[5073,5071,5074]],[[5264,5069,5071]],[[4805,5073,4803]],[[4805,5071,5073]],[[5211,5252,5273]],[[5251,5277,5252]],[[4932,5320,5319]],[[4932,5337,4930]],[[5106,5229,5250]],[[5236,5244,5114]],[[5236,5114,5113]],[[5244,4941,4947]],[[5207,5161,5160]],[[5119,5121,5295]],[[5207,5192,5367]],[[5193,5121,5120]],[[5367,5192,5120]],[[5310,5194,5192]],[[5210,5309,5251]],[[5107,5250,5309]],[[5368,5342,5276]],[[5293,4909,4916]],[[5274,5283,5287]],[[5369,5368,5224]],[[5119,5367,5120]],[[5161,5207,5367]],[[5085,4818,4816]],[[5085,4969,4818]],[[4895,5190,4885]],[[5190,5126,5220]],[[5322,5313,4934]],[[5350,5318,5313]],[[5257,5258,5193]],[[5253,5259,5258]],[[5357,5266,5243]],[[5245,5248,5267]],[[4914,5119,5191]],[[5161,5367,5119]],[[5150,5061,5007]],[[5150,4808,5061]],[[5244,4947,5114]],[[4941,5271,5270]],[[5261,5208,5207]],[[5262,5263,5208]],[[5218,5126,5127]],[[5220,5228,5190]],[[5305,5308,5315]],[[5305,5324,5308]],[[5342,5274,5276]],[[5287,4918,5274]],[[5325,5327,5370]],[[5326,5328,5371]],[[5370,5195,5197]],[[5355,5165,5196]],[[5106,5105,5226]],[[5107,5309,5105]],[[5322,4936,4938]],[[5162,4919,4936]],[[5372,5058,5057]],[[5373,5374,5206]],[[5169,5168,5204]],[[4980,5341,5013]],[[5000,4999,4823]],[[4998,5053,4999]],[[4905,4931,5364]],[[5320,4932,4931]],[[4890,5324,5305]],[[4890,4925,5324]],[[5274,5343,5275]],[[5274,4918,5343]],[[5375,5372,5057]],[[5058,5376,5373]],[[5274,5293,5283]],[[5349,4911,5364]],[[5050,5082,5051]],[[5050,5074,5082]],[[5214,5185,5116]],[[5142,5180,5185]],[[5147,5363,5143]],[[5147,5281,5363]],[[5016,5102,5157]],[[5055,5269,5153]],[[5130,5078,5175]],[[5076,5083,5077]],[[5256,5257,5193]],[[5256,5254,5257]],[[4832,4831,4837]],[[4834,4833,4838]],[[5090,5129,5131]],[[5104,5094,5129]],[[5299,5327,5300]],[[5299,5328,5327]],[[5151,5100,5101]],[[5154,5158,5100]],[[5006,5063,5004]],[[5021,5205,5063]],[[5205,5021,5023]],[[5063,5062,5021]],[[5204,5022,5169]],[[5021,5062,5022]],[[5327,5195,5370]],[[5377,5358,5378]],[[5039,5269,5055]],[[5039,4978,5269]],[[5342,5332,5331]],[[5368,5223,5224]],[[5293,5379,4909]],[[5286,5222,4912]],[[5331,5224,5285]],[[5332,5369,5224]],[[5380,5372,5375]],[[5135,5376,5372]],[[5003,5065,5019]],[[5002,5017,5065]],[[5378,4925,4926]],[[5354,5165,5352]],[[5271,5344,5268]],[[5266,5245,5267]],[[4975,4955,4987]],[[4975,4956,4955]],[[5372,5376,5058]],[[5381,5382,5333]],[[5241,5360,5235]],[[5247,5244,5360]],[[5143,5186,4893]],[[5280,5282,5186]],[[5379,5331,5285]],[[5293,5274,5331]],[[4954,5383,4860]],[[4954,4951,5383]],[[5148,5384,4897]],[[5330,5145,5290]],[[5174,5199,5043]],[[5043,5381,5044]],[[5204,5168,5023]],[[5061,5341,5205]],[[5023,5168,5205]],[[5170,5061,5168]],[[5006,5015,5062]],[[5333,5382,4973]],[[5062,5015,5206]],[[5005,5057,5015]],[[5022,5062,5199]],[[5382,5376,5135]],[[5385,5303,5166]],[[5385,4939,5356]],[[4878,4874,4944]],[[4950,4876,4874]],[[5143,5280,5186]],[[5143,5363,5280]],[[5199,5381,5043]],[[5382,5374,5376]],[[5338,5351,5345]],[[5347,4921,5351]],[[5148,5145,5329]],[[5330,5290,5291]],[[4982,5172,4987]],[[5044,5381,5333]],[[5386,5387,5201]],[[4961,5388,4867]],[[4817,4819,5221]],[[4818,4821,4819]],[[4909,5379,5285]],[[5293,5331,5379]],[[5258,5259,5361]],[[5253,5289,5259]],[[5046,5171,5059]],[[5046,5045,5171]],[[5378,4933,4925]],[[4935,5324,4925]],[[5228,5227,5211]],[[5220,5240,5123]],[[5220,5123,5227]],[[5240,5209,5123]],[[5146,5329,5291]],[[5329,5145,5330]],[[5384,5329,4897]],[[5384,5148,5329]],[[4943,4919,5098]],[[4943,4936,4919]],[[5343,4917,5275]],[[4919,4924,4917]],[[4884,4898,5147]],[[4897,5146,4898]],[[5378,5354,4933]],[[5353,5162,5354]],[[5389,5149,5148]],[[5389,4884,5149]],[[4897,5389,5148]],[[4897,4884,5389]],[[5055,5153,5102]],[[5269,5122,5153]],[[5131,5130,5175]],[[5093,5095,5076]],[[5241,5235,5230]],[[5360,5244,5235]],[[5100,5151,5154]],[[5101,5089,5151]],[[5045,5174,5043]],[[5200,5206,5374]],[[5339,5286,4911]],[[5224,5222,5286]],[[4891,5249,5272]],[[4946,4941,5270]],[[4885,5190,5110]],[[4895,4894,5190]],[[4944,4872,4951]],[[4875,4873,4872]],[[5290,4901,5223]],[[5290,4899,4901]],[[5010,5156,5155]],[[5265,5089,5156]],[[5305,5115,4891]],[[5305,5307,5115]],[[5236,5113,5229]],[[5115,5307,5113]],[[5087,5009,4969]],[[4986,4828,4827]],[[5285,5339,4909]],[[5285,5286,5339]],[[5335,4910,5337]],[[5349,5364,4930]],[[5284,5362,5287]],[[5284,4915,5362]],[[4963,5390,5391]],[[4841,5392,4839]],[[5393,5394,5395]],[[5396,5397,5388]],[[5398,5399,5386]],[[5400,4840,5401]],[[4850,4851,4849]],[[4854,4852,4851]],[[5167,4929,5096]],[[5160,4914,4929]],[[5199,5374,5381]],[[5206,5015,5373]],[[5058,5373,5015]],[[5376,5374,5373]],[[4825,4829,4828]],[[4825,4820,4829]],[[5342,5369,5332]],[[5342,5368,5369]],[[4973,5382,5135]],[[5381,5374,5382]],[[5303,5352,5165]],[[5303,5353,5352]],[[4863,4866,4847]],[[4869,4883,4866]],[[5396,5388,5394]],[[5402,4867,5388]],[[5249,4946,5270]],[[5115,5114,4946]],[[5205,5340,5063]],[[5403,5341,4979]],[[5009,4985,4827]],[[5009,5156,5010]],[[5404,5405,4967]],[[5406,5380,5014]],[[5265,5009,5087]],[[5265,5156,5009]],[[5359,5189,5188]],[[5359,5211,5189]],[[5340,4979,5004]],[[5340,5205,5403]],[[4892,5300,4890]],[[5300,5327,5325]],[[4850,4839,4962]],[[4843,5407,4842]],[[5408,5201,5387]],[[4958,4841,5400]],[[5386,5409,5387]],[[5410,5411,5412]],[[5039,5056,5067]],[[5035,5053,5056]],[[4910,5349,4930]],[[5339,4911,5349]],[[5413,4980,5014]],[[5414,5415,5416]],[[5417,5401,5418]],[[5013,5341,5419]],[[5334,4910,5335]],[[5334,5336,4910]],[[4881,4878,4945]],[[4877,4950,4878]],[[5325,5377,4926]],[[5196,5354,5420]],[[5397,5402,5388]],[[5397,4867,5402]],[[5421,4959,4958]],[[5422,5394,5388]],[[5392,4959,5423]],[[5395,5394,5424]],[[5425,5421,4958]],[[5423,5424,5426]],[[5400,4841,4840]],[[5426,5424,5422]],[[5427,5391,5421]],[[5391,5423,5421]],[[4839,5392,4962]],[[5424,5394,5422]],[[4960,5392,5426]],[[4841,4959,5392]],[[4863,5428,4866]],[[5383,4951,4868]],[[5022,5199,5169]],[[5200,5374,5199]],[[5046,5174,5045]],[[5169,5199,5174]],[[5404,5013,5419]],[[5404,5406,5013]],[[4890,5300,5325]],[[4892,4927,4888]],[[5409,5410,5387]],[[5202,5429,5430]],[[5386,5201,5398]],[[5203,4964,5201]],[[4851,4850,4854]],[[4962,4867,4850]],[[5421,5423,4959]],[[5390,5395,5423]],[[4960,5426,5422]],[[5392,5423,5426]],[[5431,5432,5415]],[[5202,5203,5408]],[[5387,5410,5408]],[[5416,5432,5430]],[[5171,5172,5042]],[[5044,5333,5172]],[[5433,4847,4865]],[[5433,4861,4847]],[[5404,4966,5406]],[[5380,5135,5372]],[[5406,4966,5434]],[[5404,5419,5405]],[[5418,4967,5415]],[[4966,5404,4967]],[[4968,5418,5401]],[[4968,4967,5418]],[[5393,4963,4965]],[[5393,5395,5390]],[[5340,5403,4979]],[[5205,5341,5403]],[[5413,4981,4980]],[[4979,5341,4980]],[[5005,4981,5375]],[[5005,4979,4981]],[[4805,5264,5071]],[[4805,5081,5264]],[[4856,4848,4858]],[[4850,4867,4848]],[[5392,4960,4962]],[[5422,5388,4961]],[[5408,5203,5201]],[[5408,5435,5202]],[[5380,5406,5434]],[[5014,5013,5406]],[[5353,5356,5162]],[[5303,5385,5356]],[[5408,5410,5435]],[[5436,5401,5417]],[[5418,5412,5417]],[[5410,5409,5436]],[[5415,5412,5418]],[[5436,5409,5401]],[[5380,5375,5014]],[[5375,4981,5413]],[[4966,4968,5434]],[[5401,5135,4968]],[[5430,5419,5341]],[[5430,5432,5405]],[[5130,5093,5078]],[[5095,5072,5076]],[[5326,5195,5327]],[[5163,5196,5195]],[[5383,5428,4860]],[[5428,4868,4866]],[[4925,4933,4935]],[[5354,5162,4933]],[[5425,5386,5399]],[[4958,5409,5386]],[[5129,5093,5130]],[[5129,5094,5093]],[[4860,5428,4863]],[[5383,4868,5428]],[[5377,5296,5358]],[[5197,5196,5296]],[[5410,5429,5435]],[[5415,5432,5416]],[[5429,5414,5430]],[[5414,5412,5415]],[[4963,5398,5201]],[[5427,5421,5399]],[[5219,5241,5240]],[[5238,5247,5241]],[[4892,4888,5300]],[[4927,4889,4888]],[[5423,5395,5424]],[[5390,4963,5393]],[[4805,5430,5341]],[[4805,4964,5430]],[[4968,5380,5434]],[[4968,5135,5380]],[[4882,4881,4949]],[[4945,5272,4948]],[[5378,5420,5354]],[[5358,5196,5420]],[[5377,5378,4926]],[[5358,5420,5378]],[[4963,5391,5427]],[[5390,5423,5391]],[[5396,5393,4965]],[[5396,5394,5393]],[[5272,5249,5270]],[[4891,5115,5249]],[[5271,4948,5272]],[[5271,4949,4948]],[[5243,4940,4942]],[[5266,5267,4940]],[[5005,5375,5057]],[[5413,5014,5375]],[[5421,5425,5399]],[[4958,5386,5425]],[[5431,5405,5432]],[[5419,5430,5405]],[[5409,5400,5401]],[[5409,4958,5400]],[[4940,5344,4941]],[[4940,5267,5344]],[[5429,5202,5435]],[[5430,4964,5202]],[[4835,4830,5033]],[[4832,4990,4830]],[[4828,4831,4825]],[[4828,4834,4831]],[[5297,5377,5325]],[[5297,5296,5377]],[[5370,5297,5325]],[[5370,5197,5297]],[[5410,5412,5414]],[[5411,5417,5412]],[[5430,5414,5416]],[[5429,5410,5414]],[[5398,5427,5399]],[[5398,4963,5427]],[[4967,5431,5415]],[[4967,5405,5431]],[[5198,5326,5371]],[[5198,5163,5326]],[[4962,4961,4867]],[[4960,5422,4961]],[[4845,4843,4839]],[[4845,5407,4843]],[[5308,5312,5315]],[[5313,5345,5312]],[[5237,5242,5243]],[[5279,5218,5242]],[[5411,5436,5417]],[[5411,5410,5436]],[[5300,4887,5301]],[[5300,4888,4887]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c1743cc-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efcc0b49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:56:35.000"},"geometry":[{"boundaries":[[[4879,4880,5437]],[[5438,5439,5385]],[[5440,5441,5442]],[[5440,5443,5444]],[[5445,5446,5447]],[[5448,5449,5446]],[[5450,5451,5452]],[[5450,5453,5454]],[[5455,5456,5457]],[[5455,5457,5458]],[[5459,5460,5461]],[[5460,5462,5461]],[[5463,5464,5465]],[[5466,5467,5468]],[[5467,5469,5468]],[[5470,5471,5472]],[[5473,5474,5475]],[[5476,5459,5461]],[[5466,5468,5465]],[[5469,4343,5468]],[[5461,5463,5465]],[[5477,5478,5479]],[[5464,5466,5465]],[[5480,5481,5482]],[[5462,5463,5461]],[[5483,5482,5484]],[[5485,5486,5487]],[[5459,5458,5460]],[[5455,5454,5456]],[[5450,5452,5453]],[[5488,5475,5489]],[[5446,5490,5448]],[[5490,5446,5491]],[[5491,5446,5445]],[[5447,5440,5492]],[[5440,5442,5443]],[[5488,5493,5441]],[[5493,5488,5494]],[[5488,5489,5495]],[[5475,5496,5489]],[[5497,5498,5499]],[[5496,5475,5500]],[[5500,5475,5474]],[[5475,5501,5473]],[[5475,5502,5501]],[[5503,5504,5505]],[[5506,5503,5505]],[[5507,5506,5505]],[[5508,5507,5505]],[[5509,5508,5505]],[[5510,5511,5512]],[[5513,5505,5514]],[[5514,5505,5515]],[[5515,5505,5516]],[[5517,5515,5516]],[[5518,5517,5516]],[[5519,5518,5516]],[[5517,5518,5520]],[[5520,5518,5521]],[[5521,5518,5522]],[[5522,5518,5523]],[[5518,5487,5524]],[[5525,5523,5518]],[[5526,5525,5518]],[[5527,5526,5518]],[[5528,5529,5483]],[[5530,5531,5532]],[[5485,5533,5486]],[[4927,5486,5534]],[[5535,5536,5537]],[[5538,5539,5540]],[[5541,5485,5487]],[[5542,5543,5544]],[[5302,5533,5545]],[[5546,5547,5548]],[[5549,5550,5551]],[[5299,5519,5552]],[[5553,5554,5555]],[[5556,5557,5542]],[[5552,5558,5299]],[[4855,5559,4853]],[[4842,5560,5561]],[[5562,5563,4869]],[[5558,5371,5328]],[[5556,5198,5564]],[[5565,5566,5567]],[[5166,5438,5385]],[[5565,5567,5568]],[[5569,4939,5570]],[[5571,5572,5573]],[[5570,4939,5385]],[[5574,5575,5576]],[[5577,5223,5368]],[[5578,5579,5580]],[[5581,5582,5583]],[[5584,5585,5586]],[[5587,5588,5551]],[[5589,5590,5591]],[[5592,5593,5594]],[[5581,5583,5595]],[[5563,4949,5596]],[[5563,4882,4949]],[[5563,5437,4882]],[[5437,4880,4882]],[[4879,5437,4877]],[[5437,4876,4950]],[[4873,4875,5562]],[[4873,5562,4870]],[[4870,5562,4871]],[[4871,5562,4869]],[[4864,4883,5597]],[[5597,4883,4869]],[[5563,5598,5597]],[[5597,4865,4864]],[[5599,5600,5576]],[[5601,5539,5602]],[[5603,4861,5433]],[[5604,5605,5606]],[[5598,5607,4858]],[[5608,5609,5610]],[[5559,5598,5611]],[[5607,5559,4855]],[[5612,5611,5613]],[[5614,5615,5616]],[[4853,5559,4854]],[[5617,5618,5619]],[[4852,4854,5620]],[[4852,5620,4849]],[[5621,5622,5623]],[[4844,4849,5620]],[[5620,5611,5624]],[[4845,4844,5624]],[[5561,5407,4845]],[[5625,5626,5627]],[[5539,5601,5540]],[[5539,5538,5608]],[[4836,5628,5001]],[[5629,5033,5032]],[[5629,5630,5033]],[[5617,5631,5618]],[[5033,5630,4835]],[[5632,5633,4814]],[[5634,5628,5635]],[[5628,4826,5001]],[[5628,4836,4835]],[[5636,5637,4804]],[[5638,5639,5622]],[[5640,4976,5103]],[[5639,5641,5622]],[[4976,5632,4821]],[[4821,5632,5221]],[[5221,5632,4817]],[[4817,5632,4814]],[[4814,5633,4815]],[[4815,5633,4811]],[[5642,5643,5623]],[[5623,5643,5621]],[[5510,5644,5645]],[[5646,5505,5513]],[[5646,5509,5505]],[[5511,5510,5647]],[[5504,5502,5505]],[[5494,5488,5495]],[[5648,5516,5505]],[[5492,5440,5444]],[[5505,5502,5475]],[[5451,5450,5449]],[[5488,5441,5440]],[[5440,5447,5446]],[[5455,5450,5454]],[[5446,5449,5450]],[[5649,5459,5476]],[[5650,5651,5645]],[[5458,5459,5455]],[[5649,5651,5652]],[[5459,5649,5652]],[[5651,5653,5652]],[[5651,5650,5653]],[[5645,5644,5650]],[[5510,5645,5654]],[[5645,5655,5654]],[[5655,5656,5654]],[[5657,5629,5658]],[[5659,5660,5661]],[[5662,5661,5660]],[[5663,5135,5616]],[[5606,5659,5661]],[[5659,5664,5660]],[[5665,5666,5617]],[[5665,4811,5631]],[[5667,5668,5669]],[[5606,5629,5032]],[[5616,5662,5664]],[[5614,5670,5615]],[[5615,5671,5605]],[[5657,5635,5629]],[[5616,5664,5663]],[[5662,5660,5664]],[[5608,5672,5616]],[[5673,5668,5614]],[[5638,5674,5675]],[[5676,5677,5678]],[[5679,5680,5628]],[[5628,4835,5630]],[[5681,5682,5683]],[[5634,5679,5628]],[[5631,5617,5666]],[[5684,5677,5685]],[[5673,5614,5616]],[[5686,5687,5688]],[[4811,5665,5636]],[[4811,5633,5631]],[[5539,5608,5616]],[[5672,5673,5616]],[[5604,5606,5661]],[[5032,5135,5663]],[[5032,5689,5606]],[[5032,5659,5689]],[[5627,5677,5690]],[[5691,5641,5639]],[[5627,5692,5685]],[[5627,5685,5677]],[[5693,5694,5609]],[[5671,5695,5605]],[[5668,5696,5614]],[[5687,5694,5688]],[[5696,5697,5670]],[[5668,5667,5698]],[[5610,5669,5672]],[[5610,5667,5669]],[[5632,5640,5693]],[[5640,5103,4826]],[[5681,5683,5657]],[[5699,5679,5634]],[[5693,5682,5694]],[[5695,5657,5658]],[[5691,5639,5700]],[[5691,5678,5641]],[[4811,5636,4804]],[[5636,5619,5678]],[[5636,5684,5637]],[[5636,5678,5684]],[[5637,5685,5692]],[[5637,5684,5685]],[[5625,5701,5626]],[[4804,5637,5692]],[[5675,5701,5702]],[[5626,5703,5627]],[[5625,5702,5701]],[[5703,4804,5692]],[[5704,5702,5705]],[[5700,5675,5702]],[[5690,5705,5627]],[[5690,5704,5705]],[[5638,5675,5700]],[[5638,5621,5674]],[[5694,5682,5688]],[[5683,5634,5657]],[[5706,5707,5536]],[[5708,5590,5709]],[[5710,5711,5712]],[[5713,5714,5715]],[[5586,5716,5717]],[[5712,5711,5718]],[[5662,5604,5661]],[[5658,5629,5605]],[[5616,5615,5604]],[[5670,5697,5687]],[[5670,5687,5615]],[[5686,5681,5695]],[[5615,5687,5671]],[[5697,5694,5687]],[[5705,5625,5627]],[[5705,5702,5625]],[[5693,5640,5679]],[[5632,4976,5640]],[[5719,5710,5720]],[[5547,5546,5721]],[[5617,5636,5665]],[[5617,5619,5636]],[[5684,5678,5677]],[[5619,5641,5678]],[[5675,5674,5701]],[[5621,4804,5674]],[[5702,5704,5700]],[[5690,5676,5704]],[[5722,5600,5723]],[[5722,5574,5576]],[[5724,5725,5726]],[[5727,5588,5728]],[[5554,5723,5729]],[[5730,5731,5732]],[[5708,5733,5555]],[[5734,5735,5714]],[[5736,5580,5728]],[[5550,5549,5737]],[[5736,5728,5738]],[[5739,5740,5583]],[[5551,5741,5587]],[[5742,5743,5248]],[[5744,5667,5609]],[[5698,5744,5696]],[[5744,5698,5667]],[[5744,5697,5696]],[[5745,5746,5747]],[[5748,5531,5749]],[[5693,5683,5682]],[[5693,5679,5699]],[[5683,5699,5634]],[[5683,5693,5699]],[[5750,5716,5751]],[[5728,5588,5587]],[[5752,5751,5732]],[[5584,5717,5753]],[[5731,5752,5732]],[[5753,5754,5755]],[[5751,5716,5756]],[[5720,5757,5719]],[[5758,5717,5716]],[[5759,5147,5760]],[[5761,5578,5580]],[[5579,5595,5762]],[[5758,5763,5717]],[[5754,5281,5755]],[[5587,5738,5728]],[[5732,5736,5738]],[[5669,5673,5672]],[[5669,5668,5673]],[[5640,5680,5679]],[[5640,4826,5628]],[[5764,5765,5567]],[[5766,5571,5767]],[[5768,5769,5770]],[[5498,5771,5499]],[[5674,5626,5701]],[[5674,4804,5626]],[[5627,5703,5692]],[[5626,4804,5703]],[[5608,5610,5672]],[[5609,5667,5610]],[[5772,5709,5773]],[[5774,5588,5727]],[[5761,5580,5736]],[[5736,5751,5756]],[[5749,5721,5775]],[[5290,5223,5775]],[[5710,5548,5711]],[[5546,5776,5290]],[[5695,5681,5657]],[[5688,5682,5681]],[[5777,5778,5779]],[[5747,5746,5780]],[[5738,5730,5732]],[[5781,5248,5217]],[[5773,5739,5583]],[[5782,5783,5727]],[[5135,5539,5616]],[[5538,5609,5608]],[[5547,5721,5749]],[[5721,5290,5775]],[[5547,5749,5531]],[[5775,5223,5577]],[[5532,5784,5530]],[[5749,5775,5577]],[[5767,5785,5766]],[[5786,5787,5788]],[[5572,5766,5789]],[[5790,5748,5791]],[[5605,5695,5658]],[[5671,5687,5686]],[[5681,5686,5688]],[[5695,5671,5686]],[[5694,5744,5609]],[[5694,5697,5744]],[[5792,5793,5794]],[[5766,5785,5795]],[[5536,5707,5796]],[[5706,5797,5707]],[[5787,5795,5532]],[[5748,5749,5791]],[[5766,5795,5787]],[[5798,5799,5800]],[[5659,5663,5664]],[[5659,5032,5663]],[[5732,5751,5736]],[[5752,5750,5751]],[[5801,5802,5750]],[[5752,5731,5750]],[[5725,5803,5804]],[[5805,5750,5804]],[[5806,5763,5803]],[[5758,5750,5805]],[[5757,5720,5807]],[[5581,5595,5579]],[[5712,5720,5710]],[[5712,5718,5808]],[[5809,5810,5742]],[[5743,5271,5248]],[[5742,5724,5809]],[[5801,5750,5731]],[[5811,5566,5812]],[[5813,5814,5707]],[[5815,5765,5764]],[[4924,4923,5569]],[[5166,5816,5817]],[[5818,5569,5570]],[[5819,5815,5764]],[[5814,5536,5796]],[[5820,5818,5570]],[[5821,5822,5820]],[[5707,5770,5813]],[[5484,5482,5821]],[[5439,5570,5385]],[[5569,5765,4924]],[[5724,5823,5725]],[[5803,5805,5804]],[[5802,5801,5809]],[[5802,5804,5750]],[[5809,5730,5592]],[[5801,5731,5730]],[[5792,5794,5824]],[[5793,5825,5794]],[[5788,5787,5532]],[[5720,5808,5826]],[[5827,5788,5790]],[[5532,5531,5828]],[[5635,5628,5630]],[[5680,5640,5628]],[[5629,5635,5630]],[[5657,5634,5635]],[[5829,5729,5590]],[[5729,5591,5590]],[[5704,5691,5700]],[[5704,5678,5691]],[[5592,5830,5809]],[[4949,5271,5830]],[[5730,5809,5801]],[[5830,5810,5809]],[[5603,4857,4862]],[[5596,5723,5613]],[[5743,5742,5810]],[[5831,5823,5724]],[[5832,5811,5812]],[[5764,5567,5566]],[[5833,5812,5834]],[[5835,5735,5832]],[[5715,5836,5713]],[[5819,5275,5815]],[[5835,5832,5812]],[[5735,5837,5811]],[[5614,5696,5670]],[[5668,5698,5696]],[[5542,5544,5838]],[[5834,5839,5537]],[[5519,5516,5470]],[[5817,5528,5438]],[[5518,5840,5527]],[[5516,5841,5511]],[[5572,5571,5766]],[[5767,5799,5785]],[[5842,5544,5843]],[[5438,5844,5439]],[[5845,5846,5842]],[[5847,5779,5848]],[[5849,5756,5716]],[[5761,5736,5756]],[[5281,5850,5217]],[[5763,5758,5803]],[[5795,5784,5532]],[[5795,5785,5851]],[[5543,5542,5845]],[[5852,5853,5558]],[[5659,5606,5689]],[[5605,5629,5606]],[[5850,5806,5781]],[[5831,5742,5248]],[[5248,5781,5823]],[[5806,5803,5725]],[[5854,5806,5855]],[[5856,5754,5763]],[[5855,5725,5823]],[[5726,5809,5724]],[[5580,5857,5858]],[[5580,5579,5857]],[[5812,5833,5835]],[[5834,5814,5833]],[[5594,5593,5859]],[[5730,5738,5593]],[[5576,5600,5722]],[[5601,5611,5612]],[[5860,5816,5838]],[[5557,5861,5542]],[[5555,5780,5746]],[[5555,5573,5780]],[[5551,5862,5741]],[[5863,5830,5592]],[[5864,5865,5866]],[[5867,5868,5869]],[[5755,5864,5584]],[[5760,5870,5719]],[[5800,5871,5733]],[[5772,5773,5583]],[[5872,5873,5772]],[[5873,5708,5709]],[[5874,5771,5827]],[[5875,5794,5825]],[[5830,5863,4949]],[[5741,5859,5587]],[[5864,5866,5585]],[[5876,5877,5866]],[[5704,5676,5678]],[[5690,5677,5676]],[[5726,5725,5804]],[[5855,5806,5725]],[[5537,5839,5565]],[[5878,5779,5778]],[[5879,5565,5568]],[[5567,5765,5568]],[[5553,5722,5554]],[[5553,5574,5722]],[[5597,5433,4865]],[[5596,5729,5723]],[[5880,5439,5844]],[[5880,5820,5439]],[[5853,5861,5564]],[[5881,5542,5861]],[[5557,5564,5861]],[[5198,5371,5853]],[[5558,5882,5852]],[[5552,5542,5881]],[[5861,5852,5881]],[[5853,5371,5558]],[[5480,5883,5481]],[[5848,5779,5878]],[[5833,5715,5835]],[[5833,5814,5836]],[[5884,5885,5886]],[[5516,5648,5841]],[[5875,5825,5787]],[[5793,5789,5825]],[[5861,5853,5852]],[[5564,5198,5853]],[[5551,5550,5862]],[[5551,5774,5549]],[[5470,5478,5878]],[[5552,5846,5845]],[[5843,5543,5845]],[[5843,5544,5543]],[[5778,5886,5887]],[[5884,5822,5885]],[[5888,5578,5877]],[[5581,5579,5578]],[[5739,5589,5889]],[[5862,5596,5741]],[[5890,5576,5575]],[[5890,5612,5613]],[[5589,5709,5590]],[[5873,5733,5708]],[[5870,5891,5719]],[[5892,5548,5710]],[[5871,5800,5799]],[[5798,5808,5893]],[[5871,5799,5767]],[[5808,5894,5826]],[[5795,5851,5784]],[[5785,5799,5851]],[[5865,5757,5868]],[[5869,5826,5872]],[[5535,5745,5824]],[[5895,5896,5553]],[[5707,5814,5796]],[[5834,5537,5814]],[[5824,5745,5897]],[[5535,5895,5745]],[[5711,5548,5547]],[[5892,5898,5776]],[[5755,5759,5760]],[[5281,5147,5759]],[[5888,5581,5578]],[[5867,5582,5581]],[[5899,5714,5713]],[[5715,5833,5836]],[[5875,5768,5770]],[[5836,5814,5813]],[[5299,5558,5328]],[[5299,5301,5519]],[[5549,5774,5889]],[[5740,5595,5583]],[[5580,5858,5728]],[[5774,5551,5588]],[[5858,5782,5727]],[[5739,5889,5783]],[[5665,5631,5666]],[[5633,5618,5631]],[[5849,5877,5761]],[[5876,5888,5877]],[[5789,5792,5897]],[[5706,5536,5535]],[[5529,5528,5817]],[[5880,5844,5528]],[[5838,5544,5900]],[[5544,5842,5900]],[[5860,5480,5901]],[[5860,5900,5480]],[[4924,5815,5275]],[[4924,5765,5815]],[[5735,5734,5902]],[[5903,5275,5904]],[[5275,5819,5904]],[[5764,5566,5837]],[[5905,5837,5735]],[[5905,5819,5837]],[[5900,5860,5838]],[[5556,5164,5198]],[[5786,5768,5787]],[[5797,5706,5794]],[[5745,5789,5897]],[[5766,5825,5789]],[[5639,5638,5700]],[[5622,5621,5638]],[[5794,5706,5824]],[[5794,5875,5797]],[[5593,5592,5730]],[[5594,5863,5592]],[[5763,5754,5753]],[[5856,5281,5754]],[[5586,5849,5716]],[[5866,5877,5849]],[[5164,5816,5166]],[[5901,5480,5529]],[[5799,5798,5851]],[[5800,5733,5798]],[[5728,5858,5727]],[[5762,5595,5740]],[[5783,5782,5739]],[[5858,5857,5740]],[[5887,5885,5778]],[[5887,5886,5885]],[[5735,5811,5832]],[[5837,5566,5811]],[[5573,5767,5571]],[[5573,5871,5767]],[[5753,5755,5584]],[[5281,5759,5755]],[[5791,5874,5827]],[[5734,5498,5906]],[[5749,5577,5791]],[[5907,5499,5874]],[[5497,5907,5368]],[[5874,5791,5907]],[[5907,5577,5368]],[[5907,5791,5577]],[[5497,5499,5907]],[[5771,5874,5499]],[[5531,5718,5711]],[[5893,5851,5798]],[[5770,5797,5875]],[[5770,5707,5797]],[[5828,5788,5532]],[[5825,5766,5787]],[[5616,5604,5662]],[[5615,5605,5604]],[[5908,5708,5555]],[[5554,5829,5708]],[[5746,5553,5555]],[[5722,5723,5554]],[[5817,5438,5166]],[[5528,5844,5438]],[[5146,5870,5147]],[[5146,5891,5870]],[[5876,5868,5867]],[[5826,5894,5872]],[[5582,5869,5872]],[[5807,5720,5826]],[[5868,5826,5869]],[[5720,5712,5808]],[[5729,5737,5591]],[[5729,5596,5862]],[[5737,5862,5550]],[[5737,5729,5862]],[[5857,5762,5740]],[[5857,5579,5762]],[[5530,5893,5808]],[[5909,5894,5808]],[[5739,5773,5589]],[[5583,5910,5772]],[[5549,5589,5591]],[[5773,5709,5589]],[[5789,5747,5572]],[[5789,5745,5747]],[[5780,5572,5747]],[[5780,5573,5572]],[[5897,5792,5824]],[[5789,5793,5792]],[[5589,5549,5889]],[[5591,5737,5549]],[[5830,5911,5810]],[[5830,5271,5743]],[[5868,5807,5826]],[[5868,5876,5865]],[[5868,5757,5807]],[[5898,5891,5776]],[[5554,5908,5555]],[[5554,5708,5908]],[[5835,5714,5735]],[[5835,5715,5714]],[[5583,5582,5910]],[[5867,5869,5582]],[[5902,5903,5904]],[[5276,5275,5903]],[[5790,5788,5828]],[[5827,5786,5788]],[[5718,5530,5808]],[[5784,5851,5893]],[[5771,5786,5827]],[[5899,5713,5769]],[[5901,5529,5817]],[[5480,5483,5529]],[[5146,5776,5891]],[[5146,5290,5776]],[[5719,5898,5710]],[[5776,5548,5892]],[[5863,5741,5596]],[[5594,5859,5741]],[[5582,5872,5910]],[[5894,5909,5733]],[[4857,5603,4858]],[[5613,5576,5890]],[[4844,5620,5624]],[[5601,5612,5912]],[[5559,5611,5620]],[[5598,5613,5611]],[[5866,5865,5876]],[[5760,5147,5870]],[[5837,5819,5764]],[[5905,5904,5819]],[[5750,5758,5716]],[[5805,5803,5758]],[[5845,5842,5843]],[[5846,5900,5842]],[[5867,5888,5876]],[[5867,5581,5888]],[[5827,5790,5791]],[[5828,5748,5790]],[[5812,5839,5834]],[[5812,5566,5565]],[[5555,5871,5573]],[[5733,5872,5894]],[[5555,5733,5871]],[[5873,5872,5733]],[[5776,5546,5548]],[[5290,5721,5546]],[[5823,5831,5248]],[[5724,5742,5831]],[[5906,5498,5368]],[[5498,5714,5771]],[[5368,5498,5497]],[[5276,5903,5902]],[[5902,5734,5276]],[[5714,5498,5734]],[[5276,5906,5368]],[[5276,5734,5906]],[[5813,5769,5836]],[[5899,5786,5771]],[[5836,5769,5713]],[[5813,5770,5769]],[[5854,5781,5806]],[[5217,5850,5781]],[[4856,5607,4855]],[[4856,4858,5607]],[[5528,5483,5880]],[[5480,5482,5483]],[[5740,5782,5858]],[[5740,5739,5782]],[[5872,5772,5910]],[[5873,5709,5772]],[[5798,5909,5808]],[[5798,5733,5909]],[[5865,5719,5757]],[[5865,5864,5760]],[[5710,5898,5892]],[[5719,5891,5898]],[[5865,5760,5719]],[[5864,5755,5760]],[[5547,5531,5711]],[[5748,5828,5531]],[[5407,5560,4842]],[[5561,4845,5624]],[[5613,5599,5576]],[[5723,5600,5599]],[[5900,5883,5480]],[[5481,5913,5482]],[[5726,5802,5809]],[[5726,5804,5802]],[[4858,5603,5598]],[[4862,4861,5603]],[[5901,5816,5860]],[[5901,5817,5816]],[[5557,5556,5564]],[[5816,5164,5556]],[[5823,5854,5855]],[[5823,5781,5854]],[[5765,5569,5568]],[[4923,4939,5569]],[[5849,5761,5756]],[[5877,5578,5761]],[[5864,5585,5584]],[[5866,5849,5585]],[[5584,5586,5717]],[[5585,5849,5586]],[[5905,5902,5904]],[[5905,5735,5902]],[[5556,5838,5816]],[[5556,5542,5838]],[[5900,5481,5883]],[[5885,5913,5481]],[[5531,5530,5718]],[[5784,5893,5530]],[[5850,5856,5806]],[[5753,5717,5763]],[[5806,5856,5763]],[[5850,5281,5856]],[[5783,5774,5727]],[[5783,5889,5774]],[[5569,5818,5568]],[[5839,5812,5565]],[[5478,5477,5878]],[[5647,5516,5511]],[[5647,5510,5914]],[[5512,5644,5510]],[[5654,5647,5914]],[[5470,5516,5647]],[[5563,5613,5598]],[[5723,5599,5613]],[[5777,5779,5535]],[[5536,5814,5537]],[[5778,5777,5884]],[[5777,5565,5879]],[[5439,5820,5570]],[[5879,5568,5818]],[[5741,5863,5594]],[[5596,4949,5863]],[[5603,5433,5597]],[[4875,4876,5437]],[[5593,5587,5859]],[[5593,5738,5587]],[[5545,5533,5485]],[[5533,5534,5486]],[[4889,5533,5302]],[[4889,5534,5533]],[[5510,5654,5914]],[[5656,5471,5470]],[[5786,5899,5769]],[[5771,5714,5899]],[[5537,5565,5777]],[[5847,5896,5779]],[[5895,5535,5779]],[[5824,5706,5535]],[[5787,5768,5875]],[[5786,5769,5768]],[[5484,5820,5880]],[[5879,5818,5820]],[[5483,5484,5880]],[[5482,5913,5821]],[[5484,5821,5820]],[[5913,5885,5822]],[[5911,5743,5810]],[[5911,5830,5743]],[[4840,5915,5401]],[[5561,5560,5407]],[[5848,5878,5479]],[[5656,5470,5654]],[[5885,5519,5778]],[[5885,5846,5519]],[[5552,5519,5846]],[[5301,5302,5518]],[[5542,5552,5845]],[[5882,5558,5552]],[[5881,5882,5552]],[[5881,5852,5882]],[[5301,5518,5519]],[[5524,5840,5518]],[[5518,5545,5487]],[[5518,5302,5545]],[[5601,5624,5611]],[[5915,4840,5561]],[[5915,5561,5624]],[[4840,4842,5561]],[[5537,5777,5535]],[[5879,5884,5777]],[[5778,5884,5886]],[[5822,5821,5913]],[[5879,5822,5884]],[[5879,5820,5822]],[[5745,5553,5746]],[[5896,5574,5553]],[[5540,5601,5912]],[[5915,5624,5601]],[[5896,5895,5779]],[[5553,5745,5895]],[[4854,5559,5620]],[[5607,5598,5559]],[[5603,5597,5598]],[[5437,4950,4877]],[[5613,5563,5596]],[[5597,4869,5563]],[[5562,5437,5563]],[[5562,4875,5437]],[[5472,5478,5470]],[[5472,5479,5478]],[[5885,5900,5846]],[[5885,5481,5900]],[[5915,5602,5401]],[[5915,5601,5602]],[[5479,5878,5477]],[[5470,5647,5654]],[[5401,5539,5135]],[[5401,5602,5539]],[[5708,5829,5590]],[[5554,5729,5829]],[[5545,5541,5487]],[[5545,5485,5541]],[[5778,5470,5878]],[[5778,5519,5470]],[[4348,4343,5469]],[[5467,4799,4348]],[[5467,4348,5469]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c176ae8-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.407ee0b5c4684c8baa3e2a326ead6088","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5916,5917,5918]],[[5919,5920,5921]],[[5922,5919,5921]],[[5923,5922,5924]],[[5925,5926,5927]],[[5928,5927,5926]],[[5929,5928,5926]],[[5930,5931,5926]],[[5932,5933,5934]],[[5935,5933,5932]],[[5936,5932,5937]],[[5938,5939,5940]],[[5941,5942,5927]],[[5943,5944,5945]],[[5946,5947,5948]],[[5948,5943,5949]],[[5949,5950,5951]],[[5951,5950,5952]],[[5949,5943,5950]],[[5950,5943,5945]],[[5947,5953,5943]],[[5954,5955,5956]],[[5948,5947,5943]],[[5957,5958,5959]],[[5960,5947,5946]],[[5961,5962,5963]],[[5964,5965,5966]],[[5931,5929,5926]],[[5967,5968,5969]],[[5970,5971,5972]],[[5973,5974,5975]],[[5971,5970,5976]],[[5977,5978,5979]],[[5980,5981,5982]],[[5983,5976,5984]],[[5985,5986,5987]],[[5963,5988,5989]],[[5990,5955,5991]],[[5992,5993,5956]],[[5935,5994,5933]],[[5995,5996,5997]],[[5942,5996,5925]],[[5927,5942,5925]],[[5941,5924,5942]],[[5941,5923,5924]],[[5922,5921,5924]],[[5920,5918,5917]],[[5920,5917,5921]],[[5916,5994,5935]],[[5998,5999,5917]],[[6000,6001,6002]],[[6003,6004,6005]],[[6006,5971,5976]],[[5986,5974,5987]],[[5983,6007,6006]],[[5970,6008,6009]],[[6010,6011,6012]],[[6013,6014,6010]],[[5987,5974,6004]],[[5970,5972,6008]],[[6015,6016,6017]],[[6010,6014,6018]],[[6019,6020,6021]],[[6022,5926,5947]],[[5972,6012,6008]],[[5984,6023,6024]],[[6010,5971,6013]],[[6006,6007,6025]],[[6026,6027,6028]],[[6022,6029,6030]],[[5983,5984,6031]],[[6032,5981,6033]],[[6034,5978,6035]],[[6036,6037,6038]],[[6039,6040,6034]],[[6005,6004,5974]],[[6036,6041,6042]],[[6043,6044,6045]],[[6046,6047,6048]],[[6049,6050,6051]],[[6012,6011,6052]],[[6053,6054,6055]],[[6056,6057,6058]],[[6059,6030,6060]],[[6052,6061,6012]],[[6017,6016,6029]],[[6062,6063,6064]],[[6065,6066,6067]],[[6068,6069,6070]],[[6071,6072,6073]],[[6074,6058,6070]],[[6075,6021,6076]],[[6068,6070,6057]],[[6063,6077,6064]],[[6062,6078,6063]],[[6079,6080,6081]],[[6069,6082,6083]],[[6084,6085,6063]],[[6086,6087,6082]],[[6088,6063,6085]],[[6089,6074,6090]],[[6091,6063,6088]],[[6092,6074,6093]],[[6069,6068,6086]],[[6077,6091,6094]],[[6071,6073,6095]],[[6040,6037,5979]],[[5976,5970,6009]],[[6096,6097,6040]],[[6098,6099,6100]],[[6088,6072,6101]],[[6102,6094,6101]],[[6103,6104,6060]],[[6072,6088,6083]],[[6105,6106,6107]],[[6108,6109,5997]],[[6000,6002,6110]],[[6054,6111,6112]],[[6113,5961,6114]],[[6015,6115,6116]],[[6117,6118,6119]],[[6093,6069,6083]],[[6103,6120,6121]],[[6121,6083,6087]],[[6069,6086,6082]],[[6122,6030,6086]],[[6082,6087,6083]],[[6048,6059,6060]],[[6083,6121,6073]],[[6047,6086,6030]],[[6123,6124,6125]],[[6126,6127,6128]],[[6035,6126,6129]],[[6124,6130,5981]],[[6013,6025,6014]],[[6131,5975,6029]],[[6041,6132,6133]],[[6099,6024,6134]],[[6119,6089,6085]],[[6070,6069,6093]],[[5987,6017,6022]],[[6081,6110,6051]],[[6083,6073,6072]],[[6067,6135,6136]],[[6137,6039,6034]],[[6037,5977,5979]],[[6138,6018,6014]],[[6139,6140,6141]],[[6142,6143,6144]],[[5958,5998,5959]],[[6144,6145,6142]],[[6146,6106,6105]],[[6106,6147,6143]],[[6148,6109,6149]],[[6108,6150,6149]],[[6151,6147,6146]],[[6152,6058,6089]],[[6080,6079,6111]],[[6051,6153,6154]],[[6155,6002,6054]],[[6051,6154,6049]],[[6156,6155,6157]],[[6081,6080,6001]],[[6158,6119,6085]],[[6159,6118,6160]],[[6074,6070,6093]],[[6158,6117,6119]],[[6058,6057,6070]],[[6092,6090,6074]],[[6119,6152,6089]],[[6118,6056,6152]],[[6118,6159,6056]],[[6161,6162,6163]],[[5980,6124,5981]],[[6163,6125,6164]],[[6164,5982,6032]],[[6165,6166,6031]],[[6038,6041,6036]],[[6035,5978,6126]],[[5978,5977,6126]],[[6098,6167,6096]],[[6007,6161,6025]],[[6144,6168,6145]],[[6107,6106,6143]],[[6169,6170,6171]],[[6172,6173,6174]],[[6142,6171,6105]],[[6175,6176,5925]],[[6177,6178,6021]],[[6076,6021,6020]],[[6110,6002,6155]],[[6179,6180,6178]],[[6181,6182,6183]],[[6184,6163,6164]],[[6185,6182,6181]],[[6186,6187,6188]],[[6182,6185,6189]],[[6141,6190,6191]],[[6192,6189,5968]],[[6188,6190,5975]],[[6193,6194,6195]],[[6196,6197,6198]],[[6199,6182,6192]],[[6181,6200,6139]],[[6140,6190,6141]],[[6032,5982,5981]],[[6201,6183,6202]],[[5968,6193,5969]],[[6112,6203,6055]],[[6078,6204,6158]],[[6010,6018,6011]],[[6014,6025,6138]],[[5977,6127,6126]],[[6041,6133,6205]],[[6124,6035,6130]],[[6206,6044,6042]],[[6130,6035,6129]],[[6124,6123,6034]],[[5981,6130,6033]],[[6128,6127,6207]],[[6208,6129,6128]],[[6209,6208,6128]],[[6206,6042,6205]],[[6133,6003,6205]],[[6127,6036,6043]],[[6210,6005,5974]],[[6127,6043,6207]],[[6211,5974,5973]],[[6212,6045,6206]],[[6042,6041,6205]],[[6043,6042,6044]],[[6127,5977,6036]],[[6094,6076,6213]],[[6214,6215,6203]],[[6216,6217,6020]],[[6213,6064,6094]],[[6121,6218,6103]],[[6121,6087,6218]],[[5936,5959,5932]],[[6219,5964,5966]],[[6151,6220,6173]],[[5937,6176,6173]],[[6150,6174,6148]],[[6221,6222,6223]],[[6150,6147,6174]],[[6147,6106,6146]],[[6034,6123,6137]],[[6034,6035,6124]],[[6224,6007,5983]],[[6006,5976,5983]],[[6137,6161,6039]],[[6163,6184,6025]],[[6166,5983,6031]],[[6166,6098,6096]],[[6225,6226,6227]],[[6227,5931,5930]],[[6157,6065,6228]],[[6177,6179,6178]],[[6190,6164,6229]],[[6230,6043,6045]],[[6231,6208,5973]],[[6208,6130,6129]],[[6232,6027,6026]],[[5967,6199,6192]],[[5984,6024,6031]],[[5984,5976,6023]],[[6061,6052,6115]],[[6061,6008,6012]],[[6026,6115,6052]],[[6195,6194,6197]],[[6233,6208,6209]],[[6129,6126,6128]],[[6234,6235,6168]],[[6169,6171,6145]],[[6044,6206,6045]],[[6206,6205,6236]],[[6206,6236,6212]],[[6205,6003,6005]],[[6210,6045,6212]],[[6237,5974,6211]],[[6209,6207,5973]],[[6209,6128,6207]],[[6237,6210,5974]],[[6236,6205,6005]],[[6184,6138,6025]],[[6184,6200,6138]],[[6081,6001,6110]],[[6001,6111,6002]],[[6202,6183,6182]],[[6200,6184,6139]],[[6185,6181,6141]],[[6238,6018,6200]],[[6027,6232,6239]],[[6011,6018,6201]],[[6183,6238,6181]],[[6018,6138,6200]],[[6181,6238,6200]],[[6183,6201,6238]],[[5936,5964,6240]],[[5938,6241,6108]],[[6242,5965,5964]],[[6143,6150,6108]],[[5938,6108,5939]],[[6149,6109,6108]],[[6107,6142,6105]],[[6243,6244,6245]],[[6246,6244,6243]],[[6247,6245,6171]],[[6150,6148,6149]],[[6174,6248,6221]],[[5939,6108,5997]],[[6109,6221,6223]],[[5939,5997,5996]],[[6223,6176,6175]],[[6197,6194,6249]],[[5968,6189,6187]],[[6185,6191,6189]],[[6188,5975,6250]],[[5968,6187,6193]],[[6191,6190,6188]],[[6251,6250,5975]],[[6186,6193,6187]],[[6252,6197,6249]],[[6194,6193,6186]],[[6198,6253,6196]],[[6028,6115,6026]],[[6254,6015,6116]],[[6254,5969,6255]],[[6207,6256,6257]],[[6207,6043,6256]],[[6210,6230,6045]],[[6256,6043,6230]],[[6207,6257,5973]],[[6256,6230,6257]],[[6120,6095,6073]],[[6021,6258,6259]],[[6019,6021,6178]],[[6075,6102,6260]],[[6261,6021,6259]],[[6020,6062,6213]],[[6072,6102,6101]],[[6102,6071,6260]],[[6102,6076,6094]],[[6075,6258,6021]],[[6020,6213,6076]],[[6062,6064,6213]],[[6102,6075,6076]],[[6102,6072,6071]],[[6104,6046,6048]],[[6030,6029,6060]],[[6103,6218,6046]],[[6087,6086,6218]],[[6056,6159,6081]],[[6110,6153,6051]],[[6262,6263,6049]],[[6225,6227,6050]],[[6156,6157,6228]],[[6065,6226,6228]],[[6189,6191,6187]],[[6185,6141,6191]],[[5993,5954,5956]],[[6264,6265,6266]],[[6262,6156,6228]],[[6267,6268,6157]],[[6153,6156,6154]],[[6155,6267,6157]],[[5930,6050,6227]],[[6263,6225,6050]],[[6043,6036,6042]],[[5977,6037,6036]],[[6229,5973,5975]],[[6233,6209,5973]],[[6033,6231,6229]],[[6033,6130,6231]],[[5973,6208,6233]],[[6231,6130,6208]],[[6257,6269,6211]],[[6257,6230,6269]],[[6232,6202,6239]],[[6182,6189,6192]],[[6199,6202,6182]],[[6232,6201,6202]],[[5968,5967,6192]],[[6239,6202,6199]],[[6125,5980,5982]],[[6125,6124,5980]],[[6061,6015,6017]],[[6061,6115,6015]],[[6122,6086,6068]],[[6068,6057,6056]],[[6203,6112,6078]],[[6062,6020,6214]],[[6083,6092,6093]],[[6089,6058,6074]],[[6088,6092,6083]],[[6090,6085,6089]],[[6022,6081,6051]],[[6159,6160,6081]],[[5966,5940,5957]],[[5939,5958,5957]],[[6219,5966,5959]],[[5965,6242,5938]],[[6047,6030,6059]],[[6122,6022,6030]],[[6270,6137,6123]],[[6270,6162,6137]],[[6168,6235,6271]],[[6272,6246,6169]],[[5936,6234,5964]],[[6273,6274,6275]],[[6234,6168,5964]],[[6144,6108,6241]],[[6242,6241,5938]],[[6242,6168,6144]],[[5966,5938,5940]],[[5966,5965,5938]],[[6249,6186,6250]],[[6249,6194,6186]],[[6088,6090,6092]],[[6088,6085,6090]],[[6041,6038,6132]],[[6166,6165,6098]],[[6097,6167,6132]],[[6132,6003,6133]],[[6103,6071,6095]],[[6258,6136,6259]],[[6140,6164,6190]],[[6140,6139,6164]],[[5955,6276,6277]],[[5962,5961,6278]],[[6279,6280,6281]],[[6100,6004,6003]],[[5956,5963,6282]],[[5956,5955,5990]],[[6109,6223,5997]],[[5925,5996,5995]],[[5995,6223,6283]],[[6221,6148,6174]],[[6279,6277,6280]],[[6266,5985,5987]],[[6284,6276,5993]],[[6276,6280,6277]],[[5962,6266,5947]],[[6099,6098,6024]],[[6061,6009,6008]],[[6023,5976,6009]],[[6278,6285,5962]],[[6266,6265,5985]],[[6278,5961,6113]],[[6281,6280,6286]],[[5972,6010,6012]],[[5972,5971,6010]],[[6100,5987,6004]],[[6266,6287,6264]],[[6214,6203,6078]],[[6079,6081,6160]],[[6063,6078,6084]],[[6160,6118,6117]],[[6155,6053,6180]],[[6215,6214,6217]],[[6053,6216,6019]],[[6217,6214,6020]],[[6174,6147,6172]],[[6150,6143,6147]],[[6260,6258,6075]],[[6060,6136,6258]],[[6103,6260,6071]],[[6060,6258,6260]],[[6100,6099,6134]],[[6100,6003,6098]],[[6262,6225,6263]],[[6228,6226,6225]],[[6121,6120,6073]],[[6046,6104,6103]],[[6288,6253,6198]],[[6289,6015,6196]],[[6250,6252,6249]],[[6253,6290,6291]],[[6251,6292,6252]],[[6198,6197,6292]],[[6288,6198,6251]],[[6292,6197,6252]],[[6254,6027,5967]],[[6027,6239,5967]],[[6193,6195,5969]],[[6293,6015,6254]],[[6015,6293,6196]],[[6255,5969,6293]],[[5966,5957,5959]],[[6294,5939,5957]],[[6230,6237,6269]],[[6212,6236,6210]],[[5960,6282,5962]],[[5962,6282,5963]],[[6283,6175,5925]],[[6283,6223,6175]],[[6055,6203,6215]],[[6112,6295,6204]],[[6170,6246,6243]],[[6151,6173,6172]],[[6218,6047,6046]],[[6218,6086,6047]],[[6271,6169,6145]],[[6271,6235,6273]],[[6271,6273,6169]],[[6275,6244,6246]],[[6273,6275,6272]],[[6275,6246,6272]],[[5983,6096,6040]],[[5983,6166,6096]],[[6079,6112,6111]],[[6079,6295,6112]],[[6278,6113,6285]],[[5989,5988,6281]],[[6289,6196,6291]],[[6293,6197,6196]],[[6011,6201,6232]],[[6018,6238,6201]],[[6061,6100,6134]],[[6017,5987,6100]],[[6264,6287,6280]],[[6285,6113,6286]],[[6114,5989,6281]],[[6279,5988,5990]],[[6155,6180,6267]],[[6053,6178,6180]],[[6143,6142,6107]],[[6145,6171,6142]],[[6190,6229,5975]],[[6231,5973,6229]],[[6011,6026,6052]],[[6011,6232,6026]],[[6027,6254,6116]],[[6255,6293,6254]],[[6100,6061,6017]],[[6023,6009,6061]],[[6097,6038,6037]],[[6167,6098,6132]],[[6097,6132,6038]],[[6098,6003,6132]],[[6173,6248,6174]],[[6222,6176,6223]],[[6222,6221,6248]],[[6109,6148,6221]],[[6137,6162,6161]],[[6270,6125,6163]],[[6016,6290,6029]],[[6289,6291,6290]],[[6110,6001,6000]],[[6080,6111,6001]],[[6053,6019,6178]],[[6216,6020,6019]],[[6116,6028,6027]],[[6116,6115,6028]],[[6153,6155,6156]],[[6153,6110,6155]],[[6181,6139,6141]],[[6184,6164,6139]],[[6136,6135,6259]],[[6136,6226,6067]],[[6254,5967,5969]],[[6239,6199,5967]],[[6040,6097,6037]],[[6096,6167,6097]],[[6016,6289,6290]],[[6016,6015,6289]],[[6293,6195,6197]],[[6293,5969,6195]],[[6290,6288,6131]],[[6198,6292,6251]],[[6235,6296,6273]],[[6274,6244,6275]],[[6157,6268,6065]],[[6267,6180,6179]],[[6161,6163,6025]],[[6162,6270,6163]],[[6257,6211,5973]],[[6269,6237,6211]],[[6286,6114,6281]],[[5961,5963,5989]],[[5947,6266,5987]],[[6287,6286,6280]],[[5937,6245,6244]],[[5937,6173,6245]],[[6196,6253,6291]],[[6288,6290,6253]],[[6290,6131,6029]],[[6251,5975,6131]],[[6229,6032,6033]],[[6229,6164,6032]],[[5940,6294,5957]],[[5940,5939,6294]],[[6134,6023,6061]],[[6134,6024,6023]],[[6135,6261,6259]],[[6177,6021,6261]],[[6135,6179,6261]],[[6261,6179,6177]],[[6223,5995,5997]],[[6283,5925,5995]],[[6007,6224,6161]],[[6224,6040,6039]],[[6040,6224,5983]],[[6039,6161,6224]],[[6171,6170,6247]],[[6169,6246,6170]],[[6053,6217,6216]],[[6053,6215,6217]],[[6156,6262,6049]],[[6228,6225,6262]],[[6024,6165,6031]],[[6024,6098,6165]],[[6120,6103,6095]],[[6060,6260,6103]],[[6155,6054,6053]],[[6002,6111,6054]],[[6234,6296,6235]],[[5937,6244,6274]],[[5964,6168,6242]],[[6271,6145,6168]],[[6108,6144,6143]],[[6241,6242,6144]],[[6173,6222,6248]],[[6173,6176,6222]],[[5936,6296,6234]],[[5937,6274,6273]],[[6169,6273,6272]],[[6296,5937,6273]],[[6171,6220,6105]],[[6171,6245,6220]],[[6105,6220,6146]],[[6245,6173,6220]],[[6147,6151,6172]],[[6146,6220,6151]],[[6247,6243,6245]],[[6247,6170,6243]],[[6091,6077,6063]],[[6094,6064,6077]],[[6101,6091,6088]],[[6101,6094,6091]],[[6288,6251,6131]],[[6252,6250,6251]],[[5960,5962,5947]],[[6285,6266,5962]],[[6118,6152,6119]],[[6056,6058,6152]],[[6214,6078,6062]],[[6204,6117,6158]],[[6112,6204,6078]],[[6295,6160,6204]],[[6296,5936,5937]],[[6240,5959,5936]],[[6268,6066,6065]],[[6268,6267,6179]],[[6067,6179,6135]],[[6066,6268,6179]],[[6006,6013,5971]],[[6006,6025,6013]],[[6230,6210,6237]],[[6236,6005,6210]],[[5988,5963,5990]],[[5955,5954,6276]],[[5955,6277,5991]],[[5954,5993,6276]],[[6136,6227,6226]],[[6136,5931,6227]],[[6084,6158,6085]],[[6084,6078,6158]],[[6053,6055,6215]],[[6054,6112,6055]],[[6297,6298,5935]],[[6299,5917,5916]],[[6285,6287,6266]],[[6285,6286,6287]],[[5994,5916,5918]],[[6298,6299,5916]],[[6240,6219,5959]],[[6240,5964,6219]],[[5988,6279,6281]],[[5991,6277,6279]],[[6164,6125,5982]],[[6270,6123,6125]],[[6300,6299,6298]],[[5998,5917,6299]],[[6065,6067,6226]],[[6066,6179,6067]],[[6186,6188,6250]],[[6187,6191,6188]],[[6297,5935,5932]],[[6298,5916,5935]],[[6113,6114,6286]],[[5961,5989,6114]],[[5998,6297,5932]],[[6300,6298,6297]],[[6204,6160,6117]],[[6295,6079,6160]],[[6104,6048,6060]],[[6047,6059,6048]],[[5992,6284,5993]],[[6284,6280,6276]],[[6156,6049,6154]],[[6263,6050,6049]],[[6264,6284,5992]],[[6264,6280,6284]],[[6279,5990,5991]],[[5963,5956,5990]],[[5959,5998,5932]],[[5958,5999,5998]],[[5998,6300,6297]],[[5998,6299,6300]],[[5979,6034,6040]],[[5979,5978,6034]],[[6022,6051,5926]],[[6022,6056,6081]],[[6051,5930,5926]],[[6051,6050,5930]],[[5987,6022,5947]],[[6017,6029,6022]],[[6022,6068,6056]],[[6022,6122,6068]],[[6301,5931,6136]],[[6060,6301,6136]],[[6302,6029,5975]],[[5974,6302,5975]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c179213-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[6303,6304,6305]],[[6306,6307,6308]],[[6309,6310,6311]],[[6312,6313,6314]],[[6315,6316,6317]],[[6318,6315,6319]],[[5926,6315,6317]],[[6320,6321,6322]],[[6307,6323,6324]],[[6325,6315,6318]],[[6308,6326,6327]],[[6328,6329,6330]],[[6331,6332,6323]],[[6308,6327,6306]],[[6333,6334,6335]],[[6336,6337,6338]],[[6339,6340,6326]],[[6341,6342,6343]],[[5926,6317,6344]],[[6345,6346,6317]],[[6347,6325,6318]],[[6348,6349,6350]],[[6325,6340,6315]],[[6316,6315,6340]],[[6351,6352,6345]],[[6334,6353,6335]],[[6354,6308,6324]],[[6306,6326,6355]],[[6333,6347,6318]],[[6326,6340,6325]],[[6356,6357,6329]],[[6358,5953,6359]],[[6360,6361,6321]],[[6362,6363,6364]],[[6334,6360,6365]],[[6366,6367,6314]],[[6328,6330,6368]],[[6316,6339,6308]],[[6324,6308,6307]],[[6354,6316,6308]],[[6365,6353,6334]],[[6369,6370,6371]],[[6372,6373,6362]],[[6321,6365,6360]],[[6353,6365,6321]],[[6319,6315,6374]],[[6353,6320,6373]],[[6312,5926,6304]],[[6375,6310,6376]],[[6377,6378,6359]],[[6311,6379,6309]],[[6380,6381,6382]],[[6335,6355,6333]],[[6383,6307,6306]],[[6326,6347,6355]],[[6318,6360,6333]],[[6384,6385,6386]],[[6387,6388,6389]],[[6390,6391,6392]],[[6311,6375,6393]],[[6351,6345,6330]],[[6353,6373,6335]],[[6369,6394,6395]],[[6396,6397,6358]],[[6333,6360,6334]],[[6318,6319,6360]],[[6398,6399,6400]],[[6401,6402,6399]],[[6320,6374,6403]],[[6322,6361,6374]],[[6326,6306,6327]],[[6355,6383,6306]],[[6404,6405,6406]],[[6407,6408,6409]],[[6361,6319,6374]],[[6361,6360,6319]],[[6320,6403,6373]],[[6320,6322,6374]],[[6307,6383,6323]],[[6355,6335,6383]],[[6316,6345,6317]],[[6332,6354,6324]],[[6308,6339,6326]],[[6316,6340,6339]],[[6322,6321,6361]],[[6320,6353,6321]],[[6359,6378,6410]],[[6400,6411,6397]],[[6355,6347,6333]],[[6326,6325,6347]],[[6397,6411,6394]],[[6412,6399,6413]],[[6414,6415,6416]],[[5947,6377,6415]],[[6378,6377,5947]],[[6410,6417,6418]],[[6419,6420,6421]],[[6422,6176,6423]],[[6424,6342,6425]],[[6426,6315,6427]],[[6428,6429,6430]],[[6431,6432,6433]],[[5947,6399,6378]],[[6434,6344,6435]],[[6404,6436,6437]],[[6431,6433,6438]],[[6437,6432,6370]],[[6407,6439,6440]],[[6367,6441,5926]],[[6442,6443,6444]],[[6445,6359,5953]],[[6415,6377,6359]],[[6430,6446,6447]],[[6448,6449,6349]],[[6431,6438,6371]],[[6450,6451,6452]],[[6453,6449,6454]],[[6448,6454,6449]],[[6455,6382,6456]],[[6457,6458,6459]],[[6455,6460,6461]],[[6462,6449,6438]],[[6370,6431,6371]],[[6370,6432,6431]],[[6408,6407,6440]],[[6463,6464,6376]],[[6465,6466,6467]],[[6390,6468,6469]],[[6387,6440,6470]],[[6471,6472,6408]],[[6389,6408,6440]],[[6466,6465,6456]],[[6473,6399,5947]],[[6429,6453,6474]],[[6381,6466,6456]],[[6470,6475,6344]],[[6476,6477,6478]],[[6479,6477,6480]],[[6382,6381,6456]],[[6447,6481,6482]],[[6476,6480,6477]],[[6483,6459,6484]],[[6485,6389,6388]],[[6465,6455,6456]],[[6486,6335,6357]],[[6487,6488,6489]],[[6490,6491,6492]],[[6490,6423,5953]],[[6493,6433,6348]],[[6494,6495,6496]],[[6479,6497,6466]],[[6479,6466,6381]],[[6432,6436,6496]],[[6474,6473,6429]],[[6429,6479,6381]],[[6484,6375,6464]],[[6494,6433,6495]],[[6432,6437,6436]],[[6411,6413,6394]],[[6496,6399,6473]],[[6498,6458,6488]],[[6499,6385,6500]],[[6491,6501,6386]],[[6492,6502,6337]],[[6503,6504,6505]],[[6506,6507,6508]],[[6509,6508,6510]],[[6463,6511,6512]],[[6513,6514,6515]],[[6384,6317,6500]],[[6516,6517,6513]],[[6507,6513,6515]],[[6317,6384,6501]],[[6336,6338,6518]],[[6503,6505,6519]],[[6508,6507,6490]],[[6490,6510,6508]],[[6507,6491,6490]],[[6520,6521,6519]],[[6521,6517,6516]],[[6497,6467,6466]],[[6461,6476,6471]],[[6522,6523,6524]],[[6520,6519,6505]],[[6525,6526,6527]],[[6315,5926,6427]],[[6397,6396,6400]],[[6402,6378,6399]],[[6398,6528,6401]],[[6398,6529,6528]],[[6529,6396,6358]],[[6398,6400,6396]],[[6529,6417,6528]],[[6418,6358,6410]],[[6429,6428,6453]],[[6449,6350,6349]],[[6448,6474,6454]],[[6428,6482,6530]],[[5926,6344,5947]],[[6375,6531,6393]],[[6440,6387,6389]],[[6344,6532,6387]],[[6440,6439,6470]],[[6407,6409,6533]],[[6498,6534,6435]],[[6535,6536,6450]],[[6479,6537,6477]],[[6538,6439,6533]],[[6539,6517,6520]],[[6514,6501,6515]],[[6481,6382,6530]],[[6408,6489,6471]],[[6474,6453,6454]],[[6530,6449,6453]],[[6540,6343,6541]],[[6363,6403,6374]],[[6542,6543,6427]],[[6544,6363,6374]],[[6545,6341,6543]],[[6546,6363,6544]],[[6315,6547,6374]],[[6548,6549,6550]],[[6438,6449,6371]],[[6530,6482,6481]],[[6551,6445,5953]],[[6415,6359,6445]],[[6338,6346,6518]],[[6346,6345,6352]],[[6518,6352,6351]],[[6518,6346,6352]],[[6552,6351,6553]],[[6552,6518,6351]],[[6309,6376,6310]],[[6464,6375,6376]],[[6426,6547,6315]],[[6554,6372,6546]],[[6555,6512,6556]],[[6557,6489,6558]],[[6386,6385,6491]],[[6336,6552,6357]],[[6337,6502,6559]],[[6500,6317,6560]],[[6515,6501,6491]],[[6501,6384,6386]],[[6393,6561,6562]],[[6563,6564,6565]],[[6566,6542,6427]],[[6545,6543,6542]],[[6553,6329,6357]],[[6323,6332,6324]],[[6553,6330,6329]],[[6332,6316,6354]],[[6486,6567,6568]],[[6330,6345,6368]],[[6331,6568,6332]],[[6569,6356,6328]],[[6570,6332,6568]],[[6570,6316,6332]],[[6492,6337,6336]],[[6518,6552,6336]],[[6571,6441,6572]],[[6573,5926,6441]],[[6574,6419,6421]],[[6421,6176,6574]],[[6344,6479,5947]],[[6575,6537,6479]],[[6407,6533,6439]],[[6469,6576,6390]],[[6387,6470,6344]],[[6577,6578,6579]],[[6538,6475,6470]],[[6580,6409,6581]],[[6580,6581,6475]],[[6472,6471,6582]],[[6538,6580,6475]],[[6533,6409,6580]],[[6482,6428,6430]],[[6530,6453,6428]],[[6369,6404,6437]],[[6405,6395,6406]],[[6560,6502,6499]],[[6559,6583,6337]],[[6362,6364,6372]],[[6550,6584,6585]],[[6541,6342,6424]],[[6586,6587,6426]],[[6526,6425,6588]],[[6546,6364,6363]],[[6372,6589,6590]],[[6590,6548,6550]],[[6425,6372,6585]],[[6335,6373,6372]],[[6591,6526,6592]],[[6592,6526,6593]],[[6444,6443,6594]],[[6341,6425,6342]],[[6595,6425,6526]],[[6588,6341,6545]],[[6566,6592,6593]],[[6566,6596,6592]],[[6587,6554,6547]],[[6372,6364,6546]],[[6591,6527,6526]],[[6597,6598,6525]],[[6599,6525,6527]],[[6598,6526,6525]],[[6600,6443,6442]],[[6594,6601,6602]],[[6571,6442,6444]],[[6603,6600,6442]],[[6604,6603,6572]],[[6605,6600,6603]],[[6590,6589,6586]],[[6372,6554,6589]],[[6537,6478,6477]],[[6576,6469,6472]],[[6391,6582,6478]],[[6478,6471,6476]],[[6497,6606,6607]],[[6606,6479,6480]],[[6582,6576,6472]],[[6390,6392,6468]],[[6608,6609,6472]],[[6609,6409,6408]],[[6473,6448,6349]],[[6473,6474,6448]],[[6366,6604,6367]],[[6603,6442,6571]],[[6558,6610,6484]],[[6531,6317,6539]],[[6335,6492,6357]],[[6492,6425,6490]],[[6510,6490,6503]],[[6507,6515,6491]],[[6393,6531,6561]],[[6539,6520,6505]],[[6504,6611,6539]],[[6612,6539,6611]],[[6371,6382,5953]],[[6336,6357,6492]],[[6463,6512,6555]],[[6489,6557,6512]],[[6523,6522,6379]],[[6379,6522,6613]],[[6613,6309,6379]],[[6613,6376,6309]],[[6613,6463,6376]],[[6613,6511,6463]],[[6489,6488,6458]],[[6487,6408,6485]],[[6614,6498,6488]],[[6615,6459,6458]],[[6312,6304,6616]],[[5926,5925,6305]],[[6493,6462,6438]],[[6350,6449,6462]],[[6499,6500,6560]],[[6385,6384,6500]],[[6344,6375,6435]],[[6506,6513,6507]],[[6317,6517,6539]],[[6514,6513,6517]],[[6509,6516,6508]],[[6509,6521,6516]],[[6594,6573,6444]],[[6602,6617,6573]],[[6602,6573,6594]],[[6618,6571,6444]],[[6536,6532,6344]],[[6388,6387,6532]],[[6451,6619,6452]],[[6388,6532,6535]],[[6434,6536,6344]],[[6535,6532,6536]],[[6534,6614,6434]],[[6614,6488,6487]],[[6434,6451,6450]],[[6452,6388,6535]],[[6516,6506,6508]],[[6516,6513,6506]],[[6552,6553,6357]],[[6351,6330,6553]],[[6560,6559,6502]],[[6560,6317,6583]],[[6542,6566,6593]],[[6427,6596,6566]],[[6524,6393,6562]],[[6620,6621,6563]],[[6622,6623,6531]],[[6564,6612,6611]],[[6512,6511,6489]],[[6565,6504,6503]],[[6385,6499,6491]],[[6623,6624,6561]],[[6617,6602,6601]],[[6599,6597,6525]],[[6464,6555,6556]],[[6464,6463,6555]],[[6576,6391,6390]],[[6609,6608,6581]],[[6537,6575,6392]],[[6392,6575,6468]],[[6446,6429,6381]],[[6494,6348,6433]],[[6598,6595,6526]],[[6425,6585,6424]],[[6584,6625,6424]],[[6626,6627,6343]],[[6584,6424,6585]],[[6625,6549,6427]],[[6590,6586,6548]],[[6589,6587,6586]],[[6503,6522,6624]],[[6624,6562,6561]],[[6503,6563,6565]],[[6425,6423,6490]],[[6628,6629,6630]],[[6305,5925,6420]],[[6422,6631,6632]],[[6633,6303,6634]],[[6422,6632,6176]],[[6634,6303,6305]],[[6635,6628,6422]],[[6633,6631,6422]],[[6422,6636,6633]],[[6304,5926,6305]],[[6632,6574,6176]],[[6637,6305,6420]],[[6632,6637,6574]],[[6637,6420,6419]],[[6497,6460,6467]],[[6461,6471,6455]],[[6423,6635,6422]],[[6638,6304,6629]],[[6639,6640,6635]],[[6640,6304,6638]],[[6422,6628,6630]],[[6628,6635,6629]],[[6537,6391,6478]],[[6537,6392,6391]],[[6434,6614,6451]],[[6451,6487,6619]],[[6450,6452,6535]],[[6619,6485,6452]],[[6313,6312,6616]],[[6314,5926,6312]],[[6462,6493,6350]],[[6438,6433,6493]],[[6423,6366,6314]],[[6366,6605,6604]],[[6547,6426,6587]],[[6549,6584,6550]],[[6626,6625,6427]],[[6548,6586,6426]],[[6543,6626,6427]],[[6627,6341,6343]],[[6549,6426,6427]],[[6549,6548,6426]],[[6540,6625,6626]],[[6584,6549,6625]],[[6600,6595,6443]],[[6595,6601,6594]],[[6441,6367,6572]],[[6366,6423,6605]],[[6636,6630,6303]],[[6634,6305,6637]],[[6383,6486,6323]],[[6383,6335,6486]],[[6570,6567,6641]],[[6486,6357,6567]],[[6486,6331,6323]],[[6486,6568,6331]],[[6574,6637,6419]],[[6632,6631,6634]],[[6519,6521,6509]],[[6520,6517,6521]],[[6398,6401,6399]],[[6528,6417,6402]],[[6598,6597,6601]],[[6642,6427,6617]],[[6591,6642,6527]],[[6617,6601,6597]],[[6310,6375,6311]],[[6464,6556,6484]],[[6414,6416,5953]],[[6415,6445,6416]],[[6641,6356,6569]],[[6345,6316,6368]],[[6641,6643,6570]],[[6368,6316,6570]],[[6395,6413,6406]],[[6411,6400,6412]],[[6404,6369,6405]],[[6394,6413,6395]],[[6493,6348,6350]],[[6433,6432,6495]],[[6607,6606,6480]],[[6497,6479,6606]],[[6610,6457,6483]],[[6459,6615,6484]],[[6457,6459,6483]],[[6458,6498,6615]],[[6484,6610,6483]],[[6489,6458,6457]],[[6489,6610,6558]],[[6489,6457,6610]],[[6556,6557,6558]],[[6556,6512,6557]],[[6314,6367,5926]],[[6604,6572,6367]],[[6635,6638,6629]],[[6640,6639,6644]],[[6625,6540,6424]],[[6343,6342,6541]],[[6343,6540,6626]],[[6541,6424,6540]],[[6567,6356,6641]],[[6567,6357,6356]],[[6643,6328,6368]],[[6356,6329,6328]],[[6643,6569,6328]],[[6643,6641,6569]],[[6529,6358,6418]],[[6397,6371,6358]],[[6359,6410,6358]],[[6378,6402,6410]],[[6593,6545,6542]],[[6588,6425,6341]],[[6604,6605,6603]],[[6443,6595,6594]],[[6423,6600,6605]],[[6423,6595,6600]],[[6560,6583,6559]],[[6317,6346,6583]],[[6581,6608,6475]],[[6468,6575,6577]],[[6531,6375,6317]],[[6344,6317,6375]],[[6489,6490,5953]],[[6624,6522,6562]],[[6489,6503,6490]],[[6522,6511,6613]],[[6596,6591,6592]],[[6596,6642,6591]],[[6528,6402,6401]],[[6417,6410,6402]],[[6547,6544,6374]],[[6547,6546,6544]],[[6382,6471,6489]],[[6382,6455,6471]],[[6468,6579,6469]],[[6609,6408,6472]],[[6469,6579,6472]],[[6468,6577,6579]],[[6460,6607,6461]],[[6480,6476,6461]],[[6465,6460,6455]],[[6607,6480,6461]],[[6358,6371,5953]],[[6449,6530,6382]],[[6437,6370,6369]],[[6371,6397,6369]],[[6492,6499,6502]],[[6492,6491,6499]],[[6583,6338,6337]],[[6583,6346,6338]],[[6531,6623,6561]],[[6620,6624,6623]],[[6435,6615,6498]],[[6435,6484,6615]],[[6558,6484,6556]],[[6435,6375,6484]],[[6411,6412,6413]],[[6400,6399,6412]],[[6489,6522,6503]],[[6489,6511,6522]],[[6311,6524,6379]],[[6524,6562,6522]],[[6379,6524,6523]],[[6311,6393,6524]],[[6417,6529,6418]],[[6398,6396,6529]],[[6389,6485,6408]],[[6388,6452,6485]],[[6543,6627,6626]],[[6543,6341,6627]],[[5925,6421,6420]],[[5925,6176,6421]],[[6642,6599,6527]],[[6617,6597,6599]],[[6441,6571,6618]],[[6572,6603,6571]],[[6344,6575,6479]],[[6577,6475,6578]],[[6344,6577,6575]],[[6344,6475,6577]],[[6629,6303,6630]],[[6629,6304,6303]],[[6633,6636,6303]],[[6422,6630,6636]],[[6632,6634,6637]],[[6631,6633,6634]],[[6467,6460,6465]],[[6497,6607,6460]],[[6335,6425,6492]],[[6335,6372,6425]],[[6601,6595,6598]],[[6423,6425,6595]],[[6635,6640,6638]],[[6635,6423,6639]],[[6585,6590,6550]],[[6585,6372,6590]],[[6479,6473,5947]],[[6479,6429,6473]],[[6349,6348,6494]],[[6406,6413,6399]],[[6349,6494,6473]],[[6495,6432,6496]],[[6436,6404,6645]],[[6645,6404,6406]],[[6564,6621,6612]],[[6620,6623,6622]],[[6565,6564,6611]],[[6563,6621,6564]],[[6547,6554,6546]],[[6587,6589,6554]],[[6439,6538,6470]],[[6533,6580,6538]],[[6612,6531,6539]],[[6622,6621,6620]],[[6612,6622,6531]],[[6612,6621,6622]],[[5947,6414,5953]],[[5947,6415,6414]],[[6317,6514,6517]],[[6317,6501,6514]],[[6478,6582,6471]],[[6391,6576,6582]],[[6593,6588,6545]],[[6593,6526,6588]],[[6403,6362,6373]],[[6403,6363,6362]],[[6380,6446,6381]],[[6430,6429,6446]],[[6416,6551,5953]],[[6416,6445,6551]],[[6563,6624,6620]],[[6563,6503,6624]],[[6519,6510,6503]],[[6519,6509,6510]],[[6408,6487,6489]],[[6485,6619,6487]],[[6451,6614,6487]],[[6534,6498,6614]],[[6567,6570,6568]],[[6643,6368,6570]],[[6314,6313,6423]],[[6644,6304,6640]],[[6313,6639,6423]],[[6313,6616,6639]],[[6616,6644,6639]],[[6616,6304,6644]],[[6436,6645,6496]],[[6406,6399,6645]],[[6494,6496,6473]],[[6645,6399,6496]],[[6505,6504,6539]],[[6565,6611,6504]],[[5953,6382,6489]],[[6371,6449,6382]],[[6430,6447,6482]],[[6380,6382,6481]],[[6380,6447,6446]],[[6380,6481,6447]],[[6394,6369,6397]],[[6395,6405,6369]],[[6534,6434,6435]],[[6450,6536,6434]],[[6573,6617,5926]],[[6427,5926,6617]],[[6427,6642,6596]],[[6617,6599,6642]],[[6618,6573,6441]],[[6618,6444,6573]],[[6579,6608,6472]],[[6581,6409,6609]],[[6578,6608,6579]],[[6578,6475,6608]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b31bb8aab-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022858","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027108)","inonderzoek":"0","lokaalid":"G0503.032e68f0452049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.57000017166138,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84931.822 447528.541)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:23)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6646,6647,6648]],[[6649,6650,6648]],[[6647,6651,6648]],[[6648,6652,6649]],[[6649,6652,6653]],[[6648,6651,6652]],[[6654,6655,6656]],[[6656,6655,6657]],[[6656,6657,6646]],[[6646,6657,6647]],[[6658,6654,6648]],[[6648,6654,6656]],[[6648,6656,6646]],[[6659,6658,6650]],[[6650,6658,6648]],[[6660,6659,6649]],[[6649,6659,6650]],[[6661,6660,6653]],[[6653,6660,6649]],[[6662,6661,6652]],[[6652,6661,6653]],[[6663,6662,6651]],[[6651,6662,6652]],[[6655,6663,6657]],[[6657,6663,6647]],[[6647,6663,6651]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bb8ab0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022856","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027109)","inonderzoek":"0","lokaalid":"G0503.032e68f0452149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.17000007629395,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84936.025 447531.543)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:27)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6664,6665,6666]],[[6664,6656,6667]],[[6667,6668,6669]],[[6667,6656,6668]],[[6666,6657,6656]],[[6664,6666,6656]],[[6665,6670,6666]],[[6671,6672,6673]],[[6673,6672,6674]],[[6673,6674,6664]],[[6664,6674,6665]],[[6675,6671,6667]],[[6667,6671,6673]],[[6667,6673,6664]],[[6676,6675,6669]],[[6669,6675,6667]],[[6677,6676,6668]],[[6668,6676,6669]],[[6654,6677,6656]],[[6656,6677,6668]],[[6655,6654,6657]],[[6657,6654,6656]],[[6678,6655,6666]],[[6666,6655,6657]],[[6679,6678,6670]],[[6670,6678,6666]],[[6672,6679,6674]],[[6674,6679,6665]],[[6665,6679,6670]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bb8ab5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022786","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027110)","inonderzoek":"0","lokaalid":"G0503.032e68f0452249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84939.413 447534.185)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[488,487,6674]],[[488,6680,6681]],[[6681,6680,6682]],[[6680,488,6674]],[[6680,6674,6673]],[[504,505,488]],[[488,505,487]],[[6683,504,6681]],[[6681,504,488]],[[6684,6683,6682]],[[6682,6683,6681]],[[6685,6684,6680]],[[6680,6684,6682]],[[6686,6685,6671]],[[6671,6685,6673]],[[6673,6685,6680]],[[6687,6686,6672]],[[6672,6686,6671]],[[6672,6671,6674]],[[6674,6671,6673]],[[505,6687,487]],[[487,6687,6672]],[[487,6672,6674]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbb1ca-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000017304","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027132)","inonderzoek":"0","lokaalid":"G0503.032e68f0452349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.88000011444092,"min-height-surface":-0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84935.378 447488.560)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:78)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[407,410,6688]],[[407,6688,404]],[[404,6688,6689]],[[6688,410,6690]],[[6688,6691,6692]],[[6688,6690,6691]],[[6690,410,413]],[[406,409,407]],[[407,409,410]],[[403,406,404]],[[404,406,407]],[[6693,403,6694]],[[6694,403,6689]],[[6689,403,404]],[[6695,6693,6696]],[[6696,6693,6694]],[[6696,6694,6688]],[[6688,6694,6689]],[[6697,6695,6698]],[[6698,6695,6696]],[[6698,6696,6692]],[[6692,6696,6688]],[[6699,6697,1158]],[[1158,6697,6698]],[[1158,6698,6691]],[[6691,6698,6692]],[[1159,6699,6690]],[[6690,6699,1158]],[[6690,1158,6691]],[[412,1159,413]],[[413,1159,6690]],[[409,412,410]],[[410,412,413]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd90d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026158","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0452e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.25999999046326,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6700,6701,6702]],[[6701,6703,6702]],[[6704,6702,6703]],[[6704,6703,6705]],[[6706,1964,6707]],[[6707,1964,6708]],[[6707,6708,6700]],[[6700,6708,6701]],[[6709,6706,6702]],[[6702,6706,6707]],[[6702,6707,6700]],[[6710,6709,6704]],[[6704,6709,6702]],[[6711,6710,6705]],[[6705,6710,6704]],[[1977,6711,6703]],[[6703,6711,6705]],[[1964,1977,6708]],[[6708,1977,6701]],[[6701,1977,6703]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd912-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000032719","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003246)","inonderzoek":"0","lokaalid":"G0503.032e68f0452f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.26999998092651,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84855.056 447534.320)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:160)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6712,6713,6714]],[[6712,294,296]],[[6714,6715,6716]],[[294,6714,6716]],[[6712,6714,294]],[[6711,1977,6705]],[[6705,1977,6703]],[[6705,6703,6712]],[[6712,6703,6713]],[[6717,6711,295]],[[295,6711,296]],[[296,6711,6705]],[[296,6705,6712]],[[6718,6717,293]],[[293,6717,295]],[[293,295,294]],[[294,295,296]],[[2119,6718,6716]],[[6716,6718,293]],[[6716,293,294]],[[1961,2119,6715]],[[6715,2119,6716]],[[1966,1961,6714]],[[6714,1961,6715]],[[1977,1966,6703]],[[6703,1966,6713]],[[6713,1966,6714]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd917-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017309","identificatiebagvbohoogstehuisnummer":"(1:503010000027072)","identificatiebagvbolaagstehuisnummer":"(1:503010000027071)","inonderzoek":"0","lokaalid":"G0503.032e68f0453049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.129999995231628,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84916.182 447533.963)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:20-22)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[461,463,6719]],[[6719,6720,6721]],[[6719,6722,6720]],[[6722,6723,6724]],[[461,6719,6721]],[[6719,6723,6722]],[[6725,6726,460]],[[460,6726,462]],[[460,462,461]],[[461,462,463]],[[6727,6725,6728]],[[6728,6725,6721]],[[6721,6725,460]],[[6721,460,461]],[[6729,6727,6730]],[[6730,6727,6728]],[[6730,6728,6720]],[[6720,6728,6721]],[[6731,6729,6722]],[[6722,6729,6730]],[[6722,6730,6720]],[[6732,6731,6724]],[[6724,6731,6722]],[[6733,6732,6723]],[[6723,6732,6724]],[[6734,6733,6719]],[[6719,6733,6723]],[[6726,6734,462]],[[462,6734,463]],[[463,6734,6719]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd91c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000017315","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060239)","inonderzoek":"0","lokaalid":"G0503.032e68f0453149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.90000009536743,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84923.713 447522.485)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:15)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6735,6736,6737]],[[6736,6738,6737]],[[6739,6740,6741]],[[6739,6742,6740]],[[6743,6744,6742]],[[6742,6744,6745]],[[6739,6743,6742]],[[6738,6736,6746]],[[6739,6738,6743]],[[6739,6737,6738]],[[6736,6747,6746]],[[6748,6749,6735]],[[6735,6749,6736]],[[6750,6748,6737]],[[6737,6748,6735]],[[6751,6750,6739]],[[6739,6750,6737]],[[6752,6751,6741]],[[6741,6751,6739]],[[6753,6752,6740]],[[6740,6752,6741]],[[6754,6753,6742]],[[6742,6753,6740]],[[6755,6754,6745]],[[6745,6754,6742]],[[6756,6755,6744]],[[6744,6755,6745]],[[6757,6756,6743]],[[6743,6756,6744]],[[6758,6757,6738]],[[6738,6757,6743]],[[6759,6758,6746]],[[6746,6758,6738]],[[6760,6759,6747]],[[6747,6759,6746]],[[6749,6760,6736]],[[6736,6760,6747]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd921-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026312","identificatiebagvbohoogstehuisnummer":"(1:503010000003235)","identificatiebagvbolaagstehuisnummer":"(1:503010000003234)","inonderzoek":"0","lokaalid":"G0503.032e68f0453249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84882.592 447515.552)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:146-146A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6761,6762,6763]],[[6764,6765,6766]],[[6767,6768,6769]],[[6767,6770,6768]],[[6763,6771,6769]],[[6769,6766,6767]],[[6765,6772,6766]],[[6769,6764,6766]],[[6773,6764,6769]],[[6771,6774,6775]],[[6776,6777,6773]],[[6769,6775,6773]],[[6778,6779,6776]],[[6773,6778,6776]],[[6779,6778,6780]],[[6778,6773,6775]],[[6778,6775,6781]],[[6769,6771,6775]],[[6762,6782,6763]],[[6763,6782,6771]],[[6762,6783,6782]],[[6784,6785,6786]],[[6786,6785,6787]],[[6786,6787,6761]],[[6761,6787,6762]],[[6788,6784,6789]],[[6789,6784,6786]],[[6789,6786,6763]],[[6763,6786,6761]],[[6790,6788,6791]],[[6791,6788,6789]],[[6791,6789,6769]],[[6769,6789,6763]],[[6792,6790,2849]],[[2849,6790,6791]],[[2849,6791,6768]],[[6768,6791,6769]],[[2847,6792,6770]],[[6770,6792,2849]],[[6770,2849,6768]],[[2845,2847,6767]],[[6767,2847,6770]],[[2846,2845,6766]],[[6766,2845,6767]],[[2844,2846,6772]],[[6772,2846,6766]],[[2843,2844,6765]],[[6765,2844,6772]],[[2840,2843,6764]],[[6764,2843,6765]],[[2841,2840,6773]],[[6773,2840,6764]],[[2839,2841,6777]],[[6777,2841,6773]],[[2837,2839,6776]],[[6776,2839,6777]],[[2838,2837,6779]],[[6779,2837,6776]],[[3009,2838,6780]],[[6780,2838,6779]],[[3010,3009,6778]],[[6778,3009,6780]],[[3008,3010,6793]],[[6793,3010,6781]],[[6781,3010,6778]],[[6794,3008,6795]],[[6795,3008,6793]],[[6795,6793,6775]],[[6775,6793,6781]],[[6796,6794,6774]],[[6774,6794,6795]],[[6774,6795,6775]],[[6797,6796,6771]],[[6771,6796,6774]],[[6798,6797,6799]],[[6799,6797,6800]],[[6800,6797,6782]],[[6782,6797,6771]],[[6801,6798,6802]],[[6802,6798,6799]],[[6802,6799,6803]],[[6803,6799,6800]],[[6803,6800,6783]],[[6783,6800,6782]],[[6785,6801,6787]],[[6787,6801,6762]],[[6762,6801,6802]],[[6762,6802,6803]],[[6762,6803,6783]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd926-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026311","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003236)","inonderzoek":"0","lokaalid":"G0503.032e68f0453349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.55999994277954,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84879.113 447518.066)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:148)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6804,6793,6805]],[[6806,6807,6808]],[[6793,6804,6808]],[[6807,6806,6809]],[[6806,6808,6810]],[[6806,6810,6811]],[[6810,6808,6804]],[[6810,6804,6812]],[[6812,6804,6813]],[[6805,6795,6814]],[[6804,6805,6815]],[[6793,6795,6805]],[[6816,6817,3008]],[[3008,6817,6794]],[[3008,6794,6793]],[[6793,6794,6795]],[[3005,6816,6808]],[[6808,6816,3008]],[[6808,3008,6793]],[[3006,3005,6807]],[[6807,3005,6808]],[[6818,3006,6809]],[[6809,3006,6807]],[[6819,6818,6806]],[[6806,6818,6809]],[[6820,6819,6821]],[[6821,6819,6811]],[[6811,6819,6806]],[[6822,6820,6823]],[[6823,6820,6821]],[[6823,6821,6810]],[[6810,6821,6811]],[[6824,6822,6825]],[[6825,6822,6823]],[[6825,6823,6812]],[[6812,6823,6810]],[[6826,6824,6827]],[[6827,6824,6825]],[[6827,6825,6813]],[[6813,6825,6812]],[[6828,6826,6829]],[[6829,6826,6827]],[[6829,6827,6804]],[[6804,6827,6813]],[[6830,6828,6831]],[[6831,6828,6829]],[[6831,6829,6815]],[[6815,6829,6804]],[[6832,6830,6805]],[[6805,6830,6831]],[[6805,6831,6815]],[[6833,6832,6814]],[[6814,6832,6805]],[[6817,6833,6794]],[[6794,6833,6795]],[[6795,6833,6814]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd92b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022857","identificatiebagvbohoogstehuisnummer":"(1:503010000027107)","identificatiebagvbolaagstehuisnummer":"(1:503010000027106)","inonderzoek":"0","lokaalid":"G0503.032e68f0453449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.19000005722046,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84928.642 447523.921)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:17-19)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6834,6835,6836]],[[6837,6838,6836]],[[6835,6839,6836]],[[6836,6839,6837]],[[6662,6663,6652]],[[6652,6663,6651]],[[6652,6651,6834]],[[6834,6651,6835]],[[6840,6662,6836]],[[6836,6662,6652]],[[6836,6652,6834]],[[6841,6840,6838]],[[6838,6840,6836]],[[6842,6841,6748]],[[6748,6841,6735]],[[6735,6841,6837]],[[6837,6841,6838]],[[6843,6842,6749]],[[6749,6842,6748]],[[6749,6748,6736]],[[6736,6748,6735]],[[6736,6735,6839]],[[6839,6735,6837]],[[6663,6843,6651]],[[6651,6843,6835]],[[6835,6843,6749]],[[6835,6749,6736]],[[6835,6736,6839]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff40-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000017219","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003238)","inonderzoek":"0","lokaalid":"G0503.032e68f0453549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.54999995231628,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84875.569 447520.559)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:150)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6829,6831,6827]],[[6844,6845,6846]],[[6821,6823,6825]],[[6847,6821,6825]],[[6827,6848,6825]],[[6848,6849,6847]],[[6825,6848,6847]],[[6827,6846,6848]],[[6827,6844,6846]],[[6844,6850,6845]],[[6831,6844,6827]],[[6851,6852,6828]],[[6828,6852,6830]],[[6828,6830,6829]],[[6829,6830,6831]],[[6853,6851,6826]],[[6826,6851,6828]],[[6826,6828,6827]],[[6827,6828,6829]],[[6854,6853,6824]],[[6824,6853,6826]],[[6824,6826,6825]],[[6825,6826,6827]],[[6855,6854,6822]],[[6822,6854,6824]],[[6822,6824,6823]],[[6823,6824,6825]],[[6856,6855,6820]],[[6820,6855,6822]],[[6820,6822,6821]],[[6821,6822,6823]],[[6857,6856,6847]],[[6847,6856,6820]],[[6847,6820,6821]],[[6858,6857,6849]],[[6849,6857,6847]],[[6859,6858,6848]],[[6848,6858,6849]],[[6860,6859,6846]],[[6846,6859,6848]],[[6861,6860,6845]],[[6845,6860,6846]],[[6862,6861,6850]],[[6850,6861,6845]],[[6863,6862,6844]],[[6844,6862,6850]],[[6852,6863,6830]],[[6830,6863,6831]],[[6831,6863,6844]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff45-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000026313","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027061)","inonderzoek":"0","lokaalid":"G0503.032e68f0453649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.45000004768372,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84898.718 447521.039)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:2)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6864,6865,6866]],[[6864,6867,6868]],[[6869,6870,6871]],[[6872,6865,6864]],[[6873,6865,6872]],[[6874,6873,6872]],[[6875,6876,6864]],[[6872,6864,6876]],[[6877,6876,6878]],[[6878,6876,6879]],[[6879,6876,6875]],[[6868,6867,6871]],[[6875,6868,6880]],[[6875,6864,6868]],[[6881,6871,6882]],[[6882,6871,6883]],[[6883,6871,6870]],[[6867,6869,6871]],[[6884,6870,6869]],[[6885,6886,6864]],[[6864,6886,6867]],[[6887,6885,6866]],[[6866,6885,6864]],[[6888,6887,6865]],[[6865,6887,6866]],[[6889,6888,6873]],[[6873,6888,6865]],[[6890,6889,6874]],[[6874,6889,6873]],[[6891,6890,6872]],[[6872,6890,6874]],[[6892,6891,6876]],[[6876,6891,6872]],[[6893,6892,6877]],[[6877,6892,6876]],[[6894,6893,6878]],[[6878,6893,6877]],[[6895,6894,6879]],[[6879,6894,6878]],[[6896,6895,6897]],[[6897,6895,6898]],[[6898,6895,6875]],[[6875,6895,6879]],[[6899,6896,6900]],[[6900,6896,6897]],[[6900,6897,6901]],[[6901,6897,6898]],[[6901,6898,6880]],[[6880,6898,6875]],[[6902,6899,6868]],[[6868,6899,6900]],[[6868,6900,6901]],[[6868,6901,6880]],[[6903,6902,6871]],[[6871,6902,6868]],[[6904,6903,6905]],[[6905,6903,6906]],[[6906,6903,6881]],[[6881,6903,6871]],[[6907,6904,6908]],[[6908,6904,6905]],[[6908,6905,6909]],[[6909,6905,6906]],[[6909,6906,6882]],[[6882,6906,6881]],[[6910,6907,6883]],[[6883,6907,6908]],[[6883,6908,6909]],[[6883,6909,6882]],[[6911,6910,6870]],[[6870,6910,6883]],[[6912,6911,6884]],[[6884,6911,6870]],[[6913,6912,6869]],[[6869,6912,6884]],[[6886,6913,6867]],[[6867,6913,6869]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff4a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000032725","identificatiebagvbohoogstehuisnummer":"(1:503010000027063)","identificatiebagvbolaagstehuisnummer":"(1:503010000027062)","inonderzoek":"0","lokaalid":"G0503.032e68f0453749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.88000011444092,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84901.595 447523.022)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:4-6)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6914,6915,6916]],[[6914,6917,6918]],[[6917,6914,6916]],[[6916,6919,6920]],[[6916,6921,6919]],[[6917,6916,6920]],[[6922,6923,6924]],[[6924,6923,6925]],[[6924,6925,6926]],[[6926,6925,6927]],[[6926,6927,6914]],[[6914,6927,6915]],[[6928,6922,6918]],[[6918,6922,6924]],[[6918,6924,6926]],[[6918,6926,6914]],[[6929,6928,6917]],[[6917,6928,6918]],[[6930,6929,6885]],[[6885,6929,6864]],[[6864,6929,6920]],[[6920,6929,6917]],[[6931,6930,6886]],[[6886,6930,6885]],[[6886,6885,6867]],[[6867,6885,6864]],[[6867,6864,6919]],[[6919,6864,6920]],[[6932,6931,6921]],[[6921,6931,6886]],[[6921,6886,6867]],[[6921,6867,6919]],[[6933,6932,6916]],[[6916,6932,6921]],[[6923,6933,6925]],[[6925,6933,6927]],[[6927,6933,6915]],[[6915,6933,6916]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff4f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026157","identificatiebagvbohoogstehuisnummer":"(1:503010000003244)","identificatiebagvbolaagstehuisnummer":"(1:503010000003241)","inonderzoek":"0","lokaalid":"G0503.032e68f0453849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.24000000953674,"min-height-surface":-0.0399999991059303,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84867.943 447525.170)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:154-154C)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6934,6935,6936]],[[6935,6937,6936]],[[6935,6938,6937]],[[6935,6939,6938]],[[6935,6940,6939]],[[6939,6940,6941]],[[6940,6935,6942]],[[6943,6944,6945]],[[6943,6940,6942]],[[6943,6942,6944]],[[6944,6946,6947]],[[6947,6946,6948]],[[6948,6946,6949]],[[6944,6942,6946]],[[6950,2177,6934]],[[6934,2177,6935]],[[6951,6950,6936]],[[6936,6950,6934]],[[6952,6951,6937]],[[6937,6951,6936]],[[6953,6952,6938]],[[6938,6952,6937]],[[6954,6953,6939]],[[6939,6953,6938]],[[6955,6954,6941]],[[6941,6954,6939]],[[6956,6955,6940]],[[6940,6955,6941]],[[6957,6956,6943]],[[6943,6956,6940]],[[6958,6957,6945]],[[6945,6957,6943]],[[6959,6958,6944]],[[6944,6958,6945]],[[6960,6959,6947]],[[6947,6959,6944]],[[6961,6960,6948]],[[6948,6960,6947]],[[6962,6961,6949]],[[6949,6961,6948]],[[6963,6962,6964]],[[6964,6962,6946]],[[6946,6962,6949]],[[6965,6963,1952]],[[1952,6963,6964]],[[1952,6964,6942]],[[6942,6964,6946]],[[2177,6965,6935]],[[6935,6965,1952]],[[6935,1952,6942]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff54-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017307","identificatiebagvbohoogstehuisnummer":"(1:503010000027065)","identificatiebagvbolaagstehuisnummer":"(1:503010000027064)","inonderzoek":"0","lokaalid":"G0503.032e68f0453949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84904.818 447525.439)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:8-10)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6966,6967,6968]],[[6969,6966,6970]],[[6970,6966,6926]],[[6926,6966,6927]],[[6969,6967,6966]],[[6971,6972,6969]],[[6969,6972,6967]],[[6973,6971,6970]],[[6970,6971,6969]],[[6924,6973,6926]],[[6926,6973,6970]],[[6925,6924,6927]],[[6927,6924,6926]],[[6974,6925,6966]],[[6966,6925,6927]],[[6975,6974,6968]],[[6968,6974,6966]],[[6972,6975,6967]],[[6967,6975,6968]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff59-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017215","identificatiebagvbohoogstehuisnummer":"(1:503010000027067)","identificatiebagvbolaagstehuisnummer":"(1:503010000027066)","inonderzoek":"0","lokaalid":"G0503.032e68f0453a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84908.607 447528.139)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:12-14)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6976,6977,6978]],[[6978,6967,6969]],[[6978,6979,6967]],[[6976,6978,6969]],[[6980,6981,6982]],[[6982,6981,6983]],[[6982,6983,6976]],[[6976,6983,6977]],[[6984,6980,6971]],[[6971,6980,6969]],[[6969,6980,6982]],[[6969,6982,6976]],[[6985,6984,6972]],[[6972,6984,6971]],[[6972,6971,6967]],[[6967,6971,6969]],[[6986,6985,6979]],[[6979,6985,6972]],[[6979,6972,6967]],[[6987,6986,6978]],[[6978,6986,6979]],[[6981,6987,6983]],[[6983,6987,6977]],[[6977,6987,6978]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff5e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026218","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027089)","inonderzoek":"0","lokaalid":"G0503.032e68f0453b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.07999992370605,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84861.651 447529.723)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:156)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6988,6989,6708]],[[6707,6990,6991]],[[6988,6708,6991]],[[6991,6708,6707]],[[6989,6992,6708]],[[6989,6993,6992]],[[6964,1952,6946]],[[6946,1952,6942]],[[6946,6942,6988]],[[6988,6942,6989]],[[6994,6964,6991]],[[6991,6964,6946]],[[6991,6946,6988]],[[6995,6994,6990]],[[6990,6994,6991]],[[6706,6995,6707]],[[6707,6995,6990]],[[1964,6706,6708]],[[6708,6706,6707]],[[2148,1964,6992]],[[6992,1964,6708]],[[1951,2148,6993]],[[6993,2148,6992]],[[1952,1951,6942]],[[6942,1951,6989]],[[6989,1951,6993]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff63-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017218","identificatiebagvbohoogstehuisnummer":"(1:503010000027070)","identificatiebagvbolaagstehuisnummer":"(1:503010000027069)","inonderzoek":"0","lokaalid":"G0503.032e68f0453c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.69000005722046,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.809 447531.432)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:16-18)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6996,6997,6998]],[[6728,6999,6982]],[[6982,6999,6983]],[[6728,6730,6999]],[[6999,6730,6997]],[[6997,6730,6998]],[[7000,7001,6727]],[[6727,7001,6729]],[[6727,6729,6728]],[[6728,6729,6730]],[[7002,7000,6980]],[[6980,7000,6982]],[[6982,7000,6727]],[[6982,6727,6728]],[[7003,7002,6981]],[[6981,7002,6980]],[[6981,6980,6983]],[[6983,6980,6982]],[[7004,7003,6999]],[[6999,7003,6981]],[[6999,6981,6983]],[[7005,7004,6997]],[[6997,7004,6999]],[[7006,7005,6996]],[[6996,7005,6997]],[[7007,7006,6998]],[[6998,7006,6996]],[[7001,7007,6729]],[[6729,7007,6730]],[[6730,7007,6998]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff68-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000017221","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003233)","inonderzoek":"0","lokaalid":"G0503.032e68f0453e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.09999990463257,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.280 447513.169)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:144)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7008,7009,7010]],[[7011,7012,7013]],[[7014,7015,7013]],[[7012,7014,7013]],[[7010,7009,7016]],[[7011,7017,7012]],[[7018,7011,7013]],[[7010,7019,7018]],[[7020,7021,7022]],[[7023,7024,7020]],[[7022,7025,7020]],[[7011,7026,7022]],[[7020,7025,7023]],[[7025,7022,7026]],[[7025,7026,7027]],[[7026,7011,7028]],[[7029,7030,7031]],[[7029,7028,7030]],[[7029,7026,7028]],[[7011,7018,7028]],[[7010,7018,7013]],[[7032,7028,7018]],[[7010,7016,7019]],[[7033,7034,7008]],[[7008,7034,7009]],[[7035,7033,7010]],[[7010,7033,7008]],[[7036,7035,7013]],[[7013,7035,7010]],[[7037,7036,7015]],[[7015,7036,7013]],[[1064,7037,7014]],[[7014,7037,7015]],[[1067,1064,7012]],[[7012,1064,7014]],[[1066,1067,7017]],[[7017,1067,7012]],[[1069,1066,7011]],[[7011,1066,7017]],[[1070,1069,7022]],[[7022,1069,7011]],[[1083,1070,7021]],[[7021,1070,7022]],[[1093,1083,7020]],[[7020,1083,7021]],[[1092,1093,7024]],[[7024,1093,7020]],[[2854,1092,7023]],[[7023,1092,7024]],[[2855,2854,7025]],[[7025,2854,7023]],[[2851,2855,7027]],[[7027,2855,7025]],[[2853,2851,7026]],[[7026,2851,7027]],[[2852,2853,7029]],[[7029,2853,7026]],[[2850,2852,7031]],[[7031,2852,7029]],[[2849,2850,6768]],[[6768,2850,7030]],[[7030,2850,7031]],[[6791,2849,6769]],[[6769,2849,6768]],[[6769,6768,7028]],[[7028,6768,7030]],[[6789,6791,6763]],[[6763,6791,6769]],[[6763,6769,7032]],[[7032,6769,7028]],[[6786,6789,6761]],[[6761,6789,6763]],[[6761,6763,7018]],[[7018,6763,7032]],[[6787,6786,6762]],[[6762,6786,6761]],[[6762,6761,7019]],[[7019,6761,7018]],[[7038,6787,7016]],[[7016,6787,6762]],[[7016,6762,7019]],[[7034,7038,7009]],[[7009,7038,7016]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc267b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027889","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0453f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6901,6906,6800]],[[6901,6803,6898]],[[6901,6800,6803]],[[6906,7039,6800]],[[6906,7040,7039]],[[6906,6909,7040]],[[7040,6909,7041]],[[6900,6905,6901]],[[6901,6905,6906]],[[6897,6900,6898]],[[6898,6900,6901]],[[6802,6897,6803]],[[6803,6897,6898]],[[6799,6802,6800]],[[6800,6802,6803]],[[7042,6799,7039]],[[7039,6799,6800]],[[7043,7042,7040]],[[7040,7042,7039]],[[7044,7043,7041]],[[7041,7043,7040]],[[6908,7044,6909]],[[6909,7044,7041]],[[6905,6908,6906]],[[6906,6908,6909]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2680-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:29.9)","identificatiebagpnd":"503100000017308","identificatiebagvbohoogstehuisnummer":"(1:503010000027144)","identificatiebagvbolaagstehuisnummer":"(1:503010000027143)","inonderzoek":"0","lokaalid":"G0503.032e68f0454049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.11999988555908,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84901.723 447506.067)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:140-142)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7045,7046,7047]],[[7048,7049,7050]],[[7051,7046,7045]],[[7052,7046,7053]],[[7053,7046,7051]],[[7050,7054,7051]],[[7055,7045,7056]],[[7057,7054,7049]],[[7058,7057,7049]],[[7048,7059,7049]],[[7060,7059,7061]],[[7060,7062,7059]],[[7063,7059,7062]],[[7064,7062,7065]],[[7062,7060,7065]],[[7049,7054,7050]],[[7048,7061,7059]],[[7066,7061,7067]],[[7048,7067,7061]],[[7068,7066,7067]],[[7067,7048,7069]],[[7051,7045,7050]],[[7055,7050,7045]],[[7070,7050,7071]],[[7072,7055,7056]],[[7071,7050,7055]],[[7073,7074,7045]],[[7045,7074,7075]],[[7045,7075,7076]],[[7045,7076,7056]],[[7077,7073,7047]],[[7047,7073,7045]],[[7078,7077,7046]],[[7046,7077,7047]],[[7079,7078,7052]],[[7052,7078,7046]],[[7080,7079,7053]],[[7053,7079,7052]],[[7081,7080,7051]],[[7051,7080,7053]],[[7082,7081,7054]],[[7054,7081,7051]],[[7083,7082,7057]],[[7057,7082,7054]],[[7084,7083,7058]],[[7058,7083,7057]],[[7085,7084,7049]],[[7049,7084,7058]],[[7086,7085,7059]],[[7059,7085,7049]],[[7087,7086,7063]],[[7063,7086,7059]],[[7088,7087,7062]],[[7062,7087,7063]],[[7089,7088,7064]],[[7064,7088,7062]],[[7090,7089,7065]],[[7065,7089,7064]],[[7091,7090,7060]],[[7060,7090,7065]],[[7092,7091,7061]],[[7061,7091,7060]],[[7093,7092,7066]],[[7066,7092,7061]],[[7094,7093,7068]],[[7068,7093,7066]],[[7095,7094,7067]],[[7067,7094,7068]],[[7096,7095,7069]],[[7069,7095,7067]],[[7097,7096,7048]],[[7048,7096,7069]],[[7098,7097,7050]],[[7050,7097,7048]],[[7099,7098,7070]],[[7070,7098,7050]],[[7100,7099,7071]],[[7071,7099,7070]],[[7101,7100,7055]],[[7055,7100,7071]],[[7102,7101,7103]],[[7103,7101,7104]],[[7104,7101,7072]],[[7072,7101,7055]],[[7074,7102,7075]],[[7075,7102,7103]],[[7075,7103,7076]],[[7076,7103,7104]],[[7076,7104,7056]],[[7056,7104,7072]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2685-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:29.9)","identificatiebagpnd":"503100000017313","identificatiebagvbohoogstehuisnummer":"(1:503010000027141)","identificatiebagvbolaagstehuisnummer":"(1:503010000027140)","inonderzoek":"0","lokaalid":"G0503.032e68f0454149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.11999988555908,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84907.181 447503.812)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:136-138)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7105,7106,7056]],[[7107,7108,7109]],[[7105,7056,7109]],[[7109,7110,7107]],[[7109,7056,7110]],[[7110,7056,7045]],[[7106,7111,7056]],[[7112,7113,7114]],[[7114,7113,1874]],[[7114,1874,7115]],[[7115,1874,7116]],[[7115,7116,7105]],[[7105,7116,7106]],[[7117,7112,7109]],[[7109,7112,7114]],[[7109,7114,7115]],[[7109,7115,7105]],[[7118,7117,7108]],[[7108,7117,7109]],[[7119,7118,7107]],[[7107,7118,7108]],[[7120,7119,7110]],[[7110,7119,7107]],[[7121,7120,7073]],[[7073,7120,7045]],[[7045,7120,7110]],[[7122,7121,7074]],[[7074,7121,7073]],[[7074,7073,7075]],[[7075,7073,7076]],[[7076,7073,7056]],[[7056,7073,7045]],[[7123,7122,1877]],[[1877,7122,7074]],[[1877,7074,7075]],[[1877,7075,7124]],[[7124,7075,7076]],[[7124,7076,7111]],[[7111,7076,7056]],[[7113,7123,1874]],[[1874,7123,7116]],[[7116,7123,7106]],[[7106,7123,1877]],[[7106,1877,7124]],[[7106,7124,7111]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc268a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000017314","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027099)","inonderzoek":"0","lokaalid":"G0503.032e68f0454249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.32999992370605,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84911.581 447513.461)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:3)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7125,7126,7127]],[[7125,7127,7128]],[[7129,7076,7124]],[[7130,7127,7126]],[[7129,7104,7076]],[[7129,7131,7104]],[[7104,7131,7132]],[[7129,7127,7131]],[[7133,7134,7127]],[[7131,7127,7134]],[[7134,7135,7136]],[[7135,7134,7133]],[[7137,7130,7126]],[[7133,7127,7130]],[[1878,7138,7139]],[[7139,7138,7140]],[[7139,7140,7125]],[[7125,7140,7126]],[[1873,1878,7128]],[[7128,1878,7139]],[[7128,7139,7125]],[[1870,1873,7127]],[[7127,1873,7128]],[[1871,1870,7129]],[[7129,1870,7127]],[[1877,1871,7124]],[[7124,1871,7129]],[[7075,1877,7076]],[[7076,1877,7124]],[[7103,7075,7104]],[[7104,7075,7076]],[[7141,7103,7132]],[[7132,7103,7104]],[[7142,7141,7131]],[[7131,7141,7132]],[[7143,7142,7134]],[[7134,7142,7131]],[[7144,7143,7136]],[[7136,7143,7134]],[[7145,7144,7135]],[[7135,7144,7136]],[[7146,7145,7133]],[[7133,7145,7135]],[[7147,7146,7130]],[[7130,7146,7133]],[[7148,7147,7137]],[[7137,7147,7130]],[[7138,7148,7140]],[[7140,7148,7126]],[[7126,7148,7137]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2699-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37.6)","identificatiebagpnd":"503100000032234","identificatiebagvbohoogstehuisnummer":"(1:503010000027139)","identificatiebagvbolaagstehuisnummer":"(1:503010000027137)","inonderzoek":"0","lokaalid":"G0503.032e68f0454549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84911.526 447499.820)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:134-134A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7149,7150,7151]],[[7152,7153,7154]],[[7150,7149,7154]],[[7154,7155,7152]],[[7152,7155,7156]],[[7155,7154,7157]],[[7157,7115,7158]],[[7157,7154,7116]],[[7158,7115,7159]],[[7157,7116,7115]],[[7154,7149,7116]],[[7150,7160,7151]],[[7151,7160,7161]],[[7151,7161,7162]],[[7163,7160,7164]],[[7161,7165,7166]],[[7161,7163,7165]],[[7161,7160,7163]],[[7167,7168,7150]],[[7150,7168,7160]],[[7169,7167,7154]],[[7154,7167,7150]],[[7170,7169,7153]],[[7153,7169,7154]],[[7171,7170,7152]],[[7152,7170,7153]],[[7172,7171,7156]],[[7156,7171,7152]],[[7173,7172,7155]],[[7155,7172,7156]],[[7174,7173,7157]],[[7157,7173,7155]],[[7175,7174,7158]],[[7158,7174,7157]],[[7176,7175,7159]],[[7159,7175,7158]],[[7114,7176,7115]],[[7115,7176,7159]],[[1874,7114,7116]],[[7116,7114,7115]],[[1868,1874,7149]],[[7149,1874,7116]],[[1865,1868,7151]],[[7151,1868,7149]],[[1866,1865,7162]],[[7162,1865,7151]],[[1861,1866,7161]],[[7161,1866,7162]],[[7177,1861,1862]],[[1862,1861,7178]],[[7178,1861,7166]],[[7166,1861,7161]],[[7179,7177,7180]],[[7180,7177,1862]],[[7180,1862,7181]],[[7181,1862,7178]],[[7181,7178,7165]],[[7165,7178,7166]],[[7182,7179,7163]],[[7163,7179,7180]],[[7163,7180,7181]],[[7163,7181,7165]],[[7183,7182,7164]],[[7164,7182,7163]],[[7168,7183,7160]],[[7160,7183,7164]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc269e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:30.9)","identificatiebagpnd":"503100000017310","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027136)","inonderzoek":"0","lokaalid":"G0503.032e68f0454649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.1800000667572,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.622 447497.659)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:132)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7184,7185,7186]],[[7186,7185,7187]],[[7185,7184,7188]],[[7185,7189,7190]],[[7185,7188,7189]],[[7188,7191,7192]],[[7189,7188,7192]],[[7184,7193,7188]],[[7194,7195,7196]],[[7196,7195,7197]],[[7196,7197,7184]],[[7184,7197,7193]],[[7198,7194,7186]],[[7186,7194,7196]],[[7186,7196,7184]],[[7199,7198,7187]],[[7187,7198,7186]],[[7200,7199,7185]],[[7185,7199,7187]],[[7167,7200,7150]],[[7150,7200,7190]],[[7190,7200,7185]],[[7168,7167,7160]],[[7160,7167,7150]],[[7160,7150,7189]],[[7189,7150,7190]],[[7201,7168,7192]],[[7192,7168,7160]],[[7192,7160,7189]],[[7202,7201,7191]],[[7191,7201,7192]],[[7203,7202,7188]],[[7188,7202,7191]],[[7195,7203,7197]],[[7197,7203,7193]],[[7193,7203,7188]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc26a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022787","identificatiebagvbohoogstehuisnummer":"(1:503010000027101)","identificatiebagvbolaagstehuisnummer":"(1:503010000027100)","inonderzoek":"0","lokaalid":"G0503.032e68f0454749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84913.581 447515.061)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:5-7)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7181,7204,7205]],[[7178,7181,7205]],[[7206,7207,7205]],[[7205,7207,7178]],[[7206,7139,7207]],[[7206,7140,7139]],[[7208,7206,7209]],[[7210,7206,7211]],[[7140,7208,7212]],[[7140,7206,7208]],[[7209,7206,7210]],[[7213,7209,7210]],[[7214,7215,7206]],[[7206,7215,7216]],[[7206,7216,7211]],[[7217,7214,7205]],[[7205,7214,7206]],[[7218,7217,7204]],[[7204,7217,7205]],[[7180,7218,7181]],[[7181,7218,7204]],[[1862,7180,7178]],[[7178,7180,7181]],[[1879,1862,7207]],[[7207,1862,7178]],[[7219,1879,1878]],[[1878,1879,7139]],[[7139,1879,7207]],[[7220,7219,7138]],[[7138,7219,1878]],[[7138,1878,7140]],[[7140,1878,7139]],[[7221,7220,7212]],[[7212,7220,7138]],[[7212,7138,7140]],[[7222,7221,7208]],[[7208,7221,7212]],[[7223,7222,7209]],[[7209,7222,7208]],[[7224,7223,7213]],[[7213,7223,7209]],[[7225,7224,7226]],[[7226,7224,7210]],[[7210,7224,7213]],[[7215,7225,7216]],[[7216,7225,7226]],[[7216,7226,7211]],[[7211,7226,7210]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc26a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:30.9)","identificatiebagpnd":"503100000017303","identificatiebagvbohoogstehuisnummer":"(1:503010000027135)","identificatiebagvbolaagstehuisnummer":"(1:503010000027134)","inonderzoek":"0","lokaalid":"G0503.032e68f0454849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84918.038 447495.615)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:130-130A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7227,7228,7229]],[[7228,7230,7231]],[[7228,7227,7197]],[[7232,7233,7234]],[[7235,7232,7230]],[[7232,7235,7233]],[[7233,7235,7236]],[[7236,7235,7237]],[[7232,7231,7230]],[[7230,7228,7238]],[[7238,7228,7197]],[[7239,7238,7196]],[[7240,7239,7196]],[[7238,7197,7196]],[[7227,7241,7197]],[[7227,7242,7241]],[[7243,7244,7227]],[[7227,7244,7242]],[[7245,7243,7229]],[[7229,7243,7227]],[[7246,7245,7228]],[[7228,7245,7229]],[[7247,7246,7231]],[[7231,7246,7228]],[[7248,7247,7232]],[[7232,7247,7231]],[[7249,7248,7234]],[[7234,7248,7232]],[[1005,7249,7233]],[[7233,7249,7234]],[[998,1005,7236]],[[7236,1005,7233]],[[996,998,7237]],[[7237,998,7236]],[[1002,996,7235]],[[7235,996,7237]],[[1000,1002,7230]],[[7230,1002,7235]],[[1001,1000,7238]],[[7238,1000,7230]],[[999,1001,7239]],[[7239,1001,7238]],[[997,999,7240]],[[7240,999,7239]],[[7250,997,7194]],[[7194,997,7196]],[[7196,997,7240]],[[7251,7250,7195]],[[7195,7250,7194]],[[7195,7194,7197]],[[7197,7194,7196]],[[7252,7251,7241]],[[7241,7251,7195]],[[7241,7195,7197]],[[7244,7252,7242]],[[7242,7252,7241]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dbd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022788","identificatiebagvbohoogstehuisnummer":"(1:503010000027103)","identificatiebagvbolaagstehuisnummer":"(1:503010000027102)","inonderzoek":"0","lokaalid":"G0503.032e68f0454949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.8600001335144,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84917.758 447517.943)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:9-11)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7253,7254,7255]],[[7256,7257,7258]],[[7258,7257,7259]],[[7256,7254,7253]],[[7257,7256,7253]],[[7253,7255,7260]],[[7254,7261,7255]],[[7262,7263,6753]],[[6753,7263,6754]],[[6753,6754,6740]],[[6740,6754,6742]],[[6740,6742,7256]],[[7256,6742,7254]],[[7264,7262,7258]],[[7258,7262,6753]],[[7258,6753,6740]],[[7258,6740,7256]],[[7265,7264,7259]],[[7259,7264,7258]],[[7266,7265,7257]],[[7257,7265,7259]],[[7267,7266,7253]],[[7253,7266,7257]],[[7268,7267,7260]],[[7260,7267,7253]],[[7216,7268,7211]],[[7211,7268,7255]],[[7255,7268,7260]],[[7226,7216,7210]],[[7210,7216,7211]],[[7210,7211,7261]],[[7261,7211,7255]],[[7263,7226,6754]],[[6754,7226,6742]],[[6742,7226,7254]],[[7254,7226,7210]],[[7254,7210,7261]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dc2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:22.9)","identificatiebagpnd":"503100000017311","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027133)","inonderzoek":"0","lokaalid":"G0503.032e68f0454a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.1399998664856,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84928.992 447490.710)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:80)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7269,7270,7271]],[[7270,7272,7271]],[[7271,7272,7273]],[[7273,7272,7274]],[[7275,7274,7272]],[[7272,7270,7276]],[[6696,6698,6688]],[[6688,6698,6692]],[[6688,6692,7269]],[[7269,6692,7270]],[[6694,6696,6689]],[[6689,6696,6688]],[[6689,6688,7271]],[[7271,6688,7269]],[[7277,6694,7273]],[[7273,6694,6689]],[[7273,6689,7271]],[[7278,7277,7274]],[[7274,7277,7273]],[[7279,7278,7275]],[[7275,7278,7274]],[[1263,7279,7272]],[[7272,7279,7275]],[[1158,1263,6691]],[[6691,1263,7276]],[[7276,1263,7272]],[[6698,1158,6692]],[[6692,1158,6691]],[[6692,6691,7270]],[[7270,6691,7276]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dc7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026304","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003296)","inonderzoek":"0","lokaalid":"G0503.032e68f0454b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.05999994277954,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84947.427 447599.451)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:36)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7280,7281,7282]],[[7283,7280,7282]],[[7284,7280,7283]],[[7284,7285,7280]],[[7284,7286,7285]],[[7285,7286,7287]],[[7288,7289,543]],[[543,7289,544]],[[543,544,528]],[[528,544,531]],[[528,531,7284]],[[7284,531,7286]],[[7290,7288,7291]],[[7291,7288,7292]],[[7292,7288,7283]],[[7283,7288,543]],[[7283,543,528]],[[7283,528,7284]],[[7293,7290,7294]],[[7294,7290,7291]],[[7294,7291,7295]],[[7295,7291,7292]],[[7295,7292,7282]],[[7282,7292,7283]],[[7296,7293,7281]],[[7281,7293,7294]],[[7281,7294,7295]],[[7281,7295,7282]],[[7297,7296,7280]],[[7280,7296,7281]],[[7298,7297,7285]],[[7285,7297,7280]],[[7299,7298,7287]],[[7287,7298,7285]],[[7289,7299,544]],[[544,7299,531]],[[531,7299,7286]],[[7286,7299,7287]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dcc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026305","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003295)","inonderzoek":"0","lokaalid":"G0503.032e68f0454c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.51000022888184,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84941.552 447605.645)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7292,7300,7301]],[[7300,7292,7302]],[[7303,7300,7302]],[[7304,7292,7295]],[[7305,7302,7306]],[[7305,7306,7307]],[[7302,7292,7304]],[[7308,7304,7295]],[[7306,7302,7304]],[[7308,7295,7309]],[[7291,7294,7292]],[[7292,7294,7295]],[[7310,7291,7301]],[[7301,7291,7292]],[[7311,7310,7300]],[[7300,7310,7301]],[[7312,7311,7303]],[[7303,7311,7300]],[[7313,7312,7314]],[[7314,7312,7315]],[[7315,7312,7302]],[[7302,7312,7303]],[[7316,7313,7317]],[[7317,7313,7314]],[[7317,7314,7318]],[[7318,7314,7315]],[[7318,7315,7305]],[[7305,7315,7302]],[[7319,7316,7307]],[[7307,7316,7317]],[[7307,7317,7318]],[[7307,7318,7305]],[[7320,7319,7306]],[[7306,7319,7307]],[[7321,7320,7304]],[[7304,7320,7306]],[[7322,7321,7308]],[[7308,7321,7304]],[[7323,7322,7309]],[[7309,7322,7308]],[[7294,7323,7295]],[[7295,7323,7309]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc751d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026236","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027040)","inonderzoek":"0","lokaalid":"G0503.032e68f0455949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.03999996185303,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84899.425 447577.136)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7324,7325,7326]],[[7324,7327,7328]],[[7324,7326,7327]],[[7325,7329,7326]],[[7326,7329,7330]],[[7331,7332,7333]],[[7333,7332,2312]],[[7333,2312,7324]],[[7324,2312,7325]],[[7334,7331,2284]],[[2284,7331,7333]],[[2284,7333,7328]],[[7328,7333,7324]],[[7335,7334,2285]],[[2285,7334,7336]],[[7336,7334,7327]],[[7327,7334,2284]],[[7327,2284,7328]],[[7337,7335,7338]],[[7338,7335,2285]],[[7338,2285,7339]],[[7339,2285,7336]],[[7339,7336,7326]],[[7326,7336,7327]],[[7340,7337,7341]],[[7341,7337,7338]],[[7341,7338,7342]],[[7342,7338,7339]],[[7342,7339,7330]],[[7330,7339,7326]],[[2311,7340,7329]],[[7329,7340,7341]],[[7329,7341,7342]],[[7329,7342,7330]],[[7332,2311,2312]],[[2312,2311,7325]],[[7325,2311,7329]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc7522-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026232","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027041)","inonderzoek":"0","lokaalid":"G0503.032e68f0455a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.419999986886978,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.334 447579.308)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7343,7344,7345]],[[7346,7347,7348]],[[7346,7345,7344]],[[7346,7344,7347]],[[7343,7349,7344]],[[7343,7350,7351]],[[7349,7343,7351]],[[2298,7352,7343]],[[7343,7352,2297]],[[7343,2297,7353]],[[7343,7353,7350]],[[2294,2298,7345]],[[7345,2298,7343]],[[2295,2294,7346]],[[7346,2294,7345]],[[2287,2295,7348]],[[7348,2295,7346]],[[2284,2287,7328]],[[7328,2287,7347]],[[7347,2287,7348]],[[7333,2284,7324]],[[7324,2284,7328]],[[7324,7328,7344]],[[7344,7328,7347]],[[2312,7333,7325]],[[7325,7333,7324]],[[7325,7324,7349]],[[7349,7324,7344]],[[7354,2312,2308]],[[2308,2312,7355]],[[7355,2312,7351]],[[7351,2312,7325]],[[7351,7325,7349]],[[7352,7354,2297]],[[2297,7354,2308]],[[2297,2308,7353]],[[7353,2308,7355]],[[7353,7355,7350]],[[7350,7355,7351]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c37-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026230","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027051)","inonderzoek":"0","lokaalid":"G0503.032e68f0455b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.9300000667572,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.625 447604.950)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:57)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7356,7357,7358]],[[7356,7358,7359]],[[7358,7357,7360]],[[7358,7360,7361]],[[2624,7362,7356]],[[7356,7362,7357]],[[2432,2624,7359]],[[7359,2624,7356]],[[2428,2432,7358]],[[7358,2432,7359]],[[2724,2428,7361]],[[7361,2428,7358]],[[7363,2724,7360]],[[7360,2724,7361]],[[7362,7363,7357]],[[7357,7363,7360]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c3c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026224","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027042)","inonderzoek":"0","lokaalid":"G0503.032e68f0455c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.479999989271164,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84905.401 447581.619)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7364,7355,7365]],[[7355,7353,7365]],[[7353,7366,7367]],[[7368,7353,7367]],[[7365,7353,7368]],[[2322,2308,7364]],[[7364,2308,7355]],[[2414,2322,7365]],[[7365,2322,7364]],[[2669,2414,7368]],[[7368,2414,7365]],[[2507,2669,7367]],[[7367,2669,7368]],[[2290,2507,7366]],[[7366,2507,7367]],[[2297,2290,7353]],[[7353,2290,7366]],[[2308,2297,7355]],[[7355,2297,7353]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c41-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000032721","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027052)","inonderzoek":"0","lokaalid":"G0503.032e68f0455d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84905.591 447607.059)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:59)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7369,7370,7371]],[[7372,7373,7374]],[[7371,7375,7374]],[[7370,7376,7371]],[[7374,7375,7372]],[[7372,7377,7378]],[[7372,7375,7377]],[[7371,7376,7375]],[[7379,7380,2449]],[[2449,7380,7381]],[[2449,7381,7369]],[[7369,7381,7370]],[[2447,7379,7371]],[[7371,7379,2449]],[[7371,2449,7369]],[[2443,2447,7374]],[[7374,2447,7371]],[[2444,2443,7373]],[[7373,2443,7374]],[[2451,2444,7372]],[[7372,2444,7373]],[[2438,2451,7378]],[[7378,2451,7372]],[[2439,2438,7377]],[[7377,2438,7378]],[[2624,2439,7356]],[[7356,2439,7375]],[[7375,2439,7377]],[[7362,2624,7357]],[[7357,2624,7356]],[[7357,7356,7376]],[[7376,7356,7375]],[[7380,7362,7381]],[[7381,7362,7370]],[[7370,7362,7357]],[[7370,7357,7376]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c46-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026228","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027053)","inonderzoek":"0","lokaalid":"G0503.032e68f0455e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.310000002384186,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84908.575 447609.097)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:61)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7382,7383,7384]],[[7382,7384,7385]],[[7383,7386,7384]],[[7387,7388,2454]],[[2454,7388,7389]],[[2454,7389,7382]],[[7382,7389,7383]],[[2445,7387,7385]],[[7385,7387,2454]],[[7385,2454,7382]],[[2449,2445,7369]],[[7369,2445,7384]],[[7384,2445,7385]],[[7381,2449,7370]],[[7370,2449,7369]],[[7370,7369,7386]],[[7386,7369,7384]],[[7388,7381,7389]],[[7389,7381,7383]],[[7383,7381,7370]],[[7383,7370,7386]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c4b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026229","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027054)","inonderzoek":"0","lokaalid":"G0503.032e68f0455f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.319999992847443,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.042 447611.640)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:63)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7390,7391,7392]],[[7393,7390,7392]],[[7391,7390,7394]],[[7390,7393,7395]],[[7393,7396,7395]],[[7393,7397,7398]],[[7396,7393,7398]],[[7399,7400,7393]],[[7393,7400,7397]],[[7401,7399,7392]],[[7392,7399,7393]],[[2630,7401,7391]],[[7391,7401,7392]],[[2440,2630,7394]],[[7394,2630,7391]],[[2453,2440,7390]],[[7390,2440,7394]],[[2454,2453,7382]],[[7382,2453,7395]],[[7395,2453,7390]],[[7389,2454,7383]],[[7383,2454,7382]],[[7383,7382,7396]],[[7396,7382,7395]],[[7402,7389,7398]],[[7398,7389,7383]],[[7398,7383,7396]],[[7400,7402,7397]],[[7397,7402,7398]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c50-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000026227","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027055)","inonderzoek":"0","lokaalid":"G0503.032e68f0456049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.46000000834465,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84920.220 447592.293)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:67)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7403,7404,7405]],[[7403,7406,7407]],[[7404,7403,7408]],[[7408,7403,7407]],[[7407,7406,7409]],[[2491,2714,7410]],[[7410,2714,7411]],[[7410,7411,7403]],[[7403,7411,7406]],[[2492,2491,7405]],[[7405,2491,7410]],[[7405,7410,7403]],[[2508,2492,7404]],[[7404,2492,7405]],[[2596,2508,7408]],[[7408,2508,7404]],[[2649,2596,7412]],[[7412,2596,7407]],[[7407,2596,7408]],[[2461,2649,7413]],[[7413,2649,7412]],[[7413,7412,7409]],[[7409,7412,7407]],[[2714,2461,7411]],[[7411,2461,7406]],[[7406,2461,7413]],[[7406,7413,7409]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c53-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026226","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0456149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.08999991416931,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7412,7413,7414]],[[7412,7414,7415]],[[7413,7416,7414]],[[7417,7418,2649]],[[2649,7418,2461]],[[2649,2461,7412]],[[7412,2461,7413]],[[2430,7417,7415]],[[7415,7417,2649]],[[7415,2649,7412]],[[2431,2430,7414]],[[7414,2430,7415]],[[2441,2431,7416]],[[7416,2431,7414]],[[7418,2441,2461]],[[2461,2441,7413]],[[7413,2441,7416]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c58-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000017319","identificatiebagvbohoogstehuisnummer":"(1:503010000003291)","identificatiebagvbolaagstehuisnummer":"(1:503010000003290)","inonderzoek":"0","lokaalid":"G0503.032e68f0456249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.310000002384186,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84925.993 447620.937)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:30-31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7419,7420,7421]],[[7422,7423,7424]],[[7423,7425,7426]],[[7424,7423,7426]],[[7427,7422,7424]],[[7428,7429,7430]],[[7427,7431,7422]],[[7432,7431,7433]],[[7432,7434,7435]],[[7432,7433,7434]],[[7434,7433,7436]],[[7431,7437,7433]],[[7431,7427,7428]],[[7437,7431,7428]],[[7430,7437,7428]],[[7421,7438,7427]],[[7419,7421,7439]],[[7428,7427,7440]],[[7441,7440,7438]],[[7441,7438,7442]],[[7440,7427,7438]],[[7438,7421,7443]],[[7443,7444,7445]],[[7443,7420,7444]],[[7443,7421,7420]],[[7446,7419,7439]],[[7447,7419,7446]],[[7448,7449,7421]],[[7421,7449,7439]],[[7450,7448,7427]],[[7427,7448,7421]],[[7451,7450,7424]],[[7424,7450,7427]],[[7452,7451,7426]],[[7426,7451,7424]],[[7453,7452,7425]],[[7425,7452,7426]],[[7454,7453,7423]],[[7423,7453,7425]],[[7455,7454,7422]],[[7422,7454,7423]],[[7456,7455,7431]],[[7431,7455,7422]],[[7457,7456,7432]],[[7432,7456,7431]],[[7458,7457,7435]],[[7435,7457,7432]],[[7459,7458,7434]],[[7434,7458,7435]],[[7460,7459,7436]],[[7436,7459,7434]],[[7461,7460,7433]],[[7433,7460,7436]],[[7462,7461,7437]],[[7437,7461,7433]],[[7463,7462,7430]],[[7430,7462,7437]],[[7464,7463,7429]],[[7429,7463,7430]],[[7465,7464,7428]],[[7428,7464,7429]],[[7466,7465,7440]],[[7440,7465,7428]],[[7467,7466,7441]],[[7441,7466,7440]],[[7468,7467,7442]],[[7442,7467,7441]],[[7469,7468,7438]],[[7438,7468,7442]],[[7470,7469,7443]],[[7443,7469,7438]],[[7471,7470,7445]],[[7445,7470,7443]],[[7472,7471,7444]],[[7444,7471,7445]],[[7473,7472,7420]],[[7420,7472,7444]],[[7474,7473,7419]],[[7419,7473,7420]],[[7475,7474,7447]],[[7447,7474,7419]],[[7476,7475,7446]],[[7446,7475,7447]],[[7449,7476,7439]],[[7439,7476,7446]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c5d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000026225","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027057)","inonderzoek":"0","lokaalid":"G0503.032e68f0456349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.19000005722046,"min-height-surface":0.46000000834465,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84922.501 447589.020)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:69)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7477,7478,7479]],[[7477,7479,7480]],[[7479,7478,7411]],[[7479,7411,7410]],[[7481,7482,2497]],[[2497,7482,2618]],[[2497,2618,7483]],[[7483,2618,7484]],[[7483,7484,7477]],[[7477,7484,7478]],[[2489,7481,7480]],[[7480,7481,2497]],[[7480,2497,7483]],[[7480,7483,7477]],[[2490,2489,7479]],[[7479,2489,7480]],[[2491,2490,7410]],[[7410,2490,7479]],[[2714,2491,7411]],[[7411,2491,7410]],[[7482,2714,2618]],[[2618,2714,7484]],[[7484,2714,7478]],[[7478,2714,7411]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c62-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000032720","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027059)","inonderzoek":"0","lokaalid":"G0503.032e68f0456449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.0,"min-height-surface":0.490000009536743,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84924.685 447585.981)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:71)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7485,7486,7487]],[[7485,7487,7488]],[[7486,7489,7487]],[[7487,7490,7491]],[[7490,7483,7492]],[[7493,7490,7489]],[[7492,7494,7495]],[[7492,7483,7494]],[[7490,7484,7483]],[[7490,7493,7484]],[[7490,7487,7489]],[[2262,2517,7496]],[[7496,2517,7497]],[[7496,7497,7485]],[[7485,7497,7486]],[[2260,2262,7488]],[[7488,2262,7496]],[[7488,7496,7485]],[[2302,2260,7487]],[[7487,2260,7488]],[[2486,2302,7491]],[[7491,2302,7487]],[[2511,2486,7490]],[[7490,2486,7491]],[[2470,2511,7492]],[[7492,2511,7490]],[[2498,2470,7495]],[[7495,2470,7492]],[[2499,2498,7494]],[[7494,2498,7495]],[[2497,2499,7483]],[[7483,2499,7494]],[[2618,2497,7484]],[[7484,2497,7483]],[[2619,2618,7493]],[[7493,2618,7484]],[[2518,2619,7489]],[[7489,2619,7493]],[[2517,2518,7497]],[[7497,2518,7486]],[[7486,2518,7489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc275-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026308","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0456549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.05999994277954,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7498,7499,7500]],[[7498,7500,7501]],[[7501,7500,7502]],[[7503,7504,7505]],[[7505,7504,7506]],[[7505,7506,7498]],[[7498,7506,7499]],[[7507,7503,7448]],[[7448,7503,7421]],[[7421,7503,7501]],[[7501,7503,7505]],[[7501,7505,7498]],[[7508,7507,7449]],[[7449,7507,7448]],[[7449,7448,7439]],[[7439,7448,7421]],[[7439,7421,7502]],[[7502,7421,7501]],[[7509,7508,7500]],[[7500,7508,7449]],[[7500,7449,7439]],[[7500,7439,7502]],[[7504,7509,7506]],[[7506,7509,7499]],[[7499,7509,7500]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc27a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026307","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060887)","inonderzoek":"0","lokaalid":"G0503.032e68f0456649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.96000003814697,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84933.650 447613.578)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7510,7511,7506]],[[7510,7505,7512]],[[7512,7505,7513]],[[7510,7506,7505]],[[7514,7515,7510]],[[7510,7515,7511]],[[7516,7514,7512]],[[7512,7514,7510]],[[7517,7516,7513]],[[7513,7516,7512]],[[7518,7517,7503]],[[7503,7517,7505]],[[7505,7517,7513]],[[7519,7518,7504]],[[7504,7518,7503]],[[7504,7503,7506]],[[7506,7503,7505]],[[7515,7519,7511]],[[7511,7519,7504]],[[7511,7504,7506]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc27f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026306","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003294)","inonderzoek":"0","lokaalid":"G0503.032e68f0456749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.99000000953674,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84939.538 447607.795)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:34)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7315,7318,7520]],[[7315,7521,7522]],[[7521,7523,7524]],[[7525,7526,7523]],[[7521,7525,7523]],[[7526,7525,7527]],[[7521,7520,7525]],[[7521,7315,7520]],[[7520,7318,7528]],[[7314,7317,7315]],[[7315,7317,7318]],[[7529,7314,7522]],[[7522,7314,7315]],[[7530,7529,7521]],[[7521,7529,7522]],[[7531,7530,7514]],[[7514,7530,7510]],[[7510,7530,7524]],[[7524,7530,7521]],[[7532,7531,7515]],[[7515,7531,7514]],[[7515,7514,7511]],[[7511,7514,7510]],[[7511,7510,7523]],[[7523,7510,7524]],[[7533,7532,7526]],[[7526,7532,7515]],[[7526,7515,7511]],[[7526,7511,7523]],[[7534,7533,7527]],[[7527,7533,7526]],[[7535,7534,7525]],[[7525,7534,7527]],[[7536,7535,7520]],[[7520,7535,7525]],[[7537,7536,7528]],[[7528,7536,7520]],[[7317,7537,7318]],[[7318,7537,7528]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc293-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026220","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027028)","inonderzoek":"0","lokaalid":"G0503.032e68f0456b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.55000019073486,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84865.905 447577.729)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:11)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7538,7539,7540]],[[7538,7540,7541]],[[7539,7542,7540]],[[7543,7544,2051]],[[2051,7544,7545]],[[2051,7545,7546]],[[7546,7545,7547]],[[7546,7547,7538]],[[7538,7547,7539]],[[2174,7543,7541]],[[7541,7543,2051]],[[7541,2051,7546]],[[7541,7546,7538]],[[1932,2174,7548]],[[7548,2174,7540]],[[7540,2174,7541]],[[7549,1932,7550]],[[7550,1932,7548]],[[7550,7548,7542]],[[7542,7548,7540]],[[7544,7549,7545]],[[7545,7549,7547]],[[7547,7549,7539]],[[7539,7549,7550]],[[7539,7550,7542]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc29d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026221","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027029)","inonderzoek":"0","lokaalid":"G0503.032e68f0456d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.6100001335144,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84870.014 447581.083)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:13)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7551,7552,7553]],[[7551,7554,7547]],[[7552,7551,7546]],[[7555,7552,7546]],[[7546,7551,7547]],[[7556,7557,7558]],[[7558,7557,7559]],[[7559,7557,7560]],[[7559,7560,7551]],[[7551,7560,7554]],[[7561,7556,7562]],[[7562,7556,7558]],[[7562,7558,7563]],[[7563,7558,7559]],[[7563,7559,7553]],[[7553,7559,7551]],[[7564,7561,2023]],[[2023,7561,7562]],[[2023,7562,7565]],[[7565,7562,7563]],[[7565,7563,7552]],[[7552,7563,7553]],[[2021,7564,7555]],[[7555,7564,2023]],[[7555,2023,7565]],[[7555,7565,7552]],[[2051,2021,7546]],[[7546,2021,7555]],[[7545,2051,7547]],[[7547,2051,7546]],[[7557,7545,7560]],[[7560,7545,7554]],[[7554,7545,7547]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9b7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017403","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027030)","inonderzoek":"0","lokaalid":"G0503.032e68f0456f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84873.014 447583.083)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:15)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7566,7559,7567]],[[7566,7568,7559]],[[7559,7568,7560]],[[7560,7568,7569]],[[7570,7571,7566]],[[7566,7571,7568]],[[7572,7570,7573]],[[7573,7570,7567]],[[7567,7570,7566]],[[7556,7572,7558]],[[7558,7572,7573]],[[7558,7573,7559]],[[7559,7573,7567]],[[7557,7556,7560]],[[7560,7556,7558]],[[7560,7558,7559]],[[7574,7557,7569]],[[7569,7557,7560]],[[7571,7574,7568]],[[7568,7574,7569]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9c1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017318","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027043)","inonderzoek":"0","lokaalid":"G0503.032e68f0457149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84877.536 447586.302)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:41)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7575,7576,7577]],[[7575,7577,7578]],[[7577,7576,7579]],[[7580,7577,7579]],[[7580,7579,7581]],[[7582,7583,2360]],[[2360,7583,7584]],[[2360,7584,7575]],[[7575,7584,7576]],[[2358,7582,7578]],[[7578,7582,2360]],[[7578,2360,7575]],[[2350,2358,7577]],[[7577,2358,7578]],[[2351,2350,7580]],[[7580,2350,7577]],[[2354,2351,7581]],[[7581,2351,7580]],[[7585,2354,7579]],[[7579,2354,7581]],[[7583,7585,7584]],[[7584,7585,7576]],[[7576,7585,7579]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9c6-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:52.7)","identificatiebagpnd":"503100000017422","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027031)","inonderzoek":"0","lokaalid":"G0503.032e68f0457249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84879.588 447573.483)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:17)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7563,7586,7559]],[[7587,7563,7588]],[[7588,7589,7590]],[[7588,7563,7589]],[[7589,7563,7565]],[[7587,7586,7563]],[[7586,7591,7559]],[[7559,7591,7567]],[[7592,7593,7587]],[[7587,7593,7586]],[[7594,7592,7588]],[[7588,7592,7587]],[[7595,7594,7596]],[[7596,7594,7590]],[[7590,7594,7588]],[[7597,7595,2128]],[[2128,7595,7596]],[[2128,7596,7589]],[[7589,7596,7590]],[[2023,7597,7565]],[[7565,7597,2128]],[[7565,2128,7589]],[[7562,2023,7563]],[[7563,2023,7565]],[[7558,7562,7559]],[[7559,7562,7563]],[[7573,7558,7567]],[[7567,7558,7559]],[[7598,7573,7591]],[[7591,7573,7567]],[[7593,7598,7586]],[[7586,7598,7591]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9cb-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017409","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027044)","inonderzoek":"0","lokaalid":"G0503.032e68f0457349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.9300000667572,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84880.543 447588.458)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:43)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7599,7600,7601]],[[7602,7603,7601]],[[7600,7604,7601]],[[7601,7604,7602]],[[7605,7606,2371]],[[2371,7606,7607]],[[2371,7607,7608]],[[7608,7607,7609]],[[7608,7609,7599]],[[7599,7609,7600]],[[2710,7605,7601]],[[7601,7605,2371]],[[7601,2371,7608]],[[7601,7608,7599]],[[2368,2710,7603]],[[7603,2710,7601]],[[2360,2368,7575]],[[7575,2368,7602]],[[7602,2368,7603]],[[7584,2360,7576]],[[7576,2360,7575]],[[7576,7575,7604]],[[7604,7575,7602]],[[7606,7584,7607]],[[7607,7584,7609]],[[7609,7584,7600]],[[7600,7584,7576]],[[7600,7576,7604]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9d5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026231","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027045)","inonderzoek":"0","lokaalid":"G0503.032e68f0457549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.92000007629395,"min-height-surface":0.259999990463257,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84884.043 447591.158)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7610,7611,7612]],[[7610,7612,7613]],[[7612,7611,7609]],[[7612,7614,7615]],[[7614,7612,7609]],[[7614,7609,7616]],[[7616,7609,7608]],[[7617,7618,2602]],[[2602,7618,7619]],[[2602,7619,7620]],[[7620,7619,7621]],[[7620,7621,7610]],[[7610,7621,7611]],[[2362,7617,7613]],[[7613,7617,2602]],[[7613,2602,7620]],[[7613,7620,7610]],[[2376,2362,7612]],[[7612,2362,7613]],[[2344,2376,7615]],[[7615,2376,7612]],[[2372,2344,7614]],[[7614,2344,7615]],[[2345,2372,7616]],[[7616,2372,7614]],[[2371,2345,7608]],[[7608,2345,7616]],[[7607,2371,7609]],[[7609,2371,7608]],[[7618,7607,7619]],[[7619,7607,7621]],[[7621,7607,7611]],[[7611,7607,7609]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9df-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000029881","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027046)","inonderzoek":"0","lokaalid":"G0503.032e68f0457749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.747 447592.960)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:47)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7620,7622,7623]],[[7624,7620,7623]],[[7622,7625,7626]],[[7622,7620,7625]],[[7624,7621,7620]],[[7624,7627,7628]],[[7621,7624,7628]],[[2386,2388,7624]],[[7624,2388,7629]],[[7624,7629,7627]],[[2384,2386,7623]],[[7623,2386,7624]],[[2373,2384,7622]],[[7622,2384,7623]],[[2374,2373,7626]],[[7626,2373,7622]],[[2603,2374,7625]],[[7625,2374,7626]],[[2602,2603,7620]],[[7620,2603,7625]],[[7619,2602,7621]],[[7621,2602,7620]],[[7630,7619,7631]],[[7631,7619,7628]],[[7628,7619,7621]],[[2388,7630,7629]],[[7629,7630,7631]],[[7629,7631,7627]],[[7627,7631,7628]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd10f5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000029882","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0457949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7632,7633,7634]],[[7632,7634,7635]],[[7634,7633,7629]],[[7634,7629,7636]],[[7633,7631,7629]],[[2401,7637,7632]],[[7632,7637,7633]],[[2631,2401,7635]],[[7635,2401,7632]],[[2739,2631,7634]],[[7634,2631,7635]],[[2387,2739,7636]],[[7636,2739,7634]],[[2388,2387,7629]],[[7629,2387,7636]],[[7630,2388,7631]],[[7631,2388,7629]],[[7637,7630,7633]],[[7633,7630,7631]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd10ff-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017424","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000054296)","inonderzoek":"0","lokaalid":"G0503.032e68f0457b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84892.280 447597.016)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:51)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7638,7639,7640]],[[7639,7633,7640]],[[7640,7641,7642]],[[7641,7640,7633]],[[7641,7633,7632]],[[2406,7643,7638]],[[7638,7643,7639]],[[2405,2406,7640]],[[7640,2406,7638]],[[2402,2405,7642]],[[7642,2405,7640]],[[2403,2402,7641]],[[7641,2402,7642]],[[2401,2403,7632]],[[7632,2403,7641]],[[7637,2401,7633]],[[7633,2401,7632]],[[7643,7637,7639]],[[7639,7637,7633]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd110e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017410","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000061316)","inonderzoek":"0","lokaalid":"G0503.032e68f0457e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.270000010728836,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84896.941 447600.562)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:53)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7644,7645,7646]],[[7644,7646,7647]],[[7645,7648,7646]],[[7649,7650,7651]],[[7649,7646,7648]],[[7649,7648,7650]],[[7652,7653,2416]],[[2416,7653,7654]],[[2416,7654,7644]],[[7644,7654,7645]],[[2411,7652,7647]],[[7647,7652,2416]],[[7647,2416,7644]],[[2413,2411,7646]],[[7646,2411,7647]],[[2412,2413,7649]],[[7649,2413,7646]],[[2677,2412,7651]],[[7651,2412,7649]],[[7655,2677,2406]],[[2406,2677,7638]],[[7638,2677,7650]],[[7650,2677,7651]],[[7656,7655,7643]],[[7643,7655,2406]],[[7643,2406,7639]],[[7639,2406,7638]],[[7639,7638,7648]],[[7648,7638,7650]],[[7653,7656,7654]],[[7654,7656,7645]],[[7645,7656,7643]],[[7645,7643,7639]],[[7645,7639,7648]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd1111-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017407","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0457f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.11999988555908,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7657,7658,7659]],[[7660,7661,7659]],[[7658,7662,7659]],[[7661,7660,7663]],[[7659,7662,7660]],[[7664,7665,2724]],[[2724,7665,7363]],[[2724,7363,7361]],[[7361,7363,7360]],[[7361,7360,7657]],[[7657,7360,7658]],[[2659,7664,7659]],[[7659,7664,2724]],[[7659,2724,7361]],[[7659,7361,7657]],[[2575,2659,7661]],[[7661,2659,7659]],[[2661,2575,7663]],[[7663,2575,7661]],[[2416,2661,7644]],[[7644,2661,7660]],[[7660,2661,7663]],[[7654,2416,7645]],[[7645,2416,7644]],[[7645,7644,7662]],[[7662,7644,7660]],[[7665,7654,7363]],[[7363,7654,7360]],[[7360,7654,7658]],[[7658,7654,7645]],[[7658,7645,7662]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd1116-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017412","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027024)","inonderzoek":"0","lokaalid":"G0503.032e68f0458049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.0900000035762787,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84852.482 447568.060)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:3)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7666,7667,7668]],[[7666,7669,7670]],[[7667,7666,7670]],[[7670,7669,375]],[[374,7670,375]],[[375,7669,7671]],[[7672,7673,2001]],[[2001,7673,7674]],[[2001,7674,7666]],[[7666,7674,7669]],[[2093,7672,7668]],[[7668,7672,2001]],[[7668,2001,7666]],[[1991,2093,7667]],[[7667,2093,7668]],[[1992,1991,7670]],[[7670,1991,7667]],[[383,1992,374]],[[374,1992,7670]],[[384,383,375]],[[375,383,374]],[[7675,384,7671]],[[7671,384,375]],[[7673,7675,7674]],[[7674,7675,7669]],[[7669,7675,7671]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd111b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017420","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000054295)","inonderzoek":"0","lokaalid":"G0503.032e68f0458149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84855.482 447570.260)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:5)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7676,7677,7669]],[[7676,7669,7666]],[[7678,7679,2000]],[[2000,7679,7680]],[[2000,7680,7676]],[[7676,7680,7677]],[[2001,7678,7666]],[[7666,7678,2000]],[[7666,2000,7676]],[[7674,2001,7669]],[[7669,2001,7666]],[[7679,7674,7680]],[[7680,7674,7677]],[[7677,7674,7669]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd382e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017408","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0458249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7681,7682,7683]],[[7681,7684,7685]],[[7681,7683,7684]],[[7686,7687,2003]],[[2003,7687,7688]],[[2003,7688,7681]],[[7681,7688,7682]],[[2000,7686,7676]],[[7676,7686,7685]],[[7685,7686,2003]],[[7685,2003,7681]],[[7680,2000,7677]],[[7677,2000,7676]],[[7677,7676,7684]],[[7684,7676,7685]],[[7689,7680,7683]],[[7683,7680,7677]],[[7683,7677,7684]],[[7687,7689,7688]],[[7688,7689,7682]],[[7682,7689,7683]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3833-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026219","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027027)","inonderzoek":"0","lokaalid":"G0503.032e68f0458349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.03999996185303,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84862.159 447575.143)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:9)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7548,7550,7690]],[[7550,7691,7690]],[[7692,7693,7694]],[[7695,7692,7694]],[[7690,7696,7694]],[[7694,7696,7695]],[[7690,7691,7696]],[[7697,7698,1932]],[[1932,7698,7549]],[[1932,7549,7548]],[[7548,7549,7550]],[[2016,7697,7690]],[[7690,7697,1932]],[[7690,1932,7548]],[[2010,2016,7694]],[[7694,2016,7690]],[[2011,2010,7693]],[[7693,2010,7694]],[[2017,2011,7692]],[[7692,2011,7693]],[[2007,2017,7695]],[[7695,2017,7692]],[[2003,2007,7681]],[[7681,2007,7696]],[[7696,2007,7695]],[[7688,2003,7682]],[[7682,2003,7681]],[[7682,7681,7691]],[[7691,7681,7696]],[[7698,7688,7549]],[[7549,7688,7550]],[[7550,7688,7682]],[[7550,7682,7691]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd384d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000017317","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027034)","inonderzoek":"0","lokaalid":"G0503.032e68f0458949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.99000000953674,"min-height-surface":0.610000014305115,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.782 447557.084)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:21)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7699,7700,7701]],[[7701,7700,7702]],[[7699,7703,7700]],[[7699,7704,7705]],[[7703,7699,7705]],[[7706,7705,7707]],[[7705,7708,7707]],[[7705,7704,7708]],[[7709,7710,7699]],[[7699,7710,7704]],[[7711,7709,7701]],[[7701,7709,7699]],[[372,7711,355]],[[355,7711,7702]],[[7702,7711,7701]],[[370,372,363]],[[363,372,355]],[[363,355,7700]],[[7700,355,7702]],[[341,370,323]],[[323,370,361]],[[361,370,363]],[[361,363,7703]],[[7703,363,7700]],[[337,341,329]],[[329,341,323]],[[329,323,7705]],[[7705,323,361]],[[7705,361,7703]],[[338,337,330]],[[330,337,329]],[[330,329,7706]],[[7706,329,7705]],[[7712,338,7707]],[[7707,338,330]],[[7707,330,7706]],[[7713,7712,7708]],[[7708,7712,7707]],[[7710,7713,7704]],[[7704,7713,7708]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3852-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000026237","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027035)","inonderzoek":"0","lokaalid":"G0503.032e68f0458a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.13000011444092,"min-height-surface":0.5,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.062 447561.843)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:25)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7714,7715,7716]],[[7716,7717,7718]],[[7719,7720,7721]],[[7717,7716,7715]],[[7715,7714,7722]],[[7714,7719,7722]],[[7714,7720,7719]],[[7723,7721,7724]],[[7721,7725,7724]],[[7721,7720,7725]],[[7726,7727,7714]],[[7714,7727,7720]],[[7728,7726,7716]],[[7716,7726,7714]],[[7729,7728,7718]],[[7718,7728,7716]],[[7730,7729,7717]],[[7717,7729,7718]],[[7731,7730,7732]],[[7732,7730,7733]],[[7733,7730,7715]],[[7715,7730,7717]],[[7734,7731,2279]],[[2279,7731,7732]],[[2279,7732,7735]],[[7735,7732,7733]],[[7735,7733,7722]],[[7722,7733,7715]],[[2280,7734,7719]],[[7719,7734,2279]],[[7719,2279,7735]],[[7719,7735,7722]],[[2274,2280,7721]],[[7721,2280,7719]],[[2275,2274,7723]],[[7723,2274,7721]],[[7736,2275,7724]],[[7724,2275,7723]],[[7737,7736,7725]],[[7725,7736,7724]],[[7727,7737,7720]],[[7720,7737,7725]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3857-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026234","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027037)","inonderzoek":"0","lokaalid":"G0503.032e68f0458b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.3199999332428,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84889.601 447570.319)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:29)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7738,7739,7740]],[[7739,7741,7740]],[[7740,7741,7742]],[[7742,7741,7743]],[[7744,7745,7746]],[[7746,7745,2580]],[[7746,2580,7747]],[[7747,2580,7748]],[[7748,2580,7749]],[[7749,2580,7750]],[[7749,7750,7738]],[[7738,7750,7739]],[[7751,7744,7752]],[[7752,7744,7746]],[[7752,7746,7747]],[[7752,7747,7753]],[[7753,7747,7748]],[[7753,7748,7740]],[[7740,7748,7749]],[[7740,7749,7738]],[[7754,7751,7742]],[[7742,7751,7752]],[[7742,7752,7753]],[[7742,7753,7740]],[[7755,7754,7743]],[[7743,7754,7742]],[[2579,7755,7741]],[[7741,7755,7743]],[[7745,2579,2580]],[[2580,2579,7750]],[[7750,2579,7739]],[[7739,2579,7741]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f6c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000033625","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027036)","inonderzoek":"0","lokaalid":"G0503.032e68f0458c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.569999992847443,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84899.662 447565.129)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:27)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7733,7735,7756]],[[7748,7757,7758]],[[7748,7753,7757]],[[7733,7756,7758]],[[7758,7756,7748]],[[7756,7735,7342]],[[7735,7336,7342]],[[7342,7336,7339]],[[7732,2279,7733]],[[7733,2279,7735]],[[7759,7732,7758]],[[7758,7732,7733]],[[7760,7759,7757]],[[7757,7759,7758]],[[7752,7760,7753]],[[7753,7760,7757]],[[7747,7752,7748]],[[7748,7752,7753]],[[7761,7747,7756]],[[7756,7747,7748]],[[7341,7761,7342]],[[7342,7761,7756]],[[7338,7341,7339]],[[7339,7341,7342]],[[2285,7338,7336]],[[7336,7338,7339]],[[2279,2285,7735]],[[7735,2285,7336]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f71-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:52.7)","identificatiebagpnd":"503100000026222","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027032)","inonderzoek":"0","lokaalid":"G0503.032e68f0458d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.15000009536743,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84883.868 447567.309)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:19)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7762,7763,7764]],[[7762,7765,7763]],[[7766,7764,7767]],[[7768,7766,7767]],[[7767,7764,7763]],[[7769,7596,7762]],[[7762,7596,7590]],[[7762,7590,7765]],[[7770,7769,7764]],[[7764,7769,7762]],[[7771,7770,7766]],[[7766,7770,7764]],[[7772,7771,353]],[[353,7771,333]],[[333,7771,7768]],[[7768,7771,7766]],[[7773,7772,352]],[[352,7772,353]],[[352,353,334]],[[334,353,333]],[[334,333,7767]],[[7767,333,7768]],[[2128,7773,7589]],[[7589,7773,7763]],[[7763,7773,352]],[[7763,352,334]],[[7763,334,7767]],[[7596,2128,7590]],[[7590,2128,7589]],[[7590,7589,7765]],[[7765,7589,7763]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f76-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026233","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027038)","inonderzoek":"0","lokaalid":"G0503.032e68f0458e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.21000003814697,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84893.214 447572.683)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7774,7775,7750]],[[7774,7750,7749]],[[7776,2316,7761]],[[7761,2316,7756]],[[7756,2316,7774]],[[7774,2316,7775]],[[7746,7776,7747]],[[7747,7776,7761]],[[7747,7761,7748]],[[7748,7761,7756]],[[7748,7756,7749]],[[7749,7756,7774]],[[2580,7746,7750]],[[7750,7746,7747]],[[7750,7747,7748]],[[7750,7748,7749]],[[2316,2580,7775]],[[7775,2580,7750]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f7b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026235","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027039)","inonderzoek":"0","lokaalid":"G0503.032e68f0458f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.389999985694885,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84895.825 447574.836)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7777,7778,7779]],[[7777,7779,7780]],[[7781,7777,7780]],[[7782,7778,7777]],[[7783,7781,7780]],[[7783,7784,7781]],[[7783,7778,7782]],[[7784,7783,7782]],[[7785,7786,7340]],[[7340,7786,2311]],[[7340,2311,7341]],[[7341,2311,7342]],[[7342,2311,7330]],[[7330,2311,7329]],[[7330,7329,7783]],[[7783,7329,7778]],[[7787,7785,7776]],[[7776,7785,7761]],[[7761,7785,7340]],[[7761,7340,7341]],[[7761,7341,7756]],[[7756,7341,7342]],[[7756,7342,7774]],[[7774,7342,7780]],[[7780,7342,7330]],[[7780,7330,7783]],[[7788,7787,2316]],[[2316,7787,7776]],[[2316,7776,7775]],[[7775,7776,7761]],[[7775,7761,7756]],[[7775,7756,7774]],[[7775,7774,7779]],[[7779,7774,7780]],[[7786,7788,2311]],[[2311,7788,7329]],[[7329,7788,7778]],[[7778,7788,2316]],[[7778,2316,7775]],[[7778,7775,7779]],[[7789,7790,7781]],[[7781,7790,7777]],[[7791,7789,7784]],[[7784,7789,7781]],[[7792,7791,7782]],[[7782,7791,7784]],[[7790,7792,7777]],[[7777,7792,7782]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd428-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000026302","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003316)","inonderzoek":"0","lokaalid":"G0503.032e68f046ba49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":8.56999969482422,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85021.496 447524.002)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:57)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7793,7794,7795]],[[7795,7796,7797]],[[7797,7796,7798]],[[7798,7799,7800]],[[7798,7801,7799]],[[7798,7796,7801]],[[7795,7802,7796]],[[7793,7795,7797]],[[1783,1787,7793]],[[7793,1787,7794]],[[1784,1783,7797]],[[7797,1783,7793]],[[1778,1784,7798]],[[7798,1784,7797]],[[7803,1778,7800]],[[7800,1778,7798]],[[1354,7803,7799]],[[7799,7803,7800]],[[7804,1354,1606]],[[1606,1354,7805]],[[7805,1354,7801]],[[7801,1354,7799]],[[7806,7804,7807]],[[7807,7804,1606]],[[7807,1606,7808]],[[7808,1606,7805]],[[7808,7805,7796]],[[7796,7805,7801]],[[7809,7806,7802]],[[7802,7806,7807]],[[7802,7807,7808]],[[7802,7808,7796]],[[7810,7809,7795]],[[7795,7809,7802]],[[1787,7810,7794]],[[7794,7810,7795]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd42d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000018587","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005337)","inonderzoek":"0","lokaalid":"G0503.032e68f046bb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.69000005722046,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85027.406 447519.861)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:77)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7811,7812,7813]],[[7814,7815,7816]],[[7813,7814,7816]],[[7817,7818,7814]],[[7813,7817,7814]],[[7812,7817,7813]],[[7812,7819,7817]],[[7820,7821,7811]],[[7811,7821,7812]],[[1806,7820,7813]],[[7813,7820,7811]],[[1785,1806,7816]],[[7816,1806,7813]],[[1791,1785,7815]],[[7815,1785,7816]],[[1803,1791,7814]],[[7814,1791,7815]],[[1802,1803,7818]],[[7818,1803,7814]],[[7822,1802,7817]],[[7817,1802,7818]],[[7823,7822,7819]],[[7819,7822,7817]],[[7821,7823,7812]],[[7812,7823,7819]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd432-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018602","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005338)","inonderzoek":"0","lokaalid":"G0503.032e68f046bc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.67000007629395,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85036.711 447505.477)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:72)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7824,7825,7826]],[[7824,7826,7827]],[[7825,7828,7826]],[[7825,7829,7828]],[[7825,7830,7829]],[[1835,1840,7824]],[[7824,1840,7825]],[[1816,1835,7827]],[[7827,1835,7824]],[[1811,1816,7826]],[[7826,1816,7827]],[[7831,1811,7828]],[[7828,1811,7826]],[[7832,7831,7829]],[[7829,7831,7828]],[[7833,7832,7830]],[[7830,7832,7829]],[[1840,7833,7825]],[[7825,7833,7830]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd437-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018593","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005332)","inonderzoek":"0","lokaalid":"G0503.032e68f046bd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85019.386 447493.264)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:67)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7834,7835,7836]],[[7834,7836,7837]],[[1851,1772,7834]],[[7834,1772,7835]],[[1847,1851,7838]],[[7838,1851,7837]],[[7837,1851,7834]],[[1770,1847,7839]],[[7839,1847,7838]],[[7839,7838,7836]],[[7836,7838,7837]],[[1772,1770,7835]],[[7835,1770,7839]],[[7835,7839,7836]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd43a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018608","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046be49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.88000011444092,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7840,7841,7842]],[[7840,7842,7843]],[[1859,1817,7844]],[[7844,1817,7845]],[[7844,7845,7840]],[[7840,7845,7841]],[[1851,1859,7834]],[[7834,1859,7843]],[[7843,1859,7844]],[[7843,7844,7840]],[[1772,1851,7835]],[[7835,1851,7834]],[[7835,7834,7842]],[[7842,7834,7843]],[[1817,1772,7845]],[[7845,1772,7841]],[[7841,1772,7835]],[[7841,7835,7842]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd43f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018611","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005333)","inonderzoek":"0","lokaalid":"G0503.032e68f046bf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.77999997138977,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85025.433 447497.508)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:69)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7846,7847,7845]],[[7846,7845,7844]],[[1860,1814,7848]],[[7848,1814,7849]],[[7848,7849,7846]],[[7846,7849,7847]],[[7850,1860,1859]],[[1859,1860,7844]],[[7844,1860,7848]],[[7844,7848,7846]],[[7851,7850,1817]],[[1817,7850,1859]],[[1817,1859,7845]],[[7845,1859,7844]],[[1814,7851,7849]],[[7849,7851,7847]],[[7847,7851,1817]],[[7847,1817,7845]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd442-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018590","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7852,7853,7854]],[[7852,7854,7855]],[[1800,7856,7852]],[[7852,7856,7853]],[[7857,1800,1806]],[[1806,1800,7813]],[[7813,1800,7855]],[[7855,1800,7852]],[[7858,7857,7820]],[[7820,7857,1806]],[[7820,1806,7811]],[[7811,1806,7813]],[[7811,7813,7854]],[[7854,7813,7855]],[[7856,7858,7853]],[[7853,7858,7820]],[[7853,7820,7811]],[[7853,7811,7854]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd447-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000027999","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005334)","inonderzoek":"0","lokaalid":"G0503.032e68f046c149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.76999998092651,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85031.345 447501.656)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:71)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7859,7860,7849]],[[7859,7849,7848]],[[1852,1815,7861]],[[7861,1815,7862]],[[7861,7862,7859]],[[7859,7862,7860]],[[1860,1852,7848]],[[7848,1852,7861]],[[7848,7861,7859]],[[1814,1860,7849]],[[7849,1860,7848]],[[1815,1814,7862]],[[7862,1814,7860]],[[7860,1814,7849]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd44c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000027996","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005336)","inonderzoek":"0","lokaalid":"G0503.032e68f046c249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.8199999332428,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85031.465 447515.641)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:75)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7863,7864,7865]],[[7863,7865,7866]],[[1828,7867,7863]],[[7863,7867,7864]],[[1800,1828,7852]],[[7852,1828,7866]],[[7866,1828,7863]],[[7856,1800,7853]],[[7853,1800,7852]],[[7853,7852,7865]],[[7865,7852,7866]],[[7867,7856,7864]],[[7864,7856,7853]],[[7864,7853,7865]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd44f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018605","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.6800000667572,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7868,7869,7862]],[[7868,7862,7861]],[[7870,7871,1835]],[[1835,7871,1816]],[[1835,1816,7824]],[[7824,1816,7827]],[[7824,7827,7868]],[[7868,7827,7869]],[[1852,7870,7861]],[[7861,7870,1835]],[[7861,1835,7824]],[[7861,7824,7868]],[[1815,1852,7862]],[[7862,1852,7861]],[[7871,1815,1816]],[[1816,1815,7827]],[[7827,1815,7869]],[[7869,1815,7862]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb64-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018600","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005329)","inonderzoek":"0","lokaalid":"G0503.032e68f046c449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84999.155 447498.983)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:61)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7872,7873,7874]],[[7872,7875,7876]],[[7872,7874,7875]],[[7873,7877,7874]],[[7877,7873,7878]],[[7879,1789,1790]],[[1790,1789,7872]],[[7872,1789,7880]],[[7872,7880,7873]],[[7881,7879,914]],[[914,7879,1790]],[[914,1790,7876]],[[7876,1790,7872]],[[912,7881,7875]],[[7875,7881,914]],[[7875,914,7876]],[[956,912,7874]],[[7874,912,7875]],[[909,956,7877]],[[7877,956,7874]],[[847,909,7882]],[[7882,909,7878]],[[7878,909,7877]],[[1789,847,7880]],[[7880,847,7882]],[[7880,7882,7873]],[[7873,7882,7878]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb67-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018607","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.82999992370605,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7883,7884,7885]],[[7883,7885,7886]],[[7884,7887,7885]],[[1780,1790,7888]],[[7888,1790,7883]],[[7883,1790,7872]],[[7883,7872,7884]],[[915,1780,7889]],[[7889,1780,7888]],[[7889,7888,7886]],[[7886,7888,7883]],[[916,915,7885]],[[7885,915,7889]],[[7885,7889,7886]],[[914,916,7876]],[[7876,916,7887]],[[7887,916,7885]],[[1790,914,7872]],[[7872,914,7876]],[[7872,7876,7884]],[[7884,7876,7887]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb6a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018610","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7890,7888,7889]],[[7890,7889,7891]],[[1781,7892,7893]],[[7893,7892,7890]],[[7890,7892,1780]],[[7890,1780,7888]],[[885,1781,7894]],[[7894,1781,7893]],[[7894,7893,7891]],[[7891,7893,7890]],[[7895,885,915]],[[915,885,7889]],[[7889,885,7894]],[[7889,7894,7891]],[[7892,7895,1780]],[[1780,7895,915]],[[1780,915,7888]],[[7888,915,7889]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb6f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018598","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005330)","inonderzoek":"0","lokaalid":"G0503.032e68f046c749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.75999999046326,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85003.595 447492.683)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:62)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7896,7893,7897]],[[7896,7897,7898]],[[7893,7894,7897]],[[1823,7899,7896]],[[7896,7899,1781]],[[7896,1781,7893]],[[921,1823,7898]],[[7898,1823,7896]],[[887,921,7897]],[[7897,921,7898]],[[7900,887,885]],[[885,887,7894]],[[7894,887,7897]],[[7899,7900,1781]],[[1781,7900,885]],[[1781,885,7893]],[[7893,885,7894]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb74-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018601","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060856)","inonderzoek":"0","lokaalid":"G0503.032e68f046c849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85013.307 447488.999)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:65)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7901,7902,7903]],[[7901,7903,7904]],[[1848,1769,7905]],[[7905,1769,7906]],[[7905,7906,7901]],[[7901,7906,7902]],[[7907,1848,1858]],[[1858,1848,7908]],[[7908,1848,7904]],[[7904,1848,7905]],[[7904,7905,7901]],[[7909,7907,1822]],[[1822,7907,1858]],[[1822,1858,7910]],[[7910,1858,7908]],[[7910,7908,7903]],[[7903,7908,7904]],[[1769,7909,7906]],[[7906,7909,7902]],[[7902,7909,1822]],[[7902,1822,7910]],[[7902,7910,7903]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb77-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018589","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7838,7839,7906]],[[7838,7906,7905]],[[1847,1770,7838]],[[7838,1770,7839]],[[1848,1847,7905]],[[7905,1847,7838]],[[1769,1848,7906]],[[7906,1848,7905]],[[1770,1769,7839]],[[7839,1769,7906]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb7a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000032235","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046ca49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.49000000953674,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7908,7910,7911]],[[7908,7912,7913]],[[7908,7911,7912]],[[7912,7911,7914]],[[1858,1822,7908]],[[7908,1822,7910]],[[1845,1858,7913]],[[7913,1858,7908]],[[7915,1845,7912]],[[7912,1845,7913]],[[7916,7915,7914]],[[7914,7915,7912]],[[1821,7916,7911]],[[7911,7916,7914]],[[1822,1821,7910]],[[7910,1821,7911]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb7f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000022860","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027125)","inonderzoek":"0","lokaalid":"G0503.032e68f046cb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.73000001907349,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84969.447 447476.735)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:62)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7917,7918,7919]],[[7920,7921,7922]],[[7920,7923,7921]],[[7920,7924,7923]],[[7920,7918,7924]],[[7924,7918,7917]],[[7917,7919,7925]],[[7926,7927,7928]],[[7928,7927,7929]],[[7928,7929,7920]],[[7920,7929,7918]],[[7930,7926,7922]],[[7922,7926,7928]],[[7922,7928,7920]],[[7931,7930,7921]],[[7921,7930,7922]],[[7932,7931,7923]],[[7923,7931,7921]],[[7933,7932,7924]],[[7924,7932,7923]],[[7934,7933,7917]],[[7917,7933,7924]],[[7935,7934,7925]],[[7925,7934,7917]],[[7936,7935,7919]],[[7919,7935,7925]],[[7927,7936,7929]],[[7929,7936,7918]],[[7918,7936,7919]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb84-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000026301","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027124)","inonderzoek":"0","lokaalid":"G0503.032e68f046cc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.72000002861023,"min-height-surface":-0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84974.937 447475.330)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:60)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7937,7938,7939]],[[7940,7941,7942]],[[7929,7940,7942]],[[7937,7939,7942]],[[7940,7929,7928]],[[7942,7939,7929]],[[7938,7943,7939]],[[880,7944,7937]],[[7937,7944,950]],[[7937,950,7945]],[[7937,7945,7938]],[[876,880,7942]],[[7942,880,7937]],[[874,876,7941]],[[7941,876,7942]],[[7946,874,7940]],[[7940,874,7941]],[[7947,7946,7926]],[[7926,7946,7928]],[[7928,7946,7940]],[[7948,7947,7927]],[[7927,7947,7926]],[[7927,7926,7929]],[[7929,7926,7928]],[[7949,7948,7950]],[[7950,7948,7951]],[[7951,7948,7939]],[[7939,7948,7927]],[[7939,7927,7929]],[[7952,7949,7953]],[[7953,7949,7950]],[[7953,7950,7954]],[[7954,7950,7951]],[[7954,7951,7943]],[[7943,7951,7939]],[[7944,7952,950]],[[950,7952,7953]],[[950,7953,7945]],[[7945,7953,7954]],[[7945,7954,7938]],[[7938,7954,7943]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb89-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35)","identificatiebagpnd":"503100000018596","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027127)","inonderzoek":"0","lokaalid":"G0503.032e68f046cd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.45000004768372,"min-height-surface":0.0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84974.524 447485.045)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:68)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7955,7956,7957]],[[7958,7959,7957]],[[7958,7960,7959]],[[7958,7961,7962]],[[7960,7958,7963]],[[7963,7958,7962]],[[7964,7965,7957]],[[7957,7966,7958]],[[7957,7965,7966]],[[7956,7964,7957]],[[7967,7968,7955]],[[7955,7968,7956]],[[7969,7967,7957]],[[7957,7967,7955]],[[7970,7969,7959]],[[7959,7969,7957]],[[7971,7970,7960]],[[7960,7970,7959]],[[7972,7971,7963]],[[7963,7971,7960]],[[1295,7972,7962]],[[7962,7972,7963]],[[1109,1295,7961]],[[7961,1295,7962]],[[1245,1109,7958]],[[7958,1109,7961]],[[1139,1245,7966]],[[7966,1245,7958]],[[1131,1139,7965]],[[7965,1139,7966]],[[1280,1131,7964]],[[7964,1131,7965]],[[7968,1280,7956]],[[7956,1280,7964]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be229e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000026300","identificatiebagvbohoogstehuisnummer":"(1:503010000027123)","identificatiebagvbolaagstehuisnummer":"(1:503010000027122)","inonderzoek":"0","lokaalid":"G0503.032e68f046ce49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.73000001907349,"min-height-surface":-0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84979.787 447473.527)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:58-58A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7973,7974,7975]],[[7976,7977,7975]],[[7974,7978,7975]],[[7977,7976,7979]],[[7976,7975,7978]],[[7974,7980,7978]],[[7974,7981,7980]],[[7980,7981,7982]],[[875,874,7973]],[[7973,874,7941]],[[7973,7941,7974]],[[872,875,7975]],[[7975,875,7973]],[[865,872,7977]],[[7977,872,7975]],[[866,865,7979]],[[7979,865,7977]],[[859,866,7976]],[[7976,866,7979]],[[852,859,7978]],[[7978,859,7976]],[[853,852,7980]],[[7980,852,7978]],[[854,853,7982]],[[7982,853,7980]],[[7946,854,7940]],[[7940,854,7981]],[[7981,854,7982]],[[874,7946,7941]],[[7941,7946,7940]],[[7941,7940,7974]],[[7974,7940,7981]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000022863","identificatiebagvbohoogstehuisnummer":"(1:503010000003314)","identificatiebagvbolaagstehuisnummer":"(1:503010000003313)","inonderzoek":"0","lokaalid":"G0503.032e68f046cf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.92000007629395,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85018.008 447530.384)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:54-55)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7805,7808,7983]],[[7805,7984,7985]],[[7805,7983,7984]],[[7986,7983,7808]],[[7987,7988,7989]],[[7989,7990,7991]],[[7989,7988,7992]],[[7991,7990,7993]],[[7993,7990,7994]],[[7989,7992,7990]],[[7988,7995,7992]],[[7992,7995,7996]],[[7995,7997,7998]],[[7998,7999,8000]],[[8000,7999,8001]],[[7995,7988,7997]],[[7998,7997,7999]],[[7988,7983,7997]],[[8002,7986,7808]],[[7997,7983,7986]],[[8002,8003,7986]],[[8003,8002,8004]],[[1606,7807,7805]],[[7805,7807,7808]],[[1346,1606,7985]],[[7985,1606,7805]],[[1341,1346,7984]],[[7984,1346,7985]],[[1342,1341,7983]],[[7983,1341,7984]],[[1650,1342,7988]],[[7988,1342,7983]],[[1338,1650,7987]],[[7987,1650,7988]],[[1339,1338,7989]],[[7989,1338,7987]],[[1358,1339,7991]],[[7991,1339,7989]],[[1622,1358,7993]],[[7993,1358,7991]],[[1353,1622,7994]],[[7994,1622,7993]],[[1372,1353,7990]],[[7990,1353,7994]],[[8005,1372,7992]],[[7992,1372,7990]],[[3033,8005,7996]],[[7996,8005,7992]],[[3034,3033,7995]],[[7995,3033,7996]],[[3031,3034,7998]],[[7998,3034,7995]],[[3029,3031,8000]],[[8000,3031,7998]],[[8006,3029,8001]],[[8001,3029,8000]],[[8007,8006,7999]],[[7999,8006,8001]],[[8008,8007,7997]],[[7997,8007,7999]],[[8009,8008,7986]],[[7986,8008,7997]],[[8010,8009,8003]],[[8003,8009,7986]],[[8011,8010,8004]],[[8004,8010,8003]],[[8012,8011,8002]],[[8002,8011,8004]],[[7807,8012,7808]],[[7808,8012,8002]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000029913","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003308)","inonderzoek":"0","lokaalid":"G0503.032e68f046d049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.53000020980835,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85006.313 447542.303)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:49)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8013,608,8014]],[[8013,8015,8016]],[[608,8013,604]],[[605,604,8017]],[[605,8017,8018]],[[8019,604,8020]],[[604,8019,8017]],[[8021,8019,8022]],[[8019,8020,8022]],[[8016,8015,8023]],[[604,8016,8020]],[[604,8013,8016]],[[8023,8015,8024]],[[1630,8025,8026]],[[8026,8025,8027]],[[8026,8027,8013]],[[8013,8027,8015]],[[1507,1630,8014]],[[8014,1630,8026]],[[8014,8026,8013]],[[607,1507,608]],[[608,1507,8014]],[[602,607,604]],[[604,607,608]],[[603,602,605]],[[605,602,604]],[[8028,603,8018]],[[8018,603,605]],[[8029,8028,8017]],[[8017,8028,8018]],[[8030,8029,8019]],[[8019,8029,8017]],[[8031,8030,8021]],[[8021,8030,8019]],[[8032,8031,8022]],[[8022,8031,8021]],[[8033,8032,8020]],[[8020,8032,8022]],[[8034,8033,8016]],[[8016,8033,8020]],[[8035,8034,8023]],[[8023,8034,8016]],[[8036,8035,8024]],[[8024,8035,8023]],[[8025,8036,8027]],[[8027,8036,8015]],[[8015,8036,8024]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22ad-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000029914","identificatiebagvbohoogstehuisnummer":"(1:503010000003310)","identificatiebagvbolaagstehuisnummer":"(1:503010000003309)","inonderzoek":"0","lokaalid":"G0503.032e68f046d149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.65999984741211,"min-height-surface":-0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85009.378 447538.258)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:50-51)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8037,8038,8027]],[[8026,8039,8027]],[[8040,8037,8027]],[[8041,8040,8027]],[[8039,8041,8027]],[[8042,8039,8026]],[[8042,8043,8044]],[[8039,8042,8044]],[[1539,3018,8045]],[[8045,3018,8046]],[[8045,8046,8042]],[[8042,8046,8043]],[[8047,1539,1630]],[[1630,1539,8026]],[[8026,1539,8045]],[[8026,8045,8042]],[[8048,8047,8025]],[[8025,8047,1630]],[[8025,1630,8027]],[[8027,1630,8026]],[[3017,8048,8038]],[[8038,8048,8025]],[[8038,8025,8027]],[[3028,3017,8037]],[[8037,3017,8038]],[[3025,3028,8040]],[[8040,3028,8037]],[[3026,3025,8041]],[[8041,3025,8040]],[[3027,3026,8039]],[[8039,3026,8041]],[[3024,3027,8044]],[[8044,3027,8039]],[[3018,3024,8046]],[[8046,3024,8043]],[[8043,3024,8044]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027998","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046d249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8049,8050,8051]],[[8049,8051,8052]],[[8053,8054,1810]],[[1810,8054,8055]],[[1810,8055,8056]],[[8056,8055,8057]],[[8056,8057,8049]],[[8049,8057,8050]],[[1828,8053,7863]],[[7863,8053,8052]],[[8052,8053,1810]],[[8052,1810,8056]],[[8052,8056,8049]],[[7867,1828,7864]],[[7864,1828,7863]],[[7864,7863,8051]],[[8051,7863,8052]],[[8054,7867,8055]],[[8055,7867,8057]],[[8057,7867,8050]],[[8050,7867,7864]],[[8050,7864,8051]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000018594","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005335)","inonderzoek":"0","lokaalid":"G0503.032e68f046d349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.8199999332428,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85035.520 447511.425)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:73)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8058,8059,8057]],[[8058,8057,8056]],[[1809,8060,8058]],[[8058,8060,8059]],[[1810,1809,8056]],[[8056,1809,8058]],[[8055,1810,8057]],[[8057,1810,8056]],[[8060,8055,8059]],[[8059,8055,8057]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027997","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046d449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.88000011444092,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8061,8062,8063]],[[8061,8063,8064]],[[1811,7831,7826]],[[7826,7831,7828]],[[7826,7828,8061]],[[8061,7828,8062]],[[1809,1811,8058]],[[8058,1811,8064]],[[8064,1811,7826]],[[8064,7826,8061]],[[8060,1809,8059]],[[8059,1809,8058]],[[8059,8058,8063]],[[8063,8058,8064]],[[7831,8060,7828]],[[7828,8060,8062]],[[8062,8060,8059]],[[8062,8059,8063]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22bd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-48.6)","identificatiebagpnd":"503100000022859","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003317)","inonderzoek":"0","lokaalid":"G0503.032e68f046d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85042.649 447462.716)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:79)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8065,8066,8067]],[[8068,8069,8070]],[[8068,8071,8069]],[[8072,8073,8074]],[[8070,8074,8068]],[[8075,8076,8074]],[[8075,8077,8076]],[[8078,8079,8080]],[[8074,8073,8075]],[[8081,8072,8074]],[[8082,8083,8084]],[[8072,8082,8084]],[[8073,8072,8084]],[[8085,8086,8087]],[[8072,8088,8089]],[[8080,8090,8091]],[[8078,8080,8091]],[[8089,8092,8091]],[[8093,8094,8070]],[[8091,8095,8078]],[[8092,8095,8091]],[[8088,8092,8089]],[[8096,8097,8098]],[[8099,8100,8088]],[[8072,8081,8088]],[[8088,8081,8099]],[[8094,8074,8070]],[[8096,8101,8102]],[[8096,8081,8097]],[[8103,8101,8104]],[[8105,8106,8107]],[[8105,8107,8108]],[[8106,8103,8107]],[[8108,8109,8110]],[[8108,8107,8109]],[[8103,8104,8107]],[[8101,8096,8098]],[[8101,8098,8104]],[[8104,8098,8111]],[[8111,8098,8112]],[[8081,8074,8094]],[[8094,8087,8086]],[[8113,8098,8097]],[[8097,8081,8094]],[[8086,8097,8094]],[[8114,8093,8070]],[[8115,8094,8093]],[[8114,8116,8093]],[[8114,8067,8116]],[[8114,8065,8067]],[[8117,8118,8065]],[[8065,8118,8066]],[[8119,8117,8114]],[[8114,8117,8065]],[[8120,8119,8070]],[[8070,8119,8114]],[[8121,8120,8069]],[[8069,8120,8070]],[[8122,8121,8071]],[[8071,8121,8069]],[[8123,8122,8068]],[[8068,8122,8071]],[[8124,8123,8074]],[[8074,8123,8068]],[[8125,8124,8076]],[[8076,8124,8074]],[[8126,8125,8077]],[[8077,8125,8076]],[[8127,8126,8075]],[[8075,8126,8077]],[[8128,8127,8073]],[[8073,8127,8075]],[[8129,8128,8084]],[[8084,8128,8073]],[[8130,8129,8083]],[[8083,8129,8084]],[[8131,8130,8082]],[[8082,8130,8083]],[[8132,8131,8072]],[[8072,8131,8082]],[[8133,8132,8089]],[[8089,8132,8072]],[[8134,8133,8091]],[[8091,8133,8089]],[[8135,8134,8090]],[[8090,8134,8091]],[[8136,8135,8080]],[[8080,8135,8090]],[[8137,8136,8079]],[[8079,8136,8080]],[[8138,8137,8078]],[[8078,8137,8079]],[[8139,8138,8095]],[[8095,8138,8078]],[[8140,8139,8092]],[[8092,8139,8095]],[[8141,8140,8088]],[[8088,8140,8092]],[[8142,8141,8100]],[[8100,8141,8088]],[[8143,8142,8099]],[[8099,8142,8100]],[[8144,8143,8081]],[[8081,8143,8099]],[[8145,8144,8096]],[[8096,8144,8081]],[[8146,8145,8102]],[[8102,8145,8096]],[[8147,8146,8101]],[[8101,8146,8102]],[[8148,8147,8103]],[[8103,8147,8101]],[[8149,8148,8106]],[[8106,8148,8103]],[[8150,8149,8105]],[[8105,8149,8106]],[[8151,8150,8108]],[[8108,8150,8105]],[[8152,8151,8110]],[[8110,8151,8108]],[[8153,8152,8109]],[[8109,8152,8110]],[[8154,8153,8107]],[[8107,8153,8109]],[[8155,8154,8104]],[[8104,8154,8107]],[[8156,8155,8111]],[[8111,8155,8104]],[[8157,8156,8112]],[[8112,8156,8111]],[[8158,8157,8098]],[[8098,8157,8112]],[[2887,8158,8113]],[[8113,8158,8098]],[[2880,2887,8097]],[[8097,2887,8113]],[[2878,2880,8086]],[[8086,2880,8097]],[[2879,2878,8085]],[[8085,2878,8086]],[[2873,2879,8087]],[[8087,2879,8085]],[[2874,2873,8094]],[[8094,2873,8087]],[[2876,2874,8115]],[[8115,2874,8094]],[[2913,2876,8093]],[[8093,2876,8115]],[[2911,2913,8116]],[[8116,2913,8093]],[[8159,2911,8067]],[[8067,2911,8116]],[[8118,8159,8066]],[[8066,8159,8067]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22c2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018519","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000002511)","inonderzoek":"0","lokaalid":"G0503.032e68f046d649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.73000001907349,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84995.031 447504.834)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:58)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7880,8160,8161]],[[7880,8161,7882]],[[8162,8163,8161]],[[8160,8162,8161]],[[8164,8165,8162]],[[8165,8164,8166]],[[8166,8164,8167]],[[8160,8164,8162]],[[8168,1825,1789]],[[1789,1825,7880]],[[7880,1825,8160]],[[8169,8168,847]],[[847,8168,1789]],[[847,1789,7882]],[[7882,1789,7880]],[[907,8169,8161]],[[8161,8169,847]],[[8161,847,7882]],[[8170,907,8163]],[[8163,907,8161]],[[8171,8170,8162]],[[8162,8170,8163]],[[8172,8171,8165]],[[8165,8171,8162]],[[8173,8172,8166]],[[8166,8172,8165]],[[8174,8173,8167]],[[8167,8173,8166]],[[8175,8174,8164]],[[8164,8174,8167]],[[1825,8175,8160]],[[8160,8175,8164]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22c7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-34)","identificatiebagpnd":"503100000032723","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027126)","inonderzoek":"0","lokaalid":"G0503.032e68f046d749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.65000009536743,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84988.193 447489.302)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:66)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8176,8177,8178]],[[8176,7945,8177]],[[8179,8180,8181]],[[7945,8176,7954]],[[7951,7954,8182]],[[7954,8183,8182]],[[7954,8176,8183]],[[8176,8179,8183]],[[8176,8180,8179]],[[8181,8180,8184]],[[8184,8180,8185]],[[892,891,8176]],[[8176,891,8180]],[[889,892,8178]],[[8178,892,8176]],[[947,889,8177]],[[8177,889,8178]],[[950,947,7945]],[[7945,947,8177]],[[7953,950,7954]],[[7954,950,7945]],[[7950,7953,7951]],[[7951,7953,7954]],[[8186,7950,8182]],[[8182,7950,7951]],[[899,8186,8183]],[[8183,8186,8182]],[[900,899,8179]],[[8179,899,8183]],[[898,900,8181]],[[8181,900,8179]],[[894,898,8184]],[[8184,898,8181]],[[906,894,8185]],[[8185,894,8184]],[[891,906,8180]],[[8180,906,8185]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22cc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000022862","identificatiebagvbohoogstehuisnummer":"(1:503010000003312)","identificatiebagvbolaagstehuisnummer":"(1:503010000003311)","inonderzoek":"0","lokaalid":"G0503.032e68f046d849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.28000020980835,"min-height-surface":-0.340000003576279,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85011.805 447532.804)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:52-53)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8187,8188,8189]],[[8187,8190,8188]],[[8188,8046,8045]],[[8188,8191,8046]],[[8188,8190,8191]],[[8187,8192,8193]],[[8194,8190,8195]],[[8196,8194,8195]],[[8197,8196,8195]],[[8197,8195,8198]],[[8198,8195,8199]],[[8195,8200,8201]],[[8195,8193,8200]],[[8190,8193,8195]],[[8190,8187,8193]],[[8202,8203,8005]],[[8005,8203,3033]],[[8005,3033,7992]],[[7992,3033,7996]],[[7992,7996,8187]],[[8187,7996,8192]],[[8204,8202,1372]],[[1372,8202,8005]],[[1372,8005,7990]],[[7990,8005,7992]],[[7990,7992,8189]],[[8189,7992,8187]],[[1502,8204,8188]],[[8188,8204,1372]],[[8188,1372,7990]],[[8188,7990,8189]],[[8205,1502,1539]],[[1539,1502,8045]],[[8045,1502,8188]],[[8206,8205,3018]],[[3018,8205,1539]],[[3018,1539,8046]],[[8046,1539,8045]],[[3019,8206,8191]],[[8191,8206,3018]],[[8191,3018,8046]],[[3023,3019,8190]],[[8190,3019,8191]],[[3022,3023,8194]],[[8194,3023,8190]],[[3021,3022,8196]],[[8196,3022,8194]],[[3020,3021,8197]],[[8197,3021,8196]],[[3016,3020,8198]],[[8198,3020,8197]],[[8207,3016,8199]],[[8199,3016,8198]],[[8208,8207,8195]],[[8195,8207,8199]],[[3030,8208,8201]],[[8201,8208,8195]],[[3032,3030,8200]],[[8200,3030,8201]],[[3035,3032,8193]],[[8193,3032,8200]],[[8203,3035,3033]],[[3033,3035,7996]],[[7996,3035,8192]],[[8192,3035,8193]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49e1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000018595","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027128)","inonderzoek":"0","lokaalid":"G0503.032e68f046d949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.98000001907349,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84961.012 447480.098)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:70)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8209,8210,8211]],[[8209,8212,8213]],[[8210,8209,8214]],[[8215,8214,8216]],[[8216,8214,8217]],[[8214,8213,8217]],[[8214,8209,8213]],[[8218,8219,8209]],[[8209,8219,8212]],[[8220,8218,8211]],[[8211,8218,8209]],[[8221,8220,8222]],[[8222,8220,8210]],[[8210,8220,8211]],[[8223,8221,8224]],[[8224,8221,8222]],[[8224,8222,8214]],[[8214,8222,8210]],[[8225,8223,8226]],[[8226,8223,8224]],[[8226,8224,8215]],[[8215,8224,8214]],[[1143,8225,8227]],[[8227,8225,8226]],[[8227,8226,8216]],[[8216,8226,8215]],[[1144,1143,8217]],[[8217,1143,8227]],[[8217,8227,8216]],[[1247,1144,8213]],[[8213,1144,8217]],[[8219,1247,8212]],[[8212,1247,8213]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49e6-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000018591","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027129)","inonderzoek":"0","lokaalid":"G0503.032e68f046da49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84954.601 447482.214)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:72)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8224,8226,424]],[[8224,424,8222]],[[8222,424,427]],[[424,8226,8228]],[[424,434,425]],[[424,8228,434]],[[8226,8227,8228]],[[8223,8225,8224]],[[8224,8225,8226]],[[8221,8223,8222]],[[8222,8223,8224]],[[8229,8221,426]],[[426,8221,427]],[[427,8221,8222]],[[8230,8229,422]],[[422,8229,426]],[[422,426,424]],[[424,426,427]],[[8231,8230,423]],[[423,8230,422]],[[423,422,425]],[[425,422,424]],[[8232,8231,433]],[[433,8231,423]],[[433,423,434]],[[434,423,425]],[[1149,8232,8228]],[[8228,8232,433]],[[8228,433,434]],[[1143,1149,8227]],[[8227,1149,8228]],[[8225,1143,8226]],[[8226,1143,8227]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49eb-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000028000","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003303)","inonderzoek":"0","lokaalid":"G0503.032e68f046e249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.82999992370605,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84984.506 447563.460)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:43)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8233,8234,8235]],[[8233,8236,8234]],[[8234,8236,8237]],[[8237,8236,8238]],[[8236,8239,8240]],[[8241,8233,8242]],[[8240,8239,8243]],[[8236,8233,8239]],[[8244,8241,8242]],[[8239,8233,8241]],[[676,677,660]],[[660,677,664]],[[660,664,8233]],[[8233,664,8242]],[[675,676,661]],[[661,676,660]],[[661,660,8235]],[[8235,660,8233]],[[1687,675,8234]],[[8234,675,661]],[[8234,661,8235]],[[1420,1687,8237]],[[8237,1687,8234]],[[1416,1420,8245]],[[8245,1420,8238]],[[8238,1420,8237]],[[8246,1416,8247]],[[8247,1416,8245]],[[8247,8245,8236]],[[8236,8245,8238]],[[8248,8246,8249]],[[8249,8246,8247]],[[8249,8247,8240]],[[8240,8247,8236]],[[8250,8248,8243]],[[8243,8248,8249]],[[8243,8249,8240]],[[8251,8250,8239]],[[8239,8250,8243]],[[8252,8251,8241]],[[8241,8251,8239]],[[8253,8252,8244]],[[8244,8252,8241]],[[677,8253,664]],[[664,8253,8242]],[[8242,8253,8244]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49f0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000017045","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003302)","inonderzoek":"0","lokaalid":"G0503.032e68f046e349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.76999998092651,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84980.310 447567.401)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:42)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8247,8254,8245]],[[8245,8254,8255]],[[8256,8247,8249]],[[8257,8254,8258]],[[8257,8258,8259]],[[8258,8254,8260]],[[8258,8261,8262]],[[8258,8263,8261]],[[8261,8263,8264]],[[8254,8247,8260]],[[8265,8260,8256]],[[8263,8258,8260]],[[8266,8256,8249]],[[8260,8247,8256]],[[8267,8268,8246]],[[8246,8268,8248]],[[8246,8248,8247]],[[8247,8248,8249]],[[8269,8267,1416]],[[1416,8267,8246]],[[1416,8246,8245]],[[8245,8246,8247]],[[1683,8269,8255]],[[8255,8269,1416]],[[8255,1416,8245]],[[8270,1683,8254]],[[8254,1683,8255]],[[8271,8270,8257]],[[8257,8270,8254]],[[8272,8271,8259]],[[8259,8271,8257]],[[8273,8272,8258]],[[8258,8272,8259]],[[8274,8273,8262]],[[8262,8273,8258]],[[8275,8274,8261]],[[8261,8274,8262]],[[8276,8275,8264]],[[8264,8275,8261]],[[8277,8276,8263]],[[8263,8276,8264]],[[8278,8277,8260]],[[8260,8277,8263]],[[8279,8278,8265]],[[8265,8278,8260]],[[8280,8279,8256]],[[8256,8279,8265]],[[8281,8280,8266]],[[8266,8280,8256]],[[8268,8281,8248]],[[8248,8281,8249]],[[8249,8281,8266]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49f5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026309","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003301)","inonderzoek":"0","lokaalid":"G0503.032e68f046e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.76999998092651,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84967.823 447579.382)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:41)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8282,8283,8284]],[[8285,8286,8287]],[[8286,8288,8287]],[[8289,8290,8287]],[[8288,8289,8287]],[[8291,8285,8287]],[[8292,8293,8285]],[[8294,8295,8285]],[[8296,8297,8295]],[[8298,8299,8300]],[[8299,8301,8300]],[[8302,8303,8304]],[[8300,8301,8304]],[[8302,8305,8303]],[[8302,8306,8305]],[[8301,8302,8304]],[[8296,8298,8300]],[[8295,8294,8296]],[[8291,8284,8307]],[[8296,8308,8298]],[[8296,8294,8308]],[[8294,8285,8293]],[[8284,8309,8307]],[[8291,8307,8285]],[[8310,8293,8292]],[[8285,8307,8292]],[[8284,8283,8309]],[[8311,8312,8282]],[[8282,8312,8283]],[[8313,8311,8284]],[[8284,8311,8282]],[[8314,8313,8291]],[[8291,8313,8284]],[[8315,8314,8287]],[[8287,8314,8291]],[[8316,8315,8290]],[[8290,8315,8287]],[[8317,8316,8289]],[[8289,8316,8290]],[[8318,8317,8288]],[[8288,8317,8289]],[[2798,8318,8286]],[[8286,8318,8288]],[[2794,2798,8285]],[[8285,2798,8286]],[[2763,2794,8295]],[[8295,2794,8285]],[[2787,2763,8297]],[[8297,2763,8295]],[[2788,2787,8296]],[[8296,2787,8297]],[[2789,2788,8300]],[[8300,2788,8296]],[[2799,2789,8304]],[[8304,2789,8300]],[[8319,2799,8303]],[[8303,2799,8304]],[[8320,8319,8305]],[[8305,8319,8303]],[[8321,8320,8306]],[[8306,8320,8305]],[[8322,8321,8302]],[[8302,8321,8306]],[[8323,8322,8301]],[[8301,8322,8302]],[[8324,8323,8325]],[[8325,8323,8326]],[[8326,8323,8299]],[[8299,8323,8301]],[[8327,8324,8328]],[[8328,8324,8325]],[[8328,8325,8329]],[[8329,8325,8326]],[[8329,8326,8298]],[[8298,8326,8299]],[[8330,8327,8308]],[[8308,8327,8328]],[[8308,8328,8329]],[[8308,8329,8298]],[[8331,8330,8294]],[[8294,8330,8308]],[[8332,8331,8293]],[[8293,8331,8294]],[[8333,8332,8310]],[[8310,8332,8293]],[[8334,8333,8292]],[[8292,8333,8310]],[[8335,8334,8307]],[[8307,8334,8292]],[[8336,8335,8309]],[[8309,8335,8307]],[[8312,8336,8283]],[[8283,8336,8309]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49fa-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026310","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003300)","inonderzoek":"0","lokaalid":"G0503.032e68f046e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.04999995231628,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84965.207 447582.006)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:40)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8337,8338,8339]],[[8337,8339,8340]],[[8339,8341,8342]],[[8343,8344,8341]],[[8339,8343,8341]],[[8344,8343,8345]],[[8339,8346,8343]],[[8339,8338,8346]],[[8346,8338,8347]],[[8348,8349,8331]],[[8331,8349,8332]],[[8331,8332,8294]],[[8294,8332,8293]],[[8294,8293,8337]],[[8337,8293,8338]],[[8350,8348,8340]],[[8340,8348,8331]],[[8340,8331,8294]],[[8340,8294,8337]],[[8351,8350,8339]],[[8339,8350,8340]],[[8352,8351,8342]],[[8342,8351,8339]],[[746,8352,709]],[[709,8352,8341]],[[8341,8352,8342]],[[747,746,710]],[[710,746,709]],[[710,709,8344]],[[8344,709,8341]],[[8353,747,8345]],[[8345,747,710]],[[8345,710,8344]],[[8354,8353,8343]],[[8343,8353,8345]],[[8355,8354,8346]],[[8346,8354,8343]],[[8356,8355,8347]],[[8347,8355,8346]],[[8349,8356,8332]],[[8332,8356,8293]],[[8293,8356,8338]],[[8338,8356,8347]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cd7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000022785","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0562849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.4300000667572,"min-height-surface":0.259999990463257,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8357,8358,8359]],[[8357,8359,8360]],[[8358,8361,8359]],[[1396,1657,8362]],[[8362,1657,8357]],[[8357,1657,8363]],[[8357,8363,8358]],[[1398,1396,8364]],[[8364,1396,8362]],[[8364,8362,8360]],[[8360,8362,8357]],[[1393,1398,8359]],[[8359,1398,8364]],[[8359,8364,8360]],[[1388,1393,8365]],[[8365,1393,8361]],[[8361,1393,8359]],[[1657,1388,8363]],[[8363,1388,8365]],[[8363,8365,8358]],[[8358,8365,8361]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cdc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-40.2)","identificatiebagpnd":"503100000022784","identificatiebagvbohoogstehuisnummer":"(1:503010000027120)","identificatiebagvbolaagstehuisnummer":"(1:503010000027118)","inonderzoek":"0","lokaalid":"G0503.032e68f0562949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.42000007629395,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84963.917 447554.114)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:51-55)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8366,8367,8368]],[[8369,8370,8371]],[[8365,8369,8371]],[[8363,8369,8365]],[[8372,8363,8373]],[[8363,8374,8369]],[[8363,8372,8374]],[[8374,8375,8376]],[[8374,8372,8375]],[[8363,8367,8366]],[[8368,8367,8377]],[[8373,8378,8379]],[[8373,8366,8378]],[[8373,8363,8366]],[[8368,8377,8380]],[[8381,8368,8380]],[[1501,1500,8367]],[[8367,1500,8377]],[[8382,1501,1657]],[[1657,1501,8363]],[[8363,1501,8367]],[[8383,8382,1388]],[[1388,8382,1657]],[[1388,1657,8365]],[[8365,1657,8363]],[[1389,8383,8371]],[[8371,8383,1388]],[[8371,1388,8365]],[[8384,1389,8370]],[[8370,1389,8371]],[[8385,8384,8369]],[[8369,8384,8370]],[[8386,8385,8374]],[[8374,8385,8369]],[[8387,8386,8376]],[[8376,8386,8374]],[[8388,8387,8375]],[[8375,8387,8376]],[[8389,8388,8372]],[[8372,8388,8375]],[[8390,8389,8373]],[[8373,8389,8372]],[[8391,8390,8379]],[[8379,8390,8373]],[[8392,8391,8378]],[[8378,8391,8379]],[[8393,8392,8366]],[[8366,8392,8378]],[[8394,8393,8368]],[[8368,8393,8366]],[[8395,8394,8381]],[[8381,8394,8368]],[[8396,8395,8380]],[[8380,8395,8381]],[[1500,8396,8377]],[[8377,8396,8380]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cdf-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026303","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0562a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.330000013113022,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8326,8329,8397]],[[8329,8398,8397]],[[8398,8329,8399]],[[8398,8399,8400]],[[8329,8401,8399]],[[8325,8328,8326]],[[8326,8328,8329]],[[8402,8325,8397]],[[8397,8325,8326]],[[1097,8402,8398]],[[8398,8402,8397]],[[1095,1097,8400]],[[8400,1097,8398]],[[8403,1095,8399]],[[8399,1095,8400]],[[8404,8403,8401]],[[8401,8403,8399]],[[8328,8404,8329]],[[8329,8404,8401]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18906-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017316","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":0.75,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8405,8406,8407]],[[8405,8407,8408]],[[8408,8407,8409]],[[8406,8410,8407]],[[8406,8411,8410]],[[1151,1150,8405]],[[8405,1150,8406]],[[1178,1151,8408]],[[8408,1151,8405]],[[1172,1178,8409]],[[8409,1178,8408]],[[1160,1172,8407]],[[8407,1172,8409]],[[1161,1160,8410]],[[8410,1160,8407]],[[8412,1161,8411]],[[8411,1161,8410]],[[1150,8412,8406]],[[8406,8412,8411]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1890f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017220","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.40000009536743,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8413,8414,8415]],[[8413,8415,8416]],[[8417,1942,8413]],[[8413,1942,8414]],[[2214,8417,8416]],[[8416,8417,8413]],[[1941,2214,8415]],[[8415,2214,8416]],[[1942,1941,8414]],[[8414,1941,8415]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18912-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017502","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.340000003576279,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8418,8419,8420]],[[8419,8421,8420]],[[8419,8422,8421]],[[8421,8422,8423]],[[8424,8425,8418]],[[8418,8425,8419]],[[8426,8424,8420]],[[8420,8424,8418]],[[8427,8426,8421]],[[8421,8426,8420]],[[8428,8427,8423]],[[8423,8427,8421]],[[8429,8428,8422]],[[8422,8428,8423]],[[8425,8429,8419]],[[8419,8429,8422]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18915-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026315","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.83999991416931,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8430,8431,8432]],[[8430,8432,8433]],[[8434,8435,8430]],[[8430,8435,8431]],[[8436,8434,8433]],[[8433,8434,8430]],[[8437,8436,8432]],[[8432,8436,8433]],[[8435,8437,8431]],[[8431,8437,8432]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18918-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017416","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8438,8439,8440]],[[8438,8440,8441]],[[8442,8443,8438]],[[8438,8443,8439]],[[8444,8442,8441]],[[8441,8442,8438]],[[8445,8444,8440]],[[8440,8444,8441]],[[8443,8445,8439]],[[8439,8445,8440]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b041-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000027890","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050769)","inonderzoek":"0","lokaalid":"G0503.032e68f0752449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.409999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84922.364 447574.977)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48B)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8446,8447,8448]],[[8447,8449,8448]],[[2477,2303,8446]],[[8446,2303,8447]],[[8450,2477,2476]],[[2476,2477,8448]],[[8448,2477,8446]],[[8451,8450,2487]],[[2487,8450,2476]],[[2487,2476,8449]],[[8449,2476,8448]],[[2303,8451,8447]],[[8447,8451,2487]],[[8447,2487,8449]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b046-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000027892","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050770)","inonderzoek":"0","lokaalid":"G0503.032e68f0752649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.409999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84923.983 447577.736)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48C)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8452,8453,8454]],[[8453,8455,8454]],[[2478,2301,8452]],[[8452,2301,8453]],[[2477,2478,8446]],[[8446,2478,8454]],[[8454,2478,8452]],[[2303,2477,8447]],[[8447,2477,8446]],[[8447,8446,8455]],[[8455,8446,8454]],[[2301,2303,8453]],[[8453,2303,8447]],[[8453,8447,8455]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b04b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017418","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050771)","inonderzoek":"0","lokaalid":"G0503.032e68f0752749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84927.347 447578.414)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48D)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8456,8457,8452]],[[8457,8453,8452]],[[2468,2510,8458]],[[8458,2510,8459]],[[8458,8459,8456]],[[8456,8459,8457]],[[8460,2468,2478]],[[2478,2468,8452]],[[8452,2468,8458]],[[8452,8458,8456]],[[8461,8460,2301]],[[2301,8460,2478]],[[2301,2478,8453]],[[8453,2478,8452]],[[2510,8461,8459]],[[8459,8461,8457]],[[8457,8461,2301]],[[8457,2301,8453]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b050-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.4)","identificatiebagpnd":"503100000017415","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050774)","inonderzoek":"0","lokaalid":"G0503.032e68f0752849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.90000009536743,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84931.244 447585.027)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48G)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8462,8463,8464]],[[8463,7497,8464]],[[8464,7497,7496]],[[2484,2485,8462]],[[8462,2485,8463]],[[2261,2484,8464]],[[8464,2484,8462]],[[8465,2261,2262]],[[2262,2261,7496]],[[7496,2261,8464]],[[8466,8465,2517]],[[2517,8465,2262]],[[2517,2262,7497]],[[7497,2262,7496]],[[2485,8466,8463]],[[8463,8466,2517]],[[8463,2517,7497]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b055-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017501","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050772)","inonderzoek":"0","lokaalid":"G0503.032e68f0752949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.389999985694885,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84929.127 447581.439)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48E)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8467,8468,8458]],[[8468,8459,8458]],[[8469,8470,2467]],[[2467,8470,2509]],[[2467,2509,8471]],[[8471,2509,8472]],[[8471,8472,8467]],[[8467,8472,8468]],[[8473,8469,2468]],[[2468,8469,8458]],[[8458,8469,2467]],[[8458,2467,8471]],[[8458,8471,8467]],[[8474,8473,2510]],[[2510,8473,2468]],[[2510,2468,8459]],[[8459,2468,8458]],[[8470,8474,2509]],[[2509,8474,8472]],[[8472,8474,8468]],[[8468,8474,2510]],[[8468,2510,8459]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b05a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017320","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050773)","inonderzoek":"0","lokaalid":"G0503.032e68f0752a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.82999992370605,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84932.514 447581.966)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48F)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8475,8472,8471]],[[8475,8471,8476]],[[2483,2509,8475]],[[8475,2509,8472]],[[2481,2483,8476]],[[8476,2483,8475]],[[2467,2481,8471]],[[8471,2481,8476]],[[2509,2467,8472]],[[8472,2467,8471]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b05d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017405","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.60000002384186,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8477,8478,8479]],[[8478,8480,8479]],[[8481,8482,8477]],[[8477,8482,8478]],[[8483,8481,8479]],[[8479,8481,8477]],[[8484,8483,8480]],[[8480,8483,8479]],[[8482,8484,8478]],[[8478,8484,8480]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d770-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017417","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.02999997138977,"min-height-surface":0.270000010728836,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8485,8486,8487]],[[8485,8487,8488]],[[8486,8489,8487]],[[8490,8491,8485]],[[8485,8491,8486]],[[8492,8490,8488]],[[8488,8490,8485]],[[8493,8492,8487]],[[8487,8492,8488]],[[8494,8493,8489]],[[8489,8493,8487]],[[8491,8494,8486]],[[8486,8494,8489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d773-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027891","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.49000000953674,"min-height-surface":0.430000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8495,8496,8497]],[[8495,8497,8498]],[[8497,8496,8499]],[[8497,8499,8500]],[[2273,2749,8495]],[[8495,2749,8496]],[[2270,2273,8498]],[[8498,2273,8495]],[[2271,2270,8497]],[[8497,2270,8498]],[[2269,2271,8500]],[[8500,2271,8497]],[[2267,2269,8499]],[[8499,2269,8500]],[[2749,2267,8496]],[[8496,2267,8499]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d778-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017414","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050768)","inonderzoek":"0","lokaalid":"G0503.032e68f0752e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.419999986886978,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84919.038 447574.260)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8448,8449,8501]],[[8449,8502,8501]],[[2476,2487,8448]],[[8448,2487,8449]],[[2268,2476,8501]],[[8501,2476,8448]],[[2264,2268,8502]],[[8502,2268,8501]],[[2487,2264,8449]],[[8449,2264,8502]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d795-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000022861","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.40000009536743,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8503,8504,8364]],[[8504,8362,8364]],[[1401,1598,8503]],[[8503,1598,8504]],[[8505,1401,1398]],[[1398,1401,8364]],[[8364,1401,8503]],[[8506,8505,1396]],[[1396,8505,1398]],[[1396,1398,8362]],[[8362,1398,8364]],[[1598,8506,8504]],[[8504,8506,1396]],[[8504,1396,8362]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1fea8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018599","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8507,8508,8509]],[[8508,8510,8509]],[[1478,1465,8507]],[[8507,1465,8508]],[[1455,1478,8509]],[[8509,1478,8507]],[[1512,1455,8510]],[[8510,1455,8509]],[[1465,1512,8508]],[[8508,1512,8510]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feab-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018606","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.30999994277954,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8511,8512,8513]],[[8512,8514,8513]],[[1451,1713,8511]],[[8511,1713,8512]],[[1324,1451,8513]],[[8513,1451,8511]],[[1667,1324,8514]],[[8514,1324,8513]],[[1713,1667,8512]],[[8512,1667,8514]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feae-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018588","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8515,8516,8517]],[[8516,8518,8517]],[[1438,1452,8515]],[[8515,1452,8516]],[[1468,1438,8517]],[[8517,1438,8515]],[[1402,1468,8518]],[[8518,1468,8517]],[[1452,1402,8516]],[[8516,1402,8518]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018603","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.78999996185303,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8519,8520,8521]],[[8519,8521,8522]],[[8522,8521,8523]],[[8520,8524,8521]],[[8520,8525,8524]],[[1225,1229,8519]],[[8519,1229,8520]],[[1226,1225,8522]],[[8522,1225,8519]],[[1206,1226,8523]],[[8523,1226,8522]],[[1216,1206,8521]],[[8521,1206,8523]],[[1217,1216,8524]],[[8524,1216,8521]],[[8526,1217,8525]],[[8525,1217,8524]],[[1229,8526,8520]],[[8520,8526,8525]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb4-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018604","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.21000003814697,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8527,8528,8529]],[[8527,8529,8530]],[[8530,8529,8531]],[[8528,8532,8529]],[[8528,8533,8532]],[[1122,1121,8527]],[[8527,1121,8528]],[[1133,1122,8530]],[[8530,1122,8527]],[[1115,1133,8531]],[[8531,1133,8530]],[[1227,1115,8529]],[[8529,1115,8531]],[[1230,1227,8532]],[[8532,1227,8529]],[[8534,1230,8533]],[[8533,1230,8532]],[[1121,8534,8528]],[[8528,8534,8533]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018597","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075ea49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.35999989509583,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8535,8536,8537]],[[8536,8538,8537]],[[8537,8538,8539]],[[8536,8540,8538]],[[8538,8540,8541]],[[8536,8542,8540]],[[8543,8544,8535]],[[8535,8544,8536]],[[1315,8543,8537]],[[8537,8543,8535]],[[1126,1315,8539]],[[8539,1315,8537]],[[1125,1126,8538]],[[8538,1126,8539]],[[1124,1125,8541]],[[8541,1125,8538]],[[8545,1124,8540]],[[8540,1124,8541]],[[8546,8545,8542]],[[8542,8545,8540]],[[8544,8546,8536]],[[8536,8546,8542]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feba-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018517","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075eb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":0.75,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8547,8548,8549]],[[8547,8549,8550]],[[8550,8549,8551]],[[8548,8552,8549]],[[8548,8553,8552]],[[1213,1212,8547]],[[8547,1212,8548]],[[1214,1213,8550]],[[8550,1213,8547]],[[1201,1214,8551]],[[8551,1214,8550]],[[1204,1201,8549]],[[8549,1201,8551]],[[1202,1204,8552]],[[8552,1204,8549]],[[8554,1202,8553]],[[8553,1202,8552]],[[1212,8554,8548]],[[8548,8554,8553]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1febd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018609","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075ec49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.34999990463257,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8555,8556,8557]],[[8555,8557,8558]],[[8558,8557,8559]],[[8556,8560,8557]],[[8556,8561,8560]],[[1199,1198,8555]],[[8555,1198,8556]],[[1294,1199,8558]],[[8558,1199,8555]],[[1186,1294,8559]],[[8559,1294,8558]],[[1187,1186,8557]],[[8557,1186,8559]],[[1188,1187,8560]],[[8560,1187,8557]],[[8562,1188,8561]],[[8561,1188,8560]],[[1198,8562,8556]],[[8556,8562,8561]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b41373904-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8563,1898,1900]],[[2886,8564,8565]],[[8566,8567,8568]],[[8567,8569,8570]],[[8571,8572,8153]],[[8572,8573,8574]],[[8575,8571,8576]],[[8577,8578,8579]],[[8580,8581,8565]],[[8570,1915,8582]],[[8583,8579,8584]],[[8574,8573,8578]],[[8585,8586,8587]],[[8588,8589,8590]],[[8591,8592,8586]],[[1924,123,8593]],[[1928,1924,8590]],[[1927,1928,8590]],[[1925,8590,1926]],[[1926,8590,1930]],[[1930,8582,1922]],[[8594,8569,8567]],[[1922,8582,1921]],[[8570,8155,8567]],[[1920,1921,8582]],[[1918,1920,8582]],[[1919,1918,8582]],[[1915,1919,8582]],[[1929,8570,1908]],[[8582,8590,8595]],[[1915,8570,1913]],[[8570,1911,1914]],[[1929,1910,8570]],[[8570,8582,8596]],[[1909,1908,8570]],[[1906,1909,8570]],[[8570,8597,8154]],[[1904,1905,8570]],[[1903,1904,8570]],[[1901,1903,8570]],[[1900,1901,8598]],[[8563,1900,8598]],[[8563,1899,1898]],[[8563,1897,1899]],[[8563,1896,1897]],[[8563,1895,1896]],[[1894,1890,8563]],[[1893,1894,8563]],[[1891,1893,8563]],[[8599,8600,8598]],[[8601,8567,8566]],[[8602,8600,120]],[[120,8600,119]],[[8599,8569,119]],[[8598,1901,8570]],[[8601,8594,8567]],[[8603,8566,8565]],[[8604,8605,2894]],[[8606,8607,8608]],[[8580,8565,8564]],[[8564,8609,8580]],[[8564,2886,2963]],[[8610,8611,8612]],[[8607,2894,8605]],[[193,8613,192]],[[192,8613,8610]],[[8614,118,8580]],[[193,8615,8613]],[[8609,8564,8616]],[[8154,8571,8153]],[[8597,8617,8573]],[[8615,8614,8606]],[[193,118,8614]],[[8618,8619,8581]],[[8618,8566,8603]],[[8578,8620,8584]],[[8621,8622,8583]],[[1925,1927,8590]],[[8623,8622,8621]],[[8586,8592,123]],[[8624,8623,8621]],[[8613,8615,8606]],[[193,8614,8615]],[[8610,8625,192]],[[8604,2894,192]],[[1930,8590,8582]],[[8595,8626,8627]],[[8154,8576,8571]],[[8617,8596,8628]],[[8614,8580,8606]],[[8581,8619,8565]],[[1924,8593,8590]],[[123,8592,8593]],[[8629,8630,8583]],[[8585,8591,8586]],[[8631,8583,8584]],[[8622,8579,8583]],[[8618,8601,8566]],[[117,8594,8601]],[[8620,8617,8584]],[[8632,8630,8629]],[[8579,8578,8584]],[[1911,8570,1910]],[[8633,8577,8579]],[[8572,8576,8573]],[[8634,8605,8604]],[[8608,8607,8605]],[[8625,8604,192]],[[8635,8611,8634]],[[8593,8588,8590]],[[8593,8592,8588]],[[124,8586,123]],[[8587,8623,8624]],[[8636,8596,8582]],[[8582,8595,8627]],[[8637,8621,8583]],[[8637,8624,8621]],[[8573,8617,8620]],[[8576,8154,8597]],[[8590,8589,8595]],[[8588,8592,8638]],[[8578,8573,8620]],[[8576,8597,8573]],[[8635,8634,8604]],[[8611,8606,8608]],[[117,8618,118]],[[117,8601,8618]],[[1914,1913,8570]],[[8596,8617,8597]],[[8577,8574,8578]],[[8639,8572,8574]],[[8585,8624,8637]],[[8587,124,8623]],[[118,8581,8580]],[[118,8618,8581]],[[8600,8599,119]],[[8598,8569,8599]],[[8155,8570,8154]],[[8582,8627,8636]],[[8598,8570,8569]],[[1905,1906,8570]],[[8570,8596,8597]],[[8640,8626,8629]],[[8617,8631,8584]],[[8629,8583,8631]],[[8640,8628,8636]],[[8631,8617,8628]],[[1892,8602,120]],[[1892,8600,8602]],[[8625,8612,8604]],[[8625,8610,8612]],[[8583,8630,8637]],[[8638,8589,8588]],[[8632,8638,8591]],[[8595,8589,8638]],[[8632,8591,8630]],[[8638,8592,8591]],[[8596,8636,8628]],[[8627,8626,8636]],[[8626,8640,8636]],[[8631,8628,8640]],[[8640,8629,8631]],[[8626,8632,8629]],[[8585,8587,8624]],[[8586,124,8587]],[[8612,8635,8604]],[[8612,8611,8635]],[[8641,8616,8564]],[[8609,8606,8580]],[[8641,8609,8616]],[[8607,8606,8609]],[[8607,8641,8564]],[[8607,8609,8641]],[[1891,8563,8598]],[[1890,1895,8563]],[[8572,8575,8576]],[[8572,8571,8575]],[[8619,8603,8565]],[[8619,8618,8603]],[[8634,8608,8605]],[[8634,8611,8608]],[[8639,8577,8633]],[[8639,8574,8577]],[[8630,8585,8637]],[[8630,8591,8585]],[[8595,8632,8626]],[[8595,8638,8632]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4137fbfc-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.a7f64e78a3f34c07a6005756fd037ca1","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8642,8643,8644]],[[8642,8644,8645]],[[8644,8643,8646]],[[8646,8647,8648]],[[8646,8643,8649]],[[8646,8649,8647]],[[8647,8649,8650]],[[8649,8643,8651]],[[8651,8652,8653]],[[8651,8643,8654]],[[8651,8654,8652]],[[8643,8655,8654]],[[8655,8656,8657]],[[8655,8643,8658]],[[8657,8656,8659]],[[8656,8655,8658]],[[8660,8661,8662]],[[8661,8663,8662]],[[8661,8664,8665]],[[8661,8665,8663]],[[8665,8664,8658]],[[8665,8658,8666]],[[8664,8656,8658]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4138231e-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef704049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8667,8668,8669]],[[8670,7728,7729]],[[8671,8672,8673]],[[8674,8675,2249]],[[8676,8677,8678]],[[8679,6972,6986]],[[8680,8681,6975]],[[8682,8683,6908]],[[8684,6910,8685]],[[7043,7044,8683]],[[8683,7044,6908]],[[8686,7042,2214]],[[8687,6861,8688]],[[8689,6860,8690]],[[8690,6860,8691]],[[8692,8690,8691]],[[8693,8694,8691]],[[8695,6860,8687]],[[8696,8697,8694]],[[8698,8694,8697]],[[8699,8697,8696]],[[6950,8696,8700]],[[8701,8687,2214]],[[8702,6908,6910]],[[2214,8703,8417]],[[8702,6910,8684]],[[8703,8682,8702]],[[8704,8705,8702]],[[8706,8707,8708]],[[8681,8680,8709]],[[8710,8707,8711]],[[8712,8707,2252]],[[8712,2252,2253]],[[8713,8680,6975]],[[2250,2249,8714]],[[8714,2249,8715]],[[8674,2249,2252]],[[8716,8717,8715]],[[8671,6732,6733]],[[8718,6733,465]],[[7729,8719,8670]],[[8668,8667,8720]],[[8721,8493,8494]],[[8722,8720,8721]],[[8723,8724,8725]],[[8726,8727,8728]],[[7727,8728,7737]],[[7737,8728,7736]],[[7736,8728,2275]],[[2275,8728,2749]],[[8443,8729,8445]],[[8730,2480,8731]],[[8731,2480,2479]],[[2634,2482,8732]],[[8733,2634,8734]],[[2634,8732,8734]],[[2482,2480,8732]],[[8735,8731,2479]],[[8730,8732,2480]],[[8736,8730,8737]],[[8738,8739,1101]],[[8740,560,556]],[[8741,1105,8742]],[[8743,8744,8745]],[[1101,8746,1105]],[[1101,8739,8747]],[[8742,8746,560]],[[8748,2475,2267]],[[1101,8747,8746]],[[8739,8736,8737]],[[8737,8730,8731]],[[8735,2466,2475]],[[2466,8735,2479]],[[8747,8739,8737]],[[2824,2749,8728]],[[2821,8491,8437]],[[8749,8494,8491]],[[8728,8727,2818]],[[2749,2824,8750]],[[8443,8737,8729]],[[2818,8724,8723]],[[8727,8724,2818]],[[8443,8747,8737]],[[2818,2824,8728]],[[8751,2821,8437]],[[8749,2820,8494]],[[8752,8723,8725]],[[8729,8435,8445]],[[8729,2821,8435]],[[2818,8753,2820]],[[2749,8750,2267]],[[8753,2818,8723]],[[8750,8735,2475]],[[8719,8752,8725]],[[8754,366,8675]],[[465,8669,8718]],[[8752,8755,8756]],[[2252,8707,8674]],[[8709,8757,8681]],[[8758,8759,8680]],[[8760,8709,8761]],[[8762,8715,8675]],[[8715,2249,8675]],[[8763,8764,8760]],[[8719,8765,8766]],[[8678,8675,8761]],[[8756,8755,8677]],[[8767,8768,8754]],[[8768,8769,8770]],[[8675,8678,8754]],[[8771,6986,8772]],[[8755,8773,8767]],[[8770,8774,8768]],[[8775,8670,8719]],[[8775,8776,8670]],[[6972,8713,6975]],[[6972,8777,8758]],[[8685,8778,8709]],[[8778,8681,8757]],[[8779,8780,8709]],[[8780,8684,8685]],[[2820,8722,8494]],[[8720,8493,8721]],[[8772,8676,8771]],[[8680,8761,8709]],[[6732,8772,6986]],[[6732,8673,8772]],[[6986,8771,8679]],[[8678,8761,8759]],[[8679,8777,6972]],[[8679,8759,8777]],[[8755,8767,8754]],[[8766,8752,8719]],[[8695,8687,8701]],[[6860,6861,8687]],[[8687,8688,2214]],[[6861,7042,8686]],[[8669,8668,8718]],[[8781,6733,8718]],[[8720,8667,466]],[[2820,8753,8668]],[[8782,8680,8713]],[[8759,8761,8680]],[[8755,8766,8773]],[[8783,8774,8770]],[[8783,8766,8765]],[[8755,8752,8766]],[[8754,8768,366]],[[8784,8769,8768]],[[8704,8702,8780]],[[8702,8682,6908]],[[8781,8672,8671]],[[8672,8676,8673]],[[2177,8701,2214]],[[2177,8695,8701]],[[8756,8672,8718]],[[8672,8677,8676]],[[8785,8783,8769]],[[8774,366,8768]],[[366,8786,8762]],[[8717,8714,8715]],[[367,8786,366]],[[367,8717,8716]],[[8725,8775,8719]],[[8776,7728,8670]],[[8783,8773,8766]],[[8769,8784,8773]],[[8773,8785,8769]],[[8765,8719,8783]],[[7042,8683,2214]],[[7042,7043,8683]],[[8779,8787,8708]],[[6910,8778,8685]],[[8787,8788,8708]],[[8789,8674,8707]],[[8779,8790,8787]],[[8760,8764,8790]],[[8790,8764,8788]],[[8760,8674,8789]],[[8718,8672,8781]],[[8756,8677,8672]],[[6732,8671,8673]],[[6733,8781,8671]],[[8725,8776,8775]],[[8725,7728,8776]],[[6972,8758,8713]],[[8777,8759,8758]],[[8709,8780,8685]],[[8708,8791,8780]],[[8791,8704,8780]],[[8792,8705,8704]],[[8750,8793,2267]],[[8793,2475,8748]],[[8759,8676,8678]],[[8772,8673,8676]],[[8709,8778,8757]],[[6910,8681,8778]],[[8759,8771,8676]],[[8759,8679,8771]],[[8756,8668,8753]],[[8756,8718,8668]],[[466,8669,465]],[[466,8667,8669]],[[8769,8783,8770]],[[8719,366,8774]],[[8794,8726,8728]],[[8794,8727,8726]],[[8706,8763,8789]],[[8763,8760,8789]],[[8707,8706,8789]],[[8788,8764,8763]],[[8743,8745,8740]],[[8741,560,8745]],[[2214,8682,8703]],[[2214,8683,8682]],[[366,8762,8675]],[[8786,8716,8762]],[[8494,8722,8721]],[[2820,8668,8720]],[[8493,8720,466]],[[8722,2820,8720]],[[8787,8795,8788]],[[8790,8788,8795]],[[8780,8779,8708]],[[8790,8795,8787]],[[8760,8779,8709]],[[8760,8790,8779]],[[8741,8742,560]],[[1105,8746,8742]],[[8762,8716,8715]],[[8786,367,8716]],[[8700,8696,8694]],[[6950,8699,8696]],[[8792,8791,8708]],[[8792,8704,8791]],[[6950,8695,2177]],[[8691,6860,8695]],[[8773,8783,8785]],[[8719,8774,8783]],[[8767,8784,8768]],[[8767,8773,8784]],[[8688,8686,2214]],[[8688,6861,8686]],[[8743,8740,556]],[[8745,560,8740]],[[8788,8706,8708]],[[8788,8763,8706]],[[8780,8702,8684]],[[8705,8703,8702]],[[8744,8741,8745]],[[8744,1105,8741]],[[8435,8751,8437]],[[8435,2821,8751]],[[2821,8749,8491]],[[2821,2820,8749]],[[8711,8712,2253]],[[8711,8707,8712]],[[2267,8793,8748]],[[8750,2475,8793]],[[8700,8693,8691]],[[8700,8694,8693]],[[8695,8700,8691]],[[8695,6950,8700]],[[8758,8782,8713]],[[8758,8680,8782]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4138bef7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.967be64250624d208a88a6471c2bd3aa","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8738,8736,8739]],[[8738,1101,8658]],[[8658,8736,8738]],[[8796,8797,8798]],[[8799,8797,8730]],[[8800,8732,8801]],[[8733,8734,8802]],[[8803,8733,8802]],[[8804,8805,8806]],[[8807,8734,8800]],[[8808,8802,8809]],[[8802,8807,8809]],[[8802,8734,8807]],[[8734,8732,8800]],[[8810,8800,8801]],[[8810,8801,8811]],[[8812,8730,8736]],[[8801,8797,8796]],[[8813,8796,8798]],[[8732,8797,8801]],[[8732,8730,8797]],[[8799,8814,8797]],[[1102,8666,1101]],[[8658,1101,8666]],[[8799,8643,8814]],[[542,8815,8481]],[[8665,8666,8663]],[[8816,8817,8818]],[[8819,838,8820]],[[8662,8821,8660]],[[8822,8823,8824]],[[8825,8483,8484]],[[8826,8482,8827]],[[8828,8829,8830]],[[8831,8832,8833]],[[8834,8835,8836]],[[8837,8838,8839]],[[8840,8841,8837]],[[8842,8843,8844]],[[8844,8845,8842]],[[8846,8847,8845]],[[8844,8848,8849]],[[8850,8851,8852]],[[8849,8853,8845]],[[8854,7451,7452]],[[8855,8852,8851]],[[8856,8857,8858]],[[8844,8838,8859]],[[8860,8841,8861]],[[8862,7514,8863]],[[8864,541,542]],[[8865,8866,8867]],[[8868,7529,8869]],[[8870,8871,7312]],[[8815,8872,8831]],[[8864,8481,8483]],[[7291,7310,8873]],[[8874,542,543]],[[8875,8876,8877]],[[8878,8879,8880]],[[8881,541,8882]],[[8883,8884,8885]],[[8820,539,8819]],[[829,8886,828]],[[8887,8888,837]],[[837,8888,8889]],[[836,837,8889]],[[817,8890,816]],[[8889,8880,8891]],[[8892,8662,8663]],[[8893,834,835]],[[8893,833,834]],[[8893,832,833]],[[8891,8894,8895]],[[8893,831,832]],[[830,8893,829]],[[827,828,8886]],[[8886,829,8893]],[[8894,8822,8895]],[[8896,8897,8898]],[[8886,826,827]],[[8886,8899,823]],[[8824,8895,8822]],[[8886,823,824]],[[821,822,8899]],[[820,821,8900]],[[8890,8901,8902]],[[8903,8904,8905]],[[817,818,8900]],[[8892,8906,8821]],[[1102,8907,8666]],[[774,814,8908]],[[772,774,8908]],[[8909,8902,8901]],[[770,771,8908]],[[769,770,8910]],[[768,769,8910]],[[8902,8908,814]],[[8902,8911,8908]],[[8912,766,767]],[[8890,8902,815]],[[766,8912,765]],[[762,763,8913]],[[761,762,8913]],[[760,761,8913]],[[8914,759,760]],[[8915,8916,8917]],[[8918,758,759]],[[8914,8915,8918]],[[8918,8915,757]],[[8915,755,756]],[[8917,754,755]],[[8919,753,754]],[[751,752,8919]],[[8920,751,8919]],[[8920,750,751]],[[8921,749,8920]],[[8920,749,750]],[[8919,752,753]],[[8922,8352,8923]],[[8924,8925,8403]],[[8898,8350,8896]],[[8926,8927,8928]],[[8330,8929,8328]],[[8898,8897,8930]],[[8907,1102,8931]],[[8931,1102,8925]],[[1100,8925,1102]],[[8932,8933,7451]],[[8854,7452,8934]],[[8935,8873,8867]],[[8867,8876,8865]],[[8877,8876,8936]],[[8833,8832,8482]],[[8850,8937,8938]],[[8939,8940,8933]],[[8941,8942,8943]],[[8351,8944,8350]],[[8945,8946,8879]],[[8822,8816,8947]],[[8903,8823,8948]],[[8821,8662,8892]],[[7530,8949,8950]],[[8951,7516,8952]],[[767,8910,8912]],[[767,768,8910]],[[8953,8954,8884]],[[540,541,8954]],[[8906,8904,8955]],[[8948,8947,8955]],[[8890,817,8900]],[[8948,8955,8904]],[[8956,8901,8905]],[[8908,8911,8910]],[[8957,8958,8959]],[[8960,8961,8962]],[[8963,8819,8964]],[[8965,541,8881]],[[8966,8881,8882]],[[8885,8954,8965]],[[819,8900,818]],[[819,820,8900]],[[8481,8864,542]],[[8882,541,8864]],[[8848,8967,8849]],[[8968,8969,8937]],[[8970,8971,8972]],[[8972,543,7291]],[[7311,8973,7310]],[[8974,8975,8976]],[[8937,8969,8977]],[[8934,8978,8979]],[[8914,8918,759]],[[757,758,8918]],[[8970,8972,8980]],[[8936,8876,8873]],[[8844,8849,8845]],[[8981,8982,8850]],[[8983,8984,8855]],[[8853,8985,8986]],[[8926,8928,8987]],[[8987,8350,8898]],[[764,8913,763]],[[764,765,8913]],[[8913,8912,8910]],[[8913,765,8912]],[[8952,8830,8951]],[[8863,8951,8830]],[[8988,8989,8990]],[[8834,7529,8950]],[[8991,8992,8938]],[[8993,8939,8932]],[[8851,8850,8979]],[[8856,8849,8967]],[[8981,8994,8982]],[[8977,8991,8938]],[[8846,8845,8978]],[[8847,8842,8845]],[[8946,8995,8816]],[[8816,8818,8947]],[[8861,8996,8838]],[[8844,8843,8838]],[[8978,8851,8979]],[[8983,8845,8984]],[[8997,8959,8998]],[[8867,8873,8876]],[[8999,8971,8970]],[[9000,8804,8827]],[[9001,8949,8862]],[[8949,7514,8862]],[[8890,8895,8901]],[[8900,821,8899]],[[8905,8895,8824]],[[8886,824,825]],[[8917,8919,754]],[[8917,9002,8920]],[[8932,8939,8933]],[[8940,7451,8933]],[[8926,8898,9003]],[[8926,8987,8898]],[[7503,8848,7517]],[[9004,8967,8848]],[[9005,8968,8937]],[[9006,9007,8977]],[[8834,8869,7529]],[[8836,7314,8869]],[[770,8908,8910]],[[771,772,8908]],[[8875,8865,8876]],[[9008,8806,9009]],[[8960,8962,8997]],[[9008,8865,9010]],[[8988,8840,8839]],[[9011,8828,7516]],[[8990,8841,8840]],[[8835,9012,8836]],[[9013,9014,8961]],[[8980,8935,8867]],[[9015,8871,8975]],[[8974,8804,8806]],[[7310,8936,8873]],[[7310,8877,8936]],[[816,8890,815]],[[8900,8899,8890]],[[8830,8829,8863]],[[7529,7530,8950]],[[9016,8829,8828]],[[8834,9001,8829]],[[8938,8932,8934]],[[9017,8993,8932]],[[8932,8854,8934]],[[8932,7451,8854]],[[7314,8868,8869]],[[7314,7529,8868]],[[534,8820,838]],[[8884,8954,8885]],[[539,8953,8964]],[[8953,540,8954]],[[8964,8953,8884]],[[539,540,8953]],[[8975,8871,8839]],[[7311,7312,8871]],[[8985,9018,8994]],[[8858,7448,9019]],[[8963,8964,8884]],[[8819,539,8964]],[[8930,9020,9021]],[[9022,9023,8897]],[[8483,8882,8864]],[[8483,8966,8882]],[[8885,8965,8881]],[[8954,541,8965]],[[8658,8812,8736]],[[8658,8643,8812]],[[542,8957,8815]],[[8959,8997,8832]],[[7450,9007,7448]],[[8993,8992,9007]],[[8966,8825,8946]],[[8484,8817,9024]],[[7448,8967,7503]],[[7448,8857,8967]],[[8404,9021,8403]],[[9020,8925,8924]],[[8938,8934,8979]],[[7452,8978,8934]],[[7514,8951,8863]],[[7514,7516,8951]],[[9025,9026,8922]],[[9027,9002,8917]],[[8850,8938,8979]],[[8992,9017,8938]],[[8863,9001,8862]],[[7530,7514,8949]],[[9025,8943,9028]],[[9025,9028,9023]],[[8903,8948,8904]],[[8821,8818,8660]],[[8823,8947,8948]],[[8823,8822,8947]],[[9029,8958,8970]],[[9030,543,8971]],[[8959,8958,9029]],[[8872,8815,8957]],[[8874,8957,542]],[[8874,8999,8958]],[[8957,8874,8958]],[[9030,8971,8999]],[[8963,8884,8883]],[[8879,8816,8894]],[[8895,8886,8891]],[[8880,8879,8894]],[[8815,8831,8481]],[[8832,8827,8482]],[[8828,8952,7516]],[[8828,8830,8952]],[[8328,8929,8404]],[[8927,8331,8928]],[[8403,9021,8924]],[[9003,8898,8930]],[[8982,8937,8850]],[[9005,8982,9019]],[[8832,8997,8827]],[[9031,8805,9000]],[[7517,8844,8859]],[[7517,8848,8844]],[[7517,9032,7516]],[[7517,8859,9032]],[[543,8972,8971]],[[7291,8873,8935]],[[9019,8968,9005]],[[7448,9007,9006]],[[835,836,8893]],[[838,8819,8888]],[[8894,8891,8880]],[[830,831,8893]],[[7450,8940,8939]],[[7450,7451,8940]],[[8997,9031,9000]],[[8805,8804,9000]],[[9009,8806,9031]],[[8806,9008,8974]],[[8988,8990,8840]],[[8989,8841,8990]],[[9033,9034,8663]],[[8901,8895,8905]],[[9024,9035,8484]],[[8966,8945,9036]],[[9035,8946,8825]],[[8816,8822,8894]],[[9032,8996,9011]],[[8841,8989,9016]],[[8865,8875,9010]],[[9015,7311,8871]],[[8875,9037,9010]],[[9038,8973,9039]],[[9040,9015,8975]],[[9039,7311,9015]],[[8899,8886,8895]],[[8893,8889,8891]],[[8982,9005,8937]],[[8982,9018,9019]],[[8871,8988,8839]],[[8871,8989,8988]],[[8983,8855,8851]],[[8984,8986,8855]],[[8978,8983,8851]],[[8978,8845,8983]],[[746,9041,8923]],[[746,748,9041]],[[8957,8959,8872]],[[8998,8960,8997]],[[9031,8997,9009]],[[9000,8827,8997]],[[9031,8806,8805]],[[9009,8962,9008]],[[9030,8874,543]],[[9030,8999,8874]],[[8872,8832,8831]],[[8872,8959,8832]],[[8481,8833,8482]],[[8481,8831,8833]],[[8973,8877,7310]],[[8973,8875,8877]],[[8828,8861,8841]],[[8996,8859,8838]],[[8841,8860,8837]],[[8861,8838,9042]],[[8351,9043,8944]],[[8944,8897,8896]],[[8871,9012,8989]],[[8836,8869,8834]],[[8829,9001,8863]],[[8950,8949,9001]],[[9021,9020,8924]],[[8930,8897,9023]],[[8972,8935,8980]],[[8972,7291,8935]],[[7503,9004,8848]],[[7503,8967,9004]],[[9037,8975,9010]],[[8839,8804,8976]],[[838,8887,837]],[[838,8888,8887]],[[8888,8963,8878]],[[9044,8881,9036]],[[9045,9036,8879]],[[9045,8885,9044]],[[8916,9027,8917]],[[8352,746,8923]],[[8812,8799,8730]],[[8812,8643,8799]],[[9001,8834,8950]],[[8829,9016,9046]],[[8929,8927,8404]],[[8929,8330,8927]],[[8404,8927,8926]],[[8330,8331,8927]],[[8982,8994,9018]],[[8853,8984,8845]],[[8852,8986,8994]],[[8852,8855,8986]],[[8985,8853,8849]],[[8986,8984,8853]],[[9020,8930,8931]],[[8942,8913,8911]],[[9026,9025,9023]],[[8907,9033,8663]],[[8404,9003,9047]],[[9048,9028,9049]],[[8666,8907,8663]],[[9049,8909,8956]],[[9020,8931,8925]],[[9048,9023,9028]],[[9048,8907,8931]],[[9048,9049,8907]],[[9034,8956,8905]],[[9033,8907,9049]],[[8881,8966,9036]],[[8483,8825,8966]],[[9036,8945,8879]],[[8966,8946,8945]],[[8976,8975,8839]],[[9037,9040,8975]],[[8937,8977,8938]],[[8969,9006,8977]],[[9007,8991,8977]],[[9050,8992,8991]],[[9007,9050,8991]],[[9007,8992,9050]],[[8875,9040,9037]],[[9038,9039,9015]],[[9014,9029,8980]],[[8958,8999,8970]],[[8824,8903,8905]],[[8824,8823,8903]],[[8852,8981,8850]],[[8852,8994,8981]],[[8968,9006,8969]],[[8968,9019,9006]],[[748,8921,9041]],[[748,749,8921]],[[8878,8963,9045]],[[8888,8819,8963]],[[8860,9042,8837]],[[8860,8861,9042]],[[8840,8837,8839]],[[9042,8838,8837]],[[8892,9034,8905]],[[9033,8956,9034]],[[8944,9043,9026]],[[8351,8352,9043]],[[8352,8922,9043]],[[9002,9041,8920]],[[9027,8916,8941]],[[8917,755,8915]],[[8913,8914,760]],[[8913,8942,8941]],[[8331,8987,8928]],[[8331,8350,8987]],[[9047,9003,8930]],[[8404,8926,9003]],[[8871,8870,9012]],[[7312,7314,8870]],[[8947,8821,8955]],[[8947,8818,8821]],[[8484,9035,8825]],[[9024,8817,8995]],[[9035,8995,8946]],[[9035,9024,8995]],[[8946,8816,8879]],[[8995,8817,8816]],[[8890,8899,8895]],[[822,823,8899]],[[826,8886,825]],[[8893,8891,8886]],[[9034,8892,8663]],[[8905,8904,8906]],[[8821,8906,8955]],[[8892,8905,8906]],[[8938,9017,8932]],[[8992,8993,9017]],[[9040,9038,9015]],[[8973,7311,9039]],[[8875,9038,9040]],[[8875,8973,9038]],[[8930,9051,8931]],[[8930,9023,9051]],[[9051,9048,8931]],[[9051,9023,9048]],[[538,8820,534]],[[538,539,8820]],[[7450,8993,9007]],[[7450,8939,8993]],[[7448,8858,8857]],[[8985,8849,8856]],[[8857,8856,8967]],[[8858,8985,8856]],[[8841,9016,8828]],[[8989,9012,9016]],[[8829,9046,8834]],[[9016,9012,9046]],[[757,8915,756]],[[8914,8916,8915]],[[9045,8883,8885]],[[9045,8963,8883]],[[9021,9047,8930]],[[9021,8404,9047]],[[8870,8836,9012]],[[8870,7314,8836]],[[8959,9029,8998]],[[9014,8867,8961]],[[8980,9029,8970]],[[9013,8998,9029]],[[9029,9014,9013]],[[8980,8867,9014]],[[8997,8962,9009]],[[8866,8865,9008]],[[8961,8866,8962]],[[8974,8976,8804]],[[9010,8974,9008]],[[9010,8975,8974]],[[9022,9026,9023]],[[8922,8923,9002]],[[9025,9027,8943]],[[9025,8922,9002]],[[9025,9002,9027]],[[8923,9041,9002]],[[8944,9026,9022]],[[9043,8922,9026]],[[8917,8920,8919]],[[9041,8921,8920]],[[9046,8835,8834]],[[9046,9012,8835]],[[9033,9049,8956]],[[8909,8901,8956]],[[9028,8911,9049]],[[8911,8913,8910]],[[815,8902,814]],[[8909,8911,8902]],[[9049,8911,8909]],[[9028,8943,8942]],[[9028,8942,8911]],[[8943,9027,8941]],[[8914,8941,8916]],[[8914,8913,8941]],[[9011,8996,8861]],[[9032,8859,8996]],[[8828,9011,8861]],[[7516,9032,9011]],[[8985,9019,9018]],[[7448,9006,9019]],[[8879,8878,9045]],[[8880,8888,8878]],[[8897,8944,9022]],[[8896,8350,8944]],[[836,8889,8893]],[[8888,8880,8889]],[[9019,8985,8858]],[[8994,8986,8985]],[[9045,9044,9036]],[[8885,8881,9044]],[[8962,8866,9008]],[[8961,8867,8866]],[[9013,8960,8998]],[[9013,8961,8960]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413d2c2d-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9052,7400,9053]],[[9054,9055,2630]],[[9055,7401,2630]],[[9053,7399,7401]],[[2709,9054,2630]],[[9052,7401,9055]],[[9052,9053,7401]],[[7400,7399,9053]],[[9052,9054,2709]],[[9052,9055,9054]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413e64b2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9056,465,9057]],[[9058,9059,6734]],[[9059,9057,9060]],[[464,9061,462]],[[9060,9062,9059]],[[462,9058,6734]],[[462,9061,9058]],[[9063,9064,9061]],[[464,465,9061]],[[6734,9059,6733]],[[9063,9061,9056]],[[465,9060,9057]],[[9062,6733,9059]],[[9059,9063,9057]],[[9061,465,9056]],[[465,9062,9060]],[[465,6733,9062]],[[9057,9063,9056]],[[9064,9058,9061]],[[9059,9064,9063]],[[9059,9058,9064]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413eb30b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9065,9066,9067]],[[9068,9069,9070]],[[9071,9072,9073]],[[9074,9075,9076]],[[9074,9067,9075]],[[9067,9077,9075]],[[9078,9065,9071]],[[9071,9065,9072]],[[9078,9066,9065]],[[9066,9077,9067]],[[9069,9074,9076]],[[9069,9068,9074]],[[9073,9068,9070]],[[9071,9073,9070]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413feb75-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9079,8148,9080]],[[9081,9082,8144]],[[9083,9084,9085]],[[9086,8143,8144]],[[9082,9087,8144]],[[9088,9089,9090]],[[9091,8143,9086]],[[9090,9092,9093]],[[8140,9094,9095]],[[9095,9094,9096]],[[9096,9094,9097]],[[9097,9094,9098]],[[9098,9094,9099]],[[9099,9094,9100]],[[9100,9094,9101]],[[9101,9094,9102]],[[9102,9094,9103]],[[9104,9102,9103]],[[9105,9104,9103]],[[9106,9105,9103]],[[9103,9094,9089]],[[9107,9108,9103]],[[9109,9107,9103]],[[9110,9103,9089]],[[9110,9111,9109]],[[9110,9112,9111]],[[9110,9113,9112]],[[9114,8142,8143]],[[9115,9116,9117]],[[8145,9081,8144]],[[8145,8146,9118]],[[8142,9092,8141]],[[8142,9093,9092]],[[9117,9119,9120]],[[9114,8143,9091]],[[9079,9121,9122]],[[8147,8148,9121]],[[9123,9124,9125]],[[9126,9090,9093]],[[9117,9120,9127]],[[9128,9129,9121]],[[9130,9131,9114]],[[9093,8142,9131]],[[9089,9094,8140]],[[9110,9132,9133]],[[8141,9090,8140]],[[8141,9092,9090]],[[9130,9114,9091]],[[9131,8142,9114]],[[9118,9081,8145]],[[9117,9116,9134]],[[9135,9085,9084]],[[9087,9136,9086]],[[8147,9129,9137]],[[8147,9121,9129]],[[9132,9138,9084]],[[9139,9123,9131]],[[9079,9122,8148]],[[9121,8148,9122]],[[9140,9115,9079]],[[9115,9128,9079]],[[9125,9124,9138]],[[9123,9126,9093]],[[9134,9116,9082]],[[9141,9124,9139]],[[9142,9082,9081]],[[9116,9136,9087]],[[9090,9089,8140]],[[9089,9088,9110]],[[9143,9110,9133]],[[9143,9113,9110]],[[8144,9087,9086]],[[9082,9116,9087]],[[9138,9135,9084]],[[9138,9116,9115]],[[9123,9125,9126]],[[9132,9110,9088]],[[9086,9136,9091]],[[9136,9141,9130]],[[9091,9136,9130]],[[9116,9141,9136]],[[9138,9141,9116]],[[9138,9124,9141]],[[9118,9137,9119]],[[9118,8146,9137]],[[9115,9127,9128]],[[9119,9081,9118]],[[8147,9137,8146]],[[9129,9120,9137]],[[9120,9119,9137]],[[9117,9142,9119]],[[9119,9142,9081]],[[9134,9082,9142]],[[9129,9128,9120]],[[9115,9135,9138]],[[9079,9128,9121]],[[9127,9120,9128]],[[9126,9125,9138]],[[9126,9088,9090]],[[9132,9126,9138]],[[9132,9088,9126]],[[9115,9117,9127]],[[9134,9142,9117]],[[9130,9139,9131]],[[9130,9141,9139]],[[9131,9123,9093]],[[9139,9124,9123]],[[9080,9140,9079]],[[9083,9135,9115]],[[9084,9083,9080]],[[9083,9115,9140]],[[9109,9103,9110]],[[9108,9106,9103]],[[9080,9083,9140]],[[9085,9135,9083]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b41414b16-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef949249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9144,117,119]],[[9144,119,8569]],[[8594,9144,8569]],[[8594,117,9144]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414283a4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6895,6897,6787]],[[6895,6787,7038]],[[6897,6802,6787]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4142aad2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9145,9146,9147]],[[9146,9148,9147]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414394d7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cba49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7792,7790,7791]],[[7790,7789,7791]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414394ec-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9149,9150,365]],[[9151,9152,9153]],[[9154,9155,9152]],[[9156,9157,9158]],[[9159,9151,9160]],[[9157,9152,9161]],[[9162,9153,7713]],[[9163,7711,9160]],[[7710,9162,7713]],[[9149,9156,9158]],[[9149,365,364]],[[373,9157,372]],[[373,9158,9157]],[[373,9150,9158]],[[373,365,9150]],[[7709,9162,7710]],[[9160,9153,9162]],[[9164,9161,9159]],[[372,9157,9161]],[[9164,9159,7711]],[[9161,9152,9151]],[[9157,9156,9152]],[[9158,9150,9149]],[[9163,9160,9162]],[[7711,9159,9160]],[[9160,9151,9153]],[[9159,9161,9151]],[[9155,9165,364]],[[9155,9156,9165]],[[9165,9149,364]],[[9165,9156,9149]],[[372,9164,7711]],[[372,9161,9164]],[[7709,9163,9162]],[[7709,7711,9163]],[[9156,9154,9152]],[[9156,9155,9154]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b46c34501-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.29a2059927f84b779ccc323a4d72025a","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5999,5958,5921]],[[5999,5921,5917]],[[5958,5924,5921]],[[9166,5939,5996]],[[9166,9167,5939]],[[5942,9166,5996]],[[9168,9167,9166]],[[9168,5939,9167]],[[5958,9168,9166]],[[5958,5939,9168]],[[5924,9166,5942]],[[5924,5958,9166]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c36c2c-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efcc0d49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[9169,9170,9171]],[[9172,9173,9174]],[[9175,9176,9177]],[[9178,9170,9169]],[[9179,9180,3737]],[[9181,9182,9183]],[[9184,9185,9186]],[[9181,9187,9182]],[[9188,9187,9181]],[[9188,9189,9187]],[[9190,9191,3909]],[[9192,9190,3909]],[[9193,9192,3909]],[[9194,9195,9196]],[[9193,9197,9198]],[[9199,9200,9201]],[[9202,9185,9184]],[[9203,9204,9205]],[[9206,9207,9208]],[[9209,9210,3747]],[[9211,9212,9210]],[[9213,9214,9215]],[[9216,9211,9217]],[[9218,9219,3485]],[[9220,3755,9221]],[[9222,9218,3484]],[[9222,9223,9218]],[[9224,9225,9226]],[[9227,9228,9229]],[[9230,9231,9232]],[[9233,9234,9235]],[[9236,9237,9238]],[[9239,9240,9241]],[[9242,9243,9244]],[[9238,9245,9246]],[[9247,9243,9248]],[[9247,9248,9249]],[[9221,3810,9219]],[[9249,9248,9250]],[[9251,9252,9253]],[[9254,9255,9256]],[[9256,9255,9257]],[[9257,9255,9258]],[[9255,9254,9250]],[[9259,9260,9252]],[[9261,9255,9262]],[[9262,9255,9263]],[[9263,9255,9264]],[[9264,9255,9265]],[[9266,9267,9268]],[[9265,9255,9269]],[[9269,9255,9270]],[[9271,9269,9270]],[[9272,9271,9270]],[[9273,9272,9270]],[[9274,9273,9270]],[[9275,9276,9277]],[[9278,9274,9270]],[[9279,9280,9281]],[[9282,9278,9270]],[[9283,9226,9284]],[[9285,9286,9287]],[[9288,9225,9289]],[[9290,9291,3579]],[[9292,3441,9293]],[[9294,9295,9296]],[[9297,3834,9298]],[[9297,9299,3894]],[[9300,9301,9175]],[[9302,9303,9304]],[[3632,9222,3484]],[[3484,9218,3485]],[[3485,9219,3810]],[[3810,9221,3755]],[[9305,9220,9306]],[[9210,9212,9298]],[[9307,9217,9211]],[[3747,9298,3834]],[[3834,9297,3934]],[[3934,9297,3894]],[[3894,9299,9308]],[[9309,9310,9311]],[[9312,9313,9314]],[[9181,9183,3737]],[[9315,9316,9317]],[[9183,9179,3737]],[[9180,9178,3737]],[[9180,9170,9178]],[[9318,9178,9169]],[[9319,9320,9321]],[[9322,9323,9324]],[[9325,9326,9327]],[[9301,9328,9329]],[[9330,9327,9331]],[[9329,9332,9319]],[[9333,9334,9335]],[[9336,9337,9338]],[[9339,9340,9341]],[[9236,9238,9246]],[[9342,9343,9344]],[[9345,9346,9347]],[[9348,9349,9350]],[[9321,9351,9352]],[[9353,9354,9355]],[[9356,9357,9327]],[[9215,9207,9358]],[[9359,9360,9361]],[[9176,9175,9352]],[[9362,9363,9327]],[[9364,9365,9366]],[[9327,9357,9353]],[[9175,9319,9352]],[[9328,9367,9329]],[[9368,9369,9327]],[[9363,9366,9368]],[[9370,9302,9371]],[[9372,9373,9374]],[[9375,9174,9173]],[[9302,9304,9371]],[[9376,9352,9351]],[[9377,9332,9364]],[[9296,9362,9330]],[[9377,9320,9332]],[[9327,9353,9325]],[[9378,9379,9295]],[[9380,9350,9381]],[[9380,9357,9356]],[[9382,9383,9384]],[[9326,9331,9327]],[[9260,9362,9295]],[[9363,9385,9386]],[[9326,9296,9331]],[[9362,9327,9330]],[[9384,9383,9325]],[[9378,9295,9294]],[[9387,9388,9389]],[[9372,9390,9391]],[[9392,9393,9382]],[[9394,9379,9378]],[[9230,9232,9395]],[[9231,9396,9232]],[[9340,9397,9341]],[[9245,9239,9398]],[[9399,9400,9401]],[[9397,9340,9241]],[[9402,9403,9404]],[[9405,9406,9322]],[[9177,9176,9407]],[[9406,9405,9408]],[[9409,9410,9411]],[[9371,9304,9344]],[[9172,9408,9412]],[[9389,9413,9414]],[[9392,9382,9415]],[[9416,9417,9394]],[[9418,9376,9351]],[[9176,9352,9376]],[[9419,9420,9421]],[[9371,9344,9422]],[[9423,9344,9304]],[[9424,9425,9426]],[[9427,9206,9208]],[[9428,9429,3431]],[[9335,9430,9391]],[[9391,3553,3441]],[[9381,9431,9432]],[[9433,9434,9435]],[[9339,9341,9244]],[[9397,9240,9400]],[[9436,9437,9438]],[[9439,9440,9395]],[[9293,9280,9276]],[[9441,3440,9442]],[[9438,9443,9444]],[[9440,9443,9445]],[[9438,9446,9443]],[[9395,9447,9230]],[[9446,9228,9445]],[[9448,9232,9396]],[[9224,9449,9450]],[[9436,9444,9451]],[[9258,9255,9261]],[[9452,9243,9453]],[[9329,9350,9332]],[[9349,9431,9381]],[[9341,9399,9244]],[[9341,9397,9399]],[[9388,9387,9259]],[[9454,9173,9172]],[[9259,9454,9455]],[[9375,9173,9454]],[[9456,9457,9424]],[[9422,9344,9343]],[[9319,9332,9320]],[[9350,9365,9332]],[[9458,9421,9459]],[[9460,9371,9422]],[[9461,9427,9462]],[[9461,9206,9427]],[[9454,9259,9375]],[[9463,9464,9465]],[[9466,9467,9468]],[[9467,9469,9470]],[[9471,9393,9392]],[[9472,9382,9393]],[[9473,9353,9381]],[[9335,9334,9430]],[[9435,9474,9433]],[[9355,9415,9325]],[[9417,9393,9471]],[[9475,9392,9355]],[[9471,9434,9391]],[[9476,9434,9473]],[[9477,9404,9478]],[[9479,9480,9481]],[[9482,9337,9336]],[[9426,9483,9456]],[[9484,9485,9486]],[[9487,9409,9411]],[[9334,9402,9430]],[[9478,9488,9489]],[[9430,9402,9490]],[[9334,9328,9403]],[[9478,9489,9491]],[[9492,9493,9175]],[[9494,9493,9492]],[[9176,9376,9407]],[[9174,9495,9172]],[[9496,9324,9497]],[[9379,9292,9284]],[[9293,9275,9498]],[[9378,9326,9325]],[[9294,9296,9326]],[[9499,9500,9501]],[[9502,9503,9270]],[[9504,9505,9448]],[[9501,9447,9395]],[[9334,9333,9328]],[[9348,9350,9367]],[[9175,9301,9319]],[[9367,9350,9329]],[[9328,9333,9367]],[[9335,9391,9267]],[[9401,9240,9506]],[[9340,9339,9398]],[[9239,9506,9240]],[[9240,9397,9241]],[[9401,9400,9240]],[[9399,9397,9400]],[[9244,9401,9242]],[[9244,9399,9401]],[[9242,9506,9507]],[[9242,9401,9506]],[[9508,9509,9510]],[[9511,9500,9512]],[[9398,9246,9245]],[[9287,9286,9243]],[[9513,9235,9514]],[[9515,9231,9230]],[[9459,9516,9517]],[[9421,9420,9516]],[[9242,9453,9243]],[[9507,9245,9518]],[[9285,9519,9248]],[[9452,9507,9518]],[[9451,9520,9436]],[[9439,9521,9520]],[[9448,9505,9395]],[[9520,9451,9440]],[[9395,9505,9439]],[[9225,9288,9521]],[[9505,9504,9396]],[[9505,9521,9439]],[[9321,9377,9385]],[[9369,9365,9380]],[[9351,9385,9362]],[[9385,9377,9386]],[[9319,9321,9352]],[[9320,9377,9321]],[[9285,9248,9286]],[[9248,9243,9286]],[[9507,9452,9453]],[[9518,9285,9452]],[[9522,9523,9252]],[[9455,9260,9259]],[[9524,9343,9342]],[[9525,9457,9464]],[[9345,9526,9495]],[[9426,9456,9424]],[[9420,9527,9460]],[[9343,9524,9422]],[[9528,9338,9337]],[[9346,9495,9529]],[[9426,9411,9483]],[[9530,9528,9531]],[[9347,9532,9345]],[[9495,9481,9172]],[[9422,9524,9425]],[[9533,9534,9535]],[[9536,9533,9535]],[[9535,9530,9532]],[[9533,9537,9538]],[[9539,9426,9524]],[[9530,9531,9526]],[[9540,9541,9482]],[[9174,9529,9495]],[[9542,9387,9389]],[[9174,9542,9529]],[[9542,9389,9410]],[[9543,9446,9279]],[[9445,9443,9446]],[[9543,9228,9446]],[[9227,9440,9445]],[[9543,9279,9544]],[[9436,9438,9444]],[[9326,9378,9294]],[[9394,9417,9379]],[[9495,9346,9345]],[[9529,9409,9346]],[[9545,9282,9270]],[[9250,9254,9249]],[[9546,9547,9548]],[[9503,9545,9270]],[[9548,9549,9550]],[[9551,9552,9502]],[[9487,9347,9346]],[[9532,9526,9345]],[[9553,9538,9537]],[[9554,9524,9342]],[[9555,9556,9342]],[[9534,9557,9535]],[[9558,9554,9556]],[[9559,9538,9554]],[[9471,9475,9435]],[[9471,9392,9475]],[[9446,9280,9279]],[[3441,3440,9560]],[[9279,9281,9441]],[[9561,3441,9560]],[[9410,9389,9414]],[[9562,9252,9251]],[[9529,9542,9409]],[[9174,9375,9387]],[[9388,9563,9389]],[[9564,9522,9517]],[[9389,9563,9413]],[[9465,9259,9252]],[[9565,9566,9567]],[[9568,9313,9569]],[[9308,9570,9571]],[[9572,9573,9574]],[[9567,9566,9203]],[[9575,9576,9577]],[[9578,9579,9580]],[[9581,9577,9582]],[[9583,9566,9584]],[[9585,9586,9566]],[[3894,9308,3630]],[[9299,9462,9308]],[[9333,9348,9367]],[[9333,9335,9267]],[[9587,9588,9589]],[[9527,9420,9419]],[[9460,9424,9457]],[[9422,9425,9424]],[[9420,9460,9516]],[[9422,9424,9460]],[[9525,9464,9463]],[[9523,9465,9252]],[[9495,9479,9481]],[[9324,9590,9497]],[[9531,9591,9495]],[[9592,9541,9593]],[[9405,9496,9594]],[[9323,9595,9324]],[[9486,9485,9596]],[[9489,9488,9485]],[[9494,9488,9404]],[[9494,9492,9596]],[[9283,9293,9226]],[[9280,9446,9276]],[[9407,9597,9177]],[[9494,9300,9493]],[[9477,9478,9373]],[[9489,9485,9593]],[[9373,9491,9374]],[[9598,9478,9491]],[[9564,9463,9523]],[[9464,9563,9465]],[[9414,9464,9457]],[[9413,9563,9464]],[[9599,9600,9601]],[[9428,3431,3630]],[[9565,9584,9566]],[[9602,9603,9586]],[[9604,9605,9513]],[[9234,9509,9514]],[[9386,9364,9363]],[[9364,9332,9365]],[[9363,9364,9366]],[[9386,9377,9364]],[[9308,9576,9570]],[[9214,9582,9606]],[[9607,9577,9576]],[[9207,9215,9208]],[[9292,9293,9283]],[[3441,9561,9293]],[[9608,9501,9395]],[[9511,9609,9610]],[[9460,9525,9516]],[[9522,9252,9459]],[[9611,9412,9408]],[[9408,9172,9481]],[[9612,9613,9303]],[[9614,9344,9423]],[[9303,9613,9555]],[[9342,9344,9614]],[[9615,9283,9284]],[[9615,9292,9283]],[[9314,9313,9616]],[[9617,9618,9429]],[[9619,9620,9621]],[[9619,9361,9622]],[[9623,9309,9624]],[[9573,9571,9570]],[[9601,9600,9580]],[[9625,9571,9573]],[[9626,9578,9580]],[[9600,9599,9580]],[[9311,9627,9309]],[[9579,9601,9580]],[[9205,9628,9359]],[[9625,9629,9571]],[[9630,9625,9572]],[[9570,9576,9575]],[[9357,9381,9353]],[[9431,9266,9476]],[[9381,9432,9473]],[[9431,9349,9266]],[[9516,9525,9517]],[[9525,9463,9564]],[[9404,9300,9494]],[[9403,9328,9301]],[[9319,9301,9329]],[[9300,9404,9403]],[[9300,9403,9301]],[[9402,9334,9403]],[[9347,9536,9532]],[[9538,9559,9533]],[[9524,9553,9539]],[[9553,9554,9538]],[[9631,9632,9565]],[[9632,9311,9579]],[[9628,9360,9359]],[[9313,9568,9616]],[[9267,9391,9268]],[[9349,9267,9266]],[[9380,9381,9357]],[[9350,9349,9381]],[[9580,9633,9602]],[[9628,9204,9634]],[[9481,9480,9323]],[[9418,9407,9376]],[[9323,9480,9595]],[[9541,9531,9528]],[[9322,9324,9496]],[[9635,9480,9636]],[[9558,9637,9638]],[[9534,9533,9559]],[[9558,9638,9559]],[[9637,9534,9638]],[[9516,9459,9421]],[[9517,9522,9459]],[[9370,9303,9302]],[[9423,9304,9303]],[[9595,9590,9324]],[[9639,9597,9640]],[[9595,9635,9590]],[[9596,9492,9641]],[[9225,9505,9396]],[[9225,9521,9505]],[[9475,9474,9435]],[[9392,9415,9355]],[[9174,9387,9542]],[[9375,9259,9387]],[[9642,9643,9628]],[[9574,9573,9581]],[[9606,9582,9577]],[[9215,9427,9208]],[[9353,9355,9325]],[[9474,9475,9355]],[[9644,9601,9579]],[[9645,9599,9601]],[[9546,9285,9518]],[[9250,9270,9255]],[[9546,9550,9646]],[[9647,9270,9250]],[[9519,9250,9248]],[[9647,9646,9551]],[[9648,9547,9510]],[[9647,9502,9270]],[[9548,9552,9549]],[[9552,9503,9502]],[[9646,9550,9551]],[[9549,9552,9551]],[[9548,9610,9552]],[[9442,9503,9552]],[[9519,9646,9250]],[[9550,9549,9551]],[[9285,9646,9519]],[[9546,9510,9547]],[[9508,9510,9546]],[[9509,9648,9510]],[[9514,9508,9518]],[[9514,9509,9508]],[[9308,9649,3630]],[[9649,9571,9650]],[[9379,9417,9651]],[[9472,9393,9417]],[[9492,9175,9177]],[[9493,9300,9175]],[[9564,9523,9522]],[[9563,9388,9465]],[[9594,9611,9405]],[[9412,9454,9172]],[[9481,9406,9408]],[[9481,9323,9322]],[[9405,9611,9408]],[[9455,9454,9412]],[[9641,9492,9177]],[[9596,9488,9494]],[[9597,9641,9177]],[[9597,9486,9596]],[[9363,9368,9327]],[[9366,9365,9368]],[[9233,9235,9605]],[[9605,9515,9230]],[[9233,9648,9509]],[[9234,9514,9235]],[[9544,9441,9442]],[[9560,3440,9441]],[[9652,9543,9442]],[[9279,9441,9544]],[[9291,9612,9370]],[[9371,9460,9527]],[[9539,9553,9537]],[[9524,9554,9553]],[[9224,9498,9289]],[[9275,9289,9498]],[[9293,9450,9449]],[[9293,9498,9450]],[[9470,9653,9467]],[[9654,9655,9656]],[[9643,9466,9314]],[[9467,9653,9468]],[[9656,9657,9658]],[[9659,9660,9661]],[[9569,9662,9663]],[[9622,9568,9663]],[[9524,9426,9425]],[[9539,9411,9426]],[[9552,9610,9442]],[[9512,9229,9543]],[[9608,9499,9501]],[[9608,9440,9229]],[[9648,9664,9547]],[[9609,9442,9610]],[[9405,9322,9496]],[[9406,9481,9322]],[[9635,9636,9639]],[[9480,9592,9636]],[[9590,9635,9639]],[[9595,9480,9635]],[[9470,9468,9653]],[[9655,9665,9656]],[[9504,9448,9396]],[[9395,9232,9448]],[[9284,9292,9615]],[[9379,3441,9292]],[[9410,9414,9483]],[[9413,9464,9414]],[[9645,9644,9623]],[[9666,9627,9667]],[[9293,9276,9275]],[[9446,9438,9276]],[[9579,9668,9644]],[[9310,9623,9644]],[[9626,9632,9578]],[[9584,9565,9632]],[[9566,9583,9585]],[[9626,9580,9602]],[[9584,9626,9583]],[[9584,9632,9626]],[[9574,9581,9634]],[[9575,9577,9581]],[[9325,9383,9394]],[[9382,9416,9394]],[[9415,9384,9325]],[[9415,9382,9384]],[[9669,9613,9612]],[[9303,9555,9423]],[[9555,9613,9556]],[[9612,9291,9669]],[[9670,9336,9338]],[[9390,3553,9391]],[[9491,9671,9374]],[[9491,9489,9672]],[[9490,9373,9372]],[[9390,9336,9670]],[[9390,9482,9336]],[[9482,9671,9540]],[[9557,9390,9670]],[[9374,9671,9482]],[[9338,9557,9670]],[[9535,9532,9536]],[[9338,9535,9557]],[[9338,9528,9530]],[[9526,9531,9495]],[[9528,9337,9541]],[[9673,9643,9642]],[[9673,9466,9643]],[[3553,9534,9637]],[[3553,9557,9534]],[[9674,9658,9468]],[[9675,3431,9676]],[[9521,9288,9520]],[[9277,9276,9437]],[[9289,9277,9288]],[[9276,9438,9437]],[[9677,9678,9679]],[[9562,9680,9252]],[[9548,9681,9610]],[[9500,9499,9512]],[[9447,9682,9233]],[[9235,9513,9605]],[[9476,9473,9432]],[[9354,9353,9473]],[[9290,9669,9683]],[[9612,9303,9370]],[[3579,9291,3632]],[[9683,9669,9291]],[[9288,9277,9437]],[[9289,9275,9277]],[[9684,9685,9686]],[[9674,9468,9470]],[[9679,9687,9688]],[[9689,9291,9370]],[[9589,9690,9691]],[[9691,9692,9527]],[[9290,9558,9669]],[[9556,9613,9669]],[[9693,9660,9659]],[[9694,9675,9695]],[[9569,9655,9662]],[[9569,9663,9568]],[[9325,9394,9378]],[[9383,9382,9394]],[[9414,9456,9483]],[[9414,9457,9456]],[[9696,9697,9428]],[[9666,9624,9627]],[[9660,9698,9661]],[[9661,3431,9694]],[[9293,9699,9226]],[[9224,9289,9225]],[[9293,9449,9699]],[[9450,9498,9224]],[[9518,9238,9514]],[[9237,9604,9513]],[[9604,9237,9236]],[[9513,9514,9238]],[[9281,9561,9441]],[[9561,9280,9293]],[[9700,9358,9207]],[[9358,9213,9215]],[[9701,9700,9634]],[[9701,9582,9213]],[[9581,9701,9634]],[[9581,9582,9701]],[[9643,9314,9360]],[[9466,9468,9702]],[[9651,9391,3441]],[[9430,9372,9391]],[[9517,9525,9564]],[[9460,9457,9525]],[[9242,9507,9453]],[[9506,9239,9507]],[[9309,9627,9624]],[[9703,9704,9663]],[[9666,9667,9429]],[[9705,9703,9663]],[[9627,9620,9617]],[[9621,9311,9631]],[[9431,9476,9432]],[[9268,9434,9476]],[[9599,9650,9633]],[[9649,9308,9571]],[[9574,9706,9572]],[[9633,9580,9599]],[[9583,9602,9585]],[[9630,9572,9706]],[[9214,9707,9462]],[[9214,9427,9215]],[[9614,9555,9342]],[[9614,9423,9555]],[[9571,9629,9650]],[[9630,9706,9603]],[[9369,9380,9356]],[[9365,9350,9380]],[[9327,9369,9356]],[[9368,9365,9369]],[[9627,9617,9667]],[[9620,9676,9618]],[[9688,9588,9587]],[[9692,9689,9370]],[[9253,9688,9687]],[[9688,3632,9689]],[[9677,9679,9587]],[[9678,9687,9679]],[[9662,9695,9663]],[[9708,9620,9619]],[[9708,9704,9703]],[[9704,9622,9663]],[[9705,9708,9703]],[[9619,9622,9704]],[[9443,9451,9444]],[[9443,9440,9451]],[[9640,9597,9407]],[[9639,9486,9597]],[[9461,9467,9466]],[[9461,9469,9467]],[[9398,9239,9241]],[[9245,9507,9239]],[[9308,9607,9576]],[[9308,9462,9707]],[[9607,9606,9577]],[[9606,9308,9707]],[[9222,9688,9253]],[[3632,9291,9689]],[[9361,9568,9622]],[[9616,9360,9314]],[[9709,9710,9317]],[[9711,9712,9713]],[[9395,9440,9608]],[[9439,9520,9440]],[[9411,9410,9483]],[[9409,9542,9410]],[[9572,9625,9573]],[[9630,9629,9625]],[[9203,9205,9359]],[[9204,9574,9634]],[[9205,9204,9628]],[[9706,9574,9204]],[[9361,9203,9359]],[[9203,9586,9204]],[[9513,9238,9237]],[[9518,9245,9238]],[[9711,9714,9715]],[[9716,9712,9715]],[[9541,9672,9593]],[[9671,9491,9672]],[[9479,9592,9480]],[[9593,9485,9484]],[[9214,9606,9707]],[[9607,9308,9606]],[[9490,9372,9430]],[[9374,9482,9372]],[[9409,9487,9346]],[[9411,9539,9347]],[[9629,9633,9650]],[[9603,9706,9586]],[[9717,9251,9253]],[[9718,9678,9719]],[[9719,9680,9562]],[[9680,9459,9252]],[[9472,9416,9382]],[[9472,9417,9416]],[[9626,9602,9583]],[[9633,9629,9603]],[[9311,9310,9668]],[[9623,9720,9645]],[[9668,9310,9644]],[[9309,9623,9310]],[[9665,9655,9569]],[[9695,9708,9705]],[[9354,9433,9474]],[[9473,9434,9433]],[[9721,9659,9654]],[[9659,9661,9694]],[[9502,9647,9551]],[[9250,9646,9647]],[[9251,9719,9562]],[[9719,9458,9680]],[[9194,9317,9195]],[[9317,9710,9315]],[[9234,9233,9509]],[[9681,9511,9610]],[[9233,9664,9648]],[[9722,9511,9681]],[[9230,9233,9605]],[[9230,9447,9233]],[[9194,9723,9724]],[[9317,9316,9195]],[[9725,9726,9201]],[[9727,9712,9728]],[[9532,9530,9526]],[[9535,9338,9530]],[[9314,9702,9312]],[[9314,9466,9702]],[[9479,9591,9592]],[[9479,9495,9591]],[[9720,9429,9428]],[[9667,9617,9429]],[[9720,9666,9429]],[[9623,9624,9666]],[[9402,9477,9490]],[[9598,9491,9373]],[[9490,9477,9373]],[[9402,9404,9477]],[[9373,9478,9598]],[[9404,9488,9478]],[[9285,9546,9646]],[[9518,9508,9546]],[[9193,9723,9729]],[[9195,9316,9730]],[[9649,9645,3630]],[[9601,9644,9645]],[[9348,9267,9349]],[[9348,9333,9267]],[[9433,9354,9473]],[[9474,9355,9354]],[[9656,9658,9693]],[[9658,9698,9660]],[[9663,9695,9705]],[[9676,9620,9708]],[[9695,9675,9708]],[[9618,9617,9620]],[[9194,9709,9317]],[[9724,9731,9709]],[[9723,9732,9724]],[[9733,9726,9728]],[[9734,9735,9307]],[[3444,3755,9736]],[[9728,9712,9737]],[[9714,9738,9729]],[[9594,9497,9739]],[[9590,9639,9497]],[[9411,9347,9487]],[[9539,9537,9536]],[[9539,9536,9347]],[[9537,9533,9536]],[[3776,9723,9193]],[[3776,9201,9723]],[[9186,9713,9712]],[[9713,9186,9740]],[[9316,9716,9730]],[[9738,9740,9729]],[[9730,9715,9714]],[[9316,9315,9737]],[[9729,9730,9714]],[[9196,9195,9730]],[[9716,9737,9712]],[[9728,9726,9727]],[[9730,9716,9715]],[[9316,9737,9716]],[[9723,9731,9732]],[[9201,9726,9733]],[[9710,9733,9315]],[[9710,9731,9201]],[[9731,9710,9709]],[[9731,9723,9201]],[[9578,9632,9579]],[[9565,9567,9631]],[[9619,9631,9567]],[[9621,9627,9311]],[[9729,9723,9194]],[[9732,9731,9724]],[[9210,9734,9307]],[[9741,9742,3444]],[[9458,9677,9419]],[[9458,9719,9677]],[[9611,9594,9260]],[[9496,9497,9594]],[[9738,9711,9743]],[[9715,9712,9711]],[[9730,9729,9196]],[[9197,9193,9729]],[[9711,9713,9743]],[[9186,9197,9740]],[[9307,9735,9217]],[[3755,9220,9305]],[[9371,9527,9692]],[[9744,9688,9689]],[[9691,9690,9692]],[[9589,9744,9692]],[[9587,9589,9691]],[[9744,9689,9692]],[[9588,9744,9589]],[[9588,9688,9744]],[[9736,9216,9217]],[[9306,9212,9211]],[[9233,9682,9722]],[[9447,9501,9682]],[[9233,9722,9664]],[[9682,9501,9500]],[[9722,9500,9511]],[[9722,9682,9500]],[[9260,9351,9362]],[[9739,9497,9640]],[[9260,9739,9351]],[[9640,9407,9418]],[[9664,9681,9547]],[[9664,9722,9681]],[[9558,9556,9669]],[[9554,9342,9556]],[[9725,9727,9726]],[[9725,9712,9727]],[[9315,9728,9737]],[[9315,9733,9728]],[[3676,9209,3747]],[[9735,9741,9736]],[[9515,9604,9236]],[[9515,9605,9604]],[[9658,9661,9698]],[[3514,3431,9661]],[[9645,9696,3630]],[[9645,9697,9696]],[[9331,9296,9330]],[[9295,9362,9296]],[[9645,9720,9697]],[[9623,9666,9720]],[[9700,9628,9634]],[[9643,9360,9628]],[[9700,9207,9628]],[[9206,9461,9673]],[[9206,9673,9207]],[[9461,9466,9673]],[[9739,9640,9418]],[[9497,9639,9640]],[[9419,9691,9527]],[[9419,9587,9691]],[[9702,9665,9312]],[[9654,9695,9655]],[[9657,9665,9702]],[[9656,9721,9654]],[[9371,9692,9370]],[[9690,9589,9692]],[[9452,9287,9243]],[[9452,9285,9287]],[[9200,9725,9201]],[[9186,9712,9725]],[[9579,9311,9668]],[[9632,9631,9311]],[[9687,9717,9253]],[[9687,9678,9718]],[[9717,9718,9251]],[[9717,9687,9718]],[[9636,9486,9639]],[[9636,9592,9484]],[[9210,9209,9745]],[[3676,3444,9209]],[[9654,9659,9694]],[[9721,9693,9659]],[[3755,9305,9736]],[[9305,9211,9216]],[[9693,9658,9660]],[[3514,9661,9658]],[[9708,9619,9704]],[[9567,9361,9619]],[[9721,9656,9693]],[[9665,9657,9656]],[[9680,9458,9459]],[[9419,9421,9458]],[[9699,9224,9226]],[[9699,9449,9224]],[[9211,9305,9306]],[[9216,9736,9305]],[[9711,9738,9714]],[[9740,9197,9729]],[[9602,9586,9585]],[[9706,9204,9586]],[[9211,9210,9307]],[[9745,9742,9734]],[[9468,9657,9702]],[[9468,9658,9657]],[[9217,9735,9736]],[[9742,9209,3444]],[[9362,9385,9363]],[[9351,9321,9385]],[[9340,9398,9241]],[[9339,9246,9398]],[[9361,9616,9568]],[[9361,9360,9616]],[[9655,9695,9662]],[[9654,9694,9695]],[[9417,9471,9651]],[[9435,9434,9471]],[[9546,9548,9550]],[[9547,9681,9548]],[[3431,9618,9676]],[[3431,9429,9618]],[[9736,9741,3444]],[[9735,9734,9741]],[[9708,9675,9676]],[[9694,3431,9675]],[[9696,9428,3630]],[[9697,9720,9428]],[[3553,9558,3579]],[[3553,9637,9558]],[[9291,9290,9683]],[[3579,9558,9290]],[[9729,9194,9196]],[[9724,9709,9194]],[[9636,9484,9486]],[[9592,9593,9484]],[[9351,9739,9418]],[[9260,9594,9739]],[[9455,9611,9260]],[[9455,9412,9611]],[[9710,9201,9733]],[[9184,9200,9746]],[[9619,9621,9631]],[[9620,9627,9621]],[[9543,9229,9228]],[[9499,9608,9229]],[[9440,9227,9229]],[[9445,9228,9227]],[[9591,9541,9592]],[[9672,9489,9593]],[[9442,9543,9544]],[[9512,9499,9229]],[[9652,9512,9543]],[[9609,9511,9512]],[[9718,9719,9251]],[[9678,9677,9719]],[[9288,9436,9520]],[[9288,9437,9436]],[[9677,9587,9419]],[[9679,9688,9587]],[[9567,9203,9361]],[[9566,9586,9203]],[[9734,9210,9745]],[[9298,3747,9210]],[[9633,9603,9602]],[[9629,9630,9603]],[[9531,9541,9591]],[[9337,9482,9541]],[[9266,9268,9476]],[[9391,9434,9268]],[[9379,9651,3441]],[[9471,9391,9651]],[[9463,9465,9523]],[[9388,9259,9465]],[[9312,9569,9313]],[[9312,9665,9569]],[[9573,9575,9581]],[[9573,9570,9575]],[[9747,9748,9749]],[[9750,9202,9184]],[[9743,9740,9738]],[[9743,9713,9740]],[[9725,9184,9186]],[[9674,3514,9658]],[[9441,9561,9560]],[[9281,9280,9561]],[[9748,9751,9752]],[[9753,3776,3514]],[[9751,9754,9755]],[[9756,3776,9753]],[[9686,9752,3514]],[[9757,9758,9756]],[[9759,9684,9686]],[[9674,9185,9760]],[[9482,9390,9372]],[[9557,3553,9390]],[[9672,9540,9671]],[[9672,9541,9540]],[[9200,9761,9762]],[[9762,9763,9746]],[[9207,9642,9628]],[[9207,9673,9642]],[[9764,9765,9766]],[[9758,9757,9760]],[[9469,9674,9470]],[[9749,9686,9685]],[[9597,9596,9641]],[[9485,9488,9596]],[[9767,9202,9766]],[[9760,9185,9202]],[[9674,9760,9749]],[[9760,9757,9768]],[[9185,9674,9469]],[[9749,9685,9674]],[[9750,9764,9766]],[[9763,3776,9756]],[[9758,9760,9202]],[[9754,9747,9760]],[[9765,9756,9767]],[[9767,9756,9758]],[[9202,9750,9766]],[[9746,9200,9762]],[[9746,9750,9184]],[[9746,9764,9750]],[[9763,9764,9746]],[[9763,9765,9764]],[[9700,9213,9358]],[[9700,9701,9213]],[[9427,9214,9462]],[[9213,9582,9214]],[[9748,9747,9751]],[[9768,9757,9753]],[[9752,9753,3514]],[[9752,9751,9753]],[[9757,9756,9753]],[[9765,9763,9756]],[[9202,9767,9758]],[[9766,9765,9767]],[[9751,9755,9753]],[[9754,9760,9768]],[[9755,9768,9753]],[[9755,9754,9768]],[[3776,9199,9201]],[[9769,9761,9199]],[[3776,9769,9199]],[[3776,9763,9769]],[[9599,9649,9650]],[[9599,9645,9649]],[[9769,9762,9761]],[[9769,9763,9762]],[[9652,9609,9512]],[[9652,9442,9609]],[[9192,9193,9198]],[[3909,3776,9193]],[[9734,9742,9741]],[[9745,9209,9742]],[[9760,9747,9749]],[[9754,9751,9747]],[[9686,9748,9752]],[[9686,9749,9748]],[[9725,9200,9184]],[[9199,9761,9200]],[[3514,9759,9686]],[[3514,9674,9759]],[[9674,9684,9759]],[[9674,9685,9684]],[[9688,9222,3632]],[[9253,9223,9222]],[[9558,9559,9554]],[[9638,9534,9559]],[[3909,9181,3737]],[[9188,9191,9189]],[[3909,9188,9181]],[[3909,9191,9188]],[[9770,9503,9442]],[[3440,9770,9442]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c407db-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe75349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5644,5512,5841]],[[5644,5440,5650]],[[5650,5446,5653]],[[5653,5455,5652]],[[5652,5455,5459]],[[5653,5450,5455]],[[5653,5446,5450]],[[5650,5440,5446]],[[5644,5488,5440]],[[5644,5648,5488]],[[5488,5505,5475]],[[5488,5648,5505]],[[5644,5841,5648]],[[5512,5511,5841]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c42f03-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28e49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[9771,9772,9773]],[[9771,9774,9775]],[[9771,9776,9774]],[[9774,9776,9777]],[[9771,9773,9776]],[[9776,9773,9778]],[[9772,9779,9773]],[[9773,9779,9780]],[[9772,9781,9779]],[[9779,9781,9782]],[[9782,9783,9784]],[[9784,9785,9786]],[[9784,9783,9785]],[[9782,9781,9783]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b491588b8-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9787,9788,9789]],[[9790,8186,7932]],[[9791,7934,7935]],[[9791,7933,7934]],[[7933,9791,9792]],[[9793,9794,9790]],[[9795,9788,9794]],[[9796,7950,8186]],[[9797,9793,7935]],[[7936,9794,9793]],[[9791,9790,9792]],[[7932,7933,9792]],[[7936,9797,7935]],[[7936,9793,9797]],[[7927,9795,7936]],[[7927,9788,9795]],[[9795,9794,7936]],[[9787,9789,9798]],[[7927,9789,9788]],[[7927,7950,9789]],[[9794,9799,8186]],[[9799,7950,9796]],[[9794,9787,9799]],[[9794,9788,9787]],[[9792,9800,7932]],[[9794,8186,9790]],[[9793,9801,7935]],[[9801,9790,9791]],[[8186,9799,9796]],[[9798,7950,9799]],[[9787,9798,9799]],[[9789,7950,9798]],[[9800,9790,7932]],[[9800,9792,9790]],[[7935,9801,9791]],[[9793,9790,9801]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4915aff8-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9802,9803,7754]],[[9804,9805,9806]],[[9802,9807,9808]],[[9802,7754,9809]],[[9808,9807,9810]],[[9802,9809,9807]],[[9811,9804,7755]],[[9812,9813,9814]],[[9815,7771,9816]],[[9816,7771,353]],[[9817,9809,9818]],[[9819,2579,2578]],[[9819,7755,2579]],[[9819,7770,7755]],[[7596,7769,2578]],[[7594,7596,2578]],[[7592,7594,2744]],[[2330,2672,2621]],[[9820,2409,2397]],[[9820,9821,2409]],[[2672,9822,2340]],[[2340,2740,2332]],[[9822,2329,2740]],[[2328,2330,2621]],[[2329,9822,2330]],[[9823,2756,2328]],[[2621,9823,2328]],[[2744,7594,2756]],[[2756,7594,2578]],[[9806,9805,9811]],[[9806,9817,9804]],[[9814,9813,353]],[[338,7712,9812]],[[2340,9822,2740]],[[2672,2330,9822]],[[9815,9817,7771]],[[9809,7754,9818]],[[9813,9816,353]],[[9813,9812,9816]],[[9809,9815,9816]],[[9809,9817,9815]],[[9818,9804,9817]],[[9811,7770,7771]],[[7771,9806,9811]],[[7771,9817,9806]],[[7755,9818,7754]],[[7755,9804,9818]],[[2340,9820,2397]],[[9821,2332,2409]],[[2340,9821,9820]],[[2340,2332,9821]],[[7769,9819,2578]],[[7769,7770,9819]],[[2744,9823,2621]],[[2744,2756,9823]],[[9809,9812,7712]],[[9809,9816,9812]],[[338,9814,353]],[[338,9812,9814]],[[7755,9824,9811]],[[7755,7770,9824]],[[7770,9811,9824]],[[9805,9804,9811]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4916e86b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.71178dd3a331470b86cb2586a764831b","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2821,8729,9825]],[[9825,8735,8750]],[[2824,9825,8750]],[[2821,9825,2824]],[[8729,8735,9825]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b491736be-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[586,703,579]],[[586,579,585]],[[585,579,584]],[[583,584,579]],[[583,579,582]],[[582,579,581]],[[706,707,579]],[[579,707,708]],[[704,705,579]],[[579,705,706]],[[703,704,579]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4918966b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9826,9827,9828]],[[9829,6796,6797]],[[9830,6796,9831]],[[9830,9827,9832]],[[9833,7042,6861]],[[9834,6830,6832]],[[6862,9835,9836]],[[9837,9838,9839]],[[9836,7042,9840]],[[9835,9841,9842]],[[9828,9830,9831]],[[9843,9838,9834]],[[9843,9844,9839]],[[9845,9846,9847]],[[9847,6796,9829]],[[6863,9848,9841]],[[6863,6830,9837]],[[6796,9830,6794]],[[6796,9847,9831]],[[9826,6833,9827]],[[9832,6794,9830]],[[6833,9843,6832]],[[9849,6830,9834]],[[6797,9845,9829]],[[9846,9831,9847]],[[9850,9840,7042]],[[6862,9836,9840]],[[6833,9832,9827]],[[6833,6794,9832]],[[9850,9833,6861]],[[9850,7042,9833]],[[6832,9843,9834]],[[9839,9851,9835]],[[9841,9835,6862]],[[9851,9852,9836]],[[6862,9850,6861]],[[6862,9840,9850]],[[9829,9845,9847]],[[9852,7042,9836]],[[9838,9853,9849]],[[9838,9837,9853]],[[6863,9841,6862]],[[9842,9837,9839]],[[6799,9845,6797]],[[6799,9854,9845]],[[9836,9835,9851]],[[9841,9848,9842]],[[9854,9831,9846]],[[9828,7042,9852]],[[6833,9844,9843]],[[9828,9827,9830]],[[9845,9854,9846]],[[6799,9831,9854]],[[9839,9826,9851]],[[9826,9828,9852]],[[9851,9826,9852]],[[9844,6833,9826]],[[9843,9839,9838]],[[9844,9826,9839]],[[9835,9842,9839]],[[9848,6863,9842]],[[6863,9837,9842]],[[6830,9853,9837]],[[6799,9828,9831]],[[6799,7042,9828]],[[9838,9849,9834]],[[9853,6830,9849]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4918e3d0-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5c1f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9855,279,266]],[[9856,266,267]],[[269,9857,267]],[[269,279,9858]],[[9859,9858,9860]],[[9858,279,9860]],[[9857,9858,267]],[[9860,266,9856]],[[9856,9859,9860]],[[9857,269,9858]],[[9860,9855,266]],[[9860,279,9855]],[[267,9859,9856]],[[267,9858,9859]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4919a79b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[139,9861,138]],[[135,136,134]],[[136,131,134]],[[131,132,133]],[[134,131,133]],[[136,137,131]],[[138,129,130]],[[128,129,9862]],[[9862,129,9861]],[[9861,129,138]],[[130,137,138]],[[130,131,137]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b491d7828-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9863,8611,8610]],[[9863,8610,8613]],[[8606,9863,8613]],[[8606,8611,9863]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4920103c-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef749a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9864,9865,9866]],[[9867,9864,9866]],[[9868,9866,9869]],[[9865,9870,9871]],[[9872,9873,9874]],[[9872,9866,9868]],[[9873,9872,9868]],[[9875,9876,9867]],[[9877,9878,9875]],[[9875,9879,9876]],[[9875,9878,9879]],[[9871,9872,9874]],[[9876,9880,9867]],[[9870,9865,9881]],[[9882,9878,9877]],[[9875,9883,9877]],[[9871,9874,9869]],[[9866,9865,9869]],[[9880,9864,9867]],[[9880,9882,9864]],[[9864,9882,9877]],[[9880,9878,9882]],[[9877,9883,9881]],[[9875,9872,9883]],[[9883,9870,9881]],[[9883,9871,9870]],[[9865,9871,9869]],[[9883,9872,9871]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492196f9-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[559,476,558]],[[559,474,476]],[[559,475,474]],[[9884,9885,9886]],[[9887,9888,9889]],[[9890,479,480]],[[9891,475,559]],[[450,479,9892]],[[9893,479,9890]],[[9894,8492,8493]],[[8427,8428,8746]],[[9895,8490,8436]],[[9895,8436,8437]],[[9896,9897,9889]],[[9898,9899,9900]],[[8435,8434,9901]],[[8435,9901,8445]],[[9902,9886,9903]],[[9904,9905,8746]],[[9906,9907,9908]],[[8426,8442,8424]],[[9909,8426,8427]],[[9910,8443,8442]],[[9911,9912,8442]],[[9911,9913,9912]],[[9902,9914,9915]],[[8428,560,8746]],[[9912,9913,8429]],[[9903,560,8429]],[[8429,560,8428]],[[8492,9916,8490]],[[8492,9893,9917]],[[8436,9918,9919]],[[8436,8490,9900]],[[466,9892,9920]],[[466,450,9892]],[[9921,9897,9896]],[[9889,9888,559]],[[9922,9899,9898]],[[9903,559,560]],[[9919,8434,8436]],[[9923,8490,9924]],[[9922,9898,9885]],[[9889,559,9925]],[[8747,9904,8746]],[[9904,9926,9905]],[[475,9891,480]],[[8492,9894,9893]],[[9893,9927,479]],[[9928,479,9927]],[[9916,9921,8490]],[[9929,9897,9921]],[[9930,9931,9884]],[[9896,9924,9921]],[[9914,9901,9915]],[[9932,9898,9925]],[[9903,9925,559]],[[9932,9885,9898]],[[9886,9933,9903]],[[9886,9885,9934]],[[8746,9905,9909]],[[9935,8747,9936]],[[9905,9926,8426]],[[8747,8443,9936]],[[9906,9926,9937]],[[9904,8747,9935]],[[9919,9915,8434]],[[8444,8445,9901]],[[9913,9903,8429]],[[9933,9925,9903]],[[9938,9889,9925]],[[9897,9929,9889]],[[9893,9891,9917]],[[9890,480,9891]],[[9884,9931,9885]],[[9899,8436,9900]],[[8425,9912,8429]],[[8444,9901,9914]],[[9920,9928,9927]],[[9892,479,9928]],[[9939,9893,9894]],[[9920,9927,9893]],[[9900,8490,9923]],[[8490,9921,9924]],[[8746,9909,8427]],[[9905,8426,9909]],[[9915,9919,9918]],[[9918,9899,9931]],[[8424,9912,8425]],[[8424,8442,9912]],[[9940,9915,9918]],[[9915,9901,8434]],[[9902,9903,9914]],[[9940,9941,9902]],[[9898,9923,9938]],[[9898,9900,9923]],[[9923,9896,9938]],[[9923,9924,9896]],[[9898,9938,9925]],[[9896,9889,9938]],[[9891,9893,9890]],[[9939,8493,9920]],[[9926,9906,8426]],[[9942,8443,9907]],[[8444,9911,8442]],[[8444,9913,9911]],[[9937,9935,9936]],[[9926,9904,9935]],[[466,9920,8493]],[[9892,9928,9920]],[[8426,9910,8442]],[[9908,8443,9910]],[[9933,9934,9925]],[[9933,9886,9934]],[[9934,9932,9925]],[[9934,9885,9932]],[[9906,9937,9936]],[[9926,9935,9937]],[[9916,9929,9921]],[[9916,9917,9887]],[[9913,9914,9903]],[[9913,8444,9914]],[[9941,9940,9918]],[[9930,9884,9886]],[[9931,9899,9922]],[[9918,8436,9899]],[[9885,9931,9922]],[[9941,9918,9931]],[[9941,9930,9902]],[[9941,9931,9930]],[[9940,9902,9915]],[[9930,9886,9902]],[[9888,9917,9891]],[[9916,8492,9917]],[[9929,9887,9889]],[[9929,9916,9887]],[[8491,9895,8437]],[[8491,8490,9895]],[[8426,9906,9908]],[[9942,9936,8443]],[[9906,9942,9907]],[[9906,9936,9942]],[[8426,9908,9910]],[[9907,8443,9908]],[[559,9888,9891]],[[9887,9917,9888]],[[9893,9939,9920]],[[9894,8493,9939]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49220b8c-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5caa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9943,6905,6900]],[[9944,9945,6902]],[[6903,9944,6902]],[[6903,6905,9946]],[[6902,9943,6900]],[[9945,9946,9943]],[[6902,9945,9943]],[[9946,6905,9943]],[[9947,9946,9945]],[[9947,6903,9946]],[[9944,9947,9945]],[[9944,6903,9947]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4922cf69-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9948,9949,9950]],[[9951,9952,168]],[[9953,168,9954]],[[9955,170,9956]],[[9952,9957,9958]],[[9952,9959,7916]],[[9960,167,9961]],[[9961,167,9958]],[[9958,167,9952]],[[9957,921,9962]],[[7915,7916,9963]],[[1821,1823,7916]],[[171,9949,170]],[[171,9950,9949]],[[9954,9955,9956]],[[169,170,9955]],[[168,9952,167]],[[9964,9965,9949]],[[9966,9956,170]],[[9966,9965,9956]],[[9967,9960,976]],[[166,167,9960]],[[9963,9959,9948]],[[168,9953,9965]],[[169,9954,168]],[[169,9955,9954]],[[9962,9961,9958]],[[976,9960,9961]],[[7916,9957,9952]],[[9957,9962,9958]],[[9956,9953,9954]],[[9956,9965,9953]],[[166,9967,976]],[[166,9960,9967]],[[9949,9966,170]],[[9949,9965,9966]],[[1823,9957,7916]],[[1823,921,9957]],[[976,9962,921]],[[976,9961,9962]],[[9949,9959,9964]],[[9963,7916,9959]],[[9965,9964,168]],[[9959,9952,9951]],[[9964,9951,168]],[[9964,9959,9951]],[[9963,9948,9950]],[[9959,9949,9948]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4924564a-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef663949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9968,9969,9970]],[[9968,9970,9971]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492762e2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9972,8006,8007]],[[8007,8008,8009]],[[8010,8007,8009]],[[9972,8007,8010]],[[8011,9972,8010]],[[8011,8006,9972]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492910e5-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef501549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9973,235,9974]],[[9975,259,232]],[[9976,277,259]],[[9977,9978,259]],[[9979,277,9976]],[[9975,9980,259]],[[259,9981,9976]],[[9978,9981,259]],[[9982,9983,9976]],[[9976,9981,9982]],[[9984,277,9979]],[[9983,9985,9979]],[[9984,9974,9986]],[[9987,9988,232]],[[9989,9978,9980]],[[9980,9978,9977]],[[9981,9990,9982]],[[9984,9986,277]],[[235,277,9986]],[[9983,9984,9985]],[[9974,235,9986]],[[9983,9973,9984]],[[9983,9982,9990]],[[9983,9979,9976]],[[9985,9984,9979]],[[9991,9990,9978]],[[9990,9973,9983]],[[9984,9973,9974]],[[230,235,9973]],[[9987,9991,9988]],[[230,9973,9991]],[[9978,9990,9981]],[[9991,9973,9990]],[[9988,9975,232]],[[9989,9991,9978]],[[259,9980,9977]],[[9975,9988,9989]],[[9975,9989,9980]],[[9988,9991,9989]],[[230,9987,232]],[[230,9991,9987]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4929fae4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a1049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9074,9068,9067]],[[9068,9065,9067]],[[9068,9072,9065]],[[9068,9073,9072]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492abedc-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef928049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9992,9993,9994]],[[9995,9996,9997]],[[9995,9998,9999]],[[1376,10000,1374]],[[10001,10002,10003]],[[1376,10001,10000]],[[10001,10003,10004]],[[10005,10006,10001]],[[10005,8172,8173]],[[10004,10005,10001]],[[1010,1008,994]],[[10007,10008,10009]],[[994,10010,902]],[[994,1008,10010]],[[10011,7247,10012]],[[10013,7246,10014]],[[10015,10016,10017]],[[10018,7243,7245]],[[10019,7244,7243]],[[10020,10021,10022]],[[10023,10024,10017]],[[10025,10026,10027]],[[10016,10028,10027]],[[10029,10030,10031]],[[10032,10007,10033]],[[10034,10035,10036]],[[10037,646,10038]],[[645,646,10039]],[[10040,645,10039]],[[10041,9994,9993]],[[644,10041,10042]],[[10043,10033,10044]],[[10045,9993,9992]],[[10045,9992,10046]],[[9992,10040,10047]],[[10047,10040,10039]],[[10043,10044,10048]],[[10049,10050,10025]],[[10051,10049,10025]],[[10052,10051,10025]],[[10053,10052,10025]],[[10054,10053,10025]],[[10055,10054,10025]],[[10056,10055,10025]],[[10057,10056,10025]],[[10058,10057,10025]],[[10025,10059,10060]],[[10060,10058,10025]],[[10025,10029,10059]],[[10061,10059,10029]],[[10031,10061,10029]],[[10030,10029,10062]],[[10062,10029,10063]],[[10063,10029,10064]],[[10064,10029,10065]],[[10029,10066,10067]],[[10029,10068,10066]],[[10029,10069,10068]],[[10029,10070,10069]],[[10029,10071,10070]],[[10029,10072,10071]],[[10029,10073,10072]],[[10029,10074,10073]],[[10029,10075,10074]],[[10029,10076,10075]],[[10029,10077,10076]],[[10029,10078,10077]],[[10029,10079,10078]],[[10029,10080,10081]],[[10079,10029,10082]],[[10083,10084,10085]],[[10086,10029,10087]],[[10087,10088,10089]],[[10089,10090,10091]],[[10092,10093,10094]],[[10095,10091,10096]],[[10097,10098,10095]],[[10099,10100,10098]],[[10101,10102,10100]],[[10103,10104,10105]],[[10106,10103,10102]],[[10105,10107,10108]],[[10108,10109,10110]],[[10110,10111,10112]],[[10112,10113,10114]],[[10114,10115,10116]],[[10116,10117,10118]],[[10118,10119,10120]],[[10120,10083,10085]],[[10121,10122,10123]],[[10124,10125,10126]],[[10127,10128,10129]],[[10130,10131,10132]],[[10132,10133,10134]],[[10135,10136,10137]],[[10138,10139,10140]],[[10141,10142,10143]],[[10144,10145,10146]],[[10050,10147,10025]],[[10148,10149,10150]],[[10151,10152,10153]],[[10153,10152,10154]],[[10154,10152,10155]],[[10156,10154,10155]],[[10157,10156,10155]],[[10158,10026,10159]],[[10159,10026,10160]],[[10160,10026,10161]],[[10161,10026,10162]],[[10162,10026,10163]],[[10163,10026,10164]],[[10164,10026,10165]],[[10165,10026,10166]],[[10166,10026,10167]],[[10167,10026,10025]],[[10168,10167,10025]],[[10169,10168,10025]],[[10170,10169,10025]],[[10171,10170,10025]],[[10172,10171,10025]],[[10147,10172,10025]],[[10173,10174,10175]],[[10176,10177,10178]],[[10179,10180,10181]],[[10179,10182,10180]],[[10179,10183,10182]],[[10179,10184,10183]],[[10179,10185,10184]],[[10179,10186,10185]],[[10179,10187,10186]],[[10179,10188,10187]],[[10179,10189,10188]],[[10179,10190,10189]],[[10179,10191,10190]],[[10179,10192,10191]],[[10179,10193,10192]],[[10179,10194,10193]],[[10179,10195,10194]],[[10179,10196,10195]],[[10179,10197,10196]],[[10179,10198,10197]],[[10179,10199,10198]],[[10179,10200,10199]],[[10179,10201,10200]],[[10179,10202,10201]],[[10148,10203,10132]],[[10179,10204,10202]],[[10179,10205,10206]],[[10204,10179,10207]],[[10207,10179,10206]],[[10206,10205,10208]],[[10208,10205,10209]],[[10209,10205,10210]],[[10210,10205,10211]],[[10211,10205,10212]],[[10212,10205,10213]],[[10093,10205,10214]],[[10093,10213,10205]],[[10215,10216,1016]],[[10093,10217,10218]],[[10093,10219,10217]],[[10220,10221,10144]],[[10222,10223,10224]],[[10144,10225,10226]],[[10144,10226,10227]],[[10228,10229,10230]],[[10226,10231,10227]],[[10232,10233,10234]],[[10235,10230,10236]],[[10233,10237,10234]],[[10238,10239,10240]],[[10238,10240,10241]],[[10238,10241,10242]],[[10243,10244,10245]],[[10152,10246,10247]],[[10139,10248,10249]],[[10250,10135,10251]],[[10252,10253,10254]],[[10255,10227,10256]],[[10256,10227,10257]],[[10258,10259,10260]],[[10261,10262,10259]],[[10263,10264,10262]],[[10265,10266,10264]],[[10267,10268,10266]],[[10269,10270,10268]],[[10271,10085,10084]],[[10119,10083,10120]],[[10117,10119,10118]],[[10115,10117,10116]],[[10082,10029,10086]],[[10114,10113,10115]],[[10272,10179,10181]],[[10112,10111,10113]],[[10028,10179,10273]],[[10270,10274,10275]],[[10111,10110,10109]],[[10276,10277,10275]],[[10109,10108,10107]],[[10173,10277,10278]],[[10107,10105,10104]],[[10175,10279,10280]],[[10104,10103,10106]],[[10138,10140,10280]],[[10106,10102,10101]],[[10249,10248,10281]],[[10101,10100,10099]],[[10250,10251,10281]],[[10099,10098,10097]],[[10137,10251,10135]],[[10097,10095,10096]],[[10137,10136,10282]],[[10096,10091,10090]],[[10252,10254,10282]],[[10090,10089,10088]],[[10283,10284,10179]],[[10088,10087,10285]],[[10286,10287,10288]],[[10285,10087,10029]],[[10176,10287,10289]],[[10081,10285,10029]],[[10178,10290,10291]],[[10080,10029,10292]],[[10293,10294,10291]],[[10292,10028,10295]],[[10296,10294,10297]],[[10295,10028,10273]],[[10298,10299,10300]],[[10273,10179,10301]],[[10302,10299,10303]],[[10301,10179,10304]],[[10302,10305,10181]],[[10304,10179,10306]],[[10296,10307,10300]],[[10306,10179,10284]],[[10308,10309,10288]],[[10308,10254,10253]],[[10179,10310,10283]],[[10249,10140,10139]],[[10310,10179,10311]],[[10311,10179,10312]],[[10312,10179,10313]],[[10313,10179,10272]],[[10272,10181,10305]],[[10305,10302,10303]],[[10303,10299,10298]],[[10298,10300,10307]],[[10307,10296,10297]],[[10297,10294,10293]],[[10293,10291,10290]],[[10290,10178,10177]],[[10177,10176,10289]],[[10289,10287,10286]],[[10286,10288,10309]],[[10309,10308,10253]],[[10136,10252,10282]],[[10255,10314,10227]],[[10314,10144,10227]],[[10248,10250,10281]],[[10315,10144,10314]],[[10316,10317,10144]],[[10279,10138,10280]],[[10174,10279,10175]],[[10278,10174,10173]],[[10276,10278,10277]],[[10274,10276,10275]],[[10269,10274,10270]],[[10267,10269,10268]],[[10265,10267,10266]],[[10263,10265,10264]],[[10262,10261,10263]],[[10259,10258,10261]],[[10260,10257,10227]],[[10258,10260,10227]],[[10132,10318,10319]],[[10320,10258,10227]],[[10132,10203,10321]],[[10322,10227,10323]],[[10132,10324,10325]],[[10323,10227,10326]],[[10327,10324,10132]],[[10155,10141,10328]],[[10329,10152,10330]],[[10132,10152,10329]],[[10331,10132,10319]],[[10332,10132,10131]],[[10333,10334,10148]],[[10335,10336,10148]],[[10132,10331,10130]],[[10148,10337,10149]],[[10148,10338,10337]],[[10148,10339,10338]],[[10331,10129,10128]],[[10148,10132,10339]],[[10339,10132,10134]],[[10129,10340,10127]],[[10132,10332,10133]],[[10126,10125,10340]],[[10128,10130,10331]],[[10341,10124,10126]],[[10125,10127,10340]],[[10123,10122,10341]],[[10122,10124,10341]],[[10271,10121,10123]],[[10084,10121,10271]],[[10010,1008,10205]],[[10342,907,10343]],[[10343,1010,10342]],[[10344,1011,1010]],[[8171,10345,10346]],[[1008,1016,10205]],[[10035,10034,10347]],[[10348,10349,10350]],[[10351,10004,10003]],[[9995,9999,10352]],[[10353,10354,10355]],[[10356,10357,10358]],[[10359,10360,10347]],[[10361,10362,10363]],[[10357,10364,10358]],[[10365,10366,10357]],[[10367,10368,10369]],[[10370,10371,10372]],[[9996,9995,10373]],[[10374,10375,10376]],[[10377,9997,9996]],[[10361,10378,10362]],[[10379,10380,10381]],[[10382,10383,10384]],[[10148,10334,10385]],[[10382,10386,10383]],[[10330,10152,10387]],[[9996,10388,10389]],[[10390,10391,10152]],[[10392,10389,10393]],[[10390,10152,10394]],[[10393,10389,10395]],[[10152,10151,10394]],[[10389,10396,10397]],[[10155,10158,10157]],[[10398,10333,10148]],[[10396,10389,10388]],[[10398,10148,10399]],[[10388,10026,10379]],[[10148,10336,10399]],[[10400,10401,10402]],[[10150,10335,10148]],[[10381,10388,10379]],[[10403,10388,10381]],[[10132,10329,10327]],[[10404,10148,10385]],[[10380,10379,10405]],[[10406,10407,10144]],[[10328,10143,10408]],[[10404,10409,10148]],[[10326,10148,10409]],[[10315,10316,10144]],[[10152,10247,10155]],[[10407,10410,10144]],[[10132,10321,10152]],[[10410,10411,10144]],[[10411,10145,10144]],[[10326,10227,10148]],[[10412,10413,10414]],[[10415,10238,10416]],[[10417,10415,10416]],[[10418,10417,10416]],[[10414,10418,10416]],[[10414,10416,10243]],[[10414,10413,10419]],[[10148,10227,10232]],[[10146,10420,10144]],[[10420,10421,10230]],[[10420,10230,10144]],[[10422,10230,10421]],[[10236,10230,10422]],[[10423,10230,10235]],[[10424,10228,10230]],[[10229,10224,10223]],[[10229,10223,10230]],[[10219,10093,10222]],[[10220,10144,10230]],[[10425,10220,10230]],[[10230,10423,10424]],[[10230,10426,10427]],[[10093,10092,10428]],[[10230,10223,10426]],[[10429,10430,10214]],[[10431,10426,10223]],[[10093,10218,10094]],[[10432,10433,10093]],[[10093,10223,10222]],[[10429,10434,10435]],[[10216,10436,10214]],[[10214,10205,10216]],[[10214,10437,10438]],[[10214,10436,10437]],[[10439,10440,10216]],[[10441,10439,10216]],[[10442,10443,10215]],[[10215,10443,10444]],[[10445,10446,10442]],[[10447,10448,10449]],[[10450,10451,10445]],[[10452,10453,10451]],[[10452,10454,10453]],[[10455,10447,10449]],[[10456,10454,10455]],[[10447,10457,10448]],[[10457,10458,10459]],[[10460,10461,10462]],[[10461,10463,10462]],[[10461,10464,10463]],[[10035,10346,10345]],[[10465,10466,10464]],[[10464,1011,10465]],[[9867,10467,10365]],[[10465,10468,10469]],[[10470,10471,10472]],[[10470,10360,10473]],[[10473,10474,10475]],[[10476,10477,10474]],[[10477,10359,10478]],[[10479,10480,10481]],[[10479,10366,10480]],[[10482,10483,10484]],[[10485,10467,10486]],[[10485,10486,10487]],[[10467,10488,10489]],[[10488,10490,10491]],[[10374,9866,9997]],[[10491,10492,10493]],[[10494,9866,10495]],[[10492,10490,10496]],[[10496,9867,10494]],[[10497,10496,10494]],[[10498,10494,10499]],[[10499,10494,10495]],[[10495,9866,10500]],[[10501,10495,10500]],[[10500,9866,10502]],[[10502,9866,10503]],[[10504,10502,10503]],[[10503,9866,10374]],[[10377,10505,10374]],[[10377,10506,10505]],[[10507,10508,10377]],[[10509,10510,10508]],[[10511,10418,10414]],[[10512,10244,10243]],[[10471,10470,10475]],[[10347,10364,10357]],[[10406,10144,10317]],[[10221,10225,10144]],[[1016,10216,10205]],[[10440,10436,10216]],[[10320,10227,10322]],[[10231,10237,10233]],[[10513,10214,10438]],[[10513,10429,10214]],[[10507,10377,9996]],[[10508,10506,10377]],[[10478,10359,10481]],[[10347,10357,10359]],[[10514,10230,10427]],[[10514,10425,10230]],[[10470,10465,1011]],[[10469,10466,10465]],[[10387,10152,10391]],[[10321,10246,10152]],[[10377,10374,9997]],[[10505,10375,10374]],[[10468,10470,10472]],[[1011,10344,10346]],[[10515,10223,10093]],[[10433,10431,10223]],[[10376,10503,10374]],[[10516,10504,10503]],[[10517,10328,10408]],[[10026,10155,10328]],[[10450,10452,10451]],[[1016,10454,10452]],[[10412,10243,10245]],[[10416,10512,10243]],[[10483,10365,10487]],[[10489,10518,10486]],[[10460,10519,10461]],[[1011,10464,10461]],[[10366,10365,10482]],[[10357,9867,10365]],[[10450,10442,1016]],[[10446,10443,10442]],[[10518,10488,10493]],[[9867,10496,10490]],[[10442,10450,10445]],[[1016,10452,10450]],[[1011,10447,1016]],[[1011,10519,10447]],[[10328,10379,10026]],[[10328,10517,10405]],[[10520,10392,10393]],[[9996,10389,10392]],[[10158,10155,10026]],[[10521,10142,10522]],[[10442,10215,1016]],[[10444,10439,10441]],[[10523,10496,10497]],[[10523,10492,10496]],[[10524,10495,10525]],[[10524,10499,10495]],[[10526,10502,10504]],[[10527,10528,10500]],[[10361,10363,10507]],[[10362,10510,10363]],[[10529,10464,10466]],[[10529,10463,10464]],[[10361,10507,9996]],[[10509,10508,10507]],[[10395,10389,10397]],[[9996,10026,10388]],[[10457,10519,10458]],[[1011,10461,10519]],[[10497,10494,10498]],[[9867,9866,10494]],[[10402,10388,10403]],[[10530,10396,10388]],[[10392,10361,9996]],[[10384,10378,10361]],[[9867,10488,10467]],[[9867,10490,10488]],[[10148,10232,10415]],[[10234,10239,10232]],[[10527,10500,10502]],[[10501,10525,10495]],[[10453,10454,10456]],[[1016,10447,10454]],[[10232,10238,10415]],[[10232,10239,10238]],[[10242,10512,10416]],[[10241,10244,10512]],[[10359,10479,10481]],[[10359,10366,10479]],[[10470,10473,10475]],[[10360,10476,10473]],[[10473,10476,10474]],[[10477,10478,10474]],[[10531,10532,10019]],[[10023,10017,7244]],[[10533,10534,10351]],[[10002,10349,10003]],[[10141,10522,10142]],[[10521,10247,10142]],[[10412,10414,10243]],[[10419,10511,10414]],[[10531,10021,10532]],[[10021,10028,10016]],[[10535,10517,10408]],[[10405,10379,10328]],[[10238,10242,10416]],[[10241,10512,10242]],[[10470,1011,10035]],[[8171,8172,10036]],[[10042,10041,9993]],[[10040,643,645]],[[10047,10039,10037]],[[10047,10043,9992]],[[10360,10477,10476]],[[10360,10359,10477]],[[10488,10491,10493]],[[10490,10492,10491]],[[10386,10520,10393]],[[10386,10392,10520]],[[10013,10014,10012]],[[7246,7247,10014]],[[10536,10537,10370]],[[10538,10349,10539]],[[10355,10540,10356]],[[10541,10542,10369]],[[10543,10544,10371]],[[10545,10546,10547]],[[10548,10549,10550]],[[10551,10552,10537]],[[10553,9998,10554]],[[10372,10555,10556]],[[10549,10554,10550]],[[10546,10545,10543]],[[10557,10558,10373]],[[10038,9996,10373]],[[10545,10555,10372]],[[10551,10537,10536]],[[10467,10489,10486]],[[10488,10518,10489]],[[10559,10531,7245]],[[7245,10531,10018]],[[10392,10382,10361]],[[10383,10378,10384]],[[10480,10366,10484]],[[10359,10357,10366]],[[8170,10343,907]],[[8170,10560,10561]],[[10356,10562,10353]],[[10356,10358,10563]],[[10328,10141,10143]],[[10155,10522,10141]],[[10365,10485,10487]],[[10365,10467,10485]],[[10458,10460,10462]],[[10458,10519,10460]],[[10564,10527,10502]],[[10564,10528,10527]],[[10565,10132,10325]],[[10565,10318,10132]],[[10366,10482,10484]],[[10365,10483,10482]],[[644,9994,10041]],[[644,643,9994]],[[10561,10560,10344]],[[10346,10035,1011]],[[994,10342,1010]],[[994,907,10342]],[[10564,10526,10504]],[[10564,10502,10526]],[[10363,10509,10507]],[[10363,10510,10509]],[[10538,10548,10349]],[[10540,10537,10552]],[[10373,9995,10539]],[[10548,10543,10349]],[[10550,10566,10548]],[[10550,10554,10566]],[[10000,10001,10006]],[[1376,10002,10001]],[[10543,10370,10355]],[[10370,10537,10540]],[[10470,10035,10347]],[[10004,10567,10005]],[[10345,10036,10035]],[[10345,8171,10036]],[[10347,10034,10568]],[[10036,8172,10567]],[[10569,10347,10568]],[[10567,8172,10005]],[[10348,10351,10003]],[[10568,10034,10567]],[[10533,10570,10569]],[[10360,10470,10347]],[[10361,10382,10384]],[[10392,10386,10382]],[[10429,10435,10430]],[[10434,10432,10435]],[[10213,10093,10428]],[[10430,10432,10093]],[[10214,10430,10093]],[[10435,10432,10430]],[[10552,10547,10356]],[[9998,10356,10554]],[[10544,10543,10545]],[[10571,10554,10546]],[[10370,10372,10556]],[[10546,10554,10547]],[[9994,10040,9992]],[[9994,643,10040]],[[10013,10559,7245]],[[10012,10531,10559]],[[10448,10457,10459]],[[10447,10519,10457]],[[10020,10023,7244]],[[10022,10021,10023]],[[10528,10501,10500]],[[10528,10525,10501]],[[10551,10556,10547]],[[10547,10556,10555]],[[10568,10567,10004]],[[10034,10036,10567]],[[10020,10572,10021]],[[10573,10016,10015]],[[10574,10548,10538]],[[10566,10575,10571]],[[10576,10352,10538]],[[9999,9998,10577]],[[10530,10401,10400]],[[10530,10388,10401]],[[10516,10376,10375]],[[10516,10503,10376]],[[10369,10542,10578]],[[10368,10367,10348]],[[10563,10358,10369]],[[10579,10563,10578]],[[10369,10368,10541]],[[10367,10351,10348]],[[10563,10369,10578]],[[10358,10367,10369]],[[10580,10541,10368]],[[10354,10542,10541]],[[10356,10353,10355]],[[10354,10541,10580]],[[10562,10581,10353]],[[10578,10542,10354]],[[10562,10563,10581]],[[10562,10356,10563]],[[10349,10543,10355]],[[10548,10566,10543]],[[10556,10536,10370]],[[10556,10551,10536]],[[10561,10344,1010]],[[10560,8170,10346]],[[10560,10346,10344]],[[8170,8171,10346]],[[10024,10573,10017]],[[10024,10021,10573]],[[10155,10521,10522]],[[10155,10247,10521]],[[10533,10351,10367]],[[10534,10004,10351]],[[10014,10011,10012]],[[10014,7247,10011]],[[10032,10047,10038]],[[10033,10043,10047]],[[10544,10372,10371]],[[10544,10545,10372]],[[10352,10574,10538]],[[10352,9999,10574]],[[10540,10552,10356]],[[10547,10554,10356]],[[10018,10531,7243]],[[10012,10021,10531]],[[10029,10025,10027]],[[10029,10067,10065]],[[10534,10568,10004]],[[10534,10569,10568]],[[10047,10032,10033]],[[10038,10008,10032]],[[10033,10007,10009]],[[10557,10373,10539]],[[10008,10558,10009]],[[10008,10373,10558]],[[10009,10557,10539]],[[10009,10558,10557]],[[10032,10008,10007]],[[10038,10373,10008]],[[10456,10455,10449]],[[10454,10447,10455]],[[10227,10233,10232]],[[10227,10231,10233]],[[10364,10570,10533]],[[10364,10347,10570]],[[10350,10580,10368]],[[10579,10581,10563]],[[10350,10354,10580]],[[10353,10581,10354]],[[10355,10350,10349]],[[10355,10354,10350]],[[10349,10348,10003]],[[10350,10368,10348]],[[10354,10579,10578]],[[10354,10581,10579]],[[10047,10037,10038]],[[10039,646,10037]],[[10023,10021,10024]],[[10012,10028,10021]],[[10532,10572,7244]],[[10532,10021,10572]],[[10352,10576,9995]],[[10538,10539,9995]],[[9998,9995,9997]],[[10576,10538,9995]],[[10017,10573,10015]],[[10021,10016,10573]],[[10433,10515,10093]],[[10433,10223,10515]],[[10572,10020,7244]],[[10022,10023,10020]],[[10535,10405,10517]],[[10535,10380,10405]],[[10574,10577,10553]],[[10574,9999,10577]],[[10549,10553,10554]],[[10577,9998,10553]],[[10574,10549,10548]],[[10574,10553,10549]],[[10469,10468,10472]],[[10465,10470,10468]],[[10215,10441,10216]],[[10215,10444,10441]],[[10543,10566,10571]],[[10566,10554,10575]],[[10543,10571,10546]],[[10575,10554,10571]],[[10551,10547,10552]],[[10555,10545,10547]],[[10343,10561,1010]],[[10343,8170,10561]],[[10400,10402,10403]],[[10401,10388,10402]],[[10028,10029,10027]],[[10028,10292,10029]],[[10355,10370,10540]],[[10543,10371,10370]],[[10559,10013,10012]],[[7245,7246,10013]],[[10531,10019,7243]],[[10532,7244,10019]],[[10533,10569,10534]],[[10570,10347,10569]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492c6bd0-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef790749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8402,1097,1105]],[[8402,1105,8744]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492d56e7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3100,3102,3165]],[[3100,3165,3108]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492e19ca-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cab49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10582,10583,10584]],[[10585,10586,10587]],[[10588,6932,6933]],[[10589,10590,10588]],[[6932,10590,10591]],[[6886,10592,6913]],[[10593,10594,6974]],[[10587,10586,10595]],[[10596,8681,6910]],[[10597,10594,10598]],[[6974,6975,10593]],[[10599,10600,10601]],[[10591,6912,10592]],[[10596,10602,10603]],[[10592,6912,6913]],[[10604,10584,6975]],[[10583,10595,10593]],[[10582,10587,10595]],[[10600,10599,6911]],[[10593,10586,10594]],[[10587,10605,10585]],[[10601,10606,6910]],[[10602,10587,10603]],[[6911,10599,6910]],[[10607,10605,10587]],[[10588,10590,6932]],[[10591,10608,6912]],[[10589,10585,10609]],[[10607,10602,10610]],[[10604,10603,10582]],[[10595,10586,10593]],[[10607,10610,10600]],[[10606,10596,6910]],[[10599,10601,6910]],[[10610,10602,10606]],[[8681,10604,6975]],[[8681,10603,10604]],[[10610,10606,10601]],[[10602,10596,10606]],[[6925,10588,6933]],[[6925,10589,10588]],[[10601,10600,10610]],[[6911,6912,10600]],[[10608,10607,10600]],[[10587,10602,10607]],[[10584,10593,6975]],[[10584,10583,10593]],[[6932,10591,6886]],[[10608,10605,10607]],[[6886,10591,10592]],[[10609,10585,10605]],[[6912,10608,10600]],[[10591,10590,10608]],[[10596,10603,8681]],[[10595,10583,10582]],[[10604,10582,10584]],[[10603,10587,10582]],[[10611,10589,6925]],[[10609,10605,10608]],[[10611,10597,10589]],[[10594,10586,10598]],[[6974,10611,6925]],[[6974,10594,10597]],[[10589,10597,10598]],[[10611,6974,10597]],[[10598,10585,10589]],[[10598,10586,10585]],[[10590,10609,10608]],[[10590,10589,10609]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492e6811-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef608949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6710,6706,6709]],[[10612,6711,10613]],[[6706,6710,10613]],[[10614,6706,10613]],[[10613,6711,10615]],[[10615,295,297]],[[10615,6711,295]],[[10612,10616,6711]],[[6710,6711,10616]],[[6710,10612,10613]],[[6710,10616,10612]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492f03ba-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10617,10618,7732]],[[10619,9807,10620]],[[7730,10621,10622]],[[10622,10621,10618]],[[9810,10623,9808]],[[10624,7732,7759]],[[9803,10623,7760]],[[9803,7760,10625]],[[10625,7760,7752]],[[10626,7732,10624]],[[9810,9807,10619]],[[10617,7732,10626]],[[10627,10628,10629]],[[10630,10626,10624]],[[7754,10625,7752]],[[7754,9803,10625]],[[7730,10618,10621]],[[7730,7732,10618]],[[10623,10631,10632]],[[10633,10634,10635]],[[10627,10636,10628]],[[7760,10632,10636]],[[10633,10622,10618]],[[10635,10637,10622]],[[7759,10627,10629]],[[10636,10632,10628]],[[10629,10624,7759]],[[10629,10630,10624]],[[10638,10637,10639]],[[10637,7730,10622]],[[10623,10640,10634]],[[10623,9810,10640]],[[10631,10633,10617]],[[10633,10618,10617]],[[10626,10631,10617]],[[10638,10639,10640]],[[10631,10634,10633]],[[10640,10639,10635]],[[10633,10635,10622]],[[10634,10640,10635]],[[10639,10637,10635]],[[10620,7730,10637]],[[10632,10631,10626]],[[10623,10634,10631]],[[10628,10632,10626]],[[7760,10623,10632]],[[9810,10619,10640]],[[10619,10637,10638]],[[10637,10619,10620]],[[10638,10640,10619]],[[7760,10627,7759]],[[7760,10636,10627]],[[10628,10630,10629]],[[10628,10626,10630]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49310031-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef790849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10641,10642,10643]],[[10644,10641,10643]],[[10645,10646,10643]],[[10643,10042,10644]],[[10643,10646,10042]],[[10647,10648,10646]],[[10649,644,10042]],[[652,10650,10651]],[[10647,10646,10652]],[[10653,10648,10650]],[[10646,10645,10652]],[[652,10653,10650]],[[652,644,10653]],[[10653,10654,10649]],[[10653,644,10654]],[[10653,10646,10648]],[[10653,10649,10646]],[[10646,10649,10042]],[[10654,644,10649]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4931275f-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef949349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10655,2887,2888]],[[8158,2887,10655]],[[8156,8567,8155]],[[8156,8157,8568]],[[8156,8568,8567]],[[8568,10656,8566]],[[10657,2886,8565]],[[10657,2888,2886]],[[10655,8157,8158]],[[10656,10657,8565]],[[8568,8157,10655]],[[10657,10655,2888]],[[10657,10656,10655]],[[8566,10656,8565]],[[8568,10655,10656]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4931c302-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10658,10659,10660]],[[10661,10662,10663]],[[10027,10664,10016]],[[10665,10666,10667]],[[10668,10664,10669]],[[10661,10670,10662]],[[10661,10671,10670]],[[10668,10672,10673]],[[10017,10674,10675]],[[10675,10676,10671]],[[10677,10678,10672]],[[10679,6662,6840]],[[10680,7265,10681]],[[10682,7195,7252]],[[10682,10683,7195]],[[10683,10684,10685]],[[10686,10687,10688]],[[10685,10684,7203]],[[10688,10687,10689]],[[10690,10687,10691]],[[10692,10693,10694]],[[10695,10696,10697]],[[7182,10696,7180]],[[10693,7168,7201]],[[10698,10699,7214]],[[10681,7183,10680]],[[10700,7216,7214]],[[10697,7268,7216]],[[10695,7180,10696]],[[7267,7265,7266]],[[10701,7168,10693]],[[10702,7202,10703]],[[10704,10705,10706]],[[10707,10694,10704]],[[10708,10709,10710]],[[10711,10712,10713]],[[10714,10715,10716]],[[10717,6752,10718]],[[10719,6751,10720]],[[10721,10722,10723]],[[10724,10717,10725]],[[10726,6841,10727]],[[10728,10729,10730]],[[10731,10728,10730]],[[10732,10733,10734]],[[10735,10736,10737]],[[10738,6677,6654]],[[10739,6660,6661]],[[10730,10740,10731]],[[10741,10742,10743]],[[10744,10745,10746]],[[10747,10748,10745]],[[6671,10749,6685]],[[10746,10730,10750]],[[10751,6683,6684]],[[10752,10753,10754]],[[10753,502,10754]],[[10752,504,6683]],[[500,502,517]],[[10755,10756,10757]],[[10758,10759,10760]],[[10761,517,10753]],[[10762,10755,10763]],[[10764,647,10765]],[[10766,625,10767]],[[10768,646,647]],[[10769,10712,10770]],[[10771,10678,10677]],[[10772,10773,10774]],[[10775,10776,10777]],[[10778,10779,10780]],[[10708,10781,10782]],[[10783,10729,10728]],[[10750,10784,10744]],[[10782,10709,10708]],[[10772,10678,10771]],[[10785,10702,10703]],[[7202,7203,10684]],[[10664,10786,10669]],[[10786,10787,10771]],[[10788,10714,10738]],[[10731,10789,10728]],[[10786,10771,10677]],[[10773,10772,10771]],[[10790,10791,10792]],[[10793,10753,10794]],[[10795,10796,10781]],[[10797,10798,10799]],[[10800,10696,7182]],[[10800,7268,10697]],[[10801,626,10762]],[[10791,513,10792]],[[7183,10800,7182]],[[7183,10802,10800]],[[10803,10739,10804]],[[10727,6748,6750]],[[10805,10806,10807]],[[10808,10798,10809]],[[10810,10809,10811]],[[10691,10772,10779]],[[10806,10805,10733]],[[10812,10807,10780]],[[10680,10813,10814]],[[10813,7168,10815]],[[6685,10749,10747]],[[10748,6675,10745]],[[10726,10727,10711]],[[6841,6748,10727]],[[10816,10804,10679]],[[10817,6662,10818]],[[10693,10692,10701]],[[7201,10702,10693]],[[10819,10778,10780]],[[10820,6753,10707]],[[10821,10778,10822]],[[10820,10718,6753]],[[10819,10810,10778]],[[10823,10824,10825]],[[10775,10826,10827]],[[10737,6684,10776]],[[10828,10829,10830]],[[10793,10831,10753]],[[10832,10732,10734]],[[10819,10833,10834]],[[10835,10836,10837]],[[10838,10839,10840]],[[6677,10730,10746]],[[6677,10740,10730]],[[10800,10697,10696]],[[7218,7180,10695]],[[10841,10660,10842]],[[10841,10843,10660]],[[10828,10842,10844]],[[10844,10829,10828]],[[10845,10841,10842]],[[10843,10846,10658]],[[10847,10828,10830]],[[10845,10842,10828]],[[10799,10848,10797]],[[10849,6752,10717]],[[10850,10810,10811]],[[10770,10712,10711]],[[10851,10787,10786]],[[10851,10773,10852]],[[10669,10786,10677]],[[10853,10854,10710]],[[10855,10856,10786]],[[10786,10856,10851]],[[10852,10773,10771]],[[10774,10709,10772]],[[10857,10776,6684]],[[10784,10729,10858]],[[10675,10674,10676]],[[10027,10855,10664]],[[10747,10857,6684]],[[10745,6676,10746]],[[10768,10764,10760]],[[10859,10860,10861]],[[10713,10862,10711]],[[10726,10711,10816]],[[10788,10738,6654]],[[10740,6677,10738]],[[10863,10864,10815]],[[7183,7168,10813]],[[10767,10801,10743]],[[10865,10843,10866]],[[10038,10759,10758]],[[625,626,10767]],[[10867,10868,10834]],[[10869,10770,10870]],[[10830,10871,10872]],[[10873,10659,10793]],[[10839,10734,10840]],[[10874,10666,10665]],[[10847,10866,10828]],[[10846,10865,10875]],[[10876,10865,10866]],[[10875,10877,10878]],[[10717,10718,10811]],[[6752,6753,10718]],[[10789,10832,10734]],[[10879,10713,10733]],[[10701,10863,7168]],[[10815,7168,10863]],[[10880,10881,10882]],[[10883,517,10761]],[[10823,10884,10850]],[[10821,10779,10778]],[[10700,10697,7216]],[[10885,10695,10697]],[[10886,10887,10888]],[[10756,10755,10889]],[[503,10754,502]],[[10890,504,10752]],[[10875,10742,10877]],[[10741,10891,10742]],[[10892,10893,10742]],[[10893,10894,10743]],[[10790,10792,517]],[[513,517,10792]],[[10895,10896,10897]],[[10887,10756,10898]],[[10715,10899,10716]],[[6659,6660,10899]],[[10900,10666,10901]],[[10900,10667,10666]],[[10747,10745,10857]],[[6675,6676,10745]],[[10785,10694,10693]],[[7201,7202,10702]],[[10846,10896,10880]],[[10790,10902,10791]],[[10880,10883,10881]],[[10880,10658,10846]],[[10857,10745,10744]],[[10730,10729,10750]],[[10744,10746,10750]],[[6676,6677,10746]],[[10844,10660,10873]],[[10903,10882,10831]],[[10829,10793,10794]],[[10831,10881,10761]],[[10859,10904,10860]],[[10860,625,10861]],[[10664,10855,10786]],[[10027,10856,10855]],[[10833,10807,10869]],[[10840,10734,10805]],[[10809,10717,10811]],[[10725,10797,10848]],[[6658,10905,6654]],[[10906,6659,10715]],[[10738,10714,10740]],[[10715,6659,10899]],[[10907,10700,7214]],[[10908,10885,10700]],[[10830,10872,10909]],[[10871,6683,10872]],[[10827,10737,10776]],[[10909,10872,10735]],[[10737,10910,6684]],[[10751,10735,6683]],[[10859,10760,10764]],[[10038,646,10768]],[[10911,10912,10835]],[[10913,10912,10854]],[[10794,10753,10752]],[[517,502,10753]],[[10763,10801,10762]],[[626,627,10762]],[[10914,10801,10915]],[[10762,627,10889]],[[10880,10896,10895]],[[10888,10887,10791]],[[10902,10888,10791]],[[10889,10755,10762]],[[10790,10916,10897]],[[10896,10886,10902]],[[10758,10766,10767]],[[10917,625,10766]],[[10918,10906,10715]],[[6658,6659,10906]],[[6841,10679,6840]],[[10818,6662,10679]],[[10919,10854,10853]],[[10710,10709,10920]],[[10911,10710,10854]],[[10837,10795,10781]],[[10774,10920,10709]],[[10851,10919,10853]],[[10731,10716,10832]],[[10899,6660,10716]],[[6660,10739,10716]],[[10803,10804,10862]],[[10716,10739,10732]],[[10817,10818,10921]],[[10723,10719,10848]],[[6751,6752,10720]],[[10905,10715,10714]],[[10918,6658,10906]],[[10724,10725,10848]],[[10725,10798,10797]],[[10787,10852,10771]],[[10787,10851,10852]],[[10660,10843,10658]],[[10846,10875,10878]],[[10714,10731,10740]],[[10714,10716,10731]],[[7217,10698,7214]],[[10908,10700,10699]],[[623,10765,647]],[[623,10904,10859]],[[10679,10726,10816]],[[10679,6841,10726]],[[10878,10922,10896]],[[10922,10915,10755]],[[10836,10795,10837]],[[10836,10796,10795]],[[10923,10924,10708]],[[10837,10781,10708]],[[10794,10752,6683]],[[10754,10890,10752]],[[10925,10858,10901]],[[10911,10854,10912]],[[10919,10913,10854]],[[10835,10926,10836]],[[10777,10925,10901]],[[10750,10729,10784]],[[10681,10802,7183]],[[7268,10800,10802]],[[10743,10801,10914]],[[10767,626,10801]],[[10735,10827,10909]],[[10927,10775,10874]],[[10660,10844,10842]],[[10660,10659,10873]],[[10694,10928,10704]],[[10929,10690,10825]],[[10706,10707,10704]],[[10686,10683,10687]],[[10692,10694,7264]],[[10693,10702,10785]],[[10930,10661,10663]],[[10675,10671,10661]],[[10812,10796,10807]],[[10805,10734,10733]],[[10812,10780,10779]],[[10807,10833,10780]],[[10796,10805,10807]],[[10796,10836,10838]],[[10796,10840,10805]],[[10839,10926,10858]],[[10700,10885,10697]],[[7218,10695,10885]],[[6671,10748,10749]],[[6671,6675,10748]],[[10871,10794,6683]],[[10871,10830,10794]],[[10866,10845,10828]],[[10866,10843,10845]],[[10905,10788,6654]],[[10905,10714,10788]],[[10931,10812,10709]],[[10691,10678,10772]],[[10778,10810,10850]],[[10868,10809,10810]],[[10851,10774,10773]],[[10920,10853,10710]],[[10851,10920,10774]],[[10851,10853,10920]],[[10867,10834,10833]],[[10868,10810,10834]],[[10833,10819,10780]],[[10834,10810,10819]],[[10734,10783,10789]],[[10783,10839,10858]],[[10808,10770,10798]],[[10869,10806,10770]],[[10814,10864,10701]],[[10813,10815,10864]],[[10692,10814,10701]],[[10864,10863,10701]],[[10932,10933,10901]],[[10934,10935,10936]],[[10856,10937,10919]],[[10912,10938,10835]],[[10851,10856,10919]],[[10938,10932,10835]],[[10684,10785,10703]],[[10928,10694,10785]],[[10821,10884,10939]],[[10705,10704,10940]],[[9996,10893,10026]],[[10893,10743,10742]],[[503,10890,10754]],[[503,504,10890]],[[10905,10918,10715]],[[10905,6658,10918]],[[10941,10942,10943]],[[10942,10866,10847]],[[10943,10942,10944]],[[10941,10866,10942]],[[10874,10934,10927]],[[10775,10827,10776]],[[7218,10908,7217]],[[7218,10885,10908]],[[10659,10831,10793]],[[10881,10883,10761]],[[10753,10831,10761]],[[10882,10658,10880]],[[10737,10736,10910]],[[10737,10827,10735]],[[10921,10804,10739]],[[10921,10679,10804]],[[10796,10812,10781]],[[10812,10772,10709]],[[10772,10812,10779]],[[10931,10781,10812]],[[10901,10933,10900]],[[10027,10026,10667]],[[10902,10790,10897]],[[10883,10880,10895]],[[10916,10895,10897]],[[10916,10883,10895]],[[10666,10874,10901]],[[10925,10784,10858]],[[10776,10925,10777]],[[10744,10784,10925]],[[10769,10806,10733]],[[10869,10807,10806]],[[10699,10907,7214]],[[10699,10700,10907]],[[10829,10873,10793]],[[10829,10844,10873]],[[10672,10669,10677]],[[10668,10676,10664]],[[10847,10830,10909]],[[10829,10794,10830]],[[10731,10832,10789]],[[10716,10732,10832]],[[10757,10922,10755]],[[10891,10741,10914]],[[10869,10867,10833]],[[10869,10868,10867]],[[10720,10849,10724]],[[10720,6752,10849]],[[10910,10751,6684]],[[10910,10736,10751]],[[10675,10930,10663]],[[10675,10661,10930]],[[10846,10878,10896]],[[10877,10891,10945]],[[10845,10843,10841]],[[10865,10846,10843]],[[10659,10903,10831]],[[10659,10658,10903]],[[10831,10882,10881]],[[10903,10658,10882]],[[10824,10823,10811]],[[10822,10778,10850]],[[10939,10823,10825]],[[10850,10811,10823]],[[10939,10884,10823]],[[10822,10850,10884]],[[10826,10847,10909]],[[10944,10942,10847]],[[10933,10856,10027]],[[10946,10938,10913]],[[10667,10933,10027]],[[10667,10900,10933]],[[10768,10759,10038]],[[10760,10766,10758]],[[10711,10722,10798]],[[10719,6750,6751]],[[10947,10927,10936]],[[10927,10934,10936]],[[10760,10859,10861]],[[10765,623,10859]],[[10932,10858,10926]],[[10932,10901,10858]],[[10729,10783,10858]],[[10728,10789,10783]],[[10824,10929,10825]],[[10691,10779,10821]],[[10884,10821,10822]],[[10939,10691,10821]],[[10939,10690,10691]],[[10939,10825,10690]],[[10929,10948,10690]],[[10687,10690,10948]],[[10940,10689,10705]],[[10687,10948,10689]],[[10948,10929,10689]],[[10707,6753,7264]],[[10928,10940,10704]],[[10928,10686,10688]],[[10940,10688,10689]],[[10940,10928,10688]],[[10689,10706,10705]],[[10824,10811,10820]],[[10891,10914,10915]],[[10741,10743,10914]],[[10776,10744,10925]],[[10776,10857,10744]],[[10861,10917,10766]],[[10861,625,10917]],[[10711,10862,10816]],[[10804,10816,10862]],[[10732,10879,10733]],[[10732,10739,10803]],[[10879,10803,10862]],[[10879,10732,10803]],[[10876,10892,10865]],[[10876,10893,10892]],[[10949,10893,10876]],[[10894,10758,10767]],[[10886,10757,10887]],[[10886,10922,10757]],[[10809,10725,10717]],[[10809,10798,10725]],[[10913,10938,10912]],[[10932,10926,10835]],[[10927,10943,10944]],[[10949,10876,10941]],[[10026,10941,10943]],[[10876,10866,10941]],[[10016,10674,10017]],[[10016,10664,10676]],[[10743,10894,10767]],[[10950,10038,10758]],[[10894,10951,10758]],[[9996,10038,10950]],[[9996,10894,10893]],[[10951,10950,10758]],[[9996,10951,10894]],[[9996,10950,10951]],[[10931,10782,10781]],[[10931,10709,10782]],[[10785,10684,10686]],[[10703,7202,10684]],[[7195,10685,7203]],[[7195,10683,10685]],[[10680,10814,7265]],[[10813,10864,10814]],[[7267,10681,7265]],[[7183,10813,10680]],[[10924,10837,10708]],[[10911,10835,10837]],[[10883,10790,517]],[[10883,10916,10790]],[[10694,10707,7264]],[[10706,10824,10820]],[[10706,10820,10707]],[[10811,10718,10820]],[[623,10860,10904]],[[623,625,10860]],[[10817,10921,10739]],[[10818,10679,10921]],[[6661,10817,10739]],[[6661,6662,10817]],[[10896,10922,10886]],[[10945,10891,10915]],[[10769,10713,10712]],[[10879,10862,10713]],[[10827,10826,10909]],[[10944,10847,10826]],[[10796,10838,10840]],[[10836,10926,10839]],[[10719,10724,10848]],[[10849,10717,10724]],[[10706,10929,10824]],[[10706,10689,10929]],[[10868,10870,10809]],[[10868,10869,10870]],[[10870,10808,10809]],[[10870,10770,10808]],[[10785,10686,10928]],[[10684,10683,10686]],[[10908,10698,7217]],[[10908,10699,10698]],[[7268,10681,7267]],[[7268,10802,10681]],[[10026,10949,10941]],[[10026,10893,10949]],[[10026,10947,10936]],[[10944,10826,10927]],[[10901,10874,10777]],[[10927,10826,10775]],[[10859,10764,10765]],[[10768,647,10764]],[[10892,10875,10865]],[[10892,10742,10875]],[[10934,10952,10935]],[[10935,10026,10936]],[[10777,10874,10775]],[[10952,10934,10874]],[[10667,10935,10665]],[[10667,10026,10935]],[[10665,10952,10874]],[[10665,10935,10952]],[[513,10889,627]],[[10756,10887,10757]],[[10898,10756,10889]],[[10898,10791,10887]],[[513,10898,10889]],[[513,10791,10898]],[[10896,10902,10897]],[[10886,10888,10902]],[[6685,10747,6684]],[[10749,10748,10747]],[[10671,10676,10673]],[[10674,10016,10676]],[[10943,10947,10026]],[[10943,10927,10947]],[[10722,10711,10727]],[[10798,10770,10711]],[[10919,10937,10913]],[[10933,10932,10938]],[[10937,10946,10913]],[[10937,10953,10946]],[[10672,10668,10669]],[[10673,10676,10668]],[[10933,10937,10856]],[[10953,10938,10946]],[[10710,10923,10708]],[[10911,10837,10924]],[[10911,10923,10710]],[[10911,10924,10923]],[[10933,10953,10937]],[[10933,10938,10953]],[[10806,10769,10770]],[[10733,10713,10769]],[[10922,10945,10915]],[[10877,10742,10891]],[[10878,10945,10922]],[[10878,10877,10945]],[[6683,10735,10872]],[[10751,10736,10735]],[[10915,10763,10755]],[[10915,10801,10763]],[[6750,10723,10727]],[[10721,10798,10722]],[[10799,10723,10848]],[[10722,10727,10723]],[[10724,10719,10720]],[[10723,6750,10719]],[[10799,10721,10723]],[[10799,10798,10721]],[[10766,10760,10861]],[[10759,10768,10760]],[[7265,10954,7264]],[[7265,10814,10954]],[[10954,10692,7264]],[[10954,10814,10692]],[[10734,10839,10783]],[[10838,10836,10839]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b493349d4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.9958a905655d4ef0bdce4cc3ddf59082","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10955,8735,8729]],[[3038,8729,8737]],[[8731,8735,1885]],[[1887,1886,3037]],[[1885,8735,1886]],[[8731,1887,3036]],[[8731,1884,1887]],[[8731,1885,1884]],[[1886,8735,10955]],[[3039,3038,8737]],[[3037,10955,3038]],[[3036,3039,8737]],[[8731,3036,8737]],[[1887,3037,3036]],[[3038,10955,8729]],[[3037,1886,10955]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49340dd5-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10956,10957,10958]],[[10956,10958,10959]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4935bab7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6732,6729,6731]],[[10960,7005,7006]],[[10961,7004,7005]],[[10962,6981,7004]],[[10962,10963,10964]],[[10965,6986,6987]],[[7007,6729,6732]],[[10966,7007,6732]],[[10965,10966,10967]],[[10968,10969,10963]],[[6986,10966,6732]],[[6986,10967,10966]],[[7007,10969,7006]],[[10970,10966,10969]],[[10968,10971,10960]],[[10971,7004,10961]],[[7007,10970,10969]],[[7007,10966,10970]],[[10972,10964,10965]],[[10963,10969,10966]],[[10965,10963,10966]],[[10971,10961,10960]],[[10962,10971,10963]],[[7006,10969,10968]],[[6981,10964,10972]],[[6981,10962,10964]],[[10968,10960,7006]],[[10961,7005,10960]],[[6981,10972,6987]],[[10964,10963,10965]],[[10963,10971,10968]],[[10962,7004,10971]],[[10972,10965,6987]],[[10967,6986,10965]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49387a1d-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10973,10974,10975]],[[10974,10976,10975]],[[10975,10977,10978]],[[10978,10977,10979]],[[10975,10980,10977]],[[10975,10981,10980]],[[10980,10982,10983]],[[10980,10981,10982]],[[10975,10984,10981]],[[10981,10985,10986]],[[10981,10984,10985]],[[10975,10987,10984]],[[10984,10988,10989]],[[10989,10990,10991]],[[10989,10988,10990]],[[10990,10988,10992]],[[10984,10993,10988]],[[10988,10993,10994]],[[10994,10993,10995]],[[10984,10987,10993]],[[10975,10976,10987]],[[10987,10976,10996]],[[10974,10997,10976]],[[10976,10997,10998]],[[10998,10999,11000]],[[11000,11001,11002]],[[11000,10999,11001]],[[11001,10999,11003]],[[10998,11004,10999]],[[10999,11005,11006]],[[10999,11007,11005]],[[10999,11008,11007]],[[10999,11004,11008]],[[11008,11004,11009]],[[11009,11010,11011]],[[11011,11010,11012]],[[11009,11004,11010]],[[10998,10997,11004]],[[11004,11013,11014]],[[11004,11015,11013]],[[11004,10997,11015]],[[11015,11016,11017]],[[11015,11018,11016]],[[11016,11018,11019]],[[11015,11020,11018]],[[11018,11020,11021]],[[11015,11022,11020]],[[11020,11022,11023]],[[11023,11022,11024]],[[11024,11022,11025]],[[11015,11026,11022]],[[11022,11026,11027]],[[11027,11026,11028]],[[11015,10997,11026]],[[11026,11029,11030]],[[11030,11031,11032]],[[11030,11029,11031]],[[11026,11033,11029]],[[11029,11033,11034]],[[11026,11035,11033]],[[11033,11036,11037]],[[11037,11036,11038]],[[11033,11039,11036]],[[11036,11039,11040]],[[11033,11035,11039]],[[11039,11041,11042]],[[11039,11043,11041]],[[11039,11044,11043]],[[11039,11035,11044]],[[11044,11035,11045]],[[11045,11046,11047]],[[11045,11035,11046]],[[11026,11048,11035]],[[11035,11049,11050]],[[11050,11049,11051]],[[11035,11052,11049]],[[11035,11048,11052]],[[11052,11053,11054]],[[11052,11048,11053]],[[11053,11055,11056]],[[11053,11048,11055]],[[11055,11057,11058]],[[11058,11059,11060]],[[11058,11057,11059]],[[11055,11048,11057]],[[11057,11048,11061]],[[11061,11062,11063]],[[11061,11048,11062]],[[11062,11048,11064]],[[11026,10997,11048]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4939b281-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5f4049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11065,299,11066]],[[11065,11066,11067]],[[11068,11069,11065]],[[298,299,11065]],[[11068,11065,11067]],[[11069,298,11065]],[[298,11068,11067]],[[298,11069,11068]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b69a8d7bc-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"P0028","class":"waterloop","creationdate":"2014-07-10","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.3600507750384e9faeac329b0fffe720","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:57:13.000"},"geometry":[{"boundaries":[[[11070,11071,11072]],[[11073,11070,11074]],[[11075,11076,11074]],[[11077,11075,11074]],[[11078,11077,11074]],[[11079,11078,11074]],[[11080,11079,11074]],[[11081,11082,11083]],[[11084,11085,11086]],[[11087,11088,11089]],[[11090,11091,11086]],[[11086,11092,11093]],[[11094,11090,11086]],[[11095,11096,11097]],[[11098,11095,11097]],[[11098,11099,11095]],[[11098,11100,11099]],[[11097,11101,11102]],[[11102,11101,11103]],[[11104,11105,11106]],[[11104,11107,11108]],[[11104,11109,11110]],[[11104,11108,11109]],[[11111,11104,11110]],[[11104,11112,11107]],[[11113,11114,11088]],[[11104,11115,11098]],[[11091,11084,11086]],[[11116,11117,11118]],[[11119,11118,11081]],[[11085,11120,11086]],[[11121,11081,11083]],[[11120,11122,11086]],[[11082,11080,11123]],[[11098,11102,11104]],[[11124,11086,11122]],[[11125,11086,11124]],[[11126,11086,11125]],[[11127,11086,11126]],[[11128,11086,11127]],[[11129,11130,11088]],[[11131,11123,11074]],[[11070,11072,11074]],[[11132,11133,11072]],[[11134,11135,11072]],[[11134,11072,11136]],[[11136,11072,11137]],[[11137,11072,11138]],[[11138,11072,11139]],[[11140,11138,11139]],[[11141,11140,11139]],[[11142,11141,11139]],[[11143,11142,11139]],[[11144,11143,11139]],[[11145,11144,11139]],[[11146,11145,11139]],[[11147,11146,11139]],[[11148,11147,11139]],[[11149,11148,11139]],[[11139,11072,11150]],[[11150,11072,11151]],[[11152,11150,11153]],[[11154,11152,11153]],[[11155,11156,11157]],[[11153,11150,11158]],[[11159,11160,11150]],[[11158,11150,11161]],[[11162,11163,11150]],[[11161,11150,11164]],[[11165,11166,11150]],[[11164,11150,11166]],[[11123,11080,11074]],[[11121,11083,11167]],[[11150,11163,11165]],[[11123,11083,11082]],[[11168,11169,11167]],[[11170,11171,11172]],[[11150,11160,11162]],[[11168,11171,11173]],[[11174,11175,11176]],[[11177,11156,11178]],[[11151,11179,11150]],[[11159,11150,11179]],[[11151,11072,11133]],[[11180,11132,11072]],[[11181,11180,11072]],[[11072,11182,11181]],[[11072,11183,11182]],[[11072,11184,11183]],[[11072,11185,11184]],[[11072,11071,11185]],[[11076,11073,11074]],[[11186,11187,11188]],[[11189,11190,11117]],[[11191,11192,11190]],[[11193,11194,11192]],[[11195,11196,11194]],[[11197,11198,11196]],[[11199,11200,11198]],[[11201,11202,11200]],[[11203,11204,11202]],[[11205,11089,11204]],[[11104,11111,11115]],[[11094,11086,11093]],[[11102,11098,11097]],[[11088,11130,11113]],[[11086,11103,11206]],[[11207,11129,11088]],[[11207,11208,11129]],[[11087,11207,11088]],[[11087,11209,11207]],[[11210,11211,11209]],[[11210,11212,11211]],[[11210,11213,11212]],[[11214,11213,11215]],[[11216,11214,11217]],[[11218,11216,11217]],[[11219,11218,11220]],[[11221,11219,11222]],[[11223,11221,11224]],[[11225,11223,11226]],[[11227,11225,11228]],[[11229,11227,11230]],[[11230,11227,11231]],[[11231,11227,11232]],[[11232,11227,11228]],[[11228,11225,11233]],[[11233,11225,11226]],[[11226,11223,11234]],[[11234,11223,11235]],[[11235,11223,11224]],[[11224,11221,11222]],[[11222,11219,11220]],[[11220,11218,11217]],[[11236,11220,11217]],[[11237,11236,11217]],[[11238,11237,11217]],[[11239,11238,11217]],[[11240,11239,11217]],[[11241,11240,11217]],[[11242,11241,11217]],[[11243,11242,11244]],[[11245,11243,11244]],[[11246,11245,11244]],[[11247,11246,11244]],[[11248,11247,11244]],[[11188,11248,11186]],[[11244,11186,11248]],[[11249,11250,11251]],[[11251,11186,11244]],[[11249,11251,11244]],[[11244,11242,11217]],[[11252,11253,11177]],[[11217,11214,11215]],[[11174,11254,11172]],[[11215,11213,11210]],[[11209,11087,11210]],[[11175,11253,11255]],[[11205,11256,11089]],[[11087,11089,11256]],[[11257,11258,11157]],[[11204,11259,11205]],[[11260,11261,11262]],[[11204,11263,11259]],[[11257,11261,11264]],[[11263,11204,11203]],[[11203,11202,11265]],[[11265,11202,11201]],[[11201,11200,11266]],[[11266,11200,11199]],[[11199,11198,11267]],[[11267,11198,11268]],[[11268,11198,11197]],[[11197,11196,11269]],[[11269,11196,11195]],[[11195,11194,11270]],[[11270,11194,11271]],[[11271,11194,11193]],[[11193,11192,11272]],[[11272,11192,11273]],[[11273,11192,11191]],[[11189,11274,11190]],[[11191,11190,11274]],[[11275,11189,11117]],[[11276,11275,11117]],[[11116,11276,11117]],[[11277,11278,11262]],[[11118,11279,11116]],[[11118,11280,11279]],[[11281,11282,11283]],[[11118,11119,11280]],[[11277,11282,11284]],[[11119,11081,11285]],[[11285,11081,11121]],[[11286,11287,11167]],[[11121,11167,11287]],[[11169,11286,11167]],[[11288,11289,11283]],[[11168,11290,11169]],[[11168,11291,11290]],[[11292,11293,11294]],[[11168,11173,11291]],[[11288,11293,11295]],[[11173,11171,11296]],[[11170,11297,11171]],[[11296,11171,11297]],[[11298,11170,11172]],[[11299,11300,11294]],[[11172,11301,11298]],[[11302,11303,11304]],[[11172,11254,11301]],[[11299,11303,11305]],[[11254,11174,11306]],[[11176,11307,11174]],[[11306,11174,11307]],[[11308,11176,11175]],[[11309,11302,11304]],[[11302,11310,11311]],[[11175,11312,11308]],[[11309,11310,11302]],[[11313,11255,11253]],[[11312,11175,11255]],[[11314,11313,11253]],[[11315,11316,11311]],[[11317,11318,11319]],[[11253,11252,11314]],[[11315,11318,11316]],[[11252,11177,11320]],[[11320,11177,11321]],[[11321,11177,11322]],[[11322,11177,11178]],[[11178,11156,11323]],[[11323,11156,11324]],[[11324,11156,11155]],[[11155,11157,11325]],[[11325,11157,11326]],[[11326,11157,11327]],[[11327,11157,11258]],[[11258,11257,11328]],[[11328,11257,11329]],[[11329,11257,11330]],[[11330,11257,11331]],[[11331,11257,11264]],[[11264,11261,11332]],[[11332,11261,11333]],[[11333,11261,11334]],[[11334,11261,11335]],[[11335,11261,11260]],[[11260,11262,11278]],[[11278,11277,11284]],[[11284,11282,11336]],[[11336,11282,11281]],[[11281,11283,11337]],[[11338,11339,11283]],[[11337,11283,11339]],[[11340,11338,11283]],[[11341,11340,11283]],[[11289,11341,11283]],[[11342,11289,11288]],[[11343,11342,11288]],[[11344,11343,11288]],[[11345,11344,11288]],[[11295,11345,11288]],[[11346,11295,11293]],[[11347,11346,11293]],[[11348,11347,11293]],[[11349,11348,11293]],[[11292,11349,11293]],[[11350,11292,11294]],[[11351,11350,11294]],[[11352,11351,11294]],[[11300,11352,11294]],[[11353,11300,11299]],[[11354,11353,11299]],[[11355,11354,11299]],[[11305,11355,11299]],[[11356,11305,11303]],[[11357,11356,11303]],[[11302,11357,11303]],[[11316,11302,11311]],[[11106,11105,11319]],[[11318,11358,11316]],[[11318,11359,11358]],[[11318,11360,11359]],[[11318,11361,11360]],[[11318,11362,11361]],[[11106,11112,11104]],[[11362,11318,11363]],[[11363,11318,11364]],[[11364,11318,11365]],[[11365,11318,11366]],[[11366,11318,11367]],[[11367,11318,11368]],[[11368,11318,11369]],[[11369,11318,11370]],[[11370,11318,11371]],[[11371,11318,11372]],[[11372,11318,11317]],[[11317,11319,11373]],[[11373,11319,11105]],[[11092,11086,11206]],[[11102,11103,11086]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"b80066d8d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11374,11375,11376]],[[11374,11376,11377]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b8009a157-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0bbe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11378,11379,11380]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b82575848-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2014-07-10","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.a6c08b19180041c1972275ff0fc7c5ce","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[4137,4135,11381]],[[4135,4133,11382]],[[4346,11383,4349]],[[11384,4097,11385]],[[11385,4090,11386]],[[11386,4090,4079]],[[11387,11388,3990]],[[11389,3976,11390]],[[11391,11392,11393]],[[11394,11395,11396]],[[11397,4003,11398]],[[11399,11364,11400]],[[11399,11401,11364]],[[11402,11403,11363]],[[11402,11404,11403]],[[11405,11406,11404]],[[11407,11408,11406]],[[3972,11358,11408]],[[11409,4349,11410]],[[11411,11409,11412]],[[11413,11409,11414]],[[11415,11412,11409]],[[11416,11409,11417]],[[11418,11414,11409]],[[11416,11418,11409]],[[11409,11419,11420]],[[11409,11421,11419]],[[11409,11422,11421]],[[11409,11423,11422]],[[11409,11410,11423]],[[4349,11424,11410]],[[4349,11425,11424]],[[4349,11426,11425]],[[4349,11427,11426]],[[4349,11428,11427]],[[4349,11429,11428]],[[4349,11430,11429]],[[4349,11431,11430]],[[4349,11432,11431]],[[4349,11433,11432]],[[4349,11434,11433]],[[4349,11435,11434]],[[4349,11436,11435]],[[4349,11437,11436]],[[4349,11438,11437]],[[4349,11439,11438]],[[11440,4097,11384]],[[4346,11441,11383]],[[11442,11316,11358]],[[4798,11441,4345]],[[11443,4762,11409]],[[4345,11441,4346]],[[11417,11409,11420]],[[11383,11439,4349]],[[11390,11444,11389]],[[11445,11446,11447]],[[4762,11302,11448]],[[11398,4003,11449]],[[11444,4762,11448]],[[11450,3989,11392]],[[11450,11451,3989]],[[3974,11358,3972]],[[11452,11402,11363]],[[11453,3989,11454]],[[11392,11391,11455]],[[11456,3990,11388]],[[11457,3982,3981]],[[11458,11457,3981]],[[11459,11460,3964]],[[11461,4010,3982]],[[11462,11463,4010]],[[11464,11465,11466]],[[11467,4010,11468]],[[11468,4010,11469]],[[11385,4097,4090]],[[4133,4097,11440]],[[11382,4133,11440]],[[11381,4135,11382]],[[11470,3954,11381]],[[11381,3954,4137]],[[11470,11471,3959]],[[3954,11470,3959]],[[11472,11454,3989]],[[11388,11447,11456]],[[11393,11395,11394]],[[4003,11397,11395]],[[11402,11452,11404]],[[11473,11407,11405]],[[11474,11475,4010]],[[11467,11476,11477]],[[11478,11479,4010]],[[11480,11481,11479]],[[11482,11483,11461]],[[11480,11479,11483]],[[11405,11407,11406]],[[11484,11408,11407]],[[11479,11481,4010]],[[11462,11485,11463]],[[11460,11486,11487]],[[11487,4079,11460]],[[11480,11463,11485]],[[11480,11488,11463]],[[11451,11388,11454]],[[11451,11447,11388]],[[11302,11443,11411]],[[11489,4762,11443]],[[11490,11491,3981]],[[11492,11490,3990]],[[11473,11484,11407]],[[3972,11408,11484]],[[11493,11477,11488]],[[11465,11494,3964]],[[11446,11456,11447]],[[11446,3990,11456]],[[11455,11450,11392]],[[11455,11451,11450]],[[3975,4762,11390]],[[11302,11316,11448]],[[11451,11472,3989]],[[11451,11454,11472]],[[11476,11495,11488]],[[11463,11488,11495]],[[11482,11457,11317]],[[11496,3982,11457]],[[11401,11452,11363]],[[11452,11405,11404]],[[11302,11489,11443]],[[11302,4762,11489]],[[11398,11449,11400]],[[4003,11401,11449]],[[11494,11459,3964]],[[11386,11486,11459]],[[11480,11475,11474]],[[11480,11485,11475]],[[11497,11493,11498]],[[11466,4010,11467]],[[11499,11461,3982]],[[11478,4010,11461]],[[11396,11397,11398]],[[11396,11395,11397]],[[3975,11390,3976]],[[11500,11316,3974]],[[11480,11482,11317]],[[11480,11483,11482]],[[11388,11501,11454]],[[11502,3989,11503]],[[3981,11491,11317]],[[11492,3990,11446]],[[11445,11504,11490]],[[11504,11491,11505]],[[11317,11504,11447]],[[11317,11491,11504]],[[11463,11469,4010]],[[11463,11495,11469]],[[11504,11445,11447]],[[11504,11505,11490]],[[11482,11496,11457]],[[11482,11499,11496]],[[11413,11414,11418]],[[11413,11415,11409]],[[3964,11460,4079]],[[11459,11486,11460]],[[11364,11401,11363]],[[4003,3972,11452]],[[4003,11452,11401]],[[3972,11473,11452]],[[11483,11478,11461]],[[11483,11479,11478]],[[11491,11490,11505]],[[3981,3990,11490]],[[11386,11494,11493]],[[11386,11459,11494]],[[11449,11399,11400]],[[11449,11401,11399]],[[11443,11409,11411]],[[4762,4349,11409]],[[11506,11453,11454]],[[11503,3989,11453]],[[11493,11507,11477]],[[11498,11508,11466]],[[11481,11474,4010]],[[11481,11480,11474]],[[11387,11501,11388]],[[11503,11506,11501]],[[11493,11509,11508]],[[11493,11494,11509]],[[11509,11464,11466]],[[11509,11494,11464]],[[11466,11465,3964]],[[11464,11494,11465]],[[4762,11444,11390]],[[11448,11316,11500]],[[11444,11500,11389]],[[11444,11448,11500]],[[3974,11389,11500]],[[3974,3976,11389]],[[11501,11506,11454]],[[11503,11453,11506]],[[11317,11458,3981]],[[11317,11457,11458]],[[11496,11499,3982]],[[11482,11461,11499]],[[11502,11387,3990]],[[11502,11501,11387]],[[11495,11468,11469]],[[11477,11507,11467]],[[11476,11467,11468]],[[11508,11509,11466]],[[11495,11476,11468]],[[11488,11477,11476]],[[11497,11466,11467]],[[3964,4010,11466]],[[11497,11498,11466]],[[11493,11508,11498]],[[11507,11497,11467]],[[11507,11493,11497]],[[11386,11487,11486]],[[11386,4079,11487]],[[4003,11392,3989]],[[4003,11395,11392]],[[11391,11393,11394]],[[11392,11395,11393]],[[11445,11492,11446]],[[11445,11490,11492]],[[11452,11473,11405]],[[3972,11484,11473]],[[3974,11442,11358]],[[3974,11316,11442]],[[3989,11502,3990]],[[11503,11501,11502]],[[11475,11462,4010]],[[11475,11485,11462]],[[11102,11086,11386]],[[11386,11086,11385]],[[11104,11102,11493]],[[11493,11102,11386]],[[11105,11104,11488]],[[11488,11104,11493]],[[11373,11105,11480]],[[11480,11105,11488]],[[11317,11373,11480]],[[11372,11317,11447]],[[11371,11372,11451]],[[11451,11372,11447]],[[11370,11371,11455]],[[11455,11371,11451]],[[11369,11370,11391]],[[11391,11370,11455]],[[11368,11369,11394]],[[11394,11369,11391]],[[11367,11368,11396]],[[11396,11368,11394]],[[11366,11367,11398]],[[11398,11367,11396]],[[11365,11366,11400]],[[11400,11366,11398]],[[11364,11365,11400]],[[11362,11363,11403]],[[11361,11362,11404]],[[11404,11362,11403]],[[11360,11361,11406]],[[11406,11361,11404]],[[11359,11360,11408]],[[11408,11360,11406]],[[11358,11359,11408]],[[11357,11302,11411]],[[11356,11357,11412]],[[11412,11357,11411]],[[11305,11356,11415]],[[11415,11356,11412]],[[11355,11305,11413]],[[11413,11305,11415]],[[11354,11355,11418]],[[11418,11355,11413]],[[11353,11354,11416]],[[11416,11354,11418]],[[11300,11353,11417]],[[11417,11353,11416]],[[11352,11300,11420]],[[11420,11300,11417]],[[11351,11352,11419]],[[11419,11352,11420]],[[11350,11351,11421]],[[11421,11351,11419]],[[11292,11350,11422]],[[11422,11350,11421]],[[11349,11292,11423]],[[11423,11292,11422]],[[11348,11349,11410]],[[11410,11349,11423]],[[11347,11348,11424]],[[11424,11348,11410]],[[11346,11347,11425]],[[11425,11347,11424]],[[11295,11346,11426]],[[11426,11346,11425]],[[11345,11295,11427]],[[11427,11295,11426]],[[11344,11345,11428]],[[11428,11345,11427]],[[11343,11344,11429]],[[11429,11344,11428]],[[11342,11343,11430]],[[11430,11343,11429]],[[11289,11342,11431]],[[11431,11342,11430]],[[11341,11289,11432]],[[11432,11289,11431]],[[11340,11341,11433]],[[11433,11341,11432]],[[11338,11340,11434]],[[11434,11340,11433]],[[11339,11338,11435]],[[11435,11338,11434]],[[11337,11339,11436]],[[11436,11339,11435]],[[11281,11337,11437]],[[11437,11337,11436]],[[11336,11281,11438]],[[11438,11281,11437]],[[11284,11336,11439]],[[11439,11336,11438]],[[11278,11284,11383]],[[11383,11284,11439]],[[11260,11278,11441]],[[11441,11278,11383]],[[4798,11260,11441]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b8257ccdc-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.5b05c66e86d84678906e0e603c4ba008","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11510,11511,11512]],[[11513,11514,11510]],[[11515,11513,11510]],[[11515,11516,11517]],[[11515,11517,11518]],[[11513,11519,11514]],[[11518,11513,11515]],[[11519,11511,11514]],[[11518,11519,11513]],[[11518,11511,11519]],[[11520,11515,11512]],[[11514,11511,11510]],[[11512,11515,11510]],[[11520,11516,11515]],[[11521,11522,11511]],[[11511,11522,11512]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b82590617-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.2b508589ce3a4bf5a6633db491f5383d","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11523,11524,11217]],[[11210,11087,5526]],[[5524,11210,5840]],[[5840,11210,5527]],[[5527,11210,5526]],[[5526,11087,5525]],[[11205,11259,5646]],[[11203,11265,5508]],[[11266,11199,5507]],[[11267,11268,5507]],[[11197,11269,5506]],[[11195,11270,5503]],[[11270,11271,5503]],[[11271,11193,5504]],[[11273,11191,5501]],[[11191,11274,5501]],[[11274,11189,5473]],[[11275,11276,5474]],[[11116,11279,5496]],[[11279,11280,5496]],[[11119,11285,5495]],[[11285,11121,5495]],[[11287,11286,5493]],[[11169,11290,5441]],[[11290,11291,5442]],[[11173,11296,5443]],[[11297,11170,5492]],[[11301,11254,5445]],[[11254,11306,5445]],[[11307,11176,5490]],[[11308,11312,5448]],[[11312,11255,5448]],[[11313,11314,5449]],[[11314,11252,5451]],[[11320,11321,5452]],[[11321,11322,5452]],[[11178,11323,5453]],[[11323,11324,5453]],[[11324,11155,5453]],[[11155,11325,5454]],[[11325,11326,5454]],[[11326,11327,5454]],[[5449,11314,5451]],[[11264,11332,5458]],[[11333,11334,5460]],[[11334,11335,5460]],[[5454,11327,5456]],[[5456,11328,5457]],[[5457,11331,5458]],[[5458,11333,5460]],[[11335,11260,5464]],[[5462,11335,5463]],[[5463,11335,5464]],[[5464,11260,5466]],[[11260,4347,4799]],[[5467,11260,4799]],[[11260,4798,4347]],[[5466,11260,5467]],[[5460,11335,5462]],[[5453,11155,5454]],[[11332,11333,5458]],[[5452,11322,5453]],[[11331,11264,5458]],[[11330,11331,5457]],[[11329,11330,5457]],[[11328,11329,5457]],[[11258,11328,5456]],[[11327,11258,5456]],[[5451,11252,5452]],[[5448,11255,5449]],[[5490,11308,5448]],[[5491,11307,5490]],[[5445,11306,5491]],[[5447,11301,5445]],[[11322,11178,5453]],[[5492,11298,5447]],[[5444,11297,5492]],[[11252,11320,5452]],[[5443,11296,5444]],[[5442,11291,5443]],[[11255,11313,5449]],[[5441,11290,5442]],[[5493,11169,5441]],[[11176,11308,5490]],[[5494,11287,5493]],[[11306,11307,5491]],[[5495,11121,5494]],[[5489,11119,5495]],[[11298,11301,5447]],[[11170,11298,5492]],[[5496,11280,5489]],[[11296,11297,5444]],[[5500,11116,5496]],[[11291,11173,5443]],[[5474,11276,5500]],[[5473,11189,5474]],[[11286,11169,5493]],[[5501,11274,5473]],[[11121,11287,5494]],[[5502,11273,5501]],[[5504,11272,5502]],[[11280,11119,5489]],[[5503,11271,5504]],[[5506,11195,5503]],[[11276,11116,5500]],[[5507,11268,5506]],[[11189,11275,5474]],[[5508,11266,5507]],[[5509,11203,5508]],[[5646,11259,5509]],[[11272,11273,5502]],[[11193,11272,5504]],[[5513,11256,5646]],[[5514,11256,5513]],[[5515,11256,5514]],[[11269,11195,5506]],[[5517,11087,5515]],[[11268,11197,5506]],[[5520,11087,5517]],[[11199,11267,5507]],[[5521,11087,5520]],[[11201,11266,5508]],[[11265,11201,5508]],[[5522,11087,5521]],[[11263,11203,5509]],[[11259,11263,5509]],[[5523,11087,5522]],[[11256,11205,5646]],[[11087,11256,5515]],[[5525,11087,5523]],[[5487,11210,5524]],[[11210,5487,11215]],[[11215,11523,11217]],[[5487,11523,11215]],[[11525,5486,11217]],[[5487,11524,11523]],[[5487,5486,11524]],[[11524,11525,11217]],[[11524,5486,11525]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b825a1738-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.53dd2a24d1a34833a084928458e10f8f","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11526,11527,5272]],[[11528,11529,11244]],[[11528,11527,11529]],[[4891,5272,11528]],[[5272,11527,11528]],[[4891,11528,11244]],[[11530,11527,11526]],[[4945,11526,5272]],[[4945,11530,11526]],[[11249,11244,11529]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b86c25248-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11531,11532,11533]],[[11531,11534,11532]],[[11531,2857,2858]],[[11531,2858,2947]],[[11535,11536,11537]],[[11536,11535,2947]],[[11538,11537,11536]],[[11539,11540,11541]],[[11541,11538,11536]],[[11542,11540,11539]],[[11543,11542,11539]],[[11544,11545,11546]],[[11545,11547,11546]],[[11548,11544,11546]],[[11549,11550,11551]],[[11539,11547,11543]],[[11552,11550,11553]],[[11553,11550,11554]],[[11531,2825,2857]],[[11554,11549,11555]],[[11556,11555,11557]],[[11558,11556,11557]],[[11535,11534,2947]],[[11531,2947,11534]],[[11559,11560,11561]],[[11562,11559,11561]],[[11546,11547,11539]],[[11541,11536,11539]],[[11563,11564,11565]],[[11566,11563,11565]],[[11551,11548,11546]],[[11567,11568,11569]],[[11551,11546,11549]],[[11569,11568,11570]],[[8159,11570,2911]],[[11554,11550,11549]],[[11549,11557,11555]],[[11549,11560,11557]],[[11549,11561,11560]],[[11549,2911,11561]],[[11561,2911,11564]],[[11564,2911,11565]],[[11565,2911,11568]],[[11568,2911,11570]],[[183,2857,2825]],[[184,2857,183]],[[11571,2825,11531]],[[11572,11571,11533]],[[11533,11571,11531]],[[11573,11572,11532]],[[11532,11572,11533]],[[11574,11573,11534]],[[11534,11573,11532]],[[11575,11574,11535]],[[11535,11574,11534]],[[11576,11575,11537]],[[11537,11575,11535]],[[11577,11576,11538]],[[11538,11576,11537]],[[11578,11577,11541]],[[11541,11577,11538]],[[11579,11578,11540]],[[11540,11578,11541]],[[11580,11579,11542]],[[11542,11579,11540]],[[11581,11580,11543]],[[11543,11580,11542]],[[11582,11581,11547]],[[11547,11581,11543]],[[11583,11582,11545]],[[11545,11582,11547]],[[11584,11583,11544]],[[11544,11583,11545]],[[11585,11584,11548]],[[11548,11584,11544]],[[11586,11585,11551]],[[11551,11585,11548]],[[11587,11586,11550]],[[11550,11586,11551]],[[11588,11587,11552]],[[11552,11587,11550]],[[11589,11588,11553]],[[11553,11588,11552]],[[11590,11589,11554]],[[11554,11589,11553]],[[11591,11590,11555]],[[11555,11590,11554]],[[11592,11591,11556]],[[11556,11591,11555]],[[11593,11592,11558]],[[11558,11592,11556]],[[11594,11593,11557]],[[11557,11593,11558]],[[11595,11594,11560]],[[11560,11594,11557]],[[11596,11595,11559]],[[11559,11595,11560]],[[11597,11596,11562]],[[11562,11596,11559]],[[11598,11597,11561]],[[11561,11597,11562]],[[11599,11598,11564]],[[11564,11598,11561]],[[11600,11599,11563]],[[11563,11599,11564]],[[11601,11600,11566]],[[11566,11600,11563]],[[11602,11601,11565]],[[11565,11601,11566]],[[11603,11602,11568]],[[11568,11602,11565]],[[11604,11603,11567]],[[11567,11603,11568]],[[11605,11604,11569]],[[11569,11604,11567]],[[11606,11605,11570]],[[11570,11605,11569]],[[8159,11606,11570]],[[2936,2911,11549]],[[2959,2936,11546]],[[11546,2936,11549]],[[2958,2959,11539]],[[11539,2959,11546]],[[2910,2958,11536]],[[11536,2958,11539]],[[2947,2910,11536]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c2a086-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7968,8543,1280]],[[8543,1315,1280]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c538a4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11607,11608,11609]],[[11607,7803,1354]],[[11608,11607,1354]],[[11610,7803,11607]],[[1354,1688,11608]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5adfd-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0875b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11611,11612,11613]],[[11611,11614,11612]],[[11611,212,2815]],[[11614,11611,11615]],[[11615,11611,2815]],[[2815,212,213]],[[11616,212,11611]],[[11617,11616,11613]],[[11613,11616,11611]],[[11618,11617,11612]],[[11612,11617,11613]],[[11619,11618,11614]],[[11614,11618,11612]],[[11620,11619,11615]],[[11615,11619,11614]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5ae06-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08da749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11067,297,298]],[[11067,10615,297]],[[11067,11066,11621]],[[10615,11067,11621]],[[11622,10615,11621]],[[11066,11622,11621]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5d51d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[477,557,476]],[[557,558,476]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c89463-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10683,10682,10662]],[[10683,10662,11623]],[[11623,11624,11625]],[[11625,11624,10678]],[[11624,11626,11627]],[[11627,11626,11628]],[[11624,11623,11626]],[[10662,10682,7252]],[[10662,11626,11623]],[[10675,10663,10017]],[[10663,7244,10017]],[[10663,10662,7252]],[[10663,7252,7244]],[[10687,10683,11623]],[[10691,10687,11625]],[[11625,10687,11623]],[[10678,10691,11625]],[[10672,10678,11624]],[[10673,10672,11627]],[[11627,10672,11624]],[[10671,10673,11628]],[[11628,10673,11627]],[[10670,10671,11626]],[[11626,10671,11628]],[[10662,10670,11626]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b8e220996-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11629,11630,11631]],[[11632,1831,1827]],[[8174,1831,11633]],[[11634,8174,8175]],[[1825,11634,8175]],[[11635,11633,11636]],[[8174,11635,8173]],[[11636,10005,8173]],[[11636,11637,10005]],[[11638,11639,11637]],[[8174,11633,11635]],[[11640,11637,11636]],[[11635,11636,8173]],[[11640,1831,11638]],[[11633,11640,11636]],[[11633,1831,11640]],[[11640,11638,11637]],[[11639,10005,11637]],[[11632,11641,11642]],[[11643,10005,1831]],[[1831,11634,1825]],[[1831,8174,11634]],[[11644,11630,11629]],[[11641,10005,11630]],[[11643,11631,10005]],[[11630,10005,11631]],[[11644,11642,11641]],[[11632,11645,11641]],[[11646,11644,11629]],[[11632,11642,11644]],[[1831,11639,11638]],[[1831,10005,11639]],[[11632,11643,1831]],[[11646,11631,11643]],[[11644,11641,11630]],[[11645,10005,11641]],[[11646,11632,11644]],[[1827,11645,11632]],[[11631,11646,11629]],[[11643,11632,11646]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e220999-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11647,11648,11649]],[[11650,11651,11652]],[[11653,3117,11651]],[[11651,11654,11655]],[[11656,11652,11655]],[[11653,3162,3117]],[[11647,11649,11657]],[[11656,11650,11652]],[[11653,3160,3162]],[[11650,11658,11651]],[[11659,11660,11661]],[[11656,11655,11654]],[[11652,11662,11655]],[[11656,11647,11657]],[[11656,11661,11647]],[[3161,11656,11657]],[[3161,11650,11656]],[[11648,11661,11660]],[[11651,11662,11652]],[[3161,11663,11650]],[[11664,3160,11653]],[[11663,11658,11650]],[[3117,11660,11659]],[[11663,11665,11658]],[[11664,3161,3160]],[[11656,11654,11661]],[[11651,3117,11659]],[[11661,11654,11659]],[[11655,11662,11651]],[[11653,11651,11658]],[[11659,11654,11651]],[[11649,11648,11660]],[[11647,11661,11648]],[[11665,11653,11658]],[[11665,11664,11653]],[[11663,11664,11665]],[[11663,3161,11664]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2209a5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11666,11667,11668]],[[11669,11667,11666]],[[11670,11669,11666]],[[11671,11670,11666]],[[11672,11671,11666]],[[11673,11672,11666]],[[11674,11673,11666]],[[11675,11674,11666]],[[11676,11675,11666]],[[11677,11676,11666]],[[11678,11677,11666]],[[11679,11678,11666]],[[11680,11679,11666]],[[11681,11666,11682]],[[11682,11666,11683]],[[11683,11666,11684]],[[11684,11666,11685]],[[11685,11666,11686]],[[11686,11666,11687]],[[11687,11666,11688]],[[11688,11666,11689]],[[11689,11666,11690]],[[11690,11666,11691]],[[11691,11666,11692]],[[11692,11666,11693]],[[11693,11666,11694]],[[11694,11666,11695]],[[11695,11666,11696]],[[11696,11666,11697]],[[11697,11666,11698]],[[11698,11666,11699]],[[11699,11666,11700]],[[11700,11666,11701]],[[11701,11666,11702]],[[11702,11666,11703]],[[11703,11666,11704]],[[11704,11666,11705]],[[11705,11666,11706]],[[11706,11666,11707]],[[11707,11666,11708]],[[11708,11666,11709]],[[11709,11666,11710]],[[11710,11666,11711]],[[11711,11666,11712]],[[11712,11666,11713]],[[11713,11666,11714]],[[11666,11715,11716]],[[11666,11717,11715]],[[11666,11718,11717]],[[11666,11719,11718]],[[11666,11720,11719]],[[11666,11721,11720]],[[11666,11722,11721]],[[11666,11723,11722]],[[11666,11724,11723]],[[11666,11725,11724]],[[11666,11726,11725]],[[11666,11727,11726]],[[11666,11728,11727]],[[11666,11729,11728]],[[11666,11730,11729]],[[11666,11731,11730]],[[11666,11732,11731]],[[11666,11733,11732]],[[11666,11734,11733]],[[11666,11735,11734]],[[11666,11736,11735]],[[11666,11737,11736]],[[11666,11738,11737]],[[11666,11739,11738]],[[11666,11740,11739]],[[11666,11741,11740]],[[11666,11742,11741]],[[11666,11743,11742]],[[11666,11744,11743]],[[11666,11745,11744]],[[11666,11746,11745]],[[11666,11747,11746]],[[11666,11748,11747]],[[11666,11749,11748]],[[11666,11750,11749]],[[11666,11751,11750]],[[11666,11752,11751]],[[11666,11753,11752]],[[11666,11754,11753]],[[11666,11755,11754]],[[11666,11756,11755]],[[11666,11757,11756]],[[11666,11758,11757]],[[11666,11668,11758]],[[11714,11666,11716]],[[11681,11680,11666]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e22f3bc-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11759,11760,11761]],[[11762,11763,11764]],[[11764,11763,11759]],[[11762,11760,11759]],[[11765,11762,11766]],[[11765,11760,11762]],[[11764,11759,11761]],[[11763,11762,11759]],[[11766,11764,11761]],[[11766,11762,11764]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e23693d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11767,11768,11769]],[[11770,11771,11772]],[[11773,11774,11775]],[[11776,11777,11767]],[[11778,11773,11779]],[[11774,11780,11781]],[[11782,11783,11774]],[[11784,11769,11785]],[[11774,11783,11780]],[[11786,11782,11787]],[[11788,11789,11780]],[[11788,11783,11786]],[[11771,11781,11790]],[[11784,11791,11769]],[[11779,11792,11772]],[[11775,11781,11770]],[[11777,11768,11767]],[[11793,11769,11768]],[[11794,11767,11791]],[[11790,11789,11776]],[[11784,11790,11794]],[[11767,11769,11791]],[[11780,11790,11781]],[[11780,11789,11790]],[[11790,11776,11767]],[[11789,11788,11786]],[[11789,11777,11776]],[[11786,11768,11777]],[[11780,11783,11788]],[[11787,11773,11778]],[[11771,11790,11784]],[[11790,11767,11794]],[[11793,11778,11779]],[[11782,11786,11783]],[[11773,11787,11774]],[[11787,11793,11786]],[[11774,11787,11782]],[[11778,11793,11787]],[[11779,11775,11792]],[[11774,11781,11775]],[[11792,11770,11772]],[[11792,11775,11770]],[[11793,11779,11772]],[[11773,11775,11779]],[[11771,11784,11785]],[[11794,11791,11784]],[[11789,11786,11777]],[[11793,11768,11786]],[[11772,11771,11785]],[[11770,11781,11771]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e23ddc7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ad49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11795,11796,11797]],[[11798,11799,11800]],[[11801,11802,11798]],[[11800,11801,11798]],[[11803,11795,11804]],[[11796,11805,11797]],[[11804,11797,11801]],[[11805,11802,11801]],[[11804,11801,11800]],[[11797,11805,11801]],[[11803,11804,11800]],[[11795,11797,11804]],[[11803,11796,11795]],[[11806,11805,11796]],[[11806,11803,11800]],[[11806,11796,11803]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e24c8ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ab49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11807,11808,11809]],[[11810,11811,11812]],[[11810,11813,11811]],[[11814,11808,11815]],[[11816,11807,11809]],[[11815,11808,11807]],[[11812,11811,11807]],[[11817,11807,11811]],[[11809,11818,11819]],[[11820,11814,11817]],[[11816,11812,11807]],[[11821,11822,11810]],[[11811,11813,11817]],[[11823,11814,11820]],[[11824,11823,11825]],[[11813,11820,11817]],[[11821,11825,11822]],[[11818,11826,11823]],[[11822,11813,11810]],[[11823,11820,11813]],[[11822,11823,11813]],[[11826,11814,11823]],[[11824,11827,11823]],[[11824,11819,11827]],[[11812,11821,11810]],[[11825,11823,11822]],[[11826,11818,11809]],[[11821,11812,11816]],[[11824,11825,11816]],[[11816,11825,11821]],[[11819,11816,11809]],[[11819,11824,11816]],[[11817,11815,11807]],[[11817,11814,11815]],[[11827,11818,11823]],[[11827,11819,11818]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e253d86-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11828,11829,11830]],[[11831,11832,11833]],[[11834,11835,11831]],[[11836,11837,11838]],[[11839,11840,11841]],[[11839,11842,11831]],[[11831,11842,11832]],[[11843,11844,11845]],[[11846,11847,11848]],[[11842,11839,11841]],[[11828,11849,11850]],[[11839,11831,11840]],[[11832,11851,11849]],[[11842,11841,11851]],[[11828,11850,11852]],[[11853,11841,11848]],[[11849,11853,11850]],[[11851,11841,11853]],[[11833,11834,11831]],[[11845,11854,11855]],[[11847,11853,11848]],[[11856,11831,11835]],[[11828,11857,11858]],[[11859,11860,11861]],[[11862,11836,11838]],[[11847,11850,11853]],[[11863,11852,11864]],[[11848,11841,11846]],[[11860,11864,11847]],[[11857,11828,11852]],[[11833,11865,11834]],[[11840,11866,11841]],[[11834,11865,11835]],[[11866,11867,11841]],[[11856,11865,11868]],[[11865,11855,11869]],[[11841,11867,11846]],[[11866,11870,11854]],[[11871,11859,11872]],[[11843,11855,11829]],[[11873,11870,11866]],[[11870,11855,11854]],[[11863,11859,11871]],[[11872,11837,11871]],[[11836,11871,11837]],[[11836,11852,11863]],[[11873,11868,11870]],[[11869,11855,11870]],[[11867,11860,11846]],[[11867,11861,11860]],[[11858,11862,11829]],[[11858,11836,11862]],[[11865,11856,11835]],[[11840,11831,11856]],[[11847,11864,11852]],[[11860,11859,11864]],[[11859,11863,11864]],[[11871,11836,11863]],[[11833,11832,11830]],[[11842,11851,11832]],[[11861,11854,11845]],[[11861,11866,11854]],[[11872,11844,11837]],[[11874,11845,11844]],[[11862,11838,11843]],[[11837,11844,11843]],[[11849,11828,11830]],[[11858,11829,11828]],[[11832,11849,11830]],[[11851,11853,11849]],[[11856,11868,11840]],[[11869,11870,11868]],[[11840,11873,11866]],[[11840,11868,11873]],[[11872,11874,11844]],[[11872,11859,11861]],[[11872,11861,11874]],[[11867,11866,11861]],[[11843,11845,11855]],[[11874,11861,11845]],[[11868,11865,11869]],[[11833,11855,11865]],[[11862,11843,11829]],[[11838,11837,11843]],[[11860,11847,11846]],[[11852,11850,11847]],[[11836,11857,11852]],[[11836,11858,11857]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e26eb7a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11875,11876,11877]],[[11878,11877,11879]],[[11880,11881,11882]],[[11881,11876,11883]],[[11879,11884,11885]],[[11886,11876,11881]],[[11878,11883,11877]],[[11882,11881,11883]],[[11887,11884,11879]],[[11887,11886,11885]],[[11880,11885,11881]],[[11884,11887,11885]],[[11878,11880,11882]],[[11879,11885,11880]],[[11885,11886,11881]],[[11887,11876,11886]],[[11880,11878,11879]],[[11882,11883,11878]],[[11883,11875,11877]],[[11883,11876,11875]],[[11888,11876,11887]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2823ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11889,11890,11891]],[[11892,11890,11889]],[[11892,11893,11894]],[[11895,11896,11897]],[[11898,11892,11889]],[[11899,11900,11901]],[[11891,11890,11902]],[[11892,11894,11890]],[[11894,11902,11890]],[[11895,11903,11896]],[[11894,11895,11902]],[[11893,11892,11898]],[[11893,11903,11895]],[[11897,11904,11905]],[[11906,11889,11907]],[[11906,11898,11889]],[[11908,11896,11903]],[[11909,11900,11910]],[[11908,11898,11906]],[[11908,11903,11898]],[[11889,11891,11905]],[[11902,11895,11897]],[[11902,11897,11891]],[[11910,11900,11899]],[[11889,11905,11907]],[[11911,11897,11905]],[[11896,11909,11897]],[[11896,11908,11909]],[[11894,11893,11895]],[[11898,11903,11893]],[[11897,11909,11904]],[[11908,11900,11909]],[[11891,11911,11905]],[[11891,11897,11911]],[[11907,11899,11901]],[[11905,11904,11910]],[[11905,11910,11899]],[[11904,11909,11910]],[[11906,11907,11901]],[[11905,11899,11907]],[[11912,11900,11908]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e28998c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11913,11914,11915]],[[11916,11917,11918]],[[11919,11920,11921]],[[11922,11923,11924]],[[11925,11926,11927]],[[11924,11914,11927]],[[11928,11929,11930]],[[11931,11915,11932]],[[11933,11934,11935]],[[11926,11922,11936]],[[11935,11934,11937]],[[11938,11939,11940]],[[11918,11917,11927]],[[11916,11937,11941]],[[11936,11922,11924]],[[11923,11926,11942]],[[11928,11930,11939]],[[11915,11914,11932]],[[11921,11920,11943]],[[11933,11914,11944]],[[11920,11919,11945]],[[11945,11946,11920]],[[11919,11947,11945]],[[11913,11944,11914]],[[11948,11949,11946]],[[11949,11944,11950]],[[11927,11926,11936]],[[11951,11941,11929]],[[11952,11953,11915]],[[11913,11950,11944]],[[11931,11952,11915]],[[11943,11920,11950]],[[11922,11926,11923]],[[11926,11925,11942]],[[11946,11950,11920]],[[11949,11933,11944]],[[11946,11949,11950]],[[11954,11934,11933]],[[11936,11924,11927]],[[11932,11914,11924]],[[11917,11925,11927]],[[11941,11937,11929]],[[11934,11919,11955]],[[11938,11940,11932]],[[11955,11919,11939]],[[11952,11931,11940]],[[11923,11928,11938]],[[11929,11937,11934]],[[11923,11929,11928]],[[11951,11925,11941]],[[11953,11913,11915]],[[11953,11921,11913]],[[11913,11943,11950]],[[11913,11921,11943]],[[11924,11923,11932]],[[11942,11951,11923]],[[11946,11947,11948]],[[11946,11945,11947]],[[11934,11948,11947]],[[11954,11949,11948]],[[11940,11931,11932]],[[11940,11939,11952]],[[11952,11919,11921]],[[11956,11930,11929]],[[11919,11952,11939]],[[11921,11953,11952]],[[11923,11938,11932]],[[11928,11939,11938]],[[11929,11934,11956]],[[11956,11934,11955]],[[11923,11951,11929]],[[11942,11925,11951]],[[11919,11934,11947]],[[11937,11916,11935]],[[11918,11935,11916]],[[11918,11933,11935]],[[11934,11954,11948]],[[11933,11949,11954]],[[11917,11941,11925]],[[11917,11916,11941]],[[11939,11956,11955]],[[11939,11930,11956]],[[11957,11918,11927]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e290e1c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3056,11645,1788]],[[3056,3089,3057]],[[3056,3088,3089]],[[3056,1788,3088]],[[3088,3085,3087]],[[3087,3085,3086]],[[3088,3070,3085]],[[3085,3070,3084]],[[3084,3083,3082]],[[3084,3070,3083]],[[3083,3070,3081]],[[3088,1788,3070]],[[3070,3075,3072]],[[3070,3078,3075]],[[3070,1788,3078]],[[3078,1788,3058]],[[3058,1788,3059]],[[11645,1827,1788]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e29d205-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11958,11959,11960]],[[11961,11962,11963]],[[11964,11965,11966]],[[11967,11968,11969]],[[11969,11970,11971]],[[11972,11973,11959]],[[11969,11968,11974]],[[11975,11959,11976]],[[11972,11977,11978]],[[11967,11963,11962]],[[11979,11971,11958]],[[11970,11980,11981]],[[11970,11965,11964]],[[11981,11982,11975]],[[11983,11984,11985]],[[11984,11967,11969]],[[11970,11969,11974]],[[11967,11962,11968]],[[11970,11974,11980]],[[11968,11962,11974]],[[11964,11966,11958]],[[11976,11959,11958]],[[11973,11961,11963]],[[11973,11978,11961]],[[11985,11984,11969]],[[11983,11967,11984]],[[11965,11981,11966]],[[11981,11980,11982]],[[11979,11958,11960]],[[11966,11976,11958]],[[11985,11979,11960]],[[11971,11964,11958]],[[11977,11962,11978]],[[11962,11961,11978]],[[11969,11971,11979]],[[11970,11964,11971]],[[11977,11972,11982]],[[11978,11973,11972]],[[11966,11981,11976]],[[11965,11970,11981]],[[11979,11985,11969]],[[11960,11983,11985]],[[11975,11972,11959]],[[11982,11980,11977]],[[11981,11975,11976]],[[11982,11972,11975]],[[11974,11977,11980]],[[11974,11962,11977]],[[11986,11959,11973]],[[11987,11988,11960]],[[11960,11988,11983]],[[11959,11987,11960]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2a94ee-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11989,10140,10249]],[[10280,10140,11989]],[[10175,10280,11989]],[[10173,10175,11989]],[[10277,10173,11989]],[[11990,10277,11989]],[[11990,10275,10277]],[[11990,10270,10275]],[[11990,10268,10270]],[[11990,10266,10268]],[[11990,10264,10266]],[[11990,10262,10264]],[[10260,10259,11990]],[[11990,11991,11992]],[[10256,10257,11990]],[[10255,10256,11990]],[[10314,10255,11990]],[[10315,10314,11990]],[[10316,10315,11990]],[[10317,10316,11990]],[[10406,10317,11990]],[[10407,10406,11990]],[[10410,10407,11992]],[[10411,10410,11992]],[[10145,10411,11992]],[[10146,10145,11992]],[[10420,10146,11992]],[[11992,11991,11993]],[[10422,11992,10236]],[[10236,11992,10235]],[[10235,11992,10423]],[[10423,11992,10424]],[[10424,11992,10228]],[[10228,11992,10229]],[[10229,11992,10224]],[[10224,11992,10222]],[[10222,11992,10219]],[[10219,11992,10217]],[[10217,11992,10218]],[[10218,11992,10094]],[[10094,11992,10092]],[[10092,11992,11993]],[[10428,10092,11993]],[[10213,10428,11993]],[[10212,10213,11993]],[[10211,10212,11993]],[[10210,10211,11993]],[[10209,10210,11993]],[[10208,10209,11993]],[[11993,11991,11994]],[[10207,10206,11993]],[[10204,10207,11993]],[[10202,10204,11993]],[[10201,10202,11993]],[[10200,10201,11993]],[[10199,10200,11993]],[[10198,11993,10197]],[[10197,11994,10196]],[[10196,11994,10195]],[[10195,11994,10194]],[[11994,10192,10193]],[[11994,10191,10192]],[[11994,10190,10191]],[[11994,10189,10190]],[[11994,10188,10189]],[[11994,11995,10188]],[[10188,11995,10187]],[[10187,11995,10186]],[[10186,11995,10185]],[[10185,11995,10184]],[[10184,11995,10183]],[[11995,10180,10182]],[[11995,11989,10299]],[[10180,11995,10181]],[[10181,11995,10302]],[[10302,11995,10299]],[[10299,11989,10300]],[[10300,11989,10296]],[[10296,11989,10294]],[[10294,11989,10291]],[[10291,11989,10178]],[[10178,11989,10176]],[[10176,11989,10287]],[[11989,10308,10288]],[[11989,10254,10308]],[[11989,10282,10254]],[[11989,10137,10282]],[[11989,10251,10137]],[[11989,10281,10251]],[[11989,10249,10281]],[[10198,10199,11993]],[[11990,10259,10262]],[[10194,11994,10193]],[[11991,11989,11994]],[[10421,11992,10422]],[[10421,10420,11992]],[[10287,11989,10288]],[[11991,11990,11989]],[[10197,11993,11994]],[[10206,10208,11993]],[[10183,11995,10182]],[[11994,11989,11995]],[[10407,11990,11992]],[[10257,10260,11990]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2dc9d5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11996,11997,11998]],[[11999,12000,12001]],[[12002,12003,12004]],[[12002,12000,12003]],[[12005,12006,12000]],[[12007,12006,12005]],[[12005,12000,12008]],[[12006,12009,12010]],[[12011,12012,12006]],[[12001,12000,12004]],[[12000,12010,12003]],[[12004,12000,12002]],[[12013,12014,12015]],[[11999,12016,12000]],[[12017,11997,12015]],[[12008,12013,12015]],[[12016,12017,12014]],[[11996,12008,12015]],[[12013,12016,12014]],[[12000,12013,12008]],[[12000,12016,12013]],[[11996,12015,11997]],[[12014,12017,12015]],[[12007,12005,11996]],[[12006,12012,12009]],[[12018,12007,11998]],[[12019,12011,12007]],[[12000,12006,12010]],[[12007,12011,12006]],[[12018,12019,12007]],[[12018,12011,12019]],[[12007,11996,11998]],[[12005,12008,11996]],[[11999,12017,12016]],[[11999,11997,12017]],[[12020,11997,11999]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2e8cb2-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12021,12022,12023]],[[12024,12025,12026]],[[12027,12028,12029]],[[12030,12022,12031]],[[12026,12025,12030]],[[12032,12030,12025]],[[12033,12034,12035]],[[12036,12037,12038]],[[12039,12040,12041]],[[12035,12042,12043]],[[12039,12041,12044]],[[12033,12035,12038]],[[12045,12035,12034]],[[12045,12042,12035]],[[12040,12039,12037]],[[12046,12042,12030]],[[12047,12048,12049]],[[12038,12035,12043]],[[12025,12027,12029]],[[12043,12042,12046]],[[12046,12030,12032]],[[12042,12022,12030]],[[12045,12041,12023]],[[12045,12034,12041]],[[12050,12051,12049]],[[12052,12041,12040]],[[12041,12051,12023]],[[12053,12022,12054]],[[12051,12050,12054]],[[12055,12056,12027]],[[12057,12053,12054]],[[12057,12058,12059]],[[12027,12047,12028]],[[12056,12055,12048]],[[12024,12027,12025]],[[12056,12047,12027]],[[12047,12060,12028]],[[12049,12048,12061]],[[12029,12046,12032]],[[12028,12043,12046]],[[12059,12061,12048]],[[12049,12062,12050]],[[12057,12063,12024]],[[12055,12027,12063]],[[12038,12039,12044]],[[12037,12060,12052]],[[12047,12049,12052]],[[12052,12051,12041]],[[12064,12050,12062]],[[12054,12021,12051]],[[12060,12036,12065]],[[12038,12044,12033]],[[12056,12048,12047]],[[12059,12063,12057]],[[12055,12059,12048]],[[12064,12062,12061]],[[12060,12047,12052]],[[12061,12062,12049]],[[12061,12058,12064]],[[12057,12054,12050]],[[12041,12033,12044]],[[12041,12034,12033]],[[12057,12024,12066]],[[12063,12027,12024]],[[12058,12050,12064]],[[12058,12057,12050]],[[12037,12052,12040]],[[12049,12051,12052]],[[12067,12031,12022]],[[12067,12066,12031]],[[12053,12067,12022]],[[12066,12024,12031]],[[12025,12029,12032]],[[12028,12046,12029]],[[12065,12036,12038]],[[12037,12039,12038]],[[12043,12065,12038]],[[12060,12037,12036]],[[12028,12065,12043]],[[12028,12060,12065]],[[12053,12066,12067]],[[12053,12057,12066]],[[12061,12059,12058]],[[12055,12063,12059]],[[12031,12026,12030]],[[12031,12024,12026]],[[12051,12021,12023]],[[12054,12022,12021]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2f4faa-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12068,12069,12070]],[[12071,12072,12073]],[[12074,12075,12076]],[[12077,12078,12068]],[[12079,12080,12081]],[[12082,12083,12084]],[[12085,12086,12087]],[[12078,12088,12089]],[[12081,12090,12091]],[[12086,12091,12092]],[[12077,12093,12087]],[[12087,12092,12088]],[[12094,12085,12095]],[[12096,12086,12085]],[[12097,12073,12098]],[[12076,12075,12099]],[[12100,12071,12097]],[[12101,12074,12076]],[[12086,12079,12091]],[[12102,12103,12104]],[[12105,12076,12103]],[[12101,12106,12107]],[[12100,12098,12070]],[[12073,12108,12094]],[[12109,12071,12100]],[[12071,12073,12097]],[[12098,12068,12070]],[[12094,12095,12093]],[[12088,12077,12087]],[[12093,12095,12087]],[[12084,12091,12090]],[[12090,12110,12084]],[[12085,12087,12095]],[[12086,12092,12087]],[[12111,12099,12112]],[[12104,12112,12113]],[[12104,12111,12112]],[[12075,12112,12099]],[[12079,12105,12080]],[[12076,12099,12111]],[[12081,12102,12090]],[[12113,12083,12082]],[[12110,12104,12113]],[[12102,12080,12103]],[[12114,12078,12069]],[[12088,12092,12089]],[[12077,12088,12078]],[[12092,12091,12089]],[[12083,12112,12107]],[[12112,12075,12074]],[[12109,12106,12071]],[[12107,12074,12101]],[[12115,12109,12070]],[[12115,12106,12109]],[[12107,12115,12070]],[[12107,12106,12115]],[[12094,12108,12085]],[[12108,12072,12116]],[[12116,12072,12101]],[[12071,12106,12072]],[[12105,12101,12076]],[[12072,12106,12101]],[[12079,12081,12091]],[[12080,12102,12081]],[[12068,12114,12069]],[[12068,12078,12114]],[[12098,12094,12068]],[[12098,12073,12094]],[[12089,12084,12083]],[[12089,12091,12084]],[[12069,12089,12083]],[[12069,12078,12089]],[[12110,12102,12104]],[[12110,12090,12102]],[[12109,12100,12070]],[[12097,12098,12100]],[[12096,12079,12086]],[[12096,12116,12079]],[[12079,12116,12105]],[[12108,12073,12072]],[[12080,12105,12103]],[[12116,12101,12105]],[[12103,12111,12104]],[[12103,12076,12111]],[[12107,12112,12074]],[[12083,12113,12112]],[[12068,12093,12077]],[[12068,12094,12093]],[[12110,12082,12084]],[[12110,12113,12082]],[[12096,12108,12116]],[[12096,12085,12108]],[[12083,12117,12069]],[[12118,12107,12070]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3061e0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10364,10533,10358]],[[10533,10367,10358]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3061ec-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12119,12120,12121]],[[12119,12121,12122]],[[12122,12121,12123]],[[12123,12121,12124]],[[12124,12121,12125]],[[12125,12121,12126]],[[12126,12121,12127]],[[12127,12121,12128]],[[12128,12121,12129]],[[12129,12121,12130]],[[12130,12121,12131]],[[12131,12121,12132]],[[12132,12121,12133]],[[12133,12121,12134]],[[12134,12121,12135]],[[12135,12121,12136]],[[12136,12121,12137]],[[12137,12121,12138]],[[12138,12121,12139]],[[12139,12121,12140]],[[12140,12121,12141]],[[12141,12121,12142]],[[12120,12143,12121]],[[12144,12142,12121]],[[12145,12121,12146]],[[12146,12121,12147]],[[12147,12121,12148]],[[12148,12121,12149]],[[12149,12121,12150]],[[12150,12121,12151]],[[12151,12121,12152]],[[12152,12121,12153]],[[12145,12144,12121]],[[12154,12121,12155]],[[12155,12121,12156]],[[12156,12121,12157]],[[12157,12121,12158]],[[12158,12121,12159]],[[12159,12121,12160]],[[12160,12121,12161]],[[12161,12121,12162]],[[12162,12121,12163]],[[12163,12121,12164]],[[12121,12143,12165]],[[12166,12121,12167]],[[12167,12121,12168]],[[12168,12121,12169]],[[12169,12121,12170]],[[12170,12121,12171]],[[12171,12121,12172]],[[12172,12121,12173]],[[12173,12121,12174]],[[12174,12121,12175]],[[12175,12121,12176]],[[12176,12121,12177]],[[12177,12121,12178]],[[12178,12121,12179]],[[12179,12121,12180]],[[12180,12121,12181]],[[12181,12121,12182]],[[12182,12121,12183]],[[12184,12182,12183]],[[12185,12184,12183]],[[12186,12185,12183]],[[12187,12186,12183]],[[12188,12187,12183]],[[12189,12188,12183]],[[12190,12189,12183]],[[12191,12190,12183]],[[12192,12191,12183]],[[12193,12192,12183]],[[12194,12193,12183]],[[12183,12121,12195]],[[12196,12183,12197]],[[12197,12183,12198]],[[12198,12183,12199]],[[12199,12183,12200]],[[12200,12183,12201]],[[12201,12183,12202]],[[12202,12183,12203]],[[12203,12183,12204]],[[12204,12183,12205]],[[12205,12183,12206]],[[12206,12183,12195]],[[12195,12121,12207]],[[12207,12121,12208]],[[12208,12121,12209]],[[12209,12121,12165]],[[12164,12121,12166]],[[12154,12153,12121]],[[12210,12183,12196]],[[12210,12194,12183]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e319a5c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12211,1025,12212]],[[12213,1024,1023]],[[12214,12211,1023]],[[12212,1024,12213]],[[1023,12211,12215]],[[1025,1024,12212]],[[12215,12213,1023]],[[12215,12212,12213]],[[1015,12214,1023]],[[1015,1025,12211]],[[12215,12211,12212]],[[12214,1015,12211]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e328488-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12216,12217,3166]],[[12218,12219,12220]],[[12216,12221,12217]],[[12222,12223,12224]],[[12225,12226,12227]],[[12227,3115,3163]],[[12228,12229,12226]],[[12230,12231,12232]],[[12216,12233,12221]],[[12234,12235,12236]],[[12237,12231,12230]],[[12238,3115,12231]],[[12239,12223,12240]],[[12232,3115,12241]],[[12242,12221,12233]],[[12218,12217,12221]],[[12243,12230,12232]],[[12244,12245,12238]],[[12246,12247,12248]],[[12249,12250,12251]],[[12252,12233,12246]],[[12246,12233,12253]],[[12254,12255,12216]],[[12256,12257,12258]],[[12259,12255,12254]],[[12260,3166,12261]],[[12240,12262,3159]],[[12263,12229,12222]],[[12250,12249,12264]],[[12265,12238,12245]],[[12266,12243,12232]],[[12231,3115,12232]],[[12262,12228,3159]],[[12262,12222,12228]],[[12267,12268,12250]],[[12244,12238,12269]],[[12270,12271,12272]],[[12273,3169,12258]],[[12274,12275,12276]],[[12277,12278,12241]],[[12243,12279,12280]],[[12280,12230,12243]],[[12254,12216,3166]],[[12281,12233,12216]],[[3159,12225,3163]],[[12222,12262,12223]],[[12235,12216,12282]],[[12258,12283,12284]],[[12285,12286,12287]],[[12288,12267,12264]],[[12216,12235,12281]],[[12216,12255,12289]],[[12262,12240,12223]],[[12217,12279,12275]],[[12217,12290,12279]],[[12291,12237,12230]],[[12237,12292,12269]],[[12238,12231,12269]],[[12217,12240,3159]],[[12217,12275,12240]],[[12290,12292,12237]],[[12217,12245,12292]],[[12285,12265,12245]],[[12217,12293,12245]],[[12241,12276,12266]],[[12275,12279,12243]],[[3170,12261,3166]],[[3170,3169,12261]],[[12294,12247,12295]],[[12296,12238,12295]],[[12297,12298,12296]],[[12297,12296,12247]],[[12298,12299,12296]],[[12256,3169,12296]],[[12289,12256,12282]],[[12236,12235,12282]],[[12283,12259,12254]],[[12257,12255,12259]],[[12300,12221,12294]],[[12301,12252,12246]],[[12267,12288,12268]],[[12264,12249,12295]],[[12302,12295,12238]],[[12247,12296,12295]],[[12288,12264,12295]],[[12267,12250,12264]],[[12249,12300,12294]],[[12294,12301,12248]],[[12253,12297,12247]],[[3169,12238,12296]],[[3115,12224,12277]],[[12278,12303,12274]],[[12289,12257,12256]],[[12299,12281,12234]],[[12233,12297,12253]],[[12281,12299,12298]],[[12281,12297,12233]],[[12281,12298,12297]],[[12251,12218,12221]],[[12268,12219,12218]],[[12274,12276,12241]],[[12275,12243,12266]],[[12294,12304,12301]],[[12304,12242,12301]],[[12301,12246,12248]],[[12253,12247,12246]],[[12236,12282,12256]],[[12258,3169,12256]],[[12216,12289,12282]],[[12255,12257,12289]],[[12299,12256,12296]],[[12299,12236,12256]],[[12259,12258,12257]],[[12284,12305,12258]],[[12219,12268,12302]],[[12302,12268,12288]],[[12241,12266,12232]],[[12276,12275,12266]],[[12219,12302,12220]],[[12302,12238,12265]],[[12293,12285,12245]],[[12287,12220,12265]],[[12280,12291,12230]],[[12290,12217,12292]],[[12280,12290,12291]],[[12280,12279,12290]],[[12270,12254,3166]],[[12272,12284,12283]],[[12272,12283,12254]],[[12258,12259,12283]],[[12292,12244,12269]],[[12292,12245,12244]],[[12228,12225,3159]],[[12228,12226,12225]],[[3169,12306,12261]],[[12270,3166,12260]],[[12261,12306,12260]],[[12272,12254,12270]],[[12307,12306,12273]],[[12307,12260,12306]],[[12305,12273,12258]],[[12306,3169,12273]],[[12270,12307,12305]],[[12270,12260,12307]],[[12271,12305,12284]],[[12307,12273,12305]],[[12272,12271,12284]],[[12270,12305,12271]],[[12221,12304,12294]],[[12221,12242,12304]],[[12227,12263,3115]],[[12278,12274,12241]],[[12263,12222,12224]],[[12229,12228,12222]],[[3115,12277,12241]],[[12239,12240,12277]],[[12224,12239,12277]],[[12224,12223,12239]],[[12225,12227,3163]],[[12263,12224,3115]],[[12220,12302,12265]],[[12288,12295,12302]],[[12300,12249,12251]],[[12268,12218,12250]],[[12218,12286,12217]],[[12218,12220,12287]],[[12285,12287,12265]],[[12286,12218,12287]],[[12252,12242,12233]],[[12252,12301,12242]],[[12299,12234,12236]],[[12281,12235,12234]],[[12300,12251,12221]],[[12250,12218,12251]],[[12286,12293,12217]],[[12286,12285,12293]],[[12247,12294,12248]],[[12295,12249,12294]],[[12226,12263,12227]],[[12226,12229,12263]],[[12231,12237,12269]],[[12291,12290,12237]],[[12308,12278,12277]],[[12308,12303,12278]],[[12240,12308,12277]],[[12303,12275,12274]],[[12240,12303,12308]],[[12240,12275,12303]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e33202e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12309,12310,12311]],[[12312,12313,12314]],[[12315,7831,12316]],[[12317,12318,12319]],[[12320,12317,12321]],[[12322,12320,12321]],[[12321,12317,12323]],[[12324,12318,12317]],[[12316,7831,7832]],[[12325,12326,12327]],[[12328,12329,12330]],[[12327,12316,7832]],[[12331,12332,12333]],[[12334,12335,12336]],[[12337,12338,8060]],[[12339,7856,7867]],[[12340,7820,7856]],[[12341,7821,7820]],[[8055,12342,7867]],[[12343,12344,12345]],[[12346,12347,12348]],[[12349,12350,7856]],[[12351,12352,8060]],[[12338,8055,8060]],[[12353,12327,7832]],[[12324,12354,12355]],[[12350,12340,7856]],[[12356,7820,12340]],[[7831,12314,12357]],[[12333,8060,7831]],[[12358,12359,12341]],[[12359,7821,12341]],[[12360,12361,7856]],[[12349,12361,12362]],[[12338,12344,8055]],[[12309,12342,8055]],[[12363,12364,12365]],[[12366,12365,12367]],[[12363,12368,12369]],[[12370,12371,12372]],[[12361,12349,7856]],[[12362,12373,12374]],[[12375,12356,12340]],[[12356,12376,12358]],[[12377,12343,12378]],[[12338,12368,12379]],[[12332,12380,12333]],[[12352,12369,8060]],[[12381,12382,12383]],[[12384,12385,12364]],[[12386,12332,12331]],[[12387,12382,12381]],[[12388,12374,12340]],[[12389,12356,12375]],[[12353,12390,12391]],[[12392,12393,12317]],[[12354,12329,12394]],[[12354,12324,12317]],[[12326,12395,12396]],[[12317,12319,12323]],[[12327,12326,12396]],[[12325,12330,12397]],[[12338,12345,12344]],[[12338,12398,12345]],[[12336,8055,12399]],[[12374,12400,12340]],[[12357,12401,12331]],[[12381,12402,12403]],[[12339,12360,7856]],[[12339,12370,12360]],[[12350,12362,12340]],[[12362,12361,12373]],[[12404,12389,12400]],[[12376,12359,12358]],[[12405,12390,7832]],[[12391,12330,12325]],[[12401,12386,12331]],[[12401,12313,12387]],[[7820,12358,12341]],[[12406,7821,12359]],[[12365,12407,12367]],[[12408,12409,12347]],[[12337,12368,12338]],[[12369,12352,12384]],[[12351,12384,12352]],[[12380,12332,12381]],[[12410,12312,12320]],[[12313,12382,12387]],[[12331,12333,7831]],[[12351,8060,12333]],[[12400,12375,12340]],[[12400,12389,12375]],[[12356,12358,7820]],[[12356,12389,12376]],[[12395,12411,12396]],[[12412,12317,12320]],[[12413,12414,12415]],[[12315,12416,12314]],[[12396,12316,12327]],[[12396,12411,12316]],[[12417,12310,12418]],[[12361,12360,12370]],[[12313,12419,12382]],[[12420,12403,12421]],[[12344,12399,8055]],[[12422,12367,12407]],[[12423,12339,7867]],[[12424,12407,12425]],[[12426,12311,12417]],[[12409,12309,12311]],[[12309,12336,12310]],[[12309,8055,12336]],[[7831,12357,12331]],[[12416,12315,12316]],[[12326,12325,12397]],[[12394,12427,12354]],[[12428,12403,12429]],[[12335,12310,12336]],[[12430,12431,12432]],[[12372,12361,12370]],[[12346,12371,12423]],[[12370,12339,12371]],[[12347,12409,12426]],[[12342,12309,12409]],[[12342,12408,7867]],[[12342,12409,12408]],[[12380,12385,12384]],[[12425,12407,12365]],[[12351,12380,12384]],[[12351,12333,12380]],[[12412,12414,12317]],[[12414,12392,12317]],[[12432,12377,12378]],[[12422,12424,12428]],[[12420,12433,12425]],[[12421,12428,12433]],[[12431,12428,12429]],[[12418,12434,12417]],[[12410,12435,12312]],[[12435,12436,12419]],[[12431,12418,12437]],[[12438,12439,12348]],[[7832,12390,12353]],[[12328,12394,12329]],[[12440,12441,12404]],[[12376,12389,12404]],[[12348,12347,12438]],[[12442,12434,12443]],[[12408,12444,7867]],[[12408,12347,12444]],[[12384,12364,12369]],[[12425,12433,12424]],[[12337,12369,12368]],[[12337,8060,12369]],[[12385,12425,12364]],[[12385,12420,12425]],[[12426,12417,12442]],[[12440,12404,12400]],[[12439,12441,12373]],[[12406,12404,12441]],[[12445,12398,12338]],[[12445,12338,12379]],[[12383,12402,12381]],[[12446,12403,12402]],[[12380,12381,12385]],[[12387,12386,12401]],[[12332,12387,12381]],[[12332,12386,12387]],[[12431,12434,12418]],[[12406,12441,12434]],[[12442,12438,12347]],[[12443,12439,12438]],[[12442,12417,12434]],[[12311,12310,12417]],[[12378,12343,12398]],[[12445,12379,12366]],[[12377,12432,12431]],[[12430,12367,12431]],[[12430,12447,12366]],[[12379,12368,12366]],[[12367,12430,12366]],[[12447,12398,12445]],[[12366,12447,12445]],[[12378,12398,12447]],[[12431,12422,12428]],[[12431,12367,12422]],[[12357,12314,12401]],[[12312,12419,12313]],[[12401,12314,12313]],[[7831,12315,12314]],[[12429,12410,12322]],[[12312,12415,12412]],[[12419,12436,12382]],[[12382,12446,12383]],[[12436,12446,12382]],[[12436,12435,12446]],[[12327,12391,12325]],[[12390,12405,12328]],[[12353,12391,12327]],[[12390,12330,12391]],[[12322,12410,12320]],[[12429,12446,12435]],[[12347,12426,12442]],[[12409,12311,12426]],[[12444,12423,7867]],[[12371,12339,12423]],[[12420,12421,12433]],[[12403,12428,12421]],[[12335,12448,12437]],[[12399,12344,12343]],[[12398,12343,12345]],[[12377,12449,12343]],[[12310,12335,12418]],[[12399,12343,12449]],[[12449,12448,12334]],[[12437,12377,12431]],[[12334,12448,12335]],[[12449,12377,12448]],[[12395,12414,12411]],[[12395,12397,12392]],[[12326,12397,12395]],[[12330,12329,12393]],[[12378,12430,12432]],[[12378,12447,12430]],[[12428,12424,12433]],[[12422,12407,12424]],[[12335,12437,12418]],[[12448,12377,12437]],[[12390,12328,12330]],[[12405,12394,12328]],[[12406,12376,12404]],[[12406,12359,12376]],[[12381,12420,12385]],[[12381,12403,12420]],[[12314,12415,12312]],[[12413,12411,12414]],[[12411,12413,12316]],[[12415,12314,12416]],[[12416,12413,12415]],[[12416,12316,12413]],[[12312,12412,12320]],[[12415,12414,12412]],[[12395,12392,12414]],[[12397,12330,12393]],[[12355,12354,12427]],[[12393,12329,12354]],[[12317,12393,12354]],[[12392,12397,12393]],[[12371,12348,12372]],[[12346,12444,12347]],[[12406,12431,12429]],[[12406,12434,12431]],[[12348,12439,12372]],[[12434,12441,12439]],[[12372,12373,12361]],[[12372,12439,12373]],[[12340,12362,12388]],[[12350,12349,12362]],[[12362,12374,12388]],[[12373,12441,12440]],[[12374,12440,12400]],[[12374,12373,12440]],[[12368,12363,12366]],[[12364,12425,12365]],[[12364,12363,12369]],[[12365,12366,12363]],[[12312,12435,12419]],[[12410,12429,12435]],[[12442,12443,12438]],[[12434,12439,12443]],[[12383,12446,12402]],[[12429,12403,12446]],[[12399,12334,12336]],[[12399,12449,12334]],[[12444,12346,12423]],[[12348,12371,12346]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e336e96-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12450,12451,12452]],[[12453,12452,12454]],[[12455,12456,12457]],[[12456,12451,12458]],[[12458,12459,12457]],[[12458,12451,12460]],[[12459,12455,12457]],[[12461,12451,12456]],[[12462,12463,12453]],[[12462,12456,12455]],[[12461,12462,12454]],[[12461,12456,12462]],[[12453,12464,12452]],[[12463,12455,12464]],[[12465,12455,12459]],[[12463,12462,12455]],[[12462,12453,12454]],[[12463,12464,12453]],[[12464,12465,12450]],[[12464,12455,12465]],[[12450,12460,12451]],[[12465,12459,12460]],[[12459,12458,12460]],[[12457,12456,12458]],[[12464,12450,12452]],[[12465,12460,12450]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e33bd04-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12466,12467,12468]],[[11826,12469,12470]],[[11814,12471,11808]],[[12469,11809,12472]],[[12473,12474,12475]],[[12476,11826,12470]],[[12476,11814,11826]],[[12471,12477,11808]],[[12478,12479,12475]],[[12480,12481,12482]],[[12483,12472,12468]],[[12467,12477,12468]],[[12479,12473,12475]],[[12484,12485,12481]],[[12470,12469,12468]],[[12472,12466,12468]],[[12484,12480,12467]],[[12482,12477,12467]],[[12469,12472,12483]],[[11809,12486,12472]],[[12473,12485,12474]],[[12481,12480,12484]],[[12472,12486,12466]],[[11809,12473,12479]],[[12468,12469,12483]],[[11826,11809,12469]],[[12478,12467,12466]],[[12475,12474,12484]],[[12475,12484,12467]],[[12474,12485,12484]],[[12481,12473,11809]],[[12481,12485,12473]],[[12467,12478,12475]],[[12466,12486,12478]],[[12480,12482,12467]],[[11808,12477,12482]],[[11808,12481,11809]],[[11808,12482,12481]],[[12476,12471,11814]],[[12476,12477,12471]],[[12486,12479,12478]],[[12486,11809,12479]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e34317c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1aa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12487,12488,12489]],[[12490,12491,12492]],[[12488,12491,12489]],[[12493,12489,12491]],[[12494,12495,12496]],[[12497,12493,12491]],[[12490,12498,12491]],[[12499,12500,12501]],[[12490,12499,12498]],[[12502,12493,12497]],[[12500,12503,12504]],[[12500,12499,12503]],[[12498,12497,12491]],[[12498,12499,12501]],[[12505,12506,12495]],[[12502,12501,12507]],[[12504,12492,12488]],[[12504,12503,12490]],[[12487,12508,12509]],[[12492,12491,12488]],[[12504,12490,12492]],[[12503,12499,12490]],[[12501,12496,12510]],[[12507,12493,12502]],[[12511,12512,12513]],[[12508,12514,12515]],[[12494,12505,12495]],[[12515,12506,12505]],[[12511,12504,12512]],[[12514,12506,12515]],[[12498,12502,12497]],[[12510,12496,12516]],[[12515,12494,12496]],[[12515,12505,12494]],[[12506,12516,12495]],[[12516,12493,12507]],[[12498,12501,12502]],[[12500,12496,12501]],[[12501,12510,12507]],[[12496,12495,12516]],[[12510,12516,12507]],[[12506,12493,12516]],[[12496,12500,12511]],[[12504,12488,12512]],[[12496,12511,12515]],[[12512,12488,12487]],[[12513,12509,12515]],[[12513,12512,12509]],[[12509,12508,12515]],[[12509,12512,12487]],[[12515,12511,12513]],[[12500,12504,12511]],[[12514,12487,12489]],[[12514,12508,12487]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e347fd5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12517,12518,12519]],[[12520,12521,12522]],[[12523,12524,12525]],[[12520,12526,12527]],[[12519,12518,12524]],[[12517,12528,12527]],[[12523,12520,12522]],[[12524,12518,12525]],[[12520,12525,12526]],[[12520,12523,12525]],[[12517,12526,12518]],[[12525,12518,12526]],[[12519,12523,12522]],[[12519,12524,12523]],[[12521,12527,12528]],[[12521,12520,12527]],[[12526,12517,12527]],[[12519,12528,12517]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e34ce31-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12529,12530,12531]],[[12529,12531,12532]],[[12533,12534,12535]],[[12530,12536,12531]],[[12535,12529,12532]],[[12534,12537,12530]],[[12538,12533,12532]],[[12534,12529,12535]],[[12533,12537,12534]],[[12538,12536,12537]],[[12532,12533,12535]],[[12538,12537,12533]],[[12534,12530,12529]],[[12537,12536,12530]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e362de1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12539,3111,12540]],[[12541,3046,3104]],[[12542,12543,12541]],[[3046,12544,3047]],[[12545,12546,12547]],[[12548,12549,12550]],[[12551,12552,12553]],[[12554,12555,12556]],[[12557,12558,12559]],[[12560,12561,12562]],[[12563,12564,3099]],[[12565,12470,12566]],[[12567,12550,12568]],[[12569,12476,12570]],[[12571,12547,12546]],[[12572,12476,12470]],[[12573,12468,12574]],[[12550,12549,12568]],[[12575,12576,12564]],[[12577,12578,12579]],[[12578,12580,12581]],[[12567,12549,12580]],[[12563,12567,12580]],[[12563,12577,12579]],[[12564,12553,3099]],[[12581,12576,12578]],[[12582,12583,12559]],[[12552,12559,12558]],[[12576,12575,12584]],[[12579,12584,12575]],[[12585,12586,12587]],[[12578,12576,12584]],[[12587,12559,12588]],[[12588,12589,12585]],[[12588,12559,12589]],[[12576,12582,12564]],[[12589,12590,12551]],[[12551,12590,12552]],[[12589,12559,12552]],[[12556,12555,12591]],[[12556,12592,12561]],[[12567,12554,12550]],[[12567,12591,12554]],[[12553,12552,12558]],[[12590,12589,12552]],[[12592,12556,12591]],[[12556,12561,12554]],[[12567,12563,3099]],[[12579,12575,12563]],[[12591,12567,3099]],[[12568,12549,12567]],[[12585,12593,12586]],[[12585,12564,12593]],[[12564,12582,12593]],[[12582,12559,12586]],[[12594,12582,12576]],[[12586,12593,12582]],[[12595,12591,3099]],[[12555,12554,12591]],[[12579,12578,12584]],[[12580,12549,12581]],[[12580,12577,12563]],[[12580,12578,12577]],[[12585,12587,12588]],[[12586,12559,12587]],[[12575,12564,12563]],[[12585,12551,12564]],[[12564,12551,12553]],[[12585,12589,12551]],[[12596,12597,12571]],[[12598,3111,12539]],[[12565,12599,12470]],[[12600,12601,12602]],[[12603,12604,12539]],[[12603,12605,12604]],[[12606,12594,12468]],[[12581,12549,12607]],[[12541,12543,12608]],[[12609,12610,12611]],[[12612,12613,12596]],[[12597,12614,12571]],[[3103,12612,3104]],[[12612,12476,12569]],[[12615,12606,12468]],[[12604,12477,12616]],[[12558,12557,3111]],[[12615,12468,12617]],[[12559,12583,12557]],[[12468,12477,12604]],[[12546,12545,12539]],[[12547,12598,12545]],[[12477,12546,12616]],[[12477,12571,12546]],[[12557,12583,12618]],[[12582,12594,12583]],[[12619,12620,12565]],[[12570,12543,12569]],[[3093,12544,12610]],[[3093,3047,12544]],[[12621,12622,12623]],[[12624,12625,12544]],[[12626,12627,12628]],[[12629,3093,12609]],[[12630,12631,12632]],[[12599,12633,12634]],[[12546,12539,12616]],[[12545,12598,12539]],[[12619,12635,12620]],[[12626,12636,12637]],[[12562,12592,12630]],[[12621,12627,12638]],[[12639,12632,12640]],[[12641,12637,12642]],[[12574,12594,12581]],[[12606,12583,12594]],[[12599,12634,12636]],[[12636,12643,12637]],[[12574,12581,12644]],[[12594,12576,12581]],[[12607,12602,12644]],[[12600,12468,12573]],[[12644,12602,12601]],[[12566,12562,12645]],[[12646,12561,12560]],[[12646,12554,12561]],[[12600,12647,12648]],[[12646,12550,12554]],[[12648,12646,12560]],[[12647,12548,12646]],[[12571,12614,12547]],[[12614,3111,12598]],[[12468,12600,12470]],[[12602,12607,12548]],[[12648,12647,12646]],[[12600,12602,12548]],[[12595,12631,12630]],[[12632,12639,12630]],[[12573,12574,12644]],[[12468,12594,12574]],[[12618,12615,12617]],[[12583,12606,12615]],[[12649,12650,12651]],[[12541,3104,12542]],[[12611,12610,12572]],[[12652,12608,12543]],[[12611,12622,12609]],[[12609,3093,12610]],[[12621,12628,12627]],[[12623,12622,12611]],[[12477,12596,12571]],[[12613,12614,12597]],[[12646,12548,12550]],[[12647,12600,12548]],[[12557,12605,12540]],[[12617,12468,12604]],[[12539,12604,12616]],[[12605,12617,12604]],[[12562,12566,12560]],[[12470,12600,12648]],[[12638,12609,12622]],[[12638,12627,12629]],[[12645,12619,12565]],[[12562,12635,12619]],[[12561,12592,12562]],[[12591,12595,12592]],[[12581,12607,12644]],[[12549,12548,12607]],[[3104,12612,12569]],[[3103,12613,12612]],[[12601,12573,12644]],[[12601,12600,12573]],[[12544,12651,12610]],[[12544,12608,12624]],[[12625,12624,12476]],[[12625,12651,12544]],[[12650,12649,12476]],[[12650,12610,12651]],[[12624,12652,12476]],[[12624,12608,12652]],[[12640,12643,12634]],[[12653,3093,12643]],[[12626,12641,12627]],[[12642,3093,12629]],[[12470,12599,12626]],[[12599,12620,12633]],[[12638,12629,12609]],[[12627,12641,12642]],[[12639,12633,12620]],[[12634,12643,12636]],[[12572,12623,12611]],[[12470,12626,12628]],[[12470,12623,12572]],[[12470,12628,12623]],[[12622,12621,12638]],[[12623,12628,12621]],[[12572,12650,12476]],[[12572,12610,12650]],[[12569,12542,3104]],[[12569,12543,12542]],[[12631,12595,12653]],[[12653,12643,12640]],[[12566,12645,12565]],[[12562,12619,12645]],[[12652,12570,12476]],[[12652,12543,12570]],[[12639,12640,12633]],[[12633,12640,12634]],[[12626,12599,12636]],[[12565,12620,12599]],[[12540,12603,12539]],[[12540,12605,12603]],[[12547,12614,12598]],[[12613,3111,12614]],[[12635,12639,12620]],[[12635,12630,12639]],[[12605,12557,12617]],[[12540,3111,12557]],[[12544,12541,12608]],[[12544,3046,12541]],[[12596,12613,12597]],[[3103,3111,12613]],[[12476,12596,12477]],[[12476,12612,12596]],[[12557,12618,12617]],[[12583,12615,12618]],[[12649,12625,12476]],[[12649,12651,12625]],[[12631,12653,12632]],[[12595,3099,12653]],[[12632,12653,12640]],[[3099,3093,12653]],[[12562,12630,12635]],[[12592,12595,12630]],[[12626,12637,12641]],[[12643,3093,12637]],[[12627,12642,12629]],[[12637,3093,12642]],[[12566,12648,12560]],[[12566,12470,12648]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e36a37d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10052,12654,10051]],[[12654,10049,10051]],[[12654,10050,10049]],[[12654,10147,10050]],[[12654,10172,10147]],[[12654,10171,10172]],[[12654,10170,10171]],[[12655,10169,10170]],[[12655,10168,10169]],[[12655,10167,10168]],[[12655,10166,10167]],[[12655,10165,10166]],[[10163,10164,12655]],[[12655,12656,12657]],[[10161,12655,10160]],[[10160,12655,10159]],[[10159,12655,10158]],[[10387,12655,12657]],[[10157,10158,12655]],[[10156,10157,12655]],[[10154,10156,12655]],[[10153,10154,12655]],[[10151,10153,12655]],[[10394,10151,12655]],[[10390,10394,12655]],[[10391,10390,12655]],[[10387,10391,12655]],[[10330,10387,12657]],[[10329,10330,12657]],[[10327,10329,12657]],[[10324,10327,12657]],[[12657,12656,12658]],[[10565,12657,10318]],[[10318,12657,10319]],[[10319,12657,10331]],[[10331,12657,10129]],[[10129,12657,12659]],[[10340,10129,12659]],[[10126,10340,12659]],[[12659,12657,12658]],[[10123,10341,12659]],[[10271,10123,12659]],[[10085,10271,12659]],[[10120,10085,12659]],[[10118,10120,12659]],[[10116,10118,12659]],[[12658,12656,12660]],[[10112,12658,10110]],[[10110,12658,10108]],[[10102,12658,12660]],[[10105,10108,12658]],[[10103,12658,10102]],[[10102,12660,10100]],[[10100,12660,10098]],[[10098,12660,10095]],[[10095,12660,10091]],[[10091,12660,10089]],[[10089,12660,10087]],[[12660,10082,10086]],[[12660,10079,10082]],[[12660,10078,10079]],[[12660,10077,10078]],[[12660,12661,10077]],[[10077,12661,10076]],[[10076,12661,10075]],[[10075,12661,10074]],[[10074,12661,10073]],[[12661,12654,10064]],[[10072,12661,10071]],[[10071,12661,10070]],[[10070,12661,10069]],[[10069,12661,10068]],[[10068,12661,10066]],[[10066,12661,10067]],[[10067,12661,10065]],[[10065,12661,10064]],[[10064,12654,10063]],[[10063,12654,10062]],[[10062,12654,10030]],[[10030,12654,10031]],[[10031,12654,10061]],[[10061,12654,10059]],[[10059,12654,10060]],[[12654,12655,10170]],[[10058,12654,10057]],[[10057,12654,10056]],[[10056,12654,10055]],[[10055,12654,10054]],[[10054,12654,10053]],[[10053,12654,10052]],[[10103,10105,12658]],[[12655,10164,10165]],[[10325,12657,10565]],[[10325,10324,12657]],[[10087,12660,10086]],[[12656,12654,12661]],[[10162,12655,10161]],[[10162,10163,12655]],[[10114,12658,10112]],[[10114,10116,12658]],[[10060,12654,10058]],[[12656,12655,12654]],[[10116,12659,12658]],[[10341,10126,12659]],[[10073,12661,10072]],[[12660,12656,12661]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3717f5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12662,12663,3214]],[[12664,12665,12666]],[[12667,12668,12669]],[[3044,12670,3042]],[[3044,3042,3045]],[[12671,12672,3040]],[[12673,12674,12675]],[[12676,12677,12662]],[[12678,12679,12680]],[[12681,3216,12682]],[[12683,12684,12685]],[[12686,12687,12670]],[[12688,12686,12672]],[[12684,12689,12690]],[[12691,12692,12693]],[[12694,12695,12663]],[[12696,3216,12681]],[[3216,3215,12682]],[[12691,12697,12698]],[[12680,12699,12700]],[[12691,12698,12701]],[[12701,12699,12680]],[[12685,12701,12702]],[[12691,12701,12703]],[[12702,12698,12697]],[[12701,12679,12678]],[[12704,12705,12706]],[[12706,3215,12707]],[[12708,12695,12709]],[[12665,12664,12699]],[[12678,12680,12710]],[[12708,12666,12695]],[[12711,12691,12693]],[[12711,12697,12691]],[[12710,12680,12676]],[[12679,12701,12680]],[[12704,12707,12712]],[[12713,3215,12663]],[[12711,12702,12697]],[[12714,12685,12702]],[[12713,12707,3215]],[[12706,12682,3215]],[[12715,12662,12700]],[[12713,12716,12665]],[[12663,12715,12709]],[[12664,12666,12708]],[[12702,12701,12698]],[[12685,12699,12701]],[[12665,12699,12717]],[[12706,12681,12682]],[[12704,12706,12707]],[[12718,12719,12704]],[[12709,12664,12708]],[[12715,12699,12664]],[[12709,12715,12664]],[[12676,12680,12700]],[[12713,12704,12712]],[[12720,12696,12718]],[[12706,12705,12681]],[[12717,12721,12665]],[[12693,12710,12676]],[[12693,12692,12710]],[[12704,12719,12705]],[[12669,12722,12723]],[[12715,12700,12699]],[[12677,12676,12700]],[[12714,12711,12693]],[[12714,12702,12711]],[[12716,12713,12663]],[[12712,12707,12713]],[[12692,12703,12710]],[[12703,12701,12678]],[[12710,12703,12678]],[[12692,12691,12703]],[[12662,12715,12663]],[[12662,12677,12700]],[[12714,12662,3214]],[[12693,12676,12662]],[[12709,12694,12663]],[[12709,12695,12694]],[[12695,12716,12663]],[[12695,12666,12716]],[[12685,12714,3214]],[[12693,12662,12714]],[[3042,12670,3040]],[[12670,12724,12675]],[[12685,12684,12686]],[[12685,3214,12725]],[[12696,12726,12727]],[[12728,12729,3043]],[[12730,12731,12732]],[[12728,3216,12727]],[[3040,12670,12687]],[[12675,12674,12686]],[[12724,12733,12675]],[[12734,12735,12729]],[[12736,12673,12675]],[[12737,12738,12673]],[[12683,12689,12684]],[[12739,12683,12740]],[[12704,12713,12665]],[[12718,12704,12665]],[[12741,12671,3040]],[[12672,3041,3040]],[[12727,12726,12668]],[[12742,12721,12717]],[[12705,12696,12681]],[[12705,12719,12696]],[[12743,12744,12733]],[[12734,12729,12728]],[[12736,12737,12673]],[[12745,12743,12746]],[[12728,12727,12747]],[[3216,12696,12727]],[[12667,12669,12674]],[[12668,12726,12720]],[[12668,12720,12669]],[[12696,12719,12718]],[[12748,12718,12665]],[[12720,12726,12696]],[[12746,12743,12724]],[[12745,12749,12750]],[[12748,12665,12721]],[[12716,12666,12665]],[[12744,12750,12751]],[[12731,3043,12729]],[[12670,12675,12686]],[[12733,12744,12736]],[[12668,12667,12727]],[[12674,12673,12752]],[[12667,12753,12747]],[[12752,12738,12732]],[[12753,12667,12674]],[[12747,12727,12667]],[[12751,12750,12749]],[[12744,12743,12750]],[[12741,12688,12671]],[[12686,3041,12672]],[[3216,12728,3043]],[[12747,12753,12734]],[[12751,12754,12737]],[[12737,12730,12738]],[[12725,12683,12685]],[[12690,12686,12684]],[[12687,12755,3040]],[[12756,12686,12688]],[[12755,12756,12741]],[[12687,12686,12756]],[[12723,12717,12699]],[[12669,12757,12722]],[[12723,12722,12742]],[[12757,12718,12722]],[[12742,12748,12721]],[[12722,12718,12748]],[[12743,12745,12750]],[[3044,12749,12745]],[[12746,12724,12670]],[[12743,12733,12724]],[[12673,12738,12752]],[[12752,12731,12735]],[[12747,12734,12728]],[[12753,12735,12734]],[[3041,12758,3214]],[[3041,12686,12759]],[[12723,12742,12717]],[[12722,12748,12742]],[[3044,12746,12670]],[[3044,12745,12746]],[[12674,12723,12699]],[[12674,12669,12723]],[[12744,12751,12737]],[[12749,12754,12751]],[[12758,12725,3214]],[[12758,12740,12725]],[[12754,12730,12737]],[[3044,3043,12730]],[[3044,12754,12749]],[[3044,12730,12754]],[[12735,12731,12729]],[[12730,3043,12731]],[[12739,12690,12689]],[[12759,12686,12690]],[[12683,12739,12689]],[[12740,12758,12759]],[[12739,12759,12690]],[[12758,3041,12759]],[[12733,12736,12675]],[[12744,12737,12736]],[[12739,12740,12759]],[[12683,12725,12740]],[[12671,12688,12672]],[[12741,12756,12688]],[[12757,12720,12718]],[[12757,12669,12720]],[[12752,12732,12731]],[[12738,12730,12732]],[[12753,12752,12735]],[[12753,12674,12752]],[[3040,12755,12741]],[[12687,12756,12755]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e37180a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12760,12761,12762]],[[12763,12764,12765]],[[12764,3099,12766]],[[3097,12767,3096]],[[3096,12767,3095]],[[3095,12767,3094]],[[3094,12767,3092]],[[3092,12767,3091]],[[3091,12767,3090]],[[12768,12769,12770]],[[12771,12772,12766]],[[12773,12766,12774]],[[12775,12553,12776]],[[12767,3098,12764]],[[12764,3098,3099]],[[12762,12774,12766]],[[12766,3099,12762]],[[12770,12777,12778]],[[12779,12780,12781]],[[12782,12783,12780]],[[3056,3090,12767]],[[12784,12785,12762]],[[12784,12783,12785]],[[12778,12783,12784]],[[12764,12786,12767]],[[12774,12762,12785]],[[3099,12553,12762]],[[12785,12782,12774]],[[12785,12783,12782]],[[12782,12780,12774]],[[12766,12772,12765]],[[12779,12773,12774]],[[12787,12781,12772]],[[12762,12761,12784]],[[12762,12553,12760]],[[11645,12775,12776]],[[12761,12770,12778]],[[12774,12780,12779]],[[12788,3056,12786]],[[12787,12772,12771]],[[12783,3056,12772]],[[12773,12771,12766]],[[12773,12779,12781]],[[12775,12760,12553]],[[12775,11645,12768]],[[12775,12768,12760]],[[12769,12777,12770]],[[3056,12777,11645]],[[3056,12783,12777]],[[12760,12770,12761]],[[12760,12768,12770]],[[12761,12778,12784]],[[12777,12783,12778]],[[12772,12789,12765]],[[12788,12786,12790]],[[12789,12763,12765]],[[12763,12788,12790]],[[12765,12764,12766]],[[12790,12786,12764]],[[11645,12769,12768]],[[11645,12777,12769]],[[12763,12790,12764]],[[12763,12789,12788]],[[12772,12788,12789]],[[12772,3056,12788]],[[3056,12767,12786]],[[3097,3098,12767]],[[12783,12781,12780]],[[12783,12772,12781]],[[12773,12787,12771]],[[12773,12781,12787]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e39d73d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12791,12792,12793]],[[12794,12792,12795]],[[12792,12794,12796]],[[12797,12798,12799]],[[12793,12792,12796]],[[12800,12801,12797]],[[12802,12803,12804]],[[12805,12793,12806]],[[12806,12793,12796]],[[12807,12808,12809]],[[12806,12810,12805]],[[12801,12798,12797]],[[12796,12811,12807]],[[12811,12794,12795]],[[12812,12813,12814]],[[12795,12792,12791]],[[12813,12797,12799]],[[12804,12815,12816]],[[12813,12812,12797]],[[12817,12797,12812]],[[12814,12813,12799]],[[12814,12803,12812]],[[12818,12795,12808]],[[12811,12796,12794]],[[12818,12811,12795]],[[12807,12799,12796]],[[12807,12814,12799]],[[12803,12809,12804]],[[12807,12809,12814]],[[12809,12815,12804]],[[12819,12820,12821]],[[12822,12821,12810]],[[12817,12823,12824]],[[12822,12825,12826]],[[12818,12807,12811]],[[12818,12808,12807]],[[12815,12805,12810]],[[12810,12798,12801]],[[12814,12809,12803]],[[12808,12815,12809]],[[12802,12817,12812]],[[12823,12820,12819]],[[12808,12805,12815]],[[12808,12795,12791]],[[12800,12827,12828]],[[12820,12804,12816]],[[12822,12826,12828]],[[12826,12810,12801]],[[12823,12802,12804]],[[12812,12803,12802]],[[12826,12801,12828]],[[12826,12825,12810]],[[12827,12800,12797]],[[12828,12801,12800]],[[12827,12823,12819]],[[12816,12815,12810]],[[12822,12810,12825]],[[12806,12798,12810]],[[12821,12816,12810]],[[12821,12820,12816]],[[12824,12823,12827]],[[12817,12802,12823]],[[12797,12824,12827]],[[12797,12817,12824]],[[12822,12819,12821]],[[12823,12804,12820]],[[12828,12819,12822]],[[12828,12827,12819]],[[12805,12791,12793]],[[12805,12808,12791]],[[12806,12829,12798]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3a4cc7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12830,12831,12832]],[[12833,12834,12835]],[[12836,12837,12838]],[[12839,12831,12840]],[[12841,12836,12842]],[[12835,12831,12843]],[[12844,12845,12830]],[[12838,12837,12846]],[[12840,12846,12839]],[[12837,12839,12846]],[[12836,12839,12837]],[[12841,12831,12839]],[[12830,12843,12831]],[[12845,12844,12833]],[[12845,12835,12843]],[[12834,12840,12835]],[[12842,12844,12832]],[[12847,12838,12846]],[[12833,12848,12847]],[[12847,12846,12834]],[[12835,12840,12831]],[[12834,12846,12840]],[[12842,12836,12838]],[[12841,12839,12836]],[[12833,12847,12834]],[[12848,12838,12847]],[[12844,12830,12832]],[[12845,12843,12830]],[[12842,12848,12844]],[[12842,12838,12848]],[[12845,12833,12835]],[[12844,12848,12833]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3ae885-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12849,12850,12851]],[[12852,12850,12849]],[[12853,12852,12849]],[[12854,12853,12849]],[[12855,12854,12849]],[[12856,12855,12849]],[[12857,12856,12849]],[[12858,12857,12849]],[[12859,12858,12849]],[[12849,12860,12861]],[[12862,12863,12849]],[[12864,12862,12849]],[[12865,12864,12849]],[[12866,12865,12849]],[[12867,12866,12849]],[[12868,12867,12849]],[[12869,12868,12849]],[[12870,12869,12849]],[[12871,12870,12849]],[[12872,12871,12849]],[[12873,12872,12849]],[[12874,12873,12849]],[[12849,12851,12875]],[[12876,12877,12849]],[[12878,12876,12861]],[[12879,12878,12861]],[[12880,12879,12861]],[[12881,12860,12882]],[[12883,12861,12884]],[[12884,12861,12885]],[[12885,12861,12886]],[[12886,12861,12887]],[[12849,12877,12874]],[[12888,12861,12889]],[[12889,12861,12890]],[[12890,12861,12881]],[[12891,12890,12881]],[[12892,12891,12881]],[[12893,12892,12881]],[[12894,12893,12881]],[[12895,12894,12881]],[[12896,12895,12881]],[[12897,12881,12898]],[[12898,12881,12899]],[[12900,12881,12882]],[[12901,12899,12881]],[[12902,12901,12881]],[[12900,12902,12881]],[[12903,12849,12875]],[[12904,12905,12882]],[[12906,12904,12882]],[[12907,12906,12882]],[[12908,12907,12882]],[[12909,12908,12882]],[[12910,12909,12882]],[[12882,12860,12911]],[[12912,12882,12913]],[[12913,12882,12914]],[[12914,12882,12915]],[[12915,12882,12916]],[[12917,12915,12916]],[[12918,12917,12916]],[[12919,12918,12916]],[[12916,12882,12911]],[[12920,12921,12916]],[[12922,12920,12916]],[[12923,12922,12916]],[[12924,12923,12916]],[[12925,12926,12916]],[[12916,12926,12924]],[[12925,12927,12926]],[[12925,12928,12927]],[[12925,12929,12928]],[[12925,12930,12929]],[[12911,12860,12849]],[[12931,12925,12932]],[[12932,12925,12933]],[[12933,12925,12934]],[[12934,12925,12935]],[[12935,12911,12936]],[[12936,12911,12937]],[[12937,12911,12938]],[[12938,12911,12939]],[[12939,12911,12940]],[[12940,12911,12941]],[[12941,12911,12942]],[[12942,12911,12903]],[[12903,12911,12849]],[[12905,12900,12882]],[[12888,12887,12861]],[[12943,12861,12883]],[[12943,12880,12861]],[[12944,12882,12912]],[[12944,12910,12882]],[[12945,12925,12931]],[[12925,12946,12930]],[[12935,12925,12911]],[[12945,12946,12925]],[[12876,12849,12861]],[[12863,12859,12849]],[[12925,12916,12911]],[[12921,12919,12916]],[[12896,12881,12897]],[[12861,12860,12881]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3bd29c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12947,12948,12949]],[[12950,12951,12952]],[[12953,12954,12955]],[[12954,12956,12957]],[[12958,12957,12956]],[[12949,12959,12960]],[[12951,12961,12955]],[[12962,12963,12950]],[[12961,12951,12963]],[[12952,12947,12964]],[[12952,12964,12965]],[[12947,12949,12964]],[[12959,12966,12960]],[[12948,12957,12966]],[[12967,12962,12950]],[[12965,12963,12962]],[[12968,12967,12952]],[[12969,12951,12950]],[[12961,12953,12955]],[[12954,12957,12955]],[[12961,12970,12953]],[[12961,12971,12956]],[[12948,12972,12949]],[[12948,12966,12972]],[[12972,12959,12949]],[[12972,12966,12959]],[[12949,12960,12971]],[[12966,12957,12960]],[[12960,12973,12974]],[[12960,12957,12973]],[[12965,12968,12952]],[[12965,12962,12968]],[[12975,12954,12953]],[[12956,12971,12958]],[[12952,12967,12950]],[[12968,12962,12967]],[[12975,12956,12954]],[[12975,12961,12956]],[[12963,12969,12950]],[[12963,12951,12969]],[[12974,12958,12971]],[[12973,12957,12958]],[[12970,12975,12953]],[[12970,12961,12975]],[[12960,12974,12971]],[[12973,12958,12974]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3c6f5d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12976,9866,9872]],[[12977,9867,10357]],[[10356,9875,12978]],[[12979,12980,12981]],[[12982,12980,9875]],[[12976,9997,9866]],[[12983,12982,12984]],[[12985,12981,12986]],[[12983,12984,12987]],[[12988,12989,12990]],[[12991,12992,12983]],[[12993,12994,12995]],[[12991,12983,12996]],[[12995,12994,9872]],[[12997,12980,12998]],[[12999,13000,13001]],[[12982,12983,12992]],[[13002,12988,12990]],[[13003,13002,12992]],[[13004,13005,13006]],[[13003,12991,12996]],[[13003,12992,12991]],[[12989,12996,13007]],[[12987,13008,12996]],[[10356,13009,9875]],[[13010,13008,13011]],[[13012,13013,13010]],[[13013,10356,13010]],[[13014,12978,13015]],[[9875,9867,12978]],[[12996,12983,12987]],[[13016,9875,13010]],[[13017,13018,13016]],[[13017,13008,13018]],[[13019,13020,13005]],[[12989,13021,12996]],[[10356,12996,13008]],[[13005,9998,12985]],[[13022,12979,12985]],[[13004,12997,13005]],[[12993,12995,9872]],[[12994,12985,9998]],[[13011,13017,13016]],[[13011,13008,13017]],[[9998,13023,9872]],[[13023,9997,12976]],[[13000,13007,13020]],[[13005,13007,9998]],[[13024,13025,12990]],[[13024,13007,13025]],[[10356,13014,10357]],[[13015,9867,12977]],[[13025,12999,12990]],[[13025,13007,13000]],[[12988,13002,13021]],[[13021,13002,13003]],[[12988,13021,12989]],[[13003,12996,13021]],[[12985,12979,12981]],[[12986,13026,13006]],[[12990,12982,12992]],[[13026,13004,13006]],[[12997,12998,13005]],[[12998,13027,13019]],[[12999,13001,12980]],[[13027,13001,13020]],[[13028,12982,13018]],[[13018,12982,13016]],[[13016,12982,9875]],[[12992,13002,12990]],[[13008,12984,13028]],[[13008,12987,12984]],[[13022,13029,12993]],[[9872,9875,12993]],[[13016,13010,13011]],[[10356,13008,13010]],[[9875,13012,13010]],[[13009,10356,13013]],[[12993,13029,12994]],[[12993,13030,13022]],[[13026,12980,12997]],[[12980,12982,12990]],[[13009,13012,9875]],[[13009,13013,13012]],[[13008,13028,13018]],[[12984,12982,13028]],[[12985,12986,13006]],[[13026,12997,13004]],[[12981,13026,12986]],[[12981,12980,13026]],[[9872,12994,9998]],[[13029,12985,12994]],[[10357,13015,12977]],[[12978,9867,13015]],[[10357,13014,13015]],[[10356,12978,13014]],[[13006,13005,12985]],[[13007,10356,9998]],[[12998,13019,13005]],[[12998,12980,13027]],[[13020,13007,13005]],[[12996,10356,13007]],[[13024,12989,13007]],[[13024,12990,12989]],[[13001,13000,13020]],[[12999,13025,13000]],[[9872,13023,12976]],[[9998,9997,13023]],[[12979,13022,13030]],[[12985,13029,13022]],[[12999,12980,12990]],[[12993,9875,12980]],[[12993,12979,13030]],[[12993,12980,12979]],[[13019,13027,13020]],[[12980,13001,13027]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3c6f63-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8da49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13031,13032,13033]],[[13034,13035,13036]],[[13037,13038,13039]],[[13040,13041,13042]],[[13037,13043,13038]],[[13044,13041,13040]],[[13045,13046,13047]],[[13048,13049,13050]],[[13051,13043,13052]],[[13051,13038,13043]],[[13053,13052,13037]],[[13043,13037,13052]],[[13044,13048,13041]],[[13044,13049,13048]],[[13054,13055,13053]],[[13050,13037,13041]],[[13049,13056,13050]],[[13053,13037,13050]],[[13057,13058,13049]],[[13059,13060,13061]],[[13034,13062,13035]],[[13051,13052,13055]],[[13056,13049,13054]],[[13035,13046,13031]],[[13040,13063,13064]],[[13065,13033,13066]],[[13067,13068,13069]],[[13067,13032,13070]],[[13071,13067,13069]],[[13072,13046,13068]],[[13071,13073,13066]],[[13074,13066,13073]],[[13067,13071,13032]],[[13075,13074,13039]],[[13076,13036,13033]],[[13046,13072,13031]],[[13032,13066,13033]],[[13075,13038,13051]],[[13073,13039,13074]],[[13077,13037,13039]],[[13064,13057,13044]],[[13078,13058,13057]],[[13079,13080,13062]],[[13081,13045,13047]],[[13032,13071,13066]],[[13077,13039,13073]],[[13069,13063,13040]],[[13064,13044,13040]],[[13042,13069,13040]],[[13068,13046,13045]],[[13063,13045,13064]],[[13063,13068,13045]],[[13035,13047,13046]],[[13075,13061,13076]],[[13071,13069,13042]],[[13068,13063,13069]],[[13054,13053,13056]],[[13055,13052,13053]],[[13057,13049,13044]],[[13058,13080,13079]],[[13058,13079,13049]],[[13079,13055,13054]],[[13078,13080,13058]],[[13064,13045,13080]],[[13038,13075,13039]],[[13065,13066,13074]],[[13055,13059,13061]],[[13076,13074,13075]],[[13067,13070,13072]],[[13032,13031,13072]],[[13076,13065,13074]],[[13076,13033,13065]],[[13061,13034,13076]],[[13060,13082,13034]],[[13061,13060,13034]],[[13081,13080,13045]],[[13067,13072,13068]],[[13070,13032,13072]],[[13059,13082,13060]],[[13079,13054,13049]],[[13059,13079,13082]],[[13059,13055,13079]],[[13036,13035,13031]],[[13034,13082,13062]],[[13051,13061,13075]],[[13051,13055,13061]],[[13033,13036,13031]],[[13076,13034,13036]],[[13048,13050,13041]],[[13056,13053,13050]],[[13035,13062,13047]],[[13062,13080,13081]],[[13064,13078,13057]],[[13064,13080,13078]],[[13047,13062,13081]],[[13082,13079,13062]],[[13077,13071,13042]],[[13077,13073,13071]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d0b1b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ac49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11806,13083,11805]],[[13084,13085,13086]],[[11805,13087,13088]],[[13089,13090,13091]],[[13092,13090,13093]],[[13089,11802,13093]],[[13085,11798,13091]],[[11800,11799,13084]],[[11798,13085,11799]],[[13094,11806,11800]],[[13095,11806,13096]],[[13097,13083,11806]],[[13086,13098,13094]],[[13086,13097,13095]],[[13099,13087,11805]],[[13083,13090,13088]],[[13089,13093,13090]],[[11802,13092,13093]],[[13100,13092,11802]],[[13100,13088,13092]],[[11798,13089,13091]],[[11798,11802,13089]],[[13086,13094,11800]],[[13096,11806,13094]],[[13086,13095,13098]],[[13097,11806,13095]],[[13098,13096,13094]],[[13098,13095,13096]],[[11805,13100,11802]],[[13088,13090,13092]],[[11805,13088,13100]],[[13087,13101,13088]],[[13083,13101,11805]],[[13101,13087,13099]],[[11805,13101,13099]],[[13083,13088,13101]],[[11800,13084,13086]],[[11799,13085,13084]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d3258-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12964,12949,12965]],[[13102,12963,12965]],[[12949,12971,12965]],[[13102,12971,12961]],[[12961,13103,13102]],[[12961,12963,13103]],[[13102,13104,12963]],[[13103,12963,13104]],[[12971,13102,12965]],[[13103,13104,13102]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d5974-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13105,1021,1019]],[[13106,1019,1007]],[[1006,13107,1007]],[[13107,13108,13106]],[[1007,13107,13106]],[[1006,1021,13107]],[[13106,13108,1019]],[[13107,1021,13108]],[[13108,13105,1019]],[[13108,1021,13105]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3f2ebd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13109,13110,13111]],[[13112,13113,13114]],[[13112,13115,13113]],[[13116,13117,13118]],[[13116,13119,13120]],[[13110,13121,13122]],[[13123,13116,13120]],[[13124,13125,13111]],[[13126,13123,13127]],[[13110,13122,13128]],[[13119,13121,13120]],[[13129,13130,13131]],[[13132,13118,13117]],[[13133,13119,13134]],[[13113,13115,13126]],[[13116,13118,13134]],[[13119,13124,13121]],[[13119,13133,13135]],[[13110,13114,13113]],[[13110,13127,13121]],[[13136,13137,13131]],[[13115,13117,13126]],[[13136,13115,13137]],[[13132,13117,13115]],[[13110,13128,13111]],[[13122,13121,13124]],[[13136,13132,13115]],[[13118,13138,13134]],[[13136,13138,13132]],[[13133,13139,13135]],[[13137,13140,13131]],[[13137,13115,13112]],[[13140,13141,13129]],[[13140,13137,13112]],[[13127,13123,13120]],[[13126,13117,13123]],[[13121,13127,13120]],[[13113,13126,13127]],[[13141,13112,13114]],[[13141,13140,13112]],[[13109,13111,13125]],[[13128,13124,13111]],[[13119,13116,13134]],[[13123,13117,13116]],[[13122,13124,13128]],[[13135,13125,13124]],[[13132,13138,13118]],[[13136,13139,13138]],[[13140,13129,13131]],[[13141,13114,13130]],[[13131,13130,13125]],[[13129,13141,13130]],[[13114,13110,13109]],[[13113,13127,13110]],[[13130,13109,13125]],[[13130,13114,13109]],[[13138,13133,13134]],[[13138,13139,13133]],[[13119,13135,13124]],[[13139,13125,13135]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e404005-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13142,13143,13144]],[[13145,12489,13146]],[[13147,13148,13149]],[[12514,13150,13151]],[[13152,13153,13143]],[[13151,12506,12514]],[[13154,13153,12506]],[[12506,13153,12493]],[[13155,13156,13157]],[[13158,13159,13160]],[[13156,13161,13162]],[[13147,13149,13163]],[[13159,13158,13161]],[[13164,13153,13152]],[[13165,13158,13152]],[[13165,13161,13158]],[[13166,13157,13143]],[[13149,13148,13152]],[[13157,13152,13143]],[[13163,13149,13152]],[[13166,13155,13157]],[[13147,13161,13148]],[[13157,13163,13152]],[[13157,13162,13167]],[[12493,13159,13161]],[[12493,13153,13168]],[[13158,13160,13152]],[[13159,12493,13168]],[[13160,13168,13164]],[[13160,13159,13168]],[[13160,13164,13152]],[[13168,13153,13164]],[[13169,13156,13155]],[[13156,12493,13161]],[[13170,13169,13155]],[[12489,13156,13169]],[[13157,13156,13162]],[[12489,12493,13156]],[[13157,13167,13163]],[[13162,13161,13167]],[[13171,13170,13155]],[[12489,13169,13170]],[[13165,13148,13161]],[[13165,13152,13148]],[[13150,13154,13172]],[[13173,12506,13172]],[[13174,12514,13175]],[[13146,13143,13176]],[[13174,13177,13178]],[[13172,12506,13151]],[[13178,13177,13150]],[[13144,13154,13150]],[[13151,13150,13172]],[[13177,13144,13150]],[[13179,13145,13176]],[[13180,13166,13146]],[[13177,13174,13144]],[[13175,13181,13142]],[[13174,13142,13144]],[[13176,13143,13142]],[[13180,13171,13166]],[[12489,13170,13171]],[[13146,13166,13143]],[[13171,13155,13166]],[[13181,13179,13176]],[[12514,12489,13179]],[[13174,13175,13142]],[[12514,13179,13175]],[[12514,13178,13150]],[[12514,13174,13178]],[[12489,13180,13146]],[[12489,13171,13180]],[[13167,13147,13163]],[[13167,13161,13147]],[[13154,13173,13172]],[[13154,12506,13173]],[[13176,13145,13146]],[[13179,12489,13145]],[[13142,13181,13176]],[[13175,13179,13181]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e404008-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13182,13183,13184]],[[13185,13186,13187]],[[13182,13184,13185]],[[13182,13185,13187]],[[13184,13186,13185]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e415141-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13188,13189,13190]],[[13191,13190,13192]],[[13193,13194,13192]],[[13195,13189,13188]],[[13191,13196,13197]],[[13195,13198,13189]],[[13194,13191,13192]],[[13194,13196,13191]],[[13197,13196,13199]],[[13200,13201,13198]],[[13197,13199,13188]],[[13198,13202,13189]],[[13196,13198,13199]],[[13196,13200,13198]],[[13199,13195,13188]],[[13199,13198,13195]],[[13190,13197,13188]],[[13190,13191,13197]],[[13194,13200,13196]],[[13194,13193,13200]],[[13193,13201,13200]],[[13202,13198,13201]],[[13202,13193,13192]],[[13202,13201,13193]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e41ee11-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13203,13204,13205]],[[13203,13205,13206]],[[13207,13203,13206]],[[13207,13204,13203]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4289b7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13208,13209,13210]],[[13211,13212,13210]],[[13213,13214,13211]],[[13215,13213,13216]],[[13217,13211,13210]],[[13218,13215,13216]],[[13212,13219,13208]],[[13212,13214,13215]],[[13212,13215,13219]],[[13214,13213,13215]],[[13212,13208,13210]],[[13209,13220,13210]],[[13221,13213,13217]],[[13214,13212,13211]],[[13219,13209,13208]],[[13219,13215,13218]],[[13217,13213,13211]],[[13218,13220,13209]],[[13221,13216,13213]],[[13221,13220,13216]],[[13220,13218,13216]],[[13209,13219,13218]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e43e94c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11699,13222,13223]],[[11704,13224,13225]],[[11707,13226,13227]],[[11709,13228,13229]],[[11711,13230,13231]],[[11713,13232,13233]],[[11716,13234,13235]],[[11717,13236,13237]],[[11719,13238,13239]],[[13240,11745,11746]],[[11747,11748,13241]],[[13242,13243,13244]],[[13245,13242,13244]],[[13246,13245,13244]],[[13247,13246,13244]],[[13248,13247,13244]],[[13249,13248,13250]],[[13251,13249,13250]],[[13248,13244,13250]],[[13243,13252,13253]],[[13243,13254,13244]],[[13243,13255,13254]],[[13243,13253,13255]],[[13252,13256,13253]],[[13252,13257,13256]],[[13252,13240,13257]],[[13257,13240,13258]],[[13252,11737,13240]],[[13240,11740,11741]],[[11668,11667,13259]],[[13260,13240,13261]],[[13261,13240,13262]],[[13262,13240,13263]],[[13263,13240,13241]],[[13241,11748,13264]],[[13264,11750,13265]],[[13265,11752,13266]],[[13266,11753,13267]],[[13267,11755,13268]],[[13268,11757,13269]],[[13269,11668,13259]],[[11751,11752,13265]],[[11758,11668,13269]],[[11728,13270,13271]],[[11757,11758,13269]],[[11729,13272,13273]],[[11756,11757,13268]],[[11754,11755,13267]],[[13274,13240,13260]],[[11731,13275,13276]],[[13268,11755,11756]],[[13252,13275,11732]],[[13277,11731,13276]],[[13277,13272,11730]],[[13278,11729,13273]],[[11754,13267,11753]],[[13266,11752,11753]],[[13278,13270,11728]],[[13279,11727,13271]],[[11726,13280,13281]],[[13265,11750,11751]],[[13279,13280,11726]],[[11748,11749,13264]],[[11750,13264,11749]],[[13282,11725,13281]],[[13282,13283,11724]],[[13284,11724,13283]],[[11722,13285,13286]],[[13241,13240,11747]],[[13284,13285,11723]],[[13287,11722,13286]],[[11746,11747,13240]],[[13288,11721,13287]],[[11720,13289,13238]],[[11745,13240,11744]],[[13288,13289,11720]],[[13240,11742,11743]],[[11743,11744,13240]],[[13290,11719,13239]],[[11718,13291,13236]],[[11742,13240,11741]],[[13290,13291,11718]],[[11738,11739,13240]],[[11740,13240,11739]],[[13292,11717,13237]],[[11715,13293,13234]],[[13240,11737,11738]],[[13292,13293,11715]],[[11735,11736,13252]],[[11737,13252,11736]],[[13294,11716,13235]],[[11714,13295,13232]],[[13252,11734,11735]],[[13294,13295,11714]],[[11732,11733,13252]],[[11734,13252,11733]],[[13296,11713,13233]],[[13296,13297,11712]],[[13275,11731,11732]],[[13297,13230,11712]],[[11729,11730,13272]],[[11731,13277,11730]],[[13298,11711,13231]],[[13298,13299,11710]],[[13278,11728,11729]],[[13299,13228,11710]],[[11726,11727,13279]],[[11728,13271,11727]],[[13300,11708,13229]],[[13300,13301,11708]],[[13281,11725,11726]],[[13301,13226,11707]],[[11723,11724,13284]],[[11725,13282,11724]],[[13302,11706,13227]],[[13302,13303,11705]],[[13285,11722,11723]],[[13303,13224,11705]],[[11720,11721,13288]],[[11722,13287,11721]],[[13304,11703,13225]],[[11702,13305,13306]],[[13238,11719,11720]],[[13304,13305,11703]],[[11717,11718,13236]],[[11719,13290,11718]],[[13307,11701,13306]],[[13307,13308,11700]],[[13292,11715,11717]],[[13308,13222,11700]],[[11714,11716,13294]],[[11715,13234,11716]],[[13309,11698,13223]],[[13232,11713,11714]],[[11696,13310,13311]],[[13296,11712,11713]],[[13309,13310,11697]],[[11710,11711,13298]],[[11712,13230,11711]],[[13312,11694,13311]],[[11691,13313,13314]],[[13228,11709,11710]],[[13312,13313,11693]],[[11709,13229,11708]],[[11706,11707,13227]],[[11708,13301,11707]],[[13315,11690,13314]],[[13302,11705,11706]],[[11687,13316,13317]],[[13224,11704,11705]],[[13315,13316,11688]],[[11702,11703,13305]],[[11704,13225,11703]],[[11701,11702,13306]],[[13318,11685,13317]],[[13307,11700,11701]],[[13222,11699,11700]],[[13318,13319,11683]],[[13223,11698,11699]],[[13309,11697,11698]],[[13310,11696,11697]],[[13311,11695,11696]],[[13319,13320,11681]],[[13311,11694,11695]],[[13312,11693,11694]],[[13313,11692,11693]],[[13313,11691,11692]],[[13320,13321,11679]],[[13314,11690,11691]],[[13315,11689,11690]],[[13315,11688,11689]],[[13316,11687,11688]],[[13317,11686,11687]],[[13321,13322,11677]],[[13317,11685,11686]],[[13318,11684,11685]],[[13318,11683,11684]],[[13319,11682,11683]],[[13322,13323,11675]],[[13319,11681,11682]],[[13320,11680,11681]],[[13320,11679,11680]],[[13321,11678,11679]],[[13323,13324,11673]],[[13321,11677,11678]],[[13322,11676,11677]],[[13322,11675,11676]],[[13323,11674,11675]],[[13324,13325,11671]],[[13323,11673,11674]],[[13324,11672,11673]],[[13324,11671,11672]],[[13325,11670,11671]],[[13325,13259,11669]],[[13325,11669,11670]],[[13259,11667,11669]],[[13326,13240,13274]],[[13326,13258,13240]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e44d366-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3117,1779,11660]],[[13327,13328,13329]],[[13330,13331,13332]],[[13331,13333,13332]],[[13334,13335,13336]],[[13337,1369,1619]],[[13338,13339,13340]],[[13341,13342,13343]],[[13344,13345,13346]],[[13347,1778,7803]],[[13348,13349,13350]],[[13351,13350,13352]],[[13353,7803,11610]],[[3148,3149,1779]],[[3157,3148,1779]],[[3147,3124,3148]],[[3151,3147,3148]],[[3144,3146,3147]],[[3142,3144,3147]],[[3136,3142,3147]],[[3138,3140,3142]],[[3136,3138,3142]],[[3151,3136,3147]],[[3131,3151,3148]],[[3131,3132,3151]],[[3131,3133,3132]],[[3157,3131,3148]],[[3157,3129,3131]],[[3157,3126,3129]],[[3157,3127,3126]],[[3157,3155,3127]],[[3116,3157,1779]],[[3116,3119,3157]],[[3116,3120,3119]],[[3116,3118,3120]],[[3117,3116,1779]],[[1778,11660,1779]],[[13354,13355,13356]],[[13357,13358,13359]],[[13360,13361,11660]],[[13362,13356,7803]],[[13363,13364,13365]],[[13366,13367,13368]],[[13369,13370,13371]],[[13372,13373,13374]],[[13347,13359,1778]],[[13375,13376,13377]],[[13378,13379,13380]],[[13381,13359,13347]],[[13382,13347,7803]],[[13383,13384,13385]],[[13386,13387,13388]],[[13389,13390,13382]],[[13391,13392,13393]],[[13394,13395,13396]],[[13397,13398,13399]],[[13400,13359,13381]],[[13401,13402,13379]],[[13385,13392,13403]],[[13404,13379,13378]],[[13402,13380,13379]],[[13405,13378,13380]],[[13406,13407,13408]],[[13392,13391,13409]],[[13410,13411,13412]],[[13413,13414,13415]],[[13416,13372,13374]],[[13417,13386,13388]],[[13418,13419,13420]],[[13421,13422,13423]],[[13394,13424,13375]],[[13425,13383,13426]],[[13427,13428,13429]],[[13388,13387,13380]],[[13430,13431,13432]],[[13433,13434,13435]],[[13436,13437,13438]],[[13439,13440,13441]],[[13442,13404,13378]],[[13383,13403,13426]],[[13388,13380,13443]],[[13374,13431,13405]],[[13444,13445,13401]],[[13426,13403,13423]],[[13383,13385,13403]],[[13446,13384,13425]],[[13412,13446,13425]],[[13402,13443,13380]],[[13447,13424,13448]],[[13449,13333,13331]],[[13450,13451,13452]],[[13453,13454,13455]],[[13456,13445,13444]],[[13457,13458,13459]],[[13460,13461,13462]],[[13463,13457,13459]],[[13385,13393,13392]],[[13464,13465,13466]],[[13417,13388,13443]],[[13467,13468,13469]],[[13374,13405,13416]],[[13470,13471,13391]],[[13391,13393,13470]],[[13425,13384,13383]],[[13472,13473,13474]],[[13475,13476,13477]],[[13333,13478,13332]],[[13479,13480,13481]],[[13409,13423,13403]],[[13387,13386,13481]],[[13387,13405,13380]],[[13463,13408,13457]],[[13409,13395,13423]],[[13446,13482,13384]],[[13389,13473,13429]],[[13390,13389,13428]],[[13390,13397,13382]],[[13483,13468,13467]],[[13484,13485,13486]],[[13458,13487,13459]],[[13407,13471,13470]],[[13450,13452,13488]],[[13489,13490,13478]],[[13411,13398,13412]],[[13421,13423,13395]],[[13397,13446,13398]],[[13482,13428,13427]],[[13491,13449,13331]],[[13491,12553,13490]],[[13449,13489,13333]],[[13490,12553,13478]],[[13345,13492,13493]],[[13494,13495,13496]],[[13347,13399,13381]],[[13347,13397,13399]],[[13417,13497,13498]],[[13480,13463,13387]],[[13457,13408,13407]],[[13480,13499,13408]],[[13407,13406,13471]],[[13406,13396,13395]],[[13500,13330,13478]],[[10000,12553,13491]],[[13482,13390,13428]],[[13397,13347,13382]],[[13391,13406,13501]],[[13408,13396,13406]],[[13502,13503,13440]],[[13504,13505,13394]],[[13446,13412,13398]],[[13419,13506,13507]],[[13508,13509,13510]],[[13511,13512,13513]],[[13508,13514,13509]],[[13515,13516,13517]],[[13345,13518,13492]],[[13510,13509,13519]],[[13415,13520,13521]],[[13522,13523,13524]],[[13525,13521,13520]],[[13353,13526,13527]],[[13415,13521,13528]],[[13513,13512,13515]],[[13489,13478,13333]],[[13529,13530,13531]],[[13479,13417,13498]],[[13504,13394,13396]],[[13374,13373,13431]],[[13469,13454,13373]],[[13532,13523,13522]],[[13355,13354,13533]],[[13399,13411,13534]],[[13535,13357,13359]],[[13536,13537,13538]],[[13539,13461,13540]],[[13400,13535,13359]],[[13541,13542,13360]],[[13543,13454,13469]],[[13455,13369,13453]],[[13544,13545,13455]],[[13545,13370,13369]],[[13397,13482,13446]],[[13397,13390,13482]],[[13479,13499,13480]],[[13396,13408,13499]],[[13417,13479,13481]],[[13497,13503,13546]],[[13547,13495,13548]],[[13549,13512,13511]],[[13550,13346,13348]],[[13494,13551,13548]],[[13552,13440,13553]],[[13554,13555,13556]],[[13474,13465,13472]],[[13557,13354,13362]],[[7803,13355,13473]],[[7803,13356,13355]],[[13472,13429,13473]],[[13428,13389,13429]],[[13385,13427,13558]],[[13384,13482,13427]],[[13427,13472,13558]],[[13427,13429,13472]],[[13559,13539,13437]],[[13353,13527,7803]],[[13414,13560,13415]],[[13523,13561,13513]],[[13515,13562,13523]],[[13563,13371,13370]],[[13536,13538,13353]],[[13438,13564,13527]],[[13536,13353,11610]],[[13538,13537,13565]],[[13350,13349,11610]],[[13348,13566,13567]],[[13406,13395,13501]],[[13568,13424,11660]],[[13392,13409,13403]],[[13501,13395,13409]],[[13569,13570,13571]],[[13572,13363,13548]],[[13573,13574,13570]],[[13435,13553,13433]],[[13518,13569,13551]],[[13571,13364,13363]],[[13575,13510,13549]],[[13519,13439,13516]],[[13511,13576,13577]],[[13510,13575,13578]],[[13579,13496,13495]],[[13551,13572,13548]],[[13535,13534,13580]],[[13399,13398,13411]],[[13387,13463,13416]],[[13480,13408,13463]],[[13480,13387,13481]],[[13416,13405,13387]],[[13581,13582,1375]],[[13583,13584,13582]],[[13563,13524,13562]],[[13561,13521,13576]],[[13522,13524,13462]],[[13523,13562,13524]],[[13460,13545,13544]],[[13462,13370,13545]],[[13459,13372,13416]],[[13469,13373,13372]],[[13549,13519,13512]],[[13516,13441,13517]],[[13577,13575,13549]],[[13434,13585,13435]],[[13522,13462,13461]],[[13524,13370,13462]],[[13362,13354,13356]],[[13485,13469,13468]],[[13586,13533,13486]],[[13465,13587,13533]],[[13365,13588,13435]],[[13553,13440,13514]],[[13589,13590,13552]],[[13585,13365,13435]],[[13578,13434,13433]],[[13514,13440,13509]],[[13435,13588,13553]],[[13590,13502,13552]],[[13571,13591,13364]],[[13592,13502,13590]],[[13537,13593,13414]],[[13594,13496,13579]],[[13595,13564,13438]],[[13543,13544,13455]],[[13540,13595,13437]],[[13460,13462,13545]],[[13596,13597,13598]],[[1369,13599,13597]],[[13518,13551,13492]],[[13492,13600,13493]],[[13594,13566,13600]],[[13600,13492,13494]],[[13525,13601,13576]],[[13520,13560,13567]],[[13434,13548,13585]],[[13572,13571,13363]],[[13602,13603,13604]],[[13346,13566,13348]],[[13329,13328,13605]],[[13491,13331,13330]],[[13606,13599,1369]],[[13607,13606,13608]],[[13609,13574,13573]],[[13574,13610,13570]],[[13611,13609,13573]],[[13610,13502,13592]],[[13432,13456,13442]],[[13401,13379,13404]],[[13405,13430,13378]],[[13444,13401,13404]],[[13378,13430,13442]],[[13405,13431,13430]],[[13369,13371,13456]],[[13371,13563,13556]],[[13442,13456,13444]],[[13371,13556,13456]],[[13351,13550,13350]],[[13346,13493,13566]],[[11657,13502,3106]],[[13503,13401,13440]],[[13351,13344,13550]],[[13345,13493,13346]],[[13606,13607,13599]],[[13612,13613,12558]],[[13614,13615,13584]],[[13584,1375,13582]],[[13450,13477,13616]],[[13477,13491,13330]],[[13617,13609,13618]],[[13573,13570,13619]],[[13507,13506,13360]],[[13620,13410,13412]],[[13565,13537,13414]],[[13349,13348,13567]],[[13600,13494,13496]],[[13492,13551,13494]],[[13355,13587,13473]],[[13587,13465,13474]],[[13449,13490,13489]],[[13449,13491,13490]],[[13583,13614,13584]],[[13615,13621,13622]],[[13334,12558,13335]],[[13623,13624,13337]],[[13575,13625,13578]],[[13548,13363,13585]],[[13402,13503,13443]],[[13402,13401,13503]],[[13626,13468,13483]],[[13627,13393,13558]],[[13610,13592,13591]],[[13610,13628,13502]],[[13629,13500,13451]],[[13476,13475,13328]],[[13468,13626,13586]],[[13465,13533,13466]],[[13473,13587,13474]],[[13355,13533,13587]],[[13463,13459,13416]],[[13464,13558,13472]],[[13372,13467,13469]],[[13626,13464,13466]],[[13459,13467,13372]],[[13459,13487,13483]],[[13630,13564,13595]],[[13455,13454,13543]],[[13469,13485,13543]],[[13533,13354,13486]],[[13484,13631,13630]],[[13632,13564,13630]],[[13485,13484,13543]],[[13633,13595,13461]],[[13436,13438,13526]],[[13437,13595,13438]],[[1778,13360,11660]],[[13361,13634,13635]],[[13636,13419,13418]],[[13448,13394,11657]],[[10000,13637,1374]],[[13476,13491,13477]],[[13638,13619,13603]],[[13604,13569,13518]],[[13576,13511,13561]],[[13576,13639,13577]],[[13640,13628,13610]],[[3106,13502,13628]],[[13538,13436,13353]],[[13436,13559,13437]],[[13641,13642,13643]],[[13608,13612,13598]],[[13644,13641,13623]],[[13608,13613,13612]],[[13554,13556,13562]],[[13445,13456,13556]],[[13436,13565,13559]],[[13413,13528,13532]],[[3106,13645,3107]],[[13645,13574,13609]],[[13508,13433,13646]],[[13508,13510,13578]],[[13596,13598,13612]],[[13598,13599,13607]],[[13647,13648,13649]],[[13650,13651,13343]],[[13596,13652,13648]],[[13651,13653,12558]],[[13654,13655,13656]],[[13657,13658,13659]],[[13539,13540,13437]],[[13461,13595,13540]],[[13401,13441,13440]],[[13555,13445,13556]],[[13515,13517,13562]],[[13517,13555,13554]],[[13660,13335,13661]],[[13624,13660,13661]],[[13422,13426,13423]],[[13421,13395,13377]],[[13506,13634,13361]],[[13506,13419,13634]],[[13478,13330,13332]],[[13616,13477,13330]],[[13647,13656,13352]],[[13654,13649,13662]],[[13656,13338,13663]],[[13656,13655,13339]],[[13664,13581,13665]],[[13666,1374,13637]],[[13593,13560,13414]],[[13593,13567,13560]],[[13406,13391,13471]],[[13501,13409,13391]],[[13521,13525,13576]],[[13520,13601,13525]],[[11657,13503,13502]],[[11657,13505,13503]],[[13569,13571,13572]],[[13570,13591,13571]],[[13427,13385,13384]],[[13558,13393,13385]],[[13667,13596,13612]],[[13597,13599,13598]],[[13569,13619,13570]],[[13611,13573,13619]],[[13523,13513,13515]],[[13523,13532,13561]],[[13645,13640,13574]],[[3106,13628,13640]],[[13361,13635,13376]],[[13635,13419,13636]],[[13668,13669,13352]],[[13367,3107,13368]],[[13656,13663,13668]],[[13670,3107,13367]],[[13484,13630,13544]],[[13631,13632,13630]],[[13671,13335,13660]],[[12558,13661,13335]],[[13512,13516,13515]],[[13439,13441,13516]],[[13630,13633,13544]],[[13630,13595,13633]],[[13633,13460,13544]],[[13633,13461,13460]],[[13341,13672,13342]],[[13648,13650,13343]],[[13625,13547,13434]],[[13495,13494,13548]],[[13360,13542,13507]],[[13542,13420,13507]],[[13580,13542,13541]],[[13580,13420,13542]],[[13357,13541,13358]],[[13357,13535,13541]],[[13345,13344,13604]],[[13604,13344,13602]],[[13673,13360,1778]],[[13506,13361,13360]],[[13363,13365,13585]],[[13589,13591,13590]],[[13373,13453,13431]],[[13455,13545,13369]],[[13431,13453,13369]],[[13373,13454,13453]],[[13407,13458,13457]],[[13407,13487,13458]],[[13450,13622,13477]],[[13488,13674,13615]],[[13615,13622,13488]],[[13622,13621,13477]],[[13669,13367,13366]],[[13638,13611,13619]],[[13570,13610,13591]],[[13574,13640,13610]],[[13649,13342,13672]],[[13648,13343,13342]],[[13459,13483,13467]],[[13487,13407,13470]],[[13627,13464,13626]],[[13466,13586,13626]],[[13594,13600,13496]],[[13566,13493,13600]],[[13601,13639,13576]],[[13601,13594,13579]],[[13401,13555,13441]],[[13401,13445,13555]],[[13538,13565,13436]],[[13414,13413,13559]],[[13618,13609,13611]],[[13617,13645,13609]],[[13586,13486,13485]],[[13354,13557,13486]],[[13359,13358,1778]],[[13541,13360,13673]],[[1619,13584,13674]],[[1619,1375,13584]],[[13656,13668,13352]],[[13663,13669,13668]],[[13337,13675,1369]],[[13613,13661,12558]],[[13473,13382,7803]],[[13473,13389,13382]],[[13584,13615,13674]],[[13621,13475,13477]],[[13556,13563,13562]],[[13370,13524,13563]],[[13676,13660,13624]],[[13676,13671,13660]],[[13512,13519,13516]],[[13509,13440,13439]],[[13510,13519,13549]],[[13509,13439,13519]],[[13622,13450,13488]],[[13616,13629,13450]],[[3107,13645,13617]],[[3106,13640,13645]],[[13539,13522,13461]],[[13539,13413,13522]],[[13646,13514,13508]],[[13553,13588,13552]],[[13646,13553,13514]],[[13646,13433,13553]],[[13677,13530,13678]],[[13334,13679,12558]],[[13537,13349,13593]],[[13350,13550,13348]],[[13452,13451,13500]],[[13629,13330,13500]],[[13674,13452,1619]],[[13674,13488,13452]],[[13543,13484,13544]],[[13486,13631,13484]],[[13413,13415,13528]],[[13560,13520,13415]],[[13670,13338,13340]],[[13338,13656,13339]],[[13468,13586,13485]],[[13466,13533,13586]],[[13511,13577,13549]],[[13639,13680,13577]],[[13656,13647,13654]],[[13648,13342,13649]],[[13365,13589,13552]],[[13591,13592,13590]],[[13364,13589,13365]],[[13364,13591,13589]],[[13666,13637,13476]],[[10000,13491,13476]],[[3107,13681,13368]],[[3107,13617,13618]],[[13643,13682,13336]],[[13678,13679,13334]],[[13669,13366,13352]],[[13368,13681,13351]],[[13366,13351,13352]],[[13366,13368,13351]],[[13550,13344,13346]],[[13602,13683,13684]],[[13672,13662,13649]],[[13339,13655,13685]],[[13678,13530,13679]],[[13686,13478,13679]],[[13687,13688,13529]],[[13689,13679,13529]],[[13687,13531,13690]],[[13687,13529,13531]],[[12553,13679,13478]],[[12553,12558,13679]],[[13534,13535,13400]],[[13580,13541,13535]],[[13581,13583,13582]],[[13475,13614,13583]],[[13691,13581,1375]],[[13664,13475,13583]],[[13436,13526,13353]],[[13527,13362,7803]],[[13438,13527,13526]],[[13564,13632,13527]],[[13623,13676,13624]],[[13671,13692,13335]],[[13623,13671,13676]],[[13692,13336,13335]],[[13661,13693,13624]],[[13644,13694,13642]],[[13361,13568,11660]],[[13361,13376,13568]],[[11657,13447,13448]],[[13568,13376,13375]],[[13568,13375,13424]],[[13394,13505,11657]],[[13377,13394,13375]],[[13377,13395,13394]],[[11649,13447,11657]],[[13424,13394,13448]],[[13662,13685,13654]],[[13695,13659,13658]],[[13614,13621,13615]],[[13614,13475,13621]],[[13520,13567,13594]],[[13593,13349,13567]],[[13520,13594,13601]],[[13567,13566,13594]],[[13376,13635,13377]],[[13634,13419,13635]],[[13531,13677,13690]],[[13682,13642,13694]],[[13677,13682,13694]],[[13334,13336,13682]],[[13596,13647,13352]],[[13596,13648,13647]],[[1369,13596,13352]],[[1369,13597,13596]],[[13653,13667,13612]],[[13652,13596,13667]],[[12558,13653,13612]],[[12558,13343,13651]],[[13653,13652,13667]],[[13650,13648,13652]],[[13649,13654,13647]],[[13685,13655,13654]],[[13365,13552,13588]],[[13502,13440,13552]],[[13327,13666,13328]],[[13637,10000,13476]],[[13328,13666,13476]],[[13327,1374,13666]],[[13557,13632,13631]],[[13362,13527,13632]],[[13681,13618,13351]],[[13681,3107,13618]],[[13663,13367,13669]],[[13670,3111,3107]],[[13663,13670,13367]],[[13663,13338,13670]],[[13670,13657,3111]],[[13339,13685,13658]],[[13695,13658,13685]],[[13340,13339,13658]],[[13687,13696,13688]],[[1619,13500,13686]],[[13690,13644,1619]],[[13644,13623,13337]],[[13337,13693,13613]],[[13337,13624,13693]],[[1619,13644,13337]],[[13690,13694,13644]],[[13465,13464,13472]],[[13626,13483,13627]],[[1374,13329,1375]],[[13328,13475,13665]],[[13381,13534,13400]],[[13381,13399,13534]],[[13464,13627,13558]],[[13483,13487,13470]],[[13627,13470,13393]],[[13627,13483,13470]],[[13652,13651,13650]],[[13652,13653,13651]],[[1619,13687,13690]],[[1619,13696,13687]],[[13577,13680,13575]],[[13579,13495,13547]],[[13562,13517,13554]],[[13441,13555,13517]],[[13632,13557,13362]],[[13631,13486,13557]],[[13684,13618,13638]],[[13618,13611,13638]],[[13683,13602,13344]],[[13638,13603,13602]],[[13351,13683,13344]],[[13351,13618,13684]],[[3111,13659,12558]],[[3111,13657,13659]],[[13659,13697,12558]],[[13659,13695,13697]],[[12558,13341,13343]],[[13697,13662,13672]],[[13697,13341,12558]],[[13697,13672,13341]],[[13662,13695,13685]],[[13662,13697,13695]],[[13639,13579,13680]],[[13639,13601,13579]],[[13696,13689,13688]],[[13696,1619,13686]],[[13605,13691,1375]],[[13605,13665,13691]],[[13507,13420,13419]],[[13580,13534,13410]],[[13623,13641,13671]],[[13641,13643,13692]],[[13671,13641,13692]],[[13644,13642,13641]],[[13369,13432,13431]],[[13369,13456,13432]],[[13414,13559,13565]],[[13413,13539,13559]],[[13432,13442,13430]],[[13444,13404,13442]],[[13386,13417,13481]],[[13443,13503,13497]],[[13580,13410,13420]],[[13620,13425,13422]],[[13420,13410,13418]],[[13534,13411,13410]],[[13499,13498,13396]],[[13503,13505,13504]],[[13690,13677,13694]],[[13531,13530,13677]],[[13508,13578,13433]],[[13575,13680,13625]],[[13689,13529,13688]],[[13679,13530,13529]],[[13686,13500,13478]],[[1619,13452,13500]],[[13682,13678,13334]],[[13682,13677,13678]],[[13551,13569,13572]],[[13603,13619,13569]],[[13578,13625,13434]],[[13680,13579,13547]],[[13434,13547,13548]],[[13625,13680,13547]],[[13569,13604,13603]],[[13518,13345,13604]],[[13602,13684,13638]],[[13683,13351,13684]],[[13536,13349,13537]],[[13536,11610,13349]],[[13657,13340,13658]],[[13657,13670,13340]],[[11660,13447,11649]],[[11660,13424,13447]],[[13413,13532,13522]],[[13528,13521,13561]],[[13513,13561,13511]],[[13532,13528,13561]],[[13689,13686,13679]],[[13689,13696,13686]],[[1375,13329,13605]],[[1374,13327,13329]],[[13418,13698,13636]],[[13418,13410,13620]],[[13620,13422,13698]],[[13425,13426,13422]],[[13422,13636,13698]],[[13421,13635,13636]],[[13418,13620,13698]],[[13412,13425,13620]],[[13635,13421,13377]],[[13636,13422,13421]],[[13546,13504,13396]],[[13546,13503,13504]],[[13691,13665,13581]],[[13605,13328,13665]],[[13581,13664,13583]],[[13665,13475,13664]],[[13358,13673,1778]],[[13358,13541,13673]],[[13498,13497,13546]],[[13417,13443,13497]],[[13396,13498,13546]],[[13499,13479,13498]],[[13692,13643,13336]],[[13642,13682,13643]],[[13450,13629,13451]],[[13616,13330,13629]],[[13675,13606,1369]],[[13613,13693,13661]],[[13607,13608,13598]],[[13606,13675,13613]],[[13606,13613,13608]],[[13675,13337,13613]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e44faa0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1af49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13699,13700,13701]],[[13699,13701,13702]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4548ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13703,9877,9881]],[[9864,13704,13705]],[[13705,13704,13703]],[[9864,9877,13704]],[[9865,13705,9881]],[[9865,9864,13705]],[[13705,13703,9881]],[[13704,9877,13703]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e45490b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13706,13707,13708]],[[13709,13710,13711]],[[13712,13710,13713]],[[13714,13715,13716]],[[13717,13718,13719]],[[13720,13709,13711]],[[13721,13722,13723]],[[13724,13725,13726]],[[13715,13727,13728]],[[13729,13730,13713]],[[13731,13732,13729]],[[13733,13734,13706]],[[13735,13732,13723]],[[13732,13724,13736]],[[13737,13731,13738]],[[13739,13733,13706]],[[13708,13740,13741]],[[13723,13732,13731]],[[13731,13729,13709]],[[13736,13727,13713]],[[13709,13729,13713]],[[13729,13732,13730]],[[13714,13716,13734]],[[13725,13707,13716]],[[13709,13713,13710]],[[13734,13707,13706]],[[13724,13726,13727]],[[13726,13716,13728]],[[13742,13743,13744]],[[13713,13727,13715]],[[13732,13736,13730]],[[13732,13745,13724]],[[13736,13724,13727]],[[13746,13725,13724]],[[13717,13719,13747]],[[13711,13710,13719]],[[13741,13748,13749]],[[13738,13709,13720]],[[13716,13715,13728]],[[13743,13713,13715]],[[13712,13742,13744]],[[13713,13743,13742]],[[13731,13750,13721]],[[13745,13732,13735]],[[13731,13748,13750]],[[13751,13746,13745]],[[13708,13741,13752]],[[13749,13753,13754]],[[13740,13722,13721]],[[13722,13735,13723]],[[13748,13741,13740]],[[13745,13735,13722]],[[13712,13713,13742]],[[13730,13736,13713]],[[13719,13720,13711]],[[13738,13731,13709]],[[13710,13747,13719]],[[13744,13743,13755]],[[13747,13734,13733]],[[13716,13707,13734]],[[13727,13726,13728]],[[13725,13716,13726]],[[13734,13747,13744]],[[13733,13717,13747]],[[13747,13712,13744]],[[13747,13710,13712]],[[13731,13721,13723]],[[13750,13748,13740]],[[13750,13740,13721]],[[13708,13746,13751]],[[13741,13754,13752]],[[13718,13720,13719]],[[13741,13749,13754]],[[13748,13731,13749]],[[13754,13739,13752]],[[13756,13753,13757]],[[13739,13717,13733]],[[13739,13758,13717]],[[13758,13718,13717]],[[13756,13738,13720]],[[13751,13745,13722]],[[13746,13724,13745]],[[13744,13755,13734]],[[13743,13715,13755]],[[13754,13758,13739]],[[13754,13753,13758]],[[13752,13706,13708]],[[13752,13739,13706]],[[13740,13751,13722]],[[13740,13708,13751]],[[13718,13756,13720]],[[13737,13757,13731]],[[13758,13756,13718]],[[13758,13753,13756]],[[13755,13714,13734]],[[13755,13715,13714]],[[13756,13737,13738]],[[13757,13749,13731]],[[13756,13757,13737]],[[13753,13749,13757]],[[13759,13746,13708]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e46330a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9c0f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13760,13761,13762]],[[13763,13764,13765]],[[13766,13767,13768]],[[13768,13769,13770]],[[13771,13772,13766]],[[13773,13774,13775]],[[13776,13777,13778]],[[13762,13778,13760]],[[13779,13780,13781]],[[13782,13783,13761]],[[13784,13785,13781]],[[13786,13787,13788]],[[13789,13790,13791]],[[13792,13793,13794]],[[13769,13788,13777]],[[13795,13796,13797]],[[13783,13770,13769]],[[13798,13797,13799]],[[13786,13788,13769]],[[13787,13800,13777]],[[13782,13801,13802]],[[13771,13768,13770]],[[13803,13804,13805]],[[13772,13771,13806]],[[13807,13789,13791]],[[13805,13794,13793]],[[13808,13809,13810]],[[13798,13799,13811]],[[13810,13809,13774]],[[13811,13792,13812]],[[13780,13813,13765]],[[13814,13815,13805]],[[13791,13816,13807]],[[13791,13790,13816]],[[13817,13807,13765]],[[13816,13790,13763]],[[13779,13815,13813]],[[13779,13767,13766]],[[13784,13780,13765]],[[13784,13781,13780]],[[13789,13817,13818]],[[13818,13817,13813]],[[13789,13818,13814]],[[13813,13780,13779]],[[13794,13805,13772]],[[13779,13781,13786]],[[13819,13815,13779]],[[13818,13813,13815]],[[13808,13804,13809]],[[13805,13819,13772]],[[13813,13817,13765]],[[13789,13807,13817]],[[13800,13796,13777]],[[13800,13797,13796]],[[13776,13778,13762]],[[13777,13796,13778]],[[13775,13774,13809]],[[13820,13803,13811]],[[13810,13774,13773]],[[13809,13820,13775]],[[13821,13799,13797]],[[13821,13820,13799]],[[13797,13798,13795]],[[13799,13820,13811]],[[13822,13795,13801]],[[13782,13812,13770]],[[13802,13801,13795]],[[13760,13778,13822]],[[13823,13822,13778]],[[13823,13795,13822]],[[13822,13801,13760]],[[13795,13798,13802]],[[13764,13821,13797]],[[13764,13773,13821]],[[13821,13775,13820]],[[13821,13773,13775]],[[13803,13805,13793]],[[13804,13814,13805]],[[13802,13811,13812]],[[13820,13809,13803]],[[13783,13776,13762]],[[13769,13777,13776]],[[13785,13786,13781]],[[13785,13824,13786]],[[13762,13761,13783]],[[13760,13801,13761]],[[13811,13802,13798]],[[13812,13782,13802]],[[13812,13792,13794]],[[13811,13803,13792]],[[13800,13784,13765]],[[13800,13785,13784]],[[13806,13771,13770]],[[13768,13767,13769]],[[13764,13808,13773]],[[13808,13763,13790]],[[13773,13808,13810]],[[13764,13763,13808]],[[13807,13763,13765]],[[13807,13816,13763]],[[13786,13824,13787]],[[13785,13800,13824]],[[13812,13806,13770]],[[13772,13825,13766]],[[13794,13806,13812]],[[13794,13772,13806]],[[13788,13787,13777]],[[13824,13800,13787]],[[13783,13782,13770]],[[13761,13801,13782]],[[13789,13814,13790]],[[13818,13815,13814]],[[13783,13769,13776]],[[13767,13786,13769]],[[13796,13823,13778]],[[13796,13795,13823]],[[13771,13766,13768]],[[13825,13779,13766]],[[13792,13803,13793]],[[13804,13790,13814]],[[13809,13804,13803]],[[13808,13790,13804]],[[13772,13819,13825]],[[13805,13815,13819]],[[13767,13779,13786]],[[13825,13819,13779]],[[13800,13826,13797]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e47e113-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9c0e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13827,13828,13829]],[[13830,13831,13832]],[[13833,13834,13835]],[[13836,13837,13838]],[[13839,13840,13841]],[[13834,13842,13843]],[[13844,13845,13846]],[[13833,13847,13834]],[[13848,13847,13849]],[[13842,13834,13847]],[[13850,13844,13851]],[[13845,13852,13846]],[[13853,13854,13831]],[[13846,13855,13839]],[[13856,13857,13858]],[[13859,13860,13857]],[[13856,13859,13857]],[[13861,13839,13841]],[[13852,13855,13846]],[[13849,13847,13833]],[[13862,13863,13829]],[[13864,13865,13855]],[[13857,13854,13853]],[[13860,13859,13856]],[[13866,13841,13867]],[[13855,13865,13868]],[[13853,13869,13827]],[[13860,13854,13857]],[[13870,13867,13840]],[[13830,13871,13831]],[[13871,13872,13873]],[[13873,13869,13831]],[[13874,13875,13876]],[[13877,13869,13873]],[[13840,13878,13879]],[[13880,13881,13848]],[[13835,13843,13882]],[[13883,13867,13870]],[[13882,13876,13884]],[[13885,13872,13886]],[[13887,13852,13845]],[[13863,13864,13852]],[[13882,13884,13849]],[[13848,13862,13842]],[[13879,13870,13840]],[[13885,13875,13874]],[[13888,13837,13872]],[[13889,13828,13877]],[[13874,13890,13872]],[[13872,13877,13873]],[[13880,13868,13881]],[[13855,13852,13864]],[[13891,13864,13863]],[[13865,13881,13868]],[[13871,13886,13872]],[[13836,13889,13877]],[[13892,13837,13888]],[[13836,13877,13872]],[[13870,13886,13883]],[[13870,13879,13893]],[[13830,13832,13866]],[[13831,13854,13832]],[[13839,13878,13840]],[[13893,13886,13870]],[[13843,13894,13882]],[[13895,13896,13889]],[[13837,13836,13872]],[[13828,13896,13829]],[[13884,13876,13875]],[[13892,13888,13897]],[[13833,13882,13849]],[[13875,13898,13884]],[[13834,13843,13835]],[[13842,13894,13843]],[[13853,13827,13829]],[[13869,13877,13827]],[[13882,13892,13876]],[[13837,13895,13838]],[[13880,13899,13868]],[[13900,13901,13878]],[[13868,13878,13855]],[[13878,13901,13879]],[[13855,13878,13839]],[[13901,13884,13898]],[[13868,13900,13878]],[[13868,13899,13900]],[[13879,13901,13898]],[[13900,13884,13901]],[[13876,13897,13890]],[[13876,13892,13897]],[[13858,13853,13829]],[[13831,13869,13853]],[[13884,13899,13849]],[[13884,13900,13899]],[[13863,13887,13829]],[[13863,13852,13887]],[[13835,13882,13833]],[[13894,13892,13882]],[[13856,13851,13860]],[[13846,13839,13861]],[[13887,13850,13829]],[[13887,13845,13844]],[[13862,13891,13863]],[[13891,13902,13865]],[[13891,13865,13864]],[[13891,13862,13902]],[[13867,13841,13840]],[[13866,13854,13861]],[[13849,13880,13848]],[[13849,13899,13880]],[[13866,13861,13841]],[[13851,13846,13861]],[[13842,13895,13894]],[[13842,13896,13895]],[[13894,13837,13892]],[[13894,13895,13837]],[[13838,13889,13836]],[[13838,13895,13889]],[[13903,13858,13829]],[[13857,13853,13858]],[[13890,13874,13876]],[[13885,13904,13875]],[[13848,13902,13862]],[[13881,13865,13902]],[[13831,13871,13873]],[[13883,13886,13871]],[[13898,13893,13879]],[[13898,13875,13904]],[[13861,13860,13851]],[[13861,13854,13860]],[[13883,13830,13867]],[[13883,13871,13830]],[[13851,13844,13846]],[[13850,13887,13844]],[[13830,13866,13867]],[[13832,13854,13866]],[[13847,13848,13842]],[[13881,13902,13848]],[[13888,13890,13897]],[[13888,13872,13890]],[[13903,13856,13858]],[[13850,13851,13856]],[[13877,13828,13827]],[[13889,13896,13828]],[[13893,13904,13886]],[[13893,13898,13904]],[[13872,13885,13874]],[[13886,13904,13885]],[[13850,13903,13829]],[[13850,13856,13903]],[[13842,13905,13896]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4aa043-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff17049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13906,13907,13908]],[[13909,8727,8794]],[[13910,7726,7728]],[[13911,13912,13913]],[[13914,13913,13915]],[[13916,13917,13918]],[[13910,13916,7726]],[[13919,7726,13920]],[[13914,13915,13921]],[[13919,13920,13922]],[[13923,13914,13921]],[[13918,13920,13916]],[[13924,13923,13921]],[[13912,7726,13921]],[[13925,13926,13927]],[[13914,13923,13928]],[[13913,13912,13915]],[[13926,7726,13912]],[[13929,13930,13931]],[[13932,7727,13926]],[[13924,13921,13919]],[[13915,13912,13921]],[[13918,13933,13922]],[[13921,7726,13919]],[[8725,13934,7728]],[[13934,13917,13916]],[[7726,13916,13920]],[[13910,13934,13916]],[[13922,13924,13919]],[[13933,13935,13923]],[[13936,13937,13938]],[[13923,13935,13939]],[[7728,13934,13910]],[[13940,13941,13935]],[[13942,13929,13943]],[[13944,13945,13946]],[[13947,13948,13925]],[[13949,13950,13932]],[[13951,13925,13931]],[[13950,13943,13952]],[[13942,13943,13949]],[[13953,13952,13954]],[[13955,13956,13954]],[[13943,13950,13949]],[[13933,13923,13924]],[[13955,13957,13958]],[[13931,13942,13926]],[[13908,7727,13932]],[[13959,13960,13908]],[[13961,8728,7727]],[[13962,13926,13912]],[[7727,7726,13926]],[[13942,13949,13932]],[[13950,13952,13953]],[[13930,13942,13931]],[[13930,13929,13942]],[[13960,13906,13908]],[[13907,13945,13963]],[[13908,13907,7727]],[[13906,13960,13945]],[[13914,13928,13913]],[[13964,13912,13911]],[[13928,13965,13947]],[[13966,13912,13964]],[[13925,13951,13926]],[[13931,13926,13951]],[[13907,13963,7727]],[[13967,13968,13960]],[[13933,13918,13917]],[[13922,13920,13918]],[[13966,13962,13912]],[[13927,13926,13962]],[[13969,13970,13971]],[[13972,8728,13973]],[[13953,13954,13960]],[[13907,13906,13945]],[[13947,13966,13964]],[[13927,13962,13966]],[[13956,13955,13974]],[[13975,8727,13976]],[[13944,13973,13961]],[[13977,13972,13973]],[[13973,13946,13977]],[[13973,13944,13946]],[[8724,13938,8725]],[[8724,13958,13978]],[[13957,13978,13958]],[[8724,13975,13979]],[[13980,13944,13961]],[[13963,13945,13944]],[[13971,13972,13977]],[[13971,8728,13972]],[[13946,13968,13969]],[[8794,8728,13971]],[[8724,13979,13958]],[[13954,8794,13967]],[[13965,13939,13981]],[[13938,8724,13978]],[[13966,13947,13927]],[[13964,13911,13928]],[[13934,13940,13917]],[[13982,13937,13983]],[[13948,13943,13929]],[[13953,13960,13959]],[[13948,13955,13952]],[[13974,13975,13976]],[[13946,13969,13977]],[[13970,8794,13971]],[[13936,13938,13978]],[[13937,8725,13938]],[[13957,13947,13965]],[[13984,8725,13982]],[[13942,13932,13926]],[[13959,13908,13932]],[[13940,13935,13917]],[[13985,13984,13986]],[[13922,13933,13924]],[[13917,13935,13933]],[[13980,13961,7727]],[[13973,8728,13961]],[[13979,13955,13958]],[[13985,13935,13941]],[[8725,13940,13934]],[[8725,13941,13940]],[[13945,13968,13946]],[[13945,13960,13968]],[[13977,13969,13971]],[[13968,13967,13969]],[[13957,13981,13978]],[[13983,13937,13936]],[[13979,13975,13974]],[[8724,8727,13975]],[[13986,13984,13983]],[[8725,13937,13982]],[[13983,13984,13982]],[[13941,8725,13984]],[[13931,13925,13929]],[[13947,13957,13948]],[[13947,13925,13927]],[[13948,13929,13925]],[[13970,13967,8794]],[[13970,13969,13967]],[[13957,13955,13948]],[[13979,13974,13955]],[[13957,13965,13981]],[[13947,13964,13928]],[[13913,13928,13911]],[[13987,13939,13965]],[[13981,13939,13986]],[[13965,13928,13987]],[[13936,13981,13983]],[[13985,13941,13984]],[[13983,13981,13986]],[[13936,13978,13981]],[[13939,13985,13986]],[[13939,13935,13985]],[[13948,13952,13943]],[[13954,13967,13960]],[[13932,13953,13959]],[[13932,13950,13953]],[[13955,13954,13952]],[[13956,8794,13954]],[[13963,13980,7727]],[[13963,13944,13980]],[[13923,13987,13928]],[[13923,13939,13987]],[[13956,13976,13909]],[[13956,13974,13976]],[[13956,13909,8794]],[[13976,8727,13909]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4b15d3-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13988,13989,13990]],[[13991,13992,13993]],[[13994,13995,13996]],[[13990,13997,13998]],[[13992,13999,14000]],[[14001,14002,14003]],[[14001,13993,14000]],[[14004,14005,14006]],[[14002,14000,14007]],[[14003,14008,14009]],[[13996,14010,14011]],[[14012,14013,14014]],[[14015,13992,14016]],[[14017,14013,14018]],[[14019,14020,14015]],[[14019,14021,14020]],[[14022,14017,13989]],[[14019,14015,14016]],[[14016,14023,14019]],[[14023,13991,13994]],[[14024,14018,14012]],[[14005,14008,14007]],[[14025,14005,14004]],[[14014,14008,14005]],[[14015,13989,13992]],[[14026,13998,14014]],[[14014,14013,14026]],[[14012,14025,14024]],[[14017,14022,14013]],[[14027,13988,14026]],[[14011,14028,14029]],[[14030,14009,14028]],[[14029,13994,14011]],[[14023,14016,13991]],[[14026,14022,14027]],[[14026,14013,14022]],[[13995,14001,13996]],[[13993,13992,14000]],[[14031,14024,14004]],[[14014,14005,14025]],[[14026,13988,13998]],[[14027,13989,13988]],[[14006,14031,14004]],[[13992,13989,14018]],[[14007,14031,14006]],[[13999,14018,14024]],[[14004,14024,14025]],[[13999,13992,14018]],[[14031,14007,14000]],[[14006,14005,14007]],[[14002,14032,14003]],[[14009,13997,14028]],[[14000,14002,14001]],[[14007,14008,14002]],[[14003,14032,14008]],[[14002,14008,14032]],[[13995,13993,14001]],[[13995,13994,13991]],[[14010,14009,14030]],[[14008,13997,14009]],[[13994,14021,14023]],[[14029,14028,14033]],[[14011,14010,14030]],[[13996,14003,14010]],[[14022,13989,14027]],[[14017,14018,13989]],[[14010,14003,14009]],[[13996,14001,14003]],[[14021,14019,14023]],[[14020,13990,14015]],[[13995,13991,13993]],[[14016,13992,13991]],[[13994,14029,14021]],[[14028,13997,14033]],[[13990,14033,13997]],[[14021,14029,14033]],[[14028,14011,14030]],[[13994,13996,14011]],[[14025,14012,14014]],[[14018,14013,14012]],[[14031,13999,14024]],[[14031,14000,13999]],[[13989,14015,13990]],[[14021,14033,14020]],[[13988,13990,13998]],[[14020,14033,13990]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4bd8b0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1771,3212,3213]],[[1820,14034,1782]],[[1782,3050,3060]],[[3060,3076,3077]],[[3060,3050,3076]],[[3076,3071,3074]],[[3074,3071,3073]],[[3076,3050,3071]],[[3071,3068,3069]],[[3071,3067,3068]],[[3071,3066,3067]],[[3071,3055,3066]],[[3066,3079,3051]],[[3051,3064,3065]],[[3051,3062,3064]],[[3064,3062,3063]],[[3051,3079,3062]],[[3062,3079,3061]],[[3066,3055,3079]],[[3079,3055,3080]],[[3071,3050,3055]],[[3055,3050,3054]],[[3054,3052,3053]],[[3054,3050,3052]],[[1782,3048,3050]],[[1782,14034,3048]],[[14035,1771,3213]],[[14036,14034,14037]],[[1771,3201,3212]],[[3212,3201,3210]],[[3210,3201,3208]],[[3208,3180,3174]],[[3208,3206,3180]],[[3180,3206,3177]],[[3208,3204,3206]],[[3206,3204,3184]],[[3184,3182,3205]],[[3184,3204,3182]],[[3208,3203,3204]],[[3208,3171,3203]],[[3203,3194,3187]],[[3203,3191,3194]],[[3203,3195,3191]],[[3203,3171,3195]],[[3208,3201,3171]],[[3171,3201,3172]],[[1771,3190,3201]],[[3201,3190,3198]],[[1820,14037,14034]],[[1820,1771,14036]],[[14034,14036,3213]],[[14036,1771,14035]],[[1820,14036,14037]],[[14035,3213,14036]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4ee645-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14038,14039,14040]],[[14041,14042,14043]],[[14040,14043,14044]],[[14042,14039,14038]],[[14044,14038,14040]],[[14042,14041,14039]],[[14045,14043,14040]],[[14046,14038,14044]],[[14046,14042,14038]],[[14043,14045,14041]],[[14046,14043,14042]],[[14046,14044,14043]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4fa919-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14047,14048,14049]],[[14050,14051,8743]],[[14052,8402,8744]],[[14052,14053,14048]],[[14054,14050,8743]],[[14055,14056,14057]],[[14058,14051,14059]],[[14050,14054,14060]],[[14050,14059,14051]],[[14061,14062,14063]],[[14064,14065,14066]],[[14067,14051,14058]],[[14068,14069,14070]],[[14059,14050,14071]],[[14059,14072,14073]],[[14074,14064,14075]],[[14061,14073,14062]],[[14076,14077,14078]],[[14079,14061,14069]],[[14080,14073,14061]],[[14072,14063,14073]],[[14063,8322,14081]],[[14057,14056,8323]],[[8323,8325,14082]],[[14061,14063,14069]],[[14081,8322,8323]],[[14068,14070,14083]],[[14068,14084,14085]],[[14083,14070,14081]],[[14062,14073,14063]],[[14060,14054,8743]],[[14071,14086,14072]],[[14052,14048,14087]],[[8325,8402,14087]],[[8743,14084,8744]],[[14065,14088,14066]],[[14089,14074,14075]],[[14075,14090,14056]],[[14056,14090,8323]],[[14070,14069,14063]],[[14082,14057,8323]],[[14077,14076,14091]],[[14065,14064,14074]],[[14066,14092,14064]],[[14078,14089,14075]],[[14065,14074,14089]],[[14065,14084,14088]],[[8743,14051,14080]],[[14072,14086,14063]],[[14072,14059,14071]],[[14060,14071,14050]],[[8322,14086,14071]],[[14073,14058,14059]],[[14067,14080,14051]],[[14073,14067,14058]],[[14073,14080,14067]],[[14093,14083,14081]],[[14066,14088,14068]],[[8744,14065,14094]],[[14079,14095,14061]],[[14085,14079,14069]],[[14095,14080,14061]],[[8744,14084,14065]],[[8743,14079,14084]],[[8325,14096,14082]],[[8325,14087,14096]],[[14093,14081,8323]],[[14093,14097,14092]],[[14068,14085,14069]],[[14084,14079,14085]],[[8743,14095,14079]],[[8743,14080,14095]],[[14094,14053,8744]],[[14048,14096,14087]],[[14094,14048,14053]],[[14094,14098,14049]],[[14070,14063,14081]],[[14086,8322,14063]],[[8402,14052,14087]],[[8744,14053,14052]],[[14091,14099,14077]],[[14065,14089,14099]],[[14082,14076,14057]],[[14099,14089,14078]],[[14055,14076,14078]],[[14098,14094,14091]],[[14076,14055,14057]],[[14078,14056,14055]],[[14075,14097,14090]],[[14092,14083,14093]],[[14082,14049,14076]],[[14049,14048,14094]],[[14066,14068,14083]],[[14088,14084,14068]],[[14076,14049,14098]],[[14047,14096,14048]],[[14078,14077,14099]],[[14076,14098,14091]],[[14064,14092,14097]],[[14066,14083,14092]],[[14082,14047,14049]],[[14082,14096,14047]],[[14065,14091,14094]],[[14065,14099,14091]],[[14078,14075,14056]],[[14064,14097,14075]],[[8322,14060,8743]],[[8322,14071,14060]],[[14090,14093,8323]],[[14090,14097,14093]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e506d0e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14100,14101,14102]],[[14103,14104,14105]],[[14106,14107,14104]],[[14108,14102,14101]],[[14109,14110,14106]],[[14110,14107,14111]],[[14112,14109,14103]],[[14104,14108,14105]],[[14103,14106,14104]],[[14111,14107,14106]],[[14113,14109,14112]],[[14110,14111,14106]],[[14101,14105,14108]],[[14104,14107,14114]],[[14115,14103,14105]],[[14109,14106,14103]],[[14116,14117,14118]],[[14119,14120,14112]],[[14100,14115,14101]],[[14121,14119,14103]],[[14115,14121,14103]],[[14103,14119,14112]],[[14122,14110,14123]],[[14110,14109,14113]],[[14116,14119,14124]],[[14120,14113,14112]],[[14117,14116,14121]],[[14121,14116,14124]],[[14123,14120,14119]],[[14123,14113,14120]],[[14118,14100,14102]],[[14115,14105,14101]],[[14114,14108,14104]],[[14122,14102,14108]],[[14123,14116,14118]],[[14123,14119,14116]],[[14122,14114,14107]],[[14122,14108,14114]],[[14117,14100,14118]],[[14117,14121,14100]],[[14123,14110,14113]],[[14122,14107,14110]],[[14119,14121,14124]],[[14115,14100,14121]],[[14125,14102,14122]],[[14118,14126,14123]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e51a58d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1773,3169,3199]],[[3199,3169,3200]],[[3200,3169,3197]],[[3197,3169,3173]],[[3173,3169,3196]],[[3196,3169,3192]],[[3192,3169,3193]],[[3193,3169,3188]],[[3188,3169,3189]],[[3189,3169,3202]],[[3202,3169,3183]],[[3183,3169,3181]],[[3181,3169,3185]],[[3185,3169,3186]],[[3186,3169,3178]],[[3178,3169,3179]],[[3179,3169,3175]],[[3175,3169,3176]],[[3176,3169,3207]],[[3207,3169,3209]],[[3209,3169,3211]],[[14127,12238,14128]],[[1812,1830,12238]],[[3115,12238,1830]],[[14129,3169,1773]],[[1830,3121,3115]],[[1830,3135,3121]],[[3121,3156,3158]],[[3121,3135,3156]],[[3156,3134,3125]],[[3125,3130,3128]],[[3125,3134,3130]],[[3130,3134,3154]],[[3156,3137,3134]],[[3134,3137,3153]],[[3153,3137,3152]],[[3156,3135,3137]],[[3137,3141,3139]],[[3137,3145,3141]],[[3141,3145,3143]],[[3137,3135,3145]],[[3145,3150,3122]],[[3122,3150,3123]],[[3145,3135,3150]],[[1812,14128,14129]],[[12238,3169,14130]],[[1812,14129,1773]],[[14130,3169,14129]],[[1812,14127,14128]],[[1812,12238,14127]],[[14128,14130,14129]],[[14128,12238,14130]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e528fa4-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14131,14132,14133]],[[14134,14132,14131]],[[14132,14135,14136]],[[14132,14137,14135]],[[14138,14139,14132]],[[14140,14138,14132]],[[14141,14140,14132]],[[14142,14143,14144]],[[14145,14132,14146]],[[14146,14132,14147]],[[14147,14132,14148]],[[14148,14142,14149]],[[14149,14142,14150]],[[14150,14142,14151]],[[14151,14142,14152]],[[14152,14142,14144]],[[14153,14154,14155]],[[14143,14142,14154]],[[14156,14143,14154]],[[14132,14142,14148]],[[14157,14158,14154]],[[14153,14157,14154]],[[14132,14154,14142]],[[14159,14155,14154]],[[14160,14159,14154]],[[14161,14160,14154]],[[14162,14161,14154]],[[14163,14162,14164]],[[14165,14163,14164]],[[14166,14165,14164]],[[14167,14166,14164]],[[14168,14167,14164]],[[14169,14168,14164]],[[14170,14169,14164]],[[14171,14170,14164]],[[14172,14171,14164]],[[14173,14172,14164]],[[14174,14173,14164]],[[14175,14174,14164]],[[14176,14175,14164]],[[14177,14132,14145]],[[14178,14164,14179]],[[14179,14164,14180]],[[14180,14164,14132]],[[14181,14180,14132]],[[14182,14181,14132]],[[14183,14182,14132]],[[14184,14183,14132]],[[14185,14184,14132]],[[14186,14185,14132]],[[14186,14187,14185]],[[14186,14188,14187]],[[14186,14189,14188]],[[14186,14190,14189]],[[14186,14191,14190]],[[14186,14192,14191]],[[14186,14193,14192]],[[14186,14194,14193]],[[14195,14196,14186]],[[14197,14195,14186]],[[14198,14197,14186]],[[14199,14198,14186]],[[14200,14199,14186]],[[14201,14200,14186]],[[14202,14201,14203]],[[14204,14202,14203]],[[14205,14204,14203]],[[14206,14205,14203]],[[14132,14164,14154]],[[14207,14203,14208]],[[14208,14203,14209]],[[14209,14203,14210]],[[14210,14203,14211]],[[14211,14203,14212]],[[14212,14203,14213]],[[14213,14203,14214]],[[14214,14203,14215]],[[14215,14203,14216]],[[14216,14203,14217]],[[14217,14203,14218]],[[14218,14203,14219]],[[14219,14203,14220]],[[14220,14203,14221]],[[14221,14203,14132]],[[14222,14221,14132]],[[14223,14222,14132]],[[14224,14223,14132]],[[14225,14224,14132]],[[14226,14225,14132]],[[14134,14226,14132]],[[14177,14141,14132]],[[14133,14132,14136]],[[14227,14164,14178]],[[14227,14176,14164]],[[14162,14154,14164]],[[14158,14156,14154]],[[14228,14203,14207]],[[14228,14206,14203]],[[14137,14132,14139]],[[14203,14186,14132]],[[14201,14186,14203]],[[14196,14194,14186]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e530428-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14229,14230,14231]],[[14232,14233,14231]],[[14234,14232,14235]],[[14236,14229,14237]],[[14234,14238,14232]],[[14230,14229,14236]],[[14238,14239,14233]],[[14236,14237,14240]],[[14241,14235,14230]],[[14235,14232,14231]],[[14230,14235,14231]],[[14242,14234,14235]],[[14232,14238,14233]],[[14234,14239,14238]],[[14234,14243,14239]],[[14234,14237,14243]],[[14244,14236,14240]],[[14229,14233,14239]],[[14244,14241,14236]],[[14242,14235,14241]],[[14241,14230,14236]],[[14231,14233,14229]],[[14243,14229,14239]],[[14243,14237,14229]],[[14242,14244,14240]],[[14242,14241,14244]],[[14240,14245,14242]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e54165e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14246,14247,14248]],[[14249,14250,14251]],[[14247,14252,14248]],[[14253,14254,14255]],[[14256,14257,14258]],[[14258,14249,14251]],[[14246,14258,14247]],[[14251,14252,14247]],[[14259,14260,14261]],[[14258,14251,14247]],[[14262,14260,14259]],[[14261,14258,14246]],[[14263,14261,14260]],[[14264,14258,14261]],[[14265,14266,14267]],[[14268,14256,14264]],[[14264,14256,14258]],[[14250,14269,14270]],[[14263,14268,14261]],[[14268,14266,14256]],[[14270,14248,14252]],[[14269,14254,14248]],[[14271,14272,14256]],[[14257,14269,14249]],[[14258,14257,14249]],[[14272,14269,14257]],[[14251,14250,14252]],[[14249,14269,14250]],[[14253,14246,14248]],[[14255,14261,14246]],[[14266,14271,14256]],[[14265,14272,14271]],[[14259,14255,14254]],[[14259,14261,14255]],[[14262,14266,14263]],[[14265,14271,14266]],[[14261,14268,14264]],[[14263,14266,14268]],[[14256,14272,14257]],[[14265,14269,14272]],[[14250,14270,14252]],[[14269,14248,14270]],[[14266,14262,14267]],[[14263,14260,14262]],[[14246,14253,14255]],[[14248,14254,14253]],[[14267,14259,14254]],[[14267,14262,14259]],[[14273,14254,14269]],[[14267,14274,14265]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5527a9-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14275,14276,14277]],[[14278,14279,14280]],[[14281,14282,14283]],[[14280,14284,14285]],[[14286,14287,14282]],[[14288,14289,14290]],[[14291,14292,14285]],[[14284,14290,14285]],[[14292,14283,14293]],[[14293,14282,14294]],[[14295,14286,14296]],[[14277,14297,14275]],[[14298,14295,14299]],[[14286,14282,14281]],[[14277,14287,14297]],[[14288,14290,14284]],[[14300,14287,14286]],[[14297,14301,14275]],[[14302,14283,14291]],[[14303,14304,14279]],[[14278,14280,14285]],[[14279,14284,14280]],[[14298,14302,14305]],[[14292,14306,14307]],[[14299,14295,14302]],[[14282,14276,14294]],[[14292,14293,14306]],[[14283,14282,14293]],[[14304,14307,14294]],[[14308,14275,14301]],[[14300,14297,14287]],[[14300,14289,14297]],[[14308,14294,14275]],[[14294,14276,14275]],[[14288,14294,14308]],[[14306,14293,14294]],[[14288,14308,14289]],[[14301,14289,14308]],[[14292,14307,14303]],[[14306,14294,14307]],[[14278,14303,14279]],[[14278,14292,14303]],[[14297,14289,14301]],[[14300,14290,14289]],[[14302,14281,14283]],[[14296,14286,14281]],[[14279,14304,14284]],[[14303,14307,14304]],[[14305,14291,14285]],[[14305,14302,14291]],[[14298,14299,14302]],[[14295,14281,14302]],[[14300,14298,14305]],[[14295,14296,14281]],[[14282,14277,14276]],[[14282,14287,14277]],[[14285,14292,14278]],[[14291,14283,14292]],[[14300,14295,14298]],[[14300,14286,14295]],[[14304,14288,14284]],[[14304,14294,14288]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e55c364-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14309,9869,9874]],[[14310,9874,9873]],[[9868,14311,14312]],[[14311,9869,14309]],[[14310,14309,9874]],[[14311,9868,9869]],[[14312,14310,9873]],[[14313,14309,14310]],[[14313,14311,14309]],[[14312,9873,9868]],[[14313,14312,14311]],[[14313,14310,14312]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e55ea86-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14314,1013,1017]],[[1020,14315,1018]],[[14316,14314,1017]],[[14315,14317,14314]],[[14316,14315,14314]],[[14317,1013,14314]],[[1018,14316,1017]],[[1018,14315,14316]],[[1020,14317,14315]],[[1020,1013,14317]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e566010-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14318,14319,14320]],[[14321,14319,14322]],[[14320,14323,14321]],[[14324,14325,14326]],[[14320,14319,14323]],[[14327,14325,14324]],[[14322,14328,14326]],[[14328,14319,14318]],[[14324,14328,14329]],[[14322,14319,14328]],[[14328,14318,14329]],[[14320,14325,14318]],[[14328,14324,14326]],[[14329,14327,14324]],[[14318,14327,14329]],[[14318,14325,14327]],[[14320,14321,14322]],[[14323,14319,14321]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e580e0a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff16b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14330,14331,14332]],[[14333,14334,8708]],[[14335,14336,14333]],[[14337,14338,14336]],[[14332,14339,14340]],[[14341,14342,14334]],[[14343,14332,14340]],[[14344,14345,14346]],[[14347,14348,14349]],[[14350,14338,14337]],[[14350,14331,14330]],[[14340,14351,14344]],[[14336,14338,14334]],[[14352,14353,14346]],[[14332,14354,14339]],[[14355,8707,14356]],[[14348,14347,14354]],[[14339,14351,14340]],[[14343,14340,14357]],[[14358,14357,14344]],[[14338,14359,14334]],[[14338,14330,14359]],[[14357,14358,14359]],[[14360,14341,14353]],[[14361,14362,14363]],[[14364,14342,14365]],[[14359,14330,14343]],[[14338,14350,14330]],[[14350,14348,14331]],[[14331,14348,14354]],[[14341,14365,14342]],[[14353,14358,14346]],[[14349,14335,14366]],[[14336,14334,14333]],[[14359,14341,14334]],[[14359,14358,14341]],[[14341,14367,14365]],[[14360,14353,14352]],[[14345,14352,14346]],[[14341,14358,14353]],[[14368,14369,14352]],[[14370,14371,14372]],[[14337,14348,14350]],[[14347,8708,14373]],[[14343,14357,14359]],[[14340,14344,14357]],[[14374,14375,14376]],[[14377,14378,14342]],[[14377,14379,14378]],[[14377,14342,14375]],[[14330,14332,14343]],[[14331,14354,14332]],[[14339,14354,14380]],[[14381,14362,14361]],[[14382,14383,14362]],[[14362,14380,8708]],[[14383,14369,14362]],[[14384,14385,14386]],[[14356,14378,14379]],[[8707,14342,14378]],[[14358,14344,14346]],[[14351,14387,14388]],[[14389,14374,14376]],[[14372,14390,14384]],[[14389,14384,14374]],[[14385,14355,14379]],[[14374,14386,14375]],[[14374,14384,14386]],[[14383,14365,14391]],[[14388,14344,14351]],[[14392,14393,14391]],[[14392,14365,14394]],[[14365,14392,14391]],[[14365,14367,14394]],[[14395,14371,14382]],[[14393,14396,14397]],[[14386,14385,14379]],[[14385,14395,14355]],[[14390,14385,14384]],[[14390,14395,14385]],[[14386,14377,14375]],[[14386,14379,14377]],[[14396,14398,14397]],[[14367,14399,14398]],[[14392,14394,14393]],[[14367,14398,14394]],[[14370,14389,14364]],[[14372,14384,14389]],[[14368,14352,14345]],[[14399,14367,14360]],[[14399,14360,14352]],[[14367,14341,14360]],[[14355,14356,14379]],[[8707,14378,14356]],[[14382,14370,14365]],[[14372,14389,14370]],[[14382,14371,14370]],[[14390,14372,14371]],[[14337,14349,14348]],[[14366,14333,8708]],[[14366,14347,14349]],[[14373,14354,14347]],[[8707,14362,8708]],[[14397,14391,14393]],[[14339,14387,14351]],[[14339,14380,14381]],[[14373,14380,14354]],[[14373,8708,14380]],[[14389,14376,14364]],[[14375,14342,14376]],[[8707,14382,14362]],[[14395,14390,14371]],[[8707,14395,14382]],[[8707,14355,14395]],[[14363,14368,14345]],[[14362,14369,14368]],[[14337,14335,14349]],[[14337,14336,14335]],[[14347,14366,8708]],[[14335,14333,14366]],[[14394,14396,14393]],[[14394,14398,14396]],[[14369,14399,14352]],[[14369,14398,14399]],[[14369,14397,14398]],[[14383,14391,14397]],[[14369,14383,14397]],[[14382,14365,14383]],[[14344,14388,14345]],[[14362,14368,14363]],[[14370,14364,14365]],[[14376,14342,14364]],[[14345,14388,14363]],[[14381,14380,14362]],[[14361,14388,14387]],[[14361,14363,14388]],[[14387,14381,14361]],[[14387,14339,14381]],[[8707,8710,14342]],[[8792,8708,14334]],[[14342,8792,14334]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e580e10-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14400,10084,10083]],[[10121,14400,10122]],[[10122,14400,10124]],[[10124,14400,10125]],[[10125,14400,10127]],[[10127,14400,10128]],[[10128,14400,10130]],[[10130,14400,10131]],[[10131,14400,10332]],[[10332,14400,10133]],[[10133,14400,10134]],[[10134,14400,10339]],[[10339,14400,14401]],[[10338,10339,14401]],[[10337,10338,14401]],[[10149,10337,14401]],[[14401,14402,14403]],[[10335,14401,10336]],[[10336,14401,10399]],[[10334,14401,14403]],[[10398,10399,14401]],[[10333,10398,14401]],[[10334,10333,14401]],[[10276,14404,10278]],[[10404,10385,14403]],[[10409,10404,14403]],[[10326,10409,14403]],[[14403,14402,14404]],[[10322,14403,10320]],[[10320,14403,10258]],[[10258,14403,10261]],[[10261,14403,10263]],[[10263,14403,10265]],[[10269,14403,14404]],[[10267,10265,14403]],[[10269,10267,14403]],[[10274,10269,14404]],[[10276,10274,14404]],[[10250,14404,10135]],[[10174,10278,14404]],[[10279,10174,14404]],[[10138,10279,14404]],[[10139,10138,14404]],[[10248,10139,14404]],[[10250,10248,14404]],[[10117,14400,10119]],[[10136,10135,14404]],[[10252,10136,14404]],[[14404,14402,14400]],[[10309,14404,10286]],[[10286,14404,10289]],[[10289,14404,10177]],[[10177,14404,10290]],[[10290,14404,10293]],[[10293,14404,10297]],[[10297,14404,10307]],[[10307,14404,10298]],[[10298,14404,10303]],[[10303,14404,10305]],[[10305,14404,10272]],[[10272,14404,10313]],[[10313,14404,10312]],[[10312,14404,10311]],[[10311,14404,10310]],[[10310,14404,10283]],[[10283,14404,10284]],[[10284,14404,10306]],[[10306,14404,10304]],[[10304,14404,10301]],[[10273,14404,14400]],[[10273,10301,14404]],[[10295,10273,14400]],[[10292,10295,14400]],[[10080,10292,14400]],[[10081,10080,14400]],[[10285,10081,14400]],[[10088,10285,14400]],[[10090,10088,14400]],[[10096,10090,14400]],[[10097,10096,14400]],[[10099,10097,14400]],[[10101,10099,14400]],[[10106,10101,14400]],[[10104,10106,14400]],[[10107,10104,14400]],[[10109,10107,14400]],[[10111,10109,14400]],[[10113,10111,14400]],[[10115,10113,14400]],[[10117,10115,14400]],[[10385,10334,14403]],[[14400,10083,10119]],[[14401,14400,14402]],[[10121,10084,14400]],[[10253,14404,10309]],[[10253,10252,14404]],[[10323,14403,10322]],[[10323,10326,14403]],[[10150,14401,10335]],[[10150,10149,14401]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e58829a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14405,14406,14407]],[[14408,14409,14410]],[[14409,14411,14405]],[[14412,14406,14405]],[[14413,14414,14410]],[[14410,14414,14408]],[[14408,14414,14411]],[[14413,14406,14412]],[[14409,14405,14407]],[[14412,14414,14413]],[[14411,14415,14405]],[[14411,14414,14415]],[[14416,14412,14405]],[[14416,14414,14412]],[[14410,14409,14407]],[[14408,14411,14409]],[[14415,14416,14405]],[[14415,14414,14416]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e58d102-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14417,14418,14419]],[[14420,14419,14421]],[[14422,14423,14424]],[[14425,14418,14417]],[[14426,14427,14424]],[[14426,14428,14429]],[[14430,14431,14417]],[[14425,14432,14418]],[[14429,14432,14425]],[[14433,14418,14432]],[[14434,14425,14431]],[[14427,14426,14425]],[[14430,14434,14431]],[[14427,14425,14434]],[[14420,14435,14430]],[[14424,14434,14435]],[[14424,14423,14426]],[[14433,14432,14436]],[[14423,14428,14426]],[[14436,14432,14428]],[[14422,14424,14437]],[[14427,14434,14424]],[[14433,14422,14421]],[[14424,14435,14437]],[[14438,14422,14437]],[[14423,14436,14428]],[[14426,14429,14425]],[[14428,14432,14429]],[[14438,14435,14420]],[[14435,14434,14430]],[[14438,14420,14421]],[[14430,14419,14420]],[[14422,14438,14421]],[[14437,14435,14438]],[[14433,14423,14422]],[[14433,14436,14423]],[[14430,14417,14419]],[[14431,14425,14417]],[[14419,14439,14421]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5993eb-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14440,14441,14442]],[[14443,14444,14445]],[[14443,14446,14444]],[[14447,14448,14444]],[[14449,14450,14443]],[[14446,14447,14444]],[[14451,14449,14445]],[[14452,14448,14441]],[[14440,14453,14454]],[[14455,14456,14457]],[[14454,14457,14443]],[[14458,14459,14457]],[[14458,14456,14453]],[[14458,14457,14456]],[[14447,14458,14460]],[[14459,14446,14443]],[[14449,14443,14445]],[[14457,14459,14443]],[[14444,14452,14445]],[[14444,14448,14452]],[[14450,14454,14443]],[[14453,14456,14455]],[[14447,14461,14459]],[[14447,14446,14461]],[[14454,14453,14455]],[[14460,14458,14453]],[[14452,14451,14445]],[[14462,14450,14449]],[[14440,14450,14462]],[[14454,14455,14457]],[[14440,14454,14450]],[[14440,14460,14453]],[[14463,14451,14452]],[[14462,14449,14451]],[[14441,14440,14462]],[[14442,14460,14440]],[[14447,14459,14458]],[[14461,14446,14459]],[[14451,14463,14462]],[[14448,14442,14441]],[[14441,14463,14452]],[[14441,14462,14463]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5aa630-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14464,12663,3215]],[[14465,14466,14467]],[[14468,14465,14467]],[[14469,3213,3168]],[[14470,14471,14472]],[[14473,3214,12663]],[[14474,14475,3048]],[[14476,12663,14477]],[[14478,14479,14480]],[[14481,14482,14483]],[[14484,14485,14486]],[[14487,14488,14489]],[[14485,14487,14490]],[[14491,14492,14493]],[[14488,14487,14494]],[[14495,14472,14496]],[[14482,14472,14495]],[[14491,14479,14034]],[[14497,14498,14483]],[[14499,3214,14473]],[[14493,14492,14500]],[[14494,14487,3214]],[[14481,14483,14499]],[[14499,14483,14498]],[[14471,14501,14496]],[[14482,14481,14472]],[[3049,14468,3215]],[[3049,3048,14468]],[[14502,14503,14504]],[[14505,14479,14478]],[[14491,14482,14501]],[[14506,14488,14494]],[[14482,14497,14483]],[[14484,14486,14469]],[[14491,14501,14492]],[[14501,14495,14496]],[[14500,14470,14493]],[[14507,14479,14508]],[[14476,14504,12663]],[[14503,14478,14504]],[[14509,14476,14477]],[[14502,14504,14476]],[[14510,14507,14473]],[[14499,14498,14494]],[[14472,14481,14499]],[[14498,14497,14506]],[[14511,14500,14492]],[[14511,14471,14500]],[[14512,14513,14491]],[[14470,14514,14512]],[[3214,14484,3168]],[[14486,14515,14469]],[[14489,14490,14487]],[[14515,14486,14490]],[[14486,14485,14490]],[[3214,14487,14485]],[[14471,14511,14501]],[[14492,14501,14511]],[[14472,14499,14470]],[[14494,3214,14499]],[[14478,14480,12663]],[[14507,14508,14473]],[[14474,14502,14476]],[[14516,14503,14502]],[[14517,14466,14475]],[[14509,14518,14476]],[[14464,14519,14477]],[[14518,14474,14476]],[[14480,14507,14510]],[[14520,14470,14473]],[[14493,14512,14491]],[[14508,14479,14513]],[[3048,14465,14468]],[[3048,14466,14465]],[[14034,14474,3048]],[[14034,14516,14474]],[[14519,14475,14477]],[[14521,14522,14517]],[[14477,14475,14509]],[[14475,14474,14518]],[[14504,14478,12663]],[[14503,14516,14505]],[[14503,14505,14478]],[[14034,14479,14505]],[[3213,14497,14482]],[[14515,14489,14497]],[[14498,14506,14494]],[[14497,14488,14506]],[[14497,14489,14488]],[[14515,14490,14489]],[[12663,14480,14510]],[[14479,14507,14480]],[[14508,14514,14520]],[[14508,14513,14514]],[[14474,14516,14502]],[[14034,14505,14516]],[[14468,14467,3215]],[[14517,14475,14521]],[[3213,14482,14491]],[[14482,14495,14501]],[[14472,14471,14496]],[[14470,14500,14471]],[[14479,14491,14513]],[[14034,3213,14491]],[[3168,14484,14469]],[[3214,14485,14484]],[[14509,14475,14518]],[[14466,3048,14475]],[[12663,14464,14477]],[[3215,14467,14522]],[[14519,14521,14475]],[[14519,14464,14521]],[[14522,14464,3215]],[[14522,14521,14464]],[[3213,14515,14497]],[[3213,14469,14515]],[[14467,14517,14522]],[[14467,14466,14517]],[[14510,14473,12663]],[[14470,14499,14473]],[[14508,14520,14473]],[[14514,14470,14520]],[[14470,14512,14493]],[[14514,14513,14512]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5b9032-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14523,14524,14525]],[[14526,14527,14528]],[[14529,14530,14523]],[[14531,14532,14533]],[[14534,14535,14536]],[[14537,14538,14539]],[[14540,14530,14529]],[[14533,14532,14527]],[[14526,14529,14523]],[[14523,14525,14526]],[[14536,14540,14528]],[[14535,14530,14540]],[[14530,14524,14523]],[[14530,14535,14537]],[[14541,14542,14539]],[[14543,14532,14539]],[[14544,14537,14535]],[[14545,14538,14537]],[[14542,14537,14539]],[[14538,14543,14539]],[[14531,14546,14547]],[[14539,14532,14541]],[[14525,14533,14527]],[[14547,14542,14541]],[[14526,14525,14527]],[[14524,14546,14525]],[[14534,14544,14535]],[[14543,14545,14544]],[[14530,14542,14524]],[[14530,14537,14542]],[[14525,14546,14533]],[[14547,14541,14532]],[[14534,14536,14528]],[[14535,14540,14536]],[[14533,14546,14531]],[[14524,14542,14546]],[[14531,14547,14532]],[[14546,14542,14547]],[[14543,14534,14528]],[[14543,14544,14534]],[[14544,14545,14537]],[[14543,14538,14545]],[[14540,14526,14528]],[[14540,14529,14526]],[[14548,14532,14543]],[[14527,14549,14528]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5bb778-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1012,1014,14550]],[[14551,1009,1022]],[[14551,14550,1009]],[[1014,1009,14550]],[[1012,14551,1022]],[[1012,14550,14551]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5cc8bd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14552,14553,14554]],[[14555,14556,14557]],[[14558,14559,14555]],[[14560,14561,14562]],[[14563,14557,14564]],[[14556,14565,14557]],[[14566,14567,14568]],[[14566,14569,14570]],[[14562,14571,14560]],[[14563,14564,14560]],[[14572,14573,14574]],[[14575,14576,14559]],[[14566,14568,14554]],[[14568,14577,14578]],[[14579,14552,14554]],[[14579,14578,14552]],[[14554,14568,14578]],[[14580,14558,14557]],[[14576,14577,14559]],[[14568,14567,14581]],[[14568,14581,14577]],[[14570,14569,14565]],[[14582,14578,14577]],[[14579,14554,14578]],[[14583,14584,14585]],[[14586,14578,14587]],[[14553,14584,14563]],[[14588,14580,14563]],[[14587,14589,14575]],[[14589,14578,14582]],[[14558,14575,14559]],[[14582,14577,14576]],[[14571,14553,14563]],[[14590,14583,14591]],[[14585,14586,14583]],[[14552,14578,14586]],[[14580,14572,14574]],[[14592,14584,14573]],[[14580,14588,14572]],[[14588,14584,14592]],[[14558,14580,14591]],[[14557,14563,14580]],[[14583,14590,14584]],[[14572,14592,14573]],[[14584,14588,14563]],[[14592,14572,14588]],[[14575,14589,14582]],[[14587,14578,14589]],[[14577,14581,14559]],[[14567,14566,14581]],[[14581,14555,14559]],[[14570,14556,14555]],[[14557,14558,14555]],[[14591,14575,14558]],[[14587,14583,14586]],[[14587,14591,14583]],[[14554,14553,14562]],[[14585,14584,14553]],[[14552,14585,14553]],[[14552,14586,14585]],[[14576,14575,14582]],[[14591,14587,14575]],[[14581,14570,14555]],[[14581,14566,14570]],[[14565,14564,14557]],[[14569,14561,14564]],[[14563,14560,14571]],[[14564,14561,14560]],[[14580,14574,14591]],[[14573,14584,14574]],[[14570,14565,14556]],[[14569,14564,14565]],[[14554,14562,14561]],[[14553,14571,14562]],[[14574,14590,14591]],[[14574,14584,14590]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5e0130-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14593,13701,14594]],[[14595,13700,14596]],[[14596,14597,14595]],[[14598,14599,14600]],[[14601,13700,14602]],[[14600,13702,13701]],[[14603,14604,14605]],[[14606,14607,14608]],[[13701,14593,14609]],[[14610,14611,14612]],[[14613,14605,14614]],[[14615,14604,14616]],[[14617,14618,14607]],[[14619,14604,14603]],[[14600,14599,13702]],[[14617,14607,14620]],[[14609,14600,13701]],[[14609,14598,14600]],[[14614,14605,14604]],[[14621,14603,14605]],[[14595,14612,13700]],[[14611,14594,13700]],[[14622,14602,14615]],[[13700,13699,14613]],[[14623,14614,14604]],[[14602,13700,14613]],[[14606,14608,14619]],[[14608,14624,14619]],[[14597,14625,14616]],[[14602,14614,14623]],[[14609,14610,14616]],[[14609,14593,14610]],[[14612,14611,13700]],[[14594,13701,13700]],[[14625,14615,14616]],[[14622,14601,14602]],[[14595,14597,14616]],[[14596,14625,14597]],[[14602,14613,14614]],[[14621,14605,14613]],[[14610,14594,14611]],[[14610,14593,14594]],[[14610,14595,14616]],[[14610,14612,14595]],[[13702,14620,13699]],[[13702,14599,14618]],[[14625,14622,14615]],[[14625,14596,14622]],[[14598,14618,14599]],[[14598,14624,14618]],[[13702,14617,14620]],[[13702,14618,14617]],[[13699,14621,14613]],[[13699,14603,14621]],[[14615,14623,14604]],[[14615,14602,14623]],[[14618,14624,14607]],[[14598,14604,14624]],[[13699,14606,14603]],[[14607,14624,14608]],[[14620,14606,13699]],[[14620,14607,14606]],[[14596,14601,14622]],[[14596,13700,14601]],[[14606,14619,14603]],[[14624,14604,14619]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c79603-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14626,14627,14628]],[[14629,14630,14631]],[[14629,14632,14630]],[[14633,14630,14634]],[[14632,14635,14636]],[[14637,14638,14639]],[[14640,14641,14642]],[[14643,14644,14645]],[[14646,14647,14626]],[[14648,14649,14633]],[[14650,14649,14651]],[[14651,14630,14650]],[[14652,14653,14654]],[[14655,14636,14656]],[[14657,14658,14659]],[[14660,14644,14643]],[[14661,14658,14662]],[[14663,14635,14664]],[[14661,14659,14658]],[[14656,14635,14663]],[[14665,14641,14666]],[[14640,14662,14667]],[[14668,14638,14669]],[[14659,14670,14660]],[[14671,14642,14672]],[[14642,14641,14673]],[[14674,14647,14646]],[[14675,14676,14653]],[[14634,14648,14633]],[[14634,14632,14636]],[[14626,14663,14627]],[[14655,14652,14677]],[[14640,14678,14666]],[[14654,14657,14677]],[[14675,14653,14656]],[[14667,14658,14657]],[[14679,14680,14681]],[[14638,14672,14673]],[[14679,14681,14674]],[[14682,14683,14669]],[[14648,14655,14649]],[[14657,14659,14651]],[[14651,14649,14657]],[[14677,14657,14649]],[[14649,14655,14677]],[[14636,14635,14656]],[[14647,14684,14685]],[[14686,14687,14688]],[[14689,14685,14687]],[[14666,14689,14690]],[[14691,14647,14685]],[[14692,14682,14673]],[[14638,14673,14682]],[[14672,14642,14673]],[[14693,14646,14694]],[[14627,14663,14664]],[[14629,14695,14664]],[[14696,14626,14628]],[[14679,14674,14693]],[[14695,14628,14664]],[[14697,14694,14631]],[[14697,14693,14694]],[[14698,14679,14697]],[[14699,14688,14684]],[[14659,14660,14643]],[[14671,14672,14700]],[[14670,14661,14701]],[[14662,14658,14667]],[[14626,14675,14663]],[[14676,14689,14653]],[[14691,14676,14675]],[[14689,14678,14654]],[[14686,14688,14683]],[[14681,14680,14688]],[[14666,14690,14665]],[[14688,14668,14683]],[[14678,14689,14666]],[[14687,14684,14688]],[[14632,14664,14635]],[[14628,14627,14664]],[[14645,14659,14643]],[[14645,14651,14659]],[[14641,14640,14666]],[[14642,14662,14640]],[[14688,14702,14668]],[[14637,14703,14638]],[[14704,14629,14631]],[[14705,14646,14696]],[[14705,14696,14628]],[[14646,14626,14696]],[[14694,14705,14704]],[[14694,14646,14705]],[[14694,14704,14631]],[[14705,14628,14695]],[[14706,14702,14680]],[[14668,14639,14638]],[[14680,14702,14688]],[[14706,14639,14702]],[[14678,14667,14654]],[[14678,14640,14667]],[[14631,14680,14679]],[[14706,14707,14639]],[[14647,14691,14675]],[[14685,14676,14691]],[[14692,14665,14690]],[[14692,14641,14665]],[[14642,14701,14662]],[[14662,14701,14661]],[[14633,14650,14630]],[[14633,14649,14650]],[[14685,14684,14708]],[[14647,14699,14684]],[[14685,14689,14676]],[[14685,14708,14687]],[[14638,14703,14672]],[[14703,14644,14709]],[[14671,14701,14642]],[[14670,14659,14661]],[[14703,14671,14700]],[[14709,14701,14671]],[[14672,14703,14700]],[[14707,14644,14703]],[[14703,14709,14671]],[[14644,14660,14709]],[[14709,14670,14701]],[[14709,14660,14670]],[[14648,14636,14655]],[[14648,14634,14636]],[[14683,14668,14669]],[[14702,14639,14668]],[[14679,14693,14697]],[[14674,14646,14693]],[[14626,14647,14675]],[[14699,14681,14688]],[[14674,14699,14647]],[[14674,14681,14699]],[[14631,14698,14697]],[[14631,14679,14698]],[[14686,14682,14690]],[[14673,14641,14692]],[[14675,14656,14663]],[[14653,14655,14656]],[[14689,14654,14653]],[[14667,14657,14654]],[[14677,14652,14654]],[[14655,14653,14652]],[[14689,14687,14686]],[[14708,14684,14687]],[[14682,14686,14683]],[[14690,14689,14686]],[[14631,14706,14680]],[[14631,14707,14706]],[[14704,14695,14629]],[[14704,14705,14695]],[[14630,14632,14634]],[[14629,14664,14632]],[[14644,14651,14645]],[[14644,14630,14651]],[[14707,14637,14639]],[[14707,14703,14637]],[[14638,14682,14669]],[[14692,14690,14682]],[[14710,14711,14707]],[[14707,14711,14644]],[[14631,14710,14707]],[[14712,14631,14630]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c8a81e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14713,14714,14715]],[[14716,14715,14717]],[[14716,14718,14715]],[[14716,14717,14719]],[[14720,14715,14718]],[[14714,14717,14715]],[[14720,14713,14715]],[[14721,14714,14713]],[[14721,14722,14719]],[[14721,14713,14722]],[[14722,14716,14719]],[[14722,14718,14716]],[[14722,14720,14718]],[[14722,14713,14720]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c9e082-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14723,14724,14725]],[[14726,14725,14727]],[[14726,14723,14725]],[[14728,14724,14723]],[[14728,14726,14727]],[[14728,14723,14726]],[[14729,14724,14728]],[[14727,14729,14728]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cb8e76-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14730,14731,14732]],[[14733,14732,14734]],[[14733,14730,14732]],[[14735,14731,14730]],[[14735,14733,14734]],[[14735,14730,14733]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc2a0d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14736,14737,14738]],[[14739,14738,14740]],[[14737,14741,14742]],[[14743,14738,14739]],[[14740,14744,14739]],[[14745,14746,14737]],[[14747,14744,14740]],[[14742,14741,14744]],[[14744,14743,14739]],[[14744,14741,14736]],[[14743,14736,14738]],[[14743,14744,14736]],[[14738,14737,14746]],[[14736,14741,14737]],[[14747,14742,14744]],[[14747,14745,14742]],[[14742,14745,14737]],[[14747,14746,14745]],[[14738,14748,14740]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc786f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14749,14750,14751]],[[14752,14753,14754]],[[14755,14756,14757]],[[14758,14759,14760]],[[14761,14762,14763]],[[14752,14764,14753]],[[14756,14765,14766]],[[14767,14768,14769]],[[14766,14765,14770]],[[14771,14751,14772]],[[14773,14757,14774]],[[14775,14750,14749]],[[14776,14777,14752]],[[14772,14764,14778]],[[14762,14752,14754]],[[14770,14760,14779]],[[14768,14780,14763]],[[14763,14754,14753]],[[14766,14775,14756]],[[14766,14750,14775]],[[14775,14757,14756]],[[14762,14754,14763]],[[14749,14781,14782]],[[14783,14784,14785]],[[14786,14776,14762]],[[14749,14751,14781]],[[14780,14787,14788]],[[14789,14790,14783]],[[14757,14788,14755]],[[14757,14773,14788]],[[14781,14784,14782]],[[14780,14768,14791]],[[14790,14786,14761]],[[14781,14751,14785]],[[14758,14768,14767]],[[14769,14753,14792]],[[14761,14786,14762]],[[14789,14793,14790]],[[14793,14789,14786]],[[14794,14752,14777]],[[14776,14786,14777]],[[14761,14795,14796]],[[14773,14782,14797]],[[14774,14749,14782]],[[14775,14774,14757]],[[14775,14749,14774]],[[14798,14794,14771]],[[14778,14752,14794]],[[14763,14769,14768]],[[14763,14753,14769]],[[14761,14796,14790]],[[14795,14788,14773]],[[14796,14797,14790]],[[14796,14773,14797]],[[14783,14799,14789]],[[14793,14786,14790]],[[14797,14783,14790]],[[14789,14777,14786]],[[14784,14783,14797]],[[14789,14771,14794]],[[14785,14799,14783]],[[14771,14772,14798]],[[14764,14792,14753]],[[14770,14779,14750]],[[14756,14787,14770]],[[14756,14755,14787]],[[14776,14752,14762]],[[14778,14764,14752]],[[14795,14800,14788]],[[14787,14758,14770]],[[14785,14771,14799]],[[14785,14751,14771]],[[14792,14760,14759]],[[14770,14750,14766]],[[14764,14779,14760]],[[14764,14750,14779]],[[14767,14792,14759]],[[14764,14760,14792]],[[14778,14798,14772]],[[14778,14794,14798]],[[14788,14787,14755]],[[14791,14758,14787]],[[14782,14784,14797]],[[14781,14785,14784]],[[14800,14780,14788]],[[14761,14763,14780]],[[14758,14767,14759]],[[14769,14792,14767]],[[14771,14789,14799]],[[14794,14777,14789]],[[14756,14770,14765]],[[14758,14760,14770]],[[14782,14773,14774]],[[14796,14795,14773]],[[14780,14791,14787]],[[14768,14758,14791]],[[14761,14800,14795]],[[14761,14780,14800]],[[14764,14801,14750]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc9f9d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14802,3101,3166]],[[14803,3167,3101]],[[14804,14805,14806]],[[14807,14808,14609]],[[14809,14810,14811]],[[14812,14813,14814]],[[14815,13091,14816]],[[14817,14818,14819]],[[14820,13097,13086]],[[14819,14821,13085]],[[14822,14823,14824]],[[14825,14826,14604]],[[14827,14828,14829]],[[14830,14831,14616]],[[14808,14832,14609]],[[14825,13090,14826]],[[14833,14834,14835]],[[14805,14811,14810]],[[14805,14810,3166]],[[14836,14837,14838]],[[12217,14839,3166]],[[14836,14826,13090]],[[14806,14837,14840]],[[14826,14841,14604]],[[14841,14826,14837]],[[14842,14843,14844]],[[14836,14838,14826]],[[14837,14826,14838]],[[3166,14841,14806]],[[14842,14844,14604]],[[13083,14809,14804]],[[14840,14837,14836]],[[14845,14846,14847]],[[14848,14849,14828]],[[14850,14849,14848]],[[12217,3159,14829]],[[14851,14852,14827]],[[14852,14853,14839]],[[14806,13083,14804]],[[14809,13083,14854]],[[14829,14855,14830]],[[14827,14848,14828]],[[14616,14851,14827]],[[14856,14846,14853]],[[14604,14844,14857]],[[14851,14616,14847]],[[14839,14846,14857]],[[14604,14857,14616]],[[14841,14857,14843]],[[14846,14856,14851]],[[14858,14855,14829]],[[14828,14849,14829]],[[13090,14840,14836]],[[13090,14806,14840]],[[14857,14846,14845]],[[14853,14852,14856]],[[14839,14853,14846]],[[14839,14827,14852]],[[13090,13083,14806]],[[14811,14805,14804]],[[14839,14848,14827]],[[12217,14850,14848]],[[3166,14839,14841]],[[12217,14848,14839]],[[14616,14845,14847]],[[14616,14857,14845]],[[14809,14859,14810]],[[3166,14810,14859]],[[14841,14842,14604]],[[14841,14843,14842]],[[14846,14851,14847]],[[14856,14852,14851]],[[14829,14850,12217]],[[14829,14849,14850]],[[14804,14809,14811]],[[13083,14860,14854]],[[14843,14857,14844]],[[14841,14839,14857]],[[3166,14806,14805]],[[14841,14837,14806]],[[14861,14862,14823]],[[14863,13097,14822]],[[14864,14831,14865]],[[14830,14616,14827]],[[14866,14867,14868]],[[14866,13090,14869]],[[14870,14813,14871]],[[14872,14609,14864]],[[14873,14817,13085]],[[14818,14803,14874]],[[14822,14824,14863]],[[13097,14874,14803]],[[14870,14871,14875]],[[14875,14876,14598]],[[14877,14878,14879]],[[14880,13091,14881]],[[14882,14883,14884]],[[14881,13091,14885]],[[14812,14886,14598]],[[14884,14883,14887]],[[14886,14888,14889]],[[14890,14879,14878]],[[14858,14891,14855]],[[14858,14829,3159]],[[14872,14870,14892]],[[14814,14813,14870]],[[14865,14831,14893]],[[14864,14616,14831]],[[14598,14835,14604]],[[14598,14833,14835]],[[14867,14869,14825]],[[14894,14835,14834]],[[14895,14815,14833]],[[14895,13091,14815]],[[14867,14825,14604]],[[14869,13090,14825]],[[3167,14818,14817]],[[14873,14896,14897]],[[14877,14897,14878]],[[14873,13085,14896]],[[14820,14874,13097]],[[14818,3167,14803]],[[13085,14821,13086]],[[14819,14874,14821]],[[14898,14868,14867]],[[14894,14834,14816]],[[14899,14900,14876]],[[14812,14598,14900]],[[14812,14899,14813]],[[14900,14598,14876]],[[14854,14861,14802]],[[14901,13097,14902]],[[14862,14903,14823]],[[14862,13083,14903]],[[14833,14815,14834]],[[14833,14598,14904]],[[14886,14904,14598]],[[14885,13091,14895]],[[14885,14886,14889]],[[14883,14905,14879]],[[14904,14886,14885]],[[14812,14814,14886]],[[14877,14879,3164]],[[14906,13085,13091]],[[14889,14905,14881]],[[14888,14886,14814]],[[14879,14887,14883]],[[14906,13091,14880]],[[14859,14809,14854]],[[13083,14862,14860]],[[14802,14861,14823]],[[14860,14862,14861]],[[14813,14899,14876]],[[14812,14900,14899]],[[14907,14908,14891]],[[14907,14865,14893]],[[14855,14908,14830]],[[14855,14891,14908]],[[14829,14830,14827]],[[14893,14831,14830]],[[14859,14854,3166]],[[14860,14861,14854]],[[14909,14858,14910]],[[3159,14872,14864]],[[14911,14822,14901]],[[14822,13097,14901]],[[14911,14912,14822]],[[14912,14823,14822]],[[14913,14858,3159]],[[14910,14865,14909]],[[14813,14875,14871]],[[14832,14598,14609]],[[3167,14914,3164]],[[14873,14897,14914]],[[14823,14903,14824]],[[13083,13097,14903]],[[14912,14803,3101]],[[14902,13097,14803]],[[14909,14865,14907]],[[14910,14913,14864]],[[3164,14814,3159]],[[3164,14879,14905]],[[14819,14818,14874]],[[14819,13085,14817]],[[14872,14807,14609]],[[14915,14832,14808]],[[14803,14912,14902]],[[3101,14802,14912]],[[14902,14911,14901]],[[14902,14912,14911]],[[14904,14895,14833]],[[14904,14885,14895]],[[14891,14909,14907]],[[14891,14858,14909]],[[14807,14892,14808]],[[14875,14598,14832]],[[14870,14875,14832]],[[14813,14876,14875]],[[14892,14915,14808]],[[14870,14832,14915]],[[14903,14863,14824]],[[14903,13097,14863]],[[14879,14890,14887]],[[14878,14897,14896]],[[14890,14896,14906]],[[14890,14878,14896]],[[14914,14817,14873]],[[14914,3167,14817]],[[14815,14816,14834]],[[13091,13090,14816]],[[14868,14898,14816]],[[14816,14898,14894]],[[14866,14868,14816]],[[14867,14604,14898]],[[14835,14898,14604]],[[14835,14894,14898]],[[14885,14889,14881]],[[14888,14905,14889]],[[14814,14905,14888]],[[14814,3164,14905]],[[14867,14866,14869]],[[14816,13090,14866]],[[14821,14820,13086]],[[14821,14874,14820]],[[14854,14802,3166]],[[14823,14912,14802]],[[14910,14864,14865]],[[14609,14616,14864]],[[14914,14877,3164]],[[14914,14897,14877]],[[14864,14913,3159]],[[14910,14858,14913]],[[14872,14892,14807]],[[14870,14915,14892]],[[14882,14880,14881]],[[14887,14890,14906]],[[14906,14884,14887]],[[14880,14882,14884]],[[14908,14893,14830]],[[14908,14907,14893]],[[14884,14906,14880]],[[14896,13085,14906]],[[14814,14872,3159]],[[14814,14870,14872]],[[14905,14882,14881]],[[14905,14883,14882]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ce263c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14916,14917,14918]],[[14919,14920,14921]],[[14921,14922,14923]],[[14924,14925,14918]],[[14926,14927,14928]],[[14922,14929,14923]],[[14930,14931,14932]],[[14933,14917,14916]],[[14934,14935,14936]],[[14937,14938,14922]],[[14939,14935,14940]],[[14941,14942,14943]],[[14930,14944,14945]],[[14946,14935,14947]],[[14920,14917,14948]],[[14949,14950,14944]],[[14936,14951,14952]],[[14943,14922,14938]],[[14953,14944,14930]],[[14933,14954,14917]],[[14952,14947,14936]],[[14955,14942,14941]],[[14946,14956,14940]],[[14956,14957,14958]],[[14959,14960,14956]],[[14952,14946,14947]],[[14955,14961,14962]],[[14963,14959,14956]],[[14962,14964,14951]],[[14964,14956,14946]],[[14961,14963,14956]],[[14954,14933,14931]],[[14965,14954,14931]],[[14933,14932,14931]],[[14966,14967,14931]],[[14948,14917,14954]],[[14926,14928,14957]],[[14927,14945,14928]],[[14960,14957,14956]],[[14958,14950,14968]],[[14919,14918,14920]],[[14925,14916,14918]],[[14921,14920,14948]],[[14918,14917,14920]],[[14921,14937,14922]],[[14969,14967,14960]],[[14967,14945,14927]],[[14945,14950,14928]],[[14960,14926,14957]],[[14960,14967,14926]],[[14970,14940,14968]],[[14970,14939,14940]],[[14935,14946,14940]],[[14964,14962,14956]],[[14956,14958,14940]],[[14958,14928,14950]],[[14952,14964,14946]],[[14952,14951,14964]],[[14942,14929,14922]],[[14971,14925,14924]],[[14933,14916,14932]],[[14953,14949,14944]],[[14972,14930,14932]],[[14944,14950,14945]],[[14937,14973,14938]],[[14937,14965,14969]],[[14971,14919,14923]],[[14948,14937,14921]],[[14940,14958,14968]],[[14957,14928,14958]],[[14947,14934,14936]],[[14947,14935,14934]],[[14929,14971,14923]],[[14929,14942,14971]],[[14923,14919,14921]],[[14924,14918,14919]],[[14974,14972,14925]],[[14974,14953,14972]],[[14972,14953,14930]],[[14949,14970,14950]],[[14972,14916,14925]],[[14972,14932,14916]],[[14936,14939,14974]],[[14936,14935,14939]],[[14963,14955,14941]],[[14955,14936,14942]],[[14938,14963,14941]],[[14951,14936,14955]],[[14955,14962,14951]],[[14961,14956,14962]],[[14919,14971,14924]],[[14942,14925,14971]],[[14926,14967,14927]],[[14966,14930,14945]],[[14969,14965,14967]],[[14965,14931,14967]],[[14948,14965,14937]],[[14948,14954,14965]],[[14959,14969,14960]],[[14973,14937,14969]],[[14959,14963,14938]],[[14961,14955,14963]],[[14950,14970,14968]],[[14974,14939,14970]],[[14974,14949,14953]],[[14974,14970,14949]],[[14959,14973,14969]],[[14959,14938,14973]],[[14930,14966,14931]],[[14945,14967,14966]],[[14941,14943,14938]],[[14942,14922,14943]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cfd40c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14975,14976,14977]],[[12951,14978,14979]],[[14980,14981,14982]],[[12955,14983,3110]],[[14984,11657,3106]],[[14985,14986,14987]],[[14988,14989,13144]],[[14990,14991,14992]],[[14993,13154,14994]],[[14995,14994,13154]],[[14996,14997,14998]],[[14999,15000,15001]],[[15002,15003,15004]],[[15005,12955,12957]],[[15006,12955,3110]],[[15007,15008,15009]],[[15010,15006,15011]],[[15012,14979,15013]],[[15014,3114,3113]],[[14984,15015,15016]],[[15017,13153,15018]],[[15019,15020,15021]],[[15022,15023,15021]],[[15024,15025,15023]],[[13143,13153,15021]],[[14996,15026,15027]],[[15028,15015,15029]],[[15030,15031,15027]],[[15032,14998,14997]],[[15027,14997,14996]],[[15033,15030,15016]],[[15031,15034,14997]],[[14998,13153,14996]],[[15002,15035,15036]],[[15037,15038,15025]],[[15039,14984,3106]],[[15016,15026,14984]],[[15016,15030,15026]],[[15016,15028,15033]],[[15040,15041,3106]],[[15042,15020,15038]],[[14997,15034,15032]],[[15021,13153,15043]],[[15043,14998,15032]],[[15043,13153,14998]],[[15032,15034,15044]],[[15031,15030,15033]],[[15045,15020,15042]],[[13143,15021,15020]],[[15025,15038,15019]],[[15039,15046,15042]],[[15047,15040,15048]],[[14983,12955,15005]],[[15023,15029,15024]],[[15015,15024,15029]],[[15049,15033,15050]],[[15033,15028,15050]],[[15025,15019,15021]],[[15038,15020,15019]],[[15051,15040,3106]],[[15052,15053,15054]],[[15055,15056,15053]],[[15057,15051,3106]],[[15058,15054,15059]],[[15056,15060,15057]],[[15058,15047,15054]],[[15052,15055,15053]],[[15055,15060,15056]],[[15061,15040,15051]],[[15039,15042,15038]],[[15045,13143,15020]],[[14984,14996,11657]],[[14984,15026,14996]],[[15053,15062,15054]],[[15047,15048,15052]],[[15063,15064,15065]],[[15047,15052,15054]],[[15066,15036,15067]],[[15046,15039,15004]],[[15068,15067,15063]],[[15036,15035,15069]],[[15065,15070,15058]],[[15071,15064,15072]],[[15046,15045,15042]],[[15073,15003,15002]],[[15069,15035,15004]],[[15002,15036,15066]],[[15039,15069,15004]],[[15071,15070,15064]],[[15065,15064,15070]],[[15067,15036,15072]],[[15059,15065,15058]],[[15074,15063,15065]],[[15050,15028,15029]],[[15016,15015,15028]],[[15039,15037,14984]],[[15039,15038,15037]],[[15075,15076,15068]],[[15002,15004,15035]],[[15030,15027,15026]],[[15031,14997,15027]],[[15070,15047,15058]],[[15070,15077,15047]],[[14984,15024,15015]],[[14984,15037,15024]],[[15078,15057,3106]],[[15061,15048,15040]],[[15079,15080,15005]],[[15079,15056,15080]],[[15072,15041,15071]],[[15081,15047,15077]],[[15043,15022,15021]],[[15022,15029,15023]],[[13143,15073,15066]],[[15003,15045,15046]],[[15023,15025,15021]],[[15024,15037,15025]],[[15074,15059,15079]],[[15053,15056,15079]],[[15066,15073,15002]],[[13143,15045,15073]],[[15082,15011,3110]],[[15083,15084,15085]],[[12947,14999,12948]],[[14994,3161,14993]],[[15082,15086,15011]],[[15085,12951,12955]],[[15083,15087,15084]],[[15086,15082,15087]],[[15088,14990,14992]],[[15089,14980,14999]],[[15075,12957,15090]],[[15090,12948,15091]],[[14978,15092,15093]],[[14979,3114,15013]],[[15094,15095,15096]],[[13144,12948,15095]],[[15097,15098,12947]],[[15012,12951,14979]],[[15076,15090,15091]],[[12957,12948,15090]],[[15099,15008,15100]],[[15009,15098,15013]],[[12948,14999,14980]],[[14992,3113,3161]],[[15101,15022,15043]],[[15050,15029,15022]],[[15079,15005,12957]],[[15080,15056,15057]],[[15080,15057,15102]],[[15060,15051,15057]],[[15103,14985,15104]],[[13143,15066,15068]],[[15075,15063,12957]],[[15065,15059,15074]],[[3112,15082,3110]],[[14978,15093,14979]],[[15067,15072,15064]],[[15036,15069,15072]],[[15105,15000,14999]],[[15100,3113,15001]],[[14999,15001,15089]],[[15000,15100,15001]],[[3113,14981,15001]],[[14981,14980,15089]],[[14991,15106,15107]],[[14982,15108,14980]],[[14995,15109,15110]],[[14992,14981,3113]],[[15111,15112,15110]],[[15113,14990,15088]],[[15095,15114,15096]],[[15089,15001,14981]],[[15096,15114,14981]],[[15108,12948,14980]],[[15113,15106,14990]],[[15107,15115,15116]],[[15117,15118,14979]],[[3112,3114,15118]],[[15099,15100,15000]],[[15008,15007,15100]],[[15017,15018,11657]],[[13153,13154,14976]],[[15088,14992,14994]],[[15110,15088,14994]],[[3106,15041,15039]],[[15081,15077,15071]],[[15081,15071,15041]],[[15077,15070,15071]],[[15097,15119,15012]],[[12952,12951,15012]],[[15083,15085,12955]],[[15120,14978,15085]],[[15084,15120,15085]],[[15092,3112,15117]],[[15082,15121,15087]],[[15121,15092,15084]],[[15084,15092,15120]],[[15082,3112,15092]],[[15085,14978,12951]],[[15120,15092,14978]],[[14993,15122,13154]],[[15018,13153,14976]],[[15011,15006,3110]],[[15011,15086,15010]],[[15087,15083,15086]],[[15123,15006,15010]],[[15123,15083,12955]],[[15010,15086,15083]],[[15117,14979,15093]],[[15118,3114,14979]],[[15105,15099,15000]],[[15124,15008,15099]],[[15114,15108,14982]],[[15114,12948,15108]],[[14989,14987,15125]],[[15125,12948,14989]],[[15097,15012,15098]],[[15119,12952,15012]],[[15092,15117,15093]],[[3112,15118,15117]],[[15014,15013,3114]],[[15098,15012,15013]],[[15101,15049,15050]],[[15049,15031,15033]],[[15034,15049,15044]],[[15034,15031,15049]],[[15022,15101,15050]],[[15043,15032,15044]],[[15087,15121,15084]],[[15082,15092,15121]],[[15126,15127,14993]],[[15122,14976,13154]],[[11657,15122,15127]],[[14977,14976,15122]],[[3113,15007,15014]],[[3113,15100,15007]],[[13143,15068,15076]],[[15066,15067,15068]],[[15078,15102,15057]],[[15005,15080,15102]],[[15040,15081,15041]],[[15040,15047,15081]],[[15076,15075,15090]],[[15068,15063,15075]],[[12957,15063,15074]],[[15067,15064,15063]],[[15109,14995,13154]],[[15110,14994,14995]],[[15102,15078,15005]],[[3106,3110,14983]],[[13143,14988,13144]],[[15104,15076,15103]],[[15106,15113,15111]],[[15106,14991,14990]],[[15044,15101,15043]],[[15044,15049,15101]],[[14981,15114,14982]],[[15095,12948,15114]],[[14977,15128,14975]],[[11657,15018,15128]],[[15124,15009,15008]],[[12947,15098,15009]],[[12952,15097,12947]],[[12952,15119,15097]],[[13144,14989,12948]],[[14988,15104,14989]],[[13144,15094,15115]],[[13144,15095,15094]],[[15126,14993,3161]],[[15127,15122,14993]],[[14986,15125,14987]],[[14986,12948,15125]],[[14989,14985,14987]],[[15091,12948,14986]],[[15104,14985,14989]],[[15076,15091,15103]],[[14986,15103,15091]],[[14986,14985,15103]],[[15105,15124,15099]],[[12947,15009,15124]],[[14996,15017,11657]],[[14996,13153,15017]],[[15009,15014,15007]],[[15009,15013,15014]],[[11657,14977,15122]],[[11657,15128,14977]],[[15074,15079,12957]],[[15062,15053,15079]],[[15059,15062,15079]],[[15059,15054,15062]],[[11657,15126,3161]],[[11657,15127,15126]],[[12947,15105,14999]],[[12947,15124,15105]],[[14991,15116,14992]],[[15096,14981,14992]],[[15055,15048,15061]],[[15055,15052,15048]],[[15060,15061,15051]],[[15060,15055,15061]],[[15115,15096,15116]],[[15115,15094,15096]],[[13143,15104,14988]],[[13143,15076,15104]],[[13144,15106,13154]],[[15113,15112,15111]],[[13154,15106,15111]],[[15107,15116,14991]],[[13144,15107,15106]],[[13144,15115,15107]],[[15078,15129,15005]],[[15078,3106,14983]],[[15129,14983,15005]],[[15129,15078,14983]],[[15004,15003,15046]],[[15073,15045,15003]],[[14994,14992,3161]],[[15116,15096,14992]],[[15112,15088,15110]],[[15112,15113,15088]],[[15111,15109,13154]],[[15111,15110,15109]],[[15018,14975,15128]],[[15018,14976,14975]],[[15006,15123,12955]],[[15010,15083,15123]],[[15041,15069,15039]],[[15041,15072,15069]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d13392-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15130,15131,15132]],[[15133,15134,15135]],[[15130,15136,15131]],[[15137,15131,15136]],[[15138,15139,15140]],[[15141,15142,15143]],[[15144,15145,15142]],[[15137,15146,15147]],[[15148,15142,15145]],[[15149,15150,15151]],[[15133,15135,15151]],[[15152,15153,15154]],[[15155,15137,15136]],[[15156,15150,15131]],[[15157,15158,15148]],[[15153,15159,15160]],[[15159,15161,15162]],[[15161,15153,15148]],[[15160,15159,15163]],[[15161,15148,15164]],[[15162,15164,15165]],[[15162,15161,15164]],[[15163,15165,15166]],[[15164,15148,15165]],[[15167,15168,15169]],[[15170,15157,15171]],[[15170,15139,15157]],[[15157,15148,15145]],[[15172,15173,15174]],[[15175,15176,15177]],[[15178,15174,15173]],[[15179,15180,15181]],[[15182,15177,15149]],[[15154,15150,15183]],[[15169,15178,15130]],[[15184,15168,15144]],[[15147,15185,15186]],[[15151,15150,15187]],[[15188,15173,15172]],[[15176,15181,15177]],[[15189,15190,15174]],[[15189,15191,15192]],[[15156,15193,15187]],[[15185,15134,15194]],[[15130,15155,15136]],[[15190,15195,15172]],[[15130,15173,15155]],[[15130,15178,15173]],[[15196,15146,15197]],[[15188,15155,15173]],[[15185,15146,15175]],[[15146,15188,15197]],[[15178,15198,15174]],[[15181,15183,15149]],[[15192,15141,15189]],[[15141,15143,15180]],[[15179,15189,15180]],[[15174,15191,15189]],[[15197,15190,15176]],[[15197,15195,15190]],[[15199,15167,15130]],[[15200,15165,15158]],[[15174,15198,15191]],[[15192,15201,15141]],[[15194,15133,15151]],[[15149,15183,15150]],[[15144,15171,15145]],[[15168,15140,15170]],[[15141,15201,15142]],[[15144,15168,15171]],[[15186,15185,15193]],[[15134,15177,15135]],[[15163,15159,15162]],[[15154,15183,15152]],[[15175,15134,15185]],[[15175,15177,15134]],[[15187,15194,15151]],[[15194,15134,15133]],[[15190,15172,15174]],[[15195,15188,15172]],[[15167,15140,15168]],[[15167,15138,15140]],[[15199,15138,15167]],[[15165,15148,15158]],[[15202,15199,15130]],[[15202,15200,15199]],[[15132,15166,15202]],[[15132,15163,15166]],[[15132,15202,15130]],[[15166,15165,15202]],[[15199,15200,15138]],[[15202,15165,15200]],[[15177,15182,15135]],[[15177,15181,15149]],[[15197,15188,15195]],[[15137,15155,15188]],[[15178,15169,15201]],[[15201,15169,15184]],[[15165,15163,15162]],[[15160,15154,15153]],[[15188,15146,15137]],[[15197,15176,15196]],[[15190,15179,15176]],[[15180,15152,15181]],[[15137,15147,15131]],[[15146,15185,15147]],[[15175,15196,15176]],[[15175,15146,15196]],[[15176,15179,15181]],[[15190,15189,15179]],[[15138,15158,15139]],[[15138,15200,15158]],[[15171,15157,15145]],[[15139,15158,15157]],[[15193,15194,15187]],[[15193,15185,15194]],[[15167,15169,15130]],[[15168,15184,15169]],[[15147,15186,15131]],[[15187,15150,15156]],[[15186,15156,15131]],[[15186,15193,15156]],[[15180,15143,15152]],[[15142,15148,15143]],[[15168,15170,15171]],[[15140,15139,15170]],[[15135,15149,15151]],[[15135,15182,15149]],[[15189,15141,15180]],[[15192,15178,15201]],[[15198,15192,15191]],[[15198,15178,15192]],[[15181,15152,15183]],[[15143,15148,15153]],[[15143,15153,15152]],[[15161,15159,15153]],[[15201,15144,15142]],[[15201,15184,15144]],[[15132,15160,15163]],[[15132,15154,15160]],[[15203,15154,15132]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d15abd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15204,15205,15206]],[[15206,15205,15207]],[[15205,15208,15209]],[[15209,15210,15205]],[[15211,15212,15206]],[[15213,15209,15208]],[[15204,15206,15213]],[[15212,15209,15214]],[[15204,15213,15208]],[[15214,15209,15213]],[[15211,15206,15207]],[[15214,15213,15206]],[[15206,15212,15214]],[[15211,15209,15212]],[[15207,15205,15210]],[[15204,15208,15205]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d3cb76-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15215,15216,15217]],[[15218,15217,15219]],[[15220,15221,15222]],[[15215,15217,15222]],[[15221,15223,15224]],[[15225,15216,15215]],[[15215,15226,15225]],[[15227,15228,15225]],[[15218,15222,15217]],[[15229,15215,15222]],[[15230,15224,15226]],[[15231,15226,15224]],[[15221,15215,15229]],[[15230,15226,15215]],[[15231,15227,15226]],[[15228,15216,15225]],[[15226,15227,15225]],[[15231,15228,15227]],[[15232,15220,15219]],[[15220,15223,15221]],[[15220,15233,15219]],[[15220,15222,15233]],[[15222,15221,15229]],[[15220,15232,15223]],[[15221,15230,15215]],[[15221,15224,15230]],[[15228,15232,15219]],[[15223,15231,15224]],[[15233,15218,15219]],[[15233,15222,15218]],[[15228,15223,15232]],[[15228,15231,15223]],[[15234,15216,15228]],[[15217,15235,15219]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d48e56-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15236,15237,15238]],[[15239,15240,15236]],[[15241,15242,15243]],[[15244,15245,15240]],[[15242,15246,15243]],[[15247,15237,15236]],[[15245,15248,15247]],[[15249,15237,15248]],[[15250,15242,15251]],[[15239,15244,15240]],[[15250,15246,15242]],[[15252,15253,15245]],[[15252,15254,15249]],[[15249,15248,15253]],[[15250,15254,15252]],[[15255,15249,15254]],[[15250,15255,15254]],[[15256,15249,15255]],[[15252,15245,15244]],[[15253,15248,15245]],[[15251,15242,15241]],[[15246,15250,15252]],[[15257,15241,15258]],[[15243,15246,15252]],[[15259,15241,15257]],[[15241,15252,15258]],[[15252,15249,15253]],[[15256,15237,15249]],[[15259,15257,15239]],[[15260,15244,15239]],[[15259,15239,15238]],[[15257,15260,15239]],[[15245,15247,15240]],[[15248,15237,15247]],[[15256,15250,15251]],[[15256,15255,15250]],[[15239,15236,15238]],[[15240,15247,15236]],[[15260,15252,15244]],[[15241,15243,15252]],[[15258,15260,15257]],[[15258,15252,15260]],[[15251,15259,15238]],[[15251,15241,15259]],[[15261,15237,15256]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d5a08f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbc0149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15262,15263,15264]],[[15265,15264,15266]],[[15267,15268,15269]],[[15270,15271,15272]],[[15268,15273,15270]],[[15274,15275,15276]],[[15277,15274,15276]],[[15278,15274,15277]],[[15279,15276,15265]],[[15280,15281,15282]],[[15282,15279,15283]],[[15265,15284,15267]],[[15285,15279,15265]],[[15265,15276,15284]],[[15269,15286,15267]],[[15269,15263,15286]],[[15269,15268,15272]],[[15273,15271,15270]],[[15282,15281,15279]],[[15275,15273,15268]],[[15262,15265,15286]],[[15268,15270,15272]],[[15284,15268,15267]],[[15276,15275,15268]],[[15286,15265,15267]],[[15276,15268,15284]],[[15277,15281,15280]],[[15277,15276,15281]],[[15285,15265,15266]],[[15285,15287,15279]],[[15283,15279,15287]],[[15281,15276,15279]],[[15265,15262,15264]],[[15286,15263,15262]],[[15288,15277,15289]],[[15288,15278,15277]],[[15289,15280,15282]],[[15289,15277,15280]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d5c6c6-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15290,15291,15292]],[[15293,15294,15295]],[[15296,15297,15298]],[[15299,15300,15290]],[[15296,15298,15301]],[[15302,15296,15291]],[[15295,15294,15303]],[[15298,15297,15304]],[[15295,15303,15290]],[[15294,15298,15304]],[[15294,15299,15303]],[[15300,15302,15290]],[[15301,15295,15290]],[[15293,15298,15294]],[[15301,15290,15292]],[[15303,15299,15290]],[[15294,15304,15305]],[[15297,15296,15304]],[[15294,15305,15299]],[[15304,15296,15305]],[[15301,15293,15295]],[[15301,15298,15293]],[[15290,15302,15291]],[[15305,15296,15302]],[[15305,15300,15299]],[[15305,15302,15300]],[[15306,15291,15296]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d97113-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15307,15308,15309]],[[15310,15311,15312]],[[15313,15314,15315]],[[15313,15316,15314]],[[15315,15314,15317]],[[15317,15314,15318]],[[15318,15314,15319]],[[15318,15320,15317]],[[15321,15322,15312]],[[15318,15323,15324]],[[15322,15316,15310]],[[15309,15325,15326]],[[15312,15322,15310]],[[15327,15328,15329]],[[15314,15316,15330]],[[15308,15328,15309]],[[15322,15329,15316]],[[15322,15327,15329]],[[15319,15314,15330]],[[15315,15311,15313]],[[15310,15313,15311]],[[15310,15316,15313]],[[15331,15318,15324]],[[15323,15325,15324]],[[15330,15323,15319]],[[15326,15325,15323]],[[15330,15326,15323]],[[15330,15309,15326]],[[15316,15307,15330]],[[15328,15325,15309]],[[15323,15318,15319]],[[15331,15320,15318]],[[15327,15321,15312]],[[15327,15322,15321]],[[15330,15307,15309]],[[15316,15329,15308]],[[15316,15308,15307]],[[15329,15328,15308]],[[15332,15328,15327]],[[15325,15333,15324]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da0cd1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15334,15335,15336]],[[15337,15338,15339]],[[15340,15341,15342]],[[15343,15344,15345]],[[15346,15347,15348]],[[15349,15350,15338]],[[15351,15348,15352]],[[15353,15354,15355]],[[15356,15348,15357]],[[15357,15335,15334]],[[15358,15359,15342]],[[15360,15350,15359]],[[15352,15347,15361]],[[15362,15363,15364]],[[15349,15355,15350]],[[15364,15365,15362]],[[15335,15344,15366]],[[15367,15342,15359]],[[15341,15358,15342]],[[15360,15359,15358]],[[15360,15341,15361]],[[15345,15340,15343]],[[15345,15357,15348]],[[15357,15334,15368]],[[15347,15346,15339]],[[15356,15357,15368]],[[15356,15368,15337]],[[15334,15338,15337]],[[15346,15356,15339]],[[15346,15348,15356]],[[15366,15336,15335]],[[15369,15343,15342]],[[15367,15362,15342]],[[15369,15370,15343]],[[15370,15371,15343]],[[15366,15344,15371]],[[15362,15369,15342]],[[15371,15344,15343]],[[15365,15369,15362]],[[15365,15372,15370]],[[15350,15354,15359]],[[15350,15355,15354]],[[15354,15363,15367]],[[15354,15353,15373]],[[15354,15373,15363]],[[15373,15374,15364]],[[15361,15341,15352]],[[15360,15358,15341]],[[15335,15357,15345]],[[15348,15347,15352]],[[15335,15345,15344]],[[15340,15342,15343]],[[15354,15367,15359]],[[15363,15362,15367]],[[15364,15375,15365]],[[15336,15338,15334]],[[15365,15375,15372]],[[15374,15355,15376]],[[15365,15370,15369]],[[15372,15377,15370]],[[15345,15351,15352]],[[15345,15348,15351]],[[15370,15377,15378]],[[15374,15353,15355]],[[15336,15376,15349]],[[15336,15366,15376]],[[15375,15377,15372]],[[15375,15376,15377]],[[15356,15337,15339]],[[15368,15334,15337]],[[15373,15364,15363]],[[15373,15353,15374]],[[15339,15361,15347]],[[15339,15360,15361]],[[15336,15349,15338]],[[15376,15355,15349]],[[15370,15378,15371]],[[15377,15376,15378]],[[15352,15340,15345]],[[15352,15341,15340]],[[15375,15374,15376]],[[15375,15364,15374]],[[15378,15366,15371]],[[15378,15376,15366]],[[15360,15379,15350]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da0cdd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15380,15381,15382]],[[15383,15384,15385]],[[15386,15387,15388]],[[15389,15390,15391]],[[15392,15391,15380]],[[15393,15394,15395]],[[15396,15397,15398]],[[15399,15386,15400]],[[15401,15380,15382]],[[15391,15381,15380]],[[15401,15392,15380]],[[15402,15398,15397]],[[15403,15404,15405]],[[15390,15381,15391]],[[15392,15393,15391]],[[15384,15406,15385]],[[15388,15394,15401]],[[15407,15396,15398]],[[15395,15407,15408]],[[15407,15388,15396]],[[15409,15395,15383]],[[15410,15402,15411]],[[15389,15409,15412]],[[15394,15407,15395]],[[15393,15389,15391]],[[15412,15385,15390]],[[15413,15414,15406]],[[15414,15381,15406]],[[15409,15383,15412]],[[15406,15381,15390]],[[15384,15413,15406]],[[15400,15381,15414]],[[15383,15415,15384]],[[15415,15416,15413]],[[15412,15383,15385]],[[15415,15413,15384]],[[15408,15417,15383]],[[15408,15398,15402]],[[15413,15416,15414]],[[15417,15408,15402]],[[15408,15407,15398]],[[15394,15388,15407]],[[15383,15395,15408]],[[15409,15393,15395]],[[15416,15402,15410]],[[15386,15381,15400]],[[15399,15405,15386]],[[15387,15386,15404]],[[15410,15411,15418]],[[15403,15387,15404]],[[15418,15399,15400]],[[15405,15404,15386]],[[15411,15402,15397]],[[15416,15415,15417]],[[15387,15403,15397]],[[15418,15400,15410]],[[15412,15390,15389]],[[15385,15406,15390]],[[15416,15417,15402]],[[15415,15383,15417]],[[15414,15410,15400]],[[15414,15416,15410]],[[15411,15403,15418]],[[15411,15397,15403]],[[15388,15401,15382]],[[15394,15392,15401]],[[15387,15396,15388]],[[15387,15397,15396]],[[15418,15405,15399]],[[15418,15403,15405]],[[15389,15393,15409]],[[15392,15394,15393]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da8252-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15419,15420,15421]],[[15422,15423,15424]],[[15424,15425,15426]],[[15427,15428,15429]],[[15430,15426,15431]],[[15432,15420,15433]],[[15434,15435,15425]],[[15425,15436,15437]],[[15438,15434,15425]],[[15425,15437,15426]],[[15435,15439,15425]],[[15440,15436,15439]],[[15440,15441,15442]],[[15440,15439,15441]],[[15423,15443,15424]],[[15438,15425,15424]],[[15430,15444,15433]],[[15430,15431,15444]],[[15445,15443,15423]],[[15438,15424,15443]],[[15419,15430,15433]],[[15446,15426,15430]],[[15431,15429,15444]],[[15431,15427,15429]],[[15426,15437,15431]],[[15428,15420,15432]],[[15447,15448,15449]],[[15446,15447,15449]],[[15419,15446,15430]],[[15449,15422,15446]],[[15441,15450,15442]],[[15435,15443,15445]],[[15450,15435,15445]],[[15441,15439,15435]],[[15419,15433,15420]],[[15444,15429,15432]],[[15451,15447,15446]],[[15448,15445,15449]],[[15426,15422,15424]],[[15449,15445,15423]],[[15442,15450,15445]],[[15441,15435,15450]],[[15446,15422,15426]],[[15449,15423,15422]],[[15444,15432,15433]],[[15429,15428,15432]],[[15437,15428,15427]],[[15440,15420,15428]],[[15439,15436,15425]],[[15440,15437,15436]],[[15442,15451,15421]],[[15442,15448,15451]],[[15443,15434,15438]],[[15443,15435,15434]],[[15451,15419,15421]],[[15451,15446,15419]],[[15451,15448,15447]],[[15442,15445,15448]],[[15431,15437,15427]],[[15440,15428,15437]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95dca4f1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15452,15453,15454]],[[15455,15456,15457]],[[15458,15455,15459]],[[15460,15461,15454]],[[15462,15456,15455]],[[15455,15458,15462]],[[15462,15457,15456]],[[15459,15455,15463]],[[15464,15465,15466]],[[15464,15463,15465]],[[15459,15464,15452]],[[15465,15463,15466]],[[15467,15462,15468]],[[15457,15463,15455]],[[15467,15457,15462]],[[15466,15463,15457]],[[15469,15467,15468]],[[15466,15457,15467]],[[15459,15452,15470]],[[15471,15467,15469]],[[15454,15453,15460]],[[15452,15466,15471]],[[15452,15471,15453]],[[15466,15467,15471]],[[15458,15468,15462]],[[15458,15472,15468]],[[15471,15469,15453]],[[15461,15472,15454]],[[15469,15460,15453]],[[15469,15468,15461]],[[15470,15454,15472]],[[15470,15452,15454]],[[15469,15461,15460]],[[15468,15472,15461]],[[15452,15464,15466]],[[15459,15463,15464]],[[15473,15472,15458]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95de048f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15474,15475,15476]],[[15477,15478,15479]],[[15480,15477,15479]],[[15481,15482,15483]],[[15484,15478,15485]],[[15477,15480,15486]],[[15484,15485,15487]],[[15488,15489,15490]],[[15478,15491,15485]],[[15486,15480,15490]],[[15492,15487,15476]],[[15485,15491,15493]],[[15492,15476,15475]],[[15494,15495,15496]],[[15487,15497,15476]],[[15481,15491,15482]],[[15487,15493,15497]],[[15487,15485,15493]],[[15498,15475,15474]],[[15481,15493,15491]],[[15484,15492,15496]],[[15494,15474,15499]],[[15492,15475,15498]],[[15476,15497,15474]],[[15499,15474,15497]],[[15496,15498,15474]],[[15483,15482,15486]],[[15491,15478,15486]],[[15500,15488,15501]],[[15488,15502,15481]],[[15490,15489,15483]],[[15502,15500,15503]],[[15488,15481,15489]],[[15497,15493,15481]],[[15495,15490,15480]],[[15501,15488,15490]],[[15474,15494,15496]],[[15504,15495,15494]],[[15479,15484,15496]],[[15479,15478,15484]],[[15496,15492,15498]],[[15484,15487,15492]],[[15491,15486,15482]],[[15478,15477,15486]],[[15495,15501,15490]],[[15495,15500,15501]],[[15504,15500,15495]],[[15499,15497,15481]],[[15504,15503,15500]],[[15504,15494,15499]],[[15504,15499,15503]],[[15488,15500,15502]],[[15490,15483,15486]],[[15489,15481,15483]],[[15502,15499,15481]],[[15502,15503,15499]],[[15480,15505,15495]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95df8b58-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15506,15507,15508]],[[15509,15510,15511]],[[15512,15509,15511]],[[15508,15513,15506]],[[15514,15511,15515]],[[15510,15516,15511]],[[15517,15516,15510]],[[15518,15519,8761]],[[8674,15517,8675]],[[8674,15516,15517]],[[15506,15520,15521]],[[8674,8760,15520]],[[8675,15522,8761]],[[15523,15521,8760]],[[15524,15514,15525]],[[15508,15516,15526]],[[15514,15515,15508]],[[15511,15516,15515]],[[15514,15508,15507]],[[15515,15516,15508]],[[8674,15526,15516]],[[8674,15520,15526]],[[15527,15518,8761]],[[15525,15507,15519]],[[8761,15524,15528]],[[15512,15511,15514]],[[8761,15519,8760]],[[15519,15507,15506]],[[15526,15513,15508]],[[15526,15520,15513]],[[8760,15521,15520]],[[15521,15519,15506]],[[15520,15506,15513]],[[15521,15523,15519]],[[8760,15519,15523]],[[15518,15525,15519]],[[15528,15529,8761]],[[15528,15518,15529]],[[15528,15525,15518]],[[15528,15524,15525]],[[15522,15512,15524]],[[15522,15517,15509]],[[15522,15509,15512]],[[15517,15510,15509]],[[8761,15522,15524]],[[8675,15517,15522]],[[15525,15514,15507]],[[15524,15512,15514]],[[15529,15527,8761]],[[15529,15518,15527]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e04e3b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9bf749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15530,15531,15532]],[[15533,15534,15535]],[[15536,15537,15538]],[[15537,15539,15538]],[[15540,15541,15542]],[[15543,15538,15542]],[[15544,15541,15545]],[[15546,15547,15536]],[[15548,15549,15550]],[[15551,15552,15537]],[[15539,15553,15538]],[[15547,15551,15537]],[[15554,15552,15555]],[[15537,15552,15554]],[[15556,15557,15558]],[[15539,15559,15541]],[[15550,15552,15551]],[[15539,15554,15559]],[[15539,15537,15554]],[[15544,15545,15560]],[[15559,15554,15555]],[[15561,15544,15531]],[[15545,15559,15555]],[[15546,15536,15562]],[[15544,15542,15541]],[[15563,15536,15564]],[[15547,15537,15536]],[[15535,15562,15565]],[[15546,15548,15551]],[[15535,15565,15533]],[[15562,15536,15565]],[[15539,15541,15553]],[[15559,15545,15541]],[[15566,15564,15561]],[[15540,15553,15541]],[[15533,15566,15534]],[[15533,15565,15566]],[[15565,15563,15566]],[[15536,15538,15564]],[[15566,15563,15564]],[[15565,15536,15563]],[[15538,15540,15542]],[[15538,15553,15540]],[[15545,15556,15560]],[[15555,15557,15556]],[[15555,15550,15549]],[[15555,15552,15550]],[[15566,15561,15530]],[[15564,15538,15543]],[[15531,15544,15560]],[[15561,15543,15544]],[[15546,15551,15547]],[[15548,15550,15551]],[[15558,15567,15560]],[[15530,15561,15531]],[[15556,15558,15560]],[[15567,15531,15560]],[[15535,15546,15562]],[[15535,15548,15546]],[[15544,15543,15542]],[[15561,15564,15543]],[[15557,15567,15558]],[[15532,15534,15530]],[[15567,15532,15531]],[[15534,15566,15530]],[[15545,15555,15556]],[[15549,15557,15555]],[[15557,15532,15567]],[[15557,15534,15532]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e1395b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15568,15569,15570]],[[15571,15572,15573]],[[15571,10005,11645]],[[15574,15569,15568]],[[15575,15576,15577]],[[15569,15573,15575]],[[15578,15579,15571]],[[15573,15574,15571]],[[15570,15569,15575]],[[15571,15579,15580]],[[11645,15578,15571]],[[15578,15581,15577]],[[15573,15572,15575]],[[15579,15578,15576]],[[15582,15583,15584]],[[15575,15577,12553]],[[15585,15581,15578]],[[15584,12553,15577]],[[15579,15576,15580]],[[15575,12553,10000]],[[15578,15577,15576]],[[15581,15584,15577]],[[11645,15585,15578]],[[11645,12776,15582]],[[15585,15584,15581]],[[15583,12776,12553]],[[10006,15570,10000]],[[15586,10005,15574]],[[15586,15568,15570]],[[15574,15573,15569]],[[15585,15582,15584]],[[15585,11645,15582]],[[15570,15575,10000]],[[15580,15576,15575]],[[15586,15574,15568]],[[10005,15571,15574]],[[15572,15580,15575]],[[15572,15571,15580]],[[15584,15583,12553]],[[15582,12776,15583]],[[10006,15586,15570]],[[10006,10005,15586]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e24a9a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15587,15588,12699]],[[15588,14325,12674]],[[14320,15589,15590]],[[15591,15592,14322]],[[15593,14322,14326]],[[15594,14320,14322]],[[15595,15594,14322]],[[15596,15597,15598]],[[15599,15600,14320]],[[15596,15598,14325]],[[15601,15602,15603]],[[15595,14322,15592]],[[15604,15602,15605]],[[15603,15592,15591]],[[15606,15607,15593]],[[15608,15604,15609]],[[14320,15590,14325]],[[15610,12686,12674]],[[15589,15611,15590]],[[15598,12674,14325]],[[15612,15613,15600]],[[15589,14320,15600]],[[15590,15614,15615]],[[15613,15589,15600]],[[15616,15617,14326]],[[15588,12674,12699]],[[15618,15595,15592]],[[15594,12686,14320]],[[15619,15608,15620]],[[15609,15604,15605]],[[15615,15610,15598]],[[15597,15615,15598]],[[15614,15611,15610]],[[15612,15611,15613]],[[15601,15605,15602]],[[15593,15607,15609]],[[12685,15594,15595]],[[12685,12686,15594]],[[15617,15621,15619]],[[15620,15617,15619]],[[15620,15606,15593]],[[15619,15621,15608]],[[15616,15622,15587]],[[14326,14325,15622]],[[15590,15611,15614]],[[15589,15613,15611]],[[15590,15596,14325]],[[15623,15597,15596]],[[12686,15599,14320]],[[12686,15600,15599]],[[15598,15610,12674]],[[15600,12686,15610]],[[15623,15615,15597]],[[15614,15610,15615]],[[15590,15623,15596]],[[15590,15615,15623]],[[15606,15620,15608]],[[12699,12685,15604]],[[15606,15608,15607]],[[15618,12685,15595]],[[15621,15604,15608]],[[15621,12699,15604]],[[15604,15603,15602]],[[15604,12685,15618]],[[15593,15609,15605]],[[15607,15608,15609]],[[15610,15612,15600]],[[15610,15611,15612]],[[15622,15616,14326]],[[15587,12699,15616]],[[15621,15616,12699]],[[15621,15617,15616]],[[15593,15601,14322]],[[15593,15605,15601]],[[15601,15591,14322]],[[15601,15603,15591]],[[14326,15620,15593]],[[14326,15617,15620]],[[15622,15588,15587]],[[15622,14325,15588]],[[15603,15618,15592]],[[15603,15604,15618]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e5572f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15624,15625,9879]],[[15626,15627,9878]],[[9880,15625,15626]],[[15625,9876,9879]],[[15626,15625,15624]],[[9880,9876,15625]],[[9880,15626,9878]],[[15627,9879,9878]],[[15624,15627,15626]],[[15624,9879,15627]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e5ccd1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15628,15629,15630]],[[15631,15628,15630]],[[15632,15633,15634]],[[15635,15629,15636]],[[15637,15638,15639]],[[15640,15641,15629]],[[15642,15643,15644]],[[15645,15629,15628]],[[15646,15647,15648]],[[15649,15650,15651]],[[15644,15652,15653]],[[15653,15654,15649]],[[15655,15656,15657]],[[15658,15650,15654]],[[15659,15643,15660]],[[15661,15662,15652]],[[15663,15647,15630]],[[15660,15643,15642]],[[15631,15664,15628]],[[15665,15666,15667]],[[15668,15639,15666]],[[15669,15656,15639]],[[15655,15667,15666]],[[15635,15670,15629]],[[15635,15667,15670]],[[15634,15670,15667]],[[15641,15671,15636]],[[15672,15668,15665]],[[15673,15631,15630]],[[15673,15664,15631]],[[15651,15670,15634]],[[15650,15629,15670]],[[15632,15649,15633]],[[15650,15670,15651]],[[15632,15634,15667]],[[15633,15651,15634]],[[15638,15669,15639]],[[15656,15666,15639]],[[15638,15656,15669]],[[15655,15657,15642]],[[15674,15657,15656]],[[15674,15675,15657]],[[15671,15665,15636]],[[15665,15667,15676]],[[15635,15665,15676]],[[15668,15637,15639]],[[15664,15675,15674]],[[15664,15673,15677]],[[15678,15679,15628]],[[15679,15640,15645]],[[15628,15679,15645]],[[15680,15638,15637]],[[15648,15647,15681]],[[15663,15682,15647]],[[15633,15649,15651]],[[15654,15650,15649]],[[15632,15653,15649]],[[15652,15644,15661]],[[15652,15662,15654]],[[15682,15650,15662]],[[15659,15682,15643]],[[15643,15682,15661]],[[15638,15674,15656]],[[15660,15681,15659]],[[15647,15646,15630]],[[15664,15674,15678]],[[15646,15677,15673]],[[15646,15657,15675]],[[15679,15637,15672]],[[15679,15678,15637]],[[15645,15640,15629]],[[15679,15672,15641]],[[15629,15641,15636]],[[15640,15679,15641]],[[15677,15675,15664]],[[15677,15646,15675]],[[15632,15655,15683]],[[15666,15656,15655]],[[15664,15678,15628]],[[15680,15637,15678]],[[15655,15642,15683]],[[15652,15654,15653]],[[15683,15642,15653]],[[15643,15661,15644]],[[15653,15642,15644]],[[15657,15660,15642]],[[15661,15682,15662]],[[15663,15650,15682]],[[15671,15672,15665]],[[15671,15641,15672]],[[15680,15674,15638]],[[15680,15678,15674]],[[15646,15660,15657]],[[15648,15681,15660]],[[15655,15632,15667]],[[15683,15653,15632]],[[15662,15658,15654]],[[15662,15650,15658]],[[15630,15646,15673]],[[15648,15660,15646]],[[15647,15659,15681]],[[15647,15682,15659]],[[15665,15635,15636]],[[15676,15667,15635]],[[15665,15668,15666]],[[15672,15637,15668]],[[15650,15684,15629]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e6b6dc-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9af849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15685,8677,8755]],[[15686,15687,15688]],[[15686,15689,15687]],[[15690,8677,15688]],[[15691,15689,15686]],[[15687,15690,15688]],[[8678,15689,8754]],[[8678,15690,15689]],[[15689,15690,15687]],[[8678,8677,15690]],[[8677,15685,15688]],[[15691,8754,15689]],[[15691,15685,8755]],[[15686,15688,15685]],[[15685,15691,15686]],[[8755,8754,15691]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e88c0d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15692,15693,15694]],[[15692,15695,15696]],[[15697,15698,15695]],[[15699,15700,15696]],[[15701,15702,15698]],[[15703,15704,15702]],[[15697,15695,15692]],[[15695,15702,15699]],[[15701,15698,15705]],[[15702,15695,15698]],[[15706,15707,15694]],[[15707,15701,15705]],[[15707,15705,15697]],[[15707,15706,15701]],[[15707,15697,15694]],[[15705,15698,15697]],[[15695,15699,15696]],[[15700,15693,15692]],[[15702,15704,15699]],[[15708,15693,15704]],[[15704,15700,15699]],[[15704,15693,15700]],[[15708,15701,15706]],[[15708,15709,15703]],[[15701,15708,15703]],[[15708,15704,15709]],[[15701,15703,15702]],[[15709,15704,15703]],[[15697,15692,15694]],[[15696,15700,15692]],[[15710,15693,15708]],[[15694,15711,15706]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ea39ef-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15712,15713,15714]],[[15715,15714,15716]],[[15717,15718,15716]],[[15717,15713,15712]],[[15718,15715,15716]],[[15718,15717,15715]],[[15715,15712,15714]],[[15715,15717,15712]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ea6026-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15719,15720,15721]],[[15722,15723,15724]],[[15725,15726,15727]],[[15728,15729,15730]],[[15731,15724,15726]],[[15730,15729,15721]],[[15732,15733,15734]],[[15735,15736,15730]],[[15734,15726,15724]],[[15737,15738,15726]],[[15719,15721,15729]],[[15739,15730,15721]],[[15740,15732,15734]],[[15726,15725,15731]],[[15741,15722,15725]],[[15739,15721,15722]],[[15741,15735,15730]],[[15736,15728,15730]],[[15728,15733,15742]],[[15737,15726,15734]],[[15740,15734,15724]],[[15727,15743,15736]],[[15723,15740,15724]],[[15742,15733,15732]],[[15742,15740,15744]],[[15724,15731,15722]],[[15725,15722,15731]],[[15721,15720,15722]],[[15745,15744,15723]],[[15723,15722,15720]],[[15744,15740,15723]],[[15742,15732,15740]],[[15739,15741,15730]],[[15727,15726,15738]],[[15722,15741,15739]],[[15725,15735,15741]],[[15720,15745,15723]],[[15746,15742,15744]],[[15733,15737,15734]],[[15733,15728,15738]],[[15743,15738,15728]],[[15737,15733,15738]],[[15735,15727,15736]],[[15735,15725,15727]],[[15746,15745,15719]],[[15747,15744,15745]],[[15746,15719,15729]],[[15745,15720,15719]],[[15736,15743,15728]],[[15727,15738,15743]],[[15746,15747,15745]],[[15746,15744,15747]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95eafcdb-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15748,15749,8753]],[[15748,8723,8752]],[[15750,15751,15748]],[[15748,8753,8723]],[[15750,15749,15751]],[[8756,8753,15749]],[[15750,15748,8752]],[[15751,15749,15748]],[[8756,15750,8752]],[[8756,15749,15750]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ec5c64-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15752,15753,15754]],[[15755,15756,15757]],[[15758,15759,15756]],[[15757,15760,15761]],[[15762,15763,15758]],[[15759,15754,15753]],[[15764,15765,15762]],[[15765,15754,15759]],[[15755,15758,15756]],[[15763,15765,15758]],[[15758,15765,15759]],[[15764,15760,15754]],[[15759,15753,15756]],[[15754,15760,15752]],[[15756,15766,15757]],[[15756,15753,15766]],[[15762,15765,15763]],[[15764,15754,15765]],[[15767,15768,15769]],[[15768,15753,15769]],[[15757,15752,15760]],[[15769,15753,15752]],[[15755,15757,15761]],[[15767,15769,15752]],[[15766,15768,15757]],[[15766,15753,15768]],[[15757,15767,15752]],[[15757,15768,15767]],[[15762,15755,15761]],[[15762,15758,15755]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ecd1fd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15770,15771,15772]],[[15773,15774,15775]],[[15776,15777,15778]],[[15779,15780,15781]],[[15770,15774,15771]],[[15771,15779,15781]],[[15770,15775,15774]],[[15782,15783,15774]],[[15773,15782,15774]],[[15784,15785,15786]],[[15787,15788,15782]],[[15789,15785,15784]],[[15790,15776,15778]],[[15776,15791,15777]],[[15780,15786,15781]],[[15771,15792,15772]],[[15790,15793,15794]],[[15793,15784,15779]],[[15793,15778,15784]],[[15777,15784,15778]],[[15771,15794,15779]],[[15779,15784,15780]],[[15795,15770,15772]],[[15795,15796,15770]],[[15780,15784,15786]],[[15777,15791,15789]],[[15773,15787,15782]],[[15787,15797,15788]],[[15770,15796,15798]],[[15798,15787,15773]],[[15788,15791,15776]],[[15795,15785,15791]],[[15788,15799,15791]],[[15797,15791,15799]],[[15782,15788,15776]],[[15787,15796,15797]],[[15777,15789,15784]],[[15791,15785,15789]],[[15798,15796,15787]],[[15795,15797,15796]],[[15788,15797,15799]],[[15795,15791,15797]],[[15775,15798,15773]],[[15775,15770,15798]],[[15785,15781,15786]],[[15785,15792,15781]],[[15774,15783,15794]],[[15782,15776,15790]],[[15783,15790,15794]],[[15783,15782,15790]],[[15794,15793,15779]],[[15790,15778,15793]],[[15794,15771,15774]],[[15781,15792,15771]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ecf925-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15800,15801,15802]],[[15803,15804,15805]],[[15806,15807,15801]],[[15808,15809,15804]],[[15810,15811,15807]],[[15812,15809,15808]],[[15802,15801,15807]],[[15813,15804,15803]],[[15814,15810,15801]],[[15802,15811,15815]],[[15816,15810,15817]],[[15818,15819,15810]],[[15819,15818,15805]],[[15819,15811,15810]],[[15820,15821,15814]],[[15805,15818,15821]],[[15820,15814,15822]],[[15817,15810,15814]],[[15814,15823,15822]],[[15814,15801,15823]],[[15821,15817,15814]],[[15821,15818,15816]],[[15824,15819,15805]],[[15824,15811,15819]],[[15821,15816,15817]],[[15818,15810,15816]],[[15810,15806,15801]],[[15810,15807,15806]],[[15803,15820,15822]],[[15805,15821,15820]],[[15823,15813,15803]],[[15823,15801,15813]],[[15800,15815,15812]],[[15811,15824,15812]],[[15811,15802,15807]],[[15815,15800,15802]],[[15820,15803,15805]],[[15822,15823,15803]],[[15825,15800,15808]],[[15813,15801,15800]],[[15811,15812,15815]],[[15824,15809,15812]],[[15813,15825,15804]],[[15800,15812,15808]],[[15804,15825,15808]],[[15813,15800,15825]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ed1f59-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15826,15827,15828]],[[15829,15830,15831]],[[15826,15829,15831]],[[15832,15833,15834]],[[15834,15827,15831]],[[15835,15836,15837]],[[15831,15827,15826]],[[15835,15837,15838]],[[15834,15833,15827]],[[15834,15839,15832]],[[15829,15840,15830]],[[15829,15826,15836]],[[15829,15836,15840]],[[15827,15833,15828]],[[15837,15828,15832]],[[15836,15826,15828]],[[15838,15832,15839]],[[15828,15833,15832]],[[15838,15837,15832]],[[15836,15828,15837]],[[15830,15841,15839]],[[15841,15840,15835]],[[15841,15835,15838]],[[15840,15836,15835]],[[15842,15834,15831]],[[15842,15839,15834]],[[15839,15841,15838]],[[15830,15840,15841]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ed4687-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15843,15844,15845]],[[15846,15847,15848]],[[15843,15845,15849]],[[15844,15847,15845]],[[15850,15843,15851]],[[15845,15847,15849]],[[15851,15843,15849]],[[15850,15844,15843]],[[15850,15851,15848]],[[15849,15847,15851]],[[15851,15846,15848]],[[15851,15847,15846]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b981072fa-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15217,11959,15852]],[[15217,15852,15235]],[[11959,11986,15852]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9813a745-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1ad049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15853,8126,8128]],[[15853,8128,15854]],[[15854,8128,8130]],[[8130,8128,8129]],[[8126,8127,8128]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9813ce67-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15855,15856,15857]],[[15855,15857,15858]],[[15856,15859,15857]],[[15856,15860,15859]],[[15860,15856,15861]],[[15861,15856,15862]],[[15862,15856,15863]],[[15863,15856,15864]],[[15864,15856,15865]],[[15865,15856,15866]],[[15866,15856,15867]],[[15867,15856,15868]],[[15868,15856,15869]],[[15869,15856,15870]],[[15870,15856,15871]],[[15871,15856,15872]],[[15872,15856,15873]],[[15873,15856,15874]],[[15874,15856,15875]],[[15875,15856,15876]],[[15876,15856,15877]],[[15877,15856,15878]],[[15878,15856,15879]],[[15879,15856,15880]],[[15880,15856,15881]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9816dbab-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15882,15883,15217]],[[14527,14532,15884]],[[15885,15328,15886]],[[15886,15328,15887]],[[15887,15328,15888]],[[15888,15328,15889]],[[15328,15890,15891]],[[15889,15328,15891]],[[15890,15328,15892]],[[15892,14118,15893]],[[15893,14118,15894]],[[15894,14102,15895]],[[15895,14102,15896]],[[11876,15884,15897]],[[15898,14102,15897]],[[15896,14102,15898]],[[15899,15328,15885]],[[15884,15693,14527]],[[15899,15900,15325]],[[15693,15884,15694]],[[15694,15884,11876]],[[11876,15897,11877]],[[11877,15897,15472]],[[15472,15897,15470]],[[15470,15897,14102]],[[14102,15894,14118]],[[14118,15892,15328]],[[15328,15899,15325]],[[15325,15900,11997]],[[15901,15216,14267]],[[15902,15903,15904]],[[15904,15905,15906]],[[15907,15904,15906]],[[15908,15909,15910]],[[15910,15903,15911]],[[15912,15908,15910]],[[15911,15912,15910]],[[15902,15911,15903]],[[15913,15902,15904]],[[15914,15913,15904]],[[11987,15915,15906]],[[15916,11959,15217]],[[15904,15917,15914]],[[11987,11959,15915]],[[15917,15904,15918]],[[15919,15907,15906]],[[15918,15904,15907]],[[15920,15919,15906]],[[15216,15901,15217]],[[15920,15906,15921]],[[15921,15906,15915]],[[15915,11959,15916]],[[15217,15922,15916]],[[15217,15923,15922]],[[14267,14254,15924]],[[15923,15217,15925]],[[15925,15217,15926]],[[15926,15217,15927]],[[15927,15217,15928]],[[15928,15217,15929]],[[15929,15217,15930]],[[15930,15217,15883]],[[15931,15882,15217]],[[15932,15931,15217]],[[15933,15932,15217]],[[15901,15933,15217]],[[15901,15934,15933]],[[15901,15935,15934]],[[15901,15936,15935]],[[15901,15937,15936]],[[15937,15901,15938]],[[15938,15901,15939]],[[15939,15901,15940]],[[15940,15901,15941]],[[15941,15901,15942]],[[15942,15943,15944]],[[15944,15943,15945]],[[7171,15945,7170]],[[7170,15945,15943]],[[15943,15942,15901]],[[7199,15943,15901]],[[15924,15901,14267]],[[7198,7199,15901]],[[14254,11998,15946]],[[14254,15947,15924]],[[14254,15946,15947]],[[11998,15948,15946]],[[11998,15949,15948]],[[11998,15950,15949]],[[11998,15951,15950]],[[11998,11997,15952]],[[11998,15952,15951]],[[11997,15900,15952]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9817c598-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15953,15954,15955]],[[15954,15956,15955]],[[15957,15958,15959]],[[15957,15955,15960]],[[15957,15961,15958]],[[15957,15962,15961]],[[15957,15963,15962]],[[15957,15964,15963]],[[15957,15965,15964]],[[15957,15966,15965]],[[15957,15967,15966]],[[15957,15968,15967]],[[15957,15969,15968]],[[15957,15960,15969]],[[15955,15970,15960]],[[15955,15956,15970]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981a0ff9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33bf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15971,15972,15973]],[[15971,15973,15974]],[[15972,15975,15973]],[[15976,15977,15978]],[[15979,15976,15980]],[[15981,15979,15982]],[[15983,15981,15984]],[[15985,15983,15986]],[[15987,15985,15988]],[[15989,15987,15990]],[[15991,15989,15992]],[[15993,15991,15994]],[[15995,15993,15996]],[[15997,15995,15998]],[[15997,15999,16000]],[[15997,15998,15999]],[[15995,15996,15998]],[[15977,16001,16002]],[[15993,15994,15996]],[[15991,15992,15994]],[[16001,16003,16004]],[[15989,15990,15992]],[[15987,15988,15990]],[[16003,16005,16006]],[[15985,15986,15988]],[[15983,15984,15986]],[[16005,16007,16008]],[[15981,15982,15984]],[[15979,15980,15982]],[[16007,16009,16010]],[[15976,15978,15980]],[[15977,16002,15978]],[[16009,16011,16012]],[[16001,16004,16002]],[[16003,16006,16004]],[[16011,16013,16014]],[[16005,16008,16006]],[[16007,16010,16008]],[[16013,16015,16016]],[[16009,16012,16010]],[[16011,16014,16012]],[[16015,16017,16018]],[[16013,16016,16014]],[[16015,16018,16016]],[[16017,16019,16020]],[[16017,16020,16018]],[[16019,15975,16020]],[[16019,15973,15975]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981aabab-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee28149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8743,8321,8322]],[[8743,556,16021]],[[16022,458,16023]],[[1882,10957,15847]],[[16024,7034,7033]],[[16025,8321,16026]],[[16027,16024,16028]],[[16029,16027,16030]],[[16030,16027,16031]],[[16032,16030,16033]],[[16033,16030,16034]],[[16034,16030,16035]],[[16036,16034,16035]],[[16035,16030,16037]],[[16037,16030,16038]],[[16039,16037,16038]],[[16038,16030,16031]],[[16040,16038,16041]],[[16041,16038,16042]],[[16043,16041,16042]],[[16044,16043,16042]],[[16042,16038,16031]],[[16045,16042,16031]],[[16031,16027,16028]],[[16046,16031,16047]],[[16047,16031,16028]],[[16048,16047,16028]],[[1880,7037,1881]],[[1073,1074,16049]],[[15844,16050,15847]],[[15847,16050,16051]],[[15844,16052,16050]],[[16053,16054,15844]],[[16055,15844,16056]],[[16056,16049,16057]],[[16055,16053,15844]],[[6727,16058,16059]],[[1072,1073,16049]],[[1071,1072,16049]],[[1094,1071,16049]],[[1068,1094,16049]],[[16049,1065,1068]],[[16049,1063,1065]],[[16049,15844,1063]],[[6893,6894,16024]],[[7037,16024,7033]],[[7037,7035,7036]],[[7037,7033,7035]],[[6889,6890,16024]],[[6894,7034,16024]],[[7034,6894,7038]],[[7038,6894,6895]],[[6924,6928,6889]],[[16023,460,16059]],[[6893,16024,6890]],[[6892,6893,6890]],[[6892,6890,6891]],[[16024,16060,6924]],[[6924,6889,16024]],[[6889,6887,6888]],[[6887,6889,6928]],[[6887,6929,6885]],[[16058,6980,16060]],[[6929,6887,6928]],[[6924,16060,6973]],[[6973,16060,6971]],[[6971,16060,6980]],[[6980,16058,6727]],[[6727,16059,460]],[[460,16023,459]],[[16023,458,459]],[[16022,478,458]],[[477,478,557]],[[478,555,557]],[[478,16022,555]],[[556,555,16061]],[[16061,555,16062]],[[16062,555,16063]],[[16063,555,16064]],[[16064,555,16065]],[[16065,555,16066]],[[16066,555,16067]],[[16067,555,16022]],[[8320,8321,16025]],[[8319,8320,16068]],[[8320,16069,16068]],[[8320,16025,16069]],[[16070,16071,16072]],[[16071,16073,16072]],[[16071,16069,16025]],[[16071,16025,16073]],[[16074,16075,16076]],[[16074,16077,16075]],[[16074,16073,16025]],[[16074,16025,16077]],[[16078,16079,8317]],[[16078,8317,8318]],[[16025,16026,16080]],[[16081,14727,8316]],[[8314,8311,8313]],[[8311,16082,8312]],[[8311,16083,16082]],[[8311,16084,16083]],[[8311,16085,16084]],[[16084,16085,16086]],[[16086,16085,16087]],[[16087,16085,16088]],[[16088,16085,16089]],[[16089,16085,16090]],[[16090,16091,16092]],[[14729,16081,16093]],[[14724,16094,14725]],[[14727,8315,8316]],[[16080,16026,16095]],[[8321,8743,16026]],[[16025,16079,16077]],[[16025,16081,16079]],[[16079,16081,8317]],[[8317,16081,8316]],[[16095,16096,16097]],[[16095,16098,16096]],[[16095,16099,16098]],[[16098,16100,16101]],[[16101,16100,16102]],[[16098,16099,16100]],[[16095,16103,16099]],[[16099,16104,16105]],[[16099,16103,16104]],[[16095,16106,16103]],[[16103,16107,16108]],[[16108,16107,16109]],[[16103,16106,16107]],[[16107,16106,16110]],[[16095,16111,16106]],[[16106,16111,16112]],[[16095,16113,16111]],[[16095,16026,16113]],[[16113,16026,16114]],[[8743,16021,16026]],[[16021,556,16115]],[[16021,16116,16117]],[[16117,16116,16118]],[[16021,16119,16116]],[[16116,16120,16121]],[[16121,16122,16123]],[[16121,16120,16122]],[[16122,16120,16124]],[[16124,16120,16125]],[[16116,16119,16120]],[[16120,16119,16126]],[[16126,16127,16128]],[[16126,16119,16127]],[[16127,16119,16129]],[[16021,16130,16119]],[[16119,16131,16132]],[[16119,16130,16131]],[[16131,16130,16133]],[[16021,16134,16130]],[[16021,16115,16134]],[[556,16061,16115]],[[14724,16135,16094]],[[16136,16091,16135]],[[16092,16091,16136]],[[16085,8314,16094]],[[16090,16085,16091]],[[8311,8314,16085]],[[16136,14724,16093]],[[16136,16135,14724]],[[8314,14725,16094]],[[8314,8315,14727]],[[14729,14727,16081]],[[14725,8314,14727]],[[14724,14729,16093]],[[10958,10957,1881]],[[1882,15847,16028]],[[16024,1882,16028]],[[1881,10957,1882]],[[16024,1883,1882]],[[16024,7037,1883]],[[1883,7037,1880]],[[7037,10958,1881]],[[16052,15844,16054]],[[1064,10958,7037]],[[1064,10959,10958]],[[15844,16049,16056]],[[15847,10957,10956]],[[15850,1063,15844]],[[15848,15847,10956]],[[16051,16028,15847]],[[10959,15848,10956]],[[10959,1064,15850]],[[10959,15850,15848]],[[1064,1063,15850]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981af9f2-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16137,13251,13250]],[[16137,16138,16139]],[[16139,16140,16141]],[[16141,16142,16143]],[[16143,16144,16145]],[[10245,10244,16146]],[[16145,16147,16146]],[[10245,16146,16148]],[[16148,16146,16147]],[[16147,16145,16144]],[[16144,16143,16142]],[[16142,16141,16140]],[[16140,16139,16138]],[[16138,16137,13250]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981ecb10-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12452,15809,12454]],[[15809,15824,12454]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981f8dcc-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16149,16150,16151]],[[16149,16151,16152]],[[16152,16151,16153]],[[16153,16151,16154]],[[16154,16151,16155]],[[16155,16151,16156]],[[16156,16151,16157]],[[16157,16151,16158]],[[16158,16159,16160]],[[16160,16159,16161]],[[16161,16159,16162]],[[16162,16159,16163]],[[16163,16159,16164]],[[16164,16159,16165]],[[16165,16159,16166]],[[16166,16159,16167]],[[16167,16159,16168]],[[16168,16159,16169]],[[16169,16159,16170]],[[16158,16151,16159]],[[16171,16172,16173]],[[16151,16171,16173]],[[16150,16171,16151]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9821d845-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee48d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[261,262,16174]],[[261,16174,2808]],[[2808,16175,2807]],[[16175,2808,16174]],[[16175,16174,16176]],[[262,16177,16174]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98229afb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16178,16179,16180]],[[16181,16182,16183]],[[16184,16185,16186]],[[16178,16187,16186]],[[16185,16184,16188]],[[16189,16188,16184]],[[16190,16186,16187]],[[16190,16184,16186]],[[16187,16178,16191]],[[16178,16192,16191]],[[16192,16178,16193]],[[16192,16193,16194]],[[16178,16195,16193]],[[16195,16178,16196]],[[16196,16178,16197]],[[16178,16180,16197]],[[16179,16198,16180]],[[16198,16179,16199]],[[16198,16199,16200]],[[16199,16179,16201]],[[16202,16203,16204]],[[16205,16203,16206]],[[16207,16208,16209]],[[16210,16201,12083]],[[16211,12107,16212]],[[16212,12107,16213]],[[16213,12107,16214]],[[16214,12107,16215]],[[12107,16216,16217]],[[16218,16219,12107]],[[16220,16218,12107]],[[16221,16220,12107]],[[16222,16221,12107]],[[16223,16222,16204]],[[16208,16223,16209]],[[16224,16208,16207]],[[16225,16224,16207]],[[16226,16225,16207]],[[16227,16226,16207]],[[16228,16227,16207]],[[16229,16228,16207]],[[16229,16230,16231]],[[16229,16207,16230]],[[16232,16230,16207]],[[16233,16232,16207]],[[16234,16233,16207]],[[16235,16234,16207]],[[16236,16235,16207]],[[16237,16236,16207]],[[16237,16238,16239]],[[16237,16207,16238]],[[16201,16179,12083]],[[16207,16183,16240]],[[16240,16183,16241]],[[16207,16242,16183]],[[16243,16181,16183]],[[16243,16244,16181]],[[16242,16243,16183]],[[16245,16246,16243]],[[16245,16247,16246]],[[16242,16245,16243]],[[16242,16248,16245]],[[16249,16250,16248]],[[16242,16249,16248]],[[16251,16252,16249]],[[16242,16251,16249]],[[16242,16253,16251]],[[16254,16242,16207]],[[16209,16254,16207]],[[16204,16209,16223]],[[16255,16256,16257]],[[16255,16257,16258]],[[16259,16260,16257]],[[16256,16259,16257]],[[16209,16261,16258]],[[16262,16259,16256]],[[12083,16211,16210]],[[16255,16258,16261]],[[16261,16209,16203]],[[16203,16209,16204]],[[16203,16202,16206]],[[12107,16217,16215]],[[16263,12083,14772]],[[12107,16219,16216]],[[16264,16204,16265]],[[16264,16202,16204]],[[16204,12107,12118]],[[16204,16222,12107]],[[16211,12083,12107]],[[16179,14772,12083]],[[12117,12083,16263]],[[16263,14772,14751]],[[16266,16267,16259]],[[16259,16267,16260]],[[16268,16266,16262]],[[16262,16266,16259]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9824be2e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13800,16269,16270]],[[16271,16272,16273]],[[16273,16274,16275]],[[16273,16276,16274]],[[16273,16277,16276]],[[16273,16278,16277]],[[16271,14711,16279]],[[16278,16273,16272]],[[16272,16271,16280]],[[16280,16271,16281]],[[16281,16271,16282]],[[16282,16271,16283]],[[16283,16271,16284]],[[16284,16271,16279]],[[16270,14631,14712]],[[14569,14566,16285]],[[12519,16286,16285]],[[12522,16287,16286]],[[16288,16287,12521]],[[12519,12522,16286]],[[12521,16287,12522]],[[14566,12519,16285]],[[12528,12519,14554]],[[16269,11833,16285]],[[14554,12519,14566]],[[11833,14569,16285]],[[14561,14569,11833]],[[11855,11833,16269]],[[11830,14561,11833]],[[14936,11855,16269]],[[11829,11855,14936]],[[14942,14936,16269]],[[14974,11829,14936]],[[14925,14942,16269]],[[14925,16269,12023]],[[12042,12045,16269]],[[12023,16269,12045]],[[13800,12042,16269]],[[16289,16290,12042]],[[13764,16291,16289]],[[13842,13800,16270]],[[13765,12042,13800]],[[13826,13800,13829]],[[13842,13862,13800]],[[13829,13800,13862]],[[11918,13842,16270]],[[13905,13842,11957]],[[11933,11918,16270]],[[11957,13842,11918]],[[16292,11933,16270]],[[11914,11933,16292]],[[16292,16270,14712]],[[16279,14710,16270]],[[16270,14710,14631]],[[16279,14711,14710]],[[12022,16291,13764]],[[16289,12042,13765]],[[12022,16293,16291]],[[12022,12042,16293]],[[16293,12042,16290]],[[13764,16289,13765]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98250c84-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef1df449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16028,16021,16117]],[[16028,16060,16048]],[[16047,16048,16060]],[[16046,16047,16060]],[[16031,16046,16060]],[[16045,16031,16060]],[[16042,16045,16060]],[[16044,16042,16060]],[[16043,16044,16060]],[[16041,16043,16060]],[[16040,16041,16060]],[[16038,16040,16060]],[[16039,16038,16060]],[[16037,16039,16060]],[[16035,16037,16060]],[[16036,16035,16060]],[[16034,16036,16060]],[[16033,16034,16060]],[[16032,16033,16060]],[[16030,16032,16060]],[[16029,16030,16060]],[[16027,16029,16060]],[[16027,16060,16024]],[[16028,16023,16060]],[[16028,16117,16023]],[[16022,16023,16117]],[[16066,16067,16117]],[[16065,16066,16117]],[[16064,16065,16117]],[[16062,16063,16118]],[[16061,16134,16115]],[[16061,16130,16134]],[[16061,16133,16130]],[[16061,16131,16133]],[[16061,16132,16131]],[[16061,16119,16132]],[[16061,16129,16119]],[[16061,16127,16129]],[[16061,16128,16127]],[[16061,16126,16128]],[[16061,16120,16126]],[[16061,16125,16120]],[[16061,16124,16125]],[[16061,16122,16124]],[[16061,16123,16122]],[[16061,16121,16123]],[[16061,16116,16121]],[[16061,16062,16118]],[[16061,16118,16116]],[[16063,16064,16117]],[[16063,16117,16118]],[[16067,16022,16117]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98272edb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13205,15713,13206]],[[16294,16295,13206]],[[13217,13204,13207]],[[13217,13210,13204]],[[13206,16295,13207]],[[13207,16295,13217]],[[16296,13220,13221]],[[14410,14407,16296]],[[13221,16295,16296]],[[13217,16295,13221]],[[16295,16297,14413]],[[13186,14406,14413]],[[13187,13186,14413]],[[14410,16295,14413]],[[14413,16297,13187]],[[15207,13183,13182]],[[15207,15210,13183]],[[16297,16298,15207]],[[13182,16297,15207]],[[16299,16300,15211]],[[15831,15830,16301]],[[16302,16298,16301]],[[13202,16303,16294]],[[16298,15831,16301]],[[15207,16298,15211]],[[13187,16297,13182]],[[16296,16295,14410]],[[15717,16294,13206]],[[15761,9066,9078]],[[15762,9071,16303]],[[15761,9078,15762]],[[15764,15762,16303]],[[9078,9071,15762]],[[15760,15764,16303]],[[13190,15760,16303]],[[13202,13192,16303]],[[13190,16303,13192]],[[11766,13202,16294]],[[11766,13189,13202]],[[11765,11766,16294]],[[11761,13189,11766]],[[16304,11765,16294]],[[16304,11760,11765]],[[14045,14040,16304]],[[16294,14045,16304]],[[15716,14041,16294]],[[14045,16294,14041]],[[16305,16306,15714]],[[16307,15716,15714]],[[15717,15716,16294]],[[15713,15717,13206]],[[14041,16308,14039]],[[14041,15716,16308]],[[16306,16307,15714]],[[16308,15716,16307]],[[14039,16305,15714]],[[16308,16305,14039]],[[16298,16299,15211]],[[16309,16302,16301]],[[16299,16298,16302]],[[15209,16309,16301]],[[15209,16300,16309]],[[15209,15211,16300]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9827560c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4ae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[21,16170,16159]],[[21,16159,22]],[[1,3,22]],[[22,3,21]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98295220-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1ad149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2963,2894,8564]],[[2894,8607,8564]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9829794e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6995,6964,6994]],[[6995,6962,6964]],[[6995,6706,10614]],[[6962,6995,16310]],[[6961,16311,6960]],[[6961,6962,16310]],[[16311,6961,16310]],[[16310,6995,16312]],[[16312,6995,10614]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b982f6cae-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16313,16314,16315]],[[16314,16316,16315]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98322b9f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33ca49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15772,12451,15795]],[[12451,12461,15795]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98349d40-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef135b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"sierbestrating","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[300,11066,299]],[[300,313,11066]],[[11066,313,11617]],[[11622,11066,11617]],[[11618,11622,11617]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9837d0a9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16317,16318,16319]],[[16317,16319,16320]],[[16318,16321,16319]],[[16321,16318,16322]],[[16323,16324,16325]],[[16326,16323,16327]],[[16328,16326,16329]],[[16330,16328,16331]],[[16332,16330,16333]],[[16334,16332,16335]],[[16336,16334,16337]],[[16338,16336,16339]],[[16340,16338,16341]],[[16342,16340,16343]],[[16342,16344,16345]],[[16342,16343,16344]],[[16324,16346,16347]],[[16340,16341,16343]],[[16346,16348,16349]],[[16338,16339,16341]],[[16336,16337,16339]],[[16348,16350,16351]],[[16334,16335,16337]],[[16332,16333,16335]],[[16350,16352,16351]],[[16330,16331,16333]],[[16328,16329,16331]],[[16352,16353,16354]],[[16326,16327,16329]],[[16323,16325,16327]],[[16353,16355,16356]],[[16324,16347,16325]],[[16346,16349,16347]],[[16355,16357,16358]],[[16348,16351,16349]],[[16352,16354,16351]],[[16357,16359,16360]],[[16353,16356,16354]],[[16355,16358,16356]],[[16359,16361,16362]],[[16357,16360,16358]],[[16359,16362,16360]],[[16361,16363,16364]],[[16361,16364,16362]],[[16363,16322,16364]],[[16363,16321,16322]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983909fb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[127,128,9862]],[[16365,16366,127]],[[16366,126,127]],[[16366,125,126]],[[162,163,16367]],[[16368,16365,127]],[[16369,8639,8633]],[[16365,16368,8633]],[[16370,8152,8639]],[[9861,16367,9862]],[[16371,8150,8151]],[[163,16372,16367]],[[16371,16373,8150]],[[8152,16374,8151]],[[16375,16376,16371]],[[8151,16374,16371]],[[16376,16375,16377]],[[16377,16375,16378]],[[16378,16375,16379]],[[16379,16380,16381]],[[16381,16382,16383]],[[16383,16384,16385]],[[16385,16386,16387]],[[16387,16388,16389]],[[16389,16390,16391]],[[16391,16392,16393]],[[16394,16395,16396]],[[16397,11379,16395]],[[16393,16398,16396]],[[11379,16397,11380]],[[16395,16394,16397]],[[16396,16399,16394]],[[16396,16398,16399]],[[16393,16392,16398]],[[16391,16400,16392]],[[16391,16390,16400]],[[16389,16388,16390]],[[16387,16401,16388]],[[16387,16386,16401]],[[16385,16402,16386]],[[16385,16384,16402]],[[16383,16403,16384]],[[16383,16382,16403]],[[16381,16404,16382]],[[16381,16405,16404]],[[16381,16406,16405]],[[16381,16380,16406]],[[16379,16407,16380]],[[16379,16408,16407]],[[16379,16375,16408]],[[16371,16374,16375]],[[8152,16370,16374]],[[8639,16369,16370]],[[16369,8633,16368]],[[7946,16409,16372]],[[16367,16368,9862]],[[9862,16368,127]],[[16410,15884,16409]],[[8220,15884,16410]],[[16410,16409,7930]],[[7930,16409,7926]],[[7926,16409,7946]],[[7946,16372,854]],[[16372,164,854]],[[16372,163,164]],[[140,9861,139]],[[161,162,16367]],[[160,161,16367]],[[159,160,16367]],[[158,159,16367]],[[157,158,16367]],[[156,157,16367]],[[155,156,16367]],[[154,155,16367]],[[140,142,143]],[[154,16367,153]],[[153,16367,152]],[[152,16367,151]],[[151,16367,150]],[[150,16367,149]],[[149,16367,148]],[[148,16367,147]],[[147,16367,146]],[[146,16367,145]],[[145,16367,140]],[[144,145,140]],[[143,144,140]],[[142,140,141]],[[16367,9861,140]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983a1b0d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetgangersgebied","inonderzoek":"0","lokaalid":"G0503.032e68eee28449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16411,280,16412]],[[16413,264,16414]],[[16415,7574,7585]],[[7557,16416,7545]],[[16417,16418,280]],[[16419,7549,7545]],[[16420,7688,7549]],[[16421,7689,7688]],[[16422,7675,7674]],[[16421,7680,7689]],[[16423,278,7675]],[[384,7675,278]],[[280,278,16424]],[[262,263,16425]],[[16426,263,16427]],[[16428,262,16425]],[[16425,263,16429]],[[16425,16429,16430]],[[16429,263,16426]],[[16429,16426,16431]],[[16431,16426,16432]],[[263,264,16427]],[[16433,7557,7574]],[[16427,16434,16435]],[[16427,16413,16434]],[[16427,264,16413]],[[16414,264,16436]],[[16437,16438,16439]],[[16414,16437,16439]],[[16414,16440,16437]],[[16414,16441,16440]],[[16414,16442,16441]],[[16414,16443,16442]],[[16414,16444,16443]],[[16414,16445,16444]],[[16414,16436,16445]],[[16446,265,280]],[[264,16447,16436]],[[264,265,16448]],[[16447,264,16449]],[[16449,264,16450]],[[16450,264,16451]],[[16451,264,16452]],[[16452,264,16453]],[[16453,264,16454]],[[16455,16456,264]],[[16454,264,16456]],[[16457,16455,264]],[[16448,16457,264]],[[16458,16448,265]],[[16459,16458,265]],[[16460,16459,265]],[[16446,16460,265]],[[7674,7680,16461]],[[16446,280,16462]],[[16462,280,16463]],[[16463,280,16464]],[[16464,280,16465]],[[16465,280,16466]],[[16466,280,16467]],[[16467,280,16468]],[[16468,280,16418]],[[16469,16417,280]],[[16470,16469,280]],[[7584,16415,7585]],[[280,16471,16470]],[[7584,7607,16472]],[[16471,280,16473]],[[16473,280,16474]],[[16474,280,16475]],[[16475,280,16476]],[[16476,280,16477]],[[16477,280,16411]],[[16412,280,16478]],[[16478,280,16479]],[[16479,280,16480]],[[16480,280,16481]],[[16481,280,16424]],[[278,16482,16424]],[[16422,16423,7675]],[[16482,278,16423]],[[16461,16422,7674]],[[16483,16423,16422]],[[16461,7680,16421]],[[7688,16420,16421]],[[7549,16419,16420]],[[7545,16416,16419]],[[7557,16433,16416]],[[16433,7574,16415]],[[16484,16433,16415]],[[16415,7584,16472]],[[16472,7607,16485]],[[16485,7607,7619]],[[16486,16485,7619]],[[16487,16488,7630]],[[16489,16490,7630]],[[16491,16489,7630]],[[16492,16491,7630]],[[16493,16492,7630]],[[16494,16493,7630]],[[16495,16494,7630]],[[16496,16495,7630]],[[12902,16496,7630]],[[12902,16497,16496]],[[12900,16498,16497]],[[16499,16500,16501]],[[16502,16499,16501]],[[16503,16502,16501]],[[16504,16503,16501]],[[16505,16504,16501]],[[12151,16505,16501]],[[16506,16507,16508]],[[12178,12179,16509]],[[12181,12182,16509]],[[16510,16511,12156]],[[16512,16510,16513]],[[16514,16515,16513]],[[16516,16514,16513]],[[16517,16516,16513]],[[16518,16517,16513]],[[16519,16518,16513]],[[16520,16519,16513]],[[16521,16520,16513]],[[16522,16521,16513]],[[16513,16507,16523]],[[16524,16507,16506]],[[16523,16522,16513]],[[16507,16513,16508]],[[16515,16512,16513]],[[12151,16525,16505]],[[16526,16527,16528]],[[10981,10986,16529]],[[16527,16530,16531]],[[16527,10997,16530]],[[14175,12128,12129]],[[16501,16500,16532]],[[16501,16533,16534]],[[16501,16532,16533]],[[16500,16535,16532]],[[16500,16536,16535]],[[16500,16537,16536]],[[16500,16538,16537]],[[16500,16539,16538]],[[16500,16540,16539]],[[16500,16541,16540]],[[16500,16542,16541]],[[16500,16543,16542]],[[16500,16544,16543]],[[16500,16545,16544]],[[16500,16546,16545]],[[16500,16547,16546]],[[16500,16548,16547]],[[16500,16549,16548]],[[16550,16551,16552]],[[16500,16553,16549]],[[16500,16551,16550]],[[16553,16500,16554]],[[16554,16500,16555]],[[16555,16500,16556]],[[16556,16500,16557]],[[16557,16500,16558]],[[16558,16500,16550]],[[12905,16559,16498]],[[16552,16551,16560]],[[16560,16551,16561]],[[16561,16551,16562]],[[16562,16551,16563]],[[16563,16551,16564]],[[16564,16551,16565]],[[16565,16551,12924]],[[16566,16565,12926]],[[12915,16551,16567]],[[16568,12944,16569]],[[12909,16570,16571]],[[12931,12932,16572]],[[16573,16574,12945]],[[16572,16573,12931]],[[16575,16572,12932]],[[16576,16575,12933]],[[16577,16576,12934]],[[16578,16577,12935]],[[16579,16578,12936]],[[16580,16579,12937]],[[16581,16582,12939]],[[16583,16581,12940]],[[12855,16584,16583]],[[16585,16586,16587]],[[16588,16589,16590]],[[16590,16589,7643]],[[16590,16591,16592]],[[7363,7362,16593]],[[7643,16591,16590]],[[7454,16594,7402]],[[16595,16596,16597]],[[16597,16593,16598]],[[16599,7654,16596]],[[16596,7363,16597]],[[7381,7389,16600]],[[16601,16602,16600]],[[7362,16602,16603]],[[16600,16604,16605]],[[7381,16600,16602]],[[16606,16604,7389]],[[16607,16606,16594]],[[16607,16594,16608]],[[16594,16606,7402]],[[16609,16610,16611]],[[16610,7455,16611]],[[16610,16594,7454]],[[16611,16612,16613]],[[16612,16611,7455]],[[16614,16615,16616]],[[16614,16612,7455]],[[16615,16614,7456]],[[16617,16618,16619]],[[16617,16615,16618]],[[16615,7456,16618]],[[16618,7458,7459]],[[7458,16618,7456]],[[7458,7456,7457]],[[16614,7455,7456]],[[16610,7454,7455]],[[7654,16599,16591]],[[16593,7362,16603]],[[8847,8846,9052]],[[8842,8847,9052]],[[8843,8842,2709]],[[16586,7637,16589]],[[16620,8804,8803]],[[8804,8839,2634]],[[8827,8804,16620]],[[8827,16620,8826]],[[8839,8838,2709]],[[8803,8804,8733]],[[8733,8804,2634]],[[8839,2709,2634]],[[8838,8843,2709]],[[8842,9052,2709]],[[8846,7453,7400]],[[8846,7400,9052]],[[7389,16604,16600]],[[7453,7402,7400]],[[7453,7454,7402]],[[7402,16606,7389]],[[16597,7363,16593]],[[7381,16602,7362]],[[7654,7363,16596]],[[7643,7654,16591]],[[16589,7637,7643]],[[16490,16487,7630]],[[16488,16486,7619]],[[7630,16488,7619]],[[14190,12195,12207]],[[14194,12203,12204]],[[16621,12202,12203]],[[16621,12201,12202]],[[12170,16509,16513]],[[16621,12200,12201]],[[16621,16509,12210]],[[12200,16621,12199]],[[12199,16621,12198]],[[12198,16621,12197]],[[12197,16621,12196]],[[12196,16621,12210]],[[12210,16509,12194]],[[12194,16509,12193]],[[12193,16509,12192]],[[12192,16509,12191]],[[12191,16509,12190]],[[12190,16509,12189]],[[12189,16509,12188]],[[12188,16509,12187]],[[12185,12186,16509]],[[12187,16509,12186]],[[12184,12185,16509]],[[12182,12184,16509]],[[12154,16622,16623]],[[16510,12157,16513]],[[16511,16622,12155]],[[12180,12181,16509]],[[12179,12180,16509]],[[16624,12153,16623]],[[12177,12178,16509]],[[12176,12177,16509]],[[12175,12176,16509]],[[12174,12175,16509]],[[12173,12174,16509]],[[12172,12173,16509]],[[12171,12172,16509]],[[12170,12171,16509]],[[12169,12170,16513]],[[16525,12152,16624]],[[12169,16513,12168]],[[12168,16513,12167]],[[12164,12166,16513]],[[12167,16513,12166]],[[12163,12164,16513]],[[12162,12163,16513]],[[12161,12162,16513]],[[12160,12161,16513]],[[12159,12160,16513]],[[12158,12159,16513]],[[12157,12158,16513]],[[12156,12157,16510]],[[12155,12156,16511]],[[16625,12142,16501]],[[16622,12154,12155]],[[16623,12153,12154]],[[16624,12152,12153]],[[16525,12151,12152]],[[16501,12150,12151]],[[16501,12149,12150]],[[16501,12148,12149]],[[16501,12147,12148]],[[16501,12146,12147]],[[16501,12145,12146]],[[16501,12144,12145]],[[16501,12142,12144]],[[16625,12141,12142]],[[16625,12140,12141]],[[16625,12139,12140]],[[16625,12138,12139]],[[16625,12137,12138]],[[16625,12136,12137]],[[16625,12135,12136]],[[16625,12134,12135]],[[16625,12133,12134]],[[16625,12132,12133]],[[16625,12131,12132]],[[16625,12130,12131]],[[16625,12129,12130]],[[16625,14174,12129]],[[14176,12127,12128]],[[16582,16580,12938]],[[16583,12851,12850]],[[16583,12875,12851]],[[16583,12903,12875]],[[16574,16626,12946]],[[16583,12942,12903]],[[12906,16627,16628]],[[16583,12941,12942]],[[16629,12908,16571]],[[16583,12940,12941]],[[16626,16630,12930]],[[16581,12939,12940]],[[16568,16570,12910]],[[16582,12938,12939]],[[16630,16631,12929]],[[16580,12937,12938]],[[12912,16632,16569]],[[16579,12936,12937]],[[16633,12914,16567]],[[16578,12935,12936]],[[16631,16634,12928]],[[16577,12934,12935]],[[16634,16566,12927]],[[16576,12933,12934]],[[16633,16632,12913]],[[16575,12932,12933]],[[16629,16627,12907]],[[12945,12931,16573]],[[12946,12945,16574]],[[12930,12946,16626]],[[12929,12930,16630]],[[12928,12929,16631]],[[16559,12904,16628]],[[12928,16634,12927]],[[12927,16566,12926]],[[12926,16565,12924]],[[12924,16551,12923]],[[12923,16551,12922]],[[12922,16551,12920]],[[12920,16551,12921]],[[12921,16551,12919]],[[12917,12918,16551]],[[12919,16551,12918]],[[12915,12917,16551]],[[12914,12915,16567]],[[12913,12914,16633]],[[12912,12913,16632]],[[12944,12912,16569]],[[12910,12944,16568]],[[12909,12910,16570]],[[12908,12909,16571]],[[12907,12908,16629]],[[12906,12907,16627]],[[7637,12889,7630]],[[16628,12904,12906]],[[16559,12905,12904]],[[16498,12900,12905]],[[16497,12902,12900]],[[7630,12901,12902]],[[7630,12899,12901]],[[7630,12898,12899]],[[7630,12897,12898]],[[7630,12896,12897]],[[7630,12895,12896]],[[7630,12894,12895]],[[7630,12893,12894]],[[12877,16586,16585]],[[7630,12892,12893]],[[7637,16586,12884]],[[12890,12891,7630]],[[12892,7630,12891]],[[12889,12890,7630]],[[12888,12889,7637]],[[12887,12888,7637]],[[12886,12887,7637]],[[12885,12886,7637]],[[12884,12885,7637]],[[12883,12884,16586]],[[12943,12883,16586]],[[12880,12943,16586]],[[12879,12880,16586]],[[12878,12879,16586]],[[12876,12878,16586]],[[12877,12876,16586]],[[12874,12877,16585]],[[12873,12874,16585]],[[16584,12862,16585]],[[12873,16585,12872]],[[12872,16585,12871]],[[12871,16585,12870]],[[12870,16585,12869]],[[12869,16585,12868]],[[12868,16585,12867]],[[12867,16585,12866]],[[12866,16585,12865]],[[12865,16585,12864]],[[12864,16585,12862]],[[12862,16584,12863]],[[16584,12859,12863]],[[16584,12858,12859]],[[16584,12857,12858]],[[16584,12856,12857]],[[16584,12855,12856]],[[16583,12854,12855]],[[16583,12853,12854]],[[16583,12852,12853]],[[16583,12850,12852]],[[16529,14131,16635]],[[16635,14133,14136]],[[16635,14131,14133]],[[16529,14134,14131]],[[16529,14226,14134]],[[16529,14225,14226]],[[16529,14224,14225]],[[16529,14223,14224]],[[16529,14222,14223]],[[16529,14221,14222]],[[14194,16621,12203]],[[16529,10987,14221]],[[12125,12126,14178]],[[10996,14219,14220]],[[12125,14179,12124]],[[10976,14218,14219]],[[14180,12123,12124]],[[12122,14182,12119]],[[14183,12120,12119]],[[12143,12120,14184]],[[12143,14185,12165]],[[14187,12209,12165]],[[12208,14189,12207]],[[14191,12206,12195]],[[12205,12206,14192]],[[12205,14193,12204]],[[14210,11007,14209]],[[11012,14206,14228]],[[12208,12209,14188]],[[16621,14205,14206]],[[12122,12123,14181]],[[16621,14204,14205]],[[16621,14202,14204]],[[12126,12127,14227]],[[14202,16621,14201]],[[14201,16621,14200]],[[14200,16621,14199]],[[14199,16621,14198]],[[14198,16621,14197]],[[14197,16621,14195]],[[14195,16621,14196]],[[14196,16621,14194]],[[14194,12204,14193]],[[14193,12205,14192]],[[14192,12206,14191]],[[14191,12195,14190]],[[14190,12207,14189]],[[14189,12208,14188]],[[14185,14187,12165]],[[14188,12209,14187]],[[14184,14185,12143]],[[14183,14184,12120]],[[14182,14183,12119]],[[14181,14182,12122]],[[14180,14181,12123]],[[14179,14180,12124]],[[14178,14179,12125]],[[14227,14178,12126]],[[14176,14227,12127]],[[14175,14176,12128]],[[14174,14175,12129]],[[14173,14174,16625]],[[14172,14173,16625]],[[14171,14172,16625]],[[14170,14171,16625]],[[14169,14170,16625]],[[14168,14169,16625]],[[14167,14168,16625]],[[14166,14167,16625]],[[16635,14159,16625]],[[16625,14165,14166]],[[16625,14163,14165]],[[16625,14162,14163]],[[16625,14161,14162]],[[16625,14160,14161]],[[16625,14159,14160]],[[16635,14155,14159]],[[16635,14153,14155]],[[16635,14157,14153]],[[16635,14158,14157]],[[16635,14156,14158]],[[16635,14143,14156]],[[16635,14144,14143]],[[16635,14152,14144]],[[16635,14151,14152]],[[16635,14150,14151]],[[16635,14149,14150]],[[16635,14148,14149]],[[16635,14147,14148]],[[16635,14146,14147]],[[16635,14145,14146]],[[16635,14177,14145]],[[16635,14141,14177]],[[16635,14140,14141]],[[16635,14138,14140]],[[16635,14139,14138]],[[16635,14137,14139]],[[16635,14135,14137]],[[16635,14136,14135]],[[16526,11052,16527]],[[16530,10997,10974]],[[16527,11048,10997]],[[16527,11064,11048]],[[16527,11062,11064]],[[16527,11063,11062]],[[16527,11061,11063]],[[16527,11057,11061]],[[16527,11059,11057]],[[16527,11060,11059]],[[16527,11058,11060]],[[16527,11055,11058]],[[16527,11056,11055]],[[16527,11053,11056]],[[16527,11054,11053]],[[11020,16636,16621]],[[16527,11052,11054]],[[16526,16636,11047]],[[11052,16526,11049]],[[11049,16526,11051]],[[11051,16526,11050]],[[11050,16526,11035]],[[11035,16526,11046]],[[11046,16526,11047]],[[11047,16636,11045]],[[11045,16636,11044]],[[11044,16636,11043]],[[11043,16636,11041]],[[11041,16636,11042]],[[11040,11039,16636]],[[11042,16636,11039]],[[11036,11040,16636]],[[11038,11036,16636]],[[11037,11038,16636]],[[11033,11037,16636]],[[11034,11033,16636]],[[11029,11034,16636]],[[11031,11029,16636]],[[11032,11031,16636]],[[14216,11002,14215]],[[11030,11032,16636]],[[11001,14214,14215]],[[11026,11030,16636]],[[14213,10999,14212]],[[11028,11026,16636]],[[11006,14211,14212]],[[11027,11028,16636]],[[14210,14211,11005]],[[11022,11027,16636]],[[14209,11008,14208]],[[14206,11012,16621]],[[11009,14207,14208]],[[16636,11025,11022]],[[14228,14207,11011]],[[16636,11024,11025]],[[14213,14214,11003]],[[16636,11023,11024]],[[16636,11020,11023]],[[14216,14217,11000]],[[16621,11021,11020]],[[16621,11018,11021]],[[16621,11019,11018]],[[14217,14218,10998]],[[11019,16621,11016]],[[11016,16621,11017]],[[11017,16621,11015]],[[11015,16621,11013]],[[11013,16621,11014]],[[11014,16621,11004]],[[11004,16621,11010]],[[16621,11012,11010]],[[10977,16529,16530]],[[14228,11011,11012]],[[14220,14221,10987]],[[11011,14207,11009]],[[11009,14208,11008]],[[11008,14209,11007]],[[11007,14210,11005]],[[11005,14211,11006]],[[11006,14212,10999]],[[10999,14213,11003]],[[11003,14214,11001]],[[11001,14215,11002]],[[11002,14216,11000]],[[11000,14217,10998]],[[10998,14218,10976]],[[10976,14219,10996]],[[10996,14220,10987]],[[10987,16529,10993]],[[10993,16529,10995]],[[10995,16529,10994]],[[10994,16529,10988]],[[10988,16529,10992]],[[10992,16529,10990]],[[10990,16529,10991]],[[10991,16529,10989]],[[10989,16529,10984]],[[10984,16529,10985]],[[10985,16529,10986]],[[10982,10981,16529]],[[10983,10982,16529]],[[10980,10983,16529]],[[10977,10980,16529]],[[10979,10977,16530]],[[10978,10979,16530]],[[10975,10978,16530]],[[10973,10975,16530]],[[10974,10973,16530]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983e1262-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33cc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11998,14254,16637]],[[11998,16637,12018]],[[14254,14273,16637]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983ed62d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32dc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16638,16639,16640]],[[16638,16640,16641]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983f98fe-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef160449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"onverhard","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7971,8219,16410]],[[7970,16642,8543]],[[8220,16410,8218]],[[8218,16410,8219]],[[8219,7971,7972]],[[16643,7971,16410]],[[16643,16642,7970]],[[7970,7971,16643]],[[7969,7970,7967]],[[7967,7970,8543]],[[7968,7967,8543]],[[8544,16644,16645]],[[8543,16644,8544]],[[8543,16642,16644]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984083fa-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16646,6952,6953]],[[16646,6953,16647]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984231bb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef136949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"sierbestrating","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2352,7592,2744]],[[2352,2354,7573]],[[7592,2352,7593]],[[7593,2352,7598]],[[7598,2352,7573]],[[7573,2354,7570]],[[7570,2354,7571]],[[7571,2354,7585]],[[7574,7571,7585]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984231ca-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1d149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16648,15792,16649]],[[14285,16649,15792]],[[14418,14433,16650]],[[16651,16649,14285]],[[16652,16653,16650]],[[16654,16652,15903]],[[16655,16654,15903]],[[16656,16655,15903]],[[16657,16656,15903]],[[16658,16659,15903]],[[16660,16658,15903]],[[16661,16660,15903]],[[16662,16661,15903]],[[16663,16662,15903]],[[16664,16663,15903]],[[16665,16664,15910]],[[16057,16665,15910]],[[16664,15903,15910]],[[16659,16657,15903]],[[15903,16652,16650]],[[16650,16653,14418]],[[16651,14419,16653]],[[16653,14419,14418]],[[16651,14290,14419]],[[16312,12451,16648]],[[16312,10614,15809]],[[14290,16651,14285]],[[15792,16648,15772]],[[15772,16648,12451]],[[12451,16312,12452]],[[12452,16312,15809]],[[15809,10614,10613]],[[15804,15809,10613]],[[11769,15421,11618]],[[11785,11769,11618]],[[11619,11785,11618]],[[13131,13125,16666]],[[13041,13131,16176]],[[16667,16668,16669]],[[16670,16671,16177]],[[1027,16672,1033]],[[1033,16672,16177]],[[16673,16674,16675]],[[16676,16677,16669]],[[16678,16679,16670]],[[16671,16670,16679]],[[16680,16681,16669]],[[16678,16670,16682]],[[16683,16684,16685]],[[16686,16687,16688]],[[16689,16690,16669]],[[16691,16692,16693]],[[16674,16694,16675]],[[16695,16696,16693]],[[16697,16669,16696]],[[16698,16699,16700]],[[16699,16669,16701]],[[16702,16698,16700]],[[16700,16699,16701]],[[16694,16703,16704]],[[16701,16669,16705]],[[16706,16673,16675]],[[16705,16669,16690]],[[16707,16673,16706]],[[16707,16684,16683]],[[16687,16708,16685]],[[16689,16669,16681]],[[16709,16682,16710]],[[16680,16669,16677]],[[16671,1033,16177]],[[16676,16669,16668]],[[16667,16669,16711]],[[16711,16669,16712]],[[16712,16669,16697]],[[16697,16696,16713]],[[16713,16696,16714]],[[16714,16696,16715]],[[16715,16696,16716]],[[16716,16696,16717]],[[16718,16716,16719]],[[16720,16718,16721]],[[16722,16720,16723]],[[16724,16722,16725]],[[16726,16724,16727]],[[16728,16726,16729]],[[16730,16728,16731]],[[16732,16730,16733]],[[16734,16732,16735]],[[16736,16734,16737]],[[16738,16736,16739]],[[16740,16738,16741]],[[16739,16741,16738]],[[16742,16740,16741]],[[16737,16739,16736]],[[16735,16737,16734]],[[16733,16735,16732]],[[16731,16733,16730]],[[16729,16731,16728]],[[16727,16729,16726]],[[16725,16727,16724]],[[16723,16725,16722]],[[16721,16723,16720]],[[16719,16721,16718]],[[16717,16719,16716]],[[16743,16744,16693]],[[16696,16745,16717]],[[16696,16695,16745]],[[16746,16747,16704]],[[16693,16748,16695]],[[16743,16747,16746]],[[16748,16693,16749]],[[16749,16693,16750]],[[16750,16693,16751]],[[16751,16693,16692]],[[16752,16691,16693]],[[16744,16752,16693]],[[16746,16744,16743]],[[16704,16703,16746]],[[16694,16674,16703]],[[16672,13042,16177]],[[16673,16753,16674]],[[16673,16707,16683]],[[16683,16685,16708]],[[16708,16687,16686]],[[16754,16708,16686]],[[16754,16755,16756]],[[16709,16710,16688]],[[16757,16756,16755]],[[16710,16686,16688]],[[16755,16754,16686]],[[13042,13041,16174]],[[16710,16682,16670]],[[13042,16174,16177]],[[13041,16176,16174]],[[13131,16666,16176]],[[15421,15420,11622]],[[13125,11619,16666]],[[16666,11619,11620]],[[13125,11785,11619]],[[15420,15534,10615]],[[15421,11622,11618]],[[15534,15557,10615]],[[15420,10615,11622]],[[15557,10613,10615]],[[15557,15804,10613]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9845daba-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6857,6858,16758]],[[6857,16758,6820]],[[6820,6818,6819]],[[6820,16759,6818]],[[6820,16758,16759]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98462904-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb0349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16760,16761,16762]],[[16762,16763,16764]],[[16760,16762,16764]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9847615f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16765,16766,16767]],[[16766,16768,16767]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98484b4f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15470,14102,14125]],[[15470,14125,15459]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98490f1a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15906,15905,11987]],[[15905,11988,11987]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984abcea-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12536,16367,12531]],[[14448,11901,16370]],[[12536,16368,16367]],[[16169,16170,24]],[[16375,25,16408]],[[16408,25,16407]],[[16407,25,16380]],[[16380,25,16406]],[[16769,16404,16405]],[[16769,16382,16404]],[[16406,16769,16405]],[[16770,16382,16769]],[[16769,16406,25]],[[25,16375,24]],[[24,16375,16162]],[[16168,16169,24]],[[16167,16168,24]],[[16166,16167,24]],[[16165,16166,24]],[[16164,16165,24]],[[16163,16164,24]],[[16162,16163,24]],[[16161,16162,16375]],[[16160,16161,16375]],[[16158,16160,16375]],[[16157,16158,16375]],[[16156,16157,16375]],[[16374,16150,16375]],[[16375,16155,16156]],[[16375,16154,16155]],[[14448,16370,16369]],[[16375,16153,16154]],[[16374,16370,11900]],[[16153,16375,16152]],[[16152,16375,16149]],[[16149,16375,16150]],[[16150,16374,16171]],[[16374,16172,16171]],[[16374,11900,16172]],[[16368,15729,16369]],[[16370,11901,11900]],[[16367,16372,14738]],[[16409,15292,16372]],[[16369,14442,14448]],[[16369,15729,14442]],[[16409,15884,14532]],[[15729,16368,15746]],[[15746,16368,12536]],[[12531,16367,14731]],[[14731,16367,14732]],[[14732,16367,14746]],[[14746,16367,14738]],[[14738,16372,14237]],[[14237,16372,14240]],[[14240,16372,15291]],[[15291,16372,15292]],[[15292,16409,15237]],[[15237,16409,15238]],[[15238,16409,14532]],[[6,5,24]],[[24,5,25]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984eb436-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16771,16772,16773]],[[16771,16773,16774]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98525e11-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15694,11876,15711]],[[11876,11888,15711]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98554433-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16775,16776,16777]],[[16776,16778,16777]],[[16776,16761,16778]],[[16778,16761,16760]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98556b73-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16779,16780,16781]],[[16781,16780,16782]],[[16779,16783,16780]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9856f206-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16784,16785,16786]],[[16784,16786,16787]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b985fcb64-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0ac049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[211,313,210]],[[210,313,209]],[[211,11617,313]],[[211,212,11616]],[[11617,211,11616]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f4dc812-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[1026,1035,1036]],[[16788,1026,1036]],[[1048,16788,1049]],[[1049,16788,1040]],[[1040,16788,1041]],[[1041,16788,1036]],[[1026,1034,1035]],[[1026,1028,1034]],[[16788,16789,1026]],[[1026,16789,1027]],[[13077,16790,1048]],[[16791,13042,16672]],[[1048,16790,16788]],[[13077,13042,16791]],[[16789,16791,16672]],[[16790,13077,16791]],[[1027,16789,16672]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f4f9d10-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14527,15693,15710]],[[14527,15710,14549]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f5123ac-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe3e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16792,16793,3225]],[[3277,16794,3344]],[[3344,16795,3272]],[[3272,16796,3271]],[[3271,16797,3269]],[[3269,16798,3267]],[[3267,16799,3268]],[[3268,16800,3265]],[[3265,16801,3264]],[[3264,16802,3350]],[[3350,16803,3262]],[[16793,16804,3247]],[[3225,16793,3247]],[[3247,16804,3252]],[[3262,16792,3225]],[[3276,16805,3277]],[[16806,3366,3337]],[[3262,16803,16792]],[[3276,3366,16807]],[[16801,16802,3264]],[[16803,3350,16802]],[[3333,16808,3337]],[[16809,3329,3369]],[[3265,16800,16801]],[[3333,3329,16810]],[[16798,16799,3267]],[[16800,3268,16799]],[[3381,16811,3369]],[[16812,3322,3319]],[[3269,16797,16798]],[[3381,3322,16813]],[[16795,16796,3272]],[[16797,3271,16796]],[[3286,16814,3319]],[[16815,3285,3290]],[[3344,16794,16795]],[[3286,3285,16816]],[[16807,16805,3276]],[[16794,3277,16805]],[[3289,16817,3290]],[[3366,16806,16807]],[[3337,16808,16806]],[[3333,16810,16808]],[[16818,3292,16819]],[[3329,16809,16810]],[[3289,3292,16818]],[[16809,3369,16811]],[[16811,3381,16813]],[[16813,3322,16812]],[[16812,3319,16814]],[[16814,3286,16816]],[[16816,3285,16815]],[[16815,3290,16817]],[[16817,3289,16818]],[[16819,3292,3295]],[[16820,16819,3295]],[[16821,16820,3295]],[[16822,16821,3295]],[[16823,16822,3295]],[[16824,16823,3295]],[[16825,16824,3295]],[[16825,3294,16826]],[[16825,3295,3294]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f531ed5-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef16be49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[10028,10012,7279]],[[10028,7279,16827]],[[7278,7279,10012]],[[16828,10179,16827]],[[16827,10179,10028]],[[16828,1173,10179]],[[10205,10179,8554]],[[1161,10179,1173]],[[10205,1124,8545]],[[8534,1123,10205]],[[1124,10205,1123]],[[8534,10205,1230]],[[1230,10205,1112]],[[1217,8526,10205]],[[1112,10205,8526]],[[1218,1217,10205]],[[1203,8554,10179]],[[1218,10205,8554]],[[8562,1203,10179]],[[1202,8554,1203]],[[1188,8562,10179]],[[1146,1188,10179]],[[1161,8412,10179]],[[1146,10179,8412]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f5409d1-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7194,7198,15924]],[[7198,15901,15924]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f556936-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16829,16830,16831]],[[16829,16832,16833]],[[16833,16834,16835]],[[16833,16836,16834]],[[16833,16837,16836]],[[16833,16832,16837]],[[16829,16838,16832]],[[16829,16839,16838]],[[16829,16840,16839]],[[16829,16841,16840]],[[16829,16842,16841]],[[16829,16843,16842]],[[16829,16844,16843]],[[16829,16845,16844]],[[16829,16846,16845]],[[16829,16847,16846]],[[16829,16848,16847]],[[16829,16849,16848]],[[16829,16850,16849]],[[16829,16851,16850]],[[16829,16852,16851]],[[16829,16853,16852]],[[16829,16831,16853]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f565329-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6958,6955,6957]],[[6957,6955,6956]],[[6958,6959,16854]],[[6955,16855,6954]],[[6955,6958,16855]],[[16855,6958,16854]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f56c89e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14126,14118,15328]],[[14126,15328,15332]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f56efd5-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32dd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16856,16857,16858]],[[16857,16859,16858]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f576553-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15804,15557,15805]],[[15557,15549,15805]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f615017-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eef5fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8136,8137,16860]],[[16861,8136,11378]],[[8134,8135,8133]],[[11379,11378,8136]],[[16862,11379,8136]],[[16863,16862,8136]],[[16864,16863,8136]],[[16865,16864,8136]],[[16866,16865,8136]],[[16860,16866,8136]],[[16804,8135,16861]],[[16861,8135,8136]],[[16867,16793,16868]],[[8135,16804,16867]],[[8135,16867,8133]],[[16804,16793,16867]],[[8122,16868,8121]],[[8125,16868,8122]],[[8124,8125,8122]],[[8124,8122,8123]],[[16868,16793,8121]],[[8117,16793,8118]],[[8120,8121,8117]],[[8120,8117,8119]],[[8121,16793,8117]],[[11605,16793,11604]],[[8159,8118,11606]],[[8118,11605,11606]],[[8118,16793,11605]],[[11601,16793,11600]],[[11603,11604,11602]],[[11604,11601,11602]],[[11604,16793,11601]],[[11600,16793,15289]],[[11599,11600,11597]],[[11598,11599,11597]],[[11600,15289,11597]],[[15288,16793,16792]],[[11595,11596,11593]],[[15266,15264,11593]],[[11594,11595,11593]],[[15264,15263,11593]],[[11591,11592,11590]],[[11590,11592,11589]],[[16795,11588,11589]],[[11587,11588,11586]],[[11586,11588,11585]],[[16808,11584,11585]],[[11585,11588,16807]],[[11581,11583,11584]],[[16813,11581,11584]],[[11582,11583,11581]],[[16814,11580,11581]],[[11579,11580,11577]],[[16815,11577,11580]],[[11578,11579,11577]],[[16818,11576,11577]],[[11575,11576,11573]],[[16818,11573,11576]],[[11574,11575,11573]],[[16818,11572,11573]],[[11571,11572,2825]],[[2825,11572,16818]],[[2826,2825,16818]],[[16819,2834,2830]],[[2830,2826,16819]],[[16819,181,182]],[[182,2834,16819]],[[180,181,179]],[[179,181,176]],[[176,181,16869]],[[175,176,16869]],[[16869,181,16870]],[[16870,181,16826]],[[16826,181,16825]],[[16825,181,16824]],[[16824,181,16823]],[[16823,181,16822]],[[16822,181,16821]],[[16821,181,16820]],[[16820,181,16819]],[[16819,2826,16818]],[[16818,11577,16817]],[[16817,11577,16815]],[[16815,11580,16816]],[[16816,11580,16814]],[[16814,11581,16812]],[[16812,11581,16813]],[[16813,11584,16811]],[[16811,11584,16809]],[[16809,11584,16810]],[[16810,11584,16808]],[[16808,11585,16806]],[[16806,11585,16807]],[[16807,11588,16805]],[[16805,11588,16794]],[[16794,11588,16795]],[[16795,11589,15263]],[[15263,11589,11592]],[[15263,16797,16796]],[[15263,16798,16797]],[[15269,16799,16798]],[[15289,11596,11597]],[[15288,15289,16793]],[[16803,15288,16792]],[[16801,16800,15269]],[[15269,16800,16799]],[[16802,15288,16803]],[[16802,16801,15275]],[[15288,16802,15278]],[[15278,16802,15274]],[[15274,16802,15275]],[[15275,16801,15273]],[[15273,16801,15271]],[[15271,16801,15272]],[[16801,15269,15272]],[[16796,16795,15263]],[[16798,15263,15269]],[[11592,11593,15263]],[[11596,15287,11593]],[[15285,15266,11593]],[[15287,15285,11593]],[[15283,15287,11596]],[[15282,15283,11596]],[[15289,15282,11596]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f68f153-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee28049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12832,7096,7099]],[[6655,6678,6679]],[[16871,16317,6755]],[[16872,15991,15993]],[[6749,6663,6760]],[[6758,6759,6756]],[[16872,15976,15979]],[[6757,6758,6756]],[[6754,6755,16317]],[[16872,16017,16015]],[[7223,7224,7221]],[[7222,7223,7221]],[[6754,16317,7226]],[[7226,16317,7224]],[[7147,7148,7146]],[[7146,7148,7145]],[[16317,7138,7221]],[[7143,7144,7141]],[[7142,7143,7141]],[[7148,7138,16317]],[[7101,7103,7100]],[[16320,12842,7100]],[[7098,7099,7096]],[[7097,7098,7096]],[[12842,7099,7100]],[[12832,7094,7096]],[[7095,7096,7094]],[[16873,7093,7094]],[[7092,7093,7091]],[[7091,7093,7090]],[[7090,7093,16873]],[[7089,7090,16873]],[[16873,7094,16874]],[[15909,16873,16875]],[[16875,16873,16874]],[[16874,7094,16876]],[[16876,7094,16877]],[[16877,7094,16878]],[[16878,7094,16879]],[[16879,7094,16880]],[[16880,7094,16881]],[[16881,7094,16882]],[[16882,7094,16883]],[[16883,7094,16884]],[[16884,7094,16885]],[[16885,7094,16886]],[[16886,7094,16887]],[[16887,7094,16888]],[[16888,7094,16889]],[[16889,7094,12832]],[[16890,16889,12832]],[[505,15971,6672]],[[16891,16890,12832]],[[12841,12842,16320]],[[16342,16345,12841]],[[16892,16871,6756]],[[16340,16342,12841]],[[16340,12841,16338]],[[7224,16317,7221]],[[16336,16338,12841]],[[16336,12841,16334]],[[7148,16317,7145]],[[16334,12841,16332]],[[16354,16356,16351]],[[16330,16332,12841]],[[16356,16358,16351]],[[16328,16330,12841]],[[16326,16328,12841]],[[16358,16322,16341]],[[16323,16326,12841]],[[16324,16323,12841]],[[16360,16322,16358]],[[16346,16324,12841]],[[16348,16346,12841]],[[16362,16322,16360]],[[16350,16348,12841]],[[16352,16350,12841]],[[16364,16322,16362]],[[16353,16352,12841]],[[16355,16353,12841]],[[16322,16318,16344]],[[16357,16355,12841]],[[16359,16357,12841]],[[16318,16317,16344]],[[16361,16359,12841]],[[16363,16361,12841]],[[16321,16363,12841]],[[7103,16320,7100]],[[16319,16321,12841]],[[16872,15995,15997]],[[16317,7144,7145]],[[16317,16320,7144]],[[7144,16320,7141]],[[7141,16320,7103]],[[16351,16358,16349]],[[16349,16358,16341]],[[16347,16349,16341]],[[16325,16347,16327]],[[16327,16347,16329]],[[16329,16347,16335]],[[16331,16329,16335]],[[16333,16331,16335]],[[16335,16347,16341]],[[16337,16335,16339]],[[16339,16335,16341]],[[16341,16322,16344]],[[16343,16341,16344]],[[15974,16892,6756]],[[15997,16000,16872]],[[15995,16872,15993]],[[15971,6679,6672]],[[16872,15989,15991]],[[6655,6679,15971]],[[16008,16010,16006]],[[15989,16872,15987]],[[16010,16012,16004]],[[15987,16872,15985]],[[15985,16872,15983]],[[16012,16018,15996]],[[15983,16872,15981]],[[15981,16872,15979]],[[16014,16018,16012]],[[16872,15977,15976]],[[16872,16001,15977]],[[16016,16018,16014]],[[16872,16003,16001]],[[16872,16005,16003]],[[16018,15972,15999]],[[16872,16007,16005]],[[16872,16009,16007]],[[16020,15975,16018]],[[16872,16011,16009]],[[16872,16013,16011]],[[16872,16015,16013]],[[16018,15975,15972]],[[16872,16019,16017]],[[16872,16892,15973]],[[16774,15972,15971]],[[6759,15974,6756]],[[6759,6760,15974]],[[8391,8392,16893]],[[15971,15974,6655]],[[6655,15974,6663]],[[6663,15974,6760]],[[16006,16010,16004]],[[16004,16012,15996]],[[16002,16004,15980]],[[15978,16002,15980]],[[15980,16004,15984]],[[15982,15980,15984]],[[15984,16004,15996]],[[15986,15984,15990]],[[15988,15986,15990]],[[15990,15984,15996]],[[15992,15990,15994]],[[15994,15990,15996]],[[15996,16018,15999]],[[15998,15996,15999]],[[16894,16893,15881]],[[16773,15999,15972]],[[16895,16896,16897]],[[16897,16896,16898]],[[16898,16896,16899]],[[16900,16898,16899]],[[16901,16900,16899]],[[16899,16896,16902]],[[16903,16899,16904]],[[16904,16899,16905]],[[16905,16899,16902]],[[16906,16905,16907]],[[16907,16905,16908]],[[16909,16907,16908]],[[16908,16905,16902]],[[16910,16908,16911]],[[16911,16908,16912]],[[16912,16908,16902]],[[16913,16912,16902]],[[16914,16913,16902]],[[16902,16896,16915]],[[16916,16902,16917]],[[16917,16902,16915]],[[16918,16917,16915]],[[16915,16896,16772]],[[8388,8391,16893]],[[16894,16919,16920]],[[16921,16919,16894]],[[16922,16921,16923]],[[16923,16921,16924]],[[16925,16923,16926]],[[16927,16925,16926]],[[16926,16923,16924]],[[16928,16926,16929]],[[16929,16926,16930]],[[16931,16929,16930]],[[16930,16926,16924]],[[16932,16930,16933]],[[16933,16930,16924]],[[16934,16933,16935]],[[16935,16933,16936]],[[16937,16935,16936]],[[16936,16933,16938]],[[16939,16936,16938]],[[16938,16933,16924]],[[16940,16938,16924]],[[16924,16921,16894]],[[16941,16942,15858]],[[16943,15858,16942]],[[15880,15881,15878]],[[15879,15880,15878]],[[15878,15881,15876]],[[15877,15878,15876]],[[15876,15881,15874]],[[15875,15876,15874]],[[15874,15881,15860]],[[15873,15874,15872]],[[15872,15874,15871]],[[15871,15874,15870]],[[15870,15874,15869]],[[15869,15874,15860]],[[15868,15869,15865]],[[15867,15868,15865]],[[15866,15867,15865]],[[15865,15869,15864]],[[15864,15869,15860]],[[15863,15864,15860]],[[15862,15863,15860]],[[15861,15862,15860]],[[15860,15881,15857]],[[15859,15860,15857]],[[15881,16944,15857]],[[16944,15881,16893]],[[8272,15855,15858]],[[14714,15856,15855]],[[14721,15856,14714]],[[14717,15855,8273]],[[16945,16946,14719]],[[16947,16945,14717]],[[16948,16947,14717]],[[16949,16948,8274]],[[16950,16949,16951]],[[16952,16950,16951]],[[16953,16952,16951]],[[16954,16953,16951]],[[16951,16949,8274]],[[8275,16951,8274]],[[8274,14717,8273]],[[8273,15855,8272]],[[8272,15858,16955]],[[8271,8272,16955]],[[16956,15858,16943]],[[16957,16955,16958]],[[16955,16956,16958]],[[16955,15858,16956]],[[16959,8392,8395]],[[16960,16943,16961]],[[16943,16942,16961]],[[8387,8388,16893]],[[16944,15858,15857]],[[16959,8396,16962]],[[16959,8395,8396]],[[8394,8395,8393]],[[8395,8392,8393]],[[1389,8384,16894]],[[8390,8391,8389]],[[8391,8388,8389]],[[16893,16894,8387]],[[8384,8385,8386]],[[8386,8387,8384]],[[16894,8384,8387]],[[16963,16894,16964]],[[16965,16963,16966]],[[16894,1386,1389]],[[1391,1387,16967]],[[1386,16965,1387]],[[16968,16969,16920]],[[16963,16965,1386]],[[16965,16967,1387]],[[1386,16894,16963]],[[16969,16964,16894]],[[16969,10652,16964]],[[16920,16969,16894]],[[10647,10652,16969]],[[650,651,16970]],[[16968,650,16970]],[[16920,648,16968]],[[648,649,650]],[[16920,624,648]],[[16968,648,650]],[[16920,16971,630]],[[16771,16915,16772]],[[624,16920,630]],[[520,16971,519]],[[630,520,514]],[[630,16971,520]],[[506,518,519]],[[15971,506,16774]],[[493,518,506]],[[505,506,15971]],[[16942,16941,16962]],[[16893,8392,16959]],[[16959,16962,16941]],[[16941,15858,16944]],[[14717,14714,15855]],[[16948,14717,8274]],[[16945,14719,14717]],[[16946,16972,14719]],[[16972,14721,14719]],[[16972,15856,14721]],[[16973,12831,16345]],[[16973,16891,12832]],[[12831,16973,12832]],[[16319,12841,16320]],[[12832,7099,12842]],[[12831,12841,16345]],[[16344,16974,16000]],[[16344,16317,16871]],[[6756,16871,6755]],[[16974,16344,16871]],[[15973,16892,15974]],[[15973,16019,16872]],[[16974,16872,16000]],[[16896,15999,16773]],[[16774,16773,15972]],[[16772,16896,16773]],[[519,16774,506]],[[519,16771,16774]],[[16971,16771,519]],[[16971,16915,16771]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6bb041-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1acf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8131,8132,8133]],[[16867,8131,8133]],[[15854,8130,8131]],[[16867,15854,8131]],[[16868,15853,16867]],[[15853,8125,8126]],[[16867,15853,15854]],[[16868,8125,15853]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6bb053-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16781,16782,16975]],[[16782,16976,16975]],[[16976,16782,16977]],[[16977,16782,16978]],[[16978,16782,16979]],[[16980,16978,16979]],[[16981,16980,16979]],[[16982,16981,16979]],[[16983,16982,16979]],[[16984,16983,16979]],[[16985,16984,16979]],[[16986,16985,16979]],[[16987,16986,16979]],[[16988,16987,16989]],[[16990,16988,16989]],[[16991,16990,16989]],[[16992,16991,16989]],[[16993,16992,16989]],[[16993,16989,16954]],[[16987,16979,16989]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6c25cb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16994,16995,14274]],[[3012,15234,16995]],[[14267,16994,14274]],[[14267,16996,16994]],[[3014,15216,15234]],[[16997,16998,3015]],[[16996,14267,3015]],[[16994,16997,16995]],[[16997,3013,16995]],[[16997,3015,3013]],[[16996,3015,16998]],[[14267,15216,3015]],[[3012,3014,15234]],[[3015,15216,3014]],[[3013,3012,16995]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6cc165-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16920,16919,16971]],[[16919,16915,16971]],[[16919,16918,16915]],[[16918,16919,16917]],[[16906,16907,16932]],[[16905,16906,16933]],[[16904,16905,16934]],[[16903,16904,16935]],[[16899,16903,16937]],[[16901,16899,16936]],[[16900,16901,16939]],[[16898,16900,16938]],[[16897,16898,16940]],[[16895,16897,16924]],[[16895,16894,16896]],[[16895,16924,16894]],[[16907,16909,16930]],[[16897,16940,16924]],[[16898,16938,16940]],[[16909,16908,16931]],[[16900,16939,16938]],[[16901,16936,16939]],[[16908,16910,16929]],[[16899,16937,16936]],[[16903,16935,16937]],[[16910,16911,16928]],[[16904,16934,16935]],[[16905,16933,16934]],[[16911,16912,16926]],[[16906,16932,16933]],[[16907,16930,16932]],[[16912,16913,16927]],[[16909,16931,16930]],[[16908,16929,16931]],[[16913,16914,16925]],[[16910,16928,16929]],[[16911,16926,16928]],[[16914,16902,16923]],[[16912,16927,16926]],[[16913,16925,16927]],[[16902,16916,16922]],[[16914,16923,16925]],[[16902,16922,16923]],[[16916,16917,16921]],[[16916,16921,16922]],[[16917,16919,16921]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6e9666-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33cb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14419,14290,14439]],[[14290,14300,14439]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6e966f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16305,16308,16307]],[[16305,16307,16306]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6fcec4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16999,17000,17001]],[[16999,17002,17003]],[[17004,17005,17006]],[[17006,17005,17007]],[[17007,17008,17009]],[[17001,17000,17010]],[[16999,17003,17000]],[[17009,17011,17010]],[[17012,17005,17004]],[[17012,17013,17005]],[[17001,17010,17011]],[[17011,17009,17014]],[[17014,17009,17015]],[[17015,17009,17016]],[[17016,17009,17008]],[[17008,17007,17017]],[[17017,17007,17005]],[[17005,17013,17018]],[[17018,17013,16783]],[[16779,17018,16783]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f70e0dc-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16789,16788,16790]],[[16789,16790,16791]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f71cae4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4b449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[588,17005,17018]],[[7807,17017,17005]],[[7807,17008,17017]],[[175,16869,17019]],[[12405,17019,17002]],[[12406,16999,17001]],[[17011,17014,7809]],[[17019,12405,7833]],[[17014,17015,7809]],[[17015,17016,7809]],[[12394,17002,16999]],[[17011,1796,17001]],[[174,175,7833]],[[174,7833,1840]],[[175,17019,7833]],[[12394,12405,17002]],[[7832,7833,12405]],[[12394,16999,12427]],[[12427,16999,12355]],[[12355,16999,12324]],[[12324,16999,12318]],[[12318,16999,12319]],[[12319,16999,12323]],[[12323,16999,12321]],[[12321,16999,12322]],[[12406,12429,16999]],[[12322,16999,12429]],[[17016,17008,7807]],[[12406,17001,7823]],[[7821,12406,7823]],[[7823,17001,1795]],[[1795,17001,1796]],[[7807,7809,17016]],[[1796,17011,7809]],[[8012,7807,17005]],[[8011,8012,17005]],[[8006,8011,17005]],[[3029,8006,17005]],[[8207,3029,17005]],[[8207,3030,3029]],[[3016,8207,17005]],[[8208,3030,8207]],[[3017,3016,17005]],[[3017,17005,8036]],[[8035,8036,17005]],[[8025,3017,8036]],[[8032,8035,17005]],[[8034,8035,8032]],[[8031,8032,17005]],[[8033,8034,8032]],[[8028,8031,17005]],[[8030,8031,8028]],[[603,8028,17005]],[[8029,8030,8028]],[[611,603,17005]],[[611,614,603]],[[613,614,612]],[[576,611,17005]],[[612,614,611]],[[586,588,17018]],[[576,17005,588]],[[587,588,586]],[[586,17018,703]],[[703,17018,702]],[[702,17018,678]],[[701,702,670]],[[670,702,683]],[[8250,17018,8248]],[[682,683,681]],[[683,680,681]],[[683,702,680]],[[680,678,679]],[[680,702,678]],[[678,17018,677]],[[677,17018,8253]],[[8252,8253,8251]],[[8253,8250,8251]],[[8253,17018,8250]],[[8248,17018,8281]],[[8281,17018,8279]],[[8280,8281,8279]],[[8276,17018,8275]],[[8278,8279,8277]],[[8279,8276,8277]],[[8279,17018,8276]],[[16951,8275,16988]],[[16954,16951,16993]],[[16993,16951,16992]],[[16992,16951,16991]],[[16991,16951,16990]],[[16990,16951,16988]],[[16988,8275,16987]],[[16987,8275,16986]],[[16986,8275,16985]],[[16985,8275,16984]],[[16984,8275,16983]],[[16983,8275,16982]],[[16982,8275,16981]],[[16981,8275,16980]],[[16980,8275,16978]],[[16978,8275,16977]],[[16977,8275,16976]],[[16976,8275,16975]],[[16975,8275,16781]],[[8275,16779,16781]],[[8275,17018,16779]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f724050-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7088,7089,7087]],[[16873,15902,7089]],[[7085,7086,7087]],[[7089,15921,7087]],[[7087,7084,7085]],[[7084,7087,15921]],[[7083,7080,7082]],[[7082,7080,7081]],[[7083,7084,15915]],[[7080,7083,15915]],[[7079,7077,7078]],[[7077,7120,7073]],[[7077,7079,15915]],[[7077,7119,7120]],[[7119,7077,15915]],[[7118,7114,7117]],[[7118,7176,7114]],[[7118,7119,15916]],[[7118,17020,7176]],[[7175,7173,7174]],[[7175,7172,7173]],[[7175,7176,17020]],[[7175,17021,7172]],[[7079,7080,15915]],[[7172,17021,17022]],[[17022,17023,17024]],[[17024,17025,17026]],[[17024,17027,17025]],[[17025,17027,17028]],[[17028,17027,17029]],[[17024,17023,17027]],[[17027,17030,17031]],[[17027,17023,17030]],[[17030,17032,17033]],[[17030,17034,17032]],[[17032,17035,17036]],[[17032,17037,17035]],[[17032,17034,17037]],[[17030,17023,17034]],[[17034,17038,17039]],[[17034,17040,17038]],[[17034,17023,17040]],[[17040,17023,17041]],[[17022,17042,17023]],[[17023,17042,17043]],[[17043,17042,17044]],[[17022,17021,17042]],[[7175,17020,17021]],[[17020,7118,15916]],[[7119,15915,15916]],[[7084,15921,15915]],[[7089,15920,15921]],[[7089,15919,15920]],[[7089,15907,15919]],[[15907,7089,15918]],[[15918,7089,15917]],[[15917,7089,15914]],[[15914,7089,15913]],[[15913,7089,15902]],[[16873,15911,15902]],[[16873,15912,15911]],[[16873,15908,15912]],[[15909,15908,16873]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f72b4d4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17045,17046,17047]],[[17045,17047,17048]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f732a64-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17049,17050,9145]],[[15325,17051,15333]],[[15325,16768,17051]],[[17051,16768,17052]],[[17052,16766,17053]],[[16765,17054,16766]],[[17055,17056,16765]],[[9148,17055,16765]],[[9145,17057,9146]],[[9145,17058,17057]],[[9145,17059,17058]],[[9145,17060,17059]],[[9145,17061,17060]],[[17049,9145,17062]],[[11997,17063,17064]],[[11997,17065,17063]],[[11997,17066,17065]],[[11997,17067,17066]],[[11997,12020,17067]],[[17053,16766,17054]],[[17052,16768,16766]],[[9148,17068,17055]],[[9145,11997,17064]],[[9145,17050,17061]],[[16768,15325,9147]],[[9147,16765,16767]],[[17056,17054,16765]],[[17057,17068,9146]],[[9147,9148,16765]],[[9146,17068,9148]],[[16768,9147,16767]],[[15325,11997,9145]],[[17062,9145,17064]],[[9147,15325,9145]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f76379f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0ad049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17069,16177,16430]],[[16430,16428,16425]],[[16430,16177,16428]],[[16428,16177,262]],[[17069,17070,16177]],[[16177,17070,16670]],[[17071,16670,17072]],[[17073,17071,17072]],[[17073,17072,17074]],[[16670,17070,17072]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"ba2bf3d0a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17075,17076,17077]],[[17075,17077,17078]],[[17079,17080,17075]],[[17075,17080,17076]],[[17081,17082,17077]],[[17077,17082,17078]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c139a9-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7823,1795,1801]],[[7823,1802,7822]],[[1801,1794,1802]],[[7823,1801,1802]],[[1795,1797,1801]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c139ab-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7169,7170,17083]],[[17083,7199,7167]],[[7167,7199,7200]],[[7169,17083,7167]],[[15943,7199,17083]],[[7170,15943,17083]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c1d52d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0876949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[266,279,265]],[[279,280,265]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c22373-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10539,17084,1403]],[[17085,1377,17084]],[[1381,10539,1403]],[[1376,1377,17085]],[[10002,1376,17085]],[[10539,1381,10009]],[[10539,17085,17084]],[[10009,1381,10044]],[[10033,10009,10044]],[[1381,17086,10044]],[[1381,1391,17086]],[[1323,1403,17084]],[[1377,1323,17084]],[[10349,10002,17085]],[[10539,10349,17085]],[[1391,16967,17086]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c2bff4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17087,1525,1369]],[[17088,17087,1369]],[[17089,11609,17088]],[[11608,17090,17087]],[[11609,11608,17087]],[[17088,11609,17087]],[[17089,11607,11609]],[[13350,11610,17089]],[[17089,11610,11607]],[[13352,13350,17088]],[[17088,13350,17089]],[[1369,13352,17088]],[[1535,1525,17087]],[[1364,1535,17090]],[[17090,1535,17087]],[[1688,1364,11608]],[[11608,1364,17090]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c46d5d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f097f149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17091,17092,17093]],[[17094,17095,17093]],[[17096,17097,17091]],[[17091,17098,17096]],[[17091,17099,17098]],[[17091,17097,17092]],[[17099,17091,17100]],[[17101,17091,17102]],[[17102,17091,17103]],[[17093,17092,17094]],[[17100,17091,17104]],[[17091,17101,17104]],[[17105,17106,17091]],[[17107,17108,17109]],[[17108,17107,17105]],[[17110,17109,17108]],[[17111,17112,17110]],[[17113,17112,17111]],[[17111,17114,17113]],[[17115,17114,17111]],[[17116,17115,17111]],[[17117,17116,17118]],[[17118,17119,17117]],[[17120,17121,17118]],[[17120,17118,17122]],[[17122,17118,17123]],[[17123,17124,17125]],[[17125,17124,17126]],[[17126,17124,17127]],[[17127,17128,17129]],[[17129,17128,17130]],[[17130,17128,17131]],[[17131,17128,17132]],[[17132,17128,17133]],[[17128,17134,17135]],[[17136,17128,17137]],[[17137,17128,17138]],[[17138,17128,17139]],[[17139,17128,17135]],[[17140,17134,17141]],[[17142,17135,17134]],[[17134,17143,17142]],[[17144,17134,17140]],[[17140,17145,17146]],[[17140,17141,17145]],[[17145,17141,17147]],[[17144,17143,17134]],[[17133,17128,17136]],[[17118,17116,17111]],[[17127,17124,17128]],[[17121,17119,17118]],[[17124,17123,17118]],[[17106,17103,17091]],[[17111,17110,17108]],[[17108,17105,17091]],[[17148,17149,17150]],[[17093,17151,17152]],[[17152,17153,17154]],[[17155,17156,17157]],[[17157,17156,17158]],[[17157,17158,17159]],[[17156,17150,17149]],[[17156,17149,17158]],[[17150,17154,17148]],[[17153,17148,17154]],[[17160,17153,17152]],[[17161,17160,17152]],[[17151,17161,17152]],[[17162,17151,17093]],[[17163,17164,17093]],[[17093,17164,17162]],[[17165,17163,17093]],[[17166,17165,17093]],[[17167,17166,17093]],[[17168,17167,17093]],[[17095,17168,17093]],[[1038,17169,17146]],[[17146,17169,17140]],[[1053,1038,17145]],[[17145,1038,17146]],[[1054,1053,17147]],[[17147,1053,17145]],[[17170,1054,17141]],[[17141,1054,17147]],[[17171,17170,17134]],[[17134,17170,17141]],[[17172,17171,17128]],[[17128,17171,17134]],[[17173,17172,17124]],[[17124,17172,17128]],[[17174,17173,17118]],[[17118,17173,17124]],[[17175,17174,17111]],[[17111,17174,17118]],[[17176,17175,17108]],[[17108,17175,17111]],[[17177,17176,17091]],[[17091,17176,17108]],[[17178,17177,17093]],[[17093,17177,17091]],[[17179,17178,17152]],[[17152,17178,17093]],[[17180,17179,17154]],[[17154,17179,17152]],[[17181,17180,17150]],[[17150,17180,17154]],[[17182,17181,17156]],[[17156,17181,17150]],[[17183,17182,17155]],[[17155,17182,17156]],[[17184,17183,17157]],[[17157,17183,17155]],[[17185,17184,17159]],[[17159,17184,17157]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c5a65f-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17186,17187,17188]],[[17189,8656,8664]],[[17190,17189,8664]],[[17188,17189,17190]],[[17191,17192,17186]],[[17193,17191,17194]],[[17187,17189,17188]],[[17187,17195,17196]],[[17187,17197,17195]],[[17187,17186,17197]],[[17198,8484,17199]],[[17192,17197,17186]],[[17192,17200,17201]],[[17192,17193,17200]],[[17192,17191,17193]],[[17191,8484,17198]],[[17194,17191,17202]],[[17202,17198,17203]],[[17203,17198,17204]],[[17202,17191,17198]],[[8817,8484,17191]],[[8818,8817,17186]],[[17186,8817,17191]],[[8660,8818,17188]],[[17188,8818,17186]],[[8661,8660,17190]],[[17190,8660,17188]],[[8664,8661,17190]],[[8659,8656,17189]],[[8657,8659,17187]],[[17187,8659,17189]],[[8655,8657,17196]],[[17196,8657,17187]],[[8654,8655,17195]],[[17195,8655,17196]],[[8652,8654,17197]],[[17197,8654,17195]],[[8653,8652,17192]],[[17192,8652,17197]],[[8651,8653,17201]],[[17201,8653,17192]],[[8649,8651,17200]],[[17200,8651,17201]],[[8650,8649,17193]],[[17193,8649,17200]],[[8647,8650,17194]],[[17194,8650,17193]],[[8648,8647,17202]],[[17202,8647,17194]],[[8646,8648,17203]],[[17203,8648,17202]],[[8644,8646,17204]],[[17204,8646,17203]],[[8645,8644,17198]],[[17198,8644,17204]],[[8642,8645,17199]],[[17199,8645,17198]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c8da19-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17205,10652,17206]],[[17205,17206,17207]],[[17208,10652,10645]],[[17209,17086,17210]],[[17211,10044,17086]],[[17209,17212,17211]],[[17209,17213,17212]],[[17214,17209,17210]],[[17211,17086,17209]],[[17215,17216,17214]],[[17217,17215,17214]],[[17210,17217,17214]],[[17210,10641,17217]],[[17206,10641,17210]],[[17206,17218,10641]],[[17206,10652,17218]],[[17218,10652,17208]],[[16964,10652,17205]],[[16963,16964,17207]],[[17207,16964,17205]],[[16966,16963,17206]],[[17206,16963,17207]],[[16965,16966,17210]],[[17210,16966,17206]],[[16967,16965,17086]],[[17086,16965,17210]],[[10048,10044,17211]],[[10043,10048,17212]],[[17212,10048,17211]],[[9992,10043,17213]],[[17213,10043,17212]],[[10046,9992,17209]],[[17209,9992,17213]],[[10045,10046,17214]],[[17214,10046,17209]],[[9993,10045,17216]],[[17216,10045,17214]],[[10042,9993,17215]],[[17215,9993,17216]],[[10644,10042,17217]],[[17217,10042,17215]],[[10641,10644,17217]],[[10642,10641,17218]],[[10643,10642,17208]],[[17208,10642,17218]],[[10645,10643,17208]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c92854-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.7fa0197b61b6438794ab14242e673e48","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17219,17075,17220]],[[17219,17221,17222]],[[17222,17223,17224]],[[17225,37,39]],[[17225,38,37]],[[17225,17226,38]],[[17225,17227,17228]],[[17225,17228,17226]],[[17227,17224,17228]],[[17224,17223,17228]],[[17222,17221,17223]],[[17219,17220,17221]],[[17220,17075,17078]],[[17229,17220,17078]],[[17230,17229,17078]],[[17231,17230,17078]],[[17231,17078,17232]],[[17233,17234,17235]],[[17235,17234,17236]],[[17237,17236,17234]],[[17238,17239,17234]],[[17240,17238,17234]],[[17241,17240,17234]],[[17242,17241,17243]],[[17244,17242,17243]],[[17245,17244,17243]],[[17246,17247,17248]],[[17249,17248,17250]],[[17249,17246,17248]],[[17251,17245,17243]],[[17251,17246,17249]],[[17251,17243,17246]],[[17241,17234,17243]],[[17239,17237,17234]],[[17232,17078,17252]],[[17078,17253,17252]],[[17078,17234,17253]],[[17253,17234,17233]],[[17254,17079,17219]],[[17219,17079,17075]],[[17255,17254,17222]],[[17222,17254,17219]],[[17256,17255,17224]],[[17224,17255,17222]],[[17257,17256,17227]],[[17227,17256,17224]],[[17258,17257,17225]],[[17225,17257,17227]],[[20,17258,39]],[[39,17258,17225]],[[19,20,37]],[[37,20,39]],[[18,19,36]],[[36,19,38]],[[38,19,37]],[[16273,36,17226]],[[17226,36,38]],[[16271,16273,17228]],[[17228,16273,17226]],[[14711,16271,14644]],[[14644,16271,17223]],[[17223,16271,17228]],[[14630,14644,17221]],[[17221,14644,17223]],[[16292,14712,17220]],[[17220,14712,14630]],[[17220,14630,17221]],[[11914,16292,17229]],[[17229,16292,17220]],[[11927,11914,17230]],[[17230,11914,17229]],[[13905,11957,13896]],[[13896,11957,17231]],[[17231,11957,11927]],[[17231,11927,17230]],[[13829,13896,17232]],[[17232,13896,17231]],[[13826,13829,13797]],[[13797,13829,17252]],[[17252,13829,17232]],[[13764,13797,17253]],[[17253,13797,17252]],[[12022,13764,17233]],[[17233,13764,17253]],[[12023,12022,17235]],[[17235,12022,17233]],[[14925,12023,17236]],[[17236,12023,17235]],[[14974,14925,17237]],[[17237,14925,17236]],[[11829,14974,17239]],[[17239,14974,17237]],[[11830,11829,17238]],[[17238,11829,17239]],[[14561,11830,17240]],[[17240,11830,17238]],[[14554,14561,17241]],[[17241,14561,17240]],[[12528,14554,17242]],[[17242,14554,17241]],[[12521,12528,17244]],[[17244,12528,17242]],[[16288,12521,17245]],[[17245,12521,17244]],[[17259,16288,17251]],[[17251,16288,17245]],[[17260,17259,17249]],[[17249,17259,17251]],[[17261,17260,17250]],[[17250,17260,17249]],[[17262,17263,17246]],[[17246,17263,17247]],[[17264,17262,17243]],[[17243,17262,17246]],[[17265,17264,17234]],[[17234,17264,17243]],[[17082,17265,17078]],[[17078,17265,17234]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ca6162-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17266,17267,17268]],[[17266,17269,17267]],[[17270,17271,17272]],[[17270,17273,17271]],[[2766,17269,17266]],[[2781,17274,2778]],[[17274,17275,17276]],[[17274,17277,17275]],[[2778,17273,2775]],[[17277,17274,2781]],[[8319,17277,2781]],[[8319,2781,2799]],[[2781,2778,2779]],[[2779,2778,2782]],[[17274,17273,2778]],[[17273,17270,2771]],[[2775,17273,2771]],[[2775,2777,2773]],[[2775,2771,2777]],[[17270,17269,2771]],[[2769,2766,17266]],[[2766,2771,17269]],[[2766,2769,2764]],[[2764,2769,2768]],[[17266,8318,2769]],[[2798,2769,8318]],[[16078,8318,17266]],[[16079,16078,17268]],[[17268,16078,17266]],[[16077,16079,17267]],[[17267,16079,17268]],[[16075,16077,17269]],[[17269,16077,17267]],[[16076,16075,17270]],[[17270,16075,17269]],[[16074,16076,17272]],[[17272,16076,17270]],[[16073,16074,17271]],[[17271,16074,17272]],[[16072,16073,17273]],[[17273,16073,17271]],[[16070,16072,17274]],[[17274,16072,17273]],[[16071,16070,17276]],[[17276,16070,17274]],[[16069,16071,17275]],[[17275,16071,17276]],[[16068,16069,17277]],[[17277,16069,17275]],[[8319,16068,17277]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cbe7b0-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1112,8526,1229]],[[1112,1229,1110]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cc0ecf-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6951,6952,17278]],[[17279,6951,17278]],[[17280,17279,17278]],[[17280,17281,17279]],[[6960,17282,6959]],[[6954,17281,6953]],[[17283,17284,17285]],[[17281,17280,6953]],[[6960,17284,17282]],[[17283,17282,17284]],[[17283,17279,17281]],[[17282,17283,17281]],[[16647,6953,17280]],[[16646,16647,17278]],[[17278,16647,17280]],[[6952,16646,17278]],[[16648,6951,17279]],[[16312,16648,17283]],[[17283,16648,17279]],[[16310,16312,17285]],[[17285,16312,17283]],[[16311,16310,17284]],[[17284,16310,17285]],[[6960,16311,17284]],[[16854,6959,17282]],[[16855,16854,17281]],[[17281,16854,17282]],[[6954,16855,17281]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cd20b1-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17286,17287,17288]],[[17287,17289,17288]],[[10623,9803,17286]],[[17286,9803,17287]],[[9808,10623,17288]],[[17288,10623,17286]],[[9802,9808,17289]],[[17289,9808,17288]],[[9803,9802,17287]],[[17287,9802,17289]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cd9515-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2250,8714,343]],[[2250,343,344]],[[8714,367,343]],[[343,367,368]],[[8714,8717,367]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cef542-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8219,7972,1247]],[[7972,1295,1247]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d1b3a6-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17290,17291,17292]],[[17293,17294,17295]],[[8484,17293,17199]],[[17199,17293,17295]],[[17295,17294,17296]],[[17297,17298,17299]],[[8484,17300,17293]],[[8484,17297,17300]],[[17300,17297,17299]],[[8482,17297,8484]],[[8482,17291,17290]],[[17301,17297,8482]],[[17302,17301,17303]],[[17301,17290,17303]],[[17301,8482,17290]],[[17292,17291,17304]],[[17305,17292,17304]],[[17291,17306,17304]],[[8482,8826,17291]],[[8643,8642,17295]],[[17295,8642,17199]],[[8814,8643,17296]],[[17296,8643,17295]],[[8797,8814,17294]],[[17294,8814,17296]],[[8798,8797,17293]],[[17293,8797,17294]],[[8813,8798,17300]],[[17300,8798,17293]],[[8796,8813,17299]],[[17299,8813,17300]],[[8801,8796,17298]],[[17298,8796,17299]],[[8811,8801,17297]],[[17297,8801,17298]],[[8810,8811,17301]],[[17301,8811,17297]],[[8800,8810,17302]],[[17302,8810,17301]],[[8807,8800,17303]],[[17303,8800,17302]],[[8809,8807,17290]],[[17290,8807,17303]],[[8808,8809,17292]],[[17292,8809,17290]],[[8802,8808,17305]],[[17305,8808,17292]],[[8803,8802,17304]],[[17304,8802,17305]],[[16620,8803,17306]],[[17306,8803,17304]],[[8826,16620,17291]],[[17291,16620,17306]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d44bdf-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17307,17308,17309]],[[17308,17310,17309]],[[17308,17311,17310]],[[17311,7712,7713]],[[17311,9809,7712]],[[17311,17308,9809]],[[10620,9807,17307]],[[17307,9807,17308]],[[9152,9155,17310]],[[17310,9155,17309]],[[9153,9152,17311]],[[17311,9152,17310]],[[7713,9153,17311]],[[9807,9809,17308]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d5fa48-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a4049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17312,17313,17314]],[[17313,17315,17316]],[[17315,17317,17318]],[[17317,17319,17320]],[[17319,17321,17322]],[[17321,17323,17324]],[[17323,17325,17326]],[[17327,17328,17329]],[[17318,17317,17320]],[[17320,17319,17322]],[[17330,17331,17332]],[[17324,17322,17321]],[[17333,17332,17327]],[[17327,17334,17333]],[[17327,17329,17334]],[[17330,17335,17331]],[[17327,17336,17328]],[[17316,17315,17318]],[[17330,17332,17333]],[[17337,17336,17327]],[[17326,17325,17335]],[[17326,17324,17323]],[[17325,17331,17335]],[[17314,17313,17316]],[[17338,17312,17314]],[[17339,17340,17338]],[[17341,17342,17339]],[[17343,17344,17341]],[[17345,17346,17343]],[[17347,17348,17345]],[[17349,17350,17347]],[[17338,17340,17312]],[[17340,17339,17342]],[[17342,17341,17344]],[[17344,17343,17346]],[[17346,17345,17348]],[[17348,17347,17350]],[[17350,17349,17351]],[[17350,17351,17352]],[[17349,17353,17351]],[[17349,17354,17353]],[[16254,16209,17349]],[[17349,16209,17354]],[[16242,16254,17347]],[[17347,16254,17349]],[[16253,16242,17345]],[[17345,16242,17347]],[[16251,16253,17343]],[[17343,16253,17345]],[[16252,16251,17341]],[[17341,16251,17343]],[[16249,16252,17339]],[[17339,16252,17341]],[[16250,16249,17338]],[[17338,16249,17339]],[[16248,16250,17314]],[[17314,16250,17338]],[[16245,16248,17316]],[[17316,16248,17314]],[[16247,16245,17318]],[[17318,16245,17316]],[[16246,16247,17320]],[[17320,16247,17318]],[[16243,16246,17322]],[[17322,16246,17320]],[[16244,16243,17324]],[[17324,16243,17322]],[[16181,16244,17326]],[[17326,16244,17324]],[[16182,16181,17335]],[[17335,16181,17326]],[[16183,16182,17330]],[[17330,16182,17335]],[[16241,16183,17333]],[[17333,16183,17330]],[[16240,16241,17334]],[[17334,16241,17333]],[[16207,16240,17329]],[[17329,16240,17334]],[[16238,16207,17328]],[[17328,16207,17329]],[[17355,17356,17327]],[[17327,17356,17337]],[[17357,17355,17332]],[[17332,17355,17327]],[[17358,17357,17331]],[[17331,17357,17332]],[[17359,17358,17325]],[[17325,17358,17331]],[[17360,17359,17323]],[[17323,17359,17325]],[[17361,17360,17321]],[[17321,17360,17323]],[[17362,17361,17319]],[[17319,17361,17321]],[[17363,17362,17317]],[[17317,17362,17319]],[[17364,17363,17315]],[[17315,17363,17317]],[[17365,17364,17313]],[[17313,17364,17315]],[[17366,17365,17312]],[[17312,17365,17313]],[[17367,17366,17340]],[[17340,17366,17312]],[[17368,17367,17342]],[[17342,17367,17340]],[[17369,17368,17344]],[[17344,17368,17342]],[[17370,17369,17346]],[[17346,17369,17344]],[[17371,17370,17348]],[[17348,17370,17346]],[[17372,17371,17350]],[[17350,17371,17348]],[[16267,17372,16260]],[[16260,17372,17352]],[[17352,17372,17350]],[[16257,16260,17351]],[[17351,16260,17352]],[[16258,16257,17353]],[[17353,16257,17351]],[[16209,16258,17354]],[[17354,16258,17353]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d7ced0-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17373,7452,7453]],[[17373,7453,17374]],[[8978,7452,17373]],[[8846,8978,17374]],[[17374,8978,17373]],[[7453,8846,17374]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d8b896-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17375,17376,8403]],[[17376,1095,8403]],[[8925,1100,17375]],[[17375,1100,17376]],[[8403,8925,17375]],[[1100,1095,17376]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2dc146d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.10994c13ed9746c2b01feaa5f372aece","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17377,17378,17379]],[[17380,17381,17382]],[[17383,17380,17384]],[[17384,17380,17382]],[[17385,17380,17383]],[[17385,17386,17380]],[[17387,17386,17385]],[[17379,17386,17377]],[[17377,17386,17388]],[[17388,17386,17387]],[[17389,17390,17391]],[[17392,17393,17394]],[[17395,17396,17397]],[[17398,17399,17400]],[[17401,17402,17403]],[[17403,17404,17405]],[[17406,17407,17408]],[[17407,17409,17410]],[[17411,17412,17413]],[[17413,17414,17415]],[[17415,17416,17400]],[[17417,17418,17419]],[[17420,17421,17422]],[[17423,17424,17422]],[[17425,17426,17427]],[[17428,17429,17430]],[[17431,17432,17433]],[[17432,17430,17433]],[[17432,17427,17434]],[[17430,17432,17428]],[[17435,17430,17429]],[[17435,17429,17436]],[[17437,17428,17432]],[[17438,17437,17432]],[[17439,17438,17432]],[[17434,17439,17432]],[[17440,17434,17427]],[[17426,17440,17427]],[[17422,17441,17427]],[[17442,17425,17427]],[[17443,17442,17427]],[[17444,17443,17427]],[[17445,17444,17427]],[[17446,17445,17427]],[[17447,17446,17427]],[[17448,17447,17427]],[[17441,17448,17427]],[[17449,17441,17422]],[[17450,17449,17422]],[[17424,17450,17422]],[[17451,17420,17422]],[[17452,17423,17422]],[[17421,17452,17422]],[[17453,17454,17455]],[[17456,17420,17451]],[[17455,17456,17451]],[[17453,17455,17451]],[[17457,17454,17453]],[[17419,17453,17451]],[[17419,17458,17453]],[[17410,17417,17419]],[[17419,17459,17458]],[[17419,17418,17459]],[[17410,17408,17407]],[[17460,17417,17410]],[[17409,17460,17410]],[[17400,17461,17408]],[[17462,17463,17411]],[[17405,17464,17462]],[[17406,17408,17461]],[[17461,17400,17399]],[[17465,17466,17401]],[[17400,17467,17398]],[[17400,17468,17467]],[[17400,17469,17468]],[[17400,17416,17469]],[[17415,17470,17416]],[[17415,17471,17470]],[[17472,17473,17474]],[[17415,17414,17471]],[[17465,17473,17475]],[[17414,17413,17412]],[[17463,17476,17411]],[[17412,17411,17476]],[[17464,17463,17462]],[[17477,17478,17474]],[[17479,17480,17481]],[[17405,17404,17464]],[[17477,17480,17482]],[[17483,17484,17403]],[[17404,17403,17484]],[[17402,17483,17403]],[[17485,17402,17401]],[[17486,17485,17401]],[[17487,17486,17401]],[[17466,17487,17401]],[[17488,17466,17465]],[[17475,17488,17465]],[[17489,17475,17473]],[[17490,17489,17473]],[[17472,17490,17473]],[[17491,17472,17474]],[[17478,17491,17474]],[[17492,17478,17477]],[[17493,17492,17477]],[[17494,17493,17477]],[[17482,17494,17477]],[[17495,17482,17480]],[[17496,17495,17480]],[[17497,17496,17480]],[[17479,17497,17480]],[[17498,17395,17394]],[[17499,17500,17481]],[[17499,17397,17396]],[[17479,17481,17501]],[[17501,17481,17500]],[[17500,17499,17502]],[[17502,17499,17503]],[[17503,17499,17504]],[[17505,17396,17395]],[[17504,17499,17396]],[[17506,17505,17395]],[[17507,17506,17395]],[[17508,17507,17395]],[[17509,17508,17395]],[[17498,17509,17395]],[[17510,17498,17394]],[[17393,17510,17394]],[[17391,17511,17394]],[[17512,17392,17394]],[[17513,17512,17394]],[[17514,17513,17394]],[[17515,17514,17394]],[[17516,17515,17394]],[[17517,17516,17394]],[[17511,17517,17394]],[[17518,17511,17391]],[[17519,17518,17391]],[[17390,17519,17391]],[[17520,17521,17391]],[[17522,17389,17391]],[[17521,17522,17391]],[[17523,17524,17520]],[[17520,17525,17521]],[[17520,17524,17525]],[[17523,17379,17526]],[[17524,17523,17526]],[[17379,17527,17526]],[[17379,17378,17527]],[[11906,14447,17377]],[[17377,14447,17378]],[[11908,11906,17388]],[[17388,11906,17377]],[[16173,11912,17387]],[[17387,11912,11908]],[[17387,11908,17388]],[[16151,16173,17385]],[[17385,16173,17387]],[[16159,16151,17383]],[[17383,16151,17385]],[[22,16159,17384]],[[17384,16159,17383]],[[17528,1,17382]],[[17382,1,22]],[[17382,22,17384]],[[2,17528,17381]],[[17381,17528,17382]],[[17529,2,17380]],[[17380,2,17381]],[[17530,17529,17386]],[[17386,17529,17380]],[[17531,17530,17379]],[[17379,17530,17386]],[[17532,17533,17520]],[[17520,17533,17523]],[[17534,17532,17391]],[[17391,17532,17520]],[[17535,17534,17394]],[[17394,17534,17391]],[[17536,17535,17395]],[[17395,17535,17394]],[[17537,17536,17397]],[[17397,17536,17395]],[[17538,17537,17499]],[[17499,17537,17397]],[[17539,17538,17481]],[[17481,17538,17499]],[[17540,17539,17480]],[[17480,17539,17481]],[[17541,17540,17477]],[[17477,17540,17480]],[[17542,17541,17474]],[[17474,17541,17477]],[[17543,17542,17473]],[[17473,17542,17474]],[[17544,17543,17465]],[[17465,17543,17473]],[[17545,17544,17401]],[[17401,17544,17465]],[[17546,17545,17403]],[[17403,17545,17401]],[[17547,17546,17405]],[[17405,17546,17403]],[[17548,17547,17462]],[[17462,17547,17405]],[[17549,17548,17411]],[[17411,17548,17462]],[[17550,17549,17413]],[[17413,17549,17411]],[[17551,17550,17415]],[[17415,17550,17413]],[[17552,17551,17400]],[[17400,17551,17415]],[[17553,17552,17408]],[[17408,17552,17400]],[[17554,17553,17410]],[[17410,17553,17408]],[[17555,17554,17419]],[[17419,17554,17410]],[[17556,17555,17451]],[[17451,17555,17419]],[[17557,17556,17422]],[[17422,17556,17451]],[[17558,17557,17427]],[[17427,17557,17422]],[[17559,17558,17432]],[[17432,17558,17427]],[[17560,17559,17431]],[[17431,17559,17432]],[[1046,17560,17433]],[[17433,17560,17431]],[[1042,1046,17430]],[[17430,1046,17433]],[[1043,1042,17435]],[[17435,1042,17430]],[[1044,1043,17436]],[[17436,1043,17435]],[[1048,1044,17429]],[[17429,1044,17436]],[[13077,1048,17428]],[[17428,1048,17429]],[[13037,13077,17437]],[[17437,13077,17428]],[[13136,13037,17438]],[[17438,13037,17437]],[[13139,13136,17439]],[[17439,13136,17438]],[[11772,13139,17434]],[[17434,13139,17439]],[[11793,11772,17440]],[[17440,11772,17434]],[[15442,11793,17426]],[[17426,11793,17440]],[[15440,15442,17425]],[[17425,15442,17426]],[[15535,15440,17442]],[[17442,15440,17425]],[[15548,15535,17443]],[[17443,15535,17442]],[[15549,15548,17444]],[[17444,15548,17443]],[[15805,15549,17445]],[[17445,15549,17444]],[[15824,15805,17446]],[[17446,15805,17445]],[[12454,15824,17447]],[[17447,15824,17446]],[[12461,12454,17448]],[[17448,12454,17447]],[[15795,12461,17441]],[[17441,12461,17448]],[[15785,15795,17449]],[[17449,15795,17441]],[[14305,15785,17450]],[[17450,15785,17449]],[[14300,14305,17424]],[[17424,14305,17450]],[[14439,14300,14421]],[[14421,14300,17423]],[[17423,14300,17424]],[[14433,14421,17452]],[[17452,14421,17423]],[[16650,14433,17421]],[[17421,14433,17452]],[[15903,16650,17420]],[[17420,16650,17421]],[[15904,15903,17456]],[[17456,15903,17420]],[[15905,15904,17455]],[[17455,15904,17456]],[[11988,15905,11983]],[[11983,15905,17454]],[[17454,15905,17455]],[[11967,11983,17457]],[[17457,11983,17454]],[[11963,11967,17453]],[[17453,11967,17457]],[[11973,11963,17458]],[[17458,11963,17453]],[[15852,11986,17459]],[[17459,11986,11973]],[[17459,11973,17458]],[[15235,15852,15219]],[[15219,15852,17418]],[[17418,15852,17459]],[[15228,15219,17417]],[[17417,15219,17418]],[[16995,15234,17460]],[[17460,15234,15228]],[[17460,15228,17417]],[[14274,16995,14265]],[[14265,16995,17409]],[[17409,16995,17460]],[[14269,14265,17407]],[[17407,14265,17409]],[[16637,14273,17406]],[[17406,14273,14269]],[[17406,14269,17407]],[[12018,16637,17461]],[[17461,16637,17406]],[[12011,12018,17399]],[[17399,12018,17461]],[[12012,12011,17398]],[[17398,12011,17399]],[[12009,12012,17467]],[[17467,12012,17398]],[[12010,12009,17468]],[[17468,12009,17467]],[[12003,12010,17469]],[[17469,12010,17468]],[[12004,12003,17416]],[[17416,12003,17469]],[[12001,12004,17470]],[[17470,12004,17416]],[[11999,12001,17471]],[[17471,12001,17470]],[[17067,12020,17414]],[[17414,12020,11999]],[[17414,11999,17471]],[[17066,17067,17412]],[[17412,17067,17414]],[[17065,17066,17476]],[[17476,17066,17412]],[[17063,17065,17463]],[[17463,17065,17476]],[[17064,17063,17464]],[[17464,17063,17463]],[[17062,17064,17404]],[[17404,17064,17464]],[[17049,17062,17484]],[[17484,17062,17404]],[[17050,17049,17483]],[[17483,17049,17484]],[[17061,17050,17402]],[[17402,17050,17483]],[[17060,17061,17485]],[[17485,17061,17402]],[[17059,17060,17486]],[[17486,17060,17485]],[[17058,17059,17487]],[[17487,17059,17486]],[[17057,17058,17466]],[[17466,17058,17487]],[[17068,17057,17488]],[[17488,17057,17466]],[[17055,17068,17475]],[[17475,17068,17488]],[[17056,17055,17489]],[[17489,17055,17475]],[[17054,17056,17490]],[[17490,17056,17489]],[[17053,17054,17472]],[[17472,17054,17490]],[[17052,17053,17491]],[[17491,17053,17472]],[[17051,17052,17478]],[[17478,17052,17491]],[[15333,17051,15324]],[[15324,17051,17492]],[[17492,17051,17478]],[[15331,15324,17493]],[[17493,15324,17492]],[[15320,15331,17494]],[[17494,15331,17493]],[[15317,15320,17482]],[[17482,15320,17494]],[[15315,15317,17495]],[[17495,15317,17482]],[[15311,15315,17496]],[[17496,15315,17495]],[[15312,15311,17497]],[[17497,15311,17496]],[[15327,15312,17479]],[[17479,15312,17497]],[[14126,15332,14123]],[[14123,15332,17501]],[[17501,15332,15327]],[[17501,15327,17479]],[[14122,14123,17500]],[[17500,14123,17501]],[[15459,14125,17502]],[[17502,14125,14122]],[[17502,14122,17500]],[[15458,15459,17503]],[[17503,15459,17502]],[[17561,15473,17504]],[[17504,15473,15458]],[[17504,15458,17503]],[[17562,17561,17396]],[[17396,17561,17504]],[[17563,17562,17505]],[[17505,17562,17396]],[[11879,17563,17506]],[[17506,17563,17505]],[[11887,11879,17507]],[[17507,11879,17506]],[[15711,11888,15706]],[[15706,11888,17508]],[[17508,11888,11887]],[[17508,11887,17507]],[[15708,15706,17509]],[[17509,15706,17508]],[[14549,15710,14528]],[[14528,15710,17498]],[[17498,15710,15708]],[[17498,15708,17509]],[[14543,14528,17510]],[[17510,14528,17498]],[[15251,14548,17393]],[[17393,14548,14543]],[[17393,14543,17510]],[[15256,15251,17392]],[[17392,15251,17393]],[[15301,15261,17512]],[[17512,15261,15256]],[[17512,15256,17392]],[[15296,15301,17513]],[[17513,15301,17512]],[[17564,15306,17514]],[[17514,15306,15296]],[[17514,15296,17513]],[[14245,17564,14242]],[[14242,17564,17515]],[[17515,17564,17514]],[[14234,14242,17516]],[[17516,14242,17515]],[[14748,14234,14740]],[[14740,14234,17517]],[[17517,14234,17516]],[[14747,14740,17511]],[[17511,14740,17517]],[[14734,14747,17518]],[[17518,14747,17511]],[[14735,14734,17519]],[[17519,14734,17518]],[[12532,14735,17390]],[[17390,14735,17519]],[[12538,12532,17389]],[[17389,12532,17390]],[[17565,12538,17522]],[[17522,12538,17389]],[[15742,17565,17521]],[[17521,17565,17522]],[[15728,15742,17525]],[[17525,15742,17521]],[[17566,15728,17524]],[[17524,15728,17525]],[[17567,17566,17526]],[[17526,17566,17524]],[[14460,17567,17527]],[[17527,17567,17526]],[[14447,14460,17378]],[[17378,14460,17527]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2de5e68-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17568,7729,17307]],[[17568,17307,366]],[[366,17309,364]],[[366,17307,17309]],[[7729,7730,17307]],[[8719,7729,17568]],[[366,8719,17568]],[[9155,364,17309]],[[7730,10620,17307]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2defaf4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1218,8554,1212]],[[1218,1212,1211]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2dfe4b4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13242,13275,13252]],[[13247,13276,13275]],[[17569,13277,13276]],[[17570,10244,13270]],[[13273,17571,13278]],[[13286,13285,10225]],[[10427,10426,13239]],[[10426,10431,13290]],[[10431,10433,13291]],[[10433,10432,13236]],[[10432,10434,13237]],[[10434,10429,13292]],[[10429,10513,13293]],[[10513,10438,13234]],[[10438,10437,13235]],[[10437,10436,13294]],[[10436,10440,13295]],[[10440,10439,13232]],[[10439,10444,13233]],[[10444,10443,13296]],[[10443,10446,13297]],[[10446,10445,13230]],[[10445,10451,13231]],[[10451,10453,13298]],[[10453,10456,13299]],[[10456,10449,13228]],[[10449,10448,13229]],[[10448,10459,13300]],[[10459,10458,13301]],[[10458,10462,13301]],[[10462,10463,13226]],[[10463,10529,13227]],[[10529,10466,13302]],[[10466,10469,13303]],[[10469,10472,13224]],[[10472,10471,13225]],[[10471,10475,13304]],[[10475,10474,13305]],[[10474,10478,13306]],[[10478,10481,13307]],[[10481,10480,13308]],[[10480,10484,13222]],[[10484,10483,13223]],[[10483,10487,13309]],[[10487,10486,13310]],[[10486,10518,13311]],[[10518,10493,13312]],[[10493,10492,13313]],[[10492,10523,13314]],[[10523,10497,13315]],[[10497,10498,13316]],[[10498,10499,13317]],[[10499,10524,13318]],[[10524,10525,13319]],[[10525,10528,13320]],[[10528,10564,13321]],[[10564,10504,13322]],[[10504,10516,13323]],[[10516,10375,13324]],[[10375,10505,13325]],[[10505,10506,13259]],[[10506,10508,13269]],[[10508,10510,13267]],[[10510,10362,13266]],[[10362,10378,13265]],[[10378,10383,13264]],[[10383,10386,13241]],[[10386,10393,13263]],[[10393,10395,13262]],[[10395,10397,13261]],[[10397,10396,13260]],[[10396,10530,13274]],[[10530,10400,13326]],[[10400,10403,13258]],[[10403,10381,13257]],[[10381,10380,13256]],[[10380,10535,13253]],[[13258,10403,13257]],[[10535,10408,13255]],[[10408,10143,13254]],[[17572,13272,13277]],[[10143,10142,13244]],[[10142,10247,17573]],[[10247,10246,17574]],[[10246,10321,17575]],[[17573,10247,17576]],[[10244,10241,13271]],[[10321,10203,10245]],[[17574,10246,17577]],[[10203,10148,10418]],[[17578,10246,17575]],[[17575,10321,17579]],[[10240,10239,13280]],[[17579,10321,10245]],[[10240,13280,13279]],[[10245,10203,10412]],[[10412,10203,10413]],[[10413,10203,10419]],[[10226,10225,13285]],[[10419,10203,10511]],[[10231,13284,13283]],[[10511,10203,10418]],[[10148,10415,10417]],[[13286,10221,13287]],[[10418,10148,10417]],[[10514,10427,13238]],[[17577,10246,17578]],[[17576,10247,17574]],[[13244,10142,17573]],[[13254,10143,13244]],[[13255,10408,13254]],[[13253,10535,13255]],[[13256,10380,13253]],[[13257,10381,13256]],[[13326,10400,13258]],[[13274,10530,13326]],[[13260,10396,13274]],[[13261,10397,13260]],[[13262,10395,13261]],[[13263,10393,13262]],[[13241,10386,13263]],[[13264,10383,13241]],[[13265,10378,13264]],[[13266,10362,13265]],[[13267,10510,13266]],[[13268,10508,13267]],[[13269,10508,13268]],[[13259,10506,13269]],[[13325,10505,13259]],[[13324,10375,13325]],[[13323,10516,13324]],[[13322,10504,13323]],[[13321,10564,13322]],[[13320,10528,13321]],[[13319,10525,13320]],[[13318,10524,13319]],[[13317,10499,13318]],[[13316,10498,13317]],[[13315,10497,13316]],[[13314,10523,13315]],[[13313,10492,13314]],[[13312,10493,13313]],[[13311,10518,13312]],[[13310,10486,13311]],[[13309,10487,13310]],[[13223,10483,13309]],[[13222,10484,13223]],[[13308,10480,13222]],[[13307,10481,13308]],[[13306,10478,13307]],[[13305,10474,13306]],[[13304,10475,13305]],[[13225,10471,13304]],[[13224,10472,13225]],[[13303,10469,13224]],[[13302,10466,13303]],[[13227,10529,13302]],[[13226,10463,13227]],[[13301,10462,13226]],[[13300,10459,13301]],[[13229,10448,13300]],[[13228,10449,13229]],[[13299,10456,13228]],[[13298,10453,13299]],[[13231,10451,13298]],[[13230,10445,13231]],[[13297,10446,13230]],[[13296,10443,13297]],[[13233,10444,13296]],[[13232,10439,13233]],[[13295,10440,13232]],[[13294,10436,13295]],[[13235,10437,13294]],[[13234,10438,13235]],[[13293,10513,13234]],[[13292,10429,13293]],[[13237,10434,13292]],[[13236,10432,13237]],[[13291,10433,13236]],[[13290,10431,13291]],[[13239,10426,13290]],[[13238,10427,13239]],[[13289,10514,13238]],[[13288,10425,13289]],[[13287,10220,13288]],[[10425,10514,13289]],[[10220,10425,13288]],[[13287,10221,10220]],[[13285,13284,10226]],[[10221,13286,10225]],[[13282,10237,13283]],[[13284,10231,10226]],[[13283,10237,10231]],[[13282,13281,10234]],[[13282,10234,10237]],[[13281,13280,10239]],[[10234,13281,10239]],[[13271,10241,13279]],[[13279,10241,10240]],[[13271,13270,10244]],[[13278,17570,13270]],[[17571,17570,13278]],[[13272,17580,13273]],[[17571,13273,17581]],[[17581,13273,17580]],[[17580,13272,17572]],[[17572,13277,17582]],[[17582,13277,17569]],[[17569,13276,13249]],[[13249,13276,13248]],[[13248,13276,13247]],[[13247,13275,13246]],[[13246,13275,13245]],[[13245,13275,13242]],[[13242,13252,13243]],[[13250,13244,17573]],[[16138,13250,17576]],[[17576,13250,17573]],[[16140,16138,17574]],[[17574,16138,17576]],[[16142,16140,17577]],[[17577,16140,17574]],[[16144,16142,17578]],[[17578,16142,17577]],[[16147,16144,17575]],[[17575,16144,17578]],[[16148,16147,17579]],[[17579,16147,17575]],[[10245,16148,17579]],[[16146,10244,17570]],[[16145,16146,17571]],[[17571,16146,17570]],[[16143,16145,17581]],[[17581,16145,17571]],[[16141,16143,17580]],[[17580,16143,17581]],[[16139,16141,17572]],[[17572,16141,17580]],[[16137,16139,17582]],[[17582,16139,17572]],[[13251,16137,17569]],[[17569,16137,17582]],[[13249,13251,17569]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e00bdc-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17583,9132,17584]],[[17585,8148,8149]],[[17586,17587,17588]],[[9132,17583,9133]],[[9133,17589,9143]],[[17587,17590,17591]],[[17592,17593,17594]],[[17593,17595,17596]],[[17595,17597,17596]],[[17598,17599,17600]],[[17599,8137,8139]],[[8137,8138,8139]],[[9106,17601,9105]],[[9105,17602,9104]],[[17599,8139,17600]],[[17588,17587,17591]],[[17591,17590,17603]],[[17603,17592,17594]],[[17594,17593,17596]],[[17596,17597,17604]],[[8139,17605,17600]],[[8139,8140,17605]],[[17604,17598,17600]],[[9104,17586,17588]],[[9108,17606,9106]],[[9107,17607,9108]],[[17597,17598,17604]],[[9109,17608,9107]],[[9111,17609,9109]],[[9112,17610,9111]],[[17590,17592,17603]],[[9113,17611,9112]],[[9143,17612,9113]],[[17602,17586,9104]],[[17601,17602,9105]],[[17606,17601,9106]],[[17607,17606,9108]],[[17608,17607,9107]],[[17609,17608,9109]],[[17610,17609,9111]],[[17611,17610,9112]],[[17612,17611,9113]],[[17589,17612,9143]],[[17613,17583,17584]],[[17589,9133,17583]],[[17585,17613,17584]],[[9080,17585,17584]],[[9080,8148,17585]],[[17585,8149,8150]],[[9084,9080,17584]],[[9132,9084,17584]],[[9102,9104,17588]],[[9101,9102,17591]],[[17591,9102,17588]],[[9100,9101,17603]],[[17603,9101,17591]],[[9099,9100,17594]],[[17594,9100,17603]],[[9098,9099,17596]],[[17596,9099,17594]],[[9097,9098,17604]],[[17604,9098,17596]],[[9096,9097,17600]],[[17600,9097,17604]],[[9095,9096,17605]],[[17605,9096,17600]],[[8140,9095,17605]],[[16860,8137,17599]],[[16866,16860,17598]],[[17598,16860,17599]],[[16865,16866,17597]],[[17597,16866,17598]],[[16864,16865,17595]],[[17595,16865,17597]],[[16863,16864,17593]],[[17593,16864,17595]],[[16862,16863,17592]],[[17592,16863,17593]],[[11379,16862,17590]],[[17590,16862,17592]],[[16395,11379,17587]],[[17587,11379,17590]],[[16396,16395,17586]],[[17586,16395,17587]],[[16393,16396,17602]],[[17602,16396,17586]],[[16391,16393,17601]],[[17601,16393,17602]],[[16389,16391,17606]],[[17606,16391,17601]],[[16387,16389,17607]],[[17607,16389,17606]],[[16385,16387,17608]],[[17608,16387,17607]],[[16383,16385,17609]],[[17609,16385,17608]],[[16381,16383,17610]],[[17610,16383,17609]],[[16379,16381,17611]],[[17611,16381,17610]],[[16378,16379,17612]],[[17612,16379,17611]],[[16377,16378,17589]],[[17589,16378,17612]],[[16376,16377,17583]],[[17583,16377,17589]],[[16371,16376,17613]],[[17613,16376,17583]],[[16373,16371,17585]],[[17585,16371,17613]],[[8150,16373,17585]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e1e06f-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8600,1892,8598]],[[1892,1891,8598]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e4514a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1146,8412,1150]],[[1146,1150,1147]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e4c69a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[171,172,17614]],[[17615,171,17614]],[[17616,17615,17614]],[[17616,17617,17615]],[[17616,1845,7915]],[[17617,17616,7915]],[[1838,1845,17616]],[[1842,1838,17614]],[[17614,1838,17616]],[[172,1842,17614]],[[9950,171,17615]],[[9963,9950,17617]],[[17617,9950,17615]],[[7915,9963,17617]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e5d871-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10648,10647,10650]],[[10647,10651,10650]],[[10651,17618,652]],[[10651,10647,17618]],[[652,17618,651]],[[17618,10647,17619]],[[17618,17619,17620]],[[16970,651,17618]],[[16968,16970,17620]],[[17620,16970,17618]],[[16969,16968,17619]],[[17619,16968,17620]],[[10647,16969,17619]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e674f4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17621,8534,17622]],[[8534,1121,17622]],[[1123,8534,17621]],[[1120,1123,17622]],[[17622,1123,17621]],[[1121,1120,17622]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e7acf3-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17623,1563,16960]],[[1563,17623,17624]],[[17624,17623,17625]],[[1563,1683,16960]],[[16960,17626,17627]],[[16960,17628,17626]],[[16960,1683,17628]],[[16957,17628,1683]],[[16955,16957,8271]],[[16957,8270,8271]],[[16957,1683,8270]],[[16942,16962,17625]],[[17625,16962,17624]],[[16961,16942,17623]],[[17623,16942,17625]],[[16960,16961,17623]],[[16943,16960,17627]],[[16956,16943,17626]],[[17626,16943,17627]],[[16958,16956,17628]],[[17628,16956,17626]],[[16957,16958,17628]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e8e5f6-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1203,8562,1197]],[[8562,1198,1197]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea451d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8623,124,8622]],[[8633,8579,8622]],[[17629,8633,8622]],[[124,17630,8622]],[[8622,17630,17629]],[[124,125,17630]],[[16365,8633,17629]],[[16366,16365,17630]],[[17630,16365,17629]],[[125,16366,17630]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea9355-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0875c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2813,11615,2815]],[[2813,2807,17631]],[[11615,2813,17631]],[[17631,2807,17632]],[[17632,2807,17633]],[[16666,11620,17631]],[[17631,11620,11615]],[[16176,16666,17632]],[[17632,16666,17631]],[[16175,16176,17633]],[[17633,16176,17632]],[[2807,16175,17633]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea9356-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17634,17379,17635]],[[17379,17523,17635]],[[17636,17531,17634]],[[17634,17531,17379]],[[17533,17637,17523]],[[17523,17637,17635]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ed2b76-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8792,8417,8705]],[[8792,14342,1942]],[[2253,346,8711]],[[8703,8705,8417]],[[8417,8792,1942]],[[1942,14342,1936]],[[2253,345,346]],[[1936,8711,346]],[[1936,14342,8711]],[[8710,8711,14342]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ed529d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17638,17639,15922]],[[17638,15922,17021]],[[17042,17021,15922]],[[17044,17042,15923]],[[17640,17641,15928]],[[17642,17640,15929]],[[17643,17642,15930]],[[17644,17643,15883]],[[17645,17644,15882]],[[17646,17645,15931]],[[17647,17646,15932]],[[17648,17647,15933]],[[17649,17648,15934]],[[17650,17649,15935]],[[17651,17650,15936]],[[17652,17651,15937]],[[17653,17652,15938]],[[17654,17653,15939]],[[17655,17656,15941]],[[17657,17655,15942]],[[17658,7171,7172]],[[17658,17657,15944]],[[17658,15945,7171]],[[17656,17654,15940]],[[17658,15944,15945]],[[17641,17659,15927]],[[17657,15942,15944]],[[17659,17660,15926]],[[17655,15941,15942]],[[17660,17044,15925]],[[17656,15940,15941]],[[17654,15939,15940]],[[17653,15938,15939]],[[17652,15937,15938]],[[17651,15936,15937]],[[17650,15935,15936]],[[17649,15934,15935]],[[17648,15933,15934]],[[17647,15932,15933]],[[17646,15931,15932]],[[17645,15882,15931]],[[17644,15883,15882]],[[17643,15930,15883]],[[17642,15929,15930]],[[17640,15928,15929]],[[17641,15927,15928]],[[17659,15926,15927]],[[17660,15925,15926]],[[17044,15923,15925]],[[17042,15922,15923]],[[17020,15916,17638]],[[17638,15916,17639]],[[17021,17020,17638]],[[17043,17044,17660]],[[17023,17043,17659]],[[17659,17043,17660]],[[17041,17023,17641]],[[17641,17023,17659]],[[17040,17041,17640]],[[17640,17041,17641]],[[17038,17040,17642]],[[17642,17040,17640]],[[17039,17038,17643]],[[17643,17038,17642]],[[17034,17039,17644]],[[17644,17039,17643]],[[17037,17034,17645]],[[17645,17034,17644]],[[17035,17037,17646]],[[17646,17037,17645]],[[17036,17035,17647]],[[17647,17035,17646]],[[17032,17036,17648]],[[17648,17036,17647]],[[17033,17032,17649]],[[17649,17032,17648]],[[17030,17033,17650]],[[17650,17033,17649]],[[17031,17030,17651]],[[17651,17030,17650]],[[17027,17031,17652]],[[17652,17031,17651]],[[17029,17027,17653]],[[17653,17027,17652]],[[17028,17029,17654]],[[17654,17029,17653]],[[17025,17028,17656]],[[17656,17028,17654]],[[17026,17025,17655]],[[17655,17025,17656]],[[17024,17026,17657]],[[17657,17026,17655]],[[17022,17024,17658]],[[17658,17024,17657]],[[7172,17022,17658]],[[15916,15922,17639]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ee8aa2-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8572,8639,8152]],[[8572,8152,8153]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2eed8e4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1500,1563,8396]],[[1563,17624,8396]],[[16962,8396,17624]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f011e8-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[166,976,943]],[[166,943,165]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f0601b-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17661,7809,17662]],[[17661,17662,17663]],[[17662,7809,1787]],[[17662,1787,17664]],[[7809,7810,1787]],[[1796,7809,17661]],[[1792,1796,17663]],[[17663,1796,17661]],[[1793,1792,17662]],[[17662,1792,17663]],[[1786,1793,17664]],[[17664,1793,17662]],[[1787,1786,17664]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f149e9-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1162,1173,17665]],[[17665,17666,17667]],[[17668,17669,1263]],[[17669,7279,1263]],[[17669,17667,17666]],[[17669,17666,7279]],[[17667,17670,17665]],[[1162,17665,17670]],[[1174,1162,17670]],[[1155,1174,17667]],[[17667,1174,17670]],[[1156,1155,17669]],[[17669,1155,17667]],[[1169,1156,17668]],[[17668,1156,17669]],[[1263,1169,17668]],[[16827,7279,17666]],[[16828,16827,17665]],[[17665,16827,17666]],[[1173,16828,17665]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f1bf47-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f097f249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17671,17672,17673]],[[17674,17675,17676]],[[17672,17671,17677]],[[17678,17677,17671]],[[17679,17680,17681]],[[17682,17679,17683]],[[17684,17682,17685]],[[17686,17684,17687]],[[17688,17689,17690]],[[17691,17692,17693]],[[17694,17695,17696]],[[17694,17691,17697]],[[17694,17698,17695]],[[17695,17698,17699]],[[17694,17697,17698]],[[17700,17691,17701]],[[17691,17700,17697]],[[17692,17702,17703]],[[17702,17704,17705]],[[17701,17691,17693]],[[17692,17706,17693]],[[17704,17707,17708]],[[17692,17709,17706]],[[17707,17710,17708]],[[17692,17703,17709]],[[17702,17711,17703]],[[17710,17688,17690]],[[17702,13184,17711]],[[17689,17712,17713]],[[17702,17705,13184]],[[17704,17708,17705]],[[17712,17686,17713]],[[17708,17710,17690]],[[17689,17713,17690]],[[17686,17687,17713]],[[17684,17685,17687]],[[17680,17714,17715]],[[17685,17682,17716]],[[17716,17682,17683]],[[17679,17717,17683]],[[17718,17719,17720]],[[17679,17681,17717]],[[17680,17721,17681]],[[17680,17722,17721]],[[17680,17723,17722]],[[17680,17715,17723]],[[17714,17724,17715]],[[17714,17725,17724]],[[17714,17726,17725]],[[17714,17727,17726]],[[17719,17728,17729]],[[17718,17730,17727]],[[17718,17731,17730]],[[17714,17718,17727]],[[17714,17719,17718]],[[17718,17720,17732]],[[17733,17728,17678]],[[17719,17734,17720]],[[17719,17729,17734]],[[17728,17733,17729]],[[17729,17733,17735]],[[17728,17677,17678]],[[17672,17736,17673]],[[17737,17738,17736]],[[17737,17674,17739]],[[17736,17740,17673]],[[17740,17736,17741]],[[17736,17742,17741]],[[17742,17736,17738]],[[17737,17743,17738]],[[17743,17737,17744]],[[17744,17737,17745]],[[17745,17737,17739]],[[17739,17674,17746]],[[17746,17674,17747]],[[17747,17674,17676]],[[17676,17675,17748]],[[17748,17675,17749]],[[17750,17751,17752]],[[17752,17751,17753]],[[17753,17751,17754]],[[17754,17755,17756]],[[17757,17758,17759]],[[17759,17758,17760]],[[17675,17750,17749]],[[17761,17760,17758]],[[17762,17763,17764]],[[17762,17765,17766]],[[17763,17761,17758]],[[17766,17765,17767]],[[17762,17764,17765]],[[17763,17758,17764]],[[17757,17768,17758]],[[17757,17755,17768]],[[17757,17756,17755]],[[17749,17750,17752]],[[17751,17755,17754]],[[17769,17770,17674]],[[17674,17770,17675]],[[17771,17769,17737]],[[17737,17769,17674]],[[17772,17771,17736]],[[17736,17771,17737]],[[17773,17772,17672]],[[17672,17772,17736]],[[17774,17773,17677]],[[17677,17773,17672]],[[17775,17774,17728]],[[17728,17774,17677]],[[17776,17775,17719]],[[17719,17775,17728]],[[17777,17776,17714]],[[17714,17776,17719]],[[17778,17777,17680]],[[17680,17777,17714]],[[17779,17778,17679]],[[17679,17778,17680]],[[17780,17779,17682]],[[17682,17779,17679]],[[17781,17780,17684]],[[17684,17780,17682]],[[17782,17781,17686]],[[17686,17781,17684]],[[17783,17782,17712]],[[17712,17782,17686]],[[17784,17783,17689]],[[17689,17783,17712]],[[17785,17784,17688]],[[17688,17784,17689]],[[17786,17785,17710]],[[17710,17785,17688]],[[17787,17786,17707]],[[17707,17786,17710]],[[17788,17787,17704]],[[17704,17787,17707]],[[17789,17788,17702]],[[17702,17788,17704]],[[17790,17789,17692]],[[17692,17789,17702]],[[17791,17790,17691]],[[17691,17790,17692]],[[17792,17791,17694]],[[17694,17791,17691]],[[17793,17792,17696]],[[17696,17792,17694]],[[15839,17700,17701]],[[15830,15839,17693]],[[17693,15839,17701]],[[16301,15830,17706]],[[17706,15830,17693]],[[15209,16301,17709]],[[17709,16301,17706]],[[15210,15209,17703]],[[17703,15209,17709]],[[13183,15210,17711]],[[17711,15210,17703]],[[13184,13183,17711]],[[13186,13184,17705]],[[14406,13186,17708]],[[17708,13186,17705]],[[14407,14406,17690]],[[17690,14406,17708]],[[16296,14407,17713]],[[17713,14407,17690]],[[13220,16296,17687]],[[17687,16296,17713]],[[13210,13220,17685]],[[17685,13220,17687]],[[13204,13210,17716]],[[17716,13210,17685]],[[13205,13204,17683]],[[17683,13204,17716]],[[15713,13205,17717]],[[17717,13205,17683]],[[15714,15713,17681]],[[17681,15713,17717]],[[14039,15714,17721]],[[17721,15714,17681]],[[14040,14039,17722]],[[17722,14039,17721]],[[16304,14040,17723]],[[17723,14040,17722]],[[11760,16304,17715]],[[17715,16304,17723]],[[11761,11760,17724]],[[17724,11760,17715]],[[13189,11761,17725]],[[17725,11761,17724]],[[13190,13189,17726]],[[17726,13189,17725]],[[15760,13190,17727]],[[17727,13190,17726]],[[15761,15760,17730]],[[17730,15760,17727]],[[9066,15761,17731]],[[17731,15761,17730]],[[9077,9066,17718]],[[17718,9066,17731]],[[9075,9077,17732]],[[17732,9077,17718]],[[17794,9075,17720]],[[17720,9075,17732]],[[15131,17794,17734]],[[17734,17794,17720]],[[15132,15131,17729]],[[17729,15131,17734]],[[17795,15203,17735]],[[17735,15203,15132]],[[17735,15132,17729]],[[17796,17795,17733]],[[17733,17795,17735]],[[13707,17796,17678]],[[17678,17796,17733]],[[13708,13707,17671]],[[17671,13707,17678]],[[15505,13759,15495]],[[15495,13759,17673]],[[17673,13759,13708]],[[17673,13708,17671]],[[15496,15495,17740]],[[17740,15495,17673]],[[15379,15496,15350]],[[15350,15496,17741]],[[17741,15496,17740]],[[15338,15350,17742]],[[17742,15350,17741]],[[15684,15338,15629]],[[15629,15338,17738]],[[17738,15338,17742]],[[15630,15629,17743]],[[17743,15629,17738]],[[15381,15630,17744]],[[17744,15630,17743]],[[15382,15381,17745]],[[17745,15381,17744]],[[13997,15382,17739]],[[17739,15382,17745]],[[13998,13997,17746]],[[17746,13997,17739]],[[12829,13998,12798]],[[12798,13998,17747]],[[17747,13998,17746]],[[12799,12798,17676]],[[17676,12798,17747]],[[14801,12799,14750]],[[14750,12799,17748]],[[17748,12799,17676]],[[14751,14750,17749]],[[17749,14750,17748]],[[16263,14751,17752]],[[17752,14751,17749]],[[12117,16263,12069]],[[12069,16263,17753]],[[17753,16263,17752]],[[12070,12069,17754]],[[17754,12069,17753]],[[16204,12118,17756]],[[17756,12118,12070]],[[17756,12070,17754]],[[16265,16204,17757]],[[17757,16204,17756]],[[16264,16265,17759]],[[17759,16265,17757]],[[16202,16264,17760]],[[17760,16264,17759]],[[16206,16202,17761]],[[17761,16202,17760]],[[16205,16206,17763]],[[17763,16206,17761]],[[16203,16205,17762]],[[17762,16205,17763]],[[16261,16203,17766]],[[17766,16203,17762]],[[16255,16261,17767]],[[17767,16261,17766]],[[16256,16255,17765]],[[17765,16255,17767]],[[16262,16256,17764]],[[17764,16256,17765]],[[17797,16268,17758]],[[17758,16268,16262]],[[17758,16262,17764]],[[17798,17797,17768]],[[17768,17797,17758]],[[17799,17798,17755]],[[17755,17798,17768]],[[17800,17799,17751]],[[17751,17799,17755]],[[17801,17800,17750]],[[17750,17800,17751]],[[17770,17801,17675]],[[17675,17801,17750]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"baeb0d610-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12531,14731,12532]],[[14731,14735,12532]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb14b79-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16997,16994,16998]],[[16994,16996,16998]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb4316e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17802,11901,14448]],[[11906,17803,17804]],[[11906,11901,17805]],[[17802,17805,11901]],[[17803,11906,17805]],[[14447,17802,14448]],[[14447,17804,17802]],[[14447,11906,17804]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb71848-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee49149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[1033,16671,1061]],[[1059,1060,1061]],[[16671,17169,1061]],[[1061,1058,1059]],[[1061,1057,1058]],[[1061,1062,1057]],[[1061,1038,1062]],[[1062,1038,1056]],[[1056,1038,1030]],[[1030,1037,1031]],[[1030,1038,1037]],[[1061,17169,1038]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb96194-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17806,17807,17808]],[[17808,16775,16777]],[[17806,17808,16777]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebac1f9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4af49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8221,15884,8220]],[[8221,426,15884]],[[7277,15900,15899]],[[7247,7248,15952]],[[15884,426,15897]],[[400,15897,426]],[[403,15898,15897]],[[403,15896,15898]],[[403,15895,15896]],[[15893,15894,403]],[[15892,15893,6694]],[[15891,15890,6694]],[[15889,15891,6694]],[[15888,15889,6694]],[[15887,15888,6694]],[[15886,15887,6694]],[[15885,15886,6694]],[[7247,15952,15900]],[[7249,15951,15952]],[[7249,15950,15951]],[[7249,15949,15950]],[[1004,15948,15949]],[[1004,15946,15948]],[[1004,1003,15946]],[[1003,15924,15947]],[[7249,15952,7248]],[[1003,15947,15946]],[[7194,1003,997]],[[7194,15924,1003]],[[7249,1004,15949]],[[15890,15892,6694]],[[15899,6694,7277]],[[1005,1004,7249]],[[7247,15900,10012]],[[15900,7278,10012]],[[15885,6694,15899]],[[7278,15900,7277]],[[15894,15895,403]],[[400,403,15897]],[[6694,15893,403]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebae90f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17809,16297,17810]],[[15956,15954,17811]],[[15964,15831,16298]],[[15954,17812,17811]],[[17811,15839,15842]],[[17811,17700,15839]],[[17811,17697,17700]],[[15831,15967,15842]],[[15842,15956,17811]],[[17813,17814,15961]],[[15970,15956,15842]],[[15960,15970,15842]],[[15969,15960,15842]],[[16303,9071,9070]],[[15842,15968,15969]],[[15968,15842,15967]],[[15967,15831,15966]],[[15966,15831,15965]],[[15965,15831,15964]],[[15964,16298,15963]],[[15963,16298,15962]],[[15962,16298,15961]],[[15961,16298,17815]],[[15961,17814,15958]],[[17815,17813,15961]],[[17816,17815,16298]],[[17817,17816,16298]],[[17818,17817,16298]],[[16297,17819,16298]],[[16298,17820,17818]],[[16298,17821,17820]],[[16298,17822,17821]],[[16298,17823,17822]],[[16298,17824,17823]],[[17819,16297,17809]],[[16298,17825,17824]],[[16297,16295,17810]],[[17825,16298,17819]],[[17826,17827,17828]],[[16295,17829,17810]],[[17829,16295,17828]],[[17828,16295,17826]],[[16294,17830,16295]],[[16295,17830,17826]],[[16294,17831,17830]],[[16294,17832,17831]],[[17831,17833,17834]],[[17831,17835,17833]],[[17831,17836,17835]],[[17831,17837,17836]],[[17831,17838,17837]],[[17831,17839,17838]],[[17831,17840,17839]],[[17831,17841,17840]],[[17831,17842,17841]],[[17831,17832,17842]],[[16294,17843,17832]],[[16294,17844,17843]],[[16294,17845,17844]],[[16294,17846,17845]],[[16294,17847,17846]],[[17848,16294,17849]],[[16294,17850,17847]],[[16294,16303,17849]],[[17850,16294,17851]],[[17851,16294,17852]],[[17852,16294,17848]],[[16303,17853,17849]],[[17854,16188,17855]],[[17854,16185,16188]],[[17854,9069,16185]],[[17854,17853,9070]],[[17854,9070,9069]],[[17853,16303,9070]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebae918-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefaa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16944,16893,16941]],[[16893,16959,16941]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebc6f96-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16763,17856,16764]],[[17856,17857,16764]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebf073e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17858,17859,17860]],[[17858,17860,17861]],[[17861,17860,17862]],[[17859,17863,17860]],[[17860,17864,17865]],[[17860,17866,17864]],[[17860,17867,17866]],[[17860,17868,17867]],[[17860,17869,17868]],[[17860,17863,17869]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec01841-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16060,16023,16059]],[[16060,16059,16058]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec0184a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef1df549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15338,15684,15650]],[[16178,15479,15339]],[[15479,15496,15379]],[[15360,15479,15379]],[[15339,15479,15360]],[[16186,16185,15150]],[[13759,15505,15480]],[[13746,13759,15480]],[[15479,16178,15480]],[[16185,9069,9076]],[[17795,13707,13725]],[[17795,17796,13707]],[[16186,15203,17795]],[[13725,16186,17795]],[[13746,16186,13725]],[[15203,16186,15154]],[[16185,17794,15150]],[[15150,17794,15131]],[[9076,9075,17794]],[[12796,14801,14764]],[[15154,16186,15150]],[[17794,16185,9076]],[[15480,16186,13746]],[[16178,16186,15480]],[[15650,16178,15339]],[[14764,14772,16179]],[[16178,12806,16179]],[[12796,12799,14801]],[[16179,12796,14764]],[[16179,12806,12796]],[[14014,13998,12806]],[[13998,12829,12806]],[[16178,14014,12806]],[[16178,14008,14014]],[[16638,16641,15382]],[[16640,15388,15382]],[[16178,15388,14008]],[[16178,15386,15388]],[[15663,15630,15386]],[[16178,15663,15386]],[[15386,15630,15381]],[[15650,15663,16178]],[[15338,15650,15339]],[[16856,16858,16639]],[[14008,15388,16639]],[[16641,16640,15382]],[[16639,15388,16640]],[[13997,16638,15382]],[[16856,16638,13997]],[[14008,16859,13997]],[[16856,16639,16638]],[[13997,16859,16857]],[[14008,16639,16858]],[[16859,14008,16858]],[[16857,16856,13997]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec2b0ec-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14245,14240,17564]],[[14240,15291,17564]],[[17564,15291,15306]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec2ff3f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16173,16172,11900]],[[16173,11900,11912]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec32664-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1f949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[23,24,16170]],[[23,16170,21]],[[4,6,23]],[[23,6,24]],[[3,4,21]],[[21,4,23]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec76b97-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16275,35,16273]],[[35,36,16273]],[[8,18,35]],[[35,18,36]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec8f206-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17804,17803,17802]],[[17803,17805,17802]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec91931-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16289,16291,16293]],[[16289,16293,16290]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecc264e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[34,35,33]],[[17870,31,33]],[[35,16275,33]],[[33,16275,17870]],[[16,8,34]],[[34,8,35]],[[17,16,33]],[[33,16,34]],[[9,17,31]],[[31,17,33]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecdd400-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16989,16979,17871]],[[16989,17872,16082]],[[16989,17873,17872]],[[17873,16989,17874]],[[17874,16989,17875]],[[17875,16989,17876]],[[17876,16989,17871]],[[17871,16979,17877]],[[17877,16979,17878]],[[17878,16979,17879]],[[17879,16979,17880]],[[17880,16979,17881]],[[17881,16979,17882]],[[17882,16979,17883]],[[17883,16979,17884]],[[17884,16979,17807]],[[17885,17884,17807]],[[17886,17885,17807]],[[17887,17886,17807]],[[17887,17807,17806]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baece497b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8699,8698,8697]],[[8698,8692,8694]],[[8698,8699,8692]],[[8694,8692,8691]],[[8692,8699,8689]],[[8692,8689,8690]],[[8699,6950,16648]],[[8689,16649,6860]],[[8689,8699,16649]],[[16649,8699,16648]],[[16648,6950,6951]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecfa8c8-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17888,17889,17890]],[[17888,17890,17891]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed01e43-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16989,16953,16954]],[[16989,16952,16953]],[[16952,16989,16950]],[[16950,16989,16949]],[[16949,16989,16948]],[[16948,16989,16947]],[[16947,16989,16092]],[[16947,16092,16945]],[[16989,16090,16092]],[[16989,16089,16090]],[[16989,16088,16089]],[[16989,16087,16088]],[[16989,16086,16087]],[[16989,16084,16086]],[[16989,16083,16084]],[[16989,16082,16083]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed35282-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17892,17893,17894]],[[17892,17894,17895]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed6123a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15238,17894,15251]],[[15251,17894,17893]],[[15238,14532,11376]],[[11376,17895,15238]],[[17894,15238,17895]],[[15251,17892,11375]],[[15251,17893,17892]],[[15251,11375,14548]],[[17892,17895,11375]],[[11377,11376,14532]],[[11375,17895,11376]],[[14548,11377,14532]],[[14548,11374,11377]],[[14548,11375,11374]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed74a77-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16589,16588,16587]],[[16589,16587,16586]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed8a9c4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef170a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7931,16410,7930]],[[7931,7932,16643]],[[16410,7931,16643]],[[8186,16642,16643]],[[16643,7932,8186]],[[8186,16645,16642]],[[16644,16642,16645]],[[10010,8546,8544]],[[8544,16645,10010]],[[8545,8546,10205]],[[10205,8546,10010]],[[10010,16645,899]],[[902,10010,899]],[[899,16645,8186]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed8f811-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee48c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17896,15440,15535]],[[17896,17897,15440]],[[17898,15440,17897]],[[15534,17899,15535]],[[17898,15420,15440]],[[15535,17899,17896]],[[15534,15420,17899]],[[17899,15420,17898]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baedc2c50-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17898,17897,17896]],[[17898,17896,17899]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baedd648a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeed149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17900,16197,17901]],[[17900,17901,17902]],[[17901,17903,17904]],[[17901,16197,17905]],[[17901,17905,17903]],[[17903,17905,17906]],[[17905,16197,16180]],[[17905,17907,17908]],[[17907,17905,16180]],[[17907,16180,17909]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee30a16-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9969,14460,9970]],[[9971,17890,17889]],[[17891,15729,15728]],[[9968,9971,17889]],[[17890,15729,17891]],[[17566,9968,17889]],[[14442,15729,17890]],[[17888,17891,15728]],[[14460,14442,9970]],[[17566,17888,15728]],[[14460,9969,17567]],[[17889,17888,17566]],[[14442,17890,9971]],[[9970,14442,9971]],[[17567,9968,17566]],[[9969,9968,17567]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee50621-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17910,17911,14746]],[[17912,17910,14734]],[[14732,17912,14734]],[[17910,14746,14747]],[[14732,17913,17912]],[[14732,14746,17911]],[[17913,14732,17911]],[[14734,17910,14747]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee6656b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17698,17812,17699]],[[17698,17697,17811]],[[17812,17698,17811]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee70214-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15292,15237,15301]],[[15237,15261,15301]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee86179-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13131,13041,13037]],[[13131,13037,13136]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeeea27e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16945,16092,16136]],[[16945,16136,16946]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef24c20-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11785,13125,13139]],[[11785,13139,11772]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef3f9c3-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1f849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17914,16270,16269]],[[17915,17916,16279]],[[17917,17918,17919]],[[17920,17870,16275]],[[16279,17916,16284]],[[16284,17916,16283]],[[16283,17916,16282]],[[16282,17916,16281]],[[16281,17916,16280]],[[16280,17916,16272]],[[16272,17921,16278]],[[16278,17921,16277]],[[16277,17921,16276]],[[17922,16275,16274]],[[16276,17921,16274]],[[17923,17920,16275]],[[17924,17923,16275]],[[17925,17924,16275]],[[17926,17925,16275]],[[17927,17926,16275]],[[17922,17927,16275]],[[17928,17922,16274]],[[17921,17928,16274]],[[17921,17929,17928]],[[17921,17930,17929]],[[17921,17931,17930]],[[17932,17933,17931]],[[17934,17935,17933]],[[17936,17937,17935]],[[17938,17939,17937]],[[17940,17941,17939]],[[17942,17943,17941]],[[17944,17945,17943]],[[17946,17947,17945]],[[17948,17949,17947]],[[17950,17951,17949]],[[17952,17953,17951]],[[17954,17955,17953]],[[17956,17957,17955]],[[17919,17958,17957]],[[17917,17919,17957]],[[16270,17915,16279]],[[17959,17917,17957]],[[17960,17959,17957]],[[17961,17960,17957]],[[17962,17961,17957]],[[17963,17962,17957]],[[17964,17963,17957]],[[17956,17964,17957]],[[17954,17956,17955]],[[17952,17954,17953]],[[17950,17952,17951]],[[17948,17950,17949]],[[17946,17948,17947]],[[17944,17946,17945]],[[17942,17944,17943]],[[17940,17942,17941]],[[17938,17940,17939]],[[17936,17938,17937]],[[17934,17936,17935]],[[17932,17934,17933]],[[17921,17932,17931]],[[17921,17965,17932]],[[17966,17967,17965]],[[17968,17966,17965]],[[17969,17968,17965]],[[17970,17969,17965]],[[17971,17972,17969]],[[17971,17973,17972]],[[17974,17971,17969]],[[17974,17975,17971]],[[17976,17974,17969]],[[17976,17977,17974]],[[17976,17978,17977]],[[17976,17979,17978]],[[17970,17976,17969]],[[17980,17981,17976]],[[17970,17980,17976]],[[17921,17970,17965]],[[17982,17983,17970]],[[17921,17982,17970]],[[17916,17921,16272]],[[16270,17984,17915]],[[16285,17985,16269]],[[16285,16286,16830]],[[16270,17986,17984]],[[17986,16270,17987]],[[17986,17987,17988]],[[16270,17914,17987]],[[16269,17985,17914]],[[16286,16287,16846]],[[17985,16285,17989]],[[17989,16285,17990]],[[17990,16285,16830]],[[16830,16286,16831]],[[16831,16286,16853]],[[16853,16286,16852]],[[16852,16286,16851]],[[16851,16286,16850]],[[16850,16286,16849]],[[16849,16286,16848]],[[16848,16286,16847]],[[16847,16286,16846]],[[16846,16287,16845]],[[16845,16287,16844]],[[16844,16287,16843]],[[16843,16287,16842]],[[16842,16287,16841]],[[16841,16287,16840]],[[16839,16840,17991]],[[16838,16839,17991]],[[16832,16838,17991]],[[16837,16832,17991]],[[16836,16837,17991]],[[17869,16835,16834]],[[16834,16836,17868]],[[16833,16835,17859]],[[17858,16833,17859]],[[17859,16835,17863]],[[17863,16835,17869]],[[17869,16834,17868]],[[17868,16836,17867]],[[17867,16836,17991]],[[17866,17867,17991]],[[17864,17866,17991]],[[17865,17864,17991]],[[17865,17991,17992]],[[16840,16287,17991]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef46f44-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17260,16287,17259]],[[17259,16287,16288]],[[17260,17991,16287]],[[17260,17261,17991]],[[17991,17261,17992]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baefcac78-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17046,17045,14305]],[[14285,17047,14305]],[[17048,15792,15785]],[[14305,17047,17046]],[[14285,15792,17048]],[[17045,17048,15785]],[[17047,14285,17048]],[[14305,17045,15785]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baefd21e7-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16026,16093,16114]],[[16093,16113,16114]],[[16113,16093,16111]],[[16111,16093,16112]],[[16112,16093,16106]],[[16106,16093,16110]],[[16110,16093,16107]],[[16107,16093,16109]],[[16109,16093,16108]],[[16108,16093,16103]],[[16103,16093,16104]],[[16104,16093,16105]],[[16105,16093,16099]],[[16099,16093,16100]],[[16100,16093,16102]],[[16102,16093,16101]],[[16101,16093,16098]],[[16098,16093,16096]],[[16096,16093,16097]],[[16097,16093,16095]],[[16095,16093,16080]],[[16080,16093,16025]],[[16093,16081,16025]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf005617-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16787,11877,16316]],[[16313,16315,17561]],[[17561,16315,15473]],[[11879,16785,16784]],[[16315,15472,15473]],[[11877,15472,16316]],[[17563,16314,16313]],[[16316,15472,16315]],[[17562,16313,17561]],[[17562,17563,16313]],[[11879,11877,16786]],[[16787,16786,11877]],[[16785,11879,16786]],[[16314,16787,16316]],[[16314,17563,16784]],[[16314,16784,16787]],[[17563,11879,16784]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf00f2b1-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15746,12536,17565]],[[15746,17565,15742]],[[12536,12538,17565]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf01b573-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16300,16299,16302]],[[16300,16302,16309]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf03b16f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16872,16974,16892]],[[16974,16871,16892]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf03b17b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17910,17912,17913]],[[17910,17913,17911]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf053805-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16000,15999,16021]],[[16000,16028,16344]],[[16056,16057,15910]],[[16973,16028,16891]],[[16890,16891,16028]],[[16889,16890,16028]],[[16888,16889,16051]],[[16887,16888,16051]],[[16886,16887,16051]],[[16885,16886,16051]],[[16884,16885,16051]],[[16883,16884,16051]],[[16882,16883,15910]],[[16881,16882,15910]],[[16880,16881,15910]],[[16879,16880,15910]],[[16878,16879,15910]],[[16877,16878,15910]],[[16876,16877,15910]],[[16875,15910,15909]],[[16874,15910,16875]],[[16874,16876,15910]],[[15910,16883,16051]],[[16345,16028,16973]],[[15910,16055,16056]],[[15910,16053,16055]],[[15910,16054,16053]],[[15910,16052,16054]],[[16051,16889,16028]],[[15910,16050,16052]],[[16345,16344,16028]],[[16050,15910,16051]],[[16028,16000,16021]],[[16026,16021,16894]],[[16093,16026,15881]],[[16136,16093,16972]],[[16946,16136,16972]],[[16972,16093,15881]],[[15856,16972,15881]],[[16026,16894,15881]],[[16021,16896,16894]],[[16021,15999,16896]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf05864c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2838,3009,3011]],[[16661,16662,1074]],[[2842,16653,2848]],[[16653,2854,2856]],[[16653,1092,2854]],[[16662,16663,1074]],[[16664,16049,1074]],[[1091,16652,1090]],[[1090,16652,1089]],[[1089,16652,1088]],[[1088,16652,1087]],[[1087,16652,1086]],[[1086,16652,1085]],[[1085,16654,1084]],[[1084,16654,1082]],[[1082,16654,1081]],[[1081,16655,1080]],[[1080,16655,1079]],[[1079,16655,1078]],[[1078,16655,1077]],[[16655,1075,1076]],[[16655,1074,1075]],[[1077,16655,1076]],[[16665,16057,16049]],[[16664,16665,16049]],[[16663,16664,1074]],[[1092,16652,1091]],[[2848,16653,2856]],[[2838,3011,2842]],[[1074,16660,16661]],[[1074,16658,16660]],[[1074,16659,16658]],[[1074,16657,16659]],[[1074,16656,16657]],[[1074,16655,16656]],[[1081,16654,16655]],[[1085,16652,16654]],[[1092,16653,16652]],[[6859,6860,16649]],[[16651,6859,16649]],[[16758,6858,16651]],[[16651,6858,6859]],[[16759,16758,16651]],[[3007,3006,16759]],[[3006,6818,16759]],[[16651,3007,16759]],[[16653,3007,16651]],[[16653,3011,3007]],[[16653,2842,3011]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf067030-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14738,14237,14748]],[[14237,14234,14748]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf06be8c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15421,11769,15442]],[[11769,11793,15442]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf084513-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16085,16094,16091]],[[16094,16135,16091]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf0b7934-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4b249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16777,8312,17806]],[[17806,8312,17887]],[[8356,16777,8353]],[[17886,17887,8312]],[[17885,17886,8312]],[[17884,17885,8312]],[[17883,17884,8312]],[[17882,17883,8312]],[[17881,17882,8312]],[[17880,17881,8312]],[[17879,17880,8312]],[[17878,17879,8312]],[[17877,17878,8312]],[[17871,17877,8312]],[[17876,17871,8312]],[[17875,17876,8312]],[[17874,17875,8312]],[[17873,17874,8312]],[[17872,17873,8312]],[[16082,17872,8312]],[[8312,16777,8336]],[[8336,16777,8333]],[[8335,8336,8334]],[[8336,8333,8334]],[[8353,16777,783]],[[8333,16777,8332]],[[8332,16777,8356]],[[8355,8356,8354]],[[8356,8353,8354]],[[783,16777,782]],[[8353,783,747]],[[16777,16778,841]],[[842,16777,841]],[[781,782,779]],[[781,779,780]],[[782,16777,779]],[[779,16777,778]],[[778,16777,845]],[[844,845,843]],[[845,842,843]],[[845,16777,842]],[[841,16778,548]],[[535,841,548]],[[7323,16778,7322]],[[547,548,546]],[[548,545,546]],[[548,16778,545]],[[545,16778,544]],[[544,16778,7299]],[[7298,7299,7296]],[[7298,7296,7297]],[[7299,16778,7296]],[[7296,7323,7294]],[[7296,16778,7323]],[[7534,16778,7533]],[[7321,7322,7320]],[[7322,7319,7320]],[[7322,16778,7319]],[[7319,16778,7317]],[[7317,16778,7537]],[[7536,7537,7534]],[[7536,7534,7535]],[[7537,16778,7534]],[[7533,16778,7504]],[[7515,7533,7504]],[[7504,16778,7509]],[[7449,7509,16760]],[[16764,7475,7476]],[[7476,7449,16760]],[[7474,7475,7473]],[[7473,7475,7472]],[[16764,7471,7472]],[[7472,7475,16764]],[[7470,7471,7469]],[[16764,7468,7471]],[[7469,7471,7468]],[[16764,7467,7468]],[[7466,7467,7464]],[[17857,7464,7467]],[[7465,7466,7464]],[[17857,7463,7464]],[[7462,7463,7461]],[[17857,7460,7463]],[[7461,7463,7460]],[[17857,7459,7460]],[[16618,7459,17857]],[[17857,7467,16764]],[[7476,16760,16764]],[[7509,16778,16760]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf3f295d-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3243,3242,3234]],[[3243,3234,3398]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"baf3f2966-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef663a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5950,5945,17993]],[[5945,17994,17993]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"bbdc52a89-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"stuw","bronhouder":"W0372","creationdate":"","inonderzoek":"","lokaalid":"G0503.032e68f09ead49cce0532ee22091b28c","lv_publicatiedatum":"","namespace":"NL.IMGeo","plus_status":"","plus_type":"waardeOnbekend","relatievehoogteligging":"","tijdstipregistratie":""},"geometry":[{"boundaries":[[[17076,17634,17077]],[[17634,17635,17077]],[[17080,17636,17076]],[[17076,17636,17634]],[[17637,17081,17635]],[[17635,17081,17077]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"bdce6a385-fd58-11e5-8acc-1fc21a78c5fd":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.97986f98d554454a8a839c15b513a8e4","lv_publicatiedatum":"2015-11-30T11:11:19.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2015-11-27T10:24:41.000"},"geometry":[{"boundaries":[[[17995,17996,17997]],[[17998,5486,4891]],[[17999,18000,4891]],[[17996,5486,17998]],[[18000,18001,4891]],[[17997,11244,11217]],[[11244,17999,4891]],[[11244,18002,17999]],[[18003,18004,17998]],[[11217,5486,18005]],[[18001,17998,4891]],[[18001,18002,18006]],[[18000,18002,18001]],[[18000,17999,18002]],[[18001,18003,17998]],[[18006,11244,18004]],[[18007,17995,17997]],[[18008,18004,17997]],[[18009,17995,18007]],[[17996,18010,17997]],[[18005,18007,11217]],[[18005,18009,18007]],[[18010,17996,17998]],[[18009,5486,17996]],[[17995,18009,17996]],[[18005,5486,18009]],[[17998,18008,18010]],[[18004,11244,17997]],[[17998,18004,18008]],[[18003,18001,18006]],[[18003,18006,18004]],[[18002,11244,18006]],[[18007,17997,11217]],[[18010,18008,17997]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"be252b118-2d37-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[18011,18012,18013]],[[18011,18013,18014]],[[18015,18016,18011]],[[18011,18016,18012]],[[18017,18015,18014]],[[18014,18015,18011]],[[18018,18017,18013]],[[18013,18017,18014]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"be2539be1-2d37-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0986649cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:57:13.000"},"geometry":[{"boundaries":[[[4964,18019,18012]],[[4964,18020,11518]],[[4964,18012,18020]],[[18019,18013,18012]],[[18019,18021,18013]],[[18019,18022,18021]],[[18021,18022,30]],[[28,30,5621]],[[28,18023,29]],[[18023,28,5621]],[[30,18022,5621]],[[4965,4964,11518]],[[11511,11518,18020]],[[18016,11521,18012]],[[18012,11521,11511]],[[18012,11511,18020]],[[18024,18018,18021]],[[18021,18018,18013]],[[15,18024,30]],[[30,18024,18021]],[[13,15,28]],[[28,15,30]],[[11,13,27]],[[27,13,29]],[[29,13,28]],[[5643,27,18023]],[[18023,27,29]],[[5621,5643,18023]],[[4804,5621,18022]],[[4805,4804,18019]],[[18019,4804,18022]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"bea630875-00b8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09d6f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[18025,17793,17261]],[[18025,17263,17793]],[[17793,18026,17261]],[[18027,18028,18029]],[[18030,18026,18031]],[[18032,18033,18034]],[[18028,18030,18035]],[[18033,18027,18036]],[[18034,18033,18036]],[[18036,18027,18029]],[[18029,18028,18035]],[[18035,18030,18031]],[[18031,18026,18037]],[[18037,18026,18038]],[[18038,18026,17793]],[[17248,17263,18025]],[[17247,17263,17248]],[[17250,18025,17261]],[[17248,18025,17250]],[[17992,17261,18026]],[[17865,18026,18030]],[[17992,18026,17865]],[[17860,18030,18028]],[[17865,18030,17860]],[[17862,18028,18027]],[[17860,18028,17862]],[[15954,18029,18035]],[[15953,18029,15954]],[[17812,18035,18031]],[[15954,18035,17812]],[[17699,18031,18037]],[[17812,18031,17699]],[[17695,18037,18038]],[[17699,18037,17695]],[[17696,18038,17793]],[[17695,18038,17696]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"bea632f90-00b8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09df249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17797,18039,18040]],[[17797,16206,18039]],[[18039,16202,16264]],[[16268,18041,1051]],[[16202,18039,16206]],[[16206,17797,16205]],[[16205,17797,16268]],[[16203,16205,16268]],[[16261,16203,16256]],[[16255,16261,16256]],[[16203,16268,16256]],[[17797,18041,16268]],[[16262,16256,16268]],[[1045,1051,18041]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"bedab6302-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"W0372","class":"waterloop","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff33a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[18042,17361,17362]],[[18043,18044,17171]],[[16268,1045,17171]],[[1054,17170,17171]],[[1045,1051,17171]],[[17171,1051,1054]],[[17797,1046,1045]],[[17801,17559,17560]],[[1046,17798,17560]],[[17558,17559,17770]],[[17774,17557,17773]],[[17556,17557,17776]],[[17778,17554,17555]],[[17555,17556,17777]],[[17780,17552,17553]],[[17553,17554,17779]],[[17780,17551,17552]],[[17780,17550,17551]],[[17781,17549,17550]],[[17781,17548,17549]],[[17781,17547,17548]],[[17781,17546,17547]],[[17783,17545,17546]],[[17784,17544,17545]],[[17785,17543,17544]],[[17786,17542,17543]],[[17787,17541,17542]],[[17788,17540,17541]],[[17788,17539,17540]],[[17789,17538,17539]],[[17790,17537,17538]],[[17536,17537,17790]],[[17265,17534,17535]],[[17535,17536,17264]],[[17081,17532,17534]],[[17533,17532,17637]],[[17637,17532,17081]],[[17081,17534,17082]],[[17082,17534,17265]],[[17265,17535,17264]],[[17264,17536,17263]],[[17262,17264,17263]],[[17263,17536,17793]],[[17793,17536,17792]],[[17792,17536,17791]],[[17791,17536,17790]],[[17790,17538,17789]],[[17789,17539,17788]],[[17788,17541,17787]],[[17787,17542,17786]],[[17786,17543,17785]],[[17785,17544,17784]],[[17784,17545,17783]],[[17783,17546,17782]],[[17782,17546,17781]],[[17781,17550,17780]],[[17780,17553,17779]],[[17779,17554,17778]],[[17778,17555,17777]],[[18045,18046,17174]],[[17777,17556,17776]],[[17776,17557,17774]],[[17776,17774,17775]],[[17557,17558,17772]],[[17773,17557,17772]],[[17772,17558,17771]],[[17771,17558,17769]],[[17769,17558,17770]],[[17371,17372,17171]],[[17770,17559,17801]],[[17801,17560,17800]],[[17800,17560,17798]],[[18047,18048,18042]],[[17799,17800,17798]],[[1046,17797,17798]],[[1045,16268,17797]],[[18049,17178,17179]],[[16268,17171,16266]],[[16266,17171,17372]],[[16267,16266,17372]],[[17370,17371,17171]],[[17369,17370,17171]],[[17368,17369,17171]],[[17171,17367,17368]],[[17171,17366,17367]],[[17171,17365,17366]],[[17171,18050,17365]],[[17365,18051,17364]],[[18052,17180,17181]],[[17363,17364,18053]],[[17362,17363,18054]],[[18042,17360,17361]],[[18042,17359,17360]],[[17356,17358,17359]],[[17356,17357,17358]],[[18055,17175,17176]],[[17355,17357,17356]],[[17174,17175,18045]],[[17356,17359,18042]],[[17174,18046,17173]],[[18042,17362,18054]],[[18056,18047,18042]],[[18054,18056,18042]],[[18057,18054,17363]],[[18053,18057,17363]],[[18051,18053,17364]],[[18050,18051,17365]],[[18058,18050,17171]],[[18059,18058,17171]],[[17172,18060,17171]],[[17171,18061,18059]],[[17171,18062,18061]],[[17171,18063,18062]],[[17171,18064,18063]],[[17171,18044,18064]],[[17172,17173,18046]],[[17177,18065,17176]],[[17171,18060,18043]],[[17177,17178,18066]],[[18055,18045,17175]],[[18060,18067,18068]],[[18060,17172,18067]],[[17179,17180,18049]],[[18046,18067,17172]],[[18065,18055,17176]],[[18069,18065,17177]],[[18069,17177,18066]],[[18066,17178,18049]],[[18049,17180,18052]],[[17183,17181,17182]],[[18070,18052,18071]],[[18072,18071,18073]],[[18074,18072,18073]],[[18075,18074,18073]],[[18076,18077,18078]],[[18079,18076,18080]],[[18081,18079,18082]],[[18083,18081,18084]],[[18081,18085,18084]],[[18081,18082,18085]],[[18079,18080,18082]],[[18077,18086,18087]],[[18076,18078,18080]],[[18077,18087,18078]],[[18086,18088,18089]],[[18086,18089,18087]],[[18088,18075,18089]],[[18075,18090,18089]],[[18075,18073,18090]],[[18071,17185,18073]],[[18071,17184,17185]],[[18071,18052,17183]],[[18071,17183,17184]],[[18052,17181,17183]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"bedabd859-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"W0372","class":"waterloop","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.016d65723c70442d8abf815e2dc165cd","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-04-10T04:15:11.000"},"geometry":[{"boundaries":[[[17636,17080,17254]],[[17636,17256,17531]],[[19,18,1]],[[17530,2,17529]],[[17528,2,20]],[[17528,19,1]],[[6,4,5]],[[5,4,7]],[[11,7,10]],[[18091,18017,18092]],[[13,11,18093]],[[15,13,14]],[[18024,18017,18018]],[[14,18024,15]],[[18092,18017,18024]],[[18016,18015,11521]],[[11521,18015,18094]],[[11521,18095,11522]],[[11521,18096,18095]],[[11521,18097,18096]],[[18096,18098,18099]],[[18098,18096,18097]],[[18098,18097,18100]],[[18092,18024,14]],[[11521,18101,18097]],[[11521,18094,18101]],[[18015,18091,18094]],[[18094,18091,18102]],[[18015,18017,18091]],[[4,9,7]],[[16,3,8]],[[18092,14,18103]],[[3,1,8]],[[13,18093,14]],[[11,10,18093]],[[7,9,10]],[[16,17,9]],[[4,16,9]],[[4,3,16]],[[17258,20,17257]],[[1,18,8]],[[2,17530,17257]],[[20,19,17528]],[[17531,17256,17530]],[[2,17257,20]],[[17530,17256,17257]],[[17636,17255,17256]],[[17636,17254,17255]],[[17254,17080,17079]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"bfce80032-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18104,18105,18106]],[[18104,18106,18107]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce91150-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[5643,5642,27]],[[5642,26,27]],[[5642,16769,26]],[[7,11,26]],[[26,11,27]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce93872-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18108,18109,18110]],[[18108,18110,18111]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce95fa3-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9780,5952,18110]],[[9780,16979,9773]],[[18110,18109,17807]],[[17994,18112,18113]],[[17807,18113,17808]],[[17808,18113,18114]],[[18114,18115,18116]],[[18114,18117,18115]],[[18114,18113,18117]],[[18117,18118,18119]],[[18117,18120,18118]],[[18117,18121,18120]],[[18120,18121,18122]],[[18122,18121,18123]],[[18123,18121,18124]],[[18117,18113,18121]],[[18121,18113,18125]],[[18125,18126,18127]],[[18125,18128,18126]],[[18125,18129,18128]],[[18128,18130,18131]],[[18131,18130,18132]],[[18128,18129,18130]],[[18130,18129,18133]],[[18125,18113,18129]],[[17994,5945,5944]],[[17994,5944,18112]],[[18108,17993,17994]],[[17993,18111,5950]],[[18113,18109,17994]],[[17807,18109,18113]],[[17807,16979,18110]],[[9780,18110,16979]],[[18111,17993,18108]],[[5952,18111,18110]],[[5952,5950,18111]],[[18109,18108,17994]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea2371-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9282,9545,3440]],[[9545,9503,3440]],[[3950,17007,3949]],[[3949,17009,3948]],[[3948,17010,3458]],[[17003,3440,3478]],[[17000,3478,3538]],[[3478,17000,17003]],[[9503,9770,3440]],[[3903,16783,17013]],[[3458,17000,3475]],[[3951,17006,3950]],[[9278,9282,3440]],[[9274,9278,3440]],[[9273,9274,3440]],[[17003,9273,3440]],[[17003,9272,9273]],[[17003,9271,9272]],[[17003,9269,9271]],[[3437,17004,3951]],[[9269,17003,9265]],[[9264,9265,17003]],[[9263,9264,17003]],[[9262,9263,17003]],[[9261,9262,17003]],[[9258,9261,17003]],[[9257,9258,17003]],[[9256,9257,17003]],[[9254,17003,9249]],[[9249,17003,9247]],[[3475,17000,3538]],[[9254,9256,17003]],[[3437,3434,17012]],[[17000,3458,17010]],[[17010,3948,17009]],[[17009,3949,17007]],[[17007,3950,17006]],[[17006,3951,17004]],[[17004,3437,17012]],[[17012,3434,17013]],[[18134,16780,16783]],[[18135,18134,16783]],[[18136,18135,16783]],[[18137,18136,16783]],[[18138,18137,16783]],[[18139,18138,16783]],[[18140,18139,16783]],[[18141,18140,16783]],[[18142,18141,16783]],[[18143,18142,16783]],[[18144,18143,16783]],[[18145,18144,16783]],[[18146,18145,16783]],[[18147,18146,16783]],[[18148,18147,16783]],[[18149,18148,16783]],[[18150,18149,16783]],[[18151,18150,16783]],[[18152,18151,16783]],[[18153,18152,16783]],[[18154,18153,16783]],[[3903,18154,16783]],[[3903,18155,18154]],[[3903,18156,18155]],[[3903,18157,18156]],[[3903,18158,18157]],[[18159,18160,18158]],[[18161,18159,18158]],[[18161,18162,18159]],[[18161,18163,18162]],[[18164,18161,18158]],[[18165,18166,18161]],[[18167,18165,18161]],[[18164,18167,18161]],[[18164,18168,18167]],[[18169,18164,18158]],[[18169,18170,18164]],[[18169,18171,18170]],[[18172,18169,18158]],[[18173,18174,18169]],[[18173,18175,18174]],[[18176,18173,18169]],[[18176,18177,18173]],[[18178,18176,18169]],[[18178,18179,18176]],[[18178,18180,18179]],[[18178,18181,18180]],[[18172,18178,18169]],[[18182,18183,18178]],[[18178,18172,18182]],[[18184,18182,18172]],[[18172,18158,3903]],[[3434,3903,17013]],[[18185,18172,3903]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea4a8a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17019,9243,9247]],[[9247,17003,17002]],[[17019,9247,17002]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea70b2-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-11-03","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.c76f5d580cb14842ba0da04e1433d2ef","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18186,18187,6423]],[[18188,5944,5943]],[[18188,18112,5944]],[[5953,18189,5943]],[[18190,18188,5943]],[[18191,18190,5943]],[[18192,18191,5943]],[[18193,18192,5943]],[[18194,18193,5943]],[[18195,18194,5943]],[[18189,18195,5943]],[[18196,18189,5953]],[[18197,18196,5953]],[[18198,18197,5953]],[[18199,18198,5953]],[[18200,18199,5953]],[[18201,18200,5953]],[[18202,18201,5953]],[[18203,18202,5953]],[[18204,18203,5953]],[[18205,18204,5953]],[[18206,18205,5953]],[[18207,18206,5953]],[[18208,18207,5953]],[[18209,18208,5953]],[[6423,18209,5953]],[[6423,18187,18209]],[[6176,18186,6423]],[[18210,18211,18186]],[[6176,18210,18186]],[[18212,5937,18107]],[[5937,18210,6176]],[[18104,5932,18105]],[[18212,18210,5937]],[[18213,18212,18214]],[[18214,18212,18215]],[[18216,18214,18215]],[[18217,18216,18215]],[[18215,18212,18218]],[[18219,18215,18220]],[[18221,18219,18220]],[[18220,18215,18218]],[[18222,18220,18218]],[[18218,18212,18223]],[[18224,18218,18225]],[[18226,18224,18225]],[[18225,18218,18227]],[[18228,18225,18227]],[[18227,18218,18229]],[[18230,18227,18229]],[[18229,18218,18223]],[[18231,18229,18223]],[[18232,18231,18223]],[[18223,18212,16762]],[[18233,18223,16762]],[[18234,18233,16762]],[[16762,18212,18107]],[[18106,18105,5932]],[[18106,5932,18235]],[[17856,18106,18235]],[[18104,5937,5932]],[[16763,18106,17856]],[[16763,18107,18106]],[[16763,16762,18107]],[[18107,5937,18104]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea97e3-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16769,25,26]],[[5,7,25]],[[25,7,26]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea97e9-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8249cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16400,16390,18236]],[[16392,16400,18236]],[[16398,16392,18236]],[[18237,16394,18236]],[[18236,16399,16398]],[[18236,16394,16399]],[[18237,16397,16394]],[[18237,11378,11380]],[[16397,18237,11380]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceae630-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0c3449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18238,3349,3266]],[[18238,3220,3219]],[[18238,3266,3220]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceb347d-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eed11849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18236,16390,16770]],[[16403,16382,16770]],[[16384,16403,16770]],[[16402,16384,16770]],[[16386,16402,16770]],[[16401,16386,16770]],[[16388,16401,16770]],[[16390,16388,16770]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcebaa0a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef172349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9284,9226,4220]],[[9253,9252,4009]],[[9221,9219,3966]],[[4022,4026,9198]],[[9298,4013,3980]],[[4034,4033,9189]],[[9339,3298,3301]],[[9246,3301,3973]],[[3301,3302,3973]],[[4016,4015,9461]],[[9225,9396,4181]],[[4015,4019,9469]],[[9339,9244,3298]],[[4182,9515,4296]],[[9461,4015,9469]],[[3973,4296,9236]],[[9253,4009,4008]],[[3307,4453,4801]],[[3320,4360,4365]],[[4355,4350,3335]],[[4354,4355,3335]],[[3327,4350,4356]],[[5461,5465,3275]],[[5476,5461,3348]],[[3406,5471,5656]],[[3352,5896,5847]],[[5912,5612,3402]],[[5540,5912,3402]],[[5538,5540,3378]],[[5609,5538,3378]],[[5693,5609,3375]],[[5632,5693,3376]],[[5633,5632,3256]],[[5618,5633,3257]],[[5619,5618,18239]],[[5619,18239,18237]],[[5618,3257,18239]],[[5633,3256,3257]],[[3249,5890,5575]],[[5632,3376,3256]],[[5612,5890,3429]],[[5574,3404,5575]],[[3376,5693,3375]],[[5609,3378,3375]],[[5574,5896,3241]],[[3429,3402,5612]],[[3378,5540,3402]],[[5848,3353,5847]],[[3351,5655,5645]],[[5890,3249,3429]],[[3413,5479,5472]],[[5575,3404,3249]],[[5848,5479,3353]],[[5471,3415,5472]],[[3404,5574,3241]],[[5896,3352,3241]],[[5656,5655,3407]],[[3413,3353,5479]],[[3352,5847,3353]],[[3415,3413,5472]],[[5651,3219,5645]],[[5471,3406,3415]],[[5656,3407,3406]],[[5651,5649,3349]],[[5655,3351,3407]],[[5649,5476,3270]],[[5645,3219,3351]],[[5651,18238,3219]],[[3348,3270,5476]],[[5651,3349,18238]],[[3341,5468,4343]],[[5649,3270,3349]],[[5465,5468,3347]],[[4342,3341,4343]],[[3346,4351,4352]],[[5461,3273,3348]],[[4342,4351,3346]],[[4353,3370,4352]],[[3273,5461,3275]],[[5465,3347,3275]],[[4353,4354,3335]],[[3287,4800,4404]],[[3347,5468,3341]],[[4342,3346,3341]],[[4356,4360,3323]],[[4800,3320,4365]],[[3346,4352,3370]],[[4453,3317,4404]],[[3370,4353,3335]],[[3323,3327,4356]],[[3335,4350,3327]],[[4681,3307,4801]],[[3312,4802,4768]],[[4360,3320,3323]],[[4681,4802,3312]],[[3320,4800,3287]],[[4404,3317,3287]],[[4453,3288,3317]],[[4453,3307,3288]],[[4768,4477,3309]],[[4681,3312,3307]],[[4477,4340,3309]],[[4768,3311,3312]],[[4340,3983,3303]],[[4768,3309,3311]],[[4340,3310,3309]],[[4340,3303,3310]],[[3983,3973,3302]],[[3303,3983,3305]],[[3305,3983,3300]],[[3300,3983,3304]],[[3304,3983,3302]],[[3966,3965,9221]],[[9244,3299,3298]],[[9246,9339,3301]],[[4181,9231,4182]],[[3973,9236,9246]],[[9284,4220,4000]],[[4296,9515,9236]],[[4181,4220,9225]],[[9396,9231,4181]],[[9515,4182,9231]],[[3996,9379,4000]],[[9226,9225,4220]],[[4009,9260,3996]],[[9379,9284,4000]],[[9295,9379,3996]],[[9260,9295,3996]],[[3966,9219,4008]],[[4009,9252,9260]],[[3965,4014,9220]],[[4013,9306,4014]],[[4008,9223,9253]],[[9299,4017,4018]],[[4008,9218,9223]],[[3980,4017,9297]],[[9218,4008,9219]],[[9306,9220,4014]],[[9221,3965,9220]],[[9212,9306,4013]],[[4011,9462,4018]],[[4013,9298,9212]],[[3980,9297,9298]],[[4011,4016,9461]],[[9297,4017,9299]],[[9299,4018,9462]],[[9462,4011,9461]],[[9469,4019,9185]],[[9185,4019,4020]],[[9186,9185,4020]],[[9197,9186,4021]],[[4026,9192,9198]],[[9198,9197,4022]],[[4058,9190,9192]],[[4307,4046,9183]],[[9190,4053,9191]],[[4053,9189,9191]],[[4060,9170,9180]],[[4046,9179,9183]],[[4029,9171,9170]],[[9169,9171,9774]],[[9318,9169,9777]],[[9778,9318,9776]],[[9776,9318,9777]],[[9777,9169,9774]],[[9774,9171,4029]],[[9775,9774,4028]],[[9771,9775,4028]],[[9772,9771,4028]],[[9772,4028,4308]],[[9180,9179,4045]],[[4033,9187,9189]],[[4028,9774,4029]],[[9182,4307,9183]],[[4029,9170,4060]],[[9180,4057,4060]],[[9182,9187,4307]],[[4057,9180,4045]],[[4045,9179,4046]],[[4033,4307,9187]],[[4053,4034,9189]],[[4054,4053,9190]],[[4058,4054,9190]],[[4026,4058,9192]],[[4022,9197,4021]],[[4021,9186,4020]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcec6cc0-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9318,18240,9178]],[[18241,9778,9773]],[[18240,9318,18242]],[[3510,3737,18240]],[[3511,3510,18180]],[[3903,3511,18185]],[[18185,3511,18172]],[[18172,3511,18184]],[[18184,3511,18182]],[[18182,3511,18183]],[[18183,3511,18178]],[[18178,3511,18181]],[[18181,3511,18180]],[[18180,3510,18179]],[[18179,3510,18176]],[[18176,3510,18177]],[[18177,3510,18173]],[[18173,3510,18175]],[[18175,3510,18174]],[[18174,3510,18240]],[[18169,18174,18240]],[[18171,18169,18240]],[[18170,18171,18240]],[[18164,18170,18240]],[[18168,18164,18240]],[[18165,18167,18240]],[[18166,18165,18243]],[[18161,18166,18243]],[[18163,18161,18243]],[[18162,18163,18243]],[[18159,18162,18243]],[[18160,18159,18243]],[[18158,18160,18243]],[[18157,18158,18243]],[[18156,18157,18243]],[[18155,18156,18154]],[[18154,18156,18153]],[[18153,18156,18151]],[[18152,18153,18151]],[[18151,18156,18137]],[[18150,18151,18148]],[[18149,18150,18148]],[[18148,18151,18146]],[[18147,18148,18146]],[[18146,18151,18137]],[[18145,18146,18142]],[[18144,18145,18143]],[[18143,18145,18142]],[[18142,18146,18140]],[[18141,18142,18140]],[[18140,18146,18137]],[[18139,18140,18137]],[[18138,18139,18137]],[[18137,18156,16780]],[[18136,18137,16780]],[[18135,18136,16780]],[[18134,18135,16780]],[[16780,18156,16782]],[[18242,9318,9778]],[[16979,18241,9773]],[[16782,18241,16979]],[[16782,18156,18243]],[[16782,18243,18241]],[[18167,18168,18240]],[[18165,18240,18243]],[[3737,9178,18240]],[[18241,18242,9778]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcece247-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[3252,16804,3257]],[[16804,16861,3257]],[[3257,16861,18239]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcedf371-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef173a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[4089,5923,4338]],[[4087,4338,5941]],[[6301,6060,4270]],[[5931,3963,4084]],[[6029,6302,4074]],[[6060,4077,4270]],[[9783,4062,9785]],[[5986,5985,4067]],[[9786,4023,5948]],[[9781,9772,4308]],[[5951,5952,9779]],[[4023,4025,5948]],[[4062,4023,9785]],[[4062,9781,4308]],[[4085,4086,5927]],[[9783,9781,4062]],[[5985,6265,4066]],[[5974,4069,4075]],[[6301,4270,3963]],[[9785,4023,9786]],[[4086,4087,5927]],[[9784,9786,5949]],[[9782,9784,5949]],[[9779,9782,5951]],[[9779,5952,9780]],[[5949,5951,9782]],[[4064,5960,4025]],[[5992,4063,4065]],[[9786,5948,5949]],[[4064,4063,5956]],[[5960,5946,4025]],[[5948,4025,5946]],[[4027,5992,4065]],[[4064,6282,5960]],[[5985,4066,4067]],[[4064,5956,6282]],[[4027,4066,6265]],[[5956,4063,5992]],[[5992,4027,6264]],[[4027,6265,6264]],[[4067,4069,5986]],[[4074,6302,4075]],[[4077,6029,4074]],[[5986,4069,5974]],[[5974,4075,6302]],[[6060,6029,4077]],[[4085,5929,4084]],[[5931,6301,3963]],[[4084,5929,5931]],[[4085,5928,5929]],[[4085,5927,5928]],[[4087,5941,5927]],[[4338,5923,5941]],[[5923,4089,5922]],[[5922,4089,5919]],[[5919,4089,18244]],[[5920,5919,18245]],[[5918,5920,18246]],[[5918,18246,5994]],[[5920,18247,18246]],[[5920,18245,18247]],[[5919,18248,18245]],[[18249,5919,18250]],[[5919,18251,18248]],[[4089,4088,18252]],[[18251,5919,18253]],[[18253,5919,18254]],[[18254,5919,18249]],[[18250,5919,18255]],[[18255,5919,18256]],[[18256,5919,18244]],[[18244,4089,18257]],[[18257,4089,18258]],[[18258,4089,18259]],[[18259,4089,18252]],[[18252,4088,18260]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcee1a90-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18261,32,31]],[[18261,31,17870]],[[10,9,32]],[[32,9,31]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceeb72a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18239,16861,18237]],[[16861,11378,18237]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceeb730-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eed11b49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16826,3294,16870]],[[3294,3297,16870]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceede58-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229c49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18187,18186,18211]],[[18187,16775,18209]],[[18209,18207,18208]],[[18209,18192,18207]],[[18207,18204,18206]],[[18206,18204,18205]],[[18207,18201,18204]],[[18204,18202,18203]],[[18204,18201,18202]],[[18207,18195,18201]],[[18201,18198,18200]],[[18200,18198,18199]],[[18201,18195,18198]],[[18198,18195,18197]],[[18197,18189,18196]],[[18197,18195,18189]],[[18207,18194,18195]],[[18207,18192,18194]],[[18194,18192,18193]],[[18209,18188,18192]],[[18192,18190,18191]],[[18192,18188,18190]],[[18209,18112,18188]],[[18209,18113,18112]],[[18113,18209,16775]],[[18129,18113,16775]],[[18133,18129,16775]],[[18130,18133,16775]],[[18132,18130,16775]],[[18131,18132,16775]],[[18128,18131,16775]],[[18126,18128,16775]],[[18127,18126,16775]],[[18125,18127,16775]],[[18121,18125,16775]],[[18124,18121,16775]],[[18123,18124,16775]],[[18122,18123,16775]],[[18120,18122,16775]],[[18118,18120,16775]],[[18119,18118,16775]],[[18117,18119,16775]],[[18115,18117,16775]],[[18116,18115,16775]],[[18114,18116,16775]],[[18114,16775,17808]],[[18187,16776,16775]],[[18218,18224,16761]],[[18234,16762,16761]],[[18233,18234,16761]],[[18223,18233,16761]],[[18232,18223,16761]],[[18231,18232,16761]],[[18229,18231,16761]],[[18230,18229,16761]],[[18227,18230,16761]],[[18228,18227,16761]],[[18225,18228,16761]],[[18226,18225,16761]],[[18224,18226,16761]],[[16776,18213,16761]],[[18222,18218,16761]],[[18211,18212,16776]],[[16761,18220,18222]],[[16761,18221,18220]],[[16761,18219,18221]],[[16761,18215,18219]],[[16761,18217,18215]],[[16761,18216,18217]],[[16761,18214,18216]],[[16761,18213,18214]],[[16776,18212,18213]],[[18211,18210,18212]],[[18187,18211,16776]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcef52cd-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fb49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[3297,3299,16870]],[[3299,16869,16870]],[[3299,9244,16869]],[[16869,9243,17019]],[[9243,16869,9244]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcf03dd2-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef173949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[5641,5619,18237]],[[5641,18236,5622]],[[5622,16770,5623]],[[5623,16770,5642]],[[5642,16770,16769]],[[5622,18236,16770]],[[5641,18237,18236]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcf03dd8-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18242,18241,18243]],[[18242,18243,18240]]],"lod":"1","type":"MultiSurface"}],"type":"Road"}},"metadata":{"geographicalExtent":[84616.468,447422.999,-0.452,85140.83899999999,447750.636,16.846],"referenceSystem":"urn:ogc:def:crs:EPSG::7415","citymodelIdentifier":"86a36ef9-a43e-4f87-8eb9-daa993d71355","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"delft.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{"WaterBody":{"uniqueFeatureCount":3,"aggregateFeatureCount":3,"presentLoDs":{"1":3}},"Road":{"uniqueFeatureCount":143,"aggregateFeatureCount":143,"presentLoDs":{"1":143}},"LandUse":{"uniqueFeatureCount":81,"aggregateFeatureCount":81,"presentLoDs":{"1":81}},"Building":{"uniqueFeatureCount":160,"aggregateFeatureCount":160,"presentLoDs":{"1":160}},"PlantCover":{"uniqueFeatureCount":126,"aggregateFeatureCount":126,"presentLoDs":{"1":126}},"Bridge":{"uniqueFeatureCount":3,"aggregateFeatureCount":3,"presentLoDs":{"1":3}},"+GenericCityObject":{"uniqueFeatureCount":54,"aggregateFeatureCount":54,"presentLoDs":{"1":54}}},"presentLoDs":{"1":570},"thematicModels":["WaterBody","Road","LandUse","Building","PlantCover","Bridge","+GenericCityObject"]},"type":"CityJSON","version":"1.1","vertices":[[411283,25181,572],[412163,27032,582],[411755,27133,582],[413571,26683,582],[418114,25557,582],[418511,26894,582],[418448,26903,582],[423464,25667,582],[412434,22752,582],[421953,19972,582],[423347,19595,582],[424894,25312,582],[423565,19536,572],[425113,25258,582],[423782,19478,582],[425331,25204,582],[417108,21489,582],[417055,21296,582],[411229,23077,582],[411030,23131,582],[410823,23187,582],[413571,26683,1562],[412163,27032,1562],[418114,25557,1632],[418448,26903,1812],[418511,26894,1812],[423464,25667,1892],[424894,25312,1902],[425113,25258,1982],[424894,25312,1962],[425331,25204,1962],[421953,19972,1712],[423347,19595,1702],[417055,21296,1842],[417108,21489,1852],[412434,22752,1872],[411229,23077,1882],[411030,23131,2422],[411229,23077,2292],[410823,23187,2422],[393347,59669,6452],[416101,61295,6452],[424165,81601,6452],[404992,53462,6452],[405974,54155,6452],[393184,59554,6452],[389219,56732,6452],[399010,49244,6452],[397907,47100,6452],[396015,40703,6452],[396198,40656,6452],[398196,48188,6452],[386610,44619,6452],[389578,42358,6452],[399888,49863,6452],[386278,42772,6452],[389466,41932,6452],[386243,43226,6452],[385960,42856,6452],[386011,43050,6452],[386069,43272,6452],[387926,58500,6452],[383712,45382,6452],[380026,44875,6452],[383345,43990,6452],[383461,43722,6452],[383519,43944,6452],[383101,43610,6452],[383410,43528,6452],[379913,44450,6452],[385366,61644,6452],[373646,46546,6452],[373636,46516,6452],[373220,46223,6452],[373624,46486,6452],[373556,46379,6452],[373610,46458,6452],[373594,46430,6452],[373576,46404,6452],[373461,46295,6452],[373534,46356,6452],[373511,46334,6452],[373487,46314,6452],[373433,46279,6452],[373405,46265,6452],[373283,46228,6452],[373376,46252,6452],[373345,46242,6452],[373315,46234,6452],[373252,46225,6452],[373125,46233,6452],[373188,46224,6452],[373156,46228,6452],[366829,47900,6452],[385535,61769,6452],[389122,59387,6452],[386731,62656,6452],[427205,83282,6452],[428972,80753,6452],[426922,83461,6452],[427742,84047,6452],[427925,83785,6452],[423945,66825,6452],[429692,81256,6452],[429875,80994,6452],[433996,76230,6452],[430424,81368,6452],[438993,67054,6452],[439132,66863,6452],[440005,67586,6452],[439885,67759,6452],[440045,67529,6452],[433002,62836,6452],[431881,62005,6452],[433290,62427,6452],[432149,61624,6452],[428849,59870,6452],[405974,54155,352],[416101,61295,352],[404992,53462,352],[399888,49863,352],[399010,49244,352],[398196,48188,352],[397907,47100,352],[396198,40656,352],[396015,40703,352],[389578,42358,352],[389466,41932,352],[386278,42772,352],[385960,42856,352],[386011,43050,352],[386069,43272,352],[386243,43226,352],[386610,44619,352],[383712,45382,352],[383345,43990,352],[383519,43944,352],[383461,43722,352],[383410,43528,352],[383101,43610,352],[379913,44450,352],[380026,44875,352],[373646,46546,352],[373636,46516,352],[373624,46486,352],[373610,46458,352],[373594,46430,352],[373576,46404,352],[373556,46379,352],[373534,46356,352],[373511,46334,352],[373487,46314,352],[373461,46295,352],[373433,46279,352],[373405,46265,352],[373376,46252,352],[373345,46242,352],[373315,46234,352],[373283,46228,352],[373252,46225,352],[373220,46223,352],[373188,46224,352],[373156,46228,352],[373125,46233,352],[366829,47900,352],[385366,61644,352],[385535,61769,352],[386731,62656,352],[389122,59387,352],[387926,58500,352],[389219,56732,352],[393184,59554,352],[393347,59669,352],[424165,81601,352],[426922,83461,352],[427742,84047,352],[427925,83785,352],[427205,83282,352],[428972,80753,352],[429692,81256,352],[429875,80994,352],[430424,81368,352],[433996,76230,352],[439885,67759,352],[440005,67586,352],[440045,67529,352],[439132,66863,352],[438993,67054,352],[433002,62836,352],[433290,62427,352],[432149,61624,352],[431881,62005,352],[428849,59870,352],[423945,66825,352],[239127,126716,3342],[236526,130339,3342],[226148,117412,3342],[225229,117961,3342],[222235,119812,3342],[225196,117911,3342],[222043,119937,3342],[222075,119915,3342],[239127,126716,432],[236526,130339,432],[239127,126716,442],[236526,130339,442],[236526,130339,452],[236526,130339,3322],[226148,117412,432],[226148,117412,442],[225229,117961,432],[225196,117911,432],[222235,119812,432],[222075,119915,432],[222043,119937,432],[222043,119937,452],[222043,119937,3322],[227727,127337,3322],[236681,133773,3322],[238272,131560,3322],[225757,130078,3322],[220489,120985,3322],[217534,122981,3322],[217751,122834,3322],[217723,122793,3322],[217511,122947,3322],[216716,123533,3322],[216499,123680,3322],[216693,123500,3322],[216477,123647,3322],[227727,127337,452],[225757,130078,452],[225757,130078,482],[225757,130078,2942],[236681,133773,452],[236681,133773,532],[238272,131560,452],[238272,131560,532],[220489,120985,452],[217751,122834,452],[217723,122793,452],[217511,122947,452],[217534,122981,452],[216716,123533,452],[216693,123500,452],[216477,123647,452],[216499,123680,452],[216499,123680,482],[216499,123680,2942],[224136,131931,2942],[216459,123706,2942],[209579,128491,2942],[209404,128301,2942],[216677,133640,2942],[220906,136370,2942],[220783,136540,2942],[227506,134382,2942],[228961,132382,2942],[228961,132382,482],[228961,132382,512],[228961,132382,2932],[216459,123706,482],[209404,128301,482],[209579,128491,482],[216677,133640,482],[220783,136540,482],[220906,136370,482],[224136,131931,482],[227506,134382,482],[227506,134382,512],[227506,134382,2932],[234710,136515,2932],[229924,143320,2932],[224254,138853,2932],[224130,139023,2932],[234710,136515,512],[229924,143320,512],[234710,136515,532],[229924,143320,532],[224254,138853,512],[224130,139023,512],[243507,120624,3752],[235960,110991,3752],[245458,117882,3752],[235767,111116,3752],[235667,111182,3752],[230733,114421,3752],[250725,125757,3752],[244733,124162,3752],[230711,114435,3752],[249506,127469,3752],[243507,120624,442],[250725,125757,442],[245458,117882,442],[245458,117882,3722],[235960,110991,442],[235960,110991,3722],[235767,111116,442],[235667,111182,442],[230733,114421,442],[230711,114435,442],[230711,114435,3502],[244733,124162,442],[244733,124162,3502],[249506,127469,442],[239127,126716,3502],[226148,117412,3502],[226126,117378,3502],[238272,131560,3502],[236526,130339,3502],[241718,128399,3502],[241296,133674,3502],[244031,130002,3502],[226126,117378,442],[238272,131560,442],[238272,131560,3472],[241296,133674,442],[241296,133674,532],[241296,133674,3472],[244031,130002,442],[241718,128399,442],[269724,125155,3522],[270795,125813,3522],[267552,130267,3522],[261643,128933,3522],[263699,126130,3522],[267997,124111,3522],[262301,125150,3522],[264561,122034,3522],[264198,134874,3522],[269483,138574,3522],[265579,138864,3522],[258205,133620,3522],[268771,139552,3522],[268012,140591,3522],[264198,134874,892],[269483,138574,892],[264198,134874,1062],[269483,138574,1062],[267552,130267,892],[267552,130267,942],[267552,130267,1062],[270795,125813,892],[270795,125813,942],[269724,125155,892],[267997,124111,892],[264561,122034,892],[262301,125150,892],[263699,126130,892],[261643,128933,892],[258205,133620,892],[265579,138864,892],[268012,140591,892],[268771,139552,892],[275036,133500,4422],[274068,134829,4422],[273822,132617,4422],[276094,129496,4422],[270902,125879,4422],[276223,129318,4422],[270969,125770,4422],[267552,130267,4422],[270795,125813,4422],[272838,133968,4422],[276094,129496,942],[273822,132617,942],[276223,129318,942],[270969,125770,942],[270902,125879,942],[272838,133968,942],[272838,133968,1062],[274068,134829,942],[274068,134829,1062],[275036,133500,942],[239663,138633,3472],[234006,146275,3472],[239243,138352,3472],[242030,134187,3472],[234710,136515,3472],[236681,133773,3472],[229924,143320,3472],[239663,138633,532],[234006,146275,532],[239663,138633,542],[234006,146275,542],[239243,138352,532],[242030,134187,532],[336628,67047,3532],[335233,68866,3532],[330422,68973,3532],[327637,59791,3532],[321413,61704,3532],[331944,73148,3532],[329127,70864,3532],[329010,70770,3532],[335350,68960,3532],[336628,67047,372],[335233,68866,372],[336628,67047,3422],[335233,68866,3422],[327637,59791,372],[327637,59791,3422],[321413,61704,372],[321413,61704,392],[321413,61704,3332],[330422,68973,372],[330422,68973,392],[330422,68973,3332],[329010,70770,372],[329010,70770,392],[329010,70770,3332],[329127,70864,372],[329127,70864,392],[329127,70864,3332],[331944,73148,372],[335350,68960,372],[335350,68960,3422],[342837,65118,3422],[341467,66952,3422],[333863,57877,3422],[338190,71237,3422],[341584,67046,3422],[342837,65118,352],[341467,66952,352],[342837,65118,3402],[341467,66952,3402],[333863,57877,352],[333863,57877,3402],[327637,59791,352],[336628,67047,352],[335233,68866,352],[335350,68960,352],[338190,71237,352],[341584,67046,352],[341584,67046,3402],[300751,123562,3242],[298348,126781,3242],[300619,123464,3242],[307689,114842,3242],[307743,114881,3242],[302333,122177,3242],[301963,121903,3242],[295840,125794,3242],[299917,120333,3242],[298495,119282,3242],[303927,112023,3242],[297958,127303,3242],[300751,123562,592],[298348,126781,592],[300751,123562,602],[298348,126781,602],[300619,123464,592],[300619,123464,602],[301963,121903,592],[301963,121903,602],[302333,122177,592],[302333,122177,602],[307743,114881,592],[307743,114881,602],[307689,114842,592],[303927,112023,592],[303927,112023,3212],[298495,119282,592],[298495,119282,3212],[299917,120333,592],[295840,125794,592],[297958,127303,592],[310952,117539,3242],[311149,117439,3242],[311033,117598,3242],[311186,117388,3242],[303888,123272,3242],[300222,128181,3242],[305973,124814,3242],[310952,117539,602],[305973,124814,602],[311033,117598,602],[311149,117439,602],[311186,117388,602],[300222,128181,602],[303888,123272,602],[333629,110741,3612],[334337,109627,3612],[334429,109693,3612],[328224,117845,3612],[332862,110155,3612],[333645,109130,3612],[324201,114896,3612],[329609,107676,3612],[328185,117897,3612],[333629,110741,472],[328224,117845,472],[333629,110741,532],[328224,117845,532],[333629,110741,3552],[328224,117845,3552],[334429,109693,472],[334429,109693,532],[334429,109693,3552],[334337,109627,472],[334337,109627,532],[334337,109627,3552],[333645,109130,472],[332862,110155,472],[329609,107676,472],[324201,114896,472],[328185,117897,472],[339502,112081,3552],[335044,108676,3552],[332700,121225,3552],[330739,119790,3552],[330692,119855,3552],[332653,121289,3552],[339502,112081,532],[332700,121225,532],[339502,112081,3402],[332700,121225,3402],[335044,108676,532],[330739,119790,532],[330692,119855,532],[332653,121289,532],[330278,165190,3562],[337488,172404,3562],[329617,165846,3562],[327202,166245,3562],[328100,165355,3562],[322013,165861,3562],[324437,163457,3562],[325634,169480,3562],[333046,176505,3562],[333151,176613,3562],[332956,176802,3562],[333737,175835,3562],[333841,175943,3562],[330278,165190,612],[337488,172404,612],[330278,165190,3462],[337488,172404,3462],[329617,165846,612],[328100,165355,612],[327202,166245,612],[324437,163457,612],[322013,165861,612],[325634,169480,612],[332956,176802,612],[333151,176613,612],[333046,176505,612],[333737,175835,612],[333841,175943,612],[311662,117706,6562],[334866,135470,6562],[311601,117785,6562],[311473,117952,6562],[329358,142664,6562],[306154,124900,6562],[311662,117706,652],[334866,135470,652],[311601,117785,652],[311473,117952,652],[306154,124900,652],[329358,142664,652],[383533,127735,6612],[383844,127529,6612],[383582,127785,6612],[375381,119436,6612],[379831,129659,6612],[370898,123632,6612],[378379,131056,6612],[380351,130200,6612],[380185,130027,6612],[380504,130358,6612],[380650,130510,6612],[380026,129861,6612],[375381,119436,662],[383844,127529,662],[375381,119436,672],[383844,127529,672],[370898,123632,662],[370898,123632,6512],[378379,131056,662],[378379,131056,6512],[379831,129659,662],[380026,129861,662],[380185,130027,662],[380351,130200,662],[380504,130358,662],[380650,130510,662],[383533,127735,662],[383582,127785,662],[383532,119200,7122],[379084,115970,7122],[378597,114168,7122],[377999,114811,7122],[375381,119436,7122],[383844,127529,7122],[386585,124680,7122],[386669,124766,7122],[387457,123827,7122],[387979,123489,7122],[387541,123913,7122],[383532,119200,672],[387979,123489,672],[383532,119200,692],[387979,123489,692],[383532,119200,6982],[387979,123489,6982],[378597,114168,672],[378597,114168,692],[378597,114168,6982],[377999,114811,672],[379084,115970,672],[386669,124766,672],[386585,124680,672],[387457,123827,672],[387541,123913,672],[341965,117106,3402],[341985,113977,3402],[345747,112222,3402],[344220,111091,3402],[336346,124117,3402],[336460,124214,3402],[341965,117106,522],[336460,124214,522],[341965,117106,532],[336460,124214,532],[345747,112222,522],[344220,111091,522],[341985,113977,522],[339502,112081,522],[332700,121225,522],[336346,124117,522],[345842,120332,3912],[345998,120187,3912],[345877,120344,3912],[345831,120060,3912],[343263,123652,3912],[341965,117106,3912],[336460,124214,3912],[340546,127151,3912],[340089,127302,3912],[340215,127239,3912],[340389,127353,3912],[340410,127326,3912],[345842,120332,532],[343263,123652,532],[345877,120344,532],[345998,120187,532],[345831,120060,532],[340089,127302,532],[340215,127239,532],[340389,127353,532],[340410,127326,532],[340546,127151,532],[374145,136526,3402],[374765,136104,3402],[374236,136620,3402],[366730,127732,3402],[363790,127886,3402],[365367,126410,3402],[365182,129373,3402],[364046,132734,3402],[362744,131655,3402],[371114,139667,3402],[371183,139739,3402],[370970,139949,3402],[373174,137474,3402],[373265,137567,3402],[366730,127732,612],[374765,136104,612],[366730,127732,622],[374765,136104,622],[365367,126410,612],[365367,126410,622],[363790,127886,612],[365182,129373,612],[362744,131655,612],[364046,132734,612],[370970,139949,612],[371183,139739,612],[371114,139667,612],[373265,137567,612],[373174,137474,612],[374145,136526,612],[374236,136620,612],[365367,126410,6512],[366081,125741,6512],[367279,127020,6512],[377511,132933,6512],[377664,133091,6512],[374855,136016,6512],[366730,127732,6512],[376991,132392,6512],[374765,136104,6512],[377809,133242,6512],[374890,136052,6512],[377345,132760,6512],[377185,132594,6512],[370898,123632,622],[378379,131056,622],[367279,127020,622],[366081,125741,622],[374855,136016,622],[374890,136052,622],[377809,133242,622],[377664,133091,622],[377511,132933,622],[377345,132760,622],[377185,132594,622],[376991,132392,622],[339535,156468,3462],[346572,163545,3462],[337013,158896,3462],[332416,158272,3462],[335552,157450,3462],[335673,157548,3462],[335425,157360,3462],[335293,157278,3462],[335155,157206,3462],[335013,157142,3462],[334867,157088,3462],[334717,157044,3462],[334565,157010,3462],[334412,156986,3462],[334257,156972,3462],[334101,156968,3462],[333945,156974,3462],[333791,156991,3462],[333637,157018,3462],[333486,157055,3462],[333338,157102,3462],[333192,157158,3462],[333051,157224,3462],[332915,157299,3462],[332784,157383,3462],[332658,157475,3462],[332539,157575,3462],[332427,157683,3462],[332133,157988,3462],[342098,168006,3462],[342243,167740,3462],[342306,167805,3462],[342940,167068,3462],[343003,167132,3462],[346643,163616,3462],[339535,156468,582],[346572,163545,582],[339535,156468,602],[346572,163545,602],[337013,158896,582],[335673,157548,582],[335552,157450,582],[335425,157360,582],[335293,157278,582],[335155,157206,582],[335013,157142,582],[334867,157088,582],[334717,157044,582],[334565,157010,582],[334412,156986,582],[334257,156972,582],[334101,156968,582],[333945,156974,582],[333791,156991,582],[333637,157018,582],[333486,157055,582],[333338,157102,582],[333192,157158,582],[333051,157224,582],[332915,157299,582],[332784,157383,582],[332658,157475,582],[332539,157575,582],[332427,157683,582],[332133,157988,582],[332133,157988,592],[332416,158272,582],[332416,158272,592],[342098,168006,582],[342098,168006,592],[342306,167805,582],[342243,167740,582],[342940,167068,582],[343003,167132,582],[346643,163616,582],[330728,158839,3462],[330955,157510,3462],[331304,157155,3462],[330891,157648,3462],[330837,157790,3462],[330792,157935,3462],[330757,158083,3462],[330731,158233,3462],[330716,158384,3462],[330710,158536,3462],[330714,158688,3462],[330752,158989,3462],[330786,159137,3462],[330829,159283,3462],[330882,159425,3462],[330944,159564,3462],[331015,159698,3462],[331095,159828,3462],[331183,159952,3462],[331279,160070,3462],[331382,160181,3462],[331493,160285,3462],[331610,160382,3462],[331731,160469,3462],[328600,163511,3462],[341152,168809,3462],[337516,172432,3462],[341207,168866,3462],[341848,168136,3462],[341904,168194,3462],[331304,157155,592],[330955,157510,592],[330891,157648,592],[330837,157790,592],[330792,157935,592],[330757,158083,592],[330731,158233,592],[330716,158384,592],[330710,158536,592],[330714,158688,592],[330728,158839,592],[330752,158989,592],[330786,159137,592],[330829,159283,592],[330882,159425,592],[330944,159564,592],[331015,159698,592],[331095,159828,592],[331183,159952,592],[331279,160070,592],[331382,160181,592],[331493,160285,592],[331610,160382,592],[331731,160469,592],[328600,163511,592],[330278,165190,592],[337488,172404,592],[337516,172432,592],[341207,168866,592],[341152,168809,592],[341848,168136,592],[341904,168194,592],[378317,75059,1124],[378738,76596,682],[377529,76956,857],[378953,67998,918],[378587,68443,1159],[377742,67890,918],[373456,54525,332],[365076,48582,332],[365016,48381,332],[380668,58689,515],[376187,56381,463],[372503,56010,577],[374585,57769,608],[371945,56696,332],[384526,65287,864],[382738,64682,838],[384706,64101,977],[373775,55133,639],[375964,60288,883],[374095,60410,332],[375135,58915,332],[380442,60171,875],[381590,62000,962],[378229,62590,794],[373009,59762,719],[370804,59271,762],[369207,57009,332],[372690,60488,787],[367241,55868,332],[369100,57162,332],[365988,57669,332],[373463,63139,818],[373677,61374,741],[372314,62577,749],[372515,62210,332],[372561,62211,757],[378031,69930,1171],[379546,68901,917],[379880,71279,1195],[384732,68178,682],[384261,67604,953],[384784,68103,672],[374756,69498,802],[376554,68936,522],[376888,69842,857],[373034,69360,522],[374379,67423,522],[374694,69165,568],[372674,70180,522],[372813,71421,1023],[371411,70507,935],[377902,68940,1200],[370850,68928,522],[371160,68032,522],[371346,68158,522],[370300,69525,717],[369193,70925,552],[370939,70838,821],[371618,71860,1328],[373350,70343,921],[373163,69450,522],[378153,77385,572],[378752,75318,1265],[378838,76596,682],[379439,74847,1207],[379390,74488,1186],[380006,74941,682],[379096,75255,1270],[380722,73916,692],[382727,71047,692],[382497,71375,692],[381895,70985,1141],[382655,70055,924],[383280,68727,940],[383344,69097,1141],[386736,65309,672],[373539,71705,1033],[372569,72449,1123],[370119,70913,889],[380526,72860,1410],[377697,67564,879],[380459,72529,1088],[380042,72602,999],[379665,63651,784],[381947,64688,972],[372863,61819,752],[372229,61924,757],[373381,70669,741],[374031,70620,827],[374716,72589,872],[375039,71535,1003],[376119,72727,859],[377192,74286,1068],[377100,76671,815],[375437,58990,622],[383944,63083,890],[384149,62559,640],[384456,62888,932],[381038,71337,1288],[375225,65972,841],[377272,67293,892],[377489,67592,522],[378927,64188,994],[378422,63976,930],[371615,63504,522],[372030,62939,741],[380141,73278,1134],[377013,68392,571],[378551,73986,922],[379016,71794,944],[379970,74992,682],[374312,72657,990],[372633,73112,804],[373721,54764,549],[376516,58775,629],[377832,59562,857],[376570,59102,782],[377357,67968,832],[374320,69549,954],[375564,75542,941],[373046,70730,589],[381667,62641,854],[382381,61992,839],[384741,61873,652],[377629,72800,1039],[377680,70340,962],[373873,74378,785],[370241,71886,809],[373686,64820,828],[382726,61501,608],[384626,63012,952],[378501,64625,828],[381331,60249,576],[369192,71195,726],[383784,62028,621],[383653,61029,640],[383963,61222,523],[374217,74702,854],[377692,58532,804],[378539,58331,537],[380326,59470,540],[379919,59280,536],[383536,62220,799],[381021,64561,823],[375038,74944,1024],[377379,73518,945],[376217,73384,1024],[376871,58713,787],[369022,71216,552],[429299,81775,985],[301265,70135,422],[300020,70398,422],[301115,69841,422],[300485,71174,422],[301740,70990,422],[300849,71465,422],[301318,70108,422],[299899,70202,502],[301109,69587,502],[301213,69791,422],[368423,74284,532],[367730,73718,552],[367581,72284,492],[369135,81747,562],[374018,77507,572],[368699,83874,532],[367859,81872,552],[365005,78391,512],[368444,81194,562],[371843,77063,562],[362319,78609,522],[364451,79065,512],[363752,78488,512],[367153,74399,552],[364339,77831,512],[367862,74980,542],[368562,82424,552],[371266,77751,552],[371965,78332,562],[372533,77636,572],[206259,124886,592],[206430,125176,602],[206072,124984,592],[203991,124758,1646],[203422,125508,532],[203362,125366,532],[205424,125285,1024],[203563,126816,612],[205961,124910,602],[205853,124832,602],[205748,124750,572],[203339,125375,532],[203289,125360,522],[205503,124574,873],[205549,124572,562],[205647,124663,562],[205339,124120,492],[205312,124246,512],[205282,124282,512],[205033,123903,302],[205140,123842,302],[204655,124504,1522],[205365,124379,542],[205455,124477,542],[204997,125089,1134],[203174,124969,302],[203199,125198,642],[203223,125341,522],[203051,125040,302],[204439,125348,1130],[203472,125654,532],[203545,125954,552],[203568,126107,572],[203581,126261,572],[203584,126415,602],[203392,126503,572],[203513,125803,552],[271430,87656,642],[271448,87794,462],[271373,87623,642],[271245,87911,462],[271358,87914,462],[271313,87594,642],[271242,88061,462],[270314,88038,462],[271191,87545,632],[271128,87525,632],[271064,87509,632],[270999,87496,632],[270983,87493,632],[270966,87490,632],[270950,87488,632],[270933,87486,632],[270917,87484,632],[270901,87482,632],[270884,87481,632],[270807,87477,632],[270317,87888,462],[270730,87478,632],[270653,87484,632],[270576,87494,632],[270500,87509,622],[270426,87529,622],[270352,87553,622],[270281,87582,612],[270211,87615,612],[270126,87752,462],[270215,87885,462],[271253,87568,632],[332686,144539,782],[332436,144378,1084],[332970,144157,782],[331628,145191,965],[332108,145087,1116],[330394,147703,972],[329197,147149,852],[330231,147828,972],[331587,144834,1055],[332066,144765,1120],[332003,143482,802],[332334,143714,901],[355778,62380,722],[355283,62068,515],[355806,61882,452],[353558,73686,512],[354587,73277,577],[353588,73781,512],[350601,70925,487],[351559,68783,522],[352683,71618,462],[354711,68167,629],[354570,67168,504],[357415,66125,526],[360442,69813,618],[362380,70939,482],[357326,72485,462],[357289,72370,462],[362409,71034,482],[363541,70673,482],[363485,70491,482],[361480,68902,482],[356820,65747,538],[359510,69501,491],[361196,66437,619],[359466,65749,548],[359610,64760,452],[353573,69607,517],[354113,69804,462],[356415,64736,802],[355739,65426,699],[355152,64737,520],[356434,62705,741],[356398,62390,811],[356518,62628,452],[355627,61329,566],[355243,61714,616],[348398,65619,530],[347783,65119,342],[350608,67366,342],[335823,79075,586],[334918,79541,482],[334888,79445,482],[342148,67543,739],[344407,69328,342],[332506,80192,472],[332474,80086,472],[336544,69975,523],[329903,71497,584],[321939,79954,650],[325515,83193,522],[320188,78913,572],[325162,74628,575],[322904,72789,422],[325717,75056,392],[329843,80899,472],[329898,81081,472],[328741,81365,502],[322157,74066,835],[322930,72940,908],[322985,73307,1000],[324112,75162,689],[324137,75468,468],[323863,75486,672],[320326,78742,552],[325912,76898,601],[323650,75899,481],[327823,79309,472],[328768,81461,502],[326387,82038,512],[326962,77770,624],[326182,75513,482],[328549,76731,598],[329303,77535,472],[333507,74016,518],[332213,73299,657],[332162,72976,546],[344102,69970,570],[343211,69105,591],[331349,76013,488],[329392,77546,640],[334015,77396,462],[335996,79005,462],[336052,79187,462],[338769,71734,474],[338650,70769,588],[332145,79642,618],[332533,78132,465],[336842,75079,597],[336432,72057,496],[338150,71514,587],[332167,77538,640],[341119,77518,592],[338658,78281,462],[338623,78167,462],[337992,77333,596],[340263,75472,462],[342290,77249,462],[341149,77613,592],[342235,77067,462],[345970,71512,505],[346441,73557,462],[344367,72000,486],[342027,68264,646],[341295,68376,514],[341205,67697,524],[347323,75602,472],[344903,76352,462],[344871,76247,462],[341696,73660,462],[343229,71857,492],[348445,75162,462],[348501,75344,462],[347353,75697,602],[345112,70569,564],[345529,68126,616],[349848,71664,746],[350826,72613,514],[350291,72993,898],[349779,73029,829],[351070,74331,462],[347875,71756,462],[354673,73230,462],[350926,73296,641],[351105,74446,462],[354730,73411,462],[323242,75306,858],[321805,75142,539],[321302,75234,509],[349335,67899,516],[350482,67516,357],[351062,68492,683],[355947,63707,637],[357499,64472,885],[341929,67602,518],[349761,66900,721],[349563,67607,682],[331336,73565,585],[329766,73964,498],[329005,71372,525],[356619,62423,452],[355872,63062,783],[355550,61263,342],[356717,62771,785],[358866,64446,820],[347299,70446,629],[343528,71462,642],[343135,71156,497],[351290,66745,532],[351844,67359,497],[349738,70950,518],[353808,69585,644],[337622,70891,519],[335669,71845,487],[334853,69577,528],[336354,71389,644],[325248,75278,559],[319133,77746,635],[318955,77641,422],[323313,75974,606],[325597,77962,476],[322850,75669,706],[330662,73775,650],[335312,69132,535],[355039,63760,736],[352023,65647,550],[338911,70728,673],[340876,71874,608],[341564,67329,524],[346006,67381,574],[347892,65267,537],[359346,64748,705],[358995,65461,752],[354977,70196,595],[357668,65827,770],[359688,64644,452],[326509,74408,522],[326552,74740,523],[326105,74838,656],[327962,72354,539],[330866,72300,621],[330626,73462,740],[353971,68561,676],[357068,65464,745],[354581,64066,524],[352852,66274,605],[331587,77698,691],[332701,74589,671],[334691,76200,674],[335454,75588,462],[355988,61617,452],[322402,76063,525],[350719,69223,498],[346855,72098,590],[352337,68006,575],[351875,67682,329],[356779,65415,579],[335836,75270,511],[325687,75233,569],[354098,69571,602],[343737,70382,656],[343484,71118,673],[340187,70239,512],[342500,68512,511],[336256,76212,578],[336547,75870,472],[322969,76673,502],[334995,75474,646],[344663,70607,676],[344749,71281,634],[362870,67179,482],[358091,124745,760],[357082,124503,637],[358992,121239,760],[383663,110215,395],[383647,109884,773],[384940,109919,344],[377880,96460,982],[376887,96647,922],[378571,95238,652],[385950,104720,708],[386001,105063,781],[384527,103426,751],[387330,102868,119],[388311,103919,109],[387463,103868,117],[375672,106488,1118],[374824,106542,924],[375618,106134,1023],[388050,101536,892],[389892,100515,1009],[390013,101920,94],[394879,100780,1049],[395332,100813,752],[394810,101263,752],[396849,100122,1029],[397380,99175,752],[397818,99643,752],[395512,99049,1022],[393511,100035,1110],[396519,99923,1036],[397311,99102,752],[396083,98744,1132],[394904,97571,987],[397570,97315,736],[395879,97399,753],[398064,94345,772],[389077,99560,1056],[390141,100179,752],[400383,95053,732],[398481,93870,964],[397900,93012,946],[392065,98383,1054],[391890,98542,752],[391713,98567,974],[379721,103700,818],[380678,103927,467],[380791,104565,860],[393299,95469,758],[397763,92930,782],[394756,96588,740],[390654,99509,1046],[390395,101006,970],[388947,93483,840],[390218,93477,892],[389219,95503,908],[392536,102458,79],[392851,102605,752],[391868,103146,58],[380649,89881,772],[382080,91357,832],[379810,90680,872],[381405,92312,842],[387898,93008,824],[387544,92485,814],[356120,119089,765],[354205,118750,852],[356622,118731,775],[358280,119246,1091],[357733,118614,1169],[358961,117792,1113],[344262,130349,632],[349681,124087,842],[348499,126936,712],[345057,130934,572],[352328,121998,863],[353479,119519,852],[353159,121253,872],[348667,126740,712],[355624,123539,690],[354959,124928,1051],[354349,124634,712],[349785,125125,842],[352016,122762,712],[353960,120558,868],[355559,119465,995],[353700,120762,692],[369243,105289,802],[358012,114963,922],[355295,127644,722],[353009,127073,999],[353270,126360,978],[356100,133705,740],[354421,135197,716],[355610,133073,751],[355202,132736,791],[355590,132702,1160],[355112,132056,795],[355481,132049,850],[357290,136026,843],[357245,135710,808],[358808,135339,612],[356974,133670,794],[359996,132459,644],[361812,131907,740],[358911,135242,612],[360602,130291,945],[360924,129929,710],[361314,130248,837],[364043,128448,411],[369723,115255,932],[367227,118237,975],[365368,113580,1003],[359352,120845,940],[357884,119992,728],[365566,118999,845],[366428,121659,897],[364458,119313,889],[360195,121798,779],[362454,123320,1042],[362203,124721,774],[367103,126721,1003],[365609,108825,923],[368879,109251,802],[367455,111211,984],[375222,118925,874],[369060,110184,1004],[371824,109786,1096],[381766,92620,834],[383247,93693,870],[378980,98010,970],[379235,96257,915],[379778,96870,932],[385180,95850,977],[384908,96627,1106],[384391,96874,970],[381492,92353,652],[367078,107418,802],[372313,121795,930],[374299,102491,1063],[376448,100665,642],[376593,103042,951],[373873,106509,1155],[372668,105762,1399],[374097,106162,1003],[370502,114922,1109],[371301,116360,1112],[372931,108148,678],[372384,107788,464],[378015,97470,1011],[377518,97182,642],[377503,96837,925],[370755,104692,1354],[371045,107122,802],[389000,96368,1218],[387995,97985,1155],[386598,96793,1155],[375109,113912,870],[376460,112555,925],[377542,113161,1041],[381077,103841,782],[382029,103278,815],[373700,100836,887],[375228,99410,642],[376947,97597,936],[372115,105069,1694],[380799,111783,928],[379100,111675,876],[380538,109780,983],[386922,102673,120],[386580,103476,120],[386489,102797,105],[381277,97567,878],[382151,98447,1038],[379628,99251,868],[385789,103359,968],[382497,101123,925],[382665,102471,776],[380000,102296,451],[390518,102402,104],[392104,101965,131],[390835,100857,1081],[391324,101343,990],[386410,101785,876],[356287,131956,900],[352028,136394,572],[355390,132400,572],[388358,106810,112],[387554,104538,169],[376006,105108,1261],[376750,104404,632],[376536,105410,1281],[382717,109743,692],[377923,107351,1266],[378128,106306,1374],[378506,106951,1301],[378628,98740,890],[378859,98320,642],[377971,105285,1070],[377916,104976,886],[378302,105611,910],[383001,98584,876],[373977,119543,1034],[372037,117450,953],[379156,106223,801],[361859,122015,958],[360644,121026,1222],[356251,120096,739],[354901,121506,870],[385668,96048,1152],[390460,93686,892],[385452,102802,1072],[389860,96978,963],[372436,108143,529],[371596,108093,1042],[371660,105077,1352],[383800,90394,918],[385337,93709,872],[395358,91206,925],[395086,91374,806],[393947,89661,852],[387927,104033,507],[386604,106947,295],[387830,106540,323],[388179,106978,312],[386881,105459,668],[383938,109093,709],[384350,109045,364],[388090,102200,209],[383305,109924,880],[377228,105045,737],[376717,104033,865],[376317,104100,650],[390455,101693,528],[387629,101665,707],[387953,100861,790],[372176,120775,889],[370843,117612,915],[372122,108773,999],[367823,125689,810],[367542,126686,1008],[396562,98105,746],[377147,104365,862],[378083,101205,959],[356581,134362,555],[356199,134405,815],[353345,135989,741],[354200,136210,708],[352754,137007,932],[379027,101777,851],[379858,100962,911],[379068,98659,996],[378040,108395,964],[376914,108457,937],[377644,108060,988],[377146,107089,1220],[387426,106383,288],[386992,106509,264],[376145,106122,1324],[372641,105411,1656],[356040,126555,906],[354993,125257,923],[363665,129089,605],[357754,129545,708],[359875,131393,929],[359071,132202,653],[356033,132994,1109],[381672,106114,716],[378479,104214,957],[380253,107760,736],[381706,108535,891],[380007,109181,869],[377172,107415,972],[389152,97690,900],[359224,119824,1035],[357601,117615,1182],[357495,116957,912],[359188,116765,754],[365111,126414,847],[364787,126013,871],[365342,126054,839],[359658,129742,943],[364569,126697,618],[355811,122897,692],[356951,127197,924],[367068,119924,864],[364138,119002,911],[362650,117605,951],[366397,111830,1179],[395228,97054,745],[397257,98160,860],[397473,98888,752],[375784,110854,1071],[375303,112922,1028],[374168,110846,1016],[375760,107166,1093],[375432,108177,1109],[390570,95612,1075],[391309,95551,915],[370785,123341,856],[370153,122317,983],[372279,116468,939],[371810,115741,928],[385142,95493,1109],[384778,88569,842],[385587,89393,733],[389710,99200,905],[390214,100111,752],[395782,101077,1033],[395309,100604,1027],[381696,95072,940],[382841,93761,940],[383433,95010,1045],[386438,92618,835],[385780,93576,1037],[383888,110994,692],[386580,106591,638],[384327,108698,693],[367177,123978,912],[363369,122996,1027],[376718,110513,1216],[377015,109123,1125],[377187,110456,1076],[377748,114838,832],[376810,111159,1307],[378194,112076,1259],[381014,103528,479],[380135,103319,444],[375621,98689,902],[369857,123684,917],[371909,116408,1079],[378615,112743,985],[379030,113372,965],[378818,111697,1084],[378915,110322,791],[395909,101430,752],[355614,138145,771],[355534,137475,878],[356100,136798,710],[354789,137880,876],[354339,137246,738],[353081,130503,852],[350845,128796,712],[351485,128617,893],[351854,128241,785],[359629,115379,726],[363223,118558,1156],[362277,118268,1183],[373688,110177,1034],[373040,108812,975],[384036,102855,810],[380733,96320,953],[379888,96571,652],[382440,97684,881],[383342,97493,1021],[383375,97818,882],[386974,106168,635],[382414,109054,897],[386237,107077,343],[384763,108569,366],[384741,108239,688],[386213,106717,675],[372198,105746,1619],[372142,105411,1444],[362131,117241,1041],[376078,109506,1208],[360171,115352,909],[360206,115677,792],[354999,138904,602],[357838,125493,646],[357196,131970,723],[374680,110521,1115],[362567,131821,612],[397821,92862,782],[376429,112212,1125],[355688,136456,709],[362545,120302,1164],[363914,119242,1145],[363571,124692,731],[375593,105810,1264],[376736,107101,955],[375226,109539,1015],[387972,95518,1181],[387477,100332,1068],[388541,99880,1070],[385118,98324,899],[386056,99110,891],[384345,98958,873],[388835,100069,842],[383916,101836,996],[386232,100433,905],[385271,101457,1029],[386954,99463,1185],[388619,98383,948],[387270,102180,560],[386629,97108,1010],[388332,93893,1152],[363220,125713,618],[382808,93685,652],[387423,93643,1220],[384322,94400,808],[381791,109251,767],[381394,106190,863],[380916,105578,736],[359498,132128,834],[358779,132597,637],[353708,135233,852],[370450,114615,956],[352763,128134,788],[363138,121316,910],[379615,103059,521],[379245,103449,818],[378625,107949,1110],[387605,92849,1005],[362463,126763,625],[365297,125739,787],[360060,126280,795],[361318,128230,627],[365586,125731,960],[359188,126368,631],[360694,130998,924],[361919,125774,838],[377299,100269,935],[370145,114888,1084],[378181,115143,833],[394383,97076,975],[392921,95655,980],[381859,107493,777],[367707,121982,778],[367629,121262,1011],[386499,98947,1128],[353592,120559,856],[368515,123974,937],[387122,100824,1011],[374424,106181,1166],[375884,108163,989],[361856,130522,639],[361455,129181,778],[384135,97262,1082],[386366,97947,1123],[384827,98101,1031],[382883,101060,828],[357793,127518,912],[361104,131288,714],[376207,106784,955],[375701,106811,937],[384265,98281,1010],[369042,123333,833],[381193,107600,868],[374117,110538,878],[360764,131675,663],[354546,124958,925],[384473,97525,916],[398659,70497,848],[398468,69586,642],[401530,71735,642],[401529,74294,672],[404590,73882,642],[402798,75182,672],[415594,87649,660],[414786,89231,922],[414442,89280,654],[407835,95496,722],[404087,98098,732],[410628,91292,642],[386659,73820,692],[388676,70959,682],[390250,72398,692],[405917,99519,732],[405800,99642,732],[407754,97287,652],[409227,102072,822],[408923,102395,732],[387469,76341,692],[382678,79467,682],[384643,76680,692],[407871,97410,652],[409354,102068,822],[409292,102133,822],[410714,100492,852],[410921,100809,852],[409557,102259,822],[410718,100618,852],[410857,93451,817],[411902,91866,817],[412302,92558,642],[410779,100553,852],[411000,100173,652],[407900,97382,652],[408498,95615,675],[408171,95743,497],[410291,94649,652],[411842,91508,634],[413475,90202,647],[418337,86285,652],[416325,88376,652],[419920,84639,652],[416739,84934,662],[410070,78074,768],[410714,78179,632],[413774,80327,632],[416639,82337,652],[407652,76031,642],[404249,74622,806],[397666,70097,681],[393081,68385,682],[392563,65443,652],[395406,67438,652],[390692,68098,672],[378297,85752,768],[377821,86359,572],[378429,86762,743],[381985,84115,682],[414314,90467,642],[413884,90103,464],[411698,90178,642],[379545,87574,722],[410179,93922,653],[419551,78678,686],[420093,79206,873],[418954,79038,652],[393530,60049,915],[394071,60583,963],[393084,60846,912],[426537,83794,1051],[426367,84251,652],[393124,60182,1023],[393003,60152,912],[394884,60963,765],[395276,62210,822],[394680,61968,652],[403515,67078,718],[403855,68420,642],[400796,66269,642],[408803,71414,648],[409261,72038,636],[406914,70571,642],[416091,77025,632],[416343,76666,543],[414453,75790,797],[411256,73394,796],[410736,73137,896],[409732,72332,938],[397736,64117,652],[409973,72722,642],[413033,74874,632],[300675,84679,432],[300666,84691,512],[298390,83428,612],[298345,83067,648],[298591,82844,432],[298442,83049,432],[297867,82526,645],[296317,81184,432],[295019,85972,808],[295979,86971,522],[293444,85121,522],[295837,86073,676],[297830,84435,522],[296144,81421,432],[296477,81975,764],[295606,84358,632],[293456,85105,522],[299707,85805,522],[299803,85875,512],[277832,92320,702],[277375,91971,712],[277572,91719,712],[278027,92077,702],[316987,155026,852],[315700,154190,852],[316604,152974,892],[317981,153915,872],[400004,48830,826],[400391,48400,824],[400586,48742,682],[400469,49026,822],[400366,49185,1012],[400515,48934,682],[400554,48839,682],[400612,48643,682],[400631,48542,672],[400643,48441,672],[400646,48236,672],[400648,48338,672],[400637,48134,672],[400621,48033,672],[400300,47719,818],[400598,47933,672],[400568,47835,672],[400531,47739,682],[400488,47646,682],[400251,47357,809],[400384,47470,682],[400439,47556,672],[400256,47310,682],[400184,47236,682],[399781,47145,809],[400027,47106,682],[400108,47168,682],[399942,47049,682],[399460,48285,829],[399282,46948,813],[399760,46953,682],[399853,46998,682],[399665,46915,682],[399568,46883,692],[399469,46858,692],[398378,47203,836],[398858,46855,692],[399163,46825,692],[399266,46829,692],[399061,46828,692],[398959,46838,692],[400323,47387,682],[399368,46840,682],[251393,147531,823],[250776,148722,632],[250751,148704,758],[260770,135935,1287],[262714,126434,1077],[264380,121924,962],[260026,130547,1046],[258515,130040,1265],[258725,129583,1088],[265414,119058,1035],[265175,115372,662],[267674,117148,662],[263267,115704,870],[264027,114769,989],[263774,114973,1033],[263968,114436,804],[261165,125030,1208],[259905,123471,843],[261308,121749,923],[258128,110370,696],[258922,111265,422],[256694,109681,422],[259224,110909,675],[259708,109971,762],[259745,110303,661],[263733,121617,872],[262889,120999,1051],[263553,120251,935],[252326,116263,444],[252226,117788,439],[250284,117662,422],[253039,114816,477],[252853,115950,682],[250615,112571,422],[248601,115907,527],[248099,116108,422],[252036,118982,573],[251722,119469,738],[251304,119374,477],[259036,126291,1169],[258309,126541,1017],[257869,125333,1117],[247136,119394,496],[248160,120261,756],[246654,121563,598],[247329,123337,872],[248667,115309,422],[258050,133758,1215],[257254,133402,1087],[257967,133071,1356],[250292,132857,671],[249225,128022,971],[251339,131641,934],[243373,129537,833],[249911,127542,851],[250076,126686,816],[243548,130901,699],[243915,131022,716],[241819,133786,743],[242304,134250,744],[241698,137373,542],[240434,139151,542],[244088,129795,699],[245226,128468,585],[244512,129918,665],[256617,141113,849],[255624,142768,811],[255251,142595,956],[245753,141964,924],[246198,142342,572],[243206,140143,562],[248699,144174,779],[249189,144540,602],[246170,142070,829],[246114,141770,629],[246977,141289,809],[249854,143589,602],[250694,142072,1377],[251831,143960,1203],[250531,145447,602],[251072,145832,602],[250859,146749,834],[251342,138021,1072],[251666,140372,1163],[249207,140053,1303],[249067,147507,602],[251722,144918,602],[252303,145122,1103],[252646,145597,1049],[252766,144380,1153],[258146,145761,642],[258403,145383,840],[261957,148485,732],[264826,138747,1113],[262697,138355,1061],[261279,136795,1088],[267584,141055,1154],[265936,140365,1153],[254578,137493,1181],[258848,137392,1042],[258815,139520,1070],[249681,143815,825],[249116,142706,771],[257924,132721,1415],[258272,132957,1326],[249252,137500,977],[251585,137826,891],[254021,116139,944],[253700,116630,787],[253270,118994,756],[253831,117652,687],[256063,119290,732],[251937,130537,914],[252492,131384,692],[243678,129332,611],[243327,129199,842],[243591,128673,626],[249560,142799,1057],[253828,147715,763],[255974,148014,841],[255553,149470,642],[250857,125720,798],[253729,126342,1054],[251048,127047,954],[261050,128707,1094],[259660,127833,1059],[261995,126778,1038],[251799,141398,1087],[260311,135740,1162],[258452,134320,1275],[247144,122010,782],[248957,120479,830],[253025,117285,566],[252847,118142,714],[244415,119476,754],[245390,121763,600],[250515,125599,839],[262078,121717,1078],[257232,116004,895],[256438,114924,731],[259044,111404,766],[246412,129178,887],[246272,128140,887],[262513,115082,958],[262812,112352,838],[262928,108923,618],[261959,111076,778],[260005,109468,615],[260988,140820,1048],[261164,142228,867],[260566,140602,1111],[259865,140203,977],[259560,142813,770],[250597,126252,748],[261668,128779,1175],[262811,127076,1210],[247653,123088,738],[249581,122973,886],[257350,134045,1218],[254289,132936,714],[253323,134207,666],[253861,132439,683],[244041,139015,542],[244649,139001,765],[250641,141749,1248],[251473,141220,1374],[245639,141320,563],[245975,140753,604],[246489,141219,613],[252702,136328,661],[252954,137971,1097],[249458,142102,945],[247770,141522,777],[245367,139265,652],[248494,140496,1245],[247651,140508,1010],[247979,138730,998],[247822,137731,691],[242536,135925,818],[249249,134916,679],[259427,107939,677],[258342,108896,561],[263433,112643,658],[263271,113493,898],[265721,141930,1164],[262594,140213,986],[257533,145002,817],[253899,145119,793],[248559,120087,422],[250657,121102,845],[249667,119519,469],[253339,116835,858],[252642,116770,442],[249818,120551,625],[254154,117152,876],[253419,117490,732],[257326,123802,863],[263454,146531,742],[265903,143296,1130],[263289,142760,1033],[260919,125171,1032],[258792,124632,895],[244924,138440,787],[249345,141069,1317],[250558,141025,1454],[246686,142527,881],[254395,115678,891],[254917,116229,847],[256059,116797,856],[256813,117600,938],[251183,132906,675],[250853,132418,854],[251723,128875,1072],[253951,130219,1093],[255681,131112,1133],[259391,131808,1254],[253461,114973,569],[255514,116056,422],[250057,119984,441],[248008,141001,872],[247348,141047,962],[247299,140720,894],[246937,140945,909],[246843,140259,890],[244484,126333,757],[247357,126581,939],[246118,127164,580],[246870,126145,673],[260792,129889,1125],[244298,125010,639],[246494,126035,630],[246312,126591,606],[263290,111606,624],[266640,111289,641],[265015,113080,649],[267384,112198,827],[245542,127908,570],[245453,127231,620],[245179,125192,624],[245146,124869,774],[247157,142652,751],[257811,129598,1209],[251364,129404,911],[252027,146963,632],[253206,147793,875],[252472,146484,893],[260846,103843,412],[257474,108830,673],[246371,140158,957],[256181,115372,737],[265861,119140,1020],[259990,121003,792],[246807,139931,1003],[247209,140070,880],[251773,146985,753],[252256,144776,1101],[252085,139301,1214],[245452,118302,665],[257184,109696,666],[245366,129452,673],[244232,121051,721],[243705,120623,661],[246660,138904,890],[252971,146099,788],[257713,146368,760],[245102,127437,812],[260891,136958,1044],[257539,135425,1279],[255899,135706,1019],[260708,144476,737],[260007,143739,756],[264869,139070,1114],[260895,140172,978],[262381,138512,1206],[249455,120095,689],[262771,126754,1263],[247065,139044,805],[247271,140379,1158],[259295,131130,1209],[258365,126891,1146],[263091,143971,862],[259354,131453,1402],[259671,131016,1128],[269204,109701,662],[251715,132135,671],[253739,131425,895],[252832,130483,839],[252434,134277,791],[266148,107606,683],[268597,109581,798],[266584,108723,633],[267646,111652,684],[245140,127814,623],[257945,142031,767],[258831,127776,1046],[255052,136131,1093],[255048,132113,856],[254670,131582,847],[250895,147102,688],[260238,118324,873],[261620,121233,989],[261653,121578,805],[259862,119957,969],[261439,119874,1026],[263793,107282,604],[261174,105353,595],[265196,108267,780],[258934,135580,1147],[254539,132437,886],[261847,144087,960],[260318,143597,899],[245820,129917,665],[247272,122986,741],[252380,118772,733],[258574,108030,544],[265570,108044,627],[258896,119271,848],[253424,138102,1035],[270039,124633,942],[269817,125001,1052],[268746,124547,1046],[268312,123589,912],[268090,123957,1022],[389728,74285,702],[389671,74245,702],[390071,73647,702],[390603,74003,732],[389896,75081,722],[389416,74774,702],[313059,159741,942],[313958,160511,902],[313000,159823,942],[302733,149624,1180],[301480,151393,872],[301220,151186,1181],[301840,147807,1106],[298873,145451,882],[303344,148791,872],[298796,145557,882],[297335,147417,882],[298723,145503,882],[296143,143670,1035],[295706,146236,882],[292843,144470,952],[294409,142215,952],[297265,149061,916],[295541,148384,919],[289615,143603,1291],[289536,143700,1022],[290251,142670,952],[291240,146148,1033],[292015,146536,963],[290102,145539,1083],[290394,145896,872],[288786,144779,1022],[291350,146835,1259],[291247,146489,872],[291660,146678,1146],[290441,145769,1043],[292285,149829,932],[293174,148666,1131],[294278,149067,756],[291075,147638,1296],[291397,147971,872],[290602,147418,872],[289799,150389,1067],[290368,152572,932],[288907,151557,872],[294804,148870,725],[294186,148414,697],[309000,156786,862],[308988,156802,942],[306517,155006,862],[291736,171269,1041],[294013,172428,1081],[292923,173676,1086],[284457,159929,966],[285895,158972,932],[285401,160228,1164],[280271,156152,972],[279627,154543,852],[282802,156786,872],[282303,157603,1008],[280691,157370,781],[276686,154450,1103],[276392,152258,902],[277865,154433,1034],[271759,151018,1062],[271853,151705,1067],[270595,151374,916],[287845,162406,934],[289172,161287,932],[289086,162898,1178],[273367,151222,1251],[273445,151973,943],[274968,153261,1009],[275804,154139,923],[273549,155237,892],[274856,155789,902],[274678,156031,902],[279372,156110,892],[280528,159843,862],[286177,166094,988],[284613,168202,950],[284732,166333,1079],[287250,161170,913],[292501,161034,1256],[291972,161362,1022],[292272,159340,1244],[277456,159206,892],[279661,161448,1022],[278386,161498,998],[270440,159555,962],[270638,159611,712],[270451,159599,712],[268012,153435,761],[269708,154119,969],[267499,155201,998],[262898,157965,973],[263965,158748,672],[262287,157536,672],[265123,153662,862],[262753,156922,903],[262204,157476,672],[265392,156580,874],[265296,153691,997],[266600,155221,1080],[266311,155371,672],[266640,155545,1038],[267792,156450,682],[272904,159555,992],[272689,159744,712],[272567,159763,961],[270337,155576,975],[269509,157643,828],[269145,157163,812],[271328,156844,864],[269351,157584,682],[269692,158976,878],[269239,157849,834],[270365,159537,712],[270580,159692,712],[276535,160850,732],[274992,159626,732],[275319,159292,1002],[272044,160688,712],[274891,159561,980],[273182,159685,976],[274618,157485,1077],[273879,160253,1029],[273929,160618,1040],[272950,159894,997],[279235,161707,883],[275055,162889,732],[275392,163330,879],[273287,165325,732],[276699,164113,732],[274887,166422,732],[276718,160960,864],[277045,163359,911],[277459,162243,825],[279052,163314,891],[277735,162319,955],[278103,165086,883],[277451,164173,876],[285145,165050,949],[283895,163834,922],[281611,166054,1084],[281247,165235,996],[282084,165389,923],[280410,165385,732],[281185,165834,732],[281125,165914,732],[280969,165083,1030],[282042,166469,732],[283719,167628,732],[285676,162304,1099],[285474,163469,940],[284683,162764,922],[284240,168367,923],[284645,169673,722],[283584,168997,722],[284627,169698,722],[291133,158482,932],[286685,169864,978],[286221,170789,742],[295174,160804,1101],[295528,160723,973],[294480,161783,937],[288545,170784,937],[290393,170670,993],[288592,171137,935],[288301,172624,780],[288486,173984,792],[287241,174040,898],[289279,173044,991],[287797,175244,928],[287795,175352,752],[295007,171637,1227],[295170,170939,902],[295659,171292,902],[289759,172580,752],[290421,172883,1109],[291631,173824,1065],[289810,166180,1263],[288934,165857,1353],[289657,165191,998],[293419,173784,752],[293142,174176,752],[301641,176246,772],[301616,175592,902],[303388,176920,1062],[294849,175425,752],[295145,175007,752],[296375,176466,762],[294951,176800,884],[292613,178581,752],[295136,178188,884],[294120,179648,762],[293813,173210,1183],[293735,174008,752],[299939,178118,954],[299768,178870,772],[299743,178853,772],[299618,175678,1016],[297593,176228,912],[298044,174982,997],[297450,175191,855],[294997,174216,997],[305432,172718,935],[303966,172337,912],[305016,171774,1072],[314099,166440,944],[312645,168154,1141],[313325,166953,981],[313434,155911,872],[315918,157799,852],[313382,155983,852],[304173,154844,1072],[301498,155806,942],[302272,153742,954],[302196,153064,1134],[303228,153356,1190],[299955,147650,1100],[306015,150582,882],[305957,150663,872],[308391,152407,862],[310874,154186,862],[315967,157731,872],[318508,159557,882],[318415,159588,852],[314805,165058,972],[316538,162192,852],[316456,162306,902],[314585,164902,902],[306492,155000,942],[304084,153261,872],[298413,160696,1052],[298500,160292,912],[299236,160814,912],[297606,163114,912],[297055,162724,912],[294135,155805,1217],[293764,156264,1251],[293257,155731,1129],[298734,159952,1163],[299111,159430,942],[298942,159308,942],[299036,159377,942],[296639,153373,970],[295591,154645,947],[295740,152829,1304],[297279,155315,990],[296919,155395,1100],[295536,151505,938],[295638,152167,1118],[295561,152147,932],[297010,162788,912],[314038,160399,852],[311507,158584,852],[304385,157918,942],[309372,171676,1036],[310352,170286,929],[310442,170982,908],[311390,166042,961],[314390,165294,1045],[311127,162417,942],[310952,162660,942],[308672,169088,898],[308007,168944,1015],[310034,167880,948],[305577,173746,1066],[307081,173902,1215],[306040,174674,982],[303969,174614,1052],[304613,174105,936],[304702,174770,938],[294903,173569,903],[293799,165276,994],[293405,165027,1308],[293985,164116,1043],[295177,170144,1003],[295225,170456,1087],[294863,170579,1208],[292352,164053,1296],[292676,164591,1422],[291725,164732,1111],[294027,161541,1008],[293714,162037,1125],[289241,168297,1071],[287570,167078,991],[288493,167205,974],[294600,171080,1298],[294102,155426,1449],[294374,154626,1458],[294640,153854,1364],[293101,165506,1288],[287526,170311,925],[288867,169923,1103],[287059,169751,953],[292236,165629,1060],[291348,165229,1045],[292205,165241,1331],[291394,147157,1279],[291482,147810,1274],[294106,147676,937],[292267,148230,1294],[293830,148144,713],[296178,156273,998],[295582,156407,1215],[295252,156174,1116],[293631,155232,1313],[278225,157161,946],[277710,156342,1268],[278588,156920,865],[277557,155339,1035],[276779,155128,1135],[277466,154656,1039],[293074,167704,1164],[292615,168329,1288],[291626,167301,1049],[288613,165616,1343],[301267,151532,1192],[292552,174201,1037],[288447,171017,742],[294771,160599,1138],[267958,150510,913],[267699,150806,772],[269953,147709,852],[273239,150030,902],[287681,164211,1210],[292812,163467,1082],[293158,163387,946],[293211,163679,1124],[281663,164568,809],[294945,159116,1065],[295030,159796,965],[293072,159774,1111],[293348,156416,1112],[293675,161681,1240],[293223,160777,1335],[293996,161186,1247],[292658,159580,1065],[294660,157085,884],[294796,164181,897],[294771,165948,912],[292219,163000,1381],[262841,157620,829],[264108,157897,817],[264153,158211,866],[263775,158354,992],[274059,160802,732],[274359,160424,732],[298357,149814,1134],[298482,148411,1072],[297419,156343,1031],[298406,157569,1032],[297240,157768,1170],[297962,160453,964],[297918,160096,1008],[293023,162312,1057],[292631,162119,1056],[292932,161619,1081],[292062,162029,1024],[290579,162635,1068],[304248,176688,1092],[310686,166545,1097],[308584,165940,942],[308744,165718,942],[300405,151085,1027],[273082,156027,912],[272390,158401,1060],[292434,169840,1425],[292764,174709,752],[289828,143492,1092],[289960,144514,1030],[291021,144469,1113],[307600,174461,1204],[307307,175667,1100],[303258,177423,772],[278937,164294,732],[309842,169716,933],[308771,169762,1030],[315294,165406,962],[311539,167046,1178],[294964,149856,1093],[294679,147821,923],[299434,158012,982],[298509,158224,1245],[300728,153472,1084],[299539,153767,1106],[296969,152897,1157],[296149,152771,1217],[296883,152238,1179],[294991,156597,1165],[297241,176306,1037],[274548,160120,994],[293544,168976,993],[297419,167823,912],[290616,169503,1009],[290948,168650,1221],[270796,159018,909],[312954,167372,1211],[303870,177198,927],[304579,176621,942],[303964,177857,1009],[307358,172779,938],[289792,172432,1010],[286184,174211,742],[298641,159270,1138],[286858,169891,742],[273874,152048,916],[274443,152864,878],[284384,161397,1072],[299241,158742,1201],[299745,157975,972],[279190,158070,816],[278100,156081,1220],[293402,155236,932],[306581,173064,964],[307184,171391,1079],[276117,158208,942],[293874,148483,699],[296926,176796,996],[279651,164784,892],[285283,164214,1069],[284266,168007,722],[292735,162778,1264],[296146,158721,1091],[296189,159102,977],[296074,160154,1101],[297141,160335,977],[295378,157228,914],[295663,157086,1089],[295483,160384,970],[290202,166390,1062],[289906,166861,1319],[289161,167573,1305],[292615,166161,1039],[293846,165625,993],[290764,167257,1258],[290672,169829,1163],[291950,166445,1037],[292938,168575,1036],[293112,168081,999],[292666,156692,1216],[278311,157828,890],[277835,157368,1089],[293748,162384,958],[296359,157652,961],[290249,163531,1056],[292568,165807,1045],[299966,154353,1099],[300763,153808,965],[298983,154604,999],[296586,159349,973],[289730,169920,1016],[308087,169668,806],[305200,178903,902],[268788,158399,682],[293355,161811,1249],[286041,165038,1073],[286696,164119,950],[306304,169098,912],[277458,157621,1040],[308278,171036,921],[291592,166946,1224],[269881,152202,968],[268238,150349,936],[297736,155556,1158],[290812,164374,1072],[291227,164167,1337],[289653,162270,1118],[287725,175302,752],[287332,174706,914],[277954,155089,1057],[277917,154730,1217],[275724,156076,1100],[297716,174770,884],[297275,152171,1031],[295861,150776,932],[296326,150966,1080],[297279,176673,897],[299110,178281,911],[297409,153205,982],[297909,151018,970],[298532,151162,1095],[298325,154065,1119],[278215,165241,732],[279839,159359,862],[278359,158184,889],[297557,160180,1093],[269011,158371,843],[266763,151520,742],[266647,152337,945],[271583,155601,815],[267568,152626,869],[279288,158704,986],[297170,144217,882],[297863,148542,894],[293569,163593,930],[298040,154826,1016],[294070,179426,876],[294395,164293,1024],[294342,163963,909],[267580,150967,772],[298706,147633,863],[347383,147813,853],[347782,147102,941],[348296,147724,897],[343134,146181,857],[345265,147813,889],[342906,146074,622],[346136,145226,1042],[345191,145392,1089],[346200,145149,1022],[346384,146545,1083],[346366,145419,1042],[346430,145342,1042],[344443,143812,897],[344098,143264,1022],[343089,145833,864],[343784,143158,1022],[342738,143106,1043],[343848,143081,982],[343281,143714,903],[344034,143341,1042],[341734,141262,882],[341416,141128,862],[340212,140287,800],[341480,141051,832],[341671,141339,882],[340477,142309,752],[341385,144530,892],[340962,143590,962],[338667,143866,739],[339590,143054,622],[338204,144300,622],[337018,143282,622],[339424,142967,773],[346177,148012,973],[346121,147667,836],[347439,148143,1018],[346432,149661,622],[347914,148123,894],[342095,145005,967],[340864,142889,901],[348542,147614,622],[340086,139894,622],[339591,140838,784],[344710,145842,854],[345866,145608,1101],[345172,147165,796],[340617,143358,757],[340579,143010,860],[217223,123174,611],[216050,123077,582],[216396,123609,572],[217727,122637,628],[219410,121493,700],[218170,122513,622],[220572,120844,669],[219876,120535,562],[221972,119836,679],[221705,119320,602],[296155,135648,975],[296803,135833,978],[293358,137759,1012],[296667,134835,944],[297800,131706,832],[305571,137698,822],[301594,138337,992],[296437,135596,745],[301360,143916,882],[441922,69187,1192],[439056,73379,1122],[439159,68910,1297],[434976,74885,1114],[435893,77290,1077],[438077,74795,1092],[434399,75878,1115],[439884,68052,1223],[435942,77607,1191],[436003,77746,1062],[440341,68249,1181],[434490,76553,1140],[265914,91095,452],[265675,90738,452],[266006,91033,452],[266754,90749,452],[266106,91183,452],[265702,90599,522],[266653,90599,452],[266828,90482,452],[267576,90197,452],[266928,90632,452],[267476,90048,452],[267770,89212,522],[267530,90011,462],[267658,89925,462],[268306,89491,462],[267770,90091,462],[268418,89657,462],[268158,89072,462],[268398,89429,462],[268019,89045,522],[441873,68896,1192],[442840,67546,1692],[439155,65468,1787],[441616,64306,1783],[436319,64024,1678],[434656,63573,1940],[435526,61466,1909],[433269,56803,1984],[431569,57264,1690],[432228,56264,1890],[430417,60266,1808],[430709,60119,1673],[431053,50004,1924],[428630,52973,1857],[428535,52316,1751],[423388,50635,1894],[422432,51415,742],[424720,49416,742],[425939,51388,1684],[426131,51031,742],[426749,51134,1791],[421861,50501,742],[421732,50614,742],[421365,49971,742],[421297,51434,1750],[421033,51529,1753],[421941,51275,1752],[422320,51537,1722],[420736,52000,1782],[419348,52842,812],[419208,52341,742],[419018,52598,792],[420903,53316,1683],[421590,53769,1507],[421631,54103,1468],[424031,55678,1535],[424978,56140,1510],[424790,56868,992],[428047,58090,1688],[437401,63958,1720],[438634,64592,1887],[437355,65433,1755],[432381,54761,1802],[438760,62452,1801],[440651,60872,1961],[441046,61439,2146],[444267,59967,2190],[442484,59462,2007],[444078,58600,2039],[433760,62709,1933],[434126,61717,1849],[442732,64633,1870],[443519,63700,2218],[444667,64973,1292],[433141,45698,742],[430820,48006,2338],[427142,50939,742],[434768,55713,1873],[434441,56247,1906],[434382,55903,1716],[435908,64458,1755],[436947,65226,1799],[424907,49985,2159],[424644,50391,2162],[424973,50611,1924],[425578,51144,1937],[425401,51860,1649],[430105,60086,1734],[430332,59594,1867],[438335,52479,1996],[436890,51148,2132],[434729,48097,2218],[432961,61978,1657],[432920,61665,1666],[432542,61455,1675],[432366,60107,1706],[431776,47528,2052],[433216,46817,2106],[441109,55336,2093],[443116,56845,1832],[442584,56637,2031],[427788,52881,1654],[428277,50286,1876],[423546,51989,1585],[422625,51447,1706],[423466,51298,1759],[432588,61797,1701],[444751,61206,2221],[443886,62889,2224],[443221,61362,2320],[443109,67208,1692],[427161,51333,1762],[433798,63023,1873],[425488,50465,1930],[425910,51043,1927],[421868,53382,1655],[432749,46284,2151],[431992,47043,2058],[433610,46668,2290],[438059,62698,1879],[442246,64092,1987],[445179,62071,1432],[444693,59148,1662],[422967,51032,1711],[425406,56428,1638],[428557,55460,1654],[423411,55848,962],[423988,55335,1571],[443976,63567,2237],[429052,59187,1704],[429540,57863,1664],[431056,56764,1695],[430772,57932,1630],[439393,60575,1984],[436414,61192,1741],[422329,54337,1514],[422236,53626,1518],[427948,50751,1819],[432100,58076,1700],[428460,57949,1699],[442984,63169,2218],[438568,57671,1806],[438833,59705,1808],[434071,61376,1710],[441910,58239,2077],[440765,55459,2083],[437216,56276,1840],[434309,55218,1942],[440631,58386,1909],[435004,60623,1743],[433382,57793,1745],[429595,58210,1792],[435993,54996,1836],[434501,49912,2169],[439988,55803,1949],[439217,59221,1997],[439422,57734,1991],[430910,58952,1680],[435650,52320,1938],[435573,49828,2024],[442274,64411,1784],[436936,51495,2146],[437761,54734,1948],[437452,55503,2011],[437326,54508,2072],[438409,56338,2032],[442309,61269,2113],[429776,59564,1816],[262755,92937,432],[262643,92771,432],[262671,92632,502],[263442,92476,452],[263358,92292,452],[263469,92458,452],[263219,92264,502],[291499,69222,442],[291719,69139,442],[292057,70296,432],[292300,70158,412],[398136,113578,112],[395202,116431,312],[395979,114144,312],[396090,114036,112],[397969,113406,112],[397816,113248,112],[397669,113097,112],[397371,112791,112],[395753,114364,312],[394882,116102,312],[394735,115951,312],[394437,115644,312],[395035,116259,312],[402128,109631,752],[401352,110382,112],[401940,109437,752],[401164,110188,112],[401074,109690,752],[401648,109135,752],[400872,109886,112],[320256,152713,852],[317815,151178,892],[319575,149449,842],[321457,150841,832],[397229,78997,812],[398387,79795,792],[396423,80166,822],[390320,75248,732],[394476,78252,812],[394212,78616,812],[396077,80668,822],[393831,79143,832],[390431,72923,692],[390750,73165,712],[390341,72877,692],[390196,72644,692],[390322,72863,692],[390304,72848,692],[390288,72831,692],[390272,72814,692],[388214,76066,702],[388165,76056,702],[387532,76265,692],[387499,76302,692],[390238,72418,692],[390233,72755,692],[390223,72734,692],[390214,72712,692],[390206,72690,692],[390200,72668,692],[390193,72621,692],[390192,72598,692],[390192,72574,692],[390194,72551,692],[387687,76142,692],[390198,72528,692],[387645,76168,692],[390203,72505,692],[390209,72482,692],[387605,76198,692],[390217,72460,692],[390227,72439,692],[387568,76230,692],[390245,72776,692],[390258,72795,692],[387731,76118,692],[387823,76081,692],[387776,76098,692],[387870,76067,692],[387919,76056,692],[387968,76049,692],[388017,76046,692],[388067,76046,692],[388116,76049,702],[388250,76076,702],[388285,76088,702],[388320,76102,702],[393404,79735,832],[388354,76118,712],[388387,76136,712],[388419,76155,712],[388450,76176,712],[388567,76260,732],[388892,76494,742],[397637,81136,822],[398903,80151,802],[397991,81381,822],[396439,82704,802],[395242,81878,832],[396140,89738,838],[397078,88587,832],[395990,90181,1682],[397392,81490,822],[395128,89546,781],[394360,86732,872],[392777,87989,892],[396951,83057,822],[398983,82636,822],[398132,83871,832],[410986,90197,642],[410567,90687,642],[410453,90608,642],[410590,90706,642],[410631,90748,642],[410611,90726,642],[411053,90243,642],[411578,90262,642],[411610,90244,642],[410678,91219,642],[411152,90290,642],[410693,90848,642],[410680,90822,642],[411187,90301,642],[410704,90876,642],[411222,90310,642],[410713,90904,642],[410725,90962,642],[410720,90933,642],[411295,90320,642],[411670,90202,642],[410729,91021,642],[411405,90317,642],[410728,91050,642],[411441,90311,642],[410725,91080,642],[411476,90302,642],[410719,91109,642],[411511,90291,642],[410712,91137,642],[411545,90278,642],[410703,91165,642],[410691,91193,642],[410663,91245,642],[410646,91269,642],[411641,90224,642],[410728,90991,642],[411368,90320,642],[411332,90322,642],[411259,90317,642],[410665,90796,642],[411118,90277,642],[410649,90772,642],[411085,90261,642],[410321,89736,712],[410121,90376,672],[409788,90145,692],[410204,90434,662],[410654,89966,682],[399335,82126,822],[397746,81735,822],[401697,75998,762],[400119,80990,812],[401390,75296,742],[402144,75334,682],[401920,75666,742],[401638,74415,672],[401619,74388,672],[402676,75128,672],[401686,74824,682],[402262,75206,672],[402236,75227,672],[401703,74761,682],[402318,75170,672],[402289,75187,672],[401695,74793,682],[402411,75131,672],[401710,74630,672],[402443,75122,672],[401710,74696,672],[402379,75142,672],[402348,75155,672],[401691,74534,672],[402543,75111,682],[402510,75112,682],[401554,74315,672],[401669,74473,672],[402610,75115,682],[402577,75112,682],[401681,74503,672],[401654,74443,672],[402643,75121,672],[402707,75139,672],[401577,74338,672],[402769,75165,672],[402739,75151,672],[401599,74362,672],[402476,75116,672],[401700,74566,672],[401706,74598,672],[401711,74663,672],[401708,74728,672],[402211,75250,682],[401674,74855,682],[402188,75274,682],[401661,74884,682],[402167,75300,682],[401645,74913,682],[401612,74963,702],[401168,75629,762],[391077,73396,752],[391444,73655,772],[395773,89881,820],[450321,40934,2114],[451872,42489,2062],[450753,43151,2102],[447691,38046,2166],[447994,38083,2930],[448195,38286,2162],[445139,40116,2315],[446842,41731,2102],[444035,39590,2283],[445903,40337,2226],[446622,37734,2300],[446945,36786,2648],[446738,36906,2173],[446751,36643,2825],[446683,36366,2183],[444168,36206,2236],[444245,35528,2262],[447317,36439,2182],[447287,36640,2575],[446965,36399,2565],[438771,35841,2412],[441524,37755,2313],[436935,35096,2151],[442391,32077,2132],[443894,35234,2272],[443576,35608,2282],[439752,33758,2326],[439769,33335,2307],[429878,29604,2090],[429000,29787,2002],[429614,29631,9978],[439653,30911,2112],[437372,31989,2277],[429052,29294,2067],[427719,28928,1962],[429369,29195,2033],[429664,29368,2071],[429420,29566,2081],[428829,28820,2012],[427490,28775,1962],[439652,33651,4025],[439600,33645,2320],[450008,40639,2134],[450264,40760,2721],[447860,42464,2102],[447117,41570,2215],[449736,44128,2072],[450585,45051,2032],[452077,45389,2032],[452085,47060,1932],[451369,46030,1962],[452730,48136,1872],[454642,47484,1942],[453300,49253,1812],[453793,50407,1802],[455327,49354,1882],[454647,51252,1922],[455558,50344,1852],[454788,54030,1722],[454538,52801,1742],[454826,52636,1923],[455305,55766,7851],[455075,55969,10202],[455203,55645,1763],[455312,60423,11508],[455046,60433,1680],[455391,60169,13085],[452566,66330,1422],[453174,65186,1362],[453179,65841,1442],[451630,68395,1352],[451118,68475,1302],[451880,67428,1372],[445882,75456,1233],[447384,73248,1082],[446962,74064,1268],[437098,86286,952],[437567,85797,902],[437877,85923,1060],[436424,86990,972],[436055,88299,1042],[435604,87845,982],[437463,87999,1052],[436434,88488,1052],[436861,88468,1062],[439461,85157,1072],[437191,88327,1052],[438551,86416,1052],[448381,72323,1321],[451048,69232,1322],[439678,83526,1100],[445098,77204,1182],[441046,82895,1092],[446690,74950,1202],[448163,73031,1222],[452354,67143,1419],[452071,67399,10105],[452310,66825,1380],[451950,67580,1452],[452288,67316,1412],[453938,64281,10467],[453701,64003,1402],[454150,64072,1502],[452457,66954,9749],[454143,62785,1452],[454571,63165,1512],[453617,64776,1541],[454508,62572,1772],[454444,62223,1496],[454936,62237,1522],[455299,59083,1750],[454940,59031,1562],[455503,57991,1714],[454183,62719,8436],[454532,62876,1549],[455030,57780,1602],[455087,60773,1619],[455523,60312,1592],[455336,56639,1840],[455034,56525,1692],[455516,56278,1756],[455413,60036,1618],[455540,54566,1809],[455854,53333,1802],[455550,57759,7679],[455688,57628,1728],[454206,51591,1772],[455825,54564,1751],[455872,56821,1722],[455691,51343,1832],[455025,48400,1912],[453183,44735,2012],[448826,43264,2072],[450385,39975,2112],[444076,33139,2162],[445602,34222,2172],[444202,35343,2276],[444196,35383,4128],[448017,37637,2845],[447743,37713,3056],[447778,37584,2550],[437256,34764,2333],[445939,40474,4747],[445860,40363,2271],[455271,57743,15812],[455278,57049,11095],[455379,56995,1791],[455387,55265,1786],[454953,55273,1752],[455490,56645,14791],[455112,57689,1649],[454766,60273,1562],[455795,58339,1682],[455555,56591,1738],[455475,55947,1787],[455245,55964,1788],[452627,66362,1423],[431955,29081,2082],[429830,28873,2052],[429684,28946,2042],[433804,29385,2092],[436098,34352,2246],[454400,61909,1461],[454498,61540,1492],[454792,61824,1683],[455775,54967,11035],[455665,55576,1759],[429364,29563,2092],[429101,29684,2005],[429170,29347,9733],[429803,28876,7555],[429073,28854,2024],[455775,55262,10483],[447527,37633,2868],[447185,37488,2167],[447558,37384,2530],[448286,37586,2594],[448140,37674,2514],[448045,37396,2517],[443848,36484,2269],[443944,35917,2272],[444159,36196,2433],[446939,37528,2261],[446080,40620,2279],[435632,29812,2102],[440903,36769,2187],[441110,31507,2122],[448601,37862,2119],[448571,37130,2142],[449151,37935,2142],[447239,37338,2921],[448177,37999,2444],[448517,38021,2274],[450277,40600,2104],[446998,36177,2164],[447249,35643,2162],[447827,36870,2180],[447940,36363,2152],[447035,36178,2452],[448321,37346,2175],[448071,37298,2236],[447268,37107,2575],[447200,37230,2851],[447574,36918,2565],[447800,37120,2494],[447607,36663,2171],[447544,36744,2477],[441542,37295,2312],[442414,38147,2305],[442046,38171,2177],[444156,39373,2285],[438323,30484,2112],[397382,125632,1949],[397862,125775,1062],[397429,125990,1930],[400161,122409,1942],[399835,122365,942],[400428,122021,978],[403191,119506,1863],[402674,119631,942],[403776,118959,1007],[431607,94664,1057],[431495,94360,992],[432178,95139,1082],[411789,112514,2063],[412194,112141,1045],[411116,113370,1082],[409106,114009,1222],[409047,113680,1003],[409526,113815,2087],[408760,114780,1083],[408258,114574,1007],[408779,114384,2089],[405789,117150,2026],[405535,116920,1982],[405682,116899,995],[413859,109362,1017],[413336,109831,1018],[414248,108927,1862],[415377,108037,1040],[417195,106309,962],[417387,106258,1041],[418456,105635,1416],[419199,104752,1007],[419313,105054,2056],[418900,105201,2095],[424273,101541,7542],[424190,101245,2088],[424990,100924,9726],[427318,99129,12875],[427284,99208,1050],[426902,99227,13255],[395143,127370,978],[395553,127169,7188],[395604,127418,1934],[420545,103618,1008],[420419,104036,2064],[420163,103716,952],[429063,96984,7695],[428511,97112,13983],[429107,96460,962],[404483,117995,988],[421945,102736,2055],[422302,102612,1321],[422394,102919,2060],[417587,107241,2008],[419072,106067,1092],[417046,107853,1102],[416580,107107,2093],[416781,106746,1038],[416828,107079,1080],[412541,110976,2099],[412964,111238,2064],[412627,111648,2054],[409758,114110,1049],[409712,113755,1057],[410040,114018,1363],[406099,116718,2035],[406631,116487,2023],[406436,116950,2071],[405095,118467,2009],[404595,118285,2026],[405005,117789,2003],[402470,120208,1997],[401226,121359,986],[375184,147659,1913],[374052,147629,1755],[374797,147336,1459],[369491,152176,1145],[369119,152529,933],[368838,152527,906],[368369,153151,950],[368612,153514,942],[368245,153109,902],[395895,127305,1030],[394932,128567,990],[394196,129441,1032],[395903,126888,1923],[425616,100327,10953],[425746,99978,1390],[426051,100185,11623],[429880,96537,1049],[429881,96133,15308],[430333,96398,2061],[429545,96539,9747],[431031,94880,1050],[424631,100711,1117],[425271,100454,14636],[428308,97229,1020],[429698,97183,10723],[430177,96788,11728],[430225,96103,1065],[430234,95761,1840],[430299,96074,14815],[426324,99434,10684],[426945,99335,1043],[429443,96907,7605],[429420,96653,1140],[425317,100098,1324],[426342,98713,12310],[422938,101427,962],[427529,97749,12469],[427801,98371,1461],[427478,98432,1324],[427633,98041,13403],[427568,98743,2017],[427254,98514,1946],[428482,97802,12281],[428751,97758,11269],[428399,97873,1092],[426577,99754,1068],[427147,98188,1030],[427239,98495,12950],[426916,98641,1941],[427752,98710,13827],[425287,100874,1952],[425485,100691,13330],[426096,99150,7961],[425254,99786,1024],[427272,98807,12846],[427819,98711,1070],[431272,94763,1059],[431302,94827,9116],[430612,95673,2041],[430486,96057,10668],[428078,97595,1962],[428421,97458,12049],[426728,98948,11282],[429343,97250,15751],[428152,97891,12000],[427128,98194,11939],[426585,98649,9795],[424920,100227,1236],[425202,99788,10990],[430601,96045,1178],[396937,125921,1046],[397169,126082,9224],[396983,126252,1075],[398127,125311,1028],[398170,125284,8048],[425003,100931,1078],[423192,102578,1092],[423572,102175,7109],[423868,101365,2066],[423598,101433,8899],[423759,101079,1046],[423537,101831,7268],[424643,100356,1956],[424862,99916,982],[430637,96364,1091],[398141,124928,1932],[398895,124611,1029],[396587,126068,1074],[396452,126871,1914],[396229,127038,1890],[396408,126528,1929],[396632,126428,1032],[394533,128793,1018],[394116,128539,1953],[394488,128446,1024],[396350,126183,1765],[395520,127124,1294],[384774,137556,1997],[385226,137482,2022],[385271,137824,2009],[399827,122644,994],[395280,127945,1847],[395971,127326,7314],[393742,129059,1920],[394159,128855,1962],[392760,129655,982],[424171,101631,1090],[423467,101512,1318],[423517,101867,1372],[429255,97276,9868],[423537,102194,1026],[422710,102162,1353],[422798,102456,2059],[431694,95341,1027],[431428,95446,1993],[431323,95121,1113],[430865,95263,2005],[399679,123804,1053],[399688,123376,1976],[399965,123658,1036],[398469,124452,1064],[398439,124120,1256],[398867,124231,1334],[396141,126390,1867],[431719,95010,1993],[424139,100909,1989],[399178,124440,1020],[399724,123969,1092],[420678,104630,996],[421120,104309,1072],[417176,106658,2072],[417761,106158,2034],[416983,107713,2085],[416647,108163,1042],[421530,102894,1007],[421926,103126,1050],[421966,103442,1016],[385511,136759,1952],[385703,136450,1006],[399541,122798,984],[402832,120421,2003],[402731,120147,1094],[403882,119230,2010],[403516,119399,1994],[403602,120051,1988],[403290,120169,2021],[370808,151477,945],[369956,151718,1810],[371238,150978,1925],[372005,149948,1912],[372542,149282,1926],[372097,150632,1923],[419721,104588,2081],[420087,104158,2006],[420507,104708,2054],[421644,103199,2064],[400254,123079,2006],[399936,122930,1976],[400153,122802,1101],[402990,120353,1234],[402991,119946,1988],[402888,119694,1008],[400889,122211,1026],[400993,122480,1984],[400531,122263,1976],[391632,131226,1946],[391982,131131,1053],[391673,131570,1879],[394145,129276,982],[398529,124800,1243],[411322,111568,1812],[408418,114232,2002],[409798,114427,1027],[409191,115108,1082],[408666,114112,1011],[411200,111928,2050],[410430,112517,1020],[418586,106287,2034],[407025,115664,990],[406166,117771,1022],[405777,117568,1078],[406186,117390,2019],[407937,114990,2083],[407559,115789,2067],[407514,115475,2021],[406279,116340,991],[406835,116771,1061],[406787,116431,1027],[407223,116592,2043],[405460,117668,2017],[404297,119418,2028],[404205,118742,2008],[406678,116832,2042],[409247,114609,2092],[409481,113499,2047],[410904,113028,2051],[410518,113162,1053],[410544,112795,2108],[409224,115005,1020],[410258,113623,1069],[410000,113328,2096],[410210,113265,1045],[409507,114235,1030],[409138,114355,1024],[408868,115058,2084],[374721,147059,908],[375051,147072,1149],[374993,146768,878],[373545,148078,901],[379645,142514,1949],[379214,142636,911],[380812,141131,1901],[378754,143175,1869],[378941,142977,906],[379044,143177,1960],[375610,146835,914],[375139,147321,1906],[375298,146837,891],[371767,149956,1840],[371519,150307,1931],[376212,145793,1834],[376311,146489,1924],[375926,146409,1920],[379322,142879,1962],[379735,143202,1934],[373647,148286,1912],[373220,148614,1933],[375967,146731,1914],[373691,148605,1930],[431161,95855,1072],[430956,95935,2050],[430847,95620,1072],[369025,153417,1863],[370513,152045,1905],[368863,153791,1002],[368746,153420,1889],[411226,112654,1049],[411270,112993,1048],[409953,112970,2088],[408371,114859,2063],[407980,115320,2074],[406520,116213,977],[407136,115944,2027],[406807,116044,2028],[407277,116858,1092],[406875,117108,1009],[388298,134407,1958],[387783,134648,961],[388252,134077,1931],[388659,133968,1956],[389044,133893,1958],[388685,134337,1627],[413068,111505,1092],[410795,112763,1030],[410815,112355,2064],[409618,114521,2072],[377023,145965,915],[376683,146164,1918],[376594,145480,1936],[375585,146474,1214],[410591,113499,1455],[408002,116058,1002],[407605,116147,2048],[394488,128019,1820],[393095,129455,1921],[393454,129595,1936],[393080,129857,963],[391993,130729,1956],[392319,130221,1935],[392589,130515,977],[381864,140104,914],[381590,140374,1949],[389296,133453,1947],[389955,133431,1022],[389288,133877,1026],[387109,135384,1990],[387104,135812,1114],[386765,135457,1978],[392630,130830,976],[383069,138965,935],[390963,132188,1936],[390523,132744,991],[390145,132780,1928],[388615,133653,1937],[390131,133192,969],[389250,133110,1925],[388995,133540,1925],[381680,141024,2006],[380861,141461,1976],[382366,140646,1995],[382004,141127,981],[377270,144591,892],[377375,144803,1942],[397757,125441,1923],[397334,125289,1913],[397675,125143,1335],[396892,125604,1007],[408461,115537,2057],[416013,108598,2066],[416390,108173,2066],[414945,108470,1022],[416936,107354,2090],[415491,108351,2083],[415099,109080,2089],[417157,107055,1059],[415905,108307,1068],[415141,109425,2023],[415045,109666,1102],[414744,109520,2077],[415926,107925,2074],[415056,108746,2087],[386137,136624,1976],[385744,136767,1010],[383540,139261,1027],[384037,139067,1983],[383585,139598,1035],[386094,136305,1968],[386414,136293,1041],[383217,139509,1995],[388288,134849,974],[386852,136103,2000],[386459,136646,1008],[385561,137110,2008],[385606,137466,1976],[394842,127887,984],[419337,105792,1005],[419808,105265,2046],[420701,104235,2064],[421004,104134,2073],[405842,117889,1409],[406479,117282,2066],[405373,118619,1102],[405543,118314,1990],[405502,117985,2024],[411248,112267,2096],[412762,110270,1012],[414387,109935,2081],[414727,109927,1063],[413634,110098,1044],[413448,110110,2084],[413248,110846,2076],[412923,110922,2064],[413138,110559,1060],[412166,111393,2045],[413749,110393,2105],[412875,110566,2055],[413157,110171,2057],[414019,109991,2098],[413654,109695,2079],[413424,110481,1051],[413970,109632,2072],[413533,110767,2069],[414057,110309,2038],[413226,111238,1037],[389818,133255,1938],[383549,138810,1991],[383171,139178,1960],[399147,124089,1224],[399464,123882,1932],[398862,123869,1938],[399420,123532,1961],[389723,132553,1908],[390872,131519,1903],[389409,132798,936],[391886,130462,945],[393125,130191,963],[389716,132999,979],[387450,134931,1988],[389512,133038,1939],[431094,95207,1337],[418547,105968,2078],[404683,118961,2027],[400520,122664,1069],[400563,123012,1025],[399376,123201,1949],[400901,121804,1948],[401336,121651,1979],[401376,121967,1961],[410882,113418,1030],[368603,152868,913],[368696,153060,1848],[370464,151675,1898],[384291,138103,1086],[384819,137890,2008],[383996,138743,1996],[371908,149749,936],[401703,121169,1976],[401746,121499,1972],[402192,121382,1916],[402869,120745,1920],[403028,120708,1094],[401596,122175,1092],[411658,111536,2036],[412058,111121,1036],[411705,111864,2086],[382813,139239,1923],[382322,140314,1997],[381249,140733,1958],[383946,138389,1968],[377037,145500,1954],[368136,152989,892],[374471,147284,1855],[382906,139917,1966],[382276,139969,1984],[382652,140269,1997],[383206,139961,1005],[382551,140731,1072],[422774,102820,1024],[422235,102278,1001],[421309,103674,2046],[420912,103463,2030],[421684,103518,2022],[421284,104052,987],[420658,103920,2040],[407957,115694,1050],[392907,130248,1948],[392409,130876,1962],[393786,129377,1943],[392861,129917,1923],[391584,130888,1890],[398045,124657,1095],[418985,105851,2067],[412216,111745,2094],[431183,95509,2032],[401729,121884,1010],[371606,150968,1937],[378846,143848,1914],[378281,144506,1951],[377420,145144,1947],[387499,135292,2015],[387857,134915,1515],[403479,120392,1092],[368935,152769,1784],[369572,152399,1873],[369207,152758,1717],[406725,117189,2032],[377769,144160,1922],[405080,118871,1035],[419359,105396,2067],[380432,142604,962],[380902,141786,1946],[380028,142511,1965],[380070,142852,1923],[410301,113963,1031],[399605,123108,1320],[414248,108927,982],[411322,111568,952],[408418,114232,1002],[405535,116920,932],[210602,319433,1062],[211419,318556,1062],[214793,319857,832],[208877,320868,1062],[211070,325923,832],[210218,325787,832],[207846,325349,832],[212854,327427,832],[211248,326057,832],[335118,198071,876],[333494,199934,813],[334518,196473,962],[336397,197315,832],[419248,114877,832],[420635,113524,832],[421626,113801,853],[436212,96346,911],[436634,96196,878],[436593,96307,12502],[438747,89436,1185],[440095,92440,722],[437873,90413,1072],[441204,91074,712],[445663,85012,712],[445651,85029,712],[444145,84104,1020],[439076,88953,1067],[442779,87036,907],[411461,122262,862],[417612,118356,722],[407393,128667,722],[438278,89477,1082],[439538,92624,778],[438411,92753,892],[438493,92925,8867],[438452,93067,890],[428468,106175,836],[433609,100429,842],[424764,110579,752],[437190,94534,949],[437143,94169,967],[437474,94009,922],[434532,98280,920],[434253,99103,870],[432905,99526,922],[437129,95022,10123],[436466,94846,986],[436857,94656,961],[434692,97225,932],[434783,98118,904],[435518,97038,929],[436293,97123,872],[435032,97998,889],[429245,105119,9336],[428982,105017,855],[429313,104922,824],[423405,110698,812],[427421,106058,872],[404185,131903,732],[403389,128842,922],[417605,117981,849],[414543,119658,822],[416938,117296,832],[399819,132350,912],[401257,130875,922],[406460,126326,892],[404893,127557,942],[398473,133840,902],[395364,137452,862],[393008,140033,822],[390592,142594,822],[367036,162765,1012],[373525,157278,944],[366264,164327,992],[388503,144618,842],[363379,169772,882],[369096,158919,972],[370139,157275,952],[339854,193579,858],[339680,193499,11170],[339808,193229,881],[380395,150013,912],[382368,148955,872],[377282,154434,877],[376331,154665,930],[376249,154952,7679],[376132,154823,6289],[377253,153918,6554],[377195,153771,875],[377481,152779,901],[375712,154577,927],[374857,154203,893],[374817,153877,927],[372803,154631,902],[375174,153053,912],[373769,156281,893],[373517,156396,7039],[373387,156264,890],[376118,155310,892],[376310,155259,7953],[375543,155922,928],[384417,147729,872],[385692,146896,872],[373254,155252,896],[373096,156579,903],[371923,155297,912],[386775,146067,862],[373524,157270,5542],[370790,156394,942],[375177,156599,940],[367831,161248,1012],[364702,167983,922],[365364,166516,962],[364329,168598,892],[360072,173425,872],[356544,177264,842],[352392,181857,799],[354092,179794,832],[349405,184198,11356],[349493,184488,822],[349108,184528,873],[349446,184133,827],[346794,186536,842],[350304,183346,812],[345077,188892,825],[342351,190432,882],[320547,211858,1006],[313361,219411,832],[316369,214780,1012],[338614,194159,871],[338405,194569,10453],[338139,194186,885],[330899,199154,1012],[328606,201149,1022],[327141,202666,1012],[324601,205572,1062],[318746,212291,1062],[319577,211421,1062],[286012,245644,832],[302359,225558,1062],[314000,217159,1002],[312651,218460,1062],[311112,219741,1062],[242536,283852,1062],[268373,259616,1062],[231298,298380,832],[309463,220901,1062],[300653,226658,1062],[297218,229216,1062],[292918,232334,1062],[289684,234794,1062],[287638,236691,1062],[284091,241114,1062],[281943,244084,1062],[278205,249448,1062],[276631,251666,1062],[274926,253541,1062],[272334,256108,1062],[271457,256890,1062],[269652,258500,1062],[265231,261970,1062],[245067,280767,1062],[262061,263975,1062],[256862,267538,1062],[259607,265438,1062],[254672,269515,1062],[252458,271715,1062],[250534,273565,1062],[249268,274992,1062],[247235,277665,1062],[240065,286724,1062],[227570,297540,1062],[228211,296316,1062],[238343,288386,1062],[236027,290279,1062],[233932,291726,1062],[231275,293609,1062],[229744,294730,1062],[228881,295447,1062],[228711,295667,1062],[226505,299403,1062],[219985,310200,832],[221584,305692,1062],[218292,312438,832],[217434,310893,1062],[216483,315620,832],[213275,316227,1062],[205414,323264,832],[207209,321619,1062],[205003,321964,1062],[204150,322181,832],[204136,322052,1062],[205822,321866,1062],[429041,105448,10435],[429118,105331,15783],[429964,104432,836],[431964,100755,11847],[431839,101153,9304],[431164,101672,9748],[434681,98236,14736],[434573,98610,889],[438575,94076,753],[438157,94697,792],[435849,96869,900],[349781,184058,818],[348945,184846,10253],[349441,184562,11181],[348764,184987,835],[428735,105760,823],[428512,104909,12989],[428743,105216,10609],[429008,105134,10553],[430753,103266,831],[430243,103012,889],[430811,102928,15768],[431310,102280,10694],[431097,102832,827],[430980,101949,13452],[429918,104073,852],[430333,103714,847],[429956,104233,11317],[428896,104340,892],[429497,103686,10733],[429493,103841,886],[428962,104802,10533],[429022,104683,15640],[429254,104741,10185],[436942,95338,910],[437349,93019,996],[436992,93380,992],[437340,92350,1022],[437561,94682,895],[437864,94532,873],[437906,94868,846],[436675,96515,855],[435476,96719,944],[438100,94660,13683],[437430,93666,940],[437056,93494,983],[437345,93200,10660],[350242,183585,812],[350084,183906,10287],[350015,183629,813],[348603,185039,11552],[348245,185417,11779],[348111,185489,9761],[431583,101885,9623],[431136,102027,8672],[431492,102540,12807],[431415,102390,857],[431535,102270,8200],[430288,103350,894],[433193,100475,866],[429231,104275,890],[437575,94827,10887],[429877,103756,875],[428734,105139,15738],[430190,103105,12217],[437025,96014,820],[436131,95700,969],[431714,102321,836],[432043,101764,11076],[431901,101574,878],[432022,101401,11459],[432299,101043,11652],[432102,101144,899],[432058,100808,904],[435601,96777,11284],[435843,95466,962],[436018,95529,10849],[350062,183977,815],[342832,190880,840],[342496,191349,805],[348766,184771,14346],[347950,185882,829],[339602,193987,818],[339356,193993,867],[339558,193646,856],[428934,104490,10704],[429283,104364,11326],[429613,104299,11221],[429534,104157,887],[429578,104511,847],[432439,101075,877],[432479,101388,847],[431947,101935,844],[431632,101671,901],[347587,186341,843],[339727,193844,11183],[436936,94465,14708],[437270,95184,885],[436816,94325,979],[436103,95161,12741],[436087,95364,951],[435616,96714,7553],[351710,182478,8734],[351958,182251,807],[350446,183728,10817],[437697,93209,954],[438116,94358,836],[339837,193845,7901],[338511,195170,10824],[339455,194149,6807],[436418,94489,982],[351500,182290,817],[351171,182693,809],[351040,182939,8962],[350489,183173,824],[349844,183901,12448],[340168,193197,867],[340888,192682,840],[339312,193662,862],[339268,193306,903],[338659,194517,858],[337728,194627,912],[340016,193538,7465],[338172,194043,8198],[336799,195117,927],[338870,193276,892],[342144,191752,824],[339024,194071,881],[338798,193643,11120],[338277,195254,842],[338698,194769,7637],[338702,194853,823],[351374,182359,9788],[352342,181477,807],[350537,183531,807],[350837,183156,803],[351544,182621,811],[431674,102004,863],[339104,194455,7207],[338831,194627,9743],[432791,100616,892],[432424,100643,10104],[432752,100301,916],[340649,193018,7917],[340558,193134,828],[341276,192280,849],[432943,100514,9089],[432396,100995,9049],[432128,100746,9757],[432353,100398,906],[437990,93369,898],[437561,91369,1052],[339300,193977,10839],[435762,96190,936],[373206,154891,874],[437359,93895,9549],[339071,194457,839],[438192,93211,898],[437848,93255,7668],[376070,154949,892],[375411,154880,998],[374399,154541,901],[377745,151518,902],[368509,159999,992],[376373,154994,910],[375552,154968,2796],[376104,152953,911],[376286,154329,924],[376030,154620,940],[376737,154946,6019],[376462,154865,6465],[377150,153420,899],[376724,153028,900],[377101,153058,884],[376677,152682,883],[373433,156599,898],[340211,193556,811],[340974,192647,7563],[339959,193754,9790],[374798,153962,7456],[338568,193796,897],[373330,155020,6955],[373584,154872,904],[373856,156934,910],[376485,152896,6262],[377188,153174,7015],[377240,154111,889],[340342,193367,8083],[376419,152978,906],[373478,156950,895],[376647,154724,890],[376063,154573,5786],[375756,154931,893],[322234,208338,1082],[335169,198375,1021],[443903,81566,1152],[444257,86883,594],[457400,55040,1522],[457359,53203,1522],[462761,54675,1102],[462283,55742,892],[461801,56820,892],[462865,54417,672],[462925,54267,1102],[457380,67875,732],[456573,61990,1522],[457365,57052,1522],[457314,58070,1522],[457230,59058,1522],[457089,60054,1522],[456863,61023,1522],[456264,62958,1512],[446661,80868,2267],[446208,81296,1099],[446246,80982,2193],[455888,63885,1502],[452239,73714,930],[452651,73277,906],[452856,73678,3059],[455593,64769,1460],[455450,64810,1502],[455444,66553,2229],[455580,66347,15749],[455458,67211,1244],[455665,65145,1795],[454994,65722,7632],[455167,67303,2413],[454807,67706,2469],[454549,67384,13398],[453911,68982,9768],[453822,69206,13102],[453362,69277,11751],[453417,69338,2139],[453155,69786,2616],[452150,73039,925],[452561,72600,876],[451170,73441,3132],[451376,73263,910],[451582,73669,3062],[447785,77982,1339],[448303,77930,3002],[448209,78208,1189],[446176,80339,2381],[446155,80655,1500],[445690,80676,8064],[453374,72390,933],[453409,72722,820],[453014,72499,921],[452692,69811,1303],[452780,70190,1853],[452376,70319,2447],[455174,66703,9430],[455072,66329,14322],[455318,66470,6047],[455102,66962,2137],[454597,66662,1429],[454154,69108,1229],[454198,68815,2372],[454477,69047,1088],[454004,67443,1412],[455334,67068,16640],[455365,66825,6058],[451739,73166,1014],[451822,73500,1555],[455421,69323,2312],[455459,69639,2263],[455014,69378,2340],[455606,65724,6017],[455747,65816,1729],[455555,65734,16508],[455354,65873,7632],[455757,66117,1326],[455417,66217,7895],[455294,65837,1433],[454360,68060,1241],[454896,68404,2450],[453629,70705,2635],[453798,70586,928],[453975,70980,2695],[455208,67617,2432],[454206,69516,8607],[454303,69519,2556],[454346,69833,2591],[454616,68735,8360],[455270,68937,902],[455162,69094,10572],[454627,69433,2484],[453718,69893,1055],[453801,69636,2694],[453934,69900,13403],[454392,69551,15497],[453902,69168,1075],[454158,69201,8503],[453948,69499,1112],[454552,69715,926],[453978,68916,2599],[454344,67427,2161],[454637,66981,1394],[455147,66093,15803],[455627,67902,2362],[455492,67523,1159],[454110,69880,2691],[446545,80511,1276],[446280,80568,10029],[445727,81098,1297],[445852,82009,7881],[453888,68666,10013],[453506,69703,2732],[452934,69170,1342],[454407,68381,1320],[453895,68539,2113],[454028,68096,1300],[455827,69588,2115],[455540,70614,1634],[455334,68648,2319],[455639,68836,837],[455600,68514,876],[455572,68168,1114],[445671,80755,1129],[447442,77736,1281],[447233,77896,2353],[447095,77528,1105],[455795,69252,2260],[453031,72186,1748],[453469,72141,2741],[446895,80720,1085],[444586,82508,1035],[445159,83722,916],[455251,67974,2381],[455441,67774,11216],[454411,67781,2450],[446314,78822,1130],[445812,78876,1162],[446813,77617,1153],[446303,81650,1766],[446289,81531,8380],[445305,81249,1642],[444862,81369,1052],[447601,79076,1073],[447936,79320,1018],[447658,79409,1251],[446656,81492,1050],[445586,80108,1138],[445525,82579,2278],[445921,82455,1541],[446037,82794,2539],[445308,81604,1031],[446712,81829,1213],[446264,81854,7444],[446300,81978,1137],[445928,82143,2220],[447026,81088,2267],[447079,81270,7418],[446973,81414,912],[447267,81274,859],[447347,81641,1311],[447540,80248,2358],[447205,80296,1763],[447195,79976,2208],[447173,82412,1911],[447225,82753,1998],[446482,82688,2382],[453874,70303,2500],[452943,70901,2853],[453349,71119,2927],[452994,71242,2950],[445648,80989,6894],[444538,82150,1019],[446437,82333,2410],[446938,83212,1858],[447691,82222,885],[447904,81431,1024],[447561,81189,950],[444656,82380,7296],[444987,82377,959],[455222,68250,1472],[454158,70236,2723],[455044,69712,2146],[452329,74050,1579],[452767,74277,705],[452469,74445,2838],[450277,74609,1125],[450325,74971,1138],[450094,74769,3043],[449022,76413,2824],[449349,76599,1090],[449119,77059,3007],[449579,77289,3065],[449854,76828,1569],[449989,77216,2748],[448906,79173,2722],[448442,79262,2510],[448410,78911,2702],[449221,75569,1174],[449651,75470,1186],[449709,75806,1395],[450823,76901,1107],[450759,76560,832],[451217,76843,2477],[452081,72395,1130],[451742,72211,2794],[452154,72091,2709],[451180,74701,958],[451689,74636,2801],[451595,74923,965],[450818,73491,2992],[450652,73109,1373],[451129,73110,3161],[452417,70661,2411],[451781,70784,2042],[452545,71327,2984],[452900,71516,1111],[451615,73995,2925],[451833,73843,1094],[451983,74226,2494],[450352,74018,3248],[450877,73838,3185],[452189,73356,886],[451288,74430,2969],[453684,71027,2818],[453588,71316,931],[453198,72889,2796],[453245,71405,920],[451403,72630,2453],[450889,72349,1181],[451314,72257,1881],[452520,72260,926],[452893,73987,3011],[453760,71694,2666],[453289,71747,926],[454395,70169,2659],[453314,70798,3008],[453240,70431,2645],[452772,70478,1202],[454505,71155,2421],[454273,71248,2499],[454105,70848,877],[451646,75264,1045],[451986,75154,845],[452023,75499,727],[448788,78191,2856],[448699,78470,1102],[449022,77369,1070],[448658,77162,2909],[448398,78601,3117],[451409,76371,1133],[451410,76715,519],[450023,77527,2663],[450449,77802,2481],[450778,77675,2572],[450448,78101,1925],[448881,78837,2979],[453875,71229,838],[453111,73177,1055],[454542,71507,2298],[454182,71520,732],[453837,72386,2492],[453905,73030,2274],[453079,71897,2942],[454055,71627,2626],[454192,70554,2635],[454129,72298,2448],[454165,72635,2345],[454601,70077,958],[453222,73559,1924],[451460,76086,2367],[450705,76216,699],[453294,73893,2329],[452379,74735,1040],[452797,74593,561],[452407,75062,832],[449322,78756,2746],[455151,70399,2400],[454776,70461,2697],[450284,77080,1483],[450431,77451,2866],[450985,77252,2735],[450582,76960,1110],[449671,78271,2549],[450086,78165,2367],[450124,78521,2248],[453495,73080,1379],[449191,77725,2793],[449660,77959,2973],[449281,79050,1634],[449637,78936,842],[449273,79369,936],[452049,74561,2814],[448025,79020,2798],[448933,75732,2828],[448853,76050,1123],[448394,76126,1105],[448152,76918,2733],[447795,77330,2665],[447330,77047,971],[448579,77484,1225],[448753,77865,2970],[451668,71550,2947],[451580,71188,2373],[452083,71426,2918],[453802,72049,2617],[453591,70376,2695],[451768,75636,2088],[451742,76271,559],[448498,79608,2669],[448427,79915,1114],[448113,79666,2855],[454835,71093,2384],[454752,71392,684],[454339,71882,2270],[454596,71850,2430],[447947,78330,2961],[448200,77279,2750],[447603,78126,2821],[448565,76487,2852],[448501,76810,1361],[447512,77451,2790],[448023,76551,1605],[447996,78688,2994],[447537,78438,1341],[447850,77656,2833],[450854,74811,1099],[450552,74872,1008],[450666,74601,3092],[451723,75961,863],[450883,75122,934],[450938,75457,1097],[450619,75203,1335],[451952,74827,960],[450057,74457,3095],[450249,74296,1300],[450960,75767,843],[449726,76140,1025],[449400,75948,2998],[450386,72893,2290],[449352,74003,1762],[450580,72414,1252],[450391,75297,1467],[449609,75155,1177],[449239,74930,2591],[449311,75269,2996],[448844,75060,2809],[449704,74873,3036],[450017,74101,3189],[450484,74228,1224],[449951,73773,2861],[449602,74170,2896],[449398,76912,1201],[449443,76288,2976],[449914,76519,2974],[450159,76391,986],[450557,76637,1363],[450073,75739,973],[453546,70056,2644],[450679,75867,967],[450905,74165,2986],[447077,79640,1162],[447441,79229,2829],[447480,79558,2772],[447796,79775,2517],[446710,79083,1475],[446431,79172,2139],[448457,80227,969],[448065,79983,1596],[447336,80980,2360],[447090,78970,2568],[447367,78880,2440],[447091,82068,1372],[446828,82183,2206],[451346,72910,1129],[450702,72831,2580],[450933,72708,1142],[446901,78266,1216],[446824,79415,2475],[447302,78233,2699],[446496,80151,1239],[446530,79854,2269],[446919,80072,2616],[447401,79870,1106],[446871,79754,2520],[447742,80089,1186],[447785,80430,1168],[448215,80669,2454],[447926,80808,2458],[448068,80317,1033],[447952,81117,2259],[447514,80872,857],[447927,81742,774],[447214,80607,1320],[452548,71959,1871],[452441,71586,1053],[451998,71698,1236],[447582,80560,2388],[448552,80904,1077],[448227,81005,2015],[454670,70719,758],[454301,70425,890],[448313,75481,1157],[452504,71010,2979],[455092,70704,1030],[455496,69962,2211],[445412,82255,1295],[450219,76743,1189],[449397,79728,2027],[448985,79845,2599],[448924,80182,1136],[448533,80565,1420],[449717,78625,2550],[448866,79485,1588],[451660,72490,1125],[451581,71846,1194],[451337,71966,2725],[450935,72074,2315],[445994,79619,1144],[446856,80403,1111],[446047,79979,1226],[448268,81360,1945],[448322,81399,732],[446500,83637,884],[446075,83461,1847],[446537,83326,1975],[447099,81759,2059],[447994,76223,1804],[448162,75600,1202],[447572,78762,1228],[451705,72808,1178],[450967,74512,3221],[450437,73237,2375],[450227,73337,2747],[445073,83049,929],[445186,83397,1873],[451309,75715,921],[447340,78550,2662],[447030,78631,2351],[447151,77202,2470],[451220,73762,3243],[451240,74083,2928],[449206,74615,2713],[451232,75048,1057],[447378,81980,1113],[445565,83594,984],[446082,84124,743],[445559,82931,2107],[445586,83248,1913],[446066,83107,2385],[446492,79496,2394],[447420,82312,1111],[446097,83772,1594],[446657,78722,1395],[445906,78943,1147],[450630,75549,871],[452133,72720,1262],[455511,70291,1813],[462761,54675,252],[462925,54267,252],[454994,65722,1502],[451781,70784,1292],[449352,74003,1222],[427492,25064,10375],[427104,25150,1842],[428710,24676,1902],[429886,24540,1752],[429729,24684,8371],[429748,24454,9076],[428957,26113,1946],[429466,26142,1956],[429117,26482,1982],[429218,25946,1960],[429521,25914,2008],[429424,26598,1992],[429268,26545,1982],[429770,26351,1924],[429582,26640,2002],[429888,26447,7781],[429783,26645,1986],[430138,26534,1920],[429906,26691,2012],[430153,24797,10198],[430334,24918,1863],[430079,25183,1811],[430477,26540,1959],[430398,26686,2022],[430216,26230,8965],[430345,26280,9199],[430325,26334,7197],[430896,26218,1888],[430665,26291,1937],[430815,26040,1989],[430335,26012,13788],[430474,26031,1927],[430878,26581,2032],[430720,26627,2022],[430684,25959,13551],[430495,26013,2024],[437843,23600,2654],[437560,23896,1692],[437360,23602,1802],[437690,23903,1722],[437826,23850,1982],[438079,23870,1802],[437950,23889,1732],[438832,22582,2902],[439112,22827,2597],[438747,23330,2566],[438206,23842,1872],[438298,23481,2673],[438325,23781,2499],[438331,23805,1972],[438573,23707,1982],[438454,23760,2152],[438688,23647,2152],[438799,23578,2162],[439006,23420,2192],[438905,23503,2192],[438794,22489,3142],[438887,22452,3142],[439190,23236,1922],[439101,23331,2152],[439082,22519,2742],[439416,22918,1912],[439348,23029,1912],[439437,22735,2533],[438322,22788,2812],[439673,22501,1708],[439626,22735,1912],[439859,22581,1912],[439740,22654,1922],[439954,22405,1635],[439982,22516,1912],[440223,22254,1448],[440109,22459,1752],[440240,22411,1702],[440510,22340,1482],[440507,22155,1383],[440647,22318,1452],[440786,22305,1422],[440895,22037,1348],[440926,22301,1412],[439518,22823,1872],[446790,24428,1178],[446863,24311,8988],[447150,24332,1080],[453776,25552,666],[454214,25199,598],[454315,25460,572],[450930,24112,3932],[445177,22501,1062],[454691,25162,492],[446421,24084,7373],[446491,24045,2362],[446580,24150,8369],[446726,24356,6976],[446945,24957,8958],[446730,24923,8894],[447377,25161,8555],[447485,25215,1133],[447463,25355,3627],[447713,24666,8424],[447881,24825,1029],[447754,25016,8353],[448132,24850,1057],[448070,24866,3624],[448088,24606,4347],[448844,25496,1107],[448645,25261,4604],[448687,25224,3911],[447918,25094,4486],[447632,25271,1080],[447845,24589,1063],[447945,24392,7120],[448864,25528,4610],[448776,25579,4871],[449042,26179,1179],[448903,26026,1140],[449233,25980,1164],[448446,24227,4396],[448657,24272,883],[448645,24416,917],[449533,26463,1272],[449300,26407,1312],[450751,24151,419],[451053,24252,442],[454690,25163,492],[454691,25163,472],[447755,24376,4468],[448448,24988,3843],[448337,24798,3605],[448577,24744,3601],[450370,24731,931],[449915,24143,575],[450221,24031,446],[449533,25395,1036],[449207,25293,1018],[449387,25254,3602],[449768,26509,1242],[445942,23482,4111],[445875,23236,1013],[446088,23456,5299],[449258,25657,1077],[440168,22162,2642],[440713,21774,1542],[445900,22896,825],[446058,23109,2394],[444815,22757,999],[441065,22306,1412],[440374,22371,1632],[439841,22174,2802],[440100,22069,2802],[439804,22081,2892],[439711,22119,2892],[431443,25729,1795],[431514,25985,14508],[431321,25807,8651],[436940,23738,1589],[436960,23473,2332],[437711,23131,2541],[437766,22959,2763],[437815,23292,2850],[436109,22869,2122],[435845,22911,2212],[435845,22910,1762],[433744,24150,1834],[434272,23941,2142],[433786,24485,1799],[430018,26356,14289],[430282,24665,1767],[430358,24544,1730],[430555,24716,1939],[431757,25608,1891],[431763,25916,1815],[431645,25677,3824],[430070,26701,2012],[430675,25704,2156],[430431,25706,1936],[432695,23871,1850],[433007,24050,2023],[432941,24162,1779],[431165,25290,7407],[430824,25435,2246],[431105,25240,2181],[430179,26056,3373],[430260,26060,2273],[431342,25517,2785],[431334,25781,2180],[430820,25575,2012],[431102,25933,1787],[431264,25988,7517],[430304,25979,5291],[429328,25756,9602],[429506,25646,10636],[429433,25814,9278],[429687,25883,8741],[429590,25920,8923],[430540,25178,1879],[430412,25142,2702],[430360,24893,14124],[430560,26662,2022],[429964,25222,13570],[429867,24943,1795],[432618,24138,2884],[432718,24207,2083],[432561,24189,13835],[430576,24298,1881],[430875,24705,1924],[430007,26101,9559],[430127,25805,7962],[430187,25773,3586],[430291,25829,1947],[433511,23602,2251],[433337,24254,1732],[432598,24478,3564],[430122,25483,10945],[429913,25333,8117],[429255,24839,1805],[429565,25108,1861],[429233,25236,1889],[432114,24104,4174],[432084,24150,2126],[432029,24038,3043],[431224,24339,10008],[431113,24339,1732],[431027,24285,7327],[430185,25770,6993],[430033,25737,9382],[430855,25138,1957],[430723,24998,1857],[431012,25011,11395],[431182,26459,2012],[431032,26525,2012],[430232,25258,11652],[430313,25370,1894],[430692,25250,2194],[430632,25157,11423],[430544,25614,6512],[430420,25651,6162],[430784,25570,7010],[430714,25683,13272],[431239,25086,2121],[431793,24938,1984],[431746,25050,2778],[431477,24752,1893],[431162,24531,1757],[429542,25472,1980],[429841,25354,1925],[429679,25640,1951],[427716,25371,1884],[428033,25602,10665],[427458,25291,9468],[430362,25279,7383],[430288,25286,11198],[430267,25579,5852],[430443,25463,2549],[432919,24556,1876],[432867,24696,3271],[431132,24870,2017],[431353,26101,1859],[430892,24203,1984],[432314,24277,3073],[432402,24058,1830],[430102,24725,1757],[429911,25229,9931],[429899,24816,1739],[430513,25522,2064],[430544,25299,9913],[428366,25037,2364],[428195,25167,2664],[428135,24945,2008],[428216,25743,1887],[427809,24991,8621],[427894,25147,1962],[427507,25124,1844],[428555,25575,1917],[428426,25159,11043],[428636,25472,2179],[428882,24758,8117],[428925,24955,1902],[428624,25053,9009],[428119,25414,1943],[428173,25385,1952],[428284,25175,8982],[429887,26315,14073],[429797,26145,2101],[429928,26161,13524],[429748,26026,2229],[429896,25798,8090],[429373,25454,1923],[428666,25121,1947],[429470,25314,10732],[428910,25747,1948],[429070,25859,8729],[428883,25825,1988],[447527,24382,988],[447539,24576,1040],[449084,25788,3825],[430124,24467,10392],[430036,25633,6022],[429968,25717,3190],[430132,25635,4531],[430234,26699,2012],[429210,25659,1969],[446606,23299,4798],[446548,23239,6513],[446646,23233,4181],[447405,24819,8323],[447395,24988,3332],[446860,24058,7281],[446987,23954,5202],[447124,24160,6387],[446382,23008,665],[446146,23066,965],[445933,22717,405],[447220,23884,6479],[447161,23934,7321],[447022,23760,4766],[448046,24164,2946],[448048,24073,861],[448174,24048,860],[430344,25774,6221],[446579,23602,5055],[446596,23521,963],[446710,23546,2885],[446506,23962,6046],[446373,23987,8247],[429424,25820,1962],[429171,25604,1935],[428924,25519,2584],[429095,25389,9977],[429547,25945,6646],[449063,25723,1124],[447485,24201,971],[432758,25315,1852],[431422,26178,1826],[429616,24698,9930],[429587,24706,1774],[429519,24571,1681],[429494,24760,8075],[447580,23987,5930],[447371,24101,3799],[446551,24379,8709],[447393,25129,8409],[447132,25239,4522],[446794,25053,8322],[446452,24717,7482],[447010,25027,4120],[447192,24856,6317],[430281,24342,7987],[429918,25700,3976],[429821,25752,1983],[430228,25704,6390],[429977,25543,6981],[430019,25781,2355],[429964,25820,5642],[430081,25613,5329],[430057,25555,1911],[447025,23928,1026],[447866,24220,948],[447952,24135,3292],[450033,25468,980],[451211,25794,981],[451201,26587,1102],[450937,25767,1011],[450722,26599,1182],[447570,24185,7285],[431833,24047,1936],[431617,24323,2295],[431516,24196,7704],[431244,24816,2693],[431453,25094,2043],[431491,24220,2022],[431627,24605,1913],[428903,25425,1934],[429264,24737,1711],[429182,24589,8002],[428991,25986,7376],[447324,24752,8130],[447229,24094,1037],[447650,23646,4965],[447913,23468,658],[447801,23642,6459],[447545,23955,949],[447273,24006,5513],[446275,24179,7597],[446259,24052,6262],[446883,23885,3444],[446924,23793,2813],[446711,24020,6252],[448155,24424,955],[447970,23900,3974],[448100,23855,5892],[447931,23741,5154],[451678,25485,991],[451227,25329,918],[451702,25091,829],[451677,26536,1052],[432018,24645,2842],[432335,24510,3097],[436057,23432,1752],[435325,23045,2200],[435729,23222,1923],[431936,24074,1719],[432161,23943,1693],[432382,24508,1855],[447716,23933,3665],[447768,23851,5598],[446528,23533,5956],[446770,23481,5624],[446824,23665,4592],[447251,23744,897],[447300,23695,5254],[447444,23764,2761],[446003,23765,2901],[446059,23798,5546],[445854,23969,5292],[446295,23845,5786],[446375,23653,4571],[446604,23758,8216],[429743,26671,2002],[447670,25437,8445],[447553,25637,4962],[447937,25481,5004],[447143,23496,2876],[446492,23360,2799],[446652,23692,7134],[446745,23806,5838],[446526,23161,2360],[446401,23307,4376],[447277,23431,659],[447324,23504,5049],[447599,23318,464],[447567,23608,806],[446306,23292,1748],[446347,23230,1084],[446188,23604,3500],[446182,23510,7501],[446239,23656,2625],[446443,23627,7326],[446312,23418,5784],[446168,23752,6866],[446043,23611,2328],[446117,23232,4953],[445805,23680,7992],[445857,23697,1019],[446124,23421,1091],[445602,23562,4192],[445635,22722,670],[446622,23194,738],[446839,23387,817],[446948,23455,2621],[448421,23796,752],[448301,23652,5187],[448447,23476,530],[448199,23640,727],[448208,23774,3650],[448239,23904,3745],[448530,24112,3039],[448554,24138,4363],[447611,23767,5543],[447744,23696,3343],[447887,23808,5863],[428403,24893,1881],[429919,26041,8543],[445860,23660,5356],[445661,23557,4385],[445584,23476,1015],[430319,25666,4984],[445599,22922,1121],[445383,23135,1122],[445161,22587,1062],[447050,23534,868],[448605,26045,4765],[448841,26268,3662],[448395,26092,4332],[446939,23327,5305],[447044,23374,4634],[446197,23749,7491],[446189,24348,7244],[446138,24355,6092],[446133,24141,8312],[448672,25681,3222],[448857,25684,1112],[448342,25488,5314],[447888,25338,4835],[448840,25857,4812],[448690,23696,635],[448667,24035,793],[447161,25360,7862],[446831,25072,7118],[449107,25397,3696],[448625,25646,4676],[448183,24450,4315],[448315,24239,4315],[451174,24967,832],[451348,24591,658],[448179,23611,4962],[453061,26157,812],[453378,24841,217],[453497,25959,722],[453916,25726,652],[450510,25770,1009],[450140,24015,5121],[449369,23680,375],[447959,23340,4842],[447303,23151,402],[449622,23844,542],[446739,23272,2568],[447890,23809,817],[448957,23597,438],[449144,24085,838],[449295,24731,949],[447078,23284,565],[449400,23796,562],[449272,25170,1036],[449137,25099,3375],[449155,24921,973],[448375,24609,1003],[448390,24716,1028],[449109,25547,4882],[449552,24999,968],[449041,25711,3639],[450232,23962,384],[451300,24302,435],[451736,25620,886],[451957,25208,706],[452610,26320,922],[446872,25062,6415],[446855,25075,7483],[448275,25738,4915],[448174,25799,3594],[431702,25246,1789],[448883,25089,4569],[448865,25035,1051],[449081,25313,1075],[448623,24825,1020],[448885,24663,952],[448430,25197,4170],[432432,23944,2203],[433340,23546,1946],[448281,25980,6022],[448836,26215,4557],[445787,23377,2396],[448906,24263,859],[448596,24497,4307],[448683,24383,4542],[448706,24641,909],[448409,25093,4431],[449416,24989,3281],[448725,24337,3860],[450658,25681,998],[450554,25568,1990],[450678,25240,952],[451113,25753,3527],[450358,25704,1185],[445907,23715,4542],[450971,24986,1093],[446817,23780,939],[446264,23315,2439],[448397,24178,900],[448968,25727,2732],[446399,24640,8478],[448167,24881,4312],[446039,24155,5668],[445946,24088,7252],[447996,24081,3845],[447965,25882,4602],[448130,25822,4335],[451746,25085,1981],[452148,26447,982],[433089,24729,1917],[432532,24626,2352],[432336,24765,2631],[433033,24369,1799],[432783,24834,1852],[451273,24582,706],[450698,24839,868],[448394,25560,4374],[433387,24599,1799],[432100,24903,2501],[432315,25025,1863],[439647,22179,1919],[446963,25016,4899],[450243,26573,1202],[436086,23747,1595],[435746,23526,1611],[437732,22636,2869],[447058,24914,8528],[436554,22950,2597],[436535,23086,2541],[437374,23361,2445],[436566,22748,2284],[437431,22582,2265],[436898,22830,2640],[438142,22342,3462],[438142,22343,2622],[436097,23431,1956],[436302,23596,2061],[437386,23923,1578],[434872,24403,1722],[438187,22472,2976],[432669,23840,2058],[433706,23839,2292],[434100,23403,2074],[433503,24224,1961],[437820,23900,1722],[435676,23337,2073],[435786,23879,1517],[435357,23636,1549],[435140,23960,1822],[434961,23778,1733],[433107,24246,1943],[434929,23470,1843],[434541,23595,1793],[434636,23296,2083],[434995,24120,1585],[434616,24259,1635],[433729,23453,2177],[450835,25039,913],[436575,23529,1836],[437410,22980,2356],[436913,23122,2323],[437054,22975,2724],[436310,23630,1839],[437350,23048,2674],[436290,23344,2074],[439385,22396,2423],[435150,23343,2046],[434897,23150,1992],[434293,23521,2069],[434536,23300,2272],[439272,23135,1872],[433699,24432,2017],[435337,23350,1796],[435410,23992,1655],[440265,22590,1416],[450594,26838,1327],[450297,27002,1385],[461878,37046,1712],[465239,35098,1102],[465382,35631,1102],[465511,36168,1102],[465627,36707,1102],[465894,38340,1102],[462103,39179,1712],[465819,37793,1102],[466039,39988,1102],[466060,40539,1102],[461702,40794,1712],[466067,41091,1102],[466065,41413,1102],[465945,42550,1102],[465796,43683,1102],[460194,42014,1712],[465618,44813,1102],[465412,45937,1102],[465178,47056,1102],[458792,42521,1712],[464915,48169,1102],[456779,49051,1952],[464625,49275,1102],[464307,50373,1102],[463961,51463,1102],[457150,51032,1522],[463588,52543,1102],[463188,53614,1102],[457356,53049,1522],[462925,54267,1952],[450583,33661,1994],[449488,35894,2112],[448834,35155,2122],[463834,31497,1102],[464040,31890,1102],[460695,34639,1712],[456115,47149,1952],[448856,34176,2186],[448868,34272,2068],[447940,34309,2122],[450776,27561,1478],[450814,27889,1414],[450425,27810,3564],[450535,27439,1923],[450348,27603,1511],[455300,25392,309],[454691,25162,472],[456956,25796,372],[461458,35643,1712],[464579,33107,1102],[466004,39438,1102],[465956,38888,1102],[465730,37249,1102],[465083,34569,1102],[464914,34044,1102],[464732,33523,1102],[464413,32695,1102],[447887,26089,4358],[448002,26108,4789],[447670,26221,4960],[464233,32290,1102],[463615,31112,1102],[463384,30733,1102],[462886,29999,1102],[463141,30362,1102],[459524,34165,1712],[462619,29645,1102],[462340,29300,1102],[462050,28964,1102],[461750,28638,1102],[453097,35621,1848],[455909,35805,1672],[455741,36444,1722],[461164,28073,1102],[460881,27833,1102],[460589,27603,1102],[455633,33111,1495],[460290,27383,1102],[455667,27768,868],[454365,29176,1259],[459984,27174,1102],[459670,26976,1102],[459350,26788,1102],[459024,26611,1102],[457312,25902,1102],[458691,26446,1102],[458354,26292,1102],[458011,26150,1102],[450565,27122,1635],[450831,27159,2031],[446550,25978,8167],[446983,25931,9112],[446810,26369,4468],[455018,25460,570],[454691,25163,492],[447319,28268,1607],[447647,27811,1724],[448327,28009,1495],[433693,27875,2032],[433474,25304,1727],[434687,28062,2022],[455657,25623,531],[451842,27067,1114],[451747,27394,1167],[451516,27406,1204],[455532,25871,626],[447039,25403,8522],[447001,25465,9136],[446885,25396,7303],[444765,25502,4458],[444591,25364,3384],[444648,25253,1422],[452292,27180,1059],[445044,28664,1916],[444654,26805,1634],[445402,26952,1573],[451623,26752,1094],[451868,27023,3541],[452309,26765,1030],[438799,23960,2154],[437714,23912,1976],[437836,24138,1588],[439988,22725,1537],[440029,23066,1482],[451811,26658,3405],[448727,27148,1337],[448682,26823,1288],[448937,26918,4682],[449053,27088,1312],[449445,26920,1516],[449858,26950,1263],[445982,26935,4531],[445907,27101,3187],[445841,26823,7955],[442355,30434,2092],[441432,30019,2092],[441754,28292,1947],[447636,25895,5087],[445590,25167,8891],[445355,25243,8386],[445277,25017,8781],[445540,25269,6577],[445564,25562,6379],[445328,25536,8669],[445931,24682,7926],[445889,24714,7790],[445781,24582,6090],[444772,24879,4749],[444872,24986,8004],[444913,25717,6014],[444756,26118,4209],[444627,25615,1545],[444688,24408,1295],[444846,24634,3683],[444525,24691,3679],[445282,25309,4858],[444127,25163,1449],[439759,23183,1665],[439205,24083,1584],[441915,28062,2185],[442105,28038,4188],[436721,26007,1900],[435039,24445,1611],[439164,23454,2165],[431901,26675,1942],[431431,26791,8364],[431398,26546,1966],[438781,23659,2435],[432861,27326,2010],[432720,27698,2042],[432643,27432,2028],[438336,24342,1628],[438123,28888,2072],[441665,27627,1913],[432372,27234,2020],[431947,27003,1991],[432592,27074,1977],[428313,26439,1967],[427756,26940,1962],[427455,26830,1952],[438343,24075,2209],[425403,25652,1932],[425836,26335,1912],[425040,26196,1902],[437985,24283,1740],[426660,25586,1831],[426725,25372,10061],[426951,25535,1804],[430777,26911,2018],[431190,26716,14481],[431056,26744,1973],[428589,26888,2005],[429713,27380,1992],[428723,27191,1982],[431037,27142,2020],[430994,26917,1973],[427695,25799,1949],[427489,25614,9315],[426222,25934,1854],[426594,26083,1877],[430621,27196,2036],[426816,26597,1932],[423882,26035,1882],[425008,25732,1902],[456002,37710,1782],[451723,39243,2082],[461439,28322,1102],[453053,35299,1822],[457518,34419,1632],[455197,45364,1982],[456562,39201,1802],[454244,43583,2002],[458075,42049,1712],[457516,41161,1802],[452861,35651,1863],[450660,37531,2102],[450148,36748,2112],[431157,27053,10581],[431377,26988,2012],[431499,26323,9888],[431793,26314,14426],[431739,26345,1920],[431998,26478,1968],[432170,25807,1821],[432018,26093,1889],[428608,26467,1987],[428526,26486,12030],[432415,27559,2030],[432345,27423,11883],[432537,27392,2067],[431992,27195,10733],[431679,27163,11146],[432613,27225,11039],[432468,27271,8878],[426171,25565,1820],[426330,25733,1863],[427002,25892,1852],[427120,25838,9796],[427193,26114,1924],[430762,27230,9416],[430653,27188,8020],[431356,27426,2043],[431228,27468,9196],[431071,27251,8077],[427430,25716,1848],[427214,25684,1871],[431601,27197,7730],[431696,27198,2043],[431544,27472,2012],[431399,26428,1900],[426912,25874,1889],[426637,26033,1910],[427061,25494,9608],[431087,27503,2022],[431656,27539,11269],[431495,27104,2002],[431995,27348,2029],[431954,27381,2064],[432289,27523,9841],[431038,27244,2001],[426528,25943,10711],[426453,25556,10361],[426545,25728,1852],[426936,25440,1796],[426749,25942,9316],[426753,25677,9887],[447233,27588,1647],[447698,27463,1655],[445071,26580,3041],[445086,26082,4160],[446543,25407,9104],[446568,25719,8890],[446489,25609,1347],[447888,26827,3874],[448014,26673,3908],[448040,26983,3714],[445601,24560,8715],[445814,24509,1210],[446552,25843,7743],[446460,25117,9752],[446283,25510,8765],[447100,25468,3663],[442241,28031,1944],[442161,27883,1917],[445380,23828,4195],[445486,24087,2259],[445271,24055,1135],[444921,25077,2149],[444963,24998,1500],[444554,26100,1510],[445010,24234,1202],[445156,24448,2793],[445131,24520,7628],[445672,26272,6599],[448314,26343,4361],[448394,26725,4792],[445218,24659,1611],[444578,25585,2373],[444988,24638,1310],[444986,25413,4989],[445192,25280,6370],[444349,24959,1436],[445290,23662,1071],[445311,23198,1029],[432241,27606,2062],[446311,27776,1527],[445856,27549,1640],[445946,27429,3116],[447077,25963,8971],[447160,25826,3826],[445319,24389,4856],[445281,24525,5389],[445249,24446,1237],[445928,24415,8364],[446005,24343,6107],[446108,24526,8467],[445510,24816,6094],[446109,25287,7978],[445575,24375,5295],[446322,24593,8704],[446291,24894,9020],[445468,24889,6755],[445231,25208,5770],[445811,24280,5785],[448799,26641,4975],[449005,26733,1284],[446272,26841,8074],[446014,26694,5425],[447258,26802,3437],[447616,26820,3456],[447532,27102,1391],[447616,26405,3857],[445259,25786,7117],[445130,25775,7077],[444836,25220,3460],[447361,25595,8549],[446785,25110,7863],[448637,28261,1521],[450623,29674,1603],[446009,30429,2061],[445638,27059,4691],[445834,23971,5585],[445016,25198,4627],[444932,25265,5991],[446608,26322,8363],[446315,26681,3571],[447314,26630,4538],[446811,26639,3987],[447190,26400,5326],[446404,27368,3585],[447227,26214,4831],[447317,26206,3310],[446805,27432,2457],[446862,27301,1566],[446935,27375,4400],[446587,26556,7632],[447745,27499,5835],[447279,27364,2694],[446114,26303,7537],[446044,26488,8257],[446001,26417,5742],[445047,24179,4799],[445088,24133,4116],[445541,24274,1213],[445350,24151,4473],[445525,24320,6171],[445736,24049,2815],[446098,25510,8756],[446270,26033,8649],[445030,23834,1129],[445156,23577,4273],[448566,26795,3179],[448427,27041,4683],[447667,27054,3389],[447961,27432,1773],[448954,26384,1196],[451147,27035,1230],[450873,27093,1373],[449456,27039,1341],[448801,26430,3670],[449910,27302,1341],[450252,27793,1608],[450009,28004,1454],[445566,23890,1042],[446775,27677,1574],[446902,27038,4550],[446033,25658,7574],[447350,26399,5466],[447078,26238,8475],[444741,26123,4102],[444730,23537,1160],[445419,23761,3577],[448442,26864,1316],[448114,27070,3788],[448235,27295,1512],[448177,26934,1351],[447878,27012,1373],[448593,26619,4590],[451338,27200,1417],[448490,27210,1359],[457663,26020,1102],[456382,35155,1632],[451579,27604,1268],[451711,27449,3881],[450419,27012,4174],[451823,27452,1193],[451570,27783,1282],[445396,32229,2102],[446606,33115,2112],[445606,24858,8257],[445862,24032,8142],[446376,26486,4798],[452072,26951,1087],[451862,26643,1063],[445641,23958,4464],[445599,23984,5144],[445905,24195,7883],[445204,25154,7500],[445058,25138,3971],[444670,24795,1370],[451144,27166,1379],[451926,26996,1053],[444460,25427,1420],[444369,24562,1367],[446042,24926,9318],[446047,25142,8706],[445813,24959,8909],[445641,25319,7932],[445887,25402,7396],[445805,25578,8632],[446531,24807,8751],[445825,26626,7603],[445663,26001,6969],[445287,26117,6913],[447536,26249,5165],[447187,26960,2134],[445764,25103,6000],[445667,24997,7721],[449117,33832,2019],[449385,28244,1671],[450308,27281,1539],[452095,26981,3434],[452207,26969,1005],[450827,27877,1624],[449650,28442,1517],[450952,28909,1496],[450578,29347,1569],[450651,29440,3585],[445651,25181,8288],[444858,25504,6863],[439976,29464,2082],[446652,25049,10141],[446708,25275,9055],[446483,26261,8622],[446058,25964,8367],[445833,30081,1909],[443624,31102,2102],[446438,27696,3451],[446567,25182,9868],[447650,26735,3748],[451229,27850,1327],[451021,27151,3298],[448349,26355,4643],[448539,26202,3885],[448530,26368,5827],[448542,26487,3408],[448307,26065,4764],[447653,25975,3381],[444987,26722,1604],[446110,26048,7946],[445465,25617,6303],[445049,23406,1092],[436307,28419,2032],[450384,27933,1428],[453051,35603,2034],[436980,24057,1561],[314430,207249,1230],[316355,206791,1242],[314669,208453,1202],[318361,208953,1172],[316687,208899,1192],[317776,207285,1242],[319271,208784,1152],[320047,208371,1142],[319771,206542,1242],[323142,202960,1232],[327150,199075,1202],[325911,201792,1132],[327721,199830,1122],[328956,198774,1112],[333112,193411,1136],[330830,197303,1092],[312886,207209,1162],[313587,207937,1202],[312712,207384,1162],[313778,207489,1198],[319147,201156,1215],[320122,199958,1102],[319727,202427,1245],[319867,203514,1242],[319468,203160,7771],[320609,207872,1142],[321523,205143,1232],[363109,162872,1052],[361573,161240,1002],[361761,161057,1012],[364263,163928,1032],[363554,163787,1052],[364176,162373,1052],[364017,161209,1052],[362192,160639,1022],[363749,160169,1042],[363387,159480,1012],[362908,163067,1052],[362755,167217,8025],[362740,166993,1190],[363460,167065,992],[319004,203336,1240],[317349,204086,1252],[318390,202041,1213],[364237,164921,1022],[362338,165975,1056],[362458,164939,1056],[362638,166297,1058],[319238,201842,1206],[319510,202253,9956],[319333,202553,1225],[346165,182707,1105],[346507,182992,1070],[345923,183129,1115],[346931,180864,15344],[347250,181268,14727],[346905,181042,1156],[349509,181935,941],[351591,180056,892],[347816,183572,9642],[347267,180561,1172],[348781,181202,14764],[348703,181387,1054],[348630,181341,12375],[348357,182038,7234],[348401,182176,988],[348275,182166,12316],[347764,180836,1125],[347342,180529,12886],[357201,174332,942],[354706,177010,922],[352732,174699,1131],[362586,166308,7340],[362355,166095,4514],[362686,166667,1042],[362534,166786,2282],[363036,167838,992],[362775,167364,992],[313895,208084,1202],[321947,203319,1273],[321612,204086,1232],[321461,202706,1253],[314335,206482,1320],[316083,205747,1262],[335581,191314,9861],[335697,191227,6975],[335614,191344,1186],[348948,180230,1110],[348762,178829,1121],[349609,180456,1027],[347358,181270,1116],[347589,181282,10287],[346832,180804,14063],[346855,180668,1154],[346952,181401,1140],[346325,181582,1130],[346591,181158,1160],[347297,181312,10805],[347038,181655,11031],[345129,182313,1144],[343219,184235,1114],[342057,184895,1121],[346997,181745,1131],[336667,192051,10285],[336864,191883,1067],[336989,192075,14690],[339073,187565,1119],[347224,180230,1173],[347678,180163,1170],[347406,181655,1067],[346029,181660,1127],[346120,182362,1113],[345789,182093,1149],[343494,187404,982],[339758,190031,1023],[347720,180492,1149],[348444,182504,982],[348833,182403,979],[348353,181540,8116],[348745,181731,979],[349039,180939,1065],[348656,181009,1088],[348610,180651,1109],[348032,181289,4071],[348267,181107,1085],[348991,180577,1079],[349307,180854,10589],[349418,181222,994],[349374,180868,1031],[349661,180913,9921],[339190,190788,1009],[339440,190373,1027],[339488,190758,981],[334433,192736,1183],[334519,193426,1108],[333550,192918,1273],[346279,181220,1147],[336300,191898,9689],[335882,191383,9267],[336224,191419,5321],[336634,190105,1162],[337462,189421,13922],[337133,190013,1173],[339630,190263,8131],[339490,190844,992],[346544,180804,1168],[336942,191422,9695],[337272,191077,1146],[337318,191392,1188],[335614,192896,12391],[335958,192848,12277],[336138,193030,9785],[337925,188830,1141],[338108,190208,1145],[337543,189560,1157],[338294,191678,1011],[338132,191276,12766],[338246,191292,1057],[337636,190265,1141],[337528,191954,10153],[337363,191790,1081],[337424,191320,9883],[336787,191058,8205],[336251,190843,1191],[336119,190767,13686],[336209,190505,1231],[338213,190281,15733],[338155,190574,1117],[337163,190858,13787],[337230,190707,1242],[338524,190197,1094],[338533,190336,13562],[337732,191006,1116],[337184,190388,1200],[337683,190627,1136],[337541,191298,11557],[337703,190600,8021],[337891,190244,11310],[337388,191420,15867],[338427,191499,9914],[348226,180772,1130],[348482,180704,4908],[348176,180397,1138],[347627,179797,1155],[348038,179348,1161],[337774,191349,1059],[337820,191698,1057],[338989,191169,982],[339401,190852,12193],[320703,201104,12170],[320762,201386,12471],[320602,201128,1348],[320393,202284,1233],[321435,202522,10045],[335308,191431,1195],[335821,191275,13264],[336299,191219,1172],[362047,165655,1056],[362093,165996,1063],[345713,181839,10289],[345500,182185,1112],[336737,190734,1421],[336682,190451,1185],[337023,190431,12635],[338657,191248,997],[338566,190530,1066],[338627,188339,1164],[348208,181655,5847],[348431,181965,14870],[348199,181933,11682],[348951,181363,10274],[349083,181286,1035],[349129,181652,991],[348992,181711,10211],[348789,182072,994],[345151,185929,963],[348635,180553,7333],[349036,180418,13240],[347570,179834,6789],[336245,193003,11320],[335978,193505,9682],[348142,181627,11463],[347320,181731,10336],[347478,182337,6776],[347539,182686,1034],[347416,182701,14384],[320492,201080,9396],[320645,201483,1297],[320022,201383,7068],[320301,201011,11480],[320929,201064,10592],[320976,201416,1257],[321370,202021,1246],[321178,202080,12139],[321021,201759,1240],[321143,201171,8524],[336976,190153,5819],[335075,191677,12072],[334382,192365,1160],[335404,192169,1181],[335118,192530,1189],[335421,192759,9946],[336966,190748,4574],[336304,190418,8277],[336622,190774,6450],[347867,181500,1337],[347991,181769,9088],[347726,181802,11245],[347800,182521,10944],[347824,180368,9359],[347918,180488,10447],[348319,180604,9380],[319913,201268,1270],[320224,200755,1677],[320346,200659,3484],[320562,200771,1447],[321272,201277,1253],[321344,201252,11072],[321320,201639,1258],[322360,202869,1270],[322490,202316,1242],[336730,192274,10753],[336690,192227,14470],[336088,192708,9687],[336049,192316,9860],[347084,182426,1100],[346767,182538,1080],[346738,182340,9853],[347488,182029,12137],[347130,182789,1067],[346654,183656,10445],[346898,183219,10466],[347167,183329,9706],[346702,182880,12580],[347583,183043,981],[347136,182908,10057],[346487,182775,9745],[346552,183341,1037],[346277,183635,9379],[345970,183510,1066],[344926,184177,1067],[346017,183871,1044],[345820,184656,995],[346465,182663,1091],[347181,182110,12188],[346723,182185,1119],[346458,182385,10065],[336350,191356,7180],[336694,190963,7095],[349332,180538,1059],[349429,180818,12371],[349464,181579,969],[349174,182041,922],[349366,181684,9874],[349879,180751,970],[349973,181485,933],[349655,180820,988],[337253,191560,13731],[336538,191598,9347],[336347,191582,1165],[336626,191973,14059],[336596,191846,9693],[338903,190476,1053],[318815,201911,1237],[320960,200956,6462],[321757,201899,1252],[322263,202149,1261],[321856,202637,1265],[347806,181170,1109],[334864,193363,1090],[335886,193495,1013],[333818,195062,1053],[335166,192917,1131],[348117,183262,14002],[349700,181167,972],[349118,182214,11024],[346418,182285,1127],[349438,181918,10446],[319542,201023,1245],[319730,200938,9429],[349607,180616,9716],[350220,181074,944],[347039,182080,1107],[346181,182387,10362],[319025,201451,10759],[319927,202208,9828],[319680,202075,1241],[320481,200567,5458],[320502,200452,1201],[320596,200493,7142],[320275,200533,7437],[320469,200611,9907],[321834,201837,7769],[346696,184026,10344],[346949,183961,988],[346148,184913,942],[346392,184500,947],[344972,184533,1055],[345594,182882,1126],[345667,183168,7134],[349652,181464,8763],[349743,181505,948],[337580,192268,10299],[336957,192597,1031],[337861,192041,1002],[336833,192357,12018],[334817,192999,1117],[334588,193379,8165],[362287,168704,982],[359584,171751,932],[358875,168599,1102],[335753,192411,1153],[335772,192666,10019],[349994,181426,8759],[348067,181808,16009],[319868,200936,1267],[320158,200516,1211],[319818,200562,1248],[320113,200185,1202],[320184,200412,6437],[362528,167295,1276],[362235,166994,1204],[362247,165281,1065],[362428,166670,1045],[361864,167043,1085],[362385,166325,1064],[364015,165772,1022],[322330,202948,7072],[362561,167692,1005],[362054,165422,6710],[361726,165994,1102],[360906,166704,1101],[345495,185146,987],[344484,184288,1090],[344526,184621,1073],[344844,184272,6198],[346071,184632,10082],[345642,183265,1087],[319431,203295,1218],[336554,190895,10856],[319519,200884,6700],[313729,207097,1242],[314145,207108,2118],[314382,206850,1292],[314063,206972,1281],[335978,193505,1012],[347816,183572,972],[324535,201237,2066],[326025,200001,2111],[323719,202321,1983],[336133,189602,7396],[336282,189421,9795],[336350,189622,10357],[345881,180097,1966],[346071,180294,8519],[345927,180436,1987],[326850,199020,2128],[326305,198932,1504],[326800,198650,2116],[335812,190597,1144],[336456,189959,15407],[341359,185211,2045],[335767,190204,1233],[335534,190600,1463],[335049,190631,8697],[335203,190419,6250],[335213,190725,1191],[336496,189030,1238],[336541,189403,1158],[336097,190071,10222],[336083,189800,14975],[336148,189639,1985],[338570,187460,2008],[338522,187110,1985],[338727,187243,1108],[336992,188950,1181],[337074,189141,1963],[335703,190030,9266],[335391,190011,9615],[335462,189794,1941],[339240,186130,1049],[339673,185875,1964],[339722,186202,2037],[336348,189974,13894],[336169,190081,1466],[331054,194259,2086],[331288,193986,1098],[331380,194134,2091],[350019,176825,1116],[339426,187008,2017],[339739,186662,1431],[335995,190015,8920],[358525,168102,2075],[358161,168642,1141],[358154,168129,2005],[339021,186707,1989],[339337,186819,1119],[334991,190312,8477],[336626,189602,1979],[335751,189732,1885],[338153,187412,1073],[338436,186961,1057],[362065,163931,1027],[362372,163737,2060],[335506,190171,1860],[335392,190573,8587],[334564,190789,1670],[334588,191220,1208],[334276,191129,1958],[335181,190306,1512],[326716,198529,1196],[327236,198531,2121],[338788,187535,1433],[359482,166612,2112],[359038,167037,2105],[358683,167202,1006],[333822,191448,1077],[334837,190462,1092],[335294,190909,1976],[346225,180391,1948],[346182,180042,1985],[363051,164037,2151],[362765,164422,2126],[345594,180192,1963],[355642,170240,2099],[355734,170942,2079],[355285,170503,1013],[336098,189308,1913],[341312,184859,2039],[340762,184818,1047],[341265,184516,2025],[349669,176328,2070],[349378,176420,2020],[349578,176191,1054],[352421,173849,2071],[352639,173493,2066],[352656,173941,1481],[345405,180988,2014],[360379,165897,6536],[360056,166458,1054],[360719,165335,1025],[360422,165564,2111],[361238,165145,2094],[361332,165829,2139],[360781,165659,1288],[361648,165296,1296],[362251,164744,2107],[334922,190621,1977],[359479,167155,1082],[359736,166807,1059],[359832,166976,2079],[350265,175690,1155],[349877,175807,1030],[350586,175288,1044],[362163,164082,2110],[360465,165896,2094],[360867,165883,2063],[360510,166231,2109],[363242,163486,1058],[363007,163712,2133],[362956,163391,2014],[361963,164450,2095],[361862,164253,1050],[323252,202068,1968],[323300,202410,2011],[322791,202357,1260],[324405,200731,1211],[326396,198523,1102],[331869,193590,1965],[330961,194112,1079],[334005,192292,2054],[330795,195420,2114],[356334,169760,2118],[356721,170086,2077],[356380,170136,2067],[358783,167370,2091],[359028,167537,1052],[358824,167727,2009],[349007,177597,1995],[348711,177961,2018],[359350,167340,2127],[359254,167152,1149],[358382,167589,1015],[350356,175895,2040],[349971,175958,2060],[327856,198265,2161],[327760,197568,2113],[327973,197347,1147],[328062,197482,2117],[362571,163560,1037],[356128,170552,1932],[355851,170221,2104],[357805,168907,2011],[357709,168188,2018],[349204,177275,1256],[348962,177215,2074],[349194,176780,2048],[356929,168973,2090],[357251,168782,1021],[354941,170925,1018],[355036,171063,2091],[347439,178397,1127],[347851,177986,1075],[347910,178292,1343],[354233,172014,1321],[353379,172524,1074],[358065,167965,1062],[346134,179695,1972],[346484,179922,1977],[354603,171639,1136],[355034,171577,1101],[354689,171847,1947],[352464,174175,2076],[352153,173872,2047],[350399,176216,2043],[352779,172950,1014],[351813,174117,1069],[357855,169235,2106],[357348,168922,2095],[351540,175146,1366],[353052,172895,1046],[353147,173053,2078],[352872,173108,2024],[353954,173007,2068],[353473,172695,2072],[355755,170085,1025],[356041,169826,2056],[347527,178570,2041],[347572,178936,1984],[349101,176625,1039],[336977,188459,1891],[348534,177147,1056],[348190,177524,1053],[346654,178869,1694],[341866,183508,1040],[341175,184360,1052],[339588,185731,1048],[358483,167776,2090],[358873,168071,2053],[359090,167816,1393],[359394,167682,2110],[354271,172394,1148],[348282,177717,1995],[340365,185165,1343],[340854,184991,2019],[341621,184609,1116],[339966,185608,1112],[343011,182404,1618],[343472,182585,2025],[343071,182663,1973],[342286,183579,1997],[341951,183650,1963],[342203,183438,1077],[342535,183215,1978],[342444,183030,1052],[346044,179500,1056],[346350,179402,1066],[342336,183949,2003],[342050,184367,2016],[342003,184013,2018],[342579,183536,2000],[342796,183614,1153],[339331,186308,1989],[342698,182937,1037],[343076,183183,1079],[342748,183263,1127],[344896,180596,1053],[345271,180467,1088],[345359,180643,2004],[329030,196206,1099],[329457,195740,1088],[329545,195845,2094],[361592,164989,1085],[361546,164640,1086],[356237,169623,1009],[345074,181449,1978],[349719,176696,2076],[350642,175606,1233],[348668,177628,2045],[349393,176880,1378],[349467,177082,2046],[352970,173815,2080],[350726,175792,2074],[343518,182927,2020],[331616,194021,2106],[331534,193855,1281],[330747,195057,2118],[331061,194824,1150],[334669,191395,2002],[330700,194717,2085],[334288,191660,1159],[334370,191827,1986],[333103,192852,2049],[332670,193483,1272],[332661,192974,2081],[362860,163195,1048],[338933,186541,1069],[338679,186901,1087],[333880,191756,1313],[346439,179599,1942],[346729,179602,1372],[346710,179144,1956],[347122,179035,1994],[340055,185795,2011],[340437,185361,1985],[344988,181258,1125],[344953,180863,1352],[343780,181813,1639],[343843,182111,1983],[343415,182275,1808],[330329,195213,2097],[337356,188196,1088],[337404,188548,1108],[338234,187558,1950],[337911,188279,1980],[327806,197912,2127],[327508,198032,2124],[328445,197657,2139],[323175,201923,1191],[352727,174155,2081],[352325,173666,1055],[352245,174563,2064],[351947,174608,2031],[351903,174264,2060],[351138,175396,2079],[351091,175060,2054],[352546,173360,1020],[340104,186145,2037],[332258,193437,2095],[332168,193296,1108],[333533,192379,2025],[333925,192145,1220],[330614,194610,1089],[333491,192043,2055],[333054,192477,2044],[329993,195711,2139],[329947,195379,2108],[330244,195076,1159],[328350,196958,2102],[328259,196834,1092],[330355,195686,1581],[329123,196341,2137],[328663,196508,2044],[329596,196208,2137],[327672,197470,1095],[328712,196820,2144],[328757,197169,2137],[327422,197901,1185],[327191,198207,2096],[327100,198057,1110],[353904,172639,2055],[353859,172318,2027],[351527,174664,2087],[351001,174917,1051],[347072,178696,1918],[343887,182436,1990],[344207,182174,1138],[345800,179925,1157],[348595,177403,1427],[348328,178035,2037],[326382,199158,2144],[329640,196555,2104],[328085,197951,1581],[348878,177011,1259],[344114,181520,1054],[344169,181798,1310],[344603,181719,1122],[344569,181309,1411],[344507,181031,1055],[332302,193792,2048],[331660,194354,2097],[331424,194464,2112],[324774,200449,1879],[325176,200456,1510],[324829,200725,2126],[323904,201322,1202],[323622,201578,1996],[324230,201009,2017],[323982,201487,1963],[325114,200141,1235],[324486,200853,2090],[323651,202049,1546],[325632,200133,2127],[325921,199384,1813],[325574,199844,1867],[337867,187951,1972],[330037,196067,2096],[338276,187919,1859],[325976,199655,2081],[359539,167415,1433],[321565,101452,7022],[316136,108781,7022],[318329,98955,7022],[318266,97697,7022],[318913,98197,7022],[312086,105772,7022],[317461,98548,7022],[318173,97626,7022],[321565,101452,482],[316136,108781,482],[321565,101452,3622],[316136,108781,3622],[318329,98955,482],[318913,98197,482],[318266,97697,482],[318173,97626,482],[317461,98548,482],[312086,105772,482],[326728,103507,3622],[320407,112038,3622],[320158,111769,3622],[324474,101768,3622],[324026,98263,3622],[324885,98926,3622],[320119,111821,3622],[326728,103507,482],[320407,112038,482],[326728,103507,3612],[320407,112038,3612],[324474,101768,482],[324885,98926,482],[324026,98263,482],[320158,111769,482],[320119,111821,482],[326772,103541,3612],[332412,103931,3612],[328622,101071,3612],[332412,103931,472],[328622,101071,472],[326772,103541,472],[326728,103507,472],[320407,112038,472],[324212,70905,3332],[315416,63807,3332],[325717,75056,3332],[322904,72789,3332],[322787,72695,3332],[315416,63807,392],[315416,63807,422],[324212,70905,392],[324212,70905,422],[322787,72695,392],[322787,72695,422],[322904,72789,392],[242641,106650,3712],[250615,112571,3712],[242651,106667,3712],[248667,115309,3712],[242584,106710,3712],[239452,108734,3712],[242641,106650,422],[242641,106650,3532],[250615,112571,3532],[242651,106667,422],[242584,106710,422],[239452,108734,422],[239452,108734,3722],[248667,115309,3722],[248099,116108,3722],[250284,117662,3722],[248559,120087,3722],[235960,110991,422],[245458,117882,422],[296708,117959,3212],[292089,119783,3212],[300072,109133,3212],[292365,119989,3212],[292588,123477,3212],[290772,122121,3212],[303927,112023,582],[298495,119282,582],[300072,109133,582],[300072,109133,3142],[292089,119783,582],[292089,119783,3142],[292365,119989,582],[290772,122121,582],[292588,123477,582],[296708,117959,582],[314171,94666,4352],[308080,102796,4352],[314101,94612,4352],[305788,100976,4352],[311270,92427,4352],[311966,89166,4352],[313107,90047,4352],[304038,99752,4352],[304323,99873,4352],[304239,99985,4352],[303999,99804,4352],[305704,101088,4352],[308041,102848,4352],[314171,94666,532],[308080,102796,532],[314101,94612,532],[311270,92427,532],[313107,90047,532],[311966,89166,532],[304038,99752,532],[303999,99804,532],[304239,99985,532],[304323,99873,532],[305788,100976,532],[305704,101088,532],[308041,102848,532],[275487,95750,4292],[277386,97204,4292],[275086,96274,4292],[266754,90749,4292],[266653,90599,4292],[266928,90632,4292],[267576,90197,4292],[267530,90011,4292],[268184,90988,4292],[267476,90048,4292],[273922,98160,4292],[266828,90482,4292],[266106,91183,4292],[272802,99660,4292],[272509,99441,4292],[265914,91095,4292],[266006,91033,4292],[263469,92458,4292],[265675,90738,4292],[263358,92292,4292],[263442,92476,4292],[275565,99388,4292],[275687,99479,4292],[275487,95750,452],[277386,97204,452],[275487,95750,462],[277386,97204,462],[275086,96274,452],[275086,96274,462],[268184,90988,452],[268184,90988,462],[267530,90011,452],[263442,92476,4012],[272509,99441,452],[272509,99441,4012],[272802,99660,452],[273922,98160,452],[275565,99388,452],[275565,99388,662],[275565,99388,2862],[275687,99479,452],[275687,99479,662],[275687,99479,2862],[261311,95816,4012],[268781,99073,4012],[260000,94772,4012],[262643,92771,4012],[262755,92937,4012],[259894,94614,4012],[260810,95435,4012],[259967,94794,4012],[260592,95722,4012],[261093,96103,4012],[271351,100992,4012],[267628,100616,4012],[263442,92476,432],[272509,99441,432],[259894,94614,432],[260000,94772,432],[259967,94794,432],[259967,94794,4002],[260810,95435,432],[260810,95435,4002],[260592,95722,432],[260592,95722,4002],[261093,96103,432],[261093,96103,4002],[261311,95816,432],[261311,95816,4002],[267628,100616,432],[267628,100616,4002],[268781,99073,432],[271351,100992,432],[317461,98548,7642],[312086,105772,7642],[314380,96170,7642],[314171,94666,7642],[315030,95329,7642],[308080,102796,7642],[314380,96170,482],[315030,95329,482],[314171,94666,482],[308080,102796,482],[266612,101977,4002],[267927,105623,4002],[256054,97221,4002],[259286,95251,4002],[257982,95896,4002],[259180,95093,4002],[269207,103914,4002],[261311,95816,422],[267628,100616,422],[261093,96103,422],[260592,95722,422],[260810,95435,422],[259967,94794,422],[259286,95251,422],[259180,95093,422],[257982,95896,422],[256054,97221,422],[267927,105623,422],[269207,103914,422],[266612,101977,422],[284629,97909,2902],[284611,97797,2902],[284676,97845,2902],[278575,106760,2902],[277332,103623,2902],[277273,108504,2902],[276816,109378,2902],[275127,106624,2902],[284489,97659,2902],[284664,97725,2902],[284518,97618,2902],[277167,100588,2902],[283785,97147,2902],[283815,97106,2902],[281203,95205,2902],[281077,95373,2902],[275762,102462,2902],[273524,105447,2902],[271299,108414,2902],[275386,111292,2902],[277399,108598,2902],[284629,97909,622],[278575,106760,622],[284676,97845,622],[284611,97797,622],[284664,97725,622],[284518,97618,622],[284489,97659,622],[283785,97147,622],[283815,97106,622],[281203,95205,622],[281077,95373,622],[277167,100588,622],[277167,100588,662],[277167,100588,2862],[275762,102462,622],[275762,102462,662],[275762,102462,2862],[277332,103623,622],[275127,106624,622],[273524,105447,622],[273524,105447,662],[273524,105447,2862],[271299,108414,622],[271299,108414,662],[271299,108414,2862],[275386,111292,622],[276816,109378,622],[277399,108598,622],[277273,108504,622],[288352,100511,3332],[282894,107738,3332],[281183,106472,3332],[285324,98415,3332],[285371,98351,3332],[278575,106760,3332],[284629,97909,3332],[280111,107907,3332],[288352,100511,592],[282894,107738,592],[288352,100511,642],[282894,107738,642],[288352,100511,3312],[282894,107738,3312],[285371,98351,592],[285324,98415,592],[284629,97909,592],[278575,106760,592],[280111,107907,592],[281183,106472,592],[253797,98830,2692],[260846,103843,2692],[252978,99386,2692],[252813,99500,2692],[252756,99539,2692],[252584,99659,2692],[251832,100239,2692],[251803,100198,2692],[256694,109681,2692],[251635,100376,2692],[247639,103079,2692],[251606,100335,2692],[247339,103347,2692],[247459,103204,2692],[247418,103232,2692],[247311,103306,2692],[253797,98830,412],[252978,99386,412],[252813,99500,412],[252756,99539,412],[252584,99659,412],[251803,100198,412],[251832,100239,412],[251635,100376,412],[251606,100335,412],[247639,103079,412],[247459,103204,412],[247418,103232,412],[247311,103306,412],[247339,103347,412],[247339,103347,422],[256694,109681,412],[284886,109212,3312],[282523,116259,3312],[280662,114869,3312],[292252,103337,3312],[292241,103329,3312],[292252,103337,642],[282523,116259,642],[292241,103329,642],[284886,109212,642],[280662,114869,642],[296202,106265,3312],[290725,113533,3312],[289095,112327,3312],[284857,118002,3312],[296202,106265,602],[290725,113533,602],[296202,106265,3142],[290725,113533,3142],[292252,103337,602],[282523,116259,602],[284857,118002,602],[289095,112327,602],[247339,103347,3532],[256694,109681,3532],[247190,103432,3532],[247202,103448,3532],[255514,116056,3532],[258922,111265,3532],[247202,103448,422],[247190,103432,422],[291454,116686,3142],[291668,116846,3142],[290197,118370,3142],[292926,115161,3142],[300072,109133,572],[292089,119783,572],[296202,106265,572],[290725,113533,572],[292926,115161,572],[291668,116846,572],[291454,116686,572],[290197,118370,572],[278796,93349,4552],[279734,94059,4552],[278748,93413,4552],[271242,88061,4552],[271358,87914,4552],[278151,92962,4552],[271448,87794,4552],[278200,92899,4552],[279609,94227,4552],[271245,87911,4552],[275487,95750,4552],[277386,97204,4552],[270215,87885,4552],[270317,87888,4552],[270314,88038,4552],[268158,89072,4552],[270126,87752,4552],[268398,89429,4552],[268418,89657,4552],[268306,89491,4552],[268184,90988,4552],[267770,90091,4552],[267530,90011,4552],[267658,89925,4552],[275086,96274,4552],[278796,93349,462],[279734,94059,462],[278748,93413,462],[278151,92962,462],[278200,92899,462],[279609,94227,462],[269878,107003,2862],[271217,108003,2862],[271044,108235,2862],[269878,107003,662],[271217,108003,662],[271044,108235,662],[285255,79041,7572],[285101,79074,7572],[285230,78998,7572],[282017,83298,7572],[283768,79886,7572],[284660,85282,7572],[284805,79257,7572],[285061,79004,7572],[284763,79189,7572],[284029,79736,7572],[284946,85484,7572],[293415,85075,7572],[283987,79668,7572],[283731,79826,7572],[281832,81082,7572],[281565,81549,7572],[281696,82796,7572],[281489,81212,7572],[281796,81022,7572],[281449,81216,7572],[281485,81557,7572],[281616,82804,7572],[281703,83150,7572],[281653,83155,7572],[281975,83354,7572],[284618,85338,7572],[284898,85548,7572],[290183,89408,7572],[285255,79041,442],[293415,85075,442],[293415,85075,522],[293415,85075,3782],[285230,78998,442],[285101,79074,442],[285061,79004,442],[284763,79189,442],[284805,79257,442],[284029,79736,442],[283987,79668,442],[283731,79826,442],[283768,79886,442],[281832,81082,442],[281796,81022,442],[281489,81212,442],[281449,81216,442],[281485,81557,442],[281565,81549,442],[281696,82796,442],[281616,82804,442],[281653,83155,442],[281703,83150,442],[281975,83354,442],[282017,83298,442],[284660,85282,442],[284618,85338,442],[284898,85548,442],[284946,85484,442],[290183,89408,442],[290183,89408,522],[290183,89408,3782],[289448,76581,7572],[296144,81421,7572],[286005,78543,7572],[288665,76982,7572],[288691,77026,7572],[286030,78586,7572],[293456,85105,7572],[289448,76581,422],[296144,81421,422],[289448,76581,432],[289448,76581,3612],[296144,81421,3612],[288691,77026,422],[288665,76982,422],[286005,78543,422],[286030,78586,422],[285255,79041,422],[293415,85075,422],[293456,85105,422],[293456,85105,3782],[299707,85805,3782],[294575,92699,3782],[295979,86971,3782],[297830,84435,3782],[293444,85121,3782],[294375,92474,3782],[291143,90052,3782],[291107,90100,3782],[293647,91929,3782],[292519,91084,3782],[293611,91977,3782],[292483,91132,3782],[294339,92522,3782],[294575,92699,522],[299707,85805,3482],[294575,92699,3482],[291107,90100,522],[291143,90052,522],[292519,91084,522],[292483,91132,522],[293611,91977,522],[293647,91929,522],[294375,92474,522],[294339,92522,522],[296317,81184,3612],[293011,74542,3612],[298591,82844,3612],[290849,75673,3612],[290977,75595,3612],[291060,75731,3612],[290745,75829,3612],[290704,75761,3612],[289995,76287,3612],[289953,76218,3612],[289423,76538,3612],[307471,85698,3612],[300675,84679,3612],[298442,83049,3612],[303152,86371,3612],[305534,88209,3612],[303094,86446,3612],[300666,84691,3612],[293011,74542,432],[307471,85698,432],[291060,75731,432],[290977,75595,432],[290849,75673,432],[290704,75761,432],[290745,75829,432],[289995,76287,432],[289953,76218,432],[289423,76538,432],[300666,84691,432],[300666,84691,3482],[303094,86446,432],[303094,86446,512],[303094,86446,3482],[303152,86371,432],[305534,88209,432],[297421,71719,3632],[293167,74447,3632],[293211,74232,3632],[293083,74310,3632],[308700,83175,3632],[307471,85698,3632],[293011,74542,3632],[309150,83523,3632],[307585,85551,3632],[310121,81333,3632],[297421,71719,432],[310121,81333,432],[297421,71719,3212],[310121,81333,3212],[293211,74232,432],[293083,74310,432],[293167,74447,432],[307585,85551,432],[309150,83523,432],[308700,83175,432],[301931,87954,3482],[301057,87279,3482],[299350,89491,3482],[299803,85875,3482],[294815,92804,3482],[295527,93338,3482],[298894,95920,3482],[301998,91535,3482],[294779,92852,3482],[295491,93386,3482],[299350,89491,512],[301998,91535,512],[301998,91535,522],[301057,87279,512],[301931,87954,512],[299707,85805,512],[294575,92699,512],[294779,92852,512],[294815,92804,512],[295527,93338,512],[295491,93386,512],[298894,95920,512],[298894,95920,522],[309662,74799,3212],[305046,72056,3212],[306096,72012,3212],[301740,70990,3212],[303297,70652,3212],[302106,69696,3212],[301213,69791,3212],[301961,69411,3212],[301318,70108,3212],[301115,69841,3212],[301265,70135,3212],[300849,71465,3212],[300485,71174,3212],[300020,70398,3212],[312896,77738,3212],[313106,77491,3212],[309662,74799,422],[313106,77491,422],[306096,72012,422],[305046,72056,422],[303297,70652,422],[302106,69696,422],[301961,69411,422],[297421,71719,422],[310121,81333,422],[312896,77738,422],[308637,91517,6312],[304038,99752,6312],[301998,91535,6312],[311966,89166,6312],[309245,90729,6312],[310164,87775,6312],[308392,90071,6312],[304485,88313,6312],[298894,95920,6312],[311966,89166,522],[304038,99752,522],[310164,87775,522],[308392,90071,522],[309245,90729,522],[308637,91517,522],[304485,88313,522],[324212,70905,6592],[322787,72695,6592],[315416,63807,6592],[318955,77641,6592],[309811,66170,6592],[307588,68879,6592],[318753,77889,6592],[322904,72789,6592],[309811,66170,422],[307588,68879,422],[318753,77889,422],[331953,177538,6512],[332072,177660,6512],[328396,181227,6512],[321097,173980,6512],[325634,169480,6512],[332644,176868,6512],[332956,176802,6512],[332762,176990,6512],[325634,169480,592],[332956,176802,592],[321097,173980,592],[321097,173980,602],[321097,173980,4962],[328396,181227,592],[328396,181227,602],[328396,181227,4962],[332072,177660,592],[331953,177538,592],[332644,176868,592],[332762,176990,592],[316455,176669,4962],[320140,173015,4962],[317163,177483,4962],[316405,176719,4962],[325542,183891,4962],[324657,184882,4962],[324774,184631,4962],[324843,184703,4962],[325611,183963,4962],[328424,181255,4962],[320140,173015,602],[316455,176669,602],[316405,176719,602],[317163,177483,602],[317163,177483,612],[317163,177483,3442],[324657,184882,602],[324657,184882,612],[324657,184882,3442],[324843,184703,602],[324774,184631,602],[325542,183891,602],[325611,183963,602],[328424,181255,602],[288911,148046,3492],[282802,156786,3492],[287275,146884,3492],[288786,144779,3492],[290394,145896,3492],[279627,154543,3492],[285741,145795,3492],[288911,148046,852],[282802,156786,852],[288911,148046,872],[290394,145896,852],[288786,144779,852],[288786,144779,3392],[287275,146884,852],[287275,146884,1022],[287275,146884,3392],[285741,145795,852],[285741,145795,1022],[285741,145795,3392],[288907,151557,3692],[288911,148046,3692],[291397,147971,3692],[290602,147418,3692],[290394,145896,3692],[291247,146489,3692],[282802,156786,3692],[290368,152572,3692],[285895,158972,3692],[290368,152572,872],[290368,152572,3482],[285895,158972,872],[285895,158972,3482],[292764,174709,3382],[286234,183959,3382],[287795,175352,3382],[289759,172580,3382],[283137,181760,3382],[287725,175302,3382],[286234,183959,752],[283137,181760,752],[289172,161287,3482],[291133,158482,3482],[292285,149829,3482],[295561,152147,3482],[293402,155236,3482],[294120,179648,3392],[289449,186241,3392],[292613,178581,3392],[293735,174008,3392],[295145,175007,3392],[294849,175425,3392],[292764,174709,3392],[286234,183959,3392],[293142,174176,3392],[293419,173784,3392],[294120,179648,752],[289449,186241,752],[289449,186241,762],[299743,178853,3472],[292838,188647,3472],[294120,179648,3472],[296375,176466,3472],[289449,186241,3472],[299743,178853,762],[292838,188647,762],[292838,188647,772],[299768,178870,3482],[303258,177423,3482],[301283,180136,3482],[299036,183223,3482],[301641,176246,3482],[299743,178853,3482],[292838,188647,3482],[300669,184528,3482],[295734,190703,3482],[299036,183223,772],[300669,184528,772],[301283,180136,772],[295734,190703,772],[297606,163114,3692],[297010,162788,3692],[297055,162724,3692],[306304,169098,3692],[297419,167823,3692],[294771,165948,3692],[303966,172337,3692],[297606,163114,3642],[306304,169098,3642],[297419,167823,3542],[303966,172337,3542],[295659,171292,3542],[295170,170939,3542],[301616,175592,3542],[297419,167823,902],[303966,172337,902],[313672,195421,3402],[312750,196309,3402],[307093,187853,3402],[300705,194189,3402],[297256,191823,3402],[300572,192262,3402],[298508,190251,3402],[298658,190397,3402],[301782,193120,3402],[309869,199084,3402],[309946,199163,3402],[309485,199607,3402],[307403,200439,3402],[307829,200837,3402],[308461,200517,3402],[308041,201075,3402],[307816,200852,3402],[308537,200596,3402],[309408,199528,3402],[311310,197697,3402],[314159,194917,3402],[310813,198175,3402],[310889,198254,3402],[311386,197776,3402],[312246,196795,3402],[312826,196388,3402],[312322,196874,3402],[314253,195014,3402],[313748,195500,3402],[307093,187853,762],[314159,194917,762],[301782,193120,762],[300572,192262,762],[298658,190397,762],[298508,190251,762],[297256,191823,762],[300705,194189,762],[307403,200439,762],[307829,200837,762],[307816,200852,762],[308041,201075,762],[308537,200596,762],[308461,200517,762],[309408,199528,762],[309485,199607,762],[309946,199163,762],[309869,199084,762],[310813,198175,762],[310889,198254,762],[311386,197776,762],[311310,197697,762],[312246,196795,762],[312322,196874,762],[312826,196388,762],[312750,196309,762],[313672,195421,762],[313748,195500,762],[314253,195014,762],[299111,159430,3642],[308584,165940,3642],[299236,160814,3642],[298500,160292,3642],[299111,159430,912],[308584,165940,912],[299111,159430,3452],[308584,165940,3452],[313000,159823,3452],[311127,162417,3452],[308988,156802,3452],[313059,159741,3452],[310952,162660,3452],[304385,157918,3452],[306492,155000,3452],[301498,155806,3452],[308744,165718,3452],[299036,159377,3452],[298942,159308,3452],[313000,159823,3352],[311127,162417,3352],[310485,184487,4512],[317462,191694,4512],[317294,191858,4512],[307093,187853,4512],[314159,194917,4512],[310485,184487,662],[317462,191694,662],[310485,184487,3412],[317462,191694,3412],[307093,187853,662],[314159,194917,662],[317294,191858,662],[314327,182023,3412],[320784,188453,3412],[312691,180394,3412],[309519,183489,3412],[314327,182023,642],[320784,188453,642],[312691,180394,642],[309519,183489,642],[310485,184487,642],[317462,191694,642],[324384,184979,3442],[316408,179960,3442],[315544,179089,3442],[320784,188453,3442],[314327,182023,3442],[323662,185680,3442],[320878,188549,3442],[323746,185766,3442],[324468,185065,3442],[315544,179089,612],[316408,179960,612],[314327,182023,612],[320784,188453,612],[320878,188549,612],[323746,185766,612],[323662,185680,612],[324384,184979,612],[324468,185065,612],[255553,149470,6002],[249682,157867,6002],[250776,148722,6002],[252027,146963,6002],[246297,155387,6002],[255553,149470,632],[249682,157867,632],[249682,157867,642],[255553,149470,5062],[249682,157867,5062],[250776,148722,3492],[246297,155387,632],[246297,155387,3492],[259601,152388,5062],[261957,148485,5062],[262285,148725,5062],[253525,160683,5062],[258146,145761,5062],[259601,152388,642],[253525,160683,642],[259601,152388,732],[259601,152388,3212],[253525,160683,3212],[262285,148725,642],[262285,148725,732],[262285,148725,3212],[261957,148485,642],[261957,148485,3212],[261558,155572,3212],[262506,154431,3212],[259635,157930,3212],[256062,162600,3212],[261558,155572,642],[259635,157930,642],[262506,154431,642],[262506,154431,732],[256062,162600,642],[267792,156450,3202],[260949,166074,3202],[263965,158748,3202],[266311,155371,3202],[257683,163769,3202],[262287,157536,3202],[262204,157476,3202],[267792,156450,672],[260949,166074,672],[260949,166074,682],[257683,163769,672],[263821,152709,3212],[265460,150560,3212],[265672,150282,3212],[263454,146531,3212],[266773,148837,3212],[262531,154401,3212],[265460,150560,732],[263821,152709,732],[265672,150282,732],[266773,148837,732],[266773,148837,742],[263454,146531,732],[262531,154401,732],[270365,159537,3382],[264082,168286,3382],[268788,158399,3382],[267792,156450,3382],[269351,157584,3382],[260949,166074,3382],[270365,159537,682],[264082,168286,682],[264082,168286,712],[270365,159537,3372],[264082,168286,3372],[274059,160802,3372],[267277,170541,3372],[272044,160688,3372],[272689,159744,3372],[270580,159692,3372],[270638,159611,3372],[270451,159599,3372],[274059,160802,712],[267277,170541,712],[267277,170541,732],[274059,160802,3312],[267277,170541,3312],[276535,160850,3312],[275055,162889,3312],[273287,165325,3312],[274359,160424,3312],[274992,159626,3312],[274887,166422,3312],[270371,172725,3312],[274887,166422,3302],[270371,172725,732],[270371,172725,3302],[280410,165385,3302],[273617,175016,3302],[278215,165241,3302],[278937,164294,3302],[276699,164113,3302],[273617,175016,732],[283719,167628,3302],[276879,177318,3302],[282042,166469,3302],[281125,165914,3302],[281185,165834,3302],[276879,177318,732],[286221,170789,3482],[279959,179504,3482],[284627,169698,3482],[284645,169673,3482],[276879,177318,3482],[283584,168997,3482],[283719,167628,3482],[284266,168007,3482],[286221,170789,722],[279959,179504,722],[279959,179504,742],[283719,167628,722],[276879,177318,722],[287725,175302,3572],[283137,181760,3572],[286184,174211,3572],[286221,170789,3572],[288447,171017,3572],[279959,179504,3572],[286858,169891,3572],[287725,175302,742],[283137,181760,742],[243206,140143,3472],[241698,137373,3472],[244041,139015,3472],[237003,148528,3472],[240434,139151,3472],[233982,146308,3472],[243206,140143,542],[237003,148528,542],[237003,148528,562],[233982,146308,542],[246198,142342,3472],[240105,150808,3472],[246198,142342,562],[240105,150808,562],[240105,150808,572],[249189,144540,3482],[243208,153088,3482],[243152,153047,3482],[240105,150808,3482],[246198,142342,3482],[249189,144540,572],[243208,153088,572],[243208,153088,602],[243152,153047,572],[249067,147507,3492],[243208,153088,3492],[251722,144918,3492],[251072,145832,3492],[250531,145447,3492],[249854,143589,3492],[249189,144540,3492],[250776,148722,602],[246297,155387,602],[271791,135405,4442],[272838,133968,4442],[273004,136289,4442],[274068,134829,4442],[267552,130267,4442],[269871,138042,4442],[264198,134874,4442],[269483,138574,4442],[269777,138171,4442],[269836,138090,4442],[271791,135405,1062],[269871,138042,1062],[273004,136289,1062],[269777,138171,1062],[269836,138090,1062],[288327,137900,3582],[283106,139141,3582],[288245,137842,3582],[285377,135915,3582],[285423,135849,3582],[290251,142670,3582],[293331,141434,3582],[292843,144470,3582],[289536,143700,3582],[294409,142215,3582],[293424,141500,3582],[293343,141443,3582],[288327,137900,952],[293331,141434,952],[288245,137842,952],[285423,135849,952],[285377,135915,952],[283106,139141,952],[283106,139141,1022],[283106,139141,3392],[289536,143700,952],[289536,143700,3392],[293424,141500,952],[293343,141443,952],[279265,141197,3772],[273239,150030,3772],[278332,140535,3772],[269953,147709,3772],[276086,138940,3772],[269921,147686,3772],[279265,141197,852],[273239,150030,852],[279265,141197,902],[279265,141197,1022],[279265,141197,3392],[279265,141197,3662],[273239,150030,3662],[278332,140535,852],[278332,140535,1022],[278332,140535,3392],[276086,138940,852],[269921,147686,852],[282413,143432,3392],[278842,139800,3392],[281394,141573,3392],[281394,141573,1022],[278842,139800,1022],[282413,143432,1022],[266866,148715,4602],[263454,146531,4602],[267637,147718,4602],[266773,148837,4602],[271984,141966,4602],[268012,140591,4602],[268771,139552,4602],[266866,148715,742],[267637,147718,742],[271984,141966,742],[268771,139552,742],[268012,140591,742],[282413,143432,3662],[276392,152258,3662],[282413,143432,902],[282429,146923,3692],[279627,154543,3692],[276392,152258,3692],[282413,143432,3692],[283157,145876,3692],[283168,147437,3692],[285741,145795,3692],[283896,146390,3692],[285741,145795,842],[279627,154543,842],[282413,143432,842],[276392,152258,842],[283157,145876,842],[282429,146923,842],[283896,146390,842],[283168,147437,842],[405917,99519,9022],[408923,102395,9022],[408845,102478,9022],[405841,106035,9022],[405800,99642,9022],[404087,98098,9022],[400383,95053,9022],[400456,94957,9022],[397473,98888,9022],[409113,102730,9022],[400456,94957,732],[397473,98888,732],[397473,98888,3372],[405841,106035,732],[405841,106035,752],[405841,106035,3372],[409113,102730,732],[408845,102478,732],[413870,97872,4142],[413559,98178,4142],[410291,94649,4142],[407900,97382,4142],[407871,97410,4142],[407754,97287,4142],[411088,100076,4142],[411000,100173,4142],[411371,100331,4142],[413870,97872,652],[413559,98178,652],[411088,100076,652],[411371,100331,652],[418954,79038,4122],[426367,84251,4122],[419920,84639,4122],[416639,82337,4122],[424238,87669,4122],[426552,85392,4122],[427122,84831,4122],[424238,87669,652],[426552,85392,652],[427122,84831,652],[406914,70571,4302],[404590,73882,4302],[401530,71735,4302],[403855,68420,4302],[403855,68420,4292],[401530,71735,4292],[409973,72722,4332],[407652,76031,4332],[404590,73882,4332],[406914,70571,4332],[409973,72722,4232],[407652,76031,4232],[413033,74874,4232],[410714,78179,4232],[413033,74874,4222],[410714,78179,4222],[409973,72722,632],[407652,76031,632],[412302,92558,4262],[415940,95834,4262],[413870,97872,4262],[410291,94649,4262],[415940,95834,642],[410291,94649,642],[413870,97872,642],[416091,77025,4222],[413774,80327,4222],[416091,77025,4132],[413774,80327,4132],[414314,90467,4272],[418011,93796,4272],[415940,95834,4272],[412302,92558,4272],[418011,93796,642],[418954,79038,4132],[416639,82337,4132],[418954,79038,632],[416639,82337,632],[384643,76680,4262],[382678,79467,4262],[379970,74992,4262],[380006,74941,4262],[380722,73916,4262],[378838,76596,4262],[378738,76596,4262],[384643,76680,682],[382678,79467,4182],[380722,73916,682],[378738,76596,4182],[386659,73820,4282],[384643,76680,4282],[382497,71375,4282],[382727,71047,4282],[380722,73916,4282],[386659,73820,4262],[382727,71047,4262],[388676,70959,4262],[384732,68178,4262],[386659,73820,682],[388676,70959,4212],[384732,68178,4212],[382727,71047,682],[390692,68098,4212],[384784,68103,4212],[386736,65309,4212],[388676,70959,672],[384732,68178,672],[400796,66269,4302],[398468,69586,4302],[395406,67438,4302],[397736,64117,4302],[400796,66269,4292],[398468,69586,4292],[397736,64117,642],[397736,64117,3942],[395406,67438,642],[395406,67438,3942],[392563,65443,3942],[394565,62132,3942],[394680,61968,3942],[392348,65292,3942],[394565,62132,652],[392348,65292,652],[362805,59688,3182],[365314,59725,3182],[364394,61047,3182],[354119,51666,3182],[349519,53341,3182],[349436,53073,3182],[359019,59913,3182],[360434,58039,3182],[362686,59859,3182],[354119,51666,342],[365314,59725,342],[354119,51666,3172],[365314,59725,3172],[349436,53073,342],[349519,53341,342],[359019,59913,342],[360434,58039,342],[362805,59688,342],[362686,59859,342],[364394,61047,342],[372515,62210,3172],[371615,63504,3172],[369304,62501,3172],[359675,49981,3172],[367241,55868,3172],[365988,57669,3172],[371331,63912,3172],[371615,63504,332],[371615,63504,3102],[359675,49981,332],[354119,51666,332],[365314,59725,332],[369304,62501,332],[369304,62501,522],[369304,62501,3102],[371331,63912,332],[371331,63912,522],[371331,63912,3102],[359792,64490,2902],[359744,64561,2902],[359559,64329,2902],[356619,62423,2902],[360748,62613,2902],[357075,60038,2902],[355806,61882,2902],[355988,61617,2902],[356045,61535,2902],[359688,64644,2902],[359610,64760,2902],[356518,62628,2902],[359792,64490,452],[359744,64561,452],[359559,64329,452],[360748,62613,452],[357075,60038,452],[356045,61535,452],[369100,57162,3182],[367241,55868,3182],[369207,57009,3182],[371945,56696,3182],[374095,60410,3182],[373456,54525,3182],[375135,58915,3182],[365076,48582,3182],[359675,49981,3182],[365016,48381,3182],[397818,99643,3372],[397380,99175,3372],[397311,99102,3372],[405045,105946,3372],[395332,100813,3372],[395909,101430,3372],[394810,101263,3372],[392851,102605,3372],[391890,98542,3372],[393822,103259,3372],[390214,100111,3372],[390141,100179,3372],[401648,109135,3372],[401074,109690,3372],[404305,106662,3372],[401940,109437,3372],[404583,106949,3372],[402128,109631,3372],[404736,107108,3372],[405764,106113,3372],[405323,106234,3372],[405476,106392,3372],[393822,103259,752],[404736,107108,752],[404583,106949,752],[404305,106662,752],[405045,105946,752],[405323,106234,752],[405476,106392,752],[405764,106113,752],[383888,110994,6982],[382717,109743,6982],[392269,119285,6982],[391801,119611,6982],[388341,122997,6982],[388411,123069,6982],[389224,122147,6982],[390918,120460,6982],[389293,122219,6982],[391015,120561,6982],[391898,119711,6982],[392303,119321,6982],[392269,119285,692],[383888,110994,6112],[392269,119285,6112],[388411,123069,692],[388341,122997,692],[389224,122147,692],[389293,122219,692],[391015,120561,692],[390918,120460,692],[391801,119611,692],[391898,119711,692],[392303,119321,692],[395035,116259,6112],[395202,116431,6112],[394437,115644,6112],[394882,116102,6112],[394735,115951,6112],[388179,106978,6112],[395979,114144,6112],[395753,114364,6112],[388179,106978,5732],[395979,114144,5732],[383888,110994,312],[392269,119285,312],[416325,88376,4302],[420082,91759,4302],[418011,93796,4302],[414314,90467,4302],[416325,88376,642],[420082,91759,642],[420082,91759,652],[416325,88376,4272],[420082,91759,4272],[418337,86285,4272],[422153,89721,4272],[422153,89721,652],[419920,84639,4332],[424238,87669,4332],[422153,89721,4332],[418337,86285,4332],[432960,45174,4292],[433299,45560,4292],[433224,45625,4292],[431114,42618,4292],[431596,42966,4292],[431177,43337,4292],[431211,42531,4292],[426108,36938,4292],[426615,37167,4292],[428745,39942,4292],[428609,39425,4292],[429015,39704,4292],[428699,39346,4292],[423096,34193,4292],[423016,34104,4292],[423443,33725,4292],[418073,38651,4292],[426370,36707,4292],[426679,37057,4292],[426590,37136,4292],[421732,50614,4292],[421861,50501,4292],[422432,51415,4292],[420131,36824,4292],[426066,36891,4292],[423820,34152,4292],[423723,34238,4292],[422782,34472,4292],[427142,50939,4292],[424720,49416,4292],[422929,34341,4292],[414465,41853,4292],[421365,49971,4292],[415139,49105,4292],[417993,38561,4292],[420052,36734,4292],[413959,42142,4292],[414385,41763,4292],[410458,38548,4292],[413284,48515,4292],[410165,38247,4292],[410332,38419,4292],[403840,38847,4292],[408747,36792,4292],[403722,38422,4292],[403661,38201,4292],[414011,49259,4292],[415014,49223,4292],[419208,52341,4292],[432863,45259,4292],[426131,51031,4292],[433141,45698,4292],[432960,45174,742],[433299,45560,742],[432863,45259,742],[431177,43337,742],[431596,42966,742],[431211,42531,742],[431114,42618,742],[428745,39942,742],[429015,39704,742],[428699,39346,742],[428609,39425,742],[426615,37167,742],[426590,37136,742],[426679,37057,742],[426370,36707,742],[426108,36938,742],[426066,36891,742],[423723,34238,742],[423820,34152,742],[423443,33725,742],[423016,34104,742],[423096,34193,742],[422929,34341,742],[422782,34472,742],[420131,36824,742],[420052,36734,742],[417993,38561,742],[418073,38651,742],[414465,41853,742],[414385,41763,742],[413959,42142,742],[410458,38548,742],[410332,38419,742],[410165,38247,742],[408747,36792,742],[403661,38201,742],[403722,38422,742],[403840,38847,742],[413284,48515,742],[414011,49259,742],[415014,49223,742],[415139,49105,742],[433224,45625,742],[377821,86359,4182],[378153,77385,4182],[374242,83471,4182],[373810,83134,4182],[377706,86522,4182],[377802,87185,4182],[377918,87064,4182],[378076,86899,4182],[382678,79467,572],[378738,76596,572],[373810,83134,572],[374242,83471,572],[377802,87185,572],[377918,87064,572],[378076,86899,572],[377706,86522,572],[374379,67423,3102],[377489,67592,3102],[376554,68936,3102],[371346,68158,3102],[373034,69360,3102],[370850,68928,3102],[367278,65413,3102],[371160,68032,3102],[372674,70180,3102],[373163,69450,3102],[367278,65413,522],[393822,103259,5732],[388358,106810,5732],[392851,102605,5732],[397371,112791,5732],[396090,114036,5732],[401074,109690,5732],[400872,109886,5732],[397669,113097,5732],[401107,110618,5732],[397816,113248,5732],[397969,113406,5732],[398136,113578,5732],[401142,110654,5732],[401164,110188,5732],[401352,110382,5732],[393822,103259,112],[401074,109690,112],[392851,102605,112],[388179,106978,112],[395979,114144,112],[401142,110654,112],[401107,110618,112],[346747,54021,3432],[340090,55962,3432],[346717,53925,3432],[355613,61186,3432],[355550,61263,3432],[349045,63188,3432],[347666,65026,3432],[347783,65119,3432],[350608,67366,3432],[346747,54021,342],[355613,61186,342],[346717,53925,342],[340090,55962,342],[340090,55962,3402],[349045,63188,342],[349045,63188,3402],[347666,65026,342],[347666,65026,3402],[347783,65119,3402],[344407,69328,3402],[333863,57877,342],[342837,65118,342],[341467,66952,342],[341584,67046,342],[364046,132734,6282],[362567,131821,6282],[362744,131655,6282],[360261,136588,6282],[358911,135242,6282],[358808,135339,6282],[369753,140964,6282],[367121,143737,6282],[370664,140067,6282],[370970,139949,6282],[369844,141057,6282],[370756,140160,6282],[358808,135339,6222],[360261,136588,612],[360261,136588,6222],[367121,143737,612],[367121,143737,6222],[369844,141057,612],[369753,140964,612],[370664,140067,612],[370756,140160,612],[356244,139956,6222],[354999,138904,6222],[366632,144077,6222],[356001,140183,6222],[362645,147421,6222],[355935,140244,6222],[364411,146078,6222],[362891,147702,6222],[362623,147441,6222],[363442,147024,6222],[363525,147110,6222],[364495,146164,6222],[366702,144149,6222],[360261,136588,602],[367121,143737,602],[358808,135339,602],[356244,139956,602],[356001,140183,602],[355935,140244,602],[362645,147421,602],[362623,147441,602],[362891,147702,602],[363525,147110,602],[363442,147024,602],[364411,146078,602],[364495,146164,602],[366632,144077,602],[366702,144149,602],[355523,154395,3222],[355770,154650,3222],[355502,154416,3222],[346432,149661,3222],[348542,147614,3222],[349018,147818,3222],[348614,147544,3222],[348735,147426,3222],[349085,147744,3222],[353510,152431,3222],[351253,158864,3222],[351158,159081,3222],[340115,148068,3222],[342906,146074,3222],[338204,144300,3222],[339590,143054,3222],[336948,145258,3222],[334052,142688,3222],[337018,143282,3222],[334785,141677,3222],[337657,137679,3222],[340153,139820,3222],[340086,139894,3222],[340220,139746,3222],[337689,137635,3222],[352030,158119,3222],[337044,145343,3222],[352092,158184,3222],[351315,158929,3222],[355523,154395,622],[355770,154650,622],[355502,154416,622],[353510,152431,622],[349018,147818,622],[349085,147744,622],[348735,147426,622],[348614,147544,622],[340153,139820,622],[340220,139746,622],[337689,137635,622],[337657,137679,622],[334785,141677,622],[334052,142688,622],[334052,142688,782],[334052,142688,3212],[336948,145258,622],[336948,145258,782],[336948,145258,3212],[337044,145343,622],[340115,148068,622],[351158,159081,622],[351315,158929,622],[351253,158864,622],[352030,158119,622],[352092,158184,622],[340115,148068,3502],[351158,159081,3502],[339585,153166,3502],[337466,150650,3502],[339535,156468,3502],[337907,154831,3502],[350169,159917,3502],[346572,163545,3502],[350231,159982,3502],[350865,159240,3502],[350927,159304,3502],[340115,148068,602],[351158,159081,602],[337466,150650,602],[339585,153166,602],[337907,154831,602],[350231,159982,602],[350169,159917,602],[350865,159240,602],[350927,159304,602],[354349,124634,2882],[350845,128796,2882],[348667,126740,2882],[352016,122762,2882],[348499,126936,2882],[354349,124634,2852],[350845,128796,2872],[352016,122762,2852],[348499,126936,2872],[349839,134818,2872],[355390,132400,2872],[351481,136206,2872],[345569,131211,2872],[345492,131302,2872],[345057,130934,2872],[347708,133018,2872],[349350,134405,2872],[347211,132598,2872],[347630,133109,2872],[347134,132690,2872],[352028,136394,2872],[349761,134910,2872],[349272,134497,2872],[351816,136646,2872],[351403,136297,2872],[350845,128796,572],[348499,126936,572],[345492,131302,572],[345569,131211,572],[347211,132598,572],[347134,132690,572],[347630,133109,572],[347708,133018,572],[349350,134405,572],[349272,134497,572],[349761,134910,572],[349839,134818,572],[351481,136206,572],[351403,136297,572],[351816,136646,572],[333642,143254,3212],[332970,144157,3212],[332842,144682,3212],[332686,144539,3212],[335419,147065,3212],[333642,143254,782],[332842,144682,782],[335419,147065,782],[332474,80086,1202],[332506,80192,1202],[329843,80899,1202],[329303,77535,1202],[327823,79309,1202],[329898,81081,1202],[332534,80287,1202],[332534,80287,472],[271703,111477,2852],[267674,117148,2852],[265175,115372,2852],[269204,109701,2852],[271703,111477,662],[321668,143068,3392],[324014,140186,3392],[322956,144116,3392],[325333,141195,3392],[324110,140068,3392],[325397,141116,3392],[321668,143068,792],[324014,140186,792],[322956,144116,792],[325333,141195,792],[325397,141116,792],[324110,140068,792],[315042,138254,3292],[312962,140962,3292],[307736,136947,3292],[309817,134239,3292],[315042,138254,802],[312962,140962,802],[309817,134239,802],[307736,136947,802],[321641,143318,2862],[319557,146030,2862],[314308,141997,2862],[316391,139285,2862],[321641,143318,802],[319557,146030,802],[316391,139285,802],[314308,141997,802],[308391,152407,3302],[306517,155006,3302],[305957,150663,3302],[304084,153261,3302],[305957,150663,862],[304084,153261,862],[310874,154186,3322],[309000,156786,3322],[308391,152407,3322],[306517,155006,3322],[313382,155983,3322],[311507,158584,3322],[313382,155983,3302],[311507,158584,3302],[310874,154186,852],[309000,156786,852],[316456,162306,3352],[314585,164902,3352],[313958,160511,3352],[313000,159823,902],[311127,162417,902],[315918,157799,3302],[314038,160399,3302],[315918,157799,842],[314038,160399,842],[315918,157799,3282],[314038,160399,3282],[313382,155983,842],[311507,158584,842],[316538,162192,3282],[318415,159588,3282],[321270,165056,2052],[319012,162680,2052],[323406,163057,2052],[320712,160257,2052],[321270,165056,852],[319012,162680,852],[323406,163057,852],[320712,160257,852],[308468,133209,1482],[306390,135913,1482],[302361,130439,1482],[303290,129230,1482],[301212,131934,1482],[308468,133209,722],[306390,135913,722],[303290,129230,722],[302361,130439,722],[301212,131934,722],[295706,146236,2942],[297170,144217,2942],[298723,145503,2942],[297335,147417,2942],[298873,145451,2942],[298796,145557,2942],[303344,148791,3302],[301480,151393,3302],[353700,120762,2852],[355811,122897,2852],[352016,122762,692],[354349,124634,692],[375228,99410,2862],[377518,97182,2862],[376448,100665,2862],[378859,98320,2862],[381492,92353,2762],[382808,93685,2762],[378571,95238,2762],[379888,96571,2762],[368879,109251,3242],[367078,107418,3242],[371045,107122,3242],[369243,105289,3242],[351070,74331,2242],[351105,74446,2242],[348445,75162,2242],[347875,71756,2242],[346441,73557,2242],[348501,75344,2242],[351134,74542,2242],[351134,74542,462],[357289,72370,1662],[357326,72485,1662],[354673,73230,1662],[354113,69804,1662],[352683,71618,1662],[354730,73411,1662],[357356,72580,1662],[357356,72580,462],[362932,67101,2812],[366113,69659,2812],[362870,67179,2812],[363485,70491,2812],[361480,68902,2812],[365943,69940,2812],[363541,70673,2812],[366177,69869,2812],[362932,67101,482],[366113,69659,482],[365943,69940,482],[366177,69869,482],[344871,76247,1202],[344903,76352,1202],[342235,77067,1202],[341696,73660,1202],[340263,75472,1202],[342290,77249,1202],[344932,76448,1202],[344932,76448,462],[338623,78167,2802],[338658,78281,2802],[335996,79005,2802],[335454,75588,2802],[334015,77396,2802],[336052,79187,2802],[338688,78377,2802],[338688,78377,462],[400851,48956,795],[422845,56627,812],[417141,55824,732],[413765,53326,722],[411122,50812,712],[414032,52965,722],[406173,51786,682],[403136,44100,606],[403246,38774,341],[402442,38756,852],[402058,39567,844],[401837,38858,858],[402874,38877,508],[402718,39204,840],[401331,38833,820],[401437,39163,493],[401271,39062,882],[416744,60964,765],[415438,60041,773],[399700,43288,638],[397819,39967,507],[401010,39250,445],[396619,41430,767],[396555,41708,1005],[396271,40843,590],[397407,43231,664],[397780,42766,701],[398814,43511,647],[397448,41724,1002],[396736,42153,1076],[397906,46967,717],[407166,52470,702],[398564,42256,1188],[400943,41094,671],[402014,40512,848],[402523,50433,692],[405077,52427,668],[402401,50610,702],[408219,54243,759],[400937,49612,779],[414474,57888,750],[426446,58174,1078],[425051,57097,739],[423400,61943,852],[424212,57641,872],[425155,57810,886],[423410,57818,880],[428437,59953,942],[425971,58252,942],[426855,58739,906],[425880,63651,912],[420952,64059,865],[423835,66079,851],[423351,57461,721],[401521,40111,712],[410084,56299,776],[414577,58603,882],[401549,39804,496],[396461,40370,513],[396238,40374,792],[396304,40629,792],[396508,40720,530],[427312,59000,1073],[399000,41325,674],[399407,41995,858],[400576,40905,751],[398876,40521,658],[397603,41419,718],[399830,40197,413],[398398,41619,938],[401213,38839,942],[425890,57994,1109],[426206,58241,1112],[400106,41330,669],[396715,40608,505],[397755,42455,928],[402384,38534,862],[400026,40774,688],[423756,57393,959],[320633,160196,1052],[320274,159942,902],[321787,158333,1072],[321870,158389,1082],[321906,158160,1192],[322619,157296,942],[321989,158216,1082],[323108,156404,902],[323191,156461,902],[323221,156239,902],[324314,154821,932],[323304,156296,932],[324232,154764,932],[324344,154599,932],[325778,152506,922],[324427,154656,932],[326849,150652,872],[325861,152562,862],[325475,153356,862],[326068,152454,862],[326018,153699,902],[327292,152115,902],[325897,152333,872],[326606,151620,872],[327116,150840,892],[298144,128200,861],[296646,129588,746],[297195,127057,810],[287618,137284,1314],[291864,124088,789],[290068,125689,697],[290398,122401,791],[271691,120646,922],[274099,122334,942],[286388,122155,741],[284632,126039,912],[282190,124364,862],[284086,117734,907],[279862,116417,757],[278758,113666,782],[271295,109058,807],[270784,108282,832],[274815,111492,846],[276181,112283,852],[269422,106851,782],[267137,105353,664],[268091,105896,676],[255711,97465,452],[255769,97546,452],[255776,97677,452],[255712,97587,452],[254514,98639,580],[254312,98708,482],[259918,102701,542],[253988,98760,569],[254205,98662,482],[254254,98627,482],[254147,98580,472],[254885,98835,469],[262030,104423,640],[273649,110907,710],[271811,111321,712],[272091,111865,622],[271900,111383,712],[269650,117340,874],[266817,121386,882],[272668,112910,862],[277289,113920,734],[265583,120534,982],[264654,121880,1002],[266759,122957,897],[280631,115511,987],[270911,125654,1182],[271219,125476,983],[271263,125801,989],[271006,125711,1182],[295445,125706,807],[285503,135734,1082],[299309,128864,892],[301754,130500,998],[300917,130434,833],[292618,134918,1002],[291979,137348,1052],[289671,135698,1022],[292983,139190,1075],[293216,138266,1022],[294185,140231,972],[317092,146582,832],[321558,157176,862],[319205,157746,862],[317548,163169,922],[315992,166063,942],[317784,163337,922],[312560,152955,872],[321792,157344,872],[323411,151454,832],[326329,150897,862],[326084,150723,862],[334684,135723,775],[329776,142382,778],[329435,142789,799],[336901,137082,772],[332750,142506,812],[334314,136477,798],[328578,143680,812],[324113,149493,842],[302079,147382,1038],[304104,134615,845],[300865,144522,892],[309573,138665,909],[290252,133223,982],[294161,132763,952],[280691,126549,942],[283133,128224,942],[291794,131069,932],[278224,113490,1073],[281976,116500,788],[282691,119743,637],[273682,117804,862],[276090,119492,882],[271972,125683,959],[270409,116811,811],[271009,116364,804],[284454,134676,1288],[284303,133698,1031],[281083,130803,1009],[278089,129933,1170],[280959,131913,1346],[277334,130001,1183],[284594,118247,751],[287381,120295,884],[282066,132595,1092],[277012,129856,1114],[287978,136822,1053],[288453,137347,1138],[282617,116945,935],[277120,112560,929],[272415,114207,729],[273477,112470,699],[292741,124246,811],[280717,116193,930],[282589,133466,1230],[280897,131566,1137],[282114,132928,1127],[271701,126221,1125],[271987,114093,969],[270660,115902,1032],[269790,118320,977],[271197,115774,779],[272191,112510,788],[271434,112058,1092],[302027,147063,910],[292831,139126,1252],[270920,115686,830],[320219,160332,912],[320135,159965,902],[320453,160191,1032],[320553,159271,1055],[318238,163157,922],[319903,160783,912],[316263,165973,952],[316131,166161,942],[315761,168808,942],[316919,168580,887],[317415,169133,1166],[317911,163623,922],[316353,166036,952],[318001,163687,942],[318328,163220,932],[319993,160846,912],[321380,158295,1088],[320309,160395,942],[320192,159884,902],[321459,166112,1057],[324930,158180,929],[322708,157380,1052],[324056,155427,932],[328235,163846,815],[329397,165678,722],[326101,154928,923],[326091,157427,956],[326302,156259,1272],[327288,156643,934],[321182,160501,1038],[316456,166290,942],[317203,166854,942],[312706,178940,798],[313434,179142,635],[313264,180198,1000],[320970,165561,1031],[320528,165735,864],[320925,165224,1015],[314446,178845,861],[314337,178169,606],[315642,178238,710],[310014,176506,1083],[307491,179396,932],[312693,172965,912],[311092,175785,1091],[311675,177139,645],[305242,181844,912],[306383,180602,902],[309161,183065,855],[304791,184134,906],[303384,184165,872],[304641,182595,902],[309308,184125,934],[306519,185808,853],[304317,187075,1092],[303803,185737,1296],[304654,186221,1457],[305461,185663,1376],[299151,190582,1065],[304547,185537,1239],[307326,186925,1085],[307136,187731,1122],[306711,187188,984],[310369,181870,962],[310459,177479,850],[311080,179073,913],[314775,181263,972],[313637,180420,1083],[323295,164439,1008],[318674,171300,1191],[319011,170509,1085],[320206,171227,825],[315738,178887,833],[315693,178540,851],[315928,177088,741],[315284,175411,916],[321052,166275,849],[320610,172147,992],[323455,167972,1087],[318359,172872,904],[319704,172440,1145],[319312,172985,737],[327580,161903,792],[325398,161598,1144],[327864,161127,684],[324652,163237,1070],[323831,163492,978],[325983,163202,676],[326123,164260,658],[325594,163342,647],[329947,159200,695],[328635,163403,757],[328587,163028,773],[329238,160774,674],[330798,157562,976],[328668,160179,744],[326549,154005,1017],[329671,160326,798],[327788,160397,964],[329364,157887,1027],[337118,150896,837],[336722,150981,879],[337467,150482,879],[329825,158117,991],[330519,157959,1006],[330622,156194,1060],[331301,156732,991],[327211,155955,1125],[326740,155390,1121],[328042,155365,920],[326635,154707,913],[330661,151964,909],[332257,157282,1016],[331115,155361,928],[332756,157188,1030],[332529,155472,1052],[333214,157135,928],[333641,156704,962],[334398,156603,931],[334677,156916,755],[334880,156198,739],[335278,156508,721],[334442,156942,918],[335373,157150,863],[335754,157105,694],[336273,158057,707],[337074,153722,695],[337662,155023,751],[332567,145408,1001],[330564,147826,952],[338440,148503,789],[338748,147680,922],[338888,148725,939],[336831,145721,832],[334851,150253,824],[331762,149686,1083],[301347,191806,1037],[300988,192141,1275],[299676,189329,1117],[320890,171694,796],[320109,172708,1041],[304416,187749,1234],[301745,188778,1054],[301489,192795,1169],[301025,192544,1064],[334307,155879,1010],[333461,155360,941],[334425,154833,1087],[337247,151934,707],[324940,161750,963],[322999,159873,972],[325466,155859,930],[326437,155479,1112],[315193,181137,838],[315355,179296,890],[313313,180528,1060],[312898,180308,939],[326695,165107,987],[325262,164127,1055],[326371,155194,721],[329968,153854,920],[321996,166666,1000],[321382,168640,1076],[320401,167894,1000],[319653,169280,995],[319435,170376,1189],[318443,169635,1059],[327176,163169,693],[326634,164802,687],[324694,163566,1033],[323406,162949,985],[308372,186570,975],[304871,187997,1200],[304498,188494,1010],[321951,169966,798],[322453,170132,967],[322039,170633,797],[318923,173479,664],[316521,170496,934],[316496,172998,888],[315078,170476,1066],[304166,188551,1141],[303548,184296,922],[301253,187789,1273],[321597,170420,786],[304738,186926,1331],[304786,187263,1363],[304048,184929,1307],[305000,185404,1455],[306326,186898,1138],[305082,186152,1213],[338927,149088,812],[312209,175098,953],[313110,176711,607],[311902,175936,746],[303708,190149,1012],[303286,191337,1142],[302607,192188,1033],[305181,186858,1298],[323212,158669,1226],[310599,181057,843],[319146,168381,848],[319936,169167,842],[322782,168976,909],[317263,168151,863],[314230,180297,862],[336345,155258,749],[335353,147719,906],[309782,184681,938],[304821,187669,1115],[304959,188765,1008],[305094,189767,1042],[318007,170053,1167],[317874,169064,1148],[317330,171676,900],[311725,180678,888],[314244,177483,565],[319993,169506,1007],[320125,170500,1022],[317063,174654,830],[313018,178539,637],[302563,191857,1034],[305217,187242,1096],[305257,187592,1003],[333126,147068,839],[334458,147196,991],[336346,151788,730],[335041,151602,954],[322538,158599,1204],[336173,153861,930],[336524,153132,729],[335495,155010,970],[333739,154265,939],[320572,169274,845],[323894,168875,1158],[317325,168476,1119],[311399,181504,871],[329888,153174,1062],[329574,153603,910],[322572,158945,1036],[325032,162441,965],[316831,172950,746],[317349,174223,837],[317386,174605,664],[316882,173256,886],[337443,156468,748],[309446,177494,889],[337434,153300,774],[325078,162758,1021],[325948,162855,826],[313990,178618,627],[334872,147459,845],[332399,150940,1048],[330938,153977,1030],[304068,190385,1190],[334163,150744,840],[303122,181483,862],[299407,183252,894],[304139,179284,808],[302819,178512,968],[296436,124758,842],[295015,124758,984],[296935,119069,909],[293839,123318,937],[294713,124840,912],[299298,121107,849],[293517,124095,798],[295798,123188,771],[295762,122819,940],[262874,72930,412],[262387,74028,352],[262102,74096,352],[261471,72385,402],[261079,72615,402],[261592,71841,382],[261971,72092,382],[261779,72205,382],[261648,72118,392],[260876,73284,402],[261987,74260,352],[260599,73340,402],[262158,74373,342],[263151,72873,412],[411720,38460,1792],[411464,37614,2252],[415386,40998,1974],[416921,39386,1856],[412314,37126,1986],[410976,36624,1072],[412338,36701,1920],[417939,38711,2215],[417249,39134,2111],[421139,34340,1916],[421959,35045,1943],[421711,35297,1943],[417966,38387,2021],[420098,36705,2092],[419763,36447,2035],[422261,34369,1976],[422695,34374,1962],[422639,34312,1962],[422579,34254,1962],[422516,34200,1962],[422449,34150,1952],[422378,34105,1952],[422305,34065,1952],[422230,34029,1942],[421998,34133,1955],[422152,33999,2282],[422073,33974,2172],[421992,33954,2172],[421827,33930,2172],[421910,33939,2172],[421743,33927,2142],[421470,34128,1894],[421660,33929,2142],[421577,33936,2142],[421495,33949,2092],[418244,38285,1997],[413025,38300,1805],[415524,38476,1749],[414402,39242,1802],[414758,41270,1963],[414806,40405,1822],[413597,39873,1769],[411283,39275,1900],[410967,38987,1885],[419438,36212,1885],[418378,35608,1751],[418957,35147,1978],[419421,34763,1838],[413520,39210,1923],[413204,39666,1779],[412709,40624,1896],[417992,38033,1851],[419748,36946,1928],[421255,34020,2062],[421333,33991,2092],[415473,39083,1933],[412765,36286,1890],[417648,38085,1971],[413903,40802,1962],[413512,36003,1864],[418353,35969,1881],[412214,37913,1811],[416743,37211,1882],[415433,40140,1825],[421413,33967,2092],[406718,52822,708],[309240,61679,372],[308821,60565,332],[309534,61549,362],[309130,60459,332],[275503,130529,1171],[274129,132827,1278],[274271,138393,1154],[276815,134931,1082],[272872,140416,962],[278039,132857,1087],[279186,131634,1312],[277374,132544,1131],[275083,133695,1263],[275042,133376,1289],[273397,136096,1254],[272784,136949,1221],[274085,135072,1267],[270272,137886,1327],[271789,136403,1286],[273627,135560,1264],[276216,129750,1099],[319963,204206,1244],[319496,203624,7337],[319475,203629,1224],[368520,155696,1002],[369459,155484,992],[369005,155749,992],[427949,102137,1047],[427893,102343,15039],[427343,102324,1078],[429020,100059,10771],[429159,100300,17232],[429017,100150,1066],[369103,154055,1002],[372235,153193,942],[370916,154179,952],[377847,145283,942],[376838,150276,962],[374552,151709,942],[391445,133479,960],[395688,134796,962],[393164,137588,952],[379030,149061,962],[379537,145007,1061],[382108,147380,952],[384666,145799,942],[383412,146601,942],[386241,144564,922],[386491,139741,1172],[389527,138015,1071],[389826,137931,1061],[389862,138264,5360],[390322,140700,922],[388317,142722,922],[390272,134227,1015],[391085,133618,991],[389984,135012,999],[392204,132829,998],[399520,127385,10424],[400015,127416,11647],[399633,127592,11648],[400632,128695,1048],[400289,128448,9219],[400705,128623,14778],[411238,116098,1033],[411545,118449,968],[412816,116853,997],[413506,118551,892],[400928,127894,6701],[401603,127588,1038],[400869,128229,1050],[412946,116337,3815],[412557,116696,5051],[421727,110285,882],[420306,111723,882],[416992,115098,862],[418412,113610,862],[422502,107464,1054],[422707,109211,892],[434599,94621,1039],[434944,94079,1052],[434351,95088,1022],[434229,92940,12169],[434059,93022,15684],[434265,92844,7362],[435248,92173,1143],[435745,92280,1102],[435529,92338,14509],[434824,91666,1101],[434779,91322,1121],[435058,91437,9486],[435692,90860,1102],[435261,90947,8665],[435067,90819,1103],[434601,90006,1052],[434557,89669,1056],[434618,89697,14372],[434000,89673,15052],[433339,90209,1042],[434586,88908,992],[434643,90322,1063],[435267,89969,1062],[432823,90748,962],[433161,90714,1061],[432801,90782,962],[433207,91033,1115],[425962,105435,6231],[426321,105031,932],[424379,107333,892],[432782,90818,962],[432773,91008,12688],[432765,90855,962],[432750,90893,962],[432739,90931,962],[428034,102822,977],[429130,101681,992],[432729,90971,962],[432723,91011,962],[432719,91051,952],[432718,91092,952],[432719,91132,952],[429192,98318,11568],[428847,98416,11407],[429126,97972,11287],[432724,91173,952],[433149,91226,12156],[432731,91213,952],[432740,91252,952],[432753,91291,952],[432767,91328,952],[434281,94276,10394],[434268,94095,1094],[434513,93946,1076],[432785,91365,952],[433514,93176,13703],[433109,93536,1091],[433135,93291,13571],[432805,91401,952],[433818,95724,1015],[433806,95916,1012],[433526,90570,1054],[433421,90433,11425],[433479,90237,1024],[434782,93837,1080],[434823,94094,13013],[423588,102546,1087],[423633,102890,1091],[433414,95877,1040],[434059,94608,1068],[431767,98100,14054],[431950,98288,1012],[431756,98465,999],[405782,124896,992],[411618,120187,902],[404358,126027,1002],[428625,99569,1118],[428726,99416,12704],[424614,103496,8721],[424499,103146,13029],[424680,103403,15141],[413184,116412,982],[414802,117311,892],[412261,116625,1016],[401061,126733,1099],[399362,125785,1094],[399464,125826,6796],[399407,126127,1098],[398141,128161,7908],[398484,127999,1036],[398666,128930,8223],[390189,137680,6670],[390088,137860,1060],[389836,137865,5748],[367365,155690,992],[429345,99583,16315],[429809,99661,1035],[429851,99977,1029],[428299,101607,11091],[428174,101387,1083],[428513,101345,1086],[431109,97613,1072],[431468,98195,1048],[430943,98720,1039],[428887,99136,1119],[429313,99373,1085],[431512,98556,1003],[431525,98444,15321],[429802,99493,13495],[428840,98778,1130],[428533,98869,1132],[428632,98727,17298],[426227,100544,1088],[426715,100644,13984],[426249,100796,13294],[435179,89796,1052],[434946,89544,15505],[434751,89227,13319],[424898,102734,1110],[425175,102881,13107],[424938,103053,1088],[426783,101653,13046],[426844,101751,1110],[426406,101858,1155],[428897,98749,11490],[429187,98400,1123],[429725,99009,1056],[429937,100649,990],[429634,100192,14348],[430105,98222,1086],[430062,97888,1115],[430407,97454,1141],[430148,98562,1063],[430114,98418,14329],[400854,128108,9586],[399627,127598,5800],[399291,128064,12313],[399205,127399,12344],[431492,98805,14162],[430662,99446,1008],[430204,99411,13728],[429967,99073,16634],[430234,99233,1027],[428955,99068,11707],[430282,99140,8775],[430192,98891,1076],[424435,103630,1086],[424730,103514,1088],[426917,99567,12820],[427773,99402,7704],[426987,99649,1064],[427721,102549,989],[429445,100404,1030],[430167,99750,12563],[431672,97816,1032],[433212,96731,1002],[430052,98778,12748],[429636,98309,1111],[431026,96969,1101],[431247,97228,8236],[431069,97301,1089],[430323,99907,1014],[430280,99594,1011],[427389,102682,1065],[427361,103175,12311],[427023,103128,1046],[426187,100159,7348],[428565,98146,7873],[430359,97096,1117],[430680,96698,1093],[431342,97237,1069],[435187,92835,12778],[435519,92954,1082],[434884,89477,1026],[434934,89835,1055],[434524,89327,1231],[434492,89379,13176],[434204,89474,1019],[428375,99156,12799],[428583,99228,1155],[428291,99633,1141],[428552,101663,1038],[428214,101702,1055],[429060,100479,1053],[428301,101950,10464],[426934,102426,1110],[426800,102668,11354],[426451,102215,1126],[428258,102062,1012],[426913,103314,11744],[426572,103217,951],[430928,97297,14669],[430984,96653,1101],[431209,96198,1105],[429469,100608,11200],[425157,104728,1036],[425372,104182,13463],[425441,104254,1050],[425268,102927,1087],[424683,103154,1096],[425997,103285,10802],[425660,102800,1113],[426081,102655,1113],[400909,128553,1019],[399224,124753,1073],[398607,125493,1061],[428096,98570,13931],[429519,98226,11846],[429592,97973,1114],[429675,97528,9739],[429656,97521,15122],[429976,97235,1112],[434677,93675,7750],[434520,93807,9219],[434473,93633,1095],[435047,93275,13796],[434611,93033,8012],[433126,92966,14066],[433810,92324,7362],[434430,93300,1114],[434524,93559,15238],[434394,93239,13979],[433881,93239,1098],[434912,92343,1096],[435335,92848,1122],[434354,94777,1050],[434315,94608,10257],[434602,93462,11039],[433736,90083,1030],[433796,90004,11517],[427993,102484,1009],[428177,102633,12477],[426357,103169,10351],[426168,103339,1069],[425487,104612,1028],[426075,104628,9374],[425793,103832,1066],[400226,129786,982],[402623,127530,1002],[426663,103886,985],[426574,103758,12337],[427104,103778,981],[398667,129386,1026],[398281,129895,1023],[397861,129758,1000],[398349,131742,952],[397906,130089,1014],[430315,96776,1097],[430810,96646,14210],[429713,97865,9647],[430103,97468,9381],[430155,97114,10790],[429433,97915,11204],[427910,99361,1145],[427797,99717,7452],[427561,101108,12614],[427814,101110,1047],[428068,101659,12769],[426623,100082,1107],[426526,102729,13586],[428044,100663,9210],[428093,100271,10658],[428129,100646,6453],[426505,102127,8180],[428071,99952,10941],[427997,100033,1105],[427863,99029,1091],[427641,99778,1105],[428675,100127,10626],[428668,99899,1107],[428523,99815,13678],[427217,101360,1092],[428544,101496,10777],[428839,101227,1045],[434310,94434,1061],[434372,92594,1603],[434409,92389,6319],[434748,92683,10631],[433252,91391,1098],[432851,91467,952],[435447,93016,12080],[435376,93174,1084],[434248,89794,1050],[433982,89927,1047],[434428,91137,1097],[434710,91319,12650],[434413,91164,12682],[434220,92193,7952],[434213,92533,7199],[435110,91151,1103],[434804,91215,10353],[435783,91422,1102],[425801,104006,11574],[426300,104369,998],[434381,90795,1081],[433494,90780,11820],[434738,93491,1093],[435044,93352,1078],[426557,104447,10788],[426708,104221,985],[425615,102454,1124],[426254,104015,1010],[426742,101322,13095],[425069,104053,1054],[426717,100786,1106],[427162,102251,11234],[426589,101020,11470],[426967,100911,10991],[426362,101540,1119],[425530,101805,1137],[425300,101108,9913],[426193,101168,11796],[425944,101905,12639],[425610,102020,12610],[425279,101863,12081],[426020,102213,13144],[427246,100198,9816],[426985,100581,11854],[427251,102555,11929],[433855,92714,13337],[433425,92715,1059],[432827,91435,952],[434121,90962,1095],[434209,91606,1140],[433893,91669,9746],[433721,91734,13281],[433659,91554,1113],[433507,91445,10733],[433707,91913,1115],[425573,102122,1142],[425136,101911,1121],[424641,102835,1104],[424598,102505,1125],[425814,100638,1114],[423888,102045,1077],[425093,101580,1121],[432322,93778,1031],[432693,93653,1069],[425963,105159,974],[427065,103460,1022],[426444,104177,9703],[399391,126807,9700],[399529,126983,11319],[399211,126963,1099],[398597,127853,9256],[398096,127834,7882],[400867,126931,11952],[400690,126848,1105],[400491,127222,10190],[400735,127190,1099],[400460,127357,1106],[400841,127248,6658],[401101,127053,1065],[401123,127225,10663],[399821,126504,10600],[399728,126308,1121],[400039,126483,1132],[400827,127356,10598],[401144,127385,1049],[399826,126898,9925],[399494,126787,1086],[399826,126976,1249],[399872,127063,5922],[424905,104866,1039],[424289,104675,7116],[424524,104304,1066],[428486,101190,10538],[427137,100943,6853],[427775,100748,10290],[427737,100407,10396],[428883,101571,1022],[428190,101303,10095],[428352,100212,10475],[428821,100482,7117],[427766,99704,12158],[400325,126336,1122],[400149,126277,11312],[399994,126151,1122],[400084,126829,1127],[400147,126907,5926],[435522,91001,1101],[435157,91493,1128],[401534,127250,6758],[401129,127040,6895],[434652,92820,1129],[434058,92294,10950],[434003,92079,1102],[428593,101997,1001],[424348,102952,1113],[424525,102835,8715],[424793,103056,12123],[433743,95798,12035],[399052,127987,9083],[398650,125809,1070],[398220,125989,1072],[398906,127034,8803],[398694,126144,1059],[399171,126291,7544],[398723,127254,12164],[399313,125423,1081],[399295,125736,10343],[400509,127044,6703],[399773,126657,1106],[399078,125964,1076],[400008,127824,10776],[400430,126898,9929],[400415,127012,1116],[399325,126480,9375],[399453,126464,1109],[400372,126681,1138],[400521,127549,9995],[428129,101051,1071],[428106,100966,9516],[425059,101236,10110],[425049,101264,1114],[428465,100988,1072],[429103,100802,1059],[428711,100212,1126],[400043,128411,5830],[399720,128499,1079],[399679,125948,1100],[399548,124954,1106],[433569,90882,1084],[433296,91134,8304],[434579,91693,10059],[400646,126514,1109],[400508,126669,7382],[431409,95795,1065],[433887,92382,14424],[398002,129979,8456],[397162,127610,1063],[397594,127711,1052],[397206,127957,1026],[397773,129078,1020],[395641,128169,1055],[396768,127452,1029],[396484,127596,1029],[396441,127282,989],[398012,127551,7236],[398402,127345,1094],[434518,91813,1113],[397640,128115,6833],[399033,125627,1073],[398663,125787,7707],[399637,125977,8970],[423981,102718,1119],[426125,100479,12127],[427010,99905,13511],[427446,100181,6643],[400035,128675,1035],[394753,130461,986],[397792,126188,1042],[398103,126193,5398],[425202,105075,1012],[425135,105374,7793],[424947,105177,1048],[425908,105099,6102],[434255,91924,1184],[434664,92234,6433],[423734,102782,8284],[394252,129929,1270],[394302,130264,1350],[393523,130270,1645],[424988,105515,1001],[424245,104744,1053],[424157,104067,1082],[424580,104197,6918],[424818,104194,1065],[424479,103971,1072],[396814,127788,1060],[396723,127109,1047],[397929,127203,1065],[399505,124619,1124],[399378,124779,7537],[396369,127441,7500],[434356,94915,10260],[400822,127870,1064],[400806,127805,9467],[398152,128900,1047],[398358,127027,1086],[398591,127074,10628],[398335,127015,7138],[400144,127067,9758],[401561,127266,1052],[398309,126670,1053],[389482,137683,1059],[389996,137173,1050],[390810,138290,1009],[390722,137602,1039],[391285,138485,989],[390436,138417,1007],[390400,138088,5053],[390393,138081,1019],[425328,106063,944],[425284,105730,958],[425544,105243,5585],[399272,125108,1088],[397019,127652,8469],[434585,92144,1447],[388698,137894,1077],[389103,137797,1069],[390629,136921,1022],[390257,137049,1047],[390488,137028,4327],[390255,137130,4803],[389914,138615,1015],[390128,138182,1023],[389054,137436,1042],[388978,137765,5295],[390016,137163,5199],[411712,116353,992],[412373,116144,3482],[412723,116148,999],[390347,137728,1034],[390856,138636,996],[429188,101479,996],[390609,139759,949],[412170,115948,991],[411672,116035,1010],[391124,138545,4961],[424241,104339,7053],[411492,116247,4314],[391428,133124,1384],[393590,130982,1259],[393547,130633,1311],[393907,130813,963],[391797,132985,960],[393236,130836,1331],[393214,130467,1709],[392895,130683,979],[393281,131184,1315],[392966,131007,1372],[391663,131969,980],[392400,131324,997],[392071,131842,977],[394192,129620,1001],[393311,131573,1004],[390679,133708,1369],[390638,133385,1403],[390610,132992,1746],[391378,132767,1347],[391354,132386,1731],[391776,132611,1377],[391733,132262,1425],[392676,131168,991],[390180,133550,988],[433810,92324,1112],[367650,158541,1032],[367458,158917,1032],[365788,157197,1012],[367797,157613,1022],[367809,158208,1022],[367091,156892,1012],[367484,157103,1022],[366280,156728,1002],[364746,159143,1032],[364397,158523,1012],[366801,160205,1032],[365191,160302,1052],[366614,160567,1032],[365453,160670,1052],[366246,160828,1042],[365762,160903,1052],[366743,61321,521],[366715,61012,684],[367178,61033,596],[360146,60654,505],[362406,60014,526],[359783,59648,530],[363327,60736,584],[365060,61939,567],[364548,60883,525],[367939,63755,694],[363950,60818,564],[368579,62108,676],[367883,63414,545],[359872,60335,520],[362444,60353,425],[276619,138066,992],[276701,138123,992],[271333,143816,911],[271299,143461,1107],[271806,142333,958],[276896,134990,1082],[278139,135883,1042],[272893,140558,1052],[278179,135825,1042],[270504,144491,899],[270075,138451,1171],[269966,140380,1118],[269404,139274,1136],[272067,141754,946],[270667,140950,1073],[272888,141296,943],[275114,140275,984],[267332,148338,856],[282476,162547,1026],[281520,161268,823],[276496,156973,1079],[270105,153871,944],[268391,147198,881],[310521,145779,966],[271102,101478,740],[271485,100944,790],[273542,102071,795],[273800,98326,838],[272670,99741,811],[274593,100515,832],[272398,99596,790],[268053,105577,738],[268697,99199,785],[268903,103113,585],[269329,103908,755],[267460,101187,741],[268235,100677,820],[269338,102006,728],[269056,104145,768],[268589,103360,723],[267071,101755,681],[271017,100834,758],[271058,101149,752],[274364,98824,818],[274455,99497,825],[272911,99562,829],[266693,101993,791],[268141,100004,785],[268434,104954,764],[270059,102895,860],[270467,102969,713],[267844,100581,789],[275350,99475,826],[221743,136457,648],[222631,134036,634],[226841,134405,743],[226406,134591,593],[223827,133315,672],[222347,134950,680],[383073,43503,592],[386250,42666,592],[425929,58322,1045],[366134,100539,622],[365082,101593,632],[360010,105604,642],[370368,95603,592],[360779,105741,642],[361857,104697,642],[365561,103453,694],[364971,104124,696],[361901,107539,792],[361822,106815,712],[362898,105757,692],[372246,97494,752],[370467,96364,612],[367196,101608,642],[370457,98470,652],[371488,97446,682],[369383,97413,612],[366131,102645,662],[368972,98867,738],[365618,103790,860],[312807,134360,1079],[312314,133791,850],[313654,133483,1029],[305367,129285,1010],[305314,128950,879],[307665,130718,801],[301981,125849,804],[305269,125776,794],[299515,128094,984],[302336,128572,726],[302726,129122,879],[307563,134619,833],[308681,131876,990],[307764,131358,1001],[310868,133110,822],[311054,134487,877],[310190,133672,812],[315174,138287,973],[313445,135650,1082],[314504,133229,951],[325938,146423,1041],[325457,145886,815],[322418,146540,798],[321522,146095,918],[321427,145443,809],[324922,141775,945],[321254,144066,921],[317572,139980,910],[319015,140631,747],[316962,138758,971],[316125,138311,861],[313567,136635,975],[304621,130196,1104],[304850,128758,893],[312647,136123,1176],[313627,136981,1169],[300730,129077,731],[307946,132747,974],[311400,134366,1045],[309152,132477,820],[308768,132532,997],[312426,131698,694],[324281,146988,804],[300236,128203,805],[300272,128531,716],[306753,130995,921],[312894,135072,977],[311836,134979,1080],[312178,132782,816],[312988,132258,982],[312579,132700,972],[324053,148484,964],[322563,147522,996],[323521,147616,811],[309061,131794,807],[302426,129247,742],[313031,136042,1099],[312546,135462,987],[321960,146649,819],[275475,103353,863],[275368,106193,947],[275223,105228,751],[274344,105579,870],[274790,105715,736],[391587,60427,897],[391318,58414,860],[392796,60099,832],[388995,59933,810],[387242,62076,857],[388863,58919,828],[388439,58768,843],[388355,58122,848],[389204,58045,849],[387338,65627,827],[386935,62591,826],[391031,60743,751],[386142,62332,822],[386572,62787,799],[386500,65020,835],[392896,60958,882],[389424,59737,808],[389380,59399,810],[390026,57684,830],[385688,62180,817],[395439,33798,622],[396591,33463,632],[396716,33896,642],[395564,34230,632],[405450,106376,940],[235199,132876,712],[235342,133869,806],[226281,130328,733],[229817,132981,986],[228914,132270,999],[229234,131801,726],[232296,134563,1017],[228138,131533,966],[230175,132189,852],[230277,132832,1043],[231230,133254,703],[233239,134229,723],[232244,134205,984],[235735,134406,789],[226188,129680,681],[226235,129991,758],[228073,131188,725],[230634,132024,700],[227946,128058,645],[350141,122886,742],[347205,126302,752],[344822,121668,715],[360369,110915,652],[354926,108852,642],[359563,106065,642],[361890,108444,732],[361606,109866,632],[379954,89164,712],[379632,90679,730],[379572,90939,922],[379383,91080,677],[377012,90096,622],[379386,88579,722],[379670,88872,722],[353638,118214,719],[354684,116451,682],[353909,118490,852],[368462,70410,542],[303617,70561,560],[306618,69288,522],[305887,71683,562],[304437,71387,621],[317569,80196,623],[320909,82425,562],[316531,79673,872],[309289,74476,607],[311243,75969,641],[314293,78125,624],[315972,78655,607],[315642,78751,620],[316061,79305,643],[316637,79434,746],[336807,95173,673],[338208,96250,552],[320553,82941,572],[325695,84711,522],[334893,93514,549],[336440,93341,552],[336474,93380,552],[352789,118551,697],[353153,119210,842],[375222,87220,607],[373735,84574,602],[375340,85504,781],[346341,119762,670],[350182,114993,652],[346028,120160,731],[345800,120530,702],[343678,123486,746],[346993,126549,752],[350357,122646,752],[353309,119358,842],[347282,126370,762],[350233,122953,822],[349294,119682,659],[350436,122705,822],[337030,93622,552],[337082,93620,552],[336978,93620,552],[336926,93615,552],[336875,93606,552],[336825,93594,552],[336775,93578,552],[336727,93559,552],[336680,93537,552],[336635,93511,552],[336550,93451,552],[336591,93483,552],[336511,93417,552],[336408,93300,552],[336380,93256,552],[336354,93211,552],[336332,93164,552],[336297,93066,552],[336313,93116,552],[336285,93016,552],[336276,92965,552],[336271,92913,552],[336269,92861,552],[336271,92809,552],[336276,92757,552],[336285,92706,552],[336297,92656,562],[336313,92606,562],[336332,92558,562],[336354,92511,562],[336380,92466,562],[337178,87197,542],[337194,87247,542],[336408,92422,562],[337855,87748,542],[337907,87750,542],[337235,92128,552],[336440,92381,562],[336474,92342,562],[337235,87341,542],[336511,92305,562],[337260,87386,542],[336550,92271,562],[338945,80700,532],[351242,80381,544],[338993,80719,532],[336591,92239,562],[337289,87430,542],[337320,87471,542],[336635,92211,562],[337354,87510,542],[336680,92185,552],[337390,87546,542],[336727,92163,562],[336775,92144,562],[337470,87611,542],[336825,92128,562],[337429,87580,542],[337514,87640,542],[336875,92116,562],[337559,87665,542],[336926,92107,562],[337605,87687,542],[336978,92102,562],[337653,87706,542],[337030,92100,552],[337703,87722,542],[337082,92102,552],[337753,87734,542],[337134,92107,552],[337804,87743,542],[337185,92116,552],[337959,87748,542],[338010,87743,542],[337333,92163,552],[338061,87734,542],[338111,87722,542],[337425,92211,552],[338161,87706,542],[338209,87688,542],[337510,92271,552],[338255,87665,542],[338300,87640,542],[342488,90818,546],[338385,87580,542],[338424,87546,542],[337959,86238,532],[337907,86236,532],[338492,82129,522],[338161,86280,532],[338111,86264,532],[338694,82157,532],[343414,94496,559],[343556,94047,952],[343855,94856,952],[346944,84398,533],[339442,81356,542],[339437,81305,542],[337134,93615,552],[342940,89804,552],[338554,87386,542],[338579,87341,532],[337789,92913,562],[342670,92193,548],[337784,92965,562],[337775,93016,562],[342937,94199,545],[337763,93066,562],[337747,93116,562],[337728,93164,562],[337706,93211,562],[337680,93256,562],[337652,93300,562],[337620,93341,562],[337586,93380,562],[337549,93417,552],[337510,93451,562],[337469,93483,562],[337425,93511,552],[337380,93537,552],[337333,93559,552],[337285,93578,552],[337235,93594,552],[337185,93606,552],[338847,82141,542],[338255,86321,532],[338796,82150,542],[338221,81989,522],[337605,86299,532],[338182,81955,522],[327152,82909,492],[337972,81609,512],[337987,81658,512],[337960,81560,512],[337951,81509,512],[337946,81458,512],[337944,81407,512],[337946,81356,512],[337951,81305,512],[337960,81254,502],[337972,81205,502],[337987,81156,502],[338006,81108,502],[338028,81062,502],[338053,81017,502],[338081,80974,502],[338112,80934,502],[338146,80895,502],[338182,80859,502],[338221,80825,512],[338261,80794,512],[338304,80766,512],[338349,80741,512],[338395,80719,512],[342944,90666,732],[338443,80700,502],[366246,70840,482],[338541,80673,512],[338492,80685,502],[338592,80664,512],[338643,80659,512],[338694,80657,512],[338745,80659,522],[338796,80664,522],[338847,80673,522],[354860,79368,513],[359198,79639,520],[357071,79250,524],[339084,80766,532],[339039,80741,532],[339127,80794,532],[347798,83892,962],[347355,84507,962],[339167,80825,532],[350781,80763,542],[339206,80859,532],[346957,85151,952],[346604,85822,962],[345875,86545,536],[339276,80934,532],[339242,80895,532],[348533,82562,544],[346299,86515,962],[345422,88361,555],[345924,86889,586],[345836,87957,942],[339360,81062,532],[339382,81108,532],[346042,87228,952],[345271,89390,559],[345680,88698,942],[345577,89449,932],[345526,90204,952],[345169,90443,551],[343427,91086,569],[345527,90962,952],[343188,91120,962],[343132,92378,972],[343315,93220,942],[338061,86252,532],[338643,82155,532],[338010,86243,532],[338541,82141,522],[337855,86238,532],[337804,86243,532],[338395,82095,522],[339334,81796,542],[339306,81839,542],[339275,81880,542],[338579,86645,532],[339206,81955,542],[339242,81919,542],[338554,86600,532],[339167,81988,542],[338525,86556,532],[339126,82019,542],[338494,86515,532],[339083,82047,542],[338460,86476,532],[339039,82073,542],[338424,86440,532],[338993,82095,542],[337285,92144,552],[337289,86556,532],[337152,87045,532],[338385,86406,532],[338945,82113,542],[338344,86375,532],[338896,82129,542],[338300,86346,532],[338209,86299,532],[338745,82155,532],[338592,82150,522],[338443,82114,522],[337178,86789,532],[337166,86839,532],[337213,87295,542],[337703,86264,532],[338261,82020,522],[338304,82048,522],[337653,86280,522],[337559,86321,532],[338146,81919,522],[337166,87147,542],[337514,86346,532],[338112,81880,522],[337157,87096,532],[338081,81840,512],[337470,86375,532],[337390,86440,532],[338028,81752,512],[338053,81797,512],[337150,86993,532],[338006,81706,512],[337354,86476,532],[337152,86941,532],[337320,86515,532],[337157,86890,532],[337429,86406,532],[338349,82073,522],[337753,86252,532],[337194,86739,532],[337213,86691,532],[337235,86645,532],[337260,86600,532],[339360,81752,542],[339382,81706,542],[339400,81658,532],[339416,81609,542],[337620,92381,562],[337586,92342,562],[338601,86691,532],[343008,91525,962],[338620,86739,532],[338636,86789,532],[337706,92511,562],[337680,92466,562],[338648,86839,532],[337728,92558,562],[343549,95515,555],[337747,92606,562],[337763,92656,562],[337549,92305,562],[338344,87612,542],[338657,87096,532],[338662,87045,532],[338602,87295,532],[338620,87247,532],[338526,87430,542],[338494,87471,542],[338460,87510,542],[337469,92239,552],[337380,92185,552],[376640,76733,737],[376820,78088,754],[372943,82294,573],[374054,83893,778],[373612,83577,721],[372669,90403,589],[377365,92773,614],[380852,92275,822],[378086,94716,754],[376427,91506,750],[361712,110534,893],[374122,98431,783],[376719,95882,909],[373803,98802,931],[373170,97523,722],[370830,95170,592],[374727,94299,612],[367640,91095,547],[367718,89456,533],[352854,102675,611],[353621,102409,992],[353677,102614,624],[373699,93197,622],[367234,93082,572],[367408,91735,559],[375825,93298,612],[377215,94808,663],[375932,95276,629],[369513,102895,898],[368925,103178,694],[368533,102804,821],[357121,114258,690],[357313,102636,626],[357879,102206,1032],[358415,102200,669],[356066,102787,612],[352772,102264,982],[344661,97071,564],[345078,97129,952],[345587,97824,972],[351496,102078,679],[351934,102059,982],[352342,102331,636],[338664,86993,532],[351113,101797,982],[337775,92706,562],[346332,99203,576],[349177,101201,605],[337789,92809,562],[337784,92757,562],[350599,102076,589],[350313,101478,982],[337791,92861,562],[349536,101104,982],[348071,100199,972],[348788,100677,982],[338648,87147,532],[338636,87197,532],[346746,99098,952],[346573,99153,652],[346296,98891,641],[346145,98481,952],[338662,86941,532],[344621,96737,622],[339428,81560,542],[339437,81509,542],[344209,95641,982],[338657,86890,532],[339442,81458,542],[339444,81407,542],[343175,90933,962],[343165,90746,952],[343378,90730,558],[343158,89811,552],[344247,90608,539],[343153,89998,552],[343152,90185,562],[343158,90559,952],[339428,81254,542],[339416,81205,542],[339401,81156,532],[339335,81017,532],[339307,80974,532],[348282,83309,962],[349959,81780,952],[349365,82251,952],[338896,80685,522],[353335,80103,942],[351855,80363,563],[350584,81352,962],[351916,80632,952],[351237,80969,952],[352616,80343,952],[352216,80345,831],[356322,79655,952],[355566,79689,942],[354813,79775,942],[357834,79746,952],[357080,79674,952],[358037,79575,592],[359910,79971,536],[359254,80038,962],[358549,79868,962],[360623,80514,952],[359946,80253,952],[363565,81970,527],[363669,82451,952],[363114,81985,952],[360937,80295,528],[361281,80819,952],[361901,80920,540],[361917,81167,952],[362626,81241,539],[362908,81591,569],[362529,81556,952],[364459,82968,553],[364682,83489,942],[364193,82953,942],[365017,83629,561],[365614,84313,541],[365134,84056,942],[365548,84651,952],[366211,85333,546],[366702,86377,541],[366254,85917,932],[366950,94430,570],[366744,86692,560],[366542,86583,962],[367154,87407,522],[366984,87963,952],[366786,87266,952],[367377,89092,552],[367240,89390,962],[367136,88672,962],[367423,89440,558],[367466,89770,546],[367297,90113,962],[367367,91403,593],[367267,91562,952],[367306,90838,962],[367192,92743,604],[367046,92995,962],[367180,92282,962],[366905,94071,589],[366557,94636,972],[366830,93824,972],[366571,95395,577],[366530,95079,598],[365895,96761,565],[365853,96414,628],[365405,96929,972],[365842,96192,972],[364254,98741,587],[362230,100487,608],[365036,97744,592],[364379,98300,972],[363797,98928,972],[363171,99514,972],[360922,101422,605],[361197,101111,620],[359622,102141,609],[358785,102210,619],[359517,101709,1012],[357037,102367,1042],[356186,102468,1032],[354518,102928,609],[355331,102509,992],[354483,102589,739],[354474,102489,992],[343153,90372,732],[345217,90801,563],[354068,79913,942],[348805,82761,952],[351034,80731,556],[358707,101987,1022],[344053,95796,582],[366227,95427,972],[364971,83295,536],[350561,101742,653],[343309,93487,965],[343371,94162,589],[364916,97633,972],[362506,100054,992],[361805,100546,972],[359586,101792,749],[360493,101456,627],[361070,100987,972],[365922,85273,932],[347389,99672,972],[309197,73799,577],[311928,76441,654],[374822,92177,702],[374991,90957,848],[344617,96400,952],[370322,101696,825],[370707,101388,996],[360875,111554,726],[357729,114680,912],[372688,99752,773],[376672,95563,843],[376344,95610,816],[368662,103819,748],[368565,103147,623],[368171,103476,947],[367269,104143,775],[368444,102156,761],[364608,107864,922],[364138,108221,792],[364516,107187,881],[369653,101596,945],[371306,99388,869],[363317,108567,900],[363491,106897,881],[368488,102487,767],[369427,102246,887],[356842,115310,757],[355146,116432,829],[306365,71921,588],[373481,82576,738],[373732,81547,605],[373981,97455,620],[374855,96731,642],[360307,101376,982],[337652,92422,562],[365671,106457,915],[377152,87666,725],[375181,89576,631],[374586,90966,706],[373734,92023,753],[366073,105455,902],[313227,77388,636],[317047,79645,725],[362092,110186,774],[365875,105798,759],[360837,111202,820],[362260,109148,660],[376027,95977,665],[376076,96310,736],[377265,95155,719],[374962,97378,935],[279881,113604,776],[281222,113252,757],[280922,114088,989],[280828,110254,884],[281617,111662,764],[279582,111252,1013],[280457,107579,742],[282181,109610,820],[280090,108003,820],[278725,108031,657],[278312,107810,782],[281822,113009,1091],[282519,111962,1102],[281091,112286,756],[278446,113384,1065],[283464,109843,716],[282273,110313,778],[275951,110587,843],[277760,110174,834],[276091,111579,923],[278138,112845,1090],[279092,113528,900],[280489,114495,927],[279476,110607,758],[277071,112249,833],[278722,110849,784],[278874,109027,860],[280314,109718,725],[277418,112100,826],[283830,109333,813],[241584,106947,530],[242064,105938,462],[242111,105909,462],[235216,110269,492],[241408,107311,769],[282378,137833,1066],[284722,136719,1192],[279527,133298,1093],[279268,131691,1312],[284905,135919,1204],[284238,135510,1076],[278221,135940,1042],[282083,140355,1181],[276684,139317,1111],[281591,138471,1200],[280022,140598,1157],[280440,140065,1100],[281257,140405,1247],[281205,140082,1120],[281667,137322,1077],[280934,138032,1191],[282531,135985,1202],[281593,134527,1114],[281873,134064,1119],[279462,140092,1223],[280867,133022,1316],[280652,133521,1280],[280916,133383,1325],[280684,133853,1104],[344179,129988,742],[343653,129587,642],[343754,129442,642],[347070,126618,752],[343332,129120,812],[343243,128745,637],[341400,127793,662],[341525,127704,672],[344268,124457,729],[341102,127374,672],[341003,127501,672],[343250,129214,812],[342422,124742,725],[343346,123899,737],[418037,53089,761],[417462,53645,746],[418089,53413,905],[337384,106413,971],[336527,105599,930],[337526,103999,927],[314133,80318,925],[310494,81479,752],[313160,77834,612],[320209,83061,857],[334642,93936,588],[333652,93190,778],[333605,92875,708],[317593,83688,853],[317828,85388,975],[314509,83953,942],[314930,83395,922],[314696,84168,932],[315082,83489,922],[316685,79792,746],[316382,79886,872],[317863,82235,948],[318928,86817,844],[319232,87223,1392],[314560,96306,673],[305979,88408,569],[304977,88662,645],[310252,81432,752],[310173,81543,752],[309923,82377,701],[309884,82046,755],[312205,83057,965],[312834,83183,892],[312637,83958,894],[313367,84719,637],[315199,84877,779],[319078,87389,912],[309377,87454,530],[308254,86090,770],[310759,85601,558],[302738,87101,822],[304037,87165,831],[303735,88258,742],[300989,87549,657],[299617,89354,691],[301024,90669,719],[307854,86526,569],[308711,84202,892],[309245,83624,937],[312117,85223,559],[313095,85198,754],[313171,85873,573],[312046,88063,659],[321656,88650,1015],[320910,88121,1274],[321891,88239,708],[315859,93414,745],[316707,93165,777],[317313,94370,918],[322292,98856,677],[319132,98281,679],[319813,97044,691],[314099,90111,866],[313086,89801,815],[314070,92618,670],[312024,91525,719],[314810,92683,935],[314861,93007,1054],[314458,92816,893],[314219,91127,680],[314626,91361,828],[315147,95358,694],[314350,94623,858],[321916,95860,977],[324532,95355,1054],[324329,97780,889],[321696,96943,865],[318728,95257,649],[317965,93448,1059],[319870,93874,893],[332402,103225,623],[330977,101837,538],[331473,100699,568],[323562,98581,837],[318017,96592,767],[322944,98396,953],[344551,106324,593],[343799,105390,838],[345392,105863,580],[328175,97171,769],[325044,99393,712],[324958,98714,763],[327194,102487,679],[325446,102431,682],[326903,102892,805],[326052,96499,777],[330679,102600,613],[330358,106812,650],[333899,108059,686],[331925,108889,690],[342904,110602,561],[341003,111900,612],[341591,110769,606],[349651,111739,628],[349642,114785,795],[348142,114393,686],[335609,107963,701],[343701,110817,775],[343611,110162,739],[345379,119539,610],[344813,119239,725],[346298,112607,738],[346163,111562,786],[345983,119822,737],[317579,93214,906],[316585,92125,998],[319418,86740,835],[319530,87396,1186],[319940,86954,926],[320803,87436,1046],[332379,96637,689],[330202,98876,857],[330829,95674,881],[317895,88862,839],[318734,88625,1238],[318839,89626,849],[321031,89122,1103],[320982,88793,1036],[322050,94093,1079],[326611,96047,934],[310250,84732,890],[319791,85934,722],[319866,86284,1123],[321754,100737,696],[321162,96030,1158],[337901,110484,611],[340023,110726,528],[337954,110811,750],[336164,105383,616],[333401,104368,594],[321458,89720,926],[320430,90646,929],[314725,92007,1002],[315230,92214,1128],[314770,92323,1044],[304478,87395,808],[344372,109763,719],[304931,88311,658],[317829,95239,646],[316660,95969,645],[319617,91842,1124],[318311,91904,1012],[318944,90330,1020],[316461,91164,1038],[315962,90611,826],[317089,89535,860],[314817,89192,955],[319755,89092,1182],[305899,87738,696],[307111,88141,534],[306907,86476,763],[316132,95444,794],[317744,97722,724],[317377,98214,793],[318022,89871,761],[312890,88437,585],[317760,87842,844],[317531,88307,1020],[316462,87950,919],[314997,87029,549],[316220,86274,636],[335453,99996,675],[332398,100107,652],[336865,102724,595],[336328,104278,602],[334551,103059,591],[336298,106402,591],[320232,96548,995],[318067,90187,803],[317750,89987,981],[323742,89627,678],[321885,90334,1096],[322038,89238,903],[321298,91154,1081],[322101,92032,963],[320521,91323,929],[337940,103556,929],[337456,103648,598],[338801,104055,760],[337047,104078,604],[337876,103218,662],[339879,105569,758],[336227,101140,572],[314356,92144,709],[313166,90472,707],[316953,88503,875],[320719,86763,1137],[319890,86612,844],[322081,87498,714],[322467,87412,807],[320553,82974,783],[322620,85032,708],[328281,100926,731],[324757,93597,855],[344412,118640,606],[343100,115697,690],[345503,113391,781],[316963,95161,662],[307373,86344,533],[306948,86797,733],[341592,104235,906],[338179,102464,620],[317796,90304,1051],[317242,90534,1149],[317664,91092,1223],[316866,90988,946],[333324,103693,773],[332851,103461,761],[336419,104954,622],[333920,95220,756],[342339,106228,798],[341486,99853,714],[342395,106584,918],[341940,106921,769],[317802,94922,860],[337510,107426,849],[337085,107568,591],[337008,106853,847],[337585,108138,579],[317239,88086,841],[301999,87962,684],[340415,109592,787],[340884,110894,823],[340219,109964,575],[341572,113563,645],[331083,108716,652],[343518,107441,670],[343074,104083,694],[346913,103602,557],[350760,110231,758],[338591,108603,621],[338995,108495,817],[338681,109307,576],[340496,111994,702],[318801,98072,704],[332192,92147,596],[331413,92723,632],[339505,109446,567],[336595,106285,603],[342407,116826,763],[320258,100396,686],[318843,98398,678],[299661,89671,708],[301667,88012,673],[334340,101369,786],[330595,101923,702],[322634,88764,637],[323561,88298,614],[323973,87845,594],[344064,107421,753],[343380,108461,656],[338139,108713,723],[345842,112651,780],[318694,99155,674],[322843,86674,773],[321161,87359,1142],[317322,97870,659],[341670,108326,865],[321946,88562,875],[321985,88891,798],[329795,95881,729],[323445,91075,1016],[336245,98016,675],[311616,84687,901],[314868,86023,601],[314840,79023,895],[320635,88859,1013],[325553,90056,809],[326951,88075,563],[335423,95098,563],[335799,94658,695],[335889,95334,692],[324796,87084,708],[325568,88300,719],[318049,87069,945],[312402,84751,600],[340443,99256,573],[337727,99080,584],[337949,97677,691],[336347,98715,811],[342478,107235,865],[324835,87440,584],[337814,96669,689],[314712,84671,936],[340902,99218,574],[351950,112169,779],[351585,111534,630],[335083,94861,700],[325177,87345,586],[309803,88014,623],[315229,149210,949],[274474,89653,712],[275080,90106,712],[274901,90328,712],[274302,89873,712],[291704,116483,806],[292036,116072,857],[290621,114646,1021],[290250,114705,819],[290216,114378,937],[287064,115093,803],[289870,118348,976],[286746,115584,816],[291288,116586,828],[290664,117744,933],[290182,118251,980],[291154,115593,808],[288769,113071,785],[253466,195340,1082],[253422,195341,1082],[253511,195335,1082],[254072,194691,1062],[253640,195304,1082],[253554,195328,1082],[253598,195317,1082],[253681,195288,1082],[253797,195222,1072],[253760,195247,1072],[253721,195269,1072],[253897,195135,1072],[253866,195166,1072],[253833,195196,1072],[254066,194780,1062],[254019,194950,1072],[253927,195102,1072],[253978,195029,1072],[253953,195066,1072],[254000,194990,1072],[254059,194823,1072],[254035,194909,1072],[254048,194867,1072],[254071,194735,1062],[253378,195339,1082],[254070,194647,1062],[254018,194432,1062],[254066,194602,1062],[254048,194516,1062],[254058,194559,1062],[254034,194473,1062],[253760,194136,1052],[253977,194353,1062],[253999,194392,1062],[253953,194316,1062],[253926,194281,1062],[253897,194247,1062],[253797,194160,1052],[253866,194216,1062],[253832,194187,1062],[253681,194095,1052],[253721,194114,1052],[253640,194079,1052],[253554,194055,1042],[253597,194065,1052],[253466,194043,1042],[253511,194047,1042],[253378,194043,1042],[253422,194041,1042],[253204,194079,1032],[253333,194047,1042],[253290,194055,1042],[253247,194065,1032],[253084,194136,1032],[253163,194095,1032],[253123,194114,1032],[252947,194247,1042],[253047,194160,1032],[252978,194216,1032],[253012,194187,1032],[252891,194316,1042],[252918,194281,1042],[252796,194866,1052],[252826,194432,1042],[252867,194353,1042],[252845,194392,1042],[252796,194516,1042],[252810,194473,1042],[252778,194602,1052],[252786,194559,1042],[252774,194647,1042],[252772,194691,1042],[252774,194735,1042],[252786,194823,1052],[252778,194780,1052],[253333,195335,1082],[252845,194990,1062],[252810,194909,1052],[252826,194950,1052],[252867,195029,1062],[252918,195101,1062],[252891,195066,1062],[252978,195166,1072],[252947,195135,1072],[253123,195268,1072],[253012,195195,1072],[253084,195246,1072],[253047,195222,1072],[253163,195287,1072],[253247,195317,1072],[253204,195303,1072],[253290,195327,1082],[234223,111538,476],[230290,113731,592],[235230,110511,502],[235043,110913,464],[234819,111231,641],[472036,6052,32],[472073,5790,32],[521245,8267,32],[471981,6311,32],[511547,29311,32],[471816,6815,32],[471907,6566,32],[471708,7057,32],[471583,7290,32],[471442,7514,32],[471285,7728,32],[470929,8120,32],[471114,7931,32],[509635,33904,32],[269998,298272,32],[268785,299473,32],[239297,291307,32],[459783,26663,32],[462934,8074,32],[468286,9168,32],[272430,295877,32],[271213,297073,32],[276094,292300,32],[274871,293490,32],[273650,294682,32],[345366,228398,32],[344812,228926,32],[334996,235648,32],[354456,217238,32],[348226,225589,32],[348688,225129,32],[327540,242921,32],[286335,245958,32],[278547,289925,32],[375001,160796,32],[383532,152521,32],[400790,171272,32],[397001,178401,32],[387037,188308,32],[386741,188445,32],[384655,189411,32],[380229,191675,32],[397109,178201,32],[456905,10065,32],[457014,9820,32],[367413,204506,32],[464686,32274,32],[470522,8459,32],[470731,8297,32],[465043,33092,32],[267574,300676,32],[465298,33736,32],[266365,301881,32],[510603,31683,32],[265158,303088,32],[263953,304297,32],[262750,305508,32],[261550,306722,32],[259693,308621,32],[456590,10497,32],[456763,10292,32],[511560,29458,32],[471815,3972,32],[471707,3730,32],[521510,8125,32],[521293,8289,32],[521721,7955,32],[521928,7779,32],[522129,7597,32],[523558,5333,32],[522325,7409,32],[522515,7215,32],[522699,7016,32],[522877,6812,32],[523050,6602,32],[523215,6387,32],[523375,6168,32],[523528,5943,32],[523674,5715,32],[523813,5482,32],[524371,3938,32],[471582,3496,32],[463099,0,32],[469332,1758,32],[469074,1696,32],[466368,43344,32],[500429,53663,32],[499352,55832,32],[469584,1838,32],[471284,3058,32],[471113,2856,32],[469831,1936,32],[470928,2666,32],[470730,2490,32],[470069,2050,32],[470520,2328,32],[470300,2181,32],[508656,36119,32],[507666,38330,32],[465687,34855,32],[466287,37148,32],[506665,40535,32],[505653,42736,32],[466017,35994,32],[504630,44932,32],[503596,47123,32],[466621,39311,32],[501496,51488,32],[466542,42349,32],[471440,3272,32],[471906,4220,32],[471980,4475,32],[472035,4734,32],[472073,4996,32],[472091,5261,32],[472091,5526,32],[438754,16498,32],[438239,15329,32],[438239,15328,32],[464297,31472,32],[470301,8606,32],[464020,30946,32],[470071,8737,32],[463578,30171,32],[469832,8852,32],[463176,29527,32],[469586,8949,32],[462986,29257,32],[469333,9029,32],[462677,28871,32],[469076,9091,32],[462456,28626,32],[468815,9135,32],[462224,28392,32],[468551,9161,32],[461854,28064,32],[277320,291111,32],[456493,10590,32],[456576,10510,32],[456405,10664,32],[457104,25370,32],[456390,10676,32],[456167,10825,32],[455926,10941,32],[455670,11022,32],[456228,25069,32],[455406,11066,32],[454812,24729,32],[455138,11073,32],[454872,11041,32],[453048,11160,32],[454741,11012,32],[453213,11106,32],[454612,10973,32],[453254,11092,32],[454365,10869,32],[453448,10997,32],[454135,10732,32],[453628,10875,32],[453927,10563,32],[453788,10729,32],[453780,10736,32],[453721,10790,32],[453540,10939,32],[453411,11015,32],[453323,11058,32],[452870,11192,32],[452835,11198,32],[452782,11200,32],[452642,11206,32],[452618,11207,32],[452510,11200,32],[452421,11188,32],[452402,11185,32],[445258,22056,32],[452332,11168,32],[452192,11134,32],[452121,11106,32],[451990,11054,32],[440846,21249,32],[440283,19971,32],[440283,19970,32],[466657,41136,32],[502551,49308,32],[466497,38315,32],[466670,40223,32],[461726,27960,32],[498264,57996,32],[466038,44917,32],[461980,28170,32],[463086,54722,32],[497165,60155,32],[488136,77001,32],[462103,28280,32],[465560,46867,32],[462341,28508,32],[462568,28747,32],[462783,28997,32],[462886,29126,32],[463082,29391,32],[463266,29665,32],[463424,29917,32],[463729,30427,32],[463876,30686,32],[464160,31208,32],[464430,31738,32],[464560,32005,32],[486655,79502,32],[460461,61701,32],[464809,32545,32],[464928,32818,32],[457614,68589,32],[485127,81976,32],[483553,84420,32],[457824,68110,32],[465155,33367,32],[465564,34480,32],[465434,34107,32],[481935,86835,32],[456906,69987,32],[465804,35233,32],[465914,35613,32],[454930,72988,32],[480271,89219,32],[478564,91572,32],[456229,71105,32],[466114,36377,32],[466204,36762,32],[466363,37536,32],[476813,93893,32],[453729,74620,32],[466433,37925,32],[448732,81686,32],[475019,96181,32],[473183,98435,32],[452482,76216,32],[466553,38706,32],[466590,39008,32],[466644,39615,32],[471305,100655,32],[469386,102839,32],[467427,104987,32],[466660,39919,32],[466672,40528,32],[466668,40832,32],[465429,107098,32],[441602,91378,32],[417974,118701,32],[463391,109172,32],[414047,158268,32],[466638,41440,32],[466613,41744,32],[466581,42047,32],[466497,42650,32],[466444,42950,32],[466290,43738,32],[466209,44132,32],[466125,44525,32],[465948,45308,32],[465855,45699,32],[465760,46089,32],[465661,46478,32],[465456,47255,32],[465348,47642,32],[465238,48028,32],[465125,48413,32],[457721,68350,32],[457504,68826,32],[457275,69295,32],[457391,69061,32],[457155,69527,32],[457032,69758,32],[456777,70214,32],[456644,70440,32],[456509,70663,32],[456371,70885,32],[456085,71323,32],[455801,71742,32],[455514,72160,32],[455223,72575,32],[454634,73399,32],[454336,73808,32],[454034,74215,32],[453422,75022,32],[453112,75422,32],[452798,75820,32],[452164,76610,32],[451842,77001,32],[441072,92059,32],[440541,92738,32],[440007,93416,32],[439471,94092,32],[438932,94766,32],[438392,95438,32],[437849,96109,32],[437304,96778,32],[436757,97445,32],[436208,98110,32],[435657,98774,32],[435103,99435,32],[434548,100095,32],[433990,100753,32],[425137,110912,32],[404623,132355,32],[346380,48953,232],[347288,48677,232],[347434,49155,242],[346525,49432,242],[423682,32197,1922],[422605,33729,1952],[423647,32174,1922],[216745,315746,762],[218534,312598,762],[460461,61701,692],[231625,298703,762],[239297,291307,762],[286335,245958,762],[428276,106956,580],[425311,110712,210],[444037,87707,260],[446542,84311,243],[435103,99435,812],[434654,99311,746],[435124,98993,345],[435657,98774,822],[435646,98380,252],[436208,98110,852],[436327,97369,618],[436757,97445,822],[437396,96540,145],[437304,96778,632],[437956,95577,240],[438956,94624,159],[438932,94766,572],[439471,94092,722],[439631,93664,166],[440007,93416,702],[440040,93164,188],[440541,92738,572],[453264,74498,788],[455514,72160,692],[451842,77001,552],[452164,76610,552],[452798,75820,722],[452932,75631,557],[452482,76216,722],[453422,75022,702],[453729,74620,692],[453112,75422,782],[454336,73808,692],[454034,74215,782],[454634,73399,692],[454930,72988,692],[455223,72575,692],[455801,71742,692],[456085,71323,692],[456229,71105,692],[456371,70885,692],[456509,70663,692],[456644,70440,692],[456777,70214,692],[456906,69987,692],[457032,69758,692],[457155,69527,692],[457275,69295,692],[457391,69061,692],[457504,68826,692],[457614,68589,692],[457721,68350,692],[457824,68110,692],[220224,310364,762],[463086,54722,692],[441370,91281,253],[450979,78223,871],[447481,83293,172],[422871,113340,395],[424691,111309,272],[425137,110912,642],[448277,82302,356],[437073,96695,226],[433952,100245,510],[433990,100753,812],[438941,94286,581],[432535,102080,346],[433282,101530,141],[434548,100095,812],[424998,110832,323],[413962,122503,584],[416435,119951,569],[330858,203191,393],[319873,213555,667],[406530,130040,622],[402046,134540,412],[397414,139241,146],[356336,178551,771],[353319,181395,632],[369945,165171,830],[379691,155933,625],[391007,145020,673],[394352,141909,565],[215069,319948,762],[213100,327637,762],[433606,101038,204],[440025,92843,574],[404299,132337,468],[404013,132854,164],[382347,153563,413],[380287,155624,405],[404721,131730,639],[404736,132121,139],[404623,132355,682],[404492,132247,234],[408122,128764,171],[405377,131531,131],[440444,92745,182],[400920,135857,140],[318444,215098,311],[315129,217971,728],[383532,152521,712],[450113,79500,297],[422841,112964,670],[419826,116466,485],[423169,112881,344],[375001,160796,762],[345933,188714,468],[387943,148266,256],[407867,128514,700],[375160,160395,765],[372327,163163,612],[407611,128942,564],[443036,89378,209],[428794,106430,395],[429385,105605,563],[430835,103943,711],[421912,114401,137],[421682,114534,243],[431771,103011,363],[376016,159750,498],[370463,164902,798],[365007,170394,520],[436461,22314,352],[435777,22464,1332],[437964,21922,1702],[436139,22586,1837],[436073,22446,139],[437176,22242,1709],[438089,22218,1792],[438142,22342,2622],[435845,22910,2212],[435811,22495,450],[437964,21923,1702],[435777,22464,582],[437964,21922,582],[455572,25215,92],[455303,25294,247],[454793,25027,195],[440852,21711,1340],[441052,21532,1342],[445151,22054,280],[440846,21249,1052],[440712,21774,1372],[443011,67668,1232],[443359,67391,1392],[443089,67731,1232],[443281,67328,1392],[444746,65227,4212],[444667,64973,4212],[444839,65263,4212],[445006,64828,4212],[445179,62071,4282],[445357,62274,4282],[444912,64793,4212],[445457,62272,4282],[445447,61798,4302],[444999,59173,4132],[444920,59235,4222],[444693,59148,4262],[445347,61800,4282],[444718,58813,4132],[443116,56845,4522],[443200,56771,4512],[444635,58869,4132],[443282,56715,4512],[442976,56372,4612],[442901,56439,4532],[441208,54548,4792],[441283,54481,4792],[440902,54205,4792],[440976,54138,4772],[439283,52247,4692],[439209,52314,4682],[438896,51964,4682],[438970,51897,4682],[437284,50013,12682],[437210,50080,12422],[436903,49737,12422],[436978,49670,12772],[435298,47794,14282],[435224,47860,14212],[434985,47444,15092],[434910,47510,14472],[443011,67668,1202],[443089,67731,1192],[443359,67391,1202],[443281,67328,1212],[444746,65227,1262],[444839,65263,1262],[445006,64828,1282],[444912,64793,1292],[445357,62274,1422],[445457,62272,1422],[445447,61798,1452],[445347,61800,1462],[444920,59235,1612],[444999,59173,1612],[444718,58813,1662],[444635,58869,1662],[443200,56771,1822],[443282,56715,1812],[442976,56372,1852],[442901,56439,1872],[441208,54548,2002],[441283,54481,2002],[440976,54138,2012],[440902,54205,2002],[439209,52314,2072],[439283,52247,2072],[438970,51897,2082],[438896,51964,2082],[437210,50080,2192],[437284,50013,2192],[436978,49670,2212],[436903,49737,2212],[435224,47860,2242],[435298,47794,2242],[434985,47444,2252],[434910,47510,2252],[397989,92847,2772],[397821,92862,2652],[397899,92770,2622],[397989,92847,1002],[221793,119101,642],[225523,116542,512],[225624,116703,542],[221531,119040,572],[221633,119204,602],[221793,119101,482],[225624,116703,482],[225523,116542,472],[221531,119040,482],[221633,119204,492],[230175,113556,542],[230175,113556,472],[312834,83183,4512],[314696,84168,3022],[319078,87389,1412],[314509,83953,3412],[315082,83489,3022],[314930,83395,3012],[380581,86368,1448],[380965,86254,1424],[380569,86679,718],[381624,84713,685],[378528,87461,846],[377963,86496,1180],[378162,87187,2680],[378697,87794,2603],[379122,88095,2543],[379278,87979,755],[379342,88317,1016],[378944,87721,739],[381304,85829,763],[381257,85507,702],[379888,87169,690],[380922,85925,1420],[382344,84388,762],[380251,86728,1101],[406073,94308,1426],[406497,94521,803],[406117,94548,772],[408107,92254,1447],[407877,93033,1417],[408044,92342,5044],[410159,90800,642],[407334,93545,1403],[407530,92817,1435],[407248,92869,1446],[405777,94324,802],[409457,91318,1403],[407081,93985,816],[406457,94772,692],[406870,94079,1446],[407834,92693,1445],[409417,91001,1432],[409734,90549,675],[409782,90882,745],[357141,94149,1865],[356587,96824,1592],[356446,96819,1592],[356728,96819,1592],[356869,96805,1592],[357009,96781,1602],[357146,96747,1592],[357281,96704,1602],[357412,96652,1602],[357540,96592,1602],[357663,96522,1602],[357782,96445,1612],[357894,96359,1612],[358001,96266,1612],[358101,96166,1622],[358194,96059,1642],[358280,95947,1652],[358357,95828,1642],[358427,95705,1652],[358487,95577,1652],[358539,95446,1682],[358582,95311,1682],[358616,95174,1682],[358640,95034,1692],[358654,94893,1722],[358659,94752,1722],[358654,94611,1732],[358640,94470,1732],[358616,94330,1732],[358582,94193,1732],[358539,94058,1742],[358487,93927,1742],[358427,93799,1742],[358357,93675,1752],[358280,93557,1752],[358194,93444,1772],[358101,93338,1772],[358001,93238,1772],[357895,93145,1782],[357782,93059,1782],[357664,92982,1772],[357540,92912,1782],[357412,92852,1782],[357281,92800,1782],[357146,92757,1782],[357009,92723,1782],[356869,92699,1782],[356728,92685,1782],[356587,92680,1782],[356305,92699,1782],[356446,92685,1782],[356165,92723,1782],[356028,92757,1782],[355893,92800,1782],[355762,92852,1782],[355634,92912,1782],[355510,92982,1782],[355392,93059,1792],[355279,93145,1772],[355173,93238,1772],[355073,93338,1772],[354980,93444,1762],[354894,93557,1752],[354817,93675,1742],[354747,93799,1742],[354687,93927,1732],[354635,94058,1722],[354592,94193,1712],[354558,94330,1712],[354534,94470,1702],[354520,94611,1692],[354515,94752,1692],[354520,94893,1682],[354534,95034,1682],[354558,95174,1672],[354592,95311,1672],[354635,95446,1662],[354687,95577,1662],[354747,95705,1662],[354817,95829,1662],[354894,95947,1652],[354980,96060,1652],[355073,96166,1642],[355173,96266,1642],[355279,96359,1642],[355392,96445,1622],[355510,96522,1622],[355634,96592,1622],[355762,96652,1602],[355893,96704,1602],[356028,96747,1602],[356165,96781,1602],[356305,96805,1592],[276578,65311,484],[277506,65264,352],[276236,65983,332],[276535,64978,500],[276520,65098,5037],[276181,65126,465],[276732,63964,372],[275479,64710,372],[222828,114271,642],[223074,114299,5308],[223200,114419,412],[221600,114351,506],[221899,114944,549],[221192,114020,362],[222117,113525,7388],[222164,113773,523],[221716,113951,524],[222697,114161,5184],[222707,114122,612],[222251,113384,438],[221398,113928,432],[222237,114179,7785],[222011,114169,626],[222282,113709,5066],[222394,113935,1438],[222288,114870,568],[221989,115237,402],[222653,113792,481],[222287,113653,508],[222481,114002,7262],[222511,114034,588],[222331,114407,704],[222466,114715,5706],[221521,113988,5575],[222415,113219,362],[222427,114639,564],[401966,79855,1304],[401882,79501,789],[402238,79381,1254],[403351,82639,802],[401687,81443,792],[402358,80509,772],[403220,80109,772],[404547,80975,802],[401739,79957,1155],[402290,80047,765],[401868,79050,802],[401343,79780,812],[393061,83483,1307],[393484,83814,892],[389725,81166,822],[392893,82477,817],[392986,83156,869],[392503,82974,820],[393323,82595,857],[394078,82973,852],[393458,83626,838],[391575,82348,979],[393404,82962,1315],[391438,81367,871],[391085,81885,842],[393687,82784,1303],[391986,82494,828],[392373,81982,823],[391888,81515,1259],[391553,82018,1275],[391945,82180,828],[390319,80324,802],[391477,81695,799],[358916,33479,684],[359821,33303,592],[358289,33668,652],[358322,32795,740],[358363,33117,729],[357944,32179,692],[358195,32436,7567],[358275,32449,728],[359345,33148,723],[359511,32841,7920],[359566,32878,7146],[358349,32822,8992],[358494,32470,7265],[358668,32855,779],[358354,32922,779],[359652,32801,651],[359469,32642,3818],[359334,32224,766],[358839,32836,787],[358913,32960,1170],[358771,32873,7977],[358642,33325,780],[358877,33150,734],[358421,33097,7811],[359164,33088,7642],[358722,33011,8560],[359209,32105,732],[359400,31843,642],[358381,32477,750],[359285,33167,743],[359479,33250,8061],[359253,32742,6689],[358952,32719,811],[359254,32454,726],[359667,33148,735],[359201,32857,7315],[359153,32824,2797],[358229,32121,679],[358785,32461,732],[358858,32555,7040],[358636,32199,5536],[358576,32071,6456],[358738,32111,728],[359300,32797,749],[359310,32699,755],[358696,32372,761],[359413,32604,4624],[331793,54550,405],[332738,54284,272],[331318,54711,282],[331256,53602,360],[330904,53352,232],[331657,53530,399],[332050,53453,406],[331657,53768,5723],[331713,53883,540],[332017,53052,6396],[332004,53106,396],[332395,53374,365],[332323,52920,4672],[332323,52920,252],[404406,31622,921],[404620,31530,5163],[404725,31724,2401],[404591,31412,937],[404683,31190,914],[404699,31360,6593],[404842,31229,950],[405089,31112,1623],[404821,31660,961],[404427,31165,920],[405070,32441,968],[405601,32325,862],[404168,32743,812],[404732,31554,909],[404959,31073,5037],[405313,31882,1608],[404774,31880,907],[403757,31323,832],[404362,32528,956],[405190,30907,1652],[405363,31844,1659],[405302,32161,924],[404773,31727,1667],[405190,30907,872],[392622,24984,746],[392956,25106,662],[392538,25049,5101],[391361,24344,5696],[391415,24657,817],[391148,23986,682],[392290,24648,834],[392580,24650,778],[392475,24885,6148],[391727,25243,751],[391779,24997,3579],[391952,25297,800],[391447,24794,4111],[391634,25180,5586],[391484,25470,1192],[391976,24804,802],[391811,24734,3300],[392035,24775,4504],[392332,25085,3732],[392014,25262,4454],[392604,23657,712],[392072,24437,767],[391440,24192,780],[391592,25349,6084],[391685,24519,791],[392160,25103,770],[392142,24805,1073],[392269,25090,812],[391636,24554,765],[391663,24941,804],[392628,24755,3990],[392891,24906,4330],[392563,24617,5052],[392556,24541,816],[392401,24472,3157],[392533,24290,767],[392687,24125,3572],[392840,24856,782],[391685,24910,784],[392377,24954,3165],[392535,24992,782],[392580,24047,825],[392134,24686,3106],[392086,24739,3778],[391484,25470,652],[284462,74566,2446],[285172,74327,382],[283876,75077,1622],[284014,73348,3061],[284030,73401,8379],[283548,73531,3052],[284408,74241,2304],[284445,74233,7263],[284596,74375,657],[283587,73615,2392],[283998,73682,7425],[283681,74122,2389],[284268,74163,10202],[284259,74445,4379],[284532,73440,1454],[284422,73030,2732],[284035,73687,2738],[284802,73994,637],[284837,74307,551],[284308,73562,2181],[284309,73259,2738],[284137,74685,2329],[284338,73872,2029],[284575,74067,911],[284544,73745,1076],[283175,73865,5242],[283242,73888,2088],[283763,74774,2323],[284422,73030,352],[283876,75077,392],[283175,73865,342],[338571,81703,563],[339054,81664,540],[338745,81449,3472],[339012,81332,556],[338480,81023,553],[338241,81170,3434],[338069,81435,526],[301147,65257,953],[302005,65296,382],[300673,65955,372],[301353,63982,5852],[301161,64503,8408],[301199,64061,5912],[300972,64197,485],[300891,64220,6292],[301045,64140,5912],[301010,64970,5551],[300634,64518,7270],[300639,64963,577],[301115,64943,1076],[300584,64380,6292],[300737,64300,6292],[300277,64541,6282],[300430,64460,6292],[301216,64863,8516],[301523,64962,6535],[301515,65120,584],[301472,64775,615],[301843,65026,559],[299977,64688,342],[300144,64686,399],[301353,63982,382],[371964,30297,406],[373210,29990,452],[371725,30357,432],[372777,29639,3540],[372974,29413,537],[372997,29537,564],[372658,29465,5292],[372746,29184,577],[372885,29230,6325],[373059,29357,7447],[373015,29735,512],[373001,29276,8298],[371903,28994,6599],[371794,28944,8136],[371794,28934,536],[372349,29055,6137],[372294,29090,6877],[372344,28947,596],[372154,29106,6222],[372204,29181,535],[371759,29136,561],[372869,28520,492],[372578,28828,593],[372058,29032,575],[371423,28881,482],[372927,29052,545],[372601,29427,6108],[372557,29602,6599],[372439,29540,4547],[372424,29777,2032],[372292,29862,503],[372319,29401,595],[372821,29866,6750],[372254,30146,6652],[372627,29587,5742],[372630,29467,546],[372670,29784,525],[372560,29736,2747],[372612,29688,2062],[372554,29287,589],[372522,29646,775],[372471,29701,1436],[372721,29648,585],[372505,29711,7227],[372585,29126,552],[372871,29794,6113],[372978,29795,4636],[203238,113068,1401],[203383,112990,4932],[202163,113846,4622],[202311,113227,5919],[202126,113106,5576],[202433,113162,1457],[201865,112353,1345],[202063,112269,5242],[202163,112575,1414],[203096,113052,5231],[203233,112831,1351],[202676,112721,5436],[202534,112533,1419],[202663,112546,1346],[202563,111863,1294],[202521,111762,1232],[202864,112331,4982],[202732,113063,6849],[202826,112753,6810],[202974,112783,5308],[203119,112749,5191],[202949,112424,1279],[202759,112472,5254],[202820,112511,1468],[203002,112751,1381],[203048,113091,1356],[202760,113217,1399],[202883,113120,1417],[202586,112979,6400],[202375,113329,1404],[202532,113376,6216],[202184,112270,1377],[202318,113503,1432],[202047,112861,1582],[202526,112293,1376],[202351,112478,5371],[202433,112224,5260],[202280,112655,1409],[201968,113236,1453],[201302,112618,1332],[202505,113069,3899],[202002,113408,5648],[202614,112201,1333],[202266,112301,1908],[202214,112062,1298],[202469,112024,5108],[203316,112992,1277],[201935,113387,1423],[202546,112937,4626],[203383,112990,1272],[202163,113846,1412],[258306,188700,1002],[258262,188701,1002],[258391,188133,1163],[258351,188695,1012],[258394,188688,1012],[258438,188677,1012],[258480,188664,1012],[258521,188648,1002],[258561,188629,1002],[258600,188607,1002],[258637,188582,1002],[258673,188556,1012],[258706,188526,1012],[258737,188495,1012],[258767,188462,1002],[258793,188426,1012],[258818,188389,1002],[258840,188350,1002],[258859,188310,1002],[258875,188269,1002],[258888,188227,1002],[258899,188183,1002],[258906,188140,1002],[258911,188095,1002],[258216,188699,1002],[258912,188051,1002],[258910,188005,1002],[258906,187960,1002],[258898,187915,1002],[258886,187871,1002],[258872,187827,1002],[258855,187785,1002],[258835,187744,1002],[258812,187704,1002],[258786,187666,1002],[258758,187631,992],[258727,187597,992],[258694,187565,992],[258659,187536,992],[258622,187509,982],[258583,187486,982],[258542,187464,982],[258500,187446,982],[258457,187431,982],[258413,187419,972],[258368,187410,972],[258171,188695,1002],[258323,187404,972],[258277,187401,972],[258232,187402,972],[258186,187405,972],[258141,187412,972],[258096,187422,972],[258052,187436,972],[258010,187452,972],[257968,187471,972],[257928,187493,972],[257890,187518,972],[257853,187546,972],[257819,187576,972],[257787,187608,972],[257757,187642,982],[257729,187679,982],[257704,187717,982],[257811,188239,1158],[257682,187757,982],[257663,187799,982],[257647,187841,982],[257633,187885,982],[257623,187930,982],[257616,187975,982],[257613,188021,982],[257612,188066,982],[257615,188112,982],[257621,188157,982],[257630,188202,982],[257996,188644,1012],[257657,188289,1002],[257675,188331,1002],[257697,188372,1002],[257720,188411,1002],[257747,188448,1002],[257776,188483,1002],[257808,188516,1002],[257842,188547,1002],[257877,188575,1002],[257915,188601,1012],[257955,188624,1012],[258038,188661,1012],[258082,188675,1012],[258126,188687,1012],[257642,188246,982],[372016,77661,3246],[372173,78021,4751],[371902,78252,579],[371770,77244,585],[371862,78102,6654],[406323,79159,764],[414749,85128,772],[412640,83511,1377],[412589,83152,1330],[413062,83393,1426],[410196,81840,798],[411217,89217,1416],[411175,88886,1430],[411541,89165,772],[410693,89660,1404],[410949,89624,1411],[410944,89954,716],[410905,89306,1385],[410970,89340,5938],[414698,86145,710],[414732,86275,5718],[414414,86555,688],[409250,81165,5860],[407381,79674,1335],[406809,79421,935],[407339,79345,1367],[414953,85698,709],[415973,85008,662],[411541,88833,1394],[411500,88516,1407],[413823,87026,721],[409870,81554,1268],[414093,86266,1382],[415289,85305,748],[415286,84953,1360],[409537,80939,1390],[409498,80630,1403],[409745,80865,791],[411050,82063,1323],[411088,82395,1228],[410609,82107,831],[409579,81298,1307],[409251,81049,1314],[404985,78171,758],[405662,78578,5731],[406232,78486,741],[405914,78281,1303],[405524,78009,798],[405609,78384,1306],[402259,76252,1249],[402222,75915,1364],[411100,88946,4808],[411226,89560,908],[411492,82310,1273],[414435,84147,716],[414094,86608,742],[411849,82694,5607],[412064,82910,1329],[415327,85623,688],[403260,76968,809],[403797,77191,1326],[404721,77958,1218],[403164,76288,719],[413548,87092,1386],[413769,86335,1253],[413824,86678,1394],[411931,88774,1202],[412296,88332,1366],[414226,85953,3859],[414374,85909,1327],[407977,80234,1267],[406318,78837,1297],[405292,78135,1348],[404684,77632,1326],[414527,84470,1412],[414193,84533,1324],[414159,84220,1431],[412020,82552,1380],[405959,78603,1338],[414659,85473,1414],[414663,85783,883],[414963,85388,1428],[414539,84795,964],[410531,81459,933],[411403,81948,709],[409118,80337,762],[408879,80764,1348],[408840,80429,1427],[407850,79572,722],[410603,81800,1322],[409829,81230,1299],[412502,82801,746],[412251,87972,1394],[410166,81488,1032],[403753,76849,1344],[402731,76105,1366],[403254,76646,1335],[411892,88435,1273],[418886,92999,1034],[420200,92831,1055],[419169,93205,1028],[425511,88240,1521],[424658,88474,1503],[424550,87779,1277],[424524,87465,1505],[424903,87017,1235],[426073,87698,1505],[426679,87865,932],[426607,88009,922],[425833,88144,1203],[426437,88281,922],[426339,88409,922],[426526,88148,922],[426741,87717,932],[426156,85954,1412],[425616,86455,1293],[426305,85638,4122],[426898,86466,1169],[426625,86902,1392],[426523,86230,1204],[423917,88045,4116],[423077,88962,1136],[422826,89071,1190],[420463,92023,1145],[420516,92357,1279],[420062,91805,1025],[422109,89778,4125],[421175,90758,1025],[416811,94978,4117],[415019,96748,4117],[413770,97981,4100],[418769,93090,4124],[420821,91564,1079],[420584,91355,4132],[420773,91206,1077],[417866,94683,1044],[418692,94122,1068],[417924,95020,1226],[416013,95878,1042],[415894,95903,4108],[422735,89183,4110],[422250,89666,1061],[426445,85557,1360],[426663,87260,1250],[426795,87565,932],[414207,97590,4121],[424146,87930,1341],[414054,97959,1249],[414087,98322,1041],[416482,95402,4123],[416312,95769,1020],[415729,96286,1027],[422337,90310,1093],[422669,90216,1204],[422410,90653,1476],[422045,90799,1268],[422506,91326,1582],[421939,90124,1032],[422293,89982,1072],[416642,95347,1034],[417009,94929,1046],[417543,95489,1118],[415538,97348,1060],[415188,97068,1223],[414645,97187,4114],[414538,97910,1233],[421382,92102,1436],[421783,91586,1589],[421639,90628,1332],[422868,89427,1125],[423965,89743,1582],[424752,89121,1622],[424784,89456,1446],[422572,89539,1082],[423240,89972,1549],[423770,88367,1415],[423800,88709,1199],[415135,96745,1067],[414491,97599,1148],[426823,85819,1336],[426483,85886,1276],[425977,87022,1410],[426280,86966,1257],[426974,86864,972],[425659,86795,1275],[425472,86584,4125],[425936,86702,1429],[421226,91070,1157],[420426,91701,1226],[414863,97158,1123],[424190,88261,1334],[424398,89921,1161],[424033,90393,1328],[414957,97827,1186],[427020,85840,1002],[414435,98555,932],[422790,90865,1699],[418601,93447,1041],[418934,93357,1045],[425887,88478,1347],[425322,86914,1330],[425816,87823,1567],[425362,87272,1232],[425699,87122,1210],[425423,87590,1494],[424943,87347,1183],[419574,93755,1278],[421013,92883,1326],[425130,88698,1296],[423598,90164,1373],[423652,90522,1457],[423104,91094,1335],[417777,94036,991],[423080,90774,1597],[423029,90439,1504],[419216,93549,1055],[426838,87410,932],[423338,90986,1017],[426166,88669,922],[422145,91477,1417],[421841,92269,1113],[421810,91946,1274],[423310,90648,1263],[419603,94100,1041],[425536,88598,1212],[425168,89041,1187],[420973,92550,1384],[419083,94312,1360],[417969,95363,1223],[415222,97388,1097],[415277,97743,1208],[419290,93908,1433],[419309,94227,1106],[418228,93883,1023],[421688,90941,1436],[425196,89372,958],[421723,91273,1314],[420914,92237,1134],[420869,91905,1126],[245768,99484,471],[246666,99141,392],[245447,99958,412],[245131,98838,497],[244621,98695,362],[245763,98820,747],[246160,98696,603],[246154,98819,7036],[246328,99088,462],[246036,98955,598],[246069,99274,471],[245849,97892,352],[245493,98628,534],[245530,98743,4575],[245469,99090,597],[245768,99173,1050],[389900,81946,1235],[392120,83508,818],[388959,81299,822],[389391,81115,840],[390186,79558,802],[394297,83156,981],[389434,81446,834],[391143,82231,1010],[391208,82569,1289],[390792,82401,888],[394844,82840,822],[393617,84581,862],[390215,82097,954],[390743,82059,841],[392077,83176,824],[392030,82828,818],[393083,83810,1011],[389051,81287,1179],[391653,83024,814],[391609,82689,824],[389825,81603,816],[403124,88900,759],[403090,90362,815],[401859,89775,812],[403751,90915,5816],[403644,91026,7373],[403588,90562,4176],[404718,91806,782],[405450,89958,767],[405527,90290,1245],[405040,90404,793],[404228,91358,783],[404180,91102,6717],[404187,91021,824],[404155,90705,974],[404647,90869,785],[404719,91229,1118],[404015,90794,4971],[403681,90469,909],[405903,89821,1222],[406137,89809,792],[405154,91074,1144],[403881,88678,908],[403912,89000,732],[405112,90746,1178],[404050,90002,807],[403582,89793,768],[404012,89673,883],[403278,87778,822],[405404,89615,764],[405537,90609,779],[344126,36413,1504],[343680,36349,1506],[344054,36035,1342],[343277,36537,1522],[342773,37263,1502],[342597,36361,1402],[343161,36243,1426],[343491,36283,4942],[343439,36471,3874],[343676,36491,1475],[344100,36831,1549],[344304,36909,1362],[384794,37380,362],[384972,37459,511],[384540,38549,292],[384109,37139,252],[385000,37093,375],[384899,37227,2120],[384712,37213,366],[385912,38128,322],[385131,37203,375],[385483,36720,262],[393207,84820,856],[391746,83725,822],[394708,81825,841],[395118,82028,828],[394783,82152,1286],[394064,81467,831],[394011,85457,868],[393624,84621,1318],[394321,85303,1355],[388417,79509,788],[387532,79522,791],[387925,79038,849],[383284,84555,766],[384083,84302,784],[382998,84850,782],[388279,78477,780],[388518,78269,4539],[388623,78285,759],[391268,83259,848],[390920,90681,862],[384474,83840,815],[389153,79097,1248],[389077,78768,785],[389459,78594,1258],[386255,80580,818],[384701,82693,758],[390019,78872,790],[389516,79260,812],[387877,78680,836],[387838,79014,6070],[395195,82368,1282],[394799,82503,859],[394507,84842,798],[392268,80958,1249],[388595,80838,815],[388673,81189,1280],[386034,81083,816],[386085,81410,914],[386287,80829,4858],[386292,80899,769],[386078,80999,5900],[386526,80438,766],[387712,80876,796],[385139,82852,758],[389523,82126,824],[386082,81304,5380],[384320,83381,5838],[384700,83267,5075],[384535,83545,2229],[384364,83710,5843],[384041,83967,801],[383893,84148,4693],[388580,77953,768],[389377,78225,792],[384743,83011,768],[388684,81516,822],[389537,77070,774],[394708,83991,944],[394787,84667,792],[394057,85801,874],[390647,78556,866],[388850,79953,835],[388551,80509,814],[388541,80203,1237],[392169,83852,851],[392669,83987,1249],[391698,83367,820],[389104,81644,1267],[388054,80028,811],[394469,81994,1281],[392584,80120,840],[392719,81132,847],[392197,80631,855],[395620,82559,794],[395058,84503,796],[394567,85178,1011],[389508,81772,1257],[393196,84489,1328],[390869,82764,1287],[389938,82263,1175],[389971,78514,779],[390251,78369,780],[391707,80159,1234],[392182,80309,1249],[391718,80472,807],[394177,82148,1157],[393844,81968,833],[391540,79145,781],[392092,79632,1249],[391251,79987,811],[392538,79775,838],[389666,78033,799],[389842,77551,770],[390195,77702,1233],[390598,78193,849],[391061,78331,1228],[389964,78209,1253],[391495,78802,782],[391997,78951,1164],[392107,79979,813],[390215,78053,856],[390579,77862,1213],[392020,79280,897],[392493,79443,831],[391483,78482,1223],[388178,80714,1272],[389758,78713,829],[388757,79273,786],[388834,79620,1235],[389174,79423,933],[393520,81769,830],[393189,81595,830],[393798,81611,837],[394478,82325,809],[389797,77193,786],[336935,93050,726],[337321,92968,663],[337085,92697,3503],[337270,92609,617],[337033,92381,3362],[337227,92291,605],[336632,92478,3248],[336487,92812,582],[395527,71699,725],[393356,70164,882],[394143,71445,753],[393497,72730,763],[393277,71053,786],[392586,74716,822],[392571,74394,1213],[393079,74050,783],[396377,78079,789],[397525,79046,1152],[397790,79262,782],[393391,76415,773],[393313,74978,782],[394354,76300,764],[396033,72240,734],[395871,72203,4654],[396708,72984,938],[396512,73121,5873],[396491,73114,773],[391691,73411,790],[391612,73446,6032],[399565,77247,1028],[399030,76719,1220],[399205,76440,782],[397919,78250,772],[396873,78293,1281],[397701,78588,780],[399040,77022,777],[398662,77493,909],[397294,73082,753],[396940,72843,767],[396820,72637,6335],[393419,70515,3783],[393321,70772,6031],[392119,73535,784],[397377,73395,5861],[397336,73399,738],[394599,73168,762],[395616,72375,725],[396741,73335,745],[397744,73606,723],[396777,72943,5153],[392029,72862,771],[391935,73214,4601],[391888,72857,4615],[391891,72566,5207],[393637,70955,6011],[393640,70911,761],[396724,72696,1702],[397703,73278,756],[391980,72501,754],[392227,72030,751],[400110,74900,834],[395037,71517,734],[392723,71370,764],[393979,73276,1132],[392992,73403,766],[392074,73177,813],[392774,73880,842],[393573,73104,1135],[393324,73608,804],[394000,73618,793],[394928,77182,1098],[399999,77094,782],[392493,74038,775],[392253,74532,813],[391481,75276,770],[391598,75937,1187],[392894,77062,777],[392114,76431,1111],[392538,76566,1034],[394431,76658,1188],[391978,75421,1080],[392005,75769,816],[393720,76604,795],[393437,76755,776],[392855,76744,828],[399083,77354,778],[399596,77558,873],[397475,78725,1036],[393589,73404,789],[394450,77003,808],[393792,76953,1157],[393856,77620,818],[394954,77535,814],[392323,74879,1155],[393304,73264,1161],[393558,77448,1204],[393814,77289,834],[393484,77091,824],[392484,76241,870],[392342,75212,802],[393248,77273,1188],[397229,78484,1170],[397411,78389,755],[393067,73751,1177],[399647,77890,974],[399130,77699,796],[383557,83744,724],[385701,80568,1352],[385938,80379,753],[388102,77151,752],[388444,76926,767],[387737,77681,728],[387636,77981,5151],[388375,76260,1036],[383542,83419,1114],[383499,83076,1146],[384285,82184,1230],[387348,78170,720],[387305,77512,1358],[386995,78726,909],[386694,79224,748],[382760,84433,1159],[382671,84619,782],[384204,81810,798],[384564,81378,1281],[386694,78899,1350],[386366,79092,1045],[386651,78570,1362],[386436,79446,1373],[385610,79870,1365],[385661,80230,1415],[386204,79920,1331],[388053,76488,1313],[386986,78406,1383],[387682,77044,1142],[387732,77361,1256],[388093,76822,1246],[213699,104548,650],[213478,104504,622],[213858,104221,8065],[213395,104563,9221],[213521,104820,601],[213164,104677,562],[214577,105436,9640],[215127,105110,3122],[213929,105898,532],[214663,105296,5684],[214863,105188,4691],[214329,105355,2479],[214076,105339,8476],[214326,105263,9349],[213855,104584,786],[214356,103886,532],[213568,105150,612],[213633,104937,644],[214005,105220,641],[214792,104887,636],[213322,104752,8707],[214337,105473,627],[214107,105652,8524],[214031,105563,630],[214260,105010,681],[214337,105027,739],[214464,105375,3836],[213527,104890,9001],[214486,105186,7260],[214444,105174,7769],[214432,105082,8309],[214641,105087,3574],[214481,105340,4653],[214530,105332,5412],[214699,105082,753],[214716,105103,4242],[214553,105301,6208],[214647,105253,898],[215127,105110,492],[282059,85531,922],[281109,86780,602],[282073,85467,752],[282162,86241,1026],[281929,86339,980],[281908,86261,5187],[282278,87215,828],[282143,86971,7080],[282243,86890,948],[282009,87015,846],[281854,86569,3910],[282436,87760,622],[283370,86470,762],[281876,86016,859],[282107,85891,916],[281981,85964,6716],[281974,86674,991],[282244,86586,1503],[282493,86434,1033],[269192,177392,894],[268952,177841,892],[268906,177839,892],[268996,177840,892],[269041,177835,892],[269084,177828,892],[269128,177817,892],[269170,177804,882],[269211,177788,882],[269251,177769,882],[269290,177747,872],[268988,177071,3897],[269146,177049,908],[269363,177696,862],[269327,177722,872],[269396,177666,872],[269427,177635,872],[269457,177602,872],[269483,177566,862],[269508,177529,852],[269530,177490,862],[269549,177450,862],[269565,177409,852],[269578,177367,852],[269589,177323,852],[269596,177280,852],[268861,177835,892],[269602,177191,842],[269601,177235,852],[269600,177145,852],[269596,177100,852],[269588,177055,852],[269097,176699,879],[268741,176882,901],[269562,176967,852],[269545,176925,852],[269525,176884,852],[269502,176844,802],[269476,176806,802],[269448,176771,802],[269417,176737,802],[269384,176705,802],[269349,176676,812],[269312,176649,812],[269273,176626,812],[269232,176604,802],[269190,176586,802],[269147,176571,802],[269103,176559,792],[269058,176550,802],[269013,176544,802],[268876,176545,832],[268967,176541,812],[268922,176542,832],[268816,177827,892],[268786,176562,822],[268831,176552,822],[268742,176576,812],[268700,176592,812],[268658,176611,822],[268618,176633,822],[268580,176658,832],[268646,177302,3266],[268509,176716,832],[268477,176748,822],[268447,176782,832],[268419,176819,832],[268436,177056,873],[268394,176857,842],[268372,176897,842],[268353,176939,842],[268323,177025,842],[268337,176981,842],[268313,177070,842],[268306,177115,852],[268303,177161,872],[268483,177374,941],[268302,177206,872],[268305,177252,872],[268311,177297,872],[268320,177342,872],[268332,177386,892],[268387,177512,892],[268410,177551,892],[268437,177588,892],[268466,177623,892],[268498,177656,892],[268532,177687,892],[268567,177715,892],[268605,177741,892],[268645,177764,892],[268686,177784,892],[268728,177801,892],[268772,177815,892],[269576,177011,852],[268543,176686,832],[268365,177471,892],[268347,177429,892],[399065,84478,832],[401982,86427,822],[401064,86596,772],[398128,85214,1304],[397490,84708,842],[398428,85375,832],[397119,86969,1229],[399014,88338,1107],[396245,86461,842],[399295,88189,750],[400042,89159,812],[400119,88573,753],[401287,86846,736],[400930,87639,870],[397151,86307,842],[397854,85695,1311],[397644,85614,842],[399229,85369,802],[398582,86281,792],[401371,87166,1327],[398140,85539,860],[398177,85853,809],[397730,85012,838],[397579,87145,811],[399888,88253,772],[401700,86667,1283],[400540,88139,1171],[400077,88250,767],[398453,87885,899],[360745,106830,914],[370767,95342,798],[371960,97073,1014],[363397,106192,861],[365848,103777,839],[363828,105856,826],[369468,100279,780],[369515,100607,838],[369785,100262,1126],[363140,107192,953],[364301,105518,965],[369810,100627,837],[368385,101448,1250],[368397,101815,731],[367956,101806,1033],[369272,100886,1227],[368963,100842,1096],[362309,107151,966],[362394,107827,909],[362064,107469,1026],[369558,100927,853],[365678,104122,1086],[365896,104137,845],[367104,102805,936],[367136,103147,762],[366441,103491,1056],[368665,101151,787],[368992,101210,822],[365460,104784,1039],[365936,104480,779],[365111,105141,775],[368032,102461,887],[370167,100310,1196],[372713,97751,1067],[372137,98429,988],[371699,98731,805],[372438,97741,989],[372469,98063,812],[371910,96731,951],[371384,96371,768],[371209,98714,768],[370868,99366,809],[370496,99703,1134],[366190,104131,972],[366470,103829,831],[368719,101459,967],[363092,106874,874],[360786,107151,883],[367974,102130,691],[367541,102455,1112],[364685,105128,841],[366143,103773,988],[370110,99998,982],[362853,107189,818],[363058,106532,1025],[210199,122073,5755],[210118,122142,5683],[210094,122011,822],[210302,121824,1252],[210332,121958,4626],[210264,121948,3955],[210623,120937,402],[210101,121391,6934],[209869,121533,645],[210451,122563,864],[211422,122158,452],[210200,122974,492],[210462,121183,6373],[211296,122109,512],[210402,122205,6114],[210310,122150,1215],[210415,121984,5234],[211335,122111,5339],[210851,121699,4802],[210888,121358,525],[210204,121436,694],[210491,121233,648],[210665,121314,678],[210652,121633,3022],[210465,121569,5654],[210810,121379,4854],[210937,122029,5369],[210855,121922,831],[210475,121629,906],[210354,121764,2871],[210250,121727,2204],[210470,121913,5060],[210360,122468,6224],[210628,122192,6723],[210073,121884,2627],[209951,121902,5490],[210145,122341,696],[210171,122352,5775],[210196,122686,588],[210145,122180,3352],[209478,121842,597],[210194,122174,4050],[209811,121802,707],[210043,121822,5259],[210142,121731,786],[210142,121891,3367],[209394,121742,452],[210779,122044,3566],[210614,121652,2251],[210558,122008,6599],[210469,121982,5943],[210414,121768,3541],[401742,78282,792],[401565,80726,903],[400919,81569,812],[401590,80635,802],[402662,79286,1265],[403695,80027,1229],[404765,81454,787],[405315,80849,792],[403477,83407,832],[404708,80784,1237],[405122,80984,1233],[401791,80294,1264],[401178,80160,819],[401468,80045,795],[400575,79906,812],[401551,80415,1292],[402159,79039,796],[404211,80559,856],[402118,78722,805],[398222,86213,771],[397484,86169,1292],[397859,86004,807],[367571,74496,596],[367724,73938,3732],[367952,74137,564],[367742,74244,3412],[216549,118545,502],[216624,118345,551],[217042,118167,630],[216112,118437,530],[216271,118087,8264],[216244,118431,562],[215895,118165,561],[216332,117629,614],[216089,117800,6307],[216006,117511,5712],[216475,117515,7306],[216466,117858,681],[216517,117875,7196],[216701,117910,606],[216340,117878,4694],[216881,117646,516],[217370,118275,422],[216259,118063,627],[216348,117990,2963],[216824,118004,5344],[216159,118799,495],[216486,118597,848],[216126,119072,442],[215934,117820,567],[216456,117195,537],[216411,117534,538],[216808,117462,538],[215331,117856,382],[215817,118419,6261],[215975,117450,532],[216567,117047,372],[215931,118546,551],[216099,118552,5013],[402764,87662,1245],[401092,89905,832],[403148,87011,822],[402020,89363,767],[401676,89522,1230],[403316,91148,6179],[403695,91365,7450],[403469,91460,7767],[404247,87846,787],[405784,89149,789],[403652,91695,6238],[404848,92573,772],[406904,89679,782],[402437,90688,4175],[402846,90486,784],[402628,90912,1211],[403879,91581,6368],[404285,91671,998],[404196,91772,5694],[403864,91225,6816],[402972,90588,6693],[403087,91226,7133],[404263,92125,5980],[403805,91477,770],[401271,89998,1262],[403142,90823,4325],[404344,92030,1155],[402512,90261,786],[402159,90360,855],[401753,90166,1106],[406235,89384,1245],[406499,89602,801],[402984,87584,1241],[402992,87898,780],[402568,88131,1252],[403253,87095,1167],[403274,87452,798],[402581,88487,764],[401685,89837,760],[402799,88007,1094],[313061,45423,662],[313690,46863,632],[313067,47103,722],[311994,46696,706],[312248,47460,582],[311687,46024,612],[271247,68827,1167],[271725,68603,322],[270328,69414,312],[270242,68456,453],[269612,68124,382],[270159,67810,512],[270269,68180,1319],[271537,68627,372],[270732,68305,595],[270811,68951,487],[271096,68100,436],[271203,68505,1143],[270679,67958,520],[270628,67611,450],[270962,67321,372],[293999,55898,480],[295381,55550,342],[294017,56283,332],[293305,54920,392],[294624,54209,422],[300527,52414,554],[300866,52327,550],[300012,53061,442],[299761,51879,560],[300144,52142,612],[300390,51371,579],[300123,52001,5213],[300485,52058,619],[300845,51718,1346],[299312,51705,462],[300829,51998,642],[300489,52253,5062],[301369,52331,422],[300590,51024,492],[367050,91544,962],[366965,92249,962],[366339,86663,962],[366578,87332,952],[364959,84186,942],[365365,84770,952],[362979,82156,952],[363524,82614,952],[360538,80715,952],[361183,81014,952],[357804,79962,952],[358505,80082,962],[354839,79992,942],[355578,79907,952],[351997,80834,962],[352684,80550,952],[349495,82426,952],[350078,81963,952],[348849,98514,994],[351234,101610,982],[346028,93837,952],[346072,93977,952],[343852,94242,952],[345986,93697,962],[345946,93556,952],[345907,93415,962],[345870,93273,962],[345835,93131,962],[343601,93452,872],[345801,92988,932],[346284,93925,962],[344919,96485,952],[344156,95014,962],[344512,95763,952],[345374,97178,952],[345876,97839,952],[346421,98463,962],[357004,102151,1042],[348295,100094,982],[348989,100547,982],[349713,100953,982],[350462,101307,982],[352025,101859,992],[352831,102054,992],[353649,102193,992],[354487,102271,1002],[355328,102291,1032],[356168,102251,1052],[345746,90981,952],[345743,90238,952],[345881,92259,962],[345820,91835,962],[347634,99593,972],[346160,93515,962],[346051,93100,962],[345958,92681,962],[345775,91409,952],[345791,89496,952],[345891,88759,952],[346042,88031,962],[346243,87315,962],[346493,86615,962],[346792,85934,962],[347137,85276,962],[347527,84643,962],[347960,84038,962],[348434,83466,962],[348946,82927,952],[350691,81543,962],[351331,81166,962],[353389,80314,942],[354108,80128,942],[356321,79874,952],[357064,79892,952],[359196,80248,962],[359874,80459,962],[361806,81355,962],[362406,81736,962],[364036,83106,942],[364516,83631,952],[365731,85379,932],[366056,86011,962],[366772,88016,952],[366921,88711,962],[367024,89415,962],[367079,90123,962],[367088,90834,962],[366833,92948,962],[366621,93762,982],[366353,94560,982],[366029,95336,982],[365651,96088,992],[365221,96811,992],[364741,97502,982],[364214,98158,982],[363642,98775,992],[363028,99350,992],[362374,99880,992],[361686,100363,992],[360964,100797,982],[360214,101178,1012],[359440,101506,1022],[358643,101778,1042],[357830,101994,1042],[347008,99049,962],[380704,89760,1836],[380973,89692,770],[381034,90037,989],[383485,88050,841],[382694,86537,788],[383002,86453,802],[383004,86233,5753],[387775,89848,829],[388171,90319,835],[387853,90164,1336],[388771,92152,836],[393310,89028,873],[392922,89232,1415],[392852,88913,1034],[391537,90288,887],[391930,90452,1883],[391579,90625,848],[396959,91642,2711],[397445,91799,2873],[397815,92343,1001],[402725,96911,8852],[398305,92520,1002],[398443,92855,2321],[398060,92763,1242],[395722,90724,2670],[393914,89211,2102],[399088,93743,3686],[400650,94844,7398],[400800,95158,8916],[400506,94938,9801],[403847,97515,1795],[404104,97727,1382],[403685,97596,8911],[404554,97197,653],[405311,95926,680],[400322,94622,7809],[398563,90707,1959],[398453,90390,985],[398937,90243,3330],[394715,89823,2657],[394664,89482,2584],[395629,90077,2551],[401759,93099,9080],[401306,92896,9385],[401595,92797,7327],[402181,93969,6697],[402087,93642,5967],[402340,93523,3124],[405272,95215,1459],[405355,95549,2012],[404765,95402,777],[403000,92988,7860],[403157,92830,785],[403210,93185,877],[403063,97075,1086],[402179,96393,8847],[403222,95613,818],[402890,95807,6628],[402839,95471,6536],[403250,93505,836],[403002,93659,6634],[403243,93235,5571],[402107,96059,8458],[402384,96300,5188],[403131,95004,5931],[403182,95293,840],[402919,95123,8318],[405178,94890,741],[403711,95063,790],[403803,93944,912],[402592,96560,994],[403259,96342,5238],[403028,96760,1170],[403487,97311,1400],[402428,92166,6903],[403378,92888,8147],[403210,95327,6445],[402848,92687,6261],[402676,93381,2523],[403427,94831,866],[403094,94619,865],[403340,94158,903],[403471,95188,826],[403661,96509,1043],[403368,96617,1016],[403323,96285,999],[399689,92796,6030],[399148,92915,1319],[399384,92485,2315],[402722,93824,7969],[403491,93383,830],[403886,96419,756],[404424,96179,716],[404160,96642,916],[404020,95632,830],[403559,95863,822],[403515,95528,801],[405706,95098,1419],[403269,95945,877],[403336,95648,7624],[402277,95663,4878],[402130,96028,2120],[402082,95728,8724],[402622,93135,7839],[402281,93309,9325],[402202,92962,8868],[399464,90692,3049],[399213,90804,3029],[399194,90471,3377],[399402,93566,3698],[399791,93439,6269],[399841,93780,6347],[400562,91272,1943],[400515,90924,1943],[401110,91457,2999],[402530,92827,7116],[403444,93035,806],[402405,92481,5981],[401994,92311,7150],[402927,96066,1036],[406072,94659,761],[405664,94761,1450],[382572,86358,5060],[383829,88606,875],[384191,88449,853],[384235,88791,847],[401792,93425,8936],[401631,93763,6050],[401409,93555,9602],[402150,92627,8759],[403050,94257,921],[402982,94366,5008],[402713,94164,7205],[400857,93369,7651],[400179,93230,3777],[400911,93049,8995],[403047,94011,6614],[401983,95094,8513],[401425,95224,6704],[401533,94892,8851],[402359,94263,8647],[401856,94411,7990],[401913,94085,9415],[402888,94788,8501],[403096,94683,6029],[402031,95420,8573],[401663,95861,8863],[401475,95553,6809],[382705,89636,797],[380539,89085,768],[383317,88797,870],[383256,86343,809],[403550,93744,986],[403321,93903,5445],[403275,93549,5440],[402551,96239,1031],[402425,94611,8916],[400959,94055,7803],[401322,94250,7084],[401012,94380,7941],[402880,94456,9022],[383870,88920,867],[382954,86095,790],[382867,85445,783],[382309,86648,797],[398014,91653,5090],[397769,92001,997],[398316,91507,3047],[398754,91402,3341],[398625,91738,890],[403718,93268,968],[403758,93600,918],[403609,93799,5360],[384633,88332,976],[403424,94916,4995],[397967,89175,2488],[403660,92932,791],[404538,93696,768],[405050,93905,786],[404984,96354,2100],[404512,96853,703],[399829,90888,3224],[400075,91077,940],[399716,91256,955],[399882,91899,2084],[400170,91773,975],[400350,92082,2920],[400043,90746,1100],[400706,91942,2724],[400704,91597,3333],[401259,91792,4459],[397823,91312,3030],[400130,91417,1072],[399300,92251,4704],[399547,92333,1167],[400157,92871,4130],[400392,92411,2905],[400845,92698,8731],[399356,92146,2546],[399527,93898,4858],[399814,94109,5359],[399706,92683,2746],[386400,89117,820],[386844,89260,1226],[386520,89789,1266],[400032,92561,2962],[401203,95004,9461],[403409,96958,970],[403730,97191,742],[398575,93205,3526],[398825,93065,1243],[398864,93407,1150],[399863,93015,4328],[400015,93334,5883],[404021,97406,817],[404265,96962,1791],[401381,93881,8604],[400977,93715,8681],[401176,93226,6935],[404084,93476,970],[399064,91224,3300],[398720,91061,3500],[399915,91561,3185],[397987,92690,2777],[398130,91196,1004],[398880,89913,3147],[399406,90336,2898],[401369,92117,5403],[401892,91971,6334],[401623,92440,8402],[400609,94510,7447],[402401,95295,7303],[399569,93131,3709],[399171,92579,2278],[399916,92209,1986],[401118,92273,7885],[401167,92581,8012],[400044,93979,5083],[399337,93241,3385],[398256,92190,931],[398811,92382,2319],[405702,95448,689],[397743,90667,3111],[397710,90338,3267],[398195,90521,3197],[398255,90858,3401],[397088,90138,946],[397188,89809,2969],[399564,91339,3253],[399504,92018,1147],[399542,91654,2346],[399503,91009,3005],[399073,91583,2759],[403972,97064,758],[382384,90440,689],[382943,90313,2913],[382797,89994,1426],[383182,90205,809],[399071,90553,4653],[401402,94582,7580],[401197,95353,8733],[399133,90149,3116],[398559,90031,3159],[398464,89716,2413],[398094,89849,3013],[397946,89490,1597],[398912,92719,3116],[398766,92052,2295],[400099,93643,6491],[391627,91824,2709],[390375,93260,2726],[390611,92385,2445],[390315,92929,2487],[398321,91844,2497],[399163,91919,3397],[396880,90943,2891],[397325,90792,3063],[397372,91130,3091],[381469,90278,1012],[389716,92466,986],[390156,92593,862],[390111,92259,853],[396727,89937,2627],[397595,89646,2935],[396777,90271,2707],[390814,91843,849],[389196,91962,983],[383163,89887,1121],[383689,89380,1246],[383608,88371,1980],[396186,90080,849],[396342,90415,2409],[397212,90459,2088],[403598,96180,775],[383400,89472,792],[383614,89021,860],[387690,91004,1619],[388435,91670,2040],[399254,91118,3014],[401907,94762,8059],[402430,94930,8405],[397498,88974,2819],[383781,88246,872],[400469,93879,6653],[400594,94178,7845],[400212,94305,6842],[400404,93549,6361],[404940,96036,2078],[404824,95718,1032],[404050,95944,658],[380187,89173,1167],[396811,90611,2534],[399303,91786,2455],[397054,89110,2385],[387590,90665,826],[387284,90491,873],[387570,90307,1222],[387404,90821,1947],[396560,89622,862],[399622,90549,957],[392764,90426,2630],[392022,90786,2550],[392310,90309,2343],[391623,90959,847],[391407,91177,822],[391573,91487,2576],[391120,91344,857],[392711,90067,2558],[392934,89557,976],[393481,89388,2605],[392793,88555,860],[392487,89075,1249],[392068,89288,849],[388261,90998,841],[388685,91482,880],[392190,89966,1292],[393740,88854,842],[382346,90098,794],[381886,90211,789],[380587,89429,799],[391273,91652,2445],[393911,89188,2635],[394340,89322,2643],[393222,88354,891],[387912,90839,911],[391844,90138,1264],[404292,97628,951],[384058,89268,2857],[389233,92282,904],[388026,91193,1847],[386949,89969,1384],[387173,89469,1217],[386352,88758,819],[399317,91475,3251],[395937,90226,2481],[387531,89991,1265],[396441,91113,2501],[396399,90755,2575],[392590,89748,1455],[385097,88543,804],[386079,89584,1427],[385994,89267,812],[385950,88934,814],[386620,90109,2080],[381988,90864,1018],[387872,90522,937],[388765,91799,1409],[386976,90298,1139],[392141,89609,1274],[385574,89063,1160],[391794,89805,1172],[403851,96084,877],[406723,82661,792],[409308,84519,802],[408170,86102,792],[405585,84244,792],[366230,102122,634],[366199,101802,798],[365854,101782,620],[251774,80564,339],[251938,80455,352],[250654,81315,962],[251042,80377,509],[251173,80430,9281],[251135,80468,499],[251350,80299,5637],[251105,80129,5358],[251572,79994,6791],[251391,80016,439],[251531,79909,7665],[251396,80652,462],[251137,80652,5249],[251205,80558,7612],[251057,80630,4619],[250466,80638,5055],[250349,80479,6184],[250617,80520,8823],[251036,79763,452],[251102,79304,382],[251341,79653,425],[251070,79886,8845],[251423,79841,473],[250976,80299,8961],[251087,80124,472],[250649,80571,490],[250780,80245,485],[251531,80413,6041],[251730,80203,381],[250469,80358,463],[251027,79962,493],[251004,80686,3048],[251011,80664,2869],[251481,80695,421],[250558,81038,421],[250651,81063,473],[251359,80205,7289],[251374,80115,8909],[251399,80250,451],[250309,80309,507],[249917,80063,422],[251435,80337,438],[250596,80913,8845],[250866,80898,442],[250514,80705,430],[250024,80196,459],[250717,81263,8888],[250998,80833,576],[250949,80971,5665],[251590,80066,5858],[251045,80672,3784],[250988,80719,2292],[251179,80803,481],[250654,81315,382],[379540,27979,8235],[379502,27935,5560],[379549,27856,552],[378235,28031,569],[378352,28719,482],[378034,27287,512],[379078,27697,5089],[379232,27653,569],[379218,27671,9783],[379399,27636,612],[379334,27872,7995],[379167,27725,7756],[379062,27772,599],[378575,28612,6888],[378700,28487,582],[378970,28487,6044],[379545,27750,5087],[379566,27560,8174],[379666,27913,576],[378916,27444,569],[378693,27142,6277],[378874,27122,588],[379336,27894,5245],[379480,27880,9168],[378774,27096,541],[379228,27030,7398],[379187,27311,574],[379461,27172,590],[379507,27533,560],[378318,27575,6666],[378492,27801,607],[378275,27758,7144],[379025,28043,915],[378967,27992,1773],[379076,27922,8895],[379590,28190,514],[379814,28285,7473],[379834,28352,2572],[379319,28338,524],[379160,28424,7345],[379471,26881,502],[379455,28085,6124],[379376,28103,583],[378910,28004,2579],[378725,27986,603],[378964,27811,558],[379136,27803,4190],[378220,27718,6216],[378470,28239,598],[378723,28321,548],[378622,28502,6301],[379054,28212,1088],[379272,27973,547],[378588,27280,583],[378631,27607,572],[378749,27511,610],[378259,27795,583],[378258,27518,612],[378610,27468,7211],[379022,27709,5878],[379011,28303,5605],[379050,28496,504],[379655,28074,6547],[379711,28085,5724],[379421,27153,638],[379035,27707,6137],[379834,28352,452],[385920,26843,7195],[385970,26831,6463],[384791,27125,442],[385547,26596,6670],[385505,26841,521],[385453,26767,7912],[385685,25806,7627],[385787,25628,9994],[385809,25730,604],[385972,26554,568],[386037,26307,5877],[386102,26518,9085],[385239,26393,589],[385385,26478,9099],[385382,26549,6148],[385896,25286,522],[385885,25699,4801],[384883,26698,5478],[384897,26478,9501],[384993,26534,566],[385761,25606,563],[385571,25428,545],[385547,25849,593],[384838,26797,6043],[385027,26680,533],[384943,26357,8932],[385352,26958,6279],[385308,26843,9945],[384981,26332,548],[385083,26888,6520],[385217,26863,563],[385068,27012,489],[385139,26840,9447],[385126,26757,5988],[385168,26617,5492],[384451,25666,482],[384650,26374,9066],[384706,26208,583],[384936,25990,543],[385436,26606,5324],[385493,26555,890],[385259,25951,609],[385809,26821,8817],[385489,26471,7593],[385626,26578,7928],[385879,26379,6692],[385764,26671,583],[385741,26297,4087],[385663,26291,7600],[385785,26206,599],[385897,26656,527],[385314,26345,5220],[385477,26427,1188],[385368,25825,485],[385173,25838,5982],[385809,25972,559],[385576,26571,8653],[385571,26098,6687],[385692,26311,4789],[385634,26361,2651],[384666,26421,5344],[385855,26322,551],[386107,26564,4671],[385794,26301,3325],[384586,26062,6751],[385866,26228,4696],[385583,26342,3404],[385996,26040,600],[386184,26486,510],[386273,26759,3322],[385818,26289,5349],[385523,26308,610],[385501,25903,4900],[385433,26204,703],[385470,26245,5106],[384730,25719,580],[384969,27040,546],[385640,26316,5534],[386273,26759,462],[292494,140704,1213],[292674,140826,3396],[292291,140586,3789],[292941,138870,1084],[288368,137846,4447],[289690,138741,3584],[289988,139061,7001],[289498,138623,1236],[289400,138432,4403],[289421,138581,7710],[288561,137975,1442],[288840,137866,1171],[288790,138047,4393],[289115,138363,8209],[288743,138117,9015],[289170,138402,1384],[288886,138186,1222],[289469,138251,1516],[289080,138297,3629],[290671,139206,1306],[290352,139323,6511],[290296,139009,1184],[289860,138436,1523],[291084,139392,1298],[290956,139581,4443],[290732,139497,1606],[291831,140363,3851],[289122,138069,1345],[288499,137663,1164],[289364,137590,1285],[290779,137009,1465],[290743,136661,1624],[291168,136919,1133],[289766,137764,1473],[289020,137374,1218],[289332,137207,1558],[291125,139744,1218],[291556,139571,1580],[293490,140769,1142],[292876,140617,1415],[293446,140394,1222],[290275,138650,1544],[291051,139038,1470],[291302,139872,3351],[291578,139945,1211],[290591,139404,4431],[291963,139495,1354],[292047,140156,1293],[292330,139321,1484],[292192,138323,1410],[292594,138586,1253],[291318,137913,1356],[291753,137762,1634],[292104,140470,1486],[292453,140384,1223],[293526,141103,1019],[290199,139173,4744],[292905,140975,1160],[289888,138834,1187],[290217,138306,1380],[290053,138996,3120],[293081,139827,1255],[293142,140163,1473],[293412,140063,1359],[293358,139740,1219],[293691,139963,1737],[294082,140220,1641],[293789,140605,1911],[292582,138221,1759],[292867,138133,1400],[292904,138492,1248],[293753,140255,2058],[291221,137240,1262],[292139,137998,1279],[293260,141228,1136],[290401,137164,1336],[290320,136471,1503],[290354,136831,1312],[289988,136635,1330],[289673,137118,1388],[290045,136968,1483],[289809,138132,1395],[219974,101587,478],[219928,101253,489],[220257,101418,491],[220068,100867,4868],[219885,100936,496],[220093,100741,508],[220303,100924,6888],[220163,100742,491],[220218,100692,9675],[221049,101212,372],[219784,102047,402],[219713,100862,508],[219837,100600,470],[220093,100685,8205],[220113,100386,474],[220321,100531,6849],[219408,100633,447],[219348,100626,6629],[219491,100598,8902],[219750,100479,503],[220216,100032,432],[220441,100626,502],[220412,100665,5775],[220453,100809,3921],[219383,101025,477],[219597,101283,6911],[219015,100832,432],[220053,101118,532],[220060,101062,8380],[219723,101283,511],[219639,101117,473],[220205,101096,2803],[220315,101303,774],[220257,101088,3589],[219756,101375,7392],[220211,101086,492],[219584,100892,5235],[219316,100653,458],[219687,101468,465],[219857,101415,8002],[220519,100833,466],[220428,100996,495],[220488,100783,4772],[219593,100786,469],[220179,100354,8002],[220567,101193,443],[393162,69052,682],[400939,74218,573],[396713,71167,679],[393815,69067,565],[282914,61868,475],[283665,61879,402],[282286,62626,312],[282881,60563,402],[282824,61190,468],[282220,61365,476],[282656,61973,769],[281583,61285,362],[282760,61772,2512],[334028,142058,4546],[333630,142133,4412],[333987,141688,4653],[336824,137479,11285],[336668,137678,846],[333083,142544,976],[333032,142190,918],[336947,137282,784],[334776,141189,4973],[335188,140773,5049],[334789,141556,4468],[336791,137971,5721],[337035,137952,9190],[337390,137527,818],[336353,138592,7469],[336637,138627,6491],[336740,138890,3286],[335047,140187,4156],[334772,139872,884],[335318,139618,2401],[336722,138029,946],[335798,139382,3806],[335940,138928,994],[336038,139567,1189],[337386,137758,6045],[337220,138012,7950],[336784,138344,1232],[334888,140146,8482],[335125,140475,4721],[334341,141227,5003],[334257,140966,4319],[334649,141006,3541],[335723,138682,4059],[336183,138165,949],[336197,139675,3229],[334418,141927,4772],[335857,139665,4108],[335357,139107,3906],[335752,139020,3831],[337445,137845,1003],[333697,142861,3987],[335257,139398,8571],[334580,140258,3960],[335545,140448,4036],[333854,141080,3938],[335428,139850,3512],[335854,140123,3218],[333541,141481,4377],[336051,138291,3763],[334043,142428,4065],[335511,140111,4187],[333915,141386,4223],[334203,140663,4131],[317929,58519,484],[318539,58038,523],[319191,58428,362],[318119,57787,540],[318490,57689,495],[318515,57866,5871],[318354,57478,8301],[318563,57398,11348],[319004,57978,502],[317921,57420,6694],[318422,57189,5830],[318442,57351,441],[317789,57491,429],[317589,57456,6656],[318786,57396,5124],[318161,58107,525],[317577,58233,429],[317651,58411,5749],[317776,58913,362],[317531,57911,382],[317481,57547,358],[317882,58156,502],[318782,57059,5822],[317337,57516,1652],[317571,58021,5363],[318782,57059,332],[317337,57516,362],[411354,81604,665],[409407,80259,825],[406135,77833,598],[408266,79469,684],[258235,193341,1092],[258421,192757,1153],[258280,193345,1092],[258192,193333,1092],[258368,193346,1092],[258324,193347,1092],[258413,193341,1092],[258500,193323,1102],[258456,193334,1102],[258542,193310,1102],[258583,193294,1102],[258847,193019,2205],[258921,192956,1092],[258902,192996,1092],[258662,193253,1092],[258699,193228,1092],[258735,193202,1092],[258768,193172,1092],[258799,193141,1092],[258829,193108,1092],[258855,193072,1092],[258880,193035,1092],[258968,192786,1092],[258782,192737,1841],[258973,192741,1092],[258937,192915,1092],[258961,192829,1092],[258950,192873,1092],[258974,192697,1092],[258972,192653,1092],[258968,192608,1092],[258960,192565,1092],[258950,192522,1092],[258699,192562,1035],[258936,192479,1092],[258920,192438,1092],[258901,192398,1092],[258879,192359,1092],[258855,192322,1092],[258828,192287,1092],[258799,192253,1092],[258768,192222,1092],[258734,192193,1092],[258699,192166,1092],[258662,192142,1092],[258623,192120,1092],[258623,193275,1092],[258542,192085,1092],[258499,192071,1092],[258456,192061,1092],[258413,192053,1092],[258368,192049,1092],[258324,192047,1092],[258280,192049,1092],[258235,192053,1092],[257922,192329,1049],[258192,192061,1092],[258149,192071,1092],[258106,192085,1092],[258065,192101,1092],[258025,192120,1092],[257986,192142,1092],[257949,192166,1092],[257914,192193,1092],[257849,192253,1092],[257880,192222,1092],[257820,192287,1092],[257793,192322,1092],[257769,192359,1092],[257747,192398,1092],[257728,192438,1092],[257712,192479,1092],[257987,192644,1348],[257698,192522,1092],[257688,192565,1092],[257680,192608,1092],[257674,192697,1092],[257676,192741,1092],[257680,192786,1092],[257688,192829,1092],[257698,192872,1092],[257712,192915,1092],[257728,192956,1092],[257747,192996,1092],[257769,193035,1092],[257793,193072,1092],[257820,193107,1092],[257849,193141,1092],[257880,193172,1092],[257914,193201,1092],[257949,193228,1092],[257986,193252,1092],[258025,193274,1092],[258065,193293,1092],[258106,193309,1092],[258149,193323,1092],[258583,192101,1092],[257676,192653,1092],[364887,43722,486],[364521,43802,1745],[364626,43389,3965],[364733,43237,5728],[364837,43369,423],[365077,42944,252],[364361,43333,384],[364457,44002,487],[365501,44336,282],[365058,43077,4046],[365203,43528,5240],[364097,44761,292],[363915,43641,375],[363674,43372,1742],[365268,43678,365],[364003,44322,354],[363674,43372,242],[295902,67709,5024],[295893,67663,561],[296271,67519,450],[295485,67085,545],[295800,66979,530],[295847,67315,563],[295961,67239,11227],[296320,67861,489],[296636,68026,382],[295989,68034,1208],[295206,67582,522],[295351,67128,7734],[295724,67654,7323],[295663,68448,523],[295482,68409,7215],[295628,67809,1161],[295332,68550,507],[295293,68236,536],[295291,67684,5956],[294609,67470,5142],[294885,67672,545],[295325,68735,392],[295249,67902,537],[295953,66770,6532],[296061,67224,8003],[294816,67401,8535],[295047,67254,7709],[295953,66770,362],[294609,67470,432],[256722,91600,5482],[256652,91557,1206],[256652,91509,1981],[256359,92319,872],[256543,92482,6225],[256496,92563,608],[256345,91334,1024],[256499,91488,7458],[256285,91700,1203],[256986,92272,580],[256302,92834,442],[256446,91133,7383],[256534,91097,566],[256981,91947,1116],[257208,91605,702],[257554,92024,402],[255851,91909,1239],[256176,92078,1956],[256385,91769,5377],[256646,91755,705],[256198,91251,516],[256330,91207,844],[256829,91315,714],[255867,91423,491],[255913,91412,1267],[256738,90774,362],[256964,91499,5506],[256008,91609,6320],[256480,92209,1054],[256713,92078,1031],[255489,91591,442],[256490,91837,1542],[256554,91914,2612],[256995,91641,1858],[361820,105822,640],[361864,106152,652],[361073,105833,645],[361596,106475,703],[361731,106050,3341],[364565,78666,3366],[364480,78308,2835],[364390,78913,491],[364815,78265,539],[396568,76274,745],[397435,76584,772],[397765,77344,782],[398167,76638,1015],[398299,76594,772],[397820,76793,1220],[395530,75206,796],[394220,74824,762],[394753,74074,762],[395574,75525,813],[396522,75919,759],[396093,75746,1147],[270976,113378,2156],[271173,113537,1132],[270956,113760,1198],[271759,112382,1007],[271434,112058,2792],[271806,112741,995],[271345,112306,1075],[271438,112980,1101],[270861,113079,1138],[271014,114085,1378],[270715,113990,1153],[269468,114916,2842],[265583,120534,1612],[270765,113593,2563],[270488,114542,1187],[270548,114871,1402],[270123,114450,1244],[271907,113413,1128],[271500,113319,1316],[271871,113048,1315],[271294,113141,3482],[270850,114300,2414],[270230,115116,1476],[269780,114687,1214],[271580,113972,1210],[266882,120711,891],[266486,120930,884],[270394,113891,1109],[270072,114117,1161],[270484,113484,3079],[269830,115026,1280],[271090,114796,1114],[271133,115111,1119],[270850,114996,1147],[266677,119000,1245],[267022,118459,1284],[272254,112811,1082],[269398,115297,1202],[270596,115210,1440],[270620,115555,1129],[267493,119239,1235],[267530,119558,1164],[267174,119806,880],[271985,113740,1586],[266387,119932,1370],[265986,120149,883],[266307,119597,896],[266057,120450,1284],[266078,120825,892],[266491,120573,1613],[271620,114307,1143],[271318,114538,1268],[268317,118899,1219],[268587,118384,1115],[266791,120035,889],[266886,120360,1591],[266403,120267,969],[271056,114431,1329],[270816,114659,1300],[266744,119693,889],[267267,120103,1591],[268542,118018,1174],[268498,117677,1204],[268845,117407,1768],[269105,116545,1198],[267265,120483,869],[269153,116885,1237],[269199,117217,1253],[269571,116627,1115],[269882,115387,1313],[338073,87306,542],[338454,87225,550],[338178,86981,2605],[338406,86865,539],[337984,86633,542],[306464,49630,586],[307421,49556,492],[306041,50155,462],[305925,49088,602],[306012,49748,591],[305405,48703,512],[306097,49333,8178],[306929,49472,588],[306769,48104,542],[306374,48922,631],[306387,49333,6429],[306604,49488,2745],[262536,88746,437],[263387,88197,442],[262174,89009,442],[262031,88626,4922],[261355,87756,4992],[261947,87610,5638],[262296,87422,5382],[262337,88054,4778],[262920,88195,1007],[262582,87830,8524],[262461,88071,661],[262800,87555,6218],[262919,87893,7215],[262102,88629,525],[262567,88463,7145],[263225,87987,5550],[262577,86958,392],[262533,88401,1030],[262082,88301,6219],[262797,87512,592],[261684,87878,1578],[261587,87871,6209],[261355,87756,352],[398281,34000,805],[398864,33963,741],[397903,34575,672],[398561,33387,792],[398771,33273,716],[398653,33571,6083],[398776,33114,6639],[398913,32727,672],[399323,34142,712],[398576,33627,3989],[398475,33660,1901],[398625,33629,3237],[398816,33598,746],[397923,33171,726],[398303,33548,796],[398121,33239,780],[398258,33088,5616],[398325,33121,772],[398350,33034,742],[398582,32967,766],[397487,33141,652],[398723,32908,728],[398525,33685,1130],[398781,33743,809],[392180,71673,758],[390736,72786,1335],[391124,72233,1434],[391166,72589,1351],[390777,73106,1315],[401339,75149,1246],[396352,72095,716],[396893,72211,1282],[398118,73150,1355],[394538,70987,757],[392535,70009,643],[391852,71197,1392],[392922,70255,1388],[392411,71169,763],[393554,69955,1340],[393968,69784,1370],[394006,70137,1245],[398541,73321,671],[398496,72984,666],[399047,73518,683],[401127,75258,1289],[400846,75040,1356],[401089,74946,1340],[400107,74600,1359],[400059,74238,1354],[400462,74473,1330],[400771,74694,948],[396267,71419,773],[396528,71649,883],[396347,71760,1274],[399673,74401,1221],[398074,72805,1381],[397660,72625,1369],[399539,73705,638],[399089,73851,660],[398587,73663,682],[396605,72001,1313],[397175,72076,948],[392873,69895,1366],[393145,69753,1351],[393143,70047,761],[393512,69612,1384],[399625,74068,1175],[394536,70669,1320],[394993,70838,1369],[392407,70861,1284],[394012,70457,741],[396853,71895,1307],[395976,71578,1162],[395935,71224,1254],[395519,71364,1248],[401253,74791,722],[393057,69390,791],[391548,72048,1328],[392370,70548,1354],[392178,71353,1348],[394995,71176,767],[391899,71553,1376],[391915,71858,1041],[344584,50090,396],[344906,50147,4733],[345031,50367,410],[344263,50434,359],[344333,50782,282],[343910,49392,4312],[344323,49970,6095],[344707,49764,7726],[345435,50352,386],[345744,50343,282],[345313,50417,4229],[344241,49303,6182],[344491,49404,355],[344125,49402,345],[344917,49341,6354],[345297,49320,375],[345355,49603,6300],[344169,49724,365],[345345,49671,396],[345228,49764,4249],[345323,48962,4662],[344513,49270,5945],[345205,49137,5082],[345281,50096,4371],[345397,50036,440],[345323,48962,242],[343910,49392,242],[368583,81578,1674],[368549,81912,591],[352158,34843,942],[352773,34833,919],[351652,35205,902],[352367,33777,5813],[352650,33771,6098],[352639,33820,913],[352344,33805,898],[352020,33812,917],[352983,34599,942],[353109,34868,812],[353042,34859,849],[352726,34545,948],[353004,34547,889],[352780,33623,920],[351325,33781,912],[351526,33811,6150],[351663,34070,974],[352759,33440,822],[352524,33552,903],[352834,34764,6017],[352444,34491,4829],[352420,34535,1582],[352361,34513,2387],[352073,34309,985],[351885,34162,5813],[351726,34088,5855],[351861,34637,995],[351870,34864,5487],[352470,34388,1010],[351911,33741,977],[351887,34183,986],[352254,34569,3819],[352402,34668,4663],[352319,34802,3256],[352189,34606,1335],[352143,34541,5340],[352501,34517,4040],[351994,34440,5531],[352308,34534,3103],[352228,34355,993],[352460,34527,1191],[408268,86397,1262],[408685,85607,1206],[409701,84724,790],[409687,84371,1255],[409943,84307,808],[404677,84393,802],[405192,84451,1231],[405577,84679,759],[409321,84416,754],[408853,83820,828],[406483,82620,1204],[406574,81754,802],[406760,82213,1211],[406221,83078,1154],[405731,83557,1234],[405949,83163,1227],[408319,87009,802],[409074,85508,794],[409062,85178,1259],[409403,84779,1250],[407245,82795,762],[408373,83250,1202],[409238,83742,847],[410215,84370,802],[405524,84041,1193],[405124,84131,849],[406169,82718,1084],[405739,83881,742],[406771,82538,762],[409299,84104,1034],[408834,83506,1147],[405652,83207,779],[409640,84050,1193],[398252,23053,837],[398263,23168,8837],[398149,23176,7549],[398032,23420,799],[398116,23817,4742],[397780,22346,752],[398219,23506,6269],[398316,23670,850],[398302,23593,11725],[398296,23393,824],[398370,23484,4013],[399246,22432,873],[399016,22494,8534],[399081,22248,908],[398881,22987,5403],[398880,22893,975],[399110,22995,9724],[399374,23459,767],[399599,23429,4772],[399245,23509,11667],[398052,22884,878],[398377,22845,4364],[398323,23593,4651],[398639,23638,783],[398338,23735,766],[399181,23537,5291],[398688,23359,6062],[398582,23303,7707],[398741,23345,5265],[398578,23499,858],[398471,23310,5592],[398954,23535,811],[399038,23227,868],[399220,23365,4812],[399478,23383,888],[399110,23196,6592],[399066,23135,10295],[398338,23199,865],[398259,23356,5775],[398857,22825,3890],[398863,22909,7329],[398913,23210,838],[398823,22450,889],[398822,22520,847],[399335,23120,850],[399287,22755,861],[399060,22758,864],[399005,22782,5264],[398206,22702,833],[398523,22968,4810],[398558,22963,904],[398655,23600,6389],[398815,22999,7989],[398074,22414,881],[398379,22309,888],[398370,22576,7648],[398799,22668,4872],[398746,22611,5726],[398595,22835,4058],[398586,22882,1185],[398741,22776,1898],[398645,22827,3310],[398620,22612,878],[398712,22968,3065],[398794,22792,1078],[398550,22950,4650],[398907,22801,3166],[398096,22723,4852],[397934,22786,841],[398078,23206,4768],[398065,22982,6136],[397949,22733,7045],[397889,22442,835],[398359,22755,856],[399280,22719,4358],[399282,23046,885],[398773,22249,5255],[399301,22603,911],[397977,23130,797],[397977,23105,4642],[398774,22155,869],[399227,21986,1802],[398601,22847,6134],[399413,23053,5079],[399227,21986,802],[399599,23429,782],[398116,23817,712],[358688,146545,911],[358731,145682,732],[359177,146855,892],[358817,147598,757],[359882,146809,752],[358923,146914,3493],[358760,147980,692],[358766,146790,1555],[357583,146827,672],[358263,146915,812],[353878,149392,731],[354545,149938,732],[353617,150909,752],[353251,149497,725],[352672,149999,752],[353590,149029,1632],[353590,149029,722],[378162,39687,716],[379040,40227,272],[377620,40670,262],[377657,39440,340],[377187,39250,242],[378610,38816,252],[371046,41647,417],[371484,41603,465],[370921,42697,272],[370552,41385,313],[370493,41292,4262],[371322,41467,4625],[371440,41279,456],[370873,41507,4584],[371003,41328,411],[371909,41157,367],[372310,42264,262],[371884,40867,232],[370493,41292,312],[208520,109410,9285],[209550,108771,3452],[208333,109567,802],[208223,107973,832],[208672,108111,811],[208596,108179,9973],[208847,108796,8397],[208953,108839,9009],[208783,108971,8639],[209122,108544,789],[209126,108376,6244],[209387,108566,6404],[208573,108599,8215],[208494,108223,842],[208717,108424,834],[208677,107555,732],[209164,108866,749],[209174,108889,10977],[209070,108378,5515],[208840,108509,7618],[208811,108461,871],[209169,108735,838],[207921,108885,861],[207526,108330,822],[208682,108930,8075],[208702,109141,843],[208811,109129,779],[208273,108333,820],[208219,108332,8180],[207913,108101,8143],[209434,108623,761],[208754,108694,3461],[208414,109326,859],[208642,109167,9022],[208308,109016,7300],[208372,109120,964],[208191,109271,7453],[208380,108568,862],[208866,108690,4939],[208771,108781,891],[208186,108723,1286],[208365,108743,7150],[208857,108580,6638],[209073,108187,807],[208324,108674,875],[208041,108307,898],[208641,108752,1078],[208517,108829,7643],[208371,109010,876],[207830,108230,857],[208052,108880,894],[208711,108709,2672],[209550,108771,712],[400522,77964,922],[399993,80589,819],[403353,77673,807],[403305,77314,801],[404316,78072,777],[407871,87493,812],[407795,86796,1048],[402399,77562,784],[403221,77266,6086],[403054,77505,3291],[404330,85054,796],[405791,86037,1241],[403336,84625,799],[404095,83033,1241],[404810,81771,828],[400579,81439,835],[400536,81121,819],[400989,81295,1278],[401225,80516,813],[401305,80869,1273],[400346,79449,1275],[400599,78605,806],[400675,78935,1259],[405648,81129,779],[406416,79861,770],[412725,84470,776],[413691,86000,776],[413417,86437,750],[412031,86652,765],[411275,87167,767],[406947,86342,814],[404520,82917,811],[404508,82564,1300],[404897,82442,798],[405746,79696,777],[406072,79482,5756],[406056,79627,778],[412637,83824,748],[405380,79100,783],[407429,80342,769],[407522,81041,774],[408242,80958,3669],[408496,81142,789],[411144,83057,783],[411777,83311,3439],[411185,83373,772],[413921,85282,787],[414176,85639,3744],[414286,85562,730],[411233,83732,771],[412150,83867,764],[412110,83550,783],[401157,77699,788],[412597,87244,759],[411849,83672,3788],[408922,81398,760],[411813,88073,840],[402268,76596,749],[401207,78047,849],[400946,78169,1256],[400997,78529,1303],[400691,79282,844],[410339,87318,792],[411334,87484,1000],[405162,81339,1127],[405430,81522,791],[405209,81683,1153],[405423,81216,1253],[406387,86509,1170],[406050,86223,763],[407916,87829,806],[400656,81806,1239],[400911,80951,830],[406310,86149,764],[405304,85478,888],[400223,82266,914],[400744,82466,1258],[401581,83219,781],[402380,83195,918],[403208,83649,801],[402433,83527,1034],[401947,83433,1244],[402168,83311,957],[403749,83834,1260],[403761,84169,795],[401869,83084,783],[403324,84302,1225],[403256,83982,866],[401169,82673,1244],[412195,87655,1205],[407416,87239,1087],[411682,87089,835],[404883,82109,1242],[404134,83346,1204],[401090,82308,814],[400671,82145,816],[405226,82005,793],[404855,85262,1164],[404813,84919,1214],[400361,79797,838],[399979,80244,1263],[401004,78829,839],[404151,83696,808],[402472,83869,942],[402110,82959,788],[411753,87405,1251],[412106,87012,1146],[411798,87764,1215],[411366,87842,778],[399935,79925,1239],[399445,80059,820],[411421,88181,924],[400174,81946,828],[407372,86910,1081],[365872,31658,7083],[365922,31594,6442],[366212,31580,7133],[366216,31397,557],[366060,31508,611],[365948,31134,6427],[366052,30868,9807],[366083,31062,626],[366260,31405,6612],[366354,31686,452],[365349,31171,5874],[365361,31369,987],[365310,31399,6243],[366111,30935,8955],[365570,31752,7078],[365607,31485,6767],[365703,31598,9397],[365715,31555,634],[364670,30806,6614],[364620,30918,7226],[364501,30603,552],[365737,31095,678],[365629,30744,624],[364597,30951,609],[364845,31108,610],[365580,30375,612],[365942,30216,522],[365764,30612,657],[365305,31775,587],[365424,31434,4664],[364872,30835,641],[364801,30788,601],[365792,31318,8404],[365065,31680,625],[365266,31454,629],[365022,30559,6192],[364869,30744,8133],[365288,31845,6212],[365718,31430,605],[365157,30489,6060],[365165,30847,8591],[365223,31118,641],[365089,31192,655],[365515,30988,4927],[365399,31124,674],[365175,30760,622],[365116,30707,646],[365424,30671,657],[364929,30793,7278],[365649,31269,6353],[365479,31434,3918],[365529,31302,3343],[365014,31232,5811],[365584,31222,2660],[364889,31449,600],[366165,31028,523],[365758,31770,532],[365673,31069,641],[364842,32061,502],[405848,92968,765],[405803,92632,760],[406316,93195,739],[397226,84471,828],[397597,84002,838],[401568,85663,1308],[401893,85562,828],[401970,85898,1298],[396633,86764,841],[401776,91647,5308],[401468,88166,828],[401001,87972,1238],[401421,87809,826],[402261,88238,1028],[402204,87921,815],[405181,87934,763],[404710,87730,1150],[405137,87616,747],[408809,90763,735],[406992,89100,793],[406714,89179,793],[404028,93145,797],[403940,92494,765],[404359,92347,774],[400566,84937,781],[400051,84410,1252],[400526,84623,808],[400431,90277,1954],[400856,90480,1251],[400422,90591,1246],[397658,87492,1275],[395287,86201,838],[399095,83698,922],[399164,84018,1285],[398798,84196,1208],[395688,86059,1345],[395282,85888,1353],[398053,84893,842],[398460,84285,848],[398415,83965,820],[402487,91834,8361],[402888,92345,7463],[404962,93223,832],[405420,93103,1115],[402150,90832,5478],[401786,90508,924],[402597,91024,5821],[403118,91562,6940],[402713,91346,6858],[402254,91528,5632],[402248,91169,6226],[403398,92705,784],[403619,92599,833],[402749,92041,6059],[402674,91686,5658],[403311,92578,7771],[403638,92448,8302],[403950,92254,6120],[403276,92225,7921],[403671,92337,5313],[400129,90401,2950],[400072,90068,2774],[401638,91334,3941],[401703,91002,5490],[400992,91126,1956],[398449,89383,2813],[399362,89993,2909],[401465,90669,2746],[403873,91921,5654],[403667,92007,5870],[401275,90313,733],[400917,90812,1502],[398942,89122,2347],[398396,89071,2656],[403473,92128,6576],[403216,91889,7702],[397421,88651,2351],[398694,88891,2421],[398662,88562,2593],[398789,88780,823],[398354,88713,2728],[398175,88366,846],[397714,88162,819],[399077,88984,786],[399053,88670,1030],[397899,88531,2726],[397938,88844,2701],[398755,88447,967],[399844,89415,792],[399483,89543,868],[399435,89226,787],[400332,89943,1183],[399887,89749,771],[400259,89608,804],[399700,90217,2654],[399248,89320,2571],[399291,89663,2529],[399641,89872,2480],[400777,90136,779],[399832,89074,1254],[400213,89248,803],[400600,88791,795],[399009,89453,2674],[397180,87636,839],[398522,88215,1252],[398145,88035,1043],[398800,89594,2613],[395562,85380,839],[396069,85916,873],[396449,85112,1325],[396823,84940,845],[395603,85714,796],[396056,85573,1327],[405660,88175,862],[401101,85138,1304],[400203,88933,1258],[400590,88456,1285],[396730,84266,797],[397217,84143,1312],[403185,86776,807],[402559,86342,818],[402775,86228,823],[398547,84960,837],[398535,84622,1278],[399581,84237,1271],[399502,83870,834],[403427,91792,6548],[397670,87821,830],[401015,88309,806],[401888,88335,826],[399588,84540,813],[404724,88047,752],[404224,87492,1136],[402012,86215,1288],[406455,89284,778],[406441,88927,1243],[406169,89053,947],[405727,88497,1220],[405234,88268,877],[402275,86130,855],[403676,86974,1192],[404165,87172,899],[397145,83822,898],[397583,83669,1267],[398333,85097,1267],[396814,84629,1309],[395972,85235,779],[408011,91941,670],[396110,86246,827],[399179,84372,829],[401378,87492,816],[409310,90643,580],[408871,91094,977],[405903,93282,960],[397156,87302,1126],[257660,76766,474],[258320,76390,382],[256272,77590,5082],[257463,75582,8736],[257533,75828,489],[257368,75687,9317],[258098,76512,10150],[257929,76304,452],[256827,77082,5075],[256897,76894,503],[256989,76978,8798],[257143,76487,5011],[256856,76576,518],[256835,76510,753],[256986,76820,4629],[256816,76766,10072],[257717,76034,513],[257883,75959,463],[256618,76789,511],[257170,75717,494],[257524,75098,422],[257484,75481,474],[256805,76216,486],[256237,76497,502],[255525,76325,402],[257849,76483,7500],[257836,75626,438],[256836,76840,2427],[256781,76988,5083],[255944,76620,437],[255571,76400,450],[256274,76845,10386],[256280,76944,470],[256224,77417,501],[256363,76973,9417],[256456,77106,446],[256494,77437,345],[256984,77074,452],[257055,76936,10281],[257151,76869,5909],[256933,76874,3092],[256952,76843,3831],[257574,76383,507],[257620,76500,446],[257331,76456,7888],[257503,75915,7296],[257435,76066,524],[257374,75770,525],[257302,76696,504],[257298,76184,5468],[257092,76286,7668],[257182,76081,523],[257360,75734,8460],[257073,75787,529],[257087,76861,5244],[257654,75806,7493],[257858,75801,6046],[257686,75597,7218],[257785,76337,492],[257258,76377,475],[257464,76235,6741],[257259,76456,511],[257201,76486,5759],[257669,75660,497],[257606,75624,5809],[257601,76305,7298],[257495,76009,5655],[257579,76184,470],[257260,76488,6467],[256928,77126,5621],[256643,77222,460],[257132,76753,7565],[256619,77364,6288],[256272,77590,352],[319504,44408,974],[318764,44853,874],[319117,44138,1103],[317833,43577,832],[319570,44456,6877],[319792,44507,922],[318349,45064,852],[319228,43038,922],[319414,43727,991],[319459,44066,992],[319441,44005,5918],[290189,71039,831],[290865,71171,412],[289513,71907,392],[289324,71513,433],[288857,70586,6222],[289345,70694,7806],[289900,70918,3070],[289743,71111,625],[289672,70265,7285],[290119,70660,575],[290469,70563,586],[290292,70586,8899],[290316,70296,9736],[290167,69875,7282],[289909,71017,9104],[290095,70767,5951],[290069,70308,546],[289362,70410,8536],[289242,70842,528],[290167,69875,452],[288857,70586,342],[351664,48517,370],[351943,48471,292],[350543,48895,292],[351016,48572,412],[351440,48468,6437],[350708,47930,458],[350439,47532,6244],[350711,47722,4867],[351266,48205,467],[351392,48129,6393],[350663,47571,491],[351606,48306,4966],[351724,48165,6849],[351595,47745,5835],[351288,47168,6703],[350119,47501,252],[351227,47646,4994],[351580,47858,425],[351367,47532,7134],[351483,47167,350],[351518,47075,5202],[350748,48245,436],[350743,48025,4758],[350512,48618,454],[350975,48215,492],[351518,47075,252],[444200,50096,2060],[444255,50187,2012],[444132,50068,2022],[444166,49786,2149],[444009,49948,2032],[444557,49698,2113],[444520,49369,2187],[445112,49326,1982],[444839,49120,7107],[444867,49086,2012],[444989,49206,2002],[444745,48965,2042],[444502,48723,2052],[444623,48844,2042],[444121,49260,6741],[444040,48775,2233],[444381,48601,2062],[443832,49544,2175],[443502,49337,2201],[443793,49230,2208],[443524,49463,2052],[443644,49585,2052],[444455,49499,6700],[443887,49828,2052],[444534,49857,7169],[443766,49707,2052],[444261,48479,2062],[443404,49341,2062],[357691,46075,534],[358651,46461,292],[357235,46901,292],[357200,45379,340],[357902,45385,473],[357643,45712,532],[358217,45035,4112],[358119,45084,838],[357874,45159,4752],[357960,45723,679],[358179,45729,485],[356798,45467,252],[358498,46091,386],[357870,45720,3668],[358154,45142,4424],[358183,45463,1022],[358217,45035,262],[313265,59661,2739],[313687,59589,501],[313132,59823,604],[313359,59004,472],[313213,58862,5692],[313421,58788,5882],[313067,59112,6831],[313036,59158,496],[313005,58936,5692],[313408,59353,497],[312798,59010,5692],[312597,59470,5693],[312675,59592,544],[312590,59085,5512],[313550,58755,8333],[313551,59044,7822],[312694,59861,6315],[312176,59236,5672],[312670,60586,402],[312723,59940,565],[313629,58715,5962],[314093,60074,382],[313640,59244,472],[313074,59683,5891],[312383,59160,5692],[313629,58715,382],[312176,59236,382],[236456,90010,494],[236695,89927,458],[237065,90217,459],[236305,90148,426],[236637,90778,352],[235851,89585,382],[236873,89472,483],[236602,89252,431],[236997,89421,435],[236956,89807,5800],[236794,89848,7361],[236652,89611,450],[236237,89756,8024],[236249,89511,6080],[236346,89667,481],[237127,90410,377],[237866,89947,1292],[236592,89567,498],[236566,89500,5958],[237662,90023,403],[237719,89769,6138],[237727,90023,7183],[236262,89807,476],[236476,89925,8250],[237122,88899,432],[237126,88902,6557],[237061,88797,392],[236211,89449,438],[237293,89542,428],[237620,89699,438],[237562,89731,4816],[237369,89807,6280],[237089,90095,437],[237258,89232,516],[236344,89954,6137],[237227,89741,487],[237238,89799,3047],[236955,89846,490],[237338,89877,414],[237613,89728,5489],[237605,90034,432],[237374,89914,4571],[237379,90192,402],[237324,89918,3889],[237150,89971,876],[237866,89947,382],[225695,98016,430],[226647,97516,302],[225485,98283,332],[226023,97389,446],[226245,97170,6824],[226140,97489,7083],[225868,96287,362],[225579,96510,9356],[224683,97092,382],[225905,97742,7554],[226330,97546,390],[225717,97984,8901],[225622,97952,8230],[225709,97661,6411],[225437,97814,396],[225677,97537,484],[225306,96832,438],[225590,96729,473],[225648,97091,7485],[225950,96510,5366],[226070,96664,442],[225483,98158,381],[225863,96981,5164],[225777,96668,424],[225737,96415,380],[225906,96526,4544],[226280,97184,383],[225351,97165,440],[225680,97125,477],[225740,97639,7170],[225965,96754,4757],[225833,96720,443],[225918,97702,411],[226168,96977,422],[226155,96825,5966],[225997,97050,5707],[225932,96990,451],[225971,97045,2381],[225889,96635,5767],[228175,111005,485],[229068,110607,422],[227821,111425,412],[228040,110228,3056],[228040,110127,4744],[228110,110061,1139],[228087,109985,1182],[228381,110198,575],[228643,110160,641],[228871,110312,1007],[228688,110422,512],[228444,110531,829],[228566,110178,7451],[228723,110517,1310],[228486,110682,1132],[228017,110007,6140],[227974,109966,6590],[228253,109566,642],[228638,110064,510],[228077,110010,7178],[228037,109678,7046],[228270,109388,372],[227995,109682,487],[227022,110204,362],[228035,110069,5655],[228469,110538,5418],[227679,110102,575],[227983,110388,4948],[227736,110556,1180],[227580,110466,713],[227972,110267,1526],[227874,109899,838],[227717,110804,502],[325225,55903,507],[325584,55967,5469],[325550,56156,476],[325690,54950,8859],[325653,55055,414],[325418,55181,431],[325914,54843,4902],[324467,55302,342],[325835,55895,4963],[326102,55993,410],[325753,55227,5056],[325209,55148,6735],[324779,55269,414],[325133,55216,492],[325248,55473,6669],[325703,55404,461],[326005,55307,334],[325754,55772,506],[324891,56638,332],[325510,55839,505],[326350,56217,322],[325914,54843,302],[242648,86558,2798],[242386,86615,6442],[242323,86504,7487],[241696,85772,7795],[241814,85858,461],[241411,85851,372],[242625,85015,402],[242634,86079,504],[242542,85773,4851],[242646,85726,5019],[241861,86206,457],[242174,86154,7504],[242545,85402,529],[242295,86318,476],[243068,86153,430],[242934,85856,5019],[243028,85833,476],[242251,85953,549],[242246,86539,5920],[242396,86173,5936],[242905,86532,6417],[243330,86254,4912],[242225,87001,332],[242670,86387,423],[242336,86662,398],[242750,86367,2366],[242996,86331,6016],[243268,86184,5294],[242949,86340,5288],[242926,86369,4549],[242936,86457,8022],[243330,86254,322],[273500,118972,1245],[273993,119433,991],[273575,119659,1027],[273710,120657,1029],[273477,120423,3742],[273670,120307,1119],[274183,120750,1170],[273135,119225,1292],[274041,119774,1026],[273639,119958,1342],[273253,120233,1062],[273335,120912,942],[275325,119264,1200],[274313,118524,964],[273088,118888,1273],[273437,118628,1016],[274217,121104,972],[273816,118072,1078],[274893,119967,1028],[274850,119644,1032],[272708,119457,929],[275609,119408,1167],[275142,119743,1246],[275356,119593,1020],[233905,107214,610],[234087,106989,1148],[234313,107192,521],[233156,106697,5394],[233707,107601,402],[232895,106360,372],[233571,106312,545],[233833,106241,548],[233833,106501,724],[233962,106319,673],[233894,106505,1427],[233959,106462,2954],[233876,106546,5702],[233857,106575,4964],[233945,106749,5589],[234137,106464,695],[233509,106004,409],[233669,106192,7996],[233611,105891,542],[234079,105586,362],[234060,105859,499],[233745,105977,474],[234012,106052,7812],[233952,106463,8013],[234011,106169,644],[234430,106139,528],[234450,106534,493],[234922,106799,392],[234534,106772,605],[234036,106367,7538],[234387,106601,5984],[233826,106806,767],[233232,106340,7097],[233499,106559,739],[233526,106581,5317],[233245,106380,498],[233227,106704,506],[234493,106857,483],[380062,88166,1276],[380404,87761,1332],[380066,88494,718],[380610,87008,666],[380669,87334,892],[380358,87400,1354],[380023,87847,1324],[380706,87692,739],[381425,86506,1201],[381811,86065,776],[381349,86159,779],[381001,86596,1288],[381041,86953,1186],[381807,85741,1330],[382496,84855,1118],[382774,84772,738],[382512,85183,746],[382113,84937,1236],[379700,88572,825],[394438,73491,1086],[393725,74439,785],[397557,77247,1245],[396610,76590,755],[397695,76105,758],[398137,76299,1222],[396459,75282,1064],[398563,76818,772],[398547,76500,1144],[395164,75699,791],[395692,76240,1154],[395204,76033,745],[397609,77912,738],[397339,77695,1036],[397051,75682,737],[397296,75548,735],[397648,75763,729],[397249,75205,718],[396802,75479,750],[395940,74730,888],[396422,74963,1140],[395906,74417,1004],[396755,75120,746],[396705,77297,775],[397023,77127,793],[397074,77486,839],[397311,77381,1237],[396659,76952,760],[396201,76756,769],[394907,73674,958],[394945,74002,877],[398489,76175,926],[395423,74214,1142],[395438,74534,762],[395350,73883,740],[394455,73794,764],[396155,76409,783],[370864,97644,3885],[370590,97369,617],[370682,98048,641],[371063,97689,614],[231576,94181,8287],[232240,93746,832],[231033,94561,322],[231157,94423,6740],[231535,93174,7241],[231642,93118,9482],[231732,93158,444],[231828,93547,4820],[231835,93582,8406],[231546,93732,2335],[231431,93771,6090],[231484,93715,7663],[231866,93845,421],[231845,93797,5035],[231135,93284,478],[230974,93301,466],[231204,93163,7388],[231829,94004,349],[231062,93981,407],[230603,93485,427],[230935,93735,469],[231519,92884,7130],[231464,92556,362],[231700,93031,402],[231225,93077,9048],[231344,93162,448],[231351,92868,454],[231388,93478,452],[231341,93634,7183],[231232,93605,498],[231297,92827,421],[230911,93362,477],[231017,93623,457],[231079,92960,457],[231145,92870,7348],[230239,93341,352],[231476,94162,387],[231672,93537,7102],[231503,93563,501],[231744,93355,400],[231575,93709,3070],[231440,93743,840],[231805,93092,7298],[231788,93689,380],[231681,93698,4594],[231107,94324,387],[231392,93887,3693],[231277,93997,449],[231794,93507,433],[231209,94056,5767],[231481,93868,5128],[231782,93933,7812],[231445,93841,565],[230801,93579,8465],[230800,93032,429],[231416,93214,487],[232240,93746,322],[283009,126420,977],[282753,126376,3377],[282823,125930,5136],[282961,126063,987],[282507,125884,964],[282916,125717,1000],[282639,126848,993],[338251,52214,414],[339037,52418,282],[337621,52826,272],[338200,51864,6871],[338261,51932,1082],[337747,51942,388],[337699,51596,351],[338543,51695,5486],[338638,51832,371],[337633,51466,5759],[338158,51528,383],[338433,51287,4697],[338592,51500,362],[337577,51686,4564],[337197,51436,4792],[337270,51638,362],[338607,51007,4242],[338545,51149,343],[338607,51007,262],[337197,51436,352],[288545,58816,582],[289453,58746,332],[288102,59478,362],[288021,58231,512],[287391,58140,382],[288702,57428,392],[288005,57900,875],[392344,35797,531],[392303,35443,617],[392660,35311,555],[392354,35175,565],[392218,35423,2381],[392252,35108,517],[392616,34986,548],[392290,34890,5972],[392548,34705,5428],[392697,34545,542],[393122,35960,572],[392903,35309,636],[392299,35112,5752],[391894,34857,456],[391908,34803,4409],[392074,34864,523],[392669,34891,4380],[392704,34651,7725],[392205,34769,493],[392377,34701,554],[392693,35207,6545],[392052,35293,539],[392654,35016,584],[391301,34964,332],[392679,34560,551],[392027,35723,593],[392294,35807,998],[391730,36393,462],[392040,35919,528],[292490,133321,1050],[292699,132922,1042],[292123,132749,1067],[292469,132952,1436],[265281,72011,475],[265006,71739,5084],[264955,71566,483],[264365,72035,704],[264678,71804,499],[264894,72340,508],[264304,71695,510],[264679,71682,5642],[265921,71975,382],[264641,72718,372],[263905,71427,422],[264134,71442,5638],[265141,70702,432],[264589,71123,527],[264942,71906,524],[265136,72010,2138],[265072,71974,1051],[265158,71951,2528],[251222,95632,506],[252129,95198,616],[251308,96135,402],[251175,95277,530],[251604,95154,612],[251218,95470,5881],[251300,94637,6610],[251422,94657,620],[251434,94673,5153],[251696,94855,814],[251982,94681,495],[252191,94820,521],[251369,95049,707],[251406,95037,1400],[251783,94503,602],[251710,94061,392],[251907,94530,5913],[251167,95154,5776],[251220,94612,6027],[251474,94277,426],[251416,94991,2266],[251307,94339,4053],[252527,95311,432],[251653,94845,1865],[251611,95018,6930],[250479,94866,362],[250763,94997,499],[250824,94654,356],[251084,95239,543],[251154,94467,383],[239753,102927,588],[239400,102811,514],[239717,102734,593],[239112,103010,390],[239596,103766,402],[238778,102514,382],[239531,102632,5288],[239589,102636,5933],[239869,103355,655],[240818,102967,382],[239391,102490,525],[239709,102610,559],[240073,102732,550],[239332,103204,484],[239071,102664,459],[239802,102763,1186],[239351,102452,502],[239075,102582,478],[239322,102309,4591],[239472,102115,391],[238873,102610,425],[239030,102531,3997],[239105,102886,4379],[239199,102852,522],[239999,101716,402],[239794,103288,482],[324671,41698,1344],[325396,41173,6284],[325424,41497,6082],[324686,41788,7049],[324918,42610,1262],[324496,41121,1282],[325523,41528,1506],[325476,41182,1484],[325871,40704,1481],[325344,41925,4137],[325154,41941,1445],[325454,41812,5908],[325581,41885,1665],[326381,42114,1432],[325123,42030,7079],[325200,42286,1437],[325933,40666,1412],[273761,87688,801],[273784,87082,622],[274051,87469,5119],[274561,88447,868],[275093,88074,702],[274284,89107,712],[274109,87542,761],[272990,88131,682],[274173,87904,949],[285686,72305,312],[428971,39053,2362],[427003,36824,2342],[358541,145027,672],[357373,146244,622],[352038,140357,592],[352888,139512,652],[352016,140379,592],[351993,140399,582],[351969,140418,582],[351944,140435,582],[351917,140450,582],[351890,140463,582],[351862,140475,572],[351833,140485,572],[351803,140493,572],[351773,140499,572],[351743,140503,572],[351712,140505,572],[351682,140505,572],[351651,140503,572],[351621,140499,572],[351591,140493,572],[351561,140485,572],[351533,140475,572],[351504,140463,572],[351477,140449,572],[351451,140434,572],[351425,140417,572],[351401,140398,572],[290282,74913,442],[290265,74912,442],[346457,52959,372],[314609,63050,442],[314861,62950,442],[315114,62852,432],[315368,62757,432],[315623,62664,432],[316135,62486,432],[315878,62574,422],[317094,62131,422],[318056,61786,412],[319021,61450,412],[319989,61123,392],[320961,60805,392],[322913,60198,392],[321936,60497,392],[314358,63153,442],[303245,67825,452],[292721,73439,442],[278719,82366,542],[272842,80283,372],[276235,78078,352],[278316,76815,332],[278901,77989,392],[279315,81540,532],[278509,82943,552],[278467,83143,552],[275794,84701,562],[278636,82553,552],[278566,82746,552],[278814,82185,542],[278922,82011,542],[284555,78244,452],[289063,75588,432],[279042,81845,532],[279174,81688,532],[279467,81403,532],[279628,81276,552],[280727,80639,482],[290134,74947,442],[290149,74939,442],[296979,70992,432],[290165,74932,442],[290181,74925,442],[290197,74920,442],[290214,74917,442],[290231,74914,442],[290248,74912,442],[290299,74915,442],[290316,74918,442],[290333,74922,442],[290349,74928,442],[290365,74934,442],[290380,74942,442],[290395,74950,442],[290409,74960,442],[290423,74971,442],[290436,74982,442],[290448,74994,442],[290459,75008,442],[292875,74437,442],[290469,75021,442],[290478,75036,442],[300126,69279,442],[299619,69548,442],[300636,69017,442],[301151,68763,452],[301669,68517,442],[302191,68278,452],[302716,68048,452],[328220,33512,1192],[329258,35019,1192],[327735,33855,1192],[325919,35856,1372],[322980,33799,1192],[322002,34091,1142],[322529,33470,1162],[325458,35906,1372],[323484,35346,1342],[323681,35468,1352],[323886,35577,1352],[324098,35670,1362],[324316,35749,1372],[324539,35812,1372],[324766,35860,1372],[324995,35891,1372],[325227,35907,1372],[325690,35889,1372],[325701,118424,542],[325020,119427,472],[303462,103352,562],[304202,102375,592],[325003,119451,472],[303156,103519,562],[303186,103515,562],[324939,119763,472],[303127,103521,562],[324945,119792,472],[303097,103521,562],[324953,119820,472],[303067,103519,562],[324962,119848,472],[303037,103516,562],[324974,119875,472],[303008,103510,562],[324987,119902,482],[302979,103503,562],[325002,119927,482],[302951,103493,562],[325018,119952,482],[302924,103482,562],[325037,119975,482],[302897,103469,562],[325056,119997,482],[302871,103454,562],[325078,120018,482],[325100,120037,482],[302846,103438,562],[303215,103509,562],[324935,119733,472],[303244,103501,562],[324933,119704,472],[303272,103491,562],[324934,119674,472],[303299,103479,562],[324936,119645,472],[303326,103466,562],[324940,119616,472],[303351,103451,562],[324946,119587,472],[303376,103434,562],[324953,119558,472],[303399,103416,562],[324963,119530,472],[303422,103396,562],[324975,119503,472],[303443,103375,562],[324988,119477,472],[336023,132068,582],[316392,118777,632],[302573,108472,602],[279566,91344,652],[341494,138499,682],[342280,136987,562],[280037,90687,582],[279973,90038,582],[280055,90658,582],[280071,90629,582],[280055,90144,582],[280085,90598,582],[280097,90567,582],[280107,90535,582],[280120,90469,582],[280114,90502,582],[280123,90435,582],[280123,90368,582],[280124,90401,582],[280120,90334,582],[280115,90301,582],[280085,90205,582],[280107,90268,582],[280097,90236,582],[280071,90174,582],[280037,90116,582],[280018,90088,582],[279996,90062,582],[273781,85874,512],[275180,86390,552],[275387,86521,552],[274966,86271,542],[274522,86066,532],[274747,86163,542],[274292,85982,522],[274058,85910,522],[273821,85850,512],[300711,107635,622],[302308,108830,632],[300971,107292,582],[323571,124218,812],[322551,123433,762],[321529,122651,622],[320506,121871,672],[319480,121094,672],[318453,120319,692],[317423,119547,682],[341543,140975,782],[341607,140898,772],[341797,141184,782],[341862,141109,782],[343910,143003,752],[343975,142927,732],[344225,143110,712],[346260,145069,772],[344158,143185,752],[346327,144995,792],[346486,145258,792],[346557,145188,792],[342294,137591,562],[352832,149007,742],[358175,152698,662],[358133,152620,672],[358088,152545,672],[355678,152200,732],[358040,152471,682],[357989,152399,682],[357935,152330,672],[357878,152263,672],[357818,152198,672],[356028,151843,712],[357303,151693,662],[353645,148105,652],[354393,150940,752],[342314,137566,562],[342348,137514,562],[342332,137541,562],[342362,137485,562],[342399,137365,562],[342393,137396,562],[342375,137456,562],[342385,137426,562],[342403,137271,562],[342404,137302,562],[342403,137334,562],[342367,137118,562],[342388,137177,562],[342400,137239,562],[342395,137208,562],[342378,137147,562],[342338,137062,562],[342353,137089,562],[342320,137036,562],[342301,137011,562],[334795,132945,692],[335928,132015,592],[335993,132048,582],[335961,132031,582],[335538,132010,592],[335715,131974,592],[335894,132002,592],[335824,131984,592],[335859,131992,592],[335788,131978,592],[335752,131975,592],[335679,131976,592],[335607,131988,592],[335643,131981,592],[335572,131998,592],[335412,132081,602],[335473,132041,592],[335505,132024,592],[335442,132060,602],[335384,132104,592],[354743,150583,742],[356800,151199,652],[345740,92702,932],[343514,93125,802],[345687,92414,922],[343436,92795,742],[345640,92126,912],[343368,92463,682],[345601,91836,842],[343309,92129,632],[345569,91545,762],[345545,91254,712],[343259,91794,572],[343219,91457,552],[412228,30439,1252],[412047,30512,1232],[411212,29149,1182],[412402,30353,1282],[412571,30255,1282],[412732,30146,1312],[412885,30025,1342],[413028,29894,1352],[413163,29753,1382],[413287,29602,1402],[412347,27795,1562],[413400,29444,1422],[413501,29277,1452],[413590,29104,1492],[413667,28926,1522],[413731,28742,1552],[413782,28554,1552],[413820,28362,1582],[413843,28169,1602],[413853,27975,1612],[413850,27780,1622],[413832,27586,1632],[411271,30676,1172],[409779,31130,1102],[409363,29697,1092],[212250,125415,522],[216008,123105,532],[215919,122972,522],[208914,127547,542],[225516,96009,362],[207303,107998,812],[213557,99049,552],[194689,116743,1672],[194459,116620,1672],[194237,116482,1682],[255079,71701,462],[258704,74009,412],[254948,76213,392],[240277,81120,462],[256013,69861,482],[254478,70789,502],[245773,77637,472],[235157,84327,472],[226693,90152,452],[222647,92917,462],[226655,90093,462],[222400,93091,472],[218644,95645,492],[214423,98303,542],[209722,101664,642],[205079,104871,842],[209643,101561,642],[201657,107197,1032],[200203,115686,1522],[198606,116602,1542],[200264,115178,1502],[198740,116640,1532],[200167,115804,1532],[193635,115984,1702],[197932,108709,1222],[198210,116701,1552],[199715,108516,1162],[199601,108584,1162],[199483,108645,1162],[199361,108697,1172],[199236,108742,1172],[199108,108778,1182],[198847,108824,1192],[198978,108805,1182],[198581,108835,1212],[198714,108834,1212],[198449,108827,1212],[198317,108810,1222],[198187,108785,1222],[198058,108751,1222],[197810,108658,1222],[197690,108600,1212],[197575,108533,1212],[197465,108459,1202],[197360,108378,1202],[197028,108138,1192],[190242,111895,1192],[190220,111681,1192],[190255,112109,1192],[190258,112324,1192],[190251,112539,1192],[190235,112753,1192],[190209,112966,1192],[190173,113178,1192],[193060,116484,1752],[190080,113259,1192],[193824,116163,1702],[194025,116330,1702],[197732,116911,1552],[195171,116942,1672],[194927,116851,1672],[195934,117114,1642],[195421,117016,1662],[195676,117074,1652],[196194,117137,1632],[196715,117131,1612],[196454,117143,1612],[197231,117055,1582],[196974,117102,1592],[197484,116991,1572],[197975,116814,1552],[198429,116827,1552],[198522,116952,1552],[198336,117042,1552],[198242,116788,1552],[198459,117079,1552],[198357,117098,1552],[198469,116672,1542],[198628,116978,1552],[203798,112699,1222],[200352,115606,1522],[200461,115548,1522],[198459,117079,302],[198357,117098,302],[198628,116978,302],[365971,30040,512],[396563,22359,732],[406950,21506,1102],[409647,20421,1492],[411031,22219,1772],[411728,21558,1772],[412195,21926,1812],[411237,21223,1722],[410725,20920,1652],[410194,20653,1572],[406152,19831,1072],[409085,20226,1422],[408511,20070,1352],[407929,19951,1282],[407340,19872,1192],[406747,19832,1122],[351265,33468,902],[342527,36201,1392],[341927,36449,1402],[342081,37423,1502],[375782,28324,462],[374035,28756,482],[375902,28810,462],[394079,24825,652],[374155,29241,452],[278898,62413,382],[301937,49982,472],[302789,51567,402],[312350,45452,632],[322532,41520,1142],[320098,43188,992],[320259,43662,1002],[323181,43199,1142],[321992,42546,1112],[265178,70324,402],[279740,64003,332],[285454,60342,362],[287073,59467,362],[286835,59027,372],[285216,59903,372],[322153,43020,1082],[247005,102678,452],[247054,102644,452],[246886,102505,442],[326955,54973,262],[327912,54682,242],[327101,55451,282],[328057,55160,262],[299595,98925,622],[298891,99901,522],[282957,87976,562],[283687,87015,672],[282938,87999,562],[298874,99929,522],[282619,88154,562],[282649,88151,562],[298818,100245,532],[282589,88155,562],[298825,100277,532],[282559,88153,562],[298834,100308,532],[282529,88150,562],[298846,100339,532],[282499,88145,572],[298859,100369,542],[282470,88138,572],[298874,100397,542],[282441,88129,572],[298892,100425,532],[282412,88118,572],[298911,100452,532],[282385,88105,572],[298932,100477,542],[282359,88090,572],[298955,100500,542],[298979,100522,542],[282333,88074,572],[282679,88146,562],[298814,100212,532],[282709,88140,562],[298812,100180,532],[282738,88131,562],[298812,100147,532],[282766,88121,562],[282794,88108,562],[298814,100114,522],[282821,88094,562],[298818,100082,522],[282847,88079,562],[298825,100050,532],[282871,88061,562],[298834,100018,532],[282895,88042,562],[298845,99988,532],[282917,88021,562],[298858,99958,522],[395891,40226,612],[395949,40449,602],[379566,43291,332],[396360,38553,622],[397535,37371,642],[405142,35236,812],[410361,36326,1032],[364770,47557,362],[410949,37519,1052],[406904,35593,872],[421073,31517,1722],[421120,33600,1812],[421232,33562,1822],[421347,33531,1822],[421463,33508,1822],[421319,31495,1742],[421581,33494,1862],[421648,31492,1772],[421700,33488,1872],[421908,31511,1802],[421818,33490,1872],[422165,31548,1812],[421936,33500,1892],[422419,31603,1842],[422053,33519,1902],[422545,31637,1852],[422169,33545,1922],[422877,31752,1882],[422283,33580,1942],[423352,31983,1912],[422501,33672,1952],[422393,33622,1952],[423502,32075,1922],[423039,31821,1892],[423197,31898,1902],[422713,31690,1862],[422293,31573,1822],[422037,31527,1802],[421778,31499,1782],[421566,31490,1762],[421483,31490,1752],[421401,31491,1742],[421237,31500,1742],[421155,31508,1722],[348983,52182,362],[348144,53446,442],[220984,140590,492],[220973,140621,492],[212913,135136,492],[216578,137773,552],[256179,166943,682],[249523,162070,682],[220983,140295,492],[220972,140264,492],[246405,159812,642],[243156,157445,632],[239842,155080,612],[232736,149658,572],[229373,147250,552],[220656,141135,632],[209424,128500,542],[210550,133409,482],[211646,134210,482],[209330,128369,542],[209859,132903,482],[206270,130279,552],[209806,132976,482],[210497,133481,482],[252854,164461,672],[212865,135200,492],[211599,134274,492],[217093,137638,512],[216891,137779,542],[216776,137918,562],[216728,137883,572],[216915,137753,542],[216941,137729,532],[216969,137706,532],[216998,137686,532],[217028,137668,532],[217060,137652,512],[220818,140051,502],[217127,137627,502],[217474,137650,502],[217161,137618,502],[217196,137611,502],[217231,137607,502],[217267,137606,502],[217303,137607,502],[217338,137611,502],[217407,137626,502],[217373,137617,502],[217441,137637,502],[217506,137666,502],[217537,137684,502],[217566,137704,502],[235877,151953,602],[220843,140073,502],[220867,140096,502],[220889,140121,502],[220909,140147,502],[220928,140175,492],[220945,140203,492],[220960,140233,492],[220992,140327,492],[220999,140360,492],[221003,140393,492],[259396,169320,722],[221005,140426,492],[221005,140459,492],[221003,140492,492],[220999,140525,492],[220992,140558,492],[220960,140652,492],[220945,140682,492],[220929,140710,492],[220910,140738,502],[229344,147290,552],[232724,149674,572],[252842,164477,672],[262542,171646,732],[265991,174194,752],[266506,174628,752],[266473,174598,752],[266567,174694,752],[266538,174660,752],[266594,174730,752],[266618,174767,752],[266640,174806,752],[266660,174847,752],[266676,174889,752],[266690,174931,752],[266701,174975,752],[266709,175019,752],[260858,183141,922],[260913,183097,922],[264493,187881,1022],[260801,183182,922],[260740,183218,922],[260678,183251,922],[260613,183279,932],[260371,179736,832],[259460,182988,892],[257961,182977,832],[256522,186946,982],[260199,183348,922],[260269,183348,922],[260129,183343,922],[258929,183685,892],[259990,183318,922],[260059,183333,922],[259922,183298,922],[259856,183274,902],[259792,183245,902],[259730,183212,892],[259670,183175,892],[259613,183134,892],[259558,183089,892],[259507,183040,892],[261334,180452,962],[260547,183302,932],[249385,196614,1112],[250198,197652,1112],[249165,196912,1112],[257426,197444,1102],[255043,200668,1172],[254823,200966,1172],[265000,182896,982],[265037,182926,992],[267041,184434,1112],[264965,182864,982],[264932,182829,982],[264902,182792,972],[264874,182753,972],[264849,182712,972],[264827,182670,972],[264808,182626,972],[264792,182581,972],[264779,182536,962],[264769,182489,962],[264762,182442,962],[264759,182394,952],[264758,182346,952],[264761,182299,952],[264768,182251,952],[264898,181947,952],[266580,175527,762],[267309,178734,882],[264777,182205,942],[264790,182158,942],[264806,182113,942],[264824,182070,952],[264846,182027,942],[264871,181986,942],[266714,175063,762],[267339,178697,882],[267372,178661,892],[267407,178629,892],[267444,178598,892],[267483,178570,892],[267524,178545,892],[267566,178523,892],[266606,175490,762],[266683,175329,762],[266668,175371,762],[266696,175286,762],[266705,175242,762],[267892,178455,892],[267844,178455,892],[267796,178458,892],[267940,178458,892],[267988,178464,892],[268035,178474,892],[268081,178487,892],[268126,178503,892],[268170,178522,892],[268254,178569,892],[268213,178544,892],[268293,178597,892],[270253,180087,832],[271547,178335,762],[271710,178182,732],[271580,178359,772],[272535,179066,772],[272666,178889,762],[274839,180771,742],[277156,182212,712],[277025,182388,712],[283431,186868,742],[295247,195643,742],[278872,183756,792],[279003,183579,732],[281071,185383,742],[283306,187036,742],[278064,182884,762],[287812,190371,802],[285362,188558,752],[285487,188389,752],[284328,187532,752],[290300,191913,752],[290157,192106,762],[292085,193231,752],[291942,193424,762],[295126,195805,832],[295958,196427,832],[296079,196265,732],[296660,196952,892],[299623,198624,732],[299367,198969,732],[301147,199759,732],[304746,202976,962],[300890,200104,832],[305257,203357,1002],[306981,202087,942],[305449,203549,1002],[316409,166357,942],[254067,190271,1012],[260340,183344,922],[260410,183335,922],[260479,183321,922],[262091,191131,1042],[267749,178465,892],[266716,175153,762],[266716,175108,752],[266712,175198,762],[267702,178475,892],[267656,178488,892],[266650,175412,762],[266629,175452,762],[267610,178504,892],[259762,194284,1122],[251800,193342,1032],[299507,64918,332],[223334,99266,352],[223042,98877,372],[224503,97913,362],[224778,98330,352],[366155,65749,512],[359264,61139,492],[365845,66151,512],[367650,67356,522],[252428,98951,452],[252378,98985,452],[252482,98659,452],[255596,96481,432],[263460,86380,392],[257498,95150,442],[270215,86535,542],[267332,88559,482],[270460,86380,512],[270715,86241,522],[270978,86117,522],[271248,86011,522],[271805,85850,522],[271524,85922,532],[272090,85796,512],[272378,85759,502],[272668,85741,502],[272958,85741,502],[273248,85759,502],[273536,85796,512],[219752,120445,532],[151306,157800,452],[151226,157827,452],[150041,154264,452],[195848,135129,562],[200118,128661,532],[206474,125293,602],[171790,147208,452],[167587,149220,452],[169022,144673,452],[151147,157859,452],[151098,157882,452],[193853,131871,442],[198805,129361,522],[151050,157908,452],[151003,157936,452],[192521,132574,452],[180781,142770,452],[175639,141261,452],[180548,138726,452],[184873,140849,582],[181886,138045,452],[186763,135532,452],[150958,157965,452],[150914,157997,452],[154931,155724,452],[154872,155777,452],[152626,153089,452],[163996,147235,452],[154637,156095,452],[151365,153663,452],[151557,157754,452],[143624,157171,452],[144974,156568,452],[145217,160382,452],[150830,158066,452],[144993,160478,452],[163703,151281,452],[162677,147908,452],[150871,158031,452],[170322,143972,452],[174348,141937,452],[183469,141484,452],[188053,134856,452],[192335,137111,582],[151389,157779,452],[151472,157763,452],[151642,157750,452],[151727,157752,452],[151812,157760,452],[151896,157774,452],[154574,156241,452],[151978,157793,452],[154551,156317,452],[152060,157818,452],[154532,156394,452],[152139,157849,452],[154519,156472,452],[152216,157885,452],[154511,156551,452],[152290,157927,452],[154509,156631,452],[152362,157973,452],[154511,156710,452],[152430,158024,452],[154520,156789,452],[152494,158080,452],[154533,156867,452],[152554,158140,452],[154551,156945,452],[152610,158204,452],[154575,157020,452],[152661,158272,452],[154604,157095,452],[152708,158343,452],[154638,157166,452],[154676,157236,452],[156440,151121,452],[155059,155630,452],[154603,156167,452],[161766,152236,452],[157729,150482,452],[154675,156025,452],[154718,155958,452],[154765,155894,452],[154816,155834,452],[154993,155675,452],[167633,149309,452],[183909,142337,452],[185313,141702,452],[184091,142477,452],[185396,141862,452],[259207,94954,462],[259756,94587,492],[316441,195369,712],[319146,198121,862],[318791,198466,912],[318585,198668,922],[315921,195876,772],[309955,60558,342],[310884,60199,342],[310137,61024,352],[311063,60666,352],[423570,26101,1872],[424807,26973,1892],[329938,122108,542],[329634,122505,532],[326579,120163,532],[326883,119766,582],[359046,159364,782],[322026,195323,842],[356367,156500,622],[318866,193009,672],[363678,149155,632],[366223,152404,832],[363152,149652,652],[365999,152622,842],[366540,152098,802],[329586,54172,242],[330542,53880,242],[330688,54359,262],[329731,54650,262],[206755,123828,512],[207029,124246,552],[208303,122815,472],[208577,123233,502],[444290,46040,1992],[443536,45499,2002],[449333,53632,1692],[449067,52743,1702],[448743,51874,1742],[448363,51027,1762],[447928,50208,1782],[447440,49418,1792],[446902,48663,1832],[446315,47944,1862],[445682,47266,1892],[445006,46630,1962],[424931,33035,1952],[449540,54536,1672],[449774,56376,1572],[449687,55453,1612],[449800,57304,1542],[449669,59154,1392],[449765,58231,1452],[449513,60068,1412],[449022,61857,1282],[449297,60971,1312],[448690,62723,1252],[447858,64381,1212],[448301,63566,1222],[447363,65166,1172],[446817,65916,1162],[435106,80948,882],[434882,81223,872],[434657,81497,872],[434430,81769,872],[434202,82041,862],[433972,82311,862],[433741,82579,902],[433508,82847,912],[325532,83333,522],[326449,82121,502],[343424,30584,1152],[344465,31412,1092],[344179,31591,1102],[339575,31588,1312],[338812,30725,1302],[339045,31105,1312],[338893,30920,1302],[339210,31279,1302],[339387,31440,1312],[339773,31723,1302],[339980,31843,1302],[340196,31949,1292],[340418,32039,1292],[340646,32112,1272],[340878,32170,1272],[341114,32210,1262],[341353,32234,1262],[341592,32241,1252],[341930,32240,1242],[342267,32216,1212],[342601,32168,1192],[342931,32098,1162],[343255,32004,1152],[343573,31888,1122],[343881,31750,1112],[247227,102525,452],[252197,99110,452],[222150,100066,372],[221357,100589,382],[221874,99649,392],[221081,100172,412],[422965,34043,1962],[424313,32620,1942],[422671,33774,1952],[422735,33822,1962],[422796,33873,1962],[422855,33927,1962],[422911,33984,1962],[426973,36090,2142],[429671,39176,2272],[430643,86045,902],[432818,83617,922],[302436,101751,652],[302853,102692,612],[278498,83124,552],[278426,83524,552],[278440,83333,552],[278424,83716,552],[278434,83907,562],[278457,84098,562],[278493,84286,562],[278540,84472,562],[278600,84654,562],[278671,84832,562],[278754,85005,562],[278848,85172,562],[278952,85333,562],[279067,85487,562],[279192,85632,562],[279325,85770,562],[279468,85898,572],[279618,86017,572],[279776,86126,572],[303154,102293,622],[350856,138826,632],[337791,129711,502],[329659,123529,472],[329634,123513,472],[329686,123543,472],[329713,123556,472],[329799,123582,472],[329741,123567,472],[329769,123575,472],[330166,123495,472],[329828,123587,472],[329858,123590,472],[329888,123591,472],[329918,123590,472],[329948,123587,472],[330006,123575,472],[329977,123582,472],[330035,123566,472],[330063,123556,472],[330090,123543,472],[330116,123529,472],[330142,123513,472],[330249,123409,482],[330189,123475,472],[330210,123455,472],[330230,123432,482],[337704,129082,492],[338422,128116,552],[337687,129110,492],[337671,129139,492],[337658,129170,492],[337767,129689,502],[337647,129201,492],[337631,129265,492],[337638,129232,492],[337626,129298,492],[337624,129331,492],[337626,129397,492],[337624,129364,492],[337631,129429,502],[337637,129462,502],[337646,129494,502],[337658,129525,502],[337686,129584,502],[337671,129555,502],[337723,129639,502],[337704,129612,502],[337744,129665,502],[351794,138926,652],[352862,137530,692],[353702,138240,702],[351485,139320,642],[359376,149595,712],[358884,149070,692],[359486,149727,712],[359605,149850,712],[359732,149965,712],[359867,150070,712],[360334,150303,712],[360010,150166,712],[360159,150251,712],[360313,150326,712],[355848,140053,702],[354030,138517,702],[355919,139969,702],[354101,138433,722],[351165,138432,642],[353773,138156,722],[352933,137446,692],[352541,137259,682],[343425,129873,632],[343001,129549,632],[344126,130214,632],[343521,129760,632],[353399,119443,822],[340791,127816,612],[341194,128125,612],[340868,127673,652],[330990,122460,532],[356717,146927,632],[279941,86224,572],[302165,102163,622],[362793,149991,652],[362670,150085,662],[362541,150170,662],[362406,150247,662],[363603,154945,872],[362267,150315,662],[362124,150374,662],[361978,150424,662],[361828,150464,662],[361677,150495,672],[361523,150515,672],[361369,150526,682],[361214,150527,682],[361059,150518,682],[359738,150964,702],[360906,150499,692],[360754,150470,692],[360604,150432,692],[360457,150383,712],[294055,68338,422],[291697,69046,442],[294293,68778,412],[292209,69338,432],[292447,69777,402],[428669,88250,802],[418059,103217,922],[411165,103390,762],[429116,87750,842],[432632,90982,962],[403849,116096,892],[406737,107414,842],[406656,113482,912],[409480,110886,922],[407983,106244,792],[412322,108310,922],[415182,105754,922],[410521,103952,762],[401060,118730,892],[398290,121383,862],[409881,104519,772],[409245,105090,792],[408612,105665,772],[407358,106827,812],[364250,148615,632],[429819,86966,882],[289151,75734,432],[290221,75093,442],[290331,75121,442],[290241,75084,442],[290328,75116,442],[290321,75108,442],[290325,75112,442],[290309,75097,442],[290317,75104,442],[290313,75100,442],[290300,75091,442],[290304,75094,442],[290290,75086,442],[290295,75088,442],[290268,75082,442],[290279,75083,442],[290285,75085,442],[290274,75082,442],[290257,75082,442],[290263,75082,442],[290252,75082,442],[290246,75083,442],[290226,75090,442],[290236,75086,442],[290231,75088,442],[253950,93075,402],[254871,92473,432],[255144,92891,442],[254223,93493,412],[306706,61398,322],[307005,61271,322],[311692,59414,352],[311210,59594,332],[310728,59777,332],[310246,59962,332],[309287,60338,332],[309766,60149,332],[308507,60650,332],[308206,60773,332],[307905,60896,332],[307605,61020,332],[307305,61145,322],[305934,61751,302],[304396,62473,292],[305164,62109,292],[303632,62842,302],[302869,63217,282],[302110,63597,312],[308808,60529,332],[206172,130208,552],[200466,133622,622],[196296,135922,612],[196357,135946,612],[196321,135967,612],[196375,135981,612],[394186,25234,682],[394336,25809,662],[393853,25935,682],[393700,25354,1012],[394186,25234,582],[394336,25809,582],[393853,25935,302],[393700,25354,302],[292875,74437,4272],[376887,96647,4082],[380852,92275,2962],[353399,119443,852],[393947,89661,2682],[393914,89211,2632],[398060,92763,2772],[397763,92930,2622],[109839,170332,1462],[84315,182093,4622],[56356,193967,1462],[80933,183588,4622],[79290,184314,4622],[90847,179206,4622],[85658,181499,4622],[92227,178597,4622],[97198,176400,4622],[98554,175801,4622],[105022,172942,4622],[110018,170734,4622],[110124,170687,4622],[103661,173544,4622],[116519,167817,4622],[111466,170084,4622],[117862,167214,4622],[118387,166497,1462],[118568,166898,4622],[122966,164908,4622],[122940,164437,1462],[123121,164838,4622],[124311,164300,4622],[129417,161992,4622],[130773,161379,4622],[136520,158781,4622],[137840,158184,4622],[150645,151912,1462],[143023,155841,4622],[149442,152939,4622],[144370,155232,4622],[150767,152340,4622],[151603,151960,4622],[151411,151564,1462],[155771,149819,4622],[157051,149162,4622],[162012,146614,4622],[170859,141575,1462],[163330,145937,4622],[168347,143360,4622],[169661,142685,4622],[171061,141966,4622],[173670,140621,4622],[202997,125016,1462],[187383,133556,4622],[174966,139954,4622],[179877,137423,4622],[181212,136736,4622],[186088,134223,4622],[199440,127344,4262],[203013,125062,1462],[191843,131258,4622],[193182,130568,3432],[198117,128025,542],[203223,125341,1442],[203289,125360,1442],[203051,125040,1512],[45057,199557,1462],[41760,201133,1462],[41570,200736,1462],[51565,196585,1462],[47449,197938,1462],[45237,199473,1462],[44868,199160,1462],[37528,200891,1462],[37801,201385,1462],[37291,200905,1462],[37577,201848,1462],[37063,200919,1462],[47633,198338,1462],[50215,197187,1462],[56500,194385,1462],[62904,191555,1462],[57874,193778,1462],[64241,190964,1462],[69423,188674,1462],[70776,188076,1462],[77937,184911,1462],[199440,127344,462],[203013,125062,302],[202997,125016,302],[170859,141575,302],[151411,151564,302],[150645,151912,302],[122940,164437,302],[118387,166497,302],[109839,170332,302],[56356,193967,302],[47449,197938,302],[44868,199160,302],[41570,200736,302],[37801,201385,302],[37528,200891,302],[37291,200905,302],[37063,200919,302],[324056,155427,3832],[324427,154656,3582],[325475,153356,3422],[325861,152562,2962],[326068,152454,2962],[322708,157380,4352],[323304,156296,3782],[323191,156461,3822],[322619,157296,4352],[324232,154764,3702],[324344,154599,3582],[324314,154821,3812],[321870,158389,3532],[320633,160196,3812],[323108,156404,3742],[323221,156239,3782],[321989,158216,4222],[321906,158160,4222],[321787,158333,3522],[343001,129549,812],[343521,129760,1122],[343425,129873,1122],[343754,129442,2822],[350233,122953,2682],[344126,130214,652],[350436,122705,2682],[350357,122646,2682],[350141,122886,2682],[347282,126370,2702],[346993,126549,2702],[347205,126302,2722],[347070,126618,2722],[343653,129587,2822],[397364,24448,8652],[394079,24825,682],[398116,23817,7612],[400560,23612,8912],[399599,23429,7692],[401643,23328,6662],[410684,22585,1972],[411031,22219,1902],[406967,21935,1302],[406950,21506,1262],[392956,25106,4452],[391484,25470,4102],[386273,26759,7522],[384791,27125,7912],[373210,29990,6682],[358579,34042,722],[371725,30357,7242],[366354,31686,6762],[364842,32061,6862],[358289,33668,772],[359821,33303,7232],[353109,34868,1332],[351652,35205,1022],[344304,36909,1502],[342060,37870,1582],[342773,37263,1542],[342081,37423,1572],[337158,38508,1922],[336865,38611,1962],[336733,38425,1962],[337058,38087,1892],[336606,38246,1932],[341984,37446,1572],[379834,28352,7602],[378352,28719,7852],[397364,24448,582],[400560,23612,582],[401643,23328,582],[406967,21935,582],[410684,22585,582],[341984,37446,1502],[337058,38087,1812],[336606,38246,1852],[337158,38508,302],[336865,38611,302],[342060,37870,302],[358579,34042,302],[346486,145258,1022],[346327,144995,982],[346557,145188,972],[346260,145069,992],[344158,143185,1022],[343975,142927,982],[344225,143110,922],[343910,143003,982],[341797,141184,862],[341607,140898,822],[341862,141109,832],[341543,140975,832],[252428,98951,492],[252482,98659,472],[252378,98985,492],[252197,99110,492],[247227,102525,502],[246886,102505,472],[247054,102644,492],[247005,102678,492],[278221,135940,4842],[276701,138123,5122],[278139,135883,4842],[276619,138066,5122],[318001,163687,3052],[316456,166290,3052],[316353,166036,3012],[320453,160191,3812],[320135,159965,3812],[320274,159942,3812],[320192,159884,3812],[319993,160846,3532],[319903,160783,3502],[320219,160332,3812],[320309,160395,3542],[318328,163220,3052],[318238,163157,3072],[317911,163623,3012],[316131,166161,3012],[316263,165973,3012],[316409,166357,3052],[279268,131691,3432],[276896,134990,2602],[279186,131634,3232],[276815,134931,2602],[272872,140416,2542],[196359,117543,1772],[196064,117531,1742],[196194,117137,1722],[195771,117500,1852],[195934,117114,1722],[195480,117450,1852],[195676,117074,1722],[195194,117381,1882],[195421,117016,1772],[194912,117293,1852],[195171,116942,1772],[194637,117187,1912],[194927,116851,1852],[194369,117064,1922],[194689,116743,1852],[193621,116593,1922],[193060,116484,2032],[193635,115984,1802],[194237,116482,1882],[194109,116923,1952],[193860,116766,1952],[194025,116330,1842],[193824,116163,1822],[194459,116620,1852],[193226,116664,2032],[193366,116816,2432],[196454,117143,1722],[196715,117131,1722],[196654,117536,1772],[196974,117102,1692],[196948,117510,1772],[197231,117055,1692],[197239,117465,1772],[197484,116991,1682],[197527,117401,1942],[197732,116911,1682],[197810,117318,1942],[197975,116814,1612],[198087,117217,1942],[198336,117042,1622],[198357,117098,1622],[198242,116788,1602],[198210,116701,1602],[193621,116593,302],[193366,116816,302],[193860,116766,302],[194109,116923,302],[194369,117064,302],[194637,117187,302],[194912,117293,302],[195194,117381,302],[195480,117450,302],[195771,117500,302],[196064,117531,302],[196359,117543,302],[196654,117536,302],[196948,117510,302],[197239,117465,302],[197527,117401,302],[197810,117318,302],[198087,117217,302],[303548,184296,3732],[303384,184165,3732],[330564,147826,3302],[330394,147703,2992],[403757,31323,4542],[398913,32727,5392],[396028,33106,1302],[411897,27720,1962],[411755,27133,2082],[411963,27081,2302],[412347,27795,1932],[412163,27032,2302],[411212,29149,1332],[410963,28775,1382],[409363,29697,1812],[405190,30907,5162],[385483,36720,4082],[384109,37139,4082],[387110,35764,1172],[351518,47075,6702],[350119,47501,4952],[359329,44237,5552],[327384,53964,6282],[327057,54480,4972],[326946,54054,6522],[300430,64460,7352],[300277,64541,7262],[300405,64000,7482],[307653,60546,332],[307305,61145,342],[306542,61011,332],[305934,61751,1762],[305508,61485,1762],[299507,64918,6422],[295953,66770,8512],[299399,64531,6632],[294609,67470,7702],[294269,67219,6382],[303453,62463,6912],[302869,63217,6962],[302432,62966,7332],[302110,63597,7212],[301416,63478,7482],[301045,64140,7352],[290167,69875,9532],[288857,70586,7802],[285501,71995,6632],[272842,80283,412],[263460,86380,5572],[263220,86012,6322],[261355,87756,6212],[256738,90774,5452],[228270,109388,4532],[227022,110204,1522],[233370,105523,5972],[209394,121742,3952],[205365,124379,1312],[205339,124120,1462],[205225,123793,1502],[205296,123898,1312],[205140,123842,1522],[221192,114020,522],[205312,124246,1462],[205282,124282,1502],[210623,120937,2842],[215331,117856,5172],[216567,117047,5392],[222415,113219,5062],[250479,94866,5132],[232895,106360,4572],[233611,105891,5582],[234079,105586,5042],[238778,102514,3372],[239999,101716,4512],[244621,98695,4132],[245849,97892,4692],[251710,94061,5462],[255489,91591,4242],[276003,77699,492],[262577,86958,6112],[283548,73531,6542],[283175,73865,7042],[278316,76815,362],[276235,78078,392],[283587,73615,6542],[284422,73030,6942],[285686,72305,6632],[291697,69046,7772],[299977,64688,6632],[304478,61969,1792],[304396,62473,1792],[305164,62109,1782],[308769,60092,8472],[308507,60650,352],[300584,64380,7352],[300737,64300,7482],[300891,64220,7482],[301199,64061,7482],[301353,63982,7392],[310728,59777,7482],[309889,59650,8252],[311014,59219,7652],[309287,60338,7142],[303632,62842,6962],[312143,58801,8192],[311692,59414,7582],[313629,58715,7672],[313277,58394,8322],[314415,57999,8212],[312798,59010,7822],[307005,61271,342],[306706,61398,352],[307605,61020,342],[307905,60896,342],[308206,60773,342],[308808,60529,352],[309766,60149,7872],[310246,59962,7752],[311210,59594,7322],[312176,59236,7582],[312383,59160,7582],[312590,59085,6822],[313005,58936,7582],[313213,58862,7822],[313421,58788,7482],[343910,49392,5832],[326210,54287,7422],[318782,57059,8292],[317337,57516,6562],[324467,55302,6682],[325914,54843,6832],[326343,54707,6742],[327492,54391,4112],[330904,53352,5882],[332323,52920,5952],[337197,51436,5762],[338607,51007,6172],[345323,48962,5942],[371884,40867,4622],[356798,45467,5332],[358217,45035,4862],[359458,44658,5082],[363674,43372,5072],[365077,42944,5072],[370493,41292,6282],[377187,39250,4272],[378610,38816,4362],[394030,33685,5042],[391301,34964,4582],[387237,36185,1222],[395538,33248,1252],[394154,34107,1152],[392697,34545,4972],[396151,33529,1252],[397487,33141,5242],[411963,27081,582],[411897,27720,582],[410963,28775,582],[396028,33106,582],[394030,33685,302],[395538,33248,302],[387110,35764,302],[359329,44237,302],[327384,53964,302],[326946,54054,302],[326210,54287,302],[314415,57999,302],[313277,58394,302],[312143,58801,302],[311014,59219,302],[309889,59650,302],[308769,60092,302],[307653,60546,302],[306542,61011,302],[305508,61485,302],[304478,61969,302],[303453,62463,302],[302432,62966,302],[301416,63478,302],[300405,64000,302],[299399,64531,302],[294269,67219,302],[285501,71995,302],[276003,77699,302],[263220,86012,302],[233370,105523,302],[205296,123898,302],[205225,123793,302],[326343,54707,272],[327057,54480,252],[327492,54391,242],[359458,44658,222],[387237,36185,202],[394154,34107,622],[396151,33529,622],[285503,135734,2002],[345801,92988,962],[345545,91254,952],[345569,91545,952],[345687,92414,952],[343601,93452,952],[343436,92795,972],[343259,91794,962],[343514,93125,962],[343368,92463,972],[343309,92129,972],[343219,91457,962],[345640,92126,952],[345601,91836,952],[345740,92702,952],[421120,33600,2062],[410976,36624,2092],[410949,37519,2242],[422393,33622,2772],[422501,33672,2782],[422230,34029,2772],[421232,33562,2052],[422605,33729,2782],[422305,34065,2782],[422671,33774,2782],[422735,33822,11882],[422449,34150,2782],[422796,33873,11882],[422516,34200,11882],[422855,33927,11882],[422911,33984,11882],[422965,34043,11882],[422639,34312,11882],[422169,33545,2282],[422283,33580,2772],[422378,34105,2782],[422579,34254,11882],[422695,34374,11882],[422053,33519,2142],[421936,33500,2122],[421818,33490,2092],[421700,33488,2082],[421581,33494,2082],[421463,33508,2052],[421347,33531,2052],[410361,36326,1962],[393003,60152,2692],[392796,60099,1862],[393084,60846,2692],[392896,60958,2692],[340868,127673,662],[341194,128125,652],[340791,127816,752],[362409,71034,2532],[362380,70939,2532],[352933,137446,932],[352541,137259,842],[352862,137530,842],[354030,138517,872],[353702,138240,842],[354101,138433,3062],[395891,40226,792],[395949,40449,792],[219752,120445,562],[215919,122972,562],[216008,123105,582],[395875,32578,5362],[395385,32720,992],[395875,32578,582],[395385,32720,302],[289151,75734,452],[289063,75588,442],[290252,75082,452],[290246,75083,452],[290257,75082,452],[290263,75082,452],[290268,75082,452],[290274,75082,452],[290279,75083,452],[290285,75085,452],[290290,75086,452],[290295,75088,452],[290300,75091,452],[290304,75094,452],[290309,75097,452],[290313,75100,452],[290317,75104,452],[290325,75112,452],[290321,75108,452],[290328,75116,452],[290331,75121,452],[290241,75084,452],[290236,75086,452],[409557,102259,4242],[409292,102133,4242],[409354,102068,4242],[409227,102072,4242],[326449,82121,3372],[325532,83333,1492],[325515,83193,2962],[320326,78742,1472],[320188,78913,1472],[326387,82038,3372],[250654,81315,6982],[249072,82856,322],[243330,86254,7102],[218726,103261,1482],[210468,108685,9322],[213929,105898,8392],[253209,80121,7272],[251938,80455,7022],[292383,57648,1112],[279969,64367,342],[288102,59478,472],[295216,56078,452],[294017,56283,362],[301340,52800,552],[300012,53061,562],[302349,52290,1482],[301369,52331,1582],[305410,50826,512],[304384,51303,462],[306041,50155,582],[327778,42095,1482],[323319,43606,1152],[324918,42610,4132],[332366,40194,1482],[332604,39878,1482],[332733,40065,1482],[327833,41607,1482],[332212,39792,1482],[332480,39698,1482],[327627,41692,1482],[326381,42114,1502],[313297,47467,702],[318349,45064,942],[308517,49464,2062],[312248,47460,702],[323181,43199,1172],[307476,49907,602],[307421,49556,2062],[319792,44507,1102],[306440,50361,582],[313690,46863,662],[303364,51791,612],[302789,51567,1532],[276535,66305,432],[277506,65264,452],[295381,55550,452],[289453,58746,472],[262158,74373,1232],[256699,77840,8672],[259721,75576,412],[283665,61879,492],[282286,62626,452],[279740,64003,432],[276236,65983,452],[271725,68603,442],[270328,69414,442],[265921,71975,1002],[253177,80070,7272],[256272,77590,7882],[264641,72718,1042],[262387,74028,1362],[261987,74260,1302],[252980,79757,7362],[258320,76390,8642],[252943,79698,7272],[237103,90981,492],[227216,97644,402],[232240,93746,7662],[221049,101212,6412],[242225,87001,7102],[237866,89947,7272],[236637,90778,872],[231033,94561,7882],[226647,97516,6212],[225485,98283,462],[219784,102047,482],[215127,105110,7172],[209550,108771,8632],[208333,109567,8212],[207562,110595,872],[204051,113059,7092],[203798,112699,6512],[203383,112990,6572],[202163,113846,5912],[200517,115538,1652],[200264,115178,1572],[200461,115548,1622],[200510,115909,1662],[200352,115606,1622],[200203,115686,1622],[200167,115804,1622],[198606,116602,1602],[198740,116640,1602],[198628,116978,1632],[198522,116952,1622],[198469,116672,1612],[198429,116827,1622],[200641,115834,2422],[218726,103261,302],[210468,108685,302],[227216,97644,302],[237103,90981,302],[249072,82856,302],[253209,80121,302],[253177,80070,302],[256699,77840,302],[276535,66305,302],[279969,64367,302],[292383,57648,302],[295216,56078,302],[301340,52800,302],[302349,52290,302],[303364,51791,302],[304384,51303,302],[305410,50826,302],[306440,50361,302],[307476,49907,302],[308517,49464,302],[313297,47467,302],[323319,43606,302],[327778,42095,302],[332366,40194,302],[332733,40065,302],[259721,75576,372],[252943,79698,312],[252980,79757,312],[200510,115909,302],[200641,115834,302],[200517,115538,302],[204051,113059,302],[207562,110595,302],[402437,32695,762],[403162,31964,802],[402297,32215,762],[403301,32444,802],[356881,156000,642],[359586,158840,812],[359397,159023,792],[312514,39997,752],[307052,42634,562],[327452,40504,1482],[332020,39030,1482],[317316,36796,932],[317344,36669,932],[317280,36920,922],[317236,37043,922],[317185,37162,932],[317126,37277,922],[316510,37939,902],[317060,37389,922],[316988,37497,922],[316908,37599,902],[316823,37697,902],[316731,37789,902],[316634,37875,902],[291910,50575,522],[291869,50536,522],[295450,48711,522],[300882,45763,562],[285806,53958,482],[280066,57336,432],[276855,58770,452],[276900,58206,452],[276885,58144,452],[276912,58269,452],[276919,58332,452],[276922,58396,452],[276921,58459,452],[276916,58523,452],[276907,58586,452],[276893,58648,452],[276876,58710,452],[276829,58828,452],[276800,58885,452],[276768,58940,452],[276731,58992,452],[276692,59043,452],[276504,59214,452],[269565,63254,452],[276649,59090,452],[276604,59134,452],[276555,59176,452],[259151,69528,452],[258847,69711,452],[257536,68940,472],[311281,205817,1042],[308337,203259,952],[333384,30892,1522],[333347,32278,1692],[332412,32340,1832],[331860,30939,1732],[331565,31147,1792],[333333,32422,1702],[333120,33112,1792],[333051,33240,1802],[333181,32981,1772],[333232,32845,1752],[333275,32707,1732],[333309,32565,1712],[421829,19506,1692],[358400,153532,652],[358236,152829,662],[358288,152965,662],[358331,153103,652],[358364,153244,652],[358387,153387,652],[358403,153677,652],[358396,153821,652],[358379,153965,652],[358352,154108,652],[358315,154248,662],[358269,154385,662],[358213,154519,662],[358148,154648,662],[358074,154773,662],[357992,154893,672],[357902,155006,662],[393098,34882,582],[394683,34423,632],[394822,34903,632],[393237,35363,592],[348341,48356,232],[349824,47905,252],[349969,48383,272],[348486,48835,242],[230260,108503,382],[228838,109434,372],[229112,109852,402],[230534,108921,402],[213933,97525,532],[213804,97510,532],[213888,97456,532],[213577,97525,532],[213744,97418,532],[213086,97997,532],[213015,97887,532],[212935,98117,532],[212925,98100,532],[212911,98134,532],[374942,40458,252],[375088,40936,252],[375803,40195,242],[375948,40673,252],[380002,21941,612],[398932,17371,902],[404592,15331,1102],[421828,13966,1252],[430725,11517,802],[431619,14278,722],[421452,18085,1562],[419912,12177,1262],[421440,17888,1532],[421445,18053,1552],[421439,18020,1542],[421436,17987,1542],[421436,17954,1542],[421437,17921,1532],[421446,17855,1522],[421454,17823,1522],[421464,17792,1522],[421476,17761,1522],[421271,13747,1262],[421490,17731,1522],[421290,13775,1262],[421506,17702,1522],[421310,13802,1262],[421524,17674,1512],[421333,13827,1262],[421544,17647,1512],[421357,13851,1262],[421565,17622,1512],[421382,13873,1262],[421588,17598,1512],[421409,13893,1262],[421613,17576,1512],[421438,13912,1262],[421639,17556,1512],[421467,13928,1262],[421666,17537,1512],[421498,13943,1262],[421695,17520,1512],[421529,13955,1262],[421724,17505,1512],[421561,13965,1262],[421755,17492,1502],[421594,13973,1262],[421786,17481,1502],[431652,14381,722],[421795,13974,1252],[421762,13979,1252],[421728,13983,1252],[421694,13984,1262],[421661,13982,1262],[421627,13979,1262],[420438,12403,1262],[420401,12351,1262],[420420,12376,1262],[420380,12326,1262],[420357,12304,1262],[420008,12166,1272],[420282,12244,1262],[420333,12282,1262],[420308,12262,1262],[420225,12213,1262],[420254,12228,1262],[420103,12174,1272],[420196,12201,1262],[420166,12190,1272],[420135,12181,1272],[420040,12167,1272],[420072,12170,1272],[419944,12171,1262],[419976,12168,1272],[392042,18841,792],[360992,27051,682],[389862,19381,752],[384952,20541,702],[389822,19251,752],[354082,28711,832],[349983,29878,942],[336523,37578,1772],[336204,37681,1802],[361864,160305,1002],[361436,160726,1002],[451507,24162,319],[451276,24197,364],[451207,23798,115],[450480,23984,240],[445669,22538,203],[446415,22805,235],[446652,22913,417],[446213,22650,111],[448925,23487,364],[449970,23529,52],[453115,24653,89],[448466,23163,220],[451780,24087,172],[450167,23579,168],[452901,24633,163],[451080,23814,0],[430321,23631,8722],[430365,23803,8722],[429996,23895,9072],[429943,23728,8902],[430321,23631,582],[430365,23803,582],[429943,23728,582],[429996,23895,582],[428710,24676,8372],[435777,22464,2202],[428593,24242,8462],[427104,25150,8612],[425008,25732,1932],[428593,24242,582],[336733,38425,1082],[336204,37681,1632],[331565,31147,1082],[332412,32340,1102],[328220,33512,1002],[333051,33240,1112],[332020,39030,622],[331300,30774,1082],[331444,30977,1082],[327975,33156,1002],[329258,35019,972],[328101,33339,1002],[332480,39698,452],[332604,39878,382],[200470,115660,1102],[200548,115783,702],[205033,123903,312],[189816,119916,302],[184492,123415,302],[189294,120784,302],[130253,151529,302],[154810,138806,302],[189620,120352,302],[189750,119973,302],[47154,189841,302],[189519,120588,302],[189542,120552,302],[37358,194109,302],[189563,120514,302],[189597,120435,302],[117795,157892,302],[189610,120394,302],[189582,120475,302],[189493,120622,302],[189465,120654,302],[180927,125410,302],[189434,120685,302],[189402,120713,302],[189367,120739,302],[189332,120763,302],[110457,161471,302],[61038,183597,302],[178390,126782,302],[178358,126719,302],[102613,165129,302],[35137,196624,302],[35370,197035,302],[35133,197048,302],[34109,201094,302],[34902,197061,302],[31427,197258,302],[5140,198748,302],[16726,198091,302],[7604,202664,302],[3818,198823,302],[5816,202770,302],[454,199013,302],[2339,202976,302],[0,199039,302],[1893,203016,302],[2116,202996,302],[27862,197460,302],[18284,202031,302],[29109,197389,302],[30429,201312,302],[31374,201256,302],[428717,18508,582],[428329,18606,582],[423565,19536,582],[431330,17560,582],[437539,20918,582],[436053,17404,582],[433494,16900,582],[433831,16797,582],[435571,16266,582],[433830,16797,582],[432702,17142,582],[428649,18241,582],[428262,18340,582],[319540,199944,1102],[312772,206610,1132],[312422,206253,1112],[319190,199587,1022],[361264,160068,992],[360916,159709,972],[361598,159048,982],[361946,159407,992],[361224,161579,972],[359400,159725,802],[359374,159052,792],[359335,159113,792],[359354,159082,792],[359319,159145,792],[359293,159213,792],[359305,159179,792],[359283,159248,792],[359269,159393,792],[359276,159284,792],[359272,159320,792],[359269,159356,792],[359272,159429,792],[359284,159501,792],[359277,159465,792],[359294,159536,792],[359377,159697,802],[359338,159636,792],[359306,159570,792],[359321,159603,792],[359356,159667,792],[366248,152385,822],[366273,152369,822],[366300,152354,822],[366328,152341,822],[366357,152330,822],[366387,152321,822],[366417,152314,822],[366447,152310,812],[366478,152307,812],[366509,152307,812],[366540,152309,812],[366570,152313,812],[366600,152320,812],[366630,152328,812],[366659,152339,812],[366687,152351,812],[366714,152366,812],[366740,152382,812],[366765,152400,812],[366789,152420,812],[366811,152442,812],[366831,152465,812],[366850,152489,822],[367402,153019,892],[367421,153042,892],[367463,153084,892],[367441,153064,892],[367535,153136,892],[367485,153103,892],[367510,153121,892],[367673,153188,892],[367588,153163,892],[367561,153150,892],[367616,153173,892],[367644,153182,892],[367762,153196,892],[367703,153193,892],[367732,153196,892],[368101,153037,892],[367851,153187,892],[367792,153195,892],[367821,153192,892],[367908,153171,892],[367879,153180,892],[368013,153117,892],[367935,153160,892],[367962,153147,892],[367988,153133,892],[368060,153080,892],[368037,153099,892],[368081,153059,892],[368119,153014,892],[324524,199652,1122],[326002,198234,1092],[362088,162457,982],[362183,162694,982],[362108,162488,972],[362126,162520,972],[362142,162553,972],[362155,162587,982],[362167,162622,982],[362176,162658,982],[362187,162731,982],[362189,162768,982],[362188,162804,982],[362185,162841,982],[362180,162877,982],[362172,162913,982],[362162,162949,982],[362150,162984,972],[362135,163017,972],[362118,163050,972],[362099,163082,982],[362079,163112,982],[362056,163141,972],[362031,163168,972],[322313,201396,1152],[324314,199437,1052],[319480,198502,902],[319457,198478,892],[319432,198456,892],[319350,198400,892],[319406,198435,892],[319378,198417,892],[319193,198347,892],[319320,198385,892],[319257,198362,892],[319289,198372,892],[319225,198353,892],[318872,198407,902],[319160,198343,892],[319093,198342,892],[319126,198341,892],[319027,198350,892],[319060,198345,892],[318963,198366,882],[318994,198357,882],[318931,198378,892],[318901,198392,892],[318843,198425,912],[318817,198445,912],[311356,205881,1062],[425415,27382,1912],[426537,28136,1952],[453028,44443,2022],[427092,28509,1962],[366936,154569,982],[365942,154836,962],[366290,155195,982],[366588,154210,962],[317114,210987,1172],[316786,210574,1182],[316696,210515,1182],[316742,210543,1182],[316829,210607,1182],[316980,210760,1182],[317019,210813,1182],[316870,210642,1182],[317183,211242,1152],[316909,210679,1182],[316945,210719,1182],[317055,210869,1172],[317086,210927,1172],[317138,211049,1162],[317157,211112,1162],[317173,211177,1162],[317190,211308,1152],[423228,19154,1682]],"transform":{"scale":[0.001,0.001,0.001],"translate":[84616.468,447422.999,-0.452]}} \ No newline at end of file +{"CityObjects":{"b0a8da4cc-2d2a-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09d7049cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[0,1,2]],[[0,3,1]],[[4,5,6]],[[4,7,5]],[[8,3,0]],[[4,9,7]],[[7,10,11]],[[11,12,13]],[[13,14,15]],[[13,12,14]],[[11,10,12]],[[7,9,10]],[[16,4,3]],[[9,16,17]],[[9,4,16]],[[18,8,0]],[[16,3,8]],[[0,19,18]],[[0,20,19]],[[21,1,3]],[[22,1,21]],[[23,3,4]],[[21,3,23]],[[24,4,6]],[[23,4,24]],[[25,6,5]],[[24,6,25]],[[26,5,7]],[[25,5,26]],[[27,7,11]],[[26,7,27]],[[28,11,13]],[[27,11,28]],[[29,27,28]],[[30,13,15]],[[28,13,30]],[[31,10,9]],[[32,10,31]],[[33,9,17]],[[31,9,33]],[[34,17,16]],[[33,17,34]],[[35,16,8]],[[34,16,35]],[[36,8,18]],[[35,8,36]],[[37,18,19]],[[36,18,37]],[[38,36,37]],[[39,19,20]],[[37,19,39]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"b1105d28c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-52.4)","identificatiebagpnd":"503100000000035","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027121)","inonderzoek":"0","lokaalid":"G0503.032e68eff7ec49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.0,"min-height-surface":-0.100000001490116,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85012.966 447473.243)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:6)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[40,41,42]],[[43,44,40]],[[45,46,47]],[[48,49,50]],[[48,51,52]],[[48,53,49]],[[45,47,54]],[[53,55,56]],[[57,53,52]],[[52,53,48]],[[58,55,59]],[[59,55,57]],[[59,57,60]],[[55,53,57]],[[46,61,62]],[[63,64,62]],[[64,65,66]],[[65,64,67]],[[68,65,67]],[[67,64,63]],[[69,67,63]],[[70,71,63]],[[63,62,61]],[[72,71,73]],[[74,72,75]],[[76,74,77]],[[77,74,75]],[[78,77,75]],[[75,72,79]],[[80,75,79]],[[81,80,79]],[[82,81,79]],[[79,72,73]],[[83,79,84]],[[84,79,85]],[[86,84,85]],[[87,86,88]],[[88,86,85]],[[85,79,89]],[[89,79,73]],[[73,71,90]],[[91,73,92]],[[92,73,90]],[[90,71,93]],[[93,71,70]],[[46,62,52]],[[43,40,54]],[[94,95,96]],[[94,70,61]],[[94,61,95]],[[70,63,61]],[[51,46,52]],[[51,47,46]],[[44,41,40]],[[45,54,40]],[[97,42,98]],[[99,42,97]],[[100,99,97]],[[100,97,101]],[[98,42,102]],[[103,98,104]],[[104,98,105]],[[106,104,105]],[[107,108,109]],[[105,107,110]],[[110,107,109]],[[109,108,111]],[[98,102,105]],[[105,112,107]],[[113,112,102]],[[112,113,114]],[[114,113,115]],[[112,105,102]],[[113,102,116]],[[42,41,102]],[[117,118,44]],[[44,118,41]],[[119,117,43]],[[43,117,44]],[[120,119,54]],[[54,119,43]],[[121,120,47]],[[47,120,54]],[[122,121,51]],[[51,121,47]],[[123,122,48]],[[48,122,51]],[[124,123,50]],[[50,123,48]],[[125,124,49]],[[49,124,50]],[[126,125,53]],[[53,125,49]],[[127,126,56]],[[56,126,53]],[[128,127,55]],[[55,127,56]],[[129,128,58]],[[58,128,55]],[[130,129,59]],[[59,129,58]],[[131,130,60]],[[60,130,59]],[[132,131,57]],[[57,131,60]],[[133,132,52]],[[52,132,57]],[[134,133,62]],[[62,133,52]],[[135,134,64]],[[64,134,62]],[[136,135,66]],[[66,135,64]],[[137,136,65]],[[65,136,66]],[[138,137,68]],[[68,137,65]],[[139,138,67]],[[67,138,68]],[[140,139,69]],[[69,139,67]],[[141,140,63]],[[63,140,69]],[[142,141,71]],[[71,141,63]],[[143,142,72]],[[72,142,71]],[[144,143,74]],[[74,143,72]],[[145,144,76]],[[76,144,74]],[[146,145,77]],[[77,145,76]],[[147,146,78]],[[78,146,77]],[[148,147,75]],[[75,147,78]],[[149,148,80]],[[80,148,75]],[[150,149,81]],[[81,149,80]],[[151,150,82]],[[82,150,81]],[[152,151,79]],[[79,151,82]],[[153,152,83]],[[83,152,79]],[[154,153,84]],[[84,153,83]],[[155,154,86]],[[86,154,84]],[[156,155,87]],[[87,155,86]],[[157,156,88]],[[88,156,87]],[[158,157,85]],[[85,157,88]],[[159,158,89]],[[89,158,85]],[[160,159,73]],[[73,159,89]],[[161,160,91]],[[91,160,73]],[[162,161,92]],[[92,161,91]],[[163,162,90]],[[90,162,92]],[[164,163,93]],[[93,163,90]],[[165,164,70]],[[70,164,93]],[[166,165,94]],[[94,165,70]],[[167,166,96]],[[96,166,94]],[[168,167,95]],[[95,167,96]],[[169,168,61]],[[61,168,95]],[[170,169,46]],[[46,169,61]],[[171,170,45]],[[45,170,46]],[[172,171,40]],[[40,171,45]],[[173,172,42]],[[42,172,40]],[[174,173,99]],[[99,173,42]],[[175,174,100]],[[100,174,99]],[[176,175,101]],[[101,175,100]],[[177,176,97]],[[97,176,101]],[[178,177,98]],[[98,177,97]],[[179,178,103]],[[103,178,98]],[[180,179,104]],[[104,179,103]],[[181,180,106]],[[106,180,104]],[[182,181,105]],[[105,181,106]],[[183,182,110]],[[110,182,105]],[[184,183,109]],[[109,183,110]],[[185,184,111]],[[111,184,109]],[[186,185,108]],[[108,185,111]],[[187,186,107]],[[107,186,108]],[[188,187,112]],[[112,187,107]],[[189,188,114]],[[114,188,112]],[[190,189,115]],[[115,189,114]],[[191,190,113]],[[113,190,115]],[[192,191,116]],[[116,191,113]],[[193,192,102]],[[102,192,116]],[[118,193,41]],[[41,193,102]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11267a1d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000004048","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027095)","inonderzoek":"0","lokaalid":"G0503.032e68f0085849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.89000010490417,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84841.951 447542.723)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:168)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[194,195,196]],[[195,197,196]],[[197,198,199]],[[197,195,198]],[[195,200,198]],[[198,200,201]],[[202,203,204]],[[204,203,205]],[[204,205,194]],[[194,205,206]],[[194,206,207]],[[194,207,195]],[[208,202,209]],[[209,202,204]],[[209,204,196]],[[196,204,194]],[[210,208,197]],[[197,208,209]],[[197,209,196]],[[211,210,199]],[[199,210,197]],[[212,211,198]],[[198,211,199]],[[213,212,201]],[[201,212,198]],[[214,213,215]],[[215,213,216]],[[216,213,200]],[[200,213,201]],[[203,214,205]],[[205,214,206]],[[206,214,215]],[[206,215,207]],[[207,215,216]],[[207,216,195]],[[195,216,200]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126a169-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000032718","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027096)","inonderzoek":"0","lokaalid":"G0503.032e68f0086549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84835.527 447547.038)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:170)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[217,207,218]],[[218,207,219]],[[217,216,207]],[[217,220,221]],[[216,217,221]],[[222,223,220]],[[221,220,223]],[[224,223,225]],[[226,222,220]],[[225,223,222]],[[227,226,220]],[[228,226,227]],[[229,228,227]],[[230,231,217]],[[217,231,232]],[[217,232,233]],[[217,233,220]],[[234,230,235]],[[235,230,218]],[[218,230,217]],[[236,234,237]],[[237,234,235]],[[237,235,219]],[[219,235,218]],[[206,236,207]],[[207,236,237]],[[207,237,219]],[[215,206,216]],[[216,206,207]],[[238,215,221]],[[221,215,216]],[[239,238,223]],[[223,238,221]],[[240,239,224]],[[224,239,223]],[[241,240,225]],[[225,240,224]],[[242,241,222]],[[222,241,225]],[[243,242,226]],[[226,242,222]],[[244,243,228]],[[228,243,226]],[[245,244,229]],[[229,244,228]],[[246,245,247]],[[247,245,248]],[[248,245,227]],[[227,245,229]],[[231,246,232]],[[232,246,247]],[[232,247,233]],[[233,247,248]],[[233,248,220]],[[220,248,227]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126c87e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026153","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027097)","inonderzoek":"0","lokaalid":"G0503.032e68f0086649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.49000000953674,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84830.424 447550.641)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:172)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[233,249,248]],[[248,249,250]],[[250,251,252]],[[250,253,251]],[[254,255,253]],[[249,254,253]],[[249,233,256]],[[250,249,253]],[[233,257,256]],[[232,258,233]],[[233,258,259]],[[233,259,260]],[[233,260,257]],[[247,232,248]],[[248,232,233]],[[261,247,250]],[[250,247,248]],[[262,261,252]],[[252,261,250]],[[263,262,251]],[[251,262,252]],[[264,263,253]],[[253,263,251]],[[265,264,255]],[[255,264,253]],[[266,265,254]],[[254,265,255]],[[267,266,249]],[[249,266,254]],[[268,267,269]],[[269,267,270]],[[270,267,256]],[[256,267,249]],[[258,268,259]],[[259,268,269]],[[259,269,260]],[[260,269,270]],[[260,270,257]],[[257,270,256]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126c883-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000026154","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027023)","inonderzoek":"0","lokaalid":"G0503.032e68f0086749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.48000001907349,"min-height-surface":0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84843.704 447561.474)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:1)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[271,272,270]],[[271,270,260]],[[272,273,270]],[[272,274,273]],[[275,276,277]],[[277,276,278]],[[277,278,271]],[[271,278,272]],[[259,275,260]],[[260,275,277]],[[260,277,271]],[[269,259,270]],[[270,259,260]],[[279,269,273]],[[273,269,270]],[[280,279,274]],[[274,279,273]],[[276,280,278]],[[278,280,272]],[[272,280,274]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715ef-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026151","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000061493)","inonderzoek":"0","lokaalid":"G0503.032e68f0087749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.29999995231628,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84850.858 447537.122)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:164)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[281,282,283]],[[281,284,282]],[[281,285,284]],[[281,286,285]],[[281,287,288]],[[286,281,289]],[[289,281,288]],[[288,287,290]],[[291,292,281]],[[281,292,287]],[[293,291,294]],[[294,291,283]],[[283,291,281]],[[295,293,296]],[[296,293,294]],[[296,294,282]],[[282,294,283]],[[297,295,284]],[[284,295,296]],[[284,296,282]],[[298,297,285]],[[285,297,284]],[[299,298,286]],[[286,298,285]],[[300,299,301]],[[301,299,289]],[[289,299,286]],[[302,300,303]],[[303,300,301]],[[303,301,288]],[[288,301,289]],[[304,302,290]],[[290,302,303]],[[290,303,288]],[[292,304,287]],[[287,304,290]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715f4-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026152","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027094)","inonderzoek":"0","lokaalid":"G0503.032e68f0087849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.04999995231628,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84845.575 447540.308)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:166)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[301,303,305]],[[301,306,307]],[[301,305,306]],[[305,308,309]],[[305,310,308]],[[308,310,311]],[[311,310,312]],[[305,303,310]],[[300,302,301]],[[301,302,303]],[[313,300,307]],[[307,300,301]],[[209,313,196]],[[196,313,306]],[[306,313,307]],[[204,209,194]],[[194,209,196]],[[194,196,305]],[[305,196,306]],[[205,204,206]],[[206,204,207]],[[207,204,195]],[[195,204,194]],[[195,194,309]],[[309,194,305]],[[314,205,236]],[[236,205,206]],[[236,206,237]],[[237,206,219]],[[219,206,207]],[[219,207,315]],[[315,207,308]],[[308,207,195]],[[308,195,309]],[[316,314,317]],[[317,314,236]],[[317,236,237]],[[317,237,318]],[[318,237,219]],[[318,219,315]],[[318,315,311]],[[311,315,308]],[[319,316,312]],[[312,316,317]],[[312,317,318]],[[312,318,311]],[[320,319,310]],[[310,319,312]],[[302,320,303]],[[303,320,310]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715fe-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:56.3)","identificatiebagpnd":"503100000026156","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027033)","inonderzoek":"0","lokaalid":"G0503.032e68f0087a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.0699999332428,"min-height-surface":0.439999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84883.885 447560.978)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:19A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[321,322,323]],[[323,324,325]],[[323,326,321]],[[325,327,328]],[[326,325,328]],[[323,325,326]],[[323,329,324]],[[329,330,331]],[[324,329,332]],[[332,329,331]],[[331,330,333]],[[334,331,333]],[[335,336,337]],[[337,336,338]],[[337,338,329]],[[329,338,330]],[[339,335,340]],[[340,335,341]],[[341,335,337]],[[341,337,323]],[[323,337,329]],[[342,339,343]],[[343,339,340]],[[343,340,322]],[[322,340,341]],[[322,341,323]],[[344,342,321]],[[321,342,343]],[[321,343,322]],[[345,344,326]],[[326,344,321]],[[346,345,328]],[[328,345,326]],[[347,346,327]],[[327,346,328]],[[348,347,325]],[[325,347,327]],[[349,348,324]],[[324,348,325]],[[350,349,332]],[[332,349,324]],[[351,350,331]],[[331,350,332]],[[352,351,334]],[[334,351,331]],[[353,352,333]],[[333,352,334]],[[336,353,338]],[[338,353,330]],[[330,353,333]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11271601-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000005344","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0087b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.97000002861023,"min-height-surface":0.490000009536743,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[354,355,356]],[[357,356,358]],[[357,358,359]],[[359,358,360]],[[356,361,358]],[[358,361,362]],[[356,363,361]],[[356,355,363]],[[364,365,357]],[[357,365,356]],[[366,364,359]],[[359,364,357]],[[367,366,360]],[[360,366,359]],[[368,367,358]],[[358,367,360]],[[343,368,322]],[[322,368,362]],[[362,368,358]],[[340,343,341]],[[341,343,323]],[[323,343,322]],[[323,322,361]],[[361,322,362]],[[369,340,370]],[[370,340,341]],[[370,341,363]],[[363,341,323]],[[363,323,361]],[[371,369,372]],[[372,369,370]],[[372,370,355]],[[355,370,363]],[[373,371,354]],[[354,371,372]],[[354,372,355]],[[365,373,356]],[[356,373,354]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1127160e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026155","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0087e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[374,375,376]],[[318,377,376]],[[375,378,376]],[[376,379,318]],[[318,379,315]],[[376,378,379]],[[375,380,378]],[[381,382,383]],[[383,382,384]],[[383,384,374]],[[374,384,375]],[[385,381,376]],[[376,381,383]],[[376,383,374]],[[386,385,377]],[[377,385,376]],[[317,386,318]],[[318,386,377]],[[237,317,219]],[[219,317,315]],[[315,317,318]],[[235,237,218]],[[218,237,219]],[[218,219,379]],[[379,219,315]],[[277,235,271]],[[271,235,378]],[[378,235,218]],[[378,218,379]],[[278,277,272]],[[272,277,271]],[[272,271,380]],[[380,271,378]],[[382,278,384]],[[384,278,375]],[[375,278,272]],[[375,272,380]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1127b2f3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000004630","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027131)","inonderzoek":"0","lokaalid":"G0503.032e68f0093c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.07999992370605,"min-height-surface":-0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84941.813 447486.436)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:76)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[387,388,389]],[[387,389,390]],[[390,389,391]],[[389,388,392]],[[389,393,394]],[[389,392,393]],[[388,395,392]],[[396,397,398]],[[398,397,399]],[[398,399,387]],[[387,399,388]],[[400,396,401]],[[401,396,398]],[[401,398,390]],[[390,398,387]],[[402,400,403]],[[403,400,404]],[[404,400,391]],[[391,400,401]],[[391,401,390]],[[405,402,406]],[[406,402,403]],[[406,403,407]],[[407,403,404]],[[407,404,389]],[[389,404,391]],[[408,405,409]],[[409,405,406]],[[409,406,410]],[[410,406,407]],[[410,407,394]],[[394,407,389]],[[411,408,412]],[[412,408,409]],[[412,409,413]],[[413,409,410]],[[413,410,393]],[[393,410,394]],[[414,411,392]],[[392,411,412]],[[392,412,413]],[[392,413,393]],[[415,414,416]],[[416,414,395]],[[395,414,392]],[[397,415,399]],[[399,415,416]],[[399,416,388]],[[388,416,395]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128005c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000004571","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027130)","inonderzoek":"0","lokaalid":"G0503.032e68f0094c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.97000002861023,"min-height-surface":-0.100000001490116,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84948.166 447484.337)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:74)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[417,418,398]],[[417,398,419]],[[419,398,401]],[[398,418,420]],[[398,416,399]],[[398,420,416]],[[418,421,420]],[[422,423,424]],[[424,423,425]],[[424,425,417]],[[417,425,418]],[[426,422,427]],[[427,422,424]],[[427,424,419]],[[419,424,417]],[[428,426,400]],[[400,426,401]],[[401,426,427]],[[401,427,419]],[[429,428,396]],[[396,428,400]],[[396,400,398]],[[398,400,401]],[[430,429,397]],[[397,429,396]],[[397,396,399]],[[399,396,398]],[[431,430,415]],[[415,430,397]],[[415,397,416]],[[416,397,399]],[[432,431,420]],[[420,431,415]],[[420,415,416]],[[433,432,434]],[[434,432,421]],[[421,432,420]],[[423,433,425]],[[425,433,434]],[[425,434,418]],[[418,434,421]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280066-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000027887","identificatiebagvbohoogstehuisnummer":"(1:503010000027074)","identificatiebagvbolaagstehuisnummer":"(1:503010000027073)","inonderzoek":"0","lokaalid":"G0503.032e68f0094e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84920.286 447536.887)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:24-26)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[435,436,437]],[[438,439,440]],[[438,440,441]],[[437,442,443]],[[443,438,441]],[[436,442,437]],[[443,444,445]],[[438,443,445]],[[441,437,443]],[[436,446,442]],[[447,448,449]],[[449,448,450]],[[449,450,435]],[[435,450,436]],[[451,447,452]],[[452,447,449]],[[452,449,437]],[[437,449,435]],[[453,451,454]],[[454,451,452]],[[454,452,441]],[[441,452,437]],[[455,453,456]],[[456,453,454]],[[456,454,440]],[[440,454,441]],[[457,455,458]],[[458,455,456]],[[458,456,439]],[[439,456,440]],[[459,457,438]],[[438,457,458]],[[438,458,439]],[[460,459,461]],[[461,459,445]],[[445,459,438]],[[462,460,463]],[[463,460,461]],[[463,461,444]],[[444,461,445]],[[464,462,443]],[[443,462,463]],[[443,463,444]],[[465,464,442]],[[442,464,443]],[[466,465,446]],[[446,465,442]],[[448,466,450]],[[450,466,436]],[[436,466,446]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128006b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000004642","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027075)","inonderzoek":"0","lokaalid":"G0503.032e68f0094f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84924.277 447540.160)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:28)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[467,468,469]],[[468,467,470]],[[467,439,470]],[[435,440,471]],[[439,467,471]],[[441,440,435]],[[437,441,435]],[[435,471,472]],[[436,435,472]],[[439,471,440]],[[467,473,471]],[[474,475,467]],[[467,475,473]],[[476,474,469]],[[469,474,467]],[[477,476,468]],[[468,476,469]],[[478,477,470]],[[470,477,468]],[[458,478,439]],[[439,478,470]],[[456,458,440]],[[440,458,439]],[[454,456,441]],[[441,456,440]],[[452,454,437]],[[437,454,441]],[[449,452,435]],[[435,452,437]],[[450,449,436]],[[436,449,435]],[[479,450,472]],[[472,450,436]],[[480,479,471]],[[471,479,472]],[[475,480,473]],[[473,480,471]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280070-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000026299","identificatiebagvbohoogstehuisnummer":"(1:503010000027112)","identificatiebagvbolaagstehuisnummer":"(1:503010000027111)","inonderzoek":"0","lokaalid":"G0503.032e68f0095049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84945.216 447536.460)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33-35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[481,482,483]],[[481,484,485]],[[482,481,485]],[[486,482,485]],[[485,484,487]],[[488,485,487]],[[487,484,489]],[[490,491,492]],[[492,491,493]],[[492,493,494]],[[494,493,495]],[[494,495,481]],[[481,495,484]],[[496,490,497]],[[497,490,492]],[[497,492,498]],[[498,492,494]],[[498,494,483]],[[483,494,481]],[[499,496,500]],[[500,496,497]],[[500,497,501]],[[501,497,498]],[[501,498,482]],[[482,498,483]],[[502,499,486]],[[486,499,500]],[[486,500,501]],[[486,501,482]],[[503,502,485]],[[485,502,486]],[[504,503,488]],[[488,503,485]],[[505,504,487]],[[487,504,488]],[[506,505,489]],[[489,505,487]],[[491,506,493]],[[493,506,495]],[[495,506,484]],[[484,506,489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280075-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000026298","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060272)","inonderzoek":"0","lokaalid":"G0503.032e68f0095149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.09999990463257,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84949.097 447541.631)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[498,507,494]],[[507,498,508]],[[508,498,501]],[[507,509,494]],[[509,510,494]],[[494,510,495]],[[510,509,511]],[[509,512,511]],[[513,514,515]],[[515,514,516]],[[515,516,507]],[[507,516,509]],[[517,513,508]],[[508,513,515]],[[508,515,507]],[[500,517,501]],[[501,517,508]],[[497,500,498]],[[498,500,501]],[[492,497,494]],[[494,497,498]],[[493,492,495]],[[495,492,494]],[[518,493,510]],[[510,493,495]],[[519,518,511]],[[511,518,510]],[[520,519,512]],[[512,519,511]],[[514,520,516]],[[516,520,509]],[[509,520,512]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128007a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000004647","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003297)","inonderzoek":"0","lokaalid":"G0503.032e68f0095249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.10999989509583,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84949.891 447597.257)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[521,522,523]],[[523,524,525]],[[524,526,527]],[[524,523,528]],[[524,528,526]],[[529,530,531]],[[528,529,531]],[[523,532,528]],[[528,532,529]],[[523,522,532]],[[532,522,533]],[[534,535,536]],[[536,535,537]],[[536,537,521]],[[521,537,522]],[[538,534,523]],[[523,534,536]],[[523,536,521]],[[539,538,525]],[[525,538,523]],[[540,539,524]],[[524,539,525]],[[541,540,527]],[[527,540,524]],[[542,541,526]],[[526,541,527]],[[543,542,528]],[[528,542,526]],[[544,543,531]],[[531,543,528]],[[545,544,530]],[[530,544,531]],[[546,545,529]],[[529,545,530]],[[547,546,532]],[[532,546,529]],[[548,547,533]],[[533,547,532]],[[535,548,537]],[[537,548,522]],[[522,548,533]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128007f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37.4)","identificatiebagpnd":"503100000004637","identificatiebagvbohoogstehuisnummer":"(1:503010000027084)","identificatiebagvbolaagstehuisnummer":"(1:503010000027076)","inonderzoek":"0","lokaalid":"G0503.032e68f0095349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.1100001335144,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84940.274 447558.360)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:30-46)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[549,550,551]],[[550,552,551]],[[550,553,552]],[[552,553,554]],[[555,556,549]],[[549,556,550]],[[557,555,551]],[[551,555,549]],[[558,557,552]],[[552,557,551]],[[559,558,554]],[[554,558,552]],[[560,559,553]],[[553,559,554]],[[556,560,550]],[[550,560,553]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11282794-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004645","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003305)","inonderzoek":"0","lokaalid":"G0503.032e68f0095449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.15999984741211,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84996.140 447550.544)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[561,562,563]],[[564,565,566]],[[566,565,567]],[[564,562,561]],[[565,564,561]],[[561,568,569]],[[561,570,568]],[[570,561,571]],[[572,561,569]],[[572,565,561]],[[573,574,575]],[[575,574,576]],[[575,576,564]],[[564,576,562]],[[577,573,578]],[[578,573,566]],[[566,573,575]],[[566,575,564]],[[579,577,580]],[[580,577,578]],[[580,578,567]],[[567,578,566]],[[581,579,565]],[[565,579,580]],[[565,580,567]],[[582,581,572]],[[572,581,565]],[[583,582,569]],[[569,582,572]],[[584,583,568]],[[568,583,569]],[[585,584,570]],[[570,584,568]],[[586,585,571]],[[571,585,570]],[[587,586,561]],[[561,586,571]],[[588,587,563]],[[563,587,561]],[[574,588,576]],[[576,588,562]],[[562,588,563]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11282799-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000025336","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003307)","inonderzoek":"0","lokaalid":"G0503.032e68f0095549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.67000007629395,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85001.101 447546.689)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:47)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[589,590,591]],[[592,591,590]],[[590,589,593]],[[593,589,594]],[[595,596,594]],[[589,595,594]],[[589,597,595]],[[589,598,597]],[[597,598,599]],[[600,601,602]],[[602,601,603]],[[602,603,604]],[[604,603,605]],[[604,605,589]],[[589,605,598]],[[606,600,607]],[[607,600,602]],[[607,602,608]],[[608,602,604]],[[608,604,591]],[[591,604,589]],[[609,606,592]],[[592,606,607]],[[592,607,608]],[[592,608,591]],[[610,609,590]],[[590,609,592]],[[575,610,564]],[[564,610,593]],[[593,610,590]],[[576,575,562]],[[562,575,564]],[[562,564,594]],[[594,564,593]],[[611,576,596]],[[596,576,562]],[[596,562,594]],[[612,611,595]],[[595,611,596]],[[613,612,597]],[[597,612,595]],[[614,613,599]],[[599,613,597]],[[601,614,603]],[[603,614,605]],[[605,614,598]],[[598,614,599]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128279e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000004646","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027115)","inonderzoek":"0","lokaalid":"G0503.032e68f0095649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84953.045 447544.630)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[615,616,617]],[[617,616,618]],[[616,615,515]],[[615,516,515]],[[615,619,516]],[[615,620,619]],[[621,622,623]],[[623,622,624]],[[623,624,615]],[[615,624,620]],[[625,621,617]],[[617,621,623]],[[617,623,615]],[[626,625,618]],[[618,625,617]],[[627,626,616]],[[616,626,618]],[[628,627,513]],[[513,627,515]],[[515,627,616]],[[629,628,514]],[[514,628,513]],[[514,513,516]],[[516,513,515]],[[630,629,619]],[[619,629,514]],[[619,514,516]],[[622,630,624]],[[624,630,620]],[[620,630,619]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000004644","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027117)","inonderzoek":"0","lokaalid":"G0503.032e68f0095749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.46000003814697,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84957.402 447548.205)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[631,632,633]],[[631,634,632]],[[631,635,636]],[[634,631,636]],[[636,635,637]],[[637,635,638]],[[639,637,640]],[[640,637,638]],[[641,640,642]],[[642,640,638]],[[643,644,631]],[[631,644,635]],[[645,643,633]],[[633,643,631]],[[646,645,632]],[[632,645,633]],[[647,646,634]],[[634,646,632]],[[623,647,615]],[[615,647,636]],[[636,647,634]],[[624,623,620]],[[620,623,615]],[[620,615,637]],[[637,615,636]],[[648,624,639]],[[639,624,620]],[[639,620,637]],[[649,648,640]],[[640,648,639]],[[650,649,641]],[[641,649,640]],[[651,650,642]],[[642,650,641]],[[652,651,638]],[[638,651,642]],[[644,652,635]],[[635,652,638]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004636","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003304)","inonderzoek":"0","lokaalid":"G0503.032e68f0095849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84988.378 447559.512)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:44)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[653,654,655]],[[656,657,658]],[[656,659,657]],[[659,660,661]],[[662,663,664]],[[660,662,664]],[[665,662,660]],[[659,653,660]],[[662,665,666]],[[659,656,653]],[[660,653,665]],[[656,654,653]],[[667,668,669]],[[669,668,670]],[[669,670,656]],[[656,670,654]],[[671,667,672]],[[672,667,669]],[[672,669,658]],[[658,669,656]],[[673,671,657]],[[657,671,672]],[[657,672,658]],[[674,673,659]],[[659,673,657]],[[675,674,661]],[[661,674,659]],[[676,675,660]],[[660,675,661]],[[677,676,664]],[[664,676,660]],[[678,677,663]],[[663,677,664]],[[679,678,662]],[[662,678,663]],[[680,679,666]],[[666,679,662]],[[681,680,665]],[[665,680,666]],[[682,681,653]],[[653,681,665]],[[683,682,655]],[[655,682,653]],[[668,683,670]],[[670,683,654]],[[654,683,655]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827ad-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004640","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003305)","inonderzoek":"0","lokaalid":"G0503.032e68f0095949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.05999994277954,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84991.913 447554.453)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[684,685,686]],[[687,688,689]],[[686,690,684]],[[686,691,690]],[[690,689,692]],[[689,693,694]],[[689,688,693]],[[689,690,691]],[[695,687,689]],[[696,695,689]],[[691,696,689]],[[578,691,686]],[[578,580,691]],[[697,698,577]],[[577,698,579]],[[577,579,578]],[[578,579,580]],[[699,697,686]],[[686,697,577]],[[686,577,578]],[[700,699,685]],[[685,699,686]],[[672,700,658]],[[658,700,684]],[[684,700,685]],[[669,672,656]],[[656,672,658]],[[656,658,690]],[[690,658,684]],[[670,669,654]],[[654,669,656]],[[654,656,692]],[[692,656,690]],[[701,670,689]],[[689,670,654]],[[689,654,692]],[[702,701,694]],[[694,701,689]],[[703,702,693]],[[693,702,694]],[[704,703,688]],[[688,703,693]],[[705,704,687]],[[687,704,688]],[[706,705,695]],[[695,705,687]],[[707,706,696]],[[696,706,695]],[[708,707,691]],[[691,707,696]],[[698,708,579]],[[579,708,580]],[[580,708,691]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827b2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000028346","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003299)","inonderzoek":"0","lokaalid":"G0503.032e68f0095a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.00999999046326,"min-height-surface":0.129999995231628,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84958.769 447588.042)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[709,710,711]],[[712,713,714]],[[711,712,714]],[[712,715,713]],[[712,716,715]],[[712,717,716]],[[712,718,717]],[[712,719,718]],[[712,720,719]],[[712,721,720]],[[712,722,721]],[[712,723,722]],[[712,724,723]],[[712,725,724]],[[712,726,725]],[[712,727,726]],[[712,728,727]],[[712,729,728]],[[729,712,730]],[[730,712,731]],[[731,712,732]],[[732,712,733]],[[733,712,734]],[[734,712,735]],[[735,712,736]],[[736,712,737]],[[711,738,712]],[[739,740,738]],[[711,739,738]],[[711,710,741]],[[711,741,739]],[[710,742,741]],[[710,743,742]],[[744,745,746]],[[746,745,747]],[[746,747,709]],[[709,747,710]],[[748,744,711]],[[711,744,746]],[[711,746,709]],[[749,748,714]],[[714,748,711]],[[750,749,713]],[[713,749,714]],[[751,750,715]],[[715,750,713]],[[752,751,716]],[[716,751,715]],[[753,752,717]],[[717,752,716]],[[754,753,718]],[[718,753,717]],[[755,754,719]],[[719,754,718]],[[756,755,720]],[[720,755,719]],[[757,756,721]],[[721,756,720]],[[758,757,722]],[[722,757,721]],[[759,758,723]],[[723,758,722]],[[760,759,724]],[[724,759,723]],[[761,760,725]],[[725,760,724]],[[762,761,726]],[[726,761,725]],[[763,762,727]],[[727,762,726]],[[764,763,728]],[[728,763,727]],[[765,764,729]],[[729,764,728]],[[766,765,730]],[[730,765,729]],[[767,766,731]],[[731,766,730]],[[768,767,732]],[[732,767,731]],[[769,768,733]],[[733,768,732]],[[770,769,734]],[[734,769,733]],[[771,770,735]],[[735,770,734]],[[772,771,736]],[[736,771,735]],[[773,772,774]],[[774,772,737]],[[737,772,736]],[[775,773,776]],[[776,773,774]],[[776,774,712]],[[712,774,737]],[[777,775,778]],[[778,775,776]],[[778,776,738]],[[738,776,712]],[[779,777,740]],[[740,777,778]],[[740,778,738]],[[780,779,739]],[[739,779,740]],[[781,780,741]],[[741,780,739]],[[782,781,742]],[[742,781,741]],[[783,782,743]],[[743,782,742]],[[745,783,747]],[[747,783,710]],[[710,783,743]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827b7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000004643","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003298)","inonderzoek":"0","lokaalid":"G0503.032e68f0095b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.00999999046326,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84955.890 447590.722)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:38)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[712,784,737]],[[737,785,786]],[[737,787,785]],[[737,788,787]],[[737,789,788]],[[737,790,789]],[[737,791,790]],[[737,792,791]],[[737,793,792]],[[737,794,793]],[[737,784,794]],[[712,795,784]],[[712,796,795]],[[712,797,796]],[[712,798,797]],[[712,799,798]],[[712,800,799]],[[712,801,800]],[[712,802,801]],[[712,803,802]],[[712,804,803]],[[712,805,804]],[[712,806,805]],[[712,807,806]],[[712,738,807]],[[807,536,808]],[[807,809,536]],[[809,810,537]],[[536,809,537]],[[810,809,811]],[[812,738,813]],[[807,812,809]],[[807,738,812]],[[776,778,712]],[[712,778,738]],[[774,776,737]],[[737,776,712]],[[814,774,786]],[[786,774,737]],[[815,814,785]],[[785,814,786]],[[816,815,787]],[[787,815,785]],[[817,816,788]],[[788,816,787]],[[818,817,789]],[[789,817,788]],[[819,818,790]],[[790,818,789]],[[820,819,791]],[[791,819,790]],[[821,820,792]],[[792,820,791]],[[822,821,793]],[[793,821,792]],[[823,822,794]],[[794,822,793]],[[824,823,784]],[[784,823,794]],[[825,824,795]],[[795,824,784]],[[826,825,796]],[[796,825,795]],[[827,826,797]],[[797,826,796]],[[828,827,798]],[[798,827,797]],[[829,828,799]],[[799,828,798]],[[830,829,800]],[[800,829,799]],[[831,830,801]],[[801,830,800]],[[832,831,802]],[[802,831,801]],[[833,832,803]],[[803,832,802]],[[834,833,804]],[[804,833,803]],[[835,834,805]],[[805,834,804]],[[836,835,806]],[[806,835,805]],[[837,836,807]],[[807,836,806]],[[838,837,808]],[[808,837,807]],[[839,838,534]],[[534,838,536]],[[536,838,808]],[[840,839,535]],[[535,839,534]],[[535,534,537]],[[537,534,536]],[[841,840,810]],[[810,840,535]],[[810,535,537]],[[842,841,811]],[[811,841,810]],[[843,842,809]],[[809,842,811]],[[844,843,812]],[[812,843,809]],[[845,844,813]],[[813,844,812]],[[778,845,738]],[[738,845,813]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b22139d30-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[846,847,848]],[[849,850,851]],[[852,853,164]],[[164,853,854]],[[855,856,164]],[[857,858,859]],[[860,861,862]],[[857,852,863]],[[864,865,866]],[[867,868,869]],[[870,871,872]],[[870,865,873]],[[874,875,876]],[[871,875,872]],[[877,878,864]],[[879,880,881]],[[882,883,884]],[[885,886,887]],[[888,889,890]],[[891,892,893]],[[894,895,896]],[[890,889,897]],[[898,899,900]],[[901,902,899]],[[903,896,904]],[[896,901,898]],[[905,894,906]],[[848,847,907]],[[908,909,847]],[[910,911,912]],[[913,846,911]],[[911,914,912]],[[915,916,917]],[[918,915,917]],[[919,885,920]],[[921,887,886]],[[922,923,895]],[[924,902,901]],[[897,850,882]],[[916,914,925]],[[846,908,847]],[[913,909,908]],[[926,849,851]],[[884,927,928]],[[929,869,868]],[[883,930,919]],[[878,873,865]],[[931,932,873]],[[869,877,864]],[[878,865,864]],[[933,905,934]],[[906,891,893]],[[935,936,937]],[[938,846,939]],[[876,932,880]],[[876,875,871]],[[881,931,877]],[[881,932,931]],[[849,930,883]],[[885,915,920]],[[940,864,866]],[[941,942,943]],[[879,881,877]],[[880,932,881]],[[927,944,916]],[[916,925,927]],[[945,946,947]],[[929,948,949]],[[950,951,877]],[[951,880,879]],[[871,870,873]],[[872,865,870]],[[952,928,925]],[[925,914,952]],[[953,897,889]],[[850,883,882]],[[938,954,846]],[[955,884,928]],[[956,910,912]],[[954,928,952]],[[888,936,934]],[[954,911,846]],[[848,939,846]],[[895,904,896]],[[933,922,895]],[[957,958,923]],[[959,863,852]],[[856,960,858]],[[959,852,856]],[[961,864,962]],[[947,963,953]],[[851,850,897]],[[906,893,964]],[[892,889,893]],[[939,848,907]],[[939,965,938]],[[894,905,966]],[[906,964,905]],[[967,968,941]],[[969,943,942]],[[955,970,971]],[[888,964,893]],[[972,958,957]],[[973,904,958]],[[849,883,850]],[[919,918,883]],[[954,955,928]],[[883,917,944]],[[928,927,925]],[[944,917,916]],[[858,857,863]],[[859,852,857]],[[950,945,947]],[[974,877,945]],[[932,871,873]],[[932,876,871]],[[931,878,877]],[[931,873,878]],[[968,868,975]],[[862,941,976]],[[926,977,849]],[[867,978,868]],[[919,886,885]],[[862,976,921]],[[911,952,914]],[[911,954,952]],[[883,918,917]],[[920,915,918]],[[905,933,966]],[[905,964,934]],[[858,940,866]],[[962,864,940]],[[898,901,899]],[[895,894,966]],[[973,924,903]],[[924,901,903]],[[901,896,903]],[[898,894,896]],[[904,973,903]],[[979,902,924]],[[856,858,863]],[[866,859,858]],[[980,981,982]],[[165,943,969]],[[918,919,920]],[[930,886,919]],[[846,913,908]],[[956,909,913]],[[164,856,852]],[[960,962,940]],[[983,973,972]],[[979,924,973]],[[984,985,961]],[[986,867,987]],[[165,855,164]],[[988,980,942]],[[986,978,867]],[[982,165,969]],[[989,948,929]],[[978,981,975]],[[855,981,978]],[[855,165,981]],[[980,975,981]],[[868,978,975]],[[947,851,963]],[[947,926,851]],[[990,938,965]],[[922,933,934]],[[991,992,937]],[[882,884,955]],[[877,951,879]],[[950,880,951]],[[890,897,882]],[[963,851,897]],[[993,984,961]],[[987,867,961]],[[946,926,947]],[[946,977,926]],[[994,939,907]],[[983,972,935]],[[967,929,868]],[[869,864,961]],[[977,948,989]],[[945,877,869]],[[849,989,930]],[[849,977,989]],[[867,869,961]],[[949,977,945]],[[945,977,946]],[[945,869,949]],[[941,988,942]],[[968,975,988]],[[884,944,927]],[[884,883,944]],[[959,856,863]],[[985,987,961]],[[942,980,969]],[[988,975,980]],[[935,937,992]],[[888,934,964]],[[972,957,935]],[[922,934,936]],[[971,970,937]],[[935,957,936]],[[889,888,893]],[[890,936,888]],[[890,937,936]],[[991,954,938]],[[890,971,937]],[[955,954,970]],[[947,953,889]],[[963,897,953]],[[930,861,886]],[[930,967,861]],[[886,860,921]],[[861,941,862]],[[976,941,943]],[[861,967,941]],[[936,957,922]],[[935,992,990]],[[962,993,961]],[[985,855,987]],[[856,985,984]],[[856,855,985]],[[994,979,973]],[[994,902,979]],[[957,923,922]],[[958,904,923]],[[933,895,966]],[[923,904,895]],[[855,986,987]],[[855,978,986]],[[990,992,938]],[[937,970,991]],[[913,910,956]],[[913,911,910]],[[950,974,945]],[[950,877,974]],[[939,983,965]],[[973,958,972]],[[983,990,965]],[[983,935,990]],[[994,983,939]],[[994,973,983]],[[858,960,940]],[[856,984,993]],[[929,949,869]],[[948,977,949]],[[882,971,890]],[[882,955,971]],[[989,967,930]],[[989,929,967]],[[941,968,988]],[[967,868,968]],[[954,991,970]],[[938,992,991]],[[921,860,862]],[[886,861,860]],[[960,993,962]],[[960,856,993]],[[980,982,969]],[[981,165,982]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2214d56a-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[995,176,177]],[[995,177,178]],[[179,995,178]],[[179,176,995]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22183104-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef608549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[996,997,998]],[[999,1000,1001]],[[999,996,1000]],[[1000,996,1002]],[[999,997,996]],[[998,997,1003]],[[998,1004,1005]],[[998,1003,1004]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221a544c-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1006,1007,1008]],[[1009,1010,1011]],[[1012,1013,1014]],[[1015,1008,1010]],[[1016,1017,1011]],[[1016,1018,1017]],[[1016,1008,1019]],[[1018,1016,1020]],[[1013,1020,1021]],[[1022,1009,1011]],[[1014,1021,1023]],[[1012,1022,1011]],[[1017,1012,1011]],[[1017,1013,1012]],[[1015,1023,1006]],[[1014,1013,1021]],[[1020,1019,1021]],[[1020,1016,1019]],[[1019,1008,1007]],[[1015,1006,1008]],[[1024,1025,1010]],[[1023,1021,1006]],[[1009,1024,1010]],[[1009,1014,1023]],[[1024,1009,1023]],[[1025,1015,1010]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221b16fc-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef947849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1026,1027,1028]],[[1029,1030,1031]],[[1032,1027,1033]],[[1032,1028,1027]],[[1032,1034,1028]],[[1032,1035,1034]],[[1032,1036,1035]],[[1031,1037,1038]],[[1039,1040,1041]],[[1042,1043,1044]],[[1045,1042,1044]],[[1045,1046,1042]],[[1047,1045,1044]],[[1048,1049,1050]],[[1029,1031,1051]],[[1052,1053,1054]],[[1052,1038,1053]],[[1052,1031,1038]],[[1039,1041,1032]],[[1032,1041,1036]],[[1030,1029,1055]],[[1056,1030,1055]],[[1055,1029,1047]],[[1057,1055,1058]],[[1058,1055,1059]],[[1059,1055,1060]],[[1060,1055,1032]],[[1060,1033,1061]],[[1045,1029,1051]],[[1047,1048,1050]],[[1062,1055,1057]],[[1055,1047,1050]],[[1048,1047,1044]],[[1029,1045,1047]],[[1049,1039,1050]],[[1049,1040,1039]],[[1051,1052,1054]],[[1051,1031,1052]],[[1032,1055,1050]],[[1062,1056,1055]],[[1060,1032,1033]],[[1050,1039,1032]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221b8c65-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1063,1064,1065]],[[1064,1066,1065]],[[1064,1067,1066]],[[1068,1065,1066]],[[1066,1069,1070]],[[1071,1066,1072]],[[1072,1066,1073]],[[1073,1066,1074]],[[1074,1066,1075]],[[1075,1066,1076]],[[1076,1066,1077]],[[1077,1066,1078]],[[1078,1066,1079]],[[1079,1066,1080]],[[1080,1066,1081]],[[1081,1066,1082]],[[1082,1083,1084]],[[1084,1083,1085]],[[1085,1083,1086]],[[1086,1083,1087]],[[1087,1083,1088]],[[1088,1083,1089]],[[1089,1083,1090]],[[1090,1083,1091]],[[1091,1083,1092]],[[1092,1083,1093]],[[1083,1082,1066]],[[1083,1066,1070]],[[1094,1066,1071]],[[1094,1068,1066]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221d3a47-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.22217ab858564a8fa4707f2a0b468ec2","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1095,1096,1097]],[[1098,1099,1100]],[[1099,1095,1100]],[[1101,1100,1102]],[[1103,1104,1099]],[[1096,1095,1104]],[[1105,1106,1104]],[[1106,1097,1096]],[[1101,1098,1100]],[[1104,1095,1099]],[[1103,1098,1101]],[[1103,1099,1098]],[[1105,1103,1101]],[[1105,1104,1103]],[[1104,1106,1096]],[[1105,1097,1106]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221dafb6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef4b0449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1107,1108,1109]],[[1110,1111,1112]],[[1113,1114,1115]],[[1116,1117,1118]],[[1119,1120,1121]],[[1121,1122,1119]],[[1123,1120,1124]],[[1124,1120,1125]],[[1125,1120,1126]],[[1117,1127,1118]],[[1128,1126,1119]],[[1129,1130,1131]],[[1132,1133,1115]],[[1134,1135,1136]],[[1137,1107,1138]],[[1138,1139,1137]],[[1140,1109,1141]],[[1142,1143,1144]],[[1145,1146,1147]],[[1148,433,1149]],[[1147,1150,1151]],[[1152,415,432]],[[1153,412,414]],[[1154,1155,1156]],[[1157,1158,1159]],[[1160,1161,1162]],[[1163,1164,1165]],[[1166,1167,1168]],[[1169,1154,1156]],[[1170,1171,1167]],[[1172,1160,1162]],[[1162,1161,1173]],[[1174,1172,1162]],[[1175,1176,1177]],[[1175,1178,1172]],[[1179,1180,1181]],[[1182,1183,1149]],[[1184,1185,1177]],[[1186,1187,1145]],[[1145,1187,1188]],[[1189,432,1190]],[[1151,1191,1192]],[[1193,1194,1195]],[[1186,1192,1196]],[[1197,1198,1199]],[[1200,1201,1199]],[[1202,1203,1197]],[[1201,1204,1197]],[[1197,1204,1202]],[[1205,1206,1207]],[[1199,1201,1197]],[[1208,1209,1210]],[[1189,1195,432]],[[1211,1212,1213]],[[1214,1215,1207]],[[1206,1216,1211]],[[1211,1217,1218]],[[1217,1211,1216]],[[1213,1206,1211]],[[1219,1149,1220]],[[1221,1222,1223]],[[1224,1225,1226]],[[1227,1111,1115]],[[1228,1110,1225]],[[1225,1110,1229]],[[1111,1230,1112]],[[1231,1232,1163]],[[1163,1233,1158]],[[1234,1235,1236]],[[1222,1228,1223]],[[1237,1238,1134]],[[1128,1130,1129]],[[1189,1214,1201]],[[1239,433,1148]],[[1235,1240,1144]],[[1240,1241,1142]],[[1180,1242,414]],[[1243,1244,1153]],[[1245,1138,1109]],[[1245,1139,1138]],[[1137,1246,1107]],[[1141,1247,1140]],[[1131,1248,1139]],[[1249,1238,1248]],[[1165,1164,1157]],[[1165,1231,1163]],[[1220,1250,1219]],[[1251,1215,1252]],[[1253,1254,1144]],[[1221,1223,1224]],[[1255,1113,1221]],[[1132,1256,1133]],[[1195,1194,1257]],[[1258,1259,1260]],[[1157,1261,1166]],[[1262,1263,1233]],[[1168,1171,1231]],[[1171,1264,1231]],[[1164,1163,1158]],[[1233,1263,1158]],[[1174,1154,1265]],[[1266,1232,1231]],[[1267,1184,1243]],[[1268,415,1152]],[[1115,1222,1113]],[[1115,1110,1228]],[[1237,1269,1246]],[[1270,1247,1141]],[[1189,1271,1272]],[[1210,433,1273]],[[1234,1250,1274]],[[1275,1143,1142]],[[1131,1249,1248]],[[1276,1277,1249]],[[1249,1277,1238]],[[1278,1122,1133]],[[1238,1277,1279]],[[1131,1280,1129]],[[1281,1282,1283]],[[1284,412,1244]],[[1242,1285,414]],[[1286,1243,1153]],[[1193,1195,1189]],[[1194,1258,1260]],[[1147,1151,1192]],[[1185,1178,1177]],[[1132,1287,1256]],[[1127,1288,1118]],[[1289,1136,1290]],[[1237,1248,1238]],[[1185,1184,1291]],[[1242,1180,1292]],[[1248,1137,1139]],[[1248,1237,1137]],[[1186,1293,1294]],[[1186,1196,1292]],[[1242,1267,1286]],[[1282,1176,1283]],[[1221,1224,1226]],[[1223,1225,1224]],[[1149,1183,1148]],[[1271,1190,1210]],[[1295,1140,1247]],[[1295,1109,1140]],[[1264,1296,1266]],[[1296,1232,1266]],[[1296,1169,1233]],[[1169,1263,1262]],[[1289,1269,1136]],[[1108,1246,1269]],[[1170,1175,1265]],[[1172,1174,1265]],[[1236,1235,1144]],[[1297,1113,1255]],[[1288,1279,1118]],[[1279,1130,1118]],[[1287,1117,1116]],[[1279,1277,1130]],[[1255,1221,1226]],[[1113,1222,1221]],[[1240,1142,1144]],[[1250,1226,1298]],[[1276,1130,1277]],[[1129,1126,1128]],[[1149,1274,1220]],[[1149,1143,1274]],[[1253,1270,1290]],[[1141,1108,1289]],[[1285,1153,414]],[[1285,1286,1153]],[[1254,1290,1299]],[[1136,1135,1117]],[[1144,1300,1236]],[[1290,1117,1299]],[[1283,1176,1159]],[[1176,1170,1261]],[[1117,1135,1127]],[[1134,1238,1301]],[[1299,1117,1287]],[[1290,1136,1117]],[[1191,1185,1291]],[[1191,1178,1185]],[[1270,1253,1144]],[[1270,1289,1290]],[[1181,1259,1258]],[[414,415,1259]],[[1302,1258,1194]],[[1179,1181,1258]],[[1189,1190,1271]],[[432,433,1190]],[[1142,1234,1274]],[[1241,1235,1234]],[[1250,1255,1226]],[[1234,1236,1297]],[[1257,1152,432]],[[1260,1259,1152]],[[1274,1275,1142]],[[1274,1143,1275]],[[1159,1176,1303]],[[1282,1243,1177]],[[1223,1228,1225]],[[1222,1115,1228]],[[1231,1264,1266]],[[1169,1262,1233]],[[1300,1299,1114]],[[1287,1304,1256]],[[1132,1299,1287]],[[1300,1254,1299]],[[1297,1114,1113]],[[1236,1300,1114]],[[1305,1306,1252]],[[1252,1215,1272]],[[1278,1128,1122]],[[1126,1120,1119]],[[1128,1116,1118]],[[1304,1287,1116]],[[1232,1233,1163]],[[1232,1296,1233]],[[1210,1307,1271]],[[1209,1308,1307]],[[1309,1200,1199]],[[1310,1193,1200]],[[1234,1297,1255]],[[1236,1114,1297]],[[1172,1265,1175]],[[1311,1296,1264]],[[1142,1241,1234]],[[1240,1235,1241]],[[1289,1108,1269]],[[1141,1109,1108]],[[1138,1107,1109]],[[1246,1108,1107]],[[1308,1208,1148]],[[1273,433,1239]],[[1208,1210,1239]],[[1239,1210,1273]],[[1130,1128,1118]],[[1119,1122,1128]],[[1293,1312,1294]],[[1293,1186,1292]],[[1259,1268,1152]],[[1259,415,1268]],[[1131,1276,1249]],[[1131,1130,1276]],[[1302,1179,1258]],[[1312,1293,1292]],[[1179,1292,1180]],[[1179,1312,1292]],[[1184,1242,1292]],[[1286,1285,1242]],[[1184,1177,1243]],[[1178,1175,1177]],[[1146,1145,1188]],[[1147,1186,1145]],[[1200,1193,1201]],[[1294,1312,1302]],[[1257,1194,1260]],[[1302,1312,1179]],[[1247,1270,1144]],[[1141,1289,1270]],[[1274,1250,1220]],[[1234,1255,1250]],[[1307,1210,1209]],[[1190,433,1210]],[[1307,1272,1271]],[[1307,1183,1252]],[[1307,1252,1272]],[[1207,1206,1213]],[[1306,1251,1252]],[[1215,1214,1272]],[[1207,1215,1251]],[[1207,1213,1214]],[[1305,1182,1313]],[[1313,1314,1306]],[[1171,1170,1265]],[[1176,1175,1170]],[[1303,1261,1159]],[[1303,1176,1261]],[[1165,1166,1231]],[[1261,1170,1167]],[[1157,1166,1165]],[[1261,1167,1166]],[[1176,1282,1177]],[[1243,1284,1244]],[[1153,1244,412]],[[1243,1282,1281]],[[1214,1189,1272]],[[1201,1193,1189]],[[1265,1311,1171]],[[1265,1154,1311]],[[1193,1302,1194]],[[1193,1310,1302]],[[1115,1111,1110]],[[1227,1230,1111]],[[1166,1168,1231]],[[1167,1171,1168]],[[1192,1191,1291]],[[1151,1178,1191]],[[1196,1192,1291]],[[1186,1147,1192]],[[1184,1196,1291]],[[1184,1292,1196]],[[1114,1132,1115]],[[1114,1299,1132]],[[1304,1278,1133]],[[1116,1128,1278]],[[414,1181,1180]],[[414,1259,1181]],[[1306,1314,1251]],[[1205,1250,1298]],[[1205,1298,1206]],[[1226,1206,1298]],[[1313,1219,1314]],[[1314,1219,1205]],[[1296,1311,1169]],[[1174,1155,1154]],[[1315,1129,1280]],[[1315,1126,1129]],[[1313,1182,1149]],[[1313,1306,1305]],[[1183,1305,1252]],[[1183,1182,1305]],[[1261,1157,1159]],[[1164,1158,1157]],[[1183,1308,1148]],[[1183,1307,1308]],[[1148,1208,1239]],[[1308,1209,1208]],[[1294,1309,1199]],[[1294,1302,1309]],[[1309,1310,1200]],[[1309,1302,1310]],[[1286,1267,1243]],[[1242,1184,1267]],[[1135,1301,1127]],[[1238,1279,1288]],[[1288,1301,1238]],[[1288,1127,1301]],[[1135,1134,1301]],[[1136,1269,1237]],[[1137,1237,1246]],[[1134,1136,1237]],[[1195,1257,432]],[[1260,1152,1257]],[[1171,1311,1264]],[[1154,1169,1311]],[[1159,1281,1283]],[[1284,1243,1281]],[[1159,1284,1281]],[[1159,412,1284]],[[1278,1304,1116]],[[1133,1256,1304]],[[1205,1219,1250]],[[1313,1149,1219]],[[1207,1314,1205]],[[1207,1251,1314]],[[1144,1254,1300]],[[1253,1290,1254]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221e7287-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1316,1317,1318]],[[1319,1320,1321]],[[1322,1323,1324]],[[1325,1326,1327]],[[1328,1329,1330]],[[1331,1332,1333]],[[1334,1335,1336]],[[1337,1338,1339]],[[1340,1341,1342]],[[1343,1337,1344]],[[1340,1345,1341]],[[1345,1346,1341]],[[1345,1347,1346]],[[1348,1347,1343]],[[1349,1350,1351]],[[1335,1352,1353]],[[1354,1355,1356]],[[1357,1358,1359]],[[1360,1361,1362]],[[1363,1364,1365]],[[1359,1358,1366]],[[1336,1335,1367]],[[1368,1369,1370]],[[1371,1372,1373]],[[1374,1375,1376]],[[1375,1377,1376]],[[1368,1378,1379]],[[1380,1381,1382]],[[1383,1384,1385]],[[1386,1387,1388]],[[1386,1388,1389]],[[1390,1391,1392]],[[1387,1393,1388]],[[1394,1395,1396]],[[1397,1398,1393]],[[1399,1381,1400]],[[1392,1401,1398]],[[1402,1403,1323]],[[1404,1405,1406]],[[1407,1408,1409]],[[1410,1411,1409]],[[1412,1404,1413]],[[1414,1415,1416]],[[1415,1417,1416]],[[1418,1419,1420]],[[1421,1422,1423]],[[1424,673,674]],[[1425,1426,1427]],[[1428,1318,1429]],[[1430,1431,1432]],[[1433,1434,1435]],[[1436,699,700]],[[1437,1438,1439]],[[610,575,1440]],[[1441,1438,1442]],[[1443,1375,1444]],[[1445,1446,1447]],[[1448,1449,1450]],[[1377,1324,1323]],[[1377,1451,1324]],[[1377,1375,1451]],[[1402,1452,1403]],[[1453,575,577]],[[1454,1455,1456]],[[1457,1458,1459]],[[1460,1461,1425]],[[1462,1463,1457]],[[1464,1465,1466]],[[1467,1468,1402]],[[1469,1470,1471]],[[1472,1473,1474]],[[1362,1475,1476]],[[1477,1478,1455]],[[1479,1465,1478]],[[1454,1480,1467]],[[1481,1482,1483]],[[1484,1485,1486]],[[1487,1488,1489]],[[1485,1490,1486]],[[1491,1492,1493]],[[1373,1494,1495]],[[1495,1353,1372]],[[1371,1373,1495]],[[1367,1353,1496]],[[1371,1495,1372]],[[1496,1353,1495]],[[1495,1494,1497]],[[1484,1486,1498]],[[1499,1411,1413]],[[1410,1500,1501]],[[1502,1373,1372]],[[1502,1503,1329]],[[1504,1505,1506]],[[1481,1507,607]],[[1508,1509,1510]],[[1511,1455,1512]],[[1513,1514,1515]],[[1516,1491,1488]],[[1440,1517,1518]],[[1510,1509,1519]],[[1520,1433,1521]],[[1522,1523,1400]],[[1449,1524,1471]],[[1370,1369,1525]],[[1526,1498,1486]],[[1527,1469,1370]],[[1528,1529,1463]],[[1468,1467,1530]],[[1468,1529,1438]],[[1468,1463,1529]],[[1444,1531,1532]],[[1533,1534,1535]],[[1329,1536,1330]],[[1537,1538,1539]],[[1503,1540,1325]],[[1541,1542,1320]],[[1543,1336,1329]],[[1543,1329,1328]],[[1330,1503,1485]],[[1320,1319,1544]],[[1506,1545,1509]],[[1519,1360,1362]],[[1459,1454,1504]],[[1546,1547,1456]],[[1504,1547,1505]],[[1547,1454,1456]],[[1494,1336,1548]],[[1549,1550,1334]],[[1551,1552,1518]],[[1553,1529,1528]],[[1554,1555,1436]],[[577,699,1555]],[[1556,1347,1350]],[[1556,1346,1347]],[[1557,1546,1456]],[[1456,1455,1558]],[[1559,1560,1407]],[[1561,1562,1563]],[[1446,1464,1322]],[[1512,1465,1464]],[[1564,1558,1565]],[[1511,1512,1566]],[[1567,1568,1569]],[[1570,1506,1509]],[[1358,1344,1339]],[[1358,1357,1344]],[[1329,1503,1536]],[[1571,1538,1572]],[[1447,1487,1445]],[[1512,1445,1566]],[[1573,1504,1506]],[[1459,1574,1454]],[[1548,1336,1367]],[[1494,1329,1336]],[[1373,1329,1494]],[[1373,1502,1329]],[[1575,1576,1317]],[[1577,1424,674]],[[1501,1413,1411]],[[1578,1579,1580]],[[1411,1581,1409]],[[1417,1420,1416]],[[1582,1362,1476]],[[1519,1583,1360]],[[1584,1585,1586]],[[1515,1583,1519]],[[1585,1483,1586]],[[1508,1587,1570]],[[1470,1469,1588]],[[1353,1367,1335]],[[1428,1429,1589]],[[1385,1590,1591]],[[1382,1384,1429]],[[1385,1591,1592]],[[1446,1322,1324]],[[1466,1323,1322]],[[1593,1594,1595]],[[1578,1596,1579]],[[672,1595,700]],[[672,673,1597]],[[1598,1394,1396]],[[1318,1428,1433]],[[1520,1434,1433]],[[1599,1578,1404]],[[1600,1430,1426]],[[1437,1403,1452]],[[1601,1602,1430]],[[1427,1437,1603]],[[1554,1436,700]],[[1555,699,1436]],[[1446,1445,1464]],[[1512,1464,1445]],[[1604,1350,1348]],[[1605,1349,1606]],[[1607,1608,1609]],[[1609,1608,1472]],[[1332,1610,1611]],[[1442,1438,1529]],[[1612,1613,1527]],[[1348,1344,1357]],[[1509,1515,1519]],[[1509,1545,1513]],[[1614,1615,1453]],[[1616,1617,1472]],[[1524,1448,1618]],[[1531,1619,1620]],[[1353,1352,1621]],[[1358,1622,1366]],[[1623,1345,1340]],[[1623,1624,1345]],[[1625,1626,1627]],[[1532,1628,1629]],[[1507,1544,1630]],[[1631,1326,1540]],[[1630,1544,1319]],[[1542,1541,1632]],[[1555,1554,577]],[[1431,1633,1634]],[[1635,1636,1637]],[[1584,1510,1519]],[[607,1638,1474]],[[1639,1637,1640]],[[1380,1400,1381]],[[1591,1403,1592]],[[1477,1467,1402]],[[1477,1454,1467]],[[1476,1475,1641]],[[1362,1361,1475]],[[1361,1360,1642]],[[1558,1511,1489]],[[1643,1479,1478]],[[1323,1465,1479]],[[1564,1456,1558]],[[1454,1574,1480]],[[577,1644,1614]],[[1645,1461,1617]],[[1646,1482,1647]],[[1648,1649,1482]],[[1338,1623,1650]],[[1338,1624,1623]],[[1361,1641,1475]],[[1491,1565,1488]],[[1429,1522,1382]],[[1399,1391,1381]],[[1651,1652,1653]],[[1654,1563,1655]],[[1415,1560,1559]],[[1407,1581,1417]],[[1581,1411,1499]],[[1656,1657,1658]],[[1328,1330,1485]],[[1536,1503,1330]],[[1413,1404,1578]],[[1412,1501,1656]],[[1406,1405,1659]],[[1576,1395,1317]],[[1474,1647,607]],[[1482,1649,1483]],[[1660,1592,1403]],[[1385,1384,1590]],[[1661,1662,1602]],[[1521,1589,1662]],[[1663,1442,1664]],[[1638,1472,1474]],[[1327,1476,1665]],[[1493,1564,1565]],[[1666,1447,1667]],[[1668,1669,1670]],[[1671,1572,1631]],[[1321,1630,1319]],[[1540,1671,1631]],[[1538,1502,1539]],[[1507,1672,1541]],[[1537,1539,1321]],[[1538,1537,1572]],[[1673,1674,1675]],[[1327,1326,1582]],[[1673,1676,1537]],[[1674,1673,1321]],[[1631,1572,1537]],[[1632,1674,1542]],[[1539,1630,1321]],[[1344,1337,1339]],[[1343,1347,1345]],[[1468,1677,1463]],[[1678,1574,1677]],[[1427,1602,1679]],[[1662,1385,1679]],[[1625,1666,1667]],[[1626,1444,1627]],[[1497,1496,1495]],[[1497,1548,1496]],[[1635,1680,1636]],[[1611,1664,1462]],[[1542,1674,1321]],[[1676,1326,1631]],[[1647,1481,607]],[[1647,1482,1481]],[[1681,1660,1403]],[[1681,1682,1660]],[[1509,1513,1515]],[[1545,1557,1514]],[[1407,1560,1408]],[[1651,1416,1683]],[[1684,1575,1317]],[[1404,1406,1576]],[[1468,1530,1677]],[[1467,1480,1530]],[[1581,1407,1409]],[[1581,1685,1417]],[[1490,1327,1526]],[[1326,1675,1582]],[[1486,1490,1526]],[[1485,1503,1325]],[[1582,1476,1327]],[[1641,1493,1476]],[[1667,1446,1324]],[[1667,1447,1446]],[[1686,1607,1609]],[[1440,575,1517]],[[675,1577,674]],[[1419,1687,1420]],[[1530,1678,1677]],[[1530,1480,1678]],[[1351,1355,1354]],[[1356,1688,1354]],[[1640,1474,1689]],[[1638,607,609]],[[1411,1410,1501]],[[1408,1560,1690]],[[1691,1661,1692]],[[1693,1634,1633]],[[1570,1573,1506]],[[1333,1694,1573]],[[1570,1587,1695]],[[1611,1696,1664]],[[1697,1370,1469]],[[1370,1525,1612]],[[1550,1698,1699]],[[1700,1701,1702]],[[1352,1335,1703]],[[1704,1526,1665]],[[1705,1706,1702]],[[1669,1668,1625]],[[1699,1703,1550]],[[1471,1524,1697]],[[1707,1708,1699]],[[1708,1588,1621]],[[1328,1709,1543]],[[1703,1335,1334]],[[1709,1549,1543]],[[1334,1336,1543]],[[1470,1710,1471]],[[1697,1711,1370]],[[1621,1527,1359]],[[1588,1469,1527]],[[1359,1527,1357]],[[1359,1366,1621]],[[1435,1693,1712]],[[673,1424,1577]],[[1481,1483,1507]],[[1567,1636,1568]],[[1713,1444,1626]],[[1629,1714,1524]],[[1507,1541,1544]],[[1542,1321,1320]],[[1462,1528,1463]],[[1664,1442,1553]],[[1664,1553,1528]],[[1442,1529,1553]],[[1679,1385,1592]],[[1383,1429,1384]],[[1589,1383,1385]],[[1589,1429,1383]],[[1627,1444,1715]],[[1713,1443,1444]],[[1438,1441,1439]],[[1461,1552,1425]],[[1483,1716,1507]],[[1717,1718,1582]],[[1544,1541,1320]],[[1672,1632,1541]],[[1323,1477,1402]],[[1643,1478,1477]],[[1621,1352,1708]],[[1621,1622,1353]],[[1451,1443,1713]],[[1451,1375,1443]],[[1407,1417,1559]],[[1580,1719,1720]],[[1655,1562,1690]],[[1561,1500,1721]],[[1450,1627,1448]],[[1618,1629,1524]],[[1722,1441,1442]],[[1439,1603,1437]],[[1659,1658,1657]],[[1723,1404,1656]],[[1723,1656,1658]],[[1501,1657,1656]],[[1345,1624,1343]],[[1338,1337,1624]],[[1431,1634,1724]],[[1691,1521,1662]],[[1689,1474,1473]],[[1646,1647,1474]],[[1564,1725,1726]],[[1642,1641,1361]],[[1725,1642,1360]],[[1493,1641,1642]],[[1714,1697,1524]],[[1711,1368,1370]],[[1671,1571,1572]],[[1671,1540,1571]],[[1649,1586,1483]],[[1727,1510,1584]],[[1628,1728,1714]],[[1620,1619,1369]],[[1410,1721,1500]],[[1410,1409,1408]],[[1729,1597,673]],[[1594,1693,1730]],[[1597,1593,672]],[[1594,1712,1693]],[[1435,1731,1316]],[[1432,1692,1601]],[[1577,1732,673]],[[1595,1733,700]],[[1597,1729,1712]],[[1316,1684,1317]],[[1731,1734,1316]],[[1735,1421,1423]],[[1575,1599,1404]],[[1596,1422,1421]],[[1520,1724,1634]],[[1520,1521,1691]],[[1378,1728,1379]],[[1531,1375,1619]],[[1736,1435,1712]],[[1434,1520,1634]],[[1633,1733,1730]],[[1693,1434,1634]],[[1368,1379,1369]],[[1728,1628,1379]],[[1558,1737,1511]],[[1558,1455,1737]],[[1425,1439,1738]],[[1722,1609,1472]],[[1460,1617,1461]],[[1460,1722,1617]],[[1645,1616,1518]],[[1739,610,1440]],[[1323,1643,1477]],[[1323,1479,1643]],[[1365,1604,1740]],[[1350,1347,1348]],[[1357,1740,1348]],[[1365,1364,1351]],[[1741,1740,1357]],[[1604,1348,1740]],[[1534,1364,1363]],[[1364,1356,1351]],[[1632,1675,1674]],[[1632,1672,1742]],[[1604,1351,1350]],[[1604,1365,1351]],[[1743,1744,1615]],[[1426,1425,1552]],[[1659,1723,1658]],[[1405,1404,1723]],[[1707,1745,1470]],[[1707,1701,1745]],[[1654,1655,1652]],[[1563,1562,1655]],[[1651,1654,1652]],[[1683,1563,1654]],[[1390,1392,1398]],[[1746,1401,1392]],[[1638,1739,1440]],[[609,610,1739]],[[1382,1590,1384]],[[1382,1381,1591]],[[1382,1591,1590]],[[1381,1403,1591]],[[1633,1554,700]],[[1747,1644,1554]],[[1334,1550,1703]],[[1550,1549,1748]],[[1458,1677,1574]],[[1678,1480,1574]],[[1749,1459,1504]],[[1458,1463,1677]],[[1749,1457,1459]],[[1611,1610,1750]],[[1694,1749,1504]],[[1332,1457,1749]],[[1568,1750,1695]],[[1695,1573,1570]],[[1742,1582,1675]],[[1672,1507,1716]],[[1687,1419,1751]],[[1751,1752,1577]],[[1711,1378,1368]],[[1714,1728,1378]],[[1449,1448,1524]],[[1627,1715,1618]],[[1492,1665,1476]],[[1753,1669,1450]],[[1449,1754,1755]],[[1487,1489,1445]],[[1702,1706,1704]],[[1526,1327,1665]],[[1707,1705,1701]],[[1498,1526,1706]],[[1698,1748,1705]],[[1498,1706,1705]],[[1702,1704,1756]],[[1706,1526,1704]],[[1705,1748,1498]],[[1705,1707,1698]],[[1627,1618,1448]],[[1629,1628,1714]],[[1459,1458,1574]],[[1457,1463,1458]],[[1332,1611,1457]],[[1664,1528,1462]],[[1663,1609,1442]],[[1439,1425,1603]],[[1650,1340,1342]],[[1650,1623,1340]],[[1499,1578,1685]],[[1757,1734,1596]],[[1757,1596,1578]],[[1734,1732,1596]],[[1607,1686,1696]],[[1686,1663,1696]],[[1432,1601,1430]],[[1692,1724,1691]],[[1427,1681,1437]],[[1682,1592,1660]],[[1715,1532,1618]],[[1531,1444,1375]],[[1731,1435,1736]],[[1434,1693,1435]],[[1689,1607,1639]],[[1689,1608,1607]],[[1720,1719,1418]],[[1758,1735,1423]],[[1719,1579,1418]],[[1596,1421,1579]],[[1321,1673,1537]],[[1675,1326,1676]],[[1537,1676,1631]],[[1673,1675,1676]],[[1655,1690,1652]],[[1562,1408,1690]],[[1560,1415,1690]],[[1559,1417,1415]],[[1714,1711,1697]],[[1714,1378,1711]],[[1725,1564,1493]],[[1726,1456,1564]],[[1642,1725,1493]],[[1726,1583,1456]],[[1360,1726,1725]],[[1360,1583,1726]],[[1357,1527,1613]],[[1527,1370,1612]],[[1740,1741,1363]],[[1613,1525,1741]],[[1740,1363,1365]],[[1741,1525,1363]],[[1745,1754,1470]],[[1745,1701,1754]],[[1710,1754,1449]],[[1710,1470,1754]],[[1640,1689,1639]],[[1473,1608,1689]],[[1713,1625,1667]],[[1713,1626,1625]],[[1351,1356,1355]],[[1364,1688,1356]],[[1759,1331,1573]],[[1332,1749,1694]],[[1573,1694,1504]],[[1333,1332,1694]],[[1573,1331,1333]],[[1759,1610,1760]],[[1598,1522,1429]],[[1523,1401,1399]],[[1598,1523,1522]],[[1598,1401,1523]],[[1500,1561,1563]],[[1721,1562,1561]],[[1583,1557,1456]],[[1557,1545,1505]],[[1460,1738,1722]],[[1460,1425,1738]],[[1751,1577,675]],[[1752,1422,1596]],[[1729,1732,1731]],[[1752,1596,1732]],[[1516,1756,1491]],[[1489,1566,1445]],[[1670,1761,1516]],[[1492,1476,1493]],[[1762,1743,1615]],[[1633,700,1733]],[[1615,1744,1552]],[[1743,1633,1431]],[[1747,1633,1743]],[[1747,1554,1633]],[[1406,1659,1657]],[[1405,1723,1659]],[[1470,1708,1707]],[[1352,1703,1699]],[[1739,1638,609]],[[1440,1472,1638]],[[1632,1742,1675]],[[1585,1716,1483]],[[1763,1717,1742]],[[1718,1362,1582]],[[1722,1472,1617]],[[1608,1473,1472]],[[1523,1399,1400]],[[1401,1746,1399]],[[1597,1594,1593]],[[1693,1633,1730]],[[1595,1594,1730]],[[1597,1712,1594]],[[1607,1696,1680]],[[1686,1764,1663]],[[1760,1610,1332]],[[1508,1570,1509]],[[1759,1695,1610]],[[1759,1573,1695]],[[1331,1760,1332]],[[1331,1759,1760]],[[1695,1750,1610]],[[1680,1696,1611]],[[1457,1611,1462]],[[1750,1680,1611]],[[1601,1661,1602]],[[1601,1692,1661]],[[1644,1762,1615]],[[1615,1551,1453]],[[1600,1431,1430]],[[1724,1692,1432]],[[1690,1653,1652]],[[1690,1415,1414]],[[1654,1651,1683]],[[1653,1414,1651]],[[1651,1414,1416]],[[1653,1690,1414]],[[1661,1691,1662]],[[1724,1520,1691]],[[1455,1454,1477]],[[1547,1504,1454]],[[1722,1439,1441]],[[1722,1738,1439]],[[1753,1761,1670]],[[1701,1705,1702]],[[1668,1516,1488]],[[1761,1702,1516]],[[1516,1702,1756]],[[1761,1755,1702]],[[1669,1753,1670]],[[1755,1754,1700]],[[1579,1765,1418]],[[1579,1421,1735]],[[1599,1757,1578]],[[1599,1684,1757]],[[1751,1758,1423]],[[1765,1579,1735]],[[1687,1751,675]],[[1752,1732,1577]],[[1640,1646,1474]],[[1640,1648,1646]],[[1357,1613,1741]],[[1612,1525,1613]],[[1516,1668,1670]],[[1625,1627,1669]],[[1487,1668,1488]],[[1666,1625,1668]],[[1755,1700,1702]],[[1754,1701,1700]],[[1593,1595,672]],[[1730,1733,1595]],[[1442,1609,1722]],[[1764,1686,1609]],[[575,1453,1517]],[[1615,1552,1551]],[[1614,1453,577]],[[1551,1517,1453]],[[1325,1540,1326]],[[1503,1571,1540]],[[1519,1718,1717]],[[1519,1362,1718]],[[1527,1621,1588]],[[1366,1622,1621]],[[1727,1584,1586]],[[1519,1717,1584]],[[1649,1567,1586]],[[1569,1508,1727]],[[1489,1511,1566]],[[1737,1455,1511]],[[1696,1663,1664]],[[1764,1609,1663]],[[1618,1532,1629]],[[1715,1444,1532]],[[1549,1709,1498]],[[1328,1485,1484]],[[1748,1549,1498]],[[1334,1543,1549]],[[1484,1709,1328]],[[1484,1498,1709]],[[1396,1406,1657]],[[1766,1395,1576]],[[1666,1487,1447]],[[1666,1668,1487]],[[1464,1466,1322]],[[1465,1323,1466]],[[1387,1390,1398]],[[1387,1391,1390]],[[1765,1419,1418]],[[1765,1735,1758]],[[1419,1758,1751]],[[1419,1765,1758]],[[1614,1644,1615]],[[1747,1743,1762]],[[1554,1644,577]],[[1747,1762,1644]],[[1712,1729,1736]],[[673,1732,1729]],[[1379,1620,1369]],[[1379,1628,1620]],[[1628,1531,1620]],[[1628,1532,1531]],[[1522,1380,1382]],[[1522,1400,1380]],[[1503,1538,1571]],[[1503,1502,1538]],[[1506,1505,1545]],[[1547,1546,1505]],[[1546,1557,1505]],[[1514,1513,1545]],[[1583,1514,1557]],[[1583,1515,1514]],[[1551,1518,1517]],[[1552,1461,1518]],[[1616,1645,1617]],[[1518,1461,1645]],[[1440,1616,1472]],[[1440,1518,1616]],[[1432,1431,1724]],[[1744,1743,1431]],[[1767,1755,1761]],[[1767,1449,1755]],[[1704,1492,1756]],[[1493,1565,1491]],[[1756,1492,1491]],[[1704,1665,1492]],[[1699,1708,1352]],[[1470,1588,1708]],[[1404,1412,1656]],[[1413,1501,1412]],[[1420,1720,1418]],[[1580,1579,1719]],[[1417,1720,1420]],[[1417,1685,1720]],[[1685,1580,1720]],[[1685,1578,1580]],[[1391,1746,1392]],[[1391,1399,1746]],[[1423,1752,1751]],[[1423,1422,1752]],[[1565,1489,1488]],[[1565,1558,1489]],[[1490,1325,1327]],[[1490,1485,1325]],[[1581,1499,1685]],[[1413,1578,1499]],[[1727,1567,1569]],[[1680,1750,1568]],[[1568,1587,1569]],[[1568,1695,1587]],[[1727,1508,1510]],[[1569,1587,1508]],[[1637,1636,1649]],[[1680,1568,1636]],[[1586,1567,1727]],[[1649,1636,1567]],[[1767,1450,1449]],[[1669,1627,1450]],[[1767,1753,1450]],[[1767,1761,1753]],[[1435,1316,1433]],[[1684,1599,1575]],[[1734,1684,1316]],[[1734,1757,1684]],[[1662,1589,1385]],[[1521,1433,1428]],[[1521,1428,1589]],[[1433,1316,1318]],[[1598,1318,1317]],[[1598,1429,1318]],[[1469,1471,1697]],[[1710,1449,1471]],[[1349,1605,1556]],[[1606,1346,1605]],[[1349,1556,1350]],[[1605,1346,1556]],[[1425,1427,1603]],[[1430,1602,1427]],[[1427,1679,1681]],[[1602,1662,1679]],[[1679,1682,1681]],[[1679,1592,1682]],[[1496,1548,1367]],[[1497,1494,1548]],[[1729,1731,1736]],[[1732,1734,1731]],[[1534,1533,1364]],[[1535,1364,1533]],[[1525,1534,1363]],[[1525,1535,1534]],[[1387,1397,1393]],[[1387,1398,1397]],[[1744,1600,1552]],[[1430,1427,1426]],[[1337,1343,1624]],[[1344,1348,1343]],[[1699,1698,1707]],[[1550,1748,1698]],[[1404,1576,1575]],[[1766,1396,1395]],[[1406,1766,1576]],[[1406,1396,1766]],[[1354,1349,1351]],[[1354,1606,1349]],[[1721,1408,1562]],[[1721,1410,1408]],[[1648,1637,1649]],[[1639,1607,1635]],[[1639,1635,1637]],[[1607,1680,1635]],[[1317,1394,1598]],[[1317,1395,1394]],[[1716,1585,1672]],[[1717,1582,1742]],[[1763,1585,1584]],[[1742,1672,1585]],[[1585,1763,1742]],[[1584,1717,1763]],[[1552,1600,1426]],[[1744,1431,1600]],[[1646,1648,1482]],[[1640,1637,1648]],[[1438,1437,1452]],[[1681,1403,1437]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22204791-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1768,1769,1770]],[[1771,1772,1773]],[[1774,1775,1776]],[[1777,1778,1779]],[[1780,1781,1782]],[[1783,1784,1778]],[[1785,1783,1778]],[[1786,1787,1783]],[[1788,1789,1790]],[[1791,1786,1783]],[[1792,1793,1786]],[[1794,1792,1786]],[[1795,1796,1792]],[[1794,1797,1792]],[[1795,1792,1797]],[[1798,1799,1800]],[[1791,1794,1786]],[[1801,1797,1794]],[[1802,1794,1791]],[[1785,1791,1783]],[[1803,1802,1791]],[[1804,1785,1805]],[[1798,1800,1806]],[[1807,1808,1799]],[[1799,1808,1800]],[[1809,1810,1774]],[[1811,1809,1812]],[[1813,1814,1815]],[[1812,1816,1811]],[[1812,1815,1816]],[[1812,1813,1815]],[[1813,1817,1814]],[[1818,1772,1817]],[[1771,1770,1772]],[[1771,1768,1770]],[[1768,1819,1769]],[[1820,1821,1822]],[[1820,1782,1823]],[[1821,1820,1823]],[[1823,1782,1781]],[[1788,1780,1782]],[[1788,1790,1780]],[[1824,1825,1789]],[[1826,1825,1824]],[[1827,1789,1788]],[[1776,1775,1828]],[[1810,1828,1775]],[[1776,1829,1808]],[[1776,1828,1829]],[[1812,1774,1830]],[[1830,1774,1776]],[[1820,1819,1771]],[[1819,1822,1769]],[[1827,1824,1789]],[[1827,1831,1824]],[[1807,1799,1779]],[[1800,1808,1828]],[[1832,1804,1777]],[[1785,1778,1777]],[[1798,1832,1779]],[[1805,1785,1777]],[[1773,1818,1817]],[[1773,1772,1818]],[[1809,1774,1812]],[[1810,1775,1774]],[[1777,1804,1805]],[[1806,1785,1804]],[[1830,1807,1779]],[[1808,1829,1828]],[[1830,1808,1807]],[[1830,1776,1808]],[[1771,1819,1768]],[[1820,1822,1819]],[[1773,1813,1812]],[[1773,1817,1813]],[[1831,1826,1824]],[[1831,1825,1826]],[[1832,1798,1806]],[[1779,1799,1798]],[[1804,1832,1806]],[[1777,1779,1832]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22206eb6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1833,1834,1835]],[[1836,1837,1838]],[[1839,174,1840]],[[1841,1842,172]],[[1837,172,1843]],[[1844,1845,1843]],[[1846,172,173]],[[1847,1848,1846]],[[1849,1850,1851]],[[1846,1843,172]],[[1834,173,1835]],[[1852,1853,1835]],[[1835,173,1840]],[[173,1839,1840]],[[173,174,1839]],[[1845,1837,1843]],[[1845,1838,1837]],[[1854,1853,1852]],[[1855,1856,1857]],[[1848,1858,1846]],[[1846,1858,1843]],[[1835,1853,1833]],[[1849,1851,1846]],[[1855,1857,1849]],[[1851,1847,1846]],[[1833,1846,173]],[[1849,1857,1850]],[[172,1836,1841]],[[172,1837,1836]],[[1859,1850,1857]],[[1859,1851,1850]],[[1834,1833,173]],[[1853,1846,1833]],[[1853,1849,1846]],[[1856,1860,1859]],[[1860,1854,1852]],[[1860,1853,1854]],[[1853,1855,1849]],[[1853,1860,1855]],[[1857,1856,1859]],[[1855,1860,1856]],[[1858,1844,1843]],[[1858,1845,1844]],[[1838,1841,1836]],[[1838,1842,1841]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222095f0-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1861,1862,1863]],[[1864,1865,1866]],[[1867,1868,1865]],[[1869,1870,1871]],[[1872,1873,1870]],[[1874,1875,1876]],[[1877,1869,1871]],[[1863,1873,1867]],[[1863,1878,1873]],[[1862,1879,1878]],[[1868,1875,1874]],[[1867,1873,1876]],[[1876,1869,1877]],[[1872,1870,1869]],[[1867,1864,1863]],[[1866,1863,1864]],[[1874,1876,1877]],[[1875,1867,1876]],[[1861,1863,1866]],[[1862,1878,1863]],[[1876,1872,1869]],[[1876,1873,1872]],[[1864,1867,1865]],[[1875,1868,1867]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2221a6f3-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1880,1881,1882]],[[1880,1882,1883]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2221ce24-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.35f5257403d44b2da79b759adfef6652","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1884,1885,1886]],[[1884,1886,1887]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2222df3c-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1888,1889,1890]],[[1888,1891,1892]],[[1888,1893,1891]],[[1888,1894,1893]],[[1888,1890,1894]],[[1889,1895,1890]],[[1889,1896,1895]],[[1889,1897,1896]],[[1898,1899,1889]],[[1900,1898,1889]],[[1901,1900,1889]],[[1902,1901,1889]],[[1902,1903,1901]],[[1902,1904,1903]],[[1902,1905,1904]],[[1902,1906,1905]],[[1907,1908,1902]],[[1902,1908,1909]],[[1910,1907,1911]],[[1911,1907,1912]],[[1912,1907,1902]],[[1913,1914,1912]],[[1915,1913,1912]],[[1912,1916,1917]],[[1918,1919,1912]],[[1920,1918,1912]],[[1921,1920,1912]],[[1922,1921,1917]],[[1917,1916,1923]],[[1924,1917,1923]],[[1925,1926,1917]],[[1927,1925,1917]],[[1928,1927,1917]],[[1923,122,123]],[[1916,121,122]],[[1888,1892,120]],[[121,1888,120]],[[1924,1923,123]],[[1924,1928,1917]],[[1923,1916,122]],[[1907,1929,1908]],[[1912,1914,1911]],[[1910,1929,1907]],[[1902,1889,1916]],[[1899,1897,1889]],[[1912,1902,1916]],[[1909,1906,1902]],[[1916,1888,121]],[[1916,1889,1888]],[[1930,1917,1926]],[[1930,1922,1917]],[[1921,1912,1917]],[[1919,1915,1912]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2223065e-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef501749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1931,1932,1933]],[[1934,350,351]],[[1935,347,348]],[[347,1936,346]],[[1937,1938,1939]],[[1940,1941,1942]],[[1943,1941,1940]],[[1944,1945,1946]],[[1947,1948,1949]],[[1950,1951,1952]],[[1953,1954,1955]],[[1956,1957,1958]],[[1959,1960,1961]],[[1962,1963,1959]],[[1964,1962,1959]],[[1965,1961,1966]],[[1967,1968,1969]],[[1970,1971,1972]],[[1973,1974,1975]],[[1976,292,291]],[[1959,1961,1977]],[[1978,1979,1980]],[[1981,1982,1983]],[[1984,319,320]],[[1985,304,1986]],[[1987,1988,1989]],[[1990,386,1989]],[[386,1991,385]],[[385,1991,383]],[[383,1991,1992]],[[1993,1994,1995]],[[1996,1997,1998]],[[1999,2000,2001]],[[2002,2003,2000]],[[2004,2005,2006]],[[2007,2008,2009]],[[2010,2011,2012]],[[2013,2014,2015]],[[1933,1932,2016]],[[2011,2017,2018]],[[2018,2019,2011]],[[2019,2018,2020]],[[2021,2022,2023]],[[2024,2025,2026]],[[2027,2028,352]],[[2029,2030,2031]],[[2032,2002,2033]],[[1989,386,317]],[[1980,2034,2035]],[[2035,350,1980]],[[2013,2036,2037]],[[1985,1982,304]],[[1963,2038,2039]],[[2040,2041,2042]],[[2043,2044,1983]],[[2045,2046,2047]],[[2007,2048,2008]],[[2049,2050,2051]],[[2052,2053,2054]],[[2055,2056,2057]],[[2020,2009,2058]],[[2059,2060,350]],[[2061,1974,2062]],[[2063,2064,1960]],[[2065,1975,2066]],[[2067,292,1976]],[[347,1947,2068]],[[2069,2070,2071]],[[2045,1994,1993]],[[2072,2073,1982]],[[2074,2071,2075]],[[2076,2077,2078]],[[2046,1984,320]],[[2046,2045,1984]],[[2079,2080,2081]],[[2082,2081,2083]],[[292,1986,304]],[[2084,2052,2054]],[[349,2085,2086]],[[2057,1947,347]],[[2087,2067,1976]],[[2088,2052,2067]],[[2060,2089,1978]],[[2090,2091,2092]],[[2093,2094,2001]],[[2008,2095,2096]],[[2097,2098,2099]],[[2037,2100,2101]],[[2102,2033,2103]],[[2104,2097,2001]],[[2105,2106,2107]],[[2108,2109,2110]],[[2111,2078,2112]],[[2074,1945,1943]],[[2113,2114,2075]],[[1953,1950,1954]],[[2028,2115,2116]],[[1997,2117,2118]],[[2088,2061,2062]],[[2119,2062,1974]],[[2067,2052,292]],[[2088,2120,2052]],[[2087,2061,2088]],[[2121,1961,1969]],[[293,2065,291]],[[2065,1973,1975]],[[2122,2123,1963]],[[2124,2120,2088]],[[2125,2041,2126]],[[2040,2127,2120]],[[1961,1960,1967]],[[2042,2041,2125]],[[2128,2129,352]],[[2116,2130,2080]],[[1935,2057,347]],[[1958,1936,1956]],[[2057,2056,2131]],[[2132,2127,1948]],[[2037,2110,2100]],[[2133,2093,2109]],[[2032,2033,2048]],[[2134,2015,2135]],[[2004,2136,2000]],[[2032,2048,2007]],[[2137,2138,2038]],[[2139,2140,2042]],[[1986,2054,1985]],[[2084,292,2052]],[[2141,1981,2142]],[[2143,2053,2144]],[[1979,2145,2034]],[[349,350,2146]],[[1991,2109,2093]],[[1991,386,2109]],[[2147,2137,2038]],[[2148,2138,2137]],[[2124,2149,2120]],[[2039,2122,1963]],[[2052,2120,2053]],[[2088,2062,2124]],[[2106,2150,2151]],[[2097,1999,2001]],[[2152,2153,2154]],[[2006,2136,2004]],[[320,2155,2047]],[[2156,304,1982]],[[2157,2156,2073]],[[2158,304,2156]],[[2086,2085,2057]],[[2159,2146,1937]],[[2160,2155,320]],[[2161,2158,2162]],[[2163,2164,2165]],[[2166,1941,2165]],[[2167,2168,2157]],[[2158,302,304]],[[2169,2170,2161]],[[2169,2160,2170]],[[2103,2033,2171]],[[2103,2150,2134]],[[2172,2144,2053]],[[2173,1983,1982]],[[1994,2073,2072]],[[2110,2109,1990]],[[2060,1978,350]],[[2089,1979,1978]],[[2174,2175,2051]],[[2176,2011,2019]],[[2177,2178,1952]],[[2112,1954,1950]],[[2153,2179,2154]],[[2005,2004,1999]],[[2139,2180,2069]],[[2070,1951,2071]],[[2181,1940,1942]],[[2182,1948,2127]],[[1968,2040,2120]],[[1958,1943,1940]],[[2183,2184,2154]],[[2179,2153,2098]],[[2010,2012,2016]],[[2011,2176,2185]],[[2147,1962,1964]],[[2147,2038,1963]],[[1998,2118,2020]],[[2009,2017,2007]],[[1996,2029,2031]],[[2020,2186,2009]],[[2009,2008,2058]],[[2048,2102,2008]],[[2013,2187,2014]],[[2014,2135,2015]],[[2003,2032,2007]],[[2003,2002,2032]],[[2066,1975,2061]],[[2065,2188,1973]],[[2189,1950,1952]],[[2189,2112,1950]],[[2129,2027,352]],[[2129,2115,2027]],[[1968,1967,2040]],[[1960,2123,2063]],[[2190,1995,1994]],[[319,1984,1993]],[[291,2191,1976]],[[2192,2065,2191]],[[2108,2133,2109]],[[2104,2193,2179]],[[2036,2108,2110]],[[2036,2015,2107]],[[1960,1959,2123]],[[1962,2147,1963]],[[2049,2194,2118]],[[2175,2174,2176]],[[2155,2169,2162]],[[2170,302,2158]],[[1987,1989,317]],[[1988,1990,1989]],[[2195,2118,2117]],[[2186,2017,2009]],[[320,2047,2046]],[[2155,2196,2047]],[[2026,2197,1934]],[[2198,2030,2199]],[[2200,2128,2023]],[[2117,2021,2195]],[[2199,2030,2029]],[[2083,2201,2117]],[[2028,2116,2202]],[[2203,2197,2204]],[[2119,2205,2062]],[[2119,1961,2121]],[[1964,1959,1977]],[[1963,2123,1959]],[[1999,2004,2000]],[[1999,2097,2005]],[[2086,2057,2206]],[[2085,349,2055]],[[2193,2207,2183]],[[2154,2208,2152]],[[2058,2096,2014]],[[2058,2008,2096]],[[2167,2073,1994]],[[2156,1982,2073]],[[2195,2050,2118]],[[2051,2175,2049]],[[2095,2102,2134]],[[2102,2103,2134]],[[2135,2095,2134]],[[2048,2033,2102]],[[2034,1938,2209]],[[2085,2055,2057]],[[2209,1938,1937]],[[2210,2053,1971]],[[2131,2056,1970]],[[2127,2053,2120]],[[2131,1970,2132]],[[2172,1939,1938]],[[2025,2116,2204]],[[2130,2129,2211]],[[2025,2202,2116]],[[351,2028,2202]],[[2136,2002,2000]],[[2171,2033,2002]],[[1947,2131,1948]],[[1947,2057,2131]],[[2146,2212,2213]],[[2146,2034,2212]],[[2175,2176,2194]],[[2174,2185,2176]],[[2162,2158,2156]],[[2161,2170,2158]],[[2164,2166,2165]],[[2214,1941,2166]],[[319,1987,317]],[[319,1988,1987]],[[2215,1983,2044]],[[2072,2190,1994]],[[2216,2044,2217]],[[2092,2215,2044]],[[2053,2143,2054]],[[2217,2044,2043]],[[2143,1985,2054]],[[2143,2173,1985]],[[2218,2215,2092]],[[2141,2110,1981]],[[2219,2220,2221]],[[2220,2222,2164]],[[2223,2196,2167]],[[2155,2162,2168]],[[2223,2167,1994]],[[2157,2162,2156]],[[2201,2022,2117]],[[2200,2023,2022]],[[2082,2083,2224]],[[2130,2116,2115]],[[2094,2104,2001]],[[2133,2108,2193]],[[2133,2193,2104]],[[2108,2107,2207]],[[2056,2225,1970]],[[2172,1938,2145]],[[351,2024,1934]],[[2204,2197,2026]],[[2113,2163,2165]],[[2222,2214,2166]],[[2226,2199,2029]],[[2100,2218,2091]],[[2183,2154,2179]],[[2184,2208,2154]],[[2122,2063,2123]],[[2122,2125,2126]],[[2199,2090,2089]],[[2227,2228,2145]],[[2146,2035,2034]],[[2146,350,2035]],[[2142,1981,1983]],[[1995,1988,319]],[[302,2160,320]],[[302,2170,2160]],[[2185,1931,2229]],[[2174,1932,1931]],[[2069,2074,2230]],[[1945,1941,1943]],[[2231,2068,2232]],[[1956,347,2068]],[[2233,2230,2234]],[[2068,1947,1949]],[[2232,1949,2231]],[[2230,2074,1943]],[[2235,2076,2236]],[[2237,2164,2163]],[[2159,2055,349]],[[2159,1939,2055]],[[2191,2066,1976]],[[2191,2065,2066]],[[293,2188,2065]],[[293,2119,1973]],[[2205,2121,2149]],[[2205,2119,2121]],[[2205,2124,2062]],[[2205,2149,2124]],[[2096,2095,2135]],[[2008,2102,2095]],[[2116,2203,2204]],[[2081,2082,2203]],[[2058,2014,2187]],[[2096,2135,2014]],[[2148,2139,2138]],[[2148,2180,2139]],[[291,2192,2191]],[[291,2065,2192]],[[2113,2075,2163]],[[1955,1954,2078]],[[2071,2077,2075]],[[2076,2237,2163]],[[2197,2030,2059]],[[2199,2089,2198]],[[2238,2030,2198]],[[2197,2203,2082]],[[2227,2239,2228]],[[2092,2044,2216]],[[2034,2145,1938]],[[2228,2144,2145]],[[2104,2098,2097]],[[2104,2179,2098]],[[2133,2094,2093]],[[2133,2104,2094]],[[1998,2020,2058]],[[2118,2019,2020]],[[2018,2186,2020]],[[2018,2017,2186]],[[2081,2080,2083]],[[2211,2128,2240]],[[2201,2200,2022]],[[2240,2128,2200]],[[2200,2241,2240]],[[2081,2203,2079]],[[1941,1946,2165]],[[1945,2074,1946]],[[1978,1980,350]],[[1979,2034,1980]],[[2242,2190,2072]],[[1995,319,1993]],[[1981,2072,1982]],[[1981,2110,2242]],[[1981,2242,2072]],[[2110,1988,2242]],[[2242,1995,2190]],[[2242,1988,1995]],[[2110,1990,1988]],[[2109,386,1990]],[[2036,2107,2108]],[[2015,2105,2107]],[[2080,2130,2240]],[[2129,2128,2211]],[[2080,2241,2083]],[[2080,2240,2241]],[[2149,1969,2120]],[[2149,2121,1969]],[[1969,1968,2120]],[[1969,1961,1967]],[[2056,1939,2225]],[[2056,2055,1939]],[[2162,2169,2161]],[[2155,2160,2169]],[[2030,2238,2059]],[[2198,2089,2060]],[[1934,2059,350]],[[2238,2198,2060]],[[1994,2045,2047]],[[1993,1984,2045]],[[2213,2209,1937]],[[2212,2034,2209]],[[2067,2087,2088]],[[2243,2066,2061]],[[2178,2189,1952]],[[2178,2112,2189]],[[1949,2182,2231]],[[1957,1956,2068]],[[293,1973,2188]],[[2119,1974,1973]],[[1946,2114,2165]],[[2114,2074,2075]],[[2064,2244,1960]],[[2040,2042,2127]],[[1939,2159,1937]],[[349,2146,2159]],[[2012,2229,2016]],[[2229,1931,1933]],[[2016,2229,1933]],[[2185,2174,1931]],[[2245,2111,2112]],[[2077,2076,2163]],[[2178,2245,2112]],[[2236,2076,2111]],[[2244,2040,1967]],[[2126,2063,2122]],[[2091,2218,2092]],[[2100,2110,2218]],[[2239,2090,2092]],[[2199,2226,2091]],[[2196,2168,2167]],[[2196,2155,2168]],[[2215,2142,1983]],[[2215,2218,2141]],[[2215,2141,2142]],[[2218,2110,2141]],[[2241,2201,2083]],[[2241,2200,2201]],[[2184,2107,2106]],[[2153,2099,2098]],[[2208,2106,2152]],[[2006,2099,2153]],[[2151,2153,2152]],[[2151,2006,2153]],[[2134,2105,2015]],[[2106,2151,2152]],[[2134,2150,2105]],[[2103,2151,2150]],[[2237,2221,2164]],[[2219,2177,2214]],[[2164,2221,2220]],[[2246,2235,2219]],[[2164,2222,2166]],[[2220,2214,2222]],[[2247,2230,2233]],[[2234,2231,2182]],[[1976,2243,2087]],[[1975,1974,2061]],[[2139,2042,2125]],[[2040,2064,2041]],[[2138,2125,2038]],[[2138,2139,2125]],[[1985,2173,1982]],[[2143,2144,2217]],[[2184,2106,2208]],[[2105,2150,2106]],[[2144,2172,2145]],[[2225,1939,2172]],[[352,2028,351]],[[2027,2115,2028]],[[2225,2210,1970]],[[2210,2172,2053]],[[2132,1972,2127]],[[1971,2053,1972]],[[2247,2127,2042]],[[1972,2053,2127]],[[1998,1997,2118]],[[2224,2083,2117]],[[2224,2117,1997]],[[2022,2021,2117]],[[2100,2226,2029]],[[2100,2091,2226]],[[2187,1998,2058]],[[2187,2248,1998]],[[2051,2195,2021]],[[2051,2050,2195]],[[2112,2078,1954]],[[2111,2076,2078]],[[1936,2181,1942]],[[1936,1940,2181]],[[2068,1949,2232]],[[1948,2182,1949]],[[1970,2210,1971]],[[2225,2172,2210]],[[2173,2043,1983]],[[2173,2143,2043]],[[2143,2217,2043]],[[2144,2228,2216]],[[2131,2132,1948]],[[1970,1972,2132]],[[2245,2236,2111]],[[2177,2219,2235]],[[2029,2248,2100]],[[2029,1996,2248]],[[1997,1996,2224]],[[2030,2197,2031]],[[2224,1996,2031]],[[1998,2248,1996]],[[2031,2082,2224]],[[2031,2197,2082]],[[347,1956,1936]],[[2068,2231,1957]],[[2234,1957,2231]],[[1958,1940,1936]],[[2177,2235,2236]],[[2237,2076,2235]],[[2089,2090,1979]],[[2092,2228,2239]],[[2227,2090,2239]],[[2199,2091,2090]],[[1979,2227,2145]],[[1979,2090,2227]],[[2220,2219,2214]],[[2246,2237,2235]],[[2221,2246,2219]],[[2221,2237,2246]],[[2108,2207,2193]],[[2107,2184,2207]],[[2193,2183,2179]],[[2207,2184,2183]],[[2026,2025,2204]],[[2026,1934,2024]],[[2202,2024,351]],[[2202,2025,2024]],[[2167,2157,2073]],[[2168,2162,2157]],[[2234,1958,1957]],[[2234,1943,1958]],[[2099,2005,2097]],[[2099,2006,2005]],[[2177,2245,2178]],[[2177,2236,2245]],[[1986,2084,2054]],[[1986,292,2084]],[[2136,2171,2002]],[[2136,2006,2171]],[[2148,2147,1964]],[[2148,2137,2147]],[[348,2086,2206]],[[348,349,2086]],[[2248,2101,2100]],[[2248,2187,2101]],[[2110,2037,2036]],[[2101,2187,2037]],[[2187,2013,2037]],[[2015,2036,2013]],[[2087,2243,2061]],[[1976,2066,2243]],[[2047,2223,1994]],[[2047,2196,2223]],[[1941,1944,1946]],[[1941,1945,1944]],[[2234,2230,1943]],[[2069,2071,2074]],[[2165,2114,2113]],[[1946,2074,2114]],[[2182,2233,2234]],[[2140,2139,2069]],[[2127,2247,2182]],[[2247,2140,2230]],[[2140,2069,2230]],[[2180,2070,2069]],[[2182,2247,2233]],[[2042,2140,2247]],[[2071,1953,2077]],[[2071,1951,1953]],[[2077,1953,1955]],[[1951,1950,1953]],[[2075,2077,2163]],[[1955,2078,2077]],[[2197,2059,1934]],[[2238,2060,2059]],[[1977,1965,1966]],[[1977,1961,1965]],[[2116,2079,2203]],[[2116,2080,2079]],[[2012,2185,2229]],[[2012,2011,2185]],[[2144,2216,2217]],[[2228,2092,2216]],[[2103,2006,2151]],[[2103,2171,2006]],[[2206,1935,348]],[[2206,2057,1935]],[[2125,2039,2038]],[[2125,2122,2039]],[[1960,2244,1967]],[[2064,2040,2244]],[[2194,2019,2118]],[[2194,2176,2019]],[[2064,2126,2041]],[[2064,2063,2126]],[[2129,2130,2115]],[[2211,2240,2130]],[[2148,2070,2180]],[[2148,1951,2070]],[[2194,2049,2175]],[[2118,2050,2049]],[[2146,2213,1937]],[[2212,2209,2213]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222354ba-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a0e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2249,2250,2251]],[[2249,2251,2252]],[[2252,2251,2253]],[[2251,344,345]],[[2253,2251,345]],[[2250,344,2251]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222465d8-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2254,2255,2256]],[[2257,2254,2256]],[[2258,2254,2257]],[[2258,2259,2254]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22250278-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2260,2261,2262]],[[2263,2264,2265]],[[2266,2267,2268]],[[2269,2270,2271]],[[2272,2273,2274]],[[2272,2274,2275]],[[2276,2277,2270]],[[2277,2273,2270]],[[2278,2279,2280]],[[2281,2274,2282]],[[2283,2284,2285]],[[2286,2287,2288]],[[2289,2281,2284]],[[2290,2291,2292]],[[2293,2294,2295]],[[2296,2290,2297]],[[2298,2296,2297]],[[2299,2292,2300]],[[2301,2302,2303]],[[2304,2305,2306]],[[2307,2308,2309]],[[2310,2311,2312]],[[2313,2314,2312]],[[2315,2316,2317]],[[2318,2319,2320]],[[2321,2322,2323]],[[2318,2324,2319]],[[2319,2324,2325]],[[2326,2327,2328]],[[2328,2329,2330]],[[2331,2311,2310]],[[2314,2313,2332]],[[2333,2334,2335]],[[2336,2308,2322]],[[2337,2338,2339]],[[2340,2341,2342]],[[2343,2344,2345]],[[2346,2347,2348]],[[2349,2350,2351]],[[2352,2353,2354]],[[2353,2352,2355]],[[2356,2357,2358]],[[2359,2360,2358]],[[2361,2362,2363]],[[2360,2348,2364]],[[2365,2366,2367]],[[2365,2368,2366]],[[2365,2369,2370]],[[2345,2371,2343]],[[2345,2344,2372]],[[2373,2374,2375]],[[2363,2362,2376]],[[2377,2378,2379]],[[2380,2381,2382]],[[2375,2374,2377]],[[2377,2380,2378]],[[2341,2383,2342]],[[2384,2385,2386]],[[2385,2387,2388]],[[2384,2373,2389]],[[2390,2385,2391]],[[2383,2392,2393]],[[2394,2387,2395]],[[2396,2335,2397]],[[2398,2399,2400]],[[2401,2402,2403]],[[2401,2404,2402]],[[2405,2400,2335]],[[2406,2405,2335]],[[2407,2408,2409]],[[2410,2411,2412]],[[2412,2411,2413]],[[2339,2338,2414]],[[2411,2415,2416]],[[2417,2418,2419]],[[2420,2421,2422]],[[2423,2424,2425]],[[2423,2426,2424]],[[2427,2424,2428]],[[2429,2430,2431]],[[2432,2433,2434]],[[2435,2436,2437]],[[2306,2438,2439]],[[2440,2441,2442]],[[2443,2444,2445]],[[2443,2446,2447]],[[2448,2445,2449]],[[2450,2451,2438]],[[2452,2453,2454]],[[2455,2456,2457]],[[2458,2444,2459]],[[2460,2461,2462]],[[2463,2464,2465]],[[2466,2467,2468]],[[2452,2440,2453]],[[2469,2470,2471]],[[2472,2264,2473]],[[2266,2474,2267]],[[2475,2268,2267]],[[2475,2476,2268]],[[2475,2477,2476]],[[2466,2478,2475]],[[2475,2478,2477]],[[2466,2468,2478]],[[2466,2479,2467]],[[2480,2481,2479]],[[2479,2481,2467]],[[2480,2482,2483]],[[2481,2480,2483]],[[2484,2482,2485]],[[2486,2487,2303]],[[2488,2489,2490]],[[2491,2492,2488]],[[2493,2494,2495]],[[2496,2497,2489]],[[2498,2499,2496]],[[2500,2501,2502]],[[2503,2504,2500]],[[2505,2506,2507]],[[2419,2418,2508]],[[2469,2487,2486]],[[2509,2260,2510]],[[2511,2469,2486]],[[2510,2302,2301]],[[2302,2486,2303]],[[2261,2260,2509]],[[2260,2302,2510]],[[2509,2483,2261]],[[2483,2484,2261]],[[2483,2482,2484]],[[2512,2513,2514]],[[2465,2515,2516]],[[2517,2485,2518]],[[2516,2485,2482]],[[2516,2518,2485]],[[2519,2520,2521]],[[2522,2523,2524]],[[2455,2457,2441]],[[2525,2526,2527]],[[2528,2451,2450]],[[2450,2438,2306]],[[2529,2530,2531]],[[2532,2533,2534]],[[2535,2536,2537]],[[2538,2419,2539]],[[2540,2541,2542]],[[2534,2430,2543]],[[2544,2545,2501]],[[2546,2507,2502]],[[2547,2536,2530]],[[2548,2549,2420]],[[2415,2541,2550]],[[2551,2552,2553]],[[2287,2286,2295]],[[2295,2554,2293]],[[2293,2554,2555]],[[2282,2274,2556]],[[2294,2557,2290]],[[2555,2554,2557]],[[2300,2558,2556]],[[2282,2554,2288]],[[2352,2356,2358]],[[2348,2360,2359]],[[2528,2459,2451]],[[2459,2444,2451]],[[2559,2560,2561]],[[2501,2546,2502]],[[2561,2544,2501]],[[2562,2545,2544]],[[2563,2564,2565]],[[2566,2567,2568]],[[2569,2570,2571]],[[2436,2542,2572]],[[2264,2573,2265]],[[2501,2545,2546]],[[2574,2434,2306]],[[2420,2575,2548]],[[2417,2419,2576]],[[2493,2495,2562]],[[2577,2578,2579]],[[2580,2316,2324]],[[2333,2581,2572]],[[2582,2583,2584]],[[2402,2398,2405]],[[2399,2404,2585]],[[2586,2587,2588]],[[2589,2495,2494]],[[2590,2591,2592]],[[2588,2593,2594]],[[2553,2537,2536]],[[2595,2508,2596]],[[2535,2597,2582]],[[2338,2322,2414]],[[2598,2599,2349]],[[2599,2600,2601]],[[2602,2381,2603]],[[2602,2362,2382]],[[2474,2604,2605]],[[2474,2269,2267]],[[2471,2473,2469]],[[2264,2487,2473]],[[2606,2607,2608]],[[2609,2610,2489]],[[2611,2612,2613]],[[2614,2615,2338]],[[2616,2442,2525]],[[2617,2618,2619]],[[2620,2266,2263]],[[2268,2264,2263]],[[2557,2554,2282]],[[2288,2281,2282]],[[2357,2359,2358]],[[2357,2348,2359]],[[2356,2346,2357]],[[2367,2621,2622]],[[2598,2349,2351]],[[2601,2350,2349]],[[2305,2543,2429]],[[2623,2534,2543]],[[2557,2291,2290]],[[2557,2558,2291]],[[2381,2380,2603]],[[2382,2362,2361]],[[2624,2574,2439]],[[2304,2623,2543]],[[2379,2622,2621]],[[2361,2363,2622]],[[2625,2626,2279]],[[2626,2627,2283]],[[2628,2629,2524]],[[2630,2440,2442]],[[2294,2555,2557]],[[2294,2293,2555]],[[2398,2402,2399]],[[2392,2631,2395]],[[2632,2512,2633]],[[2634,2516,2482]],[[2521,2635,2464]],[[2617,2619,2515]],[[2290,2636,2505]],[[2299,2300,2637]],[[2507,2506,2502]],[[2607,2638,2639]],[[2471,2640,2472]],[[2640,2641,2620]],[[2642,2643,2644]],[[2500,2502,2643]],[[2515,2465,2635]],[[2521,2464,2632]],[[2561,2645,2493]],[[2594,2494,2645]],[[2444,2458,2445]],[[2456,2646,2458]],[[2379,2378,2622]],[[2377,2647,2380]],[[2648,2534,2623]],[[2533,2649,2430]],[[2650,2651,2623]],[[2596,2649,2648]],[[2369,2652,2371]],[[2371,2652,2343]],[[2344,2363,2376]],[[2344,2652,2363]],[[2635,2653,2464]],[[2654,2655,2656]],[[2464,2513,2632]],[[2512,2628,2657]],[[2434,2304,2306]],[[2433,2432,2658]],[[2433,2658,2304]],[[2432,2426,2658]],[[2428,2426,2432]],[[2423,2659,2575]],[[2610,2660,2496]],[[2499,2497,2496]],[[2416,2415,2661]],[[2411,2410,2334]],[[2319,2325,2328]],[[2662,2316,2663]],[[2603,2647,2374]],[[2603,2380,2647]],[[2664,2307,2309]],[[2307,2312,2308]],[[2647,2377,2374]],[[2377,2379,2375]],[[2498,2665,2666]],[[2498,2660,2665]],[[2667,2565,2331]],[[2564,2566,2668]],[[2493,2562,2544]],[[2669,2545,2562]],[[2655,2616,2527]],[[2657,2670,2671]],[[2340,2375,2672]],[[2340,2373,2375]],[[2290,2292,2636]],[[2673,2558,2300]],[[2445,2674,2454]],[[2445,2646,2674]],[[2263,2266,2268]],[[2263,2265,2620]],[[2392,2585,2675]],[[2390,2387,2385]],[[2676,2396,2397]],[[2677,2406,2335]],[[2678,2611,2583]],[[2591,2588,2576]],[[2586,2679,2680]],[[2418,2681,2682]],[[2645,2683,2594]],[[2660,2498,2496]],[[2684,2683,2645]],[[2587,2685,2576]],[[2684,2560,2559]],[[2684,2645,2560]],[[2380,2382,2378]],[[2381,2602,2382]],[[2437,2436,2572]],[[2334,2677,2335]],[[2552,2686,2437]],[[2435,2687,2436]],[[2651,2650,2540]],[[2548,2575,2661]],[[2542,2688,2540]],[[2569,2689,2690]],[[2687,2691,2688]],[[2623,2304,2692]],[[2540,2691,2651]],[[2686,2552,2693]],[[2572,2542,2541]],[[2436,2687,2542]],[[2694,2570,2695]],[[2571,2693,2569]],[[2354,2353,2351]],[[2352,2358,2355]],[[2677,2410,2412]],[[2677,2334,2410]],[[2594,2696,2589]],[[2414,2669,2696]],[[2697,2563,2565]],[[2698,2564,2563]],[[2699,2583,2611]],[[2613,2337,2591]],[[2415,2334,2541]],[[2415,2411,2334]],[[2294,2296,2298]],[[2294,2290,2296]],[[2593,2339,2696]],[[2593,2696,2594]],[[2696,2339,2414]],[[2588,2591,2337]],[[2504,2559,2501]],[[2606,2608,2700]],[[2323,2701,2437]],[[2702,2547,2689]],[[2628,2524,2523]],[[2525,2441,2461]],[[2557,2556,2558]],[[2274,2273,2556]],[[2400,2585,2397]],[[2404,2675,2585]],[[2635,2465,2653]],[[2516,2634,2463]],[[2666,2638,2607]],[[2665,2639,2638]],[[2541,2333,2572]],[[2541,2334,2333]],[[2703,2704,2470]],[[2705,2666,2607]],[[2639,2660,2706]],[[2639,2665,2660]],[[2540,2549,2550]],[[2707,2692,2421]],[[2520,2519,2708]],[[2632,2513,2512]],[[2709,2629,2634]],[[2657,2523,2670]],[[2710,2369,2371]],[[2370,2368,2365]],[[2648,2695,2596]],[[2648,2694,2695]],[[2415,2550,2661]],[[2541,2540,2550]],[[2582,2678,2583]],[[2597,2612,2678]],[[2539,2611,2711]],[[2678,2612,2611]],[[2333,2712,2581]],[[2407,2664,2309]],[[2572,2581,2437]],[[2321,2336,2322]],[[2581,2323,2437]],[[2321,2713,2407]],[[2279,2626,2285]],[[2279,2278,2625]],[[2514,2629,2628]],[[2514,2634,2629]],[[2714,2520,2708]],[[2714,2618,2520]],[[2715,2698,2697]],[[2715,2564,2698]],[[2460,2671,2670]],[[2716,2708,2633]],[[2460,2462,2671]],[[2714,2708,2671]],[[2716,2512,2657]],[[2628,2523,2657]],[[2470,2469,2511]],[[2473,2487,2469]],[[2623,2651,2570]],[[2691,2686,2717]],[[2571,2651,2691]],[[2571,2570,2651]],[[2571,2717,2693]],[[2571,2691,2717]],[[2718,2319,2328]],[[2718,2578,2719]],[[2669,2546,2545]],[[2669,2507,2546]],[[2706,2608,2639]],[[2720,2705,2607]],[[2639,2608,2607]],[[2700,2683,2684]],[[2437,2721,2552]],[[2701,2615,2722]],[[2721,2701,2722]],[[2323,2322,2723]],[[2537,2721,2722]],[[2437,2701,2721]],[[2724,2427,2428]],[[2725,2659,2425]],[[2331,2726,2311]],[[2317,2311,2727]],[[2728,2567,2564]],[[2568,2315,2317]],[[2564,2668,2565]],[[2726,2727,2311]],[[2430,2429,2543]],[[2528,2729,2459]],[[2554,2286,2288]],[[2554,2295,2286]],[[2521,2617,2635]],[[2619,2518,2515]],[[2644,2730,2642]],[[2620,2265,2573]],[[2502,2506,2643]],[[2507,2290,2505]],[[2731,2505,2636]],[[2732,2506,2505]],[[2674,2733,2734]],[[2456,2458,2457]],[[2695,2569,2596]],[[2695,2570,2569]],[[2691,2540,2688]],[[2650,2707,2540]],[[2542,2687,2688]],[[2686,2691,2687]],[[2703,2641,2704]],[[2573,2264,2472]],[[2471,2472,2473]],[[2471,2470,2704]],[[2471,2704,2640]],[[2735,2500,2642]],[[2643,2642,2500]],[[2730,2736,2737]],[[2650,2692,2707]],[[2658,2426,2423]],[[2633,2519,2632]],[[2520,2618,2521]],[[2428,2424,2426]],[[2427,2724,2725]],[[2648,2532,2534]],[[2648,2649,2532]],[[2660,2610,2706]],[[2489,2488,2609]],[[2738,2735,2641]],[[2642,2730,2735]],[[2566,2726,2668]],[[2566,2568,2726]],[[2285,2626,2283]],[[2625,2280,2627]],[[2283,2289,2284]],[[2283,2627,2289]],[[2623,2692,2650]],[[2421,2658,2422]],[[2739,2394,2631]],[[2739,2387,2394]],[[2623,2694,2648]],[[2623,2570,2694]],[[2559,2561,2501]],[[2560,2645,2561]],[[2397,2341,2340]],[[2397,2585,2341]],[[2600,2355,2350]],[[2358,2350,2355]],[[2386,2385,2388]],[[2384,2389,2391]],[[2329,2715,2740]],[[2728,2564,2715]],[[2439,2574,2306]],[[2434,2433,2304]],[[2564,2567,2566]],[[2327,2326,2316]],[[2349,2599,2601]],[[2353,2355,2599]],[[2400,2399,2585]],[[2402,2404,2399]],[[2584,2531,2530]],[[2690,2689,2547]],[[2690,2547,2529]],[[2551,2693,2552]],[[2584,2530,2536]],[[2529,2547,2530]],[[2392,2395,2390]],[[2631,2394,2395]],[[2401,2675,2404]],[[2401,2631,2675]],[[2550,2548,2661]],[[2550,2549,2548]],[[2741,2697,2667]],[[2698,2563,2697]],[[2557,2282,2556]],[[2288,2287,2281]],[[2635,2617,2515]],[[2521,2618,2617]],[[2680,2679,2706]],[[2682,2742,2609]],[[2561,2493,2544]],[[2645,2494,2493]],[[2743,2370,2369]],[[2710,2368,2370]],[[2630,2656,2709]],[[2630,2442,2654]],[[2606,2700,2559]],[[2700,2608,2679]],[[2559,2700,2684]],[[2608,2706,2679]],[[2491,2488,2490]],[[2609,2742,2610]],[[2537,2553,2552]],[[2536,2547,2553]],[[2721,2537,2552]],[[2722,2597,2535]],[[2624,2434,2574]],[[2624,2432,2434]],[[2580,2318,2579]],[[2320,2718,2719]],[[2273,2637,2556]],[[2292,2291,2673]],[[2636,2299,2277]],[[2300,2556,2637]],[[2277,2299,2637]],[[2636,2292,2299]],[[2685,2417,2576]],[[2685,2681,2418]],[[2335,2400,2397]],[[2405,2398,2400]],[[2445,2458,2646]],[[2455,2441,2440]],[[2700,2679,2683]],[[2586,2680,2587]],[[2588,2587,2576]],[[2588,2594,2586]],[[2273,2277,2637]],[[2636,2276,2731]],[[2306,2305,2450]],[[2304,2543,2305]],[[2277,2276,2636]],[[2732,2505,2731]],[[2422,2423,2575]],[[2424,2427,2725]],[[2659,2423,2425]],[[2422,2658,2423]],[[2514,2464,2634]],[[2464,2653,2465]],[[2634,2464,2463]],[[2514,2513,2464]],[[2534,2533,2430]],[[2532,2649,2533]],[[2744,2745,2352]],[[2746,2621,2367]],[[2357,2346,2348]],[[2745,2744,2747]],[[2366,2364,2367]],[[2348,2347,2364]],[[2747,2347,2346]],[[2744,2621,2347]],[[2652,2367,2622]],[[2364,2746,2367]],[[2363,2652,2622]],[[2344,2343,2652]],[[2307,2313,2312]],[[2332,2740,2314]],[[2748,2314,2740]],[[2565,2668,2331]],[[2314,2310,2312]],[[2314,2667,2331]],[[2314,2331,2310]],[[2668,2726,2331]],[[2336,2407,2309]],[[2332,2313,2307]],[[2332,2664,2409]],[[2332,2307,2664]],[[2465,2516,2463]],[[2515,2518,2516]],[[2672,2379,2621]],[[2672,2375,2379]],[[2459,2729,2458]],[[2431,2441,2457]],[[2338,2723,2322]],[[2701,2323,2723]],[[2722,2615,2597]],[[2701,2723,2615]],[[2726,2568,2727]],[[2315,2327,2316]],[[2749,2272,2275]],[[2749,2273,2272]],[[2347,2746,2364]],[[2347,2621,2746]],[[2292,2673,2300]],[[2291,2558,2673]],[[2732,2276,2736]],[[2750,2605,2604]],[[2640,2620,2573]],[[2737,2604,2620]],[[2447,2446,2448]],[[2443,2445,2446]],[[2652,2365,2367]],[[2652,2369,2365]],[[2498,2666,2470]],[[2665,2638,2666]],[[2590,2613,2591]],[[2612,2597,2614]],[[2613,2338,2337]],[[2615,2723,2338]],[[2613,2614,2338]],[[2597,2615,2614]],[[2611,2613,2711]],[[2612,2614,2613]],[[2594,2589,2494]],[[2495,2669,2562]],[[2611,2539,2699]],[[2751,2531,2584]],[[2583,2751,2584]],[[2419,2508,2595]],[[2678,2582,2597]],[[2584,2536,2535]],[[2722,2535,2537]],[[2582,2584,2535]],[[2407,2336,2321]],[[2309,2308,2336]],[[2408,2407,2713]],[[2409,2664,2407]],[[2581,2321,2323]],[[2581,2713,2321]],[[2738,2641,2705]],[[2735,2730,2737]],[[2735,2752,2500]],[[2720,2606,2503]],[[2568,2317,2727]],[[2316,2311,2317]],[[2304,2421,2692]],[[2304,2658,2421]],[[2753,2448,2449]],[[2446,2445,2448]],[[2683,2586,2594]],[[2683,2679,2586]],[[2686,2435,2437]],[[2686,2687,2435]],[[2284,2281,2287]],[[2289,2627,2281]],[[2409,2408,2397]],[[2712,2333,2396]],[[2676,2408,2713]],[[2676,2397,2408]],[[2713,2712,2676]],[[2333,2335,2396]],[[2754,2531,2755]],[[2699,2539,2419]],[[2595,2755,2419]],[[2531,2751,2755]],[[2601,2600,2350]],[[2599,2355,2600]],[[2714,2462,2461]],[[2714,2671,2462]],[[2342,2383,2393]],[[2341,2585,2392]],[[2391,2342,2393]],[[2389,2340,2342]],[[2305,2528,2450]],[[2729,2431,2457]],[[2429,2528,2305]],[[2429,2431,2528]],[[2745,2356,2352]],[[2745,2346,2356]],[[2353,2598,2351]],[[2353,2599,2598]],[[2741,2748,2740]],[[2697,2565,2667]],[[2748,2667,2314]],[[2748,2741,2667]],[[2750,2276,2270]],[[2604,2736,2276]],[[2337,2593,2588]],[[2337,2339,2593]],[[2666,2705,2470]],[[2752,2503,2500]],[[2752,2738,2705]],[[2752,2735,2738]],[[2720,2752,2705]],[[2720,2503,2752]],[[2705,2703,2470]],[[2705,2641,2703]],[[2504,2606,2559]],[[2720,2607,2606]],[[2715,2741,2740]],[[2715,2697,2741]],[[2734,2733,2456]],[[2674,2646,2733]],[[2500,2504,2501]],[[2503,2606,2504]],[[2576,2592,2591]],[[2576,2419,2592]],[[2590,2538,2539]],[[2592,2419,2538]],[[2644,2732,2730]],[[2731,2276,2732]],[[2452,2455,2440]],[[2455,2734,2456]],[[2452,2734,2455]],[[2733,2646,2456]],[[2424,2725,2425]],[[2724,2659,2725]],[[2506,2644,2643]],[[2506,2732,2644]],[[2274,2627,2280]],[[2274,2281,2627]],[[2626,2625,2627]],[[2278,2280,2625]],[[2756,2718,2328]],[[2756,2578,2718]],[[2529,2754,2596]],[[2529,2531,2754]],[[2569,2693,2689]],[[2553,2547,2702]],[[2689,2693,2551]],[[2717,2686,2693]],[[2702,2551,2553]],[[2702,2689,2551]],[[2676,2712,2396]],[[2713,2581,2712]],[[2632,2519,2521]],[[2633,2708,2519]],[[2590,2539,2711]],[[2419,2755,2699]],[[2751,2699,2755]],[[2751,2583,2699]],[[2696,2495,2589]],[[2696,2669,2495]],[[2472,2640,2573]],[[2704,2641,2640]],[[2737,2736,2604]],[[2730,2732,2736]],[[2276,2750,2604]],[[2270,2269,2757]],[[2620,2604,2474]],[[2750,2270,2757]],[[2605,2757,2474]],[[2605,2750,2757]],[[2620,2474,2266]],[[2757,2269,2474]],[[2707,2420,2549]],[[2422,2575,2420]],[[2420,2707,2421]],[[2549,2540,2707]],[[2587,2681,2685]],[[2706,2742,2682]],[[2508,2418,2492]],[[2417,2685,2418]],[[2492,2609,2488]],[[2492,2682,2609]],[[2671,2716,2657]],[[2514,2628,2512]],[[2708,2716,2671]],[[2633,2512,2716]],[[2418,2682,2492]],[[2681,2706,2682]],[[2523,2522,2670]],[[2654,2656,2630]],[[2522,2460,2670]],[[2522,2526,2460]],[[2524,2527,2522]],[[2442,2441,2525]],[[2526,2525,2461]],[[2527,2616,2525]],[[2460,2526,2461]],[[2522,2527,2526]],[[2524,2655,2527]],[[2524,2629,2655]],[[2709,2655,2629]],[[2709,2656,2655]],[[2616,2654,2442]],[[2616,2655,2654]],[[2641,2737,2620]],[[2641,2735,2737]],[[2489,2610,2496]],[[2742,2706,2610]],[[2613,2590,2711]],[[2592,2538,2590]],[[2378,2361,2622]],[[2378,2382,2361]],[[2663,2326,2328]],[[2663,2316,2326]],[[2728,2327,2567]],[[2329,2328,2327]],[[2567,2315,2568]],[[2567,2327,2315]],[[2325,2663,2328]],[[2662,2324,2316]],[[2325,2662,2663]],[[2325,2324,2662]],[[2447,2753,2449]],[[2447,2448,2753]],[[2454,2734,2452]],[[2454,2674,2734]],[[2329,2728,2715]],[[2329,2327,2728]],[[2754,2595,2596]],[[2754,2755,2595]],[[2391,2389,2342]],[[2373,2340,2389]],[[2392,2390,2393]],[[2385,2384,2391]],[[2393,2390,2391]],[[2395,2387,2390]],[[2458,2729,2457]],[[2528,2431,2729]],[[2745,2747,2346]],[[2744,2347,2747]],[[2579,2320,2719]],[[2319,2718,2320]],[[2579,2318,2320]],[[2580,2324,2318]],[[2710,2743,2369]],[[2710,2370,2743]],[[2596,2690,2529]],[[2596,2569,2690]],[[2341,2392,2383]],[[2675,2631,2392]],[[2719,2577,2579]],[[2719,2578,2577]],[[2360,2366,2368]],[[2360,2364,2366]],[[2681,2680,2706]],[[2681,2587,2680]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222836f6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cff49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2758,2759,2760]],[[2761,2762,2763]],[[2764,2765,2766]],[[2767,2768,2769]],[[2766,2770,2771]],[[2772,2761,2763]],[[2773,2774,2775]],[[2776,2773,2777]],[[2775,2774,2778]],[[2770,2772,2776]],[[2779,2780,2781]],[[2779,2782,2783]],[[2774,2784,2785]],[[2786,2787,2788]],[[2789,2790,2786]],[[2776,2774,2773]],[[2791,2792,2758]],[[2791,2793,2794]],[[2795,2794,2793]],[[2784,2796,2763]],[[2774,2797,2782]],[[2796,2776,2772]],[[2762,2794,2763]],[[2758,2795,2793]],[[2798,2794,2795]],[[2767,2759,2758]],[[2798,2795,2760]],[[2799,2800,2789]],[[2780,2779,2800]],[[2759,2798,2760]],[[2760,2795,2758]],[[2762,2791,2794]],[[2758,2793,2791]],[[2774,2785,2797]],[[2797,2783,2782]],[[2801,2802,2803]],[[2802,2768,2767]],[[2800,2790,2789]],[[2800,2783,2790]],[[2771,2770,2777]],[[2801,2803,2761]],[[2796,2772,2763]],[[2801,2765,2802]],[[2803,2762,2761]],[[2803,2792,2762]],[[2762,2792,2791]],[[2803,2802,2767]],[[2792,2767,2758]],[[2792,2803,2767]],[[2769,2759,2767]],[[2769,2798,2759]],[[2784,2804,2785]],[[2783,2800,2779]],[[2804,2797,2785]],[[2805,2787,2783]],[[2765,2764,2802]],[[2764,2768,2802]],[[2772,2801,2761]],[[2772,2770,2801]],[[2770,2765,2801]],[[2770,2766,2765]],[[2805,2783,2797]],[[2787,2790,2783]],[[2799,2780,2800]],[[2799,2781,2780]],[[2789,2786,2788]],[[2790,2787,2786]],[[2787,2784,2763]],[[2787,2804,2784]],[[2770,2776,2777]],[[2796,2784,2774]],[[2778,2774,2782]],[[2776,2796,2774]],[[2804,2805,2797]],[[2804,2787,2805]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2228f9ca-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef607d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2806,242,243]],[[244,2807,2806]],[[2807,241,2806]],[[245,2808,244]],[[2809,2810,2811]],[[2812,215,238]],[[2810,2813,238]],[[2814,213,215]],[[241,2807,2809]],[[2812,2813,2815]],[[2809,2807,2813]],[[245,247,261]],[[2807,244,2808]],[[2808,245,261]],[[2811,2810,238]],[[239,240,2809]],[[2814,2812,2815]],[[238,2813,2812]],[[213,2814,2815]],[[215,2812,2814]],[[244,2806,243]],[[241,242,2806]],[[2810,2809,2813]],[[240,241,2809]],[[239,2811,238]],[[239,2809,2811]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222920fb-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.2a5997ebc5054d16864de6fe20493984","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2816,2817,2818]],[[2819,2818,2820]],[[2821,2822,2820]],[[2817,2822,2818]],[[2819,2817,2823]],[[2822,2824,2818]],[[2819,2816,2818]],[[2823,2817,2816]],[[2822,2819,2820]],[[2823,2816,2819]],[[2819,2822,2817]],[[2821,2824,2822]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222b6a92-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5d1a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2825,2826,2827]],[[2827,2828,183]],[[2829,2828,2830]],[[2829,2831,2828]],[[2832,2827,183]],[[2828,182,183]],[[2826,2830,2828]],[[2833,2829,2834]],[[2835,2832,183]],[[2835,2827,2832]],[[182,2836,2834]],[[182,2831,2836]],[[2826,2828,2827]],[[2831,182,2828]],[[2825,2835,183]],[[2825,2827,2835]],[[2836,2833,2834]],[[2836,2831,2829]],[[2834,2829,2830]],[[2833,2836,2829]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222c557f-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2837,2838,2839]],[[2840,2841,2839]],[[2838,2842,2839]],[[2839,2843,2840]],[[2843,2839,2842]],[[2844,2845,2846]],[[2844,2843,2842]],[[2844,2847,2845]],[[2844,2848,2847]],[[2849,2847,2848]],[[2850,2851,2852]],[[2852,2851,2853]],[[2850,2849,2848]],[[2851,2850,2848]],[[2851,2854,2855]],[[2851,2848,2854]],[[2854,2848,2856]],[[2844,2842,2848]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222ddc12-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2857,184,185]],[[2857,185,2858]],[[185,186,2859]],[[2859,2860,185]],[[2861,2862,2863]],[[2864,2865,2866]],[[2867,2868,191]],[[2869,2870,2871]],[[2872,2873,2874]],[[2875,2876,2877]],[[2878,2879,2880]],[[2879,2881,2882]],[[2883,2873,2884]],[[2885,2886,2887]],[[2887,2886,2888]],[[2889,2890,2891]],[[2892,2893,2894]],[[2895,192,2894]],[[2896,2897,2898]],[[192,2867,191]],[[2870,2869,2899]],[[2900,2901,2902]],[[2903,2904,2905]],[[2906,189,2907]],[[2898,186,187]],[[2908,2909,2910]],[[2858,185,2860]],[[2911,2912,2913]],[[2914,2915,2916]],[[2917,2918,188]],[[188,189,2906]],[[2919,2920,2874]],[[2921,2922,2923]],[[2924,2925,2867]],[[2926,2927,2928]],[[2929,2930,2907]],[[2931,190,2932]],[[2933,2934,2928]],[[2935,2936,2937]],[[2893,2923,2938]],[[2939,2913,2912]],[[2940,2941,2942]],[[2942,2872,2920]],[[190,2943,189]],[[2929,2907,189]],[[2944,2945,2946]],[[2908,2910,2947]],[[2920,2872,2874]],[[2942,2921,2923]],[[2938,2875,2948]],[[2876,2913,2877]],[[2880,2882,2887]],[[2884,2941,2940]],[[2862,2906,2907]],[[2949,188,2906]],[[2876,2950,2874]],[[2951,2922,2950]],[[2881,2884,2952]],[[2940,2942,2923]],[[2911,2953,2954]],[[2911,2955,2953]],[[2938,2923,2875]],[[2877,2913,2948]],[[2896,2861,2956]],[[2957,2909,2908]],[[2876,2951,2950]],[[2876,2875,2951]],[[190,2931,2943]],[[2924,2867,192]],[[2950,2919,2874]],[[2950,2921,2919]],[[2958,2944,2959]],[[2958,2945,2944]],[[2921,2942,2920]],[[2960,2872,2942]],[[186,2898,2859]],[[2917,188,2862]],[[2895,2961,2962]],[[2892,2963,2964]],[[2945,2965,2909]],[[2958,2910,2965]],[[2885,2889,2886]],[[2885,2881,2952]],[[2895,2966,192]],[[2967,2968,2969]],[[2943,2929,189]],[[2943,2930,2929]],[[2862,2949,2906]],[[2862,188,2949]],[[2944,2903,2959]],[[2970,2900,2971]],[[2972,2973,2964]],[[2871,2948,2974]],[[2882,2881,2885]],[[2883,2884,2881]],[[2941,2960,2942]],[[2873,2872,2960]],[[2933,2869,2912]],[[2925,2868,2867]],[[2969,2865,2975]],[[2948,2913,2974]],[[187,2918,2898]],[[187,188,2918]],[[2879,2883,2881]],[[2879,2873,2883]],[[2961,2895,2894]],[[2976,2966,2895]],[[2954,2933,2912]],[[2934,2955,2928]],[[2945,2909,2977]],[[2965,2910,2909]],[[2858,2860,2947]],[[2860,2900,2902]],[[2946,2945,2977]],[[2958,2965,2945]],[[2971,2978,2979]],[[2946,2903,2944]],[[2930,2932,2980]],[[2905,2959,2903]],[[2936,2905,2981]],[[2936,2959,2905]],[[2869,2939,2912]],[[2974,2913,2939]],[[2873,2941,2884]],[[2873,2960,2941]],[[2937,2982,2935]],[[2983,2915,2914]],[[2984,2916,2864]],[[2985,2981,2904]],[[2865,2864,2975]],[[2915,2983,2986]],[[2987,2932,2975]],[[190,191,2868]],[[2930,2931,2932]],[[2930,2943,2931]],[[2940,2923,2964]],[[2922,2951,2875]],[[2948,2875,2877]],[[2923,2922,2875]],[[2988,2967,2969]],[[2864,2987,2975]],[[2916,2915,2864]],[[2986,2932,2987]],[[2864,2915,2987]],[[2914,2984,2989]],[[2933,2928,2990]],[[2991,2982,2985]],[[2992,2978,2993]],[[2992,2979,2978]],[[2868,2925,2994]],[[2871,2870,2938]],[[2907,2863,2862]],[[2896,2898,2918]],[[2995,2996,2927]],[[2955,2911,2928]],[[2990,2928,2996]],[[2911,2936,2926]],[[2997,2908,2947]],[[2997,2957,2908]],[[2899,2990,2995]],[[2869,2933,2990]],[[2893,2892,2964]],[[2894,2963,2892]],[[2919,2921,2920]],[[2950,2922,2921]],[[2973,2890,2952]],[[2889,2885,2952]],[[2886,2891,2963]],[[2886,2889,2891]],[[2995,2998,2926]],[[2999,2926,2991]],[[2971,2986,2978]],[[3000,3001,2999]],[[3001,3000,2989]],[[3002,2978,2983]],[[2904,2901,2985]],[[2980,2907,2930]],[[2985,2901,2992]],[[2863,2907,2980]],[[2995,2926,3001]],[[2989,2995,3001]],[[2891,2890,2973]],[[2952,2884,2940]],[[2991,2926,2982]],[[2928,2911,2926]],[[2984,2995,2989]],[[2927,2926,2998]],[[2899,2995,2984]],[[2990,2996,2995]],[[2981,2937,2936]],[[2981,2985,2937]],[[2900,2970,2901]],[[2904,2903,2946]],[[2901,2970,2992]],[[2981,2905,2904]],[[2992,2970,2979]],[[3003,2946,2977]],[[2977,2902,3003]],[[2902,2957,2860]],[[2904,3003,2901]],[[2860,2997,2947]],[[2977,2957,2902]],[[2977,2909,2957]],[[2997,2860,2957]],[[2859,2897,2860]],[[2954,2934,2933]],[[2953,2955,2934]],[[2983,2978,2986]],[[2863,2971,2861]],[[2986,2863,2980]],[[2897,2900,2860]],[[2986,2971,2863]],[[2979,2970,2971]],[[2932,2986,2980]],[[2987,2915,2986]],[[2911,2954,2912]],[[2953,2934,2954]],[[2983,3000,3002]],[[3001,2926,2999]],[[2973,2952,2940]],[[2890,2889,2952]],[[2964,2973,2940]],[[2964,2963,2972]],[[2891,2972,2963]],[[2891,2973,2972]],[[2899,2866,2968]],[[2984,2864,2866]],[[2865,2968,2866]],[[2962,2961,2938]],[[2926,2935,2982]],[[2926,2936,2935]],[[2932,2868,2994]],[[2932,190,2868]],[[2966,2988,3004]],[[2994,2975,2932]],[[2966,3004,192]],[[2967,2976,2962]],[[3004,2988,2925]],[[2968,2865,2969]],[[2994,2988,2969]],[[2966,2976,2988]],[[2901,3003,2902]],[[2904,2946,3003]],[[2984,2914,2916]],[[2989,2983,2914]],[[3002,2993,2978]],[[2982,2937,2985]],[[2993,2985,2992]],[[2993,2991,2985]],[[3002,2991,2993]],[[3002,2999,2991]],[[2887,2882,2885]],[[2880,2879,2882]],[[2988,2994,2925]],[[2969,2975,2994]],[[3002,3000,2999]],[[2983,2989,3000]],[[2971,2956,2861]],[[2971,2900,2956]],[[2990,2899,2869]],[[2984,2866,2899]],[[2948,2871,2938]],[[2899,2968,2962]],[[2962,2938,2870]],[[2961,2893,2938]],[[2895,2962,2976]],[[2870,2899,2962]],[[2976,2967,2988]],[[2962,2968,2967]],[[2939,2871,2974]],[[2939,2869,2871]],[[2900,2897,2956]],[[2918,2861,2896]],[[2898,2897,2859]],[[2896,2956,2897]],[[2861,2917,2862]],[[2861,2918,2917]],[[3004,2924,192]],[[3004,2925,2924]],[[2923,2893,2964]],[[2961,2894,2893]],[[2995,2927,2998]],[[2996,2928,2927]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222e2a53-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3005,3006,3007]],[[3005,3007,3008]],[[3008,3009,3010]],[[3008,3011,3009]],[[3008,3007,3011]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222ec5e4-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3012,3013,3014]],[[3013,3015,3014]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2230c204-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3016,3017,3018]],[[3016,3019,3020]],[[3020,3019,3021]],[[3021,3019,3022]],[[3022,3019,3023]],[[3016,3018,3019]],[[3017,3024,3018]],[[3025,3026,3024]],[[3024,3026,3027]],[[3028,3025,3024]],[[3017,3028,3024]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2231105d-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3029,3030,3031]],[[3030,3032,3031]],[[3031,3033,3034]],[[3031,3032,3033]],[[3033,3032,3035]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2231d343-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.21ab1c490f1540238f61717fe02159de","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3036,3037,3038]],[[3036,3038,3039]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2232218d-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef749949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3040,3041,3042]],[[3043,3044,3045]],[[3045,3046,3047]],[[2257,3043,2258]],[[2256,3048,3049]],[[3048,2256,3050]],[[3051,2256,2255]],[[3052,2256,3053]],[[3052,3050,2256]],[[3054,2256,3055]],[[2259,3056,3057]],[[3058,3059,3060]],[[3061,2256,3062]],[[3059,1788,1782]],[[3063,2256,3064]],[[3063,3062,2256]],[[3065,2256,3051]],[[3065,3064,2256]],[[3066,3051,2255]],[[3067,3066,2255]],[[3068,2255,3069]],[[3069,3070,3071]],[[3071,3072,3073]],[[3073,3072,3074]],[[3074,3075,3076]],[[3058,3060,3077]],[[3059,1782,3060]],[[3076,3078,3077]],[[3061,3079,2256]],[[2256,3079,3080]],[[3078,3058,3077]],[[3080,3055,2256]],[[3078,3076,3075]],[[3075,3074,3072]],[[3072,3071,3070]],[[3070,3069,3081]],[[3081,3069,2255]],[[2255,3082,3083]],[[3083,3081,2255]],[[2259,3084,3082]],[[2259,3085,3084]],[[2259,3086,3085]],[[2259,3087,3086]],[[2259,3088,3087]],[[2259,3089,3088]],[[2259,3057,3089]],[[3090,3056,2259]],[[3091,3090,2259]],[[3092,3091,2259]],[[3047,3093,3043]],[[2259,3094,3092]],[[2259,3095,3094]],[[2259,3096,3095]],[[2259,3097,3096]],[[2259,3098,3097]],[[2259,2258,3098]],[[3043,3093,3099]],[[3045,3047,3043]],[[3045,3042,3046]],[[3100,3101,3102]],[[3100,3041,3101]],[[3046,3103,3104]],[[3105,3106,3107]],[[3108,3103,3046]],[[3105,3109,3106]],[[3103,3110,3111]],[[3103,3112,3110]],[[3041,3100,3042]],[[3112,3113,3114]],[[3115,3116,3117]],[[3115,3118,3116]],[[3119,3120,3121]],[[3122,3123,3124]],[[3125,3126,3127]],[[3128,3129,3126]],[[3130,3131,3129]],[[3132,3133,3134]],[[3135,1830,1779]],[[3136,3137,3138]],[[3138,3139,3140]],[[3140,3141,3142]],[[3142,3143,3144]],[[3144,3145,3146]],[[3146,3122,3147]],[[3147,3122,3124]],[[3124,3123,3148]],[[3135,1779,3149]],[[3148,3150,3149]],[[3151,3152,3136]],[[3151,3132,3153]],[[3149,3150,3135]],[[3133,3131,3154]],[[3155,3156,3127]],[[3150,3148,3123]],[[3157,3156,3155]],[[3157,3119,3158]],[[3146,3145,3122]],[[3120,3118,3115]],[[3145,3144,3143]],[[3139,3141,3140]],[[3143,3142,3141]],[[3137,3139,3138]],[[3152,3137,3136]],[[3159,3160,3161]],[[3162,3163,3117]],[[3162,3160,3163]],[[3152,3151,3153]],[[3153,3132,3134]],[[3130,3154,3131]],[[3134,3133,3154]],[[3128,3130,3129]],[[3125,3128,3126]],[[3156,3125,3127]],[[3158,3156,3157]],[[3121,3158,3119]],[[3115,3121,3120]],[[3163,3115,3117]],[[3113,3164,3161]],[[3160,3159,3163]],[[3164,3113,3102]],[[3161,3164,3159]],[[3108,3165,3103]],[[3101,3041,3166]],[[3164,3101,3167]],[[3168,3169,3170]],[[3171,3172,3173]],[[3174,3175,3176]],[[3177,3178,3179]],[[3175,3180,3179]],[[3181,3182,3183]],[[3184,3185,3186]],[[3187,3188,3189]],[[3190,1771,1773]],[[3191,3192,3193]],[[3188,3194,3193]],[[3192,3195,3196]],[[3196,3171,3173]],[[3173,3172,3197]],[[3198,3199,3200]],[[3190,1773,3199]],[[3197,3201,3200]],[[3202,3203,3189]],[[3202,3183,3204]],[[3199,3198,3190]],[[3181,3185,3205]],[[3200,3201,3198]],[[3186,3178,3206]],[[3207,3208,3176]],[[3201,3197,3172]],[[3209,3210,3207]],[[3209,3211,3212]],[[3196,3195,3171]],[[3211,3169,3213]],[[3195,3192,3191]],[[3191,3193,3194]],[[3194,3188,3187]],[[3204,3203,3202]],[[3187,3189,3203]],[[3182,3204,3183]],[[3205,3182,3181]],[[3166,3214,3170]],[[3185,3184,3205]],[[3186,3206,3184]],[[3178,3177,3206]],[[3179,3180,3177]],[[3175,3174,3180]],[[3176,3208,3174]],[[3207,3210,3208]],[[3209,3212,3210]],[[3211,3213,3212]],[[3169,3168,3213]],[[3170,3214,3168]],[[3166,3041,3214]],[[3054,3053,2256]],[[2258,3099,3098]],[[3215,3216,2257]],[[2255,3068,3067]],[[2259,2255,2254]],[[2259,3082,2255]],[[3215,2257,3049]],[[3049,2257,2256]],[[3216,3043,2257]],[[3043,3099,2258]],[[3164,3102,3101]],[[3113,3112,3165]],[[3113,3165,3102]],[[3112,3103,3165]],[[3042,3100,3046]],[[3108,3046,3100]],[[3109,3217,3107]],[[3109,3110,3106]],[[3111,3109,3107]],[[3111,3110,3109]],[[3217,3105,3107]],[[3217,3109,3105]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2c15e416-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efc86849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3218,3219,3220]],[[3221,3222,3223]],[[3224,3225,3226]],[[3227,3228,3221]],[[3229,3230,3231]],[[3232,3233,3234]],[[3235,3236,3237]],[[3238,3239,3240]],[[3241,3242,3243]],[[3243,3244,3241]],[[3241,3244,3245]],[[3246,3247,3248]],[[3249,3245,3250]],[[3251,3247,3252]],[[3253,3254,3255]],[[3256,3252,3257]],[[3256,3251,3252]],[[3245,3258,3259]],[[3260,3261,3218]],[[3262,3225,3263]],[[3264,3220,3265]],[[3266,3265,3220]],[[3267,3268,3266]],[[3269,3267,3270]],[[3271,3269,3270]],[[3272,3271,3273]],[[3274,3272,3275]],[[3276,3277,3278]],[[3279,3280,3281]],[[3282,3283,3284]],[[3285,3286,3287]],[[3288,3289,3290]],[[3291,3292,3293]],[[3294,3295,3296]],[[3297,3298,3299]],[[3297,3294,3300]],[[3297,3301,3298]],[[3297,3302,3301]],[[3296,3295,3303]],[[3297,3304,3302]],[[3297,3300,3304]],[[3294,3305,3300]],[[3306,3289,3307]],[[3295,3308,3303]],[[3308,3309,3310]],[[3291,3311,3309]],[[3293,3312,3311]],[[3313,3314,3315]],[[3306,3292,3289]],[[3289,3288,3307]],[[3316,3317,3288]],[[3318,3319,3320]],[[3321,3287,3317]],[[3319,3322,3323]],[[3324,3318,3320]],[[3325,3326,3327]],[[3319,3323,3320]],[[3328,3329,3330]],[[3322,3331,3332]],[[3329,3333,3330]],[[3334,3282,3335]],[[3336,3337,3338]],[[3284,3339,3335]],[[3340,3276,3341]],[[3330,3342,3343]],[[3278,3344,3274]],[[3345,3341,3346]],[[3278,3347,3341]],[[3274,3275,3347]],[[3272,3273,3275]],[[3271,3348,3273]],[[3271,3270,3348]],[[3267,3349,3270]],[[3267,3266,3349]],[[3268,3265,3266]],[[3350,3220,3264]],[[3218,3351,3219]],[[3352,3242,3241]],[[3352,3353,3354]],[[3355,3234,3242]],[[3356,3357,3358]],[[3359,3238,3240]],[[3227,3360,3361]],[[3244,3258,3245]],[[3333,3362,3330]],[[3363,3337,3336]],[[3343,3364,3346]],[[3365,3366,3340]],[[3346,3364,3367]],[[3368,3333,3363]],[[3282,3284,3335]],[[3369,3329,3339]],[[3335,3339,3370]],[[3284,3369,3339]],[[3327,3334,3335]],[[3283,3369,3284]],[[3343,3363,3364]],[[3333,3337,3363]],[[3371,3338,3346]],[[3366,3276,3340]],[[3372,3338,3373]],[[3371,3336,3338]],[[3287,3324,3320]],[[3324,3319,3318]],[[3316,3314,3317]],[[3315,3285,3374]],[[3337,3280,3373]],[[3337,3366,3280]],[[3313,3321,3317]],[[3374,3287,3321]],[[3367,3371,3346]],[[3367,3336,3371]],[[3375,3246,3376]],[[3359,3259,3238]],[[3328,3330,3370]],[[3343,3346,3370]],[[3364,3336,3367]],[[3364,3363,3336]],[[3253,3377,3254]],[[3375,3378,3379]],[[3365,3281,3366]],[[3280,3366,3281]],[[3380,3331,3322]],[[3322,3381,3380]],[[3382,3334,3327]],[[3381,3369,3334]],[[3345,3340,3341]],[[3383,3365,3340]],[[3384,3279,3281]],[[3373,3280,3279]],[[3372,3373,3279]],[[3338,3337,3373]],[[3253,3255,3385]],[[3248,3247,3386]],[[3253,3387,3251]],[[3386,3247,3251]],[[3376,3388,3389]],[[3376,3246,3254]],[[3389,3253,3251]],[[3254,3246,3248]],[[3290,3316,3288]],[[3290,3314,3316]],[[3286,3324,3287]],[[3286,3319,3324]],[[3390,3384,3365]],[[3346,3338,3384]],[[3314,3313,3317]],[[3314,3290,3315]],[[3362,3342,3330]],[[3362,3363,3343]],[[3389,3251,3256]],[[3387,3386,3251]],[[3362,3368,3363]],[[3362,3333,3368]],[[3389,3377,3253]],[[3388,3376,3377]],[[3255,3254,3248]],[[3377,3376,3254]],[[3334,3283,3282]],[[3334,3369,3283]],[[3390,3345,3346]],[[3383,3340,3345]],[[3323,3332,3327]],[[3332,3331,3325]],[[3330,3343,3370]],[[3342,3362,3343]],[[3390,3365,3383]],[[3384,3281,3365]],[[3361,3360,3224]],[[3361,3224,3227]],[[3391,3392,3393]],[[3394,3395,3396]],[[3397,3398,3399]],[[3228,3400,3221]],[[3382,3380,3381]],[[3326,3331,3380]],[[3227,3401,3360]],[[3401,3227,3223]],[[3384,3372,3279]],[[3384,3338,3372]],[[3250,3379,3402]],[[3224,3401,3225]],[[3354,3355,3242]],[[3354,3234,3355]],[[3250,3245,3259]],[[3378,3402,3379]],[[3244,3259,3258]],[[3375,3379,3246]],[[3403,3238,3244]],[[3243,3403,3244]],[[3352,3354,3242]],[[3353,3234,3354]],[[3345,3390,3383]],[[3346,3384,3390]],[[3313,3315,3321]],[[3290,3285,3315]],[[3404,3245,3249]],[[3404,3241,3245]],[[3315,3374,3321]],[[3285,3287,3374]],[[3385,3386,3387]],[[3255,3248,3386]],[[3224,3228,3227]],[[3405,3406,3407]],[[3393,3392,3408]],[[3399,3398,3234]],[[3231,3237,3229]],[[3393,3358,3391]],[[3222,3221,3357]],[[3223,3227,3221]],[[3351,3223,3407]],[[3223,3263,3401]],[[3409,3405,3410]],[[3411,3261,3260]],[[3350,3262,3218]],[[3218,3262,3260]],[[3400,3228,3230]],[[3412,3232,3413]],[[3233,3232,3230]],[[3234,3353,3232]],[[3253,3385,3387]],[[3255,3386,3385]],[[3350,3218,3220]],[[3261,3411,3218]],[[3230,3232,3231]],[[3353,3413,3232]],[[3263,3260,3262]],[[3223,3351,3260]],[[3351,3411,3260]],[[3351,3218,3411]],[[3391,3358,3357]],[[3414,3415,3406]],[[3416,3237,3412]],[[3231,3232,3237]],[[3357,3356,3222]],[[3417,3406,3405]],[[3410,3405,3407]],[[3223,3222,3409]],[[3406,3417,3418]],[[3419,3420,3229]],[[3236,3229,3237]],[[3236,3421,3419]],[[3358,3396,3356]],[[3422,3393,3421]],[[3327,3332,3325]],[[3323,3322,3332]],[[3382,3326,3380]],[[3325,3331,3326]],[[3356,3409,3222]],[[3395,3394,3409]],[[3244,3238,3259]],[[3240,3225,3247]],[[3416,3412,3413]],[[3237,3232,3412]],[[3415,3235,3413]],[[3415,3423,3235]],[[3419,3421,3393]],[[3423,3415,3414]],[[3418,3414,3406]],[[3421,3424,3414]],[[3405,3394,3417]],[[3405,3409,3394]],[[3420,3419,3408]],[[3229,3236,3419]],[[3416,3235,3237]],[[3424,3421,3236]],[[3394,3396,3417]],[[3358,3393,3422]],[[3356,3395,3409]],[[3356,3396,3395]],[[3398,3397,3243]],[[3243,3397,3425]],[[3221,3391,3357]],[[3221,3392,3391]],[[3233,3399,3234]],[[3233,3230,3228]],[[3228,3397,3233]],[[3426,3427,3425]],[[3276,3278,3341]],[[3277,3344,3278]],[[3326,3382,3327]],[[3381,3334,3382]],[[3413,3235,3416]],[[3423,3236,3235]],[[3291,3293,3311]],[[3292,3312,3293]],[[3312,3306,3307]],[[3312,3292,3306]],[[3419,3393,3408]],[[3421,3414,3422]],[[3396,3418,3417]],[[3396,3358,3422]],[[3418,3422,3414]],[[3418,3396,3422]],[[3339,3328,3370]],[[3339,3329,3328]],[[3308,3291,3309]],[[3295,3292,3291]],[[3223,3410,3407]],[[3223,3409,3410]],[[3278,3274,3347]],[[3344,3272,3274]],[[3239,3427,3240]],[[3226,3225,3240]],[[3246,3379,3247]],[[3427,3226,3240]],[[3233,3397,3399]],[[3425,3403,3243]],[[3426,3425,3397]],[[3427,3239,3425]],[[3376,3389,3256]],[[3388,3377,3389]],[[3305,3296,3303]],[[3305,3294,3296]],[[3426,3226,3427]],[[3428,3228,3224]],[[3428,3224,3226]],[[3360,3401,3224]],[[3429,3250,3402]],[[3429,3249,3250]],[[3397,3228,3428]],[[3230,3420,3400]],[[3303,3308,3310]],[[3295,3291,3308]],[[3423,3424,3236]],[[3423,3414,3424]],[[3401,3263,3225]],[[3223,3260,3263]],[[3428,3426,3397]],[[3428,3226,3426]],[[3403,3239,3238]],[[3403,3425,3239]],[[3392,3420,3408]],[[3230,3229,3420]],[[3392,3400,3420]],[[3392,3221,3400]],[[3379,3240,3247]],[[3379,3250,3359]],[[3379,3359,3240]],[[3250,3259,3359]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c160b4a-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf249cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3430,3431,3432]],[[3433,3434,3435]],[[3436,3437,3438]],[[3439,3440,3441]],[[3442,3443,3444]],[[3445,3446,3447]],[[3448,3449,3450]],[[3451,3452,3453]],[[3454,3455,3456]],[[3457,3456,3458]],[[3459,3458,3460]],[[3461,3462,3463]],[[3464,3465,3466]],[[3467,3468,3469]],[[3470,3471,3472]],[[3473,3474,3475]],[[3476,3477,3478]],[[3479,3437,3452]],[[3480,3481,3482]],[[3483,3484,3485]],[[3486,3487,3488]],[[3489,3490,3491]],[[3492,3493,3494]],[[3495,3496,3497]],[[3498,3499,3500]],[[3437,3501,3502]],[[3503,3504,3505]],[[3506,3507,3508]],[[3509,3510,3511]],[[3472,3471,3512]],[[3513,3431,3514]],[[3515,3512,3471]],[[3516,3517,3518]],[[3519,3520,3521]],[[3522,3520,3519]],[[3478,3440,3523]],[[3466,3524,3525]],[[3526,3478,3477]],[[3527,3519,3528]],[[3529,3530,3531]],[[3532,3469,3533]],[[3534,3476,3535]],[[3536,3517,3516]],[[3537,3538,3539]],[[3540,3541,3542]],[[3541,3543,3544]],[[3545,3546,3547]],[[3533,3548,3532]],[[3542,3541,3549]],[[3550,3544,3551]],[[3543,3552,3467]],[[3553,3525,3554]],[[3534,3522,3519]],[[3555,3517,3556]],[[3543,3557,3544]],[[3467,3469,3557]],[[3557,3543,3467]],[[3548,3468,3554]],[[3552,3543,3541]],[[3552,3558,3467]],[[3559,3560,3523]],[[3520,3478,3530]],[[3561,3562,3530]],[[3529,3520,3530]],[[3562,3521,3531]],[[3521,3520,3529]],[[3545,3547,3563]],[[3538,3478,3539]],[[3564,3526,3477]],[[3539,3478,3526]],[[3541,3544,3550]],[[3557,3469,3565]],[[3541,3550,3549]],[[3544,3557,3551]],[[3527,3546,3566]],[[3547,3567,3563]],[[3568,3549,3550]],[[3539,3542,3549]],[[3565,3537,3569]],[[3539,3549,3568]],[[3536,3525,3570]],[[3525,3553,3466]],[[3555,3571,3537]],[[3568,3550,3551]],[[3534,3535,3522]],[[3468,3553,3554]],[[3561,3572,3562]],[[3562,3531,3530]],[[3541,3540,3552]],[[3527,3468,3558]],[[3468,3467,3558]],[[3468,3533,3469]],[[3468,3548,3533]],[[3518,3517,3532]],[[3563,3567,3542]],[[3547,3558,3540]],[[3573,3574,3575]],[[3576,3577,3431]],[[3439,3560,3559]],[[3523,3530,3478]],[[3527,3534,3519]],[[3478,3520,3522]],[[3578,3466,3553]],[[3578,3464,3466]],[[3566,3476,3534]],[[3478,3522,3535]],[[3579,3580,3553]],[[3581,3582,3583]],[[3584,3582,3581]],[[3585,3586,3570]],[[3555,3537,3565]],[[3551,3557,3565]],[[3528,3587,3441]],[[3521,3529,3531]],[[3588,3577,3576]],[[3589,3431,3577]],[[3575,3590,3573]],[[3432,3574,3430]],[[3591,3592,3593]],[[3591,3594,3575]],[[3595,3596,3597]],[[3598,3590,3594]],[[3515,3471,3599]],[[3600,3601,3602]],[[3575,3594,3590]],[[3603,3434,3433]],[[3472,3604,3470]],[[3605,3513,3604]],[[3606,3596,3607]],[[3470,3608,3434]],[[3553,3464,3578]],[[3609,3584,3581]],[[3553,3609,3464]],[[3584,3610,3582]],[[3611,3610,3584]],[[3538,3583,3610]],[[3580,3611,3584]],[[3611,3538,3610]],[[3526,3563,3539]],[[3526,3564,3563]],[[3546,3612,3566]],[[3546,3564,3477]],[[3465,3581,3583]],[[3465,3609,3581]],[[3609,3580,3584]],[[3613,3579,3614]],[[3553,3580,3609]],[[3613,3611,3580]],[[3563,3542,3539]],[[3540,3558,3552]],[[3567,3540,3542]],[[3567,3547,3540]],[[3579,3613,3580]],[[3579,3615,3614]],[[3616,3617,3618]],[[3561,3530,3619]],[[3620,3621,3622]],[[3623,3624,3625]],[[3554,3518,3548]],[[3554,3516,3518]],[[3439,3559,3440]],[[3560,3618,3523]],[[3532,3565,3469]],[[3465,3464,3609]],[[3537,3571,3586]],[[3556,3536,3571]],[[3570,3586,3536]],[[3556,3517,3536]],[[3569,3551,3565]],[[3571,3536,3586]],[[3568,3537,3539]],[[3586,3538,3537]],[[3565,3532,3555]],[[3548,3518,3532]],[[3610,3583,3582]],[[3538,3586,3583]],[[3587,3562,3572]],[[3587,3521,3562]],[[3593,3515,3626]],[[3470,3599,3471]],[[3612,3546,3477]],[[3545,3563,3564]],[[3525,3516,3554]],[[3525,3536,3516]],[[3432,3591,3575]],[[3605,3512,3515]],[[3524,3570,3525]],[[3524,3585,3570]],[[3441,3468,3528]],[[3441,3553,3468]],[[3593,3592,3515]],[[3592,3605,3515]],[[3595,3513,3514]],[[3605,3591,3513]],[[3616,3627,3441]],[[3618,3560,3627]],[[3528,3521,3587]],[[3528,3519,3521]],[[3628,3465,3583]],[[3524,3466,3465]],[[3589,3629,3431]],[[3630,3431,3629]],[[3591,3432,3431]],[[3575,3574,3432]],[[3517,3555,3532]],[[3556,3571,3555]],[[3461,3463,3460]],[[3631,3632,3484]],[[3483,3633,3634]],[[3635,3485,3636]],[[3637,3480,3638]],[[3639,3579,3632]],[[3640,3600,3641]],[[3642,3434,3603]],[[3643,3501,3644]],[[3502,3434,3437]],[[3645,3646,3438]],[[3647,3648,3436]],[[3649,3650,3651]],[[3652,3653,3654]],[[3546,3527,3558]],[[3528,3468,3527]],[[3547,3546,3558]],[[3545,3564,3546]],[[3655,3656,3657]],[[3658,3637,3638]],[[3659,3660,3661]],[[3625,3629,3589]],[[3662,3663,3648]],[[3644,3437,3664]],[[3665,3666,3667]],[[3661,3660,3603]],[[3668,3669,3670]],[[3671,3606,3607]],[[3577,3588,3672]],[[3621,3660,3659]],[[3673,3446,3674]],[[3675,3444,3676]],[[3445,3677,3446]],[[3678,3679,3673]],[[3461,3460,3458]],[[3680,3484,3483]],[[3674,3681,3452]],[[3682,3683,3684]],[[3674,3449,3685]],[[3686,3681,3687]],[[3688,3453,3452]],[[3689,3690,3691]],[[3451,3683,3692]],[[3495,3688,3496]],[[3693,3645,3694]],[[3695,3497,3496]],[[3445,3450,3677]],[[3674,3446,3677]],[[3696,3448,3450]],[[3674,3677,3450]],[[3446,3697,3447]],[[3698,3699,3700]],[[3701,3448,3696]],[[3702,3703,3704]],[[3705,3706,3445]],[[3448,3701,3707]],[[3447,3697,3493]],[[3446,3673,3679]],[[3628,3585,3524]],[[3583,3586,3585]],[[3505,3708,3709]],[[3710,3504,3711]],[[3712,3713,3714]],[[3715,3716,3717]],[[3718,3719,3720]],[[3721,3722,3650]],[[3723,3724,3725]],[[3726,3727,3717]],[[3718,3503,3719]],[[3711,3728,3729]],[[3725,3724,3730]],[[3503,3731,3504]],[[3732,3733,3734]],[[3587,3572,3733]],[[3735,3736,3737]],[[3737,3510,3738]],[[3739,3740,3698]],[[3741,3446,3679]],[[3699,3704,3700]],[[3703,3697,3741]],[[3465,3628,3524]],[[3583,3585,3628]],[[3742,3449,3448]],[[3674,3450,3449]],[[3742,3743,3685]],[[3744,3496,3688]],[[3745,3690,3746]],[[3689,3747,3748]],[[3749,3750,3751]],[[3752,3753,3754]],[[3740,3442,3444]],[[3443,3755,3444]],[[3739,3756,3757]],[[3700,3679,3756]],[[3493,3492,3447]],[[3758,3696,3705]],[[3759,3760,3761]],[[3718,3720,3762]],[[3763,3704,3699]],[[3700,3756,3698]],[[3686,3764,3765]],[[3689,3748,3695]],[[3597,3596,3766]],[[3767,3768,3769]],[[3770,3771,3772]],[[3773,3774,3713]],[[3775,3776,3777]],[[3778,3779,3780]],[[3781,3514,3776]],[[3641,3600,3782]],[[3783,3784,3785]],[[3786,3752,3751]],[[3787,3784,3776]],[[3788,3775,3789]],[[3790,3791,3714]],[[3709,3708,3710]],[[3790,3792,3793]],[[3794,3795,3761]],[[3796,3431,3430]],[[3797,3798,3796]],[[3799,3573,3590]],[[3430,3574,3573]],[[3800,3707,3676]],[[3707,3800,3742]],[[3636,3801,3802]],[[3803,3456,3457]],[[3804,3635,3486]],[[3805,3801,3806]],[[3807,3483,3804]],[[3802,3801,3808]],[[3633,3807,3487]],[[3488,3804,3486]],[[3635,3802,3486]],[[3809,3810,3811]],[[3487,3457,3458]],[[3812,3802,3808]],[[3803,3813,3456]],[[3809,3811,3806]],[[3706,3696,3450]],[[3742,3800,3743]],[[3641,3814,3815]],[[3816,3817,3818]],[[3819,3820,3814]],[[3816,3818,3821]],[[3779,3822,3823]],[[3819,3814,3641]],[[3823,3824,3820]],[[3825,3814,3826]],[[3705,3696,3706]],[[3701,3676,3707]],[[3605,3604,3472]],[[3513,3827,3604]],[[3605,3472,3512]],[[3604,3827,3470]],[[3828,3829,3631]],[[3830,3831,3632]],[[3692,3683,3832]],[[3684,3497,3833]],[[3834,3835,3682]],[[3682,3832,3683]],[[3495,3451,3453]],[[3684,3683,3451]],[[3836,3835,3498]],[[3646,3436,3438]],[[3442,3739,3837]],[[3756,3679,3757]],[[3456,3838,3673]],[[3839,3811,3840]],[[3841,3842,3455]],[[3843,3844,3845]],[[3846,3489,3491]],[[3847,3842,3841]],[[3848,3845,3844]],[[3848,3849,3845]],[[3850,3841,3851]],[[3852,3845,3849]],[[3839,3850,3853]],[[3847,3854,3852]],[[3850,3855,3841]],[[3856,3490,3844]],[[3786,3789,3753]],[[3775,3857,3776]],[[3858,3816,3859]],[[3774,3792,3790]],[[3859,3816,3821]],[[3858,3817,3816]],[[3860,3629,3625]],[[3430,3573,3799]],[[3861,3862,3863]],[[3796,3576,3431]],[[3457,3812,3808]],[[3635,3636,3802]],[[3662,3644,3663]],[[3501,3437,3644]],[[3808,3805,3457]],[[3808,3801,3805]],[[3783,3864,3865]],[[3865,3866,3867]],[[3608,3771,3867]],[[3868,3514,3781]],[[3865,3864,3866]],[[3713,3716,3715]],[[3594,3593,3598]],[[3470,3434,3799]],[[3513,3597,3827]],[[3626,3515,3599]],[[3867,3866,3434]],[[3864,3869,3866]],[[3788,3789,3786]],[[3870,3778,3780]],[[3869,3871,3866]],[[3869,3857,3871]],[[3686,3765,3745]],[[3687,3681,3685]],[[3616,3618,3627]],[[3872,3523,3618]],[[3566,3534,3527]],[[3566,3612,3476]],[[3635,3483,3485]],[[3634,3873,3680]],[[3498,3874,3499]],[[3438,3479,3694]],[[3875,3876,3661]],[[3877,3621,3863]],[[3433,3875,3661]],[[3661,3876,3659]],[[3878,3879,3880]],[[3666,3876,3875]],[[3667,3666,3875]],[[3622,3630,3620]],[[3700,3741,3679]],[[3697,3446,3741]],[[3881,3763,3699]],[[3704,3741,3700]],[[3568,3569,3537]],[[3568,3551,3569]],[[3737,3654,3759]],[[3882,3883,3509]],[[3650,3649,3884]],[[3883,3735,3738]],[[3650,3884,3736]],[[3649,3736,3884]],[[3496,3744,3690]],[[3744,3681,3746]],[[3811,3853,3456]],[[3455,3838,3456]],[[3806,3811,3456]],[[3810,3840,3811]],[[3451,3495,3497]],[[3453,3688,3495]],[[3601,3826,3602]],[[3885,3886,3887]],[[3653,3888,3711]],[[3721,3650,3888]],[[3874,3693,3694]],[[3647,3646,3645]],[[3599,3470,3626]],[[3766,3608,3470]],[[3889,3890,3502]],[[3435,3434,3502]],[[3891,3892,3893]],[[3880,3666,3665]],[[3435,3665,3667]],[[3880,3894,3666]],[[3895,3673,3896]],[[3846,3896,3489]],[[3837,3897,3442]],[[3491,3755,3443]],[[3898,3782,3859]],[[3899,3774,3773]],[[3714,3900,3790]],[[3901,3885,3887]],[[3902,3759,3761]],[[3762,3720,3710]],[[3653,3711,3729]],[[3888,3903,3711]],[[3720,3719,3709]],[[3904,3710,3708]],[[3723,3710,3794]],[[3761,3723,3794]],[[3434,3773,3903]],[[3714,3791,3712]],[[3794,3710,3711]],[[3711,3903,3713]],[[3641,3782,3866]],[[3600,3885,3901]],[[3903,3773,3713]],[[3905,3906,3898]],[[3866,3773,3434]],[[3866,3782,3773]],[[3907,3899,3906]],[[3773,3782,3898]],[[3792,3899,3907]],[[3908,3905,3821]],[[3858,3901,3887]],[[3782,3600,3901]],[[3793,3792,3909]],[[3774,3899,3792]],[[3827,3766,3470]],[[3608,3867,3434]],[[3910,3615,3579]],[[3614,3611,3613]],[[3911,3481,3480]],[[3911,3615,3481]],[[3910,3482,3481]],[[3481,3615,3910]],[[3912,3913,3658]],[[3480,3482,3638]],[[3914,3912,3658]],[[3473,3637,3913]],[[3915,3914,3639]],[[3638,3482,3639]],[[3631,3830,3632]],[[3916,3473,3913]],[[3758,3675,3676]],[[3758,3705,3675]],[[3764,3800,3676]],[[3745,3691,3690]],[[3800,3917,3743]],[[3800,3764,3917]],[[3904,3504,3710]],[[3505,3719,3503]],[[3794,3711,3713]],[[3728,3731,3729]],[[3784,3783,3670]],[[3781,3918,3868]],[[3770,3772,3919]],[[3920,3606,3671]],[[3771,3918,3772]],[[3769,3768,3868]],[[3771,3921,3918]],[[3769,3608,3767]],[[3781,3669,3919]],[[3669,3922,3770]],[[3771,3770,3867]],[[3919,3669,3770]],[[3787,3869,3785]],[[3865,3668,3670]],[[3868,3768,3514]],[[3769,3921,3608]],[[3772,3918,3781]],[[3918,3921,3868]],[[3625,3589,3623]],[[3923,3623,3672]],[[3923,3588,3798]],[[3923,3672,3588]],[[3430,3799,3797]],[[3626,3470,3799]],[[3799,3624,3797]],[[3624,3623,3923]],[[3873,3924,3484]],[[3462,3461,3655]],[[3639,3658,3638]],[[3913,3637,3658]],[[3838,3896,3673]],[[3838,3848,3489]],[[3443,3925,3491]],[[3443,3897,3925]],[[3704,3703,3741]],[[3493,3697,3703]],[[3731,3654,3653]],[[3654,3722,3721]],[[3898,3859,3821]],[[3782,3858,3859]],[[3926,3734,3619]],[[3733,3572,3561]],[[3734,3561,3619]],[[3734,3733,3561]],[[3459,3460,3634]],[[3463,3924,3460]],[[3893,3892,3643]],[[3890,3927,3879]],[[3501,3889,3502]],[[3501,3892,3891]],[[3747,3764,3676]],[[3747,3691,3765]],[[3460,3873,3634]],[[3460,3924,3873]],[[3745,3765,3691]],[[3764,3747,3765]],[[3698,3740,3444]],[[3698,3756,3739]],[[3853,3851,3454]],[[3849,3838,3455]],[[3538,3637,3475]],[[3911,3480,3637]],[[3928,3736,3649]],[[3654,3737,3736]],[[3489,3848,3844]],[[3838,3849,3848]],[[3715,3717,3929]],[[3716,3713,3726]],[[3930,3759,3931]],[[3909,3737,3759]],[[3723,3760,3724]],[[3759,3724,3760]],[[3730,3724,3503]],[[3503,3654,3731]],[[3698,3881,3699]],[[3763,3702,3704]],[[3826,3814,3824]],[[3908,3909,3907]],[[3780,3823,3820]],[[3886,3817,3887]],[[3820,3824,3814]],[[3776,3909,3818]],[[3870,3932,3778]],[[3779,3932,3822]],[[3933,3750,3822]],[[3823,3780,3779]],[[3933,3932,3870]],[[3779,3778,3932]],[[3917,3686,3687]],[[3917,3764,3686]],[[3837,3739,3757]],[[3442,3740,3739]],[[3678,3837,3757]],[[3897,3443,3442]],[[3678,3897,3837]],[[3895,3896,3846]],[[3805,3803,3457]],[[3813,3806,3456]],[[3801,3809,3806]],[[3801,3810,3809]],[[3732,3616,3441]],[[3732,3734,3926]],[[3618,3617,3872]],[[3617,3732,3926]],[[3872,3619,3523]],[[3872,3926,3619]],[[3825,3826,3601]],[[3824,3776,3818]],[[3934,3647,3693]],[[3648,3663,3436]],[[3875,3433,3667]],[[3661,3603,3433]],[[3883,3935,3735]],[[3936,3650,3736]],[[3738,3735,3737]],[[3937,3507,3936]],[[3882,3508,3935]],[[3650,3722,3651]],[[3735,3936,3736]],[[3937,3935,3507]],[[3832,3835,3836]],[[3834,3498,3835]],[[3938,3682,3833]],[[3747,3834,3682]],[[3923,3798,3797]],[[3588,3576,3798]],[[3797,3796,3430]],[[3798,3576,3796]],[[3894,3876,3666]],[[3894,3630,3876]],[[3715,3939,3713]],[[3939,3929,3930]],[[3939,3795,3794]],[[3931,3759,3902]],[[3713,3939,3794]],[[3715,3929,3939]],[[3922,3668,3865]],[[3922,3669,3668]],[[3851,3853,3850]],[[3454,3456,3853]],[[3827,3597,3766]],[[3513,3595,3597]],[[3637,3473,3475]],[[3913,3831,3916]],[[3893,3643,3662]],[[3892,3501,3643]],[[3893,3662,3934]],[[3643,3644,3662]],[[3707,3742,3448]],[[3685,3449,3742]],[[3500,3479,3452]],[[3438,3437,3479]],[[3940,3498,3834]],[[3499,3479,3500]],[[3915,3639,3632]],[[3914,3658,3639]],[[3940,3874,3498]],[[3694,3479,3499]],[[3925,3846,3491]],[[3925,3897,3895]],[[3807,3804,3488]],[[3483,3635,3804]],[[3487,3807,3488]],[[3633,3483,3807]],[[3871,3788,3866]],[[3871,3857,3775]],[[3828,3631,3484]],[[3657,3474,3830]],[[3475,3461,3458]],[[3656,3474,3657]],[[3829,3941,3462]],[[3461,3475,3655]],[[3652,3721,3888]],[[3652,3654,3721]],[[3433,3435,3667]],[[3502,3879,3878]],[[3587,3732,3441]],[[3587,3733,3732]],[[3878,3880,3665]],[[3879,3927,3880]],[[3600,3640,3601]],[[3815,3814,3825]],[[3886,3602,3817]],[[3602,3824,3818]],[[3654,3928,3722]],[[3722,3928,3651]],[[3868,3921,3769]],[[3771,3608,3921]],[[3600,3886,3885]],[[3600,3602,3886]],[[3857,3869,3787]],[[3670,3669,3781]],[[3864,3785,3869]],[[3864,3783,3785]],[[3486,3812,3457]],[[3486,3802,3812]],[[3620,3861,3863]],[[3630,3629,3861]],[[3817,3858,3887]],[[3782,3901,3858]],[[3839,3855,3850]],[[3854,3843,3852]],[[3508,3650,3506]],[[3508,3888,3650]],[[3451,3692,3452]],[[3836,3498,3500]],[[3500,3692,3836]],[[3500,3452,3692]],[[3795,3902,3761]],[[3795,3931,3902]],[[3681,3744,3688]],[[3746,3690,3744]],[[3872,3617,3926]],[[3616,3732,3617]],[[3903,3882,3511]],[[3903,3508,3882]],[[3855,3847,3841]],[[3843,3845,3852]],[[3842,3847,3852]],[[3854,3856,3843]],[[3805,3813,3803]],[[3805,3806,3813]],[[3867,3922,3865]],[[3867,3770,3922]],[[3490,3489,3844]],[[3896,3838,3489]],[[3843,3856,3844]],[[3755,3491,3490]],[[3598,3593,3626]],[[3594,3591,3593]],[[3504,3728,3711]],[[3504,3731,3728]],[[3786,3780,3866]],[[3751,3750,3870]],[[3751,3870,3780]],[[3750,3933,3870]],[[3820,3819,3780]],[[3815,3825,3640]],[[3780,3641,3866]],[[3780,3819,3641]],[[3815,3640,3641]],[[3825,3601,3640]],[[3510,3509,3738]],[[3882,3935,3883]],[[3717,3727,3929]],[[3942,3759,3727]],[[3726,3712,3727]],[[3909,3759,3942]],[[3943,3944,3791]],[[3945,3727,3712]],[[3716,3726,3717]],[[3713,3712,3726]],[[3944,3712,3791]],[[3944,3945,3712]],[[3934,3648,3647]],[[3934,3662,3648]],[[3831,3915,3632]],[[3831,3913,3912]],[[3538,3911,3637]],[[3614,3615,3911]],[[3790,3943,3791]],[[3942,3944,3943]],[[3842,3849,3455]],[[3842,3852,3849]],[[3497,3938,3833]],[[3748,3682,3938]],[[3497,3695,3938]],[[3747,3682,3748]],[[3634,3680,3483]],[[3873,3484,3680]],[[3788,3786,3866]],[[3751,3780,3786]],[[3672,3589,3577]],[[3672,3623,3589]],[[3939,3930,3795]],[[3795,3930,3931]],[[3904,3505,3504]],[[3904,3708,3505]],[[3789,3777,3753]],[[3822,3824,3823]],[[3789,3775,3777]],[[3788,3871,3775]],[[3777,3754,3753]],[[3822,3750,3749]],[[3751,3754,3749]],[[3933,3822,3932]],[[3749,3754,3822]],[[3777,3776,3822]],[[3894,3893,3934]],[[3894,3891,3893]],[[3773,3906,3899]],[[3773,3898,3906]],[[3663,3664,3436]],[[3663,3644,3664]],[[3694,3645,3438]],[[3693,3647,3645]],[[3444,3946,3881]],[[3702,3493,3703]],[[3862,3877,3863]],[[3862,3624,3877]],[[3877,3947,3621]],[[3660,3642,3603]],[[3622,3621,3659]],[[3947,3660,3621]],[[3942,3945,3944]],[[3942,3727,3945]],[[3690,3689,3496]],[[3748,3938,3695]],[[3496,3689,3695]],[[3691,3747,3689]],[[3627,3439,3441]],[[3627,3560,3439]],[[3878,3435,3502]],[[3878,3665,3435]],[[3818,3908,3821]],[[3909,3792,3907]],[[3784,3781,3776]],[[3919,3772,3781]],[[3784,3670,3781]],[[3783,3865,3670]],[[3861,3860,3862]],[[3861,3629,3860]],[[3671,3595,3514]],[[3607,3596,3595]],[[3915,3912,3914]],[[3915,3831,3912]],[[3727,3930,3929]],[[3727,3759,3930]],[[3830,3916,3831]],[[3474,3473,3916]],[[3924,3828,3484]],[[3924,3463,3941]],[[3657,3829,3655]],[[3828,3924,3941]],[[3829,3462,3655]],[[3941,3463,3462]],[[3631,3829,3657]],[[3828,3941,3829]],[[3840,3856,3855]],[[3755,3490,3856]],[[3855,3854,3847]],[[3855,3856,3854]],[[3759,3503,3724]],[[3759,3654,3503]],[[3651,3928,3649]],[[3654,3736,3928]],[[3497,3684,3451]],[[3833,3682,3684]],[[3595,3671,3607]],[[3514,3768,3920]],[[3514,3920,3671]],[[3768,3606,3920]],[[3927,3891,3894]],[[3889,3501,3891]],[[3880,3927,3894]],[[3879,3502,3890]],[[3891,3890,3889]],[[3891,3927,3890]],[[3810,3636,3485]],[[3810,3801,3636]],[[3861,3620,3630]],[[3863,3621,3620]],[[3777,3822,3754]],[[3776,3824,3822]],[[3647,3436,3646]],[[3664,3437,3436]],[[3947,3642,3660]],[[3947,3877,3642]],[[3718,3730,3503]],[[3718,3762,3730]],[[3657,3830,3631]],[[3474,3916,3830]],[[3452,3681,3688]],[[3674,3685,3681]],[[3743,3687,3685]],[[3743,3917,3687]],[[3681,3745,3746]],[[3681,3686,3745]],[[3633,3459,3634]],[[3633,3458,3459]],[[3935,3508,3507]],[[3903,3888,3508]],[[3639,3910,3579]],[[3639,3482,3910]],[[3596,3608,3766]],[[3596,3606,3767]],[[3596,3767,3608]],[[3606,3768,3767]],[[3942,3793,3909]],[[3942,3943,3793]],[[3774,3790,3900]],[[3793,3943,3790]],[[3817,3602,3818]],[[3826,3824,3602]],[[3559,3523,3440]],[[3619,3530,3523]],[[3720,3709,3710]],[[3719,3505,3709]],[[3758,3701,3696]],[[3758,3676,3701]],[[3725,3762,3723]],[[3725,3730,3762]],[[3731,3653,3729]],[[3652,3888,3653]],[[3444,3881,3698]],[[3946,3675,3494]],[[3475,3656,3655]],[[3475,3474,3656]],[[3946,3702,3763]],[[3494,3493,3702]],[[3881,3946,3763]],[[3675,3705,3492]],[[3851,3455,3454]],[[3851,3841,3455]],[[3774,3714,3713]],[[3774,3900,3714]],[[3797,3624,3923]],[[3799,3434,3624]],[[3624,3642,3877]],[[3624,3434,3642]],[[3538,3614,3911]],[[3538,3611,3614]],[[3513,3591,3431]],[[3605,3592,3591]],[[3936,3506,3650]],[[3936,3507,3506]],[[3906,3905,3907]],[[3818,3909,3908]],[[3821,3905,3898]],[[3908,3907,3905]],[[3705,3445,3447]],[[3706,3450,3445]],[[3934,3940,3834]],[[3934,3693,3940]],[[3499,3874,3694]],[[3940,3693,3874]],[[3633,3487,3458]],[[3486,3457,3487]],[[3799,3598,3626]],[[3799,3590,3598]],[[3876,3622,3659]],[[3876,3630,3622]],[[3751,3752,3754]],[[3786,3753,3752]],[[3755,3840,3810]],[[3755,3856,3840]],[[3811,3839,3853]],[[3840,3855,3839]],[[3760,3723,3761]],[[3762,3710,3723]],[[3862,3625,3624]],[[3862,3860,3625]],[[3535,3476,3478]],[[3612,3477,3476]],[[3675,3492,3494]],[[3705,3447,3492]],[[3882,3509,3511]],[[3883,3738,3509]],[[3735,3937,3936]],[[3735,3935,3937]],[[3925,3895,3846]],[[3897,3673,3895]],[[3702,3946,3494]],[[3444,3675,3946]],[[3679,3678,3757]],[[3673,3897,3678]],[[3692,3832,3836]],[[3682,3835,3832]],[[3857,3787,3776]],[[3785,3784,3787]],[[3948,3458,3456]],[[3949,3948,3673]],[[3673,3948,3456]],[[3950,3949,3674]],[[3674,3949,3673]],[[3951,3950,3452]],[[3452,3950,3674]],[[3437,3951,3452]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c160b4d-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efc5ef49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[3952,3953,3954]],[[3955,3956,3957]],[[3957,3958,3955]],[[3959,3960,3954]],[[3960,3956,3954]],[[3961,3962,3963]],[[3961,3963,3964]],[[3965,3966,3967]],[[3968,3969,3970]],[[3971,3972,3973]],[[3971,3974,3972]],[[3975,3976,3977]],[[3978,3979,3974]],[[3980,3981,3982]],[[3971,3973,3983]],[[3972,3984,3973]],[[3985,3986,3987]],[[3988,3989,3990]],[[3991,3992,3993]],[[3994,3995,3996]],[[3997,3998,3999]],[[3994,4000,4001]],[[4002,4003,4004]],[[4005,4006,4007]],[[3967,3981,3965]],[[3967,4008,3990]],[[4009,3990,4008]],[[4010,4011,3982]],[[4012,3965,3981]],[[4013,4014,3981]],[[4015,4016,4010]],[[4013,3981,3980]],[[3980,3982,4017]],[[4017,3982,4018]],[[4018,3982,4011]],[[4011,4010,4016]],[[4019,4015,4010]],[[4020,4019,4010]],[[4021,4020,4010]],[[4022,4021,4010]],[[4023,4024,4025]],[[4010,4026,4022]],[[4010,4027,4026]],[[4024,4028,4029]],[[4030,4031,4032]],[[4033,4034,4035]],[[4036,4037,4038]],[[4039,4040,4041]],[[4042,4043,4044]],[[4044,4045,4046]],[[4047,4048,4049]],[[4050,4051,4052]],[[4035,4053,4054]],[[4055,4056,4057]],[[4035,4054,4058]],[[4056,4059,4024]],[[4060,4024,4029]],[[4061,4058,4027]],[[4062,4024,4023]],[[4026,4027,4058]],[[4061,4063,4064]],[[4027,4065,4061]],[[4066,4027,4010]],[[4067,4066,4010]],[[4068,4067,4010]],[[4068,4069,4067]],[[4070,4071,4072]],[[4073,4074,4075]],[[4076,4077,4074]],[[4078,4079,4080]],[[4081,4082,4083]],[[4084,3962,4085]],[[3963,3962,4084]],[[4085,3962,4086]],[[4086,3962,4087]],[[4088,4089,4078]],[[4080,4088,4078]],[[4090,4091,4079]],[[4079,4092,4080]],[[4079,4093,4092]],[[4079,4094,4093]],[[4095,4096,4097]],[[4079,4098,4094]],[[4079,4091,4098]],[[4090,4099,4091]],[[4090,4100,4099]],[[4090,4101,4100]],[[4101,4090,4102]],[[4102,4090,4103]],[[4090,4104,4103]],[[4090,4105,4104]],[[4090,4106,4105]],[[4090,4107,4106]],[[4090,4108,4107]],[[4090,4097,4096]],[[4108,4090,4109]],[[4109,4090,4110]],[[4110,4090,4111]],[[4111,4090,4096]],[[4095,4112,4096]],[[4113,4114,4112]],[[4115,4116,4114]],[[4115,4114,4117]],[[4117,4114,4118]],[[4118,4114,4113]],[[4119,4118,4120]],[[4120,4118,4121]],[[4095,4113,4112]],[[4121,4118,4113]],[[4122,4095,4097]],[[4123,4124,4097]],[[4097,4125,4122]],[[4097,4126,4125]],[[4097,4127,4126]],[[4097,4128,4127]],[[4128,4097,4129]],[[4129,4097,4130]],[[4097,4131,4130]],[[4097,4124,4131]],[[4132,4123,4097]],[[4133,4134,4097]],[[4097,4134,4132]],[[4133,4135,4136]],[[4133,4136,4134]],[[4135,4137,4136]],[[4137,4138,4136]],[[4137,3954,4138]],[[3954,3953,4138]],[[3954,3956,3952]],[[3955,3952,3956]],[[4139,4140,3958]],[[4141,4142,4143]],[[3958,4140,3955]],[[4139,4142,4141]],[[4140,4139,4144]],[[4144,4139,4141]],[[4145,4146,4147]],[[4148,4149,4150]],[[4001,4151,3994]],[[4152,4003,3995]],[[4153,3972,4154]],[[4155,4003,4002]],[[4073,4156,4071]],[[4157,4158,4159]],[[4009,4160,3988]],[[4009,4161,4160]],[[4145,4162,4163]],[[4164,4165,4166]],[[4167,4168,4169]],[[4170,4171,4172]],[[4147,4171,4164]],[[4163,4006,4005]],[[4173,4174,4175]],[[4176,4177,4178]],[[3997,4179,3998]],[[4180,4181,4182]],[[4183,4184,4185]],[[4154,4003,4186]],[[4187,4002,4000]],[[4000,4004,4001]],[[4185,4184,4188]],[[4189,4190,4191]],[[4152,3994,4151]],[[3996,4000,3994]],[[4192,4193,4194]],[[4195,4196,4197]],[[4150,4198,4199]],[[4200,4168,4201]],[[4202,4200,4201]],[[4168,4166,4169]],[[4164,4203,4165]],[[4204,3996,3989]],[[4165,4169,4166]],[[4150,3996,4148]],[[4175,4205,4173]],[[4161,4009,4173]],[[4164,4168,4200]],[[4164,4166,4168]],[[4183,4185,4206]],[[4188,4154,4185]],[[3968,3970,4186]],[[4186,4003,3968]],[[4207,4203,4171]],[[4208,4162,4161]],[[4203,4209,4165]],[[4172,4171,4147]],[[4179,4210,3969]],[[4211,4179,3969]],[[4001,4004,4151]],[[4003,3989,3995]],[[3988,4147,3989]],[[4005,4007,4147]],[[4147,4212,3989]],[[4147,4200,4212]],[[4213,4214,4215]],[[4215,4214,4149]],[[4216,4217,4218]],[[4167,4198,4202]],[[4187,4219,4002]],[[4220,4221,4211]],[[4222,4158,4071]],[[4223,4224,4077]],[[4073,4072,4225]],[[4070,4073,4071]],[[4197,4226,4074]],[[4227,4228,4229]],[[4207,4171,4170]],[[4176,4007,4006]],[[4230,4177,4176]],[[4230,4231,4177]],[[4232,4233,4170]],[[4207,4175,4174]],[[4175,4233,4205]],[[4232,4234,4231]],[[4216,4235,4236]],[[4237,4236,4212]],[[4150,4238,4198]],[[4238,4214,4237]],[[4239,4076,4074]],[[4229,4240,4227]],[[4241,3991,3999]],[[4185,4210,4242]],[[4242,3997,4206]],[[4190,4243,4181]],[[4244,4245,4220]],[[4179,4245,4244]],[[4246,3968,4155]],[[4211,3969,3968]],[[4247,4248,4249]],[[4158,4072,4071]],[[3985,4250,4182]],[[3992,3991,4241]],[[4184,4251,4188]],[[3984,3986,3985]],[[4160,4145,3988]],[[4162,4208,4163]],[[4249,4222,4193]],[[4249,4158,4222]],[[4068,4249,4248]],[[4252,4253,4254]],[[4255,4244,4220]],[[3998,4255,3999]],[[4255,3998,4244]],[[4243,4241,3999]],[[4256,4248,4247]],[[4257,4258,4259]],[[4220,4245,4221]],[[4244,3998,4179]],[[4072,4157,4225]],[[4197,4074,4225]],[[4194,4193,4260]],[[4222,4260,4193]],[[4161,4176,4208]],[[4176,4178,4007]],[[4261,4032,4262]],[[4229,4263,4264]],[[4265,4082,4081]],[[4083,4082,4266]],[[4267,4030,4032]],[[4268,4269,4270]],[[4074,4226,4239]],[[4076,4271,4224]],[[4263,4272,4273]],[[4253,4274,4082]],[[3964,4274,4253]],[[3964,3963,4269]],[[4275,4276,4082]],[[4274,3964,4269]],[[4259,4277,4257]],[[4256,4278,4248]],[[4279,4280,4249]],[[4281,4256,4247]],[[4158,4226,4159]],[[4077,4076,4223]],[[4159,4226,4196]],[[4239,4249,4076]],[[4202,4198,4282]],[[4238,4149,4214]],[[4237,4214,4213]],[[4215,4217,4236]],[[4273,4264,4263]],[[4283,4253,4276]],[[4284,4283,4276]],[[4253,4082,4276]],[[4217,4216,4236]],[[4285,4286,4287]],[[4198,4238,4237]],[[4236,3989,4212]],[[4229,4030,4240]],[[4261,4288,4289]],[[4264,4031,4229]],[[4290,4270,4077]],[[4030,4229,4031]],[[4264,4273,4270]],[[4270,4290,4262]],[[4290,4077,4271]],[[4204,4285,4291]],[[4292,4216,4293]],[[4204,4236,4285]],[[4286,4293,4294]],[[4152,3995,3994]],[[3989,3996,3995]],[[4295,3993,4189]],[[4180,4182,4250]],[[4296,3985,4182]],[[3984,4153,3987]],[[4000,4002,4004]],[[4219,4155,4002]],[[3964,4068,4010]],[[3964,4271,4068]],[[4278,4256,4277]],[[4278,4068,4248]],[[4263,4228,4297]],[[4284,4276,4275]],[[4220,4298,4000]],[[4298,4211,3968]],[[4246,4298,3968]],[[4221,4245,4211]],[[4191,4180,4250]],[[4191,4181,4180]],[[4251,4153,4154]],[[3993,4184,4183]],[[4222,4156,4260]],[[4222,4071,4156]],[[4215,4236,4213]],[[4235,4285,4236]],[[4225,4157,4159]],[[4072,4158,4157]],[[4251,4154,4188]],[[3972,4003,4154]],[[4147,4232,4172]],[[4233,4175,4170]],[[4053,4035,4034]],[[4024,4064,4025]],[[3973,3984,4296]],[[4296,3984,3985]],[[4281,4247,4249]],[[4281,4277,4256]],[[4280,4281,4249]],[[4258,4257,4281]],[[4299,4055,4045]],[[4055,4047,4049]],[[4168,4167,4201]],[[4199,4198,4167]],[[4255,4243,3999]],[[4190,4300,3992]],[[4272,4283,4301]],[[4297,4228,4254]],[[4280,4258,4281]],[[4280,4279,4259]],[[4281,4257,4277]],[[4258,4280,4259]],[[4282,4237,4212]],[[4213,4236,4237]],[[4295,4302,4153]],[[4302,3985,3987]],[[4251,3993,4295]],[[4250,3985,4303]],[[4246,4155,4219]],[[3968,4003,4155]],[[3991,4206,3997]],[[4206,4185,4242]],[[3991,3997,3999]],[[4242,4210,4179]],[[4304,4037,4050]],[[4305,4052,4306]],[[4189,4300,4190]],[[4189,4303,4295]],[[3993,3992,4300]],[[4241,4243,3992]],[[4189,3993,4300]],[[4251,4184,3993]],[[4250,4189,4191]],[[4250,4303,4189]],[[4050,4037,4051]],[[4041,4307,4033]],[[4062,4308,4024]],[[4051,4061,4052]],[[4227,4254,4228]],[[4272,4254,4283]],[[4051,4037,4309]],[[4050,4052,4310]],[[4311,4312,4046]],[[4313,4038,4304]],[[4061,4035,4058]],[[4314,4309,4315]],[[4192,4279,4249]],[[4075,4259,4279]],[[4284,4301,4283]],[[4272,4297,4254]],[[4316,4040,4317]],[[4318,4317,4319]],[[4320,4056,4049]],[[4056,4060,4057]],[[4044,4306,4045]],[[4305,4042,4310]],[[4148,4293,4218]],[[4217,4215,4149]],[[4148,4218,4149]],[[4293,4216,4218]],[[4150,4149,4238]],[[4218,4217,4149]],[[4235,4292,4285]],[[4235,4216,4292]],[[4287,4294,3996]],[[4286,4292,4293]],[[4287,4286,4294]],[[4285,4292,4286]],[[4261,4262,4288]],[[4321,4267,4261]],[[4288,4262,4322]],[[4032,4270,4262]],[[4290,4271,4322]],[[4323,4030,4267]],[[4322,4271,4288]],[[4254,4253,4283]],[[4042,4044,4046]],[[4324,4306,4044]],[[4294,4148,3996]],[[4294,4293,4148]],[[4081,4272,4301]],[[4081,4325,4272]],[[4055,4049,4056]],[[4048,4320,4049]],[[4299,4326,4055]],[[4327,4047,4055]],[[4048,4328,4320]],[[4056,4024,4060]],[[4251,4295,4153]],[[4302,3987,4153]],[[4317,4329,4319]],[[4318,4319,4041]],[[4330,4316,4318]],[[4319,4307,4041]],[[4316,4317,4318]],[[4331,4039,4035]],[[4073,4070,4072]],[[4073,4260,4156]],[[4262,4290,4322]],[[4077,4224,4271]],[[4052,4047,4306]],[[4052,4061,4047]],[[4325,4081,4268]],[[4082,4274,4266]],[[4273,4325,4270]],[[4269,3963,4270]],[[4270,4325,4268]],[[4273,4272,4325]],[[4268,4083,4266]],[[4268,4081,4083]],[[4202,4282,4212]],[[4198,4237,4282]],[[4200,4202,4212]],[[4201,4167,4202]],[[3991,4183,4206]],[[3991,3993,4183]],[[4035,4041,4033]],[[4330,4318,4041]],[[4236,4204,3989]],[[4291,4287,4204]],[[4288,4271,4289]],[[4289,4321,4332]],[[4311,4333,4312]],[[4329,4317,4333]],[[4209,4203,4207]],[[4230,4161,4173]],[[4082,4265,4275]],[[4265,4301,4284]],[[4301,4265,4081]],[[4284,4275,4265]],[[4172,4232,4170]],[[4231,4205,4233]],[[4234,4232,4147]],[[4231,4233,4232]],[[4007,4234,4147]],[[4007,4178,4234]],[[4181,4255,4220]],[[4181,4243,4255]],[[4045,4055,4057]],[[4326,4327,4055]],[[4328,4059,4334]],[[4024,4308,4028]],[[4047,4328,4048]],[[4334,4056,4320]],[[4328,4024,4059]],[[4061,4064,4024]],[[4311,4319,4329]],[[4046,4307,4319]],[[4252,4030,4323]],[[4252,4240,4030]],[[4279,4192,4075]],[[4249,4193,4192]],[[4046,4312,4042]],[[4315,4309,4037]],[[4036,4315,4037]],[[4335,4314,4315]],[[4040,4316,4041]],[[4335,4315,4036]],[[4223,4076,4224]],[[4271,3964,4321]],[[4336,4313,4042]],[[4336,4036,4038]],[[4204,4287,3996]],[[4291,4285,4287]],[[4231,4178,4177]],[[4231,4234,4178]],[[4306,4327,4045]],[[4306,4047,4327]],[[4041,4316,4330]],[[4312,4036,4336]],[[4035,4039,4041]],[[4331,4335,4312]],[[4063,4061,4065]],[[4314,4035,4061]],[[4324,4043,4306]],[[4324,4044,4043]],[[4073,4194,4260]],[[4075,4192,4194]],[[4042,4312,4336]],[[4333,4317,4312]],[[4205,4230,4173]],[[4205,4231,4230]],[[4174,4173,4150]],[[4009,3996,4173]],[[4165,4174,4169]],[[4165,4209,4174]],[[4175,4207,4170]],[[4174,4209,4207]],[[4331,4040,4039]],[[4312,4317,4040]],[[4271,4321,4289]],[[3964,4253,4321]],[[4252,4323,4253]],[[4321,4253,4323]],[[4261,4267,4032]],[[4321,4323,4267]],[[4327,4299,4045]],[[4327,4326,4299]],[[4228,4263,4229]],[[4297,4272,4263]],[[4169,4199,4167]],[[4169,4150,4199]],[[4194,4073,4075]],[[4225,4074,4073]],[[4335,4331,4035]],[[4312,4040,4331]],[[4145,4163,4146]],[[4208,4006,4163]],[[4158,4239,4226]],[[4158,4249,4239]],[[4160,4162,4145]],[[4160,4161,4162]],[[4312,4335,4036]],[[4035,4314,4335]],[[4009,3988,3990]],[[4145,4147,3988]],[[4051,4314,4061]],[[4051,4309,4314]],[[4319,4311,4046]],[[4329,4333,4311]],[[4249,4271,4076]],[[4249,4068,4271]],[[4061,4328,4047]],[[4061,4024,4328]],[[4147,4164,4200]],[[4171,4203,4164]],[[4174,4150,4169]],[[4173,3996,4150]],[[3969,4210,4186]],[[4185,4154,4210]],[[4245,4179,4211]],[[3997,4242,4179]],[[4304,4038,4037]],[[4313,4336,4038]],[[4310,4337,4050]],[[4337,4313,4304]],[[4328,4334,4320]],[[4059,4056,4334]],[[4159,4195,4225]],[[4159,4196,4195]],[[4004,4152,4151]],[[4004,4003,4152]],[[4032,4264,4270]],[[4032,4031,4264]],[[4305,4310,4052]],[[4337,4304,4050]],[[4153,3984,3972]],[[3987,3986,3984]],[[4043,4305,4306]],[[4043,4042,4305]],[[4243,4190,3992]],[[4181,4191,4190]],[[4042,4337,4310]],[[4042,4313,4337]],[[4187,4246,4219]],[[4187,4000,4298]],[[4187,4298,4246]],[[4220,4211,4298]],[[4266,4269,4268]],[[4266,4274,4269]],[[3969,4186,3970]],[[4210,4154,4186]],[[4303,4302,4295]],[[4303,3985,4302]],[[4195,4197,4225]],[[4196,4226,4197]],[[4208,4176,4006]],[[4161,4230,4176]],[[4227,4252,4254]],[[4227,4240,4252]],[[4332,4261,4289]],[[4332,4321,4261]],[[4069,4278,4277]],[[4069,4068,4278]],[[4069,4259,4075]],[[4069,4277,4259]],[[4146,4005,4147]],[[4146,4163,4005]],[[4078,4087,3962]],[[3964,4079,3962]],[[4338,4087,4078]],[[4339,3964,3962]],[[4340,3978,3983]],[[3978,3974,3971]],[[4339,3961,3964]],[[4339,3962,3961]],[[3979,3977,4341]],[[3976,3974,4341]],[[3975,3977,4340]],[[3976,4341,3977]],[[3983,3978,3971]],[[4340,3977,3979]],[[3974,3979,4341]],[[3978,4340,3979]],[[4338,4078,4089]],[[3962,4079,4078]],[[4014,4012,3981]],[[4014,3965,4012]],[[4008,3967,3966]],[[3990,3981,3967]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c1659af-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe75149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:22.000"},"geometry":[{"boundaries":[[[4342,4343,4344]],[[4345,4346,4342]],[[4345,4342,4344]],[[4344,4343,4347]],[[4347,4343,4348]],[[4349,4350,4346]],[[4346,4351,4342]],[[4346,4352,4351]],[[4346,4353,4352]],[[4346,4354,4353]],[[4346,4355,4354]],[[4346,4350,4355]],[[4349,4356,4350]],[[4357,4358,4359]],[[4349,4360,4356]],[[4361,4362,4363]],[[4364,4365,4360]],[[4366,4367,4368]],[[4369,4370,4365]],[[4371,4372,4373]],[[4374,4375,4376]],[[4376,4377,4378]],[[4379,4380,4362]],[[4381,4382,4383]],[[4384,4385,4386]],[[4387,4388,4389]],[[4390,4391,4392]],[[4393,4394,4395]],[[4396,4397,4398]],[[4396,4399,4400]],[[4401,4402,4403]],[[4400,4404,4370]],[[4368,4405,4406]],[[4399,4396,4406]],[[4407,4408,4382]],[[4409,4410,4411]],[[4412,4413,4414]],[[4369,4349,4413]],[[4415,4416,4417]],[[4367,4416,4368]],[[4415,4418,4414]],[[4416,4349,4368]],[[4419,4372,4420]],[[4421,4422,4423]],[[4424,4372,4371]],[[4425,4426,4427]],[[4428,4429,4430]],[[4431,4426,4403]],[[4432,4433,4434]],[[4426,4435,4427]],[[4374,4436,4375]],[[4436,4437,4438]],[[4427,4435,4439]],[[4435,4426,4431]],[[4414,4418,4370]],[[4415,4413,4416]],[[4440,4401,4374]],[[4437,4426,4425]],[[4377,4376,4375]],[[4375,4436,4438]],[[4397,4396,4400]],[[4373,4441,4442]],[[4418,4443,4370]],[[4398,4366,4396]],[[4349,4444,4445]],[[4430,4411,4403]],[[4438,4446,4434]],[[4435,4431,4439]],[[4447,4448,4387]],[[4449,4358,4450]],[[4451,4440,4374]],[[4375,4438,4433]],[[4433,4452,4377]],[[4375,4433,4377]],[[4442,4371,4373]],[[4420,4429,4428]],[[4453,4451,4376]],[[4454,4455,4456]],[[4428,4430,4403]],[[4457,4349,4458]],[[4459,4460,4429]],[[4461,4462,4349]],[[4463,4389,4388]],[[4464,4465,4466]],[[4368,4371,4405]],[[4371,4445,4424]],[[4409,4460,4467]],[[4468,4469,4390]],[[4406,4396,4366]],[[4405,4371,4399]],[[4374,4401,4436]],[[4403,4426,4437]],[[4357,4447,4470]],[[4471,4472,4340]],[[4401,4440,4402]],[[4473,4474,4444]],[[4372,4473,4420]],[[4372,4424,4473]],[[4376,4451,4374]],[[4402,4428,4403]],[[4455,4451,4453]],[[4428,4454,4420]],[[4404,4456,4453]],[[4404,4441,4475]],[[4445,4444,4474]],[[4349,4460,4461]],[[4359,4449,4388]],[[4476,4477,4478]],[[4479,4450,4480]],[[4481,4482,4463]],[[4438,4425,4446]],[[4438,4437,4425]],[[4366,4398,4367]],[[4443,4418,4415]],[[4483,4484,4485]],[[4486,4480,4358]],[[4388,4387,4448]],[[4389,4487,4387]],[[4486,4479,4480]],[[4488,4489,4490]],[[4491,4449,4450]],[[4479,4486,4492]],[[4357,4486,4358]],[[4493,4494,4495]],[[4496,4497,4498]],[[4499,4500,4498]],[[4417,4416,4367]],[[4413,4349,4416]],[[4442,4441,4404]],[[4373,4372,4475]],[[4370,4369,4414]],[[4414,4369,4412]],[[4501,4502,4503]],[[4504,4505,4506]],[[4448,4359,4388]],[[4480,4450,4358]],[[4507,4432,4434]],[[4508,4509,4510]],[[4463,4511,4481]],[[4472,3975,4340]],[[4512,4340,4482]],[[4513,4495,4494]],[[4481,4511,4449]],[[4463,4388,4449]],[[4491,4481,4449]],[[4511,4463,4449]],[[4437,4401,4403]],[[4437,4436,4401]],[[4427,4446,4425]],[[4431,4403,4411]],[[4479,4493,4450]],[[4514,4515,3975]],[[4450,4493,4495]],[[4516,4500,4517]],[[4489,4495,4513]],[[4493,4479,4492]],[[4368,4445,4371]],[[4474,4473,4424]],[[4368,4406,4366]],[[4405,4399,4406]],[[4463,4487,4389]],[[4340,4477,4487]],[[4512,4471,4340]],[[4518,4519,4471]],[[4518,4512,4519]],[[4482,4487,4463]],[[4471,4512,4518]],[[4482,4481,4491]],[[4442,4399,4371]],[[4442,4400,4399]],[[4451,4402,4440]],[[4451,4455,4402]],[[4454,4419,4420]],[[4520,4462,4461]],[[4424,4445,4474]],[[4368,4349,4445]],[[4413,4415,4414]],[[4417,4443,4415]],[[4449,4359,4358]],[[4448,4447,4357]],[[4446,4521,4434]],[[4522,4439,4431]],[[4523,4524,4525]],[[4526,4527,4528]],[[4443,4397,4370]],[[4442,4404,4400]],[[4370,4397,4400]],[[4443,4417,4397]],[[4529,4530,4531]],[[4496,4499,4497]],[[4532,4533,4534]],[[4535,4536,4537]],[[4538,4539,4540]],[[4541,4542,4543]],[[4544,4545,4546]],[[4547,4548,4549]],[[4550,4551,4552]],[[4553,4554,4395]],[[4555,4510,4556]],[[4557,4558,4559]],[[4560,4550,4561]],[[4408,4562,4361]],[[4523,4361,4363]],[[4563,4548,4547]],[[4509,4564,4565]],[[4392,4391,4566]],[[4567,4509,4565]],[[4411,4522,4431]],[[4568,4569,4570]],[[4468,4392,4571]],[[4363,4572,4523]],[[4523,4572,4524]],[[4573,4574,4565]],[[4575,4521,4446]],[[4556,4510,4567]],[[4576,4577,4421]],[[4510,4509,4567]],[[4508,4578,4577]],[[4421,4423,4564]],[[4579,4580,4581]],[[4582,4583,4584]],[[4585,4586,4386]],[[4531,4587,4588]],[[4386,4586,4589]],[[4590,4591,4543]],[[4534,4592,4532]],[[4593,4594,4595]],[[4596,4589,4586]],[[4564,4423,4597]],[[4566,4598,4362]],[[4580,4423,4581]],[[4599,4600,4580]],[[4380,4566,4362]],[[4391,4601,4602]],[[4574,4469,4603]],[[4565,4564,4597]],[[4604,4597,4600]],[[4521,4605,4507]],[[4605,4422,4507]],[[4601,4606,4607]],[[4429,4460,4409]],[[4522,4608,4439]],[[4598,4609,4363]],[[4610,4590,4611]],[[4609,4602,4612]],[[4613,4614,4615]],[[4525,4524,4614]],[[4616,4586,4585]],[[4608,4617,4618]],[[4363,4612,4572]],[[4612,4524,4572]],[[4619,4620,4534]],[[4541,4621,4622]],[[4623,4624,4625]],[[4362,4598,4363]],[[4626,4391,4602]],[[4627,4628,4623]],[[4629,4630,4631]],[[4632,4559,4525]],[[4523,4558,4361]],[[4621,4594,4620]],[[4536,4484,4633]],[[4634,4635,4636]],[[4385,4585,4386]],[[4637,4638,4639]],[[4385,4640,4641]],[[4362,4562,4379]],[[4642,4643,4644]],[[4601,4645,4606]],[[4469,4574,4573]],[[4377,4452,4378]],[[4646,4507,4422]],[[4612,4614,4524]],[[4584,4647,4582]],[[4648,4594,4591]],[[4649,4650,4651]],[[4652,4653,4579]],[[4654,4655,4606]],[[4656,4384,4386]],[[4628,4627,4532]],[[4640,4657,4588]],[[4386,4589,4656]],[[4658,4464,4384]],[[4659,4529,4660]],[[4466,4661,4464]],[[4637,4662,4660]],[[4663,4664,4656]],[[4665,4657,4385]],[[4648,4591,4590]],[[4594,4621,4591]],[[4609,4612,4363]],[[4648,4614,4612]],[[4666,4667,4668]],[[4669,4648,4610]],[[4670,4671,4672]],[[4548,4673,4549]],[[4674,4675,4526]],[[4676,4610,4611]],[[4540,4677,4678]],[[4679,4680,4681]],[[4682,4539,4683]],[[4684,4685,4686]],[[4667,4526,4668]],[[4528,4683,4687]],[[4688,4675,4674]],[[4526,4528,4674]],[[4561,4689,4560]],[[4668,4526,4689]],[[4690,4560,4688]],[[4688,4674,4691]],[[4527,4682,4683]],[[4538,4634,4686]],[[4686,4685,4538]],[[4687,4674,4528]],[[4539,4538,4685]],[[4635,4659,4636]],[[4527,4683,4528]],[[4539,4685,4683]],[[4529,4531,4660]],[[4692,4532,4531]],[[4693,4694,4530]],[[4624,4592,4593]],[[4693,4677,4694]],[[4695,4611,4696]],[[4538,4540,4678]],[[4697,4540,4539]],[[4574,4556,4567]],[[4698,4452,4432]],[[4699,4676,4611]],[[4668,4689,4700]],[[4701,4702,4703]],[[4537,4633,4663]],[[4651,4704,4484]],[[4705,4706,4476]],[[4650,4707,4708]],[[4709,4499,4496]],[[4704,4485,4484]],[[4702,4483,4485]],[[4710,4711,4702]],[[4663,4589,4537]],[[4514,4506,4505]],[[4712,4713,4492]],[[4657,4660,4588]],[[4660,4531,4588]],[[4384,4665,4385]],[[4588,4587,4640]],[[4552,4714,4382]],[[4552,4715,4716]],[[4656,4658,4384]],[[4478,4717,4476]],[[4656,4664,4658]],[[4710,4702,4718]],[[4665,4464,4661]],[[4658,4664,4719]],[[4720,4721,4722]],[[4702,4485,4703]],[[4723,4503,4701]],[[4724,4722,4721]],[[4387,4720,4447]],[[4701,4703,4723]],[[4357,4496,4486]],[[4704,4723,4703]],[[4704,4725,4723]],[[4726,4727,4728]],[[4725,4729,4726]],[[4728,4730,4731]],[[4516,4732,4500]],[[4731,4709,4733]],[[4734,4735,4556]],[[4644,4736,4642]],[[4603,4734,4556]],[[4735,4644,4555]],[[4556,4735,4555]],[[4546,4545,4736]],[[4731,4737,4728]],[[4627,4623,4585]],[[4728,4737,4726]],[[4470,4709,4496]],[[4707,4727,4729]],[[4727,4738,4739]],[[4729,4708,4707]],[[4596,4535,4537]],[[4658,4719,4465]],[[4705,4710,4718]],[[4740,4741,4618]],[[4581,4423,4422]],[[4741,4575,4618]],[[4521,4507,4434]],[[4740,4605,4741]],[[4581,4422,4605]],[[4740,4581,4605]],[[4579,4653,4599]],[[4742,4634,4636]],[[4538,4678,4634]],[[4678,4635,4634]],[[4678,4693,4529]],[[4510,4743,4508]],[[4393,4453,4378]],[[4378,4698,4577]],[[4432,4507,4698]],[[4618,4617,4744]],[[4604,4654,4645]],[[4745,4522,4410]],[[4655,4607,4606]],[[4740,4579,4581]],[[4740,4652,4579]],[[4590,4543,4542]],[[4591,4621,4543]],[[4635,4529,4659]],[[4635,4678,4529]],[[4685,4684,4683]],[[4691,4674,4687]],[[4746,4491,4450]],[[4519,4512,4491]],[[4618,4744,4740]],[[4744,4458,4652]],[[4592,4534,4620]],[[4694,4695,4747]],[[4529,4693,4530]],[[4678,4677,4693]],[[4434,4433,4438]],[[4432,4452,4433]],[[4394,4577,4578]],[[4646,4422,4421]],[[4689,4675,4560]],[[4689,4526,4675]],[[4655,4599,4653]],[[4580,4597,4423]],[[4748,4749,4631]],[[4750,4751,4707]],[[4623,4625,4752]],[[4536,4753,4649]],[[4641,4627,4585]],[[4592,4620,4593]],[[4743,4644,4554]],[[4570,4545,4754]],[[4735,4736,4644]],[[4735,4734,4546]],[[4545,4755,4736]],[[4756,4757,4643]],[[4756,4755,4545]],[[4642,4736,4755]],[[4570,4756,4545]],[[4642,4755,4756]],[[4735,4546,4736]],[[4571,4380,4544]],[[4599,4654,4600]],[[4604,4573,4597]],[[4599,4655,4654]],[[4573,4565,4597]],[[4503,4724,4701]],[[4758,4487,4477]],[[4759,4720,4722]],[[4760,4487,4758]],[[4701,4718,4702]],[[4701,4724,4718]],[[4720,4759,4447]],[[4733,4737,4731]],[[4739,4761,4730]],[[4762,4515,4732]],[[4542,4696,4611]],[[4694,4677,4695]],[[4763,4764,4765]],[[4766,4712,4492]],[[4517,4730,4516]],[[4761,4762,4732]],[[4662,4639,4767]],[[4768,4742,4636]],[[4470,4733,4709]],[[4731,4517,4709]],[[4749,4750,4650]],[[4650,4750,4707]],[[4456,4419,4454]],[[4475,4372,4419]],[[4402,4454,4428]],[[4402,4455,4454]],[[4483,4633,4484]],[[4483,4711,4769]],[[4658,4465,4464]],[[4466,4465,4478]],[[4770,4407,4714]],[[4568,4570,4754]],[[4771,4700,4563]],[[4557,4383,4558]],[[4679,4551,4772]],[[4552,4382,4381]],[[4715,4551,4679]],[[4772,4550,4773]],[[4694,4533,4530]],[[4694,4747,4533]],[[4530,4692,4531]],[[4530,4533,4692]],[[4531,4532,4587]],[[4692,4533,4532]],[[4690,4688,4691]],[[4560,4675,4688]],[[4549,4673,4583]],[[4548,4559,4632]],[[4774,4775,4472]],[[4519,4746,4488]],[[4556,4574,4603]],[[4567,4565,4574]],[[4652,4458,4653]],[[4653,4458,4655]],[[4770,4568,4754]],[[4714,4552,4716]],[[4776,4647,4669]],[[4583,4673,4615]],[[4719,4717,4465]],[[4719,4664,4777]],[[4719,4777,4778]],[[4769,4663,4633]],[[4385,4657,4640]],[[4661,4779,4639]],[[4575,4608,4618]],[[4575,4427,4608]],[[4716,4715,4681]],[[4552,4551,4715]],[[4569,4716,4681]],[[4568,4714,4716]],[[4478,4779,4466]],[[4660,4662,4659]],[[4768,4639,4779]],[[4662,4636,4659]],[[4657,4637,4660]],[[4638,4661,4639]],[[4661,4466,4779]],[[4465,4717,4478]],[[4381,4383,4780]],[[4408,4361,4558]],[[4563,4557,4548]],[[4383,4408,4558]],[[4781,4557,4563]],[[4780,4383,4557]],[[4768,4478,4477]],[[4768,4779,4478]],[[4629,4631,4535]],[[4749,4650,4649]],[[4680,4686,4742]],[[4782,4691,4687]],[[4676,4671,4776]],[[4783,4549,4582]],[[4468,4390,4392]],[[4469,4645,4601]],[[4762,4648,4458]],[[4762,4594,4648]],[[4607,4602,4601]],[[4648,4612,4602]],[[4762,4458,4349]],[[4648,4602,4458]],[[4740,4744,4652]],[[4617,4458,4744]],[[4617,4522,4745]],[[4460,4349,4467]],[[4385,4641,4585]],[[4640,4587,4641]],[[4491,4746,4519]],[[4450,4495,4746]],[[4508,4553,4578]],[[4554,4453,4393]],[[4444,4462,4473]],[[4444,4349,4462]],[[4420,4459,4429]],[[4520,4473,4462]],[[4420,4520,4459]],[[4420,4473,4520]],[[4515,4784,4732]],[[4498,4497,4499]],[[4492,4498,4766]],[[4486,4496,4498]],[[4698,4646,4577]],[[4698,4507,4646]],[[4464,4665,4384]],[[4661,4638,4665]],[[4472,4785,4786]],[[4787,4774,4488]],[[4788,4774,4787]],[[4746,4495,4489]],[[4620,4622,4621]],[[4696,4542,4541]],[[4490,4489,4506]],[[4488,4746,4489]],[[4789,4490,4506]],[[4789,4787,4490]],[[4781,4700,4561]],[[4563,4547,4771]],[[4666,4771,4547]],[[4668,4700,4771]],[[4608,4427,4439]],[[4575,4446,4427]],[[4456,4475,4419]],[[4441,4373,4475]],[[4768,4767,4639]],[[4768,4636,4767]],[[4724,4721,4790]],[[4720,4387,4760]],[[4645,4573,4604]],[[4645,4469,4573]],[[4722,4502,4759]],[[4503,4723,4501]],[[4748,4631,4630]],[[4749,4753,4631]],[[4506,4713,4504]],[[4492,4494,4493]],[[4468,4734,4603]],[[4571,4546,4734]],[[4615,4584,4583]],[[4648,4669,4584]],[[4376,4378,4453]],[[4452,4698,4378]],[[4394,4393,4378]],[[4395,4554,4393]],[[4791,4504,4712]],[[4513,4494,4713]],[[4390,4601,4391]],[[4390,4469,4601]],[[4684,4782,4687]],[[4680,4690,4691]],[[4765,4789,4506]],[[4788,4775,4774]],[[4514,4763,4765]],[[4764,4785,4788]],[[4786,4792,4763]],[[4786,4785,4792]],[[4509,4576,4564]],[[4577,4646,4421]],[[4561,4550,4780]],[[4560,4773,4550]],[[4550,4381,4780]],[[4550,4552,4381]],[[4519,4774,4471]],[[4519,4488,4774]],[[4599,4580,4579]],[[4600,4597,4580]],[[4514,4765,4506]],[[4763,4792,4764]],[[4726,4501,4725]],[[4737,4502,4501]],[[4723,4725,4501]],[[4708,4729,4725]],[[4727,4726,4729]],[[4737,4501,4726]],[[4502,4733,4759]],[[4502,4737,4733]],[[4382,4408,4383]],[[4382,4714,4407]],[[4747,4619,4533]],[[4619,4622,4620]],[[4776,4669,4610]],[[4647,4584,4669]],[[4484,4536,4651]],[[4753,4749,4649]],[[4554,4643,4681]],[[4643,4642,4756]],[[4716,4569,4568]],[[4757,4756,4570]],[[4506,4513,4713]],[[4506,4489,4513]],[[4757,4569,4681]],[[4757,4570,4569]],[[4762,4748,4594]],[[4750,4749,4748]],[[4762,4738,4748]],[[4751,4727,4707]],[[4759,4470,4447]],[[4759,4733,4470]],[[4448,4357,4359]],[[4470,4496,4357]],[[4793,4705,4476]],[[4790,4721,4758]],[[4718,4706,4705]],[[4721,4720,4760]],[[4616,4629,4596]],[[4631,4753,4535]],[[4636,4662,4767]],[[4637,4639,4662]],[[4576,4508,4577]],[[4510,4555,4743]],[[4673,4613,4615]],[[4525,4614,4613]],[[4763,4514,3975]],[[4515,4762,3975]],[[4621,4541,4543]],[[4622,4696,4541]],[[4577,4394,4378]],[[4578,4395,4394]],[[4794,4758,4477]],[[4706,4790,4758]],[[4721,4760,4758]],[[4387,4487,4760]],[[4722,4503,4502]],[[4722,4724,4503]],[[4719,4778,4717]],[[4711,4483,4702]],[[4613,4632,4525]],[[4548,4557,4559]],[[4673,4632,4613]],[[4673,4548,4632]],[[4667,4672,4527]],[[4540,4697,4677]],[[4526,4667,4527]],[[4666,4547,4783]],[[4533,4619,4534]],[[4747,4622,4619]],[[4566,4626,4598]],[[4566,4391,4626]],[[4453,4456,4455]],[[4404,4475,4456]],[[4512,4482,4491]],[[4340,4487,4482]],[[4680,4742,4768]],[[4686,4634,4742]],[[4747,4696,4622]],[[4747,4695,4696]],[[4793,4476,4717]],[[4706,4794,4476]],[[4611,4590,4542]],[[4610,4648,4590]],[[4784,4515,4791]],[[4712,4784,4791]],[[4568,4770,4714]],[[4380,4571,4392]],[[4417,4398,4397]],[[4417,4367,4398]],[[4505,4515,4514]],[[4505,4791,4515]],[[4766,4784,4712]],[[4766,4498,4500]],[[4583,4582,4549]],[[4647,4776,4582]],[[4498,4492,4486]],[[4713,4494,4492]],[[3975,4786,4763]],[[3975,4472,4786]],[[4695,4697,4699]],[[4682,4527,4672]],[[4670,4672,4667]],[[4795,4682,4672]],[[4704,4708,4725]],[[4651,4650,4708]],[[4784,4500,4732]],[[4784,4766,4500]],[[4748,4595,4594]],[[4625,4630,4752]],[[4748,4625,4595]],[[4748,4630,4625]],[[4727,4739,4728]],[[4761,4732,4516]],[[4499,4517,4500]],[[4730,4761,4516]],[[4709,4517,4499]],[[4731,4730,4517]],[[4683,4684,4687]],[[4782,4680,4691]],[[4686,4782,4684]],[[4686,4680,4782]],[[4361,4562,4362]],[[4408,4407,4562]],[[4778,4793,4717]],[[4778,4710,4793]],[[4715,4679,4681]],[[4773,4680,4679]],[[4379,4796,4380]],[[4754,4545,4544]],[[4571,4544,4546]],[[4796,4754,4544]],[[4549,4783,4547]],[[4783,4776,4671]],[[4667,4666,4670]],[[4668,4771,4666]],[[4793,4710,4705]],[[4778,4777,4711]],[[4778,4711,4710]],[[4777,4664,4769]],[[4682,4697,4539]],[[4682,4795,4697]],[[4490,4787,4488]],[[4788,4785,4775]],[[4789,4788,4787]],[[4789,4764,4788]],[[4679,4772,4773]],[[4551,4550,4772]],[[4485,4704,4703]],[[4651,4708,4704]],[[4559,4523,4525]],[[4559,4558,4523]],[[4738,4751,4750]],[[4738,4761,4739]],[[4753,4536,4535]],[[4649,4651,4536]],[[4645,4654,4606]],[[4604,4600,4654]],[[4564,4576,4421]],[[4509,4508,4576]],[[4566,4380,4392]],[[4796,4544,4380]],[[4508,4743,4553]],[[4555,4644,4743]],[[4578,4553,4395]],[[4743,4554,4553]],[[4699,4697,4795]],[[4695,4677,4697]],[[4734,4468,4571]],[[4603,4469,4468]],[[4728,4739,4730]],[[4727,4751,4738]],[[4648,4615,4614]],[[4648,4584,4615]],[[4672,4671,4795]],[[4670,4783,4671]],[[4781,4561,4780]],[[4700,4689,4561]],[[4774,4472,4471]],[[4775,4785,4472]],[[4349,4369,4360]],[[4413,4412,4369]],[[4718,4790,4706]],[[4718,4724,4790]],[[4741,4521,4575]],[[4741,4605,4521]],[[4557,4781,4780]],[[4563,4700,4781]],[[4586,4616,4596]],[[4752,4630,4616]],[[4596,4629,4535]],[[4616,4630,4629]],[[4712,4504,4713]],[[4791,4505,4504]],[[4624,4628,4592]],[[4532,4592,4628]],[[4587,4627,4641]],[[4587,4532,4627]],[[4616,4623,4752]],[[4616,4585,4623]],[[4626,4609,4598]],[[4626,4602,4609]],[[4409,4457,4410]],[[4617,4608,4522]],[[4797,4745,4457]],[[4409,4411,4430]],[[4773,4690,4680]],[[4773,4560,4690]],[[4695,4699,4611]],[[4795,4671,4676]],[[4797,4457,4458]],[[4467,4349,4457]],[[4476,4794,4477]],[[4706,4758,4794]],[[4748,4738,4750]],[[4762,4761,4738]],[[4407,4379,4562]],[[4407,4770,4379]],[[4458,4607,4655]],[[4458,4602,4607]],[[4369,4364,4360]],[[4369,4365,4364]],[[4596,4537,4589]],[[4536,4633,4537]],[[4625,4624,4595]],[[4623,4628,4624]],[[4745,4410,4457]],[[4522,4411,4410]],[[4429,4409,4430]],[[4467,4457,4409]],[[4459,4461,4460]],[[4459,4520,4461]],[[4681,4643,4757]],[[4554,4644,4643]],[[4624,4593,4595]],[[4620,4594,4593]],[[4617,4797,4458]],[[4617,4745,4797]],[[4610,4676,4776]],[[4699,4795,4676]],[[4483,4769,4633]],[[4656,4589,4663]],[[4777,4769,4711]],[[4664,4663,4769]],[[4657,4638,4637]],[[4657,4665,4638]],[[4765,4764,4789]],[[4792,4785,4764]],[[4776,4783,4582]],[[4670,4666,4783]],[[4796,4770,4754]],[[4796,4379,4770]],[[4798,4345,4344]],[[4347,4798,4344]],[[4799,4347,4348]],[[4800,4365,4370]],[[4404,4800,4370]],[[4801,4453,4554]],[[4681,4801,4554]],[[4802,4681,4680]],[[4768,4802,4680]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c16cf36-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:22.000"},"geometry":[{"boundaries":[[[4803,4804,4805]],[[4806,4807,4808]],[[4809,4810,4811]],[[4812,4813,4810]],[[4810,4814,4815]],[[4816,4817,4814]],[[4818,4819,4816]],[[4820,4821,4818]],[[4822,4823,4824]],[[4825,4826,4820]],[[4827,4828,4829]],[[4830,4831,4832]],[[4828,4833,4834]],[[4831,4835,4836]],[[4837,4831,4838]],[[4836,4825,4831]],[[4839,4840,4841]],[[4839,4842,4840]],[[4839,4843,4842]],[[4844,4845,4839]],[[4846,4847,4848]],[[4839,4849,4844]],[[4850,4849,4839]],[[4851,4852,4849]],[[4853,4854,4850]],[[4855,4853,4850]],[[4848,4855,4850]],[[4848,4856,4855]],[[4857,4858,4848]],[[4846,4859,4860]],[[4861,4862,4848]],[[4863,4846,4860]],[[4864,4865,4847]],[[4866,4864,4847]],[[4848,4867,4846]],[[4868,4869,4866]],[[4870,4871,4868]],[[4872,4870,4868]],[[4872,4873,4870]],[[4874,4875,4872]],[[4874,4876,4875]],[[4877,4878,4879]],[[4879,4878,4880]],[[4880,4878,4881]],[[4882,4880,4881]],[[4866,4883,4864]],[[4884,4885,4886]],[[4887,4888,4889]],[[4890,4891,4892]],[[4893,4894,4895]],[[4896,4885,4884]],[[4884,4897,4898]],[[4899,4900,4901]],[[4902,4903,4904]],[[4905,4906,4907]],[[4908,4909,4910]],[[4911,4912,4904]],[[4907,4913,4914]],[[4908,4915,4916]],[[4917,4918,4919]],[[4920,4921,4922]],[[4923,4924,4919]],[[4913,4903,4902]],[[4925,4890,4926]],[[4927,4928,4889]],[[4902,4929,4913]],[[4930,4931,4932]],[[4933,4934,4935]],[[4936,4937,4938]],[[4923,4919,4939]],[[4940,4941,4942]],[[4936,4943,4937]],[[4878,4944,4945]],[[4946,4947,4941]],[[4948,4949,4881]],[[4950,4874,4878]],[[4881,4945,4948]],[[4944,4874,4872]],[[4868,4951,4872]],[[4952,4944,4951]],[[4953,4951,4954]],[[4868,4871,4869]],[[4846,4863,4847]],[[4862,4857,4848]],[[4847,4861,4848]],[[4955,4956,4957]],[[4958,4959,4841]],[[4960,4961,4962]],[[4963,4964,4965]],[[4966,4967,4968]],[[4820,4969,4827]],[[4970,4971,4972]],[[4973,4974,4975]],[[4820,4976,4821]],[[4977,4837,4978]],[[4979,4980,4981]],[[4982,4983,4984]],[[4985,4986,4827]],[[4987,4988,4989]],[[4990,4991,4830]],[[4992,4838,4833]],[[4993,4994,4995]],[[4994,4996,4997]],[[4998,4999,5000]],[[4836,5001,4825]],[[4824,5002,5003]],[[4822,4824,5003]],[[5004,4979,5005]],[[5005,5006,5004]],[[5007,5008,4972]],[[4969,5009,4827]],[[5010,5011,5012]],[[5013,5014,4980]],[[5005,5015,5006]],[[4824,5016,5017]],[[5018,5019,5020]],[[5021,5022,5023]],[[5024,5025,5026]],[[4831,4830,4835]],[[5027,5010,5028]],[[5029,5030,5031]],[[4830,5032,5033]],[[4838,4978,4837]],[[5034,5016,4824]],[[5035,5016,5034]],[[5036,5037,5029]],[[5038,4978,5039]],[[5000,4972,5030]],[[5040,4983,4989]],[[5041,4837,4977]],[[5030,5037,4998]],[[4998,5000,5030]],[[5042,4984,5031]],[[5038,5041,4977]],[[4984,4983,5029]],[[4988,4957,4990]],[[5043,5044,5045]],[[5046,5008,5026]],[[5047,5048,5049]],[[5050,5051,5052]],[[4999,5053,5054]],[[5055,5035,5056]],[[4823,5034,4824]],[[5054,5053,5035]],[[5015,5057,5058]],[[5046,5059,5008]],[[5041,4832,4837]],[[4830,4991,5060]],[[5061,5008,5007]],[[5006,5062,5063]],[[4823,4822,5000]],[[4972,5008,5030]],[[4970,4822,5064]],[[5065,5048,5019]],[[5066,4822,5003]],[[4970,5000,4822]],[[5067,5068,4983]],[[4998,5037,5068]],[[5069,5070,5071]],[[5052,5072,4804]],[[5073,5074,5075]],[[5076,5077,5078]],[[5052,5051,5072]],[[5079,5080,5081]],[[5082,5083,5072]],[[5084,5069,5077]],[[5049,4994,5047]],[[5072,5051,5082]],[[5085,5086,5087]],[[4810,4815,4811]],[[5085,5087,4969]],[[5088,4996,5089]],[[4803,5075,4804]],[[4803,5073,5075]],[[4984,5029,5031]],[[4983,5036,5029]],[[4994,4993,5090]],[[5078,5077,5091]],[[5020,5092,5090]],[[5019,5048,5092]],[[5090,5047,4994]],[[5092,5048,5047]],[[5093,5094,5095]],[[4811,4804,5072]],[[5096,4929,5097]],[[5098,4919,4918]],[[5066,5064,4822]],[[5099,4970,5064]],[[5100,5028,5101]],[[5053,4998,5068]],[[5102,5027,5028]],[[5017,5002,4824]],[[5103,4820,4826]],[[4986,4833,4828]],[[5104,5090,4993]],[[5092,5047,5090]],[[5105,5106,5107]],[[5108,4904,5109]],[[5110,5111,5112]],[[5113,5114,5115]],[[5116,5117,5118]],[[5119,5120,5121]],[[4838,4992,5122]],[[4833,4986,4992]],[[5123,5124,5125]],[[5126,4894,5127]],[[4995,5128,4993]],[[5129,5130,5131]],[[4813,4812,5128]],[[5076,5072,5083]],[[5049,4996,4994]],[[4813,5132,4810]],[[5098,5133,4943]],[[5134,5096,4886]],[[5032,4974,5135]],[[5136,4956,4974]],[[5064,4806,5099]],[[5137,5138,5139]],[[4807,5137,5139]],[[5019,5092,5020]],[[5139,5138,5140]],[[5137,5003,5138]],[[4820,4818,4969]],[[4819,4817,4816]],[[5041,4989,4990]],[[4988,4955,4957]],[[4956,5060,4991]],[[4956,5136,5060]],[[5059,5042,5031]],[[4982,4989,4983]],[[5141,5134,5142]],[[4895,4896,5143]],[[5068,5036,4983]],[[5068,5037,5036]],[[5031,5030,5008]],[[5029,5037,5030]],[[4911,4904,4903]],[[5144,4899,5145]],[[4901,4900,4912]],[[4898,5146,5147]],[[5148,5149,5145]],[[5109,4904,4900]],[[5099,4971,4970]],[[5099,5150,4971]],[[4829,4820,4827]],[[5103,4976,4820]],[[5151,5152,5049]],[[5153,5027,5102]],[[5154,5049,5048]],[[5101,5155,5156]],[[5157,5100,5158]],[[5154,5016,5158]],[[5156,5089,5101]],[[4997,5132,4813]],[[4929,4914,4913]],[[5117,5159,5118]],[[5160,5161,5119]],[[5162,4939,4919]],[[5163,5164,5165]],[[5165,5164,5166]],[[5141,5167,5134]],[[5160,4929,5167]],[[5168,5169,5170]],[[5171,5045,5172]],[[5026,5170,5173]],[[5169,5174,5024]],[[5080,5079,5018]],[[5019,5138,5003]],[[5091,5080,5175]],[[5020,5090,5131]],[[5018,5140,5019]],[[5176,5177,5139]],[[5138,5019,5140]],[[5003,5002,5065]],[[5090,5104,5129]],[[4993,5128,4812]],[[4993,5094,5104]],[[5178,4809,5095]],[[4886,5097,5179]],[[4886,5180,5142]],[[5143,4893,4895]],[[5112,5117,5180]],[[4990,4989,4988]],[[5040,5067,4983]],[[5181,5182,5183]],[[5184,5142,5185]],[[5131,5175,5080]],[[5177,4808,5139]],[[5078,5091,5175]],[[5081,4805,5079]],[[5186,5187,4893]],[[5159,5188,5189]],[[4896,4895,4885]],[[4894,5126,5190]],[[5080,5018,5020]],[[5139,4808,4807]],[[5045,5044,5172]],[[4987,4989,4982]],[[5097,4929,4902]],[[4914,5191,4907]],[[5077,5081,5091]],[[5077,5069,5081]],[[5192,5193,5120]],[[5192,5194,5193]],[[5195,5196,5197]],[[5198,5164,5163]],[[5078,5093,5076]],[[4809,4811,5072]],[[5173,5169,5024]],[[5199,5062,5200]],[[4806,4808,5099]],[[5201,4964,4963]],[[5099,4808,5150]],[[5202,4964,5203]],[[5079,5177,5176]],[[5079,4805,5177]],[[5023,5022,5204]],[[5168,5061,5205]],[[5026,5173,5024]],[[5170,5169,5173]],[[5200,5062,5206]],[[5170,5026,5061]],[[5017,5154,5048]],[[5100,5157,5102]],[[5155,5101,5028]],[[5089,5152,5151]],[[5207,5208,5192]],[[5207,5167,5141]],[[5123,5209,5124]],[[5125,5210,5211]],[[5212,5213,5214]],[[5214,5184,5185]],[[5215,5216,5217]],[[5218,5219,5220]],[[5075,5052,4804]],[[5075,5074,5050]],[[5075,5050,5052]],[[5074,5070,5082]],[[5097,4886,5096]],[[5112,5111,5159]],[[5085,4816,5086]],[[4819,4821,5221]],[[4901,4912,5222]],[[4900,4904,4912]],[[5223,5222,5224]],[[5223,4901,5222]],[[4995,4813,5128]],[[5086,4816,4810]],[[4809,4812,4810]],[[5094,4993,4812]],[[4994,4997,4995]],[[5049,5152,4996]],[[5112,5159,5117]],[[5213,5212,5225]],[[5042,5059,5171]],[[5031,5008,5059]],[[5149,5179,5108]],[[5097,4902,5108]],[[5145,5109,5144]],[[5108,4902,4904]],[[5032,5136,4974]],[[5032,5060,5136]],[[5226,5124,5209]],[[5220,5227,5228]],[[5229,5106,5230]],[[5105,5124,5226]],[[5225,5231,5232]],[[5233,5234,5232]],[[5235,5236,5230]],[[5114,4947,4946]],[[5237,5238,5239]],[[5240,5241,5209]],[[5239,5242,5237]],[[5241,5230,5226]],[[5237,5243,5238]],[[5244,5236,5235]],[[5245,5246,5217]],[[4942,5247,5238]],[[5248,5245,5217]],[[5249,5115,4946]],[[5250,5107,5106]],[[5251,5252,5210]],[[5253,5254,5255]],[[5207,5160,5167]],[[5194,5256,5193]],[[5257,5253,5258]],[[5254,5253,5257]],[[5259,5260,4920]],[[5184,5261,5207]],[[5183,5182,5194]],[[5261,5262,5208]],[[5183,5194,5263]],[[5081,5069,5264]],[[5077,5083,5084]],[[5082,5070,5083]],[[5070,5069,5084]],[[5083,5070,5084]],[[5074,5071,5070]],[[5154,5151,5049]],[[5089,5265,5088]],[[5089,4996,5152]],[[5088,5132,4997]],[[5149,4886,5179]],[[4885,5110,5112]],[[5140,5176,5139]],[[4805,4808,5177]],[[5266,4940,5243]],[[5267,5248,5268]],[[5122,5269,4978]],[[5056,5068,5067]],[[5038,5067,5040]],[[5039,5055,5056]],[[5041,5040,4989]],[[5041,5038,5040]],[[5046,5026,5025]],[[5008,5061,5026]],[[4942,5244,5247]],[[5270,5271,5272]],[[5111,5188,5159]],[[5211,5210,5252]],[[5118,5273,5212]],[[5231,5233,5232]],[[5118,5212,5116]],[[5214,5234,5261]],[[5273,5225,5212]],[[5232,5234,5213]],[[4970,4972,5000]],[[4971,5007,4972]],[[5274,5275,5276]],[[5160,5119,4914]],[[5142,5134,4886]],[[5167,5096,5134]],[[5124,5105,5210]],[[5277,5278,5252]],[[5187,5216,5218]],[[5219,5240,5220]],[[5279,5242,5239]],[[5242,5216,5243]],[[5147,5143,4884]],[[5280,5281,5282]],[[5283,4916,5284]],[[5285,5224,5286]],[[5287,5283,5284]],[[5288,5289,5253]],[[5282,5187,5186]],[[5127,4894,4893]],[[5290,5145,4899]],[[5290,5146,5291]],[[5034,5054,5035]],[[5034,4823,4999]],[[5190,5228,5188]],[[5227,5125,5211]],[[4915,4908,5292]],[[4916,5283,5293]],[[4916,4909,4908]],[[5294,5191,5295]],[[5296,5297,5197]],[[5298,5256,5194]],[[5299,5300,5301]],[[5298,5254,5256]],[[4887,5302,5301]],[[5255,5288,5253]],[[5303,5165,5166]],[[5304,4935,4934]],[[5305,5306,5307]],[[5308,5304,4934]],[[5307,5233,5231]],[[5278,5231,5225]],[[5309,5277,5251]],[[5233,5306,5182]],[[5181,5233,5182]],[[5306,5298,5182]],[[5263,5194,5310]],[[5182,5298,5194]],[[5255,5311,5288]],[[5312,4934,5313]],[[5250,5307,5314]],[[5250,5229,5113]],[[5305,5315,5311]],[[4934,5312,5308]],[[5255,5298,5306]],[[5255,5254,5298]],[[5311,5289,5288]],[[5316,5317,5318]],[[5258,5121,5193]],[[5295,5191,5119]],[[5319,4931,4907]],[[5312,5289,5311]],[[5094,5178,5095]],[[5094,4812,5178]],[[5110,5188,5111]],[[5110,5190,5188]],[[4886,5112,5180]],[[4886,4885,5112]],[[4978,5038,4977]],[[5039,5067,5038]],[[5041,4990,4832]],[[4830,5060,5032]],[[4957,4991,4990]],[[4957,4956,4991]],[[5181,5262,5261]],[[5208,5263,5310]],[[5320,4931,5319]],[[4903,4913,4907]],[[5131,5080,5020]],[[5091,5081,5080]],[[4920,5319,5295]],[[4907,5191,5294]],[[5292,4943,5321]],[[4933,5162,5322]],[[5095,4809,5072]],[[5178,4812,4809]],[[5018,5176,5140]],[[5018,5079,5176]],[[5133,5323,5321]],[[5284,4916,4915]],[[4887,4889,5302]],[[5255,5306,5311]],[[5305,5311,5306]],[[5308,5324,5304]],[[5325,4926,4890]],[[5326,5327,5328]],[[5024,5046,5025]],[[5024,5174,5046]],[[5109,5145,5149]],[[5329,5146,4897]],[[4886,5149,4884]],[[5329,5330,5291]],[[5189,5211,5118]],[[5278,5314,5231]],[[5331,5332,5224]],[[5286,4912,4911]],[[5113,5307,5250]],[[5306,5233,5307]],[[5088,4810,5132]],[[4816,4814,4810]],[[5010,4985,5009]],[[5087,5086,5265]],[[5153,5011,5027]],[[4992,4986,4985]],[[4985,5010,4992]],[[5155,5028,5010]],[[5016,5055,5102]],[[5011,5010,5027]],[[4838,5122,4978]],[[5012,5011,5153]],[[4992,5012,5122]],[[4992,5010,5012]],[[5172,5333,4987]],[[4982,4984,5042]],[[5292,4937,4943]],[[5334,5335,5317]],[[5336,5334,5317]],[[4910,4930,5337]],[[5338,5318,5335]],[[4910,4909,5339]],[[5063,5340,5004]],[[4808,4805,5341]],[[5086,5088,5265]],[[5086,4810,5088]],[[5342,5331,5274]],[[5133,5321,4943]],[[5098,4918,5287]],[[4918,4917,5343]],[[5210,5105,5309]],[[5250,5314,5309]],[[5309,5314,5277]],[[5307,5231,5314]],[[5252,5278,5273]],[[5277,5314,5278]],[[4942,4941,5244]],[[5344,5271,4941]],[[5117,5116,5185]],[[5184,5141,5142]],[[5234,5181,5261]],[[5183,5263,5262]],[[5233,5181,5234]],[[5183,5262,5181]],[[5259,5289,5260]],[[5311,5315,5312]],[[5289,5345,4921]],[[5345,5313,5338]],[[4920,4922,5346]],[[4922,5347,5348]],[[5294,5295,5319]],[[5348,5347,5338]],[[4922,4921,5347]],[[5260,5289,4921]],[[5056,5053,5068]],[[5054,5034,4999]],[[5294,5319,4907]],[[5339,5349,4910]],[[5350,5316,5318]],[[5351,4921,5345]],[[5352,5353,5354]],[[5355,5196,5163]],[[5123,5125,5227]],[[5124,5210,5125]],[[5035,5055,5016]],[[5153,5122,5012]],[[5344,5267,5268]],[[5248,5271,5268]],[[5042,5172,4982]],[[4955,4988,4987]],[[4890,5305,4891]],[[5324,4935,5304]],[[5350,4938,5316]],[[4937,5292,5336]],[[5196,5165,5354]],[[5356,4939,5162]],[[5246,5357,5217]],[[5246,5245,5266]],[[5357,5215,5217]],[[5243,4942,5238]],[[4834,4838,4831]],[[5001,4826,4825]],[[5326,5163,5195]],[[5296,5196,5358]],[[4971,5150,5007]],[[4808,5341,5061]],[[4995,4997,4813]],[[4996,5088,4997]],[[5118,5211,5273]],[[5359,5228,5211]],[[5209,5241,5226]],[[5230,5106,5226]],[[5346,4932,5319]],[[5348,5338,5337]],[[5247,5360,5241]],[[5236,5229,5230]],[[5163,5165,5355]],[[5303,5356,5353]],[[5258,5361,5121]],[[5260,4921,4920]],[[5319,4920,5346]],[[5361,5259,4920]],[[5361,5295,5121]],[[5361,4920,5295]],[[5126,5218,5220]],[[5219,5238,5241]],[[5239,5219,5218]],[[5239,5238,5219]],[[4937,5316,4938]],[[5312,5345,5289]],[[4937,5317,5316]],[[5335,5337,5338]],[[5214,5116,5212]],[[5185,5180,5117]],[[5362,5323,5098]],[[4917,4924,5275]],[[5287,5362,5098]],[[5323,4915,5321]],[[5098,5323,5133]],[[5362,4915,5323]],[[4884,5143,4896]],[[5363,5281,5280]],[[5064,5066,4806]],[[5003,5137,4807]],[[5184,5207,5141]],[[5208,5310,5192]],[[5213,5225,5232]],[[5273,5278,5225]],[[5322,5350,5313]],[[5317,5335,5318]],[[4907,4931,4905]],[[4906,4903,4907]],[[4930,5364,4931]],[[4911,4906,5364]],[[5364,4906,4905]],[[4911,4903,4906]],[[5234,5214,5213]],[[5261,5184,5214]],[[4900,5144,5109]],[[4900,4899,5144]],[[5218,5216,5242]],[[5215,5243,5216]],[[5333,4975,4987]],[[4974,4956,4975]],[[5357,5243,5215]],[[5357,5246,5266]],[[5016,5157,5158]],[[5102,5028,5100]],[[5365,5282,5281]],[[5366,5216,5282]],[[4893,5187,5127]],[[5282,5216,5187]],[[5149,5108,5109]],[[5179,5097,5108]],[[4933,5322,4934]],[[5162,4936,5322]],[[5338,5313,5318]],[[5322,4938,5350]],[[4915,5292,5321]],[[4908,4910,5336]],[[4937,5336,5317]],[[5292,4908,5336]],[[5187,5218,5127]],[[5279,5239,5218]],[[4807,5066,5003]],[[4807,4806,5066]],[[4932,5348,5337]],[[5347,5351,5338]],[[5346,5348,4932]],[[5346,4922,5348]],[[5154,5017,5016]],[[5048,5065,5017]],[[5359,5188,5228]],[[5189,5118,5159]],[[5333,4973,4975]],[[5135,4974,4973]],[[5217,5366,5281]],[[5217,5216,5366]],[[5366,5365,5281]],[[5366,5282,5365]],[[5073,5071,5074]],[[5264,5069,5071]],[[4805,5073,4803]],[[4805,5071,5073]],[[5211,5252,5273]],[[5251,5277,5252]],[[4932,5320,5319]],[[4932,5337,4930]],[[5106,5229,5250]],[[5236,5244,5114]],[[5236,5114,5113]],[[5244,4941,4947]],[[5207,5161,5160]],[[5119,5121,5295]],[[5207,5192,5367]],[[5193,5121,5120]],[[5367,5192,5120]],[[5310,5194,5192]],[[5210,5309,5251]],[[5107,5250,5309]],[[5368,5342,5276]],[[5293,4909,4916]],[[5274,5283,5287]],[[5369,5368,5224]],[[5119,5367,5120]],[[5161,5207,5367]],[[5085,4818,4816]],[[5085,4969,4818]],[[4895,5190,4885]],[[5190,5126,5220]],[[5322,5313,4934]],[[5350,5318,5313]],[[5257,5258,5193]],[[5253,5259,5258]],[[5357,5266,5243]],[[5245,5248,5267]],[[4914,5119,5191]],[[5161,5367,5119]],[[5150,5061,5007]],[[5150,4808,5061]],[[5244,4947,5114]],[[4941,5271,5270]],[[5261,5208,5207]],[[5262,5263,5208]],[[5218,5126,5127]],[[5220,5228,5190]],[[5305,5308,5315]],[[5305,5324,5308]],[[5342,5274,5276]],[[5287,4918,5274]],[[5325,5327,5370]],[[5326,5328,5371]],[[5370,5195,5197]],[[5355,5165,5196]],[[5106,5105,5226]],[[5107,5309,5105]],[[5322,4936,4938]],[[5162,4919,4936]],[[5372,5058,5057]],[[5373,5374,5206]],[[5169,5168,5204]],[[4980,5341,5013]],[[5000,4999,4823]],[[4998,5053,4999]],[[4905,4931,5364]],[[5320,4932,4931]],[[4890,5324,5305]],[[4890,4925,5324]],[[5274,5343,5275]],[[5274,4918,5343]],[[5375,5372,5057]],[[5058,5376,5373]],[[5274,5293,5283]],[[5349,4911,5364]],[[5050,5082,5051]],[[5050,5074,5082]],[[5214,5185,5116]],[[5142,5180,5185]],[[5147,5363,5143]],[[5147,5281,5363]],[[5016,5102,5157]],[[5055,5269,5153]],[[5130,5078,5175]],[[5076,5083,5077]],[[5256,5257,5193]],[[5256,5254,5257]],[[4832,4831,4837]],[[4834,4833,4838]],[[5090,5129,5131]],[[5104,5094,5129]],[[5299,5327,5300]],[[5299,5328,5327]],[[5151,5100,5101]],[[5154,5158,5100]],[[5006,5063,5004]],[[5021,5205,5063]],[[5205,5021,5023]],[[5063,5062,5021]],[[5204,5022,5169]],[[5021,5062,5022]],[[5327,5195,5370]],[[5377,5358,5378]],[[5039,5269,5055]],[[5039,4978,5269]],[[5342,5332,5331]],[[5368,5223,5224]],[[5293,5379,4909]],[[5286,5222,4912]],[[5331,5224,5285]],[[5332,5369,5224]],[[5380,5372,5375]],[[5135,5376,5372]],[[5003,5065,5019]],[[5002,5017,5065]],[[5378,4925,4926]],[[5354,5165,5352]],[[5271,5344,5268]],[[5266,5245,5267]],[[4975,4955,4987]],[[4975,4956,4955]],[[5372,5376,5058]],[[5381,5382,5333]],[[5241,5360,5235]],[[5247,5244,5360]],[[5143,5186,4893]],[[5280,5282,5186]],[[5379,5331,5285]],[[5293,5274,5331]],[[4954,5383,4860]],[[4954,4951,5383]],[[5148,5384,4897]],[[5330,5145,5290]],[[5174,5199,5043]],[[5043,5381,5044]],[[5204,5168,5023]],[[5061,5341,5205]],[[5023,5168,5205]],[[5170,5061,5168]],[[5006,5015,5062]],[[5333,5382,4973]],[[5062,5015,5206]],[[5005,5057,5015]],[[5022,5062,5199]],[[5382,5376,5135]],[[5385,5303,5166]],[[5385,4939,5356]],[[4878,4874,4944]],[[4950,4876,4874]],[[5143,5280,5186]],[[5143,5363,5280]],[[5199,5381,5043]],[[5382,5374,5376]],[[5338,5351,5345]],[[5347,4921,5351]],[[5148,5145,5329]],[[5330,5290,5291]],[[4982,5172,4987]],[[5044,5381,5333]],[[5386,5387,5201]],[[4961,5388,4867]],[[4817,4819,5221]],[[4818,4821,4819]],[[4909,5379,5285]],[[5293,5331,5379]],[[5258,5259,5361]],[[5253,5289,5259]],[[5046,5171,5059]],[[5046,5045,5171]],[[5378,4933,4925]],[[4935,5324,4925]],[[5228,5227,5211]],[[5220,5240,5123]],[[5220,5123,5227]],[[5240,5209,5123]],[[5146,5329,5291]],[[5329,5145,5330]],[[5384,5329,4897]],[[5384,5148,5329]],[[4943,4919,5098]],[[4943,4936,4919]],[[5343,4917,5275]],[[4919,4924,4917]],[[4884,4898,5147]],[[4897,5146,4898]],[[5378,5354,4933]],[[5353,5162,5354]],[[5389,5149,5148]],[[5389,4884,5149]],[[4897,5389,5148]],[[4897,4884,5389]],[[5055,5153,5102]],[[5269,5122,5153]],[[5131,5130,5175]],[[5093,5095,5076]],[[5241,5235,5230]],[[5360,5244,5235]],[[5100,5151,5154]],[[5101,5089,5151]],[[5045,5174,5043]],[[5200,5206,5374]],[[5339,5286,4911]],[[5224,5222,5286]],[[4891,5249,5272]],[[4946,4941,5270]],[[4885,5190,5110]],[[4895,4894,5190]],[[4944,4872,4951]],[[4875,4873,4872]],[[5290,4901,5223]],[[5290,4899,4901]],[[5010,5156,5155]],[[5265,5089,5156]],[[5305,5115,4891]],[[5305,5307,5115]],[[5236,5113,5229]],[[5115,5307,5113]],[[5087,5009,4969]],[[4986,4828,4827]],[[5285,5339,4909]],[[5285,5286,5339]],[[5335,4910,5337]],[[5349,5364,4930]],[[5284,5362,5287]],[[5284,4915,5362]],[[4963,5390,5391]],[[4841,5392,4839]],[[5393,5394,5395]],[[5396,5397,5388]],[[5398,5399,5386]],[[5400,4840,5401]],[[4850,4851,4849]],[[4854,4852,4851]],[[5167,4929,5096]],[[5160,4914,4929]],[[5199,5374,5381]],[[5206,5015,5373]],[[5058,5373,5015]],[[5376,5374,5373]],[[4825,4829,4828]],[[4825,4820,4829]],[[5342,5369,5332]],[[5342,5368,5369]],[[4973,5382,5135]],[[5381,5374,5382]],[[5303,5352,5165]],[[5303,5353,5352]],[[4863,4866,4847]],[[4869,4883,4866]],[[5396,5388,5394]],[[5402,4867,5388]],[[5249,4946,5270]],[[5115,5114,4946]],[[5205,5340,5063]],[[5403,5341,4979]],[[5009,4985,4827]],[[5009,5156,5010]],[[5404,5405,4967]],[[5406,5380,5014]],[[5265,5009,5087]],[[5265,5156,5009]],[[5359,5189,5188]],[[5359,5211,5189]],[[5340,4979,5004]],[[5340,5205,5403]],[[4892,5300,4890]],[[5300,5327,5325]],[[4850,4839,4962]],[[4843,5407,4842]],[[5408,5201,5387]],[[4958,4841,5400]],[[5386,5409,5387]],[[5410,5411,5412]],[[5039,5056,5067]],[[5035,5053,5056]],[[4910,5349,4930]],[[5339,4911,5349]],[[5413,4980,5014]],[[5414,5415,5416]],[[5417,5401,5418]],[[5013,5341,5419]],[[5334,4910,5335]],[[5334,5336,4910]],[[4881,4878,4945]],[[4877,4950,4878]],[[5325,5377,4926]],[[5196,5354,5420]],[[5397,5402,5388]],[[5397,4867,5402]],[[5421,4959,4958]],[[5422,5394,5388]],[[5392,4959,5423]],[[5395,5394,5424]],[[5425,5421,4958]],[[5423,5424,5426]],[[5400,4841,4840]],[[5426,5424,5422]],[[5427,5391,5421]],[[5391,5423,5421]],[[4839,5392,4962]],[[5424,5394,5422]],[[4960,5392,5426]],[[4841,4959,5392]],[[4863,5428,4866]],[[5383,4951,4868]],[[5022,5199,5169]],[[5200,5374,5199]],[[5046,5174,5045]],[[5169,5199,5174]],[[5404,5013,5419]],[[5404,5406,5013]],[[4890,5300,5325]],[[4892,4927,4888]],[[5409,5410,5387]],[[5202,5429,5430]],[[5386,5201,5398]],[[5203,4964,5201]],[[4851,4850,4854]],[[4962,4867,4850]],[[5421,5423,4959]],[[5390,5395,5423]],[[4960,5426,5422]],[[5392,5423,5426]],[[5431,5432,5415]],[[5202,5203,5408]],[[5387,5410,5408]],[[5416,5432,5430]],[[5171,5172,5042]],[[5044,5333,5172]],[[5433,4847,4865]],[[5433,4861,4847]],[[5404,4966,5406]],[[5380,5135,5372]],[[5406,4966,5434]],[[5404,5419,5405]],[[5418,4967,5415]],[[4966,5404,4967]],[[4968,5418,5401]],[[4968,4967,5418]],[[5393,4963,4965]],[[5393,5395,5390]],[[5340,5403,4979]],[[5205,5341,5403]],[[5413,4981,4980]],[[4979,5341,4980]],[[5005,4981,5375]],[[5005,4979,4981]],[[4805,5264,5071]],[[4805,5081,5264]],[[4856,4848,4858]],[[4850,4867,4848]],[[5392,4960,4962]],[[5422,5388,4961]],[[5408,5203,5201]],[[5408,5435,5202]],[[5380,5406,5434]],[[5014,5013,5406]],[[5353,5356,5162]],[[5303,5385,5356]],[[5408,5410,5435]],[[5436,5401,5417]],[[5418,5412,5417]],[[5410,5409,5436]],[[5415,5412,5418]],[[5436,5409,5401]],[[5380,5375,5014]],[[5375,4981,5413]],[[4966,4968,5434]],[[5401,5135,4968]],[[5430,5419,5341]],[[5430,5432,5405]],[[5130,5093,5078]],[[5095,5072,5076]],[[5326,5195,5327]],[[5163,5196,5195]],[[5383,5428,4860]],[[5428,4868,4866]],[[4925,4933,4935]],[[5354,5162,4933]],[[5425,5386,5399]],[[4958,5409,5386]],[[5129,5093,5130]],[[5129,5094,5093]],[[4860,5428,4863]],[[5383,4868,5428]],[[5377,5296,5358]],[[5197,5196,5296]],[[5410,5429,5435]],[[5415,5432,5416]],[[5429,5414,5430]],[[5414,5412,5415]],[[4963,5398,5201]],[[5427,5421,5399]],[[5219,5241,5240]],[[5238,5247,5241]],[[4892,4888,5300]],[[4927,4889,4888]],[[5423,5395,5424]],[[5390,4963,5393]],[[4805,5430,5341]],[[4805,4964,5430]],[[4968,5380,5434]],[[4968,5135,5380]],[[4882,4881,4949]],[[4945,5272,4948]],[[5378,5420,5354]],[[5358,5196,5420]],[[5377,5378,4926]],[[5358,5420,5378]],[[4963,5391,5427]],[[5390,5423,5391]],[[5396,5393,4965]],[[5396,5394,5393]],[[5272,5249,5270]],[[4891,5115,5249]],[[5271,4948,5272]],[[5271,4949,4948]],[[5243,4940,4942]],[[5266,5267,4940]],[[5005,5375,5057]],[[5413,5014,5375]],[[5421,5425,5399]],[[4958,5386,5425]],[[5431,5405,5432]],[[5419,5430,5405]],[[5409,5400,5401]],[[5409,4958,5400]],[[4940,5344,4941]],[[4940,5267,5344]],[[5429,5202,5435]],[[5430,4964,5202]],[[4835,4830,5033]],[[4832,4990,4830]],[[4828,4831,4825]],[[4828,4834,4831]],[[5297,5377,5325]],[[5297,5296,5377]],[[5370,5297,5325]],[[5370,5197,5297]],[[5410,5412,5414]],[[5411,5417,5412]],[[5430,5414,5416]],[[5429,5410,5414]],[[5398,5427,5399]],[[5398,4963,5427]],[[4967,5431,5415]],[[4967,5405,5431]],[[5198,5326,5371]],[[5198,5163,5326]],[[4962,4961,4867]],[[4960,5422,4961]],[[4845,4843,4839]],[[4845,5407,4843]],[[5308,5312,5315]],[[5313,5345,5312]],[[5237,5242,5243]],[[5279,5218,5242]],[[5411,5436,5417]],[[5411,5410,5436]],[[5300,4887,5301]],[[5300,4888,4887]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c1743cc-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efcc0b49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:56:35.000"},"geometry":[{"boundaries":[[[4879,4880,5437]],[[5438,5439,5385]],[[5440,5441,5442]],[[5440,5443,5444]],[[5445,5446,5447]],[[5448,5449,5446]],[[5450,5451,5452]],[[5450,5453,5454]],[[5455,5456,5457]],[[5455,5457,5458]],[[5459,5460,5461]],[[5460,5462,5461]],[[5463,5464,5465]],[[5466,5467,5468]],[[5467,5469,5468]],[[5470,5471,5472]],[[5473,5474,5475]],[[5476,5459,5461]],[[5466,5468,5465]],[[5469,4343,5468]],[[5461,5463,5465]],[[5477,5478,5479]],[[5464,5466,5465]],[[5480,5481,5482]],[[5462,5463,5461]],[[5483,5482,5484]],[[5485,5486,5487]],[[5459,5458,5460]],[[5455,5454,5456]],[[5450,5452,5453]],[[5488,5475,5489]],[[5446,5490,5448]],[[5490,5446,5491]],[[5491,5446,5445]],[[5447,5440,5492]],[[5440,5442,5443]],[[5488,5493,5441]],[[5493,5488,5494]],[[5488,5489,5495]],[[5475,5496,5489]],[[5497,5498,5499]],[[5496,5475,5500]],[[5500,5475,5474]],[[5475,5501,5473]],[[5475,5502,5501]],[[5503,5504,5505]],[[5506,5503,5505]],[[5507,5506,5505]],[[5508,5507,5505]],[[5509,5508,5505]],[[5510,5511,5512]],[[5513,5505,5514]],[[5514,5505,5515]],[[5515,5505,5516]],[[5517,5515,5516]],[[5518,5517,5516]],[[5519,5518,5516]],[[5517,5518,5520]],[[5520,5518,5521]],[[5521,5518,5522]],[[5522,5518,5523]],[[5518,5487,5524]],[[5525,5523,5518]],[[5526,5525,5518]],[[5527,5526,5518]],[[5528,5529,5483]],[[5530,5531,5532]],[[5485,5533,5486]],[[4927,5486,5534]],[[5535,5536,5537]],[[5538,5539,5540]],[[5541,5485,5487]],[[5542,5543,5544]],[[5302,5533,5545]],[[5546,5547,5548]],[[5549,5550,5551]],[[5299,5519,5552]],[[5553,5554,5555]],[[5556,5557,5542]],[[5552,5558,5299]],[[4855,5559,4853]],[[4842,5560,5561]],[[5562,5563,4869]],[[5558,5371,5328]],[[5556,5198,5564]],[[5565,5566,5567]],[[5166,5438,5385]],[[5565,5567,5568]],[[5569,4939,5570]],[[5571,5572,5573]],[[5570,4939,5385]],[[5574,5575,5576]],[[5577,5223,5368]],[[5578,5579,5580]],[[5581,5582,5583]],[[5584,5585,5586]],[[5587,5588,5551]],[[5589,5590,5591]],[[5592,5593,5594]],[[5581,5583,5595]],[[5563,4949,5596]],[[5563,4882,4949]],[[5563,5437,4882]],[[5437,4880,4882]],[[4879,5437,4877]],[[5437,4876,4950]],[[4873,4875,5562]],[[4873,5562,4870]],[[4870,5562,4871]],[[4871,5562,4869]],[[4864,4883,5597]],[[5597,4883,4869]],[[5563,5598,5597]],[[5597,4865,4864]],[[5599,5600,5576]],[[5601,5539,5602]],[[5603,4861,5433]],[[5604,5605,5606]],[[5598,5607,4858]],[[5608,5609,5610]],[[5559,5598,5611]],[[5607,5559,4855]],[[5612,5611,5613]],[[5614,5615,5616]],[[4853,5559,4854]],[[5617,5618,5619]],[[4852,4854,5620]],[[4852,5620,4849]],[[5621,5622,5623]],[[4844,4849,5620]],[[5620,5611,5624]],[[4845,4844,5624]],[[5561,5407,4845]],[[5625,5626,5627]],[[5539,5601,5540]],[[5539,5538,5608]],[[4836,5628,5001]],[[5629,5033,5032]],[[5629,5630,5033]],[[5617,5631,5618]],[[5033,5630,4835]],[[5632,5633,4814]],[[5634,5628,5635]],[[5628,4826,5001]],[[5628,4836,4835]],[[5636,5637,4804]],[[5638,5639,5622]],[[5640,4976,5103]],[[5639,5641,5622]],[[4976,5632,4821]],[[4821,5632,5221]],[[5221,5632,4817]],[[4817,5632,4814]],[[4814,5633,4815]],[[4815,5633,4811]],[[5642,5643,5623]],[[5623,5643,5621]],[[5510,5644,5645]],[[5646,5505,5513]],[[5646,5509,5505]],[[5511,5510,5647]],[[5504,5502,5505]],[[5494,5488,5495]],[[5648,5516,5505]],[[5492,5440,5444]],[[5505,5502,5475]],[[5451,5450,5449]],[[5488,5441,5440]],[[5440,5447,5446]],[[5455,5450,5454]],[[5446,5449,5450]],[[5649,5459,5476]],[[5650,5651,5645]],[[5458,5459,5455]],[[5649,5651,5652]],[[5459,5649,5652]],[[5651,5653,5652]],[[5651,5650,5653]],[[5645,5644,5650]],[[5510,5645,5654]],[[5645,5655,5654]],[[5655,5656,5654]],[[5657,5629,5658]],[[5659,5660,5661]],[[5662,5661,5660]],[[5663,5135,5616]],[[5606,5659,5661]],[[5659,5664,5660]],[[5665,5666,5617]],[[5665,4811,5631]],[[5667,5668,5669]],[[5606,5629,5032]],[[5616,5662,5664]],[[5614,5670,5615]],[[5615,5671,5605]],[[5657,5635,5629]],[[5616,5664,5663]],[[5662,5660,5664]],[[5608,5672,5616]],[[5673,5668,5614]],[[5638,5674,5675]],[[5676,5677,5678]],[[5679,5680,5628]],[[5628,4835,5630]],[[5681,5682,5683]],[[5634,5679,5628]],[[5631,5617,5666]],[[5684,5677,5685]],[[5673,5614,5616]],[[5686,5687,5688]],[[4811,5665,5636]],[[4811,5633,5631]],[[5539,5608,5616]],[[5672,5673,5616]],[[5604,5606,5661]],[[5032,5135,5663]],[[5032,5689,5606]],[[5032,5659,5689]],[[5627,5677,5690]],[[5691,5641,5639]],[[5627,5692,5685]],[[5627,5685,5677]],[[5693,5694,5609]],[[5671,5695,5605]],[[5668,5696,5614]],[[5687,5694,5688]],[[5696,5697,5670]],[[5668,5667,5698]],[[5610,5669,5672]],[[5610,5667,5669]],[[5632,5640,5693]],[[5640,5103,4826]],[[5681,5683,5657]],[[5699,5679,5634]],[[5693,5682,5694]],[[5695,5657,5658]],[[5691,5639,5700]],[[5691,5678,5641]],[[4811,5636,4804]],[[5636,5619,5678]],[[5636,5684,5637]],[[5636,5678,5684]],[[5637,5685,5692]],[[5637,5684,5685]],[[5625,5701,5626]],[[4804,5637,5692]],[[5675,5701,5702]],[[5626,5703,5627]],[[5625,5702,5701]],[[5703,4804,5692]],[[5704,5702,5705]],[[5700,5675,5702]],[[5690,5705,5627]],[[5690,5704,5705]],[[5638,5675,5700]],[[5638,5621,5674]],[[5694,5682,5688]],[[5683,5634,5657]],[[5706,5707,5536]],[[5708,5590,5709]],[[5710,5711,5712]],[[5713,5714,5715]],[[5586,5716,5717]],[[5712,5711,5718]],[[5662,5604,5661]],[[5658,5629,5605]],[[5616,5615,5604]],[[5670,5697,5687]],[[5670,5687,5615]],[[5686,5681,5695]],[[5615,5687,5671]],[[5697,5694,5687]],[[5705,5625,5627]],[[5705,5702,5625]],[[5693,5640,5679]],[[5632,4976,5640]],[[5719,5710,5720]],[[5547,5546,5721]],[[5617,5636,5665]],[[5617,5619,5636]],[[5684,5678,5677]],[[5619,5641,5678]],[[5675,5674,5701]],[[5621,4804,5674]],[[5702,5704,5700]],[[5690,5676,5704]],[[5722,5600,5723]],[[5722,5574,5576]],[[5724,5725,5726]],[[5727,5588,5728]],[[5554,5723,5729]],[[5730,5731,5732]],[[5708,5733,5555]],[[5734,5735,5714]],[[5736,5580,5728]],[[5550,5549,5737]],[[5736,5728,5738]],[[5739,5740,5583]],[[5551,5741,5587]],[[5742,5743,5248]],[[5744,5667,5609]],[[5698,5744,5696]],[[5744,5698,5667]],[[5744,5697,5696]],[[5745,5746,5747]],[[5748,5531,5749]],[[5693,5683,5682]],[[5693,5679,5699]],[[5683,5699,5634]],[[5683,5693,5699]],[[5750,5716,5751]],[[5728,5588,5587]],[[5752,5751,5732]],[[5584,5717,5753]],[[5731,5752,5732]],[[5753,5754,5755]],[[5751,5716,5756]],[[5720,5757,5719]],[[5758,5717,5716]],[[5759,5147,5760]],[[5761,5578,5580]],[[5579,5595,5762]],[[5758,5763,5717]],[[5754,5281,5755]],[[5587,5738,5728]],[[5732,5736,5738]],[[5669,5673,5672]],[[5669,5668,5673]],[[5640,5680,5679]],[[5640,4826,5628]],[[5764,5765,5567]],[[5766,5571,5767]],[[5768,5769,5770]],[[5498,5771,5499]],[[5674,5626,5701]],[[5674,4804,5626]],[[5627,5703,5692]],[[5626,4804,5703]],[[5608,5610,5672]],[[5609,5667,5610]],[[5772,5709,5773]],[[5774,5588,5727]],[[5761,5580,5736]],[[5736,5751,5756]],[[5749,5721,5775]],[[5290,5223,5775]],[[5710,5548,5711]],[[5546,5776,5290]],[[5695,5681,5657]],[[5688,5682,5681]],[[5777,5778,5779]],[[5747,5746,5780]],[[5738,5730,5732]],[[5781,5248,5217]],[[5773,5739,5583]],[[5782,5783,5727]],[[5135,5539,5616]],[[5538,5609,5608]],[[5547,5721,5749]],[[5721,5290,5775]],[[5547,5749,5531]],[[5775,5223,5577]],[[5532,5784,5530]],[[5749,5775,5577]],[[5767,5785,5766]],[[5786,5787,5788]],[[5572,5766,5789]],[[5790,5748,5791]],[[5605,5695,5658]],[[5671,5687,5686]],[[5681,5686,5688]],[[5695,5671,5686]],[[5694,5744,5609]],[[5694,5697,5744]],[[5792,5793,5794]],[[5766,5785,5795]],[[5536,5707,5796]],[[5706,5797,5707]],[[5787,5795,5532]],[[5748,5749,5791]],[[5766,5795,5787]],[[5798,5799,5800]],[[5659,5663,5664]],[[5659,5032,5663]],[[5732,5751,5736]],[[5752,5750,5751]],[[5801,5802,5750]],[[5752,5731,5750]],[[5725,5803,5804]],[[5805,5750,5804]],[[5806,5763,5803]],[[5758,5750,5805]],[[5757,5720,5807]],[[5581,5595,5579]],[[5712,5720,5710]],[[5712,5718,5808]],[[5809,5810,5742]],[[5743,5271,5248]],[[5742,5724,5809]],[[5801,5750,5731]],[[5811,5566,5812]],[[5813,5814,5707]],[[5815,5765,5764]],[[4924,4923,5569]],[[5166,5816,5817]],[[5818,5569,5570]],[[5819,5815,5764]],[[5814,5536,5796]],[[5820,5818,5570]],[[5821,5822,5820]],[[5707,5770,5813]],[[5484,5482,5821]],[[5439,5570,5385]],[[5569,5765,4924]],[[5724,5823,5725]],[[5803,5805,5804]],[[5802,5801,5809]],[[5802,5804,5750]],[[5809,5730,5592]],[[5801,5731,5730]],[[5792,5794,5824]],[[5793,5825,5794]],[[5788,5787,5532]],[[5720,5808,5826]],[[5827,5788,5790]],[[5532,5531,5828]],[[5635,5628,5630]],[[5680,5640,5628]],[[5629,5635,5630]],[[5657,5634,5635]],[[5829,5729,5590]],[[5729,5591,5590]],[[5704,5691,5700]],[[5704,5678,5691]],[[5592,5830,5809]],[[4949,5271,5830]],[[5730,5809,5801]],[[5830,5810,5809]],[[5603,4857,4862]],[[5596,5723,5613]],[[5743,5742,5810]],[[5831,5823,5724]],[[5832,5811,5812]],[[5764,5567,5566]],[[5833,5812,5834]],[[5835,5735,5832]],[[5715,5836,5713]],[[5819,5275,5815]],[[5835,5832,5812]],[[5735,5837,5811]],[[5614,5696,5670]],[[5668,5698,5696]],[[5542,5544,5838]],[[5834,5839,5537]],[[5519,5516,5470]],[[5817,5528,5438]],[[5518,5840,5527]],[[5516,5841,5511]],[[5572,5571,5766]],[[5767,5799,5785]],[[5842,5544,5843]],[[5438,5844,5439]],[[5845,5846,5842]],[[5847,5779,5848]],[[5849,5756,5716]],[[5761,5736,5756]],[[5281,5850,5217]],[[5763,5758,5803]],[[5795,5784,5532]],[[5795,5785,5851]],[[5543,5542,5845]],[[5852,5853,5558]],[[5659,5606,5689]],[[5605,5629,5606]],[[5850,5806,5781]],[[5831,5742,5248]],[[5248,5781,5823]],[[5806,5803,5725]],[[5854,5806,5855]],[[5856,5754,5763]],[[5855,5725,5823]],[[5726,5809,5724]],[[5580,5857,5858]],[[5580,5579,5857]],[[5812,5833,5835]],[[5834,5814,5833]],[[5594,5593,5859]],[[5730,5738,5593]],[[5576,5600,5722]],[[5601,5611,5612]],[[5860,5816,5838]],[[5557,5861,5542]],[[5555,5780,5746]],[[5555,5573,5780]],[[5551,5862,5741]],[[5863,5830,5592]],[[5864,5865,5866]],[[5867,5868,5869]],[[5755,5864,5584]],[[5760,5870,5719]],[[5800,5871,5733]],[[5772,5773,5583]],[[5872,5873,5772]],[[5873,5708,5709]],[[5874,5771,5827]],[[5875,5794,5825]],[[5830,5863,4949]],[[5741,5859,5587]],[[5864,5866,5585]],[[5876,5877,5866]],[[5704,5676,5678]],[[5690,5677,5676]],[[5726,5725,5804]],[[5855,5806,5725]],[[5537,5839,5565]],[[5878,5779,5778]],[[5879,5565,5568]],[[5567,5765,5568]],[[5553,5722,5554]],[[5553,5574,5722]],[[5597,5433,4865]],[[5596,5729,5723]],[[5880,5439,5844]],[[5880,5820,5439]],[[5853,5861,5564]],[[5881,5542,5861]],[[5557,5564,5861]],[[5198,5371,5853]],[[5558,5882,5852]],[[5552,5542,5881]],[[5861,5852,5881]],[[5853,5371,5558]],[[5480,5883,5481]],[[5848,5779,5878]],[[5833,5715,5835]],[[5833,5814,5836]],[[5884,5885,5886]],[[5516,5648,5841]],[[5875,5825,5787]],[[5793,5789,5825]],[[5861,5853,5852]],[[5564,5198,5853]],[[5551,5550,5862]],[[5551,5774,5549]],[[5470,5478,5878]],[[5552,5846,5845]],[[5843,5543,5845]],[[5843,5544,5543]],[[5778,5886,5887]],[[5884,5822,5885]],[[5888,5578,5877]],[[5581,5579,5578]],[[5739,5589,5889]],[[5862,5596,5741]],[[5890,5576,5575]],[[5890,5612,5613]],[[5589,5709,5590]],[[5873,5733,5708]],[[5870,5891,5719]],[[5892,5548,5710]],[[5871,5800,5799]],[[5798,5808,5893]],[[5871,5799,5767]],[[5808,5894,5826]],[[5795,5851,5784]],[[5785,5799,5851]],[[5865,5757,5868]],[[5869,5826,5872]],[[5535,5745,5824]],[[5895,5896,5553]],[[5707,5814,5796]],[[5834,5537,5814]],[[5824,5745,5897]],[[5535,5895,5745]],[[5711,5548,5547]],[[5892,5898,5776]],[[5755,5759,5760]],[[5281,5147,5759]],[[5888,5581,5578]],[[5867,5582,5581]],[[5899,5714,5713]],[[5715,5833,5836]],[[5875,5768,5770]],[[5836,5814,5813]],[[5299,5558,5328]],[[5299,5301,5519]],[[5549,5774,5889]],[[5740,5595,5583]],[[5580,5858,5728]],[[5774,5551,5588]],[[5858,5782,5727]],[[5739,5889,5783]],[[5665,5631,5666]],[[5633,5618,5631]],[[5849,5877,5761]],[[5876,5888,5877]],[[5789,5792,5897]],[[5706,5536,5535]],[[5529,5528,5817]],[[5880,5844,5528]],[[5838,5544,5900]],[[5544,5842,5900]],[[5860,5480,5901]],[[5860,5900,5480]],[[4924,5815,5275]],[[4924,5765,5815]],[[5735,5734,5902]],[[5903,5275,5904]],[[5275,5819,5904]],[[5764,5566,5837]],[[5905,5837,5735]],[[5905,5819,5837]],[[5900,5860,5838]],[[5556,5164,5198]],[[5786,5768,5787]],[[5797,5706,5794]],[[5745,5789,5897]],[[5766,5825,5789]],[[5639,5638,5700]],[[5622,5621,5638]],[[5794,5706,5824]],[[5794,5875,5797]],[[5593,5592,5730]],[[5594,5863,5592]],[[5763,5754,5753]],[[5856,5281,5754]],[[5586,5849,5716]],[[5866,5877,5849]],[[5164,5816,5166]],[[5901,5480,5529]],[[5799,5798,5851]],[[5800,5733,5798]],[[5728,5858,5727]],[[5762,5595,5740]],[[5783,5782,5739]],[[5858,5857,5740]],[[5887,5885,5778]],[[5887,5886,5885]],[[5735,5811,5832]],[[5837,5566,5811]],[[5573,5767,5571]],[[5573,5871,5767]],[[5753,5755,5584]],[[5281,5759,5755]],[[5791,5874,5827]],[[5734,5498,5906]],[[5749,5577,5791]],[[5907,5499,5874]],[[5497,5907,5368]],[[5874,5791,5907]],[[5907,5577,5368]],[[5907,5791,5577]],[[5497,5499,5907]],[[5771,5874,5499]],[[5531,5718,5711]],[[5893,5851,5798]],[[5770,5797,5875]],[[5770,5707,5797]],[[5828,5788,5532]],[[5825,5766,5787]],[[5616,5604,5662]],[[5615,5605,5604]],[[5908,5708,5555]],[[5554,5829,5708]],[[5746,5553,5555]],[[5722,5723,5554]],[[5817,5438,5166]],[[5528,5844,5438]],[[5146,5870,5147]],[[5146,5891,5870]],[[5876,5868,5867]],[[5826,5894,5872]],[[5582,5869,5872]],[[5807,5720,5826]],[[5868,5826,5869]],[[5720,5712,5808]],[[5729,5737,5591]],[[5729,5596,5862]],[[5737,5862,5550]],[[5737,5729,5862]],[[5857,5762,5740]],[[5857,5579,5762]],[[5530,5893,5808]],[[5909,5894,5808]],[[5739,5773,5589]],[[5583,5910,5772]],[[5549,5589,5591]],[[5773,5709,5589]],[[5789,5747,5572]],[[5789,5745,5747]],[[5780,5572,5747]],[[5780,5573,5572]],[[5897,5792,5824]],[[5789,5793,5792]],[[5589,5549,5889]],[[5591,5737,5549]],[[5830,5911,5810]],[[5830,5271,5743]],[[5868,5807,5826]],[[5868,5876,5865]],[[5868,5757,5807]],[[5898,5891,5776]],[[5554,5908,5555]],[[5554,5708,5908]],[[5835,5714,5735]],[[5835,5715,5714]],[[5583,5582,5910]],[[5867,5869,5582]],[[5902,5903,5904]],[[5276,5275,5903]],[[5790,5788,5828]],[[5827,5786,5788]],[[5718,5530,5808]],[[5784,5851,5893]],[[5771,5786,5827]],[[5899,5713,5769]],[[5901,5529,5817]],[[5480,5483,5529]],[[5146,5776,5891]],[[5146,5290,5776]],[[5719,5898,5710]],[[5776,5548,5892]],[[5863,5741,5596]],[[5594,5859,5741]],[[5582,5872,5910]],[[5894,5909,5733]],[[4857,5603,4858]],[[5613,5576,5890]],[[4844,5620,5624]],[[5601,5612,5912]],[[5559,5611,5620]],[[5598,5613,5611]],[[5866,5865,5876]],[[5760,5147,5870]],[[5837,5819,5764]],[[5905,5904,5819]],[[5750,5758,5716]],[[5805,5803,5758]],[[5845,5842,5843]],[[5846,5900,5842]],[[5867,5888,5876]],[[5867,5581,5888]],[[5827,5790,5791]],[[5828,5748,5790]],[[5812,5839,5834]],[[5812,5566,5565]],[[5555,5871,5573]],[[5733,5872,5894]],[[5555,5733,5871]],[[5873,5872,5733]],[[5776,5546,5548]],[[5290,5721,5546]],[[5823,5831,5248]],[[5724,5742,5831]],[[5906,5498,5368]],[[5498,5714,5771]],[[5368,5498,5497]],[[5276,5903,5902]],[[5902,5734,5276]],[[5714,5498,5734]],[[5276,5906,5368]],[[5276,5734,5906]],[[5813,5769,5836]],[[5899,5786,5771]],[[5836,5769,5713]],[[5813,5770,5769]],[[5854,5781,5806]],[[5217,5850,5781]],[[4856,5607,4855]],[[4856,4858,5607]],[[5528,5483,5880]],[[5480,5482,5483]],[[5740,5782,5858]],[[5740,5739,5782]],[[5872,5772,5910]],[[5873,5709,5772]],[[5798,5909,5808]],[[5798,5733,5909]],[[5865,5719,5757]],[[5865,5864,5760]],[[5710,5898,5892]],[[5719,5891,5898]],[[5865,5760,5719]],[[5864,5755,5760]],[[5547,5531,5711]],[[5748,5828,5531]],[[5407,5560,4842]],[[5561,4845,5624]],[[5613,5599,5576]],[[5723,5600,5599]],[[5900,5883,5480]],[[5481,5913,5482]],[[5726,5802,5809]],[[5726,5804,5802]],[[4858,5603,5598]],[[4862,4861,5603]],[[5901,5816,5860]],[[5901,5817,5816]],[[5557,5556,5564]],[[5816,5164,5556]],[[5823,5854,5855]],[[5823,5781,5854]],[[5765,5569,5568]],[[4923,4939,5569]],[[5849,5761,5756]],[[5877,5578,5761]],[[5864,5585,5584]],[[5866,5849,5585]],[[5584,5586,5717]],[[5585,5849,5586]],[[5905,5902,5904]],[[5905,5735,5902]],[[5556,5838,5816]],[[5556,5542,5838]],[[5900,5481,5883]],[[5885,5913,5481]],[[5531,5530,5718]],[[5784,5893,5530]],[[5850,5856,5806]],[[5753,5717,5763]],[[5806,5856,5763]],[[5850,5281,5856]],[[5783,5774,5727]],[[5783,5889,5774]],[[5569,5818,5568]],[[5839,5812,5565]],[[5478,5477,5878]],[[5647,5516,5511]],[[5647,5510,5914]],[[5512,5644,5510]],[[5654,5647,5914]],[[5470,5516,5647]],[[5563,5613,5598]],[[5723,5599,5613]],[[5777,5779,5535]],[[5536,5814,5537]],[[5778,5777,5884]],[[5777,5565,5879]],[[5439,5820,5570]],[[5879,5568,5818]],[[5741,5863,5594]],[[5596,4949,5863]],[[5603,5433,5597]],[[4875,4876,5437]],[[5593,5587,5859]],[[5593,5738,5587]],[[5545,5533,5485]],[[5533,5534,5486]],[[4889,5533,5302]],[[4889,5534,5533]],[[5510,5654,5914]],[[5656,5471,5470]],[[5786,5899,5769]],[[5771,5714,5899]],[[5537,5565,5777]],[[5847,5896,5779]],[[5895,5535,5779]],[[5824,5706,5535]],[[5787,5768,5875]],[[5786,5769,5768]],[[5484,5820,5880]],[[5879,5818,5820]],[[5483,5484,5880]],[[5482,5913,5821]],[[5484,5821,5820]],[[5913,5885,5822]],[[5911,5743,5810]],[[5911,5830,5743]],[[4840,5915,5401]],[[5561,5560,5407]],[[5848,5878,5479]],[[5656,5470,5654]],[[5885,5519,5778]],[[5885,5846,5519]],[[5552,5519,5846]],[[5301,5302,5518]],[[5542,5552,5845]],[[5882,5558,5552]],[[5881,5882,5552]],[[5881,5852,5882]],[[5301,5518,5519]],[[5524,5840,5518]],[[5518,5545,5487]],[[5518,5302,5545]],[[5601,5624,5611]],[[5915,4840,5561]],[[5915,5561,5624]],[[4840,4842,5561]],[[5537,5777,5535]],[[5879,5884,5777]],[[5778,5884,5886]],[[5822,5821,5913]],[[5879,5822,5884]],[[5879,5820,5822]],[[5745,5553,5746]],[[5896,5574,5553]],[[5540,5601,5912]],[[5915,5624,5601]],[[5896,5895,5779]],[[5553,5745,5895]],[[4854,5559,5620]],[[5607,5598,5559]],[[5603,5597,5598]],[[5437,4950,4877]],[[5613,5563,5596]],[[5597,4869,5563]],[[5562,5437,5563]],[[5562,4875,5437]],[[5472,5478,5470]],[[5472,5479,5478]],[[5885,5900,5846]],[[5885,5481,5900]],[[5915,5602,5401]],[[5915,5601,5602]],[[5479,5878,5477]],[[5470,5647,5654]],[[5401,5539,5135]],[[5401,5602,5539]],[[5708,5829,5590]],[[5554,5729,5829]],[[5545,5541,5487]],[[5545,5485,5541]],[[5778,5470,5878]],[[5778,5519,5470]],[[4348,4343,5469]],[[5467,4799,4348]],[[5467,4348,5469]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c176ae8-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.407ee0b5c4684c8baa3e2a326ead6088","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5916,5917,5918]],[[5919,5920,5921]],[[5922,5919,5921]],[[5923,5922,5924]],[[5925,5926,5927]],[[5928,5927,5926]],[[5929,5928,5926]],[[5930,5931,5926]],[[5932,5933,5934]],[[5935,5933,5932]],[[5936,5932,5937]],[[5938,5939,5940]],[[5941,5942,5927]],[[5943,5944,5945]],[[5946,5947,5948]],[[5948,5943,5949]],[[5949,5950,5951]],[[5951,5950,5952]],[[5949,5943,5950]],[[5950,5943,5945]],[[5947,5953,5943]],[[5954,5955,5956]],[[5948,5947,5943]],[[5957,5958,5959]],[[5960,5947,5946]],[[5961,5962,5963]],[[5964,5965,5966]],[[5931,5929,5926]],[[5967,5968,5969]],[[5970,5971,5972]],[[5973,5974,5975]],[[5971,5970,5976]],[[5977,5978,5979]],[[5980,5981,5982]],[[5983,5976,5984]],[[5985,5986,5987]],[[5963,5988,5989]],[[5990,5955,5991]],[[5992,5993,5956]],[[5935,5994,5933]],[[5995,5996,5997]],[[5942,5996,5925]],[[5927,5942,5925]],[[5941,5924,5942]],[[5941,5923,5924]],[[5922,5921,5924]],[[5920,5918,5917]],[[5920,5917,5921]],[[5916,5994,5935]],[[5998,5999,5917]],[[6000,6001,6002]],[[6003,6004,6005]],[[6006,5971,5976]],[[5986,5974,5987]],[[5983,6007,6006]],[[5970,6008,6009]],[[6010,6011,6012]],[[6013,6014,6010]],[[5987,5974,6004]],[[5970,5972,6008]],[[6015,6016,6017]],[[6010,6014,6018]],[[6019,6020,6021]],[[6022,5926,5947]],[[5972,6012,6008]],[[5984,6023,6024]],[[6010,5971,6013]],[[6006,6007,6025]],[[6026,6027,6028]],[[6022,6029,6030]],[[5983,5984,6031]],[[6032,5981,6033]],[[6034,5978,6035]],[[6036,6037,6038]],[[6039,6040,6034]],[[6005,6004,5974]],[[6036,6041,6042]],[[6043,6044,6045]],[[6046,6047,6048]],[[6049,6050,6051]],[[6012,6011,6052]],[[6053,6054,6055]],[[6056,6057,6058]],[[6059,6030,6060]],[[6052,6061,6012]],[[6017,6016,6029]],[[6062,6063,6064]],[[6065,6066,6067]],[[6068,6069,6070]],[[6071,6072,6073]],[[6074,6058,6070]],[[6075,6021,6076]],[[6068,6070,6057]],[[6063,6077,6064]],[[6062,6078,6063]],[[6079,6080,6081]],[[6069,6082,6083]],[[6084,6085,6063]],[[6086,6087,6082]],[[6088,6063,6085]],[[6089,6074,6090]],[[6091,6063,6088]],[[6092,6074,6093]],[[6069,6068,6086]],[[6077,6091,6094]],[[6071,6073,6095]],[[6040,6037,5979]],[[5976,5970,6009]],[[6096,6097,6040]],[[6098,6099,6100]],[[6088,6072,6101]],[[6102,6094,6101]],[[6103,6104,6060]],[[6072,6088,6083]],[[6105,6106,6107]],[[6108,6109,5997]],[[6000,6002,6110]],[[6054,6111,6112]],[[6113,5961,6114]],[[6015,6115,6116]],[[6117,6118,6119]],[[6093,6069,6083]],[[6103,6120,6121]],[[6121,6083,6087]],[[6069,6086,6082]],[[6122,6030,6086]],[[6082,6087,6083]],[[6048,6059,6060]],[[6083,6121,6073]],[[6047,6086,6030]],[[6123,6124,6125]],[[6126,6127,6128]],[[6035,6126,6129]],[[6124,6130,5981]],[[6013,6025,6014]],[[6131,5975,6029]],[[6041,6132,6133]],[[6099,6024,6134]],[[6119,6089,6085]],[[6070,6069,6093]],[[5987,6017,6022]],[[6081,6110,6051]],[[6083,6073,6072]],[[6067,6135,6136]],[[6137,6039,6034]],[[6037,5977,5979]],[[6138,6018,6014]],[[6139,6140,6141]],[[6142,6143,6144]],[[5958,5998,5959]],[[6144,6145,6142]],[[6146,6106,6105]],[[6106,6147,6143]],[[6148,6109,6149]],[[6108,6150,6149]],[[6151,6147,6146]],[[6152,6058,6089]],[[6080,6079,6111]],[[6051,6153,6154]],[[6155,6002,6054]],[[6051,6154,6049]],[[6156,6155,6157]],[[6081,6080,6001]],[[6158,6119,6085]],[[6159,6118,6160]],[[6074,6070,6093]],[[6158,6117,6119]],[[6058,6057,6070]],[[6092,6090,6074]],[[6119,6152,6089]],[[6118,6056,6152]],[[6118,6159,6056]],[[6161,6162,6163]],[[5980,6124,5981]],[[6163,6125,6164]],[[6164,5982,6032]],[[6165,6166,6031]],[[6038,6041,6036]],[[6035,5978,6126]],[[5978,5977,6126]],[[6098,6167,6096]],[[6007,6161,6025]],[[6144,6168,6145]],[[6107,6106,6143]],[[6169,6170,6171]],[[6172,6173,6174]],[[6142,6171,6105]],[[6175,6176,5925]],[[6177,6178,6021]],[[6076,6021,6020]],[[6110,6002,6155]],[[6179,6180,6178]],[[6181,6182,6183]],[[6184,6163,6164]],[[6185,6182,6181]],[[6186,6187,6188]],[[6182,6185,6189]],[[6141,6190,6191]],[[6192,6189,5968]],[[6188,6190,5975]],[[6193,6194,6195]],[[6196,6197,6198]],[[6199,6182,6192]],[[6181,6200,6139]],[[6140,6190,6141]],[[6032,5982,5981]],[[6201,6183,6202]],[[5968,6193,5969]],[[6112,6203,6055]],[[6078,6204,6158]],[[6010,6018,6011]],[[6014,6025,6138]],[[5977,6127,6126]],[[6041,6133,6205]],[[6124,6035,6130]],[[6206,6044,6042]],[[6130,6035,6129]],[[6124,6123,6034]],[[5981,6130,6033]],[[6128,6127,6207]],[[6208,6129,6128]],[[6209,6208,6128]],[[6206,6042,6205]],[[6133,6003,6205]],[[6127,6036,6043]],[[6210,6005,5974]],[[6127,6043,6207]],[[6211,5974,5973]],[[6212,6045,6206]],[[6042,6041,6205]],[[6043,6042,6044]],[[6127,5977,6036]],[[6094,6076,6213]],[[6214,6215,6203]],[[6216,6217,6020]],[[6213,6064,6094]],[[6121,6218,6103]],[[6121,6087,6218]],[[5936,5959,5932]],[[6219,5964,5966]],[[6151,6220,6173]],[[5937,6176,6173]],[[6150,6174,6148]],[[6221,6222,6223]],[[6150,6147,6174]],[[6147,6106,6146]],[[6034,6123,6137]],[[6034,6035,6124]],[[6224,6007,5983]],[[6006,5976,5983]],[[6137,6161,6039]],[[6163,6184,6025]],[[6166,5983,6031]],[[6166,6098,6096]],[[6225,6226,6227]],[[6227,5931,5930]],[[6157,6065,6228]],[[6177,6179,6178]],[[6190,6164,6229]],[[6230,6043,6045]],[[6231,6208,5973]],[[6208,6130,6129]],[[6232,6027,6026]],[[5967,6199,6192]],[[5984,6024,6031]],[[5984,5976,6023]],[[6061,6052,6115]],[[6061,6008,6012]],[[6026,6115,6052]],[[6195,6194,6197]],[[6233,6208,6209]],[[6129,6126,6128]],[[6234,6235,6168]],[[6169,6171,6145]],[[6044,6206,6045]],[[6206,6205,6236]],[[6206,6236,6212]],[[6205,6003,6005]],[[6210,6045,6212]],[[6237,5974,6211]],[[6209,6207,5973]],[[6209,6128,6207]],[[6237,6210,5974]],[[6236,6205,6005]],[[6184,6138,6025]],[[6184,6200,6138]],[[6081,6001,6110]],[[6001,6111,6002]],[[6202,6183,6182]],[[6200,6184,6139]],[[6185,6181,6141]],[[6238,6018,6200]],[[6027,6232,6239]],[[6011,6018,6201]],[[6183,6238,6181]],[[6018,6138,6200]],[[6181,6238,6200]],[[6183,6201,6238]],[[5936,5964,6240]],[[5938,6241,6108]],[[6242,5965,5964]],[[6143,6150,6108]],[[5938,6108,5939]],[[6149,6109,6108]],[[6107,6142,6105]],[[6243,6244,6245]],[[6246,6244,6243]],[[6247,6245,6171]],[[6150,6148,6149]],[[6174,6248,6221]],[[5939,6108,5997]],[[6109,6221,6223]],[[5939,5997,5996]],[[6223,6176,6175]],[[6197,6194,6249]],[[5968,6189,6187]],[[6185,6191,6189]],[[6188,5975,6250]],[[5968,6187,6193]],[[6191,6190,6188]],[[6251,6250,5975]],[[6186,6193,6187]],[[6252,6197,6249]],[[6194,6193,6186]],[[6198,6253,6196]],[[6028,6115,6026]],[[6254,6015,6116]],[[6254,5969,6255]],[[6207,6256,6257]],[[6207,6043,6256]],[[6210,6230,6045]],[[6256,6043,6230]],[[6207,6257,5973]],[[6256,6230,6257]],[[6120,6095,6073]],[[6021,6258,6259]],[[6019,6021,6178]],[[6075,6102,6260]],[[6261,6021,6259]],[[6020,6062,6213]],[[6072,6102,6101]],[[6102,6071,6260]],[[6102,6076,6094]],[[6075,6258,6021]],[[6020,6213,6076]],[[6062,6064,6213]],[[6102,6075,6076]],[[6102,6072,6071]],[[6104,6046,6048]],[[6030,6029,6060]],[[6103,6218,6046]],[[6087,6086,6218]],[[6056,6159,6081]],[[6110,6153,6051]],[[6262,6263,6049]],[[6225,6227,6050]],[[6156,6157,6228]],[[6065,6226,6228]],[[6189,6191,6187]],[[6185,6141,6191]],[[5993,5954,5956]],[[6264,6265,6266]],[[6262,6156,6228]],[[6267,6268,6157]],[[6153,6156,6154]],[[6155,6267,6157]],[[5930,6050,6227]],[[6263,6225,6050]],[[6043,6036,6042]],[[5977,6037,6036]],[[6229,5973,5975]],[[6233,6209,5973]],[[6033,6231,6229]],[[6033,6130,6231]],[[5973,6208,6233]],[[6231,6130,6208]],[[6257,6269,6211]],[[6257,6230,6269]],[[6232,6202,6239]],[[6182,6189,6192]],[[6199,6202,6182]],[[6232,6201,6202]],[[5968,5967,6192]],[[6239,6202,6199]],[[6125,5980,5982]],[[6125,6124,5980]],[[6061,6015,6017]],[[6061,6115,6015]],[[6122,6086,6068]],[[6068,6057,6056]],[[6203,6112,6078]],[[6062,6020,6214]],[[6083,6092,6093]],[[6089,6058,6074]],[[6088,6092,6083]],[[6090,6085,6089]],[[6022,6081,6051]],[[6159,6160,6081]],[[5966,5940,5957]],[[5939,5958,5957]],[[6219,5966,5959]],[[5965,6242,5938]],[[6047,6030,6059]],[[6122,6022,6030]],[[6270,6137,6123]],[[6270,6162,6137]],[[6168,6235,6271]],[[6272,6246,6169]],[[5936,6234,5964]],[[6273,6274,6275]],[[6234,6168,5964]],[[6144,6108,6241]],[[6242,6241,5938]],[[6242,6168,6144]],[[5966,5938,5940]],[[5966,5965,5938]],[[6249,6186,6250]],[[6249,6194,6186]],[[6088,6090,6092]],[[6088,6085,6090]],[[6041,6038,6132]],[[6166,6165,6098]],[[6097,6167,6132]],[[6132,6003,6133]],[[6103,6071,6095]],[[6258,6136,6259]],[[6140,6164,6190]],[[6140,6139,6164]],[[5955,6276,6277]],[[5962,5961,6278]],[[6279,6280,6281]],[[6100,6004,6003]],[[5956,5963,6282]],[[5956,5955,5990]],[[6109,6223,5997]],[[5925,5996,5995]],[[5995,6223,6283]],[[6221,6148,6174]],[[6279,6277,6280]],[[6266,5985,5987]],[[6284,6276,5993]],[[6276,6280,6277]],[[5962,6266,5947]],[[6099,6098,6024]],[[6061,6009,6008]],[[6023,5976,6009]],[[6278,6285,5962]],[[6266,6265,5985]],[[6278,5961,6113]],[[6281,6280,6286]],[[5972,6010,6012]],[[5972,5971,6010]],[[6100,5987,6004]],[[6266,6287,6264]],[[6214,6203,6078]],[[6079,6081,6160]],[[6063,6078,6084]],[[6160,6118,6117]],[[6155,6053,6180]],[[6215,6214,6217]],[[6053,6216,6019]],[[6217,6214,6020]],[[6174,6147,6172]],[[6150,6143,6147]],[[6260,6258,6075]],[[6060,6136,6258]],[[6103,6260,6071]],[[6060,6258,6260]],[[6100,6099,6134]],[[6100,6003,6098]],[[6262,6225,6263]],[[6228,6226,6225]],[[6121,6120,6073]],[[6046,6104,6103]],[[6288,6253,6198]],[[6289,6015,6196]],[[6250,6252,6249]],[[6253,6290,6291]],[[6251,6292,6252]],[[6198,6197,6292]],[[6288,6198,6251]],[[6292,6197,6252]],[[6254,6027,5967]],[[6027,6239,5967]],[[6193,6195,5969]],[[6293,6015,6254]],[[6015,6293,6196]],[[6255,5969,6293]],[[5966,5957,5959]],[[6294,5939,5957]],[[6230,6237,6269]],[[6212,6236,6210]],[[5960,6282,5962]],[[5962,6282,5963]],[[6283,6175,5925]],[[6283,6223,6175]],[[6055,6203,6215]],[[6112,6295,6204]],[[6170,6246,6243]],[[6151,6173,6172]],[[6218,6047,6046]],[[6218,6086,6047]],[[6271,6169,6145]],[[6271,6235,6273]],[[6271,6273,6169]],[[6275,6244,6246]],[[6273,6275,6272]],[[6275,6246,6272]],[[5983,6096,6040]],[[5983,6166,6096]],[[6079,6112,6111]],[[6079,6295,6112]],[[6278,6113,6285]],[[5989,5988,6281]],[[6289,6196,6291]],[[6293,6197,6196]],[[6011,6201,6232]],[[6018,6238,6201]],[[6061,6100,6134]],[[6017,5987,6100]],[[6264,6287,6280]],[[6285,6113,6286]],[[6114,5989,6281]],[[6279,5988,5990]],[[6155,6180,6267]],[[6053,6178,6180]],[[6143,6142,6107]],[[6145,6171,6142]],[[6190,6229,5975]],[[6231,5973,6229]],[[6011,6026,6052]],[[6011,6232,6026]],[[6027,6254,6116]],[[6255,6293,6254]],[[6100,6061,6017]],[[6023,6009,6061]],[[6097,6038,6037]],[[6167,6098,6132]],[[6097,6132,6038]],[[6098,6003,6132]],[[6173,6248,6174]],[[6222,6176,6223]],[[6222,6221,6248]],[[6109,6148,6221]],[[6137,6162,6161]],[[6270,6125,6163]],[[6016,6290,6029]],[[6289,6291,6290]],[[6110,6001,6000]],[[6080,6111,6001]],[[6053,6019,6178]],[[6216,6020,6019]],[[6116,6028,6027]],[[6116,6115,6028]],[[6153,6155,6156]],[[6153,6110,6155]],[[6181,6139,6141]],[[6184,6164,6139]],[[6136,6135,6259]],[[6136,6226,6067]],[[6254,5967,5969]],[[6239,6199,5967]],[[6040,6097,6037]],[[6096,6167,6097]],[[6016,6289,6290]],[[6016,6015,6289]],[[6293,6195,6197]],[[6293,5969,6195]],[[6290,6288,6131]],[[6198,6292,6251]],[[6235,6296,6273]],[[6274,6244,6275]],[[6157,6268,6065]],[[6267,6180,6179]],[[6161,6163,6025]],[[6162,6270,6163]],[[6257,6211,5973]],[[6269,6237,6211]],[[6286,6114,6281]],[[5961,5963,5989]],[[5947,6266,5987]],[[6287,6286,6280]],[[5937,6245,6244]],[[5937,6173,6245]],[[6196,6253,6291]],[[6288,6290,6253]],[[6290,6131,6029]],[[6251,5975,6131]],[[6229,6032,6033]],[[6229,6164,6032]],[[5940,6294,5957]],[[5940,5939,6294]],[[6134,6023,6061]],[[6134,6024,6023]],[[6135,6261,6259]],[[6177,6021,6261]],[[6135,6179,6261]],[[6261,6179,6177]],[[6223,5995,5997]],[[6283,5925,5995]],[[6007,6224,6161]],[[6224,6040,6039]],[[6040,6224,5983]],[[6039,6161,6224]],[[6171,6170,6247]],[[6169,6246,6170]],[[6053,6217,6216]],[[6053,6215,6217]],[[6156,6262,6049]],[[6228,6225,6262]],[[6024,6165,6031]],[[6024,6098,6165]],[[6120,6103,6095]],[[6060,6260,6103]],[[6155,6054,6053]],[[6002,6111,6054]],[[6234,6296,6235]],[[5937,6244,6274]],[[5964,6168,6242]],[[6271,6145,6168]],[[6108,6144,6143]],[[6241,6242,6144]],[[6173,6222,6248]],[[6173,6176,6222]],[[5936,6296,6234]],[[5937,6274,6273]],[[6169,6273,6272]],[[6296,5937,6273]],[[6171,6220,6105]],[[6171,6245,6220]],[[6105,6220,6146]],[[6245,6173,6220]],[[6147,6151,6172]],[[6146,6220,6151]],[[6247,6243,6245]],[[6247,6170,6243]],[[6091,6077,6063]],[[6094,6064,6077]],[[6101,6091,6088]],[[6101,6094,6091]],[[6288,6251,6131]],[[6252,6250,6251]],[[5960,5962,5947]],[[6285,6266,5962]],[[6118,6152,6119]],[[6056,6058,6152]],[[6214,6078,6062]],[[6204,6117,6158]],[[6112,6204,6078]],[[6295,6160,6204]],[[6296,5936,5937]],[[6240,5959,5936]],[[6268,6066,6065]],[[6268,6267,6179]],[[6067,6179,6135]],[[6066,6268,6179]],[[6006,6013,5971]],[[6006,6025,6013]],[[6230,6210,6237]],[[6236,6005,6210]],[[5988,5963,5990]],[[5955,5954,6276]],[[5955,6277,5991]],[[5954,5993,6276]],[[6136,6227,6226]],[[6136,5931,6227]],[[6084,6158,6085]],[[6084,6078,6158]],[[6053,6055,6215]],[[6054,6112,6055]],[[6297,6298,5935]],[[6299,5917,5916]],[[6285,6287,6266]],[[6285,6286,6287]],[[5994,5916,5918]],[[6298,6299,5916]],[[6240,6219,5959]],[[6240,5964,6219]],[[5988,6279,6281]],[[5991,6277,6279]],[[6164,6125,5982]],[[6270,6123,6125]],[[6300,6299,6298]],[[5998,5917,6299]],[[6065,6067,6226]],[[6066,6179,6067]],[[6186,6188,6250]],[[6187,6191,6188]],[[6297,5935,5932]],[[6298,5916,5935]],[[6113,6114,6286]],[[5961,5989,6114]],[[5998,6297,5932]],[[6300,6298,6297]],[[6204,6160,6117]],[[6295,6079,6160]],[[6104,6048,6060]],[[6047,6059,6048]],[[5992,6284,5993]],[[6284,6280,6276]],[[6156,6049,6154]],[[6263,6050,6049]],[[6264,6284,5992]],[[6264,6280,6284]],[[6279,5990,5991]],[[5963,5956,5990]],[[5959,5998,5932]],[[5958,5999,5998]],[[5998,6300,6297]],[[5998,6299,6300]],[[5979,6034,6040]],[[5979,5978,6034]],[[6022,6051,5926]],[[6022,6056,6081]],[[6051,5930,5926]],[[6051,6050,5930]],[[5987,6022,5947]],[[6017,6029,6022]],[[6022,6068,6056]],[[6022,6122,6068]],[[6301,5931,6136]],[[6060,6301,6136]],[[6302,6029,5975]],[[5974,6302,5975]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c179213-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[6303,6304,6305]],[[6306,6307,6308]],[[6309,6310,6311]],[[6312,6313,6314]],[[6315,6316,6317]],[[6318,6315,6319]],[[5926,6315,6317]],[[6320,6321,6322]],[[6307,6323,6324]],[[6325,6315,6318]],[[6308,6326,6327]],[[6328,6329,6330]],[[6331,6332,6323]],[[6308,6327,6306]],[[6333,6334,6335]],[[6336,6337,6338]],[[6339,6340,6326]],[[6341,6342,6343]],[[5926,6317,6344]],[[6345,6346,6317]],[[6347,6325,6318]],[[6348,6349,6350]],[[6325,6340,6315]],[[6316,6315,6340]],[[6351,6352,6345]],[[6334,6353,6335]],[[6354,6308,6324]],[[6306,6326,6355]],[[6333,6347,6318]],[[6326,6340,6325]],[[6356,6357,6329]],[[6358,5953,6359]],[[6360,6361,6321]],[[6362,6363,6364]],[[6334,6360,6365]],[[6366,6367,6314]],[[6328,6330,6368]],[[6316,6339,6308]],[[6324,6308,6307]],[[6354,6316,6308]],[[6365,6353,6334]],[[6369,6370,6371]],[[6372,6373,6362]],[[6321,6365,6360]],[[6353,6365,6321]],[[6319,6315,6374]],[[6353,6320,6373]],[[6312,5926,6304]],[[6375,6310,6376]],[[6377,6378,6359]],[[6311,6379,6309]],[[6380,6381,6382]],[[6335,6355,6333]],[[6383,6307,6306]],[[6326,6347,6355]],[[6318,6360,6333]],[[6384,6385,6386]],[[6387,6388,6389]],[[6390,6391,6392]],[[6311,6375,6393]],[[6351,6345,6330]],[[6353,6373,6335]],[[6369,6394,6395]],[[6396,6397,6358]],[[6333,6360,6334]],[[6318,6319,6360]],[[6398,6399,6400]],[[6401,6402,6399]],[[6320,6374,6403]],[[6322,6361,6374]],[[6326,6306,6327]],[[6355,6383,6306]],[[6404,6405,6406]],[[6407,6408,6409]],[[6361,6319,6374]],[[6361,6360,6319]],[[6320,6403,6373]],[[6320,6322,6374]],[[6307,6383,6323]],[[6355,6335,6383]],[[6316,6345,6317]],[[6332,6354,6324]],[[6308,6339,6326]],[[6316,6340,6339]],[[6322,6321,6361]],[[6320,6353,6321]],[[6359,6378,6410]],[[6400,6411,6397]],[[6355,6347,6333]],[[6326,6325,6347]],[[6397,6411,6394]],[[6412,6399,6413]],[[6414,6415,6416]],[[5947,6377,6415]],[[6378,6377,5947]],[[6410,6417,6418]],[[6419,6420,6421]],[[6422,6176,6423]],[[6424,6342,6425]],[[6426,6315,6427]],[[6428,6429,6430]],[[6431,6432,6433]],[[5947,6399,6378]],[[6434,6344,6435]],[[6404,6436,6437]],[[6431,6433,6438]],[[6437,6432,6370]],[[6407,6439,6440]],[[6367,6441,5926]],[[6442,6443,6444]],[[6445,6359,5953]],[[6415,6377,6359]],[[6430,6446,6447]],[[6448,6449,6349]],[[6431,6438,6371]],[[6450,6451,6452]],[[6453,6449,6454]],[[6448,6454,6449]],[[6455,6382,6456]],[[6457,6458,6459]],[[6455,6460,6461]],[[6462,6449,6438]],[[6370,6431,6371]],[[6370,6432,6431]],[[6408,6407,6440]],[[6463,6464,6376]],[[6465,6466,6467]],[[6390,6468,6469]],[[6387,6440,6470]],[[6471,6472,6408]],[[6389,6408,6440]],[[6466,6465,6456]],[[6473,6399,5947]],[[6429,6453,6474]],[[6381,6466,6456]],[[6470,6475,6344]],[[6476,6477,6478]],[[6479,6477,6480]],[[6382,6381,6456]],[[6447,6481,6482]],[[6476,6480,6477]],[[6483,6459,6484]],[[6485,6389,6388]],[[6465,6455,6456]],[[6486,6335,6357]],[[6487,6488,6489]],[[6490,6491,6492]],[[6490,6423,5953]],[[6493,6433,6348]],[[6494,6495,6496]],[[6479,6497,6466]],[[6479,6466,6381]],[[6432,6436,6496]],[[6474,6473,6429]],[[6429,6479,6381]],[[6484,6375,6464]],[[6494,6433,6495]],[[6432,6437,6436]],[[6411,6413,6394]],[[6496,6399,6473]],[[6498,6458,6488]],[[6499,6385,6500]],[[6491,6501,6386]],[[6492,6502,6337]],[[6503,6504,6505]],[[6506,6507,6508]],[[6509,6508,6510]],[[6463,6511,6512]],[[6513,6514,6515]],[[6384,6317,6500]],[[6516,6517,6513]],[[6507,6513,6515]],[[6317,6384,6501]],[[6336,6338,6518]],[[6503,6505,6519]],[[6508,6507,6490]],[[6490,6510,6508]],[[6507,6491,6490]],[[6520,6521,6519]],[[6521,6517,6516]],[[6497,6467,6466]],[[6461,6476,6471]],[[6522,6523,6524]],[[6520,6519,6505]],[[6525,6526,6527]],[[6315,5926,6427]],[[6397,6396,6400]],[[6402,6378,6399]],[[6398,6528,6401]],[[6398,6529,6528]],[[6529,6396,6358]],[[6398,6400,6396]],[[6529,6417,6528]],[[6418,6358,6410]],[[6429,6428,6453]],[[6449,6350,6349]],[[6448,6474,6454]],[[6428,6482,6530]],[[5926,6344,5947]],[[6375,6531,6393]],[[6440,6387,6389]],[[6344,6532,6387]],[[6440,6439,6470]],[[6407,6409,6533]],[[6498,6534,6435]],[[6535,6536,6450]],[[6479,6537,6477]],[[6538,6439,6533]],[[6539,6517,6520]],[[6514,6501,6515]],[[6481,6382,6530]],[[6408,6489,6471]],[[6474,6453,6454]],[[6530,6449,6453]],[[6540,6343,6541]],[[6363,6403,6374]],[[6542,6543,6427]],[[6544,6363,6374]],[[6545,6341,6543]],[[6546,6363,6544]],[[6315,6547,6374]],[[6548,6549,6550]],[[6438,6449,6371]],[[6530,6482,6481]],[[6551,6445,5953]],[[6415,6359,6445]],[[6338,6346,6518]],[[6346,6345,6352]],[[6518,6352,6351]],[[6518,6346,6352]],[[6552,6351,6553]],[[6552,6518,6351]],[[6309,6376,6310]],[[6464,6375,6376]],[[6426,6547,6315]],[[6554,6372,6546]],[[6555,6512,6556]],[[6557,6489,6558]],[[6386,6385,6491]],[[6336,6552,6357]],[[6337,6502,6559]],[[6500,6317,6560]],[[6515,6501,6491]],[[6501,6384,6386]],[[6393,6561,6562]],[[6563,6564,6565]],[[6566,6542,6427]],[[6545,6543,6542]],[[6553,6329,6357]],[[6323,6332,6324]],[[6553,6330,6329]],[[6332,6316,6354]],[[6486,6567,6568]],[[6330,6345,6368]],[[6331,6568,6332]],[[6569,6356,6328]],[[6570,6332,6568]],[[6570,6316,6332]],[[6492,6337,6336]],[[6518,6552,6336]],[[6571,6441,6572]],[[6573,5926,6441]],[[6574,6419,6421]],[[6421,6176,6574]],[[6344,6479,5947]],[[6575,6537,6479]],[[6407,6533,6439]],[[6469,6576,6390]],[[6387,6470,6344]],[[6577,6578,6579]],[[6538,6475,6470]],[[6580,6409,6581]],[[6580,6581,6475]],[[6472,6471,6582]],[[6538,6580,6475]],[[6533,6409,6580]],[[6482,6428,6430]],[[6530,6453,6428]],[[6369,6404,6437]],[[6405,6395,6406]],[[6560,6502,6499]],[[6559,6583,6337]],[[6362,6364,6372]],[[6550,6584,6585]],[[6541,6342,6424]],[[6586,6587,6426]],[[6526,6425,6588]],[[6546,6364,6363]],[[6372,6589,6590]],[[6590,6548,6550]],[[6425,6372,6585]],[[6335,6373,6372]],[[6591,6526,6592]],[[6592,6526,6593]],[[6444,6443,6594]],[[6341,6425,6342]],[[6595,6425,6526]],[[6588,6341,6545]],[[6566,6592,6593]],[[6566,6596,6592]],[[6587,6554,6547]],[[6372,6364,6546]],[[6591,6527,6526]],[[6597,6598,6525]],[[6599,6525,6527]],[[6598,6526,6525]],[[6600,6443,6442]],[[6594,6601,6602]],[[6571,6442,6444]],[[6603,6600,6442]],[[6604,6603,6572]],[[6605,6600,6603]],[[6590,6589,6586]],[[6372,6554,6589]],[[6537,6478,6477]],[[6576,6469,6472]],[[6391,6582,6478]],[[6478,6471,6476]],[[6497,6606,6607]],[[6606,6479,6480]],[[6582,6576,6472]],[[6390,6392,6468]],[[6608,6609,6472]],[[6609,6409,6408]],[[6473,6448,6349]],[[6473,6474,6448]],[[6366,6604,6367]],[[6603,6442,6571]],[[6558,6610,6484]],[[6531,6317,6539]],[[6335,6492,6357]],[[6492,6425,6490]],[[6510,6490,6503]],[[6507,6515,6491]],[[6393,6531,6561]],[[6539,6520,6505]],[[6504,6611,6539]],[[6612,6539,6611]],[[6371,6382,5953]],[[6336,6357,6492]],[[6463,6512,6555]],[[6489,6557,6512]],[[6523,6522,6379]],[[6379,6522,6613]],[[6613,6309,6379]],[[6613,6376,6309]],[[6613,6463,6376]],[[6613,6511,6463]],[[6489,6488,6458]],[[6487,6408,6485]],[[6614,6498,6488]],[[6615,6459,6458]],[[6312,6304,6616]],[[5926,5925,6305]],[[6493,6462,6438]],[[6350,6449,6462]],[[6499,6500,6560]],[[6385,6384,6500]],[[6344,6375,6435]],[[6506,6513,6507]],[[6317,6517,6539]],[[6514,6513,6517]],[[6509,6516,6508]],[[6509,6521,6516]],[[6594,6573,6444]],[[6602,6617,6573]],[[6602,6573,6594]],[[6618,6571,6444]],[[6536,6532,6344]],[[6388,6387,6532]],[[6451,6619,6452]],[[6388,6532,6535]],[[6434,6536,6344]],[[6535,6532,6536]],[[6534,6614,6434]],[[6614,6488,6487]],[[6434,6451,6450]],[[6452,6388,6535]],[[6516,6506,6508]],[[6516,6513,6506]],[[6552,6553,6357]],[[6351,6330,6553]],[[6560,6559,6502]],[[6560,6317,6583]],[[6542,6566,6593]],[[6427,6596,6566]],[[6524,6393,6562]],[[6620,6621,6563]],[[6622,6623,6531]],[[6564,6612,6611]],[[6512,6511,6489]],[[6565,6504,6503]],[[6385,6499,6491]],[[6623,6624,6561]],[[6617,6602,6601]],[[6599,6597,6525]],[[6464,6555,6556]],[[6464,6463,6555]],[[6576,6391,6390]],[[6609,6608,6581]],[[6537,6575,6392]],[[6392,6575,6468]],[[6446,6429,6381]],[[6494,6348,6433]],[[6598,6595,6526]],[[6425,6585,6424]],[[6584,6625,6424]],[[6626,6627,6343]],[[6584,6424,6585]],[[6625,6549,6427]],[[6590,6586,6548]],[[6589,6587,6586]],[[6503,6522,6624]],[[6624,6562,6561]],[[6503,6563,6565]],[[6425,6423,6490]],[[6628,6629,6630]],[[6305,5925,6420]],[[6422,6631,6632]],[[6633,6303,6634]],[[6422,6632,6176]],[[6634,6303,6305]],[[6635,6628,6422]],[[6633,6631,6422]],[[6422,6636,6633]],[[6304,5926,6305]],[[6632,6574,6176]],[[6637,6305,6420]],[[6632,6637,6574]],[[6637,6420,6419]],[[6497,6460,6467]],[[6461,6471,6455]],[[6423,6635,6422]],[[6638,6304,6629]],[[6639,6640,6635]],[[6640,6304,6638]],[[6422,6628,6630]],[[6628,6635,6629]],[[6537,6391,6478]],[[6537,6392,6391]],[[6434,6614,6451]],[[6451,6487,6619]],[[6450,6452,6535]],[[6619,6485,6452]],[[6313,6312,6616]],[[6314,5926,6312]],[[6462,6493,6350]],[[6438,6433,6493]],[[6423,6366,6314]],[[6366,6605,6604]],[[6547,6426,6587]],[[6549,6584,6550]],[[6626,6625,6427]],[[6548,6586,6426]],[[6543,6626,6427]],[[6627,6341,6343]],[[6549,6426,6427]],[[6549,6548,6426]],[[6540,6625,6626]],[[6584,6549,6625]],[[6600,6595,6443]],[[6595,6601,6594]],[[6441,6367,6572]],[[6366,6423,6605]],[[6636,6630,6303]],[[6634,6305,6637]],[[6383,6486,6323]],[[6383,6335,6486]],[[6570,6567,6641]],[[6486,6357,6567]],[[6486,6331,6323]],[[6486,6568,6331]],[[6574,6637,6419]],[[6632,6631,6634]],[[6519,6521,6509]],[[6520,6517,6521]],[[6398,6401,6399]],[[6528,6417,6402]],[[6598,6597,6601]],[[6642,6427,6617]],[[6591,6642,6527]],[[6617,6601,6597]],[[6310,6375,6311]],[[6464,6556,6484]],[[6414,6416,5953]],[[6415,6445,6416]],[[6641,6356,6569]],[[6345,6316,6368]],[[6641,6643,6570]],[[6368,6316,6570]],[[6395,6413,6406]],[[6411,6400,6412]],[[6404,6369,6405]],[[6394,6413,6395]],[[6493,6348,6350]],[[6433,6432,6495]],[[6607,6606,6480]],[[6497,6479,6606]],[[6610,6457,6483]],[[6459,6615,6484]],[[6457,6459,6483]],[[6458,6498,6615]],[[6484,6610,6483]],[[6489,6458,6457]],[[6489,6610,6558]],[[6489,6457,6610]],[[6556,6557,6558]],[[6556,6512,6557]],[[6314,6367,5926]],[[6604,6572,6367]],[[6635,6638,6629]],[[6640,6639,6644]],[[6625,6540,6424]],[[6343,6342,6541]],[[6343,6540,6626]],[[6541,6424,6540]],[[6567,6356,6641]],[[6567,6357,6356]],[[6643,6328,6368]],[[6356,6329,6328]],[[6643,6569,6328]],[[6643,6641,6569]],[[6529,6358,6418]],[[6397,6371,6358]],[[6359,6410,6358]],[[6378,6402,6410]],[[6593,6545,6542]],[[6588,6425,6341]],[[6604,6605,6603]],[[6443,6595,6594]],[[6423,6600,6605]],[[6423,6595,6600]],[[6560,6583,6559]],[[6317,6346,6583]],[[6581,6608,6475]],[[6468,6575,6577]],[[6531,6375,6317]],[[6344,6317,6375]],[[6489,6490,5953]],[[6624,6522,6562]],[[6489,6503,6490]],[[6522,6511,6613]],[[6596,6591,6592]],[[6596,6642,6591]],[[6528,6402,6401]],[[6417,6410,6402]],[[6547,6544,6374]],[[6547,6546,6544]],[[6382,6471,6489]],[[6382,6455,6471]],[[6468,6579,6469]],[[6609,6408,6472]],[[6469,6579,6472]],[[6468,6577,6579]],[[6460,6607,6461]],[[6480,6476,6461]],[[6465,6460,6455]],[[6607,6480,6461]],[[6358,6371,5953]],[[6449,6530,6382]],[[6437,6370,6369]],[[6371,6397,6369]],[[6492,6499,6502]],[[6492,6491,6499]],[[6583,6338,6337]],[[6583,6346,6338]],[[6531,6623,6561]],[[6620,6624,6623]],[[6435,6615,6498]],[[6435,6484,6615]],[[6558,6484,6556]],[[6435,6375,6484]],[[6411,6412,6413]],[[6400,6399,6412]],[[6489,6522,6503]],[[6489,6511,6522]],[[6311,6524,6379]],[[6524,6562,6522]],[[6379,6524,6523]],[[6311,6393,6524]],[[6417,6529,6418]],[[6398,6396,6529]],[[6389,6485,6408]],[[6388,6452,6485]],[[6543,6627,6626]],[[6543,6341,6627]],[[5925,6421,6420]],[[5925,6176,6421]],[[6642,6599,6527]],[[6617,6597,6599]],[[6441,6571,6618]],[[6572,6603,6571]],[[6344,6575,6479]],[[6577,6475,6578]],[[6344,6577,6575]],[[6344,6475,6577]],[[6629,6303,6630]],[[6629,6304,6303]],[[6633,6636,6303]],[[6422,6630,6636]],[[6632,6634,6637]],[[6631,6633,6634]],[[6467,6460,6465]],[[6497,6607,6460]],[[6335,6425,6492]],[[6335,6372,6425]],[[6601,6595,6598]],[[6423,6425,6595]],[[6635,6640,6638]],[[6635,6423,6639]],[[6585,6590,6550]],[[6585,6372,6590]],[[6479,6473,5947]],[[6479,6429,6473]],[[6349,6348,6494]],[[6406,6413,6399]],[[6349,6494,6473]],[[6495,6432,6496]],[[6436,6404,6645]],[[6645,6404,6406]],[[6564,6621,6612]],[[6620,6623,6622]],[[6565,6564,6611]],[[6563,6621,6564]],[[6547,6554,6546]],[[6587,6589,6554]],[[6439,6538,6470]],[[6533,6580,6538]],[[6612,6531,6539]],[[6622,6621,6620]],[[6612,6622,6531]],[[6612,6621,6622]],[[5947,6414,5953]],[[5947,6415,6414]],[[6317,6514,6517]],[[6317,6501,6514]],[[6478,6582,6471]],[[6391,6576,6582]],[[6593,6588,6545]],[[6593,6526,6588]],[[6403,6362,6373]],[[6403,6363,6362]],[[6380,6446,6381]],[[6430,6429,6446]],[[6416,6551,5953]],[[6416,6445,6551]],[[6563,6624,6620]],[[6563,6503,6624]],[[6519,6510,6503]],[[6519,6509,6510]],[[6408,6487,6489]],[[6485,6619,6487]],[[6451,6614,6487]],[[6534,6498,6614]],[[6567,6570,6568]],[[6643,6368,6570]],[[6314,6313,6423]],[[6644,6304,6640]],[[6313,6639,6423]],[[6313,6616,6639]],[[6616,6644,6639]],[[6616,6304,6644]],[[6436,6645,6496]],[[6406,6399,6645]],[[6494,6496,6473]],[[6645,6399,6496]],[[6505,6504,6539]],[[6565,6611,6504]],[[5953,6382,6489]],[[6371,6449,6382]],[[6430,6447,6482]],[[6380,6382,6481]],[[6380,6447,6446]],[[6380,6481,6447]],[[6394,6369,6397]],[[6395,6405,6369]],[[6534,6434,6435]],[[6450,6536,6434]],[[6573,6617,5926]],[[6427,5926,6617]],[[6427,6642,6596]],[[6617,6599,6642]],[[6618,6573,6441]],[[6618,6444,6573]],[[6579,6608,6472]],[[6581,6409,6609]],[[6578,6608,6579]],[[6578,6475,6608]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b31bb8aab-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022858","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027108)","inonderzoek":"0","lokaalid":"G0503.032e68f0452049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.57000017166138,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84931.822 447528.541)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:23)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6646,6647,6648]],[[6649,6650,6648]],[[6647,6651,6648]],[[6648,6652,6649]],[[6649,6652,6653]],[[6648,6651,6652]],[[6654,6655,6656]],[[6656,6655,6657]],[[6656,6657,6646]],[[6646,6657,6647]],[[6658,6654,6648]],[[6648,6654,6656]],[[6648,6656,6646]],[[6659,6658,6650]],[[6650,6658,6648]],[[6660,6659,6649]],[[6649,6659,6650]],[[6661,6660,6653]],[[6653,6660,6649]],[[6662,6661,6652]],[[6652,6661,6653]],[[6663,6662,6651]],[[6651,6662,6652]],[[6655,6663,6657]],[[6657,6663,6647]],[[6647,6663,6651]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bb8ab0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022856","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027109)","inonderzoek":"0","lokaalid":"G0503.032e68f0452149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.17000007629395,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84936.025 447531.543)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:27)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6664,6665,6666]],[[6664,6656,6667]],[[6667,6668,6669]],[[6667,6656,6668]],[[6666,6657,6656]],[[6664,6666,6656]],[[6665,6670,6666]],[[6671,6672,6673]],[[6673,6672,6674]],[[6673,6674,6664]],[[6664,6674,6665]],[[6675,6671,6667]],[[6667,6671,6673]],[[6667,6673,6664]],[[6676,6675,6669]],[[6669,6675,6667]],[[6677,6676,6668]],[[6668,6676,6669]],[[6654,6677,6656]],[[6656,6677,6668]],[[6655,6654,6657]],[[6657,6654,6656]],[[6678,6655,6666]],[[6666,6655,6657]],[[6679,6678,6670]],[[6670,6678,6666]],[[6672,6679,6674]],[[6674,6679,6665]],[[6665,6679,6670]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bb8ab5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022786","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027110)","inonderzoek":"0","lokaalid":"G0503.032e68f0452249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84939.413 447534.185)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[488,487,6674]],[[488,6680,6681]],[[6681,6680,6682]],[[6680,488,6674]],[[6680,6674,6673]],[[504,505,488]],[[488,505,487]],[[6683,504,6681]],[[6681,504,488]],[[6684,6683,6682]],[[6682,6683,6681]],[[6685,6684,6680]],[[6680,6684,6682]],[[6686,6685,6671]],[[6671,6685,6673]],[[6673,6685,6680]],[[6687,6686,6672]],[[6672,6686,6671]],[[6672,6671,6674]],[[6674,6671,6673]],[[505,6687,487]],[[487,6687,6672]],[[487,6672,6674]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbb1ca-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000017304","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027132)","inonderzoek":"0","lokaalid":"G0503.032e68f0452349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.88000011444092,"min-height-surface":-0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84935.378 447488.560)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:78)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[407,410,6688]],[[407,6688,404]],[[404,6688,6689]],[[6688,410,6690]],[[6688,6691,6692]],[[6688,6690,6691]],[[6690,410,413]],[[406,409,407]],[[407,409,410]],[[403,406,404]],[[404,406,407]],[[6693,403,6694]],[[6694,403,6689]],[[6689,403,404]],[[6695,6693,6696]],[[6696,6693,6694]],[[6696,6694,6688]],[[6688,6694,6689]],[[6697,6695,6698]],[[6698,6695,6696]],[[6698,6696,6692]],[[6692,6696,6688]],[[6699,6697,1158]],[[1158,6697,6698]],[[1158,6698,6691]],[[6691,6698,6692]],[[1159,6699,6690]],[[6690,6699,1158]],[[6690,1158,6691]],[[412,1159,413]],[[413,1159,6690]],[[409,412,410]],[[410,412,413]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd90d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026158","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0452e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.25999999046326,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6700,6701,6702]],[[6701,6703,6702]],[[6704,6702,6703]],[[6704,6703,6705]],[[6706,1964,6707]],[[6707,1964,6708]],[[6707,6708,6700]],[[6700,6708,6701]],[[6709,6706,6702]],[[6702,6706,6707]],[[6702,6707,6700]],[[6710,6709,6704]],[[6704,6709,6702]],[[6711,6710,6705]],[[6705,6710,6704]],[[1977,6711,6703]],[[6703,6711,6705]],[[1964,1977,6708]],[[6708,1977,6701]],[[6701,1977,6703]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd912-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000032719","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003246)","inonderzoek":"0","lokaalid":"G0503.032e68f0452f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.26999998092651,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84855.056 447534.320)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:160)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6712,6713,6714]],[[6712,294,296]],[[6714,6715,6716]],[[294,6714,6716]],[[6712,6714,294]],[[6711,1977,6705]],[[6705,1977,6703]],[[6705,6703,6712]],[[6712,6703,6713]],[[6717,6711,295]],[[295,6711,296]],[[296,6711,6705]],[[296,6705,6712]],[[6718,6717,293]],[[293,6717,295]],[[293,295,294]],[[294,295,296]],[[2119,6718,6716]],[[6716,6718,293]],[[6716,293,294]],[[1961,2119,6715]],[[6715,2119,6716]],[[1966,1961,6714]],[[6714,1961,6715]],[[1977,1966,6703]],[[6703,1966,6713]],[[6713,1966,6714]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd917-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017309","identificatiebagvbohoogstehuisnummer":"(1:503010000027072)","identificatiebagvbolaagstehuisnummer":"(1:503010000027071)","inonderzoek":"0","lokaalid":"G0503.032e68f0453049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.129999995231628,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84916.182 447533.963)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:20-22)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[461,463,6719]],[[6719,6720,6721]],[[6719,6722,6720]],[[6722,6723,6724]],[[461,6719,6721]],[[6719,6723,6722]],[[6725,6726,460]],[[460,6726,462]],[[460,462,461]],[[461,462,463]],[[6727,6725,6728]],[[6728,6725,6721]],[[6721,6725,460]],[[6721,460,461]],[[6729,6727,6730]],[[6730,6727,6728]],[[6730,6728,6720]],[[6720,6728,6721]],[[6731,6729,6722]],[[6722,6729,6730]],[[6722,6730,6720]],[[6732,6731,6724]],[[6724,6731,6722]],[[6733,6732,6723]],[[6723,6732,6724]],[[6734,6733,6719]],[[6719,6733,6723]],[[6726,6734,462]],[[462,6734,463]],[[463,6734,6719]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd91c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000017315","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060239)","inonderzoek":"0","lokaalid":"G0503.032e68f0453149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.90000009536743,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84923.713 447522.485)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:15)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6735,6736,6737]],[[6736,6738,6737]],[[6739,6740,6741]],[[6739,6742,6740]],[[6743,6744,6742]],[[6742,6744,6745]],[[6739,6743,6742]],[[6738,6736,6746]],[[6739,6738,6743]],[[6739,6737,6738]],[[6736,6747,6746]],[[6748,6749,6735]],[[6735,6749,6736]],[[6750,6748,6737]],[[6737,6748,6735]],[[6751,6750,6739]],[[6739,6750,6737]],[[6752,6751,6741]],[[6741,6751,6739]],[[6753,6752,6740]],[[6740,6752,6741]],[[6754,6753,6742]],[[6742,6753,6740]],[[6755,6754,6745]],[[6745,6754,6742]],[[6756,6755,6744]],[[6744,6755,6745]],[[6757,6756,6743]],[[6743,6756,6744]],[[6758,6757,6738]],[[6738,6757,6743]],[[6759,6758,6746]],[[6746,6758,6738]],[[6760,6759,6747]],[[6747,6759,6746]],[[6749,6760,6736]],[[6736,6760,6747]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd921-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026312","identificatiebagvbohoogstehuisnummer":"(1:503010000003235)","identificatiebagvbolaagstehuisnummer":"(1:503010000003234)","inonderzoek":"0","lokaalid":"G0503.032e68f0453249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84882.592 447515.552)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:146-146A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6761,6762,6763]],[[6764,6765,6766]],[[6767,6768,6769]],[[6767,6770,6768]],[[6763,6771,6769]],[[6769,6766,6767]],[[6765,6772,6766]],[[6769,6764,6766]],[[6773,6764,6769]],[[6771,6774,6775]],[[6776,6777,6773]],[[6769,6775,6773]],[[6778,6779,6776]],[[6773,6778,6776]],[[6779,6778,6780]],[[6778,6773,6775]],[[6778,6775,6781]],[[6769,6771,6775]],[[6762,6782,6763]],[[6763,6782,6771]],[[6762,6783,6782]],[[6784,6785,6786]],[[6786,6785,6787]],[[6786,6787,6761]],[[6761,6787,6762]],[[6788,6784,6789]],[[6789,6784,6786]],[[6789,6786,6763]],[[6763,6786,6761]],[[6790,6788,6791]],[[6791,6788,6789]],[[6791,6789,6769]],[[6769,6789,6763]],[[6792,6790,2849]],[[2849,6790,6791]],[[2849,6791,6768]],[[6768,6791,6769]],[[2847,6792,6770]],[[6770,6792,2849]],[[6770,2849,6768]],[[2845,2847,6767]],[[6767,2847,6770]],[[2846,2845,6766]],[[6766,2845,6767]],[[2844,2846,6772]],[[6772,2846,6766]],[[2843,2844,6765]],[[6765,2844,6772]],[[2840,2843,6764]],[[6764,2843,6765]],[[2841,2840,6773]],[[6773,2840,6764]],[[2839,2841,6777]],[[6777,2841,6773]],[[2837,2839,6776]],[[6776,2839,6777]],[[2838,2837,6779]],[[6779,2837,6776]],[[3009,2838,6780]],[[6780,2838,6779]],[[3010,3009,6778]],[[6778,3009,6780]],[[3008,3010,6793]],[[6793,3010,6781]],[[6781,3010,6778]],[[6794,3008,6795]],[[6795,3008,6793]],[[6795,6793,6775]],[[6775,6793,6781]],[[6796,6794,6774]],[[6774,6794,6795]],[[6774,6795,6775]],[[6797,6796,6771]],[[6771,6796,6774]],[[6798,6797,6799]],[[6799,6797,6800]],[[6800,6797,6782]],[[6782,6797,6771]],[[6801,6798,6802]],[[6802,6798,6799]],[[6802,6799,6803]],[[6803,6799,6800]],[[6803,6800,6783]],[[6783,6800,6782]],[[6785,6801,6787]],[[6787,6801,6762]],[[6762,6801,6802]],[[6762,6802,6803]],[[6762,6803,6783]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd926-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026311","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003236)","inonderzoek":"0","lokaalid":"G0503.032e68f0453349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.55999994277954,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84879.113 447518.066)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:148)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6804,6793,6805]],[[6806,6807,6808]],[[6793,6804,6808]],[[6807,6806,6809]],[[6806,6808,6810]],[[6806,6810,6811]],[[6810,6808,6804]],[[6810,6804,6812]],[[6812,6804,6813]],[[6805,6795,6814]],[[6804,6805,6815]],[[6793,6795,6805]],[[6816,6817,3008]],[[3008,6817,6794]],[[3008,6794,6793]],[[6793,6794,6795]],[[3005,6816,6808]],[[6808,6816,3008]],[[6808,3008,6793]],[[3006,3005,6807]],[[6807,3005,6808]],[[6818,3006,6809]],[[6809,3006,6807]],[[6819,6818,6806]],[[6806,6818,6809]],[[6820,6819,6821]],[[6821,6819,6811]],[[6811,6819,6806]],[[6822,6820,6823]],[[6823,6820,6821]],[[6823,6821,6810]],[[6810,6821,6811]],[[6824,6822,6825]],[[6825,6822,6823]],[[6825,6823,6812]],[[6812,6823,6810]],[[6826,6824,6827]],[[6827,6824,6825]],[[6827,6825,6813]],[[6813,6825,6812]],[[6828,6826,6829]],[[6829,6826,6827]],[[6829,6827,6804]],[[6804,6827,6813]],[[6830,6828,6831]],[[6831,6828,6829]],[[6831,6829,6815]],[[6815,6829,6804]],[[6832,6830,6805]],[[6805,6830,6831]],[[6805,6831,6815]],[[6833,6832,6814]],[[6814,6832,6805]],[[6817,6833,6794]],[[6794,6833,6795]],[[6795,6833,6814]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd92b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022857","identificatiebagvbohoogstehuisnummer":"(1:503010000027107)","identificatiebagvbolaagstehuisnummer":"(1:503010000027106)","inonderzoek":"0","lokaalid":"G0503.032e68f0453449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.19000005722046,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84928.642 447523.921)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:17-19)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6834,6835,6836]],[[6837,6838,6836]],[[6835,6839,6836]],[[6836,6839,6837]],[[6662,6663,6652]],[[6652,6663,6651]],[[6652,6651,6834]],[[6834,6651,6835]],[[6840,6662,6836]],[[6836,6662,6652]],[[6836,6652,6834]],[[6841,6840,6838]],[[6838,6840,6836]],[[6842,6841,6748]],[[6748,6841,6735]],[[6735,6841,6837]],[[6837,6841,6838]],[[6843,6842,6749]],[[6749,6842,6748]],[[6749,6748,6736]],[[6736,6748,6735]],[[6736,6735,6839]],[[6839,6735,6837]],[[6663,6843,6651]],[[6651,6843,6835]],[[6835,6843,6749]],[[6835,6749,6736]],[[6835,6736,6839]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff40-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000017219","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003238)","inonderzoek":"0","lokaalid":"G0503.032e68f0453549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.54999995231628,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84875.569 447520.559)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:150)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6829,6831,6827]],[[6844,6845,6846]],[[6821,6823,6825]],[[6847,6821,6825]],[[6827,6848,6825]],[[6848,6849,6847]],[[6825,6848,6847]],[[6827,6846,6848]],[[6827,6844,6846]],[[6844,6850,6845]],[[6831,6844,6827]],[[6851,6852,6828]],[[6828,6852,6830]],[[6828,6830,6829]],[[6829,6830,6831]],[[6853,6851,6826]],[[6826,6851,6828]],[[6826,6828,6827]],[[6827,6828,6829]],[[6854,6853,6824]],[[6824,6853,6826]],[[6824,6826,6825]],[[6825,6826,6827]],[[6855,6854,6822]],[[6822,6854,6824]],[[6822,6824,6823]],[[6823,6824,6825]],[[6856,6855,6820]],[[6820,6855,6822]],[[6820,6822,6821]],[[6821,6822,6823]],[[6857,6856,6847]],[[6847,6856,6820]],[[6847,6820,6821]],[[6858,6857,6849]],[[6849,6857,6847]],[[6859,6858,6848]],[[6848,6858,6849]],[[6860,6859,6846]],[[6846,6859,6848]],[[6861,6860,6845]],[[6845,6860,6846]],[[6862,6861,6850]],[[6850,6861,6845]],[[6863,6862,6844]],[[6844,6862,6850]],[[6852,6863,6830]],[[6830,6863,6831]],[[6831,6863,6844]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff45-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000026313","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027061)","inonderzoek":"0","lokaalid":"G0503.032e68f0453649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.45000004768372,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84898.718 447521.039)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:2)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6864,6865,6866]],[[6864,6867,6868]],[[6869,6870,6871]],[[6872,6865,6864]],[[6873,6865,6872]],[[6874,6873,6872]],[[6875,6876,6864]],[[6872,6864,6876]],[[6877,6876,6878]],[[6878,6876,6879]],[[6879,6876,6875]],[[6868,6867,6871]],[[6875,6868,6880]],[[6875,6864,6868]],[[6881,6871,6882]],[[6882,6871,6883]],[[6883,6871,6870]],[[6867,6869,6871]],[[6884,6870,6869]],[[6885,6886,6864]],[[6864,6886,6867]],[[6887,6885,6866]],[[6866,6885,6864]],[[6888,6887,6865]],[[6865,6887,6866]],[[6889,6888,6873]],[[6873,6888,6865]],[[6890,6889,6874]],[[6874,6889,6873]],[[6891,6890,6872]],[[6872,6890,6874]],[[6892,6891,6876]],[[6876,6891,6872]],[[6893,6892,6877]],[[6877,6892,6876]],[[6894,6893,6878]],[[6878,6893,6877]],[[6895,6894,6879]],[[6879,6894,6878]],[[6896,6895,6897]],[[6897,6895,6898]],[[6898,6895,6875]],[[6875,6895,6879]],[[6899,6896,6900]],[[6900,6896,6897]],[[6900,6897,6901]],[[6901,6897,6898]],[[6901,6898,6880]],[[6880,6898,6875]],[[6902,6899,6868]],[[6868,6899,6900]],[[6868,6900,6901]],[[6868,6901,6880]],[[6903,6902,6871]],[[6871,6902,6868]],[[6904,6903,6905]],[[6905,6903,6906]],[[6906,6903,6881]],[[6881,6903,6871]],[[6907,6904,6908]],[[6908,6904,6905]],[[6908,6905,6909]],[[6909,6905,6906]],[[6909,6906,6882]],[[6882,6906,6881]],[[6910,6907,6883]],[[6883,6907,6908]],[[6883,6908,6909]],[[6883,6909,6882]],[[6911,6910,6870]],[[6870,6910,6883]],[[6912,6911,6884]],[[6884,6911,6870]],[[6913,6912,6869]],[[6869,6912,6884]],[[6886,6913,6867]],[[6867,6913,6869]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff4a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000032725","identificatiebagvbohoogstehuisnummer":"(1:503010000027063)","identificatiebagvbolaagstehuisnummer":"(1:503010000027062)","inonderzoek":"0","lokaalid":"G0503.032e68f0453749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.88000011444092,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84901.595 447523.022)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:4-6)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6914,6915,6916]],[[6914,6917,6918]],[[6917,6914,6916]],[[6916,6919,6920]],[[6916,6921,6919]],[[6917,6916,6920]],[[6922,6923,6924]],[[6924,6923,6925]],[[6924,6925,6926]],[[6926,6925,6927]],[[6926,6927,6914]],[[6914,6927,6915]],[[6928,6922,6918]],[[6918,6922,6924]],[[6918,6924,6926]],[[6918,6926,6914]],[[6929,6928,6917]],[[6917,6928,6918]],[[6930,6929,6885]],[[6885,6929,6864]],[[6864,6929,6920]],[[6920,6929,6917]],[[6931,6930,6886]],[[6886,6930,6885]],[[6886,6885,6867]],[[6867,6885,6864]],[[6867,6864,6919]],[[6919,6864,6920]],[[6932,6931,6921]],[[6921,6931,6886]],[[6921,6886,6867]],[[6921,6867,6919]],[[6933,6932,6916]],[[6916,6932,6921]],[[6923,6933,6925]],[[6925,6933,6927]],[[6927,6933,6915]],[[6915,6933,6916]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff4f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026157","identificatiebagvbohoogstehuisnummer":"(1:503010000003244)","identificatiebagvbolaagstehuisnummer":"(1:503010000003241)","inonderzoek":"0","lokaalid":"G0503.032e68f0453849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.24000000953674,"min-height-surface":-0.0399999991059303,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84867.943 447525.170)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:154-154C)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6934,6935,6936]],[[6935,6937,6936]],[[6935,6938,6937]],[[6935,6939,6938]],[[6935,6940,6939]],[[6939,6940,6941]],[[6940,6935,6942]],[[6943,6944,6945]],[[6943,6940,6942]],[[6943,6942,6944]],[[6944,6946,6947]],[[6947,6946,6948]],[[6948,6946,6949]],[[6944,6942,6946]],[[6950,2177,6934]],[[6934,2177,6935]],[[6951,6950,6936]],[[6936,6950,6934]],[[6952,6951,6937]],[[6937,6951,6936]],[[6953,6952,6938]],[[6938,6952,6937]],[[6954,6953,6939]],[[6939,6953,6938]],[[6955,6954,6941]],[[6941,6954,6939]],[[6956,6955,6940]],[[6940,6955,6941]],[[6957,6956,6943]],[[6943,6956,6940]],[[6958,6957,6945]],[[6945,6957,6943]],[[6959,6958,6944]],[[6944,6958,6945]],[[6960,6959,6947]],[[6947,6959,6944]],[[6961,6960,6948]],[[6948,6960,6947]],[[6962,6961,6949]],[[6949,6961,6948]],[[6963,6962,6964]],[[6964,6962,6946]],[[6946,6962,6949]],[[6965,6963,1952]],[[1952,6963,6964]],[[1952,6964,6942]],[[6942,6964,6946]],[[2177,6965,6935]],[[6935,6965,1952]],[[6935,1952,6942]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff54-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017307","identificatiebagvbohoogstehuisnummer":"(1:503010000027065)","identificatiebagvbolaagstehuisnummer":"(1:503010000027064)","inonderzoek":"0","lokaalid":"G0503.032e68f0453949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84904.818 447525.439)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:8-10)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6966,6967,6968]],[[6969,6966,6970]],[[6970,6966,6926]],[[6926,6966,6927]],[[6969,6967,6966]],[[6971,6972,6969]],[[6969,6972,6967]],[[6973,6971,6970]],[[6970,6971,6969]],[[6924,6973,6926]],[[6926,6973,6970]],[[6925,6924,6927]],[[6927,6924,6926]],[[6974,6925,6966]],[[6966,6925,6927]],[[6975,6974,6968]],[[6968,6974,6966]],[[6972,6975,6967]],[[6967,6975,6968]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff59-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017215","identificatiebagvbohoogstehuisnummer":"(1:503010000027067)","identificatiebagvbolaagstehuisnummer":"(1:503010000027066)","inonderzoek":"0","lokaalid":"G0503.032e68f0453a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84908.607 447528.139)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:12-14)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6976,6977,6978]],[[6978,6967,6969]],[[6978,6979,6967]],[[6976,6978,6969]],[[6980,6981,6982]],[[6982,6981,6983]],[[6982,6983,6976]],[[6976,6983,6977]],[[6984,6980,6971]],[[6971,6980,6969]],[[6969,6980,6982]],[[6969,6982,6976]],[[6985,6984,6972]],[[6972,6984,6971]],[[6972,6971,6967]],[[6967,6971,6969]],[[6986,6985,6979]],[[6979,6985,6972]],[[6979,6972,6967]],[[6987,6986,6978]],[[6978,6986,6979]],[[6981,6987,6983]],[[6983,6987,6977]],[[6977,6987,6978]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff5e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026218","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027089)","inonderzoek":"0","lokaalid":"G0503.032e68f0453b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.07999992370605,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84861.651 447529.723)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:156)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6988,6989,6708]],[[6707,6990,6991]],[[6988,6708,6991]],[[6991,6708,6707]],[[6989,6992,6708]],[[6989,6993,6992]],[[6964,1952,6946]],[[6946,1952,6942]],[[6946,6942,6988]],[[6988,6942,6989]],[[6994,6964,6991]],[[6991,6964,6946]],[[6991,6946,6988]],[[6995,6994,6990]],[[6990,6994,6991]],[[6706,6995,6707]],[[6707,6995,6990]],[[1964,6706,6708]],[[6708,6706,6707]],[[2148,1964,6992]],[[6992,1964,6708]],[[1951,2148,6993]],[[6993,2148,6992]],[[1952,1951,6942]],[[6942,1951,6989]],[[6989,1951,6993]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff63-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017218","identificatiebagvbohoogstehuisnummer":"(1:503010000027070)","identificatiebagvbolaagstehuisnummer":"(1:503010000027069)","inonderzoek":"0","lokaalid":"G0503.032e68f0453c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.69000005722046,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.809 447531.432)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:16-18)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6996,6997,6998]],[[6728,6999,6982]],[[6982,6999,6983]],[[6728,6730,6999]],[[6999,6730,6997]],[[6997,6730,6998]],[[7000,7001,6727]],[[6727,7001,6729]],[[6727,6729,6728]],[[6728,6729,6730]],[[7002,7000,6980]],[[6980,7000,6982]],[[6982,7000,6727]],[[6982,6727,6728]],[[7003,7002,6981]],[[6981,7002,6980]],[[6981,6980,6983]],[[6983,6980,6982]],[[7004,7003,6999]],[[6999,7003,6981]],[[6999,6981,6983]],[[7005,7004,6997]],[[6997,7004,6999]],[[7006,7005,6996]],[[6996,7005,6997]],[[7007,7006,6998]],[[6998,7006,6996]],[[7001,7007,6729]],[[6729,7007,6730]],[[6730,7007,6998]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff68-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000017221","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003233)","inonderzoek":"0","lokaalid":"G0503.032e68f0453e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.09999990463257,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.280 447513.169)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:144)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7008,7009,7010]],[[7011,7012,7013]],[[7014,7015,7013]],[[7012,7014,7013]],[[7010,7009,7016]],[[7011,7017,7012]],[[7018,7011,7013]],[[7010,7019,7018]],[[7020,7021,7022]],[[7023,7024,7020]],[[7022,7025,7020]],[[7011,7026,7022]],[[7020,7025,7023]],[[7025,7022,7026]],[[7025,7026,7027]],[[7026,7011,7028]],[[7029,7030,7031]],[[7029,7028,7030]],[[7029,7026,7028]],[[7011,7018,7028]],[[7010,7018,7013]],[[7032,7028,7018]],[[7010,7016,7019]],[[7033,7034,7008]],[[7008,7034,7009]],[[7035,7033,7010]],[[7010,7033,7008]],[[7036,7035,7013]],[[7013,7035,7010]],[[7037,7036,7015]],[[7015,7036,7013]],[[1064,7037,7014]],[[7014,7037,7015]],[[1067,1064,7012]],[[7012,1064,7014]],[[1066,1067,7017]],[[7017,1067,7012]],[[1069,1066,7011]],[[7011,1066,7017]],[[1070,1069,7022]],[[7022,1069,7011]],[[1083,1070,7021]],[[7021,1070,7022]],[[1093,1083,7020]],[[7020,1083,7021]],[[1092,1093,7024]],[[7024,1093,7020]],[[2854,1092,7023]],[[7023,1092,7024]],[[2855,2854,7025]],[[7025,2854,7023]],[[2851,2855,7027]],[[7027,2855,7025]],[[2853,2851,7026]],[[7026,2851,7027]],[[2852,2853,7029]],[[7029,2853,7026]],[[2850,2852,7031]],[[7031,2852,7029]],[[2849,2850,6768]],[[6768,2850,7030]],[[7030,2850,7031]],[[6791,2849,6769]],[[6769,2849,6768]],[[6769,6768,7028]],[[7028,6768,7030]],[[6789,6791,6763]],[[6763,6791,6769]],[[6763,6769,7032]],[[7032,6769,7028]],[[6786,6789,6761]],[[6761,6789,6763]],[[6761,6763,7018]],[[7018,6763,7032]],[[6787,6786,6762]],[[6762,6786,6761]],[[6762,6761,7019]],[[7019,6761,7018]],[[7038,6787,7016]],[[7016,6787,6762]],[[7016,6762,7019]],[[7034,7038,7009]],[[7009,7038,7016]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc267b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027889","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0453f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6901,6906,6800]],[[6901,6803,6898]],[[6901,6800,6803]],[[6906,7039,6800]],[[6906,7040,7039]],[[6906,6909,7040]],[[7040,6909,7041]],[[6900,6905,6901]],[[6901,6905,6906]],[[6897,6900,6898]],[[6898,6900,6901]],[[6802,6897,6803]],[[6803,6897,6898]],[[6799,6802,6800]],[[6800,6802,6803]],[[7042,6799,7039]],[[7039,6799,6800]],[[7043,7042,7040]],[[7040,7042,7039]],[[7044,7043,7041]],[[7041,7043,7040]],[[6908,7044,6909]],[[6909,7044,7041]],[[6905,6908,6906]],[[6906,6908,6909]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2680-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:29.9)","identificatiebagpnd":"503100000017308","identificatiebagvbohoogstehuisnummer":"(1:503010000027144)","identificatiebagvbolaagstehuisnummer":"(1:503010000027143)","inonderzoek":"0","lokaalid":"G0503.032e68f0454049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.11999988555908,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84901.723 447506.067)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:140-142)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7045,7046,7047]],[[7048,7049,7050]],[[7051,7046,7045]],[[7052,7046,7053]],[[7053,7046,7051]],[[7050,7054,7051]],[[7055,7045,7056]],[[7057,7054,7049]],[[7058,7057,7049]],[[7048,7059,7049]],[[7060,7059,7061]],[[7060,7062,7059]],[[7063,7059,7062]],[[7064,7062,7065]],[[7062,7060,7065]],[[7049,7054,7050]],[[7048,7061,7059]],[[7066,7061,7067]],[[7048,7067,7061]],[[7068,7066,7067]],[[7067,7048,7069]],[[7051,7045,7050]],[[7055,7050,7045]],[[7070,7050,7071]],[[7072,7055,7056]],[[7071,7050,7055]],[[7073,7074,7045]],[[7045,7074,7075]],[[7045,7075,7076]],[[7045,7076,7056]],[[7077,7073,7047]],[[7047,7073,7045]],[[7078,7077,7046]],[[7046,7077,7047]],[[7079,7078,7052]],[[7052,7078,7046]],[[7080,7079,7053]],[[7053,7079,7052]],[[7081,7080,7051]],[[7051,7080,7053]],[[7082,7081,7054]],[[7054,7081,7051]],[[7083,7082,7057]],[[7057,7082,7054]],[[7084,7083,7058]],[[7058,7083,7057]],[[7085,7084,7049]],[[7049,7084,7058]],[[7086,7085,7059]],[[7059,7085,7049]],[[7087,7086,7063]],[[7063,7086,7059]],[[7088,7087,7062]],[[7062,7087,7063]],[[7089,7088,7064]],[[7064,7088,7062]],[[7090,7089,7065]],[[7065,7089,7064]],[[7091,7090,7060]],[[7060,7090,7065]],[[7092,7091,7061]],[[7061,7091,7060]],[[7093,7092,7066]],[[7066,7092,7061]],[[7094,7093,7068]],[[7068,7093,7066]],[[7095,7094,7067]],[[7067,7094,7068]],[[7096,7095,7069]],[[7069,7095,7067]],[[7097,7096,7048]],[[7048,7096,7069]],[[7098,7097,7050]],[[7050,7097,7048]],[[7099,7098,7070]],[[7070,7098,7050]],[[7100,7099,7071]],[[7071,7099,7070]],[[7101,7100,7055]],[[7055,7100,7071]],[[7102,7101,7103]],[[7103,7101,7104]],[[7104,7101,7072]],[[7072,7101,7055]],[[7074,7102,7075]],[[7075,7102,7103]],[[7075,7103,7076]],[[7076,7103,7104]],[[7076,7104,7056]],[[7056,7104,7072]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2685-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:29.9)","identificatiebagpnd":"503100000017313","identificatiebagvbohoogstehuisnummer":"(1:503010000027141)","identificatiebagvbolaagstehuisnummer":"(1:503010000027140)","inonderzoek":"0","lokaalid":"G0503.032e68f0454149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.11999988555908,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84907.181 447503.812)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:136-138)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7105,7106,7056]],[[7107,7108,7109]],[[7105,7056,7109]],[[7109,7110,7107]],[[7109,7056,7110]],[[7110,7056,7045]],[[7106,7111,7056]],[[7112,7113,7114]],[[7114,7113,1874]],[[7114,1874,7115]],[[7115,1874,7116]],[[7115,7116,7105]],[[7105,7116,7106]],[[7117,7112,7109]],[[7109,7112,7114]],[[7109,7114,7115]],[[7109,7115,7105]],[[7118,7117,7108]],[[7108,7117,7109]],[[7119,7118,7107]],[[7107,7118,7108]],[[7120,7119,7110]],[[7110,7119,7107]],[[7121,7120,7073]],[[7073,7120,7045]],[[7045,7120,7110]],[[7122,7121,7074]],[[7074,7121,7073]],[[7074,7073,7075]],[[7075,7073,7076]],[[7076,7073,7056]],[[7056,7073,7045]],[[7123,7122,1877]],[[1877,7122,7074]],[[1877,7074,7075]],[[1877,7075,7124]],[[7124,7075,7076]],[[7124,7076,7111]],[[7111,7076,7056]],[[7113,7123,1874]],[[1874,7123,7116]],[[7116,7123,7106]],[[7106,7123,1877]],[[7106,1877,7124]],[[7106,7124,7111]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc268a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000017314","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027099)","inonderzoek":"0","lokaalid":"G0503.032e68f0454249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.32999992370605,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84911.581 447513.461)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:3)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7125,7126,7127]],[[7125,7127,7128]],[[7129,7076,7124]],[[7130,7127,7126]],[[7129,7104,7076]],[[7129,7131,7104]],[[7104,7131,7132]],[[7129,7127,7131]],[[7133,7134,7127]],[[7131,7127,7134]],[[7134,7135,7136]],[[7135,7134,7133]],[[7137,7130,7126]],[[7133,7127,7130]],[[1878,7138,7139]],[[7139,7138,7140]],[[7139,7140,7125]],[[7125,7140,7126]],[[1873,1878,7128]],[[7128,1878,7139]],[[7128,7139,7125]],[[1870,1873,7127]],[[7127,1873,7128]],[[1871,1870,7129]],[[7129,1870,7127]],[[1877,1871,7124]],[[7124,1871,7129]],[[7075,1877,7076]],[[7076,1877,7124]],[[7103,7075,7104]],[[7104,7075,7076]],[[7141,7103,7132]],[[7132,7103,7104]],[[7142,7141,7131]],[[7131,7141,7132]],[[7143,7142,7134]],[[7134,7142,7131]],[[7144,7143,7136]],[[7136,7143,7134]],[[7145,7144,7135]],[[7135,7144,7136]],[[7146,7145,7133]],[[7133,7145,7135]],[[7147,7146,7130]],[[7130,7146,7133]],[[7148,7147,7137]],[[7137,7147,7130]],[[7138,7148,7140]],[[7140,7148,7126]],[[7126,7148,7137]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2699-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37.6)","identificatiebagpnd":"503100000032234","identificatiebagvbohoogstehuisnummer":"(1:503010000027139)","identificatiebagvbolaagstehuisnummer":"(1:503010000027137)","inonderzoek":"0","lokaalid":"G0503.032e68f0454549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84911.526 447499.820)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:134-134A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7149,7150,7151]],[[7152,7153,7154]],[[7150,7149,7154]],[[7154,7155,7152]],[[7152,7155,7156]],[[7155,7154,7157]],[[7157,7115,7158]],[[7157,7154,7116]],[[7158,7115,7159]],[[7157,7116,7115]],[[7154,7149,7116]],[[7150,7160,7151]],[[7151,7160,7161]],[[7151,7161,7162]],[[7163,7160,7164]],[[7161,7165,7166]],[[7161,7163,7165]],[[7161,7160,7163]],[[7167,7168,7150]],[[7150,7168,7160]],[[7169,7167,7154]],[[7154,7167,7150]],[[7170,7169,7153]],[[7153,7169,7154]],[[7171,7170,7152]],[[7152,7170,7153]],[[7172,7171,7156]],[[7156,7171,7152]],[[7173,7172,7155]],[[7155,7172,7156]],[[7174,7173,7157]],[[7157,7173,7155]],[[7175,7174,7158]],[[7158,7174,7157]],[[7176,7175,7159]],[[7159,7175,7158]],[[7114,7176,7115]],[[7115,7176,7159]],[[1874,7114,7116]],[[7116,7114,7115]],[[1868,1874,7149]],[[7149,1874,7116]],[[1865,1868,7151]],[[7151,1868,7149]],[[1866,1865,7162]],[[7162,1865,7151]],[[1861,1866,7161]],[[7161,1866,7162]],[[7177,1861,1862]],[[1862,1861,7178]],[[7178,1861,7166]],[[7166,1861,7161]],[[7179,7177,7180]],[[7180,7177,1862]],[[7180,1862,7181]],[[7181,1862,7178]],[[7181,7178,7165]],[[7165,7178,7166]],[[7182,7179,7163]],[[7163,7179,7180]],[[7163,7180,7181]],[[7163,7181,7165]],[[7183,7182,7164]],[[7164,7182,7163]],[[7168,7183,7160]],[[7160,7183,7164]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc269e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:30.9)","identificatiebagpnd":"503100000017310","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027136)","inonderzoek":"0","lokaalid":"G0503.032e68f0454649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.1800000667572,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.622 447497.659)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:132)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7184,7185,7186]],[[7186,7185,7187]],[[7185,7184,7188]],[[7185,7189,7190]],[[7185,7188,7189]],[[7188,7191,7192]],[[7189,7188,7192]],[[7184,7193,7188]],[[7194,7195,7196]],[[7196,7195,7197]],[[7196,7197,7184]],[[7184,7197,7193]],[[7198,7194,7186]],[[7186,7194,7196]],[[7186,7196,7184]],[[7199,7198,7187]],[[7187,7198,7186]],[[7200,7199,7185]],[[7185,7199,7187]],[[7167,7200,7150]],[[7150,7200,7190]],[[7190,7200,7185]],[[7168,7167,7160]],[[7160,7167,7150]],[[7160,7150,7189]],[[7189,7150,7190]],[[7201,7168,7192]],[[7192,7168,7160]],[[7192,7160,7189]],[[7202,7201,7191]],[[7191,7201,7192]],[[7203,7202,7188]],[[7188,7202,7191]],[[7195,7203,7197]],[[7197,7203,7193]],[[7193,7203,7188]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc26a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022787","identificatiebagvbohoogstehuisnummer":"(1:503010000027101)","identificatiebagvbolaagstehuisnummer":"(1:503010000027100)","inonderzoek":"0","lokaalid":"G0503.032e68f0454749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84913.581 447515.061)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:5-7)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7181,7204,7205]],[[7178,7181,7205]],[[7206,7207,7205]],[[7205,7207,7178]],[[7206,7139,7207]],[[7206,7140,7139]],[[7208,7206,7209]],[[7210,7206,7211]],[[7140,7208,7212]],[[7140,7206,7208]],[[7209,7206,7210]],[[7213,7209,7210]],[[7214,7215,7206]],[[7206,7215,7216]],[[7206,7216,7211]],[[7217,7214,7205]],[[7205,7214,7206]],[[7218,7217,7204]],[[7204,7217,7205]],[[7180,7218,7181]],[[7181,7218,7204]],[[1862,7180,7178]],[[7178,7180,7181]],[[1879,1862,7207]],[[7207,1862,7178]],[[7219,1879,1878]],[[1878,1879,7139]],[[7139,1879,7207]],[[7220,7219,7138]],[[7138,7219,1878]],[[7138,1878,7140]],[[7140,1878,7139]],[[7221,7220,7212]],[[7212,7220,7138]],[[7212,7138,7140]],[[7222,7221,7208]],[[7208,7221,7212]],[[7223,7222,7209]],[[7209,7222,7208]],[[7224,7223,7213]],[[7213,7223,7209]],[[7225,7224,7226]],[[7226,7224,7210]],[[7210,7224,7213]],[[7215,7225,7216]],[[7216,7225,7226]],[[7216,7226,7211]],[[7211,7226,7210]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc26a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:30.9)","identificatiebagpnd":"503100000017303","identificatiebagvbohoogstehuisnummer":"(1:503010000027135)","identificatiebagvbolaagstehuisnummer":"(1:503010000027134)","inonderzoek":"0","lokaalid":"G0503.032e68f0454849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84918.038 447495.615)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:130-130A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7227,7228,7229]],[[7228,7230,7231]],[[7228,7227,7197]],[[7232,7233,7234]],[[7235,7232,7230]],[[7232,7235,7233]],[[7233,7235,7236]],[[7236,7235,7237]],[[7232,7231,7230]],[[7230,7228,7238]],[[7238,7228,7197]],[[7239,7238,7196]],[[7240,7239,7196]],[[7238,7197,7196]],[[7227,7241,7197]],[[7227,7242,7241]],[[7243,7244,7227]],[[7227,7244,7242]],[[7245,7243,7229]],[[7229,7243,7227]],[[7246,7245,7228]],[[7228,7245,7229]],[[7247,7246,7231]],[[7231,7246,7228]],[[7248,7247,7232]],[[7232,7247,7231]],[[7249,7248,7234]],[[7234,7248,7232]],[[1005,7249,7233]],[[7233,7249,7234]],[[998,1005,7236]],[[7236,1005,7233]],[[996,998,7237]],[[7237,998,7236]],[[1002,996,7235]],[[7235,996,7237]],[[1000,1002,7230]],[[7230,1002,7235]],[[1001,1000,7238]],[[7238,1000,7230]],[[999,1001,7239]],[[7239,1001,7238]],[[997,999,7240]],[[7240,999,7239]],[[7250,997,7194]],[[7194,997,7196]],[[7196,997,7240]],[[7251,7250,7195]],[[7195,7250,7194]],[[7195,7194,7197]],[[7197,7194,7196]],[[7252,7251,7241]],[[7241,7251,7195]],[[7241,7195,7197]],[[7244,7252,7242]],[[7242,7252,7241]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dbd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022788","identificatiebagvbohoogstehuisnummer":"(1:503010000027103)","identificatiebagvbolaagstehuisnummer":"(1:503010000027102)","inonderzoek":"0","lokaalid":"G0503.032e68f0454949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.8600001335144,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84917.758 447517.943)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:9-11)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7253,7254,7255]],[[7256,7257,7258]],[[7258,7257,7259]],[[7256,7254,7253]],[[7257,7256,7253]],[[7253,7255,7260]],[[7254,7261,7255]],[[7262,7263,6753]],[[6753,7263,6754]],[[6753,6754,6740]],[[6740,6754,6742]],[[6740,6742,7256]],[[7256,6742,7254]],[[7264,7262,7258]],[[7258,7262,6753]],[[7258,6753,6740]],[[7258,6740,7256]],[[7265,7264,7259]],[[7259,7264,7258]],[[7266,7265,7257]],[[7257,7265,7259]],[[7267,7266,7253]],[[7253,7266,7257]],[[7268,7267,7260]],[[7260,7267,7253]],[[7216,7268,7211]],[[7211,7268,7255]],[[7255,7268,7260]],[[7226,7216,7210]],[[7210,7216,7211]],[[7210,7211,7261]],[[7261,7211,7255]],[[7263,7226,6754]],[[6754,7226,6742]],[[6742,7226,7254]],[[7254,7226,7210]],[[7254,7210,7261]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dc2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:22.9)","identificatiebagpnd":"503100000017311","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027133)","inonderzoek":"0","lokaalid":"G0503.032e68f0454a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.1399998664856,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84928.992 447490.710)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:80)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7269,7270,7271]],[[7270,7272,7271]],[[7271,7272,7273]],[[7273,7272,7274]],[[7275,7274,7272]],[[7272,7270,7276]],[[6696,6698,6688]],[[6688,6698,6692]],[[6688,6692,7269]],[[7269,6692,7270]],[[6694,6696,6689]],[[6689,6696,6688]],[[6689,6688,7271]],[[7271,6688,7269]],[[7277,6694,7273]],[[7273,6694,6689]],[[7273,6689,7271]],[[7278,7277,7274]],[[7274,7277,7273]],[[7279,7278,7275]],[[7275,7278,7274]],[[1263,7279,7272]],[[7272,7279,7275]],[[1158,1263,6691]],[[6691,1263,7276]],[[7276,1263,7272]],[[6698,1158,6692]],[[6692,1158,6691]],[[6692,6691,7270]],[[7270,6691,7276]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dc7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026304","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003296)","inonderzoek":"0","lokaalid":"G0503.032e68f0454b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.05999994277954,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84947.427 447599.451)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:36)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7280,7281,7282]],[[7283,7280,7282]],[[7284,7280,7283]],[[7284,7285,7280]],[[7284,7286,7285]],[[7285,7286,7287]],[[7288,7289,543]],[[543,7289,544]],[[543,544,528]],[[528,544,531]],[[528,531,7284]],[[7284,531,7286]],[[7290,7288,7291]],[[7291,7288,7292]],[[7292,7288,7283]],[[7283,7288,543]],[[7283,543,528]],[[7283,528,7284]],[[7293,7290,7294]],[[7294,7290,7291]],[[7294,7291,7295]],[[7295,7291,7292]],[[7295,7292,7282]],[[7282,7292,7283]],[[7296,7293,7281]],[[7281,7293,7294]],[[7281,7294,7295]],[[7281,7295,7282]],[[7297,7296,7280]],[[7280,7296,7281]],[[7298,7297,7285]],[[7285,7297,7280]],[[7299,7298,7287]],[[7287,7298,7285]],[[7289,7299,544]],[[544,7299,531]],[[531,7299,7286]],[[7286,7299,7287]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dcc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026305","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003295)","inonderzoek":"0","lokaalid":"G0503.032e68f0454c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.51000022888184,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84941.552 447605.645)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7292,7300,7301]],[[7300,7292,7302]],[[7303,7300,7302]],[[7304,7292,7295]],[[7305,7302,7306]],[[7305,7306,7307]],[[7302,7292,7304]],[[7308,7304,7295]],[[7306,7302,7304]],[[7308,7295,7309]],[[7291,7294,7292]],[[7292,7294,7295]],[[7310,7291,7301]],[[7301,7291,7292]],[[7311,7310,7300]],[[7300,7310,7301]],[[7312,7311,7303]],[[7303,7311,7300]],[[7313,7312,7314]],[[7314,7312,7315]],[[7315,7312,7302]],[[7302,7312,7303]],[[7316,7313,7317]],[[7317,7313,7314]],[[7317,7314,7318]],[[7318,7314,7315]],[[7318,7315,7305]],[[7305,7315,7302]],[[7319,7316,7307]],[[7307,7316,7317]],[[7307,7317,7318]],[[7307,7318,7305]],[[7320,7319,7306]],[[7306,7319,7307]],[[7321,7320,7304]],[[7304,7320,7306]],[[7322,7321,7308]],[[7308,7321,7304]],[[7323,7322,7309]],[[7309,7322,7308]],[[7294,7323,7295]],[[7295,7323,7309]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc751d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026236","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027040)","inonderzoek":"0","lokaalid":"G0503.032e68f0455949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.03999996185303,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84899.425 447577.136)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7324,7325,7326]],[[7324,7327,7328]],[[7324,7326,7327]],[[7325,7329,7326]],[[7326,7329,7330]],[[7331,7332,7333]],[[7333,7332,2312]],[[7333,2312,7324]],[[7324,2312,7325]],[[7334,7331,2284]],[[2284,7331,7333]],[[2284,7333,7328]],[[7328,7333,7324]],[[7335,7334,2285]],[[2285,7334,7336]],[[7336,7334,7327]],[[7327,7334,2284]],[[7327,2284,7328]],[[7337,7335,7338]],[[7338,7335,2285]],[[7338,2285,7339]],[[7339,2285,7336]],[[7339,7336,7326]],[[7326,7336,7327]],[[7340,7337,7341]],[[7341,7337,7338]],[[7341,7338,7342]],[[7342,7338,7339]],[[7342,7339,7330]],[[7330,7339,7326]],[[2311,7340,7329]],[[7329,7340,7341]],[[7329,7341,7342]],[[7329,7342,7330]],[[7332,2311,2312]],[[2312,2311,7325]],[[7325,2311,7329]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc7522-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026232","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027041)","inonderzoek":"0","lokaalid":"G0503.032e68f0455a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.419999986886978,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.334 447579.308)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7343,7344,7345]],[[7346,7347,7348]],[[7346,7345,7344]],[[7346,7344,7347]],[[7343,7349,7344]],[[7343,7350,7351]],[[7349,7343,7351]],[[2298,7352,7343]],[[7343,7352,2297]],[[7343,2297,7353]],[[7343,7353,7350]],[[2294,2298,7345]],[[7345,2298,7343]],[[2295,2294,7346]],[[7346,2294,7345]],[[2287,2295,7348]],[[7348,2295,7346]],[[2284,2287,7328]],[[7328,2287,7347]],[[7347,2287,7348]],[[7333,2284,7324]],[[7324,2284,7328]],[[7324,7328,7344]],[[7344,7328,7347]],[[2312,7333,7325]],[[7325,7333,7324]],[[7325,7324,7349]],[[7349,7324,7344]],[[7354,2312,2308]],[[2308,2312,7355]],[[7355,2312,7351]],[[7351,2312,7325]],[[7351,7325,7349]],[[7352,7354,2297]],[[2297,7354,2308]],[[2297,2308,7353]],[[7353,2308,7355]],[[7353,7355,7350]],[[7350,7355,7351]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c37-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026230","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027051)","inonderzoek":"0","lokaalid":"G0503.032e68f0455b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.9300000667572,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.625 447604.950)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:57)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7356,7357,7358]],[[7356,7358,7359]],[[7358,7357,7360]],[[7358,7360,7361]],[[2624,7362,7356]],[[7356,7362,7357]],[[2432,2624,7359]],[[7359,2624,7356]],[[2428,2432,7358]],[[7358,2432,7359]],[[2724,2428,7361]],[[7361,2428,7358]],[[7363,2724,7360]],[[7360,2724,7361]],[[7362,7363,7357]],[[7357,7363,7360]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c3c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026224","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027042)","inonderzoek":"0","lokaalid":"G0503.032e68f0455c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.479999989271164,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84905.401 447581.619)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7364,7355,7365]],[[7355,7353,7365]],[[7353,7366,7367]],[[7368,7353,7367]],[[7365,7353,7368]],[[2322,2308,7364]],[[7364,2308,7355]],[[2414,2322,7365]],[[7365,2322,7364]],[[2669,2414,7368]],[[7368,2414,7365]],[[2507,2669,7367]],[[7367,2669,7368]],[[2290,2507,7366]],[[7366,2507,7367]],[[2297,2290,7353]],[[7353,2290,7366]],[[2308,2297,7355]],[[7355,2297,7353]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c41-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000032721","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027052)","inonderzoek":"0","lokaalid":"G0503.032e68f0455d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84905.591 447607.059)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:59)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7369,7370,7371]],[[7372,7373,7374]],[[7371,7375,7374]],[[7370,7376,7371]],[[7374,7375,7372]],[[7372,7377,7378]],[[7372,7375,7377]],[[7371,7376,7375]],[[7379,7380,2449]],[[2449,7380,7381]],[[2449,7381,7369]],[[7369,7381,7370]],[[2447,7379,7371]],[[7371,7379,2449]],[[7371,2449,7369]],[[2443,2447,7374]],[[7374,2447,7371]],[[2444,2443,7373]],[[7373,2443,7374]],[[2451,2444,7372]],[[7372,2444,7373]],[[2438,2451,7378]],[[7378,2451,7372]],[[2439,2438,7377]],[[7377,2438,7378]],[[2624,2439,7356]],[[7356,2439,7375]],[[7375,2439,7377]],[[7362,2624,7357]],[[7357,2624,7356]],[[7357,7356,7376]],[[7376,7356,7375]],[[7380,7362,7381]],[[7381,7362,7370]],[[7370,7362,7357]],[[7370,7357,7376]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c46-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026228","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027053)","inonderzoek":"0","lokaalid":"G0503.032e68f0455e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.310000002384186,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84908.575 447609.097)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:61)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7382,7383,7384]],[[7382,7384,7385]],[[7383,7386,7384]],[[7387,7388,2454]],[[2454,7388,7389]],[[2454,7389,7382]],[[7382,7389,7383]],[[2445,7387,7385]],[[7385,7387,2454]],[[7385,2454,7382]],[[2449,2445,7369]],[[7369,2445,7384]],[[7384,2445,7385]],[[7381,2449,7370]],[[7370,2449,7369]],[[7370,7369,7386]],[[7386,7369,7384]],[[7388,7381,7389]],[[7389,7381,7383]],[[7383,7381,7370]],[[7383,7370,7386]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c4b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026229","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027054)","inonderzoek":"0","lokaalid":"G0503.032e68f0455f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.319999992847443,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.042 447611.640)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:63)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7390,7391,7392]],[[7393,7390,7392]],[[7391,7390,7394]],[[7390,7393,7395]],[[7393,7396,7395]],[[7393,7397,7398]],[[7396,7393,7398]],[[7399,7400,7393]],[[7393,7400,7397]],[[7401,7399,7392]],[[7392,7399,7393]],[[2630,7401,7391]],[[7391,7401,7392]],[[2440,2630,7394]],[[7394,2630,7391]],[[2453,2440,7390]],[[7390,2440,7394]],[[2454,2453,7382]],[[7382,2453,7395]],[[7395,2453,7390]],[[7389,2454,7383]],[[7383,2454,7382]],[[7383,7382,7396]],[[7396,7382,7395]],[[7402,7389,7398]],[[7398,7389,7383]],[[7398,7383,7396]],[[7400,7402,7397]],[[7397,7402,7398]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c50-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000026227","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027055)","inonderzoek":"0","lokaalid":"G0503.032e68f0456049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.46000000834465,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84920.220 447592.293)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:67)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7403,7404,7405]],[[7403,7406,7407]],[[7404,7403,7408]],[[7408,7403,7407]],[[7407,7406,7409]],[[2491,2714,7410]],[[7410,2714,7411]],[[7410,7411,7403]],[[7403,7411,7406]],[[2492,2491,7405]],[[7405,2491,7410]],[[7405,7410,7403]],[[2508,2492,7404]],[[7404,2492,7405]],[[2596,2508,7408]],[[7408,2508,7404]],[[2649,2596,7412]],[[7412,2596,7407]],[[7407,2596,7408]],[[2461,2649,7413]],[[7413,2649,7412]],[[7413,7412,7409]],[[7409,7412,7407]],[[2714,2461,7411]],[[7411,2461,7406]],[[7406,2461,7413]],[[7406,7413,7409]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c53-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026226","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0456149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.08999991416931,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7412,7413,7414]],[[7412,7414,7415]],[[7413,7416,7414]],[[7417,7418,2649]],[[2649,7418,2461]],[[2649,2461,7412]],[[7412,2461,7413]],[[2430,7417,7415]],[[7415,7417,2649]],[[7415,2649,7412]],[[2431,2430,7414]],[[7414,2430,7415]],[[2441,2431,7416]],[[7416,2431,7414]],[[7418,2441,2461]],[[2461,2441,7413]],[[7413,2441,7416]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c58-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000017319","identificatiebagvbohoogstehuisnummer":"(1:503010000003291)","identificatiebagvbolaagstehuisnummer":"(1:503010000003290)","inonderzoek":"0","lokaalid":"G0503.032e68f0456249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.310000002384186,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84925.993 447620.937)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:30-31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7419,7420,7421]],[[7422,7423,7424]],[[7423,7425,7426]],[[7424,7423,7426]],[[7427,7422,7424]],[[7428,7429,7430]],[[7427,7431,7422]],[[7432,7431,7433]],[[7432,7434,7435]],[[7432,7433,7434]],[[7434,7433,7436]],[[7431,7437,7433]],[[7431,7427,7428]],[[7437,7431,7428]],[[7430,7437,7428]],[[7421,7438,7427]],[[7419,7421,7439]],[[7428,7427,7440]],[[7441,7440,7438]],[[7441,7438,7442]],[[7440,7427,7438]],[[7438,7421,7443]],[[7443,7444,7445]],[[7443,7420,7444]],[[7443,7421,7420]],[[7446,7419,7439]],[[7447,7419,7446]],[[7448,7449,7421]],[[7421,7449,7439]],[[7450,7448,7427]],[[7427,7448,7421]],[[7451,7450,7424]],[[7424,7450,7427]],[[7452,7451,7426]],[[7426,7451,7424]],[[7453,7452,7425]],[[7425,7452,7426]],[[7454,7453,7423]],[[7423,7453,7425]],[[7455,7454,7422]],[[7422,7454,7423]],[[7456,7455,7431]],[[7431,7455,7422]],[[7457,7456,7432]],[[7432,7456,7431]],[[7458,7457,7435]],[[7435,7457,7432]],[[7459,7458,7434]],[[7434,7458,7435]],[[7460,7459,7436]],[[7436,7459,7434]],[[7461,7460,7433]],[[7433,7460,7436]],[[7462,7461,7437]],[[7437,7461,7433]],[[7463,7462,7430]],[[7430,7462,7437]],[[7464,7463,7429]],[[7429,7463,7430]],[[7465,7464,7428]],[[7428,7464,7429]],[[7466,7465,7440]],[[7440,7465,7428]],[[7467,7466,7441]],[[7441,7466,7440]],[[7468,7467,7442]],[[7442,7467,7441]],[[7469,7468,7438]],[[7438,7468,7442]],[[7470,7469,7443]],[[7443,7469,7438]],[[7471,7470,7445]],[[7445,7470,7443]],[[7472,7471,7444]],[[7444,7471,7445]],[[7473,7472,7420]],[[7420,7472,7444]],[[7474,7473,7419]],[[7419,7473,7420]],[[7475,7474,7447]],[[7447,7474,7419]],[[7476,7475,7446]],[[7446,7475,7447]],[[7449,7476,7439]],[[7439,7476,7446]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c5d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000026225","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027057)","inonderzoek":"0","lokaalid":"G0503.032e68f0456349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.19000005722046,"min-height-surface":0.46000000834465,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84922.501 447589.020)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:69)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7477,7478,7479]],[[7477,7479,7480]],[[7479,7478,7411]],[[7479,7411,7410]],[[7481,7482,2497]],[[2497,7482,2618]],[[2497,2618,7483]],[[7483,2618,7484]],[[7483,7484,7477]],[[7477,7484,7478]],[[2489,7481,7480]],[[7480,7481,2497]],[[7480,2497,7483]],[[7480,7483,7477]],[[2490,2489,7479]],[[7479,2489,7480]],[[2491,2490,7410]],[[7410,2490,7479]],[[2714,2491,7411]],[[7411,2491,7410]],[[7482,2714,2618]],[[2618,2714,7484]],[[7484,2714,7478]],[[7478,2714,7411]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c62-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000032720","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027059)","inonderzoek":"0","lokaalid":"G0503.032e68f0456449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.0,"min-height-surface":0.490000009536743,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84924.685 447585.981)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:71)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7485,7486,7487]],[[7485,7487,7488]],[[7486,7489,7487]],[[7487,7490,7491]],[[7490,7483,7492]],[[7493,7490,7489]],[[7492,7494,7495]],[[7492,7483,7494]],[[7490,7484,7483]],[[7490,7493,7484]],[[7490,7487,7489]],[[2262,2517,7496]],[[7496,2517,7497]],[[7496,7497,7485]],[[7485,7497,7486]],[[2260,2262,7488]],[[7488,2262,7496]],[[7488,7496,7485]],[[2302,2260,7487]],[[7487,2260,7488]],[[2486,2302,7491]],[[7491,2302,7487]],[[2511,2486,7490]],[[7490,2486,7491]],[[2470,2511,7492]],[[7492,2511,7490]],[[2498,2470,7495]],[[7495,2470,7492]],[[2499,2498,7494]],[[7494,2498,7495]],[[2497,2499,7483]],[[7483,2499,7494]],[[2618,2497,7484]],[[7484,2497,7483]],[[2619,2618,7493]],[[7493,2618,7484]],[[2518,2619,7489]],[[7489,2619,7493]],[[2517,2518,7497]],[[7497,2518,7486]],[[7486,2518,7489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc275-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026308","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0456549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.05999994277954,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7498,7499,7500]],[[7498,7500,7501]],[[7501,7500,7502]],[[7503,7504,7505]],[[7505,7504,7506]],[[7505,7506,7498]],[[7498,7506,7499]],[[7507,7503,7448]],[[7448,7503,7421]],[[7421,7503,7501]],[[7501,7503,7505]],[[7501,7505,7498]],[[7508,7507,7449]],[[7449,7507,7448]],[[7449,7448,7439]],[[7439,7448,7421]],[[7439,7421,7502]],[[7502,7421,7501]],[[7509,7508,7500]],[[7500,7508,7449]],[[7500,7449,7439]],[[7500,7439,7502]],[[7504,7509,7506]],[[7506,7509,7499]],[[7499,7509,7500]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc27a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026307","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060887)","inonderzoek":"0","lokaalid":"G0503.032e68f0456649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.96000003814697,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84933.650 447613.578)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7510,7511,7506]],[[7510,7505,7512]],[[7512,7505,7513]],[[7510,7506,7505]],[[7514,7515,7510]],[[7510,7515,7511]],[[7516,7514,7512]],[[7512,7514,7510]],[[7517,7516,7513]],[[7513,7516,7512]],[[7518,7517,7503]],[[7503,7517,7505]],[[7505,7517,7513]],[[7519,7518,7504]],[[7504,7518,7503]],[[7504,7503,7506]],[[7506,7503,7505]],[[7515,7519,7511]],[[7511,7519,7504]],[[7511,7504,7506]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc27f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026306","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003294)","inonderzoek":"0","lokaalid":"G0503.032e68f0456749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.99000000953674,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84939.538 447607.795)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:34)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7315,7318,7520]],[[7315,7521,7522]],[[7521,7523,7524]],[[7525,7526,7523]],[[7521,7525,7523]],[[7526,7525,7527]],[[7521,7520,7525]],[[7521,7315,7520]],[[7520,7318,7528]],[[7314,7317,7315]],[[7315,7317,7318]],[[7529,7314,7522]],[[7522,7314,7315]],[[7530,7529,7521]],[[7521,7529,7522]],[[7531,7530,7514]],[[7514,7530,7510]],[[7510,7530,7524]],[[7524,7530,7521]],[[7532,7531,7515]],[[7515,7531,7514]],[[7515,7514,7511]],[[7511,7514,7510]],[[7511,7510,7523]],[[7523,7510,7524]],[[7533,7532,7526]],[[7526,7532,7515]],[[7526,7515,7511]],[[7526,7511,7523]],[[7534,7533,7527]],[[7527,7533,7526]],[[7535,7534,7525]],[[7525,7534,7527]],[[7536,7535,7520]],[[7520,7535,7525]],[[7537,7536,7528]],[[7528,7536,7520]],[[7317,7537,7318]],[[7318,7537,7528]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc293-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026220","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027028)","inonderzoek":"0","lokaalid":"G0503.032e68f0456b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.55000019073486,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84865.905 447577.729)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:11)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7538,7539,7540]],[[7538,7540,7541]],[[7539,7542,7540]],[[7543,7544,2051]],[[2051,7544,7545]],[[2051,7545,7546]],[[7546,7545,7547]],[[7546,7547,7538]],[[7538,7547,7539]],[[2174,7543,7541]],[[7541,7543,2051]],[[7541,2051,7546]],[[7541,7546,7538]],[[1932,2174,7548]],[[7548,2174,7540]],[[7540,2174,7541]],[[7549,1932,7550]],[[7550,1932,7548]],[[7550,7548,7542]],[[7542,7548,7540]],[[7544,7549,7545]],[[7545,7549,7547]],[[7547,7549,7539]],[[7539,7549,7550]],[[7539,7550,7542]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc29d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026221","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027029)","inonderzoek":"0","lokaalid":"G0503.032e68f0456d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.6100001335144,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84870.014 447581.083)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:13)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7551,7552,7553]],[[7551,7554,7547]],[[7552,7551,7546]],[[7555,7552,7546]],[[7546,7551,7547]],[[7556,7557,7558]],[[7558,7557,7559]],[[7559,7557,7560]],[[7559,7560,7551]],[[7551,7560,7554]],[[7561,7556,7562]],[[7562,7556,7558]],[[7562,7558,7563]],[[7563,7558,7559]],[[7563,7559,7553]],[[7553,7559,7551]],[[7564,7561,2023]],[[2023,7561,7562]],[[2023,7562,7565]],[[7565,7562,7563]],[[7565,7563,7552]],[[7552,7563,7553]],[[2021,7564,7555]],[[7555,7564,2023]],[[7555,2023,7565]],[[7555,7565,7552]],[[2051,2021,7546]],[[7546,2021,7555]],[[7545,2051,7547]],[[7547,2051,7546]],[[7557,7545,7560]],[[7560,7545,7554]],[[7554,7545,7547]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9b7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017403","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027030)","inonderzoek":"0","lokaalid":"G0503.032e68f0456f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84873.014 447583.083)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:15)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7566,7559,7567]],[[7566,7568,7559]],[[7559,7568,7560]],[[7560,7568,7569]],[[7570,7571,7566]],[[7566,7571,7568]],[[7572,7570,7573]],[[7573,7570,7567]],[[7567,7570,7566]],[[7556,7572,7558]],[[7558,7572,7573]],[[7558,7573,7559]],[[7559,7573,7567]],[[7557,7556,7560]],[[7560,7556,7558]],[[7560,7558,7559]],[[7574,7557,7569]],[[7569,7557,7560]],[[7571,7574,7568]],[[7568,7574,7569]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9c1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017318","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027043)","inonderzoek":"0","lokaalid":"G0503.032e68f0457149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84877.536 447586.302)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:41)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7575,7576,7577]],[[7575,7577,7578]],[[7577,7576,7579]],[[7580,7577,7579]],[[7580,7579,7581]],[[7582,7583,2360]],[[2360,7583,7584]],[[2360,7584,7575]],[[7575,7584,7576]],[[2358,7582,7578]],[[7578,7582,2360]],[[7578,2360,7575]],[[2350,2358,7577]],[[7577,2358,7578]],[[2351,2350,7580]],[[7580,2350,7577]],[[2354,2351,7581]],[[7581,2351,7580]],[[7585,2354,7579]],[[7579,2354,7581]],[[7583,7585,7584]],[[7584,7585,7576]],[[7576,7585,7579]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9c6-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:52.7)","identificatiebagpnd":"503100000017422","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027031)","inonderzoek":"0","lokaalid":"G0503.032e68f0457249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84879.588 447573.483)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:17)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7563,7586,7559]],[[7587,7563,7588]],[[7588,7589,7590]],[[7588,7563,7589]],[[7589,7563,7565]],[[7587,7586,7563]],[[7586,7591,7559]],[[7559,7591,7567]],[[7592,7593,7587]],[[7587,7593,7586]],[[7594,7592,7588]],[[7588,7592,7587]],[[7595,7594,7596]],[[7596,7594,7590]],[[7590,7594,7588]],[[7597,7595,2128]],[[2128,7595,7596]],[[2128,7596,7589]],[[7589,7596,7590]],[[2023,7597,7565]],[[7565,7597,2128]],[[7565,2128,7589]],[[7562,2023,7563]],[[7563,2023,7565]],[[7558,7562,7559]],[[7559,7562,7563]],[[7573,7558,7567]],[[7567,7558,7559]],[[7598,7573,7591]],[[7591,7573,7567]],[[7593,7598,7586]],[[7586,7598,7591]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9cb-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017409","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027044)","inonderzoek":"0","lokaalid":"G0503.032e68f0457349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.9300000667572,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84880.543 447588.458)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:43)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7599,7600,7601]],[[7602,7603,7601]],[[7600,7604,7601]],[[7601,7604,7602]],[[7605,7606,2371]],[[2371,7606,7607]],[[2371,7607,7608]],[[7608,7607,7609]],[[7608,7609,7599]],[[7599,7609,7600]],[[2710,7605,7601]],[[7601,7605,2371]],[[7601,2371,7608]],[[7601,7608,7599]],[[2368,2710,7603]],[[7603,2710,7601]],[[2360,2368,7575]],[[7575,2368,7602]],[[7602,2368,7603]],[[7584,2360,7576]],[[7576,2360,7575]],[[7576,7575,7604]],[[7604,7575,7602]],[[7606,7584,7607]],[[7607,7584,7609]],[[7609,7584,7600]],[[7600,7584,7576]],[[7600,7576,7604]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9d5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026231","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027045)","inonderzoek":"0","lokaalid":"G0503.032e68f0457549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.92000007629395,"min-height-surface":0.259999990463257,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84884.043 447591.158)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7610,7611,7612]],[[7610,7612,7613]],[[7612,7611,7609]],[[7612,7614,7615]],[[7614,7612,7609]],[[7614,7609,7616]],[[7616,7609,7608]],[[7617,7618,2602]],[[2602,7618,7619]],[[2602,7619,7620]],[[7620,7619,7621]],[[7620,7621,7610]],[[7610,7621,7611]],[[2362,7617,7613]],[[7613,7617,2602]],[[7613,2602,7620]],[[7613,7620,7610]],[[2376,2362,7612]],[[7612,2362,7613]],[[2344,2376,7615]],[[7615,2376,7612]],[[2372,2344,7614]],[[7614,2344,7615]],[[2345,2372,7616]],[[7616,2372,7614]],[[2371,2345,7608]],[[7608,2345,7616]],[[7607,2371,7609]],[[7609,2371,7608]],[[7618,7607,7619]],[[7619,7607,7621]],[[7621,7607,7611]],[[7611,7607,7609]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9df-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000029881","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027046)","inonderzoek":"0","lokaalid":"G0503.032e68f0457749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.747 447592.960)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:47)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7620,7622,7623]],[[7624,7620,7623]],[[7622,7625,7626]],[[7622,7620,7625]],[[7624,7621,7620]],[[7624,7627,7628]],[[7621,7624,7628]],[[2386,2388,7624]],[[7624,2388,7629]],[[7624,7629,7627]],[[2384,2386,7623]],[[7623,2386,7624]],[[2373,2384,7622]],[[7622,2384,7623]],[[2374,2373,7626]],[[7626,2373,7622]],[[2603,2374,7625]],[[7625,2374,7626]],[[2602,2603,7620]],[[7620,2603,7625]],[[7619,2602,7621]],[[7621,2602,7620]],[[7630,7619,7631]],[[7631,7619,7628]],[[7628,7619,7621]],[[2388,7630,7629]],[[7629,7630,7631]],[[7629,7631,7627]],[[7627,7631,7628]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd10f5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000029882","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0457949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7632,7633,7634]],[[7632,7634,7635]],[[7634,7633,7629]],[[7634,7629,7636]],[[7633,7631,7629]],[[2401,7637,7632]],[[7632,7637,7633]],[[2631,2401,7635]],[[7635,2401,7632]],[[2739,2631,7634]],[[7634,2631,7635]],[[2387,2739,7636]],[[7636,2739,7634]],[[2388,2387,7629]],[[7629,2387,7636]],[[7630,2388,7631]],[[7631,2388,7629]],[[7637,7630,7633]],[[7633,7630,7631]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd10ff-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017424","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000054296)","inonderzoek":"0","lokaalid":"G0503.032e68f0457b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84892.280 447597.016)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:51)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7638,7639,7640]],[[7639,7633,7640]],[[7640,7641,7642]],[[7641,7640,7633]],[[7641,7633,7632]],[[2406,7643,7638]],[[7638,7643,7639]],[[2405,2406,7640]],[[7640,2406,7638]],[[2402,2405,7642]],[[7642,2405,7640]],[[2403,2402,7641]],[[7641,2402,7642]],[[2401,2403,7632]],[[7632,2403,7641]],[[7637,2401,7633]],[[7633,2401,7632]],[[7643,7637,7639]],[[7639,7637,7633]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd110e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017410","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000061316)","inonderzoek":"0","lokaalid":"G0503.032e68f0457e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.270000010728836,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84896.941 447600.562)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:53)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7644,7645,7646]],[[7644,7646,7647]],[[7645,7648,7646]],[[7649,7650,7651]],[[7649,7646,7648]],[[7649,7648,7650]],[[7652,7653,2416]],[[2416,7653,7654]],[[2416,7654,7644]],[[7644,7654,7645]],[[2411,7652,7647]],[[7647,7652,2416]],[[7647,2416,7644]],[[2413,2411,7646]],[[7646,2411,7647]],[[2412,2413,7649]],[[7649,2413,7646]],[[2677,2412,7651]],[[7651,2412,7649]],[[7655,2677,2406]],[[2406,2677,7638]],[[7638,2677,7650]],[[7650,2677,7651]],[[7656,7655,7643]],[[7643,7655,2406]],[[7643,2406,7639]],[[7639,2406,7638]],[[7639,7638,7648]],[[7648,7638,7650]],[[7653,7656,7654]],[[7654,7656,7645]],[[7645,7656,7643]],[[7645,7643,7639]],[[7645,7639,7648]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd1111-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017407","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0457f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.11999988555908,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7657,7658,7659]],[[7660,7661,7659]],[[7658,7662,7659]],[[7661,7660,7663]],[[7659,7662,7660]],[[7664,7665,2724]],[[2724,7665,7363]],[[2724,7363,7361]],[[7361,7363,7360]],[[7361,7360,7657]],[[7657,7360,7658]],[[2659,7664,7659]],[[7659,7664,2724]],[[7659,2724,7361]],[[7659,7361,7657]],[[2575,2659,7661]],[[7661,2659,7659]],[[2661,2575,7663]],[[7663,2575,7661]],[[2416,2661,7644]],[[7644,2661,7660]],[[7660,2661,7663]],[[7654,2416,7645]],[[7645,2416,7644]],[[7645,7644,7662]],[[7662,7644,7660]],[[7665,7654,7363]],[[7363,7654,7360]],[[7360,7654,7658]],[[7658,7654,7645]],[[7658,7645,7662]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd1116-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017412","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027024)","inonderzoek":"0","lokaalid":"G0503.032e68f0458049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.0900000035762787,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84852.482 447568.060)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:3)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7666,7667,7668]],[[7666,7669,7670]],[[7667,7666,7670]],[[7670,7669,375]],[[374,7670,375]],[[375,7669,7671]],[[7672,7673,2001]],[[2001,7673,7674]],[[2001,7674,7666]],[[7666,7674,7669]],[[2093,7672,7668]],[[7668,7672,2001]],[[7668,2001,7666]],[[1991,2093,7667]],[[7667,2093,7668]],[[1992,1991,7670]],[[7670,1991,7667]],[[383,1992,374]],[[374,1992,7670]],[[384,383,375]],[[375,383,374]],[[7675,384,7671]],[[7671,384,375]],[[7673,7675,7674]],[[7674,7675,7669]],[[7669,7675,7671]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd111b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017420","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000054295)","inonderzoek":"0","lokaalid":"G0503.032e68f0458149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84855.482 447570.260)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:5)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7676,7677,7669]],[[7676,7669,7666]],[[7678,7679,2000]],[[2000,7679,7680]],[[2000,7680,7676]],[[7676,7680,7677]],[[2001,7678,7666]],[[7666,7678,2000]],[[7666,2000,7676]],[[7674,2001,7669]],[[7669,2001,7666]],[[7679,7674,7680]],[[7680,7674,7677]],[[7677,7674,7669]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd382e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017408","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0458249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7681,7682,7683]],[[7681,7684,7685]],[[7681,7683,7684]],[[7686,7687,2003]],[[2003,7687,7688]],[[2003,7688,7681]],[[7681,7688,7682]],[[2000,7686,7676]],[[7676,7686,7685]],[[7685,7686,2003]],[[7685,2003,7681]],[[7680,2000,7677]],[[7677,2000,7676]],[[7677,7676,7684]],[[7684,7676,7685]],[[7689,7680,7683]],[[7683,7680,7677]],[[7683,7677,7684]],[[7687,7689,7688]],[[7688,7689,7682]],[[7682,7689,7683]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3833-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026219","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027027)","inonderzoek":"0","lokaalid":"G0503.032e68f0458349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.03999996185303,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84862.159 447575.143)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:9)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7548,7550,7690]],[[7550,7691,7690]],[[7692,7693,7694]],[[7695,7692,7694]],[[7690,7696,7694]],[[7694,7696,7695]],[[7690,7691,7696]],[[7697,7698,1932]],[[1932,7698,7549]],[[1932,7549,7548]],[[7548,7549,7550]],[[2016,7697,7690]],[[7690,7697,1932]],[[7690,1932,7548]],[[2010,2016,7694]],[[7694,2016,7690]],[[2011,2010,7693]],[[7693,2010,7694]],[[2017,2011,7692]],[[7692,2011,7693]],[[2007,2017,7695]],[[7695,2017,7692]],[[2003,2007,7681]],[[7681,2007,7696]],[[7696,2007,7695]],[[7688,2003,7682]],[[7682,2003,7681]],[[7682,7681,7691]],[[7691,7681,7696]],[[7698,7688,7549]],[[7549,7688,7550]],[[7550,7688,7682]],[[7550,7682,7691]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd384d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000017317","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027034)","inonderzoek":"0","lokaalid":"G0503.032e68f0458949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.99000000953674,"min-height-surface":0.610000014305115,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.782 447557.084)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:21)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7699,7700,7701]],[[7701,7700,7702]],[[7699,7703,7700]],[[7699,7704,7705]],[[7703,7699,7705]],[[7706,7705,7707]],[[7705,7708,7707]],[[7705,7704,7708]],[[7709,7710,7699]],[[7699,7710,7704]],[[7711,7709,7701]],[[7701,7709,7699]],[[372,7711,355]],[[355,7711,7702]],[[7702,7711,7701]],[[370,372,363]],[[363,372,355]],[[363,355,7700]],[[7700,355,7702]],[[341,370,323]],[[323,370,361]],[[361,370,363]],[[361,363,7703]],[[7703,363,7700]],[[337,341,329]],[[329,341,323]],[[329,323,7705]],[[7705,323,361]],[[7705,361,7703]],[[338,337,330]],[[330,337,329]],[[330,329,7706]],[[7706,329,7705]],[[7712,338,7707]],[[7707,338,330]],[[7707,330,7706]],[[7713,7712,7708]],[[7708,7712,7707]],[[7710,7713,7704]],[[7704,7713,7708]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3852-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000026237","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027035)","inonderzoek":"0","lokaalid":"G0503.032e68f0458a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.13000011444092,"min-height-surface":0.5,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.062 447561.843)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:25)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7714,7715,7716]],[[7716,7717,7718]],[[7719,7720,7721]],[[7717,7716,7715]],[[7715,7714,7722]],[[7714,7719,7722]],[[7714,7720,7719]],[[7723,7721,7724]],[[7721,7725,7724]],[[7721,7720,7725]],[[7726,7727,7714]],[[7714,7727,7720]],[[7728,7726,7716]],[[7716,7726,7714]],[[7729,7728,7718]],[[7718,7728,7716]],[[7730,7729,7717]],[[7717,7729,7718]],[[7731,7730,7732]],[[7732,7730,7733]],[[7733,7730,7715]],[[7715,7730,7717]],[[7734,7731,2279]],[[2279,7731,7732]],[[2279,7732,7735]],[[7735,7732,7733]],[[7735,7733,7722]],[[7722,7733,7715]],[[2280,7734,7719]],[[7719,7734,2279]],[[7719,2279,7735]],[[7719,7735,7722]],[[2274,2280,7721]],[[7721,2280,7719]],[[2275,2274,7723]],[[7723,2274,7721]],[[7736,2275,7724]],[[7724,2275,7723]],[[7737,7736,7725]],[[7725,7736,7724]],[[7727,7737,7720]],[[7720,7737,7725]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3857-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026234","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027037)","inonderzoek":"0","lokaalid":"G0503.032e68f0458b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.3199999332428,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84889.601 447570.319)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:29)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7738,7739,7740]],[[7739,7741,7740]],[[7740,7741,7742]],[[7742,7741,7743]],[[7744,7745,7746]],[[7746,7745,2580]],[[7746,2580,7747]],[[7747,2580,7748]],[[7748,2580,7749]],[[7749,2580,7750]],[[7749,7750,7738]],[[7738,7750,7739]],[[7751,7744,7752]],[[7752,7744,7746]],[[7752,7746,7747]],[[7752,7747,7753]],[[7753,7747,7748]],[[7753,7748,7740]],[[7740,7748,7749]],[[7740,7749,7738]],[[7754,7751,7742]],[[7742,7751,7752]],[[7742,7752,7753]],[[7742,7753,7740]],[[7755,7754,7743]],[[7743,7754,7742]],[[2579,7755,7741]],[[7741,7755,7743]],[[7745,2579,2580]],[[2580,2579,7750]],[[7750,2579,7739]],[[7739,2579,7741]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f6c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000033625","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027036)","inonderzoek":"0","lokaalid":"G0503.032e68f0458c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.569999992847443,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84899.662 447565.129)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:27)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7733,7735,7756]],[[7748,7757,7758]],[[7748,7753,7757]],[[7733,7756,7758]],[[7758,7756,7748]],[[7756,7735,7342]],[[7735,7336,7342]],[[7342,7336,7339]],[[7732,2279,7733]],[[7733,2279,7735]],[[7759,7732,7758]],[[7758,7732,7733]],[[7760,7759,7757]],[[7757,7759,7758]],[[7752,7760,7753]],[[7753,7760,7757]],[[7747,7752,7748]],[[7748,7752,7753]],[[7761,7747,7756]],[[7756,7747,7748]],[[7341,7761,7342]],[[7342,7761,7756]],[[7338,7341,7339]],[[7339,7341,7342]],[[2285,7338,7336]],[[7336,7338,7339]],[[2279,2285,7735]],[[7735,2285,7336]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f71-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:52.7)","identificatiebagpnd":"503100000026222","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027032)","inonderzoek":"0","lokaalid":"G0503.032e68f0458d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.15000009536743,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84883.868 447567.309)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:19)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7762,7763,7764]],[[7762,7765,7763]],[[7766,7764,7767]],[[7768,7766,7767]],[[7767,7764,7763]],[[7769,7596,7762]],[[7762,7596,7590]],[[7762,7590,7765]],[[7770,7769,7764]],[[7764,7769,7762]],[[7771,7770,7766]],[[7766,7770,7764]],[[7772,7771,353]],[[353,7771,333]],[[333,7771,7768]],[[7768,7771,7766]],[[7773,7772,352]],[[352,7772,353]],[[352,353,334]],[[334,353,333]],[[334,333,7767]],[[7767,333,7768]],[[2128,7773,7589]],[[7589,7773,7763]],[[7763,7773,352]],[[7763,352,334]],[[7763,334,7767]],[[7596,2128,7590]],[[7590,2128,7589]],[[7590,7589,7765]],[[7765,7589,7763]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f76-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026233","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027038)","inonderzoek":"0","lokaalid":"G0503.032e68f0458e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.21000003814697,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84893.214 447572.683)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7774,7775,7750]],[[7774,7750,7749]],[[7776,2316,7761]],[[7761,2316,7756]],[[7756,2316,7774]],[[7774,2316,7775]],[[7746,7776,7747]],[[7747,7776,7761]],[[7747,7761,7748]],[[7748,7761,7756]],[[7748,7756,7749]],[[7749,7756,7774]],[[2580,7746,7750]],[[7750,7746,7747]],[[7750,7747,7748]],[[7750,7748,7749]],[[2316,2580,7775]],[[7775,2580,7750]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f7b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026235","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027039)","inonderzoek":"0","lokaalid":"G0503.032e68f0458f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.389999985694885,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84895.825 447574.836)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7777,7778,7779]],[[7777,7779,7780]],[[7781,7777,7780]],[[7782,7778,7777]],[[7783,7781,7780]],[[7783,7784,7781]],[[7783,7778,7782]],[[7784,7783,7782]],[[7785,7786,7340]],[[7340,7786,2311]],[[7340,2311,7341]],[[7341,2311,7342]],[[7342,2311,7330]],[[7330,2311,7329]],[[7330,7329,7783]],[[7783,7329,7778]],[[7787,7785,7776]],[[7776,7785,7761]],[[7761,7785,7340]],[[7761,7340,7341]],[[7761,7341,7756]],[[7756,7341,7342]],[[7756,7342,7774]],[[7774,7342,7780]],[[7780,7342,7330]],[[7780,7330,7783]],[[7788,7787,2316]],[[2316,7787,7776]],[[2316,7776,7775]],[[7775,7776,7761]],[[7775,7761,7756]],[[7775,7756,7774]],[[7775,7774,7779]],[[7779,7774,7780]],[[7786,7788,2311]],[[2311,7788,7329]],[[7329,7788,7778]],[[7778,7788,2316]],[[7778,2316,7775]],[[7778,7775,7779]],[[7789,7790,7781]],[[7781,7790,7777]],[[7791,7789,7784]],[[7784,7789,7781]],[[7792,7791,7782]],[[7782,7791,7784]],[[7790,7792,7777]],[[7777,7792,7782]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd428-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000026302","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003316)","inonderzoek":"0","lokaalid":"G0503.032e68f046ba49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":8.56999969482422,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85021.496 447524.002)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:57)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7793,7794,7795]],[[7795,7796,7797]],[[7797,7796,7798]],[[7798,7799,7800]],[[7798,7801,7799]],[[7798,7796,7801]],[[7795,7802,7796]],[[7793,7795,7797]],[[1783,1787,7793]],[[7793,1787,7794]],[[1784,1783,7797]],[[7797,1783,7793]],[[1778,1784,7798]],[[7798,1784,7797]],[[7803,1778,7800]],[[7800,1778,7798]],[[1354,7803,7799]],[[7799,7803,7800]],[[7804,1354,1606]],[[1606,1354,7805]],[[7805,1354,7801]],[[7801,1354,7799]],[[7806,7804,7807]],[[7807,7804,1606]],[[7807,1606,7808]],[[7808,1606,7805]],[[7808,7805,7796]],[[7796,7805,7801]],[[7809,7806,7802]],[[7802,7806,7807]],[[7802,7807,7808]],[[7802,7808,7796]],[[7810,7809,7795]],[[7795,7809,7802]],[[1787,7810,7794]],[[7794,7810,7795]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd42d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000018587","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005337)","inonderzoek":"0","lokaalid":"G0503.032e68f046bb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.69000005722046,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85027.406 447519.861)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:77)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7811,7812,7813]],[[7814,7815,7816]],[[7813,7814,7816]],[[7817,7818,7814]],[[7813,7817,7814]],[[7812,7817,7813]],[[7812,7819,7817]],[[7820,7821,7811]],[[7811,7821,7812]],[[1806,7820,7813]],[[7813,7820,7811]],[[1785,1806,7816]],[[7816,1806,7813]],[[1791,1785,7815]],[[7815,1785,7816]],[[1803,1791,7814]],[[7814,1791,7815]],[[1802,1803,7818]],[[7818,1803,7814]],[[7822,1802,7817]],[[7817,1802,7818]],[[7823,7822,7819]],[[7819,7822,7817]],[[7821,7823,7812]],[[7812,7823,7819]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd432-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018602","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005338)","inonderzoek":"0","lokaalid":"G0503.032e68f046bc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.67000007629395,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85036.711 447505.477)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:72)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7824,7825,7826]],[[7824,7826,7827]],[[7825,7828,7826]],[[7825,7829,7828]],[[7825,7830,7829]],[[1835,1840,7824]],[[7824,1840,7825]],[[1816,1835,7827]],[[7827,1835,7824]],[[1811,1816,7826]],[[7826,1816,7827]],[[7831,1811,7828]],[[7828,1811,7826]],[[7832,7831,7829]],[[7829,7831,7828]],[[7833,7832,7830]],[[7830,7832,7829]],[[1840,7833,7825]],[[7825,7833,7830]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd437-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018593","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005332)","inonderzoek":"0","lokaalid":"G0503.032e68f046bd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85019.386 447493.264)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:67)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7834,7835,7836]],[[7834,7836,7837]],[[1851,1772,7834]],[[7834,1772,7835]],[[1847,1851,7838]],[[7838,1851,7837]],[[7837,1851,7834]],[[1770,1847,7839]],[[7839,1847,7838]],[[7839,7838,7836]],[[7836,7838,7837]],[[1772,1770,7835]],[[7835,1770,7839]],[[7835,7839,7836]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd43a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018608","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046be49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.88000011444092,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7840,7841,7842]],[[7840,7842,7843]],[[1859,1817,7844]],[[7844,1817,7845]],[[7844,7845,7840]],[[7840,7845,7841]],[[1851,1859,7834]],[[7834,1859,7843]],[[7843,1859,7844]],[[7843,7844,7840]],[[1772,1851,7835]],[[7835,1851,7834]],[[7835,7834,7842]],[[7842,7834,7843]],[[1817,1772,7845]],[[7845,1772,7841]],[[7841,1772,7835]],[[7841,7835,7842]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd43f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018611","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005333)","inonderzoek":"0","lokaalid":"G0503.032e68f046bf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.77999997138977,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85025.433 447497.508)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:69)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7846,7847,7845]],[[7846,7845,7844]],[[1860,1814,7848]],[[7848,1814,7849]],[[7848,7849,7846]],[[7846,7849,7847]],[[7850,1860,1859]],[[1859,1860,7844]],[[7844,1860,7848]],[[7844,7848,7846]],[[7851,7850,1817]],[[1817,7850,1859]],[[1817,1859,7845]],[[7845,1859,7844]],[[1814,7851,7849]],[[7849,7851,7847]],[[7847,7851,1817]],[[7847,1817,7845]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd442-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018590","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7852,7853,7854]],[[7852,7854,7855]],[[1800,7856,7852]],[[7852,7856,7853]],[[7857,1800,1806]],[[1806,1800,7813]],[[7813,1800,7855]],[[7855,1800,7852]],[[7858,7857,7820]],[[7820,7857,1806]],[[7820,1806,7811]],[[7811,1806,7813]],[[7811,7813,7854]],[[7854,7813,7855]],[[7856,7858,7853]],[[7853,7858,7820]],[[7853,7820,7811]],[[7853,7811,7854]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd447-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000027999","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005334)","inonderzoek":"0","lokaalid":"G0503.032e68f046c149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.76999998092651,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85031.345 447501.656)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:71)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7859,7860,7849]],[[7859,7849,7848]],[[1852,1815,7861]],[[7861,1815,7862]],[[7861,7862,7859]],[[7859,7862,7860]],[[1860,1852,7848]],[[7848,1852,7861]],[[7848,7861,7859]],[[1814,1860,7849]],[[7849,1860,7848]],[[1815,1814,7862]],[[7862,1814,7860]],[[7860,1814,7849]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd44c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000027996","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005336)","inonderzoek":"0","lokaalid":"G0503.032e68f046c249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.8199999332428,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85031.465 447515.641)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:75)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7863,7864,7865]],[[7863,7865,7866]],[[1828,7867,7863]],[[7863,7867,7864]],[[1800,1828,7852]],[[7852,1828,7866]],[[7866,1828,7863]],[[7856,1800,7853]],[[7853,1800,7852]],[[7853,7852,7865]],[[7865,7852,7866]],[[7867,7856,7864]],[[7864,7856,7853]],[[7864,7853,7865]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd44f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018605","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.6800000667572,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7868,7869,7862]],[[7868,7862,7861]],[[7870,7871,1835]],[[1835,7871,1816]],[[1835,1816,7824]],[[7824,1816,7827]],[[7824,7827,7868]],[[7868,7827,7869]],[[1852,7870,7861]],[[7861,7870,1835]],[[7861,1835,7824]],[[7861,7824,7868]],[[1815,1852,7862]],[[7862,1852,7861]],[[7871,1815,1816]],[[1816,1815,7827]],[[7827,1815,7869]],[[7869,1815,7862]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb64-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018600","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005329)","inonderzoek":"0","lokaalid":"G0503.032e68f046c449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84999.155 447498.983)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:61)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7872,7873,7874]],[[7872,7875,7876]],[[7872,7874,7875]],[[7873,7877,7874]],[[7877,7873,7878]],[[7879,1789,1790]],[[1790,1789,7872]],[[7872,1789,7880]],[[7872,7880,7873]],[[7881,7879,914]],[[914,7879,1790]],[[914,1790,7876]],[[7876,1790,7872]],[[912,7881,7875]],[[7875,7881,914]],[[7875,914,7876]],[[956,912,7874]],[[7874,912,7875]],[[909,956,7877]],[[7877,956,7874]],[[847,909,7882]],[[7882,909,7878]],[[7878,909,7877]],[[1789,847,7880]],[[7880,847,7882]],[[7880,7882,7873]],[[7873,7882,7878]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb67-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018607","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.82999992370605,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7883,7884,7885]],[[7883,7885,7886]],[[7884,7887,7885]],[[1780,1790,7888]],[[7888,1790,7883]],[[7883,1790,7872]],[[7883,7872,7884]],[[915,1780,7889]],[[7889,1780,7888]],[[7889,7888,7886]],[[7886,7888,7883]],[[916,915,7885]],[[7885,915,7889]],[[7885,7889,7886]],[[914,916,7876]],[[7876,916,7887]],[[7887,916,7885]],[[1790,914,7872]],[[7872,914,7876]],[[7872,7876,7884]],[[7884,7876,7887]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb6a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018610","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7890,7888,7889]],[[7890,7889,7891]],[[1781,7892,7893]],[[7893,7892,7890]],[[7890,7892,1780]],[[7890,1780,7888]],[[885,1781,7894]],[[7894,1781,7893]],[[7894,7893,7891]],[[7891,7893,7890]],[[7895,885,915]],[[915,885,7889]],[[7889,885,7894]],[[7889,7894,7891]],[[7892,7895,1780]],[[1780,7895,915]],[[1780,915,7888]],[[7888,915,7889]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb6f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018598","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005330)","inonderzoek":"0","lokaalid":"G0503.032e68f046c749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.75999999046326,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85003.595 447492.683)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:62)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7896,7893,7897]],[[7896,7897,7898]],[[7893,7894,7897]],[[1823,7899,7896]],[[7896,7899,1781]],[[7896,1781,7893]],[[921,1823,7898]],[[7898,1823,7896]],[[887,921,7897]],[[7897,921,7898]],[[7900,887,885]],[[885,887,7894]],[[7894,887,7897]],[[7899,7900,1781]],[[1781,7900,885]],[[1781,885,7893]],[[7893,885,7894]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb74-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018601","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060856)","inonderzoek":"0","lokaalid":"G0503.032e68f046c849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85013.307 447488.999)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:65)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7901,7902,7903]],[[7901,7903,7904]],[[1848,1769,7905]],[[7905,1769,7906]],[[7905,7906,7901]],[[7901,7906,7902]],[[7907,1848,1858]],[[1858,1848,7908]],[[7908,1848,7904]],[[7904,1848,7905]],[[7904,7905,7901]],[[7909,7907,1822]],[[1822,7907,1858]],[[1822,1858,7910]],[[7910,1858,7908]],[[7910,7908,7903]],[[7903,7908,7904]],[[1769,7909,7906]],[[7906,7909,7902]],[[7902,7909,1822]],[[7902,1822,7910]],[[7902,7910,7903]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb77-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018589","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7838,7839,7906]],[[7838,7906,7905]],[[1847,1770,7838]],[[7838,1770,7839]],[[1848,1847,7905]],[[7905,1847,7838]],[[1769,1848,7906]],[[7906,1848,7905]],[[1770,1769,7839]],[[7839,1769,7906]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb7a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000032235","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046ca49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.49000000953674,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7908,7910,7911]],[[7908,7912,7913]],[[7908,7911,7912]],[[7912,7911,7914]],[[1858,1822,7908]],[[7908,1822,7910]],[[1845,1858,7913]],[[7913,1858,7908]],[[7915,1845,7912]],[[7912,1845,7913]],[[7916,7915,7914]],[[7914,7915,7912]],[[1821,7916,7911]],[[7911,7916,7914]],[[1822,1821,7910]],[[7910,1821,7911]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb7f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000022860","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027125)","inonderzoek":"0","lokaalid":"G0503.032e68f046cb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.73000001907349,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84969.447 447476.735)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:62)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7917,7918,7919]],[[7920,7921,7922]],[[7920,7923,7921]],[[7920,7924,7923]],[[7920,7918,7924]],[[7924,7918,7917]],[[7917,7919,7925]],[[7926,7927,7928]],[[7928,7927,7929]],[[7928,7929,7920]],[[7920,7929,7918]],[[7930,7926,7922]],[[7922,7926,7928]],[[7922,7928,7920]],[[7931,7930,7921]],[[7921,7930,7922]],[[7932,7931,7923]],[[7923,7931,7921]],[[7933,7932,7924]],[[7924,7932,7923]],[[7934,7933,7917]],[[7917,7933,7924]],[[7935,7934,7925]],[[7925,7934,7917]],[[7936,7935,7919]],[[7919,7935,7925]],[[7927,7936,7929]],[[7929,7936,7918]],[[7918,7936,7919]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb84-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000026301","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027124)","inonderzoek":"0","lokaalid":"G0503.032e68f046cc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.72000002861023,"min-height-surface":-0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84974.937 447475.330)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:60)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7937,7938,7939]],[[7940,7941,7942]],[[7929,7940,7942]],[[7937,7939,7942]],[[7940,7929,7928]],[[7942,7939,7929]],[[7938,7943,7939]],[[880,7944,7937]],[[7937,7944,950]],[[7937,950,7945]],[[7937,7945,7938]],[[876,880,7942]],[[7942,880,7937]],[[874,876,7941]],[[7941,876,7942]],[[7946,874,7940]],[[7940,874,7941]],[[7947,7946,7926]],[[7926,7946,7928]],[[7928,7946,7940]],[[7948,7947,7927]],[[7927,7947,7926]],[[7927,7926,7929]],[[7929,7926,7928]],[[7949,7948,7950]],[[7950,7948,7951]],[[7951,7948,7939]],[[7939,7948,7927]],[[7939,7927,7929]],[[7952,7949,7953]],[[7953,7949,7950]],[[7953,7950,7954]],[[7954,7950,7951]],[[7954,7951,7943]],[[7943,7951,7939]],[[7944,7952,950]],[[950,7952,7953]],[[950,7953,7945]],[[7945,7953,7954]],[[7945,7954,7938]],[[7938,7954,7943]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb89-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35)","identificatiebagpnd":"503100000018596","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027127)","inonderzoek":"0","lokaalid":"G0503.032e68f046cd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.45000004768372,"min-height-surface":0.0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84974.524 447485.045)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:68)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7955,7956,7957]],[[7958,7959,7957]],[[7958,7960,7959]],[[7958,7961,7962]],[[7960,7958,7963]],[[7963,7958,7962]],[[7964,7965,7957]],[[7957,7966,7958]],[[7957,7965,7966]],[[7956,7964,7957]],[[7967,7968,7955]],[[7955,7968,7956]],[[7969,7967,7957]],[[7957,7967,7955]],[[7970,7969,7959]],[[7959,7969,7957]],[[7971,7970,7960]],[[7960,7970,7959]],[[7972,7971,7963]],[[7963,7971,7960]],[[1295,7972,7962]],[[7962,7972,7963]],[[1109,1295,7961]],[[7961,1295,7962]],[[1245,1109,7958]],[[7958,1109,7961]],[[1139,1245,7966]],[[7966,1245,7958]],[[1131,1139,7965]],[[7965,1139,7966]],[[1280,1131,7964]],[[7964,1131,7965]],[[7968,1280,7956]],[[7956,1280,7964]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be229e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000026300","identificatiebagvbohoogstehuisnummer":"(1:503010000027123)","identificatiebagvbolaagstehuisnummer":"(1:503010000027122)","inonderzoek":"0","lokaalid":"G0503.032e68f046ce49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.73000001907349,"min-height-surface":-0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84979.787 447473.527)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:58-58A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7973,7974,7975]],[[7976,7977,7975]],[[7974,7978,7975]],[[7977,7976,7979]],[[7976,7975,7978]],[[7974,7980,7978]],[[7974,7981,7980]],[[7980,7981,7982]],[[875,874,7973]],[[7973,874,7941]],[[7973,7941,7974]],[[872,875,7975]],[[7975,875,7973]],[[865,872,7977]],[[7977,872,7975]],[[866,865,7979]],[[7979,865,7977]],[[859,866,7976]],[[7976,866,7979]],[[852,859,7978]],[[7978,859,7976]],[[853,852,7980]],[[7980,852,7978]],[[854,853,7982]],[[7982,853,7980]],[[7946,854,7940]],[[7940,854,7981]],[[7981,854,7982]],[[874,7946,7941]],[[7941,7946,7940]],[[7941,7940,7974]],[[7974,7940,7981]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000022863","identificatiebagvbohoogstehuisnummer":"(1:503010000003314)","identificatiebagvbolaagstehuisnummer":"(1:503010000003313)","inonderzoek":"0","lokaalid":"G0503.032e68f046cf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.92000007629395,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85018.008 447530.384)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:54-55)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7805,7808,7983]],[[7805,7984,7985]],[[7805,7983,7984]],[[7986,7983,7808]],[[7987,7988,7989]],[[7989,7990,7991]],[[7989,7988,7992]],[[7991,7990,7993]],[[7993,7990,7994]],[[7989,7992,7990]],[[7988,7995,7992]],[[7992,7995,7996]],[[7995,7997,7998]],[[7998,7999,8000]],[[8000,7999,8001]],[[7995,7988,7997]],[[7998,7997,7999]],[[7988,7983,7997]],[[8002,7986,7808]],[[7997,7983,7986]],[[8002,8003,7986]],[[8003,8002,8004]],[[1606,7807,7805]],[[7805,7807,7808]],[[1346,1606,7985]],[[7985,1606,7805]],[[1341,1346,7984]],[[7984,1346,7985]],[[1342,1341,7983]],[[7983,1341,7984]],[[1650,1342,7988]],[[7988,1342,7983]],[[1338,1650,7987]],[[7987,1650,7988]],[[1339,1338,7989]],[[7989,1338,7987]],[[1358,1339,7991]],[[7991,1339,7989]],[[1622,1358,7993]],[[7993,1358,7991]],[[1353,1622,7994]],[[7994,1622,7993]],[[1372,1353,7990]],[[7990,1353,7994]],[[8005,1372,7992]],[[7992,1372,7990]],[[3033,8005,7996]],[[7996,8005,7992]],[[3034,3033,7995]],[[7995,3033,7996]],[[3031,3034,7998]],[[7998,3034,7995]],[[3029,3031,8000]],[[8000,3031,7998]],[[8006,3029,8001]],[[8001,3029,8000]],[[8007,8006,7999]],[[7999,8006,8001]],[[8008,8007,7997]],[[7997,8007,7999]],[[8009,8008,7986]],[[7986,8008,7997]],[[8010,8009,8003]],[[8003,8009,7986]],[[8011,8010,8004]],[[8004,8010,8003]],[[8012,8011,8002]],[[8002,8011,8004]],[[7807,8012,7808]],[[7808,8012,8002]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000029913","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003308)","inonderzoek":"0","lokaalid":"G0503.032e68f046d049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.53000020980835,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85006.313 447542.303)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:49)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8013,608,8014]],[[8013,8015,8016]],[[608,8013,604]],[[605,604,8017]],[[605,8017,8018]],[[8019,604,8020]],[[604,8019,8017]],[[8021,8019,8022]],[[8019,8020,8022]],[[8016,8015,8023]],[[604,8016,8020]],[[604,8013,8016]],[[8023,8015,8024]],[[1630,8025,8026]],[[8026,8025,8027]],[[8026,8027,8013]],[[8013,8027,8015]],[[1507,1630,8014]],[[8014,1630,8026]],[[8014,8026,8013]],[[607,1507,608]],[[608,1507,8014]],[[602,607,604]],[[604,607,608]],[[603,602,605]],[[605,602,604]],[[8028,603,8018]],[[8018,603,605]],[[8029,8028,8017]],[[8017,8028,8018]],[[8030,8029,8019]],[[8019,8029,8017]],[[8031,8030,8021]],[[8021,8030,8019]],[[8032,8031,8022]],[[8022,8031,8021]],[[8033,8032,8020]],[[8020,8032,8022]],[[8034,8033,8016]],[[8016,8033,8020]],[[8035,8034,8023]],[[8023,8034,8016]],[[8036,8035,8024]],[[8024,8035,8023]],[[8025,8036,8027]],[[8027,8036,8015]],[[8015,8036,8024]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22ad-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000029914","identificatiebagvbohoogstehuisnummer":"(1:503010000003310)","identificatiebagvbolaagstehuisnummer":"(1:503010000003309)","inonderzoek":"0","lokaalid":"G0503.032e68f046d149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.65999984741211,"min-height-surface":-0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85009.378 447538.258)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:50-51)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8037,8038,8027]],[[8026,8039,8027]],[[8040,8037,8027]],[[8041,8040,8027]],[[8039,8041,8027]],[[8042,8039,8026]],[[8042,8043,8044]],[[8039,8042,8044]],[[1539,3018,8045]],[[8045,3018,8046]],[[8045,8046,8042]],[[8042,8046,8043]],[[8047,1539,1630]],[[1630,1539,8026]],[[8026,1539,8045]],[[8026,8045,8042]],[[8048,8047,8025]],[[8025,8047,1630]],[[8025,1630,8027]],[[8027,1630,8026]],[[3017,8048,8038]],[[8038,8048,8025]],[[8038,8025,8027]],[[3028,3017,8037]],[[8037,3017,8038]],[[3025,3028,8040]],[[8040,3028,8037]],[[3026,3025,8041]],[[8041,3025,8040]],[[3027,3026,8039]],[[8039,3026,8041]],[[3024,3027,8044]],[[8044,3027,8039]],[[3018,3024,8046]],[[8046,3024,8043]],[[8043,3024,8044]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027998","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046d249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8049,8050,8051]],[[8049,8051,8052]],[[8053,8054,1810]],[[1810,8054,8055]],[[1810,8055,8056]],[[8056,8055,8057]],[[8056,8057,8049]],[[8049,8057,8050]],[[1828,8053,7863]],[[7863,8053,8052]],[[8052,8053,1810]],[[8052,1810,8056]],[[8052,8056,8049]],[[7867,1828,7864]],[[7864,1828,7863]],[[7864,7863,8051]],[[8051,7863,8052]],[[8054,7867,8055]],[[8055,7867,8057]],[[8057,7867,8050]],[[8050,7867,7864]],[[8050,7864,8051]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000018594","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005335)","inonderzoek":"0","lokaalid":"G0503.032e68f046d349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.8199999332428,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85035.520 447511.425)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:73)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8058,8059,8057]],[[8058,8057,8056]],[[1809,8060,8058]],[[8058,8060,8059]],[[1810,1809,8056]],[[8056,1809,8058]],[[8055,1810,8057]],[[8057,1810,8056]],[[8060,8055,8059]],[[8059,8055,8057]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027997","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046d449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.88000011444092,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8061,8062,8063]],[[8061,8063,8064]],[[1811,7831,7826]],[[7826,7831,7828]],[[7826,7828,8061]],[[8061,7828,8062]],[[1809,1811,8058]],[[8058,1811,8064]],[[8064,1811,7826]],[[8064,7826,8061]],[[8060,1809,8059]],[[8059,1809,8058]],[[8059,8058,8063]],[[8063,8058,8064]],[[7831,8060,7828]],[[7828,8060,8062]],[[8062,8060,8059]],[[8062,8059,8063]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22bd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-48.6)","identificatiebagpnd":"503100000022859","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003317)","inonderzoek":"0","lokaalid":"G0503.032e68f046d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85042.649 447462.716)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:79)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8065,8066,8067]],[[8068,8069,8070]],[[8068,8071,8069]],[[8072,8073,8074]],[[8070,8074,8068]],[[8075,8076,8074]],[[8075,8077,8076]],[[8078,8079,8080]],[[8074,8073,8075]],[[8081,8072,8074]],[[8082,8083,8084]],[[8072,8082,8084]],[[8073,8072,8084]],[[8085,8086,8087]],[[8072,8088,8089]],[[8080,8090,8091]],[[8078,8080,8091]],[[8089,8092,8091]],[[8093,8094,8070]],[[8091,8095,8078]],[[8092,8095,8091]],[[8088,8092,8089]],[[8096,8097,8098]],[[8099,8100,8088]],[[8072,8081,8088]],[[8088,8081,8099]],[[8094,8074,8070]],[[8096,8101,8102]],[[8096,8081,8097]],[[8103,8101,8104]],[[8105,8106,8107]],[[8105,8107,8108]],[[8106,8103,8107]],[[8108,8109,8110]],[[8108,8107,8109]],[[8103,8104,8107]],[[8101,8096,8098]],[[8101,8098,8104]],[[8104,8098,8111]],[[8111,8098,8112]],[[8081,8074,8094]],[[8094,8087,8086]],[[8113,8098,8097]],[[8097,8081,8094]],[[8086,8097,8094]],[[8114,8093,8070]],[[8115,8094,8093]],[[8114,8116,8093]],[[8114,8067,8116]],[[8114,8065,8067]],[[8117,8118,8065]],[[8065,8118,8066]],[[8119,8117,8114]],[[8114,8117,8065]],[[8120,8119,8070]],[[8070,8119,8114]],[[8121,8120,8069]],[[8069,8120,8070]],[[8122,8121,8071]],[[8071,8121,8069]],[[8123,8122,8068]],[[8068,8122,8071]],[[8124,8123,8074]],[[8074,8123,8068]],[[8125,8124,8076]],[[8076,8124,8074]],[[8126,8125,8077]],[[8077,8125,8076]],[[8127,8126,8075]],[[8075,8126,8077]],[[8128,8127,8073]],[[8073,8127,8075]],[[8129,8128,8084]],[[8084,8128,8073]],[[8130,8129,8083]],[[8083,8129,8084]],[[8131,8130,8082]],[[8082,8130,8083]],[[8132,8131,8072]],[[8072,8131,8082]],[[8133,8132,8089]],[[8089,8132,8072]],[[8134,8133,8091]],[[8091,8133,8089]],[[8135,8134,8090]],[[8090,8134,8091]],[[8136,8135,8080]],[[8080,8135,8090]],[[8137,8136,8079]],[[8079,8136,8080]],[[8138,8137,8078]],[[8078,8137,8079]],[[8139,8138,8095]],[[8095,8138,8078]],[[8140,8139,8092]],[[8092,8139,8095]],[[8141,8140,8088]],[[8088,8140,8092]],[[8142,8141,8100]],[[8100,8141,8088]],[[8143,8142,8099]],[[8099,8142,8100]],[[8144,8143,8081]],[[8081,8143,8099]],[[8145,8144,8096]],[[8096,8144,8081]],[[8146,8145,8102]],[[8102,8145,8096]],[[8147,8146,8101]],[[8101,8146,8102]],[[8148,8147,8103]],[[8103,8147,8101]],[[8149,8148,8106]],[[8106,8148,8103]],[[8150,8149,8105]],[[8105,8149,8106]],[[8151,8150,8108]],[[8108,8150,8105]],[[8152,8151,8110]],[[8110,8151,8108]],[[8153,8152,8109]],[[8109,8152,8110]],[[8154,8153,8107]],[[8107,8153,8109]],[[8155,8154,8104]],[[8104,8154,8107]],[[8156,8155,8111]],[[8111,8155,8104]],[[8157,8156,8112]],[[8112,8156,8111]],[[8158,8157,8098]],[[8098,8157,8112]],[[2887,8158,8113]],[[8113,8158,8098]],[[2880,2887,8097]],[[8097,2887,8113]],[[2878,2880,8086]],[[8086,2880,8097]],[[2879,2878,8085]],[[8085,2878,8086]],[[2873,2879,8087]],[[8087,2879,8085]],[[2874,2873,8094]],[[8094,2873,8087]],[[2876,2874,8115]],[[8115,2874,8094]],[[2913,2876,8093]],[[8093,2876,8115]],[[2911,2913,8116]],[[8116,2913,8093]],[[8159,2911,8067]],[[8067,2911,8116]],[[8118,8159,8066]],[[8066,8159,8067]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22c2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018519","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000002511)","inonderzoek":"0","lokaalid":"G0503.032e68f046d649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.73000001907349,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84995.031 447504.834)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:58)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7880,8160,8161]],[[7880,8161,7882]],[[8162,8163,8161]],[[8160,8162,8161]],[[8164,8165,8162]],[[8165,8164,8166]],[[8166,8164,8167]],[[8160,8164,8162]],[[8168,1825,1789]],[[1789,1825,7880]],[[7880,1825,8160]],[[8169,8168,847]],[[847,8168,1789]],[[847,1789,7882]],[[7882,1789,7880]],[[907,8169,8161]],[[8161,8169,847]],[[8161,847,7882]],[[8170,907,8163]],[[8163,907,8161]],[[8171,8170,8162]],[[8162,8170,8163]],[[8172,8171,8165]],[[8165,8171,8162]],[[8173,8172,8166]],[[8166,8172,8165]],[[8174,8173,8167]],[[8167,8173,8166]],[[8175,8174,8164]],[[8164,8174,8167]],[[1825,8175,8160]],[[8160,8175,8164]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22c7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-34)","identificatiebagpnd":"503100000032723","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027126)","inonderzoek":"0","lokaalid":"G0503.032e68f046d749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.65000009536743,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84988.193 447489.302)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:66)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8176,8177,8178]],[[8176,7945,8177]],[[8179,8180,8181]],[[7945,8176,7954]],[[7951,7954,8182]],[[7954,8183,8182]],[[7954,8176,8183]],[[8176,8179,8183]],[[8176,8180,8179]],[[8181,8180,8184]],[[8184,8180,8185]],[[892,891,8176]],[[8176,891,8180]],[[889,892,8178]],[[8178,892,8176]],[[947,889,8177]],[[8177,889,8178]],[[950,947,7945]],[[7945,947,8177]],[[7953,950,7954]],[[7954,950,7945]],[[7950,7953,7951]],[[7951,7953,7954]],[[8186,7950,8182]],[[8182,7950,7951]],[[899,8186,8183]],[[8183,8186,8182]],[[900,899,8179]],[[8179,899,8183]],[[898,900,8181]],[[8181,900,8179]],[[894,898,8184]],[[8184,898,8181]],[[906,894,8185]],[[8185,894,8184]],[[891,906,8180]],[[8180,906,8185]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22cc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000022862","identificatiebagvbohoogstehuisnummer":"(1:503010000003312)","identificatiebagvbolaagstehuisnummer":"(1:503010000003311)","inonderzoek":"0","lokaalid":"G0503.032e68f046d849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.28000020980835,"min-height-surface":-0.340000003576279,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85011.805 447532.804)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:52-53)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8187,8188,8189]],[[8187,8190,8188]],[[8188,8046,8045]],[[8188,8191,8046]],[[8188,8190,8191]],[[8187,8192,8193]],[[8194,8190,8195]],[[8196,8194,8195]],[[8197,8196,8195]],[[8197,8195,8198]],[[8198,8195,8199]],[[8195,8200,8201]],[[8195,8193,8200]],[[8190,8193,8195]],[[8190,8187,8193]],[[8202,8203,8005]],[[8005,8203,3033]],[[8005,3033,7992]],[[7992,3033,7996]],[[7992,7996,8187]],[[8187,7996,8192]],[[8204,8202,1372]],[[1372,8202,8005]],[[1372,8005,7990]],[[7990,8005,7992]],[[7990,7992,8189]],[[8189,7992,8187]],[[1502,8204,8188]],[[8188,8204,1372]],[[8188,1372,7990]],[[8188,7990,8189]],[[8205,1502,1539]],[[1539,1502,8045]],[[8045,1502,8188]],[[8206,8205,3018]],[[3018,8205,1539]],[[3018,1539,8046]],[[8046,1539,8045]],[[3019,8206,8191]],[[8191,8206,3018]],[[8191,3018,8046]],[[3023,3019,8190]],[[8190,3019,8191]],[[3022,3023,8194]],[[8194,3023,8190]],[[3021,3022,8196]],[[8196,3022,8194]],[[3020,3021,8197]],[[8197,3021,8196]],[[3016,3020,8198]],[[8198,3020,8197]],[[8207,3016,8199]],[[8199,3016,8198]],[[8208,8207,8195]],[[8195,8207,8199]],[[3030,8208,8201]],[[8201,8208,8195]],[[3032,3030,8200]],[[8200,3030,8201]],[[3035,3032,8193]],[[8193,3032,8200]],[[8203,3035,3033]],[[3033,3035,7996]],[[7996,3035,8192]],[[8192,3035,8193]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49e1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000018595","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027128)","inonderzoek":"0","lokaalid":"G0503.032e68f046d949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.98000001907349,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84961.012 447480.098)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:70)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8209,8210,8211]],[[8209,8212,8213]],[[8210,8209,8214]],[[8215,8214,8216]],[[8216,8214,8217]],[[8214,8213,8217]],[[8214,8209,8213]],[[8218,8219,8209]],[[8209,8219,8212]],[[8220,8218,8211]],[[8211,8218,8209]],[[8221,8220,8222]],[[8222,8220,8210]],[[8210,8220,8211]],[[8223,8221,8224]],[[8224,8221,8222]],[[8224,8222,8214]],[[8214,8222,8210]],[[8225,8223,8226]],[[8226,8223,8224]],[[8226,8224,8215]],[[8215,8224,8214]],[[1143,8225,8227]],[[8227,8225,8226]],[[8227,8226,8216]],[[8216,8226,8215]],[[1144,1143,8217]],[[8217,1143,8227]],[[8217,8227,8216]],[[1247,1144,8213]],[[8213,1144,8217]],[[8219,1247,8212]],[[8212,1247,8213]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49e6-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000018591","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027129)","inonderzoek":"0","lokaalid":"G0503.032e68f046da49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84954.601 447482.214)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:72)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8224,8226,424]],[[8224,424,8222]],[[8222,424,427]],[[424,8226,8228]],[[424,434,425]],[[424,8228,434]],[[8226,8227,8228]],[[8223,8225,8224]],[[8224,8225,8226]],[[8221,8223,8222]],[[8222,8223,8224]],[[8229,8221,426]],[[426,8221,427]],[[427,8221,8222]],[[8230,8229,422]],[[422,8229,426]],[[422,426,424]],[[424,426,427]],[[8231,8230,423]],[[423,8230,422]],[[423,422,425]],[[425,422,424]],[[8232,8231,433]],[[433,8231,423]],[[433,423,434]],[[434,423,425]],[[1149,8232,8228]],[[8228,8232,433]],[[8228,433,434]],[[1143,1149,8227]],[[8227,1149,8228]],[[8225,1143,8226]],[[8226,1143,8227]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49eb-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000028000","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003303)","inonderzoek":"0","lokaalid":"G0503.032e68f046e249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.82999992370605,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84984.506 447563.460)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:43)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8233,8234,8235]],[[8233,8236,8234]],[[8234,8236,8237]],[[8237,8236,8238]],[[8236,8239,8240]],[[8241,8233,8242]],[[8240,8239,8243]],[[8236,8233,8239]],[[8244,8241,8242]],[[8239,8233,8241]],[[676,677,660]],[[660,677,664]],[[660,664,8233]],[[8233,664,8242]],[[675,676,661]],[[661,676,660]],[[661,660,8235]],[[8235,660,8233]],[[1687,675,8234]],[[8234,675,661]],[[8234,661,8235]],[[1420,1687,8237]],[[8237,1687,8234]],[[1416,1420,8245]],[[8245,1420,8238]],[[8238,1420,8237]],[[8246,1416,8247]],[[8247,1416,8245]],[[8247,8245,8236]],[[8236,8245,8238]],[[8248,8246,8249]],[[8249,8246,8247]],[[8249,8247,8240]],[[8240,8247,8236]],[[8250,8248,8243]],[[8243,8248,8249]],[[8243,8249,8240]],[[8251,8250,8239]],[[8239,8250,8243]],[[8252,8251,8241]],[[8241,8251,8239]],[[8253,8252,8244]],[[8244,8252,8241]],[[677,8253,664]],[[664,8253,8242]],[[8242,8253,8244]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49f0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000017045","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003302)","inonderzoek":"0","lokaalid":"G0503.032e68f046e349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.76999998092651,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84980.310 447567.401)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:42)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8247,8254,8245]],[[8245,8254,8255]],[[8256,8247,8249]],[[8257,8254,8258]],[[8257,8258,8259]],[[8258,8254,8260]],[[8258,8261,8262]],[[8258,8263,8261]],[[8261,8263,8264]],[[8254,8247,8260]],[[8265,8260,8256]],[[8263,8258,8260]],[[8266,8256,8249]],[[8260,8247,8256]],[[8267,8268,8246]],[[8246,8268,8248]],[[8246,8248,8247]],[[8247,8248,8249]],[[8269,8267,1416]],[[1416,8267,8246]],[[1416,8246,8245]],[[8245,8246,8247]],[[1683,8269,8255]],[[8255,8269,1416]],[[8255,1416,8245]],[[8270,1683,8254]],[[8254,1683,8255]],[[8271,8270,8257]],[[8257,8270,8254]],[[8272,8271,8259]],[[8259,8271,8257]],[[8273,8272,8258]],[[8258,8272,8259]],[[8274,8273,8262]],[[8262,8273,8258]],[[8275,8274,8261]],[[8261,8274,8262]],[[8276,8275,8264]],[[8264,8275,8261]],[[8277,8276,8263]],[[8263,8276,8264]],[[8278,8277,8260]],[[8260,8277,8263]],[[8279,8278,8265]],[[8265,8278,8260]],[[8280,8279,8256]],[[8256,8279,8265]],[[8281,8280,8266]],[[8266,8280,8256]],[[8268,8281,8248]],[[8248,8281,8249]],[[8249,8281,8266]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49f5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026309","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003301)","inonderzoek":"0","lokaalid":"G0503.032e68f046e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.76999998092651,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84967.823 447579.382)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:41)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8282,8283,8284]],[[8285,8286,8287]],[[8286,8288,8287]],[[8289,8290,8287]],[[8288,8289,8287]],[[8291,8285,8287]],[[8292,8293,8285]],[[8294,8295,8285]],[[8296,8297,8295]],[[8298,8299,8300]],[[8299,8301,8300]],[[8302,8303,8304]],[[8300,8301,8304]],[[8302,8305,8303]],[[8302,8306,8305]],[[8301,8302,8304]],[[8296,8298,8300]],[[8295,8294,8296]],[[8291,8284,8307]],[[8296,8308,8298]],[[8296,8294,8308]],[[8294,8285,8293]],[[8284,8309,8307]],[[8291,8307,8285]],[[8310,8293,8292]],[[8285,8307,8292]],[[8284,8283,8309]],[[8311,8312,8282]],[[8282,8312,8283]],[[8313,8311,8284]],[[8284,8311,8282]],[[8314,8313,8291]],[[8291,8313,8284]],[[8315,8314,8287]],[[8287,8314,8291]],[[8316,8315,8290]],[[8290,8315,8287]],[[8317,8316,8289]],[[8289,8316,8290]],[[8318,8317,8288]],[[8288,8317,8289]],[[2798,8318,8286]],[[8286,8318,8288]],[[2794,2798,8285]],[[8285,2798,8286]],[[2763,2794,8295]],[[8295,2794,8285]],[[2787,2763,8297]],[[8297,2763,8295]],[[2788,2787,8296]],[[8296,2787,8297]],[[2789,2788,8300]],[[8300,2788,8296]],[[2799,2789,8304]],[[8304,2789,8300]],[[8319,2799,8303]],[[8303,2799,8304]],[[8320,8319,8305]],[[8305,8319,8303]],[[8321,8320,8306]],[[8306,8320,8305]],[[8322,8321,8302]],[[8302,8321,8306]],[[8323,8322,8301]],[[8301,8322,8302]],[[8324,8323,8325]],[[8325,8323,8326]],[[8326,8323,8299]],[[8299,8323,8301]],[[8327,8324,8328]],[[8328,8324,8325]],[[8328,8325,8329]],[[8329,8325,8326]],[[8329,8326,8298]],[[8298,8326,8299]],[[8330,8327,8308]],[[8308,8327,8328]],[[8308,8328,8329]],[[8308,8329,8298]],[[8331,8330,8294]],[[8294,8330,8308]],[[8332,8331,8293]],[[8293,8331,8294]],[[8333,8332,8310]],[[8310,8332,8293]],[[8334,8333,8292]],[[8292,8333,8310]],[[8335,8334,8307]],[[8307,8334,8292]],[[8336,8335,8309]],[[8309,8335,8307]],[[8312,8336,8283]],[[8283,8336,8309]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49fa-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026310","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003300)","inonderzoek":"0","lokaalid":"G0503.032e68f046e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.04999995231628,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84965.207 447582.006)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:40)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8337,8338,8339]],[[8337,8339,8340]],[[8339,8341,8342]],[[8343,8344,8341]],[[8339,8343,8341]],[[8344,8343,8345]],[[8339,8346,8343]],[[8339,8338,8346]],[[8346,8338,8347]],[[8348,8349,8331]],[[8331,8349,8332]],[[8331,8332,8294]],[[8294,8332,8293]],[[8294,8293,8337]],[[8337,8293,8338]],[[8350,8348,8340]],[[8340,8348,8331]],[[8340,8331,8294]],[[8340,8294,8337]],[[8351,8350,8339]],[[8339,8350,8340]],[[8352,8351,8342]],[[8342,8351,8339]],[[746,8352,709]],[[709,8352,8341]],[[8341,8352,8342]],[[747,746,710]],[[710,746,709]],[[710,709,8344]],[[8344,709,8341]],[[8353,747,8345]],[[8345,747,710]],[[8345,710,8344]],[[8354,8353,8343]],[[8343,8353,8345]],[[8355,8354,8346]],[[8346,8354,8343]],[[8356,8355,8347]],[[8347,8355,8346]],[[8349,8356,8332]],[[8332,8356,8293]],[[8293,8356,8338]],[[8338,8356,8347]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cd7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000022785","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0562849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.4300000667572,"min-height-surface":0.259999990463257,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8357,8358,8359]],[[8357,8359,8360]],[[8358,8361,8359]],[[1396,1657,8362]],[[8362,1657,8357]],[[8357,1657,8363]],[[8357,8363,8358]],[[1398,1396,8364]],[[8364,1396,8362]],[[8364,8362,8360]],[[8360,8362,8357]],[[1393,1398,8359]],[[8359,1398,8364]],[[8359,8364,8360]],[[1388,1393,8365]],[[8365,1393,8361]],[[8361,1393,8359]],[[1657,1388,8363]],[[8363,1388,8365]],[[8363,8365,8358]],[[8358,8365,8361]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cdc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-40.2)","identificatiebagpnd":"503100000022784","identificatiebagvbohoogstehuisnummer":"(1:503010000027120)","identificatiebagvbolaagstehuisnummer":"(1:503010000027118)","inonderzoek":"0","lokaalid":"G0503.032e68f0562949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.42000007629395,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84963.917 447554.114)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:51-55)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8366,8367,8368]],[[8369,8370,8371]],[[8365,8369,8371]],[[8363,8369,8365]],[[8372,8363,8373]],[[8363,8374,8369]],[[8363,8372,8374]],[[8374,8375,8376]],[[8374,8372,8375]],[[8363,8367,8366]],[[8368,8367,8377]],[[8373,8378,8379]],[[8373,8366,8378]],[[8373,8363,8366]],[[8368,8377,8380]],[[8381,8368,8380]],[[1501,1500,8367]],[[8367,1500,8377]],[[8382,1501,1657]],[[1657,1501,8363]],[[8363,1501,8367]],[[8383,8382,1388]],[[1388,8382,1657]],[[1388,1657,8365]],[[8365,1657,8363]],[[1389,8383,8371]],[[8371,8383,1388]],[[8371,1388,8365]],[[8384,1389,8370]],[[8370,1389,8371]],[[8385,8384,8369]],[[8369,8384,8370]],[[8386,8385,8374]],[[8374,8385,8369]],[[8387,8386,8376]],[[8376,8386,8374]],[[8388,8387,8375]],[[8375,8387,8376]],[[8389,8388,8372]],[[8372,8388,8375]],[[8390,8389,8373]],[[8373,8389,8372]],[[8391,8390,8379]],[[8379,8390,8373]],[[8392,8391,8378]],[[8378,8391,8379]],[[8393,8392,8366]],[[8366,8392,8378]],[[8394,8393,8368]],[[8368,8393,8366]],[[8395,8394,8381]],[[8381,8394,8368]],[[8396,8395,8380]],[[8380,8395,8381]],[[1500,8396,8377]],[[8377,8396,8380]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cdf-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026303","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0562a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.330000013113022,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8326,8329,8397]],[[8329,8398,8397]],[[8398,8329,8399]],[[8398,8399,8400]],[[8329,8401,8399]],[[8325,8328,8326]],[[8326,8328,8329]],[[8402,8325,8397]],[[8397,8325,8326]],[[1097,8402,8398]],[[8398,8402,8397]],[[1095,1097,8400]],[[8400,1097,8398]],[[8403,1095,8399]],[[8399,1095,8400]],[[8404,8403,8401]],[[8401,8403,8399]],[[8328,8404,8329]],[[8329,8404,8401]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18906-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017316","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":0.75,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8405,8406,8407]],[[8405,8407,8408]],[[8408,8407,8409]],[[8406,8410,8407]],[[8406,8411,8410]],[[1151,1150,8405]],[[8405,1150,8406]],[[1178,1151,8408]],[[8408,1151,8405]],[[1172,1178,8409]],[[8409,1178,8408]],[[1160,1172,8407]],[[8407,1172,8409]],[[1161,1160,8410]],[[8410,1160,8407]],[[8412,1161,8411]],[[8411,1161,8410]],[[1150,8412,8406]],[[8406,8412,8411]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1890f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017220","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.40000009536743,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8413,8414,8415]],[[8413,8415,8416]],[[8417,1942,8413]],[[8413,1942,8414]],[[2214,8417,8416]],[[8416,8417,8413]],[[1941,2214,8415]],[[8415,2214,8416]],[[1942,1941,8414]],[[8414,1941,8415]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18912-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017502","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.340000003576279,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8418,8419,8420]],[[8419,8421,8420]],[[8419,8422,8421]],[[8421,8422,8423]],[[8424,8425,8418]],[[8418,8425,8419]],[[8426,8424,8420]],[[8420,8424,8418]],[[8427,8426,8421]],[[8421,8426,8420]],[[8428,8427,8423]],[[8423,8427,8421]],[[8429,8428,8422]],[[8422,8428,8423]],[[8425,8429,8419]],[[8419,8429,8422]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18915-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026315","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.83999991416931,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8430,8431,8432]],[[8430,8432,8433]],[[8434,8435,8430]],[[8430,8435,8431]],[[8436,8434,8433]],[[8433,8434,8430]],[[8437,8436,8432]],[[8432,8436,8433]],[[8435,8437,8431]],[[8431,8437,8432]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18918-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017416","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8438,8439,8440]],[[8438,8440,8441]],[[8442,8443,8438]],[[8438,8443,8439]],[[8444,8442,8441]],[[8441,8442,8438]],[[8445,8444,8440]],[[8440,8444,8441]],[[8443,8445,8439]],[[8439,8445,8440]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b041-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000027890","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050769)","inonderzoek":"0","lokaalid":"G0503.032e68f0752449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.409999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84922.364 447574.977)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48B)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8446,8447,8448]],[[8447,8449,8448]],[[2477,2303,8446]],[[8446,2303,8447]],[[8450,2477,2476]],[[2476,2477,8448]],[[8448,2477,8446]],[[8451,8450,2487]],[[2487,8450,2476]],[[2487,2476,8449]],[[8449,2476,8448]],[[2303,8451,8447]],[[8447,8451,2487]],[[8447,2487,8449]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b046-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000027892","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050770)","inonderzoek":"0","lokaalid":"G0503.032e68f0752649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.409999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84923.983 447577.736)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48C)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8452,8453,8454]],[[8453,8455,8454]],[[2478,2301,8452]],[[8452,2301,8453]],[[2477,2478,8446]],[[8446,2478,8454]],[[8454,2478,8452]],[[2303,2477,8447]],[[8447,2477,8446]],[[8447,8446,8455]],[[8455,8446,8454]],[[2301,2303,8453]],[[8453,2303,8447]],[[8453,8447,8455]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b04b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017418","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050771)","inonderzoek":"0","lokaalid":"G0503.032e68f0752749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84927.347 447578.414)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48D)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8456,8457,8452]],[[8457,8453,8452]],[[2468,2510,8458]],[[8458,2510,8459]],[[8458,8459,8456]],[[8456,8459,8457]],[[8460,2468,2478]],[[2478,2468,8452]],[[8452,2468,8458]],[[8452,8458,8456]],[[8461,8460,2301]],[[2301,8460,2478]],[[2301,2478,8453]],[[8453,2478,8452]],[[2510,8461,8459]],[[8459,8461,8457]],[[8457,8461,2301]],[[8457,2301,8453]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b050-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.4)","identificatiebagpnd":"503100000017415","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050774)","inonderzoek":"0","lokaalid":"G0503.032e68f0752849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.90000009536743,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84931.244 447585.027)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48G)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8462,8463,8464]],[[8463,7497,8464]],[[8464,7497,7496]],[[2484,2485,8462]],[[8462,2485,8463]],[[2261,2484,8464]],[[8464,2484,8462]],[[8465,2261,2262]],[[2262,2261,7496]],[[7496,2261,8464]],[[8466,8465,2517]],[[2517,8465,2262]],[[2517,2262,7497]],[[7497,2262,7496]],[[2485,8466,8463]],[[8463,8466,2517]],[[8463,2517,7497]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b055-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017501","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050772)","inonderzoek":"0","lokaalid":"G0503.032e68f0752949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.389999985694885,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84929.127 447581.439)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48E)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8467,8468,8458]],[[8468,8459,8458]],[[8469,8470,2467]],[[2467,8470,2509]],[[2467,2509,8471]],[[8471,2509,8472]],[[8471,8472,8467]],[[8467,8472,8468]],[[8473,8469,2468]],[[2468,8469,8458]],[[8458,8469,2467]],[[8458,2467,8471]],[[8458,8471,8467]],[[8474,8473,2510]],[[2510,8473,2468]],[[2510,2468,8459]],[[8459,2468,8458]],[[8470,8474,2509]],[[2509,8474,8472]],[[8472,8474,8468]],[[8468,8474,2510]],[[8468,2510,8459]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b05a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017320","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050773)","inonderzoek":"0","lokaalid":"G0503.032e68f0752a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.82999992370605,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84932.514 447581.966)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48F)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8475,8472,8471]],[[8475,8471,8476]],[[2483,2509,8475]],[[8475,2509,8472]],[[2481,2483,8476]],[[8476,2483,8475]],[[2467,2481,8471]],[[8471,2481,8476]],[[2509,2467,8472]],[[8472,2467,8471]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b05d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017405","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.60000002384186,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8477,8478,8479]],[[8478,8480,8479]],[[8481,8482,8477]],[[8477,8482,8478]],[[8483,8481,8479]],[[8479,8481,8477]],[[8484,8483,8480]],[[8480,8483,8479]],[[8482,8484,8478]],[[8478,8484,8480]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d770-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017417","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.02999997138977,"min-height-surface":0.270000010728836,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8485,8486,8487]],[[8485,8487,8488]],[[8486,8489,8487]],[[8490,8491,8485]],[[8485,8491,8486]],[[8492,8490,8488]],[[8488,8490,8485]],[[8493,8492,8487]],[[8487,8492,8488]],[[8494,8493,8489]],[[8489,8493,8487]],[[8491,8494,8486]],[[8486,8494,8489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d773-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027891","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.49000000953674,"min-height-surface":0.430000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8495,8496,8497]],[[8495,8497,8498]],[[8497,8496,8499]],[[8497,8499,8500]],[[2273,2749,8495]],[[8495,2749,8496]],[[2270,2273,8498]],[[8498,2273,8495]],[[2271,2270,8497]],[[8497,2270,8498]],[[2269,2271,8500]],[[8500,2271,8497]],[[2267,2269,8499]],[[8499,2269,8500]],[[2749,2267,8496]],[[8496,2267,8499]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d778-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017414","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050768)","inonderzoek":"0","lokaalid":"G0503.032e68f0752e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.419999986886978,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84919.038 447574.260)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8448,8449,8501]],[[8449,8502,8501]],[[2476,2487,8448]],[[8448,2487,8449]],[[2268,2476,8501]],[[8501,2476,8448]],[[2264,2268,8502]],[[8502,2268,8501]],[[2487,2264,8449]],[[8449,2264,8502]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d795-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000022861","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.40000009536743,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8503,8504,8364]],[[8504,8362,8364]],[[1401,1598,8503]],[[8503,1598,8504]],[[8505,1401,1398]],[[1398,1401,8364]],[[8364,1401,8503]],[[8506,8505,1396]],[[1396,8505,1398]],[[1396,1398,8362]],[[8362,1398,8364]],[[1598,8506,8504]],[[8504,8506,1396]],[[8504,1396,8362]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1fea8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018599","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8507,8508,8509]],[[8508,8510,8509]],[[1478,1465,8507]],[[8507,1465,8508]],[[1455,1478,8509]],[[8509,1478,8507]],[[1512,1455,8510]],[[8510,1455,8509]],[[1465,1512,8508]],[[8508,1512,8510]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feab-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018606","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.30999994277954,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8511,8512,8513]],[[8512,8514,8513]],[[1451,1713,8511]],[[8511,1713,8512]],[[1324,1451,8513]],[[8513,1451,8511]],[[1667,1324,8514]],[[8514,1324,8513]],[[1713,1667,8512]],[[8512,1667,8514]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feae-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018588","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8515,8516,8517]],[[8516,8518,8517]],[[1438,1452,8515]],[[8515,1452,8516]],[[1468,1438,8517]],[[8517,1438,8515]],[[1402,1468,8518]],[[8518,1468,8517]],[[1452,1402,8516]],[[8516,1402,8518]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018603","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.78999996185303,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8519,8520,8521]],[[8519,8521,8522]],[[8522,8521,8523]],[[8520,8524,8521]],[[8520,8525,8524]],[[1225,1229,8519]],[[8519,1229,8520]],[[1226,1225,8522]],[[8522,1225,8519]],[[1206,1226,8523]],[[8523,1226,8522]],[[1216,1206,8521]],[[8521,1206,8523]],[[1217,1216,8524]],[[8524,1216,8521]],[[8526,1217,8525]],[[8525,1217,8524]],[[1229,8526,8520]],[[8520,8526,8525]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb4-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018604","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.21000003814697,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8527,8528,8529]],[[8527,8529,8530]],[[8530,8529,8531]],[[8528,8532,8529]],[[8528,8533,8532]],[[1122,1121,8527]],[[8527,1121,8528]],[[1133,1122,8530]],[[8530,1122,8527]],[[1115,1133,8531]],[[8531,1133,8530]],[[1227,1115,8529]],[[8529,1115,8531]],[[1230,1227,8532]],[[8532,1227,8529]],[[8534,1230,8533]],[[8533,1230,8532]],[[1121,8534,8528]],[[8528,8534,8533]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018597","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075ea49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.35999989509583,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8535,8536,8537]],[[8536,8538,8537]],[[8537,8538,8539]],[[8536,8540,8538]],[[8538,8540,8541]],[[8536,8542,8540]],[[8543,8544,8535]],[[8535,8544,8536]],[[1315,8543,8537]],[[8537,8543,8535]],[[1126,1315,8539]],[[8539,1315,8537]],[[1125,1126,8538]],[[8538,1126,8539]],[[1124,1125,8541]],[[8541,1125,8538]],[[8545,1124,8540]],[[8540,1124,8541]],[[8546,8545,8542]],[[8542,8545,8540]],[[8544,8546,8536]],[[8536,8546,8542]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feba-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018517","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075eb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":0.75,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8547,8548,8549]],[[8547,8549,8550]],[[8550,8549,8551]],[[8548,8552,8549]],[[8548,8553,8552]],[[1213,1212,8547]],[[8547,1212,8548]],[[1214,1213,8550]],[[8550,1213,8547]],[[1201,1214,8551]],[[8551,1214,8550]],[[1204,1201,8549]],[[8549,1201,8551]],[[1202,1204,8552]],[[8552,1204,8549]],[[8554,1202,8553]],[[8553,1202,8552]],[[1212,8554,8548]],[[8548,8554,8553]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1febd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018609","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075ec49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.34999990463257,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8555,8556,8557]],[[8555,8557,8558]],[[8558,8557,8559]],[[8556,8560,8557]],[[8556,8561,8560]],[[1199,1198,8555]],[[8555,1198,8556]],[[1294,1199,8558]],[[8558,1199,8555]],[[1186,1294,8559]],[[8559,1294,8558]],[[1187,1186,8557]],[[8557,1186,8559]],[[1188,1187,8560]],[[8560,1187,8557]],[[8562,1188,8561]],[[8561,1188,8560]],[[1198,8562,8556]],[[8556,8562,8561]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b41373904-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8563,1898,1900]],[[2886,8564,8565]],[[8566,8567,8568]],[[8567,8569,8570]],[[8571,8572,8153]],[[8572,8573,8574]],[[8575,8571,8576]],[[8577,8578,8579]],[[8580,8581,8565]],[[8570,1915,8582]],[[8583,8579,8584]],[[8574,8573,8578]],[[8585,8586,8587]],[[8588,8589,8590]],[[8591,8592,8586]],[[1924,123,8593]],[[1928,1924,8590]],[[1927,1928,8590]],[[1925,8590,1926]],[[1926,8590,1930]],[[1930,8582,1922]],[[8594,8569,8567]],[[1922,8582,1921]],[[8570,8155,8567]],[[1920,1921,8582]],[[1918,1920,8582]],[[1919,1918,8582]],[[1915,1919,8582]],[[1929,8570,1908]],[[8582,8590,8595]],[[1915,8570,1913]],[[8570,1911,1914]],[[1929,1910,8570]],[[8570,8582,8596]],[[1909,1908,8570]],[[1906,1909,8570]],[[8570,8597,8154]],[[1904,1905,8570]],[[1903,1904,8570]],[[1901,1903,8570]],[[1900,1901,8598]],[[8563,1900,8598]],[[8563,1899,1898]],[[8563,1897,1899]],[[8563,1896,1897]],[[8563,1895,1896]],[[1894,1890,8563]],[[1893,1894,8563]],[[1891,1893,8563]],[[8599,8600,8598]],[[8601,8567,8566]],[[8602,8600,120]],[[120,8600,119]],[[8599,8569,119]],[[8598,1901,8570]],[[8601,8594,8567]],[[8603,8566,8565]],[[8604,8605,2894]],[[8606,8607,8608]],[[8580,8565,8564]],[[8564,8609,8580]],[[8564,2886,2963]],[[8610,8611,8612]],[[8607,2894,8605]],[[193,8613,192]],[[192,8613,8610]],[[8614,118,8580]],[[193,8615,8613]],[[8609,8564,8616]],[[8154,8571,8153]],[[8597,8617,8573]],[[8615,8614,8606]],[[193,118,8614]],[[8618,8619,8581]],[[8618,8566,8603]],[[8578,8620,8584]],[[8621,8622,8583]],[[1925,1927,8590]],[[8623,8622,8621]],[[8586,8592,123]],[[8624,8623,8621]],[[8613,8615,8606]],[[193,8614,8615]],[[8610,8625,192]],[[8604,2894,192]],[[1930,8590,8582]],[[8595,8626,8627]],[[8154,8576,8571]],[[8617,8596,8628]],[[8614,8580,8606]],[[8581,8619,8565]],[[1924,8593,8590]],[[123,8592,8593]],[[8629,8630,8583]],[[8585,8591,8586]],[[8631,8583,8584]],[[8622,8579,8583]],[[8618,8601,8566]],[[117,8594,8601]],[[8620,8617,8584]],[[8632,8630,8629]],[[8579,8578,8584]],[[1911,8570,1910]],[[8633,8577,8579]],[[8572,8576,8573]],[[8634,8605,8604]],[[8608,8607,8605]],[[8625,8604,192]],[[8635,8611,8634]],[[8593,8588,8590]],[[8593,8592,8588]],[[124,8586,123]],[[8587,8623,8624]],[[8636,8596,8582]],[[8582,8595,8627]],[[8637,8621,8583]],[[8637,8624,8621]],[[8573,8617,8620]],[[8576,8154,8597]],[[8590,8589,8595]],[[8588,8592,8638]],[[8578,8573,8620]],[[8576,8597,8573]],[[8635,8634,8604]],[[8611,8606,8608]],[[117,8618,118]],[[117,8601,8618]],[[1914,1913,8570]],[[8596,8617,8597]],[[8577,8574,8578]],[[8639,8572,8574]],[[8585,8624,8637]],[[8587,124,8623]],[[118,8581,8580]],[[118,8618,8581]],[[8600,8599,119]],[[8598,8569,8599]],[[8155,8570,8154]],[[8582,8627,8636]],[[8598,8570,8569]],[[1905,1906,8570]],[[8570,8596,8597]],[[8640,8626,8629]],[[8617,8631,8584]],[[8629,8583,8631]],[[8640,8628,8636]],[[8631,8617,8628]],[[1892,8602,120]],[[1892,8600,8602]],[[8625,8612,8604]],[[8625,8610,8612]],[[8583,8630,8637]],[[8638,8589,8588]],[[8632,8638,8591]],[[8595,8589,8638]],[[8632,8591,8630]],[[8638,8592,8591]],[[8596,8636,8628]],[[8627,8626,8636]],[[8626,8640,8636]],[[8631,8628,8640]],[[8640,8629,8631]],[[8626,8632,8629]],[[8585,8587,8624]],[[8586,124,8587]],[[8612,8635,8604]],[[8612,8611,8635]],[[8641,8616,8564]],[[8609,8606,8580]],[[8641,8609,8616]],[[8607,8606,8609]],[[8607,8641,8564]],[[8607,8609,8641]],[[1891,8563,8598]],[[1890,1895,8563]],[[8572,8575,8576]],[[8572,8571,8575]],[[8619,8603,8565]],[[8619,8618,8603]],[[8634,8608,8605]],[[8634,8611,8608]],[[8639,8577,8633]],[[8639,8574,8577]],[[8630,8585,8637]],[[8630,8591,8585]],[[8595,8632,8626]],[[8595,8638,8632]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4137fbfc-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.a7f64e78a3f34c07a6005756fd037ca1","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8642,8643,8644]],[[8642,8644,8645]],[[8644,8643,8646]],[[8646,8647,8648]],[[8646,8643,8649]],[[8646,8649,8647]],[[8647,8649,8650]],[[8649,8643,8651]],[[8651,8652,8653]],[[8651,8643,8654]],[[8651,8654,8652]],[[8643,8655,8654]],[[8655,8656,8657]],[[8655,8643,8658]],[[8657,8656,8659]],[[8656,8655,8658]],[[8660,8661,8662]],[[8661,8663,8662]],[[8661,8664,8665]],[[8661,8665,8663]],[[8665,8664,8658]],[[8665,8658,8666]],[[8664,8656,8658]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4138231e-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef704049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8667,8668,8669]],[[8670,7728,7729]],[[8671,8672,8673]],[[8674,8675,2249]],[[8676,8677,8678]],[[8679,6972,6986]],[[8680,8681,6975]],[[8682,8683,6908]],[[8684,6910,8685]],[[7043,7044,8683]],[[8683,7044,6908]],[[8686,7042,2214]],[[8687,6861,8688]],[[8689,6860,8690]],[[8690,6860,8691]],[[8692,8690,8691]],[[8693,8694,8691]],[[8695,6860,8687]],[[8696,8697,8694]],[[8698,8694,8697]],[[8699,8697,8696]],[[6950,8696,8700]],[[8701,8687,2214]],[[8702,6908,6910]],[[2214,8703,8417]],[[8702,6910,8684]],[[8703,8682,8702]],[[8704,8705,8702]],[[8706,8707,8708]],[[8681,8680,8709]],[[8710,8707,8711]],[[8712,8707,2252]],[[8712,2252,2253]],[[8713,8680,6975]],[[2250,2249,8714]],[[8714,2249,8715]],[[8674,2249,2252]],[[8716,8717,8715]],[[8671,6732,6733]],[[8718,6733,465]],[[7729,8719,8670]],[[8668,8667,8720]],[[8721,8493,8494]],[[8722,8720,8721]],[[8723,8724,8725]],[[8726,8727,8728]],[[7727,8728,7737]],[[7737,8728,7736]],[[7736,8728,2275]],[[2275,8728,2749]],[[8443,8729,8445]],[[8730,2480,8731]],[[8731,2480,2479]],[[2634,2482,8732]],[[8733,2634,8734]],[[2634,8732,8734]],[[2482,2480,8732]],[[8735,8731,2479]],[[8730,8732,2480]],[[8736,8730,8737]],[[8738,8739,1101]],[[8740,560,556]],[[8741,1105,8742]],[[8743,8744,8745]],[[1101,8746,1105]],[[1101,8739,8747]],[[8742,8746,560]],[[8748,2475,2267]],[[1101,8747,8746]],[[8739,8736,8737]],[[8737,8730,8731]],[[8735,2466,2475]],[[2466,8735,2479]],[[8747,8739,8737]],[[2824,2749,8728]],[[2821,8491,8437]],[[8749,8494,8491]],[[8728,8727,2818]],[[2749,2824,8750]],[[8443,8737,8729]],[[2818,8724,8723]],[[8727,8724,2818]],[[8443,8747,8737]],[[2818,2824,8728]],[[8751,2821,8437]],[[8749,2820,8494]],[[8752,8723,8725]],[[8729,8435,8445]],[[8729,2821,8435]],[[2818,8753,2820]],[[2749,8750,2267]],[[8753,2818,8723]],[[8750,8735,2475]],[[8719,8752,8725]],[[8754,366,8675]],[[465,8669,8718]],[[8752,8755,8756]],[[2252,8707,8674]],[[8709,8757,8681]],[[8758,8759,8680]],[[8760,8709,8761]],[[8762,8715,8675]],[[8715,2249,8675]],[[8763,8764,8760]],[[8719,8765,8766]],[[8678,8675,8761]],[[8756,8755,8677]],[[8767,8768,8754]],[[8768,8769,8770]],[[8675,8678,8754]],[[8771,6986,8772]],[[8755,8773,8767]],[[8770,8774,8768]],[[8775,8670,8719]],[[8775,8776,8670]],[[6972,8713,6975]],[[6972,8777,8758]],[[8685,8778,8709]],[[8778,8681,8757]],[[8779,8780,8709]],[[8780,8684,8685]],[[2820,8722,8494]],[[8720,8493,8721]],[[8772,8676,8771]],[[8680,8761,8709]],[[6732,8772,6986]],[[6732,8673,8772]],[[6986,8771,8679]],[[8678,8761,8759]],[[8679,8777,6972]],[[8679,8759,8777]],[[8755,8767,8754]],[[8766,8752,8719]],[[8695,8687,8701]],[[6860,6861,8687]],[[8687,8688,2214]],[[6861,7042,8686]],[[8669,8668,8718]],[[8781,6733,8718]],[[8720,8667,466]],[[2820,8753,8668]],[[8782,8680,8713]],[[8759,8761,8680]],[[8755,8766,8773]],[[8783,8774,8770]],[[8783,8766,8765]],[[8755,8752,8766]],[[8754,8768,366]],[[8784,8769,8768]],[[8704,8702,8780]],[[8702,8682,6908]],[[8781,8672,8671]],[[8672,8676,8673]],[[2177,8701,2214]],[[2177,8695,8701]],[[8756,8672,8718]],[[8672,8677,8676]],[[8785,8783,8769]],[[8774,366,8768]],[[366,8786,8762]],[[8717,8714,8715]],[[367,8786,366]],[[367,8717,8716]],[[8725,8775,8719]],[[8776,7728,8670]],[[8783,8773,8766]],[[8769,8784,8773]],[[8773,8785,8769]],[[8765,8719,8783]],[[7042,8683,2214]],[[7042,7043,8683]],[[8779,8787,8708]],[[6910,8778,8685]],[[8787,8788,8708]],[[8789,8674,8707]],[[8779,8790,8787]],[[8760,8764,8790]],[[8790,8764,8788]],[[8760,8674,8789]],[[8718,8672,8781]],[[8756,8677,8672]],[[6732,8671,8673]],[[6733,8781,8671]],[[8725,8776,8775]],[[8725,7728,8776]],[[6972,8758,8713]],[[8777,8759,8758]],[[8709,8780,8685]],[[8708,8791,8780]],[[8791,8704,8780]],[[8792,8705,8704]],[[8750,8793,2267]],[[8793,2475,8748]],[[8759,8676,8678]],[[8772,8673,8676]],[[8709,8778,8757]],[[6910,8681,8778]],[[8759,8771,8676]],[[8759,8679,8771]],[[8756,8668,8753]],[[8756,8718,8668]],[[466,8669,465]],[[466,8667,8669]],[[8769,8783,8770]],[[8719,366,8774]],[[8794,8726,8728]],[[8794,8727,8726]],[[8706,8763,8789]],[[8763,8760,8789]],[[8707,8706,8789]],[[8788,8764,8763]],[[8743,8745,8740]],[[8741,560,8745]],[[2214,8682,8703]],[[2214,8683,8682]],[[366,8762,8675]],[[8786,8716,8762]],[[8494,8722,8721]],[[2820,8668,8720]],[[8493,8720,466]],[[8722,2820,8720]],[[8787,8795,8788]],[[8790,8788,8795]],[[8780,8779,8708]],[[8790,8795,8787]],[[8760,8779,8709]],[[8760,8790,8779]],[[8741,8742,560]],[[1105,8746,8742]],[[8762,8716,8715]],[[8786,367,8716]],[[8700,8696,8694]],[[6950,8699,8696]],[[8792,8791,8708]],[[8792,8704,8791]],[[6950,8695,2177]],[[8691,6860,8695]],[[8773,8783,8785]],[[8719,8774,8783]],[[8767,8784,8768]],[[8767,8773,8784]],[[8688,8686,2214]],[[8688,6861,8686]],[[8743,8740,556]],[[8745,560,8740]],[[8788,8706,8708]],[[8788,8763,8706]],[[8780,8702,8684]],[[8705,8703,8702]],[[8744,8741,8745]],[[8744,1105,8741]],[[8435,8751,8437]],[[8435,2821,8751]],[[2821,8749,8491]],[[2821,2820,8749]],[[8711,8712,2253]],[[8711,8707,8712]],[[2267,8793,8748]],[[8750,2475,8793]],[[8700,8693,8691]],[[8700,8694,8693]],[[8695,8700,8691]],[[8695,6950,8700]],[[8758,8782,8713]],[[8758,8680,8782]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4138bef7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.967be64250624d208a88a6471c2bd3aa","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8738,8736,8739]],[[8738,1101,8658]],[[8658,8736,8738]],[[8796,8797,8798]],[[8799,8797,8730]],[[8800,8732,8801]],[[8733,8734,8802]],[[8803,8733,8802]],[[8804,8805,8806]],[[8807,8734,8800]],[[8808,8802,8809]],[[8802,8807,8809]],[[8802,8734,8807]],[[8734,8732,8800]],[[8810,8800,8801]],[[8810,8801,8811]],[[8812,8730,8736]],[[8801,8797,8796]],[[8813,8796,8798]],[[8732,8797,8801]],[[8732,8730,8797]],[[8799,8814,8797]],[[1102,8666,1101]],[[8658,1101,8666]],[[8799,8643,8814]],[[542,8815,8481]],[[8665,8666,8663]],[[8816,8817,8818]],[[8819,838,8820]],[[8662,8821,8660]],[[8822,8823,8824]],[[8825,8483,8484]],[[8826,8482,8827]],[[8828,8829,8830]],[[8831,8832,8833]],[[8834,8835,8836]],[[8837,8838,8839]],[[8840,8841,8837]],[[8842,8843,8844]],[[8844,8845,8842]],[[8846,8847,8845]],[[8844,8848,8849]],[[8850,8851,8852]],[[8849,8853,8845]],[[8854,7451,7452]],[[8855,8852,8851]],[[8856,8857,8858]],[[8844,8838,8859]],[[8860,8841,8861]],[[8862,7514,8863]],[[8864,541,542]],[[8865,8866,8867]],[[8868,7529,8869]],[[8870,8871,7312]],[[8815,8872,8831]],[[8864,8481,8483]],[[7291,7310,8873]],[[8874,542,543]],[[8875,8876,8877]],[[8878,8879,8880]],[[8881,541,8882]],[[8883,8884,8885]],[[8820,539,8819]],[[829,8886,828]],[[8887,8888,837]],[[837,8888,8889]],[[836,837,8889]],[[817,8890,816]],[[8889,8880,8891]],[[8892,8662,8663]],[[8893,834,835]],[[8893,833,834]],[[8893,832,833]],[[8891,8894,8895]],[[8893,831,832]],[[830,8893,829]],[[827,828,8886]],[[8886,829,8893]],[[8894,8822,8895]],[[8896,8897,8898]],[[8886,826,827]],[[8886,8899,823]],[[8824,8895,8822]],[[8886,823,824]],[[821,822,8899]],[[820,821,8900]],[[8890,8901,8902]],[[8903,8904,8905]],[[817,818,8900]],[[8892,8906,8821]],[[1102,8907,8666]],[[774,814,8908]],[[772,774,8908]],[[8909,8902,8901]],[[770,771,8908]],[[769,770,8910]],[[768,769,8910]],[[8902,8908,814]],[[8902,8911,8908]],[[8912,766,767]],[[8890,8902,815]],[[766,8912,765]],[[762,763,8913]],[[761,762,8913]],[[760,761,8913]],[[8914,759,760]],[[8915,8916,8917]],[[8918,758,759]],[[8914,8915,8918]],[[8918,8915,757]],[[8915,755,756]],[[8917,754,755]],[[8919,753,754]],[[751,752,8919]],[[8920,751,8919]],[[8920,750,751]],[[8921,749,8920]],[[8920,749,750]],[[8919,752,753]],[[8922,8352,8923]],[[8924,8925,8403]],[[8898,8350,8896]],[[8926,8927,8928]],[[8330,8929,8328]],[[8898,8897,8930]],[[8907,1102,8931]],[[8931,1102,8925]],[[1100,8925,1102]],[[8932,8933,7451]],[[8854,7452,8934]],[[8935,8873,8867]],[[8867,8876,8865]],[[8877,8876,8936]],[[8833,8832,8482]],[[8850,8937,8938]],[[8939,8940,8933]],[[8941,8942,8943]],[[8351,8944,8350]],[[8945,8946,8879]],[[8822,8816,8947]],[[8903,8823,8948]],[[8821,8662,8892]],[[7530,8949,8950]],[[8951,7516,8952]],[[767,8910,8912]],[[767,768,8910]],[[8953,8954,8884]],[[540,541,8954]],[[8906,8904,8955]],[[8948,8947,8955]],[[8890,817,8900]],[[8948,8955,8904]],[[8956,8901,8905]],[[8908,8911,8910]],[[8957,8958,8959]],[[8960,8961,8962]],[[8963,8819,8964]],[[8965,541,8881]],[[8966,8881,8882]],[[8885,8954,8965]],[[819,8900,818]],[[819,820,8900]],[[8481,8864,542]],[[8882,541,8864]],[[8848,8967,8849]],[[8968,8969,8937]],[[8970,8971,8972]],[[8972,543,7291]],[[7311,8973,7310]],[[8974,8975,8976]],[[8937,8969,8977]],[[8934,8978,8979]],[[8914,8918,759]],[[757,758,8918]],[[8970,8972,8980]],[[8936,8876,8873]],[[8844,8849,8845]],[[8981,8982,8850]],[[8983,8984,8855]],[[8853,8985,8986]],[[8926,8928,8987]],[[8987,8350,8898]],[[764,8913,763]],[[764,765,8913]],[[8913,8912,8910]],[[8913,765,8912]],[[8952,8830,8951]],[[8863,8951,8830]],[[8988,8989,8990]],[[8834,7529,8950]],[[8991,8992,8938]],[[8993,8939,8932]],[[8851,8850,8979]],[[8856,8849,8967]],[[8981,8994,8982]],[[8977,8991,8938]],[[8846,8845,8978]],[[8847,8842,8845]],[[8946,8995,8816]],[[8816,8818,8947]],[[8861,8996,8838]],[[8844,8843,8838]],[[8978,8851,8979]],[[8983,8845,8984]],[[8997,8959,8998]],[[8867,8873,8876]],[[8999,8971,8970]],[[9000,8804,8827]],[[9001,8949,8862]],[[8949,7514,8862]],[[8890,8895,8901]],[[8900,821,8899]],[[8905,8895,8824]],[[8886,824,825]],[[8917,8919,754]],[[8917,9002,8920]],[[8932,8939,8933]],[[8940,7451,8933]],[[8926,8898,9003]],[[8926,8987,8898]],[[7503,8848,7517]],[[9004,8967,8848]],[[9005,8968,8937]],[[9006,9007,8977]],[[8834,8869,7529]],[[8836,7314,8869]],[[770,8908,8910]],[[771,772,8908]],[[8875,8865,8876]],[[9008,8806,9009]],[[8960,8962,8997]],[[9008,8865,9010]],[[8988,8840,8839]],[[9011,8828,7516]],[[8990,8841,8840]],[[8835,9012,8836]],[[9013,9014,8961]],[[8980,8935,8867]],[[9015,8871,8975]],[[8974,8804,8806]],[[7310,8936,8873]],[[7310,8877,8936]],[[816,8890,815]],[[8900,8899,8890]],[[8830,8829,8863]],[[7529,7530,8950]],[[9016,8829,8828]],[[8834,9001,8829]],[[8938,8932,8934]],[[9017,8993,8932]],[[8932,8854,8934]],[[8932,7451,8854]],[[7314,8868,8869]],[[7314,7529,8868]],[[534,8820,838]],[[8884,8954,8885]],[[539,8953,8964]],[[8953,540,8954]],[[8964,8953,8884]],[[539,540,8953]],[[8975,8871,8839]],[[7311,7312,8871]],[[8985,9018,8994]],[[8858,7448,9019]],[[8963,8964,8884]],[[8819,539,8964]],[[8930,9020,9021]],[[9022,9023,8897]],[[8483,8882,8864]],[[8483,8966,8882]],[[8885,8965,8881]],[[8954,541,8965]],[[8658,8812,8736]],[[8658,8643,8812]],[[542,8957,8815]],[[8959,8997,8832]],[[7450,9007,7448]],[[8993,8992,9007]],[[8966,8825,8946]],[[8484,8817,9024]],[[7448,8967,7503]],[[7448,8857,8967]],[[8404,9021,8403]],[[9020,8925,8924]],[[8938,8934,8979]],[[7452,8978,8934]],[[7514,8951,8863]],[[7514,7516,8951]],[[9025,9026,8922]],[[9027,9002,8917]],[[8850,8938,8979]],[[8992,9017,8938]],[[8863,9001,8862]],[[7530,7514,8949]],[[9025,8943,9028]],[[9025,9028,9023]],[[8903,8948,8904]],[[8821,8818,8660]],[[8823,8947,8948]],[[8823,8822,8947]],[[9029,8958,8970]],[[9030,543,8971]],[[8959,8958,9029]],[[8872,8815,8957]],[[8874,8957,542]],[[8874,8999,8958]],[[8957,8874,8958]],[[9030,8971,8999]],[[8963,8884,8883]],[[8879,8816,8894]],[[8895,8886,8891]],[[8880,8879,8894]],[[8815,8831,8481]],[[8832,8827,8482]],[[8828,8952,7516]],[[8828,8830,8952]],[[8328,8929,8404]],[[8927,8331,8928]],[[8403,9021,8924]],[[9003,8898,8930]],[[8982,8937,8850]],[[9005,8982,9019]],[[8832,8997,8827]],[[9031,8805,9000]],[[7517,8844,8859]],[[7517,8848,8844]],[[7517,9032,7516]],[[7517,8859,9032]],[[543,8972,8971]],[[7291,8873,8935]],[[9019,8968,9005]],[[7448,9007,9006]],[[835,836,8893]],[[838,8819,8888]],[[8894,8891,8880]],[[830,831,8893]],[[7450,8940,8939]],[[7450,7451,8940]],[[8997,9031,9000]],[[8805,8804,9000]],[[9009,8806,9031]],[[8806,9008,8974]],[[8988,8990,8840]],[[8989,8841,8990]],[[9033,9034,8663]],[[8901,8895,8905]],[[9024,9035,8484]],[[8966,8945,9036]],[[9035,8946,8825]],[[8816,8822,8894]],[[9032,8996,9011]],[[8841,8989,9016]],[[8865,8875,9010]],[[9015,7311,8871]],[[8875,9037,9010]],[[9038,8973,9039]],[[9040,9015,8975]],[[9039,7311,9015]],[[8899,8886,8895]],[[8893,8889,8891]],[[8982,9005,8937]],[[8982,9018,9019]],[[8871,8988,8839]],[[8871,8989,8988]],[[8983,8855,8851]],[[8984,8986,8855]],[[8978,8983,8851]],[[8978,8845,8983]],[[746,9041,8923]],[[746,748,9041]],[[8957,8959,8872]],[[8998,8960,8997]],[[9031,8997,9009]],[[9000,8827,8997]],[[9031,8806,8805]],[[9009,8962,9008]],[[9030,8874,543]],[[9030,8999,8874]],[[8872,8832,8831]],[[8872,8959,8832]],[[8481,8833,8482]],[[8481,8831,8833]],[[8973,8877,7310]],[[8973,8875,8877]],[[8828,8861,8841]],[[8996,8859,8838]],[[8841,8860,8837]],[[8861,8838,9042]],[[8351,9043,8944]],[[8944,8897,8896]],[[8871,9012,8989]],[[8836,8869,8834]],[[8829,9001,8863]],[[8950,8949,9001]],[[9021,9020,8924]],[[8930,8897,9023]],[[8972,8935,8980]],[[8972,7291,8935]],[[7503,9004,8848]],[[7503,8967,9004]],[[9037,8975,9010]],[[8839,8804,8976]],[[838,8887,837]],[[838,8888,8887]],[[8888,8963,8878]],[[9044,8881,9036]],[[9045,9036,8879]],[[9045,8885,9044]],[[8916,9027,8917]],[[8352,746,8923]],[[8812,8799,8730]],[[8812,8643,8799]],[[9001,8834,8950]],[[8829,9016,9046]],[[8929,8927,8404]],[[8929,8330,8927]],[[8404,8927,8926]],[[8330,8331,8927]],[[8982,8994,9018]],[[8853,8984,8845]],[[8852,8986,8994]],[[8852,8855,8986]],[[8985,8853,8849]],[[8986,8984,8853]],[[9020,8930,8931]],[[8942,8913,8911]],[[9026,9025,9023]],[[8907,9033,8663]],[[8404,9003,9047]],[[9048,9028,9049]],[[8666,8907,8663]],[[9049,8909,8956]],[[9020,8931,8925]],[[9048,9023,9028]],[[9048,8907,8931]],[[9048,9049,8907]],[[9034,8956,8905]],[[9033,8907,9049]],[[8881,8966,9036]],[[8483,8825,8966]],[[9036,8945,8879]],[[8966,8946,8945]],[[8976,8975,8839]],[[9037,9040,8975]],[[8937,8977,8938]],[[8969,9006,8977]],[[9007,8991,8977]],[[9050,8992,8991]],[[9007,9050,8991]],[[9007,8992,9050]],[[8875,9040,9037]],[[9038,9039,9015]],[[9014,9029,8980]],[[8958,8999,8970]],[[8824,8903,8905]],[[8824,8823,8903]],[[8852,8981,8850]],[[8852,8994,8981]],[[8968,9006,8969]],[[8968,9019,9006]],[[748,8921,9041]],[[748,749,8921]],[[8878,8963,9045]],[[8888,8819,8963]],[[8860,9042,8837]],[[8860,8861,9042]],[[8840,8837,8839]],[[9042,8838,8837]],[[8892,9034,8905]],[[9033,8956,9034]],[[8944,9043,9026]],[[8351,8352,9043]],[[8352,8922,9043]],[[9002,9041,8920]],[[9027,8916,8941]],[[8917,755,8915]],[[8913,8914,760]],[[8913,8942,8941]],[[8331,8987,8928]],[[8331,8350,8987]],[[9047,9003,8930]],[[8404,8926,9003]],[[8871,8870,9012]],[[7312,7314,8870]],[[8947,8821,8955]],[[8947,8818,8821]],[[8484,9035,8825]],[[9024,8817,8995]],[[9035,8995,8946]],[[9035,9024,8995]],[[8946,8816,8879]],[[8995,8817,8816]],[[8890,8899,8895]],[[822,823,8899]],[[826,8886,825]],[[8893,8891,8886]],[[9034,8892,8663]],[[8905,8904,8906]],[[8821,8906,8955]],[[8892,8905,8906]],[[8938,9017,8932]],[[8992,8993,9017]],[[9040,9038,9015]],[[8973,7311,9039]],[[8875,9038,9040]],[[8875,8973,9038]],[[8930,9051,8931]],[[8930,9023,9051]],[[9051,9048,8931]],[[9051,9023,9048]],[[538,8820,534]],[[538,539,8820]],[[7450,8993,9007]],[[7450,8939,8993]],[[7448,8858,8857]],[[8985,8849,8856]],[[8857,8856,8967]],[[8858,8985,8856]],[[8841,9016,8828]],[[8989,9012,9016]],[[8829,9046,8834]],[[9016,9012,9046]],[[757,8915,756]],[[8914,8916,8915]],[[9045,8883,8885]],[[9045,8963,8883]],[[9021,9047,8930]],[[9021,8404,9047]],[[8870,8836,9012]],[[8870,7314,8836]],[[8959,9029,8998]],[[9014,8867,8961]],[[8980,9029,8970]],[[9013,8998,9029]],[[9029,9014,9013]],[[8980,8867,9014]],[[8997,8962,9009]],[[8866,8865,9008]],[[8961,8866,8962]],[[8974,8976,8804]],[[9010,8974,9008]],[[9010,8975,8974]],[[9022,9026,9023]],[[8922,8923,9002]],[[9025,9027,8943]],[[9025,8922,9002]],[[9025,9002,9027]],[[8923,9041,9002]],[[8944,9026,9022]],[[9043,8922,9026]],[[8917,8920,8919]],[[9041,8921,8920]],[[9046,8835,8834]],[[9046,9012,8835]],[[9033,9049,8956]],[[8909,8901,8956]],[[9028,8911,9049]],[[8911,8913,8910]],[[815,8902,814]],[[8909,8911,8902]],[[9049,8911,8909]],[[9028,8943,8942]],[[9028,8942,8911]],[[8943,9027,8941]],[[8914,8941,8916]],[[8914,8913,8941]],[[9011,8996,8861]],[[9032,8859,8996]],[[8828,9011,8861]],[[7516,9032,9011]],[[8985,9019,9018]],[[7448,9006,9019]],[[8879,8878,9045]],[[8880,8888,8878]],[[8897,8944,9022]],[[8896,8350,8944]],[[836,8889,8893]],[[8888,8880,8889]],[[9019,8985,8858]],[[8994,8986,8985]],[[9045,9044,9036]],[[8885,8881,9044]],[[8962,8866,9008]],[[8961,8867,8866]],[[9013,8960,8998]],[[9013,8961,8960]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413d2c2d-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9052,7400,9053]],[[9054,9055,2630]],[[9055,7401,2630]],[[9053,7399,7401]],[[2709,9054,2630]],[[9052,7401,9055]],[[9052,9053,7401]],[[7400,7399,9053]],[[9052,9054,2709]],[[9052,9055,9054]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413e64b2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9056,465,9057]],[[9058,9059,6734]],[[9059,9057,9060]],[[464,9061,462]],[[9060,9062,9059]],[[462,9058,6734]],[[462,9061,9058]],[[9063,9064,9061]],[[464,465,9061]],[[6734,9059,6733]],[[9063,9061,9056]],[[465,9060,9057]],[[9062,6733,9059]],[[9059,9063,9057]],[[9061,465,9056]],[[465,9062,9060]],[[465,6733,9062]],[[9057,9063,9056]],[[9064,9058,9061]],[[9059,9064,9063]],[[9059,9058,9064]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413eb30b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9065,9066,9067]],[[9068,9069,9070]],[[9071,9072,9073]],[[9074,9075,9076]],[[9074,9067,9075]],[[9067,9077,9075]],[[9078,9065,9071]],[[9071,9065,9072]],[[9078,9066,9065]],[[9066,9077,9067]],[[9069,9074,9076]],[[9069,9068,9074]],[[9073,9068,9070]],[[9071,9073,9070]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413feb75-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9079,8148,9080]],[[9081,9082,8144]],[[9083,9084,9085]],[[9086,8143,8144]],[[9082,9087,8144]],[[9088,9089,9090]],[[9091,8143,9086]],[[9090,9092,9093]],[[8140,9094,9095]],[[9095,9094,9096]],[[9096,9094,9097]],[[9097,9094,9098]],[[9098,9094,9099]],[[9099,9094,9100]],[[9100,9094,9101]],[[9101,9094,9102]],[[9102,9094,9103]],[[9104,9102,9103]],[[9105,9104,9103]],[[9106,9105,9103]],[[9103,9094,9089]],[[9107,9108,9103]],[[9109,9107,9103]],[[9110,9103,9089]],[[9110,9111,9109]],[[9110,9112,9111]],[[9110,9113,9112]],[[9114,8142,8143]],[[9115,9116,9117]],[[8145,9081,8144]],[[8145,8146,9118]],[[8142,9092,8141]],[[8142,9093,9092]],[[9117,9119,9120]],[[9114,8143,9091]],[[9079,9121,9122]],[[8147,8148,9121]],[[9123,9124,9125]],[[9126,9090,9093]],[[9117,9120,9127]],[[9128,9129,9121]],[[9130,9131,9114]],[[9093,8142,9131]],[[9089,9094,8140]],[[9110,9132,9133]],[[8141,9090,8140]],[[8141,9092,9090]],[[9130,9114,9091]],[[9131,8142,9114]],[[9118,9081,8145]],[[9117,9116,9134]],[[9135,9085,9084]],[[9087,9136,9086]],[[8147,9129,9137]],[[8147,9121,9129]],[[9132,9138,9084]],[[9139,9123,9131]],[[9079,9122,8148]],[[9121,8148,9122]],[[9140,9115,9079]],[[9115,9128,9079]],[[9125,9124,9138]],[[9123,9126,9093]],[[9134,9116,9082]],[[9141,9124,9139]],[[9142,9082,9081]],[[9116,9136,9087]],[[9090,9089,8140]],[[9089,9088,9110]],[[9143,9110,9133]],[[9143,9113,9110]],[[8144,9087,9086]],[[9082,9116,9087]],[[9138,9135,9084]],[[9138,9116,9115]],[[9123,9125,9126]],[[9132,9110,9088]],[[9086,9136,9091]],[[9136,9141,9130]],[[9091,9136,9130]],[[9116,9141,9136]],[[9138,9141,9116]],[[9138,9124,9141]],[[9118,9137,9119]],[[9118,8146,9137]],[[9115,9127,9128]],[[9119,9081,9118]],[[8147,9137,8146]],[[9129,9120,9137]],[[9120,9119,9137]],[[9117,9142,9119]],[[9119,9142,9081]],[[9134,9082,9142]],[[9129,9128,9120]],[[9115,9135,9138]],[[9079,9128,9121]],[[9127,9120,9128]],[[9126,9125,9138]],[[9126,9088,9090]],[[9132,9126,9138]],[[9132,9088,9126]],[[9115,9117,9127]],[[9134,9142,9117]],[[9130,9139,9131]],[[9130,9141,9139]],[[9131,9123,9093]],[[9139,9124,9123]],[[9080,9140,9079]],[[9083,9135,9115]],[[9084,9083,9080]],[[9083,9115,9140]],[[9109,9103,9110]],[[9108,9106,9103]],[[9080,9083,9140]],[[9085,9135,9083]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b41414b16-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef949249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9144,117,119]],[[9144,119,8569]],[[8594,9144,8569]],[[8594,117,9144]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414283a4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6895,6897,6787]],[[6895,6787,7038]],[[6897,6802,6787]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4142aad2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9145,9146,9147]],[[9146,9148,9147]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414394d7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cba49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7792,7790,7791]],[[7790,7789,7791]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414394ec-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9149,9150,365]],[[9151,9152,9153]],[[9154,9155,9152]],[[9156,9157,9158]],[[9159,9151,9160]],[[9157,9152,9161]],[[9162,9153,7713]],[[9163,7711,9160]],[[7710,9162,7713]],[[9149,9156,9158]],[[9149,365,364]],[[373,9157,372]],[[373,9158,9157]],[[373,9150,9158]],[[373,365,9150]],[[7709,9162,7710]],[[9160,9153,9162]],[[9164,9161,9159]],[[372,9157,9161]],[[9164,9159,7711]],[[9161,9152,9151]],[[9157,9156,9152]],[[9158,9150,9149]],[[9163,9160,9162]],[[7711,9159,9160]],[[9160,9151,9153]],[[9159,9161,9151]],[[9155,9165,364]],[[9155,9156,9165]],[[9165,9149,364]],[[9165,9156,9149]],[[372,9164,7711]],[[372,9161,9164]],[[7709,9163,9162]],[[7709,7711,9163]],[[9156,9154,9152]],[[9156,9155,9154]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b46c34501-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.29a2059927f84b779ccc323a4d72025a","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5999,5958,5921]],[[5999,5921,5917]],[[5958,5924,5921]],[[9166,5939,5996]],[[9166,9167,5939]],[[5942,9166,5996]],[[9168,9167,9166]],[[9168,5939,9167]],[[5958,9168,9166]],[[5958,5939,9168]],[[5924,9166,5942]],[[5924,5958,9166]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c36c2c-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efcc0d49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[9169,9170,9171]],[[9172,9173,9174]],[[9175,9176,9177]],[[9178,9170,9169]],[[9179,9180,3737]],[[9181,9182,9183]],[[9184,9185,9186]],[[9181,9187,9182]],[[9188,9187,9181]],[[9188,9189,9187]],[[9190,9191,3909]],[[9192,9190,3909]],[[9193,9192,3909]],[[9194,9195,9196]],[[9193,9197,9198]],[[9199,9200,9201]],[[9202,9185,9184]],[[9203,9204,9205]],[[9206,9207,9208]],[[9209,9210,3747]],[[9211,9212,9210]],[[9213,9214,9215]],[[9216,9211,9217]],[[9218,9219,3485]],[[9220,3755,9221]],[[9222,9218,3484]],[[9222,9223,9218]],[[9224,9225,9226]],[[9227,9228,9229]],[[9230,9231,9232]],[[9233,9234,9235]],[[9236,9237,9238]],[[9239,9240,9241]],[[9242,9243,9244]],[[9238,9245,9246]],[[9247,9243,9248]],[[9247,9248,9249]],[[9221,3810,9219]],[[9249,9248,9250]],[[9251,9252,9253]],[[9254,9255,9256]],[[9256,9255,9257]],[[9257,9255,9258]],[[9255,9254,9250]],[[9259,9260,9252]],[[9261,9255,9262]],[[9262,9255,9263]],[[9263,9255,9264]],[[9264,9255,9265]],[[9266,9267,9268]],[[9265,9255,9269]],[[9269,9255,9270]],[[9271,9269,9270]],[[9272,9271,9270]],[[9273,9272,9270]],[[9274,9273,9270]],[[9275,9276,9277]],[[9278,9274,9270]],[[9279,9280,9281]],[[9282,9278,9270]],[[9283,9226,9284]],[[9285,9286,9287]],[[9288,9225,9289]],[[9290,9291,3579]],[[9292,3441,9293]],[[9294,9295,9296]],[[9297,3834,9298]],[[9297,9299,3894]],[[9300,9301,9175]],[[9302,9303,9304]],[[3632,9222,3484]],[[3484,9218,3485]],[[3485,9219,3810]],[[3810,9221,3755]],[[9305,9220,9306]],[[9210,9212,9298]],[[9307,9217,9211]],[[3747,9298,3834]],[[3834,9297,3934]],[[3934,9297,3894]],[[3894,9299,9308]],[[9309,9310,9311]],[[9312,9313,9314]],[[9181,9183,3737]],[[9315,9316,9317]],[[9183,9179,3737]],[[9180,9178,3737]],[[9180,9170,9178]],[[9318,9178,9169]],[[9319,9320,9321]],[[9322,9323,9324]],[[9325,9326,9327]],[[9301,9328,9329]],[[9330,9327,9331]],[[9329,9332,9319]],[[9333,9334,9335]],[[9336,9337,9338]],[[9339,9340,9341]],[[9236,9238,9246]],[[9342,9343,9344]],[[9345,9346,9347]],[[9348,9349,9350]],[[9321,9351,9352]],[[9353,9354,9355]],[[9356,9357,9327]],[[9215,9207,9358]],[[9359,9360,9361]],[[9176,9175,9352]],[[9362,9363,9327]],[[9364,9365,9366]],[[9327,9357,9353]],[[9175,9319,9352]],[[9328,9367,9329]],[[9368,9369,9327]],[[9363,9366,9368]],[[9370,9302,9371]],[[9372,9373,9374]],[[9375,9174,9173]],[[9302,9304,9371]],[[9376,9352,9351]],[[9377,9332,9364]],[[9296,9362,9330]],[[9377,9320,9332]],[[9327,9353,9325]],[[9378,9379,9295]],[[9380,9350,9381]],[[9380,9357,9356]],[[9382,9383,9384]],[[9326,9331,9327]],[[9260,9362,9295]],[[9363,9385,9386]],[[9326,9296,9331]],[[9362,9327,9330]],[[9384,9383,9325]],[[9378,9295,9294]],[[9387,9388,9389]],[[9372,9390,9391]],[[9392,9393,9382]],[[9394,9379,9378]],[[9230,9232,9395]],[[9231,9396,9232]],[[9340,9397,9341]],[[9245,9239,9398]],[[9399,9400,9401]],[[9397,9340,9241]],[[9402,9403,9404]],[[9405,9406,9322]],[[9177,9176,9407]],[[9406,9405,9408]],[[9409,9410,9411]],[[9371,9304,9344]],[[9172,9408,9412]],[[9389,9413,9414]],[[9392,9382,9415]],[[9416,9417,9394]],[[9418,9376,9351]],[[9176,9352,9376]],[[9419,9420,9421]],[[9371,9344,9422]],[[9423,9344,9304]],[[9424,9425,9426]],[[9427,9206,9208]],[[9428,9429,3431]],[[9335,9430,9391]],[[9391,3553,3441]],[[9381,9431,9432]],[[9433,9434,9435]],[[9339,9341,9244]],[[9397,9240,9400]],[[9436,9437,9438]],[[9439,9440,9395]],[[9293,9280,9276]],[[9441,3440,9442]],[[9438,9443,9444]],[[9440,9443,9445]],[[9438,9446,9443]],[[9395,9447,9230]],[[9446,9228,9445]],[[9448,9232,9396]],[[9224,9449,9450]],[[9436,9444,9451]],[[9258,9255,9261]],[[9452,9243,9453]],[[9329,9350,9332]],[[9349,9431,9381]],[[9341,9399,9244]],[[9341,9397,9399]],[[9388,9387,9259]],[[9454,9173,9172]],[[9259,9454,9455]],[[9375,9173,9454]],[[9456,9457,9424]],[[9422,9344,9343]],[[9319,9332,9320]],[[9350,9365,9332]],[[9458,9421,9459]],[[9460,9371,9422]],[[9461,9427,9462]],[[9461,9206,9427]],[[9454,9259,9375]],[[9463,9464,9465]],[[9466,9467,9468]],[[9467,9469,9470]],[[9471,9393,9392]],[[9472,9382,9393]],[[9473,9353,9381]],[[9335,9334,9430]],[[9435,9474,9433]],[[9355,9415,9325]],[[9417,9393,9471]],[[9475,9392,9355]],[[9471,9434,9391]],[[9476,9434,9473]],[[9477,9404,9478]],[[9479,9480,9481]],[[9482,9337,9336]],[[9426,9483,9456]],[[9484,9485,9486]],[[9487,9409,9411]],[[9334,9402,9430]],[[9478,9488,9489]],[[9430,9402,9490]],[[9334,9328,9403]],[[9478,9489,9491]],[[9492,9493,9175]],[[9494,9493,9492]],[[9176,9376,9407]],[[9174,9495,9172]],[[9496,9324,9497]],[[9379,9292,9284]],[[9293,9275,9498]],[[9378,9326,9325]],[[9294,9296,9326]],[[9499,9500,9501]],[[9502,9503,9270]],[[9504,9505,9448]],[[9501,9447,9395]],[[9334,9333,9328]],[[9348,9350,9367]],[[9175,9301,9319]],[[9367,9350,9329]],[[9328,9333,9367]],[[9335,9391,9267]],[[9401,9240,9506]],[[9340,9339,9398]],[[9239,9506,9240]],[[9240,9397,9241]],[[9401,9400,9240]],[[9399,9397,9400]],[[9244,9401,9242]],[[9244,9399,9401]],[[9242,9506,9507]],[[9242,9401,9506]],[[9508,9509,9510]],[[9511,9500,9512]],[[9398,9246,9245]],[[9287,9286,9243]],[[9513,9235,9514]],[[9515,9231,9230]],[[9459,9516,9517]],[[9421,9420,9516]],[[9242,9453,9243]],[[9507,9245,9518]],[[9285,9519,9248]],[[9452,9507,9518]],[[9451,9520,9436]],[[9439,9521,9520]],[[9448,9505,9395]],[[9520,9451,9440]],[[9395,9505,9439]],[[9225,9288,9521]],[[9505,9504,9396]],[[9505,9521,9439]],[[9321,9377,9385]],[[9369,9365,9380]],[[9351,9385,9362]],[[9385,9377,9386]],[[9319,9321,9352]],[[9320,9377,9321]],[[9285,9248,9286]],[[9248,9243,9286]],[[9507,9452,9453]],[[9518,9285,9452]],[[9522,9523,9252]],[[9455,9260,9259]],[[9524,9343,9342]],[[9525,9457,9464]],[[9345,9526,9495]],[[9426,9456,9424]],[[9420,9527,9460]],[[9343,9524,9422]],[[9528,9338,9337]],[[9346,9495,9529]],[[9426,9411,9483]],[[9530,9528,9531]],[[9347,9532,9345]],[[9495,9481,9172]],[[9422,9524,9425]],[[9533,9534,9535]],[[9536,9533,9535]],[[9535,9530,9532]],[[9533,9537,9538]],[[9539,9426,9524]],[[9530,9531,9526]],[[9540,9541,9482]],[[9174,9529,9495]],[[9542,9387,9389]],[[9174,9542,9529]],[[9542,9389,9410]],[[9543,9446,9279]],[[9445,9443,9446]],[[9543,9228,9446]],[[9227,9440,9445]],[[9543,9279,9544]],[[9436,9438,9444]],[[9326,9378,9294]],[[9394,9417,9379]],[[9495,9346,9345]],[[9529,9409,9346]],[[9545,9282,9270]],[[9250,9254,9249]],[[9546,9547,9548]],[[9503,9545,9270]],[[9548,9549,9550]],[[9551,9552,9502]],[[9487,9347,9346]],[[9532,9526,9345]],[[9553,9538,9537]],[[9554,9524,9342]],[[9555,9556,9342]],[[9534,9557,9535]],[[9558,9554,9556]],[[9559,9538,9554]],[[9471,9475,9435]],[[9471,9392,9475]],[[9446,9280,9279]],[[3441,3440,9560]],[[9279,9281,9441]],[[9561,3441,9560]],[[9410,9389,9414]],[[9562,9252,9251]],[[9529,9542,9409]],[[9174,9375,9387]],[[9388,9563,9389]],[[9564,9522,9517]],[[9389,9563,9413]],[[9465,9259,9252]],[[9565,9566,9567]],[[9568,9313,9569]],[[9308,9570,9571]],[[9572,9573,9574]],[[9567,9566,9203]],[[9575,9576,9577]],[[9578,9579,9580]],[[9581,9577,9582]],[[9583,9566,9584]],[[9585,9586,9566]],[[3894,9308,3630]],[[9299,9462,9308]],[[9333,9348,9367]],[[9333,9335,9267]],[[9587,9588,9589]],[[9527,9420,9419]],[[9460,9424,9457]],[[9422,9425,9424]],[[9420,9460,9516]],[[9422,9424,9460]],[[9525,9464,9463]],[[9523,9465,9252]],[[9495,9479,9481]],[[9324,9590,9497]],[[9531,9591,9495]],[[9592,9541,9593]],[[9405,9496,9594]],[[9323,9595,9324]],[[9486,9485,9596]],[[9489,9488,9485]],[[9494,9488,9404]],[[9494,9492,9596]],[[9283,9293,9226]],[[9280,9446,9276]],[[9407,9597,9177]],[[9494,9300,9493]],[[9477,9478,9373]],[[9489,9485,9593]],[[9373,9491,9374]],[[9598,9478,9491]],[[9564,9463,9523]],[[9464,9563,9465]],[[9414,9464,9457]],[[9413,9563,9464]],[[9599,9600,9601]],[[9428,3431,3630]],[[9565,9584,9566]],[[9602,9603,9586]],[[9604,9605,9513]],[[9234,9509,9514]],[[9386,9364,9363]],[[9364,9332,9365]],[[9363,9364,9366]],[[9386,9377,9364]],[[9308,9576,9570]],[[9214,9582,9606]],[[9607,9577,9576]],[[9207,9215,9208]],[[9292,9293,9283]],[[3441,9561,9293]],[[9608,9501,9395]],[[9511,9609,9610]],[[9460,9525,9516]],[[9522,9252,9459]],[[9611,9412,9408]],[[9408,9172,9481]],[[9612,9613,9303]],[[9614,9344,9423]],[[9303,9613,9555]],[[9342,9344,9614]],[[9615,9283,9284]],[[9615,9292,9283]],[[9314,9313,9616]],[[9617,9618,9429]],[[9619,9620,9621]],[[9619,9361,9622]],[[9623,9309,9624]],[[9573,9571,9570]],[[9601,9600,9580]],[[9625,9571,9573]],[[9626,9578,9580]],[[9600,9599,9580]],[[9311,9627,9309]],[[9579,9601,9580]],[[9205,9628,9359]],[[9625,9629,9571]],[[9630,9625,9572]],[[9570,9576,9575]],[[9357,9381,9353]],[[9431,9266,9476]],[[9381,9432,9473]],[[9431,9349,9266]],[[9516,9525,9517]],[[9525,9463,9564]],[[9404,9300,9494]],[[9403,9328,9301]],[[9319,9301,9329]],[[9300,9404,9403]],[[9300,9403,9301]],[[9402,9334,9403]],[[9347,9536,9532]],[[9538,9559,9533]],[[9524,9553,9539]],[[9553,9554,9538]],[[9631,9632,9565]],[[9632,9311,9579]],[[9628,9360,9359]],[[9313,9568,9616]],[[9267,9391,9268]],[[9349,9267,9266]],[[9380,9381,9357]],[[9350,9349,9381]],[[9580,9633,9602]],[[9628,9204,9634]],[[9481,9480,9323]],[[9418,9407,9376]],[[9323,9480,9595]],[[9541,9531,9528]],[[9322,9324,9496]],[[9635,9480,9636]],[[9558,9637,9638]],[[9534,9533,9559]],[[9558,9638,9559]],[[9637,9534,9638]],[[9516,9459,9421]],[[9517,9522,9459]],[[9370,9303,9302]],[[9423,9304,9303]],[[9595,9590,9324]],[[9639,9597,9640]],[[9595,9635,9590]],[[9596,9492,9641]],[[9225,9505,9396]],[[9225,9521,9505]],[[9475,9474,9435]],[[9392,9415,9355]],[[9174,9387,9542]],[[9375,9259,9387]],[[9642,9643,9628]],[[9574,9573,9581]],[[9606,9582,9577]],[[9215,9427,9208]],[[9353,9355,9325]],[[9474,9475,9355]],[[9644,9601,9579]],[[9645,9599,9601]],[[9546,9285,9518]],[[9250,9270,9255]],[[9546,9550,9646]],[[9647,9270,9250]],[[9519,9250,9248]],[[9647,9646,9551]],[[9648,9547,9510]],[[9647,9502,9270]],[[9548,9552,9549]],[[9552,9503,9502]],[[9646,9550,9551]],[[9549,9552,9551]],[[9548,9610,9552]],[[9442,9503,9552]],[[9519,9646,9250]],[[9550,9549,9551]],[[9285,9646,9519]],[[9546,9510,9547]],[[9508,9510,9546]],[[9509,9648,9510]],[[9514,9508,9518]],[[9514,9509,9508]],[[9308,9649,3630]],[[9649,9571,9650]],[[9379,9417,9651]],[[9472,9393,9417]],[[9492,9175,9177]],[[9493,9300,9175]],[[9564,9523,9522]],[[9563,9388,9465]],[[9594,9611,9405]],[[9412,9454,9172]],[[9481,9406,9408]],[[9481,9323,9322]],[[9405,9611,9408]],[[9455,9454,9412]],[[9641,9492,9177]],[[9596,9488,9494]],[[9597,9641,9177]],[[9597,9486,9596]],[[9363,9368,9327]],[[9366,9365,9368]],[[9233,9235,9605]],[[9605,9515,9230]],[[9233,9648,9509]],[[9234,9514,9235]],[[9544,9441,9442]],[[9560,3440,9441]],[[9652,9543,9442]],[[9279,9441,9544]],[[9291,9612,9370]],[[9371,9460,9527]],[[9539,9553,9537]],[[9524,9554,9553]],[[9224,9498,9289]],[[9275,9289,9498]],[[9293,9450,9449]],[[9293,9498,9450]],[[9470,9653,9467]],[[9654,9655,9656]],[[9643,9466,9314]],[[9467,9653,9468]],[[9656,9657,9658]],[[9659,9660,9661]],[[9569,9662,9663]],[[9622,9568,9663]],[[9524,9426,9425]],[[9539,9411,9426]],[[9552,9610,9442]],[[9512,9229,9543]],[[9608,9499,9501]],[[9608,9440,9229]],[[9648,9664,9547]],[[9609,9442,9610]],[[9405,9322,9496]],[[9406,9481,9322]],[[9635,9636,9639]],[[9480,9592,9636]],[[9590,9635,9639]],[[9595,9480,9635]],[[9470,9468,9653]],[[9655,9665,9656]],[[9504,9448,9396]],[[9395,9232,9448]],[[9284,9292,9615]],[[9379,3441,9292]],[[9410,9414,9483]],[[9413,9464,9414]],[[9645,9644,9623]],[[9666,9627,9667]],[[9293,9276,9275]],[[9446,9438,9276]],[[9579,9668,9644]],[[9310,9623,9644]],[[9626,9632,9578]],[[9584,9565,9632]],[[9566,9583,9585]],[[9626,9580,9602]],[[9584,9626,9583]],[[9584,9632,9626]],[[9574,9581,9634]],[[9575,9577,9581]],[[9325,9383,9394]],[[9382,9416,9394]],[[9415,9384,9325]],[[9415,9382,9384]],[[9669,9613,9612]],[[9303,9555,9423]],[[9555,9613,9556]],[[9612,9291,9669]],[[9670,9336,9338]],[[9390,3553,9391]],[[9491,9671,9374]],[[9491,9489,9672]],[[9490,9373,9372]],[[9390,9336,9670]],[[9390,9482,9336]],[[9482,9671,9540]],[[9557,9390,9670]],[[9374,9671,9482]],[[9338,9557,9670]],[[9535,9532,9536]],[[9338,9535,9557]],[[9338,9528,9530]],[[9526,9531,9495]],[[9528,9337,9541]],[[9673,9643,9642]],[[9673,9466,9643]],[[3553,9534,9637]],[[3553,9557,9534]],[[9674,9658,9468]],[[9675,3431,9676]],[[9521,9288,9520]],[[9277,9276,9437]],[[9289,9277,9288]],[[9276,9438,9437]],[[9677,9678,9679]],[[9562,9680,9252]],[[9548,9681,9610]],[[9500,9499,9512]],[[9447,9682,9233]],[[9235,9513,9605]],[[9476,9473,9432]],[[9354,9353,9473]],[[9290,9669,9683]],[[9612,9303,9370]],[[3579,9291,3632]],[[9683,9669,9291]],[[9288,9277,9437]],[[9289,9275,9277]],[[9684,9685,9686]],[[9674,9468,9470]],[[9679,9687,9688]],[[9689,9291,9370]],[[9589,9690,9691]],[[9691,9692,9527]],[[9290,9558,9669]],[[9556,9613,9669]],[[9693,9660,9659]],[[9694,9675,9695]],[[9569,9655,9662]],[[9569,9663,9568]],[[9325,9394,9378]],[[9383,9382,9394]],[[9414,9456,9483]],[[9414,9457,9456]],[[9696,9697,9428]],[[9666,9624,9627]],[[9660,9698,9661]],[[9661,3431,9694]],[[9293,9699,9226]],[[9224,9289,9225]],[[9293,9449,9699]],[[9450,9498,9224]],[[9518,9238,9514]],[[9237,9604,9513]],[[9604,9237,9236]],[[9513,9514,9238]],[[9281,9561,9441]],[[9561,9280,9293]],[[9700,9358,9207]],[[9358,9213,9215]],[[9701,9700,9634]],[[9701,9582,9213]],[[9581,9701,9634]],[[9581,9582,9701]],[[9643,9314,9360]],[[9466,9468,9702]],[[9651,9391,3441]],[[9430,9372,9391]],[[9517,9525,9564]],[[9460,9457,9525]],[[9242,9507,9453]],[[9506,9239,9507]],[[9309,9627,9624]],[[9703,9704,9663]],[[9666,9667,9429]],[[9705,9703,9663]],[[9627,9620,9617]],[[9621,9311,9631]],[[9431,9476,9432]],[[9268,9434,9476]],[[9599,9650,9633]],[[9649,9308,9571]],[[9574,9706,9572]],[[9633,9580,9599]],[[9583,9602,9585]],[[9630,9572,9706]],[[9214,9707,9462]],[[9214,9427,9215]],[[9614,9555,9342]],[[9614,9423,9555]],[[9571,9629,9650]],[[9630,9706,9603]],[[9369,9380,9356]],[[9365,9350,9380]],[[9327,9369,9356]],[[9368,9365,9369]],[[9627,9617,9667]],[[9620,9676,9618]],[[9688,9588,9587]],[[9692,9689,9370]],[[9253,9688,9687]],[[9688,3632,9689]],[[9677,9679,9587]],[[9678,9687,9679]],[[9662,9695,9663]],[[9708,9620,9619]],[[9708,9704,9703]],[[9704,9622,9663]],[[9705,9708,9703]],[[9619,9622,9704]],[[9443,9451,9444]],[[9443,9440,9451]],[[9640,9597,9407]],[[9639,9486,9597]],[[9461,9467,9466]],[[9461,9469,9467]],[[9398,9239,9241]],[[9245,9507,9239]],[[9308,9607,9576]],[[9308,9462,9707]],[[9607,9606,9577]],[[9606,9308,9707]],[[9222,9688,9253]],[[3632,9291,9689]],[[9361,9568,9622]],[[9616,9360,9314]],[[9709,9710,9317]],[[9711,9712,9713]],[[9395,9440,9608]],[[9439,9520,9440]],[[9411,9410,9483]],[[9409,9542,9410]],[[9572,9625,9573]],[[9630,9629,9625]],[[9203,9205,9359]],[[9204,9574,9634]],[[9205,9204,9628]],[[9706,9574,9204]],[[9361,9203,9359]],[[9203,9586,9204]],[[9513,9238,9237]],[[9518,9245,9238]],[[9711,9714,9715]],[[9716,9712,9715]],[[9541,9672,9593]],[[9671,9491,9672]],[[9479,9592,9480]],[[9593,9485,9484]],[[9214,9606,9707]],[[9607,9308,9606]],[[9490,9372,9430]],[[9374,9482,9372]],[[9409,9487,9346]],[[9411,9539,9347]],[[9629,9633,9650]],[[9603,9706,9586]],[[9717,9251,9253]],[[9718,9678,9719]],[[9719,9680,9562]],[[9680,9459,9252]],[[9472,9416,9382]],[[9472,9417,9416]],[[9626,9602,9583]],[[9633,9629,9603]],[[9311,9310,9668]],[[9623,9720,9645]],[[9668,9310,9644]],[[9309,9623,9310]],[[9665,9655,9569]],[[9695,9708,9705]],[[9354,9433,9474]],[[9473,9434,9433]],[[9721,9659,9654]],[[9659,9661,9694]],[[9502,9647,9551]],[[9250,9646,9647]],[[9251,9719,9562]],[[9719,9458,9680]],[[9194,9317,9195]],[[9317,9710,9315]],[[9234,9233,9509]],[[9681,9511,9610]],[[9233,9664,9648]],[[9722,9511,9681]],[[9230,9233,9605]],[[9230,9447,9233]],[[9194,9723,9724]],[[9317,9316,9195]],[[9725,9726,9201]],[[9727,9712,9728]],[[9532,9530,9526]],[[9535,9338,9530]],[[9314,9702,9312]],[[9314,9466,9702]],[[9479,9591,9592]],[[9479,9495,9591]],[[9720,9429,9428]],[[9667,9617,9429]],[[9720,9666,9429]],[[9623,9624,9666]],[[9402,9477,9490]],[[9598,9491,9373]],[[9490,9477,9373]],[[9402,9404,9477]],[[9373,9478,9598]],[[9404,9488,9478]],[[9285,9546,9646]],[[9518,9508,9546]],[[9193,9723,9729]],[[9195,9316,9730]],[[9649,9645,3630]],[[9601,9644,9645]],[[9348,9267,9349]],[[9348,9333,9267]],[[9433,9354,9473]],[[9474,9355,9354]],[[9656,9658,9693]],[[9658,9698,9660]],[[9663,9695,9705]],[[9676,9620,9708]],[[9695,9675,9708]],[[9618,9617,9620]],[[9194,9709,9317]],[[9724,9731,9709]],[[9723,9732,9724]],[[9733,9726,9728]],[[9734,9735,9307]],[[3444,3755,9736]],[[9728,9712,9737]],[[9714,9738,9729]],[[9594,9497,9739]],[[9590,9639,9497]],[[9411,9347,9487]],[[9539,9537,9536]],[[9539,9536,9347]],[[9537,9533,9536]],[[3776,9723,9193]],[[3776,9201,9723]],[[9186,9713,9712]],[[9713,9186,9740]],[[9316,9716,9730]],[[9738,9740,9729]],[[9730,9715,9714]],[[9316,9315,9737]],[[9729,9730,9714]],[[9196,9195,9730]],[[9716,9737,9712]],[[9728,9726,9727]],[[9730,9716,9715]],[[9316,9737,9716]],[[9723,9731,9732]],[[9201,9726,9733]],[[9710,9733,9315]],[[9710,9731,9201]],[[9731,9710,9709]],[[9731,9723,9201]],[[9578,9632,9579]],[[9565,9567,9631]],[[9619,9631,9567]],[[9621,9627,9311]],[[9729,9723,9194]],[[9732,9731,9724]],[[9210,9734,9307]],[[9741,9742,3444]],[[9458,9677,9419]],[[9458,9719,9677]],[[9611,9594,9260]],[[9496,9497,9594]],[[9738,9711,9743]],[[9715,9712,9711]],[[9730,9729,9196]],[[9197,9193,9729]],[[9711,9713,9743]],[[9186,9197,9740]],[[9307,9735,9217]],[[3755,9220,9305]],[[9371,9527,9692]],[[9744,9688,9689]],[[9691,9690,9692]],[[9589,9744,9692]],[[9587,9589,9691]],[[9744,9689,9692]],[[9588,9744,9589]],[[9588,9688,9744]],[[9736,9216,9217]],[[9306,9212,9211]],[[9233,9682,9722]],[[9447,9501,9682]],[[9233,9722,9664]],[[9682,9501,9500]],[[9722,9500,9511]],[[9722,9682,9500]],[[9260,9351,9362]],[[9739,9497,9640]],[[9260,9739,9351]],[[9640,9407,9418]],[[9664,9681,9547]],[[9664,9722,9681]],[[9558,9556,9669]],[[9554,9342,9556]],[[9725,9727,9726]],[[9725,9712,9727]],[[9315,9728,9737]],[[9315,9733,9728]],[[3676,9209,3747]],[[9735,9741,9736]],[[9515,9604,9236]],[[9515,9605,9604]],[[9658,9661,9698]],[[3514,3431,9661]],[[9645,9696,3630]],[[9645,9697,9696]],[[9331,9296,9330]],[[9295,9362,9296]],[[9645,9720,9697]],[[9623,9666,9720]],[[9700,9628,9634]],[[9643,9360,9628]],[[9700,9207,9628]],[[9206,9461,9673]],[[9206,9673,9207]],[[9461,9466,9673]],[[9739,9640,9418]],[[9497,9639,9640]],[[9419,9691,9527]],[[9419,9587,9691]],[[9702,9665,9312]],[[9654,9695,9655]],[[9657,9665,9702]],[[9656,9721,9654]],[[9371,9692,9370]],[[9690,9589,9692]],[[9452,9287,9243]],[[9452,9285,9287]],[[9200,9725,9201]],[[9186,9712,9725]],[[9579,9311,9668]],[[9632,9631,9311]],[[9687,9717,9253]],[[9687,9678,9718]],[[9717,9718,9251]],[[9717,9687,9718]],[[9636,9486,9639]],[[9636,9592,9484]],[[9210,9209,9745]],[[3676,3444,9209]],[[9654,9659,9694]],[[9721,9693,9659]],[[3755,9305,9736]],[[9305,9211,9216]],[[9693,9658,9660]],[[3514,9661,9658]],[[9708,9619,9704]],[[9567,9361,9619]],[[9721,9656,9693]],[[9665,9657,9656]],[[9680,9458,9459]],[[9419,9421,9458]],[[9699,9224,9226]],[[9699,9449,9224]],[[9211,9305,9306]],[[9216,9736,9305]],[[9711,9738,9714]],[[9740,9197,9729]],[[9602,9586,9585]],[[9706,9204,9586]],[[9211,9210,9307]],[[9745,9742,9734]],[[9468,9657,9702]],[[9468,9658,9657]],[[9217,9735,9736]],[[9742,9209,3444]],[[9362,9385,9363]],[[9351,9321,9385]],[[9340,9398,9241]],[[9339,9246,9398]],[[9361,9616,9568]],[[9361,9360,9616]],[[9655,9695,9662]],[[9654,9694,9695]],[[9417,9471,9651]],[[9435,9434,9471]],[[9546,9548,9550]],[[9547,9681,9548]],[[3431,9618,9676]],[[3431,9429,9618]],[[9736,9741,3444]],[[9735,9734,9741]],[[9708,9675,9676]],[[9694,3431,9675]],[[9696,9428,3630]],[[9697,9720,9428]],[[3553,9558,3579]],[[3553,9637,9558]],[[9291,9290,9683]],[[3579,9558,9290]],[[9729,9194,9196]],[[9724,9709,9194]],[[9636,9484,9486]],[[9592,9593,9484]],[[9351,9739,9418]],[[9260,9594,9739]],[[9455,9611,9260]],[[9455,9412,9611]],[[9710,9201,9733]],[[9184,9200,9746]],[[9619,9621,9631]],[[9620,9627,9621]],[[9543,9229,9228]],[[9499,9608,9229]],[[9440,9227,9229]],[[9445,9228,9227]],[[9591,9541,9592]],[[9672,9489,9593]],[[9442,9543,9544]],[[9512,9499,9229]],[[9652,9512,9543]],[[9609,9511,9512]],[[9718,9719,9251]],[[9678,9677,9719]],[[9288,9436,9520]],[[9288,9437,9436]],[[9677,9587,9419]],[[9679,9688,9587]],[[9567,9203,9361]],[[9566,9586,9203]],[[9734,9210,9745]],[[9298,3747,9210]],[[9633,9603,9602]],[[9629,9630,9603]],[[9531,9541,9591]],[[9337,9482,9541]],[[9266,9268,9476]],[[9391,9434,9268]],[[9379,9651,3441]],[[9471,9391,9651]],[[9463,9465,9523]],[[9388,9259,9465]],[[9312,9569,9313]],[[9312,9665,9569]],[[9573,9575,9581]],[[9573,9570,9575]],[[9747,9748,9749]],[[9750,9202,9184]],[[9743,9740,9738]],[[9743,9713,9740]],[[9725,9184,9186]],[[9674,3514,9658]],[[9441,9561,9560]],[[9281,9280,9561]],[[9748,9751,9752]],[[9753,3776,3514]],[[9751,9754,9755]],[[9756,3776,9753]],[[9686,9752,3514]],[[9757,9758,9756]],[[9759,9684,9686]],[[9674,9185,9760]],[[9482,9390,9372]],[[9557,3553,9390]],[[9672,9540,9671]],[[9672,9541,9540]],[[9200,9761,9762]],[[9762,9763,9746]],[[9207,9642,9628]],[[9207,9673,9642]],[[9764,9765,9766]],[[9758,9757,9760]],[[9469,9674,9470]],[[9749,9686,9685]],[[9597,9596,9641]],[[9485,9488,9596]],[[9767,9202,9766]],[[9760,9185,9202]],[[9674,9760,9749]],[[9760,9757,9768]],[[9185,9674,9469]],[[9749,9685,9674]],[[9750,9764,9766]],[[9763,3776,9756]],[[9758,9760,9202]],[[9754,9747,9760]],[[9765,9756,9767]],[[9767,9756,9758]],[[9202,9750,9766]],[[9746,9200,9762]],[[9746,9750,9184]],[[9746,9764,9750]],[[9763,9764,9746]],[[9763,9765,9764]],[[9700,9213,9358]],[[9700,9701,9213]],[[9427,9214,9462]],[[9213,9582,9214]],[[9748,9747,9751]],[[9768,9757,9753]],[[9752,9753,3514]],[[9752,9751,9753]],[[9757,9756,9753]],[[9765,9763,9756]],[[9202,9767,9758]],[[9766,9765,9767]],[[9751,9755,9753]],[[9754,9760,9768]],[[9755,9768,9753]],[[9755,9754,9768]],[[3776,9199,9201]],[[9769,9761,9199]],[[3776,9769,9199]],[[3776,9763,9769]],[[9599,9649,9650]],[[9599,9645,9649]],[[9769,9762,9761]],[[9769,9763,9762]],[[9652,9609,9512]],[[9652,9442,9609]],[[9192,9193,9198]],[[3909,3776,9193]],[[9734,9742,9741]],[[9745,9209,9742]],[[9760,9747,9749]],[[9754,9751,9747]],[[9686,9748,9752]],[[9686,9749,9748]],[[9725,9200,9184]],[[9199,9761,9200]],[[3514,9759,9686]],[[3514,9674,9759]],[[9674,9684,9759]],[[9674,9685,9684]],[[9688,9222,3632]],[[9253,9223,9222]],[[9558,9559,9554]],[[9638,9534,9559]],[[3909,9181,3737]],[[9188,9191,9189]],[[3909,9188,9181]],[[3909,9191,9188]],[[9770,9503,9442]],[[3440,9770,9442]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c407db-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe75349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5644,5512,5841]],[[5644,5440,5650]],[[5650,5446,5653]],[[5653,5455,5652]],[[5652,5455,5459]],[[5653,5450,5455]],[[5653,5446,5450]],[[5650,5440,5446]],[[5644,5488,5440]],[[5644,5648,5488]],[[5488,5505,5475]],[[5488,5648,5505]],[[5644,5841,5648]],[[5512,5511,5841]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c42f03-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28e49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[9771,9772,9773]],[[9771,9774,9775]],[[9771,9776,9774]],[[9774,9776,9777]],[[9771,9773,9776]],[[9776,9773,9778]],[[9772,9779,9773]],[[9773,9779,9780]],[[9772,9781,9779]],[[9779,9781,9782]],[[9782,9783,9784]],[[9784,9785,9786]],[[9784,9783,9785]],[[9782,9781,9783]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b491588b8-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9787,9788,9789]],[[9790,8186,7932]],[[9791,7934,7935]],[[9791,7933,7934]],[[7933,9791,9792]],[[9793,9794,9790]],[[9795,9788,9794]],[[9796,7950,8186]],[[9797,9793,7935]],[[7936,9794,9793]],[[9791,9790,9792]],[[7932,7933,9792]],[[7936,9797,7935]],[[7936,9793,9797]],[[7927,9795,7936]],[[7927,9788,9795]],[[9795,9794,7936]],[[9787,9789,9798]],[[7927,9789,9788]],[[7927,7950,9789]],[[9794,9799,8186]],[[9799,7950,9796]],[[9794,9787,9799]],[[9794,9788,9787]],[[9792,9800,7932]],[[9794,8186,9790]],[[9793,9801,7935]],[[9801,9790,9791]],[[8186,9799,9796]],[[9798,7950,9799]],[[9787,9798,9799]],[[9789,7950,9798]],[[9800,9790,7932]],[[9800,9792,9790]],[[7935,9801,9791]],[[9793,9790,9801]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4915aff8-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9802,9803,7754]],[[9804,9805,9806]],[[9802,9807,9808]],[[9802,7754,9809]],[[9808,9807,9810]],[[9802,9809,9807]],[[9811,9804,7755]],[[9812,9813,9814]],[[9815,7771,9816]],[[9816,7771,353]],[[9817,9809,9818]],[[9819,2579,2578]],[[9819,7755,2579]],[[9819,7770,7755]],[[7596,7769,2578]],[[7594,7596,2578]],[[7592,7594,2744]],[[2330,2672,2621]],[[9820,2409,2397]],[[9820,9821,2409]],[[2672,9822,2340]],[[2340,2740,2332]],[[9822,2329,2740]],[[2328,2330,2621]],[[2329,9822,2330]],[[9823,2756,2328]],[[2621,9823,2328]],[[2744,7594,2756]],[[2756,7594,2578]],[[9806,9805,9811]],[[9806,9817,9804]],[[9814,9813,353]],[[338,7712,9812]],[[2340,9822,2740]],[[2672,2330,9822]],[[9815,9817,7771]],[[9809,7754,9818]],[[9813,9816,353]],[[9813,9812,9816]],[[9809,9815,9816]],[[9809,9817,9815]],[[9818,9804,9817]],[[9811,7770,7771]],[[7771,9806,9811]],[[7771,9817,9806]],[[7755,9818,7754]],[[7755,9804,9818]],[[2340,9820,2397]],[[9821,2332,2409]],[[2340,9821,9820]],[[2340,2332,9821]],[[7769,9819,2578]],[[7769,7770,9819]],[[2744,9823,2621]],[[2744,2756,9823]],[[9809,9812,7712]],[[9809,9816,9812]],[[338,9814,353]],[[338,9812,9814]],[[7755,9824,9811]],[[7755,7770,9824]],[[7770,9811,9824]],[[9805,9804,9811]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4916e86b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.71178dd3a331470b86cb2586a764831b","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2821,8729,9825]],[[9825,8735,8750]],[[2824,9825,8750]],[[2821,9825,2824]],[[8729,8735,9825]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b491736be-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[586,703,579]],[[586,579,585]],[[585,579,584]],[[583,584,579]],[[583,579,582]],[[582,579,581]],[[706,707,579]],[[579,707,708]],[[704,705,579]],[[579,705,706]],[[703,704,579]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4918966b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9826,9827,9828]],[[9829,6796,6797]],[[9830,6796,9831]],[[9830,9827,9832]],[[9833,7042,6861]],[[9834,6830,6832]],[[6862,9835,9836]],[[9837,9838,9839]],[[9836,7042,9840]],[[9835,9841,9842]],[[9828,9830,9831]],[[9843,9838,9834]],[[9843,9844,9839]],[[9845,9846,9847]],[[9847,6796,9829]],[[6863,9848,9841]],[[6863,6830,9837]],[[6796,9830,6794]],[[6796,9847,9831]],[[9826,6833,9827]],[[9832,6794,9830]],[[6833,9843,6832]],[[9849,6830,9834]],[[6797,9845,9829]],[[9846,9831,9847]],[[9850,9840,7042]],[[6862,9836,9840]],[[6833,9832,9827]],[[6833,6794,9832]],[[9850,9833,6861]],[[9850,7042,9833]],[[6832,9843,9834]],[[9839,9851,9835]],[[9841,9835,6862]],[[9851,9852,9836]],[[6862,9850,6861]],[[6862,9840,9850]],[[9829,9845,9847]],[[9852,7042,9836]],[[9838,9853,9849]],[[9838,9837,9853]],[[6863,9841,6862]],[[9842,9837,9839]],[[6799,9845,6797]],[[6799,9854,9845]],[[9836,9835,9851]],[[9841,9848,9842]],[[9854,9831,9846]],[[9828,7042,9852]],[[6833,9844,9843]],[[9828,9827,9830]],[[9845,9854,9846]],[[6799,9831,9854]],[[9839,9826,9851]],[[9826,9828,9852]],[[9851,9826,9852]],[[9844,6833,9826]],[[9843,9839,9838]],[[9844,9826,9839]],[[9835,9842,9839]],[[9848,6863,9842]],[[6863,9837,9842]],[[6830,9853,9837]],[[6799,9828,9831]],[[6799,7042,9828]],[[9838,9849,9834]],[[9853,6830,9849]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4918e3d0-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5c1f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9855,279,266]],[[9856,266,267]],[[269,9857,267]],[[269,279,9858]],[[9859,9858,9860]],[[9858,279,9860]],[[9857,9858,267]],[[9860,266,9856]],[[9856,9859,9860]],[[9857,269,9858]],[[9860,9855,266]],[[9860,279,9855]],[[267,9859,9856]],[[267,9858,9859]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4919a79b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[139,9861,138]],[[135,136,134]],[[136,131,134]],[[131,132,133]],[[134,131,133]],[[136,137,131]],[[138,129,130]],[[128,129,9862]],[[9862,129,9861]],[[9861,129,138]],[[130,137,138]],[[130,131,137]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b491d7828-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9863,8611,8610]],[[9863,8610,8613]],[[8606,9863,8613]],[[8606,8611,9863]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4920103c-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef749a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9864,9865,9866]],[[9867,9864,9866]],[[9868,9866,9869]],[[9865,9870,9871]],[[9872,9873,9874]],[[9872,9866,9868]],[[9873,9872,9868]],[[9875,9876,9867]],[[9877,9878,9875]],[[9875,9879,9876]],[[9875,9878,9879]],[[9871,9872,9874]],[[9876,9880,9867]],[[9870,9865,9881]],[[9882,9878,9877]],[[9875,9883,9877]],[[9871,9874,9869]],[[9866,9865,9869]],[[9880,9864,9867]],[[9880,9882,9864]],[[9864,9882,9877]],[[9880,9878,9882]],[[9877,9883,9881]],[[9875,9872,9883]],[[9883,9870,9881]],[[9883,9871,9870]],[[9865,9871,9869]],[[9883,9872,9871]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492196f9-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[559,476,558]],[[559,474,476]],[[559,475,474]],[[9884,9885,9886]],[[9887,9888,9889]],[[9890,479,480]],[[9891,475,559]],[[450,479,9892]],[[9893,479,9890]],[[9894,8492,8493]],[[8427,8428,8746]],[[9895,8490,8436]],[[9895,8436,8437]],[[9896,9897,9889]],[[9898,9899,9900]],[[8435,8434,9901]],[[8435,9901,8445]],[[9902,9886,9903]],[[9904,9905,8746]],[[9906,9907,9908]],[[8426,8442,8424]],[[9909,8426,8427]],[[9910,8443,8442]],[[9911,9912,8442]],[[9911,9913,9912]],[[9902,9914,9915]],[[8428,560,8746]],[[9912,9913,8429]],[[9903,560,8429]],[[8429,560,8428]],[[8492,9916,8490]],[[8492,9893,9917]],[[8436,9918,9919]],[[8436,8490,9900]],[[466,9892,9920]],[[466,450,9892]],[[9921,9897,9896]],[[9889,9888,559]],[[9922,9899,9898]],[[9903,559,560]],[[9919,8434,8436]],[[9923,8490,9924]],[[9922,9898,9885]],[[9889,559,9925]],[[8747,9904,8746]],[[9904,9926,9905]],[[475,9891,480]],[[8492,9894,9893]],[[9893,9927,479]],[[9928,479,9927]],[[9916,9921,8490]],[[9929,9897,9921]],[[9930,9931,9884]],[[9896,9924,9921]],[[9914,9901,9915]],[[9932,9898,9925]],[[9903,9925,559]],[[9932,9885,9898]],[[9886,9933,9903]],[[9886,9885,9934]],[[8746,9905,9909]],[[9935,8747,9936]],[[9905,9926,8426]],[[8747,8443,9936]],[[9906,9926,9937]],[[9904,8747,9935]],[[9919,9915,8434]],[[8444,8445,9901]],[[9913,9903,8429]],[[9933,9925,9903]],[[9938,9889,9925]],[[9897,9929,9889]],[[9893,9891,9917]],[[9890,480,9891]],[[9884,9931,9885]],[[9899,8436,9900]],[[8425,9912,8429]],[[8444,9901,9914]],[[9920,9928,9927]],[[9892,479,9928]],[[9939,9893,9894]],[[9920,9927,9893]],[[9900,8490,9923]],[[8490,9921,9924]],[[8746,9909,8427]],[[9905,8426,9909]],[[9915,9919,9918]],[[9918,9899,9931]],[[8424,9912,8425]],[[8424,8442,9912]],[[9940,9915,9918]],[[9915,9901,8434]],[[9902,9903,9914]],[[9940,9941,9902]],[[9898,9923,9938]],[[9898,9900,9923]],[[9923,9896,9938]],[[9923,9924,9896]],[[9898,9938,9925]],[[9896,9889,9938]],[[9891,9893,9890]],[[9939,8493,9920]],[[9926,9906,8426]],[[9942,8443,9907]],[[8444,9911,8442]],[[8444,9913,9911]],[[9937,9935,9936]],[[9926,9904,9935]],[[466,9920,8493]],[[9892,9928,9920]],[[8426,9910,8442]],[[9908,8443,9910]],[[9933,9934,9925]],[[9933,9886,9934]],[[9934,9932,9925]],[[9934,9885,9932]],[[9906,9937,9936]],[[9926,9935,9937]],[[9916,9929,9921]],[[9916,9917,9887]],[[9913,9914,9903]],[[9913,8444,9914]],[[9941,9940,9918]],[[9930,9884,9886]],[[9931,9899,9922]],[[9918,8436,9899]],[[9885,9931,9922]],[[9941,9918,9931]],[[9941,9930,9902]],[[9941,9931,9930]],[[9940,9902,9915]],[[9930,9886,9902]],[[9888,9917,9891]],[[9916,8492,9917]],[[9929,9887,9889]],[[9929,9916,9887]],[[8491,9895,8437]],[[8491,8490,9895]],[[8426,9906,9908]],[[9942,9936,8443]],[[9906,9942,9907]],[[9906,9936,9942]],[[8426,9908,9910]],[[9907,8443,9908]],[[559,9888,9891]],[[9887,9917,9888]],[[9893,9939,9920]],[[9894,8493,9939]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49220b8c-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5caa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9943,6905,6900]],[[9944,9945,6902]],[[6903,9944,6902]],[[6903,6905,9946]],[[6902,9943,6900]],[[9945,9946,9943]],[[6902,9945,9943]],[[9946,6905,9943]],[[9947,9946,9945]],[[9947,6903,9946]],[[9944,9947,9945]],[[9944,6903,9947]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4922cf69-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9948,9949,9950]],[[9951,9952,168]],[[9953,168,9954]],[[9955,170,9956]],[[9952,9957,9958]],[[9952,9959,7916]],[[9960,167,9961]],[[9961,167,9958]],[[9958,167,9952]],[[9957,921,9962]],[[7915,7916,9963]],[[1821,1823,7916]],[[171,9949,170]],[[171,9950,9949]],[[9954,9955,9956]],[[169,170,9955]],[[168,9952,167]],[[9964,9965,9949]],[[9966,9956,170]],[[9966,9965,9956]],[[9967,9960,976]],[[166,167,9960]],[[9963,9959,9948]],[[168,9953,9965]],[[169,9954,168]],[[169,9955,9954]],[[9962,9961,9958]],[[976,9960,9961]],[[7916,9957,9952]],[[9957,9962,9958]],[[9956,9953,9954]],[[9956,9965,9953]],[[166,9967,976]],[[166,9960,9967]],[[9949,9966,170]],[[9949,9965,9966]],[[1823,9957,7916]],[[1823,921,9957]],[[976,9962,921]],[[976,9961,9962]],[[9949,9959,9964]],[[9963,7916,9959]],[[9965,9964,168]],[[9959,9952,9951]],[[9964,9951,168]],[[9964,9959,9951]],[[9963,9948,9950]],[[9959,9949,9948]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4924564a-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef663949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9968,9969,9970]],[[9968,9970,9971]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492762e2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9972,8006,8007]],[[8007,8008,8009]],[[8010,8007,8009]],[[9972,8007,8010]],[[8011,9972,8010]],[[8011,8006,9972]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492910e5-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef501549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9973,235,9974]],[[9975,259,232]],[[9976,277,259]],[[9977,9978,259]],[[9979,277,9976]],[[9975,9980,259]],[[259,9981,9976]],[[9978,9981,259]],[[9982,9983,9976]],[[9976,9981,9982]],[[9984,277,9979]],[[9983,9985,9979]],[[9984,9974,9986]],[[9987,9988,232]],[[9989,9978,9980]],[[9980,9978,9977]],[[9981,9990,9982]],[[9984,9986,277]],[[235,277,9986]],[[9983,9984,9985]],[[9974,235,9986]],[[9983,9973,9984]],[[9983,9982,9990]],[[9983,9979,9976]],[[9985,9984,9979]],[[9991,9990,9978]],[[9990,9973,9983]],[[9984,9973,9974]],[[230,235,9973]],[[9987,9991,9988]],[[230,9973,9991]],[[9978,9990,9981]],[[9991,9973,9990]],[[9988,9975,232]],[[9989,9991,9978]],[[259,9980,9977]],[[9975,9988,9989]],[[9975,9989,9980]],[[9988,9991,9989]],[[230,9987,232]],[[230,9991,9987]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4929fae4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a1049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9074,9068,9067]],[[9068,9065,9067]],[[9068,9072,9065]],[[9068,9073,9072]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492abedc-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef928049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9992,9993,9994]],[[9995,9996,9997]],[[9995,9998,9999]],[[1376,10000,1374]],[[10001,10002,10003]],[[1376,10001,10000]],[[10001,10003,10004]],[[10005,10006,10001]],[[10005,8172,8173]],[[10004,10005,10001]],[[1010,1008,994]],[[10007,10008,10009]],[[994,10010,902]],[[994,1008,10010]],[[10011,7247,10012]],[[10013,7246,10014]],[[10015,10016,10017]],[[10018,7243,7245]],[[10019,7244,7243]],[[10020,10021,10022]],[[10023,10024,10017]],[[10025,10026,10027]],[[10016,10028,10027]],[[10029,10030,10031]],[[10032,10007,10033]],[[10034,10035,10036]],[[10037,646,10038]],[[645,646,10039]],[[10040,645,10039]],[[10041,9994,9993]],[[644,10041,10042]],[[10043,10033,10044]],[[10045,9993,9992]],[[10045,9992,10046]],[[9992,10040,10047]],[[10047,10040,10039]],[[10043,10044,10048]],[[10049,10050,10025]],[[10051,10049,10025]],[[10052,10051,10025]],[[10053,10052,10025]],[[10054,10053,10025]],[[10055,10054,10025]],[[10056,10055,10025]],[[10057,10056,10025]],[[10058,10057,10025]],[[10025,10059,10060]],[[10060,10058,10025]],[[10025,10029,10059]],[[10061,10059,10029]],[[10031,10061,10029]],[[10030,10029,10062]],[[10062,10029,10063]],[[10063,10029,10064]],[[10064,10029,10065]],[[10029,10066,10067]],[[10029,10068,10066]],[[10029,10069,10068]],[[10029,10070,10069]],[[10029,10071,10070]],[[10029,10072,10071]],[[10029,10073,10072]],[[10029,10074,10073]],[[10029,10075,10074]],[[10029,10076,10075]],[[10029,10077,10076]],[[10029,10078,10077]],[[10029,10079,10078]],[[10029,10080,10081]],[[10079,10029,10082]],[[10083,10084,10085]],[[10086,10029,10087]],[[10087,10088,10089]],[[10089,10090,10091]],[[10092,10093,10094]],[[10095,10091,10096]],[[10097,10098,10095]],[[10099,10100,10098]],[[10101,10102,10100]],[[10103,10104,10105]],[[10106,10103,10102]],[[10105,10107,10108]],[[10108,10109,10110]],[[10110,10111,10112]],[[10112,10113,10114]],[[10114,10115,10116]],[[10116,10117,10118]],[[10118,10119,10120]],[[10120,10083,10085]],[[10121,10122,10123]],[[10124,10125,10126]],[[10127,10128,10129]],[[10130,10131,10132]],[[10132,10133,10134]],[[10135,10136,10137]],[[10138,10139,10140]],[[10141,10142,10143]],[[10144,10145,10146]],[[10050,10147,10025]],[[10148,10149,10150]],[[10151,10152,10153]],[[10153,10152,10154]],[[10154,10152,10155]],[[10156,10154,10155]],[[10157,10156,10155]],[[10158,10026,10159]],[[10159,10026,10160]],[[10160,10026,10161]],[[10161,10026,10162]],[[10162,10026,10163]],[[10163,10026,10164]],[[10164,10026,10165]],[[10165,10026,10166]],[[10166,10026,10167]],[[10167,10026,10025]],[[10168,10167,10025]],[[10169,10168,10025]],[[10170,10169,10025]],[[10171,10170,10025]],[[10172,10171,10025]],[[10147,10172,10025]],[[10173,10174,10175]],[[10176,10177,10178]],[[10179,10180,10181]],[[10179,10182,10180]],[[10179,10183,10182]],[[10179,10184,10183]],[[10179,10185,10184]],[[10179,10186,10185]],[[10179,10187,10186]],[[10179,10188,10187]],[[10179,10189,10188]],[[10179,10190,10189]],[[10179,10191,10190]],[[10179,10192,10191]],[[10179,10193,10192]],[[10179,10194,10193]],[[10179,10195,10194]],[[10179,10196,10195]],[[10179,10197,10196]],[[10179,10198,10197]],[[10179,10199,10198]],[[10179,10200,10199]],[[10179,10201,10200]],[[10179,10202,10201]],[[10148,10203,10132]],[[10179,10204,10202]],[[10179,10205,10206]],[[10204,10179,10207]],[[10207,10179,10206]],[[10206,10205,10208]],[[10208,10205,10209]],[[10209,10205,10210]],[[10210,10205,10211]],[[10211,10205,10212]],[[10212,10205,10213]],[[10093,10205,10214]],[[10093,10213,10205]],[[10215,10216,1016]],[[10093,10217,10218]],[[10093,10219,10217]],[[10220,10221,10144]],[[10222,10223,10224]],[[10144,10225,10226]],[[10144,10226,10227]],[[10228,10229,10230]],[[10226,10231,10227]],[[10232,10233,10234]],[[10235,10230,10236]],[[10233,10237,10234]],[[10238,10239,10240]],[[10238,10240,10241]],[[10238,10241,10242]],[[10243,10244,10245]],[[10152,10246,10247]],[[10139,10248,10249]],[[10250,10135,10251]],[[10252,10253,10254]],[[10255,10227,10256]],[[10256,10227,10257]],[[10258,10259,10260]],[[10261,10262,10259]],[[10263,10264,10262]],[[10265,10266,10264]],[[10267,10268,10266]],[[10269,10270,10268]],[[10271,10085,10084]],[[10119,10083,10120]],[[10117,10119,10118]],[[10115,10117,10116]],[[10082,10029,10086]],[[10114,10113,10115]],[[10272,10179,10181]],[[10112,10111,10113]],[[10028,10179,10273]],[[10270,10274,10275]],[[10111,10110,10109]],[[10276,10277,10275]],[[10109,10108,10107]],[[10173,10277,10278]],[[10107,10105,10104]],[[10175,10279,10280]],[[10104,10103,10106]],[[10138,10140,10280]],[[10106,10102,10101]],[[10249,10248,10281]],[[10101,10100,10099]],[[10250,10251,10281]],[[10099,10098,10097]],[[10137,10251,10135]],[[10097,10095,10096]],[[10137,10136,10282]],[[10096,10091,10090]],[[10252,10254,10282]],[[10090,10089,10088]],[[10283,10284,10179]],[[10088,10087,10285]],[[10286,10287,10288]],[[10285,10087,10029]],[[10176,10287,10289]],[[10081,10285,10029]],[[10178,10290,10291]],[[10080,10029,10292]],[[10293,10294,10291]],[[10292,10028,10295]],[[10296,10294,10297]],[[10295,10028,10273]],[[10298,10299,10300]],[[10273,10179,10301]],[[10302,10299,10303]],[[10301,10179,10304]],[[10302,10305,10181]],[[10304,10179,10306]],[[10296,10307,10300]],[[10306,10179,10284]],[[10308,10309,10288]],[[10308,10254,10253]],[[10179,10310,10283]],[[10249,10140,10139]],[[10310,10179,10311]],[[10311,10179,10312]],[[10312,10179,10313]],[[10313,10179,10272]],[[10272,10181,10305]],[[10305,10302,10303]],[[10303,10299,10298]],[[10298,10300,10307]],[[10307,10296,10297]],[[10297,10294,10293]],[[10293,10291,10290]],[[10290,10178,10177]],[[10177,10176,10289]],[[10289,10287,10286]],[[10286,10288,10309]],[[10309,10308,10253]],[[10136,10252,10282]],[[10255,10314,10227]],[[10314,10144,10227]],[[10248,10250,10281]],[[10315,10144,10314]],[[10316,10317,10144]],[[10279,10138,10280]],[[10174,10279,10175]],[[10278,10174,10173]],[[10276,10278,10277]],[[10274,10276,10275]],[[10269,10274,10270]],[[10267,10269,10268]],[[10265,10267,10266]],[[10263,10265,10264]],[[10262,10261,10263]],[[10259,10258,10261]],[[10260,10257,10227]],[[10258,10260,10227]],[[10132,10318,10319]],[[10320,10258,10227]],[[10132,10203,10321]],[[10322,10227,10323]],[[10132,10324,10325]],[[10323,10227,10326]],[[10327,10324,10132]],[[10155,10141,10328]],[[10329,10152,10330]],[[10132,10152,10329]],[[10331,10132,10319]],[[10332,10132,10131]],[[10333,10334,10148]],[[10335,10336,10148]],[[10132,10331,10130]],[[10148,10337,10149]],[[10148,10338,10337]],[[10148,10339,10338]],[[10331,10129,10128]],[[10148,10132,10339]],[[10339,10132,10134]],[[10129,10340,10127]],[[10132,10332,10133]],[[10126,10125,10340]],[[10128,10130,10331]],[[10341,10124,10126]],[[10125,10127,10340]],[[10123,10122,10341]],[[10122,10124,10341]],[[10271,10121,10123]],[[10084,10121,10271]],[[10010,1008,10205]],[[10342,907,10343]],[[10343,1010,10342]],[[10344,1011,1010]],[[8171,10345,10346]],[[1008,1016,10205]],[[10035,10034,10347]],[[10348,10349,10350]],[[10351,10004,10003]],[[9995,9999,10352]],[[10353,10354,10355]],[[10356,10357,10358]],[[10359,10360,10347]],[[10361,10362,10363]],[[10357,10364,10358]],[[10365,10366,10357]],[[10367,10368,10369]],[[10370,10371,10372]],[[9996,9995,10373]],[[10374,10375,10376]],[[10377,9997,9996]],[[10361,10378,10362]],[[10379,10380,10381]],[[10382,10383,10384]],[[10148,10334,10385]],[[10382,10386,10383]],[[10330,10152,10387]],[[9996,10388,10389]],[[10390,10391,10152]],[[10392,10389,10393]],[[10390,10152,10394]],[[10393,10389,10395]],[[10152,10151,10394]],[[10389,10396,10397]],[[10155,10158,10157]],[[10398,10333,10148]],[[10396,10389,10388]],[[10398,10148,10399]],[[10388,10026,10379]],[[10148,10336,10399]],[[10400,10401,10402]],[[10150,10335,10148]],[[10381,10388,10379]],[[10403,10388,10381]],[[10132,10329,10327]],[[10404,10148,10385]],[[10380,10379,10405]],[[10406,10407,10144]],[[10328,10143,10408]],[[10404,10409,10148]],[[10326,10148,10409]],[[10315,10316,10144]],[[10152,10247,10155]],[[10407,10410,10144]],[[10132,10321,10152]],[[10410,10411,10144]],[[10411,10145,10144]],[[10326,10227,10148]],[[10412,10413,10414]],[[10415,10238,10416]],[[10417,10415,10416]],[[10418,10417,10416]],[[10414,10418,10416]],[[10414,10416,10243]],[[10414,10413,10419]],[[10148,10227,10232]],[[10146,10420,10144]],[[10420,10421,10230]],[[10420,10230,10144]],[[10422,10230,10421]],[[10236,10230,10422]],[[10423,10230,10235]],[[10424,10228,10230]],[[10229,10224,10223]],[[10229,10223,10230]],[[10219,10093,10222]],[[10220,10144,10230]],[[10425,10220,10230]],[[10230,10423,10424]],[[10230,10426,10427]],[[10093,10092,10428]],[[10230,10223,10426]],[[10429,10430,10214]],[[10431,10426,10223]],[[10093,10218,10094]],[[10432,10433,10093]],[[10093,10223,10222]],[[10429,10434,10435]],[[10216,10436,10214]],[[10214,10205,10216]],[[10214,10437,10438]],[[10214,10436,10437]],[[10439,10440,10216]],[[10441,10439,10216]],[[10442,10443,10215]],[[10215,10443,10444]],[[10445,10446,10442]],[[10447,10448,10449]],[[10450,10451,10445]],[[10452,10453,10451]],[[10452,10454,10453]],[[10455,10447,10449]],[[10456,10454,10455]],[[10447,10457,10448]],[[10457,10458,10459]],[[10460,10461,10462]],[[10461,10463,10462]],[[10461,10464,10463]],[[10035,10346,10345]],[[10465,10466,10464]],[[10464,1011,10465]],[[9867,10467,10365]],[[10465,10468,10469]],[[10470,10471,10472]],[[10470,10360,10473]],[[10473,10474,10475]],[[10476,10477,10474]],[[10477,10359,10478]],[[10479,10480,10481]],[[10479,10366,10480]],[[10482,10483,10484]],[[10485,10467,10486]],[[10485,10486,10487]],[[10467,10488,10489]],[[10488,10490,10491]],[[10374,9866,9997]],[[10491,10492,10493]],[[10494,9866,10495]],[[10492,10490,10496]],[[10496,9867,10494]],[[10497,10496,10494]],[[10498,10494,10499]],[[10499,10494,10495]],[[10495,9866,10500]],[[10501,10495,10500]],[[10500,9866,10502]],[[10502,9866,10503]],[[10504,10502,10503]],[[10503,9866,10374]],[[10377,10505,10374]],[[10377,10506,10505]],[[10507,10508,10377]],[[10509,10510,10508]],[[10511,10418,10414]],[[10512,10244,10243]],[[10471,10470,10475]],[[10347,10364,10357]],[[10406,10144,10317]],[[10221,10225,10144]],[[1016,10216,10205]],[[10440,10436,10216]],[[10320,10227,10322]],[[10231,10237,10233]],[[10513,10214,10438]],[[10513,10429,10214]],[[10507,10377,9996]],[[10508,10506,10377]],[[10478,10359,10481]],[[10347,10357,10359]],[[10514,10230,10427]],[[10514,10425,10230]],[[10470,10465,1011]],[[10469,10466,10465]],[[10387,10152,10391]],[[10321,10246,10152]],[[10377,10374,9997]],[[10505,10375,10374]],[[10468,10470,10472]],[[1011,10344,10346]],[[10515,10223,10093]],[[10433,10431,10223]],[[10376,10503,10374]],[[10516,10504,10503]],[[10517,10328,10408]],[[10026,10155,10328]],[[10450,10452,10451]],[[1016,10454,10452]],[[10412,10243,10245]],[[10416,10512,10243]],[[10483,10365,10487]],[[10489,10518,10486]],[[10460,10519,10461]],[[1011,10464,10461]],[[10366,10365,10482]],[[10357,9867,10365]],[[10450,10442,1016]],[[10446,10443,10442]],[[10518,10488,10493]],[[9867,10496,10490]],[[10442,10450,10445]],[[1016,10452,10450]],[[1011,10447,1016]],[[1011,10519,10447]],[[10328,10379,10026]],[[10328,10517,10405]],[[10520,10392,10393]],[[9996,10389,10392]],[[10158,10155,10026]],[[10521,10142,10522]],[[10442,10215,1016]],[[10444,10439,10441]],[[10523,10496,10497]],[[10523,10492,10496]],[[10524,10495,10525]],[[10524,10499,10495]],[[10526,10502,10504]],[[10527,10528,10500]],[[10361,10363,10507]],[[10362,10510,10363]],[[10529,10464,10466]],[[10529,10463,10464]],[[10361,10507,9996]],[[10509,10508,10507]],[[10395,10389,10397]],[[9996,10026,10388]],[[10457,10519,10458]],[[1011,10461,10519]],[[10497,10494,10498]],[[9867,9866,10494]],[[10402,10388,10403]],[[10530,10396,10388]],[[10392,10361,9996]],[[10384,10378,10361]],[[9867,10488,10467]],[[9867,10490,10488]],[[10148,10232,10415]],[[10234,10239,10232]],[[10527,10500,10502]],[[10501,10525,10495]],[[10453,10454,10456]],[[1016,10447,10454]],[[10232,10238,10415]],[[10232,10239,10238]],[[10242,10512,10416]],[[10241,10244,10512]],[[10359,10479,10481]],[[10359,10366,10479]],[[10470,10473,10475]],[[10360,10476,10473]],[[10473,10476,10474]],[[10477,10478,10474]],[[10531,10532,10019]],[[10023,10017,7244]],[[10533,10534,10351]],[[10002,10349,10003]],[[10141,10522,10142]],[[10521,10247,10142]],[[10412,10414,10243]],[[10419,10511,10414]],[[10531,10021,10532]],[[10021,10028,10016]],[[10535,10517,10408]],[[10405,10379,10328]],[[10238,10242,10416]],[[10241,10512,10242]],[[10470,1011,10035]],[[8171,8172,10036]],[[10042,10041,9993]],[[10040,643,645]],[[10047,10039,10037]],[[10047,10043,9992]],[[10360,10477,10476]],[[10360,10359,10477]],[[10488,10491,10493]],[[10490,10492,10491]],[[10386,10520,10393]],[[10386,10392,10520]],[[10013,10014,10012]],[[7246,7247,10014]],[[10536,10537,10370]],[[10538,10349,10539]],[[10355,10540,10356]],[[10541,10542,10369]],[[10543,10544,10371]],[[10545,10546,10547]],[[10548,10549,10550]],[[10551,10552,10537]],[[10553,9998,10554]],[[10372,10555,10556]],[[10549,10554,10550]],[[10546,10545,10543]],[[10557,10558,10373]],[[10038,9996,10373]],[[10545,10555,10372]],[[10551,10537,10536]],[[10467,10489,10486]],[[10488,10518,10489]],[[10559,10531,7245]],[[7245,10531,10018]],[[10392,10382,10361]],[[10383,10378,10384]],[[10480,10366,10484]],[[10359,10357,10366]],[[8170,10343,907]],[[8170,10560,10561]],[[10356,10562,10353]],[[10356,10358,10563]],[[10328,10141,10143]],[[10155,10522,10141]],[[10365,10485,10487]],[[10365,10467,10485]],[[10458,10460,10462]],[[10458,10519,10460]],[[10564,10527,10502]],[[10564,10528,10527]],[[10565,10132,10325]],[[10565,10318,10132]],[[10366,10482,10484]],[[10365,10483,10482]],[[644,9994,10041]],[[644,643,9994]],[[10561,10560,10344]],[[10346,10035,1011]],[[994,10342,1010]],[[994,907,10342]],[[10564,10526,10504]],[[10564,10502,10526]],[[10363,10509,10507]],[[10363,10510,10509]],[[10538,10548,10349]],[[10540,10537,10552]],[[10373,9995,10539]],[[10548,10543,10349]],[[10550,10566,10548]],[[10550,10554,10566]],[[10000,10001,10006]],[[1376,10002,10001]],[[10543,10370,10355]],[[10370,10537,10540]],[[10470,10035,10347]],[[10004,10567,10005]],[[10345,10036,10035]],[[10345,8171,10036]],[[10347,10034,10568]],[[10036,8172,10567]],[[10569,10347,10568]],[[10567,8172,10005]],[[10348,10351,10003]],[[10568,10034,10567]],[[10533,10570,10569]],[[10360,10470,10347]],[[10361,10382,10384]],[[10392,10386,10382]],[[10429,10435,10430]],[[10434,10432,10435]],[[10213,10093,10428]],[[10430,10432,10093]],[[10214,10430,10093]],[[10435,10432,10430]],[[10552,10547,10356]],[[9998,10356,10554]],[[10544,10543,10545]],[[10571,10554,10546]],[[10370,10372,10556]],[[10546,10554,10547]],[[9994,10040,9992]],[[9994,643,10040]],[[10013,10559,7245]],[[10012,10531,10559]],[[10448,10457,10459]],[[10447,10519,10457]],[[10020,10023,7244]],[[10022,10021,10023]],[[10528,10501,10500]],[[10528,10525,10501]],[[10551,10556,10547]],[[10547,10556,10555]],[[10568,10567,10004]],[[10034,10036,10567]],[[10020,10572,10021]],[[10573,10016,10015]],[[10574,10548,10538]],[[10566,10575,10571]],[[10576,10352,10538]],[[9999,9998,10577]],[[10530,10401,10400]],[[10530,10388,10401]],[[10516,10376,10375]],[[10516,10503,10376]],[[10369,10542,10578]],[[10368,10367,10348]],[[10563,10358,10369]],[[10579,10563,10578]],[[10369,10368,10541]],[[10367,10351,10348]],[[10563,10369,10578]],[[10358,10367,10369]],[[10580,10541,10368]],[[10354,10542,10541]],[[10356,10353,10355]],[[10354,10541,10580]],[[10562,10581,10353]],[[10578,10542,10354]],[[10562,10563,10581]],[[10562,10356,10563]],[[10349,10543,10355]],[[10548,10566,10543]],[[10556,10536,10370]],[[10556,10551,10536]],[[10561,10344,1010]],[[10560,8170,10346]],[[10560,10346,10344]],[[8170,8171,10346]],[[10024,10573,10017]],[[10024,10021,10573]],[[10155,10521,10522]],[[10155,10247,10521]],[[10533,10351,10367]],[[10534,10004,10351]],[[10014,10011,10012]],[[10014,7247,10011]],[[10032,10047,10038]],[[10033,10043,10047]],[[10544,10372,10371]],[[10544,10545,10372]],[[10352,10574,10538]],[[10352,9999,10574]],[[10540,10552,10356]],[[10547,10554,10356]],[[10018,10531,7243]],[[10012,10021,10531]],[[10029,10025,10027]],[[10029,10067,10065]],[[10534,10568,10004]],[[10534,10569,10568]],[[10047,10032,10033]],[[10038,10008,10032]],[[10033,10007,10009]],[[10557,10373,10539]],[[10008,10558,10009]],[[10008,10373,10558]],[[10009,10557,10539]],[[10009,10558,10557]],[[10032,10008,10007]],[[10038,10373,10008]],[[10456,10455,10449]],[[10454,10447,10455]],[[10227,10233,10232]],[[10227,10231,10233]],[[10364,10570,10533]],[[10364,10347,10570]],[[10350,10580,10368]],[[10579,10581,10563]],[[10350,10354,10580]],[[10353,10581,10354]],[[10355,10350,10349]],[[10355,10354,10350]],[[10349,10348,10003]],[[10350,10368,10348]],[[10354,10579,10578]],[[10354,10581,10579]],[[10047,10037,10038]],[[10039,646,10037]],[[10023,10021,10024]],[[10012,10028,10021]],[[10532,10572,7244]],[[10532,10021,10572]],[[10352,10576,9995]],[[10538,10539,9995]],[[9998,9995,9997]],[[10576,10538,9995]],[[10017,10573,10015]],[[10021,10016,10573]],[[10433,10515,10093]],[[10433,10223,10515]],[[10572,10020,7244]],[[10022,10023,10020]],[[10535,10405,10517]],[[10535,10380,10405]],[[10574,10577,10553]],[[10574,9999,10577]],[[10549,10553,10554]],[[10577,9998,10553]],[[10574,10549,10548]],[[10574,10553,10549]],[[10469,10468,10472]],[[10465,10470,10468]],[[10215,10441,10216]],[[10215,10444,10441]],[[10543,10566,10571]],[[10566,10554,10575]],[[10543,10571,10546]],[[10575,10554,10571]],[[10551,10547,10552]],[[10555,10545,10547]],[[10343,10561,1010]],[[10343,8170,10561]],[[10400,10402,10403]],[[10401,10388,10402]],[[10028,10029,10027]],[[10028,10292,10029]],[[10355,10370,10540]],[[10543,10371,10370]],[[10559,10013,10012]],[[7245,7246,10013]],[[10531,10019,7243]],[[10532,7244,10019]],[[10533,10569,10534]],[[10570,10347,10569]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492c6bd0-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef790749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8402,1097,1105]],[[8402,1105,8744]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492d56e7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3100,3102,3165]],[[3100,3165,3108]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492e19ca-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cab49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10582,10583,10584]],[[10585,10586,10587]],[[10588,6932,6933]],[[10589,10590,10588]],[[6932,10590,10591]],[[6886,10592,6913]],[[10593,10594,6974]],[[10587,10586,10595]],[[10596,8681,6910]],[[10597,10594,10598]],[[6974,6975,10593]],[[10599,10600,10601]],[[10591,6912,10592]],[[10596,10602,10603]],[[10592,6912,6913]],[[10604,10584,6975]],[[10583,10595,10593]],[[10582,10587,10595]],[[10600,10599,6911]],[[10593,10586,10594]],[[10587,10605,10585]],[[10601,10606,6910]],[[10602,10587,10603]],[[6911,10599,6910]],[[10607,10605,10587]],[[10588,10590,6932]],[[10591,10608,6912]],[[10589,10585,10609]],[[10607,10602,10610]],[[10604,10603,10582]],[[10595,10586,10593]],[[10607,10610,10600]],[[10606,10596,6910]],[[10599,10601,6910]],[[10610,10602,10606]],[[8681,10604,6975]],[[8681,10603,10604]],[[10610,10606,10601]],[[10602,10596,10606]],[[6925,10588,6933]],[[6925,10589,10588]],[[10601,10600,10610]],[[6911,6912,10600]],[[10608,10607,10600]],[[10587,10602,10607]],[[10584,10593,6975]],[[10584,10583,10593]],[[6932,10591,6886]],[[10608,10605,10607]],[[6886,10591,10592]],[[10609,10585,10605]],[[6912,10608,10600]],[[10591,10590,10608]],[[10596,10603,8681]],[[10595,10583,10582]],[[10604,10582,10584]],[[10603,10587,10582]],[[10611,10589,6925]],[[10609,10605,10608]],[[10611,10597,10589]],[[10594,10586,10598]],[[6974,10611,6925]],[[6974,10594,10597]],[[10589,10597,10598]],[[10611,6974,10597]],[[10598,10585,10589]],[[10598,10586,10585]],[[10590,10609,10608]],[[10590,10589,10609]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492e6811-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef608949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6710,6706,6709]],[[10612,6711,10613]],[[6706,6710,10613]],[[10614,6706,10613]],[[10613,6711,10615]],[[10615,295,297]],[[10615,6711,295]],[[10612,10616,6711]],[[6710,6711,10616]],[[6710,10612,10613]],[[6710,10616,10612]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492f03ba-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10617,10618,7732]],[[10619,9807,10620]],[[7730,10621,10622]],[[10622,10621,10618]],[[9810,10623,9808]],[[10624,7732,7759]],[[9803,10623,7760]],[[9803,7760,10625]],[[10625,7760,7752]],[[10626,7732,10624]],[[9810,9807,10619]],[[10617,7732,10626]],[[10627,10628,10629]],[[10630,10626,10624]],[[7754,10625,7752]],[[7754,9803,10625]],[[7730,10618,10621]],[[7730,7732,10618]],[[10623,10631,10632]],[[10633,10634,10635]],[[10627,10636,10628]],[[7760,10632,10636]],[[10633,10622,10618]],[[10635,10637,10622]],[[7759,10627,10629]],[[10636,10632,10628]],[[10629,10624,7759]],[[10629,10630,10624]],[[10638,10637,10639]],[[10637,7730,10622]],[[10623,10640,10634]],[[10623,9810,10640]],[[10631,10633,10617]],[[10633,10618,10617]],[[10626,10631,10617]],[[10638,10639,10640]],[[10631,10634,10633]],[[10640,10639,10635]],[[10633,10635,10622]],[[10634,10640,10635]],[[10639,10637,10635]],[[10620,7730,10637]],[[10632,10631,10626]],[[10623,10634,10631]],[[10628,10632,10626]],[[7760,10623,10632]],[[9810,10619,10640]],[[10619,10637,10638]],[[10637,10619,10620]],[[10638,10640,10619]],[[7760,10627,7759]],[[7760,10636,10627]],[[10628,10630,10629]],[[10628,10626,10630]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49310031-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef790849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10641,10642,10643]],[[10644,10641,10643]],[[10645,10646,10643]],[[10643,10042,10644]],[[10643,10646,10042]],[[10647,10648,10646]],[[10649,644,10042]],[[652,10650,10651]],[[10647,10646,10652]],[[10653,10648,10650]],[[10646,10645,10652]],[[652,10653,10650]],[[652,644,10653]],[[10653,10654,10649]],[[10653,644,10654]],[[10653,10646,10648]],[[10653,10649,10646]],[[10646,10649,10042]],[[10654,644,10649]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4931275f-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef949349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10655,2887,2888]],[[8158,2887,10655]],[[8156,8567,8155]],[[8156,8157,8568]],[[8156,8568,8567]],[[8568,10656,8566]],[[10657,2886,8565]],[[10657,2888,2886]],[[10655,8157,8158]],[[10656,10657,8565]],[[8568,8157,10655]],[[10657,10655,2888]],[[10657,10656,10655]],[[8566,10656,8565]],[[8568,10655,10656]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4931c302-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10658,10659,10660]],[[10661,10662,10663]],[[10027,10664,10016]],[[10665,10666,10667]],[[10668,10664,10669]],[[10661,10670,10662]],[[10661,10671,10670]],[[10668,10672,10673]],[[10017,10674,10675]],[[10675,10676,10671]],[[10677,10678,10672]],[[10679,6662,6840]],[[10680,7265,10681]],[[10682,7195,7252]],[[10682,10683,7195]],[[10683,10684,10685]],[[10686,10687,10688]],[[10685,10684,7203]],[[10688,10687,10689]],[[10690,10687,10691]],[[10692,10693,10694]],[[10695,10696,10697]],[[7182,10696,7180]],[[10693,7168,7201]],[[10698,10699,7214]],[[10681,7183,10680]],[[10700,7216,7214]],[[10697,7268,7216]],[[10695,7180,10696]],[[7267,7265,7266]],[[10701,7168,10693]],[[10702,7202,10703]],[[10704,10705,10706]],[[10707,10694,10704]],[[10708,10709,10710]],[[10711,10712,10713]],[[10714,10715,10716]],[[10717,6752,10718]],[[10719,6751,10720]],[[10721,10722,10723]],[[10724,10717,10725]],[[10726,6841,10727]],[[10728,10729,10730]],[[10731,10728,10730]],[[10732,10733,10734]],[[10735,10736,10737]],[[10738,6677,6654]],[[10739,6660,6661]],[[10730,10740,10731]],[[10741,10742,10743]],[[10744,10745,10746]],[[10747,10748,10745]],[[6671,10749,6685]],[[10746,10730,10750]],[[10751,6683,6684]],[[10752,10753,10754]],[[10753,502,10754]],[[10752,504,6683]],[[500,502,517]],[[10755,10756,10757]],[[10758,10759,10760]],[[10761,517,10753]],[[10762,10755,10763]],[[10764,647,10765]],[[10766,625,10767]],[[10768,646,647]],[[10769,10712,10770]],[[10771,10678,10677]],[[10772,10773,10774]],[[10775,10776,10777]],[[10778,10779,10780]],[[10708,10781,10782]],[[10783,10729,10728]],[[10750,10784,10744]],[[10782,10709,10708]],[[10772,10678,10771]],[[10785,10702,10703]],[[7202,7203,10684]],[[10664,10786,10669]],[[10786,10787,10771]],[[10788,10714,10738]],[[10731,10789,10728]],[[10786,10771,10677]],[[10773,10772,10771]],[[10790,10791,10792]],[[10793,10753,10794]],[[10795,10796,10781]],[[10797,10798,10799]],[[10800,10696,7182]],[[10800,7268,10697]],[[10801,626,10762]],[[10791,513,10792]],[[7183,10800,7182]],[[7183,10802,10800]],[[10803,10739,10804]],[[10727,6748,6750]],[[10805,10806,10807]],[[10808,10798,10809]],[[10810,10809,10811]],[[10691,10772,10779]],[[10806,10805,10733]],[[10812,10807,10780]],[[10680,10813,10814]],[[10813,7168,10815]],[[6685,10749,10747]],[[10748,6675,10745]],[[10726,10727,10711]],[[6841,6748,10727]],[[10816,10804,10679]],[[10817,6662,10818]],[[10693,10692,10701]],[[7201,10702,10693]],[[10819,10778,10780]],[[10820,6753,10707]],[[10821,10778,10822]],[[10820,10718,6753]],[[10819,10810,10778]],[[10823,10824,10825]],[[10775,10826,10827]],[[10737,6684,10776]],[[10828,10829,10830]],[[10793,10831,10753]],[[10832,10732,10734]],[[10819,10833,10834]],[[10835,10836,10837]],[[10838,10839,10840]],[[6677,10730,10746]],[[6677,10740,10730]],[[10800,10697,10696]],[[7218,7180,10695]],[[10841,10660,10842]],[[10841,10843,10660]],[[10828,10842,10844]],[[10844,10829,10828]],[[10845,10841,10842]],[[10843,10846,10658]],[[10847,10828,10830]],[[10845,10842,10828]],[[10799,10848,10797]],[[10849,6752,10717]],[[10850,10810,10811]],[[10770,10712,10711]],[[10851,10787,10786]],[[10851,10773,10852]],[[10669,10786,10677]],[[10853,10854,10710]],[[10855,10856,10786]],[[10786,10856,10851]],[[10852,10773,10771]],[[10774,10709,10772]],[[10857,10776,6684]],[[10784,10729,10858]],[[10675,10674,10676]],[[10027,10855,10664]],[[10747,10857,6684]],[[10745,6676,10746]],[[10768,10764,10760]],[[10859,10860,10861]],[[10713,10862,10711]],[[10726,10711,10816]],[[10788,10738,6654]],[[10740,6677,10738]],[[10863,10864,10815]],[[7183,7168,10813]],[[10767,10801,10743]],[[10865,10843,10866]],[[10038,10759,10758]],[[625,626,10767]],[[10867,10868,10834]],[[10869,10770,10870]],[[10830,10871,10872]],[[10873,10659,10793]],[[10839,10734,10840]],[[10874,10666,10665]],[[10847,10866,10828]],[[10846,10865,10875]],[[10876,10865,10866]],[[10875,10877,10878]],[[10717,10718,10811]],[[6752,6753,10718]],[[10789,10832,10734]],[[10879,10713,10733]],[[10701,10863,7168]],[[10815,7168,10863]],[[10880,10881,10882]],[[10883,517,10761]],[[10823,10884,10850]],[[10821,10779,10778]],[[10700,10697,7216]],[[10885,10695,10697]],[[10886,10887,10888]],[[10756,10755,10889]],[[503,10754,502]],[[10890,504,10752]],[[10875,10742,10877]],[[10741,10891,10742]],[[10892,10893,10742]],[[10893,10894,10743]],[[10790,10792,517]],[[513,517,10792]],[[10895,10896,10897]],[[10887,10756,10898]],[[10715,10899,10716]],[[6659,6660,10899]],[[10900,10666,10901]],[[10900,10667,10666]],[[10747,10745,10857]],[[6675,6676,10745]],[[10785,10694,10693]],[[7201,7202,10702]],[[10846,10896,10880]],[[10790,10902,10791]],[[10880,10883,10881]],[[10880,10658,10846]],[[10857,10745,10744]],[[10730,10729,10750]],[[10744,10746,10750]],[[6676,6677,10746]],[[10844,10660,10873]],[[10903,10882,10831]],[[10829,10793,10794]],[[10831,10881,10761]],[[10859,10904,10860]],[[10860,625,10861]],[[10664,10855,10786]],[[10027,10856,10855]],[[10833,10807,10869]],[[10840,10734,10805]],[[10809,10717,10811]],[[10725,10797,10848]],[[6658,10905,6654]],[[10906,6659,10715]],[[10738,10714,10740]],[[10715,6659,10899]],[[10907,10700,7214]],[[10908,10885,10700]],[[10830,10872,10909]],[[10871,6683,10872]],[[10827,10737,10776]],[[10909,10872,10735]],[[10737,10910,6684]],[[10751,10735,6683]],[[10859,10760,10764]],[[10038,646,10768]],[[10911,10912,10835]],[[10913,10912,10854]],[[10794,10753,10752]],[[517,502,10753]],[[10763,10801,10762]],[[626,627,10762]],[[10914,10801,10915]],[[10762,627,10889]],[[10880,10896,10895]],[[10888,10887,10791]],[[10902,10888,10791]],[[10889,10755,10762]],[[10790,10916,10897]],[[10896,10886,10902]],[[10758,10766,10767]],[[10917,625,10766]],[[10918,10906,10715]],[[6658,6659,10906]],[[6841,10679,6840]],[[10818,6662,10679]],[[10919,10854,10853]],[[10710,10709,10920]],[[10911,10710,10854]],[[10837,10795,10781]],[[10774,10920,10709]],[[10851,10919,10853]],[[10731,10716,10832]],[[10899,6660,10716]],[[6660,10739,10716]],[[10803,10804,10862]],[[10716,10739,10732]],[[10817,10818,10921]],[[10723,10719,10848]],[[6751,6752,10720]],[[10905,10715,10714]],[[10918,6658,10906]],[[10724,10725,10848]],[[10725,10798,10797]],[[10787,10852,10771]],[[10787,10851,10852]],[[10660,10843,10658]],[[10846,10875,10878]],[[10714,10731,10740]],[[10714,10716,10731]],[[7217,10698,7214]],[[10908,10700,10699]],[[623,10765,647]],[[623,10904,10859]],[[10679,10726,10816]],[[10679,6841,10726]],[[10878,10922,10896]],[[10922,10915,10755]],[[10836,10795,10837]],[[10836,10796,10795]],[[10923,10924,10708]],[[10837,10781,10708]],[[10794,10752,6683]],[[10754,10890,10752]],[[10925,10858,10901]],[[10911,10854,10912]],[[10919,10913,10854]],[[10835,10926,10836]],[[10777,10925,10901]],[[10750,10729,10784]],[[10681,10802,7183]],[[7268,10800,10802]],[[10743,10801,10914]],[[10767,626,10801]],[[10735,10827,10909]],[[10927,10775,10874]],[[10660,10844,10842]],[[10660,10659,10873]],[[10694,10928,10704]],[[10929,10690,10825]],[[10706,10707,10704]],[[10686,10683,10687]],[[10692,10694,7264]],[[10693,10702,10785]],[[10930,10661,10663]],[[10675,10671,10661]],[[10812,10796,10807]],[[10805,10734,10733]],[[10812,10780,10779]],[[10807,10833,10780]],[[10796,10805,10807]],[[10796,10836,10838]],[[10796,10840,10805]],[[10839,10926,10858]],[[10700,10885,10697]],[[7218,10695,10885]],[[6671,10748,10749]],[[6671,6675,10748]],[[10871,10794,6683]],[[10871,10830,10794]],[[10866,10845,10828]],[[10866,10843,10845]],[[10905,10788,6654]],[[10905,10714,10788]],[[10931,10812,10709]],[[10691,10678,10772]],[[10778,10810,10850]],[[10868,10809,10810]],[[10851,10774,10773]],[[10920,10853,10710]],[[10851,10920,10774]],[[10851,10853,10920]],[[10867,10834,10833]],[[10868,10810,10834]],[[10833,10819,10780]],[[10834,10810,10819]],[[10734,10783,10789]],[[10783,10839,10858]],[[10808,10770,10798]],[[10869,10806,10770]],[[10814,10864,10701]],[[10813,10815,10864]],[[10692,10814,10701]],[[10864,10863,10701]],[[10932,10933,10901]],[[10934,10935,10936]],[[10856,10937,10919]],[[10912,10938,10835]],[[10851,10856,10919]],[[10938,10932,10835]],[[10684,10785,10703]],[[10928,10694,10785]],[[10821,10884,10939]],[[10705,10704,10940]],[[9996,10893,10026]],[[10893,10743,10742]],[[503,10890,10754]],[[503,504,10890]],[[10905,10918,10715]],[[10905,6658,10918]],[[10941,10942,10943]],[[10942,10866,10847]],[[10943,10942,10944]],[[10941,10866,10942]],[[10874,10934,10927]],[[10775,10827,10776]],[[7218,10908,7217]],[[7218,10885,10908]],[[10659,10831,10793]],[[10881,10883,10761]],[[10753,10831,10761]],[[10882,10658,10880]],[[10737,10736,10910]],[[10737,10827,10735]],[[10921,10804,10739]],[[10921,10679,10804]],[[10796,10812,10781]],[[10812,10772,10709]],[[10772,10812,10779]],[[10931,10781,10812]],[[10901,10933,10900]],[[10027,10026,10667]],[[10902,10790,10897]],[[10883,10880,10895]],[[10916,10895,10897]],[[10916,10883,10895]],[[10666,10874,10901]],[[10925,10784,10858]],[[10776,10925,10777]],[[10744,10784,10925]],[[10769,10806,10733]],[[10869,10807,10806]],[[10699,10907,7214]],[[10699,10700,10907]],[[10829,10873,10793]],[[10829,10844,10873]],[[10672,10669,10677]],[[10668,10676,10664]],[[10847,10830,10909]],[[10829,10794,10830]],[[10731,10832,10789]],[[10716,10732,10832]],[[10757,10922,10755]],[[10891,10741,10914]],[[10869,10867,10833]],[[10869,10868,10867]],[[10720,10849,10724]],[[10720,6752,10849]],[[10910,10751,6684]],[[10910,10736,10751]],[[10675,10930,10663]],[[10675,10661,10930]],[[10846,10878,10896]],[[10877,10891,10945]],[[10845,10843,10841]],[[10865,10846,10843]],[[10659,10903,10831]],[[10659,10658,10903]],[[10831,10882,10881]],[[10903,10658,10882]],[[10824,10823,10811]],[[10822,10778,10850]],[[10939,10823,10825]],[[10850,10811,10823]],[[10939,10884,10823]],[[10822,10850,10884]],[[10826,10847,10909]],[[10944,10942,10847]],[[10933,10856,10027]],[[10946,10938,10913]],[[10667,10933,10027]],[[10667,10900,10933]],[[10768,10759,10038]],[[10760,10766,10758]],[[10711,10722,10798]],[[10719,6750,6751]],[[10947,10927,10936]],[[10927,10934,10936]],[[10760,10859,10861]],[[10765,623,10859]],[[10932,10858,10926]],[[10932,10901,10858]],[[10729,10783,10858]],[[10728,10789,10783]],[[10824,10929,10825]],[[10691,10779,10821]],[[10884,10821,10822]],[[10939,10691,10821]],[[10939,10690,10691]],[[10939,10825,10690]],[[10929,10948,10690]],[[10687,10690,10948]],[[10940,10689,10705]],[[10687,10948,10689]],[[10948,10929,10689]],[[10707,6753,7264]],[[10928,10940,10704]],[[10928,10686,10688]],[[10940,10688,10689]],[[10940,10928,10688]],[[10689,10706,10705]],[[10824,10811,10820]],[[10891,10914,10915]],[[10741,10743,10914]],[[10776,10744,10925]],[[10776,10857,10744]],[[10861,10917,10766]],[[10861,625,10917]],[[10711,10862,10816]],[[10804,10816,10862]],[[10732,10879,10733]],[[10732,10739,10803]],[[10879,10803,10862]],[[10879,10732,10803]],[[10876,10892,10865]],[[10876,10893,10892]],[[10949,10893,10876]],[[10894,10758,10767]],[[10886,10757,10887]],[[10886,10922,10757]],[[10809,10725,10717]],[[10809,10798,10725]],[[10913,10938,10912]],[[10932,10926,10835]],[[10927,10943,10944]],[[10949,10876,10941]],[[10026,10941,10943]],[[10876,10866,10941]],[[10016,10674,10017]],[[10016,10664,10676]],[[10743,10894,10767]],[[10950,10038,10758]],[[10894,10951,10758]],[[9996,10038,10950]],[[9996,10894,10893]],[[10951,10950,10758]],[[9996,10951,10894]],[[9996,10950,10951]],[[10931,10782,10781]],[[10931,10709,10782]],[[10785,10684,10686]],[[10703,7202,10684]],[[7195,10685,7203]],[[7195,10683,10685]],[[10680,10814,7265]],[[10813,10864,10814]],[[7267,10681,7265]],[[7183,10813,10680]],[[10924,10837,10708]],[[10911,10835,10837]],[[10883,10790,517]],[[10883,10916,10790]],[[10694,10707,7264]],[[10706,10824,10820]],[[10706,10820,10707]],[[10811,10718,10820]],[[623,10860,10904]],[[623,625,10860]],[[10817,10921,10739]],[[10818,10679,10921]],[[6661,10817,10739]],[[6661,6662,10817]],[[10896,10922,10886]],[[10945,10891,10915]],[[10769,10713,10712]],[[10879,10862,10713]],[[10827,10826,10909]],[[10944,10847,10826]],[[10796,10838,10840]],[[10836,10926,10839]],[[10719,10724,10848]],[[10849,10717,10724]],[[10706,10929,10824]],[[10706,10689,10929]],[[10868,10870,10809]],[[10868,10869,10870]],[[10870,10808,10809]],[[10870,10770,10808]],[[10785,10686,10928]],[[10684,10683,10686]],[[10908,10698,7217]],[[10908,10699,10698]],[[7268,10681,7267]],[[7268,10802,10681]],[[10026,10949,10941]],[[10026,10893,10949]],[[10026,10947,10936]],[[10944,10826,10927]],[[10901,10874,10777]],[[10927,10826,10775]],[[10859,10764,10765]],[[10768,647,10764]],[[10892,10875,10865]],[[10892,10742,10875]],[[10934,10952,10935]],[[10935,10026,10936]],[[10777,10874,10775]],[[10952,10934,10874]],[[10667,10935,10665]],[[10667,10026,10935]],[[10665,10952,10874]],[[10665,10935,10952]],[[513,10889,627]],[[10756,10887,10757]],[[10898,10756,10889]],[[10898,10791,10887]],[[513,10898,10889]],[[513,10791,10898]],[[10896,10902,10897]],[[10886,10888,10902]],[[6685,10747,6684]],[[10749,10748,10747]],[[10671,10676,10673]],[[10674,10016,10676]],[[10943,10947,10026]],[[10943,10927,10947]],[[10722,10711,10727]],[[10798,10770,10711]],[[10919,10937,10913]],[[10933,10932,10938]],[[10937,10946,10913]],[[10937,10953,10946]],[[10672,10668,10669]],[[10673,10676,10668]],[[10933,10937,10856]],[[10953,10938,10946]],[[10710,10923,10708]],[[10911,10837,10924]],[[10911,10923,10710]],[[10911,10924,10923]],[[10933,10953,10937]],[[10933,10938,10953]],[[10806,10769,10770]],[[10733,10713,10769]],[[10922,10945,10915]],[[10877,10742,10891]],[[10878,10945,10922]],[[10878,10877,10945]],[[6683,10735,10872]],[[10751,10736,10735]],[[10915,10763,10755]],[[10915,10801,10763]],[[6750,10723,10727]],[[10721,10798,10722]],[[10799,10723,10848]],[[10722,10727,10723]],[[10724,10719,10720]],[[10723,6750,10719]],[[10799,10721,10723]],[[10799,10798,10721]],[[10766,10760,10861]],[[10759,10768,10760]],[[7265,10954,7264]],[[7265,10814,10954]],[[10954,10692,7264]],[[10954,10814,10692]],[[10734,10839,10783]],[[10838,10836,10839]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b493349d4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.9958a905655d4ef0bdce4cc3ddf59082","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10955,8735,8729]],[[3038,8729,8737]],[[8731,8735,1885]],[[1887,1886,3037]],[[1885,8735,1886]],[[8731,1887,3036]],[[8731,1884,1887]],[[8731,1885,1884]],[[1886,8735,10955]],[[3039,3038,8737]],[[3037,10955,3038]],[[3036,3039,8737]],[[8731,3036,8737]],[[1887,3037,3036]],[[3038,10955,8729]],[[3037,1886,10955]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49340dd5-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10956,10957,10958]],[[10956,10958,10959]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4935bab7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6732,6729,6731]],[[10960,7005,7006]],[[10961,7004,7005]],[[10962,6981,7004]],[[10962,10963,10964]],[[10965,6986,6987]],[[7007,6729,6732]],[[10966,7007,6732]],[[10965,10966,10967]],[[10968,10969,10963]],[[6986,10966,6732]],[[6986,10967,10966]],[[7007,10969,7006]],[[10970,10966,10969]],[[10968,10971,10960]],[[10971,7004,10961]],[[7007,10970,10969]],[[7007,10966,10970]],[[10972,10964,10965]],[[10963,10969,10966]],[[10965,10963,10966]],[[10971,10961,10960]],[[10962,10971,10963]],[[7006,10969,10968]],[[6981,10964,10972]],[[6981,10962,10964]],[[10968,10960,7006]],[[10961,7005,10960]],[[6981,10972,6987]],[[10964,10963,10965]],[[10963,10971,10968]],[[10962,7004,10971]],[[10972,10965,6987]],[[10967,6986,10965]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49387a1d-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10973,10974,10975]],[[10974,10976,10975]],[[10975,10977,10978]],[[10978,10977,10979]],[[10975,10980,10977]],[[10975,10981,10980]],[[10980,10982,10983]],[[10980,10981,10982]],[[10975,10984,10981]],[[10981,10985,10986]],[[10981,10984,10985]],[[10975,10987,10984]],[[10984,10988,10989]],[[10989,10990,10991]],[[10989,10988,10990]],[[10990,10988,10992]],[[10984,10993,10988]],[[10988,10993,10994]],[[10994,10993,10995]],[[10984,10987,10993]],[[10975,10976,10987]],[[10987,10976,10996]],[[10974,10997,10976]],[[10976,10997,10998]],[[10998,10999,11000]],[[11000,11001,11002]],[[11000,10999,11001]],[[11001,10999,11003]],[[10998,11004,10999]],[[10999,11005,11006]],[[10999,11007,11005]],[[10999,11008,11007]],[[10999,11004,11008]],[[11008,11004,11009]],[[11009,11010,11011]],[[11011,11010,11012]],[[11009,11004,11010]],[[10998,10997,11004]],[[11004,11013,11014]],[[11004,11015,11013]],[[11004,10997,11015]],[[11015,11016,11017]],[[11015,11018,11016]],[[11016,11018,11019]],[[11015,11020,11018]],[[11018,11020,11021]],[[11015,11022,11020]],[[11020,11022,11023]],[[11023,11022,11024]],[[11024,11022,11025]],[[11015,11026,11022]],[[11022,11026,11027]],[[11027,11026,11028]],[[11015,10997,11026]],[[11026,11029,11030]],[[11030,11031,11032]],[[11030,11029,11031]],[[11026,11033,11029]],[[11029,11033,11034]],[[11026,11035,11033]],[[11033,11036,11037]],[[11037,11036,11038]],[[11033,11039,11036]],[[11036,11039,11040]],[[11033,11035,11039]],[[11039,11041,11042]],[[11039,11043,11041]],[[11039,11044,11043]],[[11039,11035,11044]],[[11044,11035,11045]],[[11045,11046,11047]],[[11045,11035,11046]],[[11026,11048,11035]],[[11035,11049,11050]],[[11050,11049,11051]],[[11035,11052,11049]],[[11035,11048,11052]],[[11052,11053,11054]],[[11052,11048,11053]],[[11053,11055,11056]],[[11053,11048,11055]],[[11055,11057,11058]],[[11058,11059,11060]],[[11058,11057,11059]],[[11055,11048,11057]],[[11057,11048,11061]],[[11061,11062,11063]],[[11061,11048,11062]],[[11062,11048,11064]],[[11026,10997,11048]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4939b281-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5f4049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11065,299,11066]],[[11065,11066,11067]],[[11068,11069,11065]],[[298,299,11065]],[[11068,11065,11067]],[[11069,298,11065]],[[298,11068,11067]],[[298,11069,11068]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b69a8d7bc-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"P0028","class":"waterloop","creationdate":"2014-07-10","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.3600507750384e9faeac329b0fffe720","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:57:13.000"},"geometry":[{"boundaries":[[[11070,11071,11072]],[[11073,11070,11074]],[[11075,11076,11074]],[[11077,11075,11074]],[[11078,11077,11074]],[[11079,11078,11074]],[[11080,11079,11074]],[[11081,11082,11083]],[[11084,11085,11086]],[[11087,11088,11089]],[[11090,11091,11086]],[[11086,11092,11093]],[[11094,11090,11086]],[[11095,11096,11097]],[[11098,11095,11097]],[[11098,11099,11095]],[[11098,11100,11099]],[[11097,11101,11102]],[[11102,11101,11103]],[[11104,11105,11106]],[[11104,11107,11108]],[[11104,11109,11110]],[[11104,11108,11109]],[[11111,11104,11110]],[[11104,11112,11107]],[[11113,11114,11088]],[[11104,11115,11098]],[[11091,11084,11086]],[[11116,11117,11118]],[[11119,11118,11081]],[[11085,11120,11086]],[[11121,11081,11083]],[[11120,11122,11086]],[[11082,11080,11123]],[[11098,11102,11104]],[[11124,11086,11122]],[[11125,11086,11124]],[[11126,11086,11125]],[[11127,11086,11126]],[[11128,11086,11127]],[[11129,11130,11088]],[[11131,11123,11074]],[[11070,11072,11074]],[[11132,11133,11072]],[[11134,11135,11072]],[[11134,11072,11136]],[[11136,11072,11137]],[[11137,11072,11138]],[[11138,11072,11139]],[[11140,11138,11139]],[[11141,11140,11139]],[[11142,11141,11139]],[[11143,11142,11139]],[[11144,11143,11139]],[[11145,11144,11139]],[[11146,11145,11139]],[[11147,11146,11139]],[[11148,11147,11139]],[[11149,11148,11139]],[[11139,11072,11150]],[[11150,11072,11151]],[[11152,11150,11153]],[[11154,11152,11153]],[[11155,11156,11157]],[[11153,11150,11158]],[[11159,11160,11150]],[[11158,11150,11161]],[[11162,11163,11150]],[[11161,11150,11164]],[[11165,11166,11150]],[[11164,11150,11166]],[[11123,11080,11074]],[[11121,11083,11167]],[[11150,11163,11165]],[[11123,11083,11082]],[[11168,11169,11167]],[[11170,11171,11172]],[[11150,11160,11162]],[[11168,11171,11173]],[[11174,11175,11176]],[[11177,11156,11178]],[[11151,11179,11150]],[[11159,11150,11179]],[[11151,11072,11133]],[[11180,11132,11072]],[[11181,11180,11072]],[[11072,11182,11181]],[[11072,11183,11182]],[[11072,11184,11183]],[[11072,11185,11184]],[[11072,11071,11185]],[[11076,11073,11074]],[[11186,11187,11188]],[[11189,11190,11117]],[[11191,11192,11190]],[[11193,11194,11192]],[[11195,11196,11194]],[[11197,11198,11196]],[[11199,11200,11198]],[[11201,11202,11200]],[[11203,11204,11202]],[[11205,11089,11204]],[[11104,11111,11115]],[[11094,11086,11093]],[[11102,11098,11097]],[[11088,11130,11113]],[[11086,11103,11206]],[[11207,11129,11088]],[[11207,11208,11129]],[[11087,11207,11088]],[[11087,11209,11207]],[[11210,11211,11209]],[[11210,11212,11211]],[[11210,11213,11212]],[[11214,11213,11215]],[[11216,11214,11217]],[[11218,11216,11217]],[[11219,11218,11220]],[[11221,11219,11222]],[[11223,11221,11224]],[[11225,11223,11226]],[[11227,11225,11228]],[[11229,11227,11230]],[[11230,11227,11231]],[[11231,11227,11232]],[[11232,11227,11228]],[[11228,11225,11233]],[[11233,11225,11226]],[[11226,11223,11234]],[[11234,11223,11235]],[[11235,11223,11224]],[[11224,11221,11222]],[[11222,11219,11220]],[[11220,11218,11217]],[[11236,11220,11217]],[[11237,11236,11217]],[[11238,11237,11217]],[[11239,11238,11217]],[[11240,11239,11217]],[[11241,11240,11217]],[[11242,11241,11217]],[[11243,11242,11244]],[[11245,11243,11244]],[[11246,11245,11244]],[[11247,11246,11244]],[[11248,11247,11244]],[[11188,11248,11186]],[[11244,11186,11248]],[[11249,11250,11251]],[[11251,11186,11244]],[[11249,11251,11244]],[[11244,11242,11217]],[[11252,11253,11177]],[[11217,11214,11215]],[[11174,11254,11172]],[[11215,11213,11210]],[[11209,11087,11210]],[[11175,11253,11255]],[[11205,11256,11089]],[[11087,11089,11256]],[[11257,11258,11157]],[[11204,11259,11205]],[[11260,11261,11262]],[[11204,11263,11259]],[[11257,11261,11264]],[[11263,11204,11203]],[[11203,11202,11265]],[[11265,11202,11201]],[[11201,11200,11266]],[[11266,11200,11199]],[[11199,11198,11267]],[[11267,11198,11268]],[[11268,11198,11197]],[[11197,11196,11269]],[[11269,11196,11195]],[[11195,11194,11270]],[[11270,11194,11271]],[[11271,11194,11193]],[[11193,11192,11272]],[[11272,11192,11273]],[[11273,11192,11191]],[[11189,11274,11190]],[[11191,11190,11274]],[[11275,11189,11117]],[[11276,11275,11117]],[[11116,11276,11117]],[[11277,11278,11262]],[[11118,11279,11116]],[[11118,11280,11279]],[[11281,11282,11283]],[[11118,11119,11280]],[[11277,11282,11284]],[[11119,11081,11285]],[[11285,11081,11121]],[[11286,11287,11167]],[[11121,11167,11287]],[[11169,11286,11167]],[[11288,11289,11283]],[[11168,11290,11169]],[[11168,11291,11290]],[[11292,11293,11294]],[[11168,11173,11291]],[[11288,11293,11295]],[[11173,11171,11296]],[[11170,11297,11171]],[[11296,11171,11297]],[[11298,11170,11172]],[[11299,11300,11294]],[[11172,11301,11298]],[[11302,11303,11304]],[[11172,11254,11301]],[[11299,11303,11305]],[[11254,11174,11306]],[[11176,11307,11174]],[[11306,11174,11307]],[[11308,11176,11175]],[[11309,11302,11304]],[[11302,11310,11311]],[[11175,11312,11308]],[[11309,11310,11302]],[[11313,11255,11253]],[[11312,11175,11255]],[[11314,11313,11253]],[[11315,11316,11311]],[[11317,11318,11319]],[[11253,11252,11314]],[[11315,11318,11316]],[[11252,11177,11320]],[[11320,11177,11321]],[[11321,11177,11322]],[[11322,11177,11178]],[[11178,11156,11323]],[[11323,11156,11324]],[[11324,11156,11155]],[[11155,11157,11325]],[[11325,11157,11326]],[[11326,11157,11327]],[[11327,11157,11258]],[[11258,11257,11328]],[[11328,11257,11329]],[[11329,11257,11330]],[[11330,11257,11331]],[[11331,11257,11264]],[[11264,11261,11332]],[[11332,11261,11333]],[[11333,11261,11334]],[[11334,11261,11335]],[[11335,11261,11260]],[[11260,11262,11278]],[[11278,11277,11284]],[[11284,11282,11336]],[[11336,11282,11281]],[[11281,11283,11337]],[[11338,11339,11283]],[[11337,11283,11339]],[[11340,11338,11283]],[[11341,11340,11283]],[[11289,11341,11283]],[[11342,11289,11288]],[[11343,11342,11288]],[[11344,11343,11288]],[[11345,11344,11288]],[[11295,11345,11288]],[[11346,11295,11293]],[[11347,11346,11293]],[[11348,11347,11293]],[[11349,11348,11293]],[[11292,11349,11293]],[[11350,11292,11294]],[[11351,11350,11294]],[[11352,11351,11294]],[[11300,11352,11294]],[[11353,11300,11299]],[[11354,11353,11299]],[[11355,11354,11299]],[[11305,11355,11299]],[[11356,11305,11303]],[[11357,11356,11303]],[[11302,11357,11303]],[[11316,11302,11311]],[[11106,11105,11319]],[[11318,11358,11316]],[[11318,11359,11358]],[[11318,11360,11359]],[[11318,11361,11360]],[[11318,11362,11361]],[[11106,11112,11104]],[[11362,11318,11363]],[[11363,11318,11364]],[[11364,11318,11365]],[[11365,11318,11366]],[[11366,11318,11367]],[[11367,11318,11368]],[[11368,11318,11369]],[[11369,11318,11370]],[[11370,11318,11371]],[[11371,11318,11372]],[[11372,11318,11317]],[[11317,11319,11373]],[[11373,11319,11105]],[[11092,11086,11206]],[[11102,11103,11086]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"b80066d8d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11374,11375,11376]],[[11374,11376,11377]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b8009a157-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0bbe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11378,11379,11380]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b82575848-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2014-07-10","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.a6c08b19180041c1972275ff0fc7c5ce","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[4137,4135,11381]],[[4135,4133,11382]],[[4346,11383,4349]],[[11384,4097,11385]],[[11385,4090,11386]],[[11386,4090,4079]],[[11387,11388,3990]],[[11389,3976,11390]],[[11391,11392,11393]],[[11394,11395,11396]],[[11397,4003,11398]],[[11399,11364,11400]],[[11399,11401,11364]],[[11402,11403,11363]],[[11402,11404,11403]],[[11405,11406,11404]],[[11407,11408,11406]],[[3972,11358,11408]],[[11409,4349,11410]],[[11411,11409,11412]],[[11413,11409,11414]],[[11415,11412,11409]],[[11416,11409,11417]],[[11418,11414,11409]],[[11416,11418,11409]],[[11409,11419,11420]],[[11409,11421,11419]],[[11409,11422,11421]],[[11409,11423,11422]],[[11409,11410,11423]],[[4349,11424,11410]],[[4349,11425,11424]],[[4349,11426,11425]],[[4349,11427,11426]],[[4349,11428,11427]],[[4349,11429,11428]],[[4349,11430,11429]],[[4349,11431,11430]],[[4349,11432,11431]],[[4349,11433,11432]],[[4349,11434,11433]],[[4349,11435,11434]],[[4349,11436,11435]],[[4349,11437,11436]],[[4349,11438,11437]],[[4349,11439,11438]],[[11440,4097,11384]],[[4346,11441,11383]],[[11442,11316,11358]],[[4798,11441,4345]],[[11443,4762,11409]],[[4345,11441,4346]],[[11417,11409,11420]],[[11383,11439,4349]],[[11390,11444,11389]],[[11445,11446,11447]],[[4762,11302,11448]],[[11398,4003,11449]],[[11444,4762,11448]],[[11450,3989,11392]],[[11450,11451,3989]],[[3974,11358,3972]],[[11452,11402,11363]],[[11453,3989,11454]],[[11392,11391,11455]],[[11456,3990,11388]],[[11457,3982,3981]],[[11458,11457,3981]],[[11459,11460,3964]],[[11461,4010,3982]],[[11462,11463,4010]],[[11464,11465,11466]],[[11467,4010,11468]],[[11468,4010,11469]],[[11385,4097,4090]],[[4133,4097,11440]],[[11382,4133,11440]],[[11381,4135,11382]],[[11470,3954,11381]],[[11381,3954,4137]],[[11470,11471,3959]],[[3954,11470,3959]],[[11472,11454,3989]],[[11388,11447,11456]],[[11393,11395,11394]],[[4003,11397,11395]],[[11402,11452,11404]],[[11473,11407,11405]],[[11474,11475,4010]],[[11467,11476,11477]],[[11478,11479,4010]],[[11480,11481,11479]],[[11482,11483,11461]],[[11480,11479,11483]],[[11405,11407,11406]],[[11484,11408,11407]],[[11479,11481,4010]],[[11462,11485,11463]],[[11460,11486,11487]],[[11487,4079,11460]],[[11480,11463,11485]],[[11480,11488,11463]],[[11451,11388,11454]],[[11451,11447,11388]],[[11302,11443,11411]],[[11489,4762,11443]],[[11490,11491,3981]],[[11492,11490,3990]],[[11473,11484,11407]],[[3972,11408,11484]],[[11493,11477,11488]],[[11465,11494,3964]],[[11446,11456,11447]],[[11446,3990,11456]],[[11455,11450,11392]],[[11455,11451,11450]],[[3975,4762,11390]],[[11302,11316,11448]],[[11451,11472,3989]],[[11451,11454,11472]],[[11476,11495,11488]],[[11463,11488,11495]],[[11482,11457,11317]],[[11496,3982,11457]],[[11401,11452,11363]],[[11452,11405,11404]],[[11302,11489,11443]],[[11302,4762,11489]],[[11398,11449,11400]],[[4003,11401,11449]],[[11494,11459,3964]],[[11386,11486,11459]],[[11480,11475,11474]],[[11480,11485,11475]],[[11497,11493,11498]],[[11466,4010,11467]],[[11499,11461,3982]],[[11478,4010,11461]],[[11396,11397,11398]],[[11396,11395,11397]],[[3975,11390,3976]],[[11500,11316,3974]],[[11480,11482,11317]],[[11480,11483,11482]],[[11388,11501,11454]],[[11502,3989,11503]],[[3981,11491,11317]],[[11492,3990,11446]],[[11445,11504,11490]],[[11504,11491,11505]],[[11317,11504,11447]],[[11317,11491,11504]],[[11463,11469,4010]],[[11463,11495,11469]],[[11504,11445,11447]],[[11504,11505,11490]],[[11482,11496,11457]],[[11482,11499,11496]],[[11413,11414,11418]],[[11413,11415,11409]],[[3964,11460,4079]],[[11459,11486,11460]],[[11364,11401,11363]],[[4003,3972,11452]],[[4003,11452,11401]],[[3972,11473,11452]],[[11483,11478,11461]],[[11483,11479,11478]],[[11491,11490,11505]],[[3981,3990,11490]],[[11386,11494,11493]],[[11386,11459,11494]],[[11449,11399,11400]],[[11449,11401,11399]],[[11443,11409,11411]],[[4762,4349,11409]],[[11506,11453,11454]],[[11503,3989,11453]],[[11493,11507,11477]],[[11498,11508,11466]],[[11481,11474,4010]],[[11481,11480,11474]],[[11387,11501,11388]],[[11503,11506,11501]],[[11493,11509,11508]],[[11493,11494,11509]],[[11509,11464,11466]],[[11509,11494,11464]],[[11466,11465,3964]],[[11464,11494,11465]],[[4762,11444,11390]],[[11448,11316,11500]],[[11444,11500,11389]],[[11444,11448,11500]],[[3974,11389,11500]],[[3974,3976,11389]],[[11501,11506,11454]],[[11503,11453,11506]],[[11317,11458,3981]],[[11317,11457,11458]],[[11496,11499,3982]],[[11482,11461,11499]],[[11502,11387,3990]],[[11502,11501,11387]],[[11495,11468,11469]],[[11477,11507,11467]],[[11476,11467,11468]],[[11508,11509,11466]],[[11495,11476,11468]],[[11488,11477,11476]],[[11497,11466,11467]],[[3964,4010,11466]],[[11497,11498,11466]],[[11493,11508,11498]],[[11507,11497,11467]],[[11507,11493,11497]],[[11386,11487,11486]],[[11386,4079,11487]],[[4003,11392,3989]],[[4003,11395,11392]],[[11391,11393,11394]],[[11392,11395,11393]],[[11445,11492,11446]],[[11445,11490,11492]],[[11452,11473,11405]],[[3972,11484,11473]],[[3974,11442,11358]],[[3974,11316,11442]],[[3989,11502,3990]],[[11503,11501,11502]],[[11475,11462,4010]],[[11475,11485,11462]],[[11102,11086,11386]],[[11386,11086,11385]],[[11104,11102,11493]],[[11493,11102,11386]],[[11105,11104,11488]],[[11488,11104,11493]],[[11373,11105,11480]],[[11480,11105,11488]],[[11317,11373,11480]],[[11372,11317,11447]],[[11371,11372,11451]],[[11451,11372,11447]],[[11370,11371,11455]],[[11455,11371,11451]],[[11369,11370,11391]],[[11391,11370,11455]],[[11368,11369,11394]],[[11394,11369,11391]],[[11367,11368,11396]],[[11396,11368,11394]],[[11366,11367,11398]],[[11398,11367,11396]],[[11365,11366,11400]],[[11400,11366,11398]],[[11364,11365,11400]],[[11362,11363,11403]],[[11361,11362,11404]],[[11404,11362,11403]],[[11360,11361,11406]],[[11406,11361,11404]],[[11359,11360,11408]],[[11408,11360,11406]],[[11358,11359,11408]],[[11357,11302,11411]],[[11356,11357,11412]],[[11412,11357,11411]],[[11305,11356,11415]],[[11415,11356,11412]],[[11355,11305,11413]],[[11413,11305,11415]],[[11354,11355,11418]],[[11418,11355,11413]],[[11353,11354,11416]],[[11416,11354,11418]],[[11300,11353,11417]],[[11417,11353,11416]],[[11352,11300,11420]],[[11420,11300,11417]],[[11351,11352,11419]],[[11419,11352,11420]],[[11350,11351,11421]],[[11421,11351,11419]],[[11292,11350,11422]],[[11422,11350,11421]],[[11349,11292,11423]],[[11423,11292,11422]],[[11348,11349,11410]],[[11410,11349,11423]],[[11347,11348,11424]],[[11424,11348,11410]],[[11346,11347,11425]],[[11425,11347,11424]],[[11295,11346,11426]],[[11426,11346,11425]],[[11345,11295,11427]],[[11427,11295,11426]],[[11344,11345,11428]],[[11428,11345,11427]],[[11343,11344,11429]],[[11429,11344,11428]],[[11342,11343,11430]],[[11430,11343,11429]],[[11289,11342,11431]],[[11431,11342,11430]],[[11341,11289,11432]],[[11432,11289,11431]],[[11340,11341,11433]],[[11433,11341,11432]],[[11338,11340,11434]],[[11434,11340,11433]],[[11339,11338,11435]],[[11435,11338,11434]],[[11337,11339,11436]],[[11436,11339,11435]],[[11281,11337,11437]],[[11437,11337,11436]],[[11336,11281,11438]],[[11438,11281,11437]],[[11284,11336,11439]],[[11439,11336,11438]],[[11278,11284,11383]],[[11383,11284,11439]],[[11260,11278,11441]],[[11441,11278,11383]],[[4798,11260,11441]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b8257ccdc-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.5b05c66e86d84678906e0e603c4ba008","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11510,11511,11512]],[[11513,11514,11510]],[[11515,11513,11510]],[[11515,11516,11517]],[[11515,11517,11518]],[[11513,11519,11514]],[[11518,11513,11515]],[[11519,11511,11514]],[[11518,11519,11513]],[[11518,11511,11519]],[[11520,11515,11512]],[[11514,11511,11510]],[[11512,11515,11510]],[[11520,11516,11515]],[[11521,11522,11511]],[[11511,11522,11512]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b82590617-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.2b508589ce3a4bf5a6633db491f5383d","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11523,11524,11217]],[[11210,11087,5526]],[[5524,11210,5840]],[[5840,11210,5527]],[[5527,11210,5526]],[[5526,11087,5525]],[[11205,11259,5646]],[[11203,11265,5508]],[[11266,11199,5507]],[[11267,11268,5507]],[[11197,11269,5506]],[[11195,11270,5503]],[[11270,11271,5503]],[[11271,11193,5504]],[[11273,11191,5501]],[[11191,11274,5501]],[[11274,11189,5473]],[[11275,11276,5474]],[[11116,11279,5496]],[[11279,11280,5496]],[[11119,11285,5495]],[[11285,11121,5495]],[[11287,11286,5493]],[[11169,11290,5441]],[[11290,11291,5442]],[[11173,11296,5443]],[[11297,11170,5492]],[[11301,11254,5445]],[[11254,11306,5445]],[[11307,11176,5490]],[[11308,11312,5448]],[[11312,11255,5448]],[[11313,11314,5449]],[[11314,11252,5451]],[[11320,11321,5452]],[[11321,11322,5452]],[[11178,11323,5453]],[[11323,11324,5453]],[[11324,11155,5453]],[[11155,11325,5454]],[[11325,11326,5454]],[[11326,11327,5454]],[[5449,11314,5451]],[[11264,11332,5458]],[[11333,11334,5460]],[[11334,11335,5460]],[[5454,11327,5456]],[[5456,11328,5457]],[[5457,11331,5458]],[[5458,11333,5460]],[[11335,11260,5464]],[[5462,11335,5463]],[[5463,11335,5464]],[[5464,11260,5466]],[[11260,4347,4799]],[[5467,11260,4799]],[[11260,4798,4347]],[[5466,11260,5467]],[[5460,11335,5462]],[[5453,11155,5454]],[[11332,11333,5458]],[[5452,11322,5453]],[[11331,11264,5458]],[[11330,11331,5457]],[[11329,11330,5457]],[[11328,11329,5457]],[[11258,11328,5456]],[[11327,11258,5456]],[[5451,11252,5452]],[[5448,11255,5449]],[[5490,11308,5448]],[[5491,11307,5490]],[[5445,11306,5491]],[[5447,11301,5445]],[[11322,11178,5453]],[[5492,11298,5447]],[[5444,11297,5492]],[[11252,11320,5452]],[[5443,11296,5444]],[[5442,11291,5443]],[[11255,11313,5449]],[[5441,11290,5442]],[[5493,11169,5441]],[[11176,11308,5490]],[[5494,11287,5493]],[[11306,11307,5491]],[[5495,11121,5494]],[[5489,11119,5495]],[[11298,11301,5447]],[[11170,11298,5492]],[[5496,11280,5489]],[[11296,11297,5444]],[[5500,11116,5496]],[[11291,11173,5443]],[[5474,11276,5500]],[[5473,11189,5474]],[[11286,11169,5493]],[[5501,11274,5473]],[[11121,11287,5494]],[[5502,11273,5501]],[[5504,11272,5502]],[[11280,11119,5489]],[[5503,11271,5504]],[[5506,11195,5503]],[[11276,11116,5500]],[[5507,11268,5506]],[[11189,11275,5474]],[[5508,11266,5507]],[[5509,11203,5508]],[[5646,11259,5509]],[[11272,11273,5502]],[[11193,11272,5504]],[[5513,11256,5646]],[[5514,11256,5513]],[[5515,11256,5514]],[[11269,11195,5506]],[[5517,11087,5515]],[[11268,11197,5506]],[[5520,11087,5517]],[[11199,11267,5507]],[[5521,11087,5520]],[[11201,11266,5508]],[[11265,11201,5508]],[[5522,11087,5521]],[[11263,11203,5509]],[[11259,11263,5509]],[[5523,11087,5522]],[[11256,11205,5646]],[[11087,11256,5515]],[[5525,11087,5523]],[[5487,11210,5524]],[[11210,5487,11215]],[[11215,11523,11217]],[[5487,11523,11215]],[[11525,5486,11217]],[[5487,11524,11523]],[[5487,5486,11524]],[[11524,11525,11217]],[[11524,5486,11525]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b825a1738-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.53dd2a24d1a34833a084928458e10f8f","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11526,11527,5272]],[[11528,11529,11244]],[[11528,11527,11529]],[[4891,5272,11528]],[[5272,11527,11528]],[[4891,11528,11244]],[[11530,11527,11526]],[[4945,11526,5272]],[[4945,11530,11526]],[[11249,11244,11529]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b86c25248-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11531,11532,11533]],[[11531,11534,11532]],[[11531,2857,2858]],[[11531,2858,2947]],[[11535,11536,11537]],[[11536,11535,2947]],[[11538,11537,11536]],[[11539,11540,11541]],[[11541,11538,11536]],[[11542,11540,11539]],[[11543,11542,11539]],[[11544,11545,11546]],[[11545,11547,11546]],[[11548,11544,11546]],[[11549,11550,11551]],[[11539,11547,11543]],[[11552,11550,11553]],[[11553,11550,11554]],[[11531,2825,2857]],[[11554,11549,11555]],[[11556,11555,11557]],[[11558,11556,11557]],[[11535,11534,2947]],[[11531,2947,11534]],[[11559,11560,11561]],[[11562,11559,11561]],[[11546,11547,11539]],[[11541,11536,11539]],[[11563,11564,11565]],[[11566,11563,11565]],[[11551,11548,11546]],[[11567,11568,11569]],[[11551,11546,11549]],[[11569,11568,11570]],[[8159,11570,2911]],[[11554,11550,11549]],[[11549,11557,11555]],[[11549,11560,11557]],[[11549,11561,11560]],[[11549,2911,11561]],[[11561,2911,11564]],[[11564,2911,11565]],[[11565,2911,11568]],[[11568,2911,11570]],[[183,2857,2825]],[[184,2857,183]],[[11571,2825,11531]],[[11572,11571,11533]],[[11533,11571,11531]],[[11573,11572,11532]],[[11532,11572,11533]],[[11574,11573,11534]],[[11534,11573,11532]],[[11575,11574,11535]],[[11535,11574,11534]],[[11576,11575,11537]],[[11537,11575,11535]],[[11577,11576,11538]],[[11538,11576,11537]],[[11578,11577,11541]],[[11541,11577,11538]],[[11579,11578,11540]],[[11540,11578,11541]],[[11580,11579,11542]],[[11542,11579,11540]],[[11581,11580,11543]],[[11543,11580,11542]],[[11582,11581,11547]],[[11547,11581,11543]],[[11583,11582,11545]],[[11545,11582,11547]],[[11584,11583,11544]],[[11544,11583,11545]],[[11585,11584,11548]],[[11548,11584,11544]],[[11586,11585,11551]],[[11551,11585,11548]],[[11587,11586,11550]],[[11550,11586,11551]],[[11588,11587,11552]],[[11552,11587,11550]],[[11589,11588,11553]],[[11553,11588,11552]],[[11590,11589,11554]],[[11554,11589,11553]],[[11591,11590,11555]],[[11555,11590,11554]],[[11592,11591,11556]],[[11556,11591,11555]],[[11593,11592,11558]],[[11558,11592,11556]],[[11594,11593,11557]],[[11557,11593,11558]],[[11595,11594,11560]],[[11560,11594,11557]],[[11596,11595,11559]],[[11559,11595,11560]],[[11597,11596,11562]],[[11562,11596,11559]],[[11598,11597,11561]],[[11561,11597,11562]],[[11599,11598,11564]],[[11564,11598,11561]],[[11600,11599,11563]],[[11563,11599,11564]],[[11601,11600,11566]],[[11566,11600,11563]],[[11602,11601,11565]],[[11565,11601,11566]],[[11603,11602,11568]],[[11568,11602,11565]],[[11604,11603,11567]],[[11567,11603,11568]],[[11605,11604,11569]],[[11569,11604,11567]],[[11606,11605,11570]],[[11570,11605,11569]],[[8159,11606,11570]],[[2936,2911,11549]],[[2959,2936,11546]],[[11546,2936,11549]],[[2958,2959,11539]],[[11539,2959,11546]],[[2910,2958,11536]],[[11536,2958,11539]],[[2947,2910,11536]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c2a086-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7968,8543,1280]],[[8543,1315,1280]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c538a4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11607,11608,11609]],[[11607,7803,1354]],[[11608,11607,1354]],[[11610,7803,11607]],[[1354,1688,11608]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5adfd-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0875b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11611,11612,11613]],[[11611,11614,11612]],[[11611,212,2815]],[[11614,11611,11615]],[[11615,11611,2815]],[[2815,212,213]],[[11616,212,11611]],[[11617,11616,11613]],[[11613,11616,11611]],[[11618,11617,11612]],[[11612,11617,11613]],[[11619,11618,11614]],[[11614,11618,11612]],[[11620,11619,11615]],[[11615,11619,11614]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5ae06-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08da749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11067,297,298]],[[11067,10615,297]],[[11067,11066,11621]],[[10615,11067,11621]],[[11622,10615,11621]],[[11066,11622,11621]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5d51d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[477,557,476]],[[557,558,476]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c89463-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10683,10682,10662]],[[10683,10662,11623]],[[11623,11624,11625]],[[11625,11624,10678]],[[11624,11626,11627]],[[11627,11626,11628]],[[11624,11623,11626]],[[10662,10682,7252]],[[10662,11626,11623]],[[10675,10663,10017]],[[10663,7244,10017]],[[10663,10662,7252]],[[10663,7252,7244]],[[10687,10683,11623]],[[10691,10687,11625]],[[11625,10687,11623]],[[10678,10691,11625]],[[10672,10678,11624]],[[10673,10672,11627]],[[11627,10672,11624]],[[10671,10673,11628]],[[11628,10673,11627]],[[10670,10671,11626]],[[11626,10671,11628]],[[10662,10670,11626]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b8e220996-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11629,11630,11631]],[[11632,1831,1827]],[[8174,1831,11633]],[[11634,8174,8175]],[[1825,11634,8175]],[[11635,11633,11636]],[[8174,11635,8173]],[[11636,10005,8173]],[[11636,11637,10005]],[[11638,11639,11637]],[[8174,11633,11635]],[[11640,11637,11636]],[[11635,11636,8173]],[[11640,1831,11638]],[[11633,11640,11636]],[[11633,1831,11640]],[[11640,11638,11637]],[[11639,10005,11637]],[[11632,11641,11642]],[[11643,10005,1831]],[[1831,11634,1825]],[[1831,8174,11634]],[[11644,11630,11629]],[[11641,10005,11630]],[[11643,11631,10005]],[[11630,10005,11631]],[[11644,11642,11641]],[[11632,11645,11641]],[[11646,11644,11629]],[[11632,11642,11644]],[[1831,11639,11638]],[[1831,10005,11639]],[[11632,11643,1831]],[[11646,11631,11643]],[[11644,11641,11630]],[[11645,10005,11641]],[[11646,11632,11644]],[[1827,11645,11632]],[[11631,11646,11629]],[[11643,11632,11646]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e220999-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11647,11648,11649]],[[11650,11651,11652]],[[11653,3117,11651]],[[11651,11654,11655]],[[11656,11652,11655]],[[11653,3162,3117]],[[11647,11649,11657]],[[11656,11650,11652]],[[11653,3160,3162]],[[11650,11658,11651]],[[11659,11660,11661]],[[11656,11655,11654]],[[11652,11662,11655]],[[11656,11647,11657]],[[11656,11661,11647]],[[3161,11656,11657]],[[3161,11650,11656]],[[11648,11661,11660]],[[11651,11662,11652]],[[3161,11663,11650]],[[11664,3160,11653]],[[11663,11658,11650]],[[3117,11660,11659]],[[11663,11665,11658]],[[11664,3161,3160]],[[11656,11654,11661]],[[11651,3117,11659]],[[11661,11654,11659]],[[11655,11662,11651]],[[11653,11651,11658]],[[11659,11654,11651]],[[11649,11648,11660]],[[11647,11661,11648]],[[11665,11653,11658]],[[11665,11664,11653]],[[11663,11664,11665]],[[11663,3161,11664]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2209a5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11666,11667,11668]],[[11669,11667,11666]],[[11670,11669,11666]],[[11671,11670,11666]],[[11672,11671,11666]],[[11673,11672,11666]],[[11674,11673,11666]],[[11675,11674,11666]],[[11676,11675,11666]],[[11677,11676,11666]],[[11678,11677,11666]],[[11679,11678,11666]],[[11680,11679,11666]],[[11681,11666,11682]],[[11682,11666,11683]],[[11683,11666,11684]],[[11684,11666,11685]],[[11685,11666,11686]],[[11686,11666,11687]],[[11687,11666,11688]],[[11688,11666,11689]],[[11689,11666,11690]],[[11690,11666,11691]],[[11691,11666,11692]],[[11692,11666,11693]],[[11693,11666,11694]],[[11694,11666,11695]],[[11695,11666,11696]],[[11696,11666,11697]],[[11697,11666,11698]],[[11698,11666,11699]],[[11699,11666,11700]],[[11700,11666,11701]],[[11701,11666,11702]],[[11702,11666,11703]],[[11703,11666,11704]],[[11704,11666,11705]],[[11705,11666,11706]],[[11706,11666,11707]],[[11707,11666,11708]],[[11708,11666,11709]],[[11709,11666,11710]],[[11710,11666,11711]],[[11711,11666,11712]],[[11712,11666,11713]],[[11713,11666,11714]],[[11666,11715,11716]],[[11666,11717,11715]],[[11666,11718,11717]],[[11666,11719,11718]],[[11666,11720,11719]],[[11666,11721,11720]],[[11666,11722,11721]],[[11666,11723,11722]],[[11666,11724,11723]],[[11666,11725,11724]],[[11666,11726,11725]],[[11666,11727,11726]],[[11666,11728,11727]],[[11666,11729,11728]],[[11666,11730,11729]],[[11666,11731,11730]],[[11666,11732,11731]],[[11666,11733,11732]],[[11666,11734,11733]],[[11666,11735,11734]],[[11666,11736,11735]],[[11666,11737,11736]],[[11666,11738,11737]],[[11666,11739,11738]],[[11666,11740,11739]],[[11666,11741,11740]],[[11666,11742,11741]],[[11666,11743,11742]],[[11666,11744,11743]],[[11666,11745,11744]],[[11666,11746,11745]],[[11666,11747,11746]],[[11666,11748,11747]],[[11666,11749,11748]],[[11666,11750,11749]],[[11666,11751,11750]],[[11666,11752,11751]],[[11666,11753,11752]],[[11666,11754,11753]],[[11666,11755,11754]],[[11666,11756,11755]],[[11666,11757,11756]],[[11666,11758,11757]],[[11666,11668,11758]],[[11714,11666,11716]],[[11681,11680,11666]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e22f3bc-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11759,11760,11761]],[[11762,11763,11764]],[[11764,11763,11759]],[[11762,11760,11759]],[[11765,11762,11766]],[[11765,11760,11762]],[[11764,11759,11761]],[[11763,11762,11759]],[[11766,11764,11761]],[[11766,11762,11764]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e23693d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11767,11768,11769]],[[11770,11771,11772]],[[11773,11774,11775]],[[11776,11777,11767]],[[11778,11773,11779]],[[11774,11780,11781]],[[11782,11783,11774]],[[11784,11769,11785]],[[11774,11783,11780]],[[11786,11782,11787]],[[11788,11789,11780]],[[11788,11783,11786]],[[11771,11781,11790]],[[11784,11791,11769]],[[11779,11792,11772]],[[11775,11781,11770]],[[11777,11768,11767]],[[11793,11769,11768]],[[11794,11767,11791]],[[11790,11789,11776]],[[11784,11790,11794]],[[11767,11769,11791]],[[11780,11790,11781]],[[11780,11789,11790]],[[11790,11776,11767]],[[11789,11788,11786]],[[11789,11777,11776]],[[11786,11768,11777]],[[11780,11783,11788]],[[11787,11773,11778]],[[11771,11790,11784]],[[11790,11767,11794]],[[11793,11778,11779]],[[11782,11786,11783]],[[11773,11787,11774]],[[11787,11793,11786]],[[11774,11787,11782]],[[11778,11793,11787]],[[11779,11775,11792]],[[11774,11781,11775]],[[11792,11770,11772]],[[11792,11775,11770]],[[11793,11779,11772]],[[11773,11775,11779]],[[11771,11784,11785]],[[11794,11791,11784]],[[11789,11786,11777]],[[11793,11768,11786]],[[11772,11771,11785]],[[11770,11781,11771]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e23ddc7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ad49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11795,11796,11797]],[[11798,11799,11800]],[[11801,11802,11798]],[[11800,11801,11798]],[[11803,11795,11804]],[[11796,11805,11797]],[[11804,11797,11801]],[[11805,11802,11801]],[[11804,11801,11800]],[[11797,11805,11801]],[[11803,11804,11800]],[[11795,11797,11804]],[[11803,11796,11795]],[[11806,11805,11796]],[[11806,11803,11800]],[[11806,11796,11803]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e24c8ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ab49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11807,11808,11809]],[[11810,11811,11812]],[[11810,11813,11811]],[[11814,11808,11815]],[[11816,11807,11809]],[[11815,11808,11807]],[[11812,11811,11807]],[[11817,11807,11811]],[[11809,11818,11819]],[[11820,11814,11817]],[[11816,11812,11807]],[[11821,11822,11810]],[[11811,11813,11817]],[[11823,11814,11820]],[[11824,11823,11825]],[[11813,11820,11817]],[[11821,11825,11822]],[[11818,11826,11823]],[[11822,11813,11810]],[[11823,11820,11813]],[[11822,11823,11813]],[[11826,11814,11823]],[[11824,11827,11823]],[[11824,11819,11827]],[[11812,11821,11810]],[[11825,11823,11822]],[[11826,11818,11809]],[[11821,11812,11816]],[[11824,11825,11816]],[[11816,11825,11821]],[[11819,11816,11809]],[[11819,11824,11816]],[[11817,11815,11807]],[[11817,11814,11815]],[[11827,11818,11823]],[[11827,11819,11818]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e253d86-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11828,11829,11830]],[[11831,11832,11833]],[[11834,11835,11831]],[[11836,11837,11838]],[[11839,11840,11841]],[[11839,11842,11831]],[[11831,11842,11832]],[[11843,11844,11845]],[[11846,11847,11848]],[[11842,11839,11841]],[[11828,11849,11850]],[[11839,11831,11840]],[[11832,11851,11849]],[[11842,11841,11851]],[[11828,11850,11852]],[[11853,11841,11848]],[[11849,11853,11850]],[[11851,11841,11853]],[[11833,11834,11831]],[[11845,11854,11855]],[[11847,11853,11848]],[[11856,11831,11835]],[[11828,11857,11858]],[[11859,11860,11861]],[[11862,11836,11838]],[[11847,11850,11853]],[[11863,11852,11864]],[[11848,11841,11846]],[[11860,11864,11847]],[[11857,11828,11852]],[[11833,11865,11834]],[[11840,11866,11841]],[[11834,11865,11835]],[[11866,11867,11841]],[[11856,11865,11868]],[[11865,11855,11869]],[[11841,11867,11846]],[[11866,11870,11854]],[[11871,11859,11872]],[[11843,11855,11829]],[[11873,11870,11866]],[[11870,11855,11854]],[[11863,11859,11871]],[[11872,11837,11871]],[[11836,11871,11837]],[[11836,11852,11863]],[[11873,11868,11870]],[[11869,11855,11870]],[[11867,11860,11846]],[[11867,11861,11860]],[[11858,11862,11829]],[[11858,11836,11862]],[[11865,11856,11835]],[[11840,11831,11856]],[[11847,11864,11852]],[[11860,11859,11864]],[[11859,11863,11864]],[[11871,11836,11863]],[[11833,11832,11830]],[[11842,11851,11832]],[[11861,11854,11845]],[[11861,11866,11854]],[[11872,11844,11837]],[[11874,11845,11844]],[[11862,11838,11843]],[[11837,11844,11843]],[[11849,11828,11830]],[[11858,11829,11828]],[[11832,11849,11830]],[[11851,11853,11849]],[[11856,11868,11840]],[[11869,11870,11868]],[[11840,11873,11866]],[[11840,11868,11873]],[[11872,11874,11844]],[[11872,11859,11861]],[[11872,11861,11874]],[[11867,11866,11861]],[[11843,11845,11855]],[[11874,11861,11845]],[[11868,11865,11869]],[[11833,11855,11865]],[[11862,11843,11829]],[[11838,11837,11843]],[[11860,11847,11846]],[[11852,11850,11847]],[[11836,11857,11852]],[[11836,11858,11857]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e26eb7a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11875,11876,11877]],[[11878,11877,11879]],[[11880,11881,11882]],[[11881,11876,11883]],[[11879,11884,11885]],[[11886,11876,11881]],[[11878,11883,11877]],[[11882,11881,11883]],[[11887,11884,11879]],[[11887,11886,11885]],[[11880,11885,11881]],[[11884,11887,11885]],[[11878,11880,11882]],[[11879,11885,11880]],[[11885,11886,11881]],[[11887,11876,11886]],[[11880,11878,11879]],[[11882,11883,11878]],[[11883,11875,11877]],[[11883,11876,11875]],[[11888,11876,11887]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2823ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11889,11890,11891]],[[11892,11890,11889]],[[11892,11893,11894]],[[11895,11896,11897]],[[11898,11892,11889]],[[11899,11900,11901]],[[11891,11890,11902]],[[11892,11894,11890]],[[11894,11902,11890]],[[11895,11903,11896]],[[11894,11895,11902]],[[11893,11892,11898]],[[11893,11903,11895]],[[11897,11904,11905]],[[11906,11889,11907]],[[11906,11898,11889]],[[11908,11896,11903]],[[11909,11900,11910]],[[11908,11898,11906]],[[11908,11903,11898]],[[11889,11891,11905]],[[11902,11895,11897]],[[11902,11897,11891]],[[11910,11900,11899]],[[11889,11905,11907]],[[11911,11897,11905]],[[11896,11909,11897]],[[11896,11908,11909]],[[11894,11893,11895]],[[11898,11903,11893]],[[11897,11909,11904]],[[11908,11900,11909]],[[11891,11911,11905]],[[11891,11897,11911]],[[11907,11899,11901]],[[11905,11904,11910]],[[11905,11910,11899]],[[11904,11909,11910]],[[11906,11907,11901]],[[11905,11899,11907]],[[11912,11900,11908]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e28998c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11913,11914,11915]],[[11916,11917,11918]],[[11919,11920,11921]],[[11922,11923,11924]],[[11925,11926,11927]],[[11924,11914,11927]],[[11928,11929,11930]],[[11931,11915,11932]],[[11933,11934,11935]],[[11926,11922,11936]],[[11935,11934,11937]],[[11938,11939,11940]],[[11918,11917,11927]],[[11916,11937,11941]],[[11936,11922,11924]],[[11923,11926,11942]],[[11928,11930,11939]],[[11915,11914,11932]],[[11921,11920,11943]],[[11933,11914,11944]],[[11920,11919,11945]],[[11945,11946,11920]],[[11919,11947,11945]],[[11913,11944,11914]],[[11948,11949,11946]],[[11949,11944,11950]],[[11927,11926,11936]],[[11951,11941,11929]],[[11952,11953,11915]],[[11913,11950,11944]],[[11931,11952,11915]],[[11943,11920,11950]],[[11922,11926,11923]],[[11926,11925,11942]],[[11946,11950,11920]],[[11949,11933,11944]],[[11946,11949,11950]],[[11954,11934,11933]],[[11936,11924,11927]],[[11932,11914,11924]],[[11917,11925,11927]],[[11941,11937,11929]],[[11934,11919,11955]],[[11938,11940,11932]],[[11955,11919,11939]],[[11952,11931,11940]],[[11923,11928,11938]],[[11929,11937,11934]],[[11923,11929,11928]],[[11951,11925,11941]],[[11953,11913,11915]],[[11953,11921,11913]],[[11913,11943,11950]],[[11913,11921,11943]],[[11924,11923,11932]],[[11942,11951,11923]],[[11946,11947,11948]],[[11946,11945,11947]],[[11934,11948,11947]],[[11954,11949,11948]],[[11940,11931,11932]],[[11940,11939,11952]],[[11952,11919,11921]],[[11956,11930,11929]],[[11919,11952,11939]],[[11921,11953,11952]],[[11923,11938,11932]],[[11928,11939,11938]],[[11929,11934,11956]],[[11956,11934,11955]],[[11923,11951,11929]],[[11942,11925,11951]],[[11919,11934,11947]],[[11937,11916,11935]],[[11918,11935,11916]],[[11918,11933,11935]],[[11934,11954,11948]],[[11933,11949,11954]],[[11917,11941,11925]],[[11917,11916,11941]],[[11939,11956,11955]],[[11939,11930,11956]],[[11957,11918,11927]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e290e1c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3056,11645,1788]],[[3056,3089,3057]],[[3056,3088,3089]],[[3056,1788,3088]],[[3088,3085,3087]],[[3087,3085,3086]],[[3088,3070,3085]],[[3085,3070,3084]],[[3084,3083,3082]],[[3084,3070,3083]],[[3083,3070,3081]],[[3088,1788,3070]],[[3070,3075,3072]],[[3070,3078,3075]],[[3070,1788,3078]],[[3078,1788,3058]],[[3058,1788,3059]],[[11645,1827,1788]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e29d205-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11958,11959,11960]],[[11961,11962,11963]],[[11964,11965,11966]],[[11967,11968,11969]],[[11969,11970,11971]],[[11972,11973,11959]],[[11969,11968,11974]],[[11975,11959,11976]],[[11972,11977,11978]],[[11967,11963,11962]],[[11979,11971,11958]],[[11970,11980,11981]],[[11970,11965,11964]],[[11981,11982,11975]],[[11983,11984,11985]],[[11984,11967,11969]],[[11970,11969,11974]],[[11967,11962,11968]],[[11970,11974,11980]],[[11968,11962,11974]],[[11964,11966,11958]],[[11976,11959,11958]],[[11973,11961,11963]],[[11973,11978,11961]],[[11985,11984,11969]],[[11983,11967,11984]],[[11965,11981,11966]],[[11981,11980,11982]],[[11979,11958,11960]],[[11966,11976,11958]],[[11985,11979,11960]],[[11971,11964,11958]],[[11977,11962,11978]],[[11962,11961,11978]],[[11969,11971,11979]],[[11970,11964,11971]],[[11977,11972,11982]],[[11978,11973,11972]],[[11966,11981,11976]],[[11965,11970,11981]],[[11979,11985,11969]],[[11960,11983,11985]],[[11975,11972,11959]],[[11982,11980,11977]],[[11981,11975,11976]],[[11982,11972,11975]],[[11974,11977,11980]],[[11974,11962,11977]],[[11986,11959,11973]],[[11987,11988,11960]],[[11960,11988,11983]],[[11959,11987,11960]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2a94ee-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11989,10140,10249]],[[10280,10140,11989]],[[10175,10280,11989]],[[10173,10175,11989]],[[10277,10173,11989]],[[11990,10277,11989]],[[11990,10275,10277]],[[11990,10270,10275]],[[11990,10268,10270]],[[11990,10266,10268]],[[11990,10264,10266]],[[11990,10262,10264]],[[10260,10259,11990]],[[11990,11991,11992]],[[10256,10257,11990]],[[10255,10256,11990]],[[10314,10255,11990]],[[10315,10314,11990]],[[10316,10315,11990]],[[10317,10316,11990]],[[10406,10317,11990]],[[10407,10406,11990]],[[10410,10407,11992]],[[10411,10410,11992]],[[10145,10411,11992]],[[10146,10145,11992]],[[10420,10146,11992]],[[11992,11991,11993]],[[10422,11992,10236]],[[10236,11992,10235]],[[10235,11992,10423]],[[10423,11992,10424]],[[10424,11992,10228]],[[10228,11992,10229]],[[10229,11992,10224]],[[10224,11992,10222]],[[10222,11992,10219]],[[10219,11992,10217]],[[10217,11992,10218]],[[10218,11992,10094]],[[10094,11992,10092]],[[10092,11992,11993]],[[10428,10092,11993]],[[10213,10428,11993]],[[10212,10213,11993]],[[10211,10212,11993]],[[10210,10211,11993]],[[10209,10210,11993]],[[10208,10209,11993]],[[11993,11991,11994]],[[10207,10206,11993]],[[10204,10207,11993]],[[10202,10204,11993]],[[10201,10202,11993]],[[10200,10201,11993]],[[10199,10200,11993]],[[10198,11993,10197]],[[10197,11994,10196]],[[10196,11994,10195]],[[10195,11994,10194]],[[11994,10192,10193]],[[11994,10191,10192]],[[11994,10190,10191]],[[11994,10189,10190]],[[11994,10188,10189]],[[11994,11995,10188]],[[10188,11995,10187]],[[10187,11995,10186]],[[10186,11995,10185]],[[10185,11995,10184]],[[10184,11995,10183]],[[11995,10180,10182]],[[11995,11989,10299]],[[10180,11995,10181]],[[10181,11995,10302]],[[10302,11995,10299]],[[10299,11989,10300]],[[10300,11989,10296]],[[10296,11989,10294]],[[10294,11989,10291]],[[10291,11989,10178]],[[10178,11989,10176]],[[10176,11989,10287]],[[11989,10308,10288]],[[11989,10254,10308]],[[11989,10282,10254]],[[11989,10137,10282]],[[11989,10251,10137]],[[11989,10281,10251]],[[11989,10249,10281]],[[10198,10199,11993]],[[11990,10259,10262]],[[10194,11994,10193]],[[11991,11989,11994]],[[10421,11992,10422]],[[10421,10420,11992]],[[10287,11989,10288]],[[11991,11990,11989]],[[10197,11993,11994]],[[10206,10208,11993]],[[10183,11995,10182]],[[11994,11989,11995]],[[10407,11990,11992]],[[10257,10260,11990]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2dc9d5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11996,11997,11998]],[[11999,12000,12001]],[[12002,12003,12004]],[[12002,12000,12003]],[[12005,12006,12000]],[[12007,12006,12005]],[[12005,12000,12008]],[[12006,12009,12010]],[[12011,12012,12006]],[[12001,12000,12004]],[[12000,12010,12003]],[[12004,12000,12002]],[[12013,12014,12015]],[[11999,12016,12000]],[[12017,11997,12015]],[[12008,12013,12015]],[[12016,12017,12014]],[[11996,12008,12015]],[[12013,12016,12014]],[[12000,12013,12008]],[[12000,12016,12013]],[[11996,12015,11997]],[[12014,12017,12015]],[[12007,12005,11996]],[[12006,12012,12009]],[[12018,12007,11998]],[[12019,12011,12007]],[[12000,12006,12010]],[[12007,12011,12006]],[[12018,12019,12007]],[[12018,12011,12019]],[[12007,11996,11998]],[[12005,12008,11996]],[[11999,12017,12016]],[[11999,11997,12017]],[[12020,11997,11999]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2e8cb2-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12021,12022,12023]],[[12024,12025,12026]],[[12027,12028,12029]],[[12030,12022,12031]],[[12026,12025,12030]],[[12032,12030,12025]],[[12033,12034,12035]],[[12036,12037,12038]],[[12039,12040,12041]],[[12035,12042,12043]],[[12039,12041,12044]],[[12033,12035,12038]],[[12045,12035,12034]],[[12045,12042,12035]],[[12040,12039,12037]],[[12046,12042,12030]],[[12047,12048,12049]],[[12038,12035,12043]],[[12025,12027,12029]],[[12043,12042,12046]],[[12046,12030,12032]],[[12042,12022,12030]],[[12045,12041,12023]],[[12045,12034,12041]],[[12050,12051,12049]],[[12052,12041,12040]],[[12041,12051,12023]],[[12053,12022,12054]],[[12051,12050,12054]],[[12055,12056,12027]],[[12057,12053,12054]],[[12057,12058,12059]],[[12027,12047,12028]],[[12056,12055,12048]],[[12024,12027,12025]],[[12056,12047,12027]],[[12047,12060,12028]],[[12049,12048,12061]],[[12029,12046,12032]],[[12028,12043,12046]],[[12059,12061,12048]],[[12049,12062,12050]],[[12057,12063,12024]],[[12055,12027,12063]],[[12038,12039,12044]],[[12037,12060,12052]],[[12047,12049,12052]],[[12052,12051,12041]],[[12064,12050,12062]],[[12054,12021,12051]],[[12060,12036,12065]],[[12038,12044,12033]],[[12056,12048,12047]],[[12059,12063,12057]],[[12055,12059,12048]],[[12064,12062,12061]],[[12060,12047,12052]],[[12061,12062,12049]],[[12061,12058,12064]],[[12057,12054,12050]],[[12041,12033,12044]],[[12041,12034,12033]],[[12057,12024,12066]],[[12063,12027,12024]],[[12058,12050,12064]],[[12058,12057,12050]],[[12037,12052,12040]],[[12049,12051,12052]],[[12067,12031,12022]],[[12067,12066,12031]],[[12053,12067,12022]],[[12066,12024,12031]],[[12025,12029,12032]],[[12028,12046,12029]],[[12065,12036,12038]],[[12037,12039,12038]],[[12043,12065,12038]],[[12060,12037,12036]],[[12028,12065,12043]],[[12028,12060,12065]],[[12053,12066,12067]],[[12053,12057,12066]],[[12061,12059,12058]],[[12055,12063,12059]],[[12031,12026,12030]],[[12031,12024,12026]],[[12051,12021,12023]],[[12054,12022,12021]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2f4faa-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12068,12069,12070]],[[12071,12072,12073]],[[12074,12075,12076]],[[12077,12078,12068]],[[12079,12080,12081]],[[12082,12083,12084]],[[12085,12086,12087]],[[12078,12088,12089]],[[12081,12090,12091]],[[12086,12091,12092]],[[12077,12093,12087]],[[12087,12092,12088]],[[12094,12085,12095]],[[12096,12086,12085]],[[12097,12073,12098]],[[12076,12075,12099]],[[12100,12071,12097]],[[12101,12074,12076]],[[12086,12079,12091]],[[12102,12103,12104]],[[12105,12076,12103]],[[12101,12106,12107]],[[12100,12098,12070]],[[12073,12108,12094]],[[12109,12071,12100]],[[12071,12073,12097]],[[12098,12068,12070]],[[12094,12095,12093]],[[12088,12077,12087]],[[12093,12095,12087]],[[12084,12091,12090]],[[12090,12110,12084]],[[12085,12087,12095]],[[12086,12092,12087]],[[12111,12099,12112]],[[12104,12112,12113]],[[12104,12111,12112]],[[12075,12112,12099]],[[12079,12105,12080]],[[12076,12099,12111]],[[12081,12102,12090]],[[12113,12083,12082]],[[12110,12104,12113]],[[12102,12080,12103]],[[12114,12078,12069]],[[12088,12092,12089]],[[12077,12088,12078]],[[12092,12091,12089]],[[12083,12112,12107]],[[12112,12075,12074]],[[12109,12106,12071]],[[12107,12074,12101]],[[12115,12109,12070]],[[12115,12106,12109]],[[12107,12115,12070]],[[12107,12106,12115]],[[12094,12108,12085]],[[12108,12072,12116]],[[12116,12072,12101]],[[12071,12106,12072]],[[12105,12101,12076]],[[12072,12106,12101]],[[12079,12081,12091]],[[12080,12102,12081]],[[12068,12114,12069]],[[12068,12078,12114]],[[12098,12094,12068]],[[12098,12073,12094]],[[12089,12084,12083]],[[12089,12091,12084]],[[12069,12089,12083]],[[12069,12078,12089]],[[12110,12102,12104]],[[12110,12090,12102]],[[12109,12100,12070]],[[12097,12098,12100]],[[12096,12079,12086]],[[12096,12116,12079]],[[12079,12116,12105]],[[12108,12073,12072]],[[12080,12105,12103]],[[12116,12101,12105]],[[12103,12111,12104]],[[12103,12076,12111]],[[12107,12112,12074]],[[12083,12113,12112]],[[12068,12093,12077]],[[12068,12094,12093]],[[12110,12082,12084]],[[12110,12113,12082]],[[12096,12108,12116]],[[12096,12085,12108]],[[12083,12117,12069]],[[12118,12107,12070]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3061e0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10364,10533,10358]],[[10533,10367,10358]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3061ec-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12119,12120,12121]],[[12119,12121,12122]],[[12122,12121,12123]],[[12123,12121,12124]],[[12124,12121,12125]],[[12125,12121,12126]],[[12126,12121,12127]],[[12127,12121,12128]],[[12128,12121,12129]],[[12129,12121,12130]],[[12130,12121,12131]],[[12131,12121,12132]],[[12132,12121,12133]],[[12133,12121,12134]],[[12134,12121,12135]],[[12135,12121,12136]],[[12136,12121,12137]],[[12137,12121,12138]],[[12138,12121,12139]],[[12139,12121,12140]],[[12140,12121,12141]],[[12141,12121,12142]],[[12120,12143,12121]],[[12144,12142,12121]],[[12145,12121,12146]],[[12146,12121,12147]],[[12147,12121,12148]],[[12148,12121,12149]],[[12149,12121,12150]],[[12150,12121,12151]],[[12151,12121,12152]],[[12152,12121,12153]],[[12145,12144,12121]],[[12154,12121,12155]],[[12155,12121,12156]],[[12156,12121,12157]],[[12157,12121,12158]],[[12158,12121,12159]],[[12159,12121,12160]],[[12160,12121,12161]],[[12161,12121,12162]],[[12162,12121,12163]],[[12163,12121,12164]],[[12121,12143,12165]],[[12166,12121,12167]],[[12167,12121,12168]],[[12168,12121,12169]],[[12169,12121,12170]],[[12170,12121,12171]],[[12171,12121,12172]],[[12172,12121,12173]],[[12173,12121,12174]],[[12174,12121,12175]],[[12175,12121,12176]],[[12176,12121,12177]],[[12177,12121,12178]],[[12178,12121,12179]],[[12179,12121,12180]],[[12180,12121,12181]],[[12181,12121,12182]],[[12182,12121,12183]],[[12184,12182,12183]],[[12185,12184,12183]],[[12186,12185,12183]],[[12187,12186,12183]],[[12188,12187,12183]],[[12189,12188,12183]],[[12190,12189,12183]],[[12191,12190,12183]],[[12192,12191,12183]],[[12193,12192,12183]],[[12194,12193,12183]],[[12183,12121,12195]],[[12196,12183,12197]],[[12197,12183,12198]],[[12198,12183,12199]],[[12199,12183,12200]],[[12200,12183,12201]],[[12201,12183,12202]],[[12202,12183,12203]],[[12203,12183,12204]],[[12204,12183,12205]],[[12205,12183,12206]],[[12206,12183,12195]],[[12195,12121,12207]],[[12207,12121,12208]],[[12208,12121,12209]],[[12209,12121,12165]],[[12164,12121,12166]],[[12154,12153,12121]],[[12210,12183,12196]],[[12210,12194,12183]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e319a5c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12211,1025,12212]],[[12213,1024,1023]],[[12214,12211,1023]],[[12212,1024,12213]],[[1023,12211,12215]],[[1025,1024,12212]],[[12215,12213,1023]],[[12215,12212,12213]],[[1015,12214,1023]],[[1015,1025,12211]],[[12215,12211,12212]],[[12214,1015,12211]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e328488-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12216,12217,3166]],[[12218,12219,12220]],[[12216,12221,12217]],[[12222,12223,12224]],[[12225,12226,12227]],[[12227,3115,3163]],[[12228,12229,12226]],[[12230,12231,12232]],[[12216,12233,12221]],[[12234,12235,12236]],[[12237,12231,12230]],[[12238,3115,12231]],[[12239,12223,12240]],[[12232,3115,12241]],[[12242,12221,12233]],[[12218,12217,12221]],[[12243,12230,12232]],[[12244,12245,12238]],[[12246,12247,12248]],[[12249,12250,12251]],[[12252,12233,12246]],[[12246,12233,12253]],[[12254,12255,12216]],[[12256,12257,12258]],[[12259,12255,12254]],[[12260,3166,12261]],[[12240,12262,3159]],[[12263,12229,12222]],[[12250,12249,12264]],[[12265,12238,12245]],[[12266,12243,12232]],[[12231,3115,12232]],[[12262,12228,3159]],[[12262,12222,12228]],[[12267,12268,12250]],[[12244,12238,12269]],[[12270,12271,12272]],[[12273,3169,12258]],[[12274,12275,12276]],[[12277,12278,12241]],[[12243,12279,12280]],[[12280,12230,12243]],[[12254,12216,3166]],[[12281,12233,12216]],[[3159,12225,3163]],[[12222,12262,12223]],[[12235,12216,12282]],[[12258,12283,12284]],[[12285,12286,12287]],[[12288,12267,12264]],[[12216,12235,12281]],[[12216,12255,12289]],[[12262,12240,12223]],[[12217,12279,12275]],[[12217,12290,12279]],[[12291,12237,12230]],[[12237,12292,12269]],[[12238,12231,12269]],[[12217,12240,3159]],[[12217,12275,12240]],[[12290,12292,12237]],[[12217,12245,12292]],[[12285,12265,12245]],[[12217,12293,12245]],[[12241,12276,12266]],[[12275,12279,12243]],[[3170,12261,3166]],[[3170,3169,12261]],[[12294,12247,12295]],[[12296,12238,12295]],[[12297,12298,12296]],[[12297,12296,12247]],[[12298,12299,12296]],[[12256,3169,12296]],[[12289,12256,12282]],[[12236,12235,12282]],[[12283,12259,12254]],[[12257,12255,12259]],[[12300,12221,12294]],[[12301,12252,12246]],[[12267,12288,12268]],[[12264,12249,12295]],[[12302,12295,12238]],[[12247,12296,12295]],[[12288,12264,12295]],[[12267,12250,12264]],[[12249,12300,12294]],[[12294,12301,12248]],[[12253,12297,12247]],[[3169,12238,12296]],[[3115,12224,12277]],[[12278,12303,12274]],[[12289,12257,12256]],[[12299,12281,12234]],[[12233,12297,12253]],[[12281,12299,12298]],[[12281,12297,12233]],[[12281,12298,12297]],[[12251,12218,12221]],[[12268,12219,12218]],[[12274,12276,12241]],[[12275,12243,12266]],[[12294,12304,12301]],[[12304,12242,12301]],[[12301,12246,12248]],[[12253,12247,12246]],[[12236,12282,12256]],[[12258,3169,12256]],[[12216,12289,12282]],[[12255,12257,12289]],[[12299,12256,12296]],[[12299,12236,12256]],[[12259,12258,12257]],[[12284,12305,12258]],[[12219,12268,12302]],[[12302,12268,12288]],[[12241,12266,12232]],[[12276,12275,12266]],[[12219,12302,12220]],[[12302,12238,12265]],[[12293,12285,12245]],[[12287,12220,12265]],[[12280,12291,12230]],[[12290,12217,12292]],[[12280,12290,12291]],[[12280,12279,12290]],[[12270,12254,3166]],[[12272,12284,12283]],[[12272,12283,12254]],[[12258,12259,12283]],[[12292,12244,12269]],[[12292,12245,12244]],[[12228,12225,3159]],[[12228,12226,12225]],[[3169,12306,12261]],[[12270,3166,12260]],[[12261,12306,12260]],[[12272,12254,12270]],[[12307,12306,12273]],[[12307,12260,12306]],[[12305,12273,12258]],[[12306,3169,12273]],[[12270,12307,12305]],[[12270,12260,12307]],[[12271,12305,12284]],[[12307,12273,12305]],[[12272,12271,12284]],[[12270,12305,12271]],[[12221,12304,12294]],[[12221,12242,12304]],[[12227,12263,3115]],[[12278,12274,12241]],[[12263,12222,12224]],[[12229,12228,12222]],[[3115,12277,12241]],[[12239,12240,12277]],[[12224,12239,12277]],[[12224,12223,12239]],[[12225,12227,3163]],[[12263,12224,3115]],[[12220,12302,12265]],[[12288,12295,12302]],[[12300,12249,12251]],[[12268,12218,12250]],[[12218,12286,12217]],[[12218,12220,12287]],[[12285,12287,12265]],[[12286,12218,12287]],[[12252,12242,12233]],[[12252,12301,12242]],[[12299,12234,12236]],[[12281,12235,12234]],[[12300,12251,12221]],[[12250,12218,12251]],[[12286,12293,12217]],[[12286,12285,12293]],[[12247,12294,12248]],[[12295,12249,12294]],[[12226,12263,12227]],[[12226,12229,12263]],[[12231,12237,12269]],[[12291,12290,12237]],[[12308,12278,12277]],[[12308,12303,12278]],[[12240,12308,12277]],[[12303,12275,12274]],[[12240,12303,12308]],[[12240,12275,12303]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e33202e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12309,12310,12311]],[[12312,12313,12314]],[[12315,7831,12316]],[[12317,12318,12319]],[[12320,12317,12321]],[[12322,12320,12321]],[[12321,12317,12323]],[[12324,12318,12317]],[[12316,7831,7832]],[[12325,12326,12327]],[[12328,12329,12330]],[[12327,12316,7832]],[[12331,12332,12333]],[[12334,12335,12336]],[[12337,12338,8060]],[[12339,7856,7867]],[[12340,7820,7856]],[[12341,7821,7820]],[[8055,12342,7867]],[[12343,12344,12345]],[[12346,12347,12348]],[[12349,12350,7856]],[[12351,12352,8060]],[[12338,8055,8060]],[[12353,12327,7832]],[[12324,12354,12355]],[[12350,12340,7856]],[[12356,7820,12340]],[[7831,12314,12357]],[[12333,8060,7831]],[[12358,12359,12341]],[[12359,7821,12341]],[[12360,12361,7856]],[[12349,12361,12362]],[[12338,12344,8055]],[[12309,12342,8055]],[[12363,12364,12365]],[[12366,12365,12367]],[[12363,12368,12369]],[[12370,12371,12372]],[[12361,12349,7856]],[[12362,12373,12374]],[[12375,12356,12340]],[[12356,12376,12358]],[[12377,12343,12378]],[[12338,12368,12379]],[[12332,12380,12333]],[[12352,12369,8060]],[[12381,12382,12383]],[[12384,12385,12364]],[[12386,12332,12331]],[[12387,12382,12381]],[[12388,12374,12340]],[[12389,12356,12375]],[[12353,12390,12391]],[[12392,12393,12317]],[[12354,12329,12394]],[[12354,12324,12317]],[[12326,12395,12396]],[[12317,12319,12323]],[[12327,12326,12396]],[[12325,12330,12397]],[[12338,12345,12344]],[[12338,12398,12345]],[[12336,8055,12399]],[[12374,12400,12340]],[[12357,12401,12331]],[[12381,12402,12403]],[[12339,12360,7856]],[[12339,12370,12360]],[[12350,12362,12340]],[[12362,12361,12373]],[[12404,12389,12400]],[[12376,12359,12358]],[[12405,12390,7832]],[[12391,12330,12325]],[[12401,12386,12331]],[[12401,12313,12387]],[[7820,12358,12341]],[[12406,7821,12359]],[[12365,12407,12367]],[[12408,12409,12347]],[[12337,12368,12338]],[[12369,12352,12384]],[[12351,12384,12352]],[[12380,12332,12381]],[[12410,12312,12320]],[[12313,12382,12387]],[[12331,12333,7831]],[[12351,8060,12333]],[[12400,12375,12340]],[[12400,12389,12375]],[[12356,12358,7820]],[[12356,12389,12376]],[[12395,12411,12396]],[[12412,12317,12320]],[[12413,12414,12415]],[[12315,12416,12314]],[[12396,12316,12327]],[[12396,12411,12316]],[[12417,12310,12418]],[[12361,12360,12370]],[[12313,12419,12382]],[[12420,12403,12421]],[[12344,12399,8055]],[[12422,12367,12407]],[[12423,12339,7867]],[[12424,12407,12425]],[[12426,12311,12417]],[[12409,12309,12311]],[[12309,12336,12310]],[[12309,8055,12336]],[[7831,12357,12331]],[[12416,12315,12316]],[[12326,12325,12397]],[[12394,12427,12354]],[[12428,12403,12429]],[[12335,12310,12336]],[[12430,12431,12432]],[[12372,12361,12370]],[[12346,12371,12423]],[[12370,12339,12371]],[[12347,12409,12426]],[[12342,12309,12409]],[[12342,12408,7867]],[[12342,12409,12408]],[[12380,12385,12384]],[[12425,12407,12365]],[[12351,12380,12384]],[[12351,12333,12380]],[[12412,12414,12317]],[[12414,12392,12317]],[[12432,12377,12378]],[[12422,12424,12428]],[[12420,12433,12425]],[[12421,12428,12433]],[[12431,12428,12429]],[[12418,12434,12417]],[[12410,12435,12312]],[[12435,12436,12419]],[[12431,12418,12437]],[[12438,12439,12348]],[[7832,12390,12353]],[[12328,12394,12329]],[[12440,12441,12404]],[[12376,12389,12404]],[[12348,12347,12438]],[[12442,12434,12443]],[[12408,12444,7867]],[[12408,12347,12444]],[[12384,12364,12369]],[[12425,12433,12424]],[[12337,12369,12368]],[[12337,8060,12369]],[[12385,12425,12364]],[[12385,12420,12425]],[[12426,12417,12442]],[[12440,12404,12400]],[[12439,12441,12373]],[[12406,12404,12441]],[[12445,12398,12338]],[[12445,12338,12379]],[[12383,12402,12381]],[[12446,12403,12402]],[[12380,12381,12385]],[[12387,12386,12401]],[[12332,12387,12381]],[[12332,12386,12387]],[[12431,12434,12418]],[[12406,12441,12434]],[[12442,12438,12347]],[[12443,12439,12438]],[[12442,12417,12434]],[[12311,12310,12417]],[[12378,12343,12398]],[[12445,12379,12366]],[[12377,12432,12431]],[[12430,12367,12431]],[[12430,12447,12366]],[[12379,12368,12366]],[[12367,12430,12366]],[[12447,12398,12445]],[[12366,12447,12445]],[[12378,12398,12447]],[[12431,12422,12428]],[[12431,12367,12422]],[[12357,12314,12401]],[[12312,12419,12313]],[[12401,12314,12313]],[[7831,12315,12314]],[[12429,12410,12322]],[[12312,12415,12412]],[[12419,12436,12382]],[[12382,12446,12383]],[[12436,12446,12382]],[[12436,12435,12446]],[[12327,12391,12325]],[[12390,12405,12328]],[[12353,12391,12327]],[[12390,12330,12391]],[[12322,12410,12320]],[[12429,12446,12435]],[[12347,12426,12442]],[[12409,12311,12426]],[[12444,12423,7867]],[[12371,12339,12423]],[[12420,12421,12433]],[[12403,12428,12421]],[[12335,12448,12437]],[[12399,12344,12343]],[[12398,12343,12345]],[[12377,12449,12343]],[[12310,12335,12418]],[[12399,12343,12449]],[[12449,12448,12334]],[[12437,12377,12431]],[[12334,12448,12335]],[[12449,12377,12448]],[[12395,12414,12411]],[[12395,12397,12392]],[[12326,12397,12395]],[[12330,12329,12393]],[[12378,12430,12432]],[[12378,12447,12430]],[[12428,12424,12433]],[[12422,12407,12424]],[[12335,12437,12418]],[[12448,12377,12437]],[[12390,12328,12330]],[[12405,12394,12328]],[[12406,12376,12404]],[[12406,12359,12376]],[[12381,12420,12385]],[[12381,12403,12420]],[[12314,12415,12312]],[[12413,12411,12414]],[[12411,12413,12316]],[[12415,12314,12416]],[[12416,12413,12415]],[[12416,12316,12413]],[[12312,12412,12320]],[[12415,12414,12412]],[[12395,12392,12414]],[[12397,12330,12393]],[[12355,12354,12427]],[[12393,12329,12354]],[[12317,12393,12354]],[[12392,12397,12393]],[[12371,12348,12372]],[[12346,12444,12347]],[[12406,12431,12429]],[[12406,12434,12431]],[[12348,12439,12372]],[[12434,12441,12439]],[[12372,12373,12361]],[[12372,12439,12373]],[[12340,12362,12388]],[[12350,12349,12362]],[[12362,12374,12388]],[[12373,12441,12440]],[[12374,12440,12400]],[[12374,12373,12440]],[[12368,12363,12366]],[[12364,12425,12365]],[[12364,12363,12369]],[[12365,12366,12363]],[[12312,12435,12419]],[[12410,12429,12435]],[[12442,12443,12438]],[[12434,12439,12443]],[[12383,12446,12402]],[[12429,12403,12446]],[[12399,12334,12336]],[[12399,12449,12334]],[[12444,12346,12423]],[[12348,12371,12346]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e336e96-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12450,12451,12452]],[[12453,12452,12454]],[[12455,12456,12457]],[[12456,12451,12458]],[[12458,12459,12457]],[[12458,12451,12460]],[[12459,12455,12457]],[[12461,12451,12456]],[[12462,12463,12453]],[[12462,12456,12455]],[[12461,12462,12454]],[[12461,12456,12462]],[[12453,12464,12452]],[[12463,12455,12464]],[[12465,12455,12459]],[[12463,12462,12455]],[[12462,12453,12454]],[[12463,12464,12453]],[[12464,12465,12450]],[[12464,12455,12465]],[[12450,12460,12451]],[[12465,12459,12460]],[[12459,12458,12460]],[[12457,12456,12458]],[[12464,12450,12452]],[[12465,12460,12450]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e33bd04-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12466,12467,12468]],[[11826,12469,12470]],[[11814,12471,11808]],[[12469,11809,12472]],[[12473,12474,12475]],[[12476,11826,12470]],[[12476,11814,11826]],[[12471,12477,11808]],[[12478,12479,12475]],[[12480,12481,12482]],[[12483,12472,12468]],[[12467,12477,12468]],[[12479,12473,12475]],[[12484,12485,12481]],[[12470,12469,12468]],[[12472,12466,12468]],[[12484,12480,12467]],[[12482,12477,12467]],[[12469,12472,12483]],[[11809,12486,12472]],[[12473,12485,12474]],[[12481,12480,12484]],[[12472,12486,12466]],[[11809,12473,12479]],[[12468,12469,12483]],[[11826,11809,12469]],[[12478,12467,12466]],[[12475,12474,12484]],[[12475,12484,12467]],[[12474,12485,12484]],[[12481,12473,11809]],[[12481,12485,12473]],[[12467,12478,12475]],[[12466,12486,12478]],[[12480,12482,12467]],[[11808,12477,12482]],[[11808,12481,11809]],[[11808,12482,12481]],[[12476,12471,11814]],[[12476,12477,12471]],[[12486,12479,12478]],[[12486,11809,12479]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e34317c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1aa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12487,12488,12489]],[[12490,12491,12492]],[[12488,12491,12489]],[[12493,12489,12491]],[[12494,12495,12496]],[[12497,12493,12491]],[[12490,12498,12491]],[[12499,12500,12501]],[[12490,12499,12498]],[[12502,12493,12497]],[[12500,12503,12504]],[[12500,12499,12503]],[[12498,12497,12491]],[[12498,12499,12501]],[[12505,12506,12495]],[[12502,12501,12507]],[[12504,12492,12488]],[[12504,12503,12490]],[[12487,12508,12509]],[[12492,12491,12488]],[[12504,12490,12492]],[[12503,12499,12490]],[[12501,12496,12510]],[[12507,12493,12502]],[[12511,12512,12513]],[[12508,12514,12515]],[[12494,12505,12495]],[[12515,12506,12505]],[[12511,12504,12512]],[[12514,12506,12515]],[[12498,12502,12497]],[[12510,12496,12516]],[[12515,12494,12496]],[[12515,12505,12494]],[[12506,12516,12495]],[[12516,12493,12507]],[[12498,12501,12502]],[[12500,12496,12501]],[[12501,12510,12507]],[[12496,12495,12516]],[[12510,12516,12507]],[[12506,12493,12516]],[[12496,12500,12511]],[[12504,12488,12512]],[[12496,12511,12515]],[[12512,12488,12487]],[[12513,12509,12515]],[[12513,12512,12509]],[[12509,12508,12515]],[[12509,12512,12487]],[[12515,12511,12513]],[[12500,12504,12511]],[[12514,12487,12489]],[[12514,12508,12487]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e347fd5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12517,12518,12519]],[[12520,12521,12522]],[[12523,12524,12525]],[[12520,12526,12527]],[[12519,12518,12524]],[[12517,12528,12527]],[[12523,12520,12522]],[[12524,12518,12525]],[[12520,12525,12526]],[[12520,12523,12525]],[[12517,12526,12518]],[[12525,12518,12526]],[[12519,12523,12522]],[[12519,12524,12523]],[[12521,12527,12528]],[[12521,12520,12527]],[[12526,12517,12527]],[[12519,12528,12517]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e34ce31-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12529,12530,12531]],[[12529,12531,12532]],[[12533,12534,12535]],[[12530,12536,12531]],[[12535,12529,12532]],[[12534,12537,12530]],[[12538,12533,12532]],[[12534,12529,12535]],[[12533,12537,12534]],[[12538,12536,12537]],[[12532,12533,12535]],[[12538,12537,12533]],[[12534,12530,12529]],[[12537,12536,12530]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e362de1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12539,3111,12540]],[[12541,3046,3104]],[[12542,12543,12541]],[[3046,12544,3047]],[[12545,12546,12547]],[[12548,12549,12550]],[[12551,12552,12553]],[[12554,12555,12556]],[[12557,12558,12559]],[[12560,12561,12562]],[[12563,12564,3099]],[[12565,12470,12566]],[[12567,12550,12568]],[[12569,12476,12570]],[[12571,12547,12546]],[[12572,12476,12470]],[[12573,12468,12574]],[[12550,12549,12568]],[[12575,12576,12564]],[[12577,12578,12579]],[[12578,12580,12581]],[[12567,12549,12580]],[[12563,12567,12580]],[[12563,12577,12579]],[[12564,12553,3099]],[[12581,12576,12578]],[[12582,12583,12559]],[[12552,12559,12558]],[[12576,12575,12584]],[[12579,12584,12575]],[[12585,12586,12587]],[[12578,12576,12584]],[[12587,12559,12588]],[[12588,12589,12585]],[[12588,12559,12589]],[[12576,12582,12564]],[[12589,12590,12551]],[[12551,12590,12552]],[[12589,12559,12552]],[[12556,12555,12591]],[[12556,12592,12561]],[[12567,12554,12550]],[[12567,12591,12554]],[[12553,12552,12558]],[[12590,12589,12552]],[[12592,12556,12591]],[[12556,12561,12554]],[[12567,12563,3099]],[[12579,12575,12563]],[[12591,12567,3099]],[[12568,12549,12567]],[[12585,12593,12586]],[[12585,12564,12593]],[[12564,12582,12593]],[[12582,12559,12586]],[[12594,12582,12576]],[[12586,12593,12582]],[[12595,12591,3099]],[[12555,12554,12591]],[[12579,12578,12584]],[[12580,12549,12581]],[[12580,12577,12563]],[[12580,12578,12577]],[[12585,12587,12588]],[[12586,12559,12587]],[[12575,12564,12563]],[[12585,12551,12564]],[[12564,12551,12553]],[[12585,12589,12551]],[[12596,12597,12571]],[[12598,3111,12539]],[[12565,12599,12470]],[[12600,12601,12602]],[[12603,12604,12539]],[[12603,12605,12604]],[[12606,12594,12468]],[[12581,12549,12607]],[[12541,12543,12608]],[[12609,12610,12611]],[[12612,12613,12596]],[[12597,12614,12571]],[[3103,12612,3104]],[[12612,12476,12569]],[[12615,12606,12468]],[[12604,12477,12616]],[[12558,12557,3111]],[[12615,12468,12617]],[[12559,12583,12557]],[[12468,12477,12604]],[[12546,12545,12539]],[[12547,12598,12545]],[[12477,12546,12616]],[[12477,12571,12546]],[[12557,12583,12618]],[[12582,12594,12583]],[[12619,12620,12565]],[[12570,12543,12569]],[[3093,12544,12610]],[[3093,3047,12544]],[[12621,12622,12623]],[[12624,12625,12544]],[[12626,12627,12628]],[[12629,3093,12609]],[[12630,12631,12632]],[[12599,12633,12634]],[[12546,12539,12616]],[[12545,12598,12539]],[[12619,12635,12620]],[[12626,12636,12637]],[[12562,12592,12630]],[[12621,12627,12638]],[[12639,12632,12640]],[[12641,12637,12642]],[[12574,12594,12581]],[[12606,12583,12594]],[[12599,12634,12636]],[[12636,12643,12637]],[[12574,12581,12644]],[[12594,12576,12581]],[[12607,12602,12644]],[[12600,12468,12573]],[[12644,12602,12601]],[[12566,12562,12645]],[[12646,12561,12560]],[[12646,12554,12561]],[[12600,12647,12648]],[[12646,12550,12554]],[[12648,12646,12560]],[[12647,12548,12646]],[[12571,12614,12547]],[[12614,3111,12598]],[[12468,12600,12470]],[[12602,12607,12548]],[[12648,12647,12646]],[[12600,12602,12548]],[[12595,12631,12630]],[[12632,12639,12630]],[[12573,12574,12644]],[[12468,12594,12574]],[[12618,12615,12617]],[[12583,12606,12615]],[[12649,12650,12651]],[[12541,3104,12542]],[[12611,12610,12572]],[[12652,12608,12543]],[[12611,12622,12609]],[[12609,3093,12610]],[[12621,12628,12627]],[[12623,12622,12611]],[[12477,12596,12571]],[[12613,12614,12597]],[[12646,12548,12550]],[[12647,12600,12548]],[[12557,12605,12540]],[[12617,12468,12604]],[[12539,12604,12616]],[[12605,12617,12604]],[[12562,12566,12560]],[[12470,12600,12648]],[[12638,12609,12622]],[[12638,12627,12629]],[[12645,12619,12565]],[[12562,12635,12619]],[[12561,12592,12562]],[[12591,12595,12592]],[[12581,12607,12644]],[[12549,12548,12607]],[[3104,12612,12569]],[[3103,12613,12612]],[[12601,12573,12644]],[[12601,12600,12573]],[[12544,12651,12610]],[[12544,12608,12624]],[[12625,12624,12476]],[[12625,12651,12544]],[[12650,12649,12476]],[[12650,12610,12651]],[[12624,12652,12476]],[[12624,12608,12652]],[[12640,12643,12634]],[[12653,3093,12643]],[[12626,12641,12627]],[[12642,3093,12629]],[[12470,12599,12626]],[[12599,12620,12633]],[[12638,12629,12609]],[[12627,12641,12642]],[[12639,12633,12620]],[[12634,12643,12636]],[[12572,12623,12611]],[[12470,12626,12628]],[[12470,12623,12572]],[[12470,12628,12623]],[[12622,12621,12638]],[[12623,12628,12621]],[[12572,12650,12476]],[[12572,12610,12650]],[[12569,12542,3104]],[[12569,12543,12542]],[[12631,12595,12653]],[[12653,12643,12640]],[[12566,12645,12565]],[[12562,12619,12645]],[[12652,12570,12476]],[[12652,12543,12570]],[[12639,12640,12633]],[[12633,12640,12634]],[[12626,12599,12636]],[[12565,12620,12599]],[[12540,12603,12539]],[[12540,12605,12603]],[[12547,12614,12598]],[[12613,3111,12614]],[[12635,12639,12620]],[[12635,12630,12639]],[[12605,12557,12617]],[[12540,3111,12557]],[[12544,12541,12608]],[[12544,3046,12541]],[[12596,12613,12597]],[[3103,3111,12613]],[[12476,12596,12477]],[[12476,12612,12596]],[[12557,12618,12617]],[[12583,12615,12618]],[[12649,12625,12476]],[[12649,12651,12625]],[[12631,12653,12632]],[[12595,3099,12653]],[[12632,12653,12640]],[[3099,3093,12653]],[[12562,12630,12635]],[[12592,12595,12630]],[[12626,12637,12641]],[[12643,3093,12637]],[[12627,12642,12629]],[[12637,3093,12642]],[[12566,12648,12560]],[[12566,12470,12648]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e36a37d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10052,12654,10051]],[[12654,10049,10051]],[[12654,10050,10049]],[[12654,10147,10050]],[[12654,10172,10147]],[[12654,10171,10172]],[[12654,10170,10171]],[[12655,10169,10170]],[[12655,10168,10169]],[[12655,10167,10168]],[[12655,10166,10167]],[[12655,10165,10166]],[[10163,10164,12655]],[[12655,12656,12657]],[[10161,12655,10160]],[[10160,12655,10159]],[[10159,12655,10158]],[[10387,12655,12657]],[[10157,10158,12655]],[[10156,10157,12655]],[[10154,10156,12655]],[[10153,10154,12655]],[[10151,10153,12655]],[[10394,10151,12655]],[[10390,10394,12655]],[[10391,10390,12655]],[[10387,10391,12655]],[[10330,10387,12657]],[[10329,10330,12657]],[[10327,10329,12657]],[[10324,10327,12657]],[[12657,12656,12658]],[[10565,12657,10318]],[[10318,12657,10319]],[[10319,12657,10331]],[[10331,12657,10129]],[[10129,12657,12659]],[[10340,10129,12659]],[[10126,10340,12659]],[[12659,12657,12658]],[[10123,10341,12659]],[[10271,10123,12659]],[[10085,10271,12659]],[[10120,10085,12659]],[[10118,10120,12659]],[[10116,10118,12659]],[[12658,12656,12660]],[[10112,12658,10110]],[[10110,12658,10108]],[[10102,12658,12660]],[[10105,10108,12658]],[[10103,12658,10102]],[[10102,12660,10100]],[[10100,12660,10098]],[[10098,12660,10095]],[[10095,12660,10091]],[[10091,12660,10089]],[[10089,12660,10087]],[[12660,10082,10086]],[[12660,10079,10082]],[[12660,10078,10079]],[[12660,10077,10078]],[[12660,12661,10077]],[[10077,12661,10076]],[[10076,12661,10075]],[[10075,12661,10074]],[[10074,12661,10073]],[[12661,12654,10064]],[[10072,12661,10071]],[[10071,12661,10070]],[[10070,12661,10069]],[[10069,12661,10068]],[[10068,12661,10066]],[[10066,12661,10067]],[[10067,12661,10065]],[[10065,12661,10064]],[[10064,12654,10063]],[[10063,12654,10062]],[[10062,12654,10030]],[[10030,12654,10031]],[[10031,12654,10061]],[[10061,12654,10059]],[[10059,12654,10060]],[[12654,12655,10170]],[[10058,12654,10057]],[[10057,12654,10056]],[[10056,12654,10055]],[[10055,12654,10054]],[[10054,12654,10053]],[[10053,12654,10052]],[[10103,10105,12658]],[[12655,10164,10165]],[[10325,12657,10565]],[[10325,10324,12657]],[[10087,12660,10086]],[[12656,12654,12661]],[[10162,12655,10161]],[[10162,10163,12655]],[[10114,12658,10112]],[[10114,10116,12658]],[[10060,12654,10058]],[[12656,12655,12654]],[[10116,12659,12658]],[[10341,10126,12659]],[[10073,12661,10072]],[[12660,12656,12661]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3717f5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12662,12663,3214]],[[12664,12665,12666]],[[12667,12668,12669]],[[3044,12670,3042]],[[3044,3042,3045]],[[12671,12672,3040]],[[12673,12674,12675]],[[12676,12677,12662]],[[12678,12679,12680]],[[12681,3216,12682]],[[12683,12684,12685]],[[12686,12687,12670]],[[12688,12686,12672]],[[12684,12689,12690]],[[12691,12692,12693]],[[12694,12695,12663]],[[12696,3216,12681]],[[3216,3215,12682]],[[12691,12697,12698]],[[12680,12699,12700]],[[12691,12698,12701]],[[12701,12699,12680]],[[12685,12701,12702]],[[12691,12701,12703]],[[12702,12698,12697]],[[12701,12679,12678]],[[12704,12705,12706]],[[12706,3215,12707]],[[12708,12695,12709]],[[12665,12664,12699]],[[12678,12680,12710]],[[12708,12666,12695]],[[12711,12691,12693]],[[12711,12697,12691]],[[12710,12680,12676]],[[12679,12701,12680]],[[12704,12707,12712]],[[12713,3215,12663]],[[12711,12702,12697]],[[12714,12685,12702]],[[12713,12707,3215]],[[12706,12682,3215]],[[12715,12662,12700]],[[12713,12716,12665]],[[12663,12715,12709]],[[12664,12666,12708]],[[12702,12701,12698]],[[12685,12699,12701]],[[12665,12699,12717]],[[12706,12681,12682]],[[12704,12706,12707]],[[12718,12719,12704]],[[12709,12664,12708]],[[12715,12699,12664]],[[12709,12715,12664]],[[12676,12680,12700]],[[12713,12704,12712]],[[12720,12696,12718]],[[12706,12705,12681]],[[12717,12721,12665]],[[12693,12710,12676]],[[12693,12692,12710]],[[12704,12719,12705]],[[12669,12722,12723]],[[12715,12700,12699]],[[12677,12676,12700]],[[12714,12711,12693]],[[12714,12702,12711]],[[12716,12713,12663]],[[12712,12707,12713]],[[12692,12703,12710]],[[12703,12701,12678]],[[12710,12703,12678]],[[12692,12691,12703]],[[12662,12715,12663]],[[12662,12677,12700]],[[12714,12662,3214]],[[12693,12676,12662]],[[12709,12694,12663]],[[12709,12695,12694]],[[12695,12716,12663]],[[12695,12666,12716]],[[12685,12714,3214]],[[12693,12662,12714]],[[3042,12670,3040]],[[12670,12724,12675]],[[12685,12684,12686]],[[12685,3214,12725]],[[12696,12726,12727]],[[12728,12729,3043]],[[12730,12731,12732]],[[12728,3216,12727]],[[3040,12670,12687]],[[12675,12674,12686]],[[12724,12733,12675]],[[12734,12735,12729]],[[12736,12673,12675]],[[12737,12738,12673]],[[12683,12689,12684]],[[12739,12683,12740]],[[12704,12713,12665]],[[12718,12704,12665]],[[12741,12671,3040]],[[12672,3041,3040]],[[12727,12726,12668]],[[12742,12721,12717]],[[12705,12696,12681]],[[12705,12719,12696]],[[12743,12744,12733]],[[12734,12729,12728]],[[12736,12737,12673]],[[12745,12743,12746]],[[12728,12727,12747]],[[3216,12696,12727]],[[12667,12669,12674]],[[12668,12726,12720]],[[12668,12720,12669]],[[12696,12719,12718]],[[12748,12718,12665]],[[12720,12726,12696]],[[12746,12743,12724]],[[12745,12749,12750]],[[12748,12665,12721]],[[12716,12666,12665]],[[12744,12750,12751]],[[12731,3043,12729]],[[12670,12675,12686]],[[12733,12744,12736]],[[12668,12667,12727]],[[12674,12673,12752]],[[12667,12753,12747]],[[12752,12738,12732]],[[12753,12667,12674]],[[12747,12727,12667]],[[12751,12750,12749]],[[12744,12743,12750]],[[12741,12688,12671]],[[12686,3041,12672]],[[3216,12728,3043]],[[12747,12753,12734]],[[12751,12754,12737]],[[12737,12730,12738]],[[12725,12683,12685]],[[12690,12686,12684]],[[12687,12755,3040]],[[12756,12686,12688]],[[12755,12756,12741]],[[12687,12686,12756]],[[12723,12717,12699]],[[12669,12757,12722]],[[12723,12722,12742]],[[12757,12718,12722]],[[12742,12748,12721]],[[12722,12718,12748]],[[12743,12745,12750]],[[3044,12749,12745]],[[12746,12724,12670]],[[12743,12733,12724]],[[12673,12738,12752]],[[12752,12731,12735]],[[12747,12734,12728]],[[12753,12735,12734]],[[3041,12758,3214]],[[3041,12686,12759]],[[12723,12742,12717]],[[12722,12748,12742]],[[3044,12746,12670]],[[3044,12745,12746]],[[12674,12723,12699]],[[12674,12669,12723]],[[12744,12751,12737]],[[12749,12754,12751]],[[12758,12725,3214]],[[12758,12740,12725]],[[12754,12730,12737]],[[3044,3043,12730]],[[3044,12754,12749]],[[3044,12730,12754]],[[12735,12731,12729]],[[12730,3043,12731]],[[12739,12690,12689]],[[12759,12686,12690]],[[12683,12739,12689]],[[12740,12758,12759]],[[12739,12759,12690]],[[12758,3041,12759]],[[12733,12736,12675]],[[12744,12737,12736]],[[12739,12740,12759]],[[12683,12725,12740]],[[12671,12688,12672]],[[12741,12756,12688]],[[12757,12720,12718]],[[12757,12669,12720]],[[12752,12732,12731]],[[12738,12730,12732]],[[12753,12752,12735]],[[12753,12674,12752]],[[3040,12755,12741]],[[12687,12756,12755]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e37180a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12760,12761,12762]],[[12763,12764,12765]],[[12764,3099,12766]],[[3097,12767,3096]],[[3096,12767,3095]],[[3095,12767,3094]],[[3094,12767,3092]],[[3092,12767,3091]],[[3091,12767,3090]],[[12768,12769,12770]],[[12771,12772,12766]],[[12773,12766,12774]],[[12775,12553,12776]],[[12767,3098,12764]],[[12764,3098,3099]],[[12762,12774,12766]],[[12766,3099,12762]],[[12770,12777,12778]],[[12779,12780,12781]],[[12782,12783,12780]],[[3056,3090,12767]],[[12784,12785,12762]],[[12784,12783,12785]],[[12778,12783,12784]],[[12764,12786,12767]],[[12774,12762,12785]],[[3099,12553,12762]],[[12785,12782,12774]],[[12785,12783,12782]],[[12782,12780,12774]],[[12766,12772,12765]],[[12779,12773,12774]],[[12787,12781,12772]],[[12762,12761,12784]],[[12762,12553,12760]],[[11645,12775,12776]],[[12761,12770,12778]],[[12774,12780,12779]],[[12788,3056,12786]],[[12787,12772,12771]],[[12783,3056,12772]],[[12773,12771,12766]],[[12773,12779,12781]],[[12775,12760,12553]],[[12775,11645,12768]],[[12775,12768,12760]],[[12769,12777,12770]],[[3056,12777,11645]],[[3056,12783,12777]],[[12760,12770,12761]],[[12760,12768,12770]],[[12761,12778,12784]],[[12777,12783,12778]],[[12772,12789,12765]],[[12788,12786,12790]],[[12789,12763,12765]],[[12763,12788,12790]],[[12765,12764,12766]],[[12790,12786,12764]],[[11645,12769,12768]],[[11645,12777,12769]],[[12763,12790,12764]],[[12763,12789,12788]],[[12772,12788,12789]],[[12772,3056,12788]],[[3056,12767,12786]],[[3097,3098,12767]],[[12783,12781,12780]],[[12783,12772,12781]],[[12773,12787,12771]],[[12773,12781,12787]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e39d73d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12791,12792,12793]],[[12794,12792,12795]],[[12792,12794,12796]],[[12797,12798,12799]],[[12793,12792,12796]],[[12800,12801,12797]],[[12802,12803,12804]],[[12805,12793,12806]],[[12806,12793,12796]],[[12807,12808,12809]],[[12806,12810,12805]],[[12801,12798,12797]],[[12796,12811,12807]],[[12811,12794,12795]],[[12812,12813,12814]],[[12795,12792,12791]],[[12813,12797,12799]],[[12804,12815,12816]],[[12813,12812,12797]],[[12817,12797,12812]],[[12814,12813,12799]],[[12814,12803,12812]],[[12818,12795,12808]],[[12811,12796,12794]],[[12818,12811,12795]],[[12807,12799,12796]],[[12807,12814,12799]],[[12803,12809,12804]],[[12807,12809,12814]],[[12809,12815,12804]],[[12819,12820,12821]],[[12822,12821,12810]],[[12817,12823,12824]],[[12822,12825,12826]],[[12818,12807,12811]],[[12818,12808,12807]],[[12815,12805,12810]],[[12810,12798,12801]],[[12814,12809,12803]],[[12808,12815,12809]],[[12802,12817,12812]],[[12823,12820,12819]],[[12808,12805,12815]],[[12808,12795,12791]],[[12800,12827,12828]],[[12820,12804,12816]],[[12822,12826,12828]],[[12826,12810,12801]],[[12823,12802,12804]],[[12812,12803,12802]],[[12826,12801,12828]],[[12826,12825,12810]],[[12827,12800,12797]],[[12828,12801,12800]],[[12827,12823,12819]],[[12816,12815,12810]],[[12822,12810,12825]],[[12806,12798,12810]],[[12821,12816,12810]],[[12821,12820,12816]],[[12824,12823,12827]],[[12817,12802,12823]],[[12797,12824,12827]],[[12797,12817,12824]],[[12822,12819,12821]],[[12823,12804,12820]],[[12828,12819,12822]],[[12828,12827,12819]],[[12805,12791,12793]],[[12805,12808,12791]],[[12806,12829,12798]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3a4cc7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12830,12831,12832]],[[12833,12834,12835]],[[12836,12837,12838]],[[12839,12831,12840]],[[12841,12836,12842]],[[12835,12831,12843]],[[12844,12845,12830]],[[12838,12837,12846]],[[12840,12846,12839]],[[12837,12839,12846]],[[12836,12839,12837]],[[12841,12831,12839]],[[12830,12843,12831]],[[12845,12844,12833]],[[12845,12835,12843]],[[12834,12840,12835]],[[12842,12844,12832]],[[12847,12838,12846]],[[12833,12848,12847]],[[12847,12846,12834]],[[12835,12840,12831]],[[12834,12846,12840]],[[12842,12836,12838]],[[12841,12839,12836]],[[12833,12847,12834]],[[12848,12838,12847]],[[12844,12830,12832]],[[12845,12843,12830]],[[12842,12848,12844]],[[12842,12838,12848]],[[12845,12833,12835]],[[12844,12848,12833]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3ae885-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12849,12850,12851]],[[12852,12850,12849]],[[12853,12852,12849]],[[12854,12853,12849]],[[12855,12854,12849]],[[12856,12855,12849]],[[12857,12856,12849]],[[12858,12857,12849]],[[12859,12858,12849]],[[12849,12860,12861]],[[12862,12863,12849]],[[12864,12862,12849]],[[12865,12864,12849]],[[12866,12865,12849]],[[12867,12866,12849]],[[12868,12867,12849]],[[12869,12868,12849]],[[12870,12869,12849]],[[12871,12870,12849]],[[12872,12871,12849]],[[12873,12872,12849]],[[12874,12873,12849]],[[12849,12851,12875]],[[12876,12877,12849]],[[12878,12876,12861]],[[12879,12878,12861]],[[12880,12879,12861]],[[12881,12860,12882]],[[12883,12861,12884]],[[12884,12861,12885]],[[12885,12861,12886]],[[12886,12861,12887]],[[12849,12877,12874]],[[12888,12861,12889]],[[12889,12861,12890]],[[12890,12861,12881]],[[12891,12890,12881]],[[12892,12891,12881]],[[12893,12892,12881]],[[12894,12893,12881]],[[12895,12894,12881]],[[12896,12895,12881]],[[12897,12881,12898]],[[12898,12881,12899]],[[12900,12881,12882]],[[12901,12899,12881]],[[12902,12901,12881]],[[12900,12902,12881]],[[12903,12849,12875]],[[12904,12905,12882]],[[12906,12904,12882]],[[12907,12906,12882]],[[12908,12907,12882]],[[12909,12908,12882]],[[12910,12909,12882]],[[12882,12860,12911]],[[12912,12882,12913]],[[12913,12882,12914]],[[12914,12882,12915]],[[12915,12882,12916]],[[12917,12915,12916]],[[12918,12917,12916]],[[12919,12918,12916]],[[12916,12882,12911]],[[12920,12921,12916]],[[12922,12920,12916]],[[12923,12922,12916]],[[12924,12923,12916]],[[12925,12926,12916]],[[12916,12926,12924]],[[12925,12927,12926]],[[12925,12928,12927]],[[12925,12929,12928]],[[12925,12930,12929]],[[12911,12860,12849]],[[12931,12925,12932]],[[12932,12925,12933]],[[12933,12925,12934]],[[12934,12925,12935]],[[12935,12911,12936]],[[12936,12911,12937]],[[12937,12911,12938]],[[12938,12911,12939]],[[12939,12911,12940]],[[12940,12911,12941]],[[12941,12911,12942]],[[12942,12911,12903]],[[12903,12911,12849]],[[12905,12900,12882]],[[12888,12887,12861]],[[12943,12861,12883]],[[12943,12880,12861]],[[12944,12882,12912]],[[12944,12910,12882]],[[12945,12925,12931]],[[12925,12946,12930]],[[12935,12925,12911]],[[12945,12946,12925]],[[12876,12849,12861]],[[12863,12859,12849]],[[12925,12916,12911]],[[12921,12919,12916]],[[12896,12881,12897]],[[12861,12860,12881]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3bd29c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12947,12948,12949]],[[12950,12951,12952]],[[12953,12954,12955]],[[12954,12956,12957]],[[12958,12957,12956]],[[12949,12959,12960]],[[12951,12961,12955]],[[12962,12963,12950]],[[12961,12951,12963]],[[12952,12947,12964]],[[12952,12964,12965]],[[12947,12949,12964]],[[12959,12966,12960]],[[12948,12957,12966]],[[12967,12962,12950]],[[12965,12963,12962]],[[12968,12967,12952]],[[12969,12951,12950]],[[12961,12953,12955]],[[12954,12957,12955]],[[12961,12970,12953]],[[12961,12971,12956]],[[12948,12972,12949]],[[12948,12966,12972]],[[12972,12959,12949]],[[12972,12966,12959]],[[12949,12960,12971]],[[12966,12957,12960]],[[12960,12973,12974]],[[12960,12957,12973]],[[12965,12968,12952]],[[12965,12962,12968]],[[12975,12954,12953]],[[12956,12971,12958]],[[12952,12967,12950]],[[12968,12962,12967]],[[12975,12956,12954]],[[12975,12961,12956]],[[12963,12969,12950]],[[12963,12951,12969]],[[12974,12958,12971]],[[12973,12957,12958]],[[12970,12975,12953]],[[12970,12961,12975]],[[12960,12974,12971]],[[12973,12958,12974]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3c6f5d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12976,9866,9872]],[[12977,9867,10357]],[[10356,9875,12978]],[[12979,12980,12981]],[[12982,12980,9875]],[[12976,9997,9866]],[[12983,12982,12984]],[[12985,12981,12986]],[[12983,12984,12987]],[[12988,12989,12990]],[[12991,12992,12983]],[[12993,12994,12995]],[[12991,12983,12996]],[[12995,12994,9872]],[[12997,12980,12998]],[[12999,13000,13001]],[[12982,12983,12992]],[[13002,12988,12990]],[[13003,13002,12992]],[[13004,13005,13006]],[[13003,12991,12996]],[[13003,12992,12991]],[[12989,12996,13007]],[[12987,13008,12996]],[[10356,13009,9875]],[[13010,13008,13011]],[[13012,13013,13010]],[[13013,10356,13010]],[[13014,12978,13015]],[[9875,9867,12978]],[[12996,12983,12987]],[[13016,9875,13010]],[[13017,13018,13016]],[[13017,13008,13018]],[[13019,13020,13005]],[[12989,13021,12996]],[[10356,12996,13008]],[[13005,9998,12985]],[[13022,12979,12985]],[[13004,12997,13005]],[[12993,12995,9872]],[[12994,12985,9998]],[[13011,13017,13016]],[[13011,13008,13017]],[[9998,13023,9872]],[[13023,9997,12976]],[[13000,13007,13020]],[[13005,13007,9998]],[[13024,13025,12990]],[[13024,13007,13025]],[[10356,13014,10357]],[[13015,9867,12977]],[[13025,12999,12990]],[[13025,13007,13000]],[[12988,13002,13021]],[[13021,13002,13003]],[[12988,13021,12989]],[[13003,12996,13021]],[[12985,12979,12981]],[[12986,13026,13006]],[[12990,12982,12992]],[[13026,13004,13006]],[[12997,12998,13005]],[[12998,13027,13019]],[[12999,13001,12980]],[[13027,13001,13020]],[[13028,12982,13018]],[[13018,12982,13016]],[[13016,12982,9875]],[[12992,13002,12990]],[[13008,12984,13028]],[[13008,12987,12984]],[[13022,13029,12993]],[[9872,9875,12993]],[[13016,13010,13011]],[[10356,13008,13010]],[[9875,13012,13010]],[[13009,10356,13013]],[[12993,13029,12994]],[[12993,13030,13022]],[[13026,12980,12997]],[[12980,12982,12990]],[[13009,13012,9875]],[[13009,13013,13012]],[[13008,13028,13018]],[[12984,12982,13028]],[[12985,12986,13006]],[[13026,12997,13004]],[[12981,13026,12986]],[[12981,12980,13026]],[[9872,12994,9998]],[[13029,12985,12994]],[[10357,13015,12977]],[[12978,9867,13015]],[[10357,13014,13015]],[[10356,12978,13014]],[[13006,13005,12985]],[[13007,10356,9998]],[[12998,13019,13005]],[[12998,12980,13027]],[[13020,13007,13005]],[[12996,10356,13007]],[[13024,12989,13007]],[[13024,12990,12989]],[[13001,13000,13020]],[[12999,13025,13000]],[[9872,13023,12976]],[[9998,9997,13023]],[[12979,13022,13030]],[[12985,13029,13022]],[[12999,12980,12990]],[[12993,9875,12980]],[[12993,12979,13030]],[[12993,12980,12979]],[[13019,13027,13020]],[[12980,13001,13027]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3c6f63-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8da49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13031,13032,13033]],[[13034,13035,13036]],[[13037,13038,13039]],[[13040,13041,13042]],[[13037,13043,13038]],[[13044,13041,13040]],[[13045,13046,13047]],[[13048,13049,13050]],[[13051,13043,13052]],[[13051,13038,13043]],[[13053,13052,13037]],[[13043,13037,13052]],[[13044,13048,13041]],[[13044,13049,13048]],[[13054,13055,13053]],[[13050,13037,13041]],[[13049,13056,13050]],[[13053,13037,13050]],[[13057,13058,13049]],[[13059,13060,13061]],[[13034,13062,13035]],[[13051,13052,13055]],[[13056,13049,13054]],[[13035,13046,13031]],[[13040,13063,13064]],[[13065,13033,13066]],[[13067,13068,13069]],[[13067,13032,13070]],[[13071,13067,13069]],[[13072,13046,13068]],[[13071,13073,13066]],[[13074,13066,13073]],[[13067,13071,13032]],[[13075,13074,13039]],[[13076,13036,13033]],[[13046,13072,13031]],[[13032,13066,13033]],[[13075,13038,13051]],[[13073,13039,13074]],[[13077,13037,13039]],[[13064,13057,13044]],[[13078,13058,13057]],[[13079,13080,13062]],[[13081,13045,13047]],[[13032,13071,13066]],[[13077,13039,13073]],[[13069,13063,13040]],[[13064,13044,13040]],[[13042,13069,13040]],[[13068,13046,13045]],[[13063,13045,13064]],[[13063,13068,13045]],[[13035,13047,13046]],[[13075,13061,13076]],[[13071,13069,13042]],[[13068,13063,13069]],[[13054,13053,13056]],[[13055,13052,13053]],[[13057,13049,13044]],[[13058,13080,13079]],[[13058,13079,13049]],[[13079,13055,13054]],[[13078,13080,13058]],[[13064,13045,13080]],[[13038,13075,13039]],[[13065,13066,13074]],[[13055,13059,13061]],[[13076,13074,13075]],[[13067,13070,13072]],[[13032,13031,13072]],[[13076,13065,13074]],[[13076,13033,13065]],[[13061,13034,13076]],[[13060,13082,13034]],[[13061,13060,13034]],[[13081,13080,13045]],[[13067,13072,13068]],[[13070,13032,13072]],[[13059,13082,13060]],[[13079,13054,13049]],[[13059,13079,13082]],[[13059,13055,13079]],[[13036,13035,13031]],[[13034,13082,13062]],[[13051,13061,13075]],[[13051,13055,13061]],[[13033,13036,13031]],[[13076,13034,13036]],[[13048,13050,13041]],[[13056,13053,13050]],[[13035,13062,13047]],[[13062,13080,13081]],[[13064,13078,13057]],[[13064,13080,13078]],[[13047,13062,13081]],[[13082,13079,13062]],[[13077,13071,13042]],[[13077,13073,13071]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d0b1b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ac49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11806,13083,11805]],[[13084,13085,13086]],[[11805,13087,13088]],[[13089,13090,13091]],[[13092,13090,13093]],[[13089,11802,13093]],[[13085,11798,13091]],[[11800,11799,13084]],[[11798,13085,11799]],[[13094,11806,11800]],[[13095,11806,13096]],[[13097,13083,11806]],[[13086,13098,13094]],[[13086,13097,13095]],[[13099,13087,11805]],[[13083,13090,13088]],[[13089,13093,13090]],[[11802,13092,13093]],[[13100,13092,11802]],[[13100,13088,13092]],[[11798,13089,13091]],[[11798,11802,13089]],[[13086,13094,11800]],[[13096,11806,13094]],[[13086,13095,13098]],[[13097,11806,13095]],[[13098,13096,13094]],[[13098,13095,13096]],[[11805,13100,11802]],[[13088,13090,13092]],[[11805,13088,13100]],[[13087,13101,13088]],[[13083,13101,11805]],[[13101,13087,13099]],[[11805,13101,13099]],[[13083,13088,13101]],[[11800,13084,13086]],[[11799,13085,13084]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d3258-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12964,12949,12965]],[[13102,12963,12965]],[[12949,12971,12965]],[[13102,12971,12961]],[[12961,13103,13102]],[[12961,12963,13103]],[[13102,13104,12963]],[[13103,12963,13104]],[[12971,13102,12965]],[[13103,13104,13102]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d5974-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13105,1021,1019]],[[13106,1019,1007]],[[1006,13107,1007]],[[13107,13108,13106]],[[1007,13107,13106]],[[1006,1021,13107]],[[13106,13108,1019]],[[13107,1021,13108]],[[13108,13105,1019]],[[13108,1021,13105]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3f2ebd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13109,13110,13111]],[[13112,13113,13114]],[[13112,13115,13113]],[[13116,13117,13118]],[[13116,13119,13120]],[[13110,13121,13122]],[[13123,13116,13120]],[[13124,13125,13111]],[[13126,13123,13127]],[[13110,13122,13128]],[[13119,13121,13120]],[[13129,13130,13131]],[[13132,13118,13117]],[[13133,13119,13134]],[[13113,13115,13126]],[[13116,13118,13134]],[[13119,13124,13121]],[[13119,13133,13135]],[[13110,13114,13113]],[[13110,13127,13121]],[[13136,13137,13131]],[[13115,13117,13126]],[[13136,13115,13137]],[[13132,13117,13115]],[[13110,13128,13111]],[[13122,13121,13124]],[[13136,13132,13115]],[[13118,13138,13134]],[[13136,13138,13132]],[[13133,13139,13135]],[[13137,13140,13131]],[[13137,13115,13112]],[[13140,13141,13129]],[[13140,13137,13112]],[[13127,13123,13120]],[[13126,13117,13123]],[[13121,13127,13120]],[[13113,13126,13127]],[[13141,13112,13114]],[[13141,13140,13112]],[[13109,13111,13125]],[[13128,13124,13111]],[[13119,13116,13134]],[[13123,13117,13116]],[[13122,13124,13128]],[[13135,13125,13124]],[[13132,13138,13118]],[[13136,13139,13138]],[[13140,13129,13131]],[[13141,13114,13130]],[[13131,13130,13125]],[[13129,13141,13130]],[[13114,13110,13109]],[[13113,13127,13110]],[[13130,13109,13125]],[[13130,13114,13109]],[[13138,13133,13134]],[[13138,13139,13133]],[[13119,13135,13124]],[[13139,13125,13135]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e404005-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13142,13143,13144]],[[13145,12489,13146]],[[13147,13148,13149]],[[12514,13150,13151]],[[13152,13153,13143]],[[13151,12506,12514]],[[13154,13153,12506]],[[12506,13153,12493]],[[13155,13156,13157]],[[13158,13159,13160]],[[13156,13161,13162]],[[13147,13149,13163]],[[13159,13158,13161]],[[13164,13153,13152]],[[13165,13158,13152]],[[13165,13161,13158]],[[13166,13157,13143]],[[13149,13148,13152]],[[13157,13152,13143]],[[13163,13149,13152]],[[13166,13155,13157]],[[13147,13161,13148]],[[13157,13163,13152]],[[13157,13162,13167]],[[12493,13159,13161]],[[12493,13153,13168]],[[13158,13160,13152]],[[13159,12493,13168]],[[13160,13168,13164]],[[13160,13159,13168]],[[13160,13164,13152]],[[13168,13153,13164]],[[13169,13156,13155]],[[13156,12493,13161]],[[13170,13169,13155]],[[12489,13156,13169]],[[13157,13156,13162]],[[12489,12493,13156]],[[13157,13167,13163]],[[13162,13161,13167]],[[13171,13170,13155]],[[12489,13169,13170]],[[13165,13148,13161]],[[13165,13152,13148]],[[13150,13154,13172]],[[13173,12506,13172]],[[13174,12514,13175]],[[13146,13143,13176]],[[13174,13177,13178]],[[13172,12506,13151]],[[13178,13177,13150]],[[13144,13154,13150]],[[13151,13150,13172]],[[13177,13144,13150]],[[13179,13145,13176]],[[13180,13166,13146]],[[13177,13174,13144]],[[13175,13181,13142]],[[13174,13142,13144]],[[13176,13143,13142]],[[13180,13171,13166]],[[12489,13170,13171]],[[13146,13166,13143]],[[13171,13155,13166]],[[13181,13179,13176]],[[12514,12489,13179]],[[13174,13175,13142]],[[12514,13179,13175]],[[12514,13178,13150]],[[12514,13174,13178]],[[12489,13180,13146]],[[12489,13171,13180]],[[13167,13147,13163]],[[13167,13161,13147]],[[13154,13173,13172]],[[13154,12506,13173]],[[13176,13145,13146]],[[13179,12489,13145]],[[13142,13181,13176]],[[13175,13179,13181]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e404008-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13182,13183,13184]],[[13185,13186,13187]],[[13182,13184,13185]],[[13182,13185,13187]],[[13184,13186,13185]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e415141-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13188,13189,13190]],[[13191,13190,13192]],[[13193,13194,13192]],[[13195,13189,13188]],[[13191,13196,13197]],[[13195,13198,13189]],[[13194,13191,13192]],[[13194,13196,13191]],[[13197,13196,13199]],[[13200,13201,13198]],[[13197,13199,13188]],[[13198,13202,13189]],[[13196,13198,13199]],[[13196,13200,13198]],[[13199,13195,13188]],[[13199,13198,13195]],[[13190,13197,13188]],[[13190,13191,13197]],[[13194,13200,13196]],[[13194,13193,13200]],[[13193,13201,13200]],[[13202,13198,13201]],[[13202,13193,13192]],[[13202,13201,13193]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e41ee11-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13203,13204,13205]],[[13203,13205,13206]],[[13207,13203,13206]],[[13207,13204,13203]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4289b7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13208,13209,13210]],[[13211,13212,13210]],[[13213,13214,13211]],[[13215,13213,13216]],[[13217,13211,13210]],[[13218,13215,13216]],[[13212,13219,13208]],[[13212,13214,13215]],[[13212,13215,13219]],[[13214,13213,13215]],[[13212,13208,13210]],[[13209,13220,13210]],[[13221,13213,13217]],[[13214,13212,13211]],[[13219,13209,13208]],[[13219,13215,13218]],[[13217,13213,13211]],[[13218,13220,13209]],[[13221,13216,13213]],[[13221,13220,13216]],[[13220,13218,13216]],[[13209,13219,13218]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e43e94c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11699,13222,13223]],[[11704,13224,13225]],[[11707,13226,13227]],[[11709,13228,13229]],[[11711,13230,13231]],[[11713,13232,13233]],[[11716,13234,13235]],[[11717,13236,13237]],[[11719,13238,13239]],[[13240,11745,11746]],[[11747,11748,13241]],[[13242,13243,13244]],[[13245,13242,13244]],[[13246,13245,13244]],[[13247,13246,13244]],[[13248,13247,13244]],[[13249,13248,13250]],[[13251,13249,13250]],[[13248,13244,13250]],[[13243,13252,13253]],[[13243,13254,13244]],[[13243,13255,13254]],[[13243,13253,13255]],[[13252,13256,13253]],[[13252,13257,13256]],[[13252,13240,13257]],[[13257,13240,13258]],[[13252,11737,13240]],[[13240,11740,11741]],[[11668,11667,13259]],[[13260,13240,13261]],[[13261,13240,13262]],[[13262,13240,13263]],[[13263,13240,13241]],[[13241,11748,13264]],[[13264,11750,13265]],[[13265,11752,13266]],[[13266,11753,13267]],[[13267,11755,13268]],[[13268,11757,13269]],[[13269,11668,13259]],[[11751,11752,13265]],[[11758,11668,13269]],[[11728,13270,13271]],[[11757,11758,13269]],[[11729,13272,13273]],[[11756,11757,13268]],[[11754,11755,13267]],[[13274,13240,13260]],[[11731,13275,13276]],[[13268,11755,11756]],[[13252,13275,11732]],[[13277,11731,13276]],[[13277,13272,11730]],[[13278,11729,13273]],[[11754,13267,11753]],[[13266,11752,11753]],[[13278,13270,11728]],[[13279,11727,13271]],[[11726,13280,13281]],[[13265,11750,11751]],[[13279,13280,11726]],[[11748,11749,13264]],[[11750,13264,11749]],[[13282,11725,13281]],[[13282,13283,11724]],[[13284,11724,13283]],[[11722,13285,13286]],[[13241,13240,11747]],[[13284,13285,11723]],[[13287,11722,13286]],[[11746,11747,13240]],[[13288,11721,13287]],[[11720,13289,13238]],[[11745,13240,11744]],[[13288,13289,11720]],[[13240,11742,11743]],[[11743,11744,13240]],[[13290,11719,13239]],[[11718,13291,13236]],[[11742,13240,11741]],[[13290,13291,11718]],[[11738,11739,13240]],[[11740,13240,11739]],[[13292,11717,13237]],[[11715,13293,13234]],[[13240,11737,11738]],[[13292,13293,11715]],[[11735,11736,13252]],[[11737,13252,11736]],[[13294,11716,13235]],[[11714,13295,13232]],[[13252,11734,11735]],[[13294,13295,11714]],[[11732,11733,13252]],[[11734,13252,11733]],[[13296,11713,13233]],[[13296,13297,11712]],[[13275,11731,11732]],[[13297,13230,11712]],[[11729,11730,13272]],[[11731,13277,11730]],[[13298,11711,13231]],[[13298,13299,11710]],[[13278,11728,11729]],[[13299,13228,11710]],[[11726,11727,13279]],[[11728,13271,11727]],[[13300,11708,13229]],[[13300,13301,11708]],[[13281,11725,11726]],[[13301,13226,11707]],[[11723,11724,13284]],[[11725,13282,11724]],[[13302,11706,13227]],[[13302,13303,11705]],[[13285,11722,11723]],[[13303,13224,11705]],[[11720,11721,13288]],[[11722,13287,11721]],[[13304,11703,13225]],[[11702,13305,13306]],[[13238,11719,11720]],[[13304,13305,11703]],[[11717,11718,13236]],[[11719,13290,11718]],[[13307,11701,13306]],[[13307,13308,11700]],[[13292,11715,11717]],[[13308,13222,11700]],[[11714,11716,13294]],[[11715,13234,11716]],[[13309,11698,13223]],[[13232,11713,11714]],[[11696,13310,13311]],[[13296,11712,11713]],[[13309,13310,11697]],[[11710,11711,13298]],[[11712,13230,11711]],[[13312,11694,13311]],[[11691,13313,13314]],[[13228,11709,11710]],[[13312,13313,11693]],[[11709,13229,11708]],[[11706,11707,13227]],[[11708,13301,11707]],[[13315,11690,13314]],[[13302,11705,11706]],[[11687,13316,13317]],[[13224,11704,11705]],[[13315,13316,11688]],[[11702,11703,13305]],[[11704,13225,11703]],[[11701,11702,13306]],[[13318,11685,13317]],[[13307,11700,11701]],[[13222,11699,11700]],[[13318,13319,11683]],[[13223,11698,11699]],[[13309,11697,11698]],[[13310,11696,11697]],[[13311,11695,11696]],[[13319,13320,11681]],[[13311,11694,11695]],[[13312,11693,11694]],[[13313,11692,11693]],[[13313,11691,11692]],[[13320,13321,11679]],[[13314,11690,11691]],[[13315,11689,11690]],[[13315,11688,11689]],[[13316,11687,11688]],[[13317,11686,11687]],[[13321,13322,11677]],[[13317,11685,11686]],[[13318,11684,11685]],[[13318,11683,11684]],[[13319,11682,11683]],[[13322,13323,11675]],[[13319,11681,11682]],[[13320,11680,11681]],[[13320,11679,11680]],[[13321,11678,11679]],[[13323,13324,11673]],[[13321,11677,11678]],[[13322,11676,11677]],[[13322,11675,11676]],[[13323,11674,11675]],[[13324,13325,11671]],[[13323,11673,11674]],[[13324,11672,11673]],[[13324,11671,11672]],[[13325,11670,11671]],[[13325,13259,11669]],[[13325,11669,11670]],[[13259,11667,11669]],[[13326,13240,13274]],[[13326,13258,13240]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e44d366-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3117,1779,11660]],[[13327,13328,13329]],[[13330,13331,13332]],[[13331,13333,13332]],[[13334,13335,13336]],[[13337,1369,1619]],[[13338,13339,13340]],[[13341,13342,13343]],[[13344,13345,13346]],[[13347,1778,7803]],[[13348,13349,13350]],[[13351,13350,13352]],[[13353,7803,11610]],[[3148,3149,1779]],[[3157,3148,1779]],[[3147,3124,3148]],[[3151,3147,3148]],[[3144,3146,3147]],[[3142,3144,3147]],[[3136,3142,3147]],[[3138,3140,3142]],[[3136,3138,3142]],[[3151,3136,3147]],[[3131,3151,3148]],[[3131,3132,3151]],[[3131,3133,3132]],[[3157,3131,3148]],[[3157,3129,3131]],[[3157,3126,3129]],[[3157,3127,3126]],[[3157,3155,3127]],[[3116,3157,1779]],[[3116,3119,3157]],[[3116,3120,3119]],[[3116,3118,3120]],[[3117,3116,1779]],[[1778,11660,1779]],[[13354,13355,13356]],[[13357,13358,13359]],[[13360,13361,11660]],[[13362,13356,7803]],[[13363,13364,13365]],[[13366,13367,13368]],[[13369,13370,13371]],[[13372,13373,13374]],[[13347,13359,1778]],[[13375,13376,13377]],[[13378,13379,13380]],[[13381,13359,13347]],[[13382,13347,7803]],[[13383,13384,13385]],[[13386,13387,13388]],[[13389,13390,13382]],[[13391,13392,13393]],[[13394,13395,13396]],[[13397,13398,13399]],[[13400,13359,13381]],[[13401,13402,13379]],[[13385,13392,13403]],[[13404,13379,13378]],[[13402,13380,13379]],[[13405,13378,13380]],[[13406,13407,13408]],[[13392,13391,13409]],[[13410,13411,13412]],[[13413,13414,13415]],[[13416,13372,13374]],[[13417,13386,13388]],[[13418,13419,13420]],[[13421,13422,13423]],[[13394,13424,13375]],[[13425,13383,13426]],[[13427,13428,13429]],[[13388,13387,13380]],[[13430,13431,13432]],[[13433,13434,13435]],[[13436,13437,13438]],[[13439,13440,13441]],[[13442,13404,13378]],[[13383,13403,13426]],[[13388,13380,13443]],[[13374,13431,13405]],[[13444,13445,13401]],[[13426,13403,13423]],[[13383,13385,13403]],[[13446,13384,13425]],[[13412,13446,13425]],[[13402,13443,13380]],[[13447,13424,13448]],[[13449,13333,13331]],[[13450,13451,13452]],[[13453,13454,13455]],[[13456,13445,13444]],[[13457,13458,13459]],[[13460,13461,13462]],[[13463,13457,13459]],[[13385,13393,13392]],[[13464,13465,13466]],[[13417,13388,13443]],[[13467,13468,13469]],[[13374,13405,13416]],[[13470,13471,13391]],[[13391,13393,13470]],[[13425,13384,13383]],[[13472,13473,13474]],[[13475,13476,13477]],[[13333,13478,13332]],[[13479,13480,13481]],[[13409,13423,13403]],[[13387,13386,13481]],[[13387,13405,13380]],[[13463,13408,13457]],[[13409,13395,13423]],[[13446,13482,13384]],[[13389,13473,13429]],[[13390,13389,13428]],[[13390,13397,13382]],[[13483,13468,13467]],[[13484,13485,13486]],[[13458,13487,13459]],[[13407,13471,13470]],[[13450,13452,13488]],[[13489,13490,13478]],[[13411,13398,13412]],[[13421,13423,13395]],[[13397,13446,13398]],[[13482,13428,13427]],[[13491,13449,13331]],[[13491,12553,13490]],[[13449,13489,13333]],[[13490,12553,13478]],[[13345,13492,13493]],[[13494,13495,13496]],[[13347,13399,13381]],[[13347,13397,13399]],[[13417,13497,13498]],[[13480,13463,13387]],[[13457,13408,13407]],[[13480,13499,13408]],[[13407,13406,13471]],[[13406,13396,13395]],[[13500,13330,13478]],[[10000,12553,13491]],[[13482,13390,13428]],[[13397,13347,13382]],[[13391,13406,13501]],[[13408,13396,13406]],[[13502,13503,13440]],[[13504,13505,13394]],[[13446,13412,13398]],[[13419,13506,13507]],[[13508,13509,13510]],[[13511,13512,13513]],[[13508,13514,13509]],[[13515,13516,13517]],[[13345,13518,13492]],[[13510,13509,13519]],[[13415,13520,13521]],[[13522,13523,13524]],[[13525,13521,13520]],[[13353,13526,13527]],[[13415,13521,13528]],[[13513,13512,13515]],[[13489,13478,13333]],[[13529,13530,13531]],[[13479,13417,13498]],[[13504,13394,13396]],[[13374,13373,13431]],[[13469,13454,13373]],[[13532,13523,13522]],[[13355,13354,13533]],[[13399,13411,13534]],[[13535,13357,13359]],[[13536,13537,13538]],[[13539,13461,13540]],[[13400,13535,13359]],[[13541,13542,13360]],[[13543,13454,13469]],[[13455,13369,13453]],[[13544,13545,13455]],[[13545,13370,13369]],[[13397,13482,13446]],[[13397,13390,13482]],[[13479,13499,13480]],[[13396,13408,13499]],[[13417,13479,13481]],[[13497,13503,13546]],[[13547,13495,13548]],[[13549,13512,13511]],[[13550,13346,13348]],[[13494,13551,13548]],[[13552,13440,13553]],[[13554,13555,13556]],[[13474,13465,13472]],[[13557,13354,13362]],[[7803,13355,13473]],[[7803,13356,13355]],[[13472,13429,13473]],[[13428,13389,13429]],[[13385,13427,13558]],[[13384,13482,13427]],[[13427,13472,13558]],[[13427,13429,13472]],[[13559,13539,13437]],[[13353,13527,7803]],[[13414,13560,13415]],[[13523,13561,13513]],[[13515,13562,13523]],[[13563,13371,13370]],[[13536,13538,13353]],[[13438,13564,13527]],[[13536,13353,11610]],[[13538,13537,13565]],[[13350,13349,11610]],[[13348,13566,13567]],[[13406,13395,13501]],[[13568,13424,11660]],[[13392,13409,13403]],[[13501,13395,13409]],[[13569,13570,13571]],[[13572,13363,13548]],[[13573,13574,13570]],[[13435,13553,13433]],[[13518,13569,13551]],[[13571,13364,13363]],[[13575,13510,13549]],[[13519,13439,13516]],[[13511,13576,13577]],[[13510,13575,13578]],[[13579,13496,13495]],[[13551,13572,13548]],[[13535,13534,13580]],[[13399,13398,13411]],[[13387,13463,13416]],[[13480,13408,13463]],[[13480,13387,13481]],[[13416,13405,13387]],[[13581,13582,1375]],[[13583,13584,13582]],[[13563,13524,13562]],[[13561,13521,13576]],[[13522,13524,13462]],[[13523,13562,13524]],[[13460,13545,13544]],[[13462,13370,13545]],[[13459,13372,13416]],[[13469,13373,13372]],[[13549,13519,13512]],[[13516,13441,13517]],[[13577,13575,13549]],[[13434,13585,13435]],[[13522,13462,13461]],[[13524,13370,13462]],[[13362,13354,13356]],[[13485,13469,13468]],[[13586,13533,13486]],[[13465,13587,13533]],[[13365,13588,13435]],[[13553,13440,13514]],[[13589,13590,13552]],[[13585,13365,13435]],[[13578,13434,13433]],[[13514,13440,13509]],[[13435,13588,13553]],[[13590,13502,13552]],[[13571,13591,13364]],[[13592,13502,13590]],[[13537,13593,13414]],[[13594,13496,13579]],[[13595,13564,13438]],[[13543,13544,13455]],[[13540,13595,13437]],[[13460,13462,13545]],[[13596,13597,13598]],[[1369,13599,13597]],[[13518,13551,13492]],[[13492,13600,13493]],[[13594,13566,13600]],[[13600,13492,13494]],[[13525,13601,13576]],[[13520,13560,13567]],[[13434,13548,13585]],[[13572,13571,13363]],[[13602,13603,13604]],[[13346,13566,13348]],[[13329,13328,13605]],[[13491,13331,13330]],[[13606,13599,1369]],[[13607,13606,13608]],[[13609,13574,13573]],[[13574,13610,13570]],[[13611,13609,13573]],[[13610,13502,13592]],[[13432,13456,13442]],[[13401,13379,13404]],[[13405,13430,13378]],[[13444,13401,13404]],[[13378,13430,13442]],[[13405,13431,13430]],[[13369,13371,13456]],[[13371,13563,13556]],[[13442,13456,13444]],[[13371,13556,13456]],[[13351,13550,13350]],[[13346,13493,13566]],[[11657,13502,3106]],[[13503,13401,13440]],[[13351,13344,13550]],[[13345,13493,13346]],[[13606,13607,13599]],[[13612,13613,12558]],[[13614,13615,13584]],[[13584,1375,13582]],[[13450,13477,13616]],[[13477,13491,13330]],[[13617,13609,13618]],[[13573,13570,13619]],[[13507,13506,13360]],[[13620,13410,13412]],[[13565,13537,13414]],[[13349,13348,13567]],[[13600,13494,13496]],[[13492,13551,13494]],[[13355,13587,13473]],[[13587,13465,13474]],[[13449,13490,13489]],[[13449,13491,13490]],[[13583,13614,13584]],[[13615,13621,13622]],[[13334,12558,13335]],[[13623,13624,13337]],[[13575,13625,13578]],[[13548,13363,13585]],[[13402,13503,13443]],[[13402,13401,13503]],[[13626,13468,13483]],[[13627,13393,13558]],[[13610,13592,13591]],[[13610,13628,13502]],[[13629,13500,13451]],[[13476,13475,13328]],[[13468,13626,13586]],[[13465,13533,13466]],[[13473,13587,13474]],[[13355,13533,13587]],[[13463,13459,13416]],[[13464,13558,13472]],[[13372,13467,13469]],[[13626,13464,13466]],[[13459,13467,13372]],[[13459,13487,13483]],[[13630,13564,13595]],[[13455,13454,13543]],[[13469,13485,13543]],[[13533,13354,13486]],[[13484,13631,13630]],[[13632,13564,13630]],[[13485,13484,13543]],[[13633,13595,13461]],[[13436,13438,13526]],[[13437,13595,13438]],[[1778,13360,11660]],[[13361,13634,13635]],[[13636,13419,13418]],[[13448,13394,11657]],[[10000,13637,1374]],[[13476,13491,13477]],[[13638,13619,13603]],[[13604,13569,13518]],[[13576,13511,13561]],[[13576,13639,13577]],[[13640,13628,13610]],[[3106,13502,13628]],[[13538,13436,13353]],[[13436,13559,13437]],[[13641,13642,13643]],[[13608,13612,13598]],[[13644,13641,13623]],[[13608,13613,13612]],[[13554,13556,13562]],[[13445,13456,13556]],[[13436,13565,13559]],[[13413,13528,13532]],[[3106,13645,3107]],[[13645,13574,13609]],[[13508,13433,13646]],[[13508,13510,13578]],[[13596,13598,13612]],[[13598,13599,13607]],[[13647,13648,13649]],[[13650,13651,13343]],[[13596,13652,13648]],[[13651,13653,12558]],[[13654,13655,13656]],[[13657,13658,13659]],[[13539,13540,13437]],[[13461,13595,13540]],[[13401,13441,13440]],[[13555,13445,13556]],[[13515,13517,13562]],[[13517,13555,13554]],[[13660,13335,13661]],[[13624,13660,13661]],[[13422,13426,13423]],[[13421,13395,13377]],[[13506,13634,13361]],[[13506,13419,13634]],[[13478,13330,13332]],[[13616,13477,13330]],[[13647,13656,13352]],[[13654,13649,13662]],[[13656,13338,13663]],[[13656,13655,13339]],[[13664,13581,13665]],[[13666,1374,13637]],[[13593,13560,13414]],[[13593,13567,13560]],[[13406,13391,13471]],[[13501,13409,13391]],[[13521,13525,13576]],[[13520,13601,13525]],[[11657,13503,13502]],[[11657,13505,13503]],[[13569,13571,13572]],[[13570,13591,13571]],[[13427,13385,13384]],[[13558,13393,13385]],[[13667,13596,13612]],[[13597,13599,13598]],[[13569,13619,13570]],[[13611,13573,13619]],[[13523,13513,13515]],[[13523,13532,13561]],[[13645,13640,13574]],[[3106,13628,13640]],[[13361,13635,13376]],[[13635,13419,13636]],[[13668,13669,13352]],[[13367,3107,13368]],[[13656,13663,13668]],[[13670,3107,13367]],[[13484,13630,13544]],[[13631,13632,13630]],[[13671,13335,13660]],[[12558,13661,13335]],[[13512,13516,13515]],[[13439,13441,13516]],[[13630,13633,13544]],[[13630,13595,13633]],[[13633,13460,13544]],[[13633,13461,13460]],[[13341,13672,13342]],[[13648,13650,13343]],[[13625,13547,13434]],[[13495,13494,13548]],[[13360,13542,13507]],[[13542,13420,13507]],[[13580,13542,13541]],[[13580,13420,13542]],[[13357,13541,13358]],[[13357,13535,13541]],[[13345,13344,13604]],[[13604,13344,13602]],[[13673,13360,1778]],[[13506,13361,13360]],[[13363,13365,13585]],[[13589,13591,13590]],[[13373,13453,13431]],[[13455,13545,13369]],[[13431,13453,13369]],[[13373,13454,13453]],[[13407,13458,13457]],[[13407,13487,13458]],[[13450,13622,13477]],[[13488,13674,13615]],[[13615,13622,13488]],[[13622,13621,13477]],[[13669,13367,13366]],[[13638,13611,13619]],[[13570,13610,13591]],[[13574,13640,13610]],[[13649,13342,13672]],[[13648,13343,13342]],[[13459,13483,13467]],[[13487,13407,13470]],[[13627,13464,13626]],[[13466,13586,13626]],[[13594,13600,13496]],[[13566,13493,13600]],[[13601,13639,13576]],[[13601,13594,13579]],[[13401,13555,13441]],[[13401,13445,13555]],[[13538,13565,13436]],[[13414,13413,13559]],[[13618,13609,13611]],[[13617,13645,13609]],[[13586,13486,13485]],[[13354,13557,13486]],[[13359,13358,1778]],[[13541,13360,13673]],[[1619,13584,13674]],[[1619,1375,13584]],[[13656,13668,13352]],[[13663,13669,13668]],[[13337,13675,1369]],[[13613,13661,12558]],[[13473,13382,7803]],[[13473,13389,13382]],[[13584,13615,13674]],[[13621,13475,13477]],[[13556,13563,13562]],[[13370,13524,13563]],[[13676,13660,13624]],[[13676,13671,13660]],[[13512,13519,13516]],[[13509,13440,13439]],[[13510,13519,13549]],[[13509,13439,13519]],[[13622,13450,13488]],[[13616,13629,13450]],[[3107,13645,13617]],[[3106,13640,13645]],[[13539,13522,13461]],[[13539,13413,13522]],[[13646,13514,13508]],[[13553,13588,13552]],[[13646,13553,13514]],[[13646,13433,13553]],[[13677,13530,13678]],[[13334,13679,12558]],[[13537,13349,13593]],[[13350,13550,13348]],[[13452,13451,13500]],[[13629,13330,13500]],[[13674,13452,1619]],[[13674,13488,13452]],[[13543,13484,13544]],[[13486,13631,13484]],[[13413,13415,13528]],[[13560,13520,13415]],[[13670,13338,13340]],[[13338,13656,13339]],[[13468,13586,13485]],[[13466,13533,13586]],[[13511,13577,13549]],[[13639,13680,13577]],[[13656,13647,13654]],[[13648,13342,13649]],[[13365,13589,13552]],[[13591,13592,13590]],[[13364,13589,13365]],[[13364,13591,13589]],[[13666,13637,13476]],[[10000,13491,13476]],[[3107,13681,13368]],[[3107,13617,13618]],[[13643,13682,13336]],[[13678,13679,13334]],[[13669,13366,13352]],[[13368,13681,13351]],[[13366,13351,13352]],[[13366,13368,13351]],[[13550,13344,13346]],[[13602,13683,13684]],[[13672,13662,13649]],[[13339,13655,13685]],[[13678,13530,13679]],[[13686,13478,13679]],[[13687,13688,13529]],[[13689,13679,13529]],[[13687,13531,13690]],[[13687,13529,13531]],[[12553,13679,13478]],[[12553,12558,13679]],[[13534,13535,13400]],[[13580,13541,13535]],[[13581,13583,13582]],[[13475,13614,13583]],[[13691,13581,1375]],[[13664,13475,13583]],[[13436,13526,13353]],[[13527,13362,7803]],[[13438,13527,13526]],[[13564,13632,13527]],[[13623,13676,13624]],[[13671,13692,13335]],[[13623,13671,13676]],[[13692,13336,13335]],[[13661,13693,13624]],[[13644,13694,13642]],[[13361,13568,11660]],[[13361,13376,13568]],[[11657,13447,13448]],[[13568,13376,13375]],[[13568,13375,13424]],[[13394,13505,11657]],[[13377,13394,13375]],[[13377,13395,13394]],[[11649,13447,11657]],[[13424,13394,13448]],[[13662,13685,13654]],[[13695,13659,13658]],[[13614,13621,13615]],[[13614,13475,13621]],[[13520,13567,13594]],[[13593,13349,13567]],[[13520,13594,13601]],[[13567,13566,13594]],[[13376,13635,13377]],[[13634,13419,13635]],[[13531,13677,13690]],[[13682,13642,13694]],[[13677,13682,13694]],[[13334,13336,13682]],[[13596,13647,13352]],[[13596,13648,13647]],[[1369,13596,13352]],[[1369,13597,13596]],[[13653,13667,13612]],[[13652,13596,13667]],[[12558,13653,13612]],[[12558,13343,13651]],[[13653,13652,13667]],[[13650,13648,13652]],[[13649,13654,13647]],[[13685,13655,13654]],[[13365,13552,13588]],[[13502,13440,13552]],[[13327,13666,13328]],[[13637,10000,13476]],[[13328,13666,13476]],[[13327,1374,13666]],[[13557,13632,13631]],[[13362,13527,13632]],[[13681,13618,13351]],[[13681,3107,13618]],[[13663,13367,13669]],[[13670,3111,3107]],[[13663,13670,13367]],[[13663,13338,13670]],[[13670,13657,3111]],[[13339,13685,13658]],[[13695,13658,13685]],[[13340,13339,13658]],[[13687,13696,13688]],[[1619,13500,13686]],[[13690,13644,1619]],[[13644,13623,13337]],[[13337,13693,13613]],[[13337,13624,13693]],[[1619,13644,13337]],[[13690,13694,13644]],[[13465,13464,13472]],[[13626,13483,13627]],[[1374,13329,1375]],[[13328,13475,13665]],[[13381,13534,13400]],[[13381,13399,13534]],[[13464,13627,13558]],[[13483,13487,13470]],[[13627,13470,13393]],[[13627,13483,13470]],[[13652,13651,13650]],[[13652,13653,13651]],[[1619,13687,13690]],[[1619,13696,13687]],[[13577,13680,13575]],[[13579,13495,13547]],[[13562,13517,13554]],[[13441,13555,13517]],[[13632,13557,13362]],[[13631,13486,13557]],[[13684,13618,13638]],[[13618,13611,13638]],[[13683,13602,13344]],[[13638,13603,13602]],[[13351,13683,13344]],[[13351,13618,13684]],[[3111,13659,12558]],[[3111,13657,13659]],[[13659,13697,12558]],[[13659,13695,13697]],[[12558,13341,13343]],[[13697,13662,13672]],[[13697,13341,12558]],[[13697,13672,13341]],[[13662,13695,13685]],[[13662,13697,13695]],[[13639,13579,13680]],[[13639,13601,13579]],[[13696,13689,13688]],[[13696,1619,13686]],[[13605,13691,1375]],[[13605,13665,13691]],[[13507,13420,13419]],[[13580,13534,13410]],[[13623,13641,13671]],[[13641,13643,13692]],[[13671,13641,13692]],[[13644,13642,13641]],[[13369,13432,13431]],[[13369,13456,13432]],[[13414,13559,13565]],[[13413,13539,13559]],[[13432,13442,13430]],[[13444,13404,13442]],[[13386,13417,13481]],[[13443,13503,13497]],[[13580,13410,13420]],[[13620,13425,13422]],[[13420,13410,13418]],[[13534,13411,13410]],[[13499,13498,13396]],[[13503,13505,13504]],[[13690,13677,13694]],[[13531,13530,13677]],[[13508,13578,13433]],[[13575,13680,13625]],[[13689,13529,13688]],[[13679,13530,13529]],[[13686,13500,13478]],[[1619,13452,13500]],[[13682,13678,13334]],[[13682,13677,13678]],[[13551,13569,13572]],[[13603,13619,13569]],[[13578,13625,13434]],[[13680,13579,13547]],[[13434,13547,13548]],[[13625,13680,13547]],[[13569,13604,13603]],[[13518,13345,13604]],[[13602,13684,13638]],[[13683,13351,13684]],[[13536,13349,13537]],[[13536,11610,13349]],[[13657,13340,13658]],[[13657,13670,13340]],[[11660,13447,11649]],[[11660,13424,13447]],[[13413,13532,13522]],[[13528,13521,13561]],[[13513,13561,13511]],[[13532,13528,13561]],[[13689,13686,13679]],[[13689,13696,13686]],[[1375,13329,13605]],[[1374,13327,13329]],[[13418,13698,13636]],[[13418,13410,13620]],[[13620,13422,13698]],[[13425,13426,13422]],[[13422,13636,13698]],[[13421,13635,13636]],[[13418,13620,13698]],[[13412,13425,13620]],[[13635,13421,13377]],[[13636,13422,13421]],[[13546,13504,13396]],[[13546,13503,13504]],[[13691,13665,13581]],[[13605,13328,13665]],[[13581,13664,13583]],[[13665,13475,13664]],[[13358,13673,1778]],[[13358,13541,13673]],[[13498,13497,13546]],[[13417,13443,13497]],[[13396,13498,13546]],[[13499,13479,13498]],[[13692,13643,13336]],[[13642,13682,13643]],[[13450,13629,13451]],[[13616,13330,13629]],[[13675,13606,1369]],[[13613,13693,13661]],[[13607,13608,13598]],[[13606,13675,13613]],[[13606,13613,13608]],[[13675,13337,13613]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e44faa0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1af49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13699,13700,13701]],[[13699,13701,13702]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4548ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13703,9877,9881]],[[9864,13704,13705]],[[13705,13704,13703]],[[9864,9877,13704]],[[9865,13705,9881]],[[9865,9864,13705]],[[13705,13703,9881]],[[13704,9877,13703]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e45490b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13706,13707,13708]],[[13709,13710,13711]],[[13712,13710,13713]],[[13714,13715,13716]],[[13717,13718,13719]],[[13720,13709,13711]],[[13721,13722,13723]],[[13724,13725,13726]],[[13715,13727,13728]],[[13729,13730,13713]],[[13731,13732,13729]],[[13733,13734,13706]],[[13735,13732,13723]],[[13732,13724,13736]],[[13737,13731,13738]],[[13739,13733,13706]],[[13708,13740,13741]],[[13723,13732,13731]],[[13731,13729,13709]],[[13736,13727,13713]],[[13709,13729,13713]],[[13729,13732,13730]],[[13714,13716,13734]],[[13725,13707,13716]],[[13709,13713,13710]],[[13734,13707,13706]],[[13724,13726,13727]],[[13726,13716,13728]],[[13742,13743,13744]],[[13713,13727,13715]],[[13732,13736,13730]],[[13732,13745,13724]],[[13736,13724,13727]],[[13746,13725,13724]],[[13717,13719,13747]],[[13711,13710,13719]],[[13741,13748,13749]],[[13738,13709,13720]],[[13716,13715,13728]],[[13743,13713,13715]],[[13712,13742,13744]],[[13713,13743,13742]],[[13731,13750,13721]],[[13745,13732,13735]],[[13731,13748,13750]],[[13751,13746,13745]],[[13708,13741,13752]],[[13749,13753,13754]],[[13740,13722,13721]],[[13722,13735,13723]],[[13748,13741,13740]],[[13745,13735,13722]],[[13712,13713,13742]],[[13730,13736,13713]],[[13719,13720,13711]],[[13738,13731,13709]],[[13710,13747,13719]],[[13744,13743,13755]],[[13747,13734,13733]],[[13716,13707,13734]],[[13727,13726,13728]],[[13725,13716,13726]],[[13734,13747,13744]],[[13733,13717,13747]],[[13747,13712,13744]],[[13747,13710,13712]],[[13731,13721,13723]],[[13750,13748,13740]],[[13750,13740,13721]],[[13708,13746,13751]],[[13741,13754,13752]],[[13718,13720,13719]],[[13741,13749,13754]],[[13748,13731,13749]],[[13754,13739,13752]],[[13756,13753,13757]],[[13739,13717,13733]],[[13739,13758,13717]],[[13758,13718,13717]],[[13756,13738,13720]],[[13751,13745,13722]],[[13746,13724,13745]],[[13744,13755,13734]],[[13743,13715,13755]],[[13754,13758,13739]],[[13754,13753,13758]],[[13752,13706,13708]],[[13752,13739,13706]],[[13740,13751,13722]],[[13740,13708,13751]],[[13718,13756,13720]],[[13737,13757,13731]],[[13758,13756,13718]],[[13758,13753,13756]],[[13755,13714,13734]],[[13755,13715,13714]],[[13756,13737,13738]],[[13757,13749,13731]],[[13756,13757,13737]],[[13753,13749,13757]],[[13759,13746,13708]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e46330a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9c0f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13760,13761,13762]],[[13763,13764,13765]],[[13766,13767,13768]],[[13768,13769,13770]],[[13771,13772,13766]],[[13773,13774,13775]],[[13776,13777,13778]],[[13762,13778,13760]],[[13779,13780,13781]],[[13782,13783,13761]],[[13784,13785,13781]],[[13786,13787,13788]],[[13789,13790,13791]],[[13792,13793,13794]],[[13769,13788,13777]],[[13795,13796,13797]],[[13783,13770,13769]],[[13798,13797,13799]],[[13786,13788,13769]],[[13787,13800,13777]],[[13782,13801,13802]],[[13771,13768,13770]],[[13803,13804,13805]],[[13772,13771,13806]],[[13807,13789,13791]],[[13805,13794,13793]],[[13808,13809,13810]],[[13798,13799,13811]],[[13810,13809,13774]],[[13811,13792,13812]],[[13780,13813,13765]],[[13814,13815,13805]],[[13791,13816,13807]],[[13791,13790,13816]],[[13817,13807,13765]],[[13816,13790,13763]],[[13779,13815,13813]],[[13779,13767,13766]],[[13784,13780,13765]],[[13784,13781,13780]],[[13789,13817,13818]],[[13818,13817,13813]],[[13789,13818,13814]],[[13813,13780,13779]],[[13794,13805,13772]],[[13779,13781,13786]],[[13819,13815,13779]],[[13818,13813,13815]],[[13808,13804,13809]],[[13805,13819,13772]],[[13813,13817,13765]],[[13789,13807,13817]],[[13800,13796,13777]],[[13800,13797,13796]],[[13776,13778,13762]],[[13777,13796,13778]],[[13775,13774,13809]],[[13820,13803,13811]],[[13810,13774,13773]],[[13809,13820,13775]],[[13821,13799,13797]],[[13821,13820,13799]],[[13797,13798,13795]],[[13799,13820,13811]],[[13822,13795,13801]],[[13782,13812,13770]],[[13802,13801,13795]],[[13760,13778,13822]],[[13823,13822,13778]],[[13823,13795,13822]],[[13822,13801,13760]],[[13795,13798,13802]],[[13764,13821,13797]],[[13764,13773,13821]],[[13821,13775,13820]],[[13821,13773,13775]],[[13803,13805,13793]],[[13804,13814,13805]],[[13802,13811,13812]],[[13820,13809,13803]],[[13783,13776,13762]],[[13769,13777,13776]],[[13785,13786,13781]],[[13785,13824,13786]],[[13762,13761,13783]],[[13760,13801,13761]],[[13811,13802,13798]],[[13812,13782,13802]],[[13812,13792,13794]],[[13811,13803,13792]],[[13800,13784,13765]],[[13800,13785,13784]],[[13806,13771,13770]],[[13768,13767,13769]],[[13764,13808,13773]],[[13808,13763,13790]],[[13773,13808,13810]],[[13764,13763,13808]],[[13807,13763,13765]],[[13807,13816,13763]],[[13786,13824,13787]],[[13785,13800,13824]],[[13812,13806,13770]],[[13772,13825,13766]],[[13794,13806,13812]],[[13794,13772,13806]],[[13788,13787,13777]],[[13824,13800,13787]],[[13783,13782,13770]],[[13761,13801,13782]],[[13789,13814,13790]],[[13818,13815,13814]],[[13783,13769,13776]],[[13767,13786,13769]],[[13796,13823,13778]],[[13796,13795,13823]],[[13771,13766,13768]],[[13825,13779,13766]],[[13792,13803,13793]],[[13804,13790,13814]],[[13809,13804,13803]],[[13808,13790,13804]],[[13772,13819,13825]],[[13805,13815,13819]],[[13767,13779,13786]],[[13825,13819,13779]],[[13800,13826,13797]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e47e113-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9c0e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13827,13828,13829]],[[13830,13831,13832]],[[13833,13834,13835]],[[13836,13837,13838]],[[13839,13840,13841]],[[13834,13842,13843]],[[13844,13845,13846]],[[13833,13847,13834]],[[13848,13847,13849]],[[13842,13834,13847]],[[13850,13844,13851]],[[13845,13852,13846]],[[13853,13854,13831]],[[13846,13855,13839]],[[13856,13857,13858]],[[13859,13860,13857]],[[13856,13859,13857]],[[13861,13839,13841]],[[13852,13855,13846]],[[13849,13847,13833]],[[13862,13863,13829]],[[13864,13865,13855]],[[13857,13854,13853]],[[13860,13859,13856]],[[13866,13841,13867]],[[13855,13865,13868]],[[13853,13869,13827]],[[13860,13854,13857]],[[13870,13867,13840]],[[13830,13871,13831]],[[13871,13872,13873]],[[13873,13869,13831]],[[13874,13875,13876]],[[13877,13869,13873]],[[13840,13878,13879]],[[13880,13881,13848]],[[13835,13843,13882]],[[13883,13867,13870]],[[13882,13876,13884]],[[13885,13872,13886]],[[13887,13852,13845]],[[13863,13864,13852]],[[13882,13884,13849]],[[13848,13862,13842]],[[13879,13870,13840]],[[13885,13875,13874]],[[13888,13837,13872]],[[13889,13828,13877]],[[13874,13890,13872]],[[13872,13877,13873]],[[13880,13868,13881]],[[13855,13852,13864]],[[13891,13864,13863]],[[13865,13881,13868]],[[13871,13886,13872]],[[13836,13889,13877]],[[13892,13837,13888]],[[13836,13877,13872]],[[13870,13886,13883]],[[13870,13879,13893]],[[13830,13832,13866]],[[13831,13854,13832]],[[13839,13878,13840]],[[13893,13886,13870]],[[13843,13894,13882]],[[13895,13896,13889]],[[13837,13836,13872]],[[13828,13896,13829]],[[13884,13876,13875]],[[13892,13888,13897]],[[13833,13882,13849]],[[13875,13898,13884]],[[13834,13843,13835]],[[13842,13894,13843]],[[13853,13827,13829]],[[13869,13877,13827]],[[13882,13892,13876]],[[13837,13895,13838]],[[13880,13899,13868]],[[13900,13901,13878]],[[13868,13878,13855]],[[13878,13901,13879]],[[13855,13878,13839]],[[13901,13884,13898]],[[13868,13900,13878]],[[13868,13899,13900]],[[13879,13901,13898]],[[13900,13884,13901]],[[13876,13897,13890]],[[13876,13892,13897]],[[13858,13853,13829]],[[13831,13869,13853]],[[13884,13899,13849]],[[13884,13900,13899]],[[13863,13887,13829]],[[13863,13852,13887]],[[13835,13882,13833]],[[13894,13892,13882]],[[13856,13851,13860]],[[13846,13839,13861]],[[13887,13850,13829]],[[13887,13845,13844]],[[13862,13891,13863]],[[13891,13902,13865]],[[13891,13865,13864]],[[13891,13862,13902]],[[13867,13841,13840]],[[13866,13854,13861]],[[13849,13880,13848]],[[13849,13899,13880]],[[13866,13861,13841]],[[13851,13846,13861]],[[13842,13895,13894]],[[13842,13896,13895]],[[13894,13837,13892]],[[13894,13895,13837]],[[13838,13889,13836]],[[13838,13895,13889]],[[13903,13858,13829]],[[13857,13853,13858]],[[13890,13874,13876]],[[13885,13904,13875]],[[13848,13902,13862]],[[13881,13865,13902]],[[13831,13871,13873]],[[13883,13886,13871]],[[13898,13893,13879]],[[13898,13875,13904]],[[13861,13860,13851]],[[13861,13854,13860]],[[13883,13830,13867]],[[13883,13871,13830]],[[13851,13844,13846]],[[13850,13887,13844]],[[13830,13866,13867]],[[13832,13854,13866]],[[13847,13848,13842]],[[13881,13902,13848]],[[13888,13890,13897]],[[13888,13872,13890]],[[13903,13856,13858]],[[13850,13851,13856]],[[13877,13828,13827]],[[13889,13896,13828]],[[13893,13904,13886]],[[13893,13898,13904]],[[13872,13885,13874]],[[13886,13904,13885]],[[13850,13903,13829]],[[13850,13856,13903]],[[13842,13905,13896]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4aa043-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff17049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13906,13907,13908]],[[13909,8727,8794]],[[13910,7726,7728]],[[13911,13912,13913]],[[13914,13913,13915]],[[13916,13917,13918]],[[13910,13916,7726]],[[13919,7726,13920]],[[13914,13915,13921]],[[13919,13920,13922]],[[13923,13914,13921]],[[13918,13920,13916]],[[13924,13923,13921]],[[13912,7726,13921]],[[13925,13926,13927]],[[13914,13923,13928]],[[13913,13912,13915]],[[13926,7726,13912]],[[13929,13930,13931]],[[13932,7727,13926]],[[13924,13921,13919]],[[13915,13912,13921]],[[13918,13933,13922]],[[13921,7726,13919]],[[8725,13934,7728]],[[13934,13917,13916]],[[7726,13916,13920]],[[13910,13934,13916]],[[13922,13924,13919]],[[13933,13935,13923]],[[13936,13937,13938]],[[13923,13935,13939]],[[7728,13934,13910]],[[13940,13941,13935]],[[13942,13929,13943]],[[13944,13945,13946]],[[13947,13948,13925]],[[13949,13950,13932]],[[13951,13925,13931]],[[13950,13943,13952]],[[13942,13943,13949]],[[13953,13952,13954]],[[13955,13956,13954]],[[13943,13950,13949]],[[13933,13923,13924]],[[13955,13957,13958]],[[13931,13942,13926]],[[13908,7727,13932]],[[13959,13960,13908]],[[13961,8728,7727]],[[13962,13926,13912]],[[7727,7726,13926]],[[13942,13949,13932]],[[13950,13952,13953]],[[13930,13942,13931]],[[13930,13929,13942]],[[13960,13906,13908]],[[13907,13945,13963]],[[13908,13907,7727]],[[13906,13960,13945]],[[13914,13928,13913]],[[13964,13912,13911]],[[13928,13965,13947]],[[13966,13912,13964]],[[13925,13951,13926]],[[13931,13926,13951]],[[13907,13963,7727]],[[13967,13968,13960]],[[13933,13918,13917]],[[13922,13920,13918]],[[13966,13962,13912]],[[13927,13926,13962]],[[13969,13970,13971]],[[13972,8728,13973]],[[13953,13954,13960]],[[13907,13906,13945]],[[13947,13966,13964]],[[13927,13962,13966]],[[13956,13955,13974]],[[13975,8727,13976]],[[13944,13973,13961]],[[13977,13972,13973]],[[13973,13946,13977]],[[13973,13944,13946]],[[8724,13938,8725]],[[8724,13958,13978]],[[13957,13978,13958]],[[8724,13975,13979]],[[13980,13944,13961]],[[13963,13945,13944]],[[13971,13972,13977]],[[13971,8728,13972]],[[13946,13968,13969]],[[8794,8728,13971]],[[8724,13979,13958]],[[13954,8794,13967]],[[13965,13939,13981]],[[13938,8724,13978]],[[13966,13947,13927]],[[13964,13911,13928]],[[13934,13940,13917]],[[13982,13937,13983]],[[13948,13943,13929]],[[13953,13960,13959]],[[13948,13955,13952]],[[13974,13975,13976]],[[13946,13969,13977]],[[13970,8794,13971]],[[13936,13938,13978]],[[13937,8725,13938]],[[13957,13947,13965]],[[13984,8725,13982]],[[13942,13932,13926]],[[13959,13908,13932]],[[13940,13935,13917]],[[13985,13984,13986]],[[13922,13933,13924]],[[13917,13935,13933]],[[13980,13961,7727]],[[13973,8728,13961]],[[13979,13955,13958]],[[13985,13935,13941]],[[8725,13940,13934]],[[8725,13941,13940]],[[13945,13968,13946]],[[13945,13960,13968]],[[13977,13969,13971]],[[13968,13967,13969]],[[13957,13981,13978]],[[13983,13937,13936]],[[13979,13975,13974]],[[8724,8727,13975]],[[13986,13984,13983]],[[8725,13937,13982]],[[13983,13984,13982]],[[13941,8725,13984]],[[13931,13925,13929]],[[13947,13957,13948]],[[13947,13925,13927]],[[13948,13929,13925]],[[13970,13967,8794]],[[13970,13969,13967]],[[13957,13955,13948]],[[13979,13974,13955]],[[13957,13965,13981]],[[13947,13964,13928]],[[13913,13928,13911]],[[13987,13939,13965]],[[13981,13939,13986]],[[13965,13928,13987]],[[13936,13981,13983]],[[13985,13941,13984]],[[13983,13981,13986]],[[13936,13978,13981]],[[13939,13985,13986]],[[13939,13935,13985]],[[13948,13952,13943]],[[13954,13967,13960]],[[13932,13953,13959]],[[13932,13950,13953]],[[13955,13954,13952]],[[13956,8794,13954]],[[13963,13980,7727]],[[13963,13944,13980]],[[13923,13987,13928]],[[13923,13939,13987]],[[13956,13976,13909]],[[13956,13974,13976]],[[13956,13909,8794]],[[13976,8727,13909]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4b15d3-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13988,13989,13990]],[[13991,13992,13993]],[[13994,13995,13996]],[[13990,13997,13998]],[[13992,13999,14000]],[[14001,14002,14003]],[[14001,13993,14000]],[[14004,14005,14006]],[[14002,14000,14007]],[[14003,14008,14009]],[[13996,14010,14011]],[[14012,14013,14014]],[[14015,13992,14016]],[[14017,14013,14018]],[[14019,14020,14015]],[[14019,14021,14020]],[[14022,14017,13989]],[[14019,14015,14016]],[[14016,14023,14019]],[[14023,13991,13994]],[[14024,14018,14012]],[[14005,14008,14007]],[[14025,14005,14004]],[[14014,14008,14005]],[[14015,13989,13992]],[[14026,13998,14014]],[[14014,14013,14026]],[[14012,14025,14024]],[[14017,14022,14013]],[[14027,13988,14026]],[[14011,14028,14029]],[[14030,14009,14028]],[[14029,13994,14011]],[[14023,14016,13991]],[[14026,14022,14027]],[[14026,14013,14022]],[[13995,14001,13996]],[[13993,13992,14000]],[[14031,14024,14004]],[[14014,14005,14025]],[[14026,13988,13998]],[[14027,13989,13988]],[[14006,14031,14004]],[[13992,13989,14018]],[[14007,14031,14006]],[[13999,14018,14024]],[[14004,14024,14025]],[[13999,13992,14018]],[[14031,14007,14000]],[[14006,14005,14007]],[[14002,14032,14003]],[[14009,13997,14028]],[[14000,14002,14001]],[[14007,14008,14002]],[[14003,14032,14008]],[[14002,14008,14032]],[[13995,13993,14001]],[[13995,13994,13991]],[[14010,14009,14030]],[[14008,13997,14009]],[[13994,14021,14023]],[[14029,14028,14033]],[[14011,14010,14030]],[[13996,14003,14010]],[[14022,13989,14027]],[[14017,14018,13989]],[[14010,14003,14009]],[[13996,14001,14003]],[[14021,14019,14023]],[[14020,13990,14015]],[[13995,13991,13993]],[[14016,13992,13991]],[[13994,14029,14021]],[[14028,13997,14033]],[[13990,14033,13997]],[[14021,14029,14033]],[[14028,14011,14030]],[[13994,13996,14011]],[[14025,14012,14014]],[[14018,14013,14012]],[[14031,13999,14024]],[[14031,14000,13999]],[[13989,14015,13990]],[[14021,14033,14020]],[[13988,13990,13998]],[[14020,14033,13990]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4bd8b0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1771,3212,3213]],[[1820,14034,1782]],[[1782,3050,3060]],[[3060,3076,3077]],[[3060,3050,3076]],[[3076,3071,3074]],[[3074,3071,3073]],[[3076,3050,3071]],[[3071,3068,3069]],[[3071,3067,3068]],[[3071,3066,3067]],[[3071,3055,3066]],[[3066,3079,3051]],[[3051,3064,3065]],[[3051,3062,3064]],[[3064,3062,3063]],[[3051,3079,3062]],[[3062,3079,3061]],[[3066,3055,3079]],[[3079,3055,3080]],[[3071,3050,3055]],[[3055,3050,3054]],[[3054,3052,3053]],[[3054,3050,3052]],[[1782,3048,3050]],[[1782,14034,3048]],[[14035,1771,3213]],[[14036,14034,14037]],[[1771,3201,3212]],[[3212,3201,3210]],[[3210,3201,3208]],[[3208,3180,3174]],[[3208,3206,3180]],[[3180,3206,3177]],[[3208,3204,3206]],[[3206,3204,3184]],[[3184,3182,3205]],[[3184,3204,3182]],[[3208,3203,3204]],[[3208,3171,3203]],[[3203,3194,3187]],[[3203,3191,3194]],[[3203,3195,3191]],[[3203,3171,3195]],[[3208,3201,3171]],[[3171,3201,3172]],[[1771,3190,3201]],[[3201,3190,3198]],[[1820,14037,14034]],[[1820,1771,14036]],[[14034,14036,3213]],[[14036,1771,14035]],[[1820,14036,14037]],[[14035,3213,14036]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4ee645-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14038,14039,14040]],[[14041,14042,14043]],[[14040,14043,14044]],[[14042,14039,14038]],[[14044,14038,14040]],[[14042,14041,14039]],[[14045,14043,14040]],[[14046,14038,14044]],[[14046,14042,14038]],[[14043,14045,14041]],[[14046,14043,14042]],[[14046,14044,14043]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4fa919-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14047,14048,14049]],[[14050,14051,8743]],[[14052,8402,8744]],[[14052,14053,14048]],[[14054,14050,8743]],[[14055,14056,14057]],[[14058,14051,14059]],[[14050,14054,14060]],[[14050,14059,14051]],[[14061,14062,14063]],[[14064,14065,14066]],[[14067,14051,14058]],[[14068,14069,14070]],[[14059,14050,14071]],[[14059,14072,14073]],[[14074,14064,14075]],[[14061,14073,14062]],[[14076,14077,14078]],[[14079,14061,14069]],[[14080,14073,14061]],[[14072,14063,14073]],[[14063,8322,14081]],[[14057,14056,8323]],[[8323,8325,14082]],[[14061,14063,14069]],[[14081,8322,8323]],[[14068,14070,14083]],[[14068,14084,14085]],[[14083,14070,14081]],[[14062,14073,14063]],[[14060,14054,8743]],[[14071,14086,14072]],[[14052,14048,14087]],[[8325,8402,14087]],[[8743,14084,8744]],[[14065,14088,14066]],[[14089,14074,14075]],[[14075,14090,14056]],[[14056,14090,8323]],[[14070,14069,14063]],[[14082,14057,8323]],[[14077,14076,14091]],[[14065,14064,14074]],[[14066,14092,14064]],[[14078,14089,14075]],[[14065,14074,14089]],[[14065,14084,14088]],[[8743,14051,14080]],[[14072,14086,14063]],[[14072,14059,14071]],[[14060,14071,14050]],[[8322,14086,14071]],[[14073,14058,14059]],[[14067,14080,14051]],[[14073,14067,14058]],[[14073,14080,14067]],[[14093,14083,14081]],[[14066,14088,14068]],[[8744,14065,14094]],[[14079,14095,14061]],[[14085,14079,14069]],[[14095,14080,14061]],[[8744,14084,14065]],[[8743,14079,14084]],[[8325,14096,14082]],[[8325,14087,14096]],[[14093,14081,8323]],[[14093,14097,14092]],[[14068,14085,14069]],[[14084,14079,14085]],[[8743,14095,14079]],[[8743,14080,14095]],[[14094,14053,8744]],[[14048,14096,14087]],[[14094,14048,14053]],[[14094,14098,14049]],[[14070,14063,14081]],[[14086,8322,14063]],[[8402,14052,14087]],[[8744,14053,14052]],[[14091,14099,14077]],[[14065,14089,14099]],[[14082,14076,14057]],[[14099,14089,14078]],[[14055,14076,14078]],[[14098,14094,14091]],[[14076,14055,14057]],[[14078,14056,14055]],[[14075,14097,14090]],[[14092,14083,14093]],[[14082,14049,14076]],[[14049,14048,14094]],[[14066,14068,14083]],[[14088,14084,14068]],[[14076,14049,14098]],[[14047,14096,14048]],[[14078,14077,14099]],[[14076,14098,14091]],[[14064,14092,14097]],[[14066,14083,14092]],[[14082,14047,14049]],[[14082,14096,14047]],[[14065,14091,14094]],[[14065,14099,14091]],[[14078,14075,14056]],[[14064,14097,14075]],[[8322,14060,8743]],[[8322,14071,14060]],[[14090,14093,8323]],[[14090,14097,14093]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e506d0e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14100,14101,14102]],[[14103,14104,14105]],[[14106,14107,14104]],[[14108,14102,14101]],[[14109,14110,14106]],[[14110,14107,14111]],[[14112,14109,14103]],[[14104,14108,14105]],[[14103,14106,14104]],[[14111,14107,14106]],[[14113,14109,14112]],[[14110,14111,14106]],[[14101,14105,14108]],[[14104,14107,14114]],[[14115,14103,14105]],[[14109,14106,14103]],[[14116,14117,14118]],[[14119,14120,14112]],[[14100,14115,14101]],[[14121,14119,14103]],[[14115,14121,14103]],[[14103,14119,14112]],[[14122,14110,14123]],[[14110,14109,14113]],[[14116,14119,14124]],[[14120,14113,14112]],[[14117,14116,14121]],[[14121,14116,14124]],[[14123,14120,14119]],[[14123,14113,14120]],[[14118,14100,14102]],[[14115,14105,14101]],[[14114,14108,14104]],[[14122,14102,14108]],[[14123,14116,14118]],[[14123,14119,14116]],[[14122,14114,14107]],[[14122,14108,14114]],[[14117,14100,14118]],[[14117,14121,14100]],[[14123,14110,14113]],[[14122,14107,14110]],[[14119,14121,14124]],[[14115,14100,14121]],[[14125,14102,14122]],[[14118,14126,14123]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e51a58d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1773,3169,3199]],[[3199,3169,3200]],[[3200,3169,3197]],[[3197,3169,3173]],[[3173,3169,3196]],[[3196,3169,3192]],[[3192,3169,3193]],[[3193,3169,3188]],[[3188,3169,3189]],[[3189,3169,3202]],[[3202,3169,3183]],[[3183,3169,3181]],[[3181,3169,3185]],[[3185,3169,3186]],[[3186,3169,3178]],[[3178,3169,3179]],[[3179,3169,3175]],[[3175,3169,3176]],[[3176,3169,3207]],[[3207,3169,3209]],[[3209,3169,3211]],[[14127,12238,14128]],[[1812,1830,12238]],[[3115,12238,1830]],[[14129,3169,1773]],[[1830,3121,3115]],[[1830,3135,3121]],[[3121,3156,3158]],[[3121,3135,3156]],[[3156,3134,3125]],[[3125,3130,3128]],[[3125,3134,3130]],[[3130,3134,3154]],[[3156,3137,3134]],[[3134,3137,3153]],[[3153,3137,3152]],[[3156,3135,3137]],[[3137,3141,3139]],[[3137,3145,3141]],[[3141,3145,3143]],[[3137,3135,3145]],[[3145,3150,3122]],[[3122,3150,3123]],[[3145,3135,3150]],[[1812,14128,14129]],[[12238,3169,14130]],[[1812,14129,1773]],[[14130,3169,14129]],[[1812,14127,14128]],[[1812,12238,14127]],[[14128,14130,14129]],[[14128,12238,14130]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e528fa4-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14131,14132,14133]],[[14134,14132,14131]],[[14132,14135,14136]],[[14132,14137,14135]],[[14138,14139,14132]],[[14140,14138,14132]],[[14141,14140,14132]],[[14142,14143,14144]],[[14145,14132,14146]],[[14146,14132,14147]],[[14147,14132,14148]],[[14148,14142,14149]],[[14149,14142,14150]],[[14150,14142,14151]],[[14151,14142,14152]],[[14152,14142,14144]],[[14153,14154,14155]],[[14143,14142,14154]],[[14156,14143,14154]],[[14132,14142,14148]],[[14157,14158,14154]],[[14153,14157,14154]],[[14132,14154,14142]],[[14159,14155,14154]],[[14160,14159,14154]],[[14161,14160,14154]],[[14162,14161,14154]],[[14163,14162,14164]],[[14165,14163,14164]],[[14166,14165,14164]],[[14167,14166,14164]],[[14168,14167,14164]],[[14169,14168,14164]],[[14170,14169,14164]],[[14171,14170,14164]],[[14172,14171,14164]],[[14173,14172,14164]],[[14174,14173,14164]],[[14175,14174,14164]],[[14176,14175,14164]],[[14177,14132,14145]],[[14178,14164,14179]],[[14179,14164,14180]],[[14180,14164,14132]],[[14181,14180,14132]],[[14182,14181,14132]],[[14183,14182,14132]],[[14184,14183,14132]],[[14185,14184,14132]],[[14186,14185,14132]],[[14186,14187,14185]],[[14186,14188,14187]],[[14186,14189,14188]],[[14186,14190,14189]],[[14186,14191,14190]],[[14186,14192,14191]],[[14186,14193,14192]],[[14186,14194,14193]],[[14195,14196,14186]],[[14197,14195,14186]],[[14198,14197,14186]],[[14199,14198,14186]],[[14200,14199,14186]],[[14201,14200,14186]],[[14202,14201,14203]],[[14204,14202,14203]],[[14205,14204,14203]],[[14206,14205,14203]],[[14132,14164,14154]],[[14207,14203,14208]],[[14208,14203,14209]],[[14209,14203,14210]],[[14210,14203,14211]],[[14211,14203,14212]],[[14212,14203,14213]],[[14213,14203,14214]],[[14214,14203,14215]],[[14215,14203,14216]],[[14216,14203,14217]],[[14217,14203,14218]],[[14218,14203,14219]],[[14219,14203,14220]],[[14220,14203,14221]],[[14221,14203,14132]],[[14222,14221,14132]],[[14223,14222,14132]],[[14224,14223,14132]],[[14225,14224,14132]],[[14226,14225,14132]],[[14134,14226,14132]],[[14177,14141,14132]],[[14133,14132,14136]],[[14227,14164,14178]],[[14227,14176,14164]],[[14162,14154,14164]],[[14158,14156,14154]],[[14228,14203,14207]],[[14228,14206,14203]],[[14137,14132,14139]],[[14203,14186,14132]],[[14201,14186,14203]],[[14196,14194,14186]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e530428-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14229,14230,14231]],[[14232,14233,14231]],[[14234,14232,14235]],[[14236,14229,14237]],[[14234,14238,14232]],[[14230,14229,14236]],[[14238,14239,14233]],[[14236,14237,14240]],[[14241,14235,14230]],[[14235,14232,14231]],[[14230,14235,14231]],[[14242,14234,14235]],[[14232,14238,14233]],[[14234,14239,14238]],[[14234,14243,14239]],[[14234,14237,14243]],[[14244,14236,14240]],[[14229,14233,14239]],[[14244,14241,14236]],[[14242,14235,14241]],[[14241,14230,14236]],[[14231,14233,14229]],[[14243,14229,14239]],[[14243,14237,14229]],[[14242,14244,14240]],[[14242,14241,14244]],[[14240,14245,14242]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e54165e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14246,14247,14248]],[[14249,14250,14251]],[[14247,14252,14248]],[[14253,14254,14255]],[[14256,14257,14258]],[[14258,14249,14251]],[[14246,14258,14247]],[[14251,14252,14247]],[[14259,14260,14261]],[[14258,14251,14247]],[[14262,14260,14259]],[[14261,14258,14246]],[[14263,14261,14260]],[[14264,14258,14261]],[[14265,14266,14267]],[[14268,14256,14264]],[[14264,14256,14258]],[[14250,14269,14270]],[[14263,14268,14261]],[[14268,14266,14256]],[[14270,14248,14252]],[[14269,14254,14248]],[[14271,14272,14256]],[[14257,14269,14249]],[[14258,14257,14249]],[[14272,14269,14257]],[[14251,14250,14252]],[[14249,14269,14250]],[[14253,14246,14248]],[[14255,14261,14246]],[[14266,14271,14256]],[[14265,14272,14271]],[[14259,14255,14254]],[[14259,14261,14255]],[[14262,14266,14263]],[[14265,14271,14266]],[[14261,14268,14264]],[[14263,14266,14268]],[[14256,14272,14257]],[[14265,14269,14272]],[[14250,14270,14252]],[[14269,14248,14270]],[[14266,14262,14267]],[[14263,14260,14262]],[[14246,14253,14255]],[[14248,14254,14253]],[[14267,14259,14254]],[[14267,14262,14259]],[[14273,14254,14269]],[[14267,14274,14265]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5527a9-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14275,14276,14277]],[[14278,14279,14280]],[[14281,14282,14283]],[[14280,14284,14285]],[[14286,14287,14282]],[[14288,14289,14290]],[[14291,14292,14285]],[[14284,14290,14285]],[[14292,14283,14293]],[[14293,14282,14294]],[[14295,14286,14296]],[[14277,14297,14275]],[[14298,14295,14299]],[[14286,14282,14281]],[[14277,14287,14297]],[[14288,14290,14284]],[[14300,14287,14286]],[[14297,14301,14275]],[[14302,14283,14291]],[[14303,14304,14279]],[[14278,14280,14285]],[[14279,14284,14280]],[[14298,14302,14305]],[[14292,14306,14307]],[[14299,14295,14302]],[[14282,14276,14294]],[[14292,14293,14306]],[[14283,14282,14293]],[[14304,14307,14294]],[[14308,14275,14301]],[[14300,14297,14287]],[[14300,14289,14297]],[[14308,14294,14275]],[[14294,14276,14275]],[[14288,14294,14308]],[[14306,14293,14294]],[[14288,14308,14289]],[[14301,14289,14308]],[[14292,14307,14303]],[[14306,14294,14307]],[[14278,14303,14279]],[[14278,14292,14303]],[[14297,14289,14301]],[[14300,14290,14289]],[[14302,14281,14283]],[[14296,14286,14281]],[[14279,14304,14284]],[[14303,14307,14304]],[[14305,14291,14285]],[[14305,14302,14291]],[[14298,14299,14302]],[[14295,14281,14302]],[[14300,14298,14305]],[[14295,14296,14281]],[[14282,14277,14276]],[[14282,14287,14277]],[[14285,14292,14278]],[[14291,14283,14292]],[[14300,14295,14298]],[[14300,14286,14295]],[[14304,14288,14284]],[[14304,14294,14288]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e55c364-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14309,9869,9874]],[[14310,9874,9873]],[[9868,14311,14312]],[[14311,9869,14309]],[[14310,14309,9874]],[[14311,9868,9869]],[[14312,14310,9873]],[[14313,14309,14310]],[[14313,14311,14309]],[[14312,9873,9868]],[[14313,14312,14311]],[[14313,14310,14312]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e55ea86-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14314,1013,1017]],[[1020,14315,1018]],[[14316,14314,1017]],[[14315,14317,14314]],[[14316,14315,14314]],[[14317,1013,14314]],[[1018,14316,1017]],[[1018,14315,14316]],[[1020,14317,14315]],[[1020,1013,14317]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e566010-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14318,14319,14320]],[[14321,14319,14322]],[[14320,14323,14321]],[[14324,14325,14326]],[[14320,14319,14323]],[[14327,14325,14324]],[[14322,14328,14326]],[[14328,14319,14318]],[[14324,14328,14329]],[[14322,14319,14328]],[[14328,14318,14329]],[[14320,14325,14318]],[[14328,14324,14326]],[[14329,14327,14324]],[[14318,14327,14329]],[[14318,14325,14327]],[[14320,14321,14322]],[[14323,14319,14321]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e580e0a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff16b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14330,14331,14332]],[[14333,14334,8708]],[[14335,14336,14333]],[[14337,14338,14336]],[[14332,14339,14340]],[[14341,14342,14334]],[[14343,14332,14340]],[[14344,14345,14346]],[[14347,14348,14349]],[[14350,14338,14337]],[[14350,14331,14330]],[[14340,14351,14344]],[[14336,14338,14334]],[[14352,14353,14346]],[[14332,14354,14339]],[[14355,8707,14356]],[[14348,14347,14354]],[[14339,14351,14340]],[[14343,14340,14357]],[[14358,14357,14344]],[[14338,14359,14334]],[[14338,14330,14359]],[[14357,14358,14359]],[[14360,14341,14353]],[[14361,14362,14363]],[[14364,14342,14365]],[[14359,14330,14343]],[[14338,14350,14330]],[[14350,14348,14331]],[[14331,14348,14354]],[[14341,14365,14342]],[[14353,14358,14346]],[[14349,14335,14366]],[[14336,14334,14333]],[[14359,14341,14334]],[[14359,14358,14341]],[[14341,14367,14365]],[[14360,14353,14352]],[[14345,14352,14346]],[[14341,14358,14353]],[[14368,14369,14352]],[[14370,14371,14372]],[[14337,14348,14350]],[[14347,8708,14373]],[[14343,14357,14359]],[[14340,14344,14357]],[[14374,14375,14376]],[[14377,14378,14342]],[[14377,14379,14378]],[[14377,14342,14375]],[[14330,14332,14343]],[[14331,14354,14332]],[[14339,14354,14380]],[[14381,14362,14361]],[[14382,14383,14362]],[[14362,14380,8708]],[[14383,14369,14362]],[[14384,14385,14386]],[[14356,14378,14379]],[[8707,14342,14378]],[[14358,14344,14346]],[[14351,14387,14388]],[[14389,14374,14376]],[[14372,14390,14384]],[[14389,14384,14374]],[[14385,14355,14379]],[[14374,14386,14375]],[[14374,14384,14386]],[[14383,14365,14391]],[[14388,14344,14351]],[[14392,14393,14391]],[[14392,14365,14394]],[[14365,14392,14391]],[[14365,14367,14394]],[[14395,14371,14382]],[[14393,14396,14397]],[[14386,14385,14379]],[[14385,14395,14355]],[[14390,14385,14384]],[[14390,14395,14385]],[[14386,14377,14375]],[[14386,14379,14377]],[[14396,14398,14397]],[[14367,14399,14398]],[[14392,14394,14393]],[[14367,14398,14394]],[[14370,14389,14364]],[[14372,14384,14389]],[[14368,14352,14345]],[[14399,14367,14360]],[[14399,14360,14352]],[[14367,14341,14360]],[[14355,14356,14379]],[[8707,14378,14356]],[[14382,14370,14365]],[[14372,14389,14370]],[[14382,14371,14370]],[[14390,14372,14371]],[[14337,14349,14348]],[[14366,14333,8708]],[[14366,14347,14349]],[[14373,14354,14347]],[[8707,14362,8708]],[[14397,14391,14393]],[[14339,14387,14351]],[[14339,14380,14381]],[[14373,14380,14354]],[[14373,8708,14380]],[[14389,14376,14364]],[[14375,14342,14376]],[[8707,14382,14362]],[[14395,14390,14371]],[[8707,14395,14382]],[[8707,14355,14395]],[[14363,14368,14345]],[[14362,14369,14368]],[[14337,14335,14349]],[[14337,14336,14335]],[[14347,14366,8708]],[[14335,14333,14366]],[[14394,14396,14393]],[[14394,14398,14396]],[[14369,14399,14352]],[[14369,14398,14399]],[[14369,14397,14398]],[[14383,14391,14397]],[[14369,14383,14397]],[[14382,14365,14383]],[[14344,14388,14345]],[[14362,14368,14363]],[[14370,14364,14365]],[[14376,14342,14364]],[[14345,14388,14363]],[[14381,14380,14362]],[[14361,14388,14387]],[[14361,14363,14388]],[[14387,14381,14361]],[[14387,14339,14381]],[[8707,8710,14342]],[[8792,8708,14334]],[[14342,8792,14334]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e580e10-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14400,10084,10083]],[[10121,14400,10122]],[[10122,14400,10124]],[[10124,14400,10125]],[[10125,14400,10127]],[[10127,14400,10128]],[[10128,14400,10130]],[[10130,14400,10131]],[[10131,14400,10332]],[[10332,14400,10133]],[[10133,14400,10134]],[[10134,14400,10339]],[[10339,14400,14401]],[[10338,10339,14401]],[[10337,10338,14401]],[[10149,10337,14401]],[[14401,14402,14403]],[[10335,14401,10336]],[[10336,14401,10399]],[[10334,14401,14403]],[[10398,10399,14401]],[[10333,10398,14401]],[[10334,10333,14401]],[[10276,14404,10278]],[[10404,10385,14403]],[[10409,10404,14403]],[[10326,10409,14403]],[[14403,14402,14404]],[[10322,14403,10320]],[[10320,14403,10258]],[[10258,14403,10261]],[[10261,14403,10263]],[[10263,14403,10265]],[[10269,14403,14404]],[[10267,10265,14403]],[[10269,10267,14403]],[[10274,10269,14404]],[[10276,10274,14404]],[[10250,14404,10135]],[[10174,10278,14404]],[[10279,10174,14404]],[[10138,10279,14404]],[[10139,10138,14404]],[[10248,10139,14404]],[[10250,10248,14404]],[[10117,14400,10119]],[[10136,10135,14404]],[[10252,10136,14404]],[[14404,14402,14400]],[[10309,14404,10286]],[[10286,14404,10289]],[[10289,14404,10177]],[[10177,14404,10290]],[[10290,14404,10293]],[[10293,14404,10297]],[[10297,14404,10307]],[[10307,14404,10298]],[[10298,14404,10303]],[[10303,14404,10305]],[[10305,14404,10272]],[[10272,14404,10313]],[[10313,14404,10312]],[[10312,14404,10311]],[[10311,14404,10310]],[[10310,14404,10283]],[[10283,14404,10284]],[[10284,14404,10306]],[[10306,14404,10304]],[[10304,14404,10301]],[[10273,14404,14400]],[[10273,10301,14404]],[[10295,10273,14400]],[[10292,10295,14400]],[[10080,10292,14400]],[[10081,10080,14400]],[[10285,10081,14400]],[[10088,10285,14400]],[[10090,10088,14400]],[[10096,10090,14400]],[[10097,10096,14400]],[[10099,10097,14400]],[[10101,10099,14400]],[[10106,10101,14400]],[[10104,10106,14400]],[[10107,10104,14400]],[[10109,10107,14400]],[[10111,10109,14400]],[[10113,10111,14400]],[[10115,10113,14400]],[[10117,10115,14400]],[[10385,10334,14403]],[[14400,10083,10119]],[[14401,14400,14402]],[[10121,10084,14400]],[[10253,14404,10309]],[[10253,10252,14404]],[[10323,14403,10322]],[[10323,10326,14403]],[[10150,14401,10335]],[[10150,10149,14401]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e58829a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14405,14406,14407]],[[14408,14409,14410]],[[14409,14411,14405]],[[14412,14406,14405]],[[14413,14414,14410]],[[14410,14414,14408]],[[14408,14414,14411]],[[14413,14406,14412]],[[14409,14405,14407]],[[14412,14414,14413]],[[14411,14415,14405]],[[14411,14414,14415]],[[14416,14412,14405]],[[14416,14414,14412]],[[14410,14409,14407]],[[14408,14411,14409]],[[14415,14416,14405]],[[14415,14414,14416]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e58d102-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14417,14418,14419]],[[14420,14419,14421]],[[14422,14423,14424]],[[14425,14418,14417]],[[14426,14427,14424]],[[14426,14428,14429]],[[14430,14431,14417]],[[14425,14432,14418]],[[14429,14432,14425]],[[14433,14418,14432]],[[14434,14425,14431]],[[14427,14426,14425]],[[14430,14434,14431]],[[14427,14425,14434]],[[14420,14435,14430]],[[14424,14434,14435]],[[14424,14423,14426]],[[14433,14432,14436]],[[14423,14428,14426]],[[14436,14432,14428]],[[14422,14424,14437]],[[14427,14434,14424]],[[14433,14422,14421]],[[14424,14435,14437]],[[14438,14422,14437]],[[14423,14436,14428]],[[14426,14429,14425]],[[14428,14432,14429]],[[14438,14435,14420]],[[14435,14434,14430]],[[14438,14420,14421]],[[14430,14419,14420]],[[14422,14438,14421]],[[14437,14435,14438]],[[14433,14423,14422]],[[14433,14436,14423]],[[14430,14417,14419]],[[14431,14425,14417]],[[14419,14439,14421]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5993eb-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14440,14441,14442]],[[14443,14444,14445]],[[14443,14446,14444]],[[14447,14448,14444]],[[14449,14450,14443]],[[14446,14447,14444]],[[14451,14449,14445]],[[14452,14448,14441]],[[14440,14453,14454]],[[14455,14456,14457]],[[14454,14457,14443]],[[14458,14459,14457]],[[14458,14456,14453]],[[14458,14457,14456]],[[14447,14458,14460]],[[14459,14446,14443]],[[14449,14443,14445]],[[14457,14459,14443]],[[14444,14452,14445]],[[14444,14448,14452]],[[14450,14454,14443]],[[14453,14456,14455]],[[14447,14461,14459]],[[14447,14446,14461]],[[14454,14453,14455]],[[14460,14458,14453]],[[14452,14451,14445]],[[14462,14450,14449]],[[14440,14450,14462]],[[14454,14455,14457]],[[14440,14454,14450]],[[14440,14460,14453]],[[14463,14451,14452]],[[14462,14449,14451]],[[14441,14440,14462]],[[14442,14460,14440]],[[14447,14459,14458]],[[14461,14446,14459]],[[14451,14463,14462]],[[14448,14442,14441]],[[14441,14463,14452]],[[14441,14462,14463]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5aa630-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14464,12663,3215]],[[14465,14466,14467]],[[14468,14465,14467]],[[14469,3213,3168]],[[14470,14471,14472]],[[14473,3214,12663]],[[14474,14475,3048]],[[14476,12663,14477]],[[14478,14479,14480]],[[14481,14482,14483]],[[14484,14485,14486]],[[14487,14488,14489]],[[14485,14487,14490]],[[14491,14492,14493]],[[14488,14487,14494]],[[14495,14472,14496]],[[14482,14472,14495]],[[14491,14479,14034]],[[14497,14498,14483]],[[14499,3214,14473]],[[14493,14492,14500]],[[14494,14487,3214]],[[14481,14483,14499]],[[14499,14483,14498]],[[14471,14501,14496]],[[14482,14481,14472]],[[3049,14468,3215]],[[3049,3048,14468]],[[14502,14503,14504]],[[14505,14479,14478]],[[14491,14482,14501]],[[14506,14488,14494]],[[14482,14497,14483]],[[14484,14486,14469]],[[14491,14501,14492]],[[14501,14495,14496]],[[14500,14470,14493]],[[14507,14479,14508]],[[14476,14504,12663]],[[14503,14478,14504]],[[14509,14476,14477]],[[14502,14504,14476]],[[14510,14507,14473]],[[14499,14498,14494]],[[14472,14481,14499]],[[14498,14497,14506]],[[14511,14500,14492]],[[14511,14471,14500]],[[14512,14513,14491]],[[14470,14514,14512]],[[3214,14484,3168]],[[14486,14515,14469]],[[14489,14490,14487]],[[14515,14486,14490]],[[14486,14485,14490]],[[3214,14487,14485]],[[14471,14511,14501]],[[14492,14501,14511]],[[14472,14499,14470]],[[14494,3214,14499]],[[14478,14480,12663]],[[14507,14508,14473]],[[14474,14502,14476]],[[14516,14503,14502]],[[14517,14466,14475]],[[14509,14518,14476]],[[14464,14519,14477]],[[14518,14474,14476]],[[14480,14507,14510]],[[14520,14470,14473]],[[14493,14512,14491]],[[14508,14479,14513]],[[3048,14465,14468]],[[3048,14466,14465]],[[14034,14474,3048]],[[14034,14516,14474]],[[14519,14475,14477]],[[14521,14522,14517]],[[14477,14475,14509]],[[14475,14474,14518]],[[14504,14478,12663]],[[14503,14516,14505]],[[14503,14505,14478]],[[14034,14479,14505]],[[3213,14497,14482]],[[14515,14489,14497]],[[14498,14506,14494]],[[14497,14488,14506]],[[14497,14489,14488]],[[14515,14490,14489]],[[12663,14480,14510]],[[14479,14507,14480]],[[14508,14514,14520]],[[14508,14513,14514]],[[14474,14516,14502]],[[14034,14505,14516]],[[14468,14467,3215]],[[14517,14475,14521]],[[3213,14482,14491]],[[14482,14495,14501]],[[14472,14471,14496]],[[14470,14500,14471]],[[14479,14491,14513]],[[14034,3213,14491]],[[3168,14484,14469]],[[3214,14485,14484]],[[14509,14475,14518]],[[14466,3048,14475]],[[12663,14464,14477]],[[3215,14467,14522]],[[14519,14521,14475]],[[14519,14464,14521]],[[14522,14464,3215]],[[14522,14521,14464]],[[3213,14515,14497]],[[3213,14469,14515]],[[14467,14517,14522]],[[14467,14466,14517]],[[14510,14473,12663]],[[14470,14499,14473]],[[14508,14520,14473]],[[14514,14470,14520]],[[14470,14512,14493]],[[14514,14513,14512]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5b9032-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14523,14524,14525]],[[14526,14527,14528]],[[14529,14530,14523]],[[14531,14532,14533]],[[14534,14535,14536]],[[14537,14538,14539]],[[14540,14530,14529]],[[14533,14532,14527]],[[14526,14529,14523]],[[14523,14525,14526]],[[14536,14540,14528]],[[14535,14530,14540]],[[14530,14524,14523]],[[14530,14535,14537]],[[14541,14542,14539]],[[14543,14532,14539]],[[14544,14537,14535]],[[14545,14538,14537]],[[14542,14537,14539]],[[14538,14543,14539]],[[14531,14546,14547]],[[14539,14532,14541]],[[14525,14533,14527]],[[14547,14542,14541]],[[14526,14525,14527]],[[14524,14546,14525]],[[14534,14544,14535]],[[14543,14545,14544]],[[14530,14542,14524]],[[14530,14537,14542]],[[14525,14546,14533]],[[14547,14541,14532]],[[14534,14536,14528]],[[14535,14540,14536]],[[14533,14546,14531]],[[14524,14542,14546]],[[14531,14547,14532]],[[14546,14542,14547]],[[14543,14534,14528]],[[14543,14544,14534]],[[14544,14545,14537]],[[14543,14538,14545]],[[14540,14526,14528]],[[14540,14529,14526]],[[14548,14532,14543]],[[14527,14549,14528]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5bb778-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1012,1014,14550]],[[14551,1009,1022]],[[14551,14550,1009]],[[1014,1009,14550]],[[1012,14551,1022]],[[1012,14550,14551]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5cc8bd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14552,14553,14554]],[[14555,14556,14557]],[[14558,14559,14555]],[[14560,14561,14562]],[[14563,14557,14564]],[[14556,14565,14557]],[[14566,14567,14568]],[[14566,14569,14570]],[[14562,14571,14560]],[[14563,14564,14560]],[[14572,14573,14574]],[[14575,14576,14559]],[[14566,14568,14554]],[[14568,14577,14578]],[[14579,14552,14554]],[[14579,14578,14552]],[[14554,14568,14578]],[[14580,14558,14557]],[[14576,14577,14559]],[[14568,14567,14581]],[[14568,14581,14577]],[[14570,14569,14565]],[[14582,14578,14577]],[[14579,14554,14578]],[[14583,14584,14585]],[[14586,14578,14587]],[[14553,14584,14563]],[[14588,14580,14563]],[[14587,14589,14575]],[[14589,14578,14582]],[[14558,14575,14559]],[[14582,14577,14576]],[[14571,14553,14563]],[[14590,14583,14591]],[[14585,14586,14583]],[[14552,14578,14586]],[[14580,14572,14574]],[[14592,14584,14573]],[[14580,14588,14572]],[[14588,14584,14592]],[[14558,14580,14591]],[[14557,14563,14580]],[[14583,14590,14584]],[[14572,14592,14573]],[[14584,14588,14563]],[[14592,14572,14588]],[[14575,14589,14582]],[[14587,14578,14589]],[[14577,14581,14559]],[[14567,14566,14581]],[[14581,14555,14559]],[[14570,14556,14555]],[[14557,14558,14555]],[[14591,14575,14558]],[[14587,14583,14586]],[[14587,14591,14583]],[[14554,14553,14562]],[[14585,14584,14553]],[[14552,14585,14553]],[[14552,14586,14585]],[[14576,14575,14582]],[[14591,14587,14575]],[[14581,14570,14555]],[[14581,14566,14570]],[[14565,14564,14557]],[[14569,14561,14564]],[[14563,14560,14571]],[[14564,14561,14560]],[[14580,14574,14591]],[[14573,14584,14574]],[[14570,14565,14556]],[[14569,14564,14565]],[[14554,14562,14561]],[[14553,14571,14562]],[[14574,14590,14591]],[[14574,14584,14590]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5e0130-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14593,13701,14594]],[[14595,13700,14596]],[[14596,14597,14595]],[[14598,14599,14600]],[[14601,13700,14602]],[[14600,13702,13701]],[[14603,14604,14605]],[[14606,14607,14608]],[[13701,14593,14609]],[[14610,14611,14612]],[[14613,14605,14614]],[[14615,14604,14616]],[[14617,14618,14607]],[[14619,14604,14603]],[[14600,14599,13702]],[[14617,14607,14620]],[[14609,14600,13701]],[[14609,14598,14600]],[[14614,14605,14604]],[[14621,14603,14605]],[[14595,14612,13700]],[[14611,14594,13700]],[[14622,14602,14615]],[[13700,13699,14613]],[[14623,14614,14604]],[[14602,13700,14613]],[[14606,14608,14619]],[[14608,14624,14619]],[[14597,14625,14616]],[[14602,14614,14623]],[[14609,14610,14616]],[[14609,14593,14610]],[[14612,14611,13700]],[[14594,13701,13700]],[[14625,14615,14616]],[[14622,14601,14602]],[[14595,14597,14616]],[[14596,14625,14597]],[[14602,14613,14614]],[[14621,14605,14613]],[[14610,14594,14611]],[[14610,14593,14594]],[[14610,14595,14616]],[[14610,14612,14595]],[[13702,14620,13699]],[[13702,14599,14618]],[[14625,14622,14615]],[[14625,14596,14622]],[[14598,14618,14599]],[[14598,14624,14618]],[[13702,14617,14620]],[[13702,14618,14617]],[[13699,14621,14613]],[[13699,14603,14621]],[[14615,14623,14604]],[[14615,14602,14623]],[[14618,14624,14607]],[[14598,14604,14624]],[[13699,14606,14603]],[[14607,14624,14608]],[[14620,14606,13699]],[[14620,14607,14606]],[[14596,14601,14622]],[[14596,13700,14601]],[[14606,14619,14603]],[[14624,14604,14619]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c79603-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14626,14627,14628]],[[14629,14630,14631]],[[14629,14632,14630]],[[14633,14630,14634]],[[14632,14635,14636]],[[14637,14638,14639]],[[14640,14641,14642]],[[14643,14644,14645]],[[14646,14647,14626]],[[14648,14649,14633]],[[14650,14649,14651]],[[14651,14630,14650]],[[14652,14653,14654]],[[14655,14636,14656]],[[14657,14658,14659]],[[14660,14644,14643]],[[14661,14658,14662]],[[14663,14635,14664]],[[14661,14659,14658]],[[14656,14635,14663]],[[14665,14641,14666]],[[14640,14662,14667]],[[14668,14638,14669]],[[14659,14670,14660]],[[14671,14642,14672]],[[14642,14641,14673]],[[14674,14647,14646]],[[14675,14676,14653]],[[14634,14648,14633]],[[14634,14632,14636]],[[14626,14663,14627]],[[14655,14652,14677]],[[14640,14678,14666]],[[14654,14657,14677]],[[14675,14653,14656]],[[14667,14658,14657]],[[14679,14680,14681]],[[14638,14672,14673]],[[14679,14681,14674]],[[14682,14683,14669]],[[14648,14655,14649]],[[14657,14659,14651]],[[14651,14649,14657]],[[14677,14657,14649]],[[14649,14655,14677]],[[14636,14635,14656]],[[14647,14684,14685]],[[14686,14687,14688]],[[14689,14685,14687]],[[14666,14689,14690]],[[14691,14647,14685]],[[14692,14682,14673]],[[14638,14673,14682]],[[14672,14642,14673]],[[14693,14646,14694]],[[14627,14663,14664]],[[14629,14695,14664]],[[14696,14626,14628]],[[14679,14674,14693]],[[14695,14628,14664]],[[14697,14694,14631]],[[14697,14693,14694]],[[14698,14679,14697]],[[14699,14688,14684]],[[14659,14660,14643]],[[14671,14672,14700]],[[14670,14661,14701]],[[14662,14658,14667]],[[14626,14675,14663]],[[14676,14689,14653]],[[14691,14676,14675]],[[14689,14678,14654]],[[14686,14688,14683]],[[14681,14680,14688]],[[14666,14690,14665]],[[14688,14668,14683]],[[14678,14689,14666]],[[14687,14684,14688]],[[14632,14664,14635]],[[14628,14627,14664]],[[14645,14659,14643]],[[14645,14651,14659]],[[14641,14640,14666]],[[14642,14662,14640]],[[14688,14702,14668]],[[14637,14703,14638]],[[14704,14629,14631]],[[14705,14646,14696]],[[14705,14696,14628]],[[14646,14626,14696]],[[14694,14705,14704]],[[14694,14646,14705]],[[14694,14704,14631]],[[14705,14628,14695]],[[14706,14702,14680]],[[14668,14639,14638]],[[14680,14702,14688]],[[14706,14639,14702]],[[14678,14667,14654]],[[14678,14640,14667]],[[14631,14680,14679]],[[14706,14707,14639]],[[14647,14691,14675]],[[14685,14676,14691]],[[14692,14665,14690]],[[14692,14641,14665]],[[14642,14701,14662]],[[14662,14701,14661]],[[14633,14650,14630]],[[14633,14649,14650]],[[14685,14684,14708]],[[14647,14699,14684]],[[14685,14689,14676]],[[14685,14708,14687]],[[14638,14703,14672]],[[14703,14644,14709]],[[14671,14701,14642]],[[14670,14659,14661]],[[14703,14671,14700]],[[14709,14701,14671]],[[14672,14703,14700]],[[14707,14644,14703]],[[14703,14709,14671]],[[14644,14660,14709]],[[14709,14670,14701]],[[14709,14660,14670]],[[14648,14636,14655]],[[14648,14634,14636]],[[14683,14668,14669]],[[14702,14639,14668]],[[14679,14693,14697]],[[14674,14646,14693]],[[14626,14647,14675]],[[14699,14681,14688]],[[14674,14699,14647]],[[14674,14681,14699]],[[14631,14698,14697]],[[14631,14679,14698]],[[14686,14682,14690]],[[14673,14641,14692]],[[14675,14656,14663]],[[14653,14655,14656]],[[14689,14654,14653]],[[14667,14657,14654]],[[14677,14652,14654]],[[14655,14653,14652]],[[14689,14687,14686]],[[14708,14684,14687]],[[14682,14686,14683]],[[14690,14689,14686]],[[14631,14706,14680]],[[14631,14707,14706]],[[14704,14695,14629]],[[14704,14705,14695]],[[14630,14632,14634]],[[14629,14664,14632]],[[14644,14651,14645]],[[14644,14630,14651]],[[14707,14637,14639]],[[14707,14703,14637]],[[14638,14682,14669]],[[14692,14690,14682]],[[14710,14711,14707]],[[14707,14711,14644]],[[14631,14710,14707]],[[14712,14631,14630]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c8a81e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14713,14714,14715]],[[14716,14715,14717]],[[14716,14718,14715]],[[14716,14717,14719]],[[14720,14715,14718]],[[14714,14717,14715]],[[14720,14713,14715]],[[14721,14714,14713]],[[14721,14722,14719]],[[14721,14713,14722]],[[14722,14716,14719]],[[14722,14718,14716]],[[14722,14720,14718]],[[14722,14713,14720]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c9e082-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14723,14724,14725]],[[14726,14725,14727]],[[14726,14723,14725]],[[14728,14724,14723]],[[14728,14726,14727]],[[14728,14723,14726]],[[14729,14724,14728]],[[14727,14729,14728]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cb8e76-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14730,14731,14732]],[[14733,14732,14734]],[[14733,14730,14732]],[[14735,14731,14730]],[[14735,14733,14734]],[[14735,14730,14733]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc2a0d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14736,14737,14738]],[[14739,14738,14740]],[[14737,14741,14742]],[[14743,14738,14739]],[[14740,14744,14739]],[[14745,14746,14737]],[[14747,14744,14740]],[[14742,14741,14744]],[[14744,14743,14739]],[[14744,14741,14736]],[[14743,14736,14738]],[[14743,14744,14736]],[[14738,14737,14746]],[[14736,14741,14737]],[[14747,14742,14744]],[[14747,14745,14742]],[[14742,14745,14737]],[[14747,14746,14745]],[[14738,14748,14740]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc786f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14749,14750,14751]],[[14752,14753,14754]],[[14755,14756,14757]],[[14758,14759,14760]],[[14761,14762,14763]],[[14752,14764,14753]],[[14756,14765,14766]],[[14767,14768,14769]],[[14766,14765,14770]],[[14771,14751,14772]],[[14773,14757,14774]],[[14775,14750,14749]],[[14776,14777,14752]],[[14772,14764,14778]],[[14762,14752,14754]],[[14770,14760,14779]],[[14768,14780,14763]],[[14763,14754,14753]],[[14766,14775,14756]],[[14766,14750,14775]],[[14775,14757,14756]],[[14762,14754,14763]],[[14749,14781,14782]],[[14783,14784,14785]],[[14786,14776,14762]],[[14749,14751,14781]],[[14780,14787,14788]],[[14789,14790,14783]],[[14757,14788,14755]],[[14757,14773,14788]],[[14781,14784,14782]],[[14780,14768,14791]],[[14790,14786,14761]],[[14781,14751,14785]],[[14758,14768,14767]],[[14769,14753,14792]],[[14761,14786,14762]],[[14789,14793,14790]],[[14793,14789,14786]],[[14794,14752,14777]],[[14776,14786,14777]],[[14761,14795,14796]],[[14773,14782,14797]],[[14774,14749,14782]],[[14775,14774,14757]],[[14775,14749,14774]],[[14798,14794,14771]],[[14778,14752,14794]],[[14763,14769,14768]],[[14763,14753,14769]],[[14761,14796,14790]],[[14795,14788,14773]],[[14796,14797,14790]],[[14796,14773,14797]],[[14783,14799,14789]],[[14793,14786,14790]],[[14797,14783,14790]],[[14789,14777,14786]],[[14784,14783,14797]],[[14789,14771,14794]],[[14785,14799,14783]],[[14771,14772,14798]],[[14764,14792,14753]],[[14770,14779,14750]],[[14756,14787,14770]],[[14756,14755,14787]],[[14776,14752,14762]],[[14778,14764,14752]],[[14795,14800,14788]],[[14787,14758,14770]],[[14785,14771,14799]],[[14785,14751,14771]],[[14792,14760,14759]],[[14770,14750,14766]],[[14764,14779,14760]],[[14764,14750,14779]],[[14767,14792,14759]],[[14764,14760,14792]],[[14778,14798,14772]],[[14778,14794,14798]],[[14788,14787,14755]],[[14791,14758,14787]],[[14782,14784,14797]],[[14781,14785,14784]],[[14800,14780,14788]],[[14761,14763,14780]],[[14758,14767,14759]],[[14769,14792,14767]],[[14771,14789,14799]],[[14794,14777,14789]],[[14756,14770,14765]],[[14758,14760,14770]],[[14782,14773,14774]],[[14796,14795,14773]],[[14780,14791,14787]],[[14768,14758,14791]],[[14761,14800,14795]],[[14761,14780,14800]],[[14764,14801,14750]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc9f9d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14802,3101,3166]],[[14803,3167,3101]],[[14804,14805,14806]],[[14807,14808,14609]],[[14809,14810,14811]],[[14812,14813,14814]],[[14815,13091,14816]],[[14817,14818,14819]],[[14820,13097,13086]],[[14819,14821,13085]],[[14822,14823,14824]],[[14825,14826,14604]],[[14827,14828,14829]],[[14830,14831,14616]],[[14808,14832,14609]],[[14825,13090,14826]],[[14833,14834,14835]],[[14805,14811,14810]],[[14805,14810,3166]],[[14836,14837,14838]],[[12217,14839,3166]],[[14836,14826,13090]],[[14806,14837,14840]],[[14826,14841,14604]],[[14841,14826,14837]],[[14842,14843,14844]],[[14836,14838,14826]],[[14837,14826,14838]],[[3166,14841,14806]],[[14842,14844,14604]],[[13083,14809,14804]],[[14840,14837,14836]],[[14845,14846,14847]],[[14848,14849,14828]],[[14850,14849,14848]],[[12217,3159,14829]],[[14851,14852,14827]],[[14852,14853,14839]],[[14806,13083,14804]],[[14809,13083,14854]],[[14829,14855,14830]],[[14827,14848,14828]],[[14616,14851,14827]],[[14856,14846,14853]],[[14604,14844,14857]],[[14851,14616,14847]],[[14839,14846,14857]],[[14604,14857,14616]],[[14841,14857,14843]],[[14846,14856,14851]],[[14858,14855,14829]],[[14828,14849,14829]],[[13090,14840,14836]],[[13090,14806,14840]],[[14857,14846,14845]],[[14853,14852,14856]],[[14839,14853,14846]],[[14839,14827,14852]],[[13090,13083,14806]],[[14811,14805,14804]],[[14839,14848,14827]],[[12217,14850,14848]],[[3166,14839,14841]],[[12217,14848,14839]],[[14616,14845,14847]],[[14616,14857,14845]],[[14809,14859,14810]],[[3166,14810,14859]],[[14841,14842,14604]],[[14841,14843,14842]],[[14846,14851,14847]],[[14856,14852,14851]],[[14829,14850,12217]],[[14829,14849,14850]],[[14804,14809,14811]],[[13083,14860,14854]],[[14843,14857,14844]],[[14841,14839,14857]],[[3166,14806,14805]],[[14841,14837,14806]],[[14861,14862,14823]],[[14863,13097,14822]],[[14864,14831,14865]],[[14830,14616,14827]],[[14866,14867,14868]],[[14866,13090,14869]],[[14870,14813,14871]],[[14872,14609,14864]],[[14873,14817,13085]],[[14818,14803,14874]],[[14822,14824,14863]],[[13097,14874,14803]],[[14870,14871,14875]],[[14875,14876,14598]],[[14877,14878,14879]],[[14880,13091,14881]],[[14882,14883,14884]],[[14881,13091,14885]],[[14812,14886,14598]],[[14884,14883,14887]],[[14886,14888,14889]],[[14890,14879,14878]],[[14858,14891,14855]],[[14858,14829,3159]],[[14872,14870,14892]],[[14814,14813,14870]],[[14865,14831,14893]],[[14864,14616,14831]],[[14598,14835,14604]],[[14598,14833,14835]],[[14867,14869,14825]],[[14894,14835,14834]],[[14895,14815,14833]],[[14895,13091,14815]],[[14867,14825,14604]],[[14869,13090,14825]],[[3167,14818,14817]],[[14873,14896,14897]],[[14877,14897,14878]],[[14873,13085,14896]],[[14820,14874,13097]],[[14818,3167,14803]],[[13085,14821,13086]],[[14819,14874,14821]],[[14898,14868,14867]],[[14894,14834,14816]],[[14899,14900,14876]],[[14812,14598,14900]],[[14812,14899,14813]],[[14900,14598,14876]],[[14854,14861,14802]],[[14901,13097,14902]],[[14862,14903,14823]],[[14862,13083,14903]],[[14833,14815,14834]],[[14833,14598,14904]],[[14886,14904,14598]],[[14885,13091,14895]],[[14885,14886,14889]],[[14883,14905,14879]],[[14904,14886,14885]],[[14812,14814,14886]],[[14877,14879,3164]],[[14906,13085,13091]],[[14889,14905,14881]],[[14888,14886,14814]],[[14879,14887,14883]],[[14906,13091,14880]],[[14859,14809,14854]],[[13083,14862,14860]],[[14802,14861,14823]],[[14860,14862,14861]],[[14813,14899,14876]],[[14812,14900,14899]],[[14907,14908,14891]],[[14907,14865,14893]],[[14855,14908,14830]],[[14855,14891,14908]],[[14829,14830,14827]],[[14893,14831,14830]],[[14859,14854,3166]],[[14860,14861,14854]],[[14909,14858,14910]],[[3159,14872,14864]],[[14911,14822,14901]],[[14822,13097,14901]],[[14911,14912,14822]],[[14912,14823,14822]],[[14913,14858,3159]],[[14910,14865,14909]],[[14813,14875,14871]],[[14832,14598,14609]],[[3167,14914,3164]],[[14873,14897,14914]],[[14823,14903,14824]],[[13083,13097,14903]],[[14912,14803,3101]],[[14902,13097,14803]],[[14909,14865,14907]],[[14910,14913,14864]],[[3164,14814,3159]],[[3164,14879,14905]],[[14819,14818,14874]],[[14819,13085,14817]],[[14872,14807,14609]],[[14915,14832,14808]],[[14803,14912,14902]],[[3101,14802,14912]],[[14902,14911,14901]],[[14902,14912,14911]],[[14904,14895,14833]],[[14904,14885,14895]],[[14891,14909,14907]],[[14891,14858,14909]],[[14807,14892,14808]],[[14875,14598,14832]],[[14870,14875,14832]],[[14813,14876,14875]],[[14892,14915,14808]],[[14870,14832,14915]],[[14903,14863,14824]],[[14903,13097,14863]],[[14879,14890,14887]],[[14878,14897,14896]],[[14890,14896,14906]],[[14890,14878,14896]],[[14914,14817,14873]],[[14914,3167,14817]],[[14815,14816,14834]],[[13091,13090,14816]],[[14868,14898,14816]],[[14816,14898,14894]],[[14866,14868,14816]],[[14867,14604,14898]],[[14835,14898,14604]],[[14835,14894,14898]],[[14885,14889,14881]],[[14888,14905,14889]],[[14814,14905,14888]],[[14814,3164,14905]],[[14867,14866,14869]],[[14816,13090,14866]],[[14821,14820,13086]],[[14821,14874,14820]],[[14854,14802,3166]],[[14823,14912,14802]],[[14910,14864,14865]],[[14609,14616,14864]],[[14914,14877,3164]],[[14914,14897,14877]],[[14864,14913,3159]],[[14910,14858,14913]],[[14872,14892,14807]],[[14870,14915,14892]],[[14882,14880,14881]],[[14887,14890,14906]],[[14906,14884,14887]],[[14880,14882,14884]],[[14908,14893,14830]],[[14908,14907,14893]],[[14884,14906,14880]],[[14896,13085,14906]],[[14814,14872,3159]],[[14814,14870,14872]],[[14905,14882,14881]],[[14905,14883,14882]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ce263c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14916,14917,14918]],[[14919,14920,14921]],[[14921,14922,14923]],[[14924,14925,14918]],[[14926,14927,14928]],[[14922,14929,14923]],[[14930,14931,14932]],[[14933,14917,14916]],[[14934,14935,14936]],[[14937,14938,14922]],[[14939,14935,14940]],[[14941,14942,14943]],[[14930,14944,14945]],[[14946,14935,14947]],[[14920,14917,14948]],[[14949,14950,14944]],[[14936,14951,14952]],[[14943,14922,14938]],[[14953,14944,14930]],[[14933,14954,14917]],[[14952,14947,14936]],[[14955,14942,14941]],[[14946,14956,14940]],[[14956,14957,14958]],[[14959,14960,14956]],[[14952,14946,14947]],[[14955,14961,14962]],[[14963,14959,14956]],[[14962,14964,14951]],[[14964,14956,14946]],[[14961,14963,14956]],[[14954,14933,14931]],[[14965,14954,14931]],[[14933,14932,14931]],[[14966,14967,14931]],[[14948,14917,14954]],[[14926,14928,14957]],[[14927,14945,14928]],[[14960,14957,14956]],[[14958,14950,14968]],[[14919,14918,14920]],[[14925,14916,14918]],[[14921,14920,14948]],[[14918,14917,14920]],[[14921,14937,14922]],[[14969,14967,14960]],[[14967,14945,14927]],[[14945,14950,14928]],[[14960,14926,14957]],[[14960,14967,14926]],[[14970,14940,14968]],[[14970,14939,14940]],[[14935,14946,14940]],[[14964,14962,14956]],[[14956,14958,14940]],[[14958,14928,14950]],[[14952,14964,14946]],[[14952,14951,14964]],[[14942,14929,14922]],[[14971,14925,14924]],[[14933,14916,14932]],[[14953,14949,14944]],[[14972,14930,14932]],[[14944,14950,14945]],[[14937,14973,14938]],[[14937,14965,14969]],[[14971,14919,14923]],[[14948,14937,14921]],[[14940,14958,14968]],[[14957,14928,14958]],[[14947,14934,14936]],[[14947,14935,14934]],[[14929,14971,14923]],[[14929,14942,14971]],[[14923,14919,14921]],[[14924,14918,14919]],[[14974,14972,14925]],[[14974,14953,14972]],[[14972,14953,14930]],[[14949,14970,14950]],[[14972,14916,14925]],[[14972,14932,14916]],[[14936,14939,14974]],[[14936,14935,14939]],[[14963,14955,14941]],[[14955,14936,14942]],[[14938,14963,14941]],[[14951,14936,14955]],[[14955,14962,14951]],[[14961,14956,14962]],[[14919,14971,14924]],[[14942,14925,14971]],[[14926,14967,14927]],[[14966,14930,14945]],[[14969,14965,14967]],[[14965,14931,14967]],[[14948,14965,14937]],[[14948,14954,14965]],[[14959,14969,14960]],[[14973,14937,14969]],[[14959,14963,14938]],[[14961,14955,14963]],[[14950,14970,14968]],[[14974,14939,14970]],[[14974,14949,14953]],[[14974,14970,14949]],[[14959,14973,14969]],[[14959,14938,14973]],[[14930,14966,14931]],[[14945,14967,14966]],[[14941,14943,14938]],[[14942,14922,14943]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cfd40c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14975,14976,14977]],[[12951,14978,14979]],[[14980,14981,14982]],[[12955,14983,3110]],[[14984,11657,3106]],[[14985,14986,14987]],[[14988,14989,13144]],[[14990,14991,14992]],[[14993,13154,14994]],[[14995,14994,13154]],[[14996,14997,14998]],[[14999,15000,15001]],[[15002,15003,15004]],[[15005,12955,12957]],[[15006,12955,3110]],[[15007,15008,15009]],[[15010,15006,15011]],[[15012,14979,15013]],[[15014,3114,3113]],[[14984,15015,15016]],[[15017,13153,15018]],[[15019,15020,15021]],[[15022,15023,15021]],[[15024,15025,15023]],[[13143,13153,15021]],[[14996,15026,15027]],[[15028,15015,15029]],[[15030,15031,15027]],[[15032,14998,14997]],[[15027,14997,14996]],[[15033,15030,15016]],[[15031,15034,14997]],[[14998,13153,14996]],[[15002,15035,15036]],[[15037,15038,15025]],[[15039,14984,3106]],[[15016,15026,14984]],[[15016,15030,15026]],[[15016,15028,15033]],[[15040,15041,3106]],[[15042,15020,15038]],[[14997,15034,15032]],[[15021,13153,15043]],[[15043,14998,15032]],[[15043,13153,14998]],[[15032,15034,15044]],[[15031,15030,15033]],[[15045,15020,15042]],[[13143,15021,15020]],[[15025,15038,15019]],[[15039,15046,15042]],[[15047,15040,15048]],[[14983,12955,15005]],[[15023,15029,15024]],[[15015,15024,15029]],[[15049,15033,15050]],[[15033,15028,15050]],[[15025,15019,15021]],[[15038,15020,15019]],[[15051,15040,3106]],[[15052,15053,15054]],[[15055,15056,15053]],[[15057,15051,3106]],[[15058,15054,15059]],[[15056,15060,15057]],[[15058,15047,15054]],[[15052,15055,15053]],[[15055,15060,15056]],[[15061,15040,15051]],[[15039,15042,15038]],[[15045,13143,15020]],[[14984,14996,11657]],[[14984,15026,14996]],[[15053,15062,15054]],[[15047,15048,15052]],[[15063,15064,15065]],[[15047,15052,15054]],[[15066,15036,15067]],[[15046,15039,15004]],[[15068,15067,15063]],[[15036,15035,15069]],[[15065,15070,15058]],[[15071,15064,15072]],[[15046,15045,15042]],[[15073,15003,15002]],[[15069,15035,15004]],[[15002,15036,15066]],[[15039,15069,15004]],[[15071,15070,15064]],[[15065,15064,15070]],[[15067,15036,15072]],[[15059,15065,15058]],[[15074,15063,15065]],[[15050,15028,15029]],[[15016,15015,15028]],[[15039,15037,14984]],[[15039,15038,15037]],[[15075,15076,15068]],[[15002,15004,15035]],[[15030,15027,15026]],[[15031,14997,15027]],[[15070,15047,15058]],[[15070,15077,15047]],[[14984,15024,15015]],[[14984,15037,15024]],[[15078,15057,3106]],[[15061,15048,15040]],[[15079,15080,15005]],[[15079,15056,15080]],[[15072,15041,15071]],[[15081,15047,15077]],[[15043,15022,15021]],[[15022,15029,15023]],[[13143,15073,15066]],[[15003,15045,15046]],[[15023,15025,15021]],[[15024,15037,15025]],[[15074,15059,15079]],[[15053,15056,15079]],[[15066,15073,15002]],[[13143,15045,15073]],[[15082,15011,3110]],[[15083,15084,15085]],[[12947,14999,12948]],[[14994,3161,14993]],[[15082,15086,15011]],[[15085,12951,12955]],[[15083,15087,15084]],[[15086,15082,15087]],[[15088,14990,14992]],[[15089,14980,14999]],[[15075,12957,15090]],[[15090,12948,15091]],[[14978,15092,15093]],[[14979,3114,15013]],[[15094,15095,15096]],[[13144,12948,15095]],[[15097,15098,12947]],[[15012,12951,14979]],[[15076,15090,15091]],[[12957,12948,15090]],[[15099,15008,15100]],[[15009,15098,15013]],[[12948,14999,14980]],[[14992,3113,3161]],[[15101,15022,15043]],[[15050,15029,15022]],[[15079,15005,12957]],[[15080,15056,15057]],[[15080,15057,15102]],[[15060,15051,15057]],[[15103,14985,15104]],[[13143,15066,15068]],[[15075,15063,12957]],[[15065,15059,15074]],[[3112,15082,3110]],[[14978,15093,14979]],[[15067,15072,15064]],[[15036,15069,15072]],[[15105,15000,14999]],[[15100,3113,15001]],[[14999,15001,15089]],[[15000,15100,15001]],[[3113,14981,15001]],[[14981,14980,15089]],[[14991,15106,15107]],[[14982,15108,14980]],[[14995,15109,15110]],[[14992,14981,3113]],[[15111,15112,15110]],[[15113,14990,15088]],[[15095,15114,15096]],[[15089,15001,14981]],[[15096,15114,14981]],[[15108,12948,14980]],[[15113,15106,14990]],[[15107,15115,15116]],[[15117,15118,14979]],[[3112,3114,15118]],[[15099,15100,15000]],[[15008,15007,15100]],[[15017,15018,11657]],[[13153,13154,14976]],[[15088,14992,14994]],[[15110,15088,14994]],[[3106,15041,15039]],[[15081,15077,15071]],[[15081,15071,15041]],[[15077,15070,15071]],[[15097,15119,15012]],[[12952,12951,15012]],[[15083,15085,12955]],[[15120,14978,15085]],[[15084,15120,15085]],[[15092,3112,15117]],[[15082,15121,15087]],[[15121,15092,15084]],[[15084,15092,15120]],[[15082,3112,15092]],[[15085,14978,12951]],[[15120,15092,14978]],[[14993,15122,13154]],[[15018,13153,14976]],[[15011,15006,3110]],[[15011,15086,15010]],[[15087,15083,15086]],[[15123,15006,15010]],[[15123,15083,12955]],[[15010,15086,15083]],[[15117,14979,15093]],[[15118,3114,14979]],[[15105,15099,15000]],[[15124,15008,15099]],[[15114,15108,14982]],[[15114,12948,15108]],[[14989,14987,15125]],[[15125,12948,14989]],[[15097,15012,15098]],[[15119,12952,15012]],[[15092,15117,15093]],[[3112,15118,15117]],[[15014,15013,3114]],[[15098,15012,15013]],[[15101,15049,15050]],[[15049,15031,15033]],[[15034,15049,15044]],[[15034,15031,15049]],[[15022,15101,15050]],[[15043,15032,15044]],[[15087,15121,15084]],[[15082,15092,15121]],[[15126,15127,14993]],[[15122,14976,13154]],[[11657,15122,15127]],[[14977,14976,15122]],[[3113,15007,15014]],[[3113,15100,15007]],[[13143,15068,15076]],[[15066,15067,15068]],[[15078,15102,15057]],[[15005,15080,15102]],[[15040,15081,15041]],[[15040,15047,15081]],[[15076,15075,15090]],[[15068,15063,15075]],[[12957,15063,15074]],[[15067,15064,15063]],[[15109,14995,13154]],[[15110,14994,14995]],[[15102,15078,15005]],[[3106,3110,14983]],[[13143,14988,13144]],[[15104,15076,15103]],[[15106,15113,15111]],[[15106,14991,14990]],[[15044,15101,15043]],[[15044,15049,15101]],[[14981,15114,14982]],[[15095,12948,15114]],[[14977,15128,14975]],[[11657,15018,15128]],[[15124,15009,15008]],[[12947,15098,15009]],[[12952,15097,12947]],[[12952,15119,15097]],[[13144,14989,12948]],[[14988,15104,14989]],[[13144,15094,15115]],[[13144,15095,15094]],[[15126,14993,3161]],[[15127,15122,14993]],[[14986,15125,14987]],[[14986,12948,15125]],[[14989,14985,14987]],[[15091,12948,14986]],[[15104,14985,14989]],[[15076,15091,15103]],[[14986,15103,15091]],[[14986,14985,15103]],[[15105,15124,15099]],[[12947,15009,15124]],[[14996,15017,11657]],[[14996,13153,15017]],[[15009,15014,15007]],[[15009,15013,15014]],[[11657,14977,15122]],[[11657,15128,14977]],[[15074,15079,12957]],[[15062,15053,15079]],[[15059,15062,15079]],[[15059,15054,15062]],[[11657,15126,3161]],[[11657,15127,15126]],[[12947,15105,14999]],[[12947,15124,15105]],[[14991,15116,14992]],[[15096,14981,14992]],[[15055,15048,15061]],[[15055,15052,15048]],[[15060,15061,15051]],[[15060,15055,15061]],[[15115,15096,15116]],[[15115,15094,15096]],[[13143,15104,14988]],[[13143,15076,15104]],[[13144,15106,13154]],[[15113,15112,15111]],[[13154,15106,15111]],[[15107,15116,14991]],[[13144,15107,15106]],[[13144,15115,15107]],[[15078,15129,15005]],[[15078,3106,14983]],[[15129,14983,15005]],[[15129,15078,14983]],[[15004,15003,15046]],[[15073,15045,15003]],[[14994,14992,3161]],[[15116,15096,14992]],[[15112,15088,15110]],[[15112,15113,15088]],[[15111,15109,13154]],[[15111,15110,15109]],[[15018,14975,15128]],[[15018,14976,14975]],[[15006,15123,12955]],[[15010,15083,15123]],[[15041,15069,15039]],[[15041,15072,15069]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d13392-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15130,15131,15132]],[[15133,15134,15135]],[[15130,15136,15131]],[[15137,15131,15136]],[[15138,15139,15140]],[[15141,15142,15143]],[[15144,15145,15142]],[[15137,15146,15147]],[[15148,15142,15145]],[[15149,15150,15151]],[[15133,15135,15151]],[[15152,15153,15154]],[[15155,15137,15136]],[[15156,15150,15131]],[[15157,15158,15148]],[[15153,15159,15160]],[[15159,15161,15162]],[[15161,15153,15148]],[[15160,15159,15163]],[[15161,15148,15164]],[[15162,15164,15165]],[[15162,15161,15164]],[[15163,15165,15166]],[[15164,15148,15165]],[[15167,15168,15169]],[[15170,15157,15171]],[[15170,15139,15157]],[[15157,15148,15145]],[[15172,15173,15174]],[[15175,15176,15177]],[[15178,15174,15173]],[[15179,15180,15181]],[[15182,15177,15149]],[[15154,15150,15183]],[[15169,15178,15130]],[[15184,15168,15144]],[[15147,15185,15186]],[[15151,15150,15187]],[[15188,15173,15172]],[[15176,15181,15177]],[[15189,15190,15174]],[[15189,15191,15192]],[[15156,15193,15187]],[[15185,15134,15194]],[[15130,15155,15136]],[[15190,15195,15172]],[[15130,15173,15155]],[[15130,15178,15173]],[[15196,15146,15197]],[[15188,15155,15173]],[[15185,15146,15175]],[[15146,15188,15197]],[[15178,15198,15174]],[[15181,15183,15149]],[[15192,15141,15189]],[[15141,15143,15180]],[[15179,15189,15180]],[[15174,15191,15189]],[[15197,15190,15176]],[[15197,15195,15190]],[[15199,15167,15130]],[[15200,15165,15158]],[[15174,15198,15191]],[[15192,15201,15141]],[[15194,15133,15151]],[[15149,15183,15150]],[[15144,15171,15145]],[[15168,15140,15170]],[[15141,15201,15142]],[[15144,15168,15171]],[[15186,15185,15193]],[[15134,15177,15135]],[[15163,15159,15162]],[[15154,15183,15152]],[[15175,15134,15185]],[[15175,15177,15134]],[[15187,15194,15151]],[[15194,15134,15133]],[[15190,15172,15174]],[[15195,15188,15172]],[[15167,15140,15168]],[[15167,15138,15140]],[[15199,15138,15167]],[[15165,15148,15158]],[[15202,15199,15130]],[[15202,15200,15199]],[[15132,15166,15202]],[[15132,15163,15166]],[[15132,15202,15130]],[[15166,15165,15202]],[[15199,15200,15138]],[[15202,15165,15200]],[[15177,15182,15135]],[[15177,15181,15149]],[[15197,15188,15195]],[[15137,15155,15188]],[[15178,15169,15201]],[[15201,15169,15184]],[[15165,15163,15162]],[[15160,15154,15153]],[[15188,15146,15137]],[[15197,15176,15196]],[[15190,15179,15176]],[[15180,15152,15181]],[[15137,15147,15131]],[[15146,15185,15147]],[[15175,15196,15176]],[[15175,15146,15196]],[[15176,15179,15181]],[[15190,15189,15179]],[[15138,15158,15139]],[[15138,15200,15158]],[[15171,15157,15145]],[[15139,15158,15157]],[[15193,15194,15187]],[[15193,15185,15194]],[[15167,15169,15130]],[[15168,15184,15169]],[[15147,15186,15131]],[[15187,15150,15156]],[[15186,15156,15131]],[[15186,15193,15156]],[[15180,15143,15152]],[[15142,15148,15143]],[[15168,15170,15171]],[[15140,15139,15170]],[[15135,15149,15151]],[[15135,15182,15149]],[[15189,15141,15180]],[[15192,15178,15201]],[[15198,15192,15191]],[[15198,15178,15192]],[[15181,15152,15183]],[[15143,15148,15153]],[[15143,15153,15152]],[[15161,15159,15153]],[[15201,15144,15142]],[[15201,15184,15144]],[[15132,15160,15163]],[[15132,15154,15160]],[[15203,15154,15132]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d15abd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15204,15205,15206]],[[15206,15205,15207]],[[15205,15208,15209]],[[15209,15210,15205]],[[15211,15212,15206]],[[15213,15209,15208]],[[15204,15206,15213]],[[15212,15209,15214]],[[15204,15213,15208]],[[15214,15209,15213]],[[15211,15206,15207]],[[15214,15213,15206]],[[15206,15212,15214]],[[15211,15209,15212]],[[15207,15205,15210]],[[15204,15208,15205]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d3cb76-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15215,15216,15217]],[[15218,15217,15219]],[[15220,15221,15222]],[[15215,15217,15222]],[[15221,15223,15224]],[[15225,15216,15215]],[[15215,15226,15225]],[[15227,15228,15225]],[[15218,15222,15217]],[[15229,15215,15222]],[[15230,15224,15226]],[[15231,15226,15224]],[[15221,15215,15229]],[[15230,15226,15215]],[[15231,15227,15226]],[[15228,15216,15225]],[[15226,15227,15225]],[[15231,15228,15227]],[[15232,15220,15219]],[[15220,15223,15221]],[[15220,15233,15219]],[[15220,15222,15233]],[[15222,15221,15229]],[[15220,15232,15223]],[[15221,15230,15215]],[[15221,15224,15230]],[[15228,15232,15219]],[[15223,15231,15224]],[[15233,15218,15219]],[[15233,15222,15218]],[[15228,15223,15232]],[[15228,15231,15223]],[[15234,15216,15228]],[[15217,15235,15219]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d48e56-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15236,15237,15238]],[[15239,15240,15236]],[[15241,15242,15243]],[[15244,15245,15240]],[[15242,15246,15243]],[[15247,15237,15236]],[[15245,15248,15247]],[[15249,15237,15248]],[[15250,15242,15251]],[[15239,15244,15240]],[[15250,15246,15242]],[[15252,15253,15245]],[[15252,15254,15249]],[[15249,15248,15253]],[[15250,15254,15252]],[[15255,15249,15254]],[[15250,15255,15254]],[[15256,15249,15255]],[[15252,15245,15244]],[[15253,15248,15245]],[[15251,15242,15241]],[[15246,15250,15252]],[[15257,15241,15258]],[[15243,15246,15252]],[[15259,15241,15257]],[[15241,15252,15258]],[[15252,15249,15253]],[[15256,15237,15249]],[[15259,15257,15239]],[[15260,15244,15239]],[[15259,15239,15238]],[[15257,15260,15239]],[[15245,15247,15240]],[[15248,15237,15247]],[[15256,15250,15251]],[[15256,15255,15250]],[[15239,15236,15238]],[[15240,15247,15236]],[[15260,15252,15244]],[[15241,15243,15252]],[[15258,15260,15257]],[[15258,15252,15260]],[[15251,15259,15238]],[[15251,15241,15259]],[[15261,15237,15256]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d5a08f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbc0149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15262,15263,15264]],[[15265,15264,15266]],[[15267,15268,15269]],[[15270,15271,15272]],[[15268,15273,15270]],[[15274,15275,15276]],[[15277,15274,15276]],[[15278,15274,15277]],[[15279,15276,15265]],[[15280,15281,15282]],[[15282,15279,15283]],[[15265,15284,15267]],[[15285,15279,15265]],[[15265,15276,15284]],[[15269,15286,15267]],[[15269,15263,15286]],[[15269,15268,15272]],[[15273,15271,15270]],[[15282,15281,15279]],[[15275,15273,15268]],[[15262,15265,15286]],[[15268,15270,15272]],[[15284,15268,15267]],[[15276,15275,15268]],[[15286,15265,15267]],[[15276,15268,15284]],[[15277,15281,15280]],[[15277,15276,15281]],[[15285,15265,15266]],[[15285,15287,15279]],[[15283,15279,15287]],[[15281,15276,15279]],[[15265,15262,15264]],[[15286,15263,15262]],[[15288,15277,15289]],[[15288,15278,15277]],[[15289,15280,15282]],[[15289,15277,15280]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d5c6c6-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15290,15291,15292]],[[15293,15294,15295]],[[15296,15297,15298]],[[15299,15300,15290]],[[15296,15298,15301]],[[15302,15296,15291]],[[15295,15294,15303]],[[15298,15297,15304]],[[15295,15303,15290]],[[15294,15298,15304]],[[15294,15299,15303]],[[15300,15302,15290]],[[15301,15295,15290]],[[15293,15298,15294]],[[15301,15290,15292]],[[15303,15299,15290]],[[15294,15304,15305]],[[15297,15296,15304]],[[15294,15305,15299]],[[15304,15296,15305]],[[15301,15293,15295]],[[15301,15298,15293]],[[15290,15302,15291]],[[15305,15296,15302]],[[15305,15300,15299]],[[15305,15302,15300]],[[15306,15291,15296]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d97113-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15307,15308,15309]],[[15310,15311,15312]],[[15313,15314,15315]],[[15313,15316,15314]],[[15315,15314,15317]],[[15317,15314,15318]],[[15318,15314,15319]],[[15318,15320,15317]],[[15321,15322,15312]],[[15318,15323,15324]],[[15322,15316,15310]],[[15309,15325,15326]],[[15312,15322,15310]],[[15327,15328,15329]],[[15314,15316,15330]],[[15308,15328,15309]],[[15322,15329,15316]],[[15322,15327,15329]],[[15319,15314,15330]],[[15315,15311,15313]],[[15310,15313,15311]],[[15310,15316,15313]],[[15331,15318,15324]],[[15323,15325,15324]],[[15330,15323,15319]],[[15326,15325,15323]],[[15330,15326,15323]],[[15330,15309,15326]],[[15316,15307,15330]],[[15328,15325,15309]],[[15323,15318,15319]],[[15331,15320,15318]],[[15327,15321,15312]],[[15327,15322,15321]],[[15330,15307,15309]],[[15316,15329,15308]],[[15316,15308,15307]],[[15329,15328,15308]],[[15332,15328,15327]],[[15325,15333,15324]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da0cd1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15334,15335,15336]],[[15337,15338,15339]],[[15340,15341,15342]],[[15343,15344,15345]],[[15346,15347,15348]],[[15349,15350,15338]],[[15351,15348,15352]],[[15353,15354,15355]],[[15356,15348,15357]],[[15357,15335,15334]],[[15358,15359,15342]],[[15360,15350,15359]],[[15352,15347,15361]],[[15362,15363,15364]],[[15349,15355,15350]],[[15364,15365,15362]],[[15335,15344,15366]],[[15367,15342,15359]],[[15341,15358,15342]],[[15360,15359,15358]],[[15360,15341,15361]],[[15345,15340,15343]],[[15345,15357,15348]],[[15357,15334,15368]],[[15347,15346,15339]],[[15356,15357,15368]],[[15356,15368,15337]],[[15334,15338,15337]],[[15346,15356,15339]],[[15346,15348,15356]],[[15366,15336,15335]],[[15369,15343,15342]],[[15367,15362,15342]],[[15369,15370,15343]],[[15370,15371,15343]],[[15366,15344,15371]],[[15362,15369,15342]],[[15371,15344,15343]],[[15365,15369,15362]],[[15365,15372,15370]],[[15350,15354,15359]],[[15350,15355,15354]],[[15354,15363,15367]],[[15354,15353,15373]],[[15354,15373,15363]],[[15373,15374,15364]],[[15361,15341,15352]],[[15360,15358,15341]],[[15335,15357,15345]],[[15348,15347,15352]],[[15335,15345,15344]],[[15340,15342,15343]],[[15354,15367,15359]],[[15363,15362,15367]],[[15364,15375,15365]],[[15336,15338,15334]],[[15365,15375,15372]],[[15374,15355,15376]],[[15365,15370,15369]],[[15372,15377,15370]],[[15345,15351,15352]],[[15345,15348,15351]],[[15370,15377,15378]],[[15374,15353,15355]],[[15336,15376,15349]],[[15336,15366,15376]],[[15375,15377,15372]],[[15375,15376,15377]],[[15356,15337,15339]],[[15368,15334,15337]],[[15373,15364,15363]],[[15373,15353,15374]],[[15339,15361,15347]],[[15339,15360,15361]],[[15336,15349,15338]],[[15376,15355,15349]],[[15370,15378,15371]],[[15377,15376,15378]],[[15352,15340,15345]],[[15352,15341,15340]],[[15375,15374,15376]],[[15375,15364,15374]],[[15378,15366,15371]],[[15378,15376,15366]],[[15360,15379,15350]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da0cdd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15380,15381,15382]],[[15383,15384,15385]],[[15386,15387,15388]],[[15389,15390,15391]],[[15392,15391,15380]],[[15393,15394,15395]],[[15396,15397,15398]],[[15399,15386,15400]],[[15401,15380,15382]],[[15391,15381,15380]],[[15401,15392,15380]],[[15402,15398,15397]],[[15403,15404,15405]],[[15390,15381,15391]],[[15392,15393,15391]],[[15384,15406,15385]],[[15388,15394,15401]],[[15407,15396,15398]],[[15395,15407,15408]],[[15407,15388,15396]],[[15409,15395,15383]],[[15410,15402,15411]],[[15389,15409,15412]],[[15394,15407,15395]],[[15393,15389,15391]],[[15412,15385,15390]],[[15413,15414,15406]],[[15414,15381,15406]],[[15409,15383,15412]],[[15406,15381,15390]],[[15384,15413,15406]],[[15400,15381,15414]],[[15383,15415,15384]],[[15415,15416,15413]],[[15412,15383,15385]],[[15415,15413,15384]],[[15408,15417,15383]],[[15408,15398,15402]],[[15413,15416,15414]],[[15417,15408,15402]],[[15408,15407,15398]],[[15394,15388,15407]],[[15383,15395,15408]],[[15409,15393,15395]],[[15416,15402,15410]],[[15386,15381,15400]],[[15399,15405,15386]],[[15387,15386,15404]],[[15410,15411,15418]],[[15403,15387,15404]],[[15418,15399,15400]],[[15405,15404,15386]],[[15411,15402,15397]],[[15416,15415,15417]],[[15387,15403,15397]],[[15418,15400,15410]],[[15412,15390,15389]],[[15385,15406,15390]],[[15416,15417,15402]],[[15415,15383,15417]],[[15414,15410,15400]],[[15414,15416,15410]],[[15411,15403,15418]],[[15411,15397,15403]],[[15388,15401,15382]],[[15394,15392,15401]],[[15387,15396,15388]],[[15387,15397,15396]],[[15418,15405,15399]],[[15418,15403,15405]],[[15389,15393,15409]],[[15392,15394,15393]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da8252-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15419,15420,15421]],[[15422,15423,15424]],[[15424,15425,15426]],[[15427,15428,15429]],[[15430,15426,15431]],[[15432,15420,15433]],[[15434,15435,15425]],[[15425,15436,15437]],[[15438,15434,15425]],[[15425,15437,15426]],[[15435,15439,15425]],[[15440,15436,15439]],[[15440,15441,15442]],[[15440,15439,15441]],[[15423,15443,15424]],[[15438,15425,15424]],[[15430,15444,15433]],[[15430,15431,15444]],[[15445,15443,15423]],[[15438,15424,15443]],[[15419,15430,15433]],[[15446,15426,15430]],[[15431,15429,15444]],[[15431,15427,15429]],[[15426,15437,15431]],[[15428,15420,15432]],[[15447,15448,15449]],[[15446,15447,15449]],[[15419,15446,15430]],[[15449,15422,15446]],[[15441,15450,15442]],[[15435,15443,15445]],[[15450,15435,15445]],[[15441,15439,15435]],[[15419,15433,15420]],[[15444,15429,15432]],[[15451,15447,15446]],[[15448,15445,15449]],[[15426,15422,15424]],[[15449,15445,15423]],[[15442,15450,15445]],[[15441,15435,15450]],[[15446,15422,15426]],[[15449,15423,15422]],[[15444,15432,15433]],[[15429,15428,15432]],[[15437,15428,15427]],[[15440,15420,15428]],[[15439,15436,15425]],[[15440,15437,15436]],[[15442,15451,15421]],[[15442,15448,15451]],[[15443,15434,15438]],[[15443,15435,15434]],[[15451,15419,15421]],[[15451,15446,15419]],[[15451,15448,15447]],[[15442,15445,15448]],[[15431,15437,15427]],[[15440,15428,15437]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95dca4f1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15452,15453,15454]],[[15455,15456,15457]],[[15458,15455,15459]],[[15460,15461,15454]],[[15462,15456,15455]],[[15455,15458,15462]],[[15462,15457,15456]],[[15459,15455,15463]],[[15464,15465,15466]],[[15464,15463,15465]],[[15459,15464,15452]],[[15465,15463,15466]],[[15467,15462,15468]],[[15457,15463,15455]],[[15467,15457,15462]],[[15466,15463,15457]],[[15469,15467,15468]],[[15466,15457,15467]],[[15459,15452,15470]],[[15471,15467,15469]],[[15454,15453,15460]],[[15452,15466,15471]],[[15452,15471,15453]],[[15466,15467,15471]],[[15458,15468,15462]],[[15458,15472,15468]],[[15471,15469,15453]],[[15461,15472,15454]],[[15469,15460,15453]],[[15469,15468,15461]],[[15470,15454,15472]],[[15470,15452,15454]],[[15469,15461,15460]],[[15468,15472,15461]],[[15452,15464,15466]],[[15459,15463,15464]],[[15473,15472,15458]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95de048f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15474,15475,15476]],[[15477,15478,15479]],[[15480,15477,15479]],[[15481,15482,15483]],[[15484,15478,15485]],[[15477,15480,15486]],[[15484,15485,15487]],[[15488,15489,15490]],[[15478,15491,15485]],[[15486,15480,15490]],[[15492,15487,15476]],[[15485,15491,15493]],[[15492,15476,15475]],[[15494,15495,15496]],[[15487,15497,15476]],[[15481,15491,15482]],[[15487,15493,15497]],[[15487,15485,15493]],[[15498,15475,15474]],[[15481,15493,15491]],[[15484,15492,15496]],[[15494,15474,15499]],[[15492,15475,15498]],[[15476,15497,15474]],[[15499,15474,15497]],[[15496,15498,15474]],[[15483,15482,15486]],[[15491,15478,15486]],[[15500,15488,15501]],[[15488,15502,15481]],[[15490,15489,15483]],[[15502,15500,15503]],[[15488,15481,15489]],[[15497,15493,15481]],[[15495,15490,15480]],[[15501,15488,15490]],[[15474,15494,15496]],[[15504,15495,15494]],[[15479,15484,15496]],[[15479,15478,15484]],[[15496,15492,15498]],[[15484,15487,15492]],[[15491,15486,15482]],[[15478,15477,15486]],[[15495,15501,15490]],[[15495,15500,15501]],[[15504,15500,15495]],[[15499,15497,15481]],[[15504,15503,15500]],[[15504,15494,15499]],[[15504,15499,15503]],[[15488,15500,15502]],[[15490,15483,15486]],[[15489,15481,15483]],[[15502,15499,15481]],[[15502,15503,15499]],[[15480,15505,15495]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95df8b58-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15506,15507,15508]],[[15509,15510,15511]],[[15512,15509,15511]],[[15508,15513,15506]],[[15514,15511,15515]],[[15510,15516,15511]],[[15517,15516,15510]],[[15518,15519,8761]],[[8674,15517,8675]],[[8674,15516,15517]],[[15506,15520,15521]],[[8674,8760,15520]],[[8675,15522,8761]],[[15523,15521,8760]],[[15524,15514,15525]],[[15508,15516,15526]],[[15514,15515,15508]],[[15511,15516,15515]],[[15514,15508,15507]],[[15515,15516,15508]],[[8674,15526,15516]],[[8674,15520,15526]],[[15527,15518,8761]],[[15525,15507,15519]],[[8761,15524,15528]],[[15512,15511,15514]],[[8761,15519,8760]],[[15519,15507,15506]],[[15526,15513,15508]],[[15526,15520,15513]],[[8760,15521,15520]],[[15521,15519,15506]],[[15520,15506,15513]],[[15521,15523,15519]],[[8760,15519,15523]],[[15518,15525,15519]],[[15528,15529,8761]],[[15528,15518,15529]],[[15528,15525,15518]],[[15528,15524,15525]],[[15522,15512,15524]],[[15522,15517,15509]],[[15522,15509,15512]],[[15517,15510,15509]],[[8761,15522,15524]],[[8675,15517,15522]],[[15525,15514,15507]],[[15524,15512,15514]],[[15529,15527,8761]],[[15529,15518,15527]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e04e3b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9bf749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15530,15531,15532]],[[15533,15534,15535]],[[15536,15537,15538]],[[15537,15539,15538]],[[15540,15541,15542]],[[15543,15538,15542]],[[15544,15541,15545]],[[15546,15547,15536]],[[15548,15549,15550]],[[15551,15552,15537]],[[15539,15553,15538]],[[15547,15551,15537]],[[15554,15552,15555]],[[15537,15552,15554]],[[15556,15557,15558]],[[15539,15559,15541]],[[15550,15552,15551]],[[15539,15554,15559]],[[15539,15537,15554]],[[15544,15545,15560]],[[15559,15554,15555]],[[15561,15544,15531]],[[15545,15559,15555]],[[15546,15536,15562]],[[15544,15542,15541]],[[15563,15536,15564]],[[15547,15537,15536]],[[15535,15562,15565]],[[15546,15548,15551]],[[15535,15565,15533]],[[15562,15536,15565]],[[15539,15541,15553]],[[15559,15545,15541]],[[15566,15564,15561]],[[15540,15553,15541]],[[15533,15566,15534]],[[15533,15565,15566]],[[15565,15563,15566]],[[15536,15538,15564]],[[15566,15563,15564]],[[15565,15536,15563]],[[15538,15540,15542]],[[15538,15553,15540]],[[15545,15556,15560]],[[15555,15557,15556]],[[15555,15550,15549]],[[15555,15552,15550]],[[15566,15561,15530]],[[15564,15538,15543]],[[15531,15544,15560]],[[15561,15543,15544]],[[15546,15551,15547]],[[15548,15550,15551]],[[15558,15567,15560]],[[15530,15561,15531]],[[15556,15558,15560]],[[15567,15531,15560]],[[15535,15546,15562]],[[15535,15548,15546]],[[15544,15543,15542]],[[15561,15564,15543]],[[15557,15567,15558]],[[15532,15534,15530]],[[15567,15532,15531]],[[15534,15566,15530]],[[15545,15555,15556]],[[15549,15557,15555]],[[15557,15532,15567]],[[15557,15534,15532]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e1395b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15568,15569,15570]],[[15571,15572,15573]],[[15571,10005,11645]],[[15574,15569,15568]],[[15575,15576,15577]],[[15569,15573,15575]],[[15578,15579,15571]],[[15573,15574,15571]],[[15570,15569,15575]],[[15571,15579,15580]],[[11645,15578,15571]],[[15578,15581,15577]],[[15573,15572,15575]],[[15579,15578,15576]],[[15582,15583,15584]],[[15575,15577,12553]],[[15585,15581,15578]],[[15584,12553,15577]],[[15579,15576,15580]],[[15575,12553,10000]],[[15578,15577,15576]],[[15581,15584,15577]],[[11645,15585,15578]],[[11645,12776,15582]],[[15585,15584,15581]],[[15583,12776,12553]],[[10006,15570,10000]],[[15586,10005,15574]],[[15586,15568,15570]],[[15574,15573,15569]],[[15585,15582,15584]],[[15585,11645,15582]],[[15570,15575,10000]],[[15580,15576,15575]],[[15586,15574,15568]],[[10005,15571,15574]],[[15572,15580,15575]],[[15572,15571,15580]],[[15584,15583,12553]],[[15582,12776,15583]],[[10006,15586,15570]],[[10006,10005,15586]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e24a9a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15587,15588,12699]],[[15588,14325,12674]],[[14320,15589,15590]],[[15591,15592,14322]],[[15593,14322,14326]],[[15594,14320,14322]],[[15595,15594,14322]],[[15596,15597,15598]],[[15599,15600,14320]],[[15596,15598,14325]],[[15601,15602,15603]],[[15595,14322,15592]],[[15604,15602,15605]],[[15603,15592,15591]],[[15606,15607,15593]],[[15608,15604,15609]],[[14320,15590,14325]],[[15610,12686,12674]],[[15589,15611,15590]],[[15598,12674,14325]],[[15612,15613,15600]],[[15589,14320,15600]],[[15590,15614,15615]],[[15613,15589,15600]],[[15616,15617,14326]],[[15588,12674,12699]],[[15618,15595,15592]],[[15594,12686,14320]],[[15619,15608,15620]],[[15609,15604,15605]],[[15615,15610,15598]],[[15597,15615,15598]],[[15614,15611,15610]],[[15612,15611,15613]],[[15601,15605,15602]],[[15593,15607,15609]],[[12685,15594,15595]],[[12685,12686,15594]],[[15617,15621,15619]],[[15620,15617,15619]],[[15620,15606,15593]],[[15619,15621,15608]],[[15616,15622,15587]],[[14326,14325,15622]],[[15590,15611,15614]],[[15589,15613,15611]],[[15590,15596,14325]],[[15623,15597,15596]],[[12686,15599,14320]],[[12686,15600,15599]],[[15598,15610,12674]],[[15600,12686,15610]],[[15623,15615,15597]],[[15614,15610,15615]],[[15590,15623,15596]],[[15590,15615,15623]],[[15606,15620,15608]],[[12699,12685,15604]],[[15606,15608,15607]],[[15618,12685,15595]],[[15621,15604,15608]],[[15621,12699,15604]],[[15604,15603,15602]],[[15604,12685,15618]],[[15593,15609,15605]],[[15607,15608,15609]],[[15610,15612,15600]],[[15610,15611,15612]],[[15622,15616,14326]],[[15587,12699,15616]],[[15621,15616,12699]],[[15621,15617,15616]],[[15593,15601,14322]],[[15593,15605,15601]],[[15601,15591,14322]],[[15601,15603,15591]],[[14326,15620,15593]],[[14326,15617,15620]],[[15622,15588,15587]],[[15622,14325,15588]],[[15603,15618,15592]],[[15603,15604,15618]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e5572f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15624,15625,9879]],[[15626,15627,9878]],[[9880,15625,15626]],[[15625,9876,9879]],[[15626,15625,15624]],[[9880,9876,15625]],[[9880,15626,9878]],[[15627,9879,9878]],[[15624,15627,15626]],[[15624,9879,15627]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e5ccd1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15628,15629,15630]],[[15631,15628,15630]],[[15632,15633,15634]],[[15635,15629,15636]],[[15637,15638,15639]],[[15640,15641,15629]],[[15642,15643,15644]],[[15645,15629,15628]],[[15646,15647,15648]],[[15649,15650,15651]],[[15644,15652,15653]],[[15653,15654,15649]],[[15655,15656,15657]],[[15658,15650,15654]],[[15659,15643,15660]],[[15661,15662,15652]],[[15663,15647,15630]],[[15660,15643,15642]],[[15631,15664,15628]],[[15665,15666,15667]],[[15668,15639,15666]],[[15669,15656,15639]],[[15655,15667,15666]],[[15635,15670,15629]],[[15635,15667,15670]],[[15634,15670,15667]],[[15641,15671,15636]],[[15672,15668,15665]],[[15673,15631,15630]],[[15673,15664,15631]],[[15651,15670,15634]],[[15650,15629,15670]],[[15632,15649,15633]],[[15650,15670,15651]],[[15632,15634,15667]],[[15633,15651,15634]],[[15638,15669,15639]],[[15656,15666,15639]],[[15638,15656,15669]],[[15655,15657,15642]],[[15674,15657,15656]],[[15674,15675,15657]],[[15671,15665,15636]],[[15665,15667,15676]],[[15635,15665,15676]],[[15668,15637,15639]],[[15664,15675,15674]],[[15664,15673,15677]],[[15678,15679,15628]],[[15679,15640,15645]],[[15628,15679,15645]],[[15680,15638,15637]],[[15648,15647,15681]],[[15663,15682,15647]],[[15633,15649,15651]],[[15654,15650,15649]],[[15632,15653,15649]],[[15652,15644,15661]],[[15652,15662,15654]],[[15682,15650,15662]],[[15659,15682,15643]],[[15643,15682,15661]],[[15638,15674,15656]],[[15660,15681,15659]],[[15647,15646,15630]],[[15664,15674,15678]],[[15646,15677,15673]],[[15646,15657,15675]],[[15679,15637,15672]],[[15679,15678,15637]],[[15645,15640,15629]],[[15679,15672,15641]],[[15629,15641,15636]],[[15640,15679,15641]],[[15677,15675,15664]],[[15677,15646,15675]],[[15632,15655,15683]],[[15666,15656,15655]],[[15664,15678,15628]],[[15680,15637,15678]],[[15655,15642,15683]],[[15652,15654,15653]],[[15683,15642,15653]],[[15643,15661,15644]],[[15653,15642,15644]],[[15657,15660,15642]],[[15661,15682,15662]],[[15663,15650,15682]],[[15671,15672,15665]],[[15671,15641,15672]],[[15680,15674,15638]],[[15680,15678,15674]],[[15646,15660,15657]],[[15648,15681,15660]],[[15655,15632,15667]],[[15683,15653,15632]],[[15662,15658,15654]],[[15662,15650,15658]],[[15630,15646,15673]],[[15648,15660,15646]],[[15647,15659,15681]],[[15647,15682,15659]],[[15665,15635,15636]],[[15676,15667,15635]],[[15665,15668,15666]],[[15672,15637,15668]],[[15650,15684,15629]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e6b6dc-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9af849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15685,8677,8755]],[[15686,15687,15688]],[[15686,15689,15687]],[[15690,8677,15688]],[[15691,15689,15686]],[[15687,15690,15688]],[[8678,15689,8754]],[[8678,15690,15689]],[[15689,15690,15687]],[[8678,8677,15690]],[[8677,15685,15688]],[[15691,8754,15689]],[[15691,15685,8755]],[[15686,15688,15685]],[[15685,15691,15686]],[[8755,8754,15691]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e88c0d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15692,15693,15694]],[[15692,15695,15696]],[[15697,15698,15695]],[[15699,15700,15696]],[[15701,15702,15698]],[[15703,15704,15702]],[[15697,15695,15692]],[[15695,15702,15699]],[[15701,15698,15705]],[[15702,15695,15698]],[[15706,15707,15694]],[[15707,15701,15705]],[[15707,15705,15697]],[[15707,15706,15701]],[[15707,15697,15694]],[[15705,15698,15697]],[[15695,15699,15696]],[[15700,15693,15692]],[[15702,15704,15699]],[[15708,15693,15704]],[[15704,15700,15699]],[[15704,15693,15700]],[[15708,15701,15706]],[[15708,15709,15703]],[[15701,15708,15703]],[[15708,15704,15709]],[[15701,15703,15702]],[[15709,15704,15703]],[[15697,15692,15694]],[[15696,15700,15692]],[[15710,15693,15708]],[[15694,15711,15706]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ea39ef-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15712,15713,15714]],[[15715,15714,15716]],[[15717,15718,15716]],[[15717,15713,15712]],[[15718,15715,15716]],[[15718,15717,15715]],[[15715,15712,15714]],[[15715,15717,15712]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ea6026-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15719,15720,15721]],[[15722,15723,15724]],[[15725,15726,15727]],[[15728,15729,15730]],[[15731,15724,15726]],[[15730,15729,15721]],[[15732,15733,15734]],[[15735,15736,15730]],[[15734,15726,15724]],[[15737,15738,15726]],[[15719,15721,15729]],[[15739,15730,15721]],[[15740,15732,15734]],[[15726,15725,15731]],[[15741,15722,15725]],[[15739,15721,15722]],[[15741,15735,15730]],[[15736,15728,15730]],[[15728,15733,15742]],[[15737,15726,15734]],[[15740,15734,15724]],[[15727,15743,15736]],[[15723,15740,15724]],[[15742,15733,15732]],[[15742,15740,15744]],[[15724,15731,15722]],[[15725,15722,15731]],[[15721,15720,15722]],[[15745,15744,15723]],[[15723,15722,15720]],[[15744,15740,15723]],[[15742,15732,15740]],[[15739,15741,15730]],[[15727,15726,15738]],[[15722,15741,15739]],[[15725,15735,15741]],[[15720,15745,15723]],[[15746,15742,15744]],[[15733,15737,15734]],[[15733,15728,15738]],[[15743,15738,15728]],[[15737,15733,15738]],[[15735,15727,15736]],[[15735,15725,15727]],[[15746,15745,15719]],[[15747,15744,15745]],[[15746,15719,15729]],[[15745,15720,15719]],[[15736,15743,15728]],[[15727,15738,15743]],[[15746,15747,15745]],[[15746,15744,15747]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95eafcdb-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15748,15749,8753]],[[15748,8723,8752]],[[15750,15751,15748]],[[15748,8753,8723]],[[15750,15749,15751]],[[8756,8753,15749]],[[15750,15748,8752]],[[15751,15749,15748]],[[8756,15750,8752]],[[8756,15749,15750]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ec5c64-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15752,15753,15754]],[[15755,15756,15757]],[[15758,15759,15756]],[[15757,15760,15761]],[[15762,15763,15758]],[[15759,15754,15753]],[[15764,15765,15762]],[[15765,15754,15759]],[[15755,15758,15756]],[[15763,15765,15758]],[[15758,15765,15759]],[[15764,15760,15754]],[[15759,15753,15756]],[[15754,15760,15752]],[[15756,15766,15757]],[[15756,15753,15766]],[[15762,15765,15763]],[[15764,15754,15765]],[[15767,15768,15769]],[[15768,15753,15769]],[[15757,15752,15760]],[[15769,15753,15752]],[[15755,15757,15761]],[[15767,15769,15752]],[[15766,15768,15757]],[[15766,15753,15768]],[[15757,15767,15752]],[[15757,15768,15767]],[[15762,15755,15761]],[[15762,15758,15755]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ecd1fd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15770,15771,15772]],[[15773,15774,15775]],[[15776,15777,15778]],[[15779,15780,15781]],[[15770,15774,15771]],[[15771,15779,15781]],[[15770,15775,15774]],[[15782,15783,15774]],[[15773,15782,15774]],[[15784,15785,15786]],[[15787,15788,15782]],[[15789,15785,15784]],[[15790,15776,15778]],[[15776,15791,15777]],[[15780,15786,15781]],[[15771,15792,15772]],[[15790,15793,15794]],[[15793,15784,15779]],[[15793,15778,15784]],[[15777,15784,15778]],[[15771,15794,15779]],[[15779,15784,15780]],[[15795,15770,15772]],[[15795,15796,15770]],[[15780,15784,15786]],[[15777,15791,15789]],[[15773,15787,15782]],[[15787,15797,15788]],[[15770,15796,15798]],[[15798,15787,15773]],[[15788,15791,15776]],[[15795,15785,15791]],[[15788,15799,15791]],[[15797,15791,15799]],[[15782,15788,15776]],[[15787,15796,15797]],[[15777,15789,15784]],[[15791,15785,15789]],[[15798,15796,15787]],[[15795,15797,15796]],[[15788,15797,15799]],[[15795,15791,15797]],[[15775,15798,15773]],[[15775,15770,15798]],[[15785,15781,15786]],[[15785,15792,15781]],[[15774,15783,15794]],[[15782,15776,15790]],[[15783,15790,15794]],[[15783,15782,15790]],[[15794,15793,15779]],[[15790,15778,15793]],[[15794,15771,15774]],[[15781,15792,15771]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ecf925-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15800,15801,15802]],[[15803,15804,15805]],[[15806,15807,15801]],[[15808,15809,15804]],[[15810,15811,15807]],[[15812,15809,15808]],[[15802,15801,15807]],[[15813,15804,15803]],[[15814,15810,15801]],[[15802,15811,15815]],[[15816,15810,15817]],[[15818,15819,15810]],[[15819,15818,15805]],[[15819,15811,15810]],[[15820,15821,15814]],[[15805,15818,15821]],[[15820,15814,15822]],[[15817,15810,15814]],[[15814,15823,15822]],[[15814,15801,15823]],[[15821,15817,15814]],[[15821,15818,15816]],[[15824,15819,15805]],[[15824,15811,15819]],[[15821,15816,15817]],[[15818,15810,15816]],[[15810,15806,15801]],[[15810,15807,15806]],[[15803,15820,15822]],[[15805,15821,15820]],[[15823,15813,15803]],[[15823,15801,15813]],[[15800,15815,15812]],[[15811,15824,15812]],[[15811,15802,15807]],[[15815,15800,15802]],[[15820,15803,15805]],[[15822,15823,15803]],[[15825,15800,15808]],[[15813,15801,15800]],[[15811,15812,15815]],[[15824,15809,15812]],[[15813,15825,15804]],[[15800,15812,15808]],[[15804,15825,15808]],[[15813,15800,15825]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ed1f59-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15826,15827,15828]],[[15829,15830,15831]],[[15826,15829,15831]],[[15832,15833,15834]],[[15834,15827,15831]],[[15835,15836,15837]],[[15831,15827,15826]],[[15835,15837,15838]],[[15834,15833,15827]],[[15834,15839,15832]],[[15829,15840,15830]],[[15829,15826,15836]],[[15829,15836,15840]],[[15827,15833,15828]],[[15837,15828,15832]],[[15836,15826,15828]],[[15838,15832,15839]],[[15828,15833,15832]],[[15838,15837,15832]],[[15836,15828,15837]],[[15830,15841,15839]],[[15841,15840,15835]],[[15841,15835,15838]],[[15840,15836,15835]],[[15842,15834,15831]],[[15842,15839,15834]],[[15839,15841,15838]],[[15830,15840,15841]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ed4687-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15843,15844,15845]],[[15846,15847,15848]],[[15843,15845,15849]],[[15844,15847,15845]],[[15850,15843,15851]],[[15845,15847,15849]],[[15851,15843,15849]],[[15850,15844,15843]],[[15850,15851,15848]],[[15849,15847,15851]],[[15851,15846,15848]],[[15851,15847,15846]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b981072fa-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15217,11959,15852]],[[15217,15852,15235]],[[11959,11986,15852]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9813a745-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1ad049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15853,8126,8128]],[[15853,8128,15854]],[[15854,8128,8130]],[[8130,8128,8129]],[[8126,8127,8128]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9813ce67-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15855,15856,15857]],[[15855,15857,15858]],[[15856,15859,15857]],[[15856,15860,15859]],[[15860,15856,15861]],[[15861,15856,15862]],[[15862,15856,15863]],[[15863,15856,15864]],[[15864,15856,15865]],[[15865,15856,15866]],[[15866,15856,15867]],[[15867,15856,15868]],[[15868,15856,15869]],[[15869,15856,15870]],[[15870,15856,15871]],[[15871,15856,15872]],[[15872,15856,15873]],[[15873,15856,15874]],[[15874,15856,15875]],[[15875,15856,15876]],[[15876,15856,15877]],[[15877,15856,15878]],[[15878,15856,15879]],[[15879,15856,15880]],[[15880,15856,15881]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9816dbab-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15882,15883,15217]],[[14527,14532,15884]],[[15885,15328,15886]],[[15886,15328,15887]],[[15887,15328,15888]],[[15888,15328,15889]],[[15328,15890,15891]],[[15889,15328,15891]],[[15890,15328,15892]],[[15892,14118,15893]],[[15893,14118,15894]],[[15894,14102,15895]],[[15895,14102,15896]],[[11876,15884,15897]],[[15898,14102,15897]],[[15896,14102,15898]],[[15899,15328,15885]],[[15884,15693,14527]],[[15899,15900,15325]],[[15693,15884,15694]],[[15694,15884,11876]],[[11876,15897,11877]],[[11877,15897,15472]],[[15472,15897,15470]],[[15470,15897,14102]],[[14102,15894,14118]],[[14118,15892,15328]],[[15328,15899,15325]],[[15325,15900,11997]],[[15901,15216,14267]],[[15902,15903,15904]],[[15904,15905,15906]],[[15907,15904,15906]],[[15908,15909,15910]],[[15910,15903,15911]],[[15912,15908,15910]],[[15911,15912,15910]],[[15902,15911,15903]],[[15913,15902,15904]],[[15914,15913,15904]],[[11987,15915,15906]],[[15916,11959,15217]],[[15904,15917,15914]],[[11987,11959,15915]],[[15917,15904,15918]],[[15919,15907,15906]],[[15918,15904,15907]],[[15920,15919,15906]],[[15216,15901,15217]],[[15920,15906,15921]],[[15921,15906,15915]],[[15915,11959,15916]],[[15217,15922,15916]],[[15217,15923,15922]],[[14267,14254,15924]],[[15923,15217,15925]],[[15925,15217,15926]],[[15926,15217,15927]],[[15927,15217,15928]],[[15928,15217,15929]],[[15929,15217,15930]],[[15930,15217,15883]],[[15931,15882,15217]],[[15932,15931,15217]],[[15933,15932,15217]],[[15901,15933,15217]],[[15901,15934,15933]],[[15901,15935,15934]],[[15901,15936,15935]],[[15901,15937,15936]],[[15937,15901,15938]],[[15938,15901,15939]],[[15939,15901,15940]],[[15940,15901,15941]],[[15941,15901,15942]],[[15942,15943,15944]],[[15944,15943,15945]],[[7171,15945,7170]],[[7170,15945,15943]],[[15943,15942,15901]],[[7199,15943,15901]],[[15924,15901,14267]],[[7198,7199,15901]],[[14254,11998,15946]],[[14254,15947,15924]],[[14254,15946,15947]],[[11998,15948,15946]],[[11998,15949,15948]],[[11998,15950,15949]],[[11998,15951,15950]],[[11998,11997,15952]],[[11998,15952,15951]],[[11997,15900,15952]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9817c598-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15953,15954,15955]],[[15954,15956,15955]],[[15957,15958,15959]],[[15957,15955,15960]],[[15957,15961,15958]],[[15957,15962,15961]],[[15957,15963,15962]],[[15957,15964,15963]],[[15957,15965,15964]],[[15957,15966,15965]],[[15957,15967,15966]],[[15957,15968,15967]],[[15957,15969,15968]],[[15957,15960,15969]],[[15955,15970,15960]],[[15955,15956,15970]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981a0ff9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33bf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15971,15972,15973]],[[15971,15973,15974]],[[15972,15975,15973]],[[15976,15977,15978]],[[15979,15976,15980]],[[15981,15979,15982]],[[15983,15981,15984]],[[15985,15983,15986]],[[15987,15985,15988]],[[15989,15987,15990]],[[15991,15989,15992]],[[15993,15991,15994]],[[15995,15993,15996]],[[15997,15995,15998]],[[15997,15999,16000]],[[15997,15998,15999]],[[15995,15996,15998]],[[15977,16001,16002]],[[15993,15994,15996]],[[15991,15992,15994]],[[16001,16003,16004]],[[15989,15990,15992]],[[15987,15988,15990]],[[16003,16005,16006]],[[15985,15986,15988]],[[15983,15984,15986]],[[16005,16007,16008]],[[15981,15982,15984]],[[15979,15980,15982]],[[16007,16009,16010]],[[15976,15978,15980]],[[15977,16002,15978]],[[16009,16011,16012]],[[16001,16004,16002]],[[16003,16006,16004]],[[16011,16013,16014]],[[16005,16008,16006]],[[16007,16010,16008]],[[16013,16015,16016]],[[16009,16012,16010]],[[16011,16014,16012]],[[16015,16017,16018]],[[16013,16016,16014]],[[16015,16018,16016]],[[16017,16019,16020]],[[16017,16020,16018]],[[16019,15975,16020]],[[16019,15973,15975]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981aabab-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee28149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8743,8321,8322]],[[8743,556,16021]],[[16022,458,16023]],[[1882,10957,15847]],[[16024,7034,7033]],[[16025,8321,16026]],[[16027,16024,16028]],[[16029,16027,16030]],[[16030,16027,16031]],[[16032,16030,16033]],[[16033,16030,16034]],[[16034,16030,16035]],[[16036,16034,16035]],[[16035,16030,16037]],[[16037,16030,16038]],[[16039,16037,16038]],[[16038,16030,16031]],[[16040,16038,16041]],[[16041,16038,16042]],[[16043,16041,16042]],[[16044,16043,16042]],[[16042,16038,16031]],[[16045,16042,16031]],[[16031,16027,16028]],[[16046,16031,16047]],[[16047,16031,16028]],[[16048,16047,16028]],[[1880,7037,1881]],[[1073,1074,16049]],[[15844,16050,15847]],[[15847,16050,16051]],[[15844,16052,16050]],[[16053,16054,15844]],[[16055,15844,16056]],[[16056,16049,16057]],[[16055,16053,15844]],[[6727,16058,16059]],[[1072,1073,16049]],[[1071,1072,16049]],[[1094,1071,16049]],[[1068,1094,16049]],[[16049,1065,1068]],[[16049,1063,1065]],[[16049,15844,1063]],[[6893,6894,16024]],[[7037,16024,7033]],[[7037,7035,7036]],[[7037,7033,7035]],[[6889,6890,16024]],[[6894,7034,16024]],[[7034,6894,7038]],[[7038,6894,6895]],[[6924,6928,6889]],[[16023,460,16059]],[[6893,16024,6890]],[[6892,6893,6890]],[[6892,6890,6891]],[[16024,16060,6924]],[[6924,6889,16024]],[[6889,6887,6888]],[[6887,6889,6928]],[[6887,6929,6885]],[[16058,6980,16060]],[[6929,6887,6928]],[[6924,16060,6973]],[[6973,16060,6971]],[[6971,16060,6980]],[[6980,16058,6727]],[[6727,16059,460]],[[460,16023,459]],[[16023,458,459]],[[16022,478,458]],[[477,478,557]],[[478,555,557]],[[478,16022,555]],[[556,555,16061]],[[16061,555,16062]],[[16062,555,16063]],[[16063,555,16064]],[[16064,555,16065]],[[16065,555,16066]],[[16066,555,16067]],[[16067,555,16022]],[[8320,8321,16025]],[[8319,8320,16068]],[[8320,16069,16068]],[[8320,16025,16069]],[[16070,16071,16072]],[[16071,16073,16072]],[[16071,16069,16025]],[[16071,16025,16073]],[[16074,16075,16076]],[[16074,16077,16075]],[[16074,16073,16025]],[[16074,16025,16077]],[[16078,16079,8317]],[[16078,8317,8318]],[[16025,16026,16080]],[[16081,14727,8316]],[[8314,8311,8313]],[[8311,16082,8312]],[[8311,16083,16082]],[[8311,16084,16083]],[[8311,16085,16084]],[[16084,16085,16086]],[[16086,16085,16087]],[[16087,16085,16088]],[[16088,16085,16089]],[[16089,16085,16090]],[[16090,16091,16092]],[[14729,16081,16093]],[[14724,16094,14725]],[[14727,8315,8316]],[[16080,16026,16095]],[[8321,8743,16026]],[[16025,16079,16077]],[[16025,16081,16079]],[[16079,16081,8317]],[[8317,16081,8316]],[[16095,16096,16097]],[[16095,16098,16096]],[[16095,16099,16098]],[[16098,16100,16101]],[[16101,16100,16102]],[[16098,16099,16100]],[[16095,16103,16099]],[[16099,16104,16105]],[[16099,16103,16104]],[[16095,16106,16103]],[[16103,16107,16108]],[[16108,16107,16109]],[[16103,16106,16107]],[[16107,16106,16110]],[[16095,16111,16106]],[[16106,16111,16112]],[[16095,16113,16111]],[[16095,16026,16113]],[[16113,16026,16114]],[[8743,16021,16026]],[[16021,556,16115]],[[16021,16116,16117]],[[16117,16116,16118]],[[16021,16119,16116]],[[16116,16120,16121]],[[16121,16122,16123]],[[16121,16120,16122]],[[16122,16120,16124]],[[16124,16120,16125]],[[16116,16119,16120]],[[16120,16119,16126]],[[16126,16127,16128]],[[16126,16119,16127]],[[16127,16119,16129]],[[16021,16130,16119]],[[16119,16131,16132]],[[16119,16130,16131]],[[16131,16130,16133]],[[16021,16134,16130]],[[16021,16115,16134]],[[556,16061,16115]],[[14724,16135,16094]],[[16136,16091,16135]],[[16092,16091,16136]],[[16085,8314,16094]],[[16090,16085,16091]],[[8311,8314,16085]],[[16136,14724,16093]],[[16136,16135,14724]],[[8314,14725,16094]],[[8314,8315,14727]],[[14729,14727,16081]],[[14725,8314,14727]],[[14724,14729,16093]],[[10958,10957,1881]],[[1882,15847,16028]],[[16024,1882,16028]],[[1881,10957,1882]],[[16024,1883,1882]],[[16024,7037,1883]],[[1883,7037,1880]],[[7037,10958,1881]],[[16052,15844,16054]],[[1064,10958,7037]],[[1064,10959,10958]],[[15844,16049,16056]],[[15847,10957,10956]],[[15850,1063,15844]],[[15848,15847,10956]],[[16051,16028,15847]],[[10959,15848,10956]],[[10959,1064,15850]],[[10959,15850,15848]],[[1064,1063,15850]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981af9f2-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16137,13251,13250]],[[16137,16138,16139]],[[16139,16140,16141]],[[16141,16142,16143]],[[16143,16144,16145]],[[10245,10244,16146]],[[16145,16147,16146]],[[10245,16146,16148]],[[16148,16146,16147]],[[16147,16145,16144]],[[16144,16143,16142]],[[16142,16141,16140]],[[16140,16139,16138]],[[16138,16137,13250]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981ecb10-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12452,15809,12454]],[[15809,15824,12454]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981f8dcc-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16149,16150,16151]],[[16149,16151,16152]],[[16152,16151,16153]],[[16153,16151,16154]],[[16154,16151,16155]],[[16155,16151,16156]],[[16156,16151,16157]],[[16157,16151,16158]],[[16158,16159,16160]],[[16160,16159,16161]],[[16161,16159,16162]],[[16162,16159,16163]],[[16163,16159,16164]],[[16164,16159,16165]],[[16165,16159,16166]],[[16166,16159,16167]],[[16167,16159,16168]],[[16168,16159,16169]],[[16169,16159,16170]],[[16158,16151,16159]],[[16171,16172,16173]],[[16151,16171,16173]],[[16150,16171,16151]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9821d845-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee48d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[261,262,16174]],[[261,16174,2808]],[[2808,16175,2807]],[[16175,2808,16174]],[[16175,16174,16176]],[[262,16177,16174]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98229afb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16178,16179,16180]],[[16181,16182,16183]],[[16184,16185,16186]],[[16178,16187,16186]],[[16185,16184,16188]],[[16189,16188,16184]],[[16190,16186,16187]],[[16190,16184,16186]],[[16187,16178,16191]],[[16178,16192,16191]],[[16192,16178,16193]],[[16192,16193,16194]],[[16178,16195,16193]],[[16195,16178,16196]],[[16196,16178,16197]],[[16178,16180,16197]],[[16179,16198,16180]],[[16198,16179,16199]],[[16198,16199,16200]],[[16199,16179,16201]],[[16202,16203,16204]],[[16205,16203,16206]],[[16207,16208,16209]],[[16210,16201,12083]],[[16211,12107,16212]],[[16212,12107,16213]],[[16213,12107,16214]],[[16214,12107,16215]],[[12107,16216,16217]],[[16218,16219,12107]],[[16220,16218,12107]],[[16221,16220,12107]],[[16222,16221,12107]],[[16223,16222,16204]],[[16208,16223,16209]],[[16224,16208,16207]],[[16225,16224,16207]],[[16226,16225,16207]],[[16227,16226,16207]],[[16228,16227,16207]],[[16229,16228,16207]],[[16229,16230,16231]],[[16229,16207,16230]],[[16232,16230,16207]],[[16233,16232,16207]],[[16234,16233,16207]],[[16235,16234,16207]],[[16236,16235,16207]],[[16237,16236,16207]],[[16237,16238,16239]],[[16237,16207,16238]],[[16201,16179,12083]],[[16207,16183,16240]],[[16240,16183,16241]],[[16207,16242,16183]],[[16243,16181,16183]],[[16243,16244,16181]],[[16242,16243,16183]],[[16245,16246,16243]],[[16245,16247,16246]],[[16242,16245,16243]],[[16242,16248,16245]],[[16249,16250,16248]],[[16242,16249,16248]],[[16251,16252,16249]],[[16242,16251,16249]],[[16242,16253,16251]],[[16254,16242,16207]],[[16209,16254,16207]],[[16204,16209,16223]],[[16255,16256,16257]],[[16255,16257,16258]],[[16259,16260,16257]],[[16256,16259,16257]],[[16209,16261,16258]],[[16262,16259,16256]],[[12083,16211,16210]],[[16255,16258,16261]],[[16261,16209,16203]],[[16203,16209,16204]],[[16203,16202,16206]],[[12107,16217,16215]],[[16263,12083,14772]],[[12107,16219,16216]],[[16264,16204,16265]],[[16264,16202,16204]],[[16204,12107,12118]],[[16204,16222,12107]],[[16211,12083,12107]],[[16179,14772,12083]],[[12117,12083,16263]],[[16263,14772,14751]],[[16266,16267,16259]],[[16259,16267,16260]],[[16268,16266,16262]],[[16262,16266,16259]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9824be2e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13800,16269,16270]],[[16271,16272,16273]],[[16273,16274,16275]],[[16273,16276,16274]],[[16273,16277,16276]],[[16273,16278,16277]],[[16271,14711,16279]],[[16278,16273,16272]],[[16272,16271,16280]],[[16280,16271,16281]],[[16281,16271,16282]],[[16282,16271,16283]],[[16283,16271,16284]],[[16284,16271,16279]],[[16270,14631,14712]],[[14569,14566,16285]],[[12519,16286,16285]],[[12522,16287,16286]],[[16288,16287,12521]],[[12519,12522,16286]],[[12521,16287,12522]],[[14566,12519,16285]],[[12528,12519,14554]],[[16269,11833,16285]],[[14554,12519,14566]],[[11833,14569,16285]],[[14561,14569,11833]],[[11855,11833,16269]],[[11830,14561,11833]],[[14936,11855,16269]],[[11829,11855,14936]],[[14942,14936,16269]],[[14974,11829,14936]],[[14925,14942,16269]],[[14925,16269,12023]],[[12042,12045,16269]],[[12023,16269,12045]],[[13800,12042,16269]],[[16289,16290,12042]],[[13764,16291,16289]],[[13842,13800,16270]],[[13765,12042,13800]],[[13826,13800,13829]],[[13842,13862,13800]],[[13829,13800,13862]],[[11918,13842,16270]],[[13905,13842,11957]],[[11933,11918,16270]],[[11957,13842,11918]],[[16292,11933,16270]],[[11914,11933,16292]],[[16292,16270,14712]],[[16279,14710,16270]],[[16270,14710,14631]],[[16279,14711,14710]],[[12022,16291,13764]],[[16289,12042,13765]],[[12022,16293,16291]],[[12022,12042,16293]],[[16293,12042,16290]],[[13764,16289,13765]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98250c84-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef1df449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16028,16021,16117]],[[16028,16060,16048]],[[16047,16048,16060]],[[16046,16047,16060]],[[16031,16046,16060]],[[16045,16031,16060]],[[16042,16045,16060]],[[16044,16042,16060]],[[16043,16044,16060]],[[16041,16043,16060]],[[16040,16041,16060]],[[16038,16040,16060]],[[16039,16038,16060]],[[16037,16039,16060]],[[16035,16037,16060]],[[16036,16035,16060]],[[16034,16036,16060]],[[16033,16034,16060]],[[16032,16033,16060]],[[16030,16032,16060]],[[16029,16030,16060]],[[16027,16029,16060]],[[16027,16060,16024]],[[16028,16023,16060]],[[16028,16117,16023]],[[16022,16023,16117]],[[16066,16067,16117]],[[16065,16066,16117]],[[16064,16065,16117]],[[16062,16063,16118]],[[16061,16134,16115]],[[16061,16130,16134]],[[16061,16133,16130]],[[16061,16131,16133]],[[16061,16132,16131]],[[16061,16119,16132]],[[16061,16129,16119]],[[16061,16127,16129]],[[16061,16128,16127]],[[16061,16126,16128]],[[16061,16120,16126]],[[16061,16125,16120]],[[16061,16124,16125]],[[16061,16122,16124]],[[16061,16123,16122]],[[16061,16121,16123]],[[16061,16116,16121]],[[16061,16062,16118]],[[16061,16118,16116]],[[16063,16064,16117]],[[16063,16117,16118]],[[16067,16022,16117]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98272edb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13205,15713,13206]],[[16294,16295,13206]],[[13217,13204,13207]],[[13217,13210,13204]],[[13206,16295,13207]],[[13207,16295,13217]],[[16296,13220,13221]],[[14410,14407,16296]],[[13221,16295,16296]],[[13217,16295,13221]],[[16295,16297,14413]],[[13186,14406,14413]],[[13187,13186,14413]],[[14410,16295,14413]],[[14413,16297,13187]],[[15207,13183,13182]],[[15207,15210,13183]],[[16297,16298,15207]],[[13182,16297,15207]],[[16299,16300,15211]],[[15831,15830,16301]],[[16302,16298,16301]],[[13202,16303,16294]],[[16298,15831,16301]],[[15207,16298,15211]],[[13187,16297,13182]],[[16296,16295,14410]],[[15717,16294,13206]],[[15761,9066,9078]],[[15762,9071,16303]],[[15761,9078,15762]],[[15764,15762,16303]],[[9078,9071,15762]],[[15760,15764,16303]],[[13190,15760,16303]],[[13202,13192,16303]],[[13190,16303,13192]],[[11766,13202,16294]],[[11766,13189,13202]],[[11765,11766,16294]],[[11761,13189,11766]],[[16304,11765,16294]],[[16304,11760,11765]],[[14045,14040,16304]],[[16294,14045,16304]],[[15716,14041,16294]],[[14045,16294,14041]],[[16305,16306,15714]],[[16307,15716,15714]],[[15717,15716,16294]],[[15713,15717,13206]],[[14041,16308,14039]],[[14041,15716,16308]],[[16306,16307,15714]],[[16308,15716,16307]],[[14039,16305,15714]],[[16308,16305,14039]],[[16298,16299,15211]],[[16309,16302,16301]],[[16299,16298,16302]],[[15209,16309,16301]],[[15209,16300,16309]],[[15209,15211,16300]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9827560c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4ae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[21,16170,16159]],[[21,16159,22]],[[1,3,22]],[[22,3,21]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98295220-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1ad149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2963,2894,8564]],[[2894,8607,8564]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9829794e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6995,6964,6994]],[[6995,6962,6964]],[[6995,6706,10614]],[[6962,6995,16310]],[[6961,16311,6960]],[[6961,6962,16310]],[[16311,6961,16310]],[[16310,6995,16312]],[[16312,6995,10614]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b982f6cae-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16313,16314,16315]],[[16314,16316,16315]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98322b9f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33ca49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15772,12451,15795]],[[12451,12461,15795]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98349d40-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef135b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"sierbestrating","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[300,11066,299]],[[300,313,11066]],[[11066,313,11617]],[[11622,11066,11617]],[[11618,11622,11617]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9837d0a9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16317,16318,16319]],[[16317,16319,16320]],[[16318,16321,16319]],[[16321,16318,16322]],[[16323,16324,16325]],[[16326,16323,16327]],[[16328,16326,16329]],[[16330,16328,16331]],[[16332,16330,16333]],[[16334,16332,16335]],[[16336,16334,16337]],[[16338,16336,16339]],[[16340,16338,16341]],[[16342,16340,16343]],[[16342,16344,16345]],[[16342,16343,16344]],[[16324,16346,16347]],[[16340,16341,16343]],[[16346,16348,16349]],[[16338,16339,16341]],[[16336,16337,16339]],[[16348,16350,16351]],[[16334,16335,16337]],[[16332,16333,16335]],[[16350,16352,16351]],[[16330,16331,16333]],[[16328,16329,16331]],[[16352,16353,16354]],[[16326,16327,16329]],[[16323,16325,16327]],[[16353,16355,16356]],[[16324,16347,16325]],[[16346,16349,16347]],[[16355,16357,16358]],[[16348,16351,16349]],[[16352,16354,16351]],[[16357,16359,16360]],[[16353,16356,16354]],[[16355,16358,16356]],[[16359,16361,16362]],[[16357,16360,16358]],[[16359,16362,16360]],[[16361,16363,16364]],[[16361,16364,16362]],[[16363,16322,16364]],[[16363,16321,16322]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983909fb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[127,128,9862]],[[16365,16366,127]],[[16366,126,127]],[[16366,125,126]],[[162,163,16367]],[[16368,16365,127]],[[16369,8639,8633]],[[16365,16368,8633]],[[16370,8152,8639]],[[9861,16367,9862]],[[16371,8150,8151]],[[163,16372,16367]],[[16371,16373,8150]],[[8152,16374,8151]],[[16375,16376,16371]],[[8151,16374,16371]],[[16376,16375,16377]],[[16377,16375,16378]],[[16378,16375,16379]],[[16379,16380,16381]],[[16381,16382,16383]],[[16383,16384,16385]],[[16385,16386,16387]],[[16387,16388,16389]],[[16389,16390,16391]],[[16391,16392,16393]],[[16394,16395,16396]],[[16397,11379,16395]],[[16393,16398,16396]],[[11379,16397,11380]],[[16395,16394,16397]],[[16396,16399,16394]],[[16396,16398,16399]],[[16393,16392,16398]],[[16391,16400,16392]],[[16391,16390,16400]],[[16389,16388,16390]],[[16387,16401,16388]],[[16387,16386,16401]],[[16385,16402,16386]],[[16385,16384,16402]],[[16383,16403,16384]],[[16383,16382,16403]],[[16381,16404,16382]],[[16381,16405,16404]],[[16381,16406,16405]],[[16381,16380,16406]],[[16379,16407,16380]],[[16379,16408,16407]],[[16379,16375,16408]],[[16371,16374,16375]],[[8152,16370,16374]],[[8639,16369,16370]],[[16369,8633,16368]],[[7946,16409,16372]],[[16367,16368,9862]],[[9862,16368,127]],[[16410,15884,16409]],[[8220,15884,16410]],[[16410,16409,7930]],[[7930,16409,7926]],[[7926,16409,7946]],[[7946,16372,854]],[[16372,164,854]],[[16372,163,164]],[[140,9861,139]],[[161,162,16367]],[[160,161,16367]],[[159,160,16367]],[[158,159,16367]],[[157,158,16367]],[[156,157,16367]],[[155,156,16367]],[[154,155,16367]],[[140,142,143]],[[154,16367,153]],[[153,16367,152]],[[152,16367,151]],[[151,16367,150]],[[150,16367,149]],[[149,16367,148]],[[148,16367,147]],[[147,16367,146]],[[146,16367,145]],[[145,16367,140]],[[144,145,140]],[[143,144,140]],[[142,140,141]],[[16367,9861,140]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983a1b0d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetgangersgebied","inonderzoek":"0","lokaalid":"G0503.032e68eee28449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16411,280,16412]],[[16413,264,16414]],[[16415,7574,7585]],[[7557,16416,7545]],[[16417,16418,280]],[[16419,7549,7545]],[[16420,7688,7549]],[[16421,7689,7688]],[[16422,7675,7674]],[[16421,7680,7689]],[[16423,278,7675]],[[384,7675,278]],[[280,278,16424]],[[262,263,16425]],[[16426,263,16427]],[[16428,262,16425]],[[16425,263,16429]],[[16425,16429,16430]],[[16429,263,16426]],[[16429,16426,16431]],[[16431,16426,16432]],[[263,264,16427]],[[16433,7557,7574]],[[16427,16434,16435]],[[16427,16413,16434]],[[16427,264,16413]],[[16414,264,16436]],[[16437,16438,16439]],[[16414,16437,16439]],[[16414,16440,16437]],[[16414,16441,16440]],[[16414,16442,16441]],[[16414,16443,16442]],[[16414,16444,16443]],[[16414,16445,16444]],[[16414,16436,16445]],[[16446,265,280]],[[264,16447,16436]],[[264,265,16448]],[[16447,264,16449]],[[16449,264,16450]],[[16450,264,16451]],[[16451,264,16452]],[[16452,264,16453]],[[16453,264,16454]],[[16455,16456,264]],[[16454,264,16456]],[[16457,16455,264]],[[16448,16457,264]],[[16458,16448,265]],[[16459,16458,265]],[[16460,16459,265]],[[16446,16460,265]],[[7674,7680,16461]],[[16446,280,16462]],[[16462,280,16463]],[[16463,280,16464]],[[16464,280,16465]],[[16465,280,16466]],[[16466,280,16467]],[[16467,280,16468]],[[16468,280,16418]],[[16469,16417,280]],[[16470,16469,280]],[[7584,16415,7585]],[[280,16471,16470]],[[7584,7607,16472]],[[16471,280,16473]],[[16473,280,16474]],[[16474,280,16475]],[[16475,280,16476]],[[16476,280,16477]],[[16477,280,16411]],[[16412,280,16478]],[[16478,280,16479]],[[16479,280,16480]],[[16480,280,16481]],[[16481,280,16424]],[[278,16482,16424]],[[16422,16423,7675]],[[16482,278,16423]],[[16461,16422,7674]],[[16483,16423,16422]],[[16461,7680,16421]],[[7688,16420,16421]],[[7549,16419,16420]],[[7545,16416,16419]],[[7557,16433,16416]],[[16433,7574,16415]],[[16484,16433,16415]],[[16415,7584,16472]],[[16472,7607,16485]],[[16485,7607,7619]],[[16486,16485,7619]],[[16487,16488,7630]],[[16489,16490,7630]],[[16491,16489,7630]],[[16492,16491,7630]],[[16493,16492,7630]],[[16494,16493,7630]],[[16495,16494,7630]],[[16496,16495,7630]],[[12902,16496,7630]],[[12902,16497,16496]],[[12900,16498,16497]],[[16499,16500,16501]],[[16502,16499,16501]],[[16503,16502,16501]],[[16504,16503,16501]],[[16505,16504,16501]],[[12151,16505,16501]],[[16506,16507,16508]],[[12178,12179,16509]],[[12181,12182,16509]],[[16510,16511,12156]],[[16512,16510,16513]],[[16514,16515,16513]],[[16516,16514,16513]],[[16517,16516,16513]],[[16518,16517,16513]],[[16519,16518,16513]],[[16520,16519,16513]],[[16521,16520,16513]],[[16522,16521,16513]],[[16513,16507,16523]],[[16524,16507,16506]],[[16523,16522,16513]],[[16507,16513,16508]],[[16515,16512,16513]],[[12151,16525,16505]],[[16526,16527,16528]],[[10981,10986,16529]],[[16527,16530,16531]],[[16527,10997,16530]],[[14175,12128,12129]],[[16501,16500,16532]],[[16501,16533,16534]],[[16501,16532,16533]],[[16500,16535,16532]],[[16500,16536,16535]],[[16500,16537,16536]],[[16500,16538,16537]],[[16500,16539,16538]],[[16500,16540,16539]],[[16500,16541,16540]],[[16500,16542,16541]],[[16500,16543,16542]],[[16500,16544,16543]],[[16500,16545,16544]],[[16500,16546,16545]],[[16500,16547,16546]],[[16500,16548,16547]],[[16500,16549,16548]],[[16550,16551,16552]],[[16500,16553,16549]],[[16500,16551,16550]],[[16553,16500,16554]],[[16554,16500,16555]],[[16555,16500,16556]],[[16556,16500,16557]],[[16557,16500,16558]],[[16558,16500,16550]],[[12905,16559,16498]],[[16552,16551,16560]],[[16560,16551,16561]],[[16561,16551,16562]],[[16562,16551,16563]],[[16563,16551,16564]],[[16564,16551,16565]],[[16565,16551,12924]],[[16566,16565,12926]],[[12915,16551,16567]],[[16568,12944,16569]],[[12909,16570,16571]],[[12931,12932,16572]],[[16573,16574,12945]],[[16572,16573,12931]],[[16575,16572,12932]],[[16576,16575,12933]],[[16577,16576,12934]],[[16578,16577,12935]],[[16579,16578,12936]],[[16580,16579,12937]],[[16581,16582,12939]],[[16583,16581,12940]],[[12855,16584,16583]],[[16585,16586,16587]],[[16588,16589,16590]],[[16590,16589,7643]],[[16590,16591,16592]],[[7363,7362,16593]],[[7643,16591,16590]],[[7454,16594,7402]],[[16595,16596,16597]],[[16597,16593,16598]],[[16599,7654,16596]],[[16596,7363,16597]],[[7381,7389,16600]],[[16601,16602,16600]],[[7362,16602,16603]],[[16600,16604,16605]],[[7381,16600,16602]],[[16606,16604,7389]],[[16607,16606,16594]],[[16607,16594,16608]],[[16594,16606,7402]],[[16609,16610,16611]],[[16610,7455,16611]],[[16610,16594,7454]],[[16611,16612,16613]],[[16612,16611,7455]],[[16614,16615,16616]],[[16614,16612,7455]],[[16615,16614,7456]],[[16617,16618,16619]],[[16617,16615,16618]],[[16615,7456,16618]],[[16618,7458,7459]],[[7458,16618,7456]],[[7458,7456,7457]],[[16614,7455,7456]],[[16610,7454,7455]],[[7654,16599,16591]],[[16593,7362,16603]],[[8847,8846,9052]],[[8842,8847,9052]],[[8843,8842,2709]],[[16586,7637,16589]],[[16620,8804,8803]],[[8804,8839,2634]],[[8827,8804,16620]],[[8827,16620,8826]],[[8839,8838,2709]],[[8803,8804,8733]],[[8733,8804,2634]],[[8839,2709,2634]],[[8838,8843,2709]],[[8842,9052,2709]],[[8846,7453,7400]],[[8846,7400,9052]],[[7389,16604,16600]],[[7453,7402,7400]],[[7453,7454,7402]],[[7402,16606,7389]],[[16597,7363,16593]],[[7381,16602,7362]],[[7654,7363,16596]],[[7643,7654,16591]],[[16589,7637,7643]],[[16490,16487,7630]],[[16488,16486,7619]],[[7630,16488,7619]],[[14190,12195,12207]],[[14194,12203,12204]],[[16621,12202,12203]],[[16621,12201,12202]],[[12170,16509,16513]],[[16621,12200,12201]],[[16621,16509,12210]],[[12200,16621,12199]],[[12199,16621,12198]],[[12198,16621,12197]],[[12197,16621,12196]],[[12196,16621,12210]],[[12210,16509,12194]],[[12194,16509,12193]],[[12193,16509,12192]],[[12192,16509,12191]],[[12191,16509,12190]],[[12190,16509,12189]],[[12189,16509,12188]],[[12188,16509,12187]],[[12185,12186,16509]],[[12187,16509,12186]],[[12184,12185,16509]],[[12182,12184,16509]],[[12154,16622,16623]],[[16510,12157,16513]],[[16511,16622,12155]],[[12180,12181,16509]],[[12179,12180,16509]],[[16624,12153,16623]],[[12177,12178,16509]],[[12176,12177,16509]],[[12175,12176,16509]],[[12174,12175,16509]],[[12173,12174,16509]],[[12172,12173,16509]],[[12171,12172,16509]],[[12170,12171,16509]],[[12169,12170,16513]],[[16525,12152,16624]],[[12169,16513,12168]],[[12168,16513,12167]],[[12164,12166,16513]],[[12167,16513,12166]],[[12163,12164,16513]],[[12162,12163,16513]],[[12161,12162,16513]],[[12160,12161,16513]],[[12159,12160,16513]],[[12158,12159,16513]],[[12157,12158,16513]],[[12156,12157,16510]],[[12155,12156,16511]],[[16625,12142,16501]],[[16622,12154,12155]],[[16623,12153,12154]],[[16624,12152,12153]],[[16525,12151,12152]],[[16501,12150,12151]],[[16501,12149,12150]],[[16501,12148,12149]],[[16501,12147,12148]],[[16501,12146,12147]],[[16501,12145,12146]],[[16501,12144,12145]],[[16501,12142,12144]],[[16625,12141,12142]],[[16625,12140,12141]],[[16625,12139,12140]],[[16625,12138,12139]],[[16625,12137,12138]],[[16625,12136,12137]],[[16625,12135,12136]],[[16625,12134,12135]],[[16625,12133,12134]],[[16625,12132,12133]],[[16625,12131,12132]],[[16625,12130,12131]],[[16625,12129,12130]],[[16625,14174,12129]],[[14176,12127,12128]],[[16582,16580,12938]],[[16583,12851,12850]],[[16583,12875,12851]],[[16583,12903,12875]],[[16574,16626,12946]],[[16583,12942,12903]],[[12906,16627,16628]],[[16583,12941,12942]],[[16629,12908,16571]],[[16583,12940,12941]],[[16626,16630,12930]],[[16581,12939,12940]],[[16568,16570,12910]],[[16582,12938,12939]],[[16630,16631,12929]],[[16580,12937,12938]],[[12912,16632,16569]],[[16579,12936,12937]],[[16633,12914,16567]],[[16578,12935,12936]],[[16631,16634,12928]],[[16577,12934,12935]],[[16634,16566,12927]],[[16576,12933,12934]],[[16633,16632,12913]],[[16575,12932,12933]],[[16629,16627,12907]],[[12945,12931,16573]],[[12946,12945,16574]],[[12930,12946,16626]],[[12929,12930,16630]],[[12928,12929,16631]],[[16559,12904,16628]],[[12928,16634,12927]],[[12927,16566,12926]],[[12926,16565,12924]],[[12924,16551,12923]],[[12923,16551,12922]],[[12922,16551,12920]],[[12920,16551,12921]],[[12921,16551,12919]],[[12917,12918,16551]],[[12919,16551,12918]],[[12915,12917,16551]],[[12914,12915,16567]],[[12913,12914,16633]],[[12912,12913,16632]],[[12944,12912,16569]],[[12910,12944,16568]],[[12909,12910,16570]],[[12908,12909,16571]],[[12907,12908,16629]],[[12906,12907,16627]],[[7637,12889,7630]],[[16628,12904,12906]],[[16559,12905,12904]],[[16498,12900,12905]],[[16497,12902,12900]],[[7630,12901,12902]],[[7630,12899,12901]],[[7630,12898,12899]],[[7630,12897,12898]],[[7630,12896,12897]],[[7630,12895,12896]],[[7630,12894,12895]],[[7630,12893,12894]],[[12877,16586,16585]],[[7630,12892,12893]],[[7637,16586,12884]],[[12890,12891,7630]],[[12892,7630,12891]],[[12889,12890,7630]],[[12888,12889,7637]],[[12887,12888,7637]],[[12886,12887,7637]],[[12885,12886,7637]],[[12884,12885,7637]],[[12883,12884,16586]],[[12943,12883,16586]],[[12880,12943,16586]],[[12879,12880,16586]],[[12878,12879,16586]],[[12876,12878,16586]],[[12877,12876,16586]],[[12874,12877,16585]],[[12873,12874,16585]],[[16584,12862,16585]],[[12873,16585,12872]],[[12872,16585,12871]],[[12871,16585,12870]],[[12870,16585,12869]],[[12869,16585,12868]],[[12868,16585,12867]],[[12867,16585,12866]],[[12866,16585,12865]],[[12865,16585,12864]],[[12864,16585,12862]],[[12862,16584,12863]],[[16584,12859,12863]],[[16584,12858,12859]],[[16584,12857,12858]],[[16584,12856,12857]],[[16584,12855,12856]],[[16583,12854,12855]],[[16583,12853,12854]],[[16583,12852,12853]],[[16583,12850,12852]],[[16529,14131,16635]],[[16635,14133,14136]],[[16635,14131,14133]],[[16529,14134,14131]],[[16529,14226,14134]],[[16529,14225,14226]],[[16529,14224,14225]],[[16529,14223,14224]],[[16529,14222,14223]],[[16529,14221,14222]],[[14194,16621,12203]],[[16529,10987,14221]],[[12125,12126,14178]],[[10996,14219,14220]],[[12125,14179,12124]],[[10976,14218,14219]],[[14180,12123,12124]],[[12122,14182,12119]],[[14183,12120,12119]],[[12143,12120,14184]],[[12143,14185,12165]],[[14187,12209,12165]],[[12208,14189,12207]],[[14191,12206,12195]],[[12205,12206,14192]],[[12205,14193,12204]],[[14210,11007,14209]],[[11012,14206,14228]],[[12208,12209,14188]],[[16621,14205,14206]],[[12122,12123,14181]],[[16621,14204,14205]],[[16621,14202,14204]],[[12126,12127,14227]],[[14202,16621,14201]],[[14201,16621,14200]],[[14200,16621,14199]],[[14199,16621,14198]],[[14198,16621,14197]],[[14197,16621,14195]],[[14195,16621,14196]],[[14196,16621,14194]],[[14194,12204,14193]],[[14193,12205,14192]],[[14192,12206,14191]],[[14191,12195,14190]],[[14190,12207,14189]],[[14189,12208,14188]],[[14185,14187,12165]],[[14188,12209,14187]],[[14184,14185,12143]],[[14183,14184,12120]],[[14182,14183,12119]],[[14181,14182,12122]],[[14180,14181,12123]],[[14179,14180,12124]],[[14178,14179,12125]],[[14227,14178,12126]],[[14176,14227,12127]],[[14175,14176,12128]],[[14174,14175,12129]],[[14173,14174,16625]],[[14172,14173,16625]],[[14171,14172,16625]],[[14170,14171,16625]],[[14169,14170,16625]],[[14168,14169,16625]],[[14167,14168,16625]],[[14166,14167,16625]],[[16635,14159,16625]],[[16625,14165,14166]],[[16625,14163,14165]],[[16625,14162,14163]],[[16625,14161,14162]],[[16625,14160,14161]],[[16625,14159,14160]],[[16635,14155,14159]],[[16635,14153,14155]],[[16635,14157,14153]],[[16635,14158,14157]],[[16635,14156,14158]],[[16635,14143,14156]],[[16635,14144,14143]],[[16635,14152,14144]],[[16635,14151,14152]],[[16635,14150,14151]],[[16635,14149,14150]],[[16635,14148,14149]],[[16635,14147,14148]],[[16635,14146,14147]],[[16635,14145,14146]],[[16635,14177,14145]],[[16635,14141,14177]],[[16635,14140,14141]],[[16635,14138,14140]],[[16635,14139,14138]],[[16635,14137,14139]],[[16635,14135,14137]],[[16635,14136,14135]],[[16526,11052,16527]],[[16530,10997,10974]],[[16527,11048,10997]],[[16527,11064,11048]],[[16527,11062,11064]],[[16527,11063,11062]],[[16527,11061,11063]],[[16527,11057,11061]],[[16527,11059,11057]],[[16527,11060,11059]],[[16527,11058,11060]],[[16527,11055,11058]],[[16527,11056,11055]],[[16527,11053,11056]],[[16527,11054,11053]],[[11020,16636,16621]],[[16527,11052,11054]],[[16526,16636,11047]],[[11052,16526,11049]],[[11049,16526,11051]],[[11051,16526,11050]],[[11050,16526,11035]],[[11035,16526,11046]],[[11046,16526,11047]],[[11047,16636,11045]],[[11045,16636,11044]],[[11044,16636,11043]],[[11043,16636,11041]],[[11041,16636,11042]],[[11040,11039,16636]],[[11042,16636,11039]],[[11036,11040,16636]],[[11038,11036,16636]],[[11037,11038,16636]],[[11033,11037,16636]],[[11034,11033,16636]],[[11029,11034,16636]],[[11031,11029,16636]],[[11032,11031,16636]],[[14216,11002,14215]],[[11030,11032,16636]],[[11001,14214,14215]],[[11026,11030,16636]],[[14213,10999,14212]],[[11028,11026,16636]],[[11006,14211,14212]],[[11027,11028,16636]],[[14210,14211,11005]],[[11022,11027,16636]],[[14209,11008,14208]],[[14206,11012,16621]],[[11009,14207,14208]],[[16636,11025,11022]],[[14228,14207,11011]],[[16636,11024,11025]],[[14213,14214,11003]],[[16636,11023,11024]],[[16636,11020,11023]],[[14216,14217,11000]],[[16621,11021,11020]],[[16621,11018,11021]],[[16621,11019,11018]],[[14217,14218,10998]],[[11019,16621,11016]],[[11016,16621,11017]],[[11017,16621,11015]],[[11015,16621,11013]],[[11013,16621,11014]],[[11014,16621,11004]],[[11004,16621,11010]],[[16621,11012,11010]],[[10977,16529,16530]],[[14228,11011,11012]],[[14220,14221,10987]],[[11011,14207,11009]],[[11009,14208,11008]],[[11008,14209,11007]],[[11007,14210,11005]],[[11005,14211,11006]],[[11006,14212,10999]],[[10999,14213,11003]],[[11003,14214,11001]],[[11001,14215,11002]],[[11002,14216,11000]],[[11000,14217,10998]],[[10998,14218,10976]],[[10976,14219,10996]],[[10996,14220,10987]],[[10987,16529,10993]],[[10993,16529,10995]],[[10995,16529,10994]],[[10994,16529,10988]],[[10988,16529,10992]],[[10992,16529,10990]],[[10990,16529,10991]],[[10991,16529,10989]],[[10989,16529,10984]],[[10984,16529,10985]],[[10985,16529,10986]],[[10982,10981,16529]],[[10983,10982,16529]],[[10980,10983,16529]],[[10977,10980,16529]],[[10979,10977,16530]],[[10978,10979,16530]],[[10975,10978,16530]],[[10973,10975,16530]],[[10974,10973,16530]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983e1262-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33cc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11998,14254,16637]],[[11998,16637,12018]],[[14254,14273,16637]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983ed62d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32dc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16638,16639,16640]],[[16638,16640,16641]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983f98fe-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef160449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"onverhard","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7971,8219,16410]],[[7970,16642,8543]],[[8220,16410,8218]],[[8218,16410,8219]],[[8219,7971,7972]],[[16643,7971,16410]],[[16643,16642,7970]],[[7970,7971,16643]],[[7969,7970,7967]],[[7967,7970,8543]],[[7968,7967,8543]],[[8544,16644,16645]],[[8543,16644,8544]],[[8543,16642,16644]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984083fa-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16646,6952,6953]],[[16646,6953,16647]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984231bb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef136949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"sierbestrating","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2352,7592,2744]],[[2352,2354,7573]],[[7592,2352,7593]],[[7593,2352,7598]],[[7598,2352,7573]],[[7573,2354,7570]],[[7570,2354,7571]],[[7571,2354,7585]],[[7574,7571,7585]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984231ca-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1d149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16648,15792,16649]],[[14285,16649,15792]],[[14418,14433,16650]],[[16651,16649,14285]],[[16652,16653,16650]],[[16654,16652,15903]],[[16655,16654,15903]],[[16656,16655,15903]],[[16657,16656,15903]],[[16658,16659,15903]],[[16660,16658,15903]],[[16661,16660,15903]],[[16662,16661,15903]],[[16663,16662,15903]],[[16664,16663,15903]],[[16665,16664,15910]],[[16057,16665,15910]],[[16664,15903,15910]],[[16659,16657,15903]],[[15903,16652,16650]],[[16650,16653,14418]],[[16651,14419,16653]],[[16653,14419,14418]],[[16651,14290,14419]],[[16312,12451,16648]],[[16312,10614,15809]],[[14290,16651,14285]],[[15792,16648,15772]],[[15772,16648,12451]],[[12451,16312,12452]],[[12452,16312,15809]],[[15809,10614,10613]],[[15804,15809,10613]],[[11769,15421,11618]],[[11785,11769,11618]],[[11619,11785,11618]],[[13131,13125,16666]],[[13041,13131,16176]],[[16667,16668,16669]],[[16670,16671,16177]],[[1027,16672,1033]],[[1033,16672,16177]],[[16673,16674,16675]],[[16676,16677,16669]],[[16678,16679,16670]],[[16671,16670,16679]],[[16680,16681,16669]],[[16678,16670,16682]],[[16683,16684,16685]],[[16686,16687,16688]],[[16689,16690,16669]],[[16691,16692,16693]],[[16674,16694,16675]],[[16695,16696,16693]],[[16697,16669,16696]],[[16698,16699,16700]],[[16699,16669,16701]],[[16702,16698,16700]],[[16700,16699,16701]],[[16694,16703,16704]],[[16701,16669,16705]],[[16706,16673,16675]],[[16705,16669,16690]],[[16707,16673,16706]],[[16707,16684,16683]],[[16687,16708,16685]],[[16689,16669,16681]],[[16709,16682,16710]],[[16680,16669,16677]],[[16671,1033,16177]],[[16676,16669,16668]],[[16667,16669,16711]],[[16711,16669,16712]],[[16712,16669,16697]],[[16697,16696,16713]],[[16713,16696,16714]],[[16714,16696,16715]],[[16715,16696,16716]],[[16716,16696,16717]],[[16718,16716,16719]],[[16720,16718,16721]],[[16722,16720,16723]],[[16724,16722,16725]],[[16726,16724,16727]],[[16728,16726,16729]],[[16730,16728,16731]],[[16732,16730,16733]],[[16734,16732,16735]],[[16736,16734,16737]],[[16738,16736,16739]],[[16740,16738,16741]],[[16739,16741,16738]],[[16742,16740,16741]],[[16737,16739,16736]],[[16735,16737,16734]],[[16733,16735,16732]],[[16731,16733,16730]],[[16729,16731,16728]],[[16727,16729,16726]],[[16725,16727,16724]],[[16723,16725,16722]],[[16721,16723,16720]],[[16719,16721,16718]],[[16717,16719,16716]],[[16743,16744,16693]],[[16696,16745,16717]],[[16696,16695,16745]],[[16746,16747,16704]],[[16693,16748,16695]],[[16743,16747,16746]],[[16748,16693,16749]],[[16749,16693,16750]],[[16750,16693,16751]],[[16751,16693,16692]],[[16752,16691,16693]],[[16744,16752,16693]],[[16746,16744,16743]],[[16704,16703,16746]],[[16694,16674,16703]],[[16672,13042,16177]],[[16673,16753,16674]],[[16673,16707,16683]],[[16683,16685,16708]],[[16708,16687,16686]],[[16754,16708,16686]],[[16754,16755,16756]],[[16709,16710,16688]],[[16757,16756,16755]],[[16710,16686,16688]],[[16755,16754,16686]],[[13042,13041,16174]],[[16710,16682,16670]],[[13042,16174,16177]],[[13041,16176,16174]],[[13131,16666,16176]],[[15421,15420,11622]],[[13125,11619,16666]],[[16666,11619,11620]],[[13125,11785,11619]],[[15420,15534,10615]],[[15421,11622,11618]],[[15534,15557,10615]],[[15420,10615,11622]],[[15557,10613,10615]],[[15557,15804,10613]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9845daba-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6857,6858,16758]],[[6857,16758,6820]],[[6820,6818,6819]],[[6820,16759,6818]],[[6820,16758,16759]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98462904-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb0349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16760,16761,16762]],[[16762,16763,16764]],[[16760,16762,16764]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9847615f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16765,16766,16767]],[[16766,16768,16767]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98484b4f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15470,14102,14125]],[[15470,14125,15459]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98490f1a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15906,15905,11987]],[[15905,11988,11987]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984abcea-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12536,16367,12531]],[[14448,11901,16370]],[[12536,16368,16367]],[[16169,16170,24]],[[16375,25,16408]],[[16408,25,16407]],[[16407,25,16380]],[[16380,25,16406]],[[16769,16404,16405]],[[16769,16382,16404]],[[16406,16769,16405]],[[16770,16382,16769]],[[16769,16406,25]],[[25,16375,24]],[[24,16375,16162]],[[16168,16169,24]],[[16167,16168,24]],[[16166,16167,24]],[[16165,16166,24]],[[16164,16165,24]],[[16163,16164,24]],[[16162,16163,24]],[[16161,16162,16375]],[[16160,16161,16375]],[[16158,16160,16375]],[[16157,16158,16375]],[[16156,16157,16375]],[[16374,16150,16375]],[[16375,16155,16156]],[[16375,16154,16155]],[[14448,16370,16369]],[[16375,16153,16154]],[[16374,16370,11900]],[[16153,16375,16152]],[[16152,16375,16149]],[[16149,16375,16150]],[[16150,16374,16171]],[[16374,16172,16171]],[[16374,11900,16172]],[[16368,15729,16369]],[[16370,11901,11900]],[[16367,16372,14738]],[[16409,15292,16372]],[[16369,14442,14448]],[[16369,15729,14442]],[[16409,15884,14532]],[[15729,16368,15746]],[[15746,16368,12536]],[[12531,16367,14731]],[[14731,16367,14732]],[[14732,16367,14746]],[[14746,16367,14738]],[[14738,16372,14237]],[[14237,16372,14240]],[[14240,16372,15291]],[[15291,16372,15292]],[[15292,16409,15237]],[[15237,16409,15238]],[[15238,16409,14532]],[[6,5,24]],[[24,5,25]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984eb436-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16771,16772,16773]],[[16771,16773,16774]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98525e11-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15694,11876,15711]],[[11876,11888,15711]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98554433-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16775,16776,16777]],[[16776,16778,16777]],[[16776,16761,16778]],[[16778,16761,16760]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98556b73-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16779,16780,16781]],[[16781,16780,16782]],[[16779,16783,16780]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9856f206-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16784,16785,16786]],[[16784,16786,16787]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b985fcb64-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0ac049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[211,313,210]],[[210,313,209]],[[211,11617,313]],[[211,212,11616]],[[11617,211,11616]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f4dc812-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[1026,1035,1036]],[[16788,1026,1036]],[[1048,16788,1049]],[[1049,16788,1040]],[[1040,16788,1041]],[[1041,16788,1036]],[[1026,1034,1035]],[[1026,1028,1034]],[[16788,16789,1026]],[[1026,16789,1027]],[[13077,16790,1048]],[[16791,13042,16672]],[[1048,16790,16788]],[[13077,13042,16791]],[[16789,16791,16672]],[[16790,13077,16791]],[[1027,16789,16672]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f4f9d10-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14527,15693,15710]],[[14527,15710,14549]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f5123ac-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe3e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16792,16793,3225]],[[3277,16794,3344]],[[3344,16795,3272]],[[3272,16796,3271]],[[3271,16797,3269]],[[3269,16798,3267]],[[3267,16799,3268]],[[3268,16800,3265]],[[3265,16801,3264]],[[3264,16802,3350]],[[3350,16803,3262]],[[16793,16804,3247]],[[3225,16793,3247]],[[3247,16804,3252]],[[3262,16792,3225]],[[3276,16805,3277]],[[16806,3366,3337]],[[3262,16803,16792]],[[3276,3366,16807]],[[16801,16802,3264]],[[16803,3350,16802]],[[3333,16808,3337]],[[16809,3329,3369]],[[3265,16800,16801]],[[3333,3329,16810]],[[16798,16799,3267]],[[16800,3268,16799]],[[3381,16811,3369]],[[16812,3322,3319]],[[3269,16797,16798]],[[3381,3322,16813]],[[16795,16796,3272]],[[16797,3271,16796]],[[3286,16814,3319]],[[16815,3285,3290]],[[3344,16794,16795]],[[3286,3285,16816]],[[16807,16805,3276]],[[16794,3277,16805]],[[3289,16817,3290]],[[3366,16806,16807]],[[3337,16808,16806]],[[3333,16810,16808]],[[16818,3292,16819]],[[3329,16809,16810]],[[3289,3292,16818]],[[16809,3369,16811]],[[16811,3381,16813]],[[16813,3322,16812]],[[16812,3319,16814]],[[16814,3286,16816]],[[16816,3285,16815]],[[16815,3290,16817]],[[16817,3289,16818]],[[16819,3292,3295]],[[16820,16819,3295]],[[16821,16820,3295]],[[16822,16821,3295]],[[16823,16822,3295]],[[16824,16823,3295]],[[16825,16824,3295]],[[16825,3294,16826]],[[16825,3295,3294]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f531ed5-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef16be49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[10028,10012,7279]],[[10028,7279,16827]],[[7278,7279,10012]],[[16828,10179,16827]],[[16827,10179,10028]],[[16828,1173,10179]],[[10205,10179,8554]],[[1161,10179,1173]],[[10205,1124,8545]],[[8534,1123,10205]],[[1124,10205,1123]],[[8534,10205,1230]],[[1230,10205,1112]],[[1217,8526,10205]],[[1112,10205,8526]],[[1218,1217,10205]],[[1203,8554,10179]],[[1218,10205,8554]],[[8562,1203,10179]],[[1202,8554,1203]],[[1188,8562,10179]],[[1146,1188,10179]],[[1161,8412,10179]],[[1146,10179,8412]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f5409d1-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7194,7198,15924]],[[7198,15901,15924]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f556936-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16829,16830,16831]],[[16829,16832,16833]],[[16833,16834,16835]],[[16833,16836,16834]],[[16833,16837,16836]],[[16833,16832,16837]],[[16829,16838,16832]],[[16829,16839,16838]],[[16829,16840,16839]],[[16829,16841,16840]],[[16829,16842,16841]],[[16829,16843,16842]],[[16829,16844,16843]],[[16829,16845,16844]],[[16829,16846,16845]],[[16829,16847,16846]],[[16829,16848,16847]],[[16829,16849,16848]],[[16829,16850,16849]],[[16829,16851,16850]],[[16829,16852,16851]],[[16829,16853,16852]],[[16829,16831,16853]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f565329-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6958,6955,6957]],[[6957,6955,6956]],[[6958,6959,16854]],[[6955,16855,6954]],[[6955,6958,16855]],[[16855,6958,16854]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f56c89e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14126,14118,15328]],[[14126,15328,15332]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f56efd5-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32dd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16856,16857,16858]],[[16857,16859,16858]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f576553-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15804,15557,15805]],[[15557,15549,15805]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f615017-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eef5fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8136,8137,16860]],[[16861,8136,11378]],[[8134,8135,8133]],[[11379,11378,8136]],[[16862,11379,8136]],[[16863,16862,8136]],[[16864,16863,8136]],[[16865,16864,8136]],[[16866,16865,8136]],[[16860,16866,8136]],[[16804,8135,16861]],[[16861,8135,8136]],[[16867,16793,16868]],[[8135,16804,16867]],[[8135,16867,8133]],[[16804,16793,16867]],[[8122,16868,8121]],[[8125,16868,8122]],[[8124,8125,8122]],[[8124,8122,8123]],[[16868,16793,8121]],[[8117,16793,8118]],[[8120,8121,8117]],[[8120,8117,8119]],[[8121,16793,8117]],[[11605,16793,11604]],[[8159,8118,11606]],[[8118,11605,11606]],[[8118,16793,11605]],[[11601,16793,11600]],[[11603,11604,11602]],[[11604,11601,11602]],[[11604,16793,11601]],[[11600,16793,15289]],[[11599,11600,11597]],[[11598,11599,11597]],[[11600,15289,11597]],[[15288,16793,16792]],[[11595,11596,11593]],[[15266,15264,11593]],[[11594,11595,11593]],[[15264,15263,11593]],[[11591,11592,11590]],[[11590,11592,11589]],[[16795,11588,11589]],[[11587,11588,11586]],[[11586,11588,11585]],[[16808,11584,11585]],[[11585,11588,16807]],[[11581,11583,11584]],[[16813,11581,11584]],[[11582,11583,11581]],[[16814,11580,11581]],[[11579,11580,11577]],[[16815,11577,11580]],[[11578,11579,11577]],[[16818,11576,11577]],[[11575,11576,11573]],[[16818,11573,11576]],[[11574,11575,11573]],[[16818,11572,11573]],[[11571,11572,2825]],[[2825,11572,16818]],[[2826,2825,16818]],[[16819,2834,2830]],[[2830,2826,16819]],[[16819,181,182]],[[182,2834,16819]],[[180,181,179]],[[179,181,176]],[[176,181,16869]],[[175,176,16869]],[[16869,181,16870]],[[16870,181,16826]],[[16826,181,16825]],[[16825,181,16824]],[[16824,181,16823]],[[16823,181,16822]],[[16822,181,16821]],[[16821,181,16820]],[[16820,181,16819]],[[16819,2826,16818]],[[16818,11577,16817]],[[16817,11577,16815]],[[16815,11580,16816]],[[16816,11580,16814]],[[16814,11581,16812]],[[16812,11581,16813]],[[16813,11584,16811]],[[16811,11584,16809]],[[16809,11584,16810]],[[16810,11584,16808]],[[16808,11585,16806]],[[16806,11585,16807]],[[16807,11588,16805]],[[16805,11588,16794]],[[16794,11588,16795]],[[16795,11589,15263]],[[15263,11589,11592]],[[15263,16797,16796]],[[15263,16798,16797]],[[15269,16799,16798]],[[15289,11596,11597]],[[15288,15289,16793]],[[16803,15288,16792]],[[16801,16800,15269]],[[15269,16800,16799]],[[16802,15288,16803]],[[16802,16801,15275]],[[15288,16802,15278]],[[15278,16802,15274]],[[15274,16802,15275]],[[15275,16801,15273]],[[15273,16801,15271]],[[15271,16801,15272]],[[16801,15269,15272]],[[16796,16795,15263]],[[16798,15263,15269]],[[11592,11593,15263]],[[11596,15287,11593]],[[15285,15266,11593]],[[15287,15285,11593]],[[15283,15287,11596]],[[15282,15283,11596]],[[15289,15282,11596]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f68f153-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee28049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12832,7096,7099]],[[6655,6678,6679]],[[16871,16317,6755]],[[16872,15991,15993]],[[6749,6663,6760]],[[6758,6759,6756]],[[16872,15976,15979]],[[6757,6758,6756]],[[6754,6755,16317]],[[16872,16017,16015]],[[7223,7224,7221]],[[7222,7223,7221]],[[6754,16317,7226]],[[7226,16317,7224]],[[7147,7148,7146]],[[7146,7148,7145]],[[16317,7138,7221]],[[7143,7144,7141]],[[7142,7143,7141]],[[7148,7138,16317]],[[7101,7103,7100]],[[16320,12842,7100]],[[7098,7099,7096]],[[7097,7098,7096]],[[12842,7099,7100]],[[12832,7094,7096]],[[7095,7096,7094]],[[16873,7093,7094]],[[7092,7093,7091]],[[7091,7093,7090]],[[7090,7093,16873]],[[7089,7090,16873]],[[16873,7094,16874]],[[15909,16873,16875]],[[16875,16873,16874]],[[16874,7094,16876]],[[16876,7094,16877]],[[16877,7094,16878]],[[16878,7094,16879]],[[16879,7094,16880]],[[16880,7094,16881]],[[16881,7094,16882]],[[16882,7094,16883]],[[16883,7094,16884]],[[16884,7094,16885]],[[16885,7094,16886]],[[16886,7094,16887]],[[16887,7094,16888]],[[16888,7094,16889]],[[16889,7094,12832]],[[16890,16889,12832]],[[505,15971,6672]],[[16891,16890,12832]],[[12841,12842,16320]],[[16342,16345,12841]],[[16892,16871,6756]],[[16340,16342,12841]],[[16340,12841,16338]],[[7224,16317,7221]],[[16336,16338,12841]],[[16336,12841,16334]],[[7148,16317,7145]],[[16334,12841,16332]],[[16354,16356,16351]],[[16330,16332,12841]],[[16356,16358,16351]],[[16328,16330,12841]],[[16326,16328,12841]],[[16358,16322,16341]],[[16323,16326,12841]],[[16324,16323,12841]],[[16360,16322,16358]],[[16346,16324,12841]],[[16348,16346,12841]],[[16362,16322,16360]],[[16350,16348,12841]],[[16352,16350,12841]],[[16364,16322,16362]],[[16353,16352,12841]],[[16355,16353,12841]],[[16322,16318,16344]],[[16357,16355,12841]],[[16359,16357,12841]],[[16318,16317,16344]],[[16361,16359,12841]],[[16363,16361,12841]],[[16321,16363,12841]],[[7103,16320,7100]],[[16319,16321,12841]],[[16872,15995,15997]],[[16317,7144,7145]],[[16317,16320,7144]],[[7144,16320,7141]],[[7141,16320,7103]],[[16351,16358,16349]],[[16349,16358,16341]],[[16347,16349,16341]],[[16325,16347,16327]],[[16327,16347,16329]],[[16329,16347,16335]],[[16331,16329,16335]],[[16333,16331,16335]],[[16335,16347,16341]],[[16337,16335,16339]],[[16339,16335,16341]],[[16341,16322,16344]],[[16343,16341,16344]],[[15974,16892,6756]],[[15997,16000,16872]],[[15995,16872,15993]],[[15971,6679,6672]],[[16872,15989,15991]],[[6655,6679,15971]],[[16008,16010,16006]],[[15989,16872,15987]],[[16010,16012,16004]],[[15987,16872,15985]],[[15985,16872,15983]],[[16012,16018,15996]],[[15983,16872,15981]],[[15981,16872,15979]],[[16014,16018,16012]],[[16872,15977,15976]],[[16872,16001,15977]],[[16016,16018,16014]],[[16872,16003,16001]],[[16872,16005,16003]],[[16018,15972,15999]],[[16872,16007,16005]],[[16872,16009,16007]],[[16020,15975,16018]],[[16872,16011,16009]],[[16872,16013,16011]],[[16872,16015,16013]],[[16018,15975,15972]],[[16872,16019,16017]],[[16872,16892,15973]],[[16774,15972,15971]],[[6759,15974,6756]],[[6759,6760,15974]],[[8391,8392,16893]],[[15971,15974,6655]],[[6655,15974,6663]],[[6663,15974,6760]],[[16006,16010,16004]],[[16004,16012,15996]],[[16002,16004,15980]],[[15978,16002,15980]],[[15980,16004,15984]],[[15982,15980,15984]],[[15984,16004,15996]],[[15986,15984,15990]],[[15988,15986,15990]],[[15990,15984,15996]],[[15992,15990,15994]],[[15994,15990,15996]],[[15996,16018,15999]],[[15998,15996,15999]],[[16894,16893,15881]],[[16773,15999,15972]],[[16895,16896,16897]],[[16897,16896,16898]],[[16898,16896,16899]],[[16900,16898,16899]],[[16901,16900,16899]],[[16899,16896,16902]],[[16903,16899,16904]],[[16904,16899,16905]],[[16905,16899,16902]],[[16906,16905,16907]],[[16907,16905,16908]],[[16909,16907,16908]],[[16908,16905,16902]],[[16910,16908,16911]],[[16911,16908,16912]],[[16912,16908,16902]],[[16913,16912,16902]],[[16914,16913,16902]],[[16902,16896,16915]],[[16916,16902,16917]],[[16917,16902,16915]],[[16918,16917,16915]],[[16915,16896,16772]],[[8388,8391,16893]],[[16894,16919,16920]],[[16921,16919,16894]],[[16922,16921,16923]],[[16923,16921,16924]],[[16925,16923,16926]],[[16927,16925,16926]],[[16926,16923,16924]],[[16928,16926,16929]],[[16929,16926,16930]],[[16931,16929,16930]],[[16930,16926,16924]],[[16932,16930,16933]],[[16933,16930,16924]],[[16934,16933,16935]],[[16935,16933,16936]],[[16937,16935,16936]],[[16936,16933,16938]],[[16939,16936,16938]],[[16938,16933,16924]],[[16940,16938,16924]],[[16924,16921,16894]],[[16941,16942,15858]],[[16943,15858,16942]],[[15880,15881,15878]],[[15879,15880,15878]],[[15878,15881,15876]],[[15877,15878,15876]],[[15876,15881,15874]],[[15875,15876,15874]],[[15874,15881,15860]],[[15873,15874,15872]],[[15872,15874,15871]],[[15871,15874,15870]],[[15870,15874,15869]],[[15869,15874,15860]],[[15868,15869,15865]],[[15867,15868,15865]],[[15866,15867,15865]],[[15865,15869,15864]],[[15864,15869,15860]],[[15863,15864,15860]],[[15862,15863,15860]],[[15861,15862,15860]],[[15860,15881,15857]],[[15859,15860,15857]],[[15881,16944,15857]],[[16944,15881,16893]],[[8272,15855,15858]],[[14714,15856,15855]],[[14721,15856,14714]],[[14717,15855,8273]],[[16945,16946,14719]],[[16947,16945,14717]],[[16948,16947,14717]],[[16949,16948,8274]],[[16950,16949,16951]],[[16952,16950,16951]],[[16953,16952,16951]],[[16954,16953,16951]],[[16951,16949,8274]],[[8275,16951,8274]],[[8274,14717,8273]],[[8273,15855,8272]],[[8272,15858,16955]],[[8271,8272,16955]],[[16956,15858,16943]],[[16957,16955,16958]],[[16955,16956,16958]],[[16955,15858,16956]],[[16959,8392,8395]],[[16960,16943,16961]],[[16943,16942,16961]],[[8387,8388,16893]],[[16944,15858,15857]],[[16959,8396,16962]],[[16959,8395,8396]],[[8394,8395,8393]],[[8395,8392,8393]],[[1389,8384,16894]],[[8390,8391,8389]],[[8391,8388,8389]],[[16893,16894,8387]],[[8384,8385,8386]],[[8386,8387,8384]],[[16894,8384,8387]],[[16963,16894,16964]],[[16965,16963,16966]],[[16894,1386,1389]],[[1391,1387,16967]],[[1386,16965,1387]],[[16968,16969,16920]],[[16963,16965,1386]],[[16965,16967,1387]],[[1386,16894,16963]],[[16969,16964,16894]],[[16969,10652,16964]],[[16920,16969,16894]],[[10647,10652,16969]],[[650,651,16970]],[[16968,650,16970]],[[16920,648,16968]],[[648,649,650]],[[16920,624,648]],[[16968,648,650]],[[16920,16971,630]],[[16771,16915,16772]],[[624,16920,630]],[[520,16971,519]],[[630,520,514]],[[630,16971,520]],[[506,518,519]],[[15971,506,16774]],[[493,518,506]],[[505,506,15971]],[[16942,16941,16962]],[[16893,8392,16959]],[[16959,16962,16941]],[[16941,15858,16944]],[[14717,14714,15855]],[[16948,14717,8274]],[[16945,14719,14717]],[[16946,16972,14719]],[[16972,14721,14719]],[[16972,15856,14721]],[[16973,12831,16345]],[[16973,16891,12832]],[[12831,16973,12832]],[[16319,12841,16320]],[[12832,7099,12842]],[[12831,12841,16345]],[[16344,16974,16000]],[[16344,16317,16871]],[[6756,16871,6755]],[[16974,16344,16871]],[[15973,16892,15974]],[[15973,16019,16872]],[[16974,16872,16000]],[[16896,15999,16773]],[[16774,16773,15972]],[[16772,16896,16773]],[[519,16774,506]],[[519,16771,16774]],[[16971,16771,519]],[[16971,16915,16771]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6bb041-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1acf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8131,8132,8133]],[[16867,8131,8133]],[[15854,8130,8131]],[[16867,15854,8131]],[[16868,15853,16867]],[[15853,8125,8126]],[[16867,15853,15854]],[[16868,8125,15853]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6bb053-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16781,16782,16975]],[[16782,16976,16975]],[[16976,16782,16977]],[[16977,16782,16978]],[[16978,16782,16979]],[[16980,16978,16979]],[[16981,16980,16979]],[[16982,16981,16979]],[[16983,16982,16979]],[[16984,16983,16979]],[[16985,16984,16979]],[[16986,16985,16979]],[[16987,16986,16979]],[[16988,16987,16989]],[[16990,16988,16989]],[[16991,16990,16989]],[[16992,16991,16989]],[[16993,16992,16989]],[[16993,16989,16954]],[[16987,16979,16989]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6c25cb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16994,16995,14274]],[[3012,15234,16995]],[[14267,16994,14274]],[[14267,16996,16994]],[[3014,15216,15234]],[[16997,16998,3015]],[[16996,14267,3015]],[[16994,16997,16995]],[[16997,3013,16995]],[[16997,3015,3013]],[[16996,3015,16998]],[[14267,15216,3015]],[[3012,3014,15234]],[[3015,15216,3014]],[[3013,3012,16995]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6cc165-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16920,16919,16971]],[[16919,16915,16971]],[[16919,16918,16915]],[[16918,16919,16917]],[[16906,16907,16932]],[[16905,16906,16933]],[[16904,16905,16934]],[[16903,16904,16935]],[[16899,16903,16937]],[[16901,16899,16936]],[[16900,16901,16939]],[[16898,16900,16938]],[[16897,16898,16940]],[[16895,16897,16924]],[[16895,16894,16896]],[[16895,16924,16894]],[[16907,16909,16930]],[[16897,16940,16924]],[[16898,16938,16940]],[[16909,16908,16931]],[[16900,16939,16938]],[[16901,16936,16939]],[[16908,16910,16929]],[[16899,16937,16936]],[[16903,16935,16937]],[[16910,16911,16928]],[[16904,16934,16935]],[[16905,16933,16934]],[[16911,16912,16926]],[[16906,16932,16933]],[[16907,16930,16932]],[[16912,16913,16927]],[[16909,16931,16930]],[[16908,16929,16931]],[[16913,16914,16925]],[[16910,16928,16929]],[[16911,16926,16928]],[[16914,16902,16923]],[[16912,16927,16926]],[[16913,16925,16927]],[[16902,16916,16922]],[[16914,16923,16925]],[[16902,16922,16923]],[[16916,16917,16921]],[[16916,16921,16922]],[[16917,16919,16921]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6e9666-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33cb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14419,14290,14439]],[[14290,14300,14439]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6e966f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16305,16308,16307]],[[16305,16307,16306]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6fcec4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16999,17000,17001]],[[16999,17002,17003]],[[17004,17005,17006]],[[17006,17005,17007]],[[17007,17008,17009]],[[17001,17000,17010]],[[16999,17003,17000]],[[17009,17011,17010]],[[17012,17005,17004]],[[17012,17013,17005]],[[17001,17010,17011]],[[17011,17009,17014]],[[17014,17009,17015]],[[17015,17009,17016]],[[17016,17009,17008]],[[17008,17007,17017]],[[17017,17007,17005]],[[17005,17013,17018]],[[17018,17013,16783]],[[16779,17018,16783]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f70e0dc-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16789,16788,16790]],[[16789,16790,16791]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f71cae4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4b449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[588,17005,17018]],[[7807,17017,17005]],[[7807,17008,17017]],[[175,16869,17019]],[[12405,17019,17002]],[[12406,16999,17001]],[[17011,17014,7809]],[[17019,12405,7833]],[[17014,17015,7809]],[[17015,17016,7809]],[[12394,17002,16999]],[[17011,1796,17001]],[[174,175,7833]],[[174,7833,1840]],[[175,17019,7833]],[[12394,12405,17002]],[[7832,7833,12405]],[[12394,16999,12427]],[[12427,16999,12355]],[[12355,16999,12324]],[[12324,16999,12318]],[[12318,16999,12319]],[[12319,16999,12323]],[[12323,16999,12321]],[[12321,16999,12322]],[[12406,12429,16999]],[[12322,16999,12429]],[[17016,17008,7807]],[[12406,17001,7823]],[[7821,12406,7823]],[[7823,17001,1795]],[[1795,17001,1796]],[[7807,7809,17016]],[[1796,17011,7809]],[[8012,7807,17005]],[[8011,8012,17005]],[[8006,8011,17005]],[[3029,8006,17005]],[[8207,3029,17005]],[[8207,3030,3029]],[[3016,8207,17005]],[[8208,3030,8207]],[[3017,3016,17005]],[[3017,17005,8036]],[[8035,8036,17005]],[[8025,3017,8036]],[[8032,8035,17005]],[[8034,8035,8032]],[[8031,8032,17005]],[[8033,8034,8032]],[[8028,8031,17005]],[[8030,8031,8028]],[[603,8028,17005]],[[8029,8030,8028]],[[611,603,17005]],[[611,614,603]],[[613,614,612]],[[576,611,17005]],[[612,614,611]],[[586,588,17018]],[[576,17005,588]],[[587,588,586]],[[586,17018,703]],[[703,17018,702]],[[702,17018,678]],[[701,702,670]],[[670,702,683]],[[8250,17018,8248]],[[682,683,681]],[[683,680,681]],[[683,702,680]],[[680,678,679]],[[680,702,678]],[[678,17018,677]],[[677,17018,8253]],[[8252,8253,8251]],[[8253,8250,8251]],[[8253,17018,8250]],[[8248,17018,8281]],[[8281,17018,8279]],[[8280,8281,8279]],[[8276,17018,8275]],[[8278,8279,8277]],[[8279,8276,8277]],[[8279,17018,8276]],[[16951,8275,16988]],[[16954,16951,16993]],[[16993,16951,16992]],[[16992,16951,16991]],[[16991,16951,16990]],[[16990,16951,16988]],[[16988,8275,16987]],[[16987,8275,16986]],[[16986,8275,16985]],[[16985,8275,16984]],[[16984,8275,16983]],[[16983,8275,16982]],[[16982,8275,16981]],[[16981,8275,16980]],[[16980,8275,16978]],[[16978,8275,16977]],[[16977,8275,16976]],[[16976,8275,16975]],[[16975,8275,16781]],[[8275,16779,16781]],[[8275,17018,16779]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f724050-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7088,7089,7087]],[[16873,15902,7089]],[[7085,7086,7087]],[[7089,15921,7087]],[[7087,7084,7085]],[[7084,7087,15921]],[[7083,7080,7082]],[[7082,7080,7081]],[[7083,7084,15915]],[[7080,7083,15915]],[[7079,7077,7078]],[[7077,7120,7073]],[[7077,7079,15915]],[[7077,7119,7120]],[[7119,7077,15915]],[[7118,7114,7117]],[[7118,7176,7114]],[[7118,7119,15916]],[[7118,17020,7176]],[[7175,7173,7174]],[[7175,7172,7173]],[[7175,7176,17020]],[[7175,17021,7172]],[[7079,7080,15915]],[[7172,17021,17022]],[[17022,17023,17024]],[[17024,17025,17026]],[[17024,17027,17025]],[[17025,17027,17028]],[[17028,17027,17029]],[[17024,17023,17027]],[[17027,17030,17031]],[[17027,17023,17030]],[[17030,17032,17033]],[[17030,17034,17032]],[[17032,17035,17036]],[[17032,17037,17035]],[[17032,17034,17037]],[[17030,17023,17034]],[[17034,17038,17039]],[[17034,17040,17038]],[[17034,17023,17040]],[[17040,17023,17041]],[[17022,17042,17023]],[[17023,17042,17043]],[[17043,17042,17044]],[[17022,17021,17042]],[[7175,17020,17021]],[[17020,7118,15916]],[[7119,15915,15916]],[[7084,15921,15915]],[[7089,15920,15921]],[[7089,15919,15920]],[[7089,15907,15919]],[[15907,7089,15918]],[[15918,7089,15917]],[[15917,7089,15914]],[[15914,7089,15913]],[[15913,7089,15902]],[[16873,15911,15902]],[[16873,15912,15911]],[[16873,15908,15912]],[[15909,15908,16873]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f72b4d4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17045,17046,17047]],[[17045,17047,17048]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f732a64-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17049,17050,9145]],[[15325,17051,15333]],[[15325,16768,17051]],[[17051,16768,17052]],[[17052,16766,17053]],[[16765,17054,16766]],[[17055,17056,16765]],[[9148,17055,16765]],[[9145,17057,9146]],[[9145,17058,17057]],[[9145,17059,17058]],[[9145,17060,17059]],[[9145,17061,17060]],[[17049,9145,17062]],[[11997,17063,17064]],[[11997,17065,17063]],[[11997,17066,17065]],[[11997,17067,17066]],[[11997,12020,17067]],[[17053,16766,17054]],[[17052,16768,16766]],[[9148,17068,17055]],[[9145,11997,17064]],[[9145,17050,17061]],[[16768,15325,9147]],[[9147,16765,16767]],[[17056,17054,16765]],[[17057,17068,9146]],[[9147,9148,16765]],[[9146,17068,9148]],[[16768,9147,16767]],[[15325,11997,9145]],[[17062,9145,17064]],[[9147,15325,9145]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f76379f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0ad049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17069,16177,16430]],[[16430,16428,16425]],[[16430,16177,16428]],[[16428,16177,262]],[[17069,17070,16177]],[[16177,17070,16670]],[[17071,16670,17072]],[[17073,17071,17072]],[[17073,17072,17074]],[[16670,17070,17072]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"ba2bf3d0a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17075,17076,17077]],[[17075,17077,17078]],[[17079,17080,17075]],[[17075,17080,17076]],[[17081,17082,17077]],[[17077,17082,17078]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c139a9-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7823,1795,1801]],[[7823,1802,7822]],[[1801,1794,1802]],[[7823,1801,1802]],[[1795,1797,1801]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c139ab-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7169,7170,17083]],[[17083,7199,7167]],[[7167,7199,7200]],[[7169,17083,7167]],[[15943,7199,17083]],[[7170,15943,17083]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c1d52d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0876949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[266,279,265]],[[279,280,265]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c22373-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10539,17084,1403]],[[17085,1377,17084]],[[1381,10539,1403]],[[1376,1377,17085]],[[10002,1376,17085]],[[10539,1381,10009]],[[10539,17085,17084]],[[10009,1381,10044]],[[10033,10009,10044]],[[1381,17086,10044]],[[1381,1391,17086]],[[1323,1403,17084]],[[1377,1323,17084]],[[10349,10002,17085]],[[10539,10349,17085]],[[1391,16967,17086]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c2bff4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17087,1525,1369]],[[17088,17087,1369]],[[17089,11609,17088]],[[11608,17090,17087]],[[11609,11608,17087]],[[17088,11609,17087]],[[17089,11607,11609]],[[13350,11610,17089]],[[17089,11610,11607]],[[13352,13350,17088]],[[17088,13350,17089]],[[1369,13352,17088]],[[1535,1525,17087]],[[1364,1535,17090]],[[17090,1535,17087]],[[1688,1364,11608]],[[11608,1364,17090]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c46d5d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f097f149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17091,17092,17093]],[[17094,17095,17093]],[[17096,17097,17091]],[[17091,17098,17096]],[[17091,17099,17098]],[[17091,17097,17092]],[[17099,17091,17100]],[[17101,17091,17102]],[[17102,17091,17103]],[[17093,17092,17094]],[[17100,17091,17104]],[[17091,17101,17104]],[[17105,17106,17091]],[[17107,17108,17109]],[[17108,17107,17105]],[[17110,17109,17108]],[[17111,17112,17110]],[[17113,17112,17111]],[[17111,17114,17113]],[[17115,17114,17111]],[[17116,17115,17111]],[[17117,17116,17118]],[[17118,17119,17117]],[[17120,17121,17118]],[[17120,17118,17122]],[[17122,17118,17123]],[[17123,17124,17125]],[[17125,17124,17126]],[[17126,17124,17127]],[[17127,17128,17129]],[[17129,17128,17130]],[[17130,17128,17131]],[[17131,17128,17132]],[[17132,17128,17133]],[[17128,17134,17135]],[[17136,17128,17137]],[[17137,17128,17138]],[[17138,17128,17139]],[[17139,17128,17135]],[[17140,17134,17141]],[[17142,17135,17134]],[[17134,17143,17142]],[[17144,17134,17140]],[[17140,17145,17146]],[[17140,17141,17145]],[[17145,17141,17147]],[[17144,17143,17134]],[[17133,17128,17136]],[[17118,17116,17111]],[[17127,17124,17128]],[[17121,17119,17118]],[[17124,17123,17118]],[[17106,17103,17091]],[[17111,17110,17108]],[[17108,17105,17091]],[[17148,17149,17150]],[[17093,17151,17152]],[[17152,17153,17154]],[[17155,17156,17157]],[[17157,17156,17158]],[[17157,17158,17159]],[[17156,17150,17149]],[[17156,17149,17158]],[[17150,17154,17148]],[[17153,17148,17154]],[[17160,17153,17152]],[[17161,17160,17152]],[[17151,17161,17152]],[[17162,17151,17093]],[[17163,17164,17093]],[[17093,17164,17162]],[[17165,17163,17093]],[[17166,17165,17093]],[[17167,17166,17093]],[[17168,17167,17093]],[[17095,17168,17093]],[[1038,17169,17146]],[[17146,17169,17140]],[[1053,1038,17145]],[[17145,1038,17146]],[[1054,1053,17147]],[[17147,1053,17145]],[[17170,1054,17141]],[[17141,1054,17147]],[[17171,17170,17134]],[[17134,17170,17141]],[[17172,17171,17128]],[[17128,17171,17134]],[[17173,17172,17124]],[[17124,17172,17128]],[[17174,17173,17118]],[[17118,17173,17124]],[[17175,17174,17111]],[[17111,17174,17118]],[[17176,17175,17108]],[[17108,17175,17111]],[[17177,17176,17091]],[[17091,17176,17108]],[[17178,17177,17093]],[[17093,17177,17091]],[[17179,17178,17152]],[[17152,17178,17093]],[[17180,17179,17154]],[[17154,17179,17152]],[[17181,17180,17150]],[[17150,17180,17154]],[[17182,17181,17156]],[[17156,17181,17150]],[[17183,17182,17155]],[[17155,17182,17156]],[[17184,17183,17157]],[[17157,17183,17155]],[[17185,17184,17159]],[[17159,17184,17157]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c5a65f-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17186,17187,17188]],[[17189,8656,8664]],[[17190,17189,8664]],[[17188,17189,17190]],[[17191,17192,17186]],[[17193,17191,17194]],[[17187,17189,17188]],[[17187,17195,17196]],[[17187,17197,17195]],[[17187,17186,17197]],[[17198,8484,17199]],[[17192,17197,17186]],[[17192,17200,17201]],[[17192,17193,17200]],[[17192,17191,17193]],[[17191,8484,17198]],[[17194,17191,17202]],[[17202,17198,17203]],[[17203,17198,17204]],[[17202,17191,17198]],[[8817,8484,17191]],[[8818,8817,17186]],[[17186,8817,17191]],[[8660,8818,17188]],[[17188,8818,17186]],[[8661,8660,17190]],[[17190,8660,17188]],[[8664,8661,17190]],[[8659,8656,17189]],[[8657,8659,17187]],[[17187,8659,17189]],[[8655,8657,17196]],[[17196,8657,17187]],[[8654,8655,17195]],[[17195,8655,17196]],[[8652,8654,17197]],[[17197,8654,17195]],[[8653,8652,17192]],[[17192,8652,17197]],[[8651,8653,17201]],[[17201,8653,17192]],[[8649,8651,17200]],[[17200,8651,17201]],[[8650,8649,17193]],[[17193,8649,17200]],[[8647,8650,17194]],[[17194,8650,17193]],[[8648,8647,17202]],[[17202,8647,17194]],[[8646,8648,17203]],[[17203,8648,17202]],[[8644,8646,17204]],[[17204,8646,17203]],[[8645,8644,17198]],[[17198,8644,17204]],[[8642,8645,17199]],[[17199,8645,17198]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c8da19-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17205,10652,17206]],[[17205,17206,17207]],[[17208,10652,10645]],[[17209,17086,17210]],[[17211,10044,17086]],[[17209,17212,17211]],[[17209,17213,17212]],[[17214,17209,17210]],[[17211,17086,17209]],[[17215,17216,17214]],[[17217,17215,17214]],[[17210,17217,17214]],[[17210,10641,17217]],[[17206,10641,17210]],[[17206,17218,10641]],[[17206,10652,17218]],[[17218,10652,17208]],[[16964,10652,17205]],[[16963,16964,17207]],[[17207,16964,17205]],[[16966,16963,17206]],[[17206,16963,17207]],[[16965,16966,17210]],[[17210,16966,17206]],[[16967,16965,17086]],[[17086,16965,17210]],[[10048,10044,17211]],[[10043,10048,17212]],[[17212,10048,17211]],[[9992,10043,17213]],[[17213,10043,17212]],[[10046,9992,17209]],[[17209,9992,17213]],[[10045,10046,17214]],[[17214,10046,17209]],[[9993,10045,17216]],[[17216,10045,17214]],[[10042,9993,17215]],[[17215,9993,17216]],[[10644,10042,17217]],[[17217,10042,17215]],[[10641,10644,17217]],[[10642,10641,17218]],[[10643,10642,17208]],[[17208,10642,17218]],[[10645,10643,17208]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c92854-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.7fa0197b61b6438794ab14242e673e48","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17219,17075,17220]],[[17219,17221,17222]],[[17222,17223,17224]],[[17225,37,39]],[[17225,38,37]],[[17225,17226,38]],[[17225,17227,17228]],[[17225,17228,17226]],[[17227,17224,17228]],[[17224,17223,17228]],[[17222,17221,17223]],[[17219,17220,17221]],[[17220,17075,17078]],[[17229,17220,17078]],[[17230,17229,17078]],[[17231,17230,17078]],[[17231,17078,17232]],[[17233,17234,17235]],[[17235,17234,17236]],[[17237,17236,17234]],[[17238,17239,17234]],[[17240,17238,17234]],[[17241,17240,17234]],[[17242,17241,17243]],[[17244,17242,17243]],[[17245,17244,17243]],[[17246,17247,17248]],[[17249,17248,17250]],[[17249,17246,17248]],[[17251,17245,17243]],[[17251,17246,17249]],[[17251,17243,17246]],[[17241,17234,17243]],[[17239,17237,17234]],[[17232,17078,17252]],[[17078,17253,17252]],[[17078,17234,17253]],[[17253,17234,17233]],[[17254,17079,17219]],[[17219,17079,17075]],[[17255,17254,17222]],[[17222,17254,17219]],[[17256,17255,17224]],[[17224,17255,17222]],[[17257,17256,17227]],[[17227,17256,17224]],[[17258,17257,17225]],[[17225,17257,17227]],[[20,17258,39]],[[39,17258,17225]],[[19,20,37]],[[37,20,39]],[[18,19,36]],[[36,19,38]],[[38,19,37]],[[16273,36,17226]],[[17226,36,38]],[[16271,16273,17228]],[[17228,16273,17226]],[[14711,16271,14644]],[[14644,16271,17223]],[[17223,16271,17228]],[[14630,14644,17221]],[[17221,14644,17223]],[[16292,14712,17220]],[[17220,14712,14630]],[[17220,14630,17221]],[[11914,16292,17229]],[[17229,16292,17220]],[[11927,11914,17230]],[[17230,11914,17229]],[[13905,11957,13896]],[[13896,11957,17231]],[[17231,11957,11927]],[[17231,11927,17230]],[[13829,13896,17232]],[[17232,13896,17231]],[[13826,13829,13797]],[[13797,13829,17252]],[[17252,13829,17232]],[[13764,13797,17253]],[[17253,13797,17252]],[[12022,13764,17233]],[[17233,13764,17253]],[[12023,12022,17235]],[[17235,12022,17233]],[[14925,12023,17236]],[[17236,12023,17235]],[[14974,14925,17237]],[[17237,14925,17236]],[[11829,14974,17239]],[[17239,14974,17237]],[[11830,11829,17238]],[[17238,11829,17239]],[[14561,11830,17240]],[[17240,11830,17238]],[[14554,14561,17241]],[[17241,14561,17240]],[[12528,14554,17242]],[[17242,14554,17241]],[[12521,12528,17244]],[[17244,12528,17242]],[[16288,12521,17245]],[[17245,12521,17244]],[[17259,16288,17251]],[[17251,16288,17245]],[[17260,17259,17249]],[[17249,17259,17251]],[[17261,17260,17250]],[[17250,17260,17249]],[[17262,17263,17246]],[[17246,17263,17247]],[[17264,17262,17243]],[[17243,17262,17246]],[[17265,17264,17234]],[[17234,17264,17243]],[[17082,17265,17078]],[[17078,17265,17234]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ca6162-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17266,17267,17268]],[[17266,17269,17267]],[[17270,17271,17272]],[[17270,17273,17271]],[[2766,17269,17266]],[[2781,17274,2778]],[[17274,17275,17276]],[[17274,17277,17275]],[[2778,17273,2775]],[[17277,17274,2781]],[[8319,17277,2781]],[[8319,2781,2799]],[[2781,2778,2779]],[[2779,2778,2782]],[[17274,17273,2778]],[[17273,17270,2771]],[[2775,17273,2771]],[[2775,2777,2773]],[[2775,2771,2777]],[[17270,17269,2771]],[[2769,2766,17266]],[[2766,2771,17269]],[[2766,2769,2764]],[[2764,2769,2768]],[[17266,8318,2769]],[[2798,2769,8318]],[[16078,8318,17266]],[[16079,16078,17268]],[[17268,16078,17266]],[[16077,16079,17267]],[[17267,16079,17268]],[[16075,16077,17269]],[[17269,16077,17267]],[[16076,16075,17270]],[[17270,16075,17269]],[[16074,16076,17272]],[[17272,16076,17270]],[[16073,16074,17271]],[[17271,16074,17272]],[[16072,16073,17273]],[[17273,16073,17271]],[[16070,16072,17274]],[[17274,16072,17273]],[[16071,16070,17276]],[[17276,16070,17274]],[[16069,16071,17275]],[[17275,16071,17276]],[[16068,16069,17277]],[[17277,16069,17275]],[[8319,16068,17277]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cbe7b0-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1112,8526,1229]],[[1112,1229,1110]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cc0ecf-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6951,6952,17278]],[[17279,6951,17278]],[[17280,17279,17278]],[[17280,17281,17279]],[[6960,17282,6959]],[[6954,17281,6953]],[[17283,17284,17285]],[[17281,17280,6953]],[[6960,17284,17282]],[[17283,17282,17284]],[[17283,17279,17281]],[[17282,17283,17281]],[[16647,6953,17280]],[[16646,16647,17278]],[[17278,16647,17280]],[[6952,16646,17278]],[[16648,6951,17279]],[[16312,16648,17283]],[[17283,16648,17279]],[[16310,16312,17285]],[[17285,16312,17283]],[[16311,16310,17284]],[[17284,16310,17285]],[[6960,16311,17284]],[[16854,6959,17282]],[[16855,16854,17281]],[[17281,16854,17282]],[[6954,16855,17281]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cd20b1-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17286,17287,17288]],[[17287,17289,17288]],[[10623,9803,17286]],[[17286,9803,17287]],[[9808,10623,17288]],[[17288,10623,17286]],[[9802,9808,17289]],[[17289,9808,17288]],[[9803,9802,17287]],[[17287,9802,17289]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cd9515-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2250,8714,343]],[[2250,343,344]],[[8714,367,343]],[[343,367,368]],[[8714,8717,367]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cef542-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8219,7972,1247]],[[7972,1295,1247]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d1b3a6-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17290,17291,17292]],[[17293,17294,17295]],[[8484,17293,17199]],[[17199,17293,17295]],[[17295,17294,17296]],[[17297,17298,17299]],[[8484,17300,17293]],[[8484,17297,17300]],[[17300,17297,17299]],[[8482,17297,8484]],[[8482,17291,17290]],[[17301,17297,8482]],[[17302,17301,17303]],[[17301,17290,17303]],[[17301,8482,17290]],[[17292,17291,17304]],[[17305,17292,17304]],[[17291,17306,17304]],[[8482,8826,17291]],[[8643,8642,17295]],[[17295,8642,17199]],[[8814,8643,17296]],[[17296,8643,17295]],[[8797,8814,17294]],[[17294,8814,17296]],[[8798,8797,17293]],[[17293,8797,17294]],[[8813,8798,17300]],[[17300,8798,17293]],[[8796,8813,17299]],[[17299,8813,17300]],[[8801,8796,17298]],[[17298,8796,17299]],[[8811,8801,17297]],[[17297,8801,17298]],[[8810,8811,17301]],[[17301,8811,17297]],[[8800,8810,17302]],[[17302,8810,17301]],[[8807,8800,17303]],[[17303,8800,17302]],[[8809,8807,17290]],[[17290,8807,17303]],[[8808,8809,17292]],[[17292,8809,17290]],[[8802,8808,17305]],[[17305,8808,17292]],[[8803,8802,17304]],[[17304,8802,17305]],[[16620,8803,17306]],[[17306,8803,17304]],[[8826,16620,17291]],[[17291,16620,17306]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d44bdf-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17307,17308,17309]],[[17308,17310,17309]],[[17308,17311,17310]],[[17311,7712,7713]],[[17311,9809,7712]],[[17311,17308,9809]],[[10620,9807,17307]],[[17307,9807,17308]],[[9152,9155,17310]],[[17310,9155,17309]],[[9153,9152,17311]],[[17311,9152,17310]],[[7713,9153,17311]],[[9807,9809,17308]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d5fa48-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a4049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17312,17313,17314]],[[17313,17315,17316]],[[17315,17317,17318]],[[17317,17319,17320]],[[17319,17321,17322]],[[17321,17323,17324]],[[17323,17325,17326]],[[17327,17328,17329]],[[17318,17317,17320]],[[17320,17319,17322]],[[17330,17331,17332]],[[17324,17322,17321]],[[17333,17332,17327]],[[17327,17334,17333]],[[17327,17329,17334]],[[17330,17335,17331]],[[17327,17336,17328]],[[17316,17315,17318]],[[17330,17332,17333]],[[17337,17336,17327]],[[17326,17325,17335]],[[17326,17324,17323]],[[17325,17331,17335]],[[17314,17313,17316]],[[17338,17312,17314]],[[17339,17340,17338]],[[17341,17342,17339]],[[17343,17344,17341]],[[17345,17346,17343]],[[17347,17348,17345]],[[17349,17350,17347]],[[17338,17340,17312]],[[17340,17339,17342]],[[17342,17341,17344]],[[17344,17343,17346]],[[17346,17345,17348]],[[17348,17347,17350]],[[17350,17349,17351]],[[17350,17351,17352]],[[17349,17353,17351]],[[17349,17354,17353]],[[16254,16209,17349]],[[17349,16209,17354]],[[16242,16254,17347]],[[17347,16254,17349]],[[16253,16242,17345]],[[17345,16242,17347]],[[16251,16253,17343]],[[17343,16253,17345]],[[16252,16251,17341]],[[17341,16251,17343]],[[16249,16252,17339]],[[17339,16252,17341]],[[16250,16249,17338]],[[17338,16249,17339]],[[16248,16250,17314]],[[17314,16250,17338]],[[16245,16248,17316]],[[17316,16248,17314]],[[16247,16245,17318]],[[17318,16245,17316]],[[16246,16247,17320]],[[17320,16247,17318]],[[16243,16246,17322]],[[17322,16246,17320]],[[16244,16243,17324]],[[17324,16243,17322]],[[16181,16244,17326]],[[17326,16244,17324]],[[16182,16181,17335]],[[17335,16181,17326]],[[16183,16182,17330]],[[17330,16182,17335]],[[16241,16183,17333]],[[17333,16183,17330]],[[16240,16241,17334]],[[17334,16241,17333]],[[16207,16240,17329]],[[17329,16240,17334]],[[16238,16207,17328]],[[17328,16207,17329]],[[17355,17356,17327]],[[17327,17356,17337]],[[17357,17355,17332]],[[17332,17355,17327]],[[17358,17357,17331]],[[17331,17357,17332]],[[17359,17358,17325]],[[17325,17358,17331]],[[17360,17359,17323]],[[17323,17359,17325]],[[17361,17360,17321]],[[17321,17360,17323]],[[17362,17361,17319]],[[17319,17361,17321]],[[17363,17362,17317]],[[17317,17362,17319]],[[17364,17363,17315]],[[17315,17363,17317]],[[17365,17364,17313]],[[17313,17364,17315]],[[17366,17365,17312]],[[17312,17365,17313]],[[17367,17366,17340]],[[17340,17366,17312]],[[17368,17367,17342]],[[17342,17367,17340]],[[17369,17368,17344]],[[17344,17368,17342]],[[17370,17369,17346]],[[17346,17369,17344]],[[17371,17370,17348]],[[17348,17370,17346]],[[17372,17371,17350]],[[17350,17371,17348]],[[16267,17372,16260]],[[16260,17372,17352]],[[17352,17372,17350]],[[16257,16260,17351]],[[17351,16260,17352]],[[16258,16257,17353]],[[17353,16257,17351]],[[16209,16258,17354]],[[17354,16258,17353]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d7ced0-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17373,7452,7453]],[[17373,7453,17374]],[[8978,7452,17373]],[[8846,8978,17374]],[[17374,8978,17373]],[[7453,8846,17374]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d8b896-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17375,17376,8403]],[[17376,1095,8403]],[[8925,1100,17375]],[[17375,1100,17376]],[[8403,8925,17375]],[[1100,1095,17376]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2dc146d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.10994c13ed9746c2b01feaa5f372aece","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17377,17378,17379]],[[17380,17381,17382]],[[17383,17380,17384]],[[17384,17380,17382]],[[17385,17380,17383]],[[17385,17386,17380]],[[17387,17386,17385]],[[17379,17386,17377]],[[17377,17386,17388]],[[17388,17386,17387]],[[17389,17390,17391]],[[17392,17393,17394]],[[17395,17396,17397]],[[17398,17399,17400]],[[17401,17402,17403]],[[17403,17404,17405]],[[17406,17407,17408]],[[17407,17409,17410]],[[17411,17412,17413]],[[17413,17414,17415]],[[17415,17416,17400]],[[17417,17418,17419]],[[17420,17421,17422]],[[17423,17424,17422]],[[17425,17426,17427]],[[17428,17429,17430]],[[17431,17432,17433]],[[17432,17430,17433]],[[17432,17427,17434]],[[17430,17432,17428]],[[17435,17430,17429]],[[17435,17429,17436]],[[17437,17428,17432]],[[17438,17437,17432]],[[17439,17438,17432]],[[17434,17439,17432]],[[17440,17434,17427]],[[17426,17440,17427]],[[17422,17441,17427]],[[17442,17425,17427]],[[17443,17442,17427]],[[17444,17443,17427]],[[17445,17444,17427]],[[17446,17445,17427]],[[17447,17446,17427]],[[17448,17447,17427]],[[17441,17448,17427]],[[17449,17441,17422]],[[17450,17449,17422]],[[17424,17450,17422]],[[17451,17420,17422]],[[17452,17423,17422]],[[17421,17452,17422]],[[17453,17454,17455]],[[17456,17420,17451]],[[17455,17456,17451]],[[17453,17455,17451]],[[17457,17454,17453]],[[17419,17453,17451]],[[17419,17458,17453]],[[17410,17417,17419]],[[17419,17459,17458]],[[17419,17418,17459]],[[17410,17408,17407]],[[17460,17417,17410]],[[17409,17460,17410]],[[17400,17461,17408]],[[17462,17463,17411]],[[17405,17464,17462]],[[17406,17408,17461]],[[17461,17400,17399]],[[17465,17466,17401]],[[17400,17467,17398]],[[17400,17468,17467]],[[17400,17469,17468]],[[17400,17416,17469]],[[17415,17470,17416]],[[17415,17471,17470]],[[17472,17473,17474]],[[17415,17414,17471]],[[17465,17473,17475]],[[17414,17413,17412]],[[17463,17476,17411]],[[17412,17411,17476]],[[17464,17463,17462]],[[17477,17478,17474]],[[17479,17480,17481]],[[17405,17404,17464]],[[17477,17480,17482]],[[17483,17484,17403]],[[17404,17403,17484]],[[17402,17483,17403]],[[17485,17402,17401]],[[17486,17485,17401]],[[17487,17486,17401]],[[17466,17487,17401]],[[17488,17466,17465]],[[17475,17488,17465]],[[17489,17475,17473]],[[17490,17489,17473]],[[17472,17490,17473]],[[17491,17472,17474]],[[17478,17491,17474]],[[17492,17478,17477]],[[17493,17492,17477]],[[17494,17493,17477]],[[17482,17494,17477]],[[17495,17482,17480]],[[17496,17495,17480]],[[17497,17496,17480]],[[17479,17497,17480]],[[17498,17395,17394]],[[17499,17500,17481]],[[17499,17397,17396]],[[17479,17481,17501]],[[17501,17481,17500]],[[17500,17499,17502]],[[17502,17499,17503]],[[17503,17499,17504]],[[17505,17396,17395]],[[17504,17499,17396]],[[17506,17505,17395]],[[17507,17506,17395]],[[17508,17507,17395]],[[17509,17508,17395]],[[17498,17509,17395]],[[17510,17498,17394]],[[17393,17510,17394]],[[17391,17511,17394]],[[17512,17392,17394]],[[17513,17512,17394]],[[17514,17513,17394]],[[17515,17514,17394]],[[17516,17515,17394]],[[17517,17516,17394]],[[17511,17517,17394]],[[17518,17511,17391]],[[17519,17518,17391]],[[17390,17519,17391]],[[17520,17521,17391]],[[17522,17389,17391]],[[17521,17522,17391]],[[17523,17524,17520]],[[17520,17525,17521]],[[17520,17524,17525]],[[17523,17379,17526]],[[17524,17523,17526]],[[17379,17527,17526]],[[17379,17378,17527]],[[11906,14447,17377]],[[17377,14447,17378]],[[11908,11906,17388]],[[17388,11906,17377]],[[16173,11912,17387]],[[17387,11912,11908]],[[17387,11908,17388]],[[16151,16173,17385]],[[17385,16173,17387]],[[16159,16151,17383]],[[17383,16151,17385]],[[22,16159,17384]],[[17384,16159,17383]],[[17528,1,17382]],[[17382,1,22]],[[17382,22,17384]],[[2,17528,17381]],[[17381,17528,17382]],[[17529,2,17380]],[[17380,2,17381]],[[17530,17529,17386]],[[17386,17529,17380]],[[17531,17530,17379]],[[17379,17530,17386]],[[17532,17533,17520]],[[17520,17533,17523]],[[17534,17532,17391]],[[17391,17532,17520]],[[17535,17534,17394]],[[17394,17534,17391]],[[17536,17535,17395]],[[17395,17535,17394]],[[17537,17536,17397]],[[17397,17536,17395]],[[17538,17537,17499]],[[17499,17537,17397]],[[17539,17538,17481]],[[17481,17538,17499]],[[17540,17539,17480]],[[17480,17539,17481]],[[17541,17540,17477]],[[17477,17540,17480]],[[17542,17541,17474]],[[17474,17541,17477]],[[17543,17542,17473]],[[17473,17542,17474]],[[17544,17543,17465]],[[17465,17543,17473]],[[17545,17544,17401]],[[17401,17544,17465]],[[17546,17545,17403]],[[17403,17545,17401]],[[17547,17546,17405]],[[17405,17546,17403]],[[17548,17547,17462]],[[17462,17547,17405]],[[17549,17548,17411]],[[17411,17548,17462]],[[17550,17549,17413]],[[17413,17549,17411]],[[17551,17550,17415]],[[17415,17550,17413]],[[17552,17551,17400]],[[17400,17551,17415]],[[17553,17552,17408]],[[17408,17552,17400]],[[17554,17553,17410]],[[17410,17553,17408]],[[17555,17554,17419]],[[17419,17554,17410]],[[17556,17555,17451]],[[17451,17555,17419]],[[17557,17556,17422]],[[17422,17556,17451]],[[17558,17557,17427]],[[17427,17557,17422]],[[17559,17558,17432]],[[17432,17558,17427]],[[17560,17559,17431]],[[17431,17559,17432]],[[1046,17560,17433]],[[17433,17560,17431]],[[1042,1046,17430]],[[17430,1046,17433]],[[1043,1042,17435]],[[17435,1042,17430]],[[1044,1043,17436]],[[17436,1043,17435]],[[1048,1044,17429]],[[17429,1044,17436]],[[13077,1048,17428]],[[17428,1048,17429]],[[13037,13077,17437]],[[17437,13077,17428]],[[13136,13037,17438]],[[17438,13037,17437]],[[13139,13136,17439]],[[17439,13136,17438]],[[11772,13139,17434]],[[17434,13139,17439]],[[11793,11772,17440]],[[17440,11772,17434]],[[15442,11793,17426]],[[17426,11793,17440]],[[15440,15442,17425]],[[17425,15442,17426]],[[15535,15440,17442]],[[17442,15440,17425]],[[15548,15535,17443]],[[17443,15535,17442]],[[15549,15548,17444]],[[17444,15548,17443]],[[15805,15549,17445]],[[17445,15549,17444]],[[15824,15805,17446]],[[17446,15805,17445]],[[12454,15824,17447]],[[17447,15824,17446]],[[12461,12454,17448]],[[17448,12454,17447]],[[15795,12461,17441]],[[17441,12461,17448]],[[15785,15795,17449]],[[17449,15795,17441]],[[14305,15785,17450]],[[17450,15785,17449]],[[14300,14305,17424]],[[17424,14305,17450]],[[14439,14300,14421]],[[14421,14300,17423]],[[17423,14300,17424]],[[14433,14421,17452]],[[17452,14421,17423]],[[16650,14433,17421]],[[17421,14433,17452]],[[15903,16650,17420]],[[17420,16650,17421]],[[15904,15903,17456]],[[17456,15903,17420]],[[15905,15904,17455]],[[17455,15904,17456]],[[11988,15905,11983]],[[11983,15905,17454]],[[17454,15905,17455]],[[11967,11983,17457]],[[17457,11983,17454]],[[11963,11967,17453]],[[17453,11967,17457]],[[11973,11963,17458]],[[17458,11963,17453]],[[15852,11986,17459]],[[17459,11986,11973]],[[17459,11973,17458]],[[15235,15852,15219]],[[15219,15852,17418]],[[17418,15852,17459]],[[15228,15219,17417]],[[17417,15219,17418]],[[16995,15234,17460]],[[17460,15234,15228]],[[17460,15228,17417]],[[14274,16995,14265]],[[14265,16995,17409]],[[17409,16995,17460]],[[14269,14265,17407]],[[17407,14265,17409]],[[16637,14273,17406]],[[17406,14273,14269]],[[17406,14269,17407]],[[12018,16637,17461]],[[17461,16637,17406]],[[12011,12018,17399]],[[17399,12018,17461]],[[12012,12011,17398]],[[17398,12011,17399]],[[12009,12012,17467]],[[17467,12012,17398]],[[12010,12009,17468]],[[17468,12009,17467]],[[12003,12010,17469]],[[17469,12010,17468]],[[12004,12003,17416]],[[17416,12003,17469]],[[12001,12004,17470]],[[17470,12004,17416]],[[11999,12001,17471]],[[17471,12001,17470]],[[17067,12020,17414]],[[17414,12020,11999]],[[17414,11999,17471]],[[17066,17067,17412]],[[17412,17067,17414]],[[17065,17066,17476]],[[17476,17066,17412]],[[17063,17065,17463]],[[17463,17065,17476]],[[17064,17063,17464]],[[17464,17063,17463]],[[17062,17064,17404]],[[17404,17064,17464]],[[17049,17062,17484]],[[17484,17062,17404]],[[17050,17049,17483]],[[17483,17049,17484]],[[17061,17050,17402]],[[17402,17050,17483]],[[17060,17061,17485]],[[17485,17061,17402]],[[17059,17060,17486]],[[17486,17060,17485]],[[17058,17059,17487]],[[17487,17059,17486]],[[17057,17058,17466]],[[17466,17058,17487]],[[17068,17057,17488]],[[17488,17057,17466]],[[17055,17068,17475]],[[17475,17068,17488]],[[17056,17055,17489]],[[17489,17055,17475]],[[17054,17056,17490]],[[17490,17056,17489]],[[17053,17054,17472]],[[17472,17054,17490]],[[17052,17053,17491]],[[17491,17053,17472]],[[17051,17052,17478]],[[17478,17052,17491]],[[15333,17051,15324]],[[15324,17051,17492]],[[17492,17051,17478]],[[15331,15324,17493]],[[17493,15324,17492]],[[15320,15331,17494]],[[17494,15331,17493]],[[15317,15320,17482]],[[17482,15320,17494]],[[15315,15317,17495]],[[17495,15317,17482]],[[15311,15315,17496]],[[17496,15315,17495]],[[15312,15311,17497]],[[17497,15311,17496]],[[15327,15312,17479]],[[17479,15312,17497]],[[14126,15332,14123]],[[14123,15332,17501]],[[17501,15332,15327]],[[17501,15327,17479]],[[14122,14123,17500]],[[17500,14123,17501]],[[15459,14125,17502]],[[17502,14125,14122]],[[17502,14122,17500]],[[15458,15459,17503]],[[17503,15459,17502]],[[17561,15473,17504]],[[17504,15473,15458]],[[17504,15458,17503]],[[17562,17561,17396]],[[17396,17561,17504]],[[17563,17562,17505]],[[17505,17562,17396]],[[11879,17563,17506]],[[17506,17563,17505]],[[11887,11879,17507]],[[17507,11879,17506]],[[15711,11888,15706]],[[15706,11888,17508]],[[17508,11888,11887]],[[17508,11887,17507]],[[15708,15706,17509]],[[17509,15706,17508]],[[14549,15710,14528]],[[14528,15710,17498]],[[17498,15710,15708]],[[17498,15708,17509]],[[14543,14528,17510]],[[17510,14528,17498]],[[15251,14548,17393]],[[17393,14548,14543]],[[17393,14543,17510]],[[15256,15251,17392]],[[17392,15251,17393]],[[15301,15261,17512]],[[17512,15261,15256]],[[17512,15256,17392]],[[15296,15301,17513]],[[17513,15301,17512]],[[17564,15306,17514]],[[17514,15306,15296]],[[17514,15296,17513]],[[14245,17564,14242]],[[14242,17564,17515]],[[17515,17564,17514]],[[14234,14242,17516]],[[17516,14242,17515]],[[14748,14234,14740]],[[14740,14234,17517]],[[17517,14234,17516]],[[14747,14740,17511]],[[17511,14740,17517]],[[14734,14747,17518]],[[17518,14747,17511]],[[14735,14734,17519]],[[17519,14734,17518]],[[12532,14735,17390]],[[17390,14735,17519]],[[12538,12532,17389]],[[17389,12532,17390]],[[17565,12538,17522]],[[17522,12538,17389]],[[15742,17565,17521]],[[17521,17565,17522]],[[15728,15742,17525]],[[17525,15742,17521]],[[17566,15728,17524]],[[17524,15728,17525]],[[17567,17566,17526]],[[17526,17566,17524]],[[14460,17567,17527]],[[17527,17567,17526]],[[14447,14460,17378]],[[17378,14460,17527]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2de5e68-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17568,7729,17307]],[[17568,17307,366]],[[366,17309,364]],[[366,17307,17309]],[[7729,7730,17307]],[[8719,7729,17568]],[[366,8719,17568]],[[9155,364,17309]],[[7730,10620,17307]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2defaf4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1218,8554,1212]],[[1218,1212,1211]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2dfe4b4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13242,13275,13252]],[[13247,13276,13275]],[[17569,13277,13276]],[[17570,10244,13270]],[[13273,17571,13278]],[[13286,13285,10225]],[[10427,10426,13239]],[[10426,10431,13290]],[[10431,10433,13291]],[[10433,10432,13236]],[[10432,10434,13237]],[[10434,10429,13292]],[[10429,10513,13293]],[[10513,10438,13234]],[[10438,10437,13235]],[[10437,10436,13294]],[[10436,10440,13295]],[[10440,10439,13232]],[[10439,10444,13233]],[[10444,10443,13296]],[[10443,10446,13297]],[[10446,10445,13230]],[[10445,10451,13231]],[[10451,10453,13298]],[[10453,10456,13299]],[[10456,10449,13228]],[[10449,10448,13229]],[[10448,10459,13300]],[[10459,10458,13301]],[[10458,10462,13301]],[[10462,10463,13226]],[[10463,10529,13227]],[[10529,10466,13302]],[[10466,10469,13303]],[[10469,10472,13224]],[[10472,10471,13225]],[[10471,10475,13304]],[[10475,10474,13305]],[[10474,10478,13306]],[[10478,10481,13307]],[[10481,10480,13308]],[[10480,10484,13222]],[[10484,10483,13223]],[[10483,10487,13309]],[[10487,10486,13310]],[[10486,10518,13311]],[[10518,10493,13312]],[[10493,10492,13313]],[[10492,10523,13314]],[[10523,10497,13315]],[[10497,10498,13316]],[[10498,10499,13317]],[[10499,10524,13318]],[[10524,10525,13319]],[[10525,10528,13320]],[[10528,10564,13321]],[[10564,10504,13322]],[[10504,10516,13323]],[[10516,10375,13324]],[[10375,10505,13325]],[[10505,10506,13259]],[[10506,10508,13269]],[[10508,10510,13267]],[[10510,10362,13266]],[[10362,10378,13265]],[[10378,10383,13264]],[[10383,10386,13241]],[[10386,10393,13263]],[[10393,10395,13262]],[[10395,10397,13261]],[[10397,10396,13260]],[[10396,10530,13274]],[[10530,10400,13326]],[[10400,10403,13258]],[[10403,10381,13257]],[[10381,10380,13256]],[[10380,10535,13253]],[[13258,10403,13257]],[[10535,10408,13255]],[[10408,10143,13254]],[[17572,13272,13277]],[[10143,10142,13244]],[[10142,10247,17573]],[[10247,10246,17574]],[[10246,10321,17575]],[[17573,10247,17576]],[[10244,10241,13271]],[[10321,10203,10245]],[[17574,10246,17577]],[[10203,10148,10418]],[[17578,10246,17575]],[[17575,10321,17579]],[[10240,10239,13280]],[[17579,10321,10245]],[[10240,13280,13279]],[[10245,10203,10412]],[[10412,10203,10413]],[[10413,10203,10419]],[[10226,10225,13285]],[[10419,10203,10511]],[[10231,13284,13283]],[[10511,10203,10418]],[[10148,10415,10417]],[[13286,10221,13287]],[[10418,10148,10417]],[[10514,10427,13238]],[[17577,10246,17578]],[[17576,10247,17574]],[[13244,10142,17573]],[[13254,10143,13244]],[[13255,10408,13254]],[[13253,10535,13255]],[[13256,10380,13253]],[[13257,10381,13256]],[[13326,10400,13258]],[[13274,10530,13326]],[[13260,10396,13274]],[[13261,10397,13260]],[[13262,10395,13261]],[[13263,10393,13262]],[[13241,10386,13263]],[[13264,10383,13241]],[[13265,10378,13264]],[[13266,10362,13265]],[[13267,10510,13266]],[[13268,10508,13267]],[[13269,10508,13268]],[[13259,10506,13269]],[[13325,10505,13259]],[[13324,10375,13325]],[[13323,10516,13324]],[[13322,10504,13323]],[[13321,10564,13322]],[[13320,10528,13321]],[[13319,10525,13320]],[[13318,10524,13319]],[[13317,10499,13318]],[[13316,10498,13317]],[[13315,10497,13316]],[[13314,10523,13315]],[[13313,10492,13314]],[[13312,10493,13313]],[[13311,10518,13312]],[[13310,10486,13311]],[[13309,10487,13310]],[[13223,10483,13309]],[[13222,10484,13223]],[[13308,10480,13222]],[[13307,10481,13308]],[[13306,10478,13307]],[[13305,10474,13306]],[[13304,10475,13305]],[[13225,10471,13304]],[[13224,10472,13225]],[[13303,10469,13224]],[[13302,10466,13303]],[[13227,10529,13302]],[[13226,10463,13227]],[[13301,10462,13226]],[[13300,10459,13301]],[[13229,10448,13300]],[[13228,10449,13229]],[[13299,10456,13228]],[[13298,10453,13299]],[[13231,10451,13298]],[[13230,10445,13231]],[[13297,10446,13230]],[[13296,10443,13297]],[[13233,10444,13296]],[[13232,10439,13233]],[[13295,10440,13232]],[[13294,10436,13295]],[[13235,10437,13294]],[[13234,10438,13235]],[[13293,10513,13234]],[[13292,10429,13293]],[[13237,10434,13292]],[[13236,10432,13237]],[[13291,10433,13236]],[[13290,10431,13291]],[[13239,10426,13290]],[[13238,10427,13239]],[[13289,10514,13238]],[[13288,10425,13289]],[[13287,10220,13288]],[[10425,10514,13289]],[[10220,10425,13288]],[[13287,10221,10220]],[[13285,13284,10226]],[[10221,13286,10225]],[[13282,10237,13283]],[[13284,10231,10226]],[[13283,10237,10231]],[[13282,13281,10234]],[[13282,10234,10237]],[[13281,13280,10239]],[[10234,13281,10239]],[[13271,10241,13279]],[[13279,10241,10240]],[[13271,13270,10244]],[[13278,17570,13270]],[[17571,17570,13278]],[[13272,17580,13273]],[[17571,13273,17581]],[[17581,13273,17580]],[[17580,13272,17572]],[[17572,13277,17582]],[[17582,13277,17569]],[[17569,13276,13249]],[[13249,13276,13248]],[[13248,13276,13247]],[[13247,13275,13246]],[[13246,13275,13245]],[[13245,13275,13242]],[[13242,13252,13243]],[[13250,13244,17573]],[[16138,13250,17576]],[[17576,13250,17573]],[[16140,16138,17574]],[[17574,16138,17576]],[[16142,16140,17577]],[[17577,16140,17574]],[[16144,16142,17578]],[[17578,16142,17577]],[[16147,16144,17575]],[[17575,16144,17578]],[[16148,16147,17579]],[[17579,16147,17575]],[[10245,16148,17579]],[[16146,10244,17570]],[[16145,16146,17571]],[[17571,16146,17570]],[[16143,16145,17581]],[[17581,16145,17571]],[[16141,16143,17580]],[[17580,16143,17581]],[[16139,16141,17572]],[[17572,16141,17580]],[[16137,16139,17582]],[[17582,16139,17572]],[[13251,16137,17569]],[[17569,16137,17582]],[[13249,13251,17569]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e00bdc-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17583,9132,17584]],[[17585,8148,8149]],[[17586,17587,17588]],[[9132,17583,9133]],[[9133,17589,9143]],[[17587,17590,17591]],[[17592,17593,17594]],[[17593,17595,17596]],[[17595,17597,17596]],[[17598,17599,17600]],[[17599,8137,8139]],[[8137,8138,8139]],[[9106,17601,9105]],[[9105,17602,9104]],[[17599,8139,17600]],[[17588,17587,17591]],[[17591,17590,17603]],[[17603,17592,17594]],[[17594,17593,17596]],[[17596,17597,17604]],[[8139,17605,17600]],[[8139,8140,17605]],[[17604,17598,17600]],[[9104,17586,17588]],[[9108,17606,9106]],[[9107,17607,9108]],[[17597,17598,17604]],[[9109,17608,9107]],[[9111,17609,9109]],[[9112,17610,9111]],[[17590,17592,17603]],[[9113,17611,9112]],[[9143,17612,9113]],[[17602,17586,9104]],[[17601,17602,9105]],[[17606,17601,9106]],[[17607,17606,9108]],[[17608,17607,9107]],[[17609,17608,9109]],[[17610,17609,9111]],[[17611,17610,9112]],[[17612,17611,9113]],[[17589,17612,9143]],[[17613,17583,17584]],[[17589,9133,17583]],[[17585,17613,17584]],[[9080,17585,17584]],[[9080,8148,17585]],[[17585,8149,8150]],[[9084,9080,17584]],[[9132,9084,17584]],[[9102,9104,17588]],[[9101,9102,17591]],[[17591,9102,17588]],[[9100,9101,17603]],[[17603,9101,17591]],[[9099,9100,17594]],[[17594,9100,17603]],[[9098,9099,17596]],[[17596,9099,17594]],[[9097,9098,17604]],[[17604,9098,17596]],[[9096,9097,17600]],[[17600,9097,17604]],[[9095,9096,17605]],[[17605,9096,17600]],[[8140,9095,17605]],[[16860,8137,17599]],[[16866,16860,17598]],[[17598,16860,17599]],[[16865,16866,17597]],[[17597,16866,17598]],[[16864,16865,17595]],[[17595,16865,17597]],[[16863,16864,17593]],[[17593,16864,17595]],[[16862,16863,17592]],[[17592,16863,17593]],[[11379,16862,17590]],[[17590,16862,17592]],[[16395,11379,17587]],[[17587,11379,17590]],[[16396,16395,17586]],[[17586,16395,17587]],[[16393,16396,17602]],[[17602,16396,17586]],[[16391,16393,17601]],[[17601,16393,17602]],[[16389,16391,17606]],[[17606,16391,17601]],[[16387,16389,17607]],[[17607,16389,17606]],[[16385,16387,17608]],[[17608,16387,17607]],[[16383,16385,17609]],[[17609,16385,17608]],[[16381,16383,17610]],[[17610,16383,17609]],[[16379,16381,17611]],[[17611,16381,17610]],[[16378,16379,17612]],[[17612,16379,17611]],[[16377,16378,17589]],[[17589,16378,17612]],[[16376,16377,17583]],[[17583,16377,17589]],[[16371,16376,17613]],[[17613,16376,17583]],[[16373,16371,17585]],[[17585,16371,17613]],[[8150,16373,17585]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e1e06f-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8600,1892,8598]],[[1892,1891,8598]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e4514a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1146,8412,1150]],[[1146,1150,1147]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e4c69a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[171,172,17614]],[[17615,171,17614]],[[17616,17615,17614]],[[17616,17617,17615]],[[17616,1845,7915]],[[17617,17616,7915]],[[1838,1845,17616]],[[1842,1838,17614]],[[17614,1838,17616]],[[172,1842,17614]],[[9950,171,17615]],[[9963,9950,17617]],[[17617,9950,17615]],[[7915,9963,17617]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e5d871-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10648,10647,10650]],[[10647,10651,10650]],[[10651,17618,652]],[[10651,10647,17618]],[[652,17618,651]],[[17618,10647,17619]],[[17618,17619,17620]],[[16970,651,17618]],[[16968,16970,17620]],[[17620,16970,17618]],[[16969,16968,17619]],[[17619,16968,17620]],[[10647,16969,17619]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e674f4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17621,8534,17622]],[[8534,1121,17622]],[[1123,8534,17621]],[[1120,1123,17622]],[[17622,1123,17621]],[[1121,1120,17622]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e7acf3-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17623,1563,16960]],[[1563,17623,17624]],[[17624,17623,17625]],[[1563,1683,16960]],[[16960,17626,17627]],[[16960,17628,17626]],[[16960,1683,17628]],[[16957,17628,1683]],[[16955,16957,8271]],[[16957,8270,8271]],[[16957,1683,8270]],[[16942,16962,17625]],[[17625,16962,17624]],[[16961,16942,17623]],[[17623,16942,17625]],[[16960,16961,17623]],[[16943,16960,17627]],[[16956,16943,17626]],[[17626,16943,17627]],[[16958,16956,17628]],[[17628,16956,17626]],[[16957,16958,17628]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e8e5f6-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1203,8562,1197]],[[8562,1198,1197]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea451d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8623,124,8622]],[[8633,8579,8622]],[[17629,8633,8622]],[[124,17630,8622]],[[8622,17630,17629]],[[124,125,17630]],[[16365,8633,17629]],[[16366,16365,17630]],[[17630,16365,17629]],[[125,16366,17630]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea9355-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0875c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2813,11615,2815]],[[2813,2807,17631]],[[11615,2813,17631]],[[17631,2807,17632]],[[17632,2807,17633]],[[16666,11620,17631]],[[17631,11620,11615]],[[16176,16666,17632]],[[17632,16666,17631]],[[16175,16176,17633]],[[17633,16176,17632]],[[2807,16175,17633]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea9356-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17634,17379,17635]],[[17379,17523,17635]],[[17636,17531,17634]],[[17634,17531,17379]],[[17533,17637,17523]],[[17523,17637,17635]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ed2b76-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8792,8417,8705]],[[8792,14342,1942]],[[2253,346,8711]],[[8703,8705,8417]],[[8417,8792,1942]],[[1942,14342,1936]],[[2253,345,346]],[[1936,8711,346]],[[1936,14342,8711]],[[8710,8711,14342]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ed529d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17638,17639,15922]],[[17638,15922,17021]],[[17042,17021,15922]],[[17044,17042,15923]],[[17640,17641,15928]],[[17642,17640,15929]],[[17643,17642,15930]],[[17644,17643,15883]],[[17645,17644,15882]],[[17646,17645,15931]],[[17647,17646,15932]],[[17648,17647,15933]],[[17649,17648,15934]],[[17650,17649,15935]],[[17651,17650,15936]],[[17652,17651,15937]],[[17653,17652,15938]],[[17654,17653,15939]],[[17655,17656,15941]],[[17657,17655,15942]],[[17658,7171,7172]],[[17658,17657,15944]],[[17658,15945,7171]],[[17656,17654,15940]],[[17658,15944,15945]],[[17641,17659,15927]],[[17657,15942,15944]],[[17659,17660,15926]],[[17655,15941,15942]],[[17660,17044,15925]],[[17656,15940,15941]],[[17654,15939,15940]],[[17653,15938,15939]],[[17652,15937,15938]],[[17651,15936,15937]],[[17650,15935,15936]],[[17649,15934,15935]],[[17648,15933,15934]],[[17647,15932,15933]],[[17646,15931,15932]],[[17645,15882,15931]],[[17644,15883,15882]],[[17643,15930,15883]],[[17642,15929,15930]],[[17640,15928,15929]],[[17641,15927,15928]],[[17659,15926,15927]],[[17660,15925,15926]],[[17044,15923,15925]],[[17042,15922,15923]],[[17020,15916,17638]],[[17638,15916,17639]],[[17021,17020,17638]],[[17043,17044,17660]],[[17023,17043,17659]],[[17659,17043,17660]],[[17041,17023,17641]],[[17641,17023,17659]],[[17040,17041,17640]],[[17640,17041,17641]],[[17038,17040,17642]],[[17642,17040,17640]],[[17039,17038,17643]],[[17643,17038,17642]],[[17034,17039,17644]],[[17644,17039,17643]],[[17037,17034,17645]],[[17645,17034,17644]],[[17035,17037,17646]],[[17646,17037,17645]],[[17036,17035,17647]],[[17647,17035,17646]],[[17032,17036,17648]],[[17648,17036,17647]],[[17033,17032,17649]],[[17649,17032,17648]],[[17030,17033,17650]],[[17650,17033,17649]],[[17031,17030,17651]],[[17651,17030,17650]],[[17027,17031,17652]],[[17652,17031,17651]],[[17029,17027,17653]],[[17653,17027,17652]],[[17028,17029,17654]],[[17654,17029,17653]],[[17025,17028,17656]],[[17656,17028,17654]],[[17026,17025,17655]],[[17655,17025,17656]],[[17024,17026,17657]],[[17657,17026,17655]],[[17022,17024,17658]],[[17658,17024,17657]],[[7172,17022,17658]],[[15916,15922,17639]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ee8aa2-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8572,8639,8152]],[[8572,8152,8153]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2eed8e4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1500,1563,8396]],[[1563,17624,8396]],[[16962,8396,17624]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f011e8-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[166,976,943]],[[166,943,165]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f0601b-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17661,7809,17662]],[[17661,17662,17663]],[[17662,7809,1787]],[[17662,1787,17664]],[[7809,7810,1787]],[[1796,7809,17661]],[[1792,1796,17663]],[[17663,1796,17661]],[[1793,1792,17662]],[[17662,1792,17663]],[[1786,1793,17664]],[[17664,1793,17662]],[[1787,1786,17664]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f149e9-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1162,1173,17665]],[[17665,17666,17667]],[[17668,17669,1263]],[[17669,7279,1263]],[[17669,17667,17666]],[[17669,17666,7279]],[[17667,17670,17665]],[[1162,17665,17670]],[[1174,1162,17670]],[[1155,1174,17667]],[[17667,1174,17670]],[[1156,1155,17669]],[[17669,1155,17667]],[[1169,1156,17668]],[[17668,1156,17669]],[[1263,1169,17668]],[[16827,7279,17666]],[[16828,16827,17665]],[[17665,16827,17666]],[[1173,16828,17665]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f1bf47-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f097f249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17671,17672,17673]],[[17674,17675,17676]],[[17672,17671,17677]],[[17678,17677,17671]],[[17679,17680,17681]],[[17682,17679,17683]],[[17684,17682,17685]],[[17686,17684,17687]],[[17688,17689,17690]],[[17691,17692,17693]],[[17694,17695,17696]],[[17694,17691,17697]],[[17694,17698,17695]],[[17695,17698,17699]],[[17694,17697,17698]],[[17700,17691,17701]],[[17691,17700,17697]],[[17692,17702,17703]],[[17702,17704,17705]],[[17701,17691,17693]],[[17692,17706,17693]],[[17704,17707,17708]],[[17692,17709,17706]],[[17707,17710,17708]],[[17692,17703,17709]],[[17702,17711,17703]],[[17710,17688,17690]],[[17702,13184,17711]],[[17689,17712,17713]],[[17702,17705,13184]],[[17704,17708,17705]],[[17712,17686,17713]],[[17708,17710,17690]],[[17689,17713,17690]],[[17686,17687,17713]],[[17684,17685,17687]],[[17680,17714,17715]],[[17685,17682,17716]],[[17716,17682,17683]],[[17679,17717,17683]],[[17718,17719,17720]],[[17679,17681,17717]],[[17680,17721,17681]],[[17680,17722,17721]],[[17680,17723,17722]],[[17680,17715,17723]],[[17714,17724,17715]],[[17714,17725,17724]],[[17714,17726,17725]],[[17714,17727,17726]],[[17719,17728,17729]],[[17718,17730,17727]],[[17718,17731,17730]],[[17714,17718,17727]],[[17714,17719,17718]],[[17718,17720,17732]],[[17733,17728,17678]],[[17719,17734,17720]],[[17719,17729,17734]],[[17728,17733,17729]],[[17729,17733,17735]],[[17728,17677,17678]],[[17672,17736,17673]],[[17737,17738,17736]],[[17737,17674,17739]],[[17736,17740,17673]],[[17740,17736,17741]],[[17736,17742,17741]],[[17742,17736,17738]],[[17737,17743,17738]],[[17743,17737,17744]],[[17744,17737,17745]],[[17745,17737,17739]],[[17739,17674,17746]],[[17746,17674,17747]],[[17747,17674,17676]],[[17676,17675,17748]],[[17748,17675,17749]],[[17750,17751,17752]],[[17752,17751,17753]],[[17753,17751,17754]],[[17754,17755,17756]],[[17757,17758,17759]],[[17759,17758,17760]],[[17675,17750,17749]],[[17761,17760,17758]],[[17762,17763,17764]],[[17762,17765,17766]],[[17763,17761,17758]],[[17766,17765,17767]],[[17762,17764,17765]],[[17763,17758,17764]],[[17757,17768,17758]],[[17757,17755,17768]],[[17757,17756,17755]],[[17749,17750,17752]],[[17751,17755,17754]],[[17769,17770,17674]],[[17674,17770,17675]],[[17771,17769,17737]],[[17737,17769,17674]],[[17772,17771,17736]],[[17736,17771,17737]],[[17773,17772,17672]],[[17672,17772,17736]],[[17774,17773,17677]],[[17677,17773,17672]],[[17775,17774,17728]],[[17728,17774,17677]],[[17776,17775,17719]],[[17719,17775,17728]],[[17777,17776,17714]],[[17714,17776,17719]],[[17778,17777,17680]],[[17680,17777,17714]],[[17779,17778,17679]],[[17679,17778,17680]],[[17780,17779,17682]],[[17682,17779,17679]],[[17781,17780,17684]],[[17684,17780,17682]],[[17782,17781,17686]],[[17686,17781,17684]],[[17783,17782,17712]],[[17712,17782,17686]],[[17784,17783,17689]],[[17689,17783,17712]],[[17785,17784,17688]],[[17688,17784,17689]],[[17786,17785,17710]],[[17710,17785,17688]],[[17787,17786,17707]],[[17707,17786,17710]],[[17788,17787,17704]],[[17704,17787,17707]],[[17789,17788,17702]],[[17702,17788,17704]],[[17790,17789,17692]],[[17692,17789,17702]],[[17791,17790,17691]],[[17691,17790,17692]],[[17792,17791,17694]],[[17694,17791,17691]],[[17793,17792,17696]],[[17696,17792,17694]],[[15839,17700,17701]],[[15830,15839,17693]],[[17693,15839,17701]],[[16301,15830,17706]],[[17706,15830,17693]],[[15209,16301,17709]],[[17709,16301,17706]],[[15210,15209,17703]],[[17703,15209,17709]],[[13183,15210,17711]],[[17711,15210,17703]],[[13184,13183,17711]],[[13186,13184,17705]],[[14406,13186,17708]],[[17708,13186,17705]],[[14407,14406,17690]],[[17690,14406,17708]],[[16296,14407,17713]],[[17713,14407,17690]],[[13220,16296,17687]],[[17687,16296,17713]],[[13210,13220,17685]],[[17685,13220,17687]],[[13204,13210,17716]],[[17716,13210,17685]],[[13205,13204,17683]],[[17683,13204,17716]],[[15713,13205,17717]],[[17717,13205,17683]],[[15714,15713,17681]],[[17681,15713,17717]],[[14039,15714,17721]],[[17721,15714,17681]],[[14040,14039,17722]],[[17722,14039,17721]],[[16304,14040,17723]],[[17723,14040,17722]],[[11760,16304,17715]],[[17715,16304,17723]],[[11761,11760,17724]],[[17724,11760,17715]],[[13189,11761,17725]],[[17725,11761,17724]],[[13190,13189,17726]],[[17726,13189,17725]],[[15760,13190,17727]],[[17727,13190,17726]],[[15761,15760,17730]],[[17730,15760,17727]],[[9066,15761,17731]],[[17731,15761,17730]],[[9077,9066,17718]],[[17718,9066,17731]],[[9075,9077,17732]],[[17732,9077,17718]],[[17794,9075,17720]],[[17720,9075,17732]],[[15131,17794,17734]],[[17734,17794,17720]],[[15132,15131,17729]],[[17729,15131,17734]],[[17795,15203,17735]],[[17735,15203,15132]],[[17735,15132,17729]],[[17796,17795,17733]],[[17733,17795,17735]],[[13707,17796,17678]],[[17678,17796,17733]],[[13708,13707,17671]],[[17671,13707,17678]],[[15505,13759,15495]],[[15495,13759,17673]],[[17673,13759,13708]],[[17673,13708,17671]],[[15496,15495,17740]],[[17740,15495,17673]],[[15379,15496,15350]],[[15350,15496,17741]],[[17741,15496,17740]],[[15338,15350,17742]],[[17742,15350,17741]],[[15684,15338,15629]],[[15629,15338,17738]],[[17738,15338,17742]],[[15630,15629,17743]],[[17743,15629,17738]],[[15381,15630,17744]],[[17744,15630,17743]],[[15382,15381,17745]],[[17745,15381,17744]],[[13997,15382,17739]],[[17739,15382,17745]],[[13998,13997,17746]],[[17746,13997,17739]],[[12829,13998,12798]],[[12798,13998,17747]],[[17747,13998,17746]],[[12799,12798,17676]],[[17676,12798,17747]],[[14801,12799,14750]],[[14750,12799,17748]],[[17748,12799,17676]],[[14751,14750,17749]],[[17749,14750,17748]],[[16263,14751,17752]],[[17752,14751,17749]],[[12117,16263,12069]],[[12069,16263,17753]],[[17753,16263,17752]],[[12070,12069,17754]],[[17754,12069,17753]],[[16204,12118,17756]],[[17756,12118,12070]],[[17756,12070,17754]],[[16265,16204,17757]],[[17757,16204,17756]],[[16264,16265,17759]],[[17759,16265,17757]],[[16202,16264,17760]],[[17760,16264,17759]],[[16206,16202,17761]],[[17761,16202,17760]],[[16205,16206,17763]],[[17763,16206,17761]],[[16203,16205,17762]],[[17762,16205,17763]],[[16261,16203,17766]],[[17766,16203,17762]],[[16255,16261,17767]],[[17767,16261,17766]],[[16256,16255,17765]],[[17765,16255,17767]],[[16262,16256,17764]],[[17764,16256,17765]],[[17797,16268,17758]],[[17758,16268,16262]],[[17758,16262,17764]],[[17798,17797,17768]],[[17768,17797,17758]],[[17799,17798,17755]],[[17755,17798,17768]],[[17800,17799,17751]],[[17751,17799,17755]],[[17801,17800,17750]],[[17750,17800,17751]],[[17770,17801,17675]],[[17675,17801,17750]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"baeb0d610-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12531,14731,12532]],[[14731,14735,12532]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb14b79-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16997,16994,16998]],[[16994,16996,16998]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb4316e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17802,11901,14448]],[[11906,17803,17804]],[[11906,11901,17805]],[[17802,17805,11901]],[[17803,11906,17805]],[[14447,17802,14448]],[[14447,17804,17802]],[[14447,11906,17804]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb71848-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee49149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[1033,16671,1061]],[[1059,1060,1061]],[[16671,17169,1061]],[[1061,1058,1059]],[[1061,1057,1058]],[[1061,1062,1057]],[[1061,1038,1062]],[[1062,1038,1056]],[[1056,1038,1030]],[[1030,1037,1031]],[[1030,1038,1037]],[[1061,17169,1038]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb96194-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17806,17807,17808]],[[17808,16775,16777]],[[17806,17808,16777]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebac1f9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4af49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8221,15884,8220]],[[8221,426,15884]],[[7277,15900,15899]],[[7247,7248,15952]],[[15884,426,15897]],[[400,15897,426]],[[403,15898,15897]],[[403,15896,15898]],[[403,15895,15896]],[[15893,15894,403]],[[15892,15893,6694]],[[15891,15890,6694]],[[15889,15891,6694]],[[15888,15889,6694]],[[15887,15888,6694]],[[15886,15887,6694]],[[15885,15886,6694]],[[7247,15952,15900]],[[7249,15951,15952]],[[7249,15950,15951]],[[7249,15949,15950]],[[1004,15948,15949]],[[1004,15946,15948]],[[1004,1003,15946]],[[1003,15924,15947]],[[7249,15952,7248]],[[1003,15947,15946]],[[7194,1003,997]],[[7194,15924,1003]],[[7249,1004,15949]],[[15890,15892,6694]],[[15899,6694,7277]],[[1005,1004,7249]],[[7247,15900,10012]],[[15900,7278,10012]],[[15885,6694,15899]],[[7278,15900,7277]],[[15894,15895,403]],[[400,403,15897]],[[6694,15893,403]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebae90f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17809,16297,17810]],[[15956,15954,17811]],[[15964,15831,16298]],[[15954,17812,17811]],[[17811,15839,15842]],[[17811,17700,15839]],[[17811,17697,17700]],[[15831,15967,15842]],[[15842,15956,17811]],[[17813,17814,15961]],[[15970,15956,15842]],[[15960,15970,15842]],[[15969,15960,15842]],[[16303,9071,9070]],[[15842,15968,15969]],[[15968,15842,15967]],[[15967,15831,15966]],[[15966,15831,15965]],[[15965,15831,15964]],[[15964,16298,15963]],[[15963,16298,15962]],[[15962,16298,15961]],[[15961,16298,17815]],[[15961,17814,15958]],[[17815,17813,15961]],[[17816,17815,16298]],[[17817,17816,16298]],[[17818,17817,16298]],[[16297,17819,16298]],[[16298,17820,17818]],[[16298,17821,17820]],[[16298,17822,17821]],[[16298,17823,17822]],[[16298,17824,17823]],[[17819,16297,17809]],[[16298,17825,17824]],[[16297,16295,17810]],[[17825,16298,17819]],[[17826,17827,17828]],[[16295,17829,17810]],[[17829,16295,17828]],[[17828,16295,17826]],[[16294,17830,16295]],[[16295,17830,17826]],[[16294,17831,17830]],[[16294,17832,17831]],[[17831,17833,17834]],[[17831,17835,17833]],[[17831,17836,17835]],[[17831,17837,17836]],[[17831,17838,17837]],[[17831,17839,17838]],[[17831,17840,17839]],[[17831,17841,17840]],[[17831,17842,17841]],[[17831,17832,17842]],[[16294,17843,17832]],[[16294,17844,17843]],[[16294,17845,17844]],[[16294,17846,17845]],[[16294,17847,17846]],[[17848,16294,17849]],[[16294,17850,17847]],[[16294,16303,17849]],[[17850,16294,17851]],[[17851,16294,17852]],[[17852,16294,17848]],[[16303,17853,17849]],[[17854,16188,17855]],[[17854,16185,16188]],[[17854,9069,16185]],[[17854,17853,9070]],[[17854,9070,9069]],[[17853,16303,9070]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebae918-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefaa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16944,16893,16941]],[[16893,16959,16941]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebc6f96-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16763,17856,16764]],[[17856,17857,16764]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebf073e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17858,17859,17860]],[[17858,17860,17861]],[[17861,17860,17862]],[[17859,17863,17860]],[[17860,17864,17865]],[[17860,17866,17864]],[[17860,17867,17866]],[[17860,17868,17867]],[[17860,17869,17868]],[[17860,17863,17869]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec01841-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16060,16023,16059]],[[16060,16059,16058]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec0184a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef1df549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15338,15684,15650]],[[16178,15479,15339]],[[15479,15496,15379]],[[15360,15479,15379]],[[15339,15479,15360]],[[16186,16185,15150]],[[13759,15505,15480]],[[13746,13759,15480]],[[15479,16178,15480]],[[16185,9069,9076]],[[17795,13707,13725]],[[17795,17796,13707]],[[16186,15203,17795]],[[13725,16186,17795]],[[13746,16186,13725]],[[15203,16186,15154]],[[16185,17794,15150]],[[15150,17794,15131]],[[9076,9075,17794]],[[12796,14801,14764]],[[15154,16186,15150]],[[17794,16185,9076]],[[15480,16186,13746]],[[16178,16186,15480]],[[15650,16178,15339]],[[14764,14772,16179]],[[16178,12806,16179]],[[12796,12799,14801]],[[16179,12796,14764]],[[16179,12806,12796]],[[14014,13998,12806]],[[13998,12829,12806]],[[16178,14014,12806]],[[16178,14008,14014]],[[16638,16641,15382]],[[16640,15388,15382]],[[16178,15388,14008]],[[16178,15386,15388]],[[15663,15630,15386]],[[16178,15663,15386]],[[15386,15630,15381]],[[15650,15663,16178]],[[15338,15650,15339]],[[16856,16858,16639]],[[14008,15388,16639]],[[16641,16640,15382]],[[16639,15388,16640]],[[13997,16638,15382]],[[16856,16638,13997]],[[14008,16859,13997]],[[16856,16639,16638]],[[13997,16859,16857]],[[14008,16639,16858]],[[16859,14008,16858]],[[16857,16856,13997]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec2b0ec-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14245,14240,17564]],[[14240,15291,17564]],[[17564,15291,15306]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec2ff3f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16173,16172,11900]],[[16173,11900,11912]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec32664-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1f949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[23,24,16170]],[[23,16170,21]],[[4,6,23]],[[23,6,24]],[[3,4,21]],[[21,4,23]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec76b97-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16275,35,16273]],[[35,36,16273]],[[8,18,35]],[[35,18,36]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec8f206-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17804,17803,17802]],[[17803,17805,17802]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec91931-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16289,16291,16293]],[[16289,16293,16290]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecc264e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[34,35,33]],[[17870,31,33]],[[35,16275,33]],[[33,16275,17870]],[[16,8,34]],[[34,8,35]],[[17,16,33]],[[33,16,34]],[[9,17,31]],[[31,17,33]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecdd400-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16989,16979,17871]],[[16989,17872,16082]],[[16989,17873,17872]],[[17873,16989,17874]],[[17874,16989,17875]],[[17875,16989,17876]],[[17876,16989,17871]],[[17871,16979,17877]],[[17877,16979,17878]],[[17878,16979,17879]],[[17879,16979,17880]],[[17880,16979,17881]],[[17881,16979,17882]],[[17882,16979,17883]],[[17883,16979,17884]],[[17884,16979,17807]],[[17885,17884,17807]],[[17886,17885,17807]],[[17887,17886,17807]],[[17887,17807,17806]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baece497b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8699,8698,8697]],[[8698,8692,8694]],[[8698,8699,8692]],[[8694,8692,8691]],[[8692,8699,8689]],[[8692,8689,8690]],[[8699,6950,16648]],[[8689,16649,6860]],[[8689,8699,16649]],[[16649,8699,16648]],[[16648,6950,6951]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecfa8c8-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17888,17889,17890]],[[17888,17890,17891]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed01e43-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16989,16953,16954]],[[16989,16952,16953]],[[16952,16989,16950]],[[16950,16989,16949]],[[16949,16989,16948]],[[16948,16989,16947]],[[16947,16989,16092]],[[16947,16092,16945]],[[16989,16090,16092]],[[16989,16089,16090]],[[16989,16088,16089]],[[16989,16087,16088]],[[16989,16086,16087]],[[16989,16084,16086]],[[16989,16083,16084]],[[16989,16082,16083]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed35282-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17892,17893,17894]],[[17892,17894,17895]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed6123a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15238,17894,15251]],[[15251,17894,17893]],[[15238,14532,11376]],[[11376,17895,15238]],[[17894,15238,17895]],[[15251,17892,11375]],[[15251,17893,17892]],[[15251,11375,14548]],[[17892,17895,11375]],[[11377,11376,14532]],[[11375,17895,11376]],[[14548,11377,14532]],[[14548,11374,11377]],[[14548,11375,11374]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed74a77-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16589,16588,16587]],[[16589,16587,16586]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed8a9c4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef170a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7931,16410,7930]],[[7931,7932,16643]],[[16410,7931,16643]],[[8186,16642,16643]],[[16643,7932,8186]],[[8186,16645,16642]],[[16644,16642,16645]],[[10010,8546,8544]],[[8544,16645,10010]],[[8545,8546,10205]],[[10205,8546,10010]],[[10010,16645,899]],[[902,10010,899]],[[899,16645,8186]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed8f811-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee48c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17896,15440,15535]],[[17896,17897,15440]],[[17898,15440,17897]],[[15534,17899,15535]],[[17898,15420,15440]],[[15535,17899,17896]],[[15534,15420,17899]],[[17899,15420,17898]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baedc2c50-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17898,17897,17896]],[[17898,17896,17899]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baedd648a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeed149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17900,16197,17901]],[[17900,17901,17902]],[[17901,17903,17904]],[[17901,16197,17905]],[[17901,17905,17903]],[[17903,17905,17906]],[[17905,16197,16180]],[[17905,17907,17908]],[[17907,17905,16180]],[[17907,16180,17909]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee30a16-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9969,14460,9970]],[[9971,17890,17889]],[[17891,15729,15728]],[[9968,9971,17889]],[[17890,15729,17891]],[[17566,9968,17889]],[[14442,15729,17890]],[[17888,17891,15728]],[[14460,14442,9970]],[[17566,17888,15728]],[[14460,9969,17567]],[[17889,17888,17566]],[[14442,17890,9971]],[[9970,14442,9971]],[[17567,9968,17566]],[[9969,9968,17567]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee50621-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17910,17911,14746]],[[17912,17910,14734]],[[14732,17912,14734]],[[17910,14746,14747]],[[14732,17913,17912]],[[14732,14746,17911]],[[17913,14732,17911]],[[14734,17910,14747]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee6656b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17698,17812,17699]],[[17698,17697,17811]],[[17812,17698,17811]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee70214-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15292,15237,15301]],[[15237,15261,15301]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee86179-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13131,13041,13037]],[[13131,13037,13136]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeeea27e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16945,16092,16136]],[[16945,16136,16946]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef24c20-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11785,13125,13139]],[[11785,13139,11772]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef3f9c3-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1f849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17914,16270,16269]],[[17915,17916,16279]],[[17917,17918,17919]],[[17920,17870,16275]],[[16279,17916,16284]],[[16284,17916,16283]],[[16283,17916,16282]],[[16282,17916,16281]],[[16281,17916,16280]],[[16280,17916,16272]],[[16272,17921,16278]],[[16278,17921,16277]],[[16277,17921,16276]],[[17922,16275,16274]],[[16276,17921,16274]],[[17923,17920,16275]],[[17924,17923,16275]],[[17925,17924,16275]],[[17926,17925,16275]],[[17927,17926,16275]],[[17922,17927,16275]],[[17928,17922,16274]],[[17921,17928,16274]],[[17921,17929,17928]],[[17921,17930,17929]],[[17921,17931,17930]],[[17932,17933,17931]],[[17934,17935,17933]],[[17936,17937,17935]],[[17938,17939,17937]],[[17940,17941,17939]],[[17942,17943,17941]],[[17944,17945,17943]],[[17946,17947,17945]],[[17948,17949,17947]],[[17950,17951,17949]],[[17952,17953,17951]],[[17954,17955,17953]],[[17956,17957,17955]],[[17919,17958,17957]],[[17917,17919,17957]],[[16270,17915,16279]],[[17959,17917,17957]],[[17960,17959,17957]],[[17961,17960,17957]],[[17962,17961,17957]],[[17963,17962,17957]],[[17964,17963,17957]],[[17956,17964,17957]],[[17954,17956,17955]],[[17952,17954,17953]],[[17950,17952,17951]],[[17948,17950,17949]],[[17946,17948,17947]],[[17944,17946,17945]],[[17942,17944,17943]],[[17940,17942,17941]],[[17938,17940,17939]],[[17936,17938,17937]],[[17934,17936,17935]],[[17932,17934,17933]],[[17921,17932,17931]],[[17921,17965,17932]],[[17966,17967,17965]],[[17968,17966,17965]],[[17969,17968,17965]],[[17970,17969,17965]],[[17971,17972,17969]],[[17971,17973,17972]],[[17974,17971,17969]],[[17974,17975,17971]],[[17976,17974,17969]],[[17976,17977,17974]],[[17976,17978,17977]],[[17976,17979,17978]],[[17970,17976,17969]],[[17980,17981,17976]],[[17970,17980,17976]],[[17921,17970,17965]],[[17982,17983,17970]],[[17921,17982,17970]],[[17916,17921,16272]],[[16270,17984,17915]],[[16285,17985,16269]],[[16285,16286,16830]],[[16270,17986,17984]],[[17986,16270,17987]],[[17986,17987,17988]],[[16270,17914,17987]],[[16269,17985,17914]],[[16286,16287,16846]],[[17985,16285,17989]],[[17989,16285,17990]],[[17990,16285,16830]],[[16830,16286,16831]],[[16831,16286,16853]],[[16853,16286,16852]],[[16852,16286,16851]],[[16851,16286,16850]],[[16850,16286,16849]],[[16849,16286,16848]],[[16848,16286,16847]],[[16847,16286,16846]],[[16846,16287,16845]],[[16845,16287,16844]],[[16844,16287,16843]],[[16843,16287,16842]],[[16842,16287,16841]],[[16841,16287,16840]],[[16839,16840,17991]],[[16838,16839,17991]],[[16832,16838,17991]],[[16837,16832,17991]],[[16836,16837,17991]],[[17869,16835,16834]],[[16834,16836,17868]],[[16833,16835,17859]],[[17858,16833,17859]],[[17859,16835,17863]],[[17863,16835,17869]],[[17869,16834,17868]],[[17868,16836,17867]],[[17867,16836,17991]],[[17866,17867,17991]],[[17864,17866,17991]],[[17865,17864,17991]],[[17865,17991,17992]],[[16840,16287,17991]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef46f44-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17260,16287,17259]],[[17259,16287,16288]],[[17260,17991,16287]],[[17260,17261,17991]],[[17991,17261,17992]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baefcac78-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17046,17045,14305]],[[14285,17047,14305]],[[17048,15792,15785]],[[14305,17047,17046]],[[14285,15792,17048]],[[17045,17048,15785]],[[17047,14285,17048]],[[14305,17045,15785]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baefd21e7-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16026,16093,16114]],[[16093,16113,16114]],[[16113,16093,16111]],[[16111,16093,16112]],[[16112,16093,16106]],[[16106,16093,16110]],[[16110,16093,16107]],[[16107,16093,16109]],[[16109,16093,16108]],[[16108,16093,16103]],[[16103,16093,16104]],[[16104,16093,16105]],[[16105,16093,16099]],[[16099,16093,16100]],[[16100,16093,16102]],[[16102,16093,16101]],[[16101,16093,16098]],[[16098,16093,16096]],[[16096,16093,16097]],[[16097,16093,16095]],[[16095,16093,16080]],[[16080,16093,16025]],[[16093,16081,16025]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf005617-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16787,11877,16316]],[[16313,16315,17561]],[[17561,16315,15473]],[[11879,16785,16784]],[[16315,15472,15473]],[[11877,15472,16316]],[[17563,16314,16313]],[[16316,15472,16315]],[[17562,16313,17561]],[[17562,17563,16313]],[[11879,11877,16786]],[[16787,16786,11877]],[[16785,11879,16786]],[[16314,16787,16316]],[[16314,17563,16784]],[[16314,16784,16787]],[[17563,11879,16784]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf00f2b1-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15746,12536,17565]],[[15746,17565,15742]],[[12536,12538,17565]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf01b573-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16300,16299,16302]],[[16300,16302,16309]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf03b16f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16872,16974,16892]],[[16974,16871,16892]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf03b17b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17910,17912,17913]],[[17910,17913,17911]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf053805-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16000,15999,16021]],[[16000,16028,16344]],[[16056,16057,15910]],[[16973,16028,16891]],[[16890,16891,16028]],[[16889,16890,16028]],[[16888,16889,16051]],[[16887,16888,16051]],[[16886,16887,16051]],[[16885,16886,16051]],[[16884,16885,16051]],[[16883,16884,16051]],[[16882,16883,15910]],[[16881,16882,15910]],[[16880,16881,15910]],[[16879,16880,15910]],[[16878,16879,15910]],[[16877,16878,15910]],[[16876,16877,15910]],[[16875,15910,15909]],[[16874,15910,16875]],[[16874,16876,15910]],[[15910,16883,16051]],[[16345,16028,16973]],[[15910,16055,16056]],[[15910,16053,16055]],[[15910,16054,16053]],[[15910,16052,16054]],[[16051,16889,16028]],[[15910,16050,16052]],[[16345,16344,16028]],[[16050,15910,16051]],[[16028,16000,16021]],[[16026,16021,16894]],[[16093,16026,15881]],[[16136,16093,16972]],[[16946,16136,16972]],[[16972,16093,15881]],[[15856,16972,15881]],[[16026,16894,15881]],[[16021,16896,16894]],[[16021,15999,16896]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf05864c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2838,3009,3011]],[[16661,16662,1074]],[[2842,16653,2848]],[[16653,2854,2856]],[[16653,1092,2854]],[[16662,16663,1074]],[[16664,16049,1074]],[[1091,16652,1090]],[[1090,16652,1089]],[[1089,16652,1088]],[[1088,16652,1087]],[[1087,16652,1086]],[[1086,16652,1085]],[[1085,16654,1084]],[[1084,16654,1082]],[[1082,16654,1081]],[[1081,16655,1080]],[[1080,16655,1079]],[[1079,16655,1078]],[[1078,16655,1077]],[[16655,1075,1076]],[[16655,1074,1075]],[[1077,16655,1076]],[[16665,16057,16049]],[[16664,16665,16049]],[[16663,16664,1074]],[[1092,16652,1091]],[[2848,16653,2856]],[[2838,3011,2842]],[[1074,16660,16661]],[[1074,16658,16660]],[[1074,16659,16658]],[[1074,16657,16659]],[[1074,16656,16657]],[[1074,16655,16656]],[[1081,16654,16655]],[[1085,16652,16654]],[[1092,16653,16652]],[[6859,6860,16649]],[[16651,6859,16649]],[[16758,6858,16651]],[[16651,6858,6859]],[[16759,16758,16651]],[[3007,3006,16759]],[[3006,6818,16759]],[[16651,3007,16759]],[[16653,3007,16651]],[[16653,3011,3007]],[[16653,2842,3011]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf067030-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14738,14237,14748]],[[14237,14234,14748]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf06be8c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15421,11769,15442]],[[11769,11793,15442]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf084513-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16085,16094,16091]],[[16094,16135,16091]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf0b7934-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4b249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16777,8312,17806]],[[17806,8312,17887]],[[8356,16777,8353]],[[17886,17887,8312]],[[17885,17886,8312]],[[17884,17885,8312]],[[17883,17884,8312]],[[17882,17883,8312]],[[17881,17882,8312]],[[17880,17881,8312]],[[17879,17880,8312]],[[17878,17879,8312]],[[17877,17878,8312]],[[17871,17877,8312]],[[17876,17871,8312]],[[17875,17876,8312]],[[17874,17875,8312]],[[17873,17874,8312]],[[17872,17873,8312]],[[16082,17872,8312]],[[8312,16777,8336]],[[8336,16777,8333]],[[8335,8336,8334]],[[8336,8333,8334]],[[8353,16777,783]],[[8333,16777,8332]],[[8332,16777,8356]],[[8355,8356,8354]],[[8356,8353,8354]],[[783,16777,782]],[[8353,783,747]],[[16777,16778,841]],[[842,16777,841]],[[781,782,779]],[[781,779,780]],[[782,16777,779]],[[779,16777,778]],[[778,16777,845]],[[844,845,843]],[[845,842,843]],[[845,16777,842]],[[841,16778,548]],[[535,841,548]],[[7323,16778,7322]],[[547,548,546]],[[548,545,546]],[[548,16778,545]],[[545,16778,544]],[[544,16778,7299]],[[7298,7299,7296]],[[7298,7296,7297]],[[7299,16778,7296]],[[7296,7323,7294]],[[7296,16778,7323]],[[7534,16778,7533]],[[7321,7322,7320]],[[7322,7319,7320]],[[7322,16778,7319]],[[7319,16778,7317]],[[7317,16778,7537]],[[7536,7537,7534]],[[7536,7534,7535]],[[7537,16778,7534]],[[7533,16778,7504]],[[7515,7533,7504]],[[7504,16778,7509]],[[7449,7509,16760]],[[16764,7475,7476]],[[7476,7449,16760]],[[7474,7475,7473]],[[7473,7475,7472]],[[16764,7471,7472]],[[7472,7475,16764]],[[7470,7471,7469]],[[16764,7468,7471]],[[7469,7471,7468]],[[16764,7467,7468]],[[7466,7467,7464]],[[17857,7464,7467]],[[7465,7466,7464]],[[17857,7463,7464]],[[7462,7463,7461]],[[17857,7460,7463]],[[7461,7463,7460]],[[17857,7459,7460]],[[16618,7459,17857]],[[17857,7467,16764]],[[7476,16760,16764]],[[7509,16778,16760]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf3f295d-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3243,3242,3234]],[[3243,3234,3398]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"baf3f2966-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef663a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5950,5945,17993]],[[5945,17994,17993]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"bbdc52a89-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"stuw","bronhouder":"W0372","creationdate":"","inonderzoek":"","lokaalid":"G0503.032e68f09ead49cce0532ee22091b28c","lv_publicatiedatum":"","namespace":"NL.IMGeo","plus_status":"","plus_type":"waardeOnbekend","relatievehoogteligging":"","tijdstipregistratie":""},"geometry":[{"boundaries":[[[17076,17634,17077]],[[17634,17635,17077]],[[17080,17636,17076]],[[17076,17636,17634]],[[17637,17081,17635]],[[17635,17081,17077]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"bdce6a385-fd58-11e5-8acc-1fc21a78c5fd":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.97986f98d554454a8a839c15b513a8e4","lv_publicatiedatum":"2015-11-30T11:11:19.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2015-11-27T10:24:41.000"},"geometry":[{"boundaries":[[[17995,17996,17997]],[[17998,5486,4891]],[[17999,18000,4891]],[[17996,5486,17998]],[[18000,18001,4891]],[[17997,11244,11217]],[[11244,17999,4891]],[[11244,18002,17999]],[[18003,18004,17998]],[[11217,5486,18005]],[[18001,17998,4891]],[[18001,18002,18006]],[[18000,18002,18001]],[[18000,17999,18002]],[[18001,18003,17998]],[[18006,11244,18004]],[[18007,17995,17997]],[[18008,18004,17997]],[[18009,17995,18007]],[[17996,18010,17997]],[[18005,18007,11217]],[[18005,18009,18007]],[[18010,17996,17998]],[[18009,5486,17996]],[[17995,18009,17996]],[[18005,5486,18009]],[[17998,18008,18010]],[[18004,11244,17997]],[[17998,18004,18008]],[[18003,18001,18006]],[[18003,18006,18004]],[[18002,11244,18006]],[[18007,17997,11217]],[[18010,18008,17997]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"be252b118-2d37-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[18011,18012,18013]],[[18011,18013,18014]],[[18015,18016,18011]],[[18011,18016,18012]],[[18017,18015,18014]],[[18014,18015,18011]],[[18018,18017,18013]],[[18013,18017,18014]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"be2539be1-2d37-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0986649cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:57:13.000"},"geometry":[{"boundaries":[[[4964,18019,18012]],[[4964,18020,11518]],[[4964,18012,18020]],[[18019,18013,18012]],[[18019,18021,18013]],[[18019,18022,18021]],[[18021,18022,30]],[[28,30,5621]],[[28,18023,29]],[[18023,28,5621]],[[30,18022,5621]],[[4965,4964,11518]],[[11511,11518,18020]],[[18016,11521,18012]],[[18012,11521,11511]],[[18012,11511,18020]],[[18024,18018,18021]],[[18021,18018,18013]],[[15,18024,30]],[[30,18024,18021]],[[13,15,28]],[[28,15,30]],[[11,13,27]],[[27,13,29]],[[29,13,28]],[[5643,27,18023]],[[18023,27,29]],[[5621,5643,18023]],[[4804,5621,18022]],[[4805,4804,18019]],[[18019,4804,18022]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"bea630875-00b8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09d6f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[18025,17793,17261]],[[18025,17263,17793]],[[17793,18026,17261]],[[18027,18028,18029]],[[18030,18026,18031]],[[18032,18033,18034]],[[18028,18030,18035]],[[18033,18027,18036]],[[18034,18033,18036]],[[18036,18027,18029]],[[18029,18028,18035]],[[18035,18030,18031]],[[18031,18026,18037]],[[18037,18026,18038]],[[18038,18026,17793]],[[17248,17263,18025]],[[17247,17263,17248]],[[17250,18025,17261]],[[17248,18025,17250]],[[17992,17261,18026]],[[17865,18026,18030]],[[17992,18026,17865]],[[17860,18030,18028]],[[17865,18030,17860]],[[17862,18028,18027]],[[17860,18028,17862]],[[15954,18029,18035]],[[15953,18029,15954]],[[17812,18035,18031]],[[15954,18035,17812]],[[17699,18031,18037]],[[17812,18031,17699]],[[17695,18037,18038]],[[17699,18037,17695]],[[17696,18038,17793]],[[17695,18038,17696]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"bea632f90-00b8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09df249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17797,18039,18040]],[[17797,16206,18039]],[[18039,16202,16264]],[[16268,18041,1051]],[[16202,18039,16206]],[[16206,17797,16205]],[[16205,17797,16268]],[[16203,16205,16268]],[[16261,16203,16256]],[[16255,16261,16256]],[[16203,16268,16256]],[[17797,18041,16268]],[[16262,16256,16268]],[[1045,1051,18041]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"bedab6302-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"W0372","class":"waterloop","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff33a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[18042,17361,17362]],[[18043,18044,17171]],[[16268,1045,17171]],[[1054,17170,17171]],[[1045,1051,17171]],[[17171,1051,1054]],[[17797,1046,1045]],[[17801,17559,17560]],[[1046,17798,17560]],[[17558,17559,17770]],[[17774,17557,17773]],[[17556,17557,17776]],[[17778,17554,17555]],[[17555,17556,17777]],[[17780,17552,17553]],[[17553,17554,17779]],[[17780,17551,17552]],[[17780,17550,17551]],[[17781,17549,17550]],[[17781,17548,17549]],[[17781,17547,17548]],[[17781,17546,17547]],[[17783,17545,17546]],[[17784,17544,17545]],[[17785,17543,17544]],[[17786,17542,17543]],[[17787,17541,17542]],[[17788,17540,17541]],[[17788,17539,17540]],[[17789,17538,17539]],[[17790,17537,17538]],[[17536,17537,17790]],[[17265,17534,17535]],[[17535,17536,17264]],[[17081,17532,17534]],[[17533,17532,17637]],[[17637,17532,17081]],[[17081,17534,17082]],[[17082,17534,17265]],[[17265,17535,17264]],[[17264,17536,17263]],[[17262,17264,17263]],[[17263,17536,17793]],[[17793,17536,17792]],[[17792,17536,17791]],[[17791,17536,17790]],[[17790,17538,17789]],[[17789,17539,17788]],[[17788,17541,17787]],[[17787,17542,17786]],[[17786,17543,17785]],[[17785,17544,17784]],[[17784,17545,17783]],[[17783,17546,17782]],[[17782,17546,17781]],[[17781,17550,17780]],[[17780,17553,17779]],[[17779,17554,17778]],[[17778,17555,17777]],[[18045,18046,17174]],[[17777,17556,17776]],[[17776,17557,17774]],[[17776,17774,17775]],[[17557,17558,17772]],[[17773,17557,17772]],[[17772,17558,17771]],[[17771,17558,17769]],[[17769,17558,17770]],[[17371,17372,17171]],[[17770,17559,17801]],[[17801,17560,17800]],[[17800,17560,17798]],[[18047,18048,18042]],[[17799,17800,17798]],[[1046,17797,17798]],[[1045,16268,17797]],[[18049,17178,17179]],[[16268,17171,16266]],[[16266,17171,17372]],[[16267,16266,17372]],[[17370,17371,17171]],[[17369,17370,17171]],[[17368,17369,17171]],[[17171,17367,17368]],[[17171,17366,17367]],[[17171,17365,17366]],[[17171,18050,17365]],[[17365,18051,17364]],[[18052,17180,17181]],[[17363,17364,18053]],[[17362,17363,18054]],[[18042,17360,17361]],[[18042,17359,17360]],[[17356,17358,17359]],[[17356,17357,17358]],[[18055,17175,17176]],[[17355,17357,17356]],[[17174,17175,18045]],[[17356,17359,18042]],[[17174,18046,17173]],[[18042,17362,18054]],[[18056,18047,18042]],[[18054,18056,18042]],[[18057,18054,17363]],[[18053,18057,17363]],[[18051,18053,17364]],[[18050,18051,17365]],[[18058,18050,17171]],[[18059,18058,17171]],[[17172,18060,17171]],[[17171,18061,18059]],[[17171,18062,18061]],[[17171,18063,18062]],[[17171,18064,18063]],[[17171,18044,18064]],[[17172,17173,18046]],[[17177,18065,17176]],[[17171,18060,18043]],[[17177,17178,18066]],[[18055,18045,17175]],[[18060,18067,18068]],[[18060,17172,18067]],[[17179,17180,18049]],[[18046,18067,17172]],[[18065,18055,17176]],[[18069,18065,17177]],[[18069,17177,18066]],[[18066,17178,18049]],[[18049,17180,18052]],[[17183,17181,17182]],[[18070,18052,18071]],[[18072,18071,18073]],[[18074,18072,18073]],[[18075,18074,18073]],[[18076,18077,18078]],[[18079,18076,18080]],[[18081,18079,18082]],[[18083,18081,18084]],[[18081,18085,18084]],[[18081,18082,18085]],[[18079,18080,18082]],[[18077,18086,18087]],[[18076,18078,18080]],[[18077,18087,18078]],[[18086,18088,18089]],[[18086,18089,18087]],[[18088,18075,18089]],[[18075,18090,18089]],[[18075,18073,18090]],[[18071,17185,18073]],[[18071,17184,17185]],[[18071,18052,17183]],[[18071,17183,17184]],[[18052,17181,17183]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"bedabd859-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"W0372","class":"waterloop","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.016d65723c70442d8abf815e2dc165cd","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-04-10T04:15:11.000"},"geometry":[{"boundaries":[[[17636,17080,17254]],[[17636,17256,17531]],[[19,18,1]],[[17530,2,17529]],[[17528,2,20]],[[17528,19,1]],[[6,4,5]],[[5,4,7]],[[11,7,10]],[[18091,18017,18092]],[[13,11,18093]],[[15,13,14]],[[18024,18017,18018]],[[14,18024,15]],[[18092,18017,18024]],[[18016,18015,11521]],[[11521,18015,18094]],[[11521,18095,11522]],[[11521,18096,18095]],[[11521,18097,18096]],[[18096,18098,18099]],[[18098,18096,18097]],[[18098,18097,18100]],[[18092,18024,14]],[[11521,18101,18097]],[[11521,18094,18101]],[[18015,18091,18094]],[[18094,18091,18102]],[[18015,18017,18091]],[[4,9,7]],[[16,3,8]],[[18092,14,18103]],[[3,1,8]],[[13,18093,14]],[[11,10,18093]],[[7,9,10]],[[16,17,9]],[[4,16,9]],[[4,3,16]],[[17258,20,17257]],[[1,18,8]],[[2,17530,17257]],[[20,19,17528]],[[17531,17256,17530]],[[2,17257,20]],[[17530,17256,17257]],[[17636,17255,17256]],[[17636,17254,17255]],[[17254,17080,17079]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"bfce80032-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18104,18105,18106]],[[18104,18106,18107]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce91150-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[5643,5642,27]],[[5642,26,27]],[[5642,16769,26]],[[7,11,26]],[[26,11,27]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce93872-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18108,18109,18110]],[[18108,18110,18111]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce95fa3-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9780,5952,18110]],[[9780,16979,9773]],[[18110,18109,17807]],[[17994,18112,18113]],[[17807,18113,17808]],[[17808,18113,18114]],[[18114,18115,18116]],[[18114,18117,18115]],[[18114,18113,18117]],[[18117,18118,18119]],[[18117,18120,18118]],[[18117,18121,18120]],[[18120,18121,18122]],[[18122,18121,18123]],[[18123,18121,18124]],[[18117,18113,18121]],[[18121,18113,18125]],[[18125,18126,18127]],[[18125,18128,18126]],[[18125,18129,18128]],[[18128,18130,18131]],[[18131,18130,18132]],[[18128,18129,18130]],[[18130,18129,18133]],[[18125,18113,18129]],[[17994,5945,5944]],[[17994,5944,18112]],[[18108,17993,17994]],[[17993,18111,5950]],[[18113,18109,17994]],[[17807,18109,18113]],[[17807,16979,18110]],[[9780,18110,16979]],[[18111,17993,18108]],[[5952,18111,18110]],[[5952,5950,18111]],[[18109,18108,17994]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea2371-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9282,9545,3440]],[[9545,9503,3440]],[[3950,17007,3949]],[[3949,17009,3948]],[[3948,17010,3458]],[[17003,3440,3478]],[[17000,3478,3538]],[[3478,17000,17003]],[[9503,9770,3440]],[[3903,16783,17013]],[[3458,17000,3475]],[[3951,17006,3950]],[[9278,9282,3440]],[[9274,9278,3440]],[[9273,9274,3440]],[[17003,9273,3440]],[[17003,9272,9273]],[[17003,9271,9272]],[[17003,9269,9271]],[[3437,17004,3951]],[[9269,17003,9265]],[[9264,9265,17003]],[[9263,9264,17003]],[[9262,9263,17003]],[[9261,9262,17003]],[[9258,9261,17003]],[[9257,9258,17003]],[[9256,9257,17003]],[[9254,17003,9249]],[[9249,17003,9247]],[[3475,17000,3538]],[[9254,9256,17003]],[[3437,3434,17012]],[[17000,3458,17010]],[[17010,3948,17009]],[[17009,3949,17007]],[[17007,3950,17006]],[[17006,3951,17004]],[[17004,3437,17012]],[[17012,3434,17013]],[[18134,16780,16783]],[[18135,18134,16783]],[[18136,18135,16783]],[[18137,18136,16783]],[[18138,18137,16783]],[[18139,18138,16783]],[[18140,18139,16783]],[[18141,18140,16783]],[[18142,18141,16783]],[[18143,18142,16783]],[[18144,18143,16783]],[[18145,18144,16783]],[[18146,18145,16783]],[[18147,18146,16783]],[[18148,18147,16783]],[[18149,18148,16783]],[[18150,18149,16783]],[[18151,18150,16783]],[[18152,18151,16783]],[[18153,18152,16783]],[[18154,18153,16783]],[[3903,18154,16783]],[[3903,18155,18154]],[[3903,18156,18155]],[[3903,18157,18156]],[[3903,18158,18157]],[[18159,18160,18158]],[[18161,18159,18158]],[[18161,18162,18159]],[[18161,18163,18162]],[[18164,18161,18158]],[[18165,18166,18161]],[[18167,18165,18161]],[[18164,18167,18161]],[[18164,18168,18167]],[[18169,18164,18158]],[[18169,18170,18164]],[[18169,18171,18170]],[[18172,18169,18158]],[[18173,18174,18169]],[[18173,18175,18174]],[[18176,18173,18169]],[[18176,18177,18173]],[[18178,18176,18169]],[[18178,18179,18176]],[[18178,18180,18179]],[[18178,18181,18180]],[[18172,18178,18169]],[[18182,18183,18178]],[[18178,18172,18182]],[[18184,18182,18172]],[[18172,18158,3903]],[[3434,3903,17013]],[[18185,18172,3903]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea4a8a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17019,9243,9247]],[[9247,17003,17002]],[[17019,9247,17002]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea70b2-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-11-03","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.c76f5d580cb14842ba0da04e1433d2ef","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18186,18187,6423]],[[18188,5944,5943]],[[18188,18112,5944]],[[5953,18189,5943]],[[18190,18188,5943]],[[18191,18190,5943]],[[18192,18191,5943]],[[18193,18192,5943]],[[18194,18193,5943]],[[18195,18194,5943]],[[18189,18195,5943]],[[18196,18189,5953]],[[18197,18196,5953]],[[18198,18197,5953]],[[18199,18198,5953]],[[18200,18199,5953]],[[18201,18200,5953]],[[18202,18201,5953]],[[18203,18202,5953]],[[18204,18203,5953]],[[18205,18204,5953]],[[18206,18205,5953]],[[18207,18206,5953]],[[18208,18207,5953]],[[18209,18208,5953]],[[6423,18209,5953]],[[6423,18187,18209]],[[6176,18186,6423]],[[18210,18211,18186]],[[6176,18210,18186]],[[18212,5937,18107]],[[5937,18210,6176]],[[18104,5932,18105]],[[18212,18210,5937]],[[18213,18212,18214]],[[18214,18212,18215]],[[18216,18214,18215]],[[18217,18216,18215]],[[18215,18212,18218]],[[18219,18215,18220]],[[18221,18219,18220]],[[18220,18215,18218]],[[18222,18220,18218]],[[18218,18212,18223]],[[18224,18218,18225]],[[18226,18224,18225]],[[18225,18218,18227]],[[18228,18225,18227]],[[18227,18218,18229]],[[18230,18227,18229]],[[18229,18218,18223]],[[18231,18229,18223]],[[18232,18231,18223]],[[18223,18212,16762]],[[18233,18223,16762]],[[18234,18233,16762]],[[16762,18212,18107]],[[18106,18105,5932]],[[18106,5932,18235]],[[17856,18106,18235]],[[18104,5937,5932]],[[16763,18106,17856]],[[16763,18107,18106]],[[16763,16762,18107]],[[18107,5937,18104]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea97e3-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16769,25,26]],[[5,7,25]],[[25,7,26]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea97e9-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8249cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16400,16390,18236]],[[16392,16400,18236]],[[16398,16392,18236]],[[18237,16394,18236]],[[18236,16399,16398]],[[18236,16394,16399]],[[18237,16397,16394]],[[18237,11378,11380]],[[16397,18237,11380]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceae630-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0c3449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18238,3349,3266]],[[18238,3220,3219]],[[18238,3266,3220]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceb347d-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eed11849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18236,16390,16770]],[[16403,16382,16770]],[[16384,16403,16770]],[[16402,16384,16770]],[[16386,16402,16770]],[[16401,16386,16770]],[[16388,16401,16770]],[[16390,16388,16770]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcebaa0a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef172349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9284,9226,4220]],[[9253,9252,4009]],[[9221,9219,3966]],[[4022,4026,9198]],[[9298,4013,3980]],[[4034,4033,9189]],[[9339,3298,3301]],[[9246,3301,3973]],[[3301,3302,3973]],[[4016,4015,9461]],[[9225,9396,4181]],[[4015,4019,9469]],[[9339,9244,3298]],[[4182,9515,4296]],[[9461,4015,9469]],[[3973,4296,9236]],[[9253,4009,4008]],[[3307,4453,4801]],[[3320,4360,4365]],[[4355,4350,3335]],[[4354,4355,3335]],[[3327,4350,4356]],[[5461,5465,3275]],[[5476,5461,3348]],[[3406,5471,5656]],[[3352,5896,5847]],[[5912,5612,3402]],[[5540,5912,3402]],[[5538,5540,3378]],[[5609,5538,3378]],[[5693,5609,3375]],[[5632,5693,3376]],[[5633,5632,3256]],[[5618,5633,3257]],[[5619,5618,18239]],[[5619,18239,18237]],[[5618,3257,18239]],[[5633,3256,3257]],[[3249,5890,5575]],[[5632,3376,3256]],[[5612,5890,3429]],[[5574,3404,5575]],[[3376,5693,3375]],[[5609,3378,3375]],[[5574,5896,3241]],[[3429,3402,5612]],[[3378,5540,3402]],[[5848,3353,5847]],[[3351,5655,5645]],[[5890,3249,3429]],[[3413,5479,5472]],[[5575,3404,3249]],[[5848,5479,3353]],[[5471,3415,5472]],[[3404,5574,3241]],[[5896,3352,3241]],[[5656,5655,3407]],[[3413,3353,5479]],[[3352,5847,3353]],[[3415,3413,5472]],[[5651,3219,5645]],[[5471,3406,3415]],[[5656,3407,3406]],[[5651,5649,3349]],[[5655,3351,3407]],[[5649,5476,3270]],[[5645,3219,3351]],[[5651,18238,3219]],[[3348,3270,5476]],[[5651,3349,18238]],[[3341,5468,4343]],[[5649,3270,3349]],[[5465,5468,3347]],[[4342,3341,4343]],[[3346,4351,4352]],[[5461,3273,3348]],[[4342,4351,3346]],[[4353,3370,4352]],[[3273,5461,3275]],[[5465,3347,3275]],[[4353,4354,3335]],[[3287,4800,4404]],[[3347,5468,3341]],[[4342,3346,3341]],[[4356,4360,3323]],[[4800,3320,4365]],[[3346,4352,3370]],[[4453,3317,4404]],[[3370,4353,3335]],[[3323,3327,4356]],[[3335,4350,3327]],[[4681,3307,4801]],[[3312,4802,4768]],[[4360,3320,3323]],[[4681,4802,3312]],[[3320,4800,3287]],[[4404,3317,3287]],[[4453,3288,3317]],[[4453,3307,3288]],[[4768,4477,3309]],[[4681,3312,3307]],[[4477,4340,3309]],[[4768,3311,3312]],[[4340,3983,3303]],[[4768,3309,3311]],[[4340,3310,3309]],[[4340,3303,3310]],[[3983,3973,3302]],[[3303,3983,3305]],[[3305,3983,3300]],[[3300,3983,3304]],[[3304,3983,3302]],[[3966,3965,9221]],[[9244,3299,3298]],[[9246,9339,3301]],[[4181,9231,4182]],[[3973,9236,9246]],[[9284,4220,4000]],[[4296,9515,9236]],[[4181,4220,9225]],[[9396,9231,4181]],[[9515,4182,9231]],[[3996,9379,4000]],[[9226,9225,4220]],[[4009,9260,3996]],[[9379,9284,4000]],[[9295,9379,3996]],[[9260,9295,3996]],[[3966,9219,4008]],[[4009,9252,9260]],[[3965,4014,9220]],[[4013,9306,4014]],[[4008,9223,9253]],[[9299,4017,4018]],[[4008,9218,9223]],[[3980,4017,9297]],[[9218,4008,9219]],[[9306,9220,4014]],[[9221,3965,9220]],[[9212,9306,4013]],[[4011,9462,4018]],[[4013,9298,9212]],[[3980,9297,9298]],[[4011,4016,9461]],[[9297,4017,9299]],[[9299,4018,9462]],[[9462,4011,9461]],[[9469,4019,9185]],[[9185,4019,4020]],[[9186,9185,4020]],[[9197,9186,4021]],[[4026,9192,9198]],[[9198,9197,4022]],[[4058,9190,9192]],[[4307,4046,9183]],[[9190,4053,9191]],[[4053,9189,9191]],[[4060,9170,9180]],[[4046,9179,9183]],[[4029,9171,9170]],[[9169,9171,9774]],[[9318,9169,9777]],[[9778,9318,9776]],[[9776,9318,9777]],[[9777,9169,9774]],[[9774,9171,4029]],[[9775,9774,4028]],[[9771,9775,4028]],[[9772,9771,4028]],[[9772,4028,4308]],[[9180,9179,4045]],[[4033,9187,9189]],[[4028,9774,4029]],[[9182,4307,9183]],[[4029,9170,4060]],[[9180,4057,4060]],[[9182,9187,4307]],[[4057,9180,4045]],[[4045,9179,4046]],[[4033,4307,9187]],[[4053,4034,9189]],[[4054,4053,9190]],[[4058,4054,9190]],[[4026,4058,9192]],[[4022,9197,4021]],[[4021,9186,4020]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcec6cc0-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9318,18240,9178]],[[18241,9778,9773]],[[18240,9318,18242]],[[3510,3737,18240]],[[3511,3510,18180]],[[3903,3511,18185]],[[18185,3511,18172]],[[18172,3511,18184]],[[18184,3511,18182]],[[18182,3511,18183]],[[18183,3511,18178]],[[18178,3511,18181]],[[18181,3511,18180]],[[18180,3510,18179]],[[18179,3510,18176]],[[18176,3510,18177]],[[18177,3510,18173]],[[18173,3510,18175]],[[18175,3510,18174]],[[18174,3510,18240]],[[18169,18174,18240]],[[18171,18169,18240]],[[18170,18171,18240]],[[18164,18170,18240]],[[18168,18164,18240]],[[18165,18167,18240]],[[18166,18165,18243]],[[18161,18166,18243]],[[18163,18161,18243]],[[18162,18163,18243]],[[18159,18162,18243]],[[18160,18159,18243]],[[18158,18160,18243]],[[18157,18158,18243]],[[18156,18157,18243]],[[18155,18156,18154]],[[18154,18156,18153]],[[18153,18156,18151]],[[18152,18153,18151]],[[18151,18156,18137]],[[18150,18151,18148]],[[18149,18150,18148]],[[18148,18151,18146]],[[18147,18148,18146]],[[18146,18151,18137]],[[18145,18146,18142]],[[18144,18145,18143]],[[18143,18145,18142]],[[18142,18146,18140]],[[18141,18142,18140]],[[18140,18146,18137]],[[18139,18140,18137]],[[18138,18139,18137]],[[18137,18156,16780]],[[18136,18137,16780]],[[18135,18136,16780]],[[18134,18135,16780]],[[16780,18156,16782]],[[18242,9318,9778]],[[16979,18241,9773]],[[16782,18241,16979]],[[16782,18156,18243]],[[16782,18243,18241]],[[18167,18168,18240]],[[18165,18240,18243]],[[3737,9178,18240]],[[18241,18242,9778]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcece247-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[3252,16804,3257]],[[16804,16861,3257]],[[3257,16861,18239]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcedf371-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef173a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[4089,5923,4338]],[[4087,4338,5941]],[[6301,6060,4270]],[[5931,3963,4084]],[[6029,6302,4074]],[[6060,4077,4270]],[[9783,4062,9785]],[[5986,5985,4067]],[[9786,4023,5948]],[[9781,9772,4308]],[[5951,5952,9779]],[[4023,4025,5948]],[[4062,4023,9785]],[[4062,9781,4308]],[[4085,4086,5927]],[[9783,9781,4062]],[[5985,6265,4066]],[[5974,4069,4075]],[[6301,4270,3963]],[[9785,4023,9786]],[[4086,4087,5927]],[[9784,9786,5949]],[[9782,9784,5949]],[[9779,9782,5951]],[[9779,5952,9780]],[[5949,5951,9782]],[[4064,5960,4025]],[[5992,4063,4065]],[[9786,5948,5949]],[[4064,4063,5956]],[[5960,5946,4025]],[[5948,4025,5946]],[[4027,5992,4065]],[[4064,6282,5960]],[[5985,4066,4067]],[[4064,5956,6282]],[[4027,4066,6265]],[[5956,4063,5992]],[[5992,4027,6264]],[[4027,6265,6264]],[[4067,4069,5986]],[[4074,6302,4075]],[[4077,6029,4074]],[[5986,4069,5974]],[[5974,4075,6302]],[[6060,6029,4077]],[[4085,5929,4084]],[[5931,6301,3963]],[[4084,5929,5931]],[[4085,5928,5929]],[[4085,5927,5928]],[[4087,5941,5927]],[[4338,5923,5941]],[[5923,4089,5922]],[[5922,4089,5919]],[[5919,4089,18244]],[[5920,5919,18245]],[[5918,5920,18246]],[[5918,18246,5994]],[[5920,18247,18246]],[[5920,18245,18247]],[[5919,18248,18245]],[[18249,5919,18250]],[[5919,18251,18248]],[[4089,4088,18252]],[[18251,5919,18253]],[[18253,5919,18254]],[[18254,5919,18249]],[[18250,5919,18255]],[[18255,5919,18256]],[[18256,5919,18244]],[[18244,4089,18257]],[[18257,4089,18258]],[[18258,4089,18259]],[[18259,4089,18252]],[[18252,4088,18260]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcee1a90-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18261,32,31]],[[18261,31,17870]],[[10,9,32]],[[32,9,31]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceeb72a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18239,16861,18237]],[[16861,11378,18237]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceeb730-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eed11b49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16826,3294,16870]],[[3294,3297,16870]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceede58-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229c49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18187,18186,18211]],[[18187,16775,18209]],[[18209,18207,18208]],[[18209,18192,18207]],[[18207,18204,18206]],[[18206,18204,18205]],[[18207,18201,18204]],[[18204,18202,18203]],[[18204,18201,18202]],[[18207,18195,18201]],[[18201,18198,18200]],[[18200,18198,18199]],[[18201,18195,18198]],[[18198,18195,18197]],[[18197,18189,18196]],[[18197,18195,18189]],[[18207,18194,18195]],[[18207,18192,18194]],[[18194,18192,18193]],[[18209,18188,18192]],[[18192,18190,18191]],[[18192,18188,18190]],[[18209,18112,18188]],[[18209,18113,18112]],[[18113,18209,16775]],[[18129,18113,16775]],[[18133,18129,16775]],[[18130,18133,16775]],[[18132,18130,16775]],[[18131,18132,16775]],[[18128,18131,16775]],[[18126,18128,16775]],[[18127,18126,16775]],[[18125,18127,16775]],[[18121,18125,16775]],[[18124,18121,16775]],[[18123,18124,16775]],[[18122,18123,16775]],[[18120,18122,16775]],[[18118,18120,16775]],[[18119,18118,16775]],[[18117,18119,16775]],[[18115,18117,16775]],[[18116,18115,16775]],[[18114,18116,16775]],[[18114,16775,17808]],[[18187,16776,16775]],[[18218,18224,16761]],[[18234,16762,16761]],[[18233,18234,16761]],[[18223,18233,16761]],[[18232,18223,16761]],[[18231,18232,16761]],[[18229,18231,16761]],[[18230,18229,16761]],[[18227,18230,16761]],[[18228,18227,16761]],[[18225,18228,16761]],[[18226,18225,16761]],[[18224,18226,16761]],[[16776,18213,16761]],[[18222,18218,16761]],[[18211,18212,16776]],[[16761,18220,18222]],[[16761,18221,18220]],[[16761,18219,18221]],[[16761,18215,18219]],[[16761,18217,18215]],[[16761,18216,18217]],[[16761,18214,18216]],[[16761,18213,18214]],[[16776,18212,18213]],[[18211,18210,18212]],[[18187,18211,16776]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcef52cd-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fb49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[3297,3299,16870]],[[3299,16869,16870]],[[3299,9244,16869]],[[16869,9243,17019]],[[9243,16869,9244]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcf03dd2-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef173949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[5641,5619,18237]],[[5641,18236,5622]],[[5622,16770,5623]],[[5623,16770,5642]],[[5642,16770,16769]],[[5622,18236,16770]],[[5641,18237,18236]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcf03dd8-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18242,18241,18243]],[[18242,18243,18240]]],"lod":"1","type":"MultiSurface"}],"type":"Road"}},"metadata":{"geographicalExtent":[84616.468,447422.999,-0.452,85140.83899999999,447750.636,16.846],"referenceSystem":"https://www.opengis.net/def/crs/EPSG/0/7415","citymodelIdentifier":"86a36ef9-a43e-4f87-8eb9-daa993d71355","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"delft.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{"WaterBody":{"uniqueFeatureCount":3,"aggregateFeatureCount":3,"presentLoDs":{"1":3}},"Road":{"uniqueFeatureCount":143,"aggregateFeatureCount":143,"presentLoDs":{"1":143}},"LandUse":{"uniqueFeatureCount":81,"aggregateFeatureCount":81,"presentLoDs":{"1":81}},"Building":{"uniqueFeatureCount":160,"aggregateFeatureCount":160,"presentLoDs":{"1":160}},"PlantCover":{"uniqueFeatureCount":126,"aggregateFeatureCount":126,"presentLoDs":{"1":126}},"Bridge":{"uniqueFeatureCount":3,"aggregateFeatureCount":3,"presentLoDs":{"1":3}},"+GenericCityObject":{"uniqueFeatureCount":54,"aggregateFeatureCount":54,"presentLoDs":{"1":54}}},"presentLoDs":{"1":570},"thematicModels":["WaterBody","Road","LandUse","Building","PlantCover","Bridge","+GenericCityObject"]},"type":"CityJSON","version":"1.1","vertices":[[411283,25181,572],[412163,27032,582],[411755,27133,582],[413571,26683,582],[418114,25557,582],[418511,26894,582],[418448,26903,582],[423464,25667,582],[412434,22752,582],[421953,19972,582],[423347,19595,582],[424894,25312,582],[423565,19536,572],[425113,25258,582],[423782,19478,582],[425331,25204,582],[417108,21489,582],[417055,21296,582],[411229,23077,582],[411030,23131,582],[410823,23187,582],[413571,26683,1562],[412163,27032,1562],[418114,25557,1632],[418448,26903,1812],[418511,26894,1812],[423464,25667,1892],[424894,25312,1902],[425113,25258,1982],[424894,25312,1962],[425331,25204,1962],[421953,19972,1712],[423347,19595,1702],[417055,21296,1842],[417108,21489,1852],[412434,22752,1872],[411229,23077,1882],[411030,23131,2422],[411229,23077,2292],[410823,23187,2422],[393347,59669,6452],[416101,61295,6452],[424165,81601,6452],[404992,53462,6452],[405974,54155,6452],[393184,59554,6452],[389219,56732,6452],[399010,49244,6452],[397907,47100,6452],[396015,40703,6452],[396198,40656,6452],[398196,48188,6452],[386610,44619,6452],[389578,42358,6452],[399888,49863,6452],[386278,42772,6452],[389466,41932,6452],[386243,43226,6452],[385960,42856,6452],[386011,43050,6452],[386069,43272,6452],[387926,58500,6452],[383712,45382,6452],[380026,44875,6452],[383345,43990,6452],[383461,43722,6452],[383519,43944,6452],[383101,43610,6452],[383410,43528,6452],[379913,44450,6452],[385366,61644,6452],[373646,46546,6452],[373636,46516,6452],[373220,46223,6452],[373624,46486,6452],[373556,46379,6452],[373610,46458,6452],[373594,46430,6452],[373576,46404,6452],[373461,46295,6452],[373534,46356,6452],[373511,46334,6452],[373487,46314,6452],[373433,46279,6452],[373405,46265,6452],[373283,46228,6452],[373376,46252,6452],[373345,46242,6452],[373315,46234,6452],[373252,46225,6452],[373125,46233,6452],[373188,46224,6452],[373156,46228,6452],[366829,47900,6452],[385535,61769,6452],[389122,59387,6452],[386731,62656,6452],[427205,83282,6452],[428972,80753,6452],[426922,83461,6452],[427742,84047,6452],[427925,83785,6452],[423945,66825,6452],[429692,81256,6452],[429875,80994,6452],[433996,76230,6452],[430424,81368,6452],[438993,67054,6452],[439132,66863,6452],[440005,67586,6452],[439885,67759,6452],[440045,67529,6452],[433002,62836,6452],[431881,62005,6452],[433290,62427,6452],[432149,61624,6452],[428849,59870,6452],[405974,54155,352],[416101,61295,352],[404992,53462,352],[399888,49863,352],[399010,49244,352],[398196,48188,352],[397907,47100,352],[396198,40656,352],[396015,40703,352],[389578,42358,352],[389466,41932,352],[386278,42772,352],[385960,42856,352],[386011,43050,352],[386069,43272,352],[386243,43226,352],[386610,44619,352],[383712,45382,352],[383345,43990,352],[383519,43944,352],[383461,43722,352],[383410,43528,352],[383101,43610,352],[379913,44450,352],[380026,44875,352],[373646,46546,352],[373636,46516,352],[373624,46486,352],[373610,46458,352],[373594,46430,352],[373576,46404,352],[373556,46379,352],[373534,46356,352],[373511,46334,352],[373487,46314,352],[373461,46295,352],[373433,46279,352],[373405,46265,352],[373376,46252,352],[373345,46242,352],[373315,46234,352],[373283,46228,352],[373252,46225,352],[373220,46223,352],[373188,46224,352],[373156,46228,352],[373125,46233,352],[366829,47900,352],[385366,61644,352],[385535,61769,352],[386731,62656,352],[389122,59387,352],[387926,58500,352],[389219,56732,352],[393184,59554,352],[393347,59669,352],[424165,81601,352],[426922,83461,352],[427742,84047,352],[427925,83785,352],[427205,83282,352],[428972,80753,352],[429692,81256,352],[429875,80994,352],[430424,81368,352],[433996,76230,352],[439885,67759,352],[440005,67586,352],[440045,67529,352],[439132,66863,352],[438993,67054,352],[433002,62836,352],[433290,62427,352],[432149,61624,352],[431881,62005,352],[428849,59870,352],[423945,66825,352],[239127,126716,3342],[236526,130339,3342],[226148,117412,3342],[225229,117961,3342],[222235,119812,3342],[225196,117911,3342],[222043,119937,3342],[222075,119915,3342],[239127,126716,432],[236526,130339,432],[239127,126716,442],[236526,130339,442],[236526,130339,452],[236526,130339,3322],[226148,117412,432],[226148,117412,442],[225229,117961,432],[225196,117911,432],[222235,119812,432],[222075,119915,432],[222043,119937,432],[222043,119937,452],[222043,119937,3322],[227727,127337,3322],[236681,133773,3322],[238272,131560,3322],[225757,130078,3322],[220489,120985,3322],[217534,122981,3322],[217751,122834,3322],[217723,122793,3322],[217511,122947,3322],[216716,123533,3322],[216499,123680,3322],[216693,123500,3322],[216477,123647,3322],[227727,127337,452],[225757,130078,452],[225757,130078,482],[225757,130078,2942],[236681,133773,452],[236681,133773,532],[238272,131560,452],[238272,131560,532],[220489,120985,452],[217751,122834,452],[217723,122793,452],[217511,122947,452],[217534,122981,452],[216716,123533,452],[216693,123500,452],[216477,123647,452],[216499,123680,452],[216499,123680,482],[216499,123680,2942],[224136,131931,2942],[216459,123706,2942],[209579,128491,2942],[209404,128301,2942],[216677,133640,2942],[220906,136370,2942],[220783,136540,2942],[227506,134382,2942],[228961,132382,2942],[228961,132382,482],[228961,132382,512],[228961,132382,2932],[216459,123706,482],[209404,128301,482],[209579,128491,482],[216677,133640,482],[220783,136540,482],[220906,136370,482],[224136,131931,482],[227506,134382,482],[227506,134382,512],[227506,134382,2932],[234710,136515,2932],[229924,143320,2932],[224254,138853,2932],[224130,139023,2932],[234710,136515,512],[229924,143320,512],[234710,136515,532],[229924,143320,532],[224254,138853,512],[224130,139023,512],[243507,120624,3752],[235960,110991,3752],[245458,117882,3752],[235767,111116,3752],[235667,111182,3752],[230733,114421,3752],[250725,125757,3752],[244733,124162,3752],[230711,114435,3752],[249506,127469,3752],[243507,120624,442],[250725,125757,442],[245458,117882,442],[245458,117882,3722],[235960,110991,442],[235960,110991,3722],[235767,111116,442],[235667,111182,442],[230733,114421,442],[230711,114435,442],[230711,114435,3502],[244733,124162,442],[244733,124162,3502],[249506,127469,442],[239127,126716,3502],[226148,117412,3502],[226126,117378,3502],[238272,131560,3502],[236526,130339,3502],[241718,128399,3502],[241296,133674,3502],[244031,130002,3502],[226126,117378,442],[238272,131560,442],[238272,131560,3472],[241296,133674,442],[241296,133674,532],[241296,133674,3472],[244031,130002,442],[241718,128399,442],[269724,125155,3522],[270795,125813,3522],[267552,130267,3522],[261643,128933,3522],[263699,126130,3522],[267997,124111,3522],[262301,125150,3522],[264561,122034,3522],[264198,134874,3522],[269483,138574,3522],[265579,138864,3522],[258205,133620,3522],[268771,139552,3522],[268012,140591,3522],[264198,134874,892],[269483,138574,892],[264198,134874,1062],[269483,138574,1062],[267552,130267,892],[267552,130267,942],[267552,130267,1062],[270795,125813,892],[270795,125813,942],[269724,125155,892],[267997,124111,892],[264561,122034,892],[262301,125150,892],[263699,126130,892],[261643,128933,892],[258205,133620,892],[265579,138864,892],[268012,140591,892],[268771,139552,892],[275036,133500,4422],[274068,134829,4422],[273822,132617,4422],[276094,129496,4422],[270902,125879,4422],[276223,129318,4422],[270969,125770,4422],[267552,130267,4422],[270795,125813,4422],[272838,133968,4422],[276094,129496,942],[273822,132617,942],[276223,129318,942],[270969,125770,942],[270902,125879,942],[272838,133968,942],[272838,133968,1062],[274068,134829,942],[274068,134829,1062],[275036,133500,942],[239663,138633,3472],[234006,146275,3472],[239243,138352,3472],[242030,134187,3472],[234710,136515,3472],[236681,133773,3472],[229924,143320,3472],[239663,138633,532],[234006,146275,532],[239663,138633,542],[234006,146275,542],[239243,138352,532],[242030,134187,532],[336628,67047,3532],[335233,68866,3532],[330422,68973,3532],[327637,59791,3532],[321413,61704,3532],[331944,73148,3532],[329127,70864,3532],[329010,70770,3532],[335350,68960,3532],[336628,67047,372],[335233,68866,372],[336628,67047,3422],[335233,68866,3422],[327637,59791,372],[327637,59791,3422],[321413,61704,372],[321413,61704,392],[321413,61704,3332],[330422,68973,372],[330422,68973,392],[330422,68973,3332],[329010,70770,372],[329010,70770,392],[329010,70770,3332],[329127,70864,372],[329127,70864,392],[329127,70864,3332],[331944,73148,372],[335350,68960,372],[335350,68960,3422],[342837,65118,3422],[341467,66952,3422],[333863,57877,3422],[338190,71237,3422],[341584,67046,3422],[342837,65118,352],[341467,66952,352],[342837,65118,3402],[341467,66952,3402],[333863,57877,352],[333863,57877,3402],[327637,59791,352],[336628,67047,352],[335233,68866,352],[335350,68960,352],[338190,71237,352],[341584,67046,352],[341584,67046,3402],[300751,123562,3242],[298348,126781,3242],[300619,123464,3242],[307689,114842,3242],[307743,114881,3242],[302333,122177,3242],[301963,121903,3242],[295840,125794,3242],[299917,120333,3242],[298495,119282,3242],[303927,112023,3242],[297958,127303,3242],[300751,123562,592],[298348,126781,592],[300751,123562,602],[298348,126781,602],[300619,123464,592],[300619,123464,602],[301963,121903,592],[301963,121903,602],[302333,122177,592],[302333,122177,602],[307743,114881,592],[307743,114881,602],[307689,114842,592],[303927,112023,592],[303927,112023,3212],[298495,119282,592],[298495,119282,3212],[299917,120333,592],[295840,125794,592],[297958,127303,592],[310952,117539,3242],[311149,117439,3242],[311033,117598,3242],[311186,117388,3242],[303888,123272,3242],[300222,128181,3242],[305973,124814,3242],[310952,117539,602],[305973,124814,602],[311033,117598,602],[311149,117439,602],[311186,117388,602],[300222,128181,602],[303888,123272,602],[333629,110741,3612],[334337,109627,3612],[334429,109693,3612],[328224,117845,3612],[332862,110155,3612],[333645,109130,3612],[324201,114896,3612],[329609,107676,3612],[328185,117897,3612],[333629,110741,472],[328224,117845,472],[333629,110741,532],[328224,117845,532],[333629,110741,3552],[328224,117845,3552],[334429,109693,472],[334429,109693,532],[334429,109693,3552],[334337,109627,472],[334337,109627,532],[334337,109627,3552],[333645,109130,472],[332862,110155,472],[329609,107676,472],[324201,114896,472],[328185,117897,472],[339502,112081,3552],[335044,108676,3552],[332700,121225,3552],[330739,119790,3552],[330692,119855,3552],[332653,121289,3552],[339502,112081,532],[332700,121225,532],[339502,112081,3402],[332700,121225,3402],[335044,108676,532],[330739,119790,532],[330692,119855,532],[332653,121289,532],[330278,165190,3562],[337488,172404,3562],[329617,165846,3562],[327202,166245,3562],[328100,165355,3562],[322013,165861,3562],[324437,163457,3562],[325634,169480,3562],[333046,176505,3562],[333151,176613,3562],[332956,176802,3562],[333737,175835,3562],[333841,175943,3562],[330278,165190,612],[337488,172404,612],[330278,165190,3462],[337488,172404,3462],[329617,165846,612],[328100,165355,612],[327202,166245,612],[324437,163457,612],[322013,165861,612],[325634,169480,612],[332956,176802,612],[333151,176613,612],[333046,176505,612],[333737,175835,612],[333841,175943,612],[311662,117706,6562],[334866,135470,6562],[311601,117785,6562],[311473,117952,6562],[329358,142664,6562],[306154,124900,6562],[311662,117706,652],[334866,135470,652],[311601,117785,652],[311473,117952,652],[306154,124900,652],[329358,142664,652],[383533,127735,6612],[383844,127529,6612],[383582,127785,6612],[375381,119436,6612],[379831,129659,6612],[370898,123632,6612],[378379,131056,6612],[380351,130200,6612],[380185,130027,6612],[380504,130358,6612],[380650,130510,6612],[380026,129861,6612],[375381,119436,662],[383844,127529,662],[375381,119436,672],[383844,127529,672],[370898,123632,662],[370898,123632,6512],[378379,131056,662],[378379,131056,6512],[379831,129659,662],[380026,129861,662],[380185,130027,662],[380351,130200,662],[380504,130358,662],[380650,130510,662],[383533,127735,662],[383582,127785,662],[383532,119200,7122],[379084,115970,7122],[378597,114168,7122],[377999,114811,7122],[375381,119436,7122],[383844,127529,7122],[386585,124680,7122],[386669,124766,7122],[387457,123827,7122],[387979,123489,7122],[387541,123913,7122],[383532,119200,672],[387979,123489,672],[383532,119200,692],[387979,123489,692],[383532,119200,6982],[387979,123489,6982],[378597,114168,672],[378597,114168,692],[378597,114168,6982],[377999,114811,672],[379084,115970,672],[386669,124766,672],[386585,124680,672],[387457,123827,672],[387541,123913,672],[341965,117106,3402],[341985,113977,3402],[345747,112222,3402],[344220,111091,3402],[336346,124117,3402],[336460,124214,3402],[341965,117106,522],[336460,124214,522],[341965,117106,532],[336460,124214,532],[345747,112222,522],[344220,111091,522],[341985,113977,522],[339502,112081,522],[332700,121225,522],[336346,124117,522],[345842,120332,3912],[345998,120187,3912],[345877,120344,3912],[345831,120060,3912],[343263,123652,3912],[341965,117106,3912],[336460,124214,3912],[340546,127151,3912],[340089,127302,3912],[340215,127239,3912],[340389,127353,3912],[340410,127326,3912],[345842,120332,532],[343263,123652,532],[345877,120344,532],[345998,120187,532],[345831,120060,532],[340089,127302,532],[340215,127239,532],[340389,127353,532],[340410,127326,532],[340546,127151,532],[374145,136526,3402],[374765,136104,3402],[374236,136620,3402],[366730,127732,3402],[363790,127886,3402],[365367,126410,3402],[365182,129373,3402],[364046,132734,3402],[362744,131655,3402],[371114,139667,3402],[371183,139739,3402],[370970,139949,3402],[373174,137474,3402],[373265,137567,3402],[366730,127732,612],[374765,136104,612],[366730,127732,622],[374765,136104,622],[365367,126410,612],[365367,126410,622],[363790,127886,612],[365182,129373,612],[362744,131655,612],[364046,132734,612],[370970,139949,612],[371183,139739,612],[371114,139667,612],[373265,137567,612],[373174,137474,612],[374145,136526,612],[374236,136620,612],[365367,126410,6512],[366081,125741,6512],[367279,127020,6512],[377511,132933,6512],[377664,133091,6512],[374855,136016,6512],[366730,127732,6512],[376991,132392,6512],[374765,136104,6512],[377809,133242,6512],[374890,136052,6512],[377345,132760,6512],[377185,132594,6512],[370898,123632,622],[378379,131056,622],[367279,127020,622],[366081,125741,622],[374855,136016,622],[374890,136052,622],[377809,133242,622],[377664,133091,622],[377511,132933,622],[377345,132760,622],[377185,132594,622],[376991,132392,622],[339535,156468,3462],[346572,163545,3462],[337013,158896,3462],[332416,158272,3462],[335552,157450,3462],[335673,157548,3462],[335425,157360,3462],[335293,157278,3462],[335155,157206,3462],[335013,157142,3462],[334867,157088,3462],[334717,157044,3462],[334565,157010,3462],[334412,156986,3462],[334257,156972,3462],[334101,156968,3462],[333945,156974,3462],[333791,156991,3462],[333637,157018,3462],[333486,157055,3462],[333338,157102,3462],[333192,157158,3462],[333051,157224,3462],[332915,157299,3462],[332784,157383,3462],[332658,157475,3462],[332539,157575,3462],[332427,157683,3462],[332133,157988,3462],[342098,168006,3462],[342243,167740,3462],[342306,167805,3462],[342940,167068,3462],[343003,167132,3462],[346643,163616,3462],[339535,156468,582],[346572,163545,582],[339535,156468,602],[346572,163545,602],[337013,158896,582],[335673,157548,582],[335552,157450,582],[335425,157360,582],[335293,157278,582],[335155,157206,582],[335013,157142,582],[334867,157088,582],[334717,157044,582],[334565,157010,582],[334412,156986,582],[334257,156972,582],[334101,156968,582],[333945,156974,582],[333791,156991,582],[333637,157018,582],[333486,157055,582],[333338,157102,582],[333192,157158,582],[333051,157224,582],[332915,157299,582],[332784,157383,582],[332658,157475,582],[332539,157575,582],[332427,157683,582],[332133,157988,582],[332133,157988,592],[332416,158272,582],[332416,158272,592],[342098,168006,582],[342098,168006,592],[342306,167805,582],[342243,167740,582],[342940,167068,582],[343003,167132,582],[346643,163616,582],[330728,158839,3462],[330955,157510,3462],[331304,157155,3462],[330891,157648,3462],[330837,157790,3462],[330792,157935,3462],[330757,158083,3462],[330731,158233,3462],[330716,158384,3462],[330710,158536,3462],[330714,158688,3462],[330752,158989,3462],[330786,159137,3462],[330829,159283,3462],[330882,159425,3462],[330944,159564,3462],[331015,159698,3462],[331095,159828,3462],[331183,159952,3462],[331279,160070,3462],[331382,160181,3462],[331493,160285,3462],[331610,160382,3462],[331731,160469,3462],[328600,163511,3462],[341152,168809,3462],[337516,172432,3462],[341207,168866,3462],[341848,168136,3462],[341904,168194,3462],[331304,157155,592],[330955,157510,592],[330891,157648,592],[330837,157790,592],[330792,157935,592],[330757,158083,592],[330731,158233,592],[330716,158384,592],[330710,158536,592],[330714,158688,592],[330728,158839,592],[330752,158989,592],[330786,159137,592],[330829,159283,592],[330882,159425,592],[330944,159564,592],[331015,159698,592],[331095,159828,592],[331183,159952,592],[331279,160070,592],[331382,160181,592],[331493,160285,592],[331610,160382,592],[331731,160469,592],[328600,163511,592],[330278,165190,592],[337488,172404,592],[337516,172432,592],[341207,168866,592],[341152,168809,592],[341848,168136,592],[341904,168194,592],[378317,75059,1124],[378738,76596,682],[377529,76956,857],[378953,67998,918],[378587,68443,1159],[377742,67890,918],[373456,54525,332],[365076,48582,332],[365016,48381,332],[380668,58689,515],[376187,56381,463],[372503,56010,577],[374585,57769,608],[371945,56696,332],[384526,65287,864],[382738,64682,838],[384706,64101,977],[373775,55133,639],[375964,60288,883],[374095,60410,332],[375135,58915,332],[380442,60171,875],[381590,62000,962],[378229,62590,794],[373009,59762,719],[370804,59271,762],[369207,57009,332],[372690,60488,787],[367241,55868,332],[369100,57162,332],[365988,57669,332],[373463,63139,818],[373677,61374,741],[372314,62577,749],[372515,62210,332],[372561,62211,757],[378031,69930,1171],[379546,68901,917],[379880,71279,1195],[384732,68178,682],[384261,67604,953],[384784,68103,672],[374756,69498,802],[376554,68936,522],[376888,69842,857],[373034,69360,522],[374379,67423,522],[374694,69165,568],[372674,70180,522],[372813,71421,1023],[371411,70507,935],[377902,68940,1200],[370850,68928,522],[371160,68032,522],[371346,68158,522],[370300,69525,717],[369193,70925,552],[370939,70838,821],[371618,71860,1328],[373350,70343,921],[373163,69450,522],[378153,77385,572],[378752,75318,1265],[378838,76596,682],[379439,74847,1207],[379390,74488,1186],[380006,74941,682],[379096,75255,1270],[380722,73916,692],[382727,71047,692],[382497,71375,692],[381895,70985,1141],[382655,70055,924],[383280,68727,940],[383344,69097,1141],[386736,65309,672],[373539,71705,1033],[372569,72449,1123],[370119,70913,889],[380526,72860,1410],[377697,67564,879],[380459,72529,1088],[380042,72602,999],[379665,63651,784],[381947,64688,972],[372863,61819,752],[372229,61924,757],[373381,70669,741],[374031,70620,827],[374716,72589,872],[375039,71535,1003],[376119,72727,859],[377192,74286,1068],[377100,76671,815],[375437,58990,622],[383944,63083,890],[384149,62559,640],[384456,62888,932],[381038,71337,1288],[375225,65972,841],[377272,67293,892],[377489,67592,522],[378927,64188,994],[378422,63976,930],[371615,63504,522],[372030,62939,741],[380141,73278,1134],[377013,68392,571],[378551,73986,922],[379016,71794,944],[379970,74992,682],[374312,72657,990],[372633,73112,804],[373721,54764,549],[376516,58775,629],[377832,59562,857],[376570,59102,782],[377357,67968,832],[374320,69549,954],[375564,75542,941],[373046,70730,589],[381667,62641,854],[382381,61992,839],[384741,61873,652],[377629,72800,1039],[377680,70340,962],[373873,74378,785],[370241,71886,809],[373686,64820,828],[382726,61501,608],[384626,63012,952],[378501,64625,828],[381331,60249,576],[369192,71195,726],[383784,62028,621],[383653,61029,640],[383963,61222,523],[374217,74702,854],[377692,58532,804],[378539,58331,537],[380326,59470,540],[379919,59280,536],[383536,62220,799],[381021,64561,823],[375038,74944,1024],[377379,73518,945],[376217,73384,1024],[376871,58713,787],[369022,71216,552],[429299,81775,985],[301265,70135,422],[300020,70398,422],[301115,69841,422],[300485,71174,422],[301740,70990,422],[300849,71465,422],[301318,70108,422],[299899,70202,502],[301109,69587,502],[301213,69791,422],[368423,74284,532],[367730,73718,552],[367581,72284,492],[369135,81747,562],[374018,77507,572],[368699,83874,532],[367859,81872,552],[365005,78391,512],[368444,81194,562],[371843,77063,562],[362319,78609,522],[364451,79065,512],[363752,78488,512],[367153,74399,552],[364339,77831,512],[367862,74980,542],[368562,82424,552],[371266,77751,552],[371965,78332,562],[372533,77636,572],[206259,124886,592],[206430,125176,602],[206072,124984,592],[203991,124758,1646],[203422,125508,532],[203362,125366,532],[205424,125285,1024],[203563,126816,612],[205961,124910,602],[205853,124832,602],[205748,124750,572],[203339,125375,532],[203289,125360,522],[205503,124574,873],[205549,124572,562],[205647,124663,562],[205339,124120,492],[205312,124246,512],[205282,124282,512],[205033,123903,302],[205140,123842,302],[204655,124504,1522],[205365,124379,542],[205455,124477,542],[204997,125089,1134],[203174,124969,302],[203199,125198,642],[203223,125341,522],[203051,125040,302],[204439,125348,1130],[203472,125654,532],[203545,125954,552],[203568,126107,572],[203581,126261,572],[203584,126415,602],[203392,126503,572],[203513,125803,552],[271430,87656,642],[271448,87794,462],[271373,87623,642],[271245,87911,462],[271358,87914,462],[271313,87594,642],[271242,88061,462],[270314,88038,462],[271191,87545,632],[271128,87525,632],[271064,87509,632],[270999,87496,632],[270983,87493,632],[270966,87490,632],[270950,87488,632],[270933,87486,632],[270917,87484,632],[270901,87482,632],[270884,87481,632],[270807,87477,632],[270317,87888,462],[270730,87478,632],[270653,87484,632],[270576,87494,632],[270500,87509,622],[270426,87529,622],[270352,87553,622],[270281,87582,612],[270211,87615,612],[270126,87752,462],[270215,87885,462],[271253,87568,632],[332686,144539,782],[332436,144378,1084],[332970,144157,782],[331628,145191,965],[332108,145087,1116],[330394,147703,972],[329197,147149,852],[330231,147828,972],[331587,144834,1055],[332066,144765,1120],[332003,143482,802],[332334,143714,901],[355778,62380,722],[355283,62068,515],[355806,61882,452],[353558,73686,512],[354587,73277,577],[353588,73781,512],[350601,70925,487],[351559,68783,522],[352683,71618,462],[354711,68167,629],[354570,67168,504],[357415,66125,526],[360442,69813,618],[362380,70939,482],[357326,72485,462],[357289,72370,462],[362409,71034,482],[363541,70673,482],[363485,70491,482],[361480,68902,482],[356820,65747,538],[359510,69501,491],[361196,66437,619],[359466,65749,548],[359610,64760,452],[353573,69607,517],[354113,69804,462],[356415,64736,802],[355739,65426,699],[355152,64737,520],[356434,62705,741],[356398,62390,811],[356518,62628,452],[355627,61329,566],[355243,61714,616],[348398,65619,530],[347783,65119,342],[350608,67366,342],[335823,79075,586],[334918,79541,482],[334888,79445,482],[342148,67543,739],[344407,69328,342],[332506,80192,472],[332474,80086,472],[336544,69975,523],[329903,71497,584],[321939,79954,650],[325515,83193,522],[320188,78913,572],[325162,74628,575],[322904,72789,422],[325717,75056,392],[329843,80899,472],[329898,81081,472],[328741,81365,502],[322157,74066,835],[322930,72940,908],[322985,73307,1000],[324112,75162,689],[324137,75468,468],[323863,75486,672],[320326,78742,552],[325912,76898,601],[323650,75899,481],[327823,79309,472],[328768,81461,502],[326387,82038,512],[326962,77770,624],[326182,75513,482],[328549,76731,598],[329303,77535,472],[333507,74016,518],[332213,73299,657],[332162,72976,546],[344102,69970,570],[343211,69105,591],[331349,76013,488],[329392,77546,640],[334015,77396,462],[335996,79005,462],[336052,79187,462],[338769,71734,474],[338650,70769,588],[332145,79642,618],[332533,78132,465],[336842,75079,597],[336432,72057,496],[338150,71514,587],[332167,77538,640],[341119,77518,592],[338658,78281,462],[338623,78167,462],[337992,77333,596],[340263,75472,462],[342290,77249,462],[341149,77613,592],[342235,77067,462],[345970,71512,505],[346441,73557,462],[344367,72000,486],[342027,68264,646],[341295,68376,514],[341205,67697,524],[347323,75602,472],[344903,76352,462],[344871,76247,462],[341696,73660,462],[343229,71857,492],[348445,75162,462],[348501,75344,462],[347353,75697,602],[345112,70569,564],[345529,68126,616],[349848,71664,746],[350826,72613,514],[350291,72993,898],[349779,73029,829],[351070,74331,462],[347875,71756,462],[354673,73230,462],[350926,73296,641],[351105,74446,462],[354730,73411,462],[323242,75306,858],[321805,75142,539],[321302,75234,509],[349335,67899,516],[350482,67516,357],[351062,68492,683],[355947,63707,637],[357499,64472,885],[341929,67602,518],[349761,66900,721],[349563,67607,682],[331336,73565,585],[329766,73964,498],[329005,71372,525],[356619,62423,452],[355872,63062,783],[355550,61263,342],[356717,62771,785],[358866,64446,820],[347299,70446,629],[343528,71462,642],[343135,71156,497],[351290,66745,532],[351844,67359,497],[349738,70950,518],[353808,69585,644],[337622,70891,519],[335669,71845,487],[334853,69577,528],[336354,71389,644],[325248,75278,559],[319133,77746,635],[318955,77641,422],[323313,75974,606],[325597,77962,476],[322850,75669,706],[330662,73775,650],[335312,69132,535],[355039,63760,736],[352023,65647,550],[338911,70728,673],[340876,71874,608],[341564,67329,524],[346006,67381,574],[347892,65267,537],[359346,64748,705],[358995,65461,752],[354977,70196,595],[357668,65827,770],[359688,64644,452],[326509,74408,522],[326552,74740,523],[326105,74838,656],[327962,72354,539],[330866,72300,621],[330626,73462,740],[353971,68561,676],[357068,65464,745],[354581,64066,524],[352852,66274,605],[331587,77698,691],[332701,74589,671],[334691,76200,674],[335454,75588,462],[355988,61617,452],[322402,76063,525],[350719,69223,498],[346855,72098,590],[352337,68006,575],[351875,67682,329],[356779,65415,579],[335836,75270,511],[325687,75233,569],[354098,69571,602],[343737,70382,656],[343484,71118,673],[340187,70239,512],[342500,68512,511],[336256,76212,578],[336547,75870,472],[322969,76673,502],[334995,75474,646],[344663,70607,676],[344749,71281,634],[362870,67179,482],[358091,124745,760],[357082,124503,637],[358992,121239,760],[383663,110215,395],[383647,109884,773],[384940,109919,344],[377880,96460,982],[376887,96647,922],[378571,95238,652],[385950,104720,708],[386001,105063,781],[384527,103426,751],[387330,102868,119],[388311,103919,109],[387463,103868,117],[375672,106488,1118],[374824,106542,924],[375618,106134,1023],[388050,101536,892],[389892,100515,1009],[390013,101920,94],[394879,100780,1049],[395332,100813,752],[394810,101263,752],[396849,100122,1029],[397380,99175,752],[397818,99643,752],[395512,99049,1022],[393511,100035,1110],[396519,99923,1036],[397311,99102,752],[396083,98744,1132],[394904,97571,987],[397570,97315,736],[395879,97399,753],[398064,94345,772],[389077,99560,1056],[390141,100179,752],[400383,95053,732],[398481,93870,964],[397900,93012,946],[392065,98383,1054],[391890,98542,752],[391713,98567,974],[379721,103700,818],[380678,103927,467],[380791,104565,860],[393299,95469,758],[397763,92930,782],[394756,96588,740],[390654,99509,1046],[390395,101006,970],[388947,93483,840],[390218,93477,892],[389219,95503,908],[392536,102458,79],[392851,102605,752],[391868,103146,58],[380649,89881,772],[382080,91357,832],[379810,90680,872],[381405,92312,842],[387898,93008,824],[387544,92485,814],[356120,119089,765],[354205,118750,852],[356622,118731,775],[358280,119246,1091],[357733,118614,1169],[358961,117792,1113],[344262,130349,632],[349681,124087,842],[348499,126936,712],[345057,130934,572],[352328,121998,863],[353479,119519,852],[353159,121253,872],[348667,126740,712],[355624,123539,690],[354959,124928,1051],[354349,124634,712],[349785,125125,842],[352016,122762,712],[353960,120558,868],[355559,119465,995],[353700,120762,692],[369243,105289,802],[358012,114963,922],[355295,127644,722],[353009,127073,999],[353270,126360,978],[356100,133705,740],[354421,135197,716],[355610,133073,751],[355202,132736,791],[355590,132702,1160],[355112,132056,795],[355481,132049,850],[357290,136026,843],[357245,135710,808],[358808,135339,612],[356974,133670,794],[359996,132459,644],[361812,131907,740],[358911,135242,612],[360602,130291,945],[360924,129929,710],[361314,130248,837],[364043,128448,411],[369723,115255,932],[367227,118237,975],[365368,113580,1003],[359352,120845,940],[357884,119992,728],[365566,118999,845],[366428,121659,897],[364458,119313,889],[360195,121798,779],[362454,123320,1042],[362203,124721,774],[367103,126721,1003],[365609,108825,923],[368879,109251,802],[367455,111211,984],[375222,118925,874],[369060,110184,1004],[371824,109786,1096],[381766,92620,834],[383247,93693,870],[378980,98010,970],[379235,96257,915],[379778,96870,932],[385180,95850,977],[384908,96627,1106],[384391,96874,970],[381492,92353,652],[367078,107418,802],[372313,121795,930],[374299,102491,1063],[376448,100665,642],[376593,103042,951],[373873,106509,1155],[372668,105762,1399],[374097,106162,1003],[370502,114922,1109],[371301,116360,1112],[372931,108148,678],[372384,107788,464],[378015,97470,1011],[377518,97182,642],[377503,96837,925],[370755,104692,1354],[371045,107122,802],[389000,96368,1218],[387995,97985,1155],[386598,96793,1155],[375109,113912,870],[376460,112555,925],[377542,113161,1041],[381077,103841,782],[382029,103278,815],[373700,100836,887],[375228,99410,642],[376947,97597,936],[372115,105069,1694],[380799,111783,928],[379100,111675,876],[380538,109780,983],[386922,102673,120],[386580,103476,120],[386489,102797,105],[381277,97567,878],[382151,98447,1038],[379628,99251,868],[385789,103359,968],[382497,101123,925],[382665,102471,776],[380000,102296,451],[390518,102402,104],[392104,101965,131],[390835,100857,1081],[391324,101343,990],[386410,101785,876],[356287,131956,900],[352028,136394,572],[355390,132400,572],[388358,106810,112],[387554,104538,169],[376006,105108,1261],[376750,104404,632],[376536,105410,1281],[382717,109743,692],[377923,107351,1266],[378128,106306,1374],[378506,106951,1301],[378628,98740,890],[378859,98320,642],[377971,105285,1070],[377916,104976,886],[378302,105611,910],[383001,98584,876],[373977,119543,1034],[372037,117450,953],[379156,106223,801],[361859,122015,958],[360644,121026,1222],[356251,120096,739],[354901,121506,870],[385668,96048,1152],[390460,93686,892],[385452,102802,1072],[389860,96978,963],[372436,108143,529],[371596,108093,1042],[371660,105077,1352],[383800,90394,918],[385337,93709,872],[395358,91206,925],[395086,91374,806],[393947,89661,852],[387927,104033,507],[386604,106947,295],[387830,106540,323],[388179,106978,312],[386881,105459,668],[383938,109093,709],[384350,109045,364],[388090,102200,209],[383305,109924,880],[377228,105045,737],[376717,104033,865],[376317,104100,650],[390455,101693,528],[387629,101665,707],[387953,100861,790],[372176,120775,889],[370843,117612,915],[372122,108773,999],[367823,125689,810],[367542,126686,1008],[396562,98105,746],[377147,104365,862],[378083,101205,959],[356581,134362,555],[356199,134405,815],[353345,135989,741],[354200,136210,708],[352754,137007,932],[379027,101777,851],[379858,100962,911],[379068,98659,996],[378040,108395,964],[376914,108457,937],[377644,108060,988],[377146,107089,1220],[387426,106383,288],[386992,106509,264],[376145,106122,1324],[372641,105411,1656],[356040,126555,906],[354993,125257,923],[363665,129089,605],[357754,129545,708],[359875,131393,929],[359071,132202,653],[356033,132994,1109],[381672,106114,716],[378479,104214,957],[380253,107760,736],[381706,108535,891],[380007,109181,869],[377172,107415,972],[389152,97690,900],[359224,119824,1035],[357601,117615,1182],[357495,116957,912],[359188,116765,754],[365111,126414,847],[364787,126013,871],[365342,126054,839],[359658,129742,943],[364569,126697,618],[355811,122897,692],[356951,127197,924],[367068,119924,864],[364138,119002,911],[362650,117605,951],[366397,111830,1179],[395228,97054,745],[397257,98160,860],[397473,98888,752],[375784,110854,1071],[375303,112922,1028],[374168,110846,1016],[375760,107166,1093],[375432,108177,1109],[390570,95612,1075],[391309,95551,915],[370785,123341,856],[370153,122317,983],[372279,116468,939],[371810,115741,928],[385142,95493,1109],[384778,88569,842],[385587,89393,733],[389710,99200,905],[390214,100111,752],[395782,101077,1033],[395309,100604,1027],[381696,95072,940],[382841,93761,940],[383433,95010,1045],[386438,92618,835],[385780,93576,1037],[383888,110994,692],[386580,106591,638],[384327,108698,693],[367177,123978,912],[363369,122996,1027],[376718,110513,1216],[377015,109123,1125],[377187,110456,1076],[377748,114838,832],[376810,111159,1307],[378194,112076,1259],[381014,103528,479],[380135,103319,444],[375621,98689,902],[369857,123684,917],[371909,116408,1079],[378615,112743,985],[379030,113372,965],[378818,111697,1084],[378915,110322,791],[395909,101430,752],[355614,138145,771],[355534,137475,878],[356100,136798,710],[354789,137880,876],[354339,137246,738],[353081,130503,852],[350845,128796,712],[351485,128617,893],[351854,128241,785],[359629,115379,726],[363223,118558,1156],[362277,118268,1183],[373688,110177,1034],[373040,108812,975],[384036,102855,810],[380733,96320,953],[379888,96571,652],[382440,97684,881],[383342,97493,1021],[383375,97818,882],[386974,106168,635],[382414,109054,897],[386237,107077,343],[384763,108569,366],[384741,108239,688],[386213,106717,675],[372198,105746,1619],[372142,105411,1444],[362131,117241,1041],[376078,109506,1208],[360171,115352,909],[360206,115677,792],[354999,138904,602],[357838,125493,646],[357196,131970,723],[374680,110521,1115],[362567,131821,612],[397821,92862,782],[376429,112212,1125],[355688,136456,709],[362545,120302,1164],[363914,119242,1145],[363571,124692,731],[375593,105810,1264],[376736,107101,955],[375226,109539,1015],[387972,95518,1181],[387477,100332,1068],[388541,99880,1070],[385118,98324,899],[386056,99110,891],[384345,98958,873],[388835,100069,842],[383916,101836,996],[386232,100433,905],[385271,101457,1029],[386954,99463,1185],[388619,98383,948],[387270,102180,560],[386629,97108,1010],[388332,93893,1152],[363220,125713,618],[382808,93685,652],[387423,93643,1220],[384322,94400,808],[381791,109251,767],[381394,106190,863],[380916,105578,736],[359498,132128,834],[358779,132597,637],[353708,135233,852],[370450,114615,956],[352763,128134,788],[363138,121316,910],[379615,103059,521],[379245,103449,818],[378625,107949,1110],[387605,92849,1005],[362463,126763,625],[365297,125739,787],[360060,126280,795],[361318,128230,627],[365586,125731,960],[359188,126368,631],[360694,130998,924],[361919,125774,838],[377299,100269,935],[370145,114888,1084],[378181,115143,833],[394383,97076,975],[392921,95655,980],[381859,107493,777],[367707,121982,778],[367629,121262,1011],[386499,98947,1128],[353592,120559,856],[368515,123974,937],[387122,100824,1011],[374424,106181,1166],[375884,108163,989],[361856,130522,639],[361455,129181,778],[384135,97262,1082],[386366,97947,1123],[384827,98101,1031],[382883,101060,828],[357793,127518,912],[361104,131288,714],[376207,106784,955],[375701,106811,937],[384265,98281,1010],[369042,123333,833],[381193,107600,868],[374117,110538,878],[360764,131675,663],[354546,124958,925],[384473,97525,916],[398659,70497,848],[398468,69586,642],[401530,71735,642],[401529,74294,672],[404590,73882,642],[402798,75182,672],[415594,87649,660],[414786,89231,922],[414442,89280,654],[407835,95496,722],[404087,98098,732],[410628,91292,642],[386659,73820,692],[388676,70959,682],[390250,72398,692],[405917,99519,732],[405800,99642,732],[407754,97287,652],[409227,102072,822],[408923,102395,732],[387469,76341,692],[382678,79467,682],[384643,76680,692],[407871,97410,652],[409354,102068,822],[409292,102133,822],[410714,100492,852],[410921,100809,852],[409557,102259,822],[410718,100618,852],[410857,93451,817],[411902,91866,817],[412302,92558,642],[410779,100553,852],[411000,100173,652],[407900,97382,652],[408498,95615,675],[408171,95743,497],[410291,94649,652],[411842,91508,634],[413475,90202,647],[418337,86285,652],[416325,88376,652],[419920,84639,652],[416739,84934,662],[410070,78074,768],[410714,78179,632],[413774,80327,632],[416639,82337,652],[407652,76031,642],[404249,74622,806],[397666,70097,681],[393081,68385,682],[392563,65443,652],[395406,67438,652],[390692,68098,672],[378297,85752,768],[377821,86359,572],[378429,86762,743],[381985,84115,682],[414314,90467,642],[413884,90103,464],[411698,90178,642],[379545,87574,722],[410179,93922,653],[419551,78678,686],[420093,79206,873],[418954,79038,652],[393530,60049,915],[394071,60583,963],[393084,60846,912],[426537,83794,1051],[426367,84251,652],[393124,60182,1023],[393003,60152,912],[394884,60963,765],[395276,62210,822],[394680,61968,652],[403515,67078,718],[403855,68420,642],[400796,66269,642],[408803,71414,648],[409261,72038,636],[406914,70571,642],[416091,77025,632],[416343,76666,543],[414453,75790,797],[411256,73394,796],[410736,73137,896],[409732,72332,938],[397736,64117,652],[409973,72722,642],[413033,74874,632],[300675,84679,432],[300666,84691,512],[298390,83428,612],[298345,83067,648],[298591,82844,432],[298442,83049,432],[297867,82526,645],[296317,81184,432],[295019,85972,808],[295979,86971,522],[293444,85121,522],[295837,86073,676],[297830,84435,522],[296144,81421,432],[296477,81975,764],[295606,84358,632],[293456,85105,522],[299707,85805,522],[299803,85875,512],[277832,92320,702],[277375,91971,712],[277572,91719,712],[278027,92077,702],[316987,155026,852],[315700,154190,852],[316604,152974,892],[317981,153915,872],[400004,48830,826],[400391,48400,824],[400586,48742,682],[400469,49026,822],[400366,49185,1012],[400515,48934,682],[400554,48839,682],[400612,48643,682],[400631,48542,672],[400643,48441,672],[400646,48236,672],[400648,48338,672],[400637,48134,672],[400621,48033,672],[400300,47719,818],[400598,47933,672],[400568,47835,672],[400531,47739,682],[400488,47646,682],[400251,47357,809],[400384,47470,682],[400439,47556,672],[400256,47310,682],[400184,47236,682],[399781,47145,809],[400027,47106,682],[400108,47168,682],[399942,47049,682],[399460,48285,829],[399282,46948,813],[399760,46953,682],[399853,46998,682],[399665,46915,682],[399568,46883,692],[399469,46858,692],[398378,47203,836],[398858,46855,692],[399163,46825,692],[399266,46829,692],[399061,46828,692],[398959,46838,692],[400323,47387,682],[399368,46840,682],[251393,147531,823],[250776,148722,632],[250751,148704,758],[260770,135935,1287],[262714,126434,1077],[264380,121924,962],[260026,130547,1046],[258515,130040,1265],[258725,129583,1088],[265414,119058,1035],[265175,115372,662],[267674,117148,662],[263267,115704,870],[264027,114769,989],[263774,114973,1033],[263968,114436,804],[261165,125030,1208],[259905,123471,843],[261308,121749,923],[258128,110370,696],[258922,111265,422],[256694,109681,422],[259224,110909,675],[259708,109971,762],[259745,110303,661],[263733,121617,872],[262889,120999,1051],[263553,120251,935],[252326,116263,444],[252226,117788,439],[250284,117662,422],[253039,114816,477],[252853,115950,682],[250615,112571,422],[248601,115907,527],[248099,116108,422],[252036,118982,573],[251722,119469,738],[251304,119374,477],[259036,126291,1169],[258309,126541,1017],[257869,125333,1117],[247136,119394,496],[248160,120261,756],[246654,121563,598],[247329,123337,872],[248667,115309,422],[258050,133758,1215],[257254,133402,1087],[257967,133071,1356],[250292,132857,671],[249225,128022,971],[251339,131641,934],[243373,129537,833],[249911,127542,851],[250076,126686,816],[243548,130901,699],[243915,131022,716],[241819,133786,743],[242304,134250,744],[241698,137373,542],[240434,139151,542],[244088,129795,699],[245226,128468,585],[244512,129918,665],[256617,141113,849],[255624,142768,811],[255251,142595,956],[245753,141964,924],[246198,142342,572],[243206,140143,562],[248699,144174,779],[249189,144540,602],[246170,142070,829],[246114,141770,629],[246977,141289,809],[249854,143589,602],[250694,142072,1377],[251831,143960,1203],[250531,145447,602],[251072,145832,602],[250859,146749,834],[251342,138021,1072],[251666,140372,1163],[249207,140053,1303],[249067,147507,602],[251722,144918,602],[252303,145122,1103],[252646,145597,1049],[252766,144380,1153],[258146,145761,642],[258403,145383,840],[261957,148485,732],[264826,138747,1113],[262697,138355,1061],[261279,136795,1088],[267584,141055,1154],[265936,140365,1153],[254578,137493,1181],[258848,137392,1042],[258815,139520,1070],[249681,143815,825],[249116,142706,771],[257924,132721,1415],[258272,132957,1326],[249252,137500,977],[251585,137826,891],[254021,116139,944],[253700,116630,787],[253270,118994,756],[253831,117652,687],[256063,119290,732],[251937,130537,914],[252492,131384,692],[243678,129332,611],[243327,129199,842],[243591,128673,626],[249560,142799,1057],[253828,147715,763],[255974,148014,841],[255553,149470,642],[250857,125720,798],[253729,126342,1054],[251048,127047,954],[261050,128707,1094],[259660,127833,1059],[261995,126778,1038],[251799,141398,1087],[260311,135740,1162],[258452,134320,1275],[247144,122010,782],[248957,120479,830],[253025,117285,566],[252847,118142,714],[244415,119476,754],[245390,121763,600],[250515,125599,839],[262078,121717,1078],[257232,116004,895],[256438,114924,731],[259044,111404,766],[246412,129178,887],[246272,128140,887],[262513,115082,958],[262812,112352,838],[262928,108923,618],[261959,111076,778],[260005,109468,615],[260988,140820,1048],[261164,142228,867],[260566,140602,1111],[259865,140203,977],[259560,142813,770],[250597,126252,748],[261668,128779,1175],[262811,127076,1210],[247653,123088,738],[249581,122973,886],[257350,134045,1218],[254289,132936,714],[253323,134207,666],[253861,132439,683],[244041,139015,542],[244649,139001,765],[250641,141749,1248],[251473,141220,1374],[245639,141320,563],[245975,140753,604],[246489,141219,613],[252702,136328,661],[252954,137971,1097],[249458,142102,945],[247770,141522,777],[245367,139265,652],[248494,140496,1245],[247651,140508,1010],[247979,138730,998],[247822,137731,691],[242536,135925,818],[249249,134916,679],[259427,107939,677],[258342,108896,561],[263433,112643,658],[263271,113493,898],[265721,141930,1164],[262594,140213,986],[257533,145002,817],[253899,145119,793],[248559,120087,422],[250657,121102,845],[249667,119519,469],[253339,116835,858],[252642,116770,442],[249818,120551,625],[254154,117152,876],[253419,117490,732],[257326,123802,863],[263454,146531,742],[265903,143296,1130],[263289,142760,1033],[260919,125171,1032],[258792,124632,895],[244924,138440,787],[249345,141069,1317],[250558,141025,1454],[246686,142527,881],[254395,115678,891],[254917,116229,847],[256059,116797,856],[256813,117600,938],[251183,132906,675],[250853,132418,854],[251723,128875,1072],[253951,130219,1093],[255681,131112,1133],[259391,131808,1254],[253461,114973,569],[255514,116056,422],[250057,119984,441],[248008,141001,872],[247348,141047,962],[247299,140720,894],[246937,140945,909],[246843,140259,890],[244484,126333,757],[247357,126581,939],[246118,127164,580],[246870,126145,673],[260792,129889,1125],[244298,125010,639],[246494,126035,630],[246312,126591,606],[263290,111606,624],[266640,111289,641],[265015,113080,649],[267384,112198,827],[245542,127908,570],[245453,127231,620],[245179,125192,624],[245146,124869,774],[247157,142652,751],[257811,129598,1209],[251364,129404,911],[252027,146963,632],[253206,147793,875],[252472,146484,893],[260846,103843,412],[257474,108830,673],[246371,140158,957],[256181,115372,737],[265861,119140,1020],[259990,121003,792],[246807,139931,1003],[247209,140070,880],[251773,146985,753],[252256,144776,1101],[252085,139301,1214],[245452,118302,665],[257184,109696,666],[245366,129452,673],[244232,121051,721],[243705,120623,661],[246660,138904,890],[252971,146099,788],[257713,146368,760],[245102,127437,812],[260891,136958,1044],[257539,135425,1279],[255899,135706,1019],[260708,144476,737],[260007,143739,756],[264869,139070,1114],[260895,140172,978],[262381,138512,1206],[249455,120095,689],[262771,126754,1263],[247065,139044,805],[247271,140379,1158],[259295,131130,1209],[258365,126891,1146],[263091,143971,862],[259354,131453,1402],[259671,131016,1128],[269204,109701,662],[251715,132135,671],[253739,131425,895],[252832,130483,839],[252434,134277,791],[266148,107606,683],[268597,109581,798],[266584,108723,633],[267646,111652,684],[245140,127814,623],[257945,142031,767],[258831,127776,1046],[255052,136131,1093],[255048,132113,856],[254670,131582,847],[250895,147102,688],[260238,118324,873],[261620,121233,989],[261653,121578,805],[259862,119957,969],[261439,119874,1026],[263793,107282,604],[261174,105353,595],[265196,108267,780],[258934,135580,1147],[254539,132437,886],[261847,144087,960],[260318,143597,899],[245820,129917,665],[247272,122986,741],[252380,118772,733],[258574,108030,544],[265570,108044,627],[258896,119271,848],[253424,138102,1035],[270039,124633,942],[269817,125001,1052],[268746,124547,1046],[268312,123589,912],[268090,123957,1022],[389728,74285,702],[389671,74245,702],[390071,73647,702],[390603,74003,732],[389896,75081,722],[389416,74774,702],[313059,159741,942],[313958,160511,902],[313000,159823,942],[302733,149624,1180],[301480,151393,872],[301220,151186,1181],[301840,147807,1106],[298873,145451,882],[303344,148791,872],[298796,145557,882],[297335,147417,882],[298723,145503,882],[296143,143670,1035],[295706,146236,882],[292843,144470,952],[294409,142215,952],[297265,149061,916],[295541,148384,919],[289615,143603,1291],[289536,143700,1022],[290251,142670,952],[291240,146148,1033],[292015,146536,963],[290102,145539,1083],[290394,145896,872],[288786,144779,1022],[291350,146835,1259],[291247,146489,872],[291660,146678,1146],[290441,145769,1043],[292285,149829,932],[293174,148666,1131],[294278,149067,756],[291075,147638,1296],[291397,147971,872],[290602,147418,872],[289799,150389,1067],[290368,152572,932],[288907,151557,872],[294804,148870,725],[294186,148414,697],[309000,156786,862],[308988,156802,942],[306517,155006,862],[291736,171269,1041],[294013,172428,1081],[292923,173676,1086],[284457,159929,966],[285895,158972,932],[285401,160228,1164],[280271,156152,972],[279627,154543,852],[282802,156786,872],[282303,157603,1008],[280691,157370,781],[276686,154450,1103],[276392,152258,902],[277865,154433,1034],[271759,151018,1062],[271853,151705,1067],[270595,151374,916],[287845,162406,934],[289172,161287,932],[289086,162898,1178],[273367,151222,1251],[273445,151973,943],[274968,153261,1009],[275804,154139,923],[273549,155237,892],[274856,155789,902],[274678,156031,902],[279372,156110,892],[280528,159843,862],[286177,166094,988],[284613,168202,950],[284732,166333,1079],[287250,161170,913],[292501,161034,1256],[291972,161362,1022],[292272,159340,1244],[277456,159206,892],[279661,161448,1022],[278386,161498,998],[270440,159555,962],[270638,159611,712],[270451,159599,712],[268012,153435,761],[269708,154119,969],[267499,155201,998],[262898,157965,973],[263965,158748,672],[262287,157536,672],[265123,153662,862],[262753,156922,903],[262204,157476,672],[265392,156580,874],[265296,153691,997],[266600,155221,1080],[266311,155371,672],[266640,155545,1038],[267792,156450,682],[272904,159555,992],[272689,159744,712],[272567,159763,961],[270337,155576,975],[269509,157643,828],[269145,157163,812],[271328,156844,864],[269351,157584,682],[269692,158976,878],[269239,157849,834],[270365,159537,712],[270580,159692,712],[276535,160850,732],[274992,159626,732],[275319,159292,1002],[272044,160688,712],[274891,159561,980],[273182,159685,976],[274618,157485,1077],[273879,160253,1029],[273929,160618,1040],[272950,159894,997],[279235,161707,883],[275055,162889,732],[275392,163330,879],[273287,165325,732],[276699,164113,732],[274887,166422,732],[276718,160960,864],[277045,163359,911],[277459,162243,825],[279052,163314,891],[277735,162319,955],[278103,165086,883],[277451,164173,876],[285145,165050,949],[283895,163834,922],[281611,166054,1084],[281247,165235,996],[282084,165389,923],[280410,165385,732],[281185,165834,732],[281125,165914,732],[280969,165083,1030],[282042,166469,732],[283719,167628,732],[285676,162304,1099],[285474,163469,940],[284683,162764,922],[284240,168367,923],[284645,169673,722],[283584,168997,722],[284627,169698,722],[291133,158482,932],[286685,169864,978],[286221,170789,742],[295174,160804,1101],[295528,160723,973],[294480,161783,937],[288545,170784,937],[290393,170670,993],[288592,171137,935],[288301,172624,780],[288486,173984,792],[287241,174040,898],[289279,173044,991],[287797,175244,928],[287795,175352,752],[295007,171637,1227],[295170,170939,902],[295659,171292,902],[289759,172580,752],[290421,172883,1109],[291631,173824,1065],[289810,166180,1263],[288934,165857,1353],[289657,165191,998],[293419,173784,752],[293142,174176,752],[301641,176246,772],[301616,175592,902],[303388,176920,1062],[294849,175425,752],[295145,175007,752],[296375,176466,762],[294951,176800,884],[292613,178581,752],[295136,178188,884],[294120,179648,762],[293813,173210,1183],[293735,174008,752],[299939,178118,954],[299768,178870,772],[299743,178853,772],[299618,175678,1016],[297593,176228,912],[298044,174982,997],[297450,175191,855],[294997,174216,997],[305432,172718,935],[303966,172337,912],[305016,171774,1072],[314099,166440,944],[312645,168154,1141],[313325,166953,981],[313434,155911,872],[315918,157799,852],[313382,155983,852],[304173,154844,1072],[301498,155806,942],[302272,153742,954],[302196,153064,1134],[303228,153356,1190],[299955,147650,1100],[306015,150582,882],[305957,150663,872],[308391,152407,862],[310874,154186,862],[315967,157731,872],[318508,159557,882],[318415,159588,852],[314805,165058,972],[316538,162192,852],[316456,162306,902],[314585,164902,902],[306492,155000,942],[304084,153261,872],[298413,160696,1052],[298500,160292,912],[299236,160814,912],[297606,163114,912],[297055,162724,912],[294135,155805,1217],[293764,156264,1251],[293257,155731,1129],[298734,159952,1163],[299111,159430,942],[298942,159308,942],[299036,159377,942],[296639,153373,970],[295591,154645,947],[295740,152829,1304],[297279,155315,990],[296919,155395,1100],[295536,151505,938],[295638,152167,1118],[295561,152147,932],[297010,162788,912],[314038,160399,852],[311507,158584,852],[304385,157918,942],[309372,171676,1036],[310352,170286,929],[310442,170982,908],[311390,166042,961],[314390,165294,1045],[311127,162417,942],[310952,162660,942],[308672,169088,898],[308007,168944,1015],[310034,167880,948],[305577,173746,1066],[307081,173902,1215],[306040,174674,982],[303969,174614,1052],[304613,174105,936],[304702,174770,938],[294903,173569,903],[293799,165276,994],[293405,165027,1308],[293985,164116,1043],[295177,170144,1003],[295225,170456,1087],[294863,170579,1208],[292352,164053,1296],[292676,164591,1422],[291725,164732,1111],[294027,161541,1008],[293714,162037,1125],[289241,168297,1071],[287570,167078,991],[288493,167205,974],[294600,171080,1298],[294102,155426,1449],[294374,154626,1458],[294640,153854,1364],[293101,165506,1288],[287526,170311,925],[288867,169923,1103],[287059,169751,953],[292236,165629,1060],[291348,165229,1045],[292205,165241,1331],[291394,147157,1279],[291482,147810,1274],[294106,147676,937],[292267,148230,1294],[293830,148144,713],[296178,156273,998],[295582,156407,1215],[295252,156174,1116],[293631,155232,1313],[278225,157161,946],[277710,156342,1268],[278588,156920,865],[277557,155339,1035],[276779,155128,1135],[277466,154656,1039],[293074,167704,1164],[292615,168329,1288],[291626,167301,1049],[288613,165616,1343],[301267,151532,1192],[292552,174201,1037],[288447,171017,742],[294771,160599,1138],[267958,150510,913],[267699,150806,772],[269953,147709,852],[273239,150030,902],[287681,164211,1210],[292812,163467,1082],[293158,163387,946],[293211,163679,1124],[281663,164568,809],[294945,159116,1065],[295030,159796,965],[293072,159774,1111],[293348,156416,1112],[293675,161681,1240],[293223,160777,1335],[293996,161186,1247],[292658,159580,1065],[294660,157085,884],[294796,164181,897],[294771,165948,912],[292219,163000,1381],[262841,157620,829],[264108,157897,817],[264153,158211,866],[263775,158354,992],[274059,160802,732],[274359,160424,732],[298357,149814,1134],[298482,148411,1072],[297419,156343,1031],[298406,157569,1032],[297240,157768,1170],[297962,160453,964],[297918,160096,1008],[293023,162312,1057],[292631,162119,1056],[292932,161619,1081],[292062,162029,1024],[290579,162635,1068],[304248,176688,1092],[310686,166545,1097],[308584,165940,942],[308744,165718,942],[300405,151085,1027],[273082,156027,912],[272390,158401,1060],[292434,169840,1425],[292764,174709,752],[289828,143492,1092],[289960,144514,1030],[291021,144469,1113],[307600,174461,1204],[307307,175667,1100],[303258,177423,772],[278937,164294,732],[309842,169716,933],[308771,169762,1030],[315294,165406,962],[311539,167046,1178],[294964,149856,1093],[294679,147821,923],[299434,158012,982],[298509,158224,1245],[300728,153472,1084],[299539,153767,1106],[296969,152897,1157],[296149,152771,1217],[296883,152238,1179],[294991,156597,1165],[297241,176306,1037],[274548,160120,994],[293544,168976,993],[297419,167823,912],[290616,169503,1009],[290948,168650,1221],[270796,159018,909],[312954,167372,1211],[303870,177198,927],[304579,176621,942],[303964,177857,1009],[307358,172779,938],[289792,172432,1010],[286184,174211,742],[298641,159270,1138],[286858,169891,742],[273874,152048,916],[274443,152864,878],[284384,161397,1072],[299241,158742,1201],[299745,157975,972],[279190,158070,816],[278100,156081,1220],[293402,155236,932],[306581,173064,964],[307184,171391,1079],[276117,158208,942],[293874,148483,699],[296926,176796,996],[279651,164784,892],[285283,164214,1069],[284266,168007,722],[292735,162778,1264],[296146,158721,1091],[296189,159102,977],[296074,160154,1101],[297141,160335,977],[295378,157228,914],[295663,157086,1089],[295483,160384,970],[290202,166390,1062],[289906,166861,1319],[289161,167573,1305],[292615,166161,1039],[293846,165625,993],[290764,167257,1258],[290672,169829,1163],[291950,166445,1037],[292938,168575,1036],[293112,168081,999],[292666,156692,1216],[278311,157828,890],[277835,157368,1089],[293748,162384,958],[296359,157652,961],[290249,163531,1056],[292568,165807,1045],[299966,154353,1099],[300763,153808,965],[298983,154604,999],[296586,159349,973],[289730,169920,1016],[308087,169668,806],[305200,178903,902],[268788,158399,682],[293355,161811,1249],[286041,165038,1073],[286696,164119,950],[306304,169098,912],[277458,157621,1040],[308278,171036,921],[291592,166946,1224],[269881,152202,968],[268238,150349,936],[297736,155556,1158],[290812,164374,1072],[291227,164167,1337],[289653,162270,1118],[287725,175302,752],[287332,174706,914],[277954,155089,1057],[277917,154730,1217],[275724,156076,1100],[297716,174770,884],[297275,152171,1031],[295861,150776,932],[296326,150966,1080],[297279,176673,897],[299110,178281,911],[297409,153205,982],[297909,151018,970],[298532,151162,1095],[298325,154065,1119],[278215,165241,732],[279839,159359,862],[278359,158184,889],[297557,160180,1093],[269011,158371,843],[266763,151520,742],[266647,152337,945],[271583,155601,815],[267568,152626,869],[279288,158704,986],[297170,144217,882],[297863,148542,894],[293569,163593,930],[298040,154826,1016],[294070,179426,876],[294395,164293,1024],[294342,163963,909],[267580,150967,772],[298706,147633,863],[347383,147813,853],[347782,147102,941],[348296,147724,897],[343134,146181,857],[345265,147813,889],[342906,146074,622],[346136,145226,1042],[345191,145392,1089],[346200,145149,1022],[346384,146545,1083],[346366,145419,1042],[346430,145342,1042],[344443,143812,897],[344098,143264,1022],[343089,145833,864],[343784,143158,1022],[342738,143106,1043],[343848,143081,982],[343281,143714,903],[344034,143341,1042],[341734,141262,882],[341416,141128,862],[340212,140287,800],[341480,141051,832],[341671,141339,882],[340477,142309,752],[341385,144530,892],[340962,143590,962],[338667,143866,739],[339590,143054,622],[338204,144300,622],[337018,143282,622],[339424,142967,773],[346177,148012,973],[346121,147667,836],[347439,148143,1018],[346432,149661,622],[347914,148123,894],[342095,145005,967],[340864,142889,901],[348542,147614,622],[340086,139894,622],[339591,140838,784],[344710,145842,854],[345866,145608,1101],[345172,147165,796],[340617,143358,757],[340579,143010,860],[217223,123174,611],[216050,123077,582],[216396,123609,572],[217727,122637,628],[219410,121493,700],[218170,122513,622],[220572,120844,669],[219876,120535,562],[221972,119836,679],[221705,119320,602],[296155,135648,975],[296803,135833,978],[293358,137759,1012],[296667,134835,944],[297800,131706,832],[305571,137698,822],[301594,138337,992],[296437,135596,745],[301360,143916,882],[441922,69187,1192],[439056,73379,1122],[439159,68910,1297],[434976,74885,1114],[435893,77290,1077],[438077,74795,1092],[434399,75878,1115],[439884,68052,1223],[435942,77607,1191],[436003,77746,1062],[440341,68249,1181],[434490,76553,1140],[265914,91095,452],[265675,90738,452],[266006,91033,452],[266754,90749,452],[266106,91183,452],[265702,90599,522],[266653,90599,452],[266828,90482,452],[267576,90197,452],[266928,90632,452],[267476,90048,452],[267770,89212,522],[267530,90011,462],[267658,89925,462],[268306,89491,462],[267770,90091,462],[268418,89657,462],[268158,89072,462],[268398,89429,462],[268019,89045,522],[441873,68896,1192],[442840,67546,1692],[439155,65468,1787],[441616,64306,1783],[436319,64024,1678],[434656,63573,1940],[435526,61466,1909],[433269,56803,1984],[431569,57264,1690],[432228,56264,1890],[430417,60266,1808],[430709,60119,1673],[431053,50004,1924],[428630,52973,1857],[428535,52316,1751],[423388,50635,1894],[422432,51415,742],[424720,49416,742],[425939,51388,1684],[426131,51031,742],[426749,51134,1791],[421861,50501,742],[421732,50614,742],[421365,49971,742],[421297,51434,1750],[421033,51529,1753],[421941,51275,1752],[422320,51537,1722],[420736,52000,1782],[419348,52842,812],[419208,52341,742],[419018,52598,792],[420903,53316,1683],[421590,53769,1507],[421631,54103,1468],[424031,55678,1535],[424978,56140,1510],[424790,56868,992],[428047,58090,1688],[437401,63958,1720],[438634,64592,1887],[437355,65433,1755],[432381,54761,1802],[438760,62452,1801],[440651,60872,1961],[441046,61439,2146],[444267,59967,2190],[442484,59462,2007],[444078,58600,2039],[433760,62709,1933],[434126,61717,1849],[442732,64633,1870],[443519,63700,2218],[444667,64973,1292],[433141,45698,742],[430820,48006,2338],[427142,50939,742],[434768,55713,1873],[434441,56247,1906],[434382,55903,1716],[435908,64458,1755],[436947,65226,1799],[424907,49985,2159],[424644,50391,2162],[424973,50611,1924],[425578,51144,1937],[425401,51860,1649],[430105,60086,1734],[430332,59594,1867],[438335,52479,1996],[436890,51148,2132],[434729,48097,2218],[432961,61978,1657],[432920,61665,1666],[432542,61455,1675],[432366,60107,1706],[431776,47528,2052],[433216,46817,2106],[441109,55336,2093],[443116,56845,1832],[442584,56637,2031],[427788,52881,1654],[428277,50286,1876],[423546,51989,1585],[422625,51447,1706],[423466,51298,1759],[432588,61797,1701],[444751,61206,2221],[443886,62889,2224],[443221,61362,2320],[443109,67208,1692],[427161,51333,1762],[433798,63023,1873],[425488,50465,1930],[425910,51043,1927],[421868,53382,1655],[432749,46284,2151],[431992,47043,2058],[433610,46668,2290],[438059,62698,1879],[442246,64092,1987],[445179,62071,1432],[444693,59148,1662],[422967,51032,1711],[425406,56428,1638],[428557,55460,1654],[423411,55848,962],[423988,55335,1571],[443976,63567,2237],[429052,59187,1704],[429540,57863,1664],[431056,56764,1695],[430772,57932,1630],[439393,60575,1984],[436414,61192,1741],[422329,54337,1514],[422236,53626,1518],[427948,50751,1819],[432100,58076,1700],[428460,57949,1699],[442984,63169,2218],[438568,57671,1806],[438833,59705,1808],[434071,61376,1710],[441910,58239,2077],[440765,55459,2083],[437216,56276,1840],[434309,55218,1942],[440631,58386,1909],[435004,60623,1743],[433382,57793,1745],[429595,58210,1792],[435993,54996,1836],[434501,49912,2169],[439988,55803,1949],[439217,59221,1997],[439422,57734,1991],[430910,58952,1680],[435650,52320,1938],[435573,49828,2024],[442274,64411,1784],[436936,51495,2146],[437761,54734,1948],[437452,55503,2011],[437326,54508,2072],[438409,56338,2032],[442309,61269,2113],[429776,59564,1816],[262755,92937,432],[262643,92771,432],[262671,92632,502],[263442,92476,452],[263358,92292,452],[263469,92458,452],[263219,92264,502],[291499,69222,442],[291719,69139,442],[292057,70296,432],[292300,70158,412],[398136,113578,112],[395202,116431,312],[395979,114144,312],[396090,114036,112],[397969,113406,112],[397816,113248,112],[397669,113097,112],[397371,112791,112],[395753,114364,312],[394882,116102,312],[394735,115951,312],[394437,115644,312],[395035,116259,312],[402128,109631,752],[401352,110382,112],[401940,109437,752],[401164,110188,112],[401074,109690,752],[401648,109135,752],[400872,109886,112],[320256,152713,852],[317815,151178,892],[319575,149449,842],[321457,150841,832],[397229,78997,812],[398387,79795,792],[396423,80166,822],[390320,75248,732],[394476,78252,812],[394212,78616,812],[396077,80668,822],[393831,79143,832],[390431,72923,692],[390750,73165,712],[390341,72877,692],[390196,72644,692],[390322,72863,692],[390304,72848,692],[390288,72831,692],[390272,72814,692],[388214,76066,702],[388165,76056,702],[387532,76265,692],[387499,76302,692],[390238,72418,692],[390233,72755,692],[390223,72734,692],[390214,72712,692],[390206,72690,692],[390200,72668,692],[390193,72621,692],[390192,72598,692],[390192,72574,692],[390194,72551,692],[387687,76142,692],[390198,72528,692],[387645,76168,692],[390203,72505,692],[390209,72482,692],[387605,76198,692],[390217,72460,692],[390227,72439,692],[387568,76230,692],[390245,72776,692],[390258,72795,692],[387731,76118,692],[387823,76081,692],[387776,76098,692],[387870,76067,692],[387919,76056,692],[387968,76049,692],[388017,76046,692],[388067,76046,692],[388116,76049,702],[388250,76076,702],[388285,76088,702],[388320,76102,702],[393404,79735,832],[388354,76118,712],[388387,76136,712],[388419,76155,712],[388450,76176,712],[388567,76260,732],[388892,76494,742],[397637,81136,822],[398903,80151,802],[397991,81381,822],[396439,82704,802],[395242,81878,832],[396140,89738,838],[397078,88587,832],[395990,90181,1682],[397392,81490,822],[395128,89546,781],[394360,86732,872],[392777,87989,892],[396951,83057,822],[398983,82636,822],[398132,83871,832],[410986,90197,642],[410567,90687,642],[410453,90608,642],[410590,90706,642],[410631,90748,642],[410611,90726,642],[411053,90243,642],[411578,90262,642],[411610,90244,642],[410678,91219,642],[411152,90290,642],[410693,90848,642],[410680,90822,642],[411187,90301,642],[410704,90876,642],[411222,90310,642],[410713,90904,642],[410725,90962,642],[410720,90933,642],[411295,90320,642],[411670,90202,642],[410729,91021,642],[411405,90317,642],[410728,91050,642],[411441,90311,642],[410725,91080,642],[411476,90302,642],[410719,91109,642],[411511,90291,642],[410712,91137,642],[411545,90278,642],[410703,91165,642],[410691,91193,642],[410663,91245,642],[410646,91269,642],[411641,90224,642],[410728,90991,642],[411368,90320,642],[411332,90322,642],[411259,90317,642],[410665,90796,642],[411118,90277,642],[410649,90772,642],[411085,90261,642],[410321,89736,712],[410121,90376,672],[409788,90145,692],[410204,90434,662],[410654,89966,682],[399335,82126,822],[397746,81735,822],[401697,75998,762],[400119,80990,812],[401390,75296,742],[402144,75334,682],[401920,75666,742],[401638,74415,672],[401619,74388,672],[402676,75128,672],[401686,74824,682],[402262,75206,672],[402236,75227,672],[401703,74761,682],[402318,75170,672],[402289,75187,672],[401695,74793,682],[402411,75131,672],[401710,74630,672],[402443,75122,672],[401710,74696,672],[402379,75142,672],[402348,75155,672],[401691,74534,672],[402543,75111,682],[402510,75112,682],[401554,74315,672],[401669,74473,672],[402610,75115,682],[402577,75112,682],[401681,74503,672],[401654,74443,672],[402643,75121,672],[402707,75139,672],[401577,74338,672],[402769,75165,672],[402739,75151,672],[401599,74362,672],[402476,75116,672],[401700,74566,672],[401706,74598,672],[401711,74663,672],[401708,74728,672],[402211,75250,682],[401674,74855,682],[402188,75274,682],[401661,74884,682],[402167,75300,682],[401645,74913,682],[401612,74963,702],[401168,75629,762],[391077,73396,752],[391444,73655,772],[395773,89881,820],[450321,40934,2114],[451872,42489,2062],[450753,43151,2102],[447691,38046,2166],[447994,38083,2930],[448195,38286,2162],[445139,40116,2315],[446842,41731,2102],[444035,39590,2283],[445903,40337,2226],[446622,37734,2300],[446945,36786,2648],[446738,36906,2173],[446751,36643,2825],[446683,36366,2183],[444168,36206,2236],[444245,35528,2262],[447317,36439,2182],[447287,36640,2575],[446965,36399,2565],[438771,35841,2412],[441524,37755,2313],[436935,35096,2151],[442391,32077,2132],[443894,35234,2272],[443576,35608,2282],[439752,33758,2326],[439769,33335,2307],[429878,29604,2090],[429000,29787,2002],[429614,29631,9978],[439653,30911,2112],[437372,31989,2277],[429052,29294,2067],[427719,28928,1962],[429369,29195,2033],[429664,29368,2071],[429420,29566,2081],[428829,28820,2012],[427490,28775,1962],[439652,33651,4025],[439600,33645,2320],[450008,40639,2134],[450264,40760,2721],[447860,42464,2102],[447117,41570,2215],[449736,44128,2072],[450585,45051,2032],[452077,45389,2032],[452085,47060,1932],[451369,46030,1962],[452730,48136,1872],[454642,47484,1942],[453300,49253,1812],[453793,50407,1802],[455327,49354,1882],[454647,51252,1922],[455558,50344,1852],[454788,54030,1722],[454538,52801,1742],[454826,52636,1923],[455305,55766,7851],[455075,55969,10202],[455203,55645,1763],[455312,60423,11508],[455046,60433,1680],[455391,60169,13085],[452566,66330,1422],[453174,65186,1362],[453179,65841,1442],[451630,68395,1352],[451118,68475,1302],[451880,67428,1372],[445882,75456,1233],[447384,73248,1082],[446962,74064,1268],[437098,86286,952],[437567,85797,902],[437877,85923,1060],[436424,86990,972],[436055,88299,1042],[435604,87845,982],[437463,87999,1052],[436434,88488,1052],[436861,88468,1062],[439461,85157,1072],[437191,88327,1052],[438551,86416,1052],[448381,72323,1321],[451048,69232,1322],[439678,83526,1100],[445098,77204,1182],[441046,82895,1092],[446690,74950,1202],[448163,73031,1222],[452354,67143,1419],[452071,67399,10105],[452310,66825,1380],[451950,67580,1452],[452288,67316,1412],[453938,64281,10467],[453701,64003,1402],[454150,64072,1502],[452457,66954,9749],[454143,62785,1452],[454571,63165,1512],[453617,64776,1541],[454508,62572,1772],[454444,62223,1496],[454936,62237,1522],[455299,59083,1750],[454940,59031,1562],[455503,57991,1714],[454183,62719,8436],[454532,62876,1549],[455030,57780,1602],[455087,60773,1619],[455523,60312,1592],[455336,56639,1840],[455034,56525,1692],[455516,56278,1756],[455413,60036,1618],[455540,54566,1809],[455854,53333,1802],[455550,57759,7679],[455688,57628,1728],[454206,51591,1772],[455825,54564,1751],[455872,56821,1722],[455691,51343,1832],[455025,48400,1912],[453183,44735,2012],[448826,43264,2072],[450385,39975,2112],[444076,33139,2162],[445602,34222,2172],[444202,35343,2276],[444196,35383,4128],[448017,37637,2845],[447743,37713,3056],[447778,37584,2550],[437256,34764,2333],[445939,40474,4747],[445860,40363,2271],[455271,57743,15812],[455278,57049,11095],[455379,56995,1791],[455387,55265,1786],[454953,55273,1752],[455490,56645,14791],[455112,57689,1649],[454766,60273,1562],[455795,58339,1682],[455555,56591,1738],[455475,55947,1787],[455245,55964,1788],[452627,66362,1423],[431955,29081,2082],[429830,28873,2052],[429684,28946,2042],[433804,29385,2092],[436098,34352,2246],[454400,61909,1461],[454498,61540,1492],[454792,61824,1683],[455775,54967,11035],[455665,55576,1759],[429364,29563,2092],[429101,29684,2005],[429170,29347,9733],[429803,28876,7555],[429073,28854,2024],[455775,55262,10483],[447527,37633,2868],[447185,37488,2167],[447558,37384,2530],[448286,37586,2594],[448140,37674,2514],[448045,37396,2517],[443848,36484,2269],[443944,35917,2272],[444159,36196,2433],[446939,37528,2261],[446080,40620,2279],[435632,29812,2102],[440903,36769,2187],[441110,31507,2122],[448601,37862,2119],[448571,37130,2142],[449151,37935,2142],[447239,37338,2921],[448177,37999,2444],[448517,38021,2274],[450277,40600,2104],[446998,36177,2164],[447249,35643,2162],[447827,36870,2180],[447940,36363,2152],[447035,36178,2452],[448321,37346,2175],[448071,37298,2236],[447268,37107,2575],[447200,37230,2851],[447574,36918,2565],[447800,37120,2494],[447607,36663,2171],[447544,36744,2477],[441542,37295,2312],[442414,38147,2305],[442046,38171,2177],[444156,39373,2285],[438323,30484,2112],[397382,125632,1949],[397862,125775,1062],[397429,125990,1930],[400161,122409,1942],[399835,122365,942],[400428,122021,978],[403191,119506,1863],[402674,119631,942],[403776,118959,1007],[431607,94664,1057],[431495,94360,992],[432178,95139,1082],[411789,112514,2063],[412194,112141,1045],[411116,113370,1082],[409106,114009,1222],[409047,113680,1003],[409526,113815,2087],[408760,114780,1083],[408258,114574,1007],[408779,114384,2089],[405789,117150,2026],[405535,116920,1982],[405682,116899,995],[413859,109362,1017],[413336,109831,1018],[414248,108927,1862],[415377,108037,1040],[417195,106309,962],[417387,106258,1041],[418456,105635,1416],[419199,104752,1007],[419313,105054,2056],[418900,105201,2095],[424273,101541,7542],[424190,101245,2088],[424990,100924,9726],[427318,99129,12875],[427284,99208,1050],[426902,99227,13255],[395143,127370,978],[395553,127169,7188],[395604,127418,1934],[420545,103618,1008],[420419,104036,2064],[420163,103716,952],[429063,96984,7695],[428511,97112,13983],[429107,96460,962],[404483,117995,988],[421945,102736,2055],[422302,102612,1321],[422394,102919,2060],[417587,107241,2008],[419072,106067,1092],[417046,107853,1102],[416580,107107,2093],[416781,106746,1038],[416828,107079,1080],[412541,110976,2099],[412964,111238,2064],[412627,111648,2054],[409758,114110,1049],[409712,113755,1057],[410040,114018,1363],[406099,116718,2035],[406631,116487,2023],[406436,116950,2071],[405095,118467,2009],[404595,118285,2026],[405005,117789,2003],[402470,120208,1997],[401226,121359,986],[375184,147659,1913],[374052,147629,1755],[374797,147336,1459],[369491,152176,1145],[369119,152529,933],[368838,152527,906],[368369,153151,950],[368612,153514,942],[368245,153109,902],[395895,127305,1030],[394932,128567,990],[394196,129441,1032],[395903,126888,1923],[425616,100327,10953],[425746,99978,1390],[426051,100185,11623],[429880,96537,1049],[429881,96133,15308],[430333,96398,2061],[429545,96539,9747],[431031,94880,1050],[424631,100711,1117],[425271,100454,14636],[428308,97229,1020],[429698,97183,10723],[430177,96788,11728],[430225,96103,1065],[430234,95761,1840],[430299,96074,14815],[426324,99434,10684],[426945,99335,1043],[429443,96907,7605],[429420,96653,1140],[425317,100098,1324],[426342,98713,12310],[422938,101427,962],[427529,97749,12469],[427801,98371,1461],[427478,98432,1324],[427633,98041,13403],[427568,98743,2017],[427254,98514,1946],[428482,97802,12281],[428751,97758,11269],[428399,97873,1092],[426577,99754,1068],[427147,98188,1030],[427239,98495,12950],[426916,98641,1941],[427752,98710,13827],[425287,100874,1952],[425485,100691,13330],[426096,99150,7961],[425254,99786,1024],[427272,98807,12846],[427819,98711,1070],[431272,94763,1059],[431302,94827,9116],[430612,95673,2041],[430486,96057,10668],[428078,97595,1962],[428421,97458,12049],[426728,98948,11282],[429343,97250,15751],[428152,97891,12000],[427128,98194,11939],[426585,98649,9795],[424920,100227,1236],[425202,99788,10990],[430601,96045,1178],[396937,125921,1046],[397169,126082,9224],[396983,126252,1075],[398127,125311,1028],[398170,125284,8048],[425003,100931,1078],[423192,102578,1092],[423572,102175,7109],[423868,101365,2066],[423598,101433,8899],[423759,101079,1046],[423537,101831,7268],[424643,100356,1956],[424862,99916,982],[430637,96364,1091],[398141,124928,1932],[398895,124611,1029],[396587,126068,1074],[396452,126871,1914],[396229,127038,1890],[396408,126528,1929],[396632,126428,1032],[394533,128793,1018],[394116,128539,1953],[394488,128446,1024],[396350,126183,1765],[395520,127124,1294],[384774,137556,1997],[385226,137482,2022],[385271,137824,2009],[399827,122644,994],[395280,127945,1847],[395971,127326,7314],[393742,129059,1920],[394159,128855,1962],[392760,129655,982],[424171,101631,1090],[423467,101512,1318],[423517,101867,1372],[429255,97276,9868],[423537,102194,1026],[422710,102162,1353],[422798,102456,2059],[431694,95341,1027],[431428,95446,1993],[431323,95121,1113],[430865,95263,2005],[399679,123804,1053],[399688,123376,1976],[399965,123658,1036],[398469,124452,1064],[398439,124120,1256],[398867,124231,1334],[396141,126390,1867],[431719,95010,1993],[424139,100909,1989],[399178,124440,1020],[399724,123969,1092],[420678,104630,996],[421120,104309,1072],[417176,106658,2072],[417761,106158,2034],[416983,107713,2085],[416647,108163,1042],[421530,102894,1007],[421926,103126,1050],[421966,103442,1016],[385511,136759,1952],[385703,136450,1006],[399541,122798,984],[402832,120421,2003],[402731,120147,1094],[403882,119230,2010],[403516,119399,1994],[403602,120051,1988],[403290,120169,2021],[370808,151477,945],[369956,151718,1810],[371238,150978,1925],[372005,149948,1912],[372542,149282,1926],[372097,150632,1923],[419721,104588,2081],[420087,104158,2006],[420507,104708,2054],[421644,103199,2064],[400254,123079,2006],[399936,122930,1976],[400153,122802,1101],[402990,120353,1234],[402991,119946,1988],[402888,119694,1008],[400889,122211,1026],[400993,122480,1984],[400531,122263,1976],[391632,131226,1946],[391982,131131,1053],[391673,131570,1879],[394145,129276,982],[398529,124800,1243],[411322,111568,1812],[408418,114232,2002],[409798,114427,1027],[409191,115108,1082],[408666,114112,1011],[411200,111928,2050],[410430,112517,1020],[418586,106287,2034],[407025,115664,990],[406166,117771,1022],[405777,117568,1078],[406186,117390,2019],[407937,114990,2083],[407559,115789,2067],[407514,115475,2021],[406279,116340,991],[406835,116771,1061],[406787,116431,1027],[407223,116592,2043],[405460,117668,2017],[404297,119418,2028],[404205,118742,2008],[406678,116832,2042],[409247,114609,2092],[409481,113499,2047],[410904,113028,2051],[410518,113162,1053],[410544,112795,2108],[409224,115005,1020],[410258,113623,1069],[410000,113328,2096],[410210,113265,1045],[409507,114235,1030],[409138,114355,1024],[408868,115058,2084],[374721,147059,908],[375051,147072,1149],[374993,146768,878],[373545,148078,901],[379645,142514,1949],[379214,142636,911],[380812,141131,1901],[378754,143175,1869],[378941,142977,906],[379044,143177,1960],[375610,146835,914],[375139,147321,1906],[375298,146837,891],[371767,149956,1840],[371519,150307,1931],[376212,145793,1834],[376311,146489,1924],[375926,146409,1920],[379322,142879,1962],[379735,143202,1934],[373647,148286,1912],[373220,148614,1933],[375967,146731,1914],[373691,148605,1930],[431161,95855,1072],[430956,95935,2050],[430847,95620,1072],[369025,153417,1863],[370513,152045,1905],[368863,153791,1002],[368746,153420,1889],[411226,112654,1049],[411270,112993,1048],[409953,112970,2088],[408371,114859,2063],[407980,115320,2074],[406520,116213,977],[407136,115944,2027],[406807,116044,2028],[407277,116858,1092],[406875,117108,1009],[388298,134407,1958],[387783,134648,961],[388252,134077,1931],[388659,133968,1956],[389044,133893,1958],[388685,134337,1627],[413068,111505,1092],[410795,112763,1030],[410815,112355,2064],[409618,114521,2072],[377023,145965,915],[376683,146164,1918],[376594,145480,1936],[375585,146474,1214],[410591,113499,1455],[408002,116058,1002],[407605,116147,2048],[394488,128019,1820],[393095,129455,1921],[393454,129595,1936],[393080,129857,963],[391993,130729,1956],[392319,130221,1935],[392589,130515,977],[381864,140104,914],[381590,140374,1949],[389296,133453,1947],[389955,133431,1022],[389288,133877,1026],[387109,135384,1990],[387104,135812,1114],[386765,135457,1978],[392630,130830,976],[383069,138965,935],[390963,132188,1936],[390523,132744,991],[390145,132780,1928],[388615,133653,1937],[390131,133192,969],[389250,133110,1925],[388995,133540,1925],[381680,141024,2006],[380861,141461,1976],[382366,140646,1995],[382004,141127,981],[377270,144591,892],[377375,144803,1942],[397757,125441,1923],[397334,125289,1913],[397675,125143,1335],[396892,125604,1007],[408461,115537,2057],[416013,108598,2066],[416390,108173,2066],[414945,108470,1022],[416936,107354,2090],[415491,108351,2083],[415099,109080,2089],[417157,107055,1059],[415905,108307,1068],[415141,109425,2023],[415045,109666,1102],[414744,109520,2077],[415926,107925,2074],[415056,108746,2087],[386137,136624,1976],[385744,136767,1010],[383540,139261,1027],[384037,139067,1983],[383585,139598,1035],[386094,136305,1968],[386414,136293,1041],[383217,139509,1995],[388288,134849,974],[386852,136103,2000],[386459,136646,1008],[385561,137110,2008],[385606,137466,1976],[394842,127887,984],[419337,105792,1005],[419808,105265,2046],[420701,104235,2064],[421004,104134,2073],[405842,117889,1409],[406479,117282,2066],[405373,118619,1102],[405543,118314,1990],[405502,117985,2024],[411248,112267,2096],[412762,110270,1012],[414387,109935,2081],[414727,109927,1063],[413634,110098,1044],[413448,110110,2084],[413248,110846,2076],[412923,110922,2064],[413138,110559,1060],[412166,111393,2045],[413749,110393,2105],[412875,110566,2055],[413157,110171,2057],[414019,109991,2098],[413654,109695,2079],[413424,110481,1051],[413970,109632,2072],[413533,110767,2069],[414057,110309,2038],[413226,111238,1037],[389818,133255,1938],[383549,138810,1991],[383171,139178,1960],[399147,124089,1224],[399464,123882,1932],[398862,123869,1938],[399420,123532,1961],[389723,132553,1908],[390872,131519,1903],[389409,132798,936],[391886,130462,945],[393125,130191,963],[389716,132999,979],[387450,134931,1988],[389512,133038,1939],[431094,95207,1337],[418547,105968,2078],[404683,118961,2027],[400520,122664,1069],[400563,123012,1025],[399376,123201,1949],[400901,121804,1948],[401336,121651,1979],[401376,121967,1961],[410882,113418,1030],[368603,152868,913],[368696,153060,1848],[370464,151675,1898],[384291,138103,1086],[384819,137890,2008],[383996,138743,1996],[371908,149749,936],[401703,121169,1976],[401746,121499,1972],[402192,121382,1916],[402869,120745,1920],[403028,120708,1094],[401596,122175,1092],[411658,111536,2036],[412058,111121,1036],[411705,111864,2086],[382813,139239,1923],[382322,140314,1997],[381249,140733,1958],[383946,138389,1968],[377037,145500,1954],[368136,152989,892],[374471,147284,1855],[382906,139917,1966],[382276,139969,1984],[382652,140269,1997],[383206,139961,1005],[382551,140731,1072],[422774,102820,1024],[422235,102278,1001],[421309,103674,2046],[420912,103463,2030],[421684,103518,2022],[421284,104052,987],[420658,103920,2040],[407957,115694,1050],[392907,130248,1948],[392409,130876,1962],[393786,129377,1943],[392861,129917,1923],[391584,130888,1890],[398045,124657,1095],[418985,105851,2067],[412216,111745,2094],[431183,95509,2032],[401729,121884,1010],[371606,150968,1937],[378846,143848,1914],[378281,144506,1951],[377420,145144,1947],[387499,135292,2015],[387857,134915,1515],[403479,120392,1092],[368935,152769,1784],[369572,152399,1873],[369207,152758,1717],[406725,117189,2032],[377769,144160,1922],[405080,118871,1035],[419359,105396,2067],[380432,142604,962],[380902,141786,1946],[380028,142511,1965],[380070,142852,1923],[410301,113963,1031],[399605,123108,1320],[414248,108927,982],[411322,111568,952],[408418,114232,1002],[405535,116920,932],[210602,319433,1062],[211419,318556,1062],[214793,319857,832],[208877,320868,1062],[211070,325923,832],[210218,325787,832],[207846,325349,832],[212854,327427,832],[211248,326057,832],[335118,198071,876],[333494,199934,813],[334518,196473,962],[336397,197315,832],[419248,114877,832],[420635,113524,832],[421626,113801,853],[436212,96346,911],[436634,96196,878],[436593,96307,12502],[438747,89436,1185],[440095,92440,722],[437873,90413,1072],[441204,91074,712],[445663,85012,712],[445651,85029,712],[444145,84104,1020],[439076,88953,1067],[442779,87036,907],[411461,122262,862],[417612,118356,722],[407393,128667,722],[438278,89477,1082],[439538,92624,778],[438411,92753,892],[438493,92925,8867],[438452,93067,890],[428468,106175,836],[433609,100429,842],[424764,110579,752],[437190,94534,949],[437143,94169,967],[437474,94009,922],[434532,98280,920],[434253,99103,870],[432905,99526,922],[437129,95022,10123],[436466,94846,986],[436857,94656,961],[434692,97225,932],[434783,98118,904],[435518,97038,929],[436293,97123,872],[435032,97998,889],[429245,105119,9336],[428982,105017,855],[429313,104922,824],[423405,110698,812],[427421,106058,872],[404185,131903,732],[403389,128842,922],[417605,117981,849],[414543,119658,822],[416938,117296,832],[399819,132350,912],[401257,130875,922],[406460,126326,892],[404893,127557,942],[398473,133840,902],[395364,137452,862],[393008,140033,822],[390592,142594,822],[367036,162765,1012],[373525,157278,944],[366264,164327,992],[388503,144618,842],[363379,169772,882],[369096,158919,972],[370139,157275,952],[339854,193579,858],[339680,193499,11170],[339808,193229,881],[380395,150013,912],[382368,148955,872],[377282,154434,877],[376331,154665,930],[376249,154952,7679],[376132,154823,6289],[377253,153918,6554],[377195,153771,875],[377481,152779,901],[375712,154577,927],[374857,154203,893],[374817,153877,927],[372803,154631,902],[375174,153053,912],[373769,156281,893],[373517,156396,7039],[373387,156264,890],[376118,155310,892],[376310,155259,7953],[375543,155922,928],[384417,147729,872],[385692,146896,872],[373254,155252,896],[373096,156579,903],[371923,155297,912],[386775,146067,862],[373524,157270,5542],[370790,156394,942],[375177,156599,940],[367831,161248,1012],[364702,167983,922],[365364,166516,962],[364329,168598,892],[360072,173425,872],[356544,177264,842],[352392,181857,799],[354092,179794,832],[349405,184198,11356],[349493,184488,822],[349108,184528,873],[349446,184133,827],[346794,186536,842],[350304,183346,812],[345077,188892,825],[342351,190432,882],[320547,211858,1006],[313361,219411,832],[316369,214780,1012],[338614,194159,871],[338405,194569,10453],[338139,194186,885],[330899,199154,1012],[328606,201149,1022],[327141,202666,1012],[324601,205572,1062],[318746,212291,1062],[319577,211421,1062],[286012,245644,832],[302359,225558,1062],[314000,217159,1002],[312651,218460,1062],[311112,219741,1062],[242536,283852,1062],[268373,259616,1062],[231298,298380,832],[309463,220901,1062],[300653,226658,1062],[297218,229216,1062],[292918,232334,1062],[289684,234794,1062],[287638,236691,1062],[284091,241114,1062],[281943,244084,1062],[278205,249448,1062],[276631,251666,1062],[274926,253541,1062],[272334,256108,1062],[271457,256890,1062],[269652,258500,1062],[265231,261970,1062],[245067,280767,1062],[262061,263975,1062],[256862,267538,1062],[259607,265438,1062],[254672,269515,1062],[252458,271715,1062],[250534,273565,1062],[249268,274992,1062],[247235,277665,1062],[240065,286724,1062],[227570,297540,1062],[228211,296316,1062],[238343,288386,1062],[236027,290279,1062],[233932,291726,1062],[231275,293609,1062],[229744,294730,1062],[228881,295447,1062],[228711,295667,1062],[226505,299403,1062],[219985,310200,832],[221584,305692,1062],[218292,312438,832],[217434,310893,1062],[216483,315620,832],[213275,316227,1062],[205414,323264,832],[207209,321619,1062],[205003,321964,1062],[204150,322181,832],[204136,322052,1062],[205822,321866,1062],[429041,105448,10435],[429118,105331,15783],[429964,104432,836],[431964,100755,11847],[431839,101153,9304],[431164,101672,9748],[434681,98236,14736],[434573,98610,889],[438575,94076,753],[438157,94697,792],[435849,96869,900],[349781,184058,818],[348945,184846,10253],[349441,184562,11181],[348764,184987,835],[428735,105760,823],[428512,104909,12989],[428743,105216,10609],[429008,105134,10553],[430753,103266,831],[430243,103012,889],[430811,102928,15768],[431310,102280,10694],[431097,102832,827],[430980,101949,13452],[429918,104073,852],[430333,103714,847],[429956,104233,11317],[428896,104340,892],[429497,103686,10733],[429493,103841,886],[428962,104802,10533],[429022,104683,15640],[429254,104741,10185],[436942,95338,910],[437349,93019,996],[436992,93380,992],[437340,92350,1022],[437561,94682,895],[437864,94532,873],[437906,94868,846],[436675,96515,855],[435476,96719,944],[438100,94660,13683],[437430,93666,940],[437056,93494,983],[437345,93200,10660],[350242,183585,812],[350084,183906,10287],[350015,183629,813],[348603,185039,11552],[348245,185417,11779],[348111,185489,9761],[431583,101885,9623],[431136,102027,8672],[431492,102540,12807],[431415,102390,857],[431535,102270,8200],[430288,103350,894],[433193,100475,866],[429231,104275,890],[437575,94827,10887],[429877,103756,875],[428734,105139,15738],[430190,103105,12217],[437025,96014,820],[436131,95700,969],[431714,102321,836],[432043,101764,11076],[431901,101574,878],[432022,101401,11459],[432299,101043,11652],[432102,101144,899],[432058,100808,904],[435601,96777,11284],[435843,95466,962],[436018,95529,10849],[350062,183977,815],[342832,190880,840],[342496,191349,805],[348766,184771,14346],[347950,185882,829],[339602,193987,818],[339356,193993,867],[339558,193646,856],[428934,104490,10704],[429283,104364,11326],[429613,104299,11221],[429534,104157,887],[429578,104511,847],[432439,101075,877],[432479,101388,847],[431947,101935,844],[431632,101671,901],[347587,186341,843],[339727,193844,11183],[436936,94465,14708],[437270,95184,885],[436816,94325,979],[436103,95161,12741],[436087,95364,951],[435616,96714,7553],[351710,182478,8734],[351958,182251,807],[350446,183728,10817],[437697,93209,954],[438116,94358,836],[339837,193845,7901],[338511,195170,10824],[339455,194149,6807],[436418,94489,982],[351500,182290,817],[351171,182693,809],[351040,182939,8962],[350489,183173,824],[349844,183901,12448],[340168,193197,867],[340888,192682,840],[339312,193662,862],[339268,193306,903],[338659,194517,858],[337728,194627,912],[340016,193538,7465],[338172,194043,8198],[336799,195117,927],[338870,193276,892],[342144,191752,824],[339024,194071,881],[338798,193643,11120],[338277,195254,842],[338698,194769,7637],[338702,194853,823],[351374,182359,9788],[352342,181477,807],[350537,183531,807],[350837,183156,803],[351544,182621,811],[431674,102004,863],[339104,194455,7207],[338831,194627,9743],[432791,100616,892],[432424,100643,10104],[432752,100301,916],[340649,193018,7917],[340558,193134,828],[341276,192280,849],[432943,100514,9089],[432396,100995,9049],[432128,100746,9757],[432353,100398,906],[437990,93369,898],[437561,91369,1052],[339300,193977,10839],[435762,96190,936],[373206,154891,874],[437359,93895,9549],[339071,194457,839],[438192,93211,898],[437848,93255,7668],[376070,154949,892],[375411,154880,998],[374399,154541,901],[377745,151518,902],[368509,159999,992],[376373,154994,910],[375552,154968,2796],[376104,152953,911],[376286,154329,924],[376030,154620,940],[376737,154946,6019],[376462,154865,6465],[377150,153420,899],[376724,153028,900],[377101,153058,884],[376677,152682,883],[373433,156599,898],[340211,193556,811],[340974,192647,7563],[339959,193754,9790],[374798,153962,7456],[338568,193796,897],[373330,155020,6955],[373584,154872,904],[373856,156934,910],[376485,152896,6262],[377188,153174,7015],[377240,154111,889],[340342,193367,8083],[376419,152978,906],[373478,156950,895],[376647,154724,890],[376063,154573,5786],[375756,154931,893],[322234,208338,1082],[335169,198375,1021],[443903,81566,1152],[444257,86883,594],[457400,55040,1522],[457359,53203,1522],[462761,54675,1102],[462283,55742,892],[461801,56820,892],[462865,54417,672],[462925,54267,1102],[457380,67875,732],[456573,61990,1522],[457365,57052,1522],[457314,58070,1522],[457230,59058,1522],[457089,60054,1522],[456863,61023,1522],[456264,62958,1512],[446661,80868,2267],[446208,81296,1099],[446246,80982,2193],[455888,63885,1502],[452239,73714,930],[452651,73277,906],[452856,73678,3059],[455593,64769,1460],[455450,64810,1502],[455444,66553,2229],[455580,66347,15749],[455458,67211,1244],[455665,65145,1795],[454994,65722,7632],[455167,67303,2413],[454807,67706,2469],[454549,67384,13398],[453911,68982,9768],[453822,69206,13102],[453362,69277,11751],[453417,69338,2139],[453155,69786,2616],[452150,73039,925],[452561,72600,876],[451170,73441,3132],[451376,73263,910],[451582,73669,3062],[447785,77982,1339],[448303,77930,3002],[448209,78208,1189],[446176,80339,2381],[446155,80655,1500],[445690,80676,8064],[453374,72390,933],[453409,72722,820],[453014,72499,921],[452692,69811,1303],[452780,70190,1853],[452376,70319,2447],[455174,66703,9430],[455072,66329,14322],[455318,66470,6047],[455102,66962,2137],[454597,66662,1429],[454154,69108,1229],[454198,68815,2372],[454477,69047,1088],[454004,67443,1412],[455334,67068,16640],[455365,66825,6058],[451739,73166,1014],[451822,73500,1555],[455421,69323,2312],[455459,69639,2263],[455014,69378,2340],[455606,65724,6017],[455747,65816,1729],[455555,65734,16508],[455354,65873,7632],[455757,66117,1326],[455417,66217,7895],[455294,65837,1433],[454360,68060,1241],[454896,68404,2450],[453629,70705,2635],[453798,70586,928],[453975,70980,2695],[455208,67617,2432],[454206,69516,8607],[454303,69519,2556],[454346,69833,2591],[454616,68735,8360],[455270,68937,902],[455162,69094,10572],[454627,69433,2484],[453718,69893,1055],[453801,69636,2694],[453934,69900,13403],[454392,69551,15497],[453902,69168,1075],[454158,69201,8503],[453948,69499,1112],[454552,69715,926],[453978,68916,2599],[454344,67427,2161],[454637,66981,1394],[455147,66093,15803],[455627,67902,2362],[455492,67523,1159],[454110,69880,2691],[446545,80511,1276],[446280,80568,10029],[445727,81098,1297],[445852,82009,7881],[453888,68666,10013],[453506,69703,2732],[452934,69170,1342],[454407,68381,1320],[453895,68539,2113],[454028,68096,1300],[455827,69588,2115],[455540,70614,1634],[455334,68648,2319],[455639,68836,837],[455600,68514,876],[455572,68168,1114],[445671,80755,1129],[447442,77736,1281],[447233,77896,2353],[447095,77528,1105],[455795,69252,2260],[453031,72186,1748],[453469,72141,2741],[446895,80720,1085],[444586,82508,1035],[445159,83722,916],[455251,67974,2381],[455441,67774,11216],[454411,67781,2450],[446314,78822,1130],[445812,78876,1162],[446813,77617,1153],[446303,81650,1766],[446289,81531,8380],[445305,81249,1642],[444862,81369,1052],[447601,79076,1073],[447936,79320,1018],[447658,79409,1251],[446656,81492,1050],[445586,80108,1138],[445525,82579,2278],[445921,82455,1541],[446037,82794,2539],[445308,81604,1031],[446712,81829,1213],[446264,81854,7444],[446300,81978,1137],[445928,82143,2220],[447026,81088,2267],[447079,81270,7418],[446973,81414,912],[447267,81274,859],[447347,81641,1311],[447540,80248,2358],[447205,80296,1763],[447195,79976,2208],[447173,82412,1911],[447225,82753,1998],[446482,82688,2382],[453874,70303,2500],[452943,70901,2853],[453349,71119,2927],[452994,71242,2950],[445648,80989,6894],[444538,82150,1019],[446437,82333,2410],[446938,83212,1858],[447691,82222,885],[447904,81431,1024],[447561,81189,950],[444656,82380,7296],[444987,82377,959],[455222,68250,1472],[454158,70236,2723],[455044,69712,2146],[452329,74050,1579],[452767,74277,705],[452469,74445,2838],[450277,74609,1125],[450325,74971,1138],[450094,74769,3043],[449022,76413,2824],[449349,76599,1090],[449119,77059,3007],[449579,77289,3065],[449854,76828,1569],[449989,77216,2748],[448906,79173,2722],[448442,79262,2510],[448410,78911,2702],[449221,75569,1174],[449651,75470,1186],[449709,75806,1395],[450823,76901,1107],[450759,76560,832],[451217,76843,2477],[452081,72395,1130],[451742,72211,2794],[452154,72091,2709],[451180,74701,958],[451689,74636,2801],[451595,74923,965],[450818,73491,2992],[450652,73109,1373],[451129,73110,3161],[452417,70661,2411],[451781,70784,2042],[452545,71327,2984],[452900,71516,1111],[451615,73995,2925],[451833,73843,1094],[451983,74226,2494],[450352,74018,3248],[450877,73838,3185],[452189,73356,886],[451288,74430,2969],[453684,71027,2818],[453588,71316,931],[453198,72889,2796],[453245,71405,920],[451403,72630,2453],[450889,72349,1181],[451314,72257,1881],[452520,72260,926],[452893,73987,3011],[453760,71694,2666],[453289,71747,926],[454395,70169,2659],[453314,70798,3008],[453240,70431,2645],[452772,70478,1202],[454505,71155,2421],[454273,71248,2499],[454105,70848,877],[451646,75264,1045],[451986,75154,845],[452023,75499,727],[448788,78191,2856],[448699,78470,1102],[449022,77369,1070],[448658,77162,2909],[448398,78601,3117],[451409,76371,1133],[451410,76715,519],[450023,77527,2663],[450449,77802,2481],[450778,77675,2572],[450448,78101,1925],[448881,78837,2979],[453875,71229,838],[453111,73177,1055],[454542,71507,2298],[454182,71520,732],[453837,72386,2492],[453905,73030,2274],[453079,71897,2942],[454055,71627,2626],[454192,70554,2635],[454129,72298,2448],[454165,72635,2345],[454601,70077,958],[453222,73559,1924],[451460,76086,2367],[450705,76216,699],[453294,73893,2329],[452379,74735,1040],[452797,74593,561],[452407,75062,832],[449322,78756,2746],[455151,70399,2400],[454776,70461,2697],[450284,77080,1483],[450431,77451,2866],[450985,77252,2735],[450582,76960,1110],[449671,78271,2549],[450086,78165,2367],[450124,78521,2248],[453495,73080,1379],[449191,77725,2793],[449660,77959,2973],[449281,79050,1634],[449637,78936,842],[449273,79369,936],[452049,74561,2814],[448025,79020,2798],[448933,75732,2828],[448853,76050,1123],[448394,76126,1105],[448152,76918,2733],[447795,77330,2665],[447330,77047,971],[448579,77484,1225],[448753,77865,2970],[451668,71550,2947],[451580,71188,2373],[452083,71426,2918],[453802,72049,2617],[453591,70376,2695],[451768,75636,2088],[451742,76271,559],[448498,79608,2669],[448427,79915,1114],[448113,79666,2855],[454835,71093,2384],[454752,71392,684],[454339,71882,2270],[454596,71850,2430],[447947,78330,2961],[448200,77279,2750],[447603,78126,2821],[448565,76487,2852],[448501,76810,1361],[447512,77451,2790],[448023,76551,1605],[447996,78688,2994],[447537,78438,1341],[447850,77656,2833],[450854,74811,1099],[450552,74872,1008],[450666,74601,3092],[451723,75961,863],[450883,75122,934],[450938,75457,1097],[450619,75203,1335],[451952,74827,960],[450057,74457,3095],[450249,74296,1300],[450960,75767,843],[449726,76140,1025],[449400,75948,2998],[450386,72893,2290],[449352,74003,1762],[450580,72414,1252],[450391,75297,1467],[449609,75155,1177],[449239,74930,2591],[449311,75269,2996],[448844,75060,2809],[449704,74873,3036],[450017,74101,3189],[450484,74228,1224],[449951,73773,2861],[449602,74170,2896],[449398,76912,1201],[449443,76288,2976],[449914,76519,2974],[450159,76391,986],[450557,76637,1363],[450073,75739,973],[453546,70056,2644],[450679,75867,967],[450905,74165,2986],[447077,79640,1162],[447441,79229,2829],[447480,79558,2772],[447796,79775,2517],[446710,79083,1475],[446431,79172,2139],[448457,80227,969],[448065,79983,1596],[447336,80980,2360],[447090,78970,2568],[447367,78880,2440],[447091,82068,1372],[446828,82183,2206],[451346,72910,1129],[450702,72831,2580],[450933,72708,1142],[446901,78266,1216],[446824,79415,2475],[447302,78233,2699],[446496,80151,1239],[446530,79854,2269],[446919,80072,2616],[447401,79870,1106],[446871,79754,2520],[447742,80089,1186],[447785,80430,1168],[448215,80669,2454],[447926,80808,2458],[448068,80317,1033],[447952,81117,2259],[447514,80872,857],[447927,81742,774],[447214,80607,1320],[452548,71959,1871],[452441,71586,1053],[451998,71698,1236],[447582,80560,2388],[448552,80904,1077],[448227,81005,2015],[454670,70719,758],[454301,70425,890],[448313,75481,1157],[452504,71010,2979],[455092,70704,1030],[455496,69962,2211],[445412,82255,1295],[450219,76743,1189],[449397,79728,2027],[448985,79845,2599],[448924,80182,1136],[448533,80565,1420],[449717,78625,2550],[448866,79485,1588],[451660,72490,1125],[451581,71846,1194],[451337,71966,2725],[450935,72074,2315],[445994,79619,1144],[446856,80403,1111],[446047,79979,1226],[448268,81360,1945],[448322,81399,732],[446500,83637,884],[446075,83461,1847],[446537,83326,1975],[447099,81759,2059],[447994,76223,1804],[448162,75600,1202],[447572,78762,1228],[451705,72808,1178],[450967,74512,3221],[450437,73237,2375],[450227,73337,2747],[445073,83049,929],[445186,83397,1873],[451309,75715,921],[447340,78550,2662],[447030,78631,2351],[447151,77202,2470],[451220,73762,3243],[451240,74083,2928],[449206,74615,2713],[451232,75048,1057],[447378,81980,1113],[445565,83594,984],[446082,84124,743],[445559,82931,2107],[445586,83248,1913],[446066,83107,2385],[446492,79496,2394],[447420,82312,1111],[446097,83772,1594],[446657,78722,1395],[445906,78943,1147],[450630,75549,871],[452133,72720,1262],[455511,70291,1813],[462761,54675,252],[462925,54267,252],[454994,65722,1502],[451781,70784,1292],[449352,74003,1222],[427492,25064,10375],[427104,25150,1842],[428710,24676,1902],[429886,24540,1752],[429729,24684,8371],[429748,24454,9076],[428957,26113,1946],[429466,26142,1956],[429117,26482,1982],[429218,25946,1960],[429521,25914,2008],[429424,26598,1992],[429268,26545,1982],[429770,26351,1924],[429582,26640,2002],[429888,26447,7781],[429783,26645,1986],[430138,26534,1920],[429906,26691,2012],[430153,24797,10198],[430334,24918,1863],[430079,25183,1811],[430477,26540,1959],[430398,26686,2022],[430216,26230,8965],[430345,26280,9199],[430325,26334,7197],[430896,26218,1888],[430665,26291,1937],[430815,26040,1989],[430335,26012,13788],[430474,26031,1927],[430878,26581,2032],[430720,26627,2022],[430684,25959,13551],[430495,26013,2024],[437843,23600,2654],[437560,23896,1692],[437360,23602,1802],[437690,23903,1722],[437826,23850,1982],[438079,23870,1802],[437950,23889,1732],[438832,22582,2902],[439112,22827,2597],[438747,23330,2566],[438206,23842,1872],[438298,23481,2673],[438325,23781,2499],[438331,23805,1972],[438573,23707,1982],[438454,23760,2152],[438688,23647,2152],[438799,23578,2162],[439006,23420,2192],[438905,23503,2192],[438794,22489,3142],[438887,22452,3142],[439190,23236,1922],[439101,23331,2152],[439082,22519,2742],[439416,22918,1912],[439348,23029,1912],[439437,22735,2533],[438322,22788,2812],[439673,22501,1708],[439626,22735,1912],[439859,22581,1912],[439740,22654,1922],[439954,22405,1635],[439982,22516,1912],[440223,22254,1448],[440109,22459,1752],[440240,22411,1702],[440510,22340,1482],[440507,22155,1383],[440647,22318,1452],[440786,22305,1422],[440895,22037,1348],[440926,22301,1412],[439518,22823,1872],[446790,24428,1178],[446863,24311,8988],[447150,24332,1080],[453776,25552,666],[454214,25199,598],[454315,25460,572],[450930,24112,3932],[445177,22501,1062],[454691,25162,492],[446421,24084,7373],[446491,24045,2362],[446580,24150,8369],[446726,24356,6976],[446945,24957,8958],[446730,24923,8894],[447377,25161,8555],[447485,25215,1133],[447463,25355,3627],[447713,24666,8424],[447881,24825,1029],[447754,25016,8353],[448132,24850,1057],[448070,24866,3624],[448088,24606,4347],[448844,25496,1107],[448645,25261,4604],[448687,25224,3911],[447918,25094,4486],[447632,25271,1080],[447845,24589,1063],[447945,24392,7120],[448864,25528,4610],[448776,25579,4871],[449042,26179,1179],[448903,26026,1140],[449233,25980,1164],[448446,24227,4396],[448657,24272,883],[448645,24416,917],[449533,26463,1272],[449300,26407,1312],[450751,24151,419],[451053,24252,442],[454690,25163,492],[454691,25163,472],[447755,24376,4468],[448448,24988,3843],[448337,24798,3605],[448577,24744,3601],[450370,24731,931],[449915,24143,575],[450221,24031,446],[449533,25395,1036],[449207,25293,1018],[449387,25254,3602],[449768,26509,1242],[445942,23482,4111],[445875,23236,1013],[446088,23456,5299],[449258,25657,1077],[440168,22162,2642],[440713,21774,1542],[445900,22896,825],[446058,23109,2394],[444815,22757,999],[441065,22306,1412],[440374,22371,1632],[439841,22174,2802],[440100,22069,2802],[439804,22081,2892],[439711,22119,2892],[431443,25729,1795],[431514,25985,14508],[431321,25807,8651],[436940,23738,1589],[436960,23473,2332],[437711,23131,2541],[437766,22959,2763],[437815,23292,2850],[436109,22869,2122],[435845,22911,2212],[435845,22910,1762],[433744,24150,1834],[434272,23941,2142],[433786,24485,1799],[430018,26356,14289],[430282,24665,1767],[430358,24544,1730],[430555,24716,1939],[431757,25608,1891],[431763,25916,1815],[431645,25677,3824],[430070,26701,2012],[430675,25704,2156],[430431,25706,1936],[432695,23871,1850],[433007,24050,2023],[432941,24162,1779],[431165,25290,7407],[430824,25435,2246],[431105,25240,2181],[430179,26056,3373],[430260,26060,2273],[431342,25517,2785],[431334,25781,2180],[430820,25575,2012],[431102,25933,1787],[431264,25988,7517],[430304,25979,5291],[429328,25756,9602],[429506,25646,10636],[429433,25814,9278],[429687,25883,8741],[429590,25920,8923],[430540,25178,1879],[430412,25142,2702],[430360,24893,14124],[430560,26662,2022],[429964,25222,13570],[429867,24943,1795],[432618,24138,2884],[432718,24207,2083],[432561,24189,13835],[430576,24298,1881],[430875,24705,1924],[430007,26101,9559],[430127,25805,7962],[430187,25773,3586],[430291,25829,1947],[433511,23602,2251],[433337,24254,1732],[432598,24478,3564],[430122,25483,10945],[429913,25333,8117],[429255,24839,1805],[429565,25108,1861],[429233,25236,1889],[432114,24104,4174],[432084,24150,2126],[432029,24038,3043],[431224,24339,10008],[431113,24339,1732],[431027,24285,7327],[430185,25770,6993],[430033,25737,9382],[430855,25138,1957],[430723,24998,1857],[431012,25011,11395],[431182,26459,2012],[431032,26525,2012],[430232,25258,11652],[430313,25370,1894],[430692,25250,2194],[430632,25157,11423],[430544,25614,6512],[430420,25651,6162],[430784,25570,7010],[430714,25683,13272],[431239,25086,2121],[431793,24938,1984],[431746,25050,2778],[431477,24752,1893],[431162,24531,1757],[429542,25472,1980],[429841,25354,1925],[429679,25640,1951],[427716,25371,1884],[428033,25602,10665],[427458,25291,9468],[430362,25279,7383],[430288,25286,11198],[430267,25579,5852],[430443,25463,2549],[432919,24556,1876],[432867,24696,3271],[431132,24870,2017],[431353,26101,1859],[430892,24203,1984],[432314,24277,3073],[432402,24058,1830],[430102,24725,1757],[429911,25229,9931],[429899,24816,1739],[430513,25522,2064],[430544,25299,9913],[428366,25037,2364],[428195,25167,2664],[428135,24945,2008],[428216,25743,1887],[427809,24991,8621],[427894,25147,1962],[427507,25124,1844],[428555,25575,1917],[428426,25159,11043],[428636,25472,2179],[428882,24758,8117],[428925,24955,1902],[428624,25053,9009],[428119,25414,1943],[428173,25385,1952],[428284,25175,8982],[429887,26315,14073],[429797,26145,2101],[429928,26161,13524],[429748,26026,2229],[429896,25798,8090],[429373,25454,1923],[428666,25121,1947],[429470,25314,10732],[428910,25747,1948],[429070,25859,8729],[428883,25825,1988],[447527,24382,988],[447539,24576,1040],[449084,25788,3825],[430124,24467,10392],[430036,25633,6022],[429968,25717,3190],[430132,25635,4531],[430234,26699,2012],[429210,25659,1969],[446606,23299,4798],[446548,23239,6513],[446646,23233,4181],[447405,24819,8323],[447395,24988,3332],[446860,24058,7281],[446987,23954,5202],[447124,24160,6387],[446382,23008,665],[446146,23066,965],[445933,22717,405],[447220,23884,6479],[447161,23934,7321],[447022,23760,4766],[448046,24164,2946],[448048,24073,861],[448174,24048,860],[430344,25774,6221],[446579,23602,5055],[446596,23521,963],[446710,23546,2885],[446506,23962,6046],[446373,23987,8247],[429424,25820,1962],[429171,25604,1935],[428924,25519,2584],[429095,25389,9977],[429547,25945,6646],[449063,25723,1124],[447485,24201,971],[432758,25315,1852],[431422,26178,1826],[429616,24698,9930],[429587,24706,1774],[429519,24571,1681],[429494,24760,8075],[447580,23987,5930],[447371,24101,3799],[446551,24379,8709],[447393,25129,8409],[447132,25239,4522],[446794,25053,8322],[446452,24717,7482],[447010,25027,4120],[447192,24856,6317],[430281,24342,7987],[429918,25700,3976],[429821,25752,1983],[430228,25704,6390],[429977,25543,6981],[430019,25781,2355],[429964,25820,5642],[430081,25613,5329],[430057,25555,1911],[447025,23928,1026],[447866,24220,948],[447952,24135,3292],[450033,25468,980],[451211,25794,981],[451201,26587,1102],[450937,25767,1011],[450722,26599,1182],[447570,24185,7285],[431833,24047,1936],[431617,24323,2295],[431516,24196,7704],[431244,24816,2693],[431453,25094,2043],[431491,24220,2022],[431627,24605,1913],[428903,25425,1934],[429264,24737,1711],[429182,24589,8002],[428991,25986,7376],[447324,24752,8130],[447229,24094,1037],[447650,23646,4965],[447913,23468,658],[447801,23642,6459],[447545,23955,949],[447273,24006,5513],[446275,24179,7597],[446259,24052,6262],[446883,23885,3444],[446924,23793,2813],[446711,24020,6252],[448155,24424,955],[447970,23900,3974],[448100,23855,5892],[447931,23741,5154],[451678,25485,991],[451227,25329,918],[451702,25091,829],[451677,26536,1052],[432018,24645,2842],[432335,24510,3097],[436057,23432,1752],[435325,23045,2200],[435729,23222,1923],[431936,24074,1719],[432161,23943,1693],[432382,24508,1855],[447716,23933,3665],[447768,23851,5598],[446528,23533,5956],[446770,23481,5624],[446824,23665,4592],[447251,23744,897],[447300,23695,5254],[447444,23764,2761],[446003,23765,2901],[446059,23798,5546],[445854,23969,5292],[446295,23845,5786],[446375,23653,4571],[446604,23758,8216],[429743,26671,2002],[447670,25437,8445],[447553,25637,4962],[447937,25481,5004],[447143,23496,2876],[446492,23360,2799],[446652,23692,7134],[446745,23806,5838],[446526,23161,2360],[446401,23307,4376],[447277,23431,659],[447324,23504,5049],[447599,23318,464],[447567,23608,806],[446306,23292,1748],[446347,23230,1084],[446188,23604,3500],[446182,23510,7501],[446239,23656,2625],[446443,23627,7326],[446312,23418,5784],[446168,23752,6866],[446043,23611,2328],[446117,23232,4953],[445805,23680,7992],[445857,23697,1019],[446124,23421,1091],[445602,23562,4192],[445635,22722,670],[446622,23194,738],[446839,23387,817],[446948,23455,2621],[448421,23796,752],[448301,23652,5187],[448447,23476,530],[448199,23640,727],[448208,23774,3650],[448239,23904,3745],[448530,24112,3039],[448554,24138,4363],[447611,23767,5543],[447744,23696,3343],[447887,23808,5863],[428403,24893,1881],[429919,26041,8543],[445860,23660,5356],[445661,23557,4385],[445584,23476,1015],[430319,25666,4984],[445599,22922,1121],[445383,23135,1122],[445161,22587,1062],[447050,23534,868],[448605,26045,4765],[448841,26268,3662],[448395,26092,4332],[446939,23327,5305],[447044,23374,4634],[446197,23749,7491],[446189,24348,7244],[446138,24355,6092],[446133,24141,8312],[448672,25681,3222],[448857,25684,1112],[448342,25488,5314],[447888,25338,4835],[448840,25857,4812],[448690,23696,635],[448667,24035,793],[447161,25360,7862],[446831,25072,7118],[449107,25397,3696],[448625,25646,4676],[448183,24450,4315],[448315,24239,4315],[451174,24967,832],[451348,24591,658],[448179,23611,4962],[453061,26157,812],[453378,24841,217],[453497,25959,722],[453916,25726,652],[450510,25770,1009],[450140,24015,5121],[449369,23680,375],[447959,23340,4842],[447303,23151,402],[449622,23844,542],[446739,23272,2568],[447890,23809,817],[448957,23597,438],[449144,24085,838],[449295,24731,949],[447078,23284,565],[449400,23796,562],[449272,25170,1036],[449137,25099,3375],[449155,24921,973],[448375,24609,1003],[448390,24716,1028],[449109,25547,4882],[449552,24999,968],[449041,25711,3639],[450232,23962,384],[451300,24302,435],[451736,25620,886],[451957,25208,706],[452610,26320,922],[446872,25062,6415],[446855,25075,7483],[448275,25738,4915],[448174,25799,3594],[431702,25246,1789],[448883,25089,4569],[448865,25035,1051],[449081,25313,1075],[448623,24825,1020],[448885,24663,952],[448430,25197,4170],[432432,23944,2203],[433340,23546,1946],[448281,25980,6022],[448836,26215,4557],[445787,23377,2396],[448906,24263,859],[448596,24497,4307],[448683,24383,4542],[448706,24641,909],[448409,25093,4431],[449416,24989,3281],[448725,24337,3860],[450658,25681,998],[450554,25568,1990],[450678,25240,952],[451113,25753,3527],[450358,25704,1185],[445907,23715,4542],[450971,24986,1093],[446817,23780,939],[446264,23315,2439],[448397,24178,900],[448968,25727,2732],[446399,24640,8478],[448167,24881,4312],[446039,24155,5668],[445946,24088,7252],[447996,24081,3845],[447965,25882,4602],[448130,25822,4335],[451746,25085,1981],[452148,26447,982],[433089,24729,1917],[432532,24626,2352],[432336,24765,2631],[433033,24369,1799],[432783,24834,1852],[451273,24582,706],[450698,24839,868],[448394,25560,4374],[433387,24599,1799],[432100,24903,2501],[432315,25025,1863],[439647,22179,1919],[446963,25016,4899],[450243,26573,1202],[436086,23747,1595],[435746,23526,1611],[437732,22636,2869],[447058,24914,8528],[436554,22950,2597],[436535,23086,2541],[437374,23361,2445],[436566,22748,2284],[437431,22582,2265],[436898,22830,2640],[438142,22342,3462],[438142,22343,2622],[436097,23431,1956],[436302,23596,2061],[437386,23923,1578],[434872,24403,1722],[438187,22472,2976],[432669,23840,2058],[433706,23839,2292],[434100,23403,2074],[433503,24224,1961],[437820,23900,1722],[435676,23337,2073],[435786,23879,1517],[435357,23636,1549],[435140,23960,1822],[434961,23778,1733],[433107,24246,1943],[434929,23470,1843],[434541,23595,1793],[434636,23296,2083],[434995,24120,1585],[434616,24259,1635],[433729,23453,2177],[450835,25039,913],[436575,23529,1836],[437410,22980,2356],[436913,23122,2323],[437054,22975,2724],[436310,23630,1839],[437350,23048,2674],[436290,23344,2074],[439385,22396,2423],[435150,23343,2046],[434897,23150,1992],[434293,23521,2069],[434536,23300,2272],[439272,23135,1872],[433699,24432,2017],[435337,23350,1796],[435410,23992,1655],[440265,22590,1416],[450594,26838,1327],[450297,27002,1385],[461878,37046,1712],[465239,35098,1102],[465382,35631,1102],[465511,36168,1102],[465627,36707,1102],[465894,38340,1102],[462103,39179,1712],[465819,37793,1102],[466039,39988,1102],[466060,40539,1102],[461702,40794,1712],[466067,41091,1102],[466065,41413,1102],[465945,42550,1102],[465796,43683,1102],[460194,42014,1712],[465618,44813,1102],[465412,45937,1102],[465178,47056,1102],[458792,42521,1712],[464915,48169,1102],[456779,49051,1952],[464625,49275,1102],[464307,50373,1102],[463961,51463,1102],[457150,51032,1522],[463588,52543,1102],[463188,53614,1102],[457356,53049,1522],[462925,54267,1952],[450583,33661,1994],[449488,35894,2112],[448834,35155,2122],[463834,31497,1102],[464040,31890,1102],[460695,34639,1712],[456115,47149,1952],[448856,34176,2186],[448868,34272,2068],[447940,34309,2122],[450776,27561,1478],[450814,27889,1414],[450425,27810,3564],[450535,27439,1923],[450348,27603,1511],[455300,25392,309],[454691,25162,472],[456956,25796,372],[461458,35643,1712],[464579,33107,1102],[466004,39438,1102],[465956,38888,1102],[465730,37249,1102],[465083,34569,1102],[464914,34044,1102],[464732,33523,1102],[464413,32695,1102],[447887,26089,4358],[448002,26108,4789],[447670,26221,4960],[464233,32290,1102],[463615,31112,1102],[463384,30733,1102],[462886,29999,1102],[463141,30362,1102],[459524,34165,1712],[462619,29645,1102],[462340,29300,1102],[462050,28964,1102],[461750,28638,1102],[453097,35621,1848],[455909,35805,1672],[455741,36444,1722],[461164,28073,1102],[460881,27833,1102],[460589,27603,1102],[455633,33111,1495],[460290,27383,1102],[455667,27768,868],[454365,29176,1259],[459984,27174,1102],[459670,26976,1102],[459350,26788,1102],[459024,26611,1102],[457312,25902,1102],[458691,26446,1102],[458354,26292,1102],[458011,26150,1102],[450565,27122,1635],[450831,27159,2031],[446550,25978,8167],[446983,25931,9112],[446810,26369,4468],[455018,25460,570],[454691,25163,492],[447319,28268,1607],[447647,27811,1724],[448327,28009,1495],[433693,27875,2032],[433474,25304,1727],[434687,28062,2022],[455657,25623,531],[451842,27067,1114],[451747,27394,1167],[451516,27406,1204],[455532,25871,626],[447039,25403,8522],[447001,25465,9136],[446885,25396,7303],[444765,25502,4458],[444591,25364,3384],[444648,25253,1422],[452292,27180,1059],[445044,28664,1916],[444654,26805,1634],[445402,26952,1573],[451623,26752,1094],[451868,27023,3541],[452309,26765,1030],[438799,23960,2154],[437714,23912,1976],[437836,24138,1588],[439988,22725,1537],[440029,23066,1482],[451811,26658,3405],[448727,27148,1337],[448682,26823,1288],[448937,26918,4682],[449053,27088,1312],[449445,26920,1516],[449858,26950,1263],[445982,26935,4531],[445907,27101,3187],[445841,26823,7955],[442355,30434,2092],[441432,30019,2092],[441754,28292,1947],[447636,25895,5087],[445590,25167,8891],[445355,25243,8386],[445277,25017,8781],[445540,25269,6577],[445564,25562,6379],[445328,25536,8669],[445931,24682,7926],[445889,24714,7790],[445781,24582,6090],[444772,24879,4749],[444872,24986,8004],[444913,25717,6014],[444756,26118,4209],[444627,25615,1545],[444688,24408,1295],[444846,24634,3683],[444525,24691,3679],[445282,25309,4858],[444127,25163,1449],[439759,23183,1665],[439205,24083,1584],[441915,28062,2185],[442105,28038,4188],[436721,26007,1900],[435039,24445,1611],[439164,23454,2165],[431901,26675,1942],[431431,26791,8364],[431398,26546,1966],[438781,23659,2435],[432861,27326,2010],[432720,27698,2042],[432643,27432,2028],[438336,24342,1628],[438123,28888,2072],[441665,27627,1913],[432372,27234,2020],[431947,27003,1991],[432592,27074,1977],[428313,26439,1967],[427756,26940,1962],[427455,26830,1952],[438343,24075,2209],[425403,25652,1932],[425836,26335,1912],[425040,26196,1902],[437985,24283,1740],[426660,25586,1831],[426725,25372,10061],[426951,25535,1804],[430777,26911,2018],[431190,26716,14481],[431056,26744,1973],[428589,26888,2005],[429713,27380,1992],[428723,27191,1982],[431037,27142,2020],[430994,26917,1973],[427695,25799,1949],[427489,25614,9315],[426222,25934,1854],[426594,26083,1877],[430621,27196,2036],[426816,26597,1932],[423882,26035,1882],[425008,25732,1902],[456002,37710,1782],[451723,39243,2082],[461439,28322,1102],[453053,35299,1822],[457518,34419,1632],[455197,45364,1982],[456562,39201,1802],[454244,43583,2002],[458075,42049,1712],[457516,41161,1802],[452861,35651,1863],[450660,37531,2102],[450148,36748,2112],[431157,27053,10581],[431377,26988,2012],[431499,26323,9888],[431793,26314,14426],[431739,26345,1920],[431998,26478,1968],[432170,25807,1821],[432018,26093,1889],[428608,26467,1987],[428526,26486,12030],[432415,27559,2030],[432345,27423,11883],[432537,27392,2067],[431992,27195,10733],[431679,27163,11146],[432613,27225,11039],[432468,27271,8878],[426171,25565,1820],[426330,25733,1863],[427002,25892,1852],[427120,25838,9796],[427193,26114,1924],[430762,27230,9416],[430653,27188,8020],[431356,27426,2043],[431228,27468,9196],[431071,27251,8077],[427430,25716,1848],[427214,25684,1871],[431601,27197,7730],[431696,27198,2043],[431544,27472,2012],[431399,26428,1900],[426912,25874,1889],[426637,26033,1910],[427061,25494,9608],[431087,27503,2022],[431656,27539,11269],[431495,27104,2002],[431995,27348,2029],[431954,27381,2064],[432289,27523,9841],[431038,27244,2001],[426528,25943,10711],[426453,25556,10361],[426545,25728,1852],[426936,25440,1796],[426749,25942,9316],[426753,25677,9887],[447233,27588,1647],[447698,27463,1655],[445071,26580,3041],[445086,26082,4160],[446543,25407,9104],[446568,25719,8890],[446489,25609,1347],[447888,26827,3874],[448014,26673,3908],[448040,26983,3714],[445601,24560,8715],[445814,24509,1210],[446552,25843,7743],[446460,25117,9752],[446283,25510,8765],[447100,25468,3663],[442241,28031,1944],[442161,27883,1917],[445380,23828,4195],[445486,24087,2259],[445271,24055,1135],[444921,25077,2149],[444963,24998,1500],[444554,26100,1510],[445010,24234,1202],[445156,24448,2793],[445131,24520,7628],[445672,26272,6599],[448314,26343,4361],[448394,26725,4792],[445218,24659,1611],[444578,25585,2373],[444988,24638,1310],[444986,25413,4989],[445192,25280,6370],[444349,24959,1436],[445290,23662,1071],[445311,23198,1029],[432241,27606,2062],[446311,27776,1527],[445856,27549,1640],[445946,27429,3116],[447077,25963,8971],[447160,25826,3826],[445319,24389,4856],[445281,24525,5389],[445249,24446,1237],[445928,24415,8364],[446005,24343,6107],[446108,24526,8467],[445510,24816,6094],[446109,25287,7978],[445575,24375,5295],[446322,24593,8704],[446291,24894,9020],[445468,24889,6755],[445231,25208,5770],[445811,24280,5785],[448799,26641,4975],[449005,26733,1284],[446272,26841,8074],[446014,26694,5425],[447258,26802,3437],[447616,26820,3456],[447532,27102,1391],[447616,26405,3857],[445259,25786,7117],[445130,25775,7077],[444836,25220,3460],[447361,25595,8549],[446785,25110,7863],[448637,28261,1521],[450623,29674,1603],[446009,30429,2061],[445638,27059,4691],[445834,23971,5585],[445016,25198,4627],[444932,25265,5991],[446608,26322,8363],[446315,26681,3571],[447314,26630,4538],[446811,26639,3987],[447190,26400,5326],[446404,27368,3585],[447227,26214,4831],[447317,26206,3310],[446805,27432,2457],[446862,27301,1566],[446935,27375,4400],[446587,26556,7632],[447745,27499,5835],[447279,27364,2694],[446114,26303,7537],[446044,26488,8257],[446001,26417,5742],[445047,24179,4799],[445088,24133,4116],[445541,24274,1213],[445350,24151,4473],[445525,24320,6171],[445736,24049,2815],[446098,25510,8756],[446270,26033,8649],[445030,23834,1129],[445156,23577,4273],[448566,26795,3179],[448427,27041,4683],[447667,27054,3389],[447961,27432,1773],[448954,26384,1196],[451147,27035,1230],[450873,27093,1373],[449456,27039,1341],[448801,26430,3670],[449910,27302,1341],[450252,27793,1608],[450009,28004,1454],[445566,23890,1042],[446775,27677,1574],[446902,27038,4550],[446033,25658,7574],[447350,26399,5466],[447078,26238,8475],[444741,26123,4102],[444730,23537,1160],[445419,23761,3577],[448442,26864,1316],[448114,27070,3788],[448235,27295,1512],[448177,26934,1351],[447878,27012,1373],[448593,26619,4590],[451338,27200,1417],[448490,27210,1359],[457663,26020,1102],[456382,35155,1632],[451579,27604,1268],[451711,27449,3881],[450419,27012,4174],[451823,27452,1193],[451570,27783,1282],[445396,32229,2102],[446606,33115,2112],[445606,24858,8257],[445862,24032,8142],[446376,26486,4798],[452072,26951,1087],[451862,26643,1063],[445641,23958,4464],[445599,23984,5144],[445905,24195,7883],[445204,25154,7500],[445058,25138,3971],[444670,24795,1370],[451144,27166,1379],[451926,26996,1053],[444460,25427,1420],[444369,24562,1367],[446042,24926,9318],[446047,25142,8706],[445813,24959,8909],[445641,25319,7932],[445887,25402,7396],[445805,25578,8632],[446531,24807,8751],[445825,26626,7603],[445663,26001,6969],[445287,26117,6913],[447536,26249,5165],[447187,26960,2134],[445764,25103,6000],[445667,24997,7721],[449117,33832,2019],[449385,28244,1671],[450308,27281,1539],[452095,26981,3434],[452207,26969,1005],[450827,27877,1624],[449650,28442,1517],[450952,28909,1496],[450578,29347,1569],[450651,29440,3585],[445651,25181,8288],[444858,25504,6863],[439976,29464,2082],[446652,25049,10141],[446708,25275,9055],[446483,26261,8622],[446058,25964,8367],[445833,30081,1909],[443624,31102,2102],[446438,27696,3451],[446567,25182,9868],[447650,26735,3748],[451229,27850,1327],[451021,27151,3298],[448349,26355,4643],[448539,26202,3885],[448530,26368,5827],[448542,26487,3408],[448307,26065,4764],[447653,25975,3381],[444987,26722,1604],[446110,26048,7946],[445465,25617,6303],[445049,23406,1092],[436307,28419,2032],[450384,27933,1428],[453051,35603,2034],[436980,24057,1561],[314430,207249,1230],[316355,206791,1242],[314669,208453,1202],[318361,208953,1172],[316687,208899,1192],[317776,207285,1242],[319271,208784,1152],[320047,208371,1142],[319771,206542,1242],[323142,202960,1232],[327150,199075,1202],[325911,201792,1132],[327721,199830,1122],[328956,198774,1112],[333112,193411,1136],[330830,197303,1092],[312886,207209,1162],[313587,207937,1202],[312712,207384,1162],[313778,207489,1198],[319147,201156,1215],[320122,199958,1102],[319727,202427,1245],[319867,203514,1242],[319468,203160,7771],[320609,207872,1142],[321523,205143,1232],[363109,162872,1052],[361573,161240,1002],[361761,161057,1012],[364263,163928,1032],[363554,163787,1052],[364176,162373,1052],[364017,161209,1052],[362192,160639,1022],[363749,160169,1042],[363387,159480,1012],[362908,163067,1052],[362755,167217,8025],[362740,166993,1190],[363460,167065,992],[319004,203336,1240],[317349,204086,1252],[318390,202041,1213],[364237,164921,1022],[362338,165975,1056],[362458,164939,1056],[362638,166297,1058],[319238,201842,1206],[319510,202253,9956],[319333,202553,1225],[346165,182707,1105],[346507,182992,1070],[345923,183129,1115],[346931,180864,15344],[347250,181268,14727],[346905,181042,1156],[349509,181935,941],[351591,180056,892],[347816,183572,9642],[347267,180561,1172],[348781,181202,14764],[348703,181387,1054],[348630,181341,12375],[348357,182038,7234],[348401,182176,988],[348275,182166,12316],[347764,180836,1125],[347342,180529,12886],[357201,174332,942],[354706,177010,922],[352732,174699,1131],[362586,166308,7340],[362355,166095,4514],[362686,166667,1042],[362534,166786,2282],[363036,167838,992],[362775,167364,992],[313895,208084,1202],[321947,203319,1273],[321612,204086,1232],[321461,202706,1253],[314335,206482,1320],[316083,205747,1262],[335581,191314,9861],[335697,191227,6975],[335614,191344,1186],[348948,180230,1110],[348762,178829,1121],[349609,180456,1027],[347358,181270,1116],[347589,181282,10287],[346832,180804,14063],[346855,180668,1154],[346952,181401,1140],[346325,181582,1130],[346591,181158,1160],[347297,181312,10805],[347038,181655,11031],[345129,182313,1144],[343219,184235,1114],[342057,184895,1121],[346997,181745,1131],[336667,192051,10285],[336864,191883,1067],[336989,192075,14690],[339073,187565,1119],[347224,180230,1173],[347678,180163,1170],[347406,181655,1067],[346029,181660,1127],[346120,182362,1113],[345789,182093,1149],[343494,187404,982],[339758,190031,1023],[347720,180492,1149],[348444,182504,982],[348833,182403,979],[348353,181540,8116],[348745,181731,979],[349039,180939,1065],[348656,181009,1088],[348610,180651,1109],[348032,181289,4071],[348267,181107,1085],[348991,180577,1079],[349307,180854,10589],[349418,181222,994],[349374,180868,1031],[349661,180913,9921],[339190,190788,1009],[339440,190373,1027],[339488,190758,981],[334433,192736,1183],[334519,193426,1108],[333550,192918,1273],[346279,181220,1147],[336300,191898,9689],[335882,191383,9267],[336224,191419,5321],[336634,190105,1162],[337462,189421,13922],[337133,190013,1173],[339630,190263,8131],[339490,190844,992],[346544,180804,1168],[336942,191422,9695],[337272,191077,1146],[337318,191392,1188],[335614,192896,12391],[335958,192848,12277],[336138,193030,9785],[337925,188830,1141],[338108,190208,1145],[337543,189560,1157],[338294,191678,1011],[338132,191276,12766],[338246,191292,1057],[337636,190265,1141],[337528,191954,10153],[337363,191790,1081],[337424,191320,9883],[336787,191058,8205],[336251,190843,1191],[336119,190767,13686],[336209,190505,1231],[338213,190281,15733],[338155,190574,1117],[337163,190858,13787],[337230,190707,1242],[338524,190197,1094],[338533,190336,13562],[337732,191006,1116],[337184,190388,1200],[337683,190627,1136],[337541,191298,11557],[337703,190600,8021],[337891,190244,11310],[337388,191420,15867],[338427,191499,9914],[348226,180772,1130],[348482,180704,4908],[348176,180397,1138],[347627,179797,1155],[348038,179348,1161],[337774,191349,1059],[337820,191698,1057],[338989,191169,982],[339401,190852,12193],[320703,201104,12170],[320762,201386,12471],[320602,201128,1348],[320393,202284,1233],[321435,202522,10045],[335308,191431,1195],[335821,191275,13264],[336299,191219,1172],[362047,165655,1056],[362093,165996,1063],[345713,181839,10289],[345500,182185,1112],[336737,190734,1421],[336682,190451,1185],[337023,190431,12635],[338657,191248,997],[338566,190530,1066],[338627,188339,1164],[348208,181655,5847],[348431,181965,14870],[348199,181933,11682],[348951,181363,10274],[349083,181286,1035],[349129,181652,991],[348992,181711,10211],[348789,182072,994],[345151,185929,963],[348635,180553,7333],[349036,180418,13240],[347570,179834,6789],[336245,193003,11320],[335978,193505,9682],[348142,181627,11463],[347320,181731,10336],[347478,182337,6776],[347539,182686,1034],[347416,182701,14384],[320492,201080,9396],[320645,201483,1297],[320022,201383,7068],[320301,201011,11480],[320929,201064,10592],[320976,201416,1257],[321370,202021,1246],[321178,202080,12139],[321021,201759,1240],[321143,201171,8524],[336976,190153,5819],[335075,191677,12072],[334382,192365,1160],[335404,192169,1181],[335118,192530,1189],[335421,192759,9946],[336966,190748,4574],[336304,190418,8277],[336622,190774,6450],[347867,181500,1337],[347991,181769,9088],[347726,181802,11245],[347800,182521,10944],[347824,180368,9359],[347918,180488,10447],[348319,180604,9380],[319913,201268,1270],[320224,200755,1677],[320346,200659,3484],[320562,200771,1447],[321272,201277,1253],[321344,201252,11072],[321320,201639,1258],[322360,202869,1270],[322490,202316,1242],[336730,192274,10753],[336690,192227,14470],[336088,192708,9687],[336049,192316,9860],[347084,182426,1100],[346767,182538,1080],[346738,182340,9853],[347488,182029,12137],[347130,182789,1067],[346654,183656,10445],[346898,183219,10466],[347167,183329,9706],[346702,182880,12580],[347583,183043,981],[347136,182908,10057],[346487,182775,9745],[346552,183341,1037],[346277,183635,9379],[345970,183510,1066],[344926,184177,1067],[346017,183871,1044],[345820,184656,995],[346465,182663,1091],[347181,182110,12188],[346723,182185,1119],[346458,182385,10065],[336350,191356,7180],[336694,190963,7095],[349332,180538,1059],[349429,180818,12371],[349464,181579,969],[349174,182041,922],[349366,181684,9874],[349879,180751,970],[349973,181485,933],[349655,180820,988],[337253,191560,13731],[336538,191598,9347],[336347,191582,1165],[336626,191973,14059],[336596,191846,9693],[338903,190476,1053],[318815,201911,1237],[320960,200956,6462],[321757,201899,1252],[322263,202149,1261],[321856,202637,1265],[347806,181170,1109],[334864,193363,1090],[335886,193495,1013],[333818,195062,1053],[335166,192917,1131],[348117,183262,14002],[349700,181167,972],[349118,182214,11024],[346418,182285,1127],[349438,181918,10446],[319542,201023,1245],[319730,200938,9429],[349607,180616,9716],[350220,181074,944],[347039,182080,1107],[346181,182387,10362],[319025,201451,10759],[319927,202208,9828],[319680,202075,1241],[320481,200567,5458],[320502,200452,1201],[320596,200493,7142],[320275,200533,7437],[320469,200611,9907],[321834,201837,7769],[346696,184026,10344],[346949,183961,988],[346148,184913,942],[346392,184500,947],[344972,184533,1055],[345594,182882,1126],[345667,183168,7134],[349652,181464,8763],[349743,181505,948],[337580,192268,10299],[336957,192597,1031],[337861,192041,1002],[336833,192357,12018],[334817,192999,1117],[334588,193379,8165],[362287,168704,982],[359584,171751,932],[358875,168599,1102],[335753,192411,1153],[335772,192666,10019],[349994,181426,8759],[348067,181808,16009],[319868,200936,1267],[320158,200516,1211],[319818,200562,1248],[320113,200185,1202],[320184,200412,6437],[362528,167295,1276],[362235,166994,1204],[362247,165281,1065],[362428,166670,1045],[361864,167043,1085],[362385,166325,1064],[364015,165772,1022],[322330,202948,7072],[362561,167692,1005],[362054,165422,6710],[361726,165994,1102],[360906,166704,1101],[345495,185146,987],[344484,184288,1090],[344526,184621,1073],[344844,184272,6198],[346071,184632,10082],[345642,183265,1087],[319431,203295,1218],[336554,190895,10856],[319519,200884,6700],[313729,207097,1242],[314145,207108,2118],[314382,206850,1292],[314063,206972,1281],[335978,193505,1012],[347816,183572,972],[324535,201237,2066],[326025,200001,2111],[323719,202321,1983],[336133,189602,7396],[336282,189421,9795],[336350,189622,10357],[345881,180097,1966],[346071,180294,8519],[345927,180436,1987],[326850,199020,2128],[326305,198932,1504],[326800,198650,2116],[335812,190597,1144],[336456,189959,15407],[341359,185211,2045],[335767,190204,1233],[335534,190600,1463],[335049,190631,8697],[335203,190419,6250],[335213,190725,1191],[336496,189030,1238],[336541,189403,1158],[336097,190071,10222],[336083,189800,14975],[336148,189639,1985],[338570,187460,2008],[338522,187110,1985],[338727,187243,1108],[336992,188950,1181],[337074,189141,1963],[335703,190030,9266],[335391,190011,9615],[335462,189794,1941],[339240,186130,1049],[339673,185875,1964],[339722,186202,2037],[336348,189974,13894],[336169,190081,1466],[331054,194259,2086],[331288,193986,1098],[331380,194134,2091],[350019,176825,1116],[339426,187008,2017],[339739,186662,1431],[335995,190015,8920],[358525,168102,2075],[358161,168642,1141],[358154,168129,2005],[339021,186707,1989],[339337,186819,1119],[334991,190312,8477],[336626,189602,1979],[335751,189732,1885],[338153,187412,1073],[338436,186961,1057],[362065,163931,1027],[362372,163737,2060],[335506,190171,1860],[335392,190573,8587],[334564,190789,1670],[334588,191220,1208],[334276,191129,1958],[335181,190306,1512],[326716,198529,1196],[327236,198531,2121],[338788,187535,1433],[359482,166612,2112],[359038,167037,2105],[358683,167202,1006],[333822,191448,1077],[334837,190462,1092],[335294,190909,1976],[346225,180391,1948],[346182,180042,1985],[363051,164037,2151],[362765,164422,2126],[345594,180192,1963],[355642,170240,2099],[355734,170942,2079],[355285,170503,1013],[336098,189308,1913],[341312,184859,2039],[340762,184818,1047],[341265,184516,2025],[349669,176328,2070],[349378,176420,2020],[349578,176191,1054],[352421,173849,2071],[352639,173493,2066],[352656,173941,1481],[345405,180988,2014],[360379,165897,6536],[360056,166458,1054],[360719,165335,1025],[360422,165564,2111],[361238,165145,2094],[361332,165829,2139],[360781,165659,1288],[361648,165296,1296],[362251,164744,2107],[334922,190621,1977],[359479,167155,1082],[359736,166807,1059],[359832,166976,2079],[350265,175690,1155],[349877,175807,1030],[350586,175288,1044],[362163,164082,2110],[360465,165896,2094],[360867,165883,2063],[360510,166231,2109],[363242,163486,1058],[363007,163712,2133],[362956,163391,2014],[361963,164450,2095],[361862,164253,1050],[323252,202068,1968],[323300,202410,2011],[322791,202357,1260],[324405,200731,1211],[326396,198523,1102],[331869,193590,1965],[330961,194112,1079],[334005,192292,2054],[330795,195420,2114],[356334,169760,2118],[356721,170086,2077],[356380,170136,2067],[358783,167370,2091],[359028,167537,1052],[358824,167727,2009],[349007,177597,1995],[348711,177961,2018],[359350,167340,2127],[359254,167152,1149],[358382,167589,1015],[350356,175895,2040],[349971,175958,2060],[327856,198265,2161],[327760,197568,2113],[327973,197347,1147],[328062,197482,2117],[362571,163560,1037],[356128,170552,1932],[355851,170221,2104],[357805,168907,2011],[357709,168188,2018],[349204,177275,1256],[348962,177215,2074],[349194,176780,2048],[356929,168973,2090],[357251,168782,1021],[354941,170925,1018],[355036,171063,2091],[347439,178397,1127],[347851,177986,1075],[347910,178292,1343],[354233,172014,1321],[353379,172524,1074],[358065,167965,1062],[346134,179695,1972],[346484,179922,1977],[354603,171639,1136],[355034,171577,1101],[354689,171847,1947],[352464,174175,2076],[352153,173872,2047],[350399,176216,2043],[352779,172950,1014],[351813,174117,1069],[357855,169235,2106],[357348,168922,2095],[351540,175146,1366],[353052,172895,1046],[353147,173053,2078],[352872,173108,2024],[353954,173007,2068],[353473,172695,2072],[355755,170085,1025],[356041,169826,2056],[347527,178570,2041],[347572,178936,1984],[349101,176625,1039],[336977,188459,1891],[348534,177147,1056],[348190,177524,1053],[346654,178869,1694],[341866,183508,1040],[341175,184360,1052],[339588,185731,1048],[358483,167776,2090],[358873,168071,2053],[359090,167816,1393],[359394,167682,2110],[354271,172394,1148],[348282,177717,1995],[340365,185165,1343],[340854,184991,2019],[341621,184609,1116],[339966,185608,1112],[343011,182404,1618],[343472,182585,2025],[343071,182663,1973],[342286,183579,1997],[341951,183650,1963],[342203,183438,1077],[342535,183215,1978],[342444,183030,1052],[346044,179500,1056],[346350,179402,1066],[342336,183949,2003],[342050,184367,2016],[342003,184013,2018],[342579,183536,2000],[342796,183614,1153],[339331,186308,1989],[342698,182937,1037],[343076,183183,1079],[342748,183263,1127],[344896,180596,1053],[345271,180467,1088],[345359,180643,2004],[329030,196206,1099],[329457,195740,1088],[329545,195845,2094],[361592,164989,1085],[361546,164640,1086],[356237,169623,1009],[345074,181449,1978],[349719,176696,2076],[350642,175606,1233],[348668,177628,2045],[349393,176880,1378],[349467,177082,2046],[352970,173815,2080],[350726,175792,2074],[343518,182927,2020],[331616,194021,2106],[331534,193855,1281],[330747,195057,2118],[331061,194824,1150],[334669,191395,2002],[330700,194717,2085],[334288,191660,1159],[334370,191827,1986],[333103,192852,2049],[332670,193483,1272],[332661,192974,2081],[362860,163195,1048],[338933,186541,1069],[338679,186901,1087],[333880,191756,1313],[346439,179599,1942],[346729,179602,1372],[346710,179144,1956],[347122,179035,1994],[340055,185795,2011],[340437,185361,1985],[344988,181258,1125],[344953,180863,1352],[343780,181813,1639],[343843,182111,1983],[343415,182275,1808],[330329,195213,2097],[337356,188196,1088],[337404,188548,1108],[338234,187558,1950],[337911,188279,1980],[327806,197912,2127],[327508,198032,2124],[328445,197657,2139],[323175,201923,1191],[352727,174155,2081],[352325,173666,1055],[352245,174563,2064],[351947,174608,2031],[351903,174264,2060],[351138,175396,2079],[351091,175060,2054],[352546,173360,1020],[340104,186145,2037],[332258,193437,2095],[332168,193296,1108],[333533,192379,2025],[333925,192145,1220],[330614,194610,1089],[333491,192043,2055],[333054,192477,2044],[329993,195711,2139],[329947,195379,2108],[330244,195076,1159],[328350,196958,2102],[328259,196834,1092],[330355,195686,1581],[329123,196341,2137],[328663,196508,2044],[329596,196208,2137],[327672,197470,1095],[328712,196820,2144],[328757,197169,2137],[327422,197901,1185],[327191,198207,2096],[327100,198057,1110],[353904,172639,2055],[353859,172318,2027],[351527,174664,2087],[351001,174917,1051],[347072,178696,1918],[343887,182436,1990],[344207,182174,1138],[345800,179925,1157],[348595,177403,1427],[348328,178035,2037],[326382,199158,2144],[329640,196555,2104],[328085,197951,1581],[348878,177011,1259],[344114,181520,1054],[344169,181798,1310],[344603,181719,1122],[344569,181309,1411],[344507,181031,1055],[332302,193792,2048],[331660,194354,2097],[331424,194464,2112],[324774,200449,1879],[325176,200456,1510],[324829,200725,2126],[323904,201322,1202],[323622,201578,1996],[324230,201009,2017],[323982,201487,1963],[325114,200141,1235],[324486,200853,2090],[323651,202049,1546],[325632,200133,2127],[325921,199384,1813],[325574,199844,1867],[337867,187951,1972],[330037,196067,2096],[338276,187919,1859],[325976,199655,2081],[359539,167415,1433],[321565,101452,7022],[316136,108781,7022],[318329,98955,7022],[318266,97697,7022],[318913,98197,7022],[312086,105772,7022],[317461,98548,7022],[318173,97626,7022],[321565,101452,482],[316136,108781,482],[321565,101452,3622],[316136,108781,3622],[318329,98955,482],[318913,98197,482],[318266,97697,482],[318173,97626,482],[317461,98548,482],[312086,105772,482],[326728,103507,3622],[320407,112038,3622],[320158,111769,3622],[324474,101768,3622],[324026,98263,3622],[324885,98926,3622],[320119,111821,3622],[326728,103507,482],[320407,112038,482],[326728,103507,3612],[320407,112038,3612],[324474,101768,482],[324885,98926,482],[324026,98263,482],[320158,111769,482],[320119,111821,482],[326772,103541,3612],[332412,103931,3612],[328622,101071,3612],[332412,103931,472],[328622,101071,472],[326772,103541,472],[326728,103507,472],[320407,112038,472],[324212,70905,3332],[315416,63807,3332],[325717,75056,3332],[322904,72789,3332],[322787,72695,3332],[315416,63807,392],[315416,63807,422],[324212,70905,392],[324212,70905,422],[322787,72695,392],[322787,72695,422],[322904,72789,392],[242641,106650,3712],[250615,112571,3712],[242651,106667,3712],[248667,115309,3712],[242584,106710,3712],[239452,108734,3712],[242641,106650,422],[242641,106650,3532],[250615,112571,3532],[242651,106667,422],[242584,106710,422],[239452,108734,422],[239452,108734,3722],[248667,115309,3722],[248099,116108,3722],[250284,117662,3722],[248559,120087,3722],[235960,110991,422],[245458,117882,422],[296708,117959,3212],[292089,119783,3212],[300072,109133,3212],[292365,119989,3212],[292588,123477,3212],[290772,122121,3212],[303927,112023,582],[298495,119282,582],[300072,109133,582],[300072,109133,3142],[292089,119783,582],[292089,119783,3142],[292365,119989,582],[290772,122121,582],[292588,123477,582],[296708,117959,582],[314171,94666,4352],[308080,102796,4352],[314101,94612,4352],[305788,100976,4352],[311270,92427,4352],[311966,89166,4352],[313107,90047,4352],[304038,99752,4352],[304323,99873,4352],[304239,99985,4352],[303999,99804,4352],[305704,101088,4352],[308041,102848,4352],[314171,94666,532],[308080,102796,532],[314101,94612,532],[311270,92427,532],[313107,90047,532],[311966,89166,532],[304038,99752,532],[303999,99804,532],[304239,99985,532],[304323,99873,532],[305788,100976,532],[305704,101088,532],[308041,102848,532],[275487,95750,4292],[277386,97204,4292],[275086,96274,4292],[266754,90749,4292],[266653,90599,4292],[266928,90632,4292],[267576,90197,4292],[267530,90011,4292],[268184,90988,4292],[267476,90048,4292],[273922,98160,4292],[266828,90482,4292],[266106,91183,4292],[272802,99660,4292],[272509,99441,4292],[265914,91095,4292],[266006,91033,4292],[263469,92458,4292],[265675,90738,4292],[263358,92292,4292],[263442,92476,4292],[275565,99388,4292],[275687,99479,4292],[275487,95750,452],[277386,97204,452],[275487,95750,462],[277386,97204,462],[275086,96274,452],[275086,96274,462],[268184,90988,452],[268184,90988,462],[267530,90011,452],[263442,92476,4012],[272509,99441,452],[272509,99441,4012],[272802,99660,452],[273922,98160,452],[275565,99388,452],[275565,99388,662],[275565,99388,2862],[275687,99479,452],[275687,99479,662],[275687,99479,2862],[261311,95816,4012],[268781,99073,4012],[260000,94772,4012],[262643,92771,4012],[262755,92937,4012],[259894,94614,4012],[260810,95435,4012],[259967,94794,4012],[260592,95722,4012],[261093,96103,4012],[271351,100992,4012],[267628,100616,4012],[263442,92476,432],[272509,99441,432],[259894,94614,432],[260000,94772,432],[259967,94794,432],[259967,94794,4002],[260810,95435,432],[260810,95435,4002],[260592,95722,432],[260592,95722,4002],[261093,96103,432],[261093,96103,4002],[261311,95816,432],[261311,95816,4002],[267628,100616,432],[267628,100616,4002],[268781,99073,432],[271351,100992,432],[317461,98548,7642],[312086,105772,7642],[314380,96170,7642],[314171,94666,7642],[315030,95329,7642],[308080,102796,7642],[314380,96170,482],[315030,95329,482],[314171,94666,482],[308080,102796,482],[266612,101977,4002],[267927,105623,4002],[256054,97221,4002],[259286,95251,4002],[257982,95896,4002],[259180,95093,4002],[269207,103914,4002],[261311,95816,422],[267628,100616,422],[261093,96103,422],[260592,95722,422],[260810,95435,422],[259967,94794,422],[259286,95251,422],[259180,95093,422],[257982,95896,422],[256054,97221,422],[267927,105623,422],[269207,103914,422],[266612,101977,422],[284629,97909,2902],[284611,97797,2902],[284676,97845,2902],[278575,106760,2902],[277332,103623,2902],[277273,108504,2902],[276816,109378,2902],[275127,106624,2902],[284489,97659,2902],[284664,97725,2902],[284518,97618,2902],[277167,100588,2902],[283785,97147,2902],[283815,97106,2902],[281203,95205,2902],[281077,95373,2902],[275762,102462,2902],[273524,105447,2902],[271299,108414,2902],[275386,111292,2902],[277399,108598,2902],[284629,97909,622],[278575,106760,622],[284676,97845,622],[284611,97797,622],[284664,97725,622],[284518,97618,622],[284489,97659,622],[283785,97147,622],[283815,97106,622],[281203,95205,622],[281077,95373,622],[277167,100588,622],[277167,100588,662],[277167,100588,2862],[275762,102462,622],[275762,102462,662],[275762,102462,2862],[277332,103623,622],[275127,106624,622],[273524,105447,622],[273524,105447,662],[273524,105447,2862],[271299,108414,622],[271299,108414,662],[271299,108414,2862],[275386,111292,622],[276816,109378,622],[277399,108598,622],[277273,108504,622],[288352,100511,3332],[282894,107738,3332],[281183,106472,3332],[285324,98415,3332],[285371,98351,3332],[278575,106760,3332],[284629,97909,3332],[280111,107907,3332],[288352,100511,592],[282894,107738,592],[288352,100511,642],[282894,107738,642],[288352,100511,3312],[282894,107738,3312],[285371,98351,592],[285324,98415,592],[284629,97909,592],[278575,106760,592],[280111,107907,592],[281183,106472,592],[253797,98830,2692],[260846,103843,2692],[252978,99386,2692],[252813,99500,2692],[252756,99539,2692],[252584,99659,2692],[251832,100239,2692],[251803,100198,2692],[256694,109681,2692],[251635,100376,2692],[247639,103079,2692],[251606,100335,2692],[247339,103347,2692],[247459,103204,2692],[247418,103232,2692],[247311,103306,2692],[253797,98830,412],[252978,99386,412],[252813,99500,412],[252756,99539,412],[252584,99659,412],[251803,100198,412],[251832,100239,412],[251635,100376,412],[251606,100335,412],[247639,103079,412],[247459,103204,412],[247418,103232,412],[247311,103306,412],[247339,103347,412],[247339,103347,422],[256694,109681,412],[284886,109212,3312],[282523,116259,3312],[280662,114869,3312],[292252,103337,3312],[292241,103329,3312],[292252,103337,642],[282523,116259,642],[292241,103329,642],[284886,109212,642],[280662,114869,642],[296202,106265,3312],[290725,113533,3312],[289095,112327,3312],[284857,118002,3312],[296202,106265,602],[290725,113533,602],[296202,106265,3142],[290725,113533,3142],[292252,103337,602],[282523,116259,602],[284857,118002,602],[289095,112327,602],[247339,103347,3532],[256694,109681,3532],[247190,103432,3532],[247202,103448,3532],[255514,116056,3532],[258922,111265,3532],[247202,103448,422],[247190,103432,422],[291454,116686,3142],[291668,116846,3142],[290197,118370,3142],[292926,115161,3142],[300072,109133,572],[292089,119783,572],[296202,106265,572],[290725,113533,572],[292926,115161,572],[291668,116846,572],[291454,116686,572],[290197,118370,572],[278796,93349,4552],[279734,94059,4552],[278748,93413,4552],[271242,88061,4552],[271358,87914,4552],[278151,92962,4552],[271448,87794,4552],[278200,92899,4552],[279609,94227,4552],[271245,87911,4552],[275487,95750,4552],[277386,97204,4552],[270215,87885,4552],[270317,87888,4552],[270314,88038,4552],[268158,89072,4552],[270126,87752,4552],[268398,89429,4552],[268418,89657,4552],[268306,89491,4552],[268184,90988,4552],[267770,90091,4552],[267530,90011,4552],[267658,89925,4552],[275086,96274,4552],[278796,93349,462],[279734,94059,462],[278748,93413,462],[278151,92962,462],[278200,92899,462],[279609,94227,462],[269878,107003,2862],[271217,108003,2862],[271044,108235,2862],[269878,107003,662],[271217,108003,662],[271044,108235,662],[285255,79041,7572],[285101,79074,7572],[285230,78998,7572],[282017,83298,7572],[283768,79886,7572],[284660,85282,7572],[284805,79257,7572],[285061,79004,7572],[284763,79189,7572],[284029,79736,7572],[284946,85484,7572],[293415,85075,7572],[283987,79668,7572],[283731,79826,7572],[281832,81082,7572],[281565,81549,7572],[281696,82796,7572],[281489,81212,7572],[281796,81022,7572],[281449,81216,7572],[281485,81557,7572],[281616,82804,7572],[281703,83150,7572],[281653,83155,7572],[281975,83354,7572],[284618,85338,7572],[284898,85548,7572],[290183,89408,7572],[285255,79041,442],[293415,85075,442],[293415,85075,522],[293415,85075,3782],[285230,78998,442],[285101,79074,442],[285061,79004,442],[284763,79189,442],[284805,79257,442],[284029,79736,442],[283987,79668,442],[283731,79826,442],[283768,79886,442],[281832,81082,442],[281796,81022,442],[281489,81212,442],[281449,81216,442],[281485,81557,442],[281565,81549,442],[281696,82796,442],[281616,82804,442],[281653,83155,442],[281703,83150,442],[281975,83354,442],[282017,83298,442],[284660,85282,442],[284618,85338,442],[284898,85548,442],[284946,85484,442],[290183,89408,442],[290183,89408,522],[290183,89408,3782],[289448,76581,7572],[296144,81421,7572],[286005,78543,7572],[288665,76982,7572],[288691,77026,7572],[286030,78586,7572],[293456,85105,7572],[289448,76581,422],[296144,81421,422],[289448,76581,432],[289448,76581,3612],[296144,81421,3612],[288691,77026,422],[288665,76982,422],[286005,78543,422],[286030,78586,422],[285255,79041,422],[293415,85075,422],[293456,85105,422],[293456,85105,3782],[299707,85805,3782],[294575,92699,3782],[295979,86971,3782],[297830,84435,3782],[293444,85121,3782],[294375,92474,3782],[291143,90052,3782],[291107,90100,3782],[293647,91929,3782],[292519,91084,3782],[293611,91977,3782],[292483,91132,3782],[294339,92522,3782],[294575,92699,522],[299707,85805,3482],[294575,92699,3482],[291107,90100,522],[291143,90052,522],[292519,91084,522],[292483,91132,522],[293611,91977,522],[293647,91929,522],[294375,92474,522],[294339,92522,522],[296317,81184,3612],[293011,74542,3612],[298591,82844,3612],[290849,75673,3612],[290977,75595,3612],[291060,75731,3612],[290745,75829,3612],[290704,75761,3612],[289995,76287,3612],[289953,76218,3612],[289423,76538,3612],[307471,85698,3612],[300675,84679,3612],[298442,83049,3612],[303152,86371,3612],[305534,88209,3612],[303094,86446,3612],[300666,84691,3612],[293011,74542,432],[307471,85698,432],[291060,75731,432],[290977,75595,432],[290849,75673,432],[290704,75761,432],[290745,75829,432],[289995,76287,432],[289953,76218,432],[289423,76538,432],[300666,84691,432],[300666,84691,3482],[303094,86446,432],[303094,86446,512],[303094,86446,3482],[303152,86371,432],[305534,88209,432],[297421,71719,3632],[293167,74447,3632],[293211,74232,3632],[293083,74310,3632],[308700,83175,3632],[307471,85698,3632],[293011,74542,3632],[309150,83523,3632],[307585,85551,3632],[310121,81333,3632],[297421,71719,432],[310121,81333,432],[297421,71719,3212],[310121,81333,3212],[293211,74232,432],[293083,74310,432],[293167,74447,432],[307585,85551,432],[309150,83523,432],[308700,83175,432],[301931,87954,3482],[301057,87279,3482],[299350,89491,3482],[299803,85875,3482],[294815,92804,3482],[295527,93338,3482],[298894,95920,3482],[301998,91535,3482],[294779,92852,3482],[295491,93386,3482],[299350,89491,512],[301998,91535,512],[301998,91535,522],[301057,87279,512],[301931,87954,512],[299707,85805,512],[294575,92699,512],[294779,92852,512],[294815,92804,512],[295527,93338,512],[295491,93386,512],[298894,95920,512],[298894,95920,522],[309662,74799,3212],[305046,72056,3212],[306096,72012,3212],[301740,70990,3212],[303297,70652,3212],[302106,69696,3212],[301213,69791,3212],[301961,69411,3212],[301318,70108,3212],[301115,69841,3212],[301265,70135,3212],[300849,71465,3212],[300485,71174,3212],[300020,70398,3212],[312896,77738,3212],[313106,77491,3212],[309662,74799,422],[313106,77491,422],[306096,72012,422],[305046,72056,422],[303297,70652,422],[302106,69696,422],[301961,69411,422],[297421,71719,422],[310121,81333,422],[312896,77738,422],[308637,91517,6312],[304038,99752,6312],[301998,91535,6312],[311966,89166,6312],[309245,90729,6312],[310164,87775,6312],[308392,90071,6312],[304485,88313,6312],[298894,95920,6312],[311966,89166,522],[304038,99752,522],[310164,87775,522],[308392,90071,522],[309245,90729,522],[308637,91517,522],[304485,88313,522],[324212,70905,6592],[322787,72695,6592],[315416,63807,6592],[318955,77641,6592],[309811,66170,6592],[307588,68879,6592],[318753,77889,6592],[322904,72789,6592],[309811,66170,422],[307588,68879,422],[318753,77889,422],[331953,177538,6512],[332072,177660,6512],[328396,181227,6512],[321097,173980,6512],[325634,169480,6512],[332644,176868,6512],[332956,176802,6512],[332762,176990,6512],[325634,169480,592],[332956,176802,592],[321097,173980,592],[321097,173980,602],[321097,173980,4962],[328396,181227,592],[328396,181227,602],[328396,181227,4962],[332072,177660,592],[331953,177538,592],[332644,176868,592],[332762,176990,592],[316455,176669,4962],[320140,173015,4962],[317163,177483,4962],[316405,176719,4962],[325542,183891,4962],[324657,184882,4962],[324774,184631,4962],[324843,184703,4962],[325611,183963,4962],[328424,181255,4962],[320140,173015,602],[316455,176669,602],[316405,176719,602],[317163,177483,602],[317163,177483,612],[317163,177483,3442],[324657,184882,602],[324657,184882,612],[324657,184882,3442],[324843,184703,602],[324774,184631,602],[325542,183891,602],[325611,183963,602],[328424,181255,602],[288911,148046,3492],[282802,156786,3492],[287275,146884,3492],[288786,144779,3492],[290394,145896,3492],[279627,154543,3492],[285741,145795,3492],[288911,148046,852],[282802,156786,852],[288911,148046,872],[290394,145896,852],[288786,144779,852],[288786,144779,3392],[287275,146884,852],[287275,146884,1022],[287275,146884,3392],[285741,145795,852],[285741,145795,1022],[285741,145795,3392],[288907,151557,3692],[288911,148046,3692],[291397,147971,3692],[290602,147418,3692],[290394,145896,3692],[291247,146489,3692],[282802,156786,3692],[290368,152572,3692],[285895,158972,3692],[290368,152572,872],[290368,152572,3482],[285895,158972,872],[285895,158972,3482],[292764,174709,3382],[286234,183959,3382],[287795,175352,3382],[289759,172580,3382],[283137,181760,3382],[287725,175302,3382],[286234,183959,752],[283137,181760,752],[289172,161287,3482],[291133,158482,3482],[292285,149829,3482],[295561,152147,3482],[293402,155236,3482],[294120,179648,3392],[289449,186241,3392],[292613,178581,3392],[293735,174008,3392],[295145,175007,3392],[294849,175425,3392],[292764,174709,3392],[286234,183959,3392],[293142,174176,3392],[293419,173784,3392],[294120,179648,752],[289449,186241,752],[289449,186241,762],[299743,178853,3472],[292838,188647,3472],[294120,179648,3472],[296375,176466,3472],[289449,186241,3472],[299743,178853,762],[292838,188647,762],[292838,188647,772],[299768,178870,3482],[303258,177423,3482],[301283,180136,3482],[299036,183223,3482],[301641,176246,3482],[299743,178853,3482],[292838,188647,3482],[300669,184528,3482],[295734,190703,3482],[299036,183223,772],[300669,184528,772],[301283,180136,772],[295734,190703,772],[297606,163114,3692],[297010,162788,3692],[297055,162724,3692],[306304,169098,3692],[297419,167823,3692],[294771,165948,3692],[303966,172337,3692],[297606,163114,3642],[306304,169098,3642],[297419,167823,3542],[303966,172337,3542],[295659,171292,3542],[295170,170939,3542],[301616,175592,3542],[297419,167823,902],[303966,172337,902],[313672,195421,3402],[312750,196309,3402],[307093,187853,3402],[300705,194189,3402],[297256,191823,3402],[300572,192262,3402],[298508,190251,3402],[298658,190397,3402],[301782,193120,3402],[309869,199084,3402],[309946,199163,3402],[309485,199607,3402],[307403,200439,3402],[307829,200837,3402],[308461,200517,3402],[308041,201075,3402],[307816,200852,3402],[308537,200596,3402],[309408,199528,3402],[311310,197697,3402],[314159,194917,3402],[310813,198175,3402],[310889,198254,3402],[311386,197776,3402],[312246,196795,3402],[312826,196388,3402],[312322,196874,3402],[314253,195014,3402],[313748,195500,3402],[307093,187853,762],[314159,194917,762],[301782,193120,762],[300572,192262,762],[298658,190397,762],[298508,190251,762],[297256,191823,762],[300705,194189,762],[307403,200439,762],[307829,200837,762],[307816,200852,762],[308041,201075,762],[308537,200596,762],[308461,200517,762],[309408,199528,762],[309485,199607,762],[309946,199163,762],[309869,199084,762],[310813,198175,762],[310889,198254,762],[311386,197776,762],[311310,197697,762],[312246,196795,762],[312322,196874,762],[312826,196388,762],[312750,196309,762],[313672,195421,762],[313748,195500,762],[314253,195014,762],[299111,159430,3642],[308584,165940,3642],[299236,160814,3642],[298500,160292,3642],[299111,159430,912],[308584,165940,912],[299111,159430,3452],[308584,165940,3452],[313000,159823,3452],[311127,162417,3452],[308988,156802,3452],[313059,159741,3452],[310952,162660,3452],[304385,157918,3452],[306492,155000,3452],[301498,155806,3452],[308744,165718,3452],[299036,159377,3452],[298942,159308,3452],[313000,159823,3352],[311127,162417,3352],[310485,184487,4512],[317462,191694,4512],[317294,191858,4512],[307093,187853,4512],[314159,194917,4512],[310485,184487,662],[317462,191694,662],[310485,184487,3412],[317462,191694,3412],[307093,187853,662],[314159,194917,662],[317294,191858,662],[314327,182023,3412],[320784,188453,3412],[312691,180394,3412],[309519,183489,3412],[314327,182023,642],[320784,188453,642],[312691,180394,642],[309519,183489,642],[310485,184487,642],[317462,191694,642],[324384,184979,3442],[316408,179960,3442],[315544,179089,3442],[320784,188453,3442],[314327,182023,3442],[323662,185680,3442],[320878,188549,3442],[323746,185766,3442],[324468,185065,3442],[315544,179089,612],[316408,179960,612],[314327,182023,612],[320784,188453,612],[320878,188549,612],[323746,185766,612],[323662,185680,612],[324384,184979,612],[324468,185065,612],[255553,149470,6002],[249682,157867,6002],[250776,148722,6002],[252027,146963,6002],[246297,155387,6002],[255553,149470,632],[249682,157867,632],[249682,157867,642],[255553,149470,5062],[249682,157867,5062],[250776,148722,3492],[246297,155387,632],[246297,155387,3492],[259601,152388,5062],[261957,148485,5062],[262285,148725,5062],[253525,160683,5062],[258146,145761,5062],[259601,152388,642],[253525,160683,642],[259601,152388,732],[259601,152388,3212],[253525,160683,3212],[262285,148725,642],[262285,148725,732],[262285,148725,3212],[261957,148485,642],[261957,148485,3212],[261558,155572,3212],[262506,154431,3212],[259635,157930,3212],[256062,162600,3212],[261558,155572,642],[259635,157930,642],[262506,154431,642],[262506,154431,732],[256062,162600,642],[267792,156450,3202],[260949,166074,3202],[263965,158748,3202],[266311,155371,3202],[257683,163769,3202],[262287,157536,3202],[262204,157476,3202],[267792,156450,672],[260949,166074,672],[260949,166074,682],[257683,163769,672],[263821,152709,3212],[265460,150560,3212],[265672,150282,3212],[263454,146531,3212],[266773,148837,3212],[262531,154401,3212],[265460,150560,732],[263821,152709,732],[265672,150282,732],[266773,148837,732],[266773,148837,742],[263454,146531,732],[262531,154401,732],[270365,159537,3382],[264082,168286,3382],[268788,158399,3382],[267792,156450,3382],[269351,157584,3382],[260949,166074,3382],[270365,159537,682],[264082,168286,682],[264082,168286,712],[270365,159537,3372],[264082,168286,3372],[274059,160802,3372],[267277,170541,3372],[272044,160688,3372],[272689,159744,3372],[270580,159692,3372],[270638,159611,3372],[270451,159599,3372],[274059,160802,712],[267277,170541,712],[267277,170541,732],[274059,160802,3312],[267277,170541,3312],[276535,160850,3312],[275055,162889,3312],[273287,165325,3312],[274359,160424,3312],[274992,159626,3312],[274887,166422,3312],[270371,172725,3312],[274887,166422,3302],[270371,172725,732],[270371,172725,3302],[280410,165385,3302],[273617,175016,3302],[278215,165241,3302],[278937,164294,3302],[276699,164113,3302],[273617,175016,732],[283719,167628,3302],[276879,177318,3302],[282042,166469,3302],[281125,165914,3302],[281185,165834,3302],[276879,177318,732],[286221,170789,3482],[279959,179504,3482],[284627,169698,3482],[284645,169673,3482],[276879,177318,3482],[283584,168997,3482],[283719,167628,3482],[284266,168007,3482],[286221,170789,722],[279959,179504,722],[279959,179504,742],[283719,167628,722],[276879,177318,722],[287725,175302,3572],[283137,181760,3572],[286184,174211,3572],[286221,170789,3572],[288447,171017,3572],[279959,179504,3572],[286858,169891,3572],[287725,175302,742],[283137,181760,742],[243206,140143,3472],[241698,137373,3472],[244041,139015,3472],[237003,148528,3472],[240434,139151,3472],[233982,146308,3472],[243206,140143,542],[237003,148528,542],[237003,148528,562],[233982,146308,542],[246198,142342,3472],[240105,150808,3472],[246198,142342,562],[240105,150808,562],[240105,150808,572],[249189,144540,3482],[243208,153088,3482],[243152,153047,3482],[240105,150808,3482],[246198,142342,3482],[249189,144540,572],[243208,153088,572],[243208,153088,602],[243152,153047,572],[249067,147507,3492],[243208,153088,3492],[251722,144918,3492],[251072,145832,3492],[250531,145447,3492],[249854,143589,3492],[249189,144540,3492],[250776,148722,602],[246297,155387,602],[271791,135405,4442],[272838,133968,4442],[273004,136289,4442],[274068,134829,4442],[267552,130267,4442],[269871,138042,4442],[264198,134874,4442],[269483,138574,4442],[269777,138171,4442],[269836,138090,4442],[271791,135405,1062],[269871,138042,1062],[273004,136289,1062],[269777,138171,1062],[269836,138090,1062],[288327,137900,3582],[283106,139141,3582],[288245,137842,3582],[285377,135915,3582],[285423,135849,3582],[290251,142670,3582],[293331,141434,3582],[292843,144470,3582],[289536,143700,3582],[294409,142215,3582],[293424,141500,3582],[293343,141443,3582],[288327,137900,952],[293331,141434,952],[288245,137842,952],[285423,135849,952],[285377,135915,952],[283106,139141,952],[283106,139141,1022],[283106,139141,3392],[289536,143700,952],[289536,143700,3392],[293424,141500,952],[293343,141443,952],[279265,141197,3772],[273239,150030,3772],[278332,140535,3772],[269953,147709,3772],[276086,138940,3772],[269921,147686,3772],[279265,141197,852],[273239,150030,852],[279265,141197,902],[279265,141197,1022],[279265,141197,3392],[279265,141197,3662],[273239,150030,3662],[278332,140535,852],[278332,140535,1022],[278332,140535,3392],[276086,138940,852],[269921,147686,852],[282413,143432,3392],[278842,139800,3392],[281394,141573,3392],[281394,141573,1022],[278842,139800,1022],[282413,143432,1022],[266866,148715,4602],[263454,146531,4602],[267637,147718,4602],[266773,148837,4602],[271984,141966,4602],[268012,140591,4602],[268771,139552,4602],[266866,148715,742],[267637,147718,742],[271984,141966,742],[268771,139552,742],[268012,140591,742],[282413,143432,3662],[276392,152258,3662],[282413,143432,902],[282429,146923,3692],[279627,154543,3692],[276392,152258,3692],[282413,143432,3692],[283157,145876,3692],[283168,147437,3692],[285741,145795,3692],[283896,146390,3692],[285741,145795,842],[279627,154543,842],[282413,143432,842],[276392,152258,842],[283157,145876,842],[282429,146923,842],[283896,146390,842],[283168,147437,842],[405917,99519,9022],[408923,102395,9022],[408845,102478,9022],[405841,106035,9022],[405800,99642,9022],[404087,98098,9022],[400383,95053,9022],[400456,94957,9022],[397473,98888,9022],[409113,102730,9022],[400456,94957,732],[397473,98888,732],[397473,98888,3372],[405841,106035,732],[405841,106035,752],[405841,106035,3372],[409113,102730,732],[408845,102478,732],[413870,97872,4142],[413559,98178,4142],[410291,94649,4142],[407900,97382,4142],[407871,97410,4142],[407754,97287,4142],[411088,100076,4142],[411000,100173,4142],[411371,100331,4142],[413870,97872,652],[413559,98178,652],[411088,100076,652],[411371,100331,652],[418954,79038,4122],[426367,84251,4122],[419920,84639,4122],[416639,82337,4122],[424238,87669,4122],[426552,85392,4122],[427122,84831,4122],[424238,87669,652],[426552,85392,652],[427122,84831,652],[406914,70571,4302],[404590,73882,4302],[401530,71735,4302],[403855,68420,4302],[403855,68420,4292],[401530,71735,4292],[409973,72722,4332],[407652,76031,4332],[404590,73882,4332],[406914,70571,4332],[409973,72722,4232],[407652,76031,4232],[413033,74874,4232],[410714,78179,4232],[413033,74874,4222],[410714,78179,4222],[409973,72722,632],[407652,76031,632],[412302,92558,4262],[415940,95834,4262],[413870,97872,4262],[410291,94649,4262],[415940,95834,642],[410291,94649,642],[413870,97872,642],[416091,77025,4222],[413774,80327,4222],[416091,77025,4132],[413774,80327,4132],[414314,90467,4272],[418011,93796,4272],[415940,95834,4272],[412302,92558,4272],[418011,93796,642],[418954,79038,4132],[416639,82337,4132],[418954,79038,632],[416639,82337,632],[384643,76680,4262],[382678,79467,4262],[379970,74992,4262],[380006,74941,4262],[380722,73916,4262],[378838,76596,4262],[378738,76596,4262],[384643,76680,682],[382678,79467,4182],[380722,73916,682],[378738,76596,4182],[386659,73820,4282],[384643,76680,4282],[382497,71375,4282],[382727,71047,4282],[380722,73916,4282],[386659,73820,4262],[382727,71047,4262],[388676,70959,4262],[384732,68178,4262],[386659,73820,682],[388676,70959,4212],[384732,68178,4212],[382727,71047,682],[390692,68098,4212],[384784,68103,4212],[386736,65309,4212],[388676,70959,672],[384732,68178,672],[400796,66269,4302],[398468,69586,4302],[395406,67438,4302],[397736,64117,4302],[400796,66269,4292],[398468,69586,4292],[397736,64117,642],[397736,64117,3942],[395406,67438,642],[395406,67438,3942],[392563,65443,3942],[394565,62132,3942],[394680,61968,3942],[392348,65292,3942],[394565,62132,652],[392348,65292,652],[362805,59688,3182],[365314,59725,3182],[364394,61047,3182],[354119,51666,3182],[349519,53341,3182],[349436,53073,3182],[359019,59913,3182],[360434,58039,3182],[362686,59859,3182],[354119,51666,342],[365314,59725,342],[354119,51666,3172],[365314,59725,3172],[349436,53073,342],[349519,53341,342],[359019,59913,342],[360434,58039,342],[362805,59688,342],[362686,59859,342],[364394,61047,342],[372515,62210,3172],[371615,63504,3172],[369304,62501,3172],[359675,49981,3172],[367241,55868,3172],[365988,57669,3172],[371331,63912,3172],[371615,63504,332],[371615,63504,3102],[359675,49981,332],[354119,51666,332],[365314,59725,332],[369304,62501,332],[369304,62501,522],[369304,62501,3102],[371331,63912,332],[371331,63912,522],[371331,63912,3102],[359792,64490,2902],[359744,64561,2902],[359559,64329,2902],[356619,62423,2902],[360748,62613,2902],[357075,60038,2902],[355806,61882,2902],[355988,61617,2902],[356045,61535,2902],[359688,64644,2902],[359610,64760,2902],[356518,62628,2902],[359792,64490,452],[359744,64561,452],[359559,64329,452],[360748,62613,452],[357075,60038,452],[356045,61535,452],[369100,57162,3182],[367241,55868,3182],[369207,57009,3182],[371945,56696,3182],[374095,60410,3182],[373456,54525,3182],[375135,58915,3182],[365076,48582,3182],[359675,49981,3182],[365016,48381,3182],[397818,99643,3372],[397380,99175,3372],[397311,99102,3372],[405045,105946,3372],[395332,100813,3372],[395909,101430,3372],[394810,101263,3372],[392851,102605,3372],[391890,98542,3372],[393822,103259,3372],[390214,100111,3372],[390141,100179,3372],[401648,109135,3372],[401074,109690,3372],[404305,106662,3372],[401940,109437,3372],[404583,106949,3372],[402128,109631,3372],[404736,107108,3372],[405764,106113,3372],[405323,106234,3372],[405476,106392,3372],[393822,103259,752],[404736,107108,752],[404583,106949,752],[404305,106662,752],[405045,105946,752],[405323,106234,752],[405476,106392,752],[405764,106113,752],[383888,110994,6982],[382717,109743,6982],[392269,119285,6982],[391801,119611,6982],[388341,122997,6982],[388411,123069,6982],[389224,122147,6982],[390918,120460,6982],[389293,122219,6982],[391015,120561,6982],[391898,119711,6982],[392303,119321,6982],[392269,119285,692],[383888,110994,6112],[392269,119285,6112],[388411,123069,692],[388341,122997,692],[389224,122147,692],[389293,122219,692],[391015,120561,692],[390918,120460,692],[391801,119611,692],[391898,119711,692],[392303,119321,692],[395035,116259,6112],[395202,116431,6112],[394437,115644,6112],[394882,116102,6112],[394735,115951,6112],[388179,106978,6112],[395979,114144,6112],[395753,114364,6112],[388179,106978,5732],[395979,114144,5732],[383888,110994,312],[392269,119285,312],[416325,88376,4302],[420082,91759,4302],[418011,93796,4302],[414314,90467,4302],[416325,88376,642],[420082,91759,642],[420082,91759,652],[416325,88376,4272],[420082,91759,4272],[418337,86285,4272],[422153,89721,4272],[422153,89721,652],[419920,84639,4332],[424238,87669,4332],[422153,89721,4332],[418337,86285,4332],[432960,45174,4292],[433299,45560,4292],[433224,45625,4292],[431114,42618,4292],[431596,42966,4292],[431177,43337,4292],[431211,42531,4292],[426108,36938,4292],[426615,37167,4292],[428745,39942,4292],[428609,39425,4292],[429015,39704,4292],[428699,39346,4292],[423096,34193,4292],[423016,34104,4292],[423443,33725,4292],[418073,38651,4292],[426370,36707,4292],[426679,37057,4292],[426590,37136,4292],[421732,50614,4292],[421861,50501,4292],[422432,51415,4292],[420131,36824,4292],[426066,36891,4292],[423820,34152,4292],[423723,34238,4292],[422782,34472,4292],[427142,50939,4292],[424720,49416,4292],[422929,34341,4292],[414465,41853,4292],[421365,49971,4292],[415139,49105,4292],[417993,38561,4292],[420052,36734,4292],[413959,42142,4292],[414385,41763,4292],[410458,38548,4292],[413284,48515,4292],[410165,38247,4292],[410332,38419,4292],[403840,38847,4292],[408747,36792,4292],[403722,38422,4292],[403661,38201,4292],[414011,49259,4292],[415014,49223,4292],[419208,52341,4292],[432863,45259,4292],[426131,51031,4292],[433141,45698,4292],[432960,45174,742],[433299,45560,742],[432863,45259,742],[431177,43337,742],[431596,42966,742],[431211,42531,742],[431114,42618,742],[428745,39942,742],[429015,39704,742],[428699,39346,742],[428609,39425,742],[426615,37167,742],[426590,37136,742],[426679,37057,742],[426370,36707,742],[426108,36938,742],[426066,36891,742],[423723,34238,742],[423820,34152,742],[423443,33725,742],[423016,34104,742],[423096,34193,742],[422929,34341,742],[422782,34472,742],[420131,36824,742],[420052,36734,742],[417993,38561,742],[418073,38651,742],[414465,41853,742],[414385,41763,742],[413959,42142,742],[410458,38548,742],[410332,38419,742],[410165,38247,742],[408747,36792,742],[403661,38201,742],[403722,38422,742],[403840,38847,742],[413284,48515,742],[414011,49259,742],[415014,49223,742],[415139,49105,742],[433224,45625,742],[377821,86359,4182],[378153,77385,4182],[374242,83471,4182],[373810,83134,4182],[377706,86522,4182],[377802,87185,4182],[377918,87064,4182],[378076,86899,4182],[382678,79467,572],[378738,76596,572],[373810,83134,572],[374242,83471,572],[377802,87185,572],[377918,87064,572],[378076,86899,572],[377706,86522,572],[374379,67423,3102],[377489,67592,3102],[376554,68936,3102],[371346,68158,3102],[373034,69360,3102],[370850,68928,3102],[367278,65413,3102],[371160,68032,3102],[372674,70180,3102],[373163,69450,3102],[367278,65413,522],[393822,103259,5732],[388358,106810,5732],[392851,102605,5732],[397371,112791,5732],[396090,114036,5732],[401074,109690,5732],[400872,109886,5732],[397669,113097,5732],[401107,110618,5732],[397816,113248,5732],[397969,113406,5732],[398136,113578,5732],[401142,110654,5732],[401164,110188,5732],[401352,110382,5732],[393822,103259,112],[401074,109690,112],[392851,102605,112],[388179,106978,112],[395979,114144,112],[401142,110654,112],[401107,110618,112],[346747,54021,3432],[340090,55962,3432],[346717,53925,3432],[355613,61186,3432],[355550,61263,3432],[349045,63188,3432],[347666,65026,3432],[347783,65119,3432],[350608,67366,3432],[346747,54021,342],[355613,61186,342],[346717,53925,342],[340090,55962,342],[340090,55962,3402],[349045,63188,342],[349045,63188,3402],[347666,65026,342],[347666,65026,3402],[347783,65119,3402],[344407,69328,3402],[333863,57877,342],[342837,65118,342],[341467,66952,342],[341584,67046,342],[364046,132734,6282],[362567,131821,6282],[362744,131655,6282],[360261,136588,6282],[358911,135242,6282],[358808,135339,6282],[369753,140964,6282],[367121,143737,6282],[370664,140067,6282],[370970,139949,6282],[369844,141057,6282],[370756,140160,6282],[358808,135339,6222],[360261,136588,612],[360261,136588,6222],[367121,143737,612],[367121,143737,6222],[369844,141057,612],[369753,140964,612],[370664,140067,612],[370756,140160,612],[356244,139956,6222],[354999,138904,6222],[366632,144077,6222],[356001,140183,6222],[362645,147421,6222],[355935,140244,6222],[364411,146078,6222],[362891,147702,6222],[362623,147441,6222],[363442,147024,6222],[363525,147110,6222],[364495,146164,6222],[366702,144149,6222],[360261,136588,602],[367121,143737,602],[358808,135339,602],[356244,139956,602],[356001,140183,602],[355935,140244,602],[362645,147421,602],[362623,147441,602],[362891,147702,602],[363525,147110,602],[363442,147024,602],[364411,146078,602],[364495,146164,602],[366632,144077,602],[366702,144149,602],[355523,154395,3222],[355770,154650,3222],[355502,154416,3222],[346432,149661,3222],[348542,147614,3222],[349018,147818,3222],[348614,147544,3222],[348735,147426,3222],[349085,147744,3222],[353510,152431,3222],[351253,158864,3222],[351158,159081,3222],[340115,148068,3222],[342906,146074,3222],[338204,144300,3222],[339590,143054,3222],[336948,145258,3222],[334052,142688,3222],[337018,143282,3222],[334785,141677,3222],[337657,137679,3222],[340153,139820,3222],[340086,139894,3222],[340220,139746,3222],[337689,137635,3222],[352030,158119,3222],[337044,145343,3222],[352092,158184,3222],[351315,158929,3222],[355523,154395,622],[355770,154650,622],[355502,154416,622],[353510,152431,622],[349018,147818,622],[349085,147744,622],[348735,147426,622],[348614,147544,622],[340153,139820,622],[340220,139746,622],[337689,137635,622],[337657,137679,622],[334785,141677,622],[334052,142688,622],[334052,142688,782],[334052,142688,3212],[336948,145258,622],[336948,145258,782],[336948,145258,3212],[337044,145343,622],[340115,148068,622],[351158,159081,622],[351315,158929,622],[351253,158864,622],[352030,158119,622],[352092,158184,622],[340115,148068,3502],[351158,159081,3502],[339585,153166,3502],[337466,150650,3502],[339535,156468,3502],[337907,154831,3502],[350169,159917,3502],[346572,163545,3502],[350231,159982,3502],[350865,159240,3502],[350927,159304,3502],[340115,148068,602],[351158,159081,602],[337466,150650,602],[339585,153166,602],[337907,154831,602],[350231,159982,602],[350169,159917,602],[350865,159240,602],[350927,159304,602],[354349,124634,2882],[350845,128796,2882],[348667,126740,2882],[352016,122762,2882],[348499,126936,2882],[354349,124634,2852],[350845,128796,2872],[352016,122762,2852],[348499,126936,2872],[349839,134818,2872],[355390,132400,2872],[351481,136206,2872],[345569,131211,2872],[345492,131302,2872],[345057,130934,2872],[347708,133018,2872],[349350,134405,2872],[347211,132598,2872],[347630,133109,2872],[347134,132690,2872],[352028,136394,2872],[349761,134910,2872],[349272,134497,2872],[351816,136646,2872],[351403,136297,2872],[350845,128796,572],[348499,126936,572],[345492,131302,572],[345569,131211,572],[347211,132598,572],[347134,132690,572],[347630,133109,572],[347708,133018,572],[349350,134405,572],[349272,134497,572],[349761,134910,572],[349839,134818,572],[351481,136206,572],[351403,136297,572],[351816,136646,572],[333642,143254,3212],[332970,144157,3212],[332842,144682,3212],[332686,144539,3212],[335419,147065,3212],[333642,143254,782],[332842,144682,782],[335419,147065,782],[332474,80086,1202],[332506,80192,1202],[329843,80899,1202],[329303,77535,1202],[327823,79309,1202],[329898,81081,1202],[332534,80287,1202],[332534,80287,472],[271703,111477,2852],[267674,117148,2852],[265175,115372,2852],[269204,109701,2852],[271703,111477,662],[321668,143068,3392],[324014,140186,3392],[322956,144116,3392],[325333,141195,3392],[324110,140068,3392],[325397,141116,3392],[321668,143068,792],[324014,140186,792],[322956,144116,792],[325333,141195,792],[325397,141116,792],[324110,140068,792],[315042,138254,3292],[312962,140962,3292],[307736,136947,3292],[309817,134239,3292],[315042,138254,802],[312962,140962,802],[309817,134239,802],[307736,136947,802],[321641,143318,2862],[319557,146030,2862],[314308,141997,2862],[316391,139285,2862],[321641,143318,802],[319557,146030,802],[316391,139285,802],[314308,141997,802],[308391,152407,3302],[306517,155006,3302],[305957,150663,3302],[304084,153261,3302],[305957,150663,862],[304084,153261,862],[310874,154186,3322],[309000,156786,3322],[308391,152407,3322],[306517,155006,3322],[313382,155983,3322],[311507,158584,3322],[313382,155983,3302],[311507,158584,3302],[310874,154186,852],[309000,156786,852],[316456,162306,3352],[314585,164902,3352],[313958,160511,3352],[313000,159823,902],[311127,162417,902],[315918,157799,3302],[314038,160399,3302],[315918,157799,842],[314038,160399,842],[315918,157799,3282],[314038,160399,3282],[313382,155983,842],[311507,158584,842],[316538,162192,3282],[318415,159588,3282],[321270,165056,2052],[319012,162680,2052],[323406,163057,2052],[320712,160257,2052],[321270,165056,852],[319012,162680,852],[323406,163057,852],[320712,160257,852],[308468,133209,1482],[306390,135913,1482],[302361,130439,1482],[303290,129230,1482],[301212,131934,1482],[308468,133209,722],[306390,135913,722],[303290,129230,722],[302361,130439,722],[301212,131934,722],[295706,146236,2942],[297170,144217,2942],[298723,145503,2942],[297335,147417,2942],[298873,145451,2942],[298796,145557,2942],[303344,148791,3302],[301480,151393,3302],[353700,120762,2852],[355811,122897,2852],[352016,122762,692],[354349,124634,692],[375228,99410,2862],[377518,97182,2862],[376448,100665,2862],[378859,98320,2862],[381492,92353,2762],[382808,93685,2762],[378571,95238,2762],[379888,96571,2762],[368879,109251,3242],[367078,107418,3242],[371045,107122,3242],[369243,105289,3242],[351070,74331,2242],[351105,74446,2242],[348445,75162,2242],[347875,71756,2242],[346441,73557,2242],[348501,75344,2242],[351134,74542,2242],[351134,74542,462],[357289,72370,1662],[357326,72485,1662],[354673,73230,1662],[354113,69804,1662],[352683,71618,1662],[354730,73411,1662],[357356,72580,1662],[357356,72580,462],[362932,67101,2812],[366113,69659,2812],[362870,67179,2812],[363485,70491,2812],[361480,68902,2812],[365943,69940,2812],[363541,70673,2812],[366177,69869,2812],[362932,67101,482],[366113,69659,482],[365943,69940,482],[366177,69869,482],[344871,76247,1202],[344903,76352,1202],[342235,77067,1202],[341696,73660,1202],[340263,75472,1202],[342290,77249,1202],[344932,76448,1202],[344932,76448,462],[338623,78167,2802],[338658,78281,2802],[335996,79005,2802],[335454,75588,2802],[334015,77396,2802],[336052,79187,2802],[338688,78377,2802],[338688,78377,462],[400851,48956,795],[422845,56627,812],[417141,55824,732],[413765,53326,722],[411122,50812,712],[414032,52965,722],[406173,51786,682],[403136,44100,606],[403246,38774,341],[402442,38756,852],[402058,39567,844],[401837,38858,858],[402874,38877,508],[402718,39204,840],[401331,38833,820],[401437,39163,493],[401271,39062,882],[416744,60964,765],[415438,60041,773],[399700,43288,638],[397819,39967,507],[401010,39250,445],[396619,41430,767],[396555,41708,1005],[396271,40843,590],[397407,43231,664],[397780,42766,701],[398814,43511,647],[397448,41724,1002],[396736,42153,1076],[397906,46967,717],[407166,52470,702],[398564,42256,1188],[400943,41094,671],[402014,40512,848],[402523,50433,692],[405077,52427,668],[402401,50610,702],[408219,54243,759],[400937,49612,779],[414474,57888,750],[426446,58174,1078],[425051,57097,739],[423400,61943,852],[424212,57641,872],[425155,57810,886],[423410,57818,880],[428437,59953,942],[425971,58252,942],[426855,58739,906],[425880,63651,912],[420952,64059,865],[423835,66079,851],[423351,57461,721],[401521,40111,712],[410084,56299,776],[414577,58603,882],[401549,39804,496],[396461,40370,513],[396238,40374,792],[396304,40629,792],[396508,40720,530],[427312,59000,1073],[399000,41325,674],[399407,41995,858],[400576,40905,751],[398876,40521,658],[397603,41419,718],[399830,40197,413],[398398,41619,938],[401213,38839,942],[425890,57994,1109],[426206,58241,1112],[400106,41330,669],[396715,40608,505],[397755,42455,928],[402384,38534,862],[400026,40774,688],[423756,57393,959],[320633,160196,1052],[320274,159942,902],[321787,158333,1072],[321870,158389,1082],[321906,158160,1192],[322619,157296,942],[321989,158216,1082],[323108,156404,902],[323191,156461,902],[323221,156239,902],[324314,154821,932],[323304,156296,932],[324232,154764,932],[324344,154599,932],[325778,152506,922],[324427,154656,932],[326849,150652,872],[325861,152562,862],[325475,153356,862],[326068,152454,862],[326018,153699,902],[327292,152115,902],[325897,152333,872],[326606,151620,872],[327116,150840,892],[298144,128200,861],[296646,129588,746],[297195,127057,810],[287618,137284,1314],[291864,124088,789],[290068,125689,697],[290398,122401,791],[271691,120646,922],[274099,122334,942],[286388,122155,741],[284632,126039,912],[282190,124364,862],[284086,117734,907],[279862,116417,757],[278758,113666,782],[271295,109058,807],[270784,108282,832],[274815,111492,846],[276181,112283,852],[269422,106851,782],[267137,105353,664],[268091,105896,676],[255711,97465,452],[255769,97546,452],[255776,97677,452],[255712,97587,452],[254514,98639,580],[254312,98708,482],[259918,102701,542],[253988,98760,569],[254205,98662,482],[254254,98627,482],[254147,98580,472],[254885,98835,469],[262030,104423,640],[273649,110907,710],[271811,111321,712],[272091,111865,622],[271900,111383,712],[269650,117340,874],[266817,121386,882],[272668,112910,862],[277289,113920,734],[265583,120534,982],[264654,121880,1002],[266759,122957,897],[280631,115511,987],[270911,125654,1182],[271219,125476,983],[271263,125801,989],[271006,125711,1182],[295445,125706,807],[285503,135734,1082],[299309,128864,892],[301754,130500,998],[300917,130434,833],[292618,134918,1002],[291979,137348,1052],[289671,135698,1022],[292983,139190,1075],[293216,138266,1022],[294185,140231,972],[317092,146582,832],[321558,157176,862],[319205,157746,862],[317548,163169,922],[315992,166063,942],[317784,163337,922],[312560,152955,872],[321792,157344,872],[323411,151454,832],[326329,150897,862],[326084,150723,862],[334684,135723,775],[329776,142382,778],[329435,142789,799],[336901,137082,772],[332750,142506,812],[334314,136477,798],[328578,143680,812],[324113,149493,842],[302079,147382,1038],[304104,134615,845],[300865,144522,892],[309573,138665,909],[290252,133223,982],[294161,132763,952],[280691,126549,942],[283133,128224,942],[291794,131069,932],[278224,113490,1073],[281976,116500,788],[282691,119743,637],[273682,117804,862],[276090,119492,882],[271972,125683,959],[270409,116811,811],[271009,116364,804],[284454,134676,1288],[284303,133698,1031],[281083,130803,1009],[278089,129933,1170],[280959,131913,1346],[277334,130001,1183],[284594,118247,751],[287381,120295,884],[282066,132595,1092],[277012,129856,1114],[287978,136822,1053],[288453,137347,1138],[282617,116945,935],[277120,112560,929],[272415,114207,729],[273477,112470,699],[292741,124246,811],[280717,116193,930],[282589,133466,1230],[280897,131566,1137],[282114,132928,1127],[271701,126221,1125],[271987,114093,969],[270660,115902,1032],[269790,118320,977],[271197,115774,779],[272191,112510,788],[271434,112058,1092],[302027,147063,910],[292831,139126,1252],[270920,115686,830],[320219,160332,912],[320135,159965,902],[320453,160191,1032],[320553,159271,1055],[318238,163157,922],[319903,160783,912],[316263,165973,952],[316131,166161,942],[315761,168808,942],[316919,168580,887],[317415,169133,1166],[317911,163623,922],[316353,166036,952],[318001,163687,942],[318328,163220,932],[319993,160846,912],[321380,158295,1088],[320309,160395,942],[320192,159884,902],[321459,166112,1057],[324930,158180,929],[322708,157380,1052],[324056,155427,932],[328235,163846,815],[329397,165678,722],[326101,154928,923],[326091,157427,956],[326302,156259,1272],[327288,156643,934],[321182,160501,1038],[316456,166290,942],[317203,166854,942],[312706,178940,798],[313434,179142,635],[313264,180198,1000],[320970,165561,1031],[320528,165735,864],[320925,165224,1015],[314446,178845,861],[314337,178169,606],[315642,178238,710],[310014,176506,1083],[307491,179396,932],[312693,172965,912],[311092,175785,1091],[311675,177139,645],[305242,181844,912],[306383,180602,902],[309161,183065,855],[304791,184134,906],[303384,184165,872],[304641,182595,902],[309308,184125,934],[306519,185808,853],[304317,187075,1092],[303803,185737,1296],[304654,186221,1457],[305461,185663,1376],[299151,190582,1065],[304547,185537,1239],[307326,186925,1085],[307136,187731,1122],[306711,187188,984],[310369,181870,962],[310459,177479,850],[311080,179073,913],[314775,181263,972],[313637,180420,1083],[323295,164439,1008],[318674,171300,1191],[319011,170509,1085],[320206,171227,825],[315738,178887,833],[315693,178540,851],[315928,177088,741],[315284,175411,916],[321052,166275,849],[320610,172147,992],[323455,167972,1087],[318359,172872,904],[319704,172440,1145],[319312,172985,737],[327580,161903,792],[325398,161598,1144],[327864,161127,684],[324652,163237,1070],[323831,163492,978],[325983,163202,676],[326123,164260,658],[325594,163342,647],[329947,159200,695],[328635,163403,757],[328587,163028,773],[329238,160774,674],[330798,157562,976],[328668,160179,744],[326549,154005,1017],[329671,160326,798],[327788,160397,964],[329364,157887,1027],[337118,150896,837],[336722,150981,879],[337467,150482,879],[329825,158117,991],[330519,157959,1006],[330622,156194,1060],[331301,156732,991],[327211,155955,1125],[326740,155390,1121],[328042,155365,920],[326635,154707,913],[330661,151964,909],[332257,157282,1016],[331115,155361,928],[332756,157188,1030],[332529,155472,1052],[333214,157135,928],[333641,156704,962],[334398,156603,931],[334677,156916,755],[334880,156198,739],[335278,156508,721],[334442,156942,918],[335373,157150,863],[335754,157105,694],[336273,158057,707],[337074,153722,695],[337662,155023,751],[332567,145408,1001],[330564,147826,952],[338440,148503,789],[338748,147680,922],[338888,148725,939],[336831,145721,832],[334851,150253,824],[331762,149686,1083],[301347,191806,1037],[300988,192141,1275],[299676,189329,1117],[320890,171694,796],[320109,172708,1041],[304416,187749,1234],[301745,188778,1054],[301489,192795,1169],[301025,192544,1064],[334307,155879,1010],[333461,155360,941],[334425,154833,1087],[337247,151934,707],[324940,161750,963],[322999,159873,972],[325466,155859,930],[326437,155479,1112],[315193,181137,838],[315355,179296,890],[313313,180528,1060],[312898,180308,939],[326695,165107,987],[325262,164127,1055],[326371,155194,721],[329968,153854,920],[321996,166666,1000],[321382,168640,1076],[320401,167894,1000],[319653,169280,995],[319435,170376,1189],[318443,169635,1059],[327176,163169,693],[326634,164802,687],[324694,163566,1033],[323406,162949,985],[308372,186570,975],[304871,187997,1200],[304498,188494,1010],[321951,169966,798],[322453,170132,967],[322039,170633,797],[318923,173479,664],[316521,170496,934],[316496,172998,888],[315078,170476,1066],[304166,188551,1141],[303548,184296,922],[301253,187789,1273],[321597,170420,786],[304738,186926,1331],[304786,187263,1363],[304048,184929,1307],[305000,185404,1455],[306326,186898,1138],[305082,186152,1213],[338927,149088,812],[312209,175098,953],[313110,176711,607],[311902,175936,746],[303708,190149,1012],[303286,191337,1142],[302607,192188,1033],[305181,186858,1298],[323212,158669,1226],[310599,181057,843],[319146,168381,848],[319936,169167,842],[322782,168976,909],[317263,168151,863],[314230,180297,862],[336345,155258,749],[335353,147719,906],[309782,184681,938],[304821,187669,1115],[304959,188765,1008],[305094,189767,1042],[318007,170053,1167],[317874,169064,1148],[317330,171676,900],[311725,180678,888],[314244,177483,565],[319993,169506,1007],[320125,170500,1022],[317063,174654,830],[313018,178539,637],[302563,191857,1034],[305217,187242,1096],[305257,187592,1003],[333126,147068,839],[334458,147196,991],[336346,151788,730],[335041,151602,954],[322538,158599,1204],[336173,153861,930],[336524,153132,729],[335495,155010,970],[333739,154265,939],[320572,169274,845],[323894,168875,1158],[317325,168476,1119],[311399,181504,871],[329888,153174,1062],[329574,153603,910],[322572,158945,1036],[325032,162441,965],[316831,172950,746],[317349,174223,837],[317386,174605,664],[316882,173256,886],[337443,156468,748],[309446,177494,889],[337434,153300,774],[325078,162758,1021],[325948,162855,826],[313990,178618,627],[334872,147459,845],[332399,150940,1048],[330938,153977,1030],[304068,190385,1190],[334163,150744,840],[303122,181483,862],[299407,183252,894],[304139,179284,808],[302819,178512,968],[296436,124758,842],[295015,124758,984],[296935,119069,909],[293839,123318,937],[294713,124840,912],[299298,121107,849],[293517,124095,798],[295798,123188,771],[295762,122819,940],[262874,72930,412],[262387,74028,352],[262102,74096,352],[261471,72385,402],[261079,72615,402],[261592,71841,382],[261971,72092,382],[261779,72205,382],[261648,72118,392],[260876,73284,402],[261987,74260,352],[260599,73340,402],[262158,74373,342],[263151,72873,412],[411720,38460,1792],[411464,37614,2252],[415386,40998,1974],[416921,39386,1856],[412314,37126,1986],[410976,36624,1072],[412338,36701,1920],[417939,38711,2215],[417249,39134,2111],[421139,34340,1916],[421959,35045,1943],[421711,35297,1943],[417966,38387,2021],[420098,36705,2092],[419763,36447,2035],[422261,34369,1976],[422695,34374,1962],[422639,34312,1962],[422579,34254,1962],[422516,34200,1962],[422449,34150,1952],[422378,34105,1952],[422305,34065,1952],[422230,34029,1942],[421998,34133,1955],[422152,33999,2282],[422073,33974,2172],[421992,33954,2172],[421827,33930,2172],[421910,33939,2172],[421743,33927,2142],[421470,34128,1894],[421660,33929,2142],[421577,33936,2142],[421495,33949,2092],[418244,38285,1997],[413025,38300,1805],[415524,38476,1749],[414402,39242,1802],[414758,41270,1963],[414806,40405,1822],[413597,39873,1769],[411283,39275,1900],[410967,38987,1885],[419438,36212,1885],[418378,35608,1751],[418957,35147,1978],[419421,34763,1838],[413520,39210,1923],[413204,39666,1779],[412709,40624,1896],[417992,38033,1851],[419748,36946,1928],[421255,34020,2062],[421333,33991,2092],[415473,39083,1933],[412765,36286,1890],[417648,38085,1971],[413903,40802,1962],[413512,36003,1864],[418353,35969,1881],[412214,37913,1811],[416743,37211,1882],[415433,40140,1825],[421413,33967,2092],[406718,52822,708],[309240,61679,372],[308821,60565,332],[309534,61549,362],[309130,60459,332],[275503,130529,1171],[274129,132827,1278],[274271,138393,1154],[276815,134931,1082],[272872,140416,962],[278039,132857,1087],[279186,131634,1312],[277374,132544,1131],[275083,133695,1263],[275042,133376,1289],[273397,136096,1254],[272784,136949,1221],[274085,135072,1267],[270272,137886,1327],[271789,136403,1286],[273627,135560,1264],[276216,129750,1099],[319963,204206,1244],[319496,203624,7337],[319475,203629,1224],[368520,155696,1002],[369459,155484,992],[369005,155749,992],[427949,102137,1047],[427893,102343,15039],[427343,102324,1078],[429020,100059,10771],[429159,100300,17232],[429017,100150,1066],[369103,154055,1002],[372235,153193,942],[370916,154179,952],[377847,145283,942],[376838,150276,962],[374552,151709,942],[391445,133479,960],[395688,134796,962],[393164,137588,952],[379030,149061,962],[379537,145007,1061],[382108,147380,952],[384666,145799,942],[383412,146601,942],[386241,144564,922],[386491,139741,1172],[389527,138015,1071],[389826,137931,1061],[389862,138264,5360],[390322,140700,922],[388317,142722,922],[390272,134227,1015],[391085,133618,991],[389984,135012,999],[392204,132829,998],[399520,127385,10424],[400015,127416,11647],[399633,127592,11648],[400632,128695,1048],[400289,128448,9219],[400705,128623,14778],[411238,116098,1033],[411545,118449,968],[412816,116853,997],[413506,118551,892],[400928,127894,6701],[401603,127588,1038],[400869,128229,1050],[412946,116337,3815],[412557,116696,5051],[421727,110285,882],[420306,111723,882],[416992,115098,862],[418412,113610,862],[422502,107464,1054],[422707,109211,892],[434599,94621,1039],[434944,94079,1052],[434351,95088,1022],[434229,92940,12169],[434059,93022,15684],[434265,92844,7362],[435248,92173,1143],[435745,92280,1102],[435529,92338,14509],[434824,91666,1101],[434779,91322,1121],[435058,91437,9486],[435692,90860,1102],[435261,90947,8665],[435067,90819,1103],[434601,90006,1052],[434557,89669,1056],[434618,89697,14372],[434000,89673,15052],[433339,90209,1042],[434586,88908,992],[434643,90322,1063],[435267,89969,1062],[432823,90748,962],[433161,90714,1061],[432801,90782,962],[433207,91033,1115],[425962,105435,6231],[426321,105031,932],[424379,107333,892],[432782,90818,962],[432773,91008,12688],[432765,90855,962],[432750,90893,962],[432739,90931,962],[428034,102822,977],[429130,101681,992],[432729,90971,962],[432723,91011,962],[432719,91051,952],[432718,91092,952],[432719,91132,952],[429192,98318,11568],[428847,98416,11407],[429126,97972,11287],[432724,91173,952],[433149,91226,12156],[432731,91213,952],[432740,91252,952],[432753,91291,952],[432767,91328,952],[434281,94276,10394],[434268,94095,1094],[434513,93946,1076],[432785,91365,952],[433514,93176,13703],[433109,93536,1091],[433135,93291,13571],[432805,91401,952],[433818,95724,1015],[433806,95916,1012],[433526,90570,1054],[433421,90433,11425],[433479,90237,1024],[434782,93837,1080],[434823,94094,13013],[423588,102546,1087],[423633,102890,1091],[433414,95877,1040],[434059,94608,1068],[431767,98100,14054],[431950,98288,1012],[431756,98465,999],[405782,124896,992],[411618,120187,902],[404358,126027,1002],[428625,99569,1118],[428726,99416,12704],[424614,103496,8721],[424499,103146,13029],[424680,103403,15141],[413184,116412,982],[414802,117311,892],[412261,116625,1016],[401061,126733,1099],[399362,125785,1094],[399464,125826,6796],[399407,126127,1098],[398141,128161,7908],[398484,127999,1036],[398666,128930,8223],[390189,137680,6670],[390088,137860,1060],[389836,137865,5748],[367365,155690,992],[429345,99583,16315],[429809,99661,1035],[429851,99977,1029],[428299,101607,11091],[428174,101387,1083],[428513,101345,1086],[431109,97613,1072],[431468,98195,1048],[430943,98720,1039],[428887,99136,1119],[429313,99373,1085],[431512,98556,1003],[431525,98444,15321],[429802,99493,13495],[428840,98778,1130],[428533,98869,1132],[428632,98727,17298],[426227,100544,1088],[426715,100644,13984],[426249,100796,13294],[435179,89796,1052],[434946,89544,15505],[434751,89227,13319],[424898,102734,1110],[425175,102881,13107],[424938,103053,1088],[426783,101653,13046],[426844,101751,1110],[426406,101858,1155],[428897,98749,11490],[429187,98400,1123],[429725,99009,1056],[429937,100649,990],[429634,100192,14348],[430105,98222,1086],[430062,97888,1115],[430407,97454,1141],[430148,98562,1063],[430114,98418,14329],[400854,128108,9586],[399627,127598,5800],[399291,128064,12313],[399205,127399,12344],[431492,98805,14162],[430662,99446,1008],[430204,99411,13728],[429967,99073,16634],[430234,99233,1027],[428955,99068,11707],[430282,99140,8775],[430192,98891,1076],[424435,103630,1086],[424730,103514,1088],[426917,99567,12820],[427773,99402,7704],[426987,99649,1064],[427721,102549,989],[429445,100404,1030],[430167,99750,12563],[431672,97816,1032],[433212,96731,1002],[430052,98778,12748],[429636,98309,1111],[431026,96969,1101],[431247,97228,8236],[431069,97301,1089],[430323,99907,1014],[430280,99594,1011],[427389,102682,1065],[427361,103175,12311],[427023,103128,1046],[426187,100159,7348],[428565,98146,7873],[430359,97096,1117],[430680,96698,1093],[431342,97237,1069],[435187,92835,12778],[435519,92954,1082],[434884,89477,1026],[434934,89835,1055],[434524,89327,1231],[434492,89379,13176],[434204,89474,1019],[428375,99156,12799],[428583,99228,1155],[428291,99633,1141],[428552,101663,1038],[428214,101702,1055],[429060,100479,1053],[428301,101950,10464],[426934,102426,1110],[426800,102668,11354],[426451,102215,1126],[428258,102062,1012],[426913,103314,11744],[426572,103217,951],[430928,97297,14669],[430984,96653,1101],[431209,96198,1105],[429469,100608,11200],[425157,104728,1036],[425372,104182,13463],[425441,104254,1050],[425268,102927,1087],[424683,103154,1096],[425997,103285,10802],[425660,102800,1113],[426081,102655,1113],[400909,128553,1019],[399224,124753,1073],[398607,125493,1061],[428096,98570,13931],[429519,98226,11846],[429592,97973,1114],[429675,97528,9739],[429656,97521,15122],[429976,97235,1112],[434677,93675,7750],[434520,93807,9219],[434473,93633,1095],[435047,93275,13796],[434611,93033,8012],[433126,92966,14066],[433810,92324,7362],[434430,93300,1114],[434524,93559,15238],[434394,93239,13979],[433881,93239,1098],[434912,92343,1096],[435335,92848,1122],[434354,94777,1050],[434315,94608,10257],[434602,93462,11039],[433736,90083,1030],[433796,90004,11517],[427993,102484,1009],[428177,102633,12477],[426357,103169,10351],[426168,103339,1069],[425487,104612,1028],[426075,104628,9374],[425793,103832,1066],[400226,129786,982],[402623,127530,1002],[426663,103886,985],[426574,103758,12337],[427104,103778,981],[398667,129386,1026],[398281,129895,1023],[397861,129758,1000],[398349,131742,952],[397906,130089,1014],[430315,96776,1097],[430810,96646,14210],[429713,97865,9647],[430103,97468,9381],[430155,97114,10790],[429433,97915,11204],[427910,99361,1145],[427797,99717,7452],[427561,101108,12614],[427814,101110,1047],[428068,101659,12769],[426623,100082,1107],[426526,102729,13586],[428044,100663,9210],[428093,100271,10658],[428129,100646,6453],[426505,102127,8180],[428071,99952,10941],[427997,100033,1105],[427863,99029,1091],[427641,99778,1105],[428675,100127,10626],[428668,99899,1107],[428523,99815,13678],[427217,101360,1092],[428544,101496,10777],[428839,101227,1045],[434310,94434,1061],[434372,92594,1603],[434409,92389,6319],[434748,92683,10631],[433252,91391,1098],[432851,91467,952],[435447,93016,12080],[435376,93174,1084],[434248,89794,1050],[433982,89927,1047],[434428,91137,1097],[434710,91319,12650],[434413,91164,12682],[434220,92193,7952],[434213,92533,7199],[435110,91151,1103],[434804,91215,10353],[435783,91422,1102],[425801,104006,11574],[426300,104369,998],[434381,90795,1081],[433494,90780,11820],[434738,93491,1093],[435044,93352,1078],[426557,104447,10788],[426708,104221,985],[425615,102454,1124],[426254,104015,1010],[426742,101322,13095],[425069,104053,1054],[426717,100786,1106],[427162,102251,11234],[426589,101020,11470],[426967,100911,10991],[426362,101540,1119],[425530,101805,1137],[425300,101108,9913],[426193,101168,11796],[425944,101905,12639],[425610,102020,12610],[425279,101863,12081],[426020,102213,13144],[427246,100198,9816],[426985,100581,11854],[427251,102555,11929],[433855,92714,13337],[433425,92715,1059],[432827,91435,952],[434121,90962,1095],[434209,91606,1140],[433893,91669,9746],[433721,91734,13281],[433659,91554,1113],[433507,91445,10733],[433707,91913,1115],[425573,102122,1142],[425136,101911,1121],[424641,102835,1104],[424598,102505,1125],[425814,100638,1114],[423888,102045,1077],[425093,101580,1121],[432322,93778,1031],[432693,93653,1069],[425963,105159,974],[427065,103460,1022],[426444,104177,9703],[399391,126807,9700],[399529,126983,11319],[399211,126963,1099],[398597,127853,9256],[398096,127834,7882],[400867,126931,11952],[400690,126848,1105],[400491,127222,10190],[400735,127190,1099],[400460,127357,1106],[400841,127248,6658],[401101,127053,1065],[401123,127225,10663],[399821,126504,10600],[399728,126308,1121],[400039,126483,1132],[400827,127356,10598],[401144,127385,1049],[399826,126898,9925],[399494,126787,1086],[399826,126976,1249],[399872,127063,5922],[424905,104866,1039],[424289,104675,7116],[424524,104304,1066],[428486,101190,10538],[427137,100943,6853],[427775,100748,10290],[427737,100407,10396],[428883,101571,1022],[428190,101303,10095],[428352,100212,10475],[428821,100482,7117],[427766,99704,12158],[400325,126336,1122],[400149,126277,11312],[399994,126151,1122],[400084,126829,1127],[400147,126907,5926],[435522,91001,1101],[435157,91493,1128],[401534,127250,6758],[401129,127040,6895],[434652,92820,1129],[434058,92294,10950],[434003,92079,1102],[428593,101997,1001],[424348,102952,1113],[424525,102835,8715],[424793,103056,12123],[433743,95798,12035],[399052,127987,9083],[398650,125809,1070],[398220,125989,1072],[398906,127034,8803],[398694,126144,1059],[399171,126291,7544],[398723,127254,12164],[399313,125423,1081],[399295,125736,10343],[400509,127044,6703],[399773,126657,1106],[399078,125964,1076],[400008,127824,10776],[400430,126898,9929],[400415,127012,1116],[399325,126480,9375],[399453,126464,1109],[400372,126681,1138],[400521,127549,9995],[428129,101051,1071],[428106,100966,9516],[425059,101236,10110],[425049,101264,1114],[428465,100988,1072],[429103,100802,1059],[428711,100212,1126],[400043,128411,5830],[399720,128499,1079],[399679,125948,1100],[399548,124954,1106],[433569,90882,1084],[433296,91134,8304],[434579,91693,10059],[400646,126514,1109],[400508,126669,7382],[431409,95795,1065],[433887,92382,14424],[398002,129979,8456],[397162,127610,1063],[397594,127711,1052],[397206,127957,1026],[397773,129078,1020],[395641,128169,1055],[396768,127452,1029],[396484,127596,1029],[396441,127282,989],[398012,127551,7236],[398402,127345,1094],[434518,91813,1113],[397640,128115,6833],[399033,125627,1073],[398663,125787,7707],[399637,125977,8970],[423981,102718,1119],[426125,100479,12127],[427010,99905,13511],[427446,100181,6643],[400035,128675,1035],[394753,130461,986],[397792,126188,1042],[398103,126193,5398],[425202,105075,1012],[425135,105374,7793],[424947,105177,1048],[425908,105099,6102],[434255,91924,1184],[434664,92234,6433],[423734,102782,8284],[394252,129929,1270],[394302,130264,1350],[393523,130270,1645],[424988,105515,1001],[424245,104744,1053],[424157,104067,1082],[424580,104197,6918],[424818,104194,1065],[424479,103971,1072],[396814,127788,1060],[396723,127109,1047],[397929,127203,1065],[399505,124619,1124],[399378,124779,7537],[396369,127441,7500],[434356,94915,10260],[400822,127870,1064],[400806,127805,9467],[398152,128900,1047],[398358,127027,1086],[398591,127074,10628],[398335,127015,7138],[400144,127067,9758],[401561,127266,1052],[398309,126670,1053],[389482,137683,1059],[389996,137173,1050],[390810,138290,1009],[390722,137602,1039],[391285,138485,989],[390436,138417,1007],[390400,138088,5053],[390393,138081,1019],[425328,106063,944],[425284,105730,958],[425544,105243,5585],[399272,125108,1088],[397019,127652,8469],[434585,92144,1447],[388698,137894,1077],[389103,137797,1069],[390629,136921,1022],[390257,137049,1047],[390488,137028,4327],[390255,137130,4803],[389914,138615,1015],[390128,138182,1023],[389054,137436,1042],[388978,137765,5295],[390016,137163,5199],[411712,116353,992],[412373,116144,3482],[412723,116148,999],[390347,137728,1034],[390856,138636,996],[429188,101479,996],[390609,139759,949],[412170,115948,991],[411672,116035,1010],[391124,138545,4961],[424241,104339,7053],[411492,116247,4314],[391428,133124,1384],[393590,130982,1259],[393547,130633,1311],[393907,130813,963],[391797,132985,960],[393236,130836,1331],[393214,130467,1709],[392895,130683,979],[393281,131184,1315],[392966,131007,1372],[391663,131969,980],[392400,131324,997],[392071,131842,977],[394192,129620,1001],[393311,131573,1004],[390679,133708,1369],[390638,133385,1403],[390610,132992,1746],[391378,132767,1347],[391354,132386,1731],[391776,132611,1377],[391733,132262,1425],[392676,131168,991],[390180,133550,988],[433810,92324,1112],[367650,158541,1032],[367458,158917,1032],[365788,157197,1012],[367797,157613,1022],[367809,158208,1022],[367091,156892,1012],[367484,157103,1022],[366280,156728,1002],[364746,159143,1032],[364397,158523,1012],[366801,160205,1032],[365191,160302,1052],[366614,160567,1032],[365453,160670,1052],[366246,160828,1042],[365762,160903,1052],[366743,61321,521],[366715,61012,684],[367178,61033,596],[360146,60654,505],[362406,60014,526],[359783,59648,530],[363327,60736,584],[365060,61939,567],[364548,60883,525],[367939,63755,694],[363950,60818,564],[368579,62108,676],[367883,63414,545],[359872,60335,520],[362444,60353,425],[276619,138066,992],[276701,138123,992],[271333,143816,911],[271299,143461,1107],[271806,142333,958],[276896,134990,1082],[278139,135883,1042],[272893,140558,1052],[278179,135825,1042],[270504,144491,899],[270075,138451,1171],[269966,140380,1118],[269404,139274,1136],[272067,141754,946],[270667,140950,1073],[272888,141296,943],[275114,140275,984],[267332,148338,856],[282476,162547,1026],[281520,161268,823],[276496,156973,1079],[270105,153871,944],[268391,147198,881],[310521,145779,966],[271102,101478,740],[271485,100944,790],[273542,102071,795],[273800,98326,838],[272670,99741,811],[274593,100515,832],[272398,99596,790],[268053,105577,738],[268697,99199,785],[268903,103113,585],[269329,103908,755],[267460,101187,741],[268235,100677,820],[269338,102006,728],[269056,104145,768],[268589,103360,723],[267071,101755,681],[271017,100834,758],[271058,101149,752],[274364,98824,818],[274455,99497,825],[272911,99562,829],[266693,101993,791],[268141,100004,785],[268434,104954,764],[270059,102895,860],[270467,102969,713],[267844,100581,789],[275350,99475,826],[221743,136457,648],[222631,134036,634],[226841,134405,743],[226406,134591,593],[223827,133315,672],[222347,134950,680],[383073,43503,592],[386250,42666,592],[425929,58322,1045],[366134,100539,622],[365082,101593,632],[360010,105604,642],[370368,95603,592],[360779,105741,642],[361857,104697,642],[365561,103453,694],[364971,104124,696],[361901,107539,792],[361822,106815,712],[362898,105757,692],[372246,97494,752],[370467,96364,612],[367196,101608,642],[370457,98470,652],[371488,97446,682],[369383,97413,612],[366131,102645,662],[368972,98867,738],[365618,103790,860],[312807,134360,1079],[312314,133791,850],[313654,133483,1029],[305367,129285,1010],[305314,128950,879],[307665,130718,801],[301981,125849,804],[305269,125776,794],[299515,128094,984],[302336,128572,726],[302726,129122,879],[307563,134619,833],[308681,131876,990],[307764,131358,1001],[310868,133110,822],[311054,134487,877],[310190,133672,812],[315174,138287,973],[313445,135650,1082],[314504,133229,951],[325938,146423,1041],[325457,145886,815],[322418,146540,798],[321522,146095,918],[321427,145443,809],[324922,141775,945],[321254,144066,921],[317572,139980,910],[319015,140631,747],[316962,138758,971],[316125,138311,861],[313567,136635,975],[304621,130196,1104],[304850,128758,893],[312647,136123,1176],[313627,136981,1169],[300730,129077,731],[307946,132747,974],[311400,134366,1045],[309152,132477,820],[308768,132532,997],[312426,131698,694],[324281,146988,804],[300236,128203,805],[300272,128531,716],[306753,130995,921],[312894,135072,977],[311836,134979,1080],[312178,132782,816],[312988,132258,982],[312579,132700,972],[324053,148484,964],[322563,147522,996],[323521,147616,811],[309061,131794,807],[302426,129247,742],[313031,136042,1099],[312546,135462,987],[321960,146649,819],[275475,103353,863],[275368,106193,947],[275223,105228,751],[274344,105579,870],[274790,105715,736],[391587,60427,897],[391318,58414,860],[392796,60099,832],[388995,59933,810],[387242,62076,857],[388863,58919,828],[388439,58768,843],[388355,58122,848],[389204,58045,849],[387338,65627,827],[386935,62591,826],[391031,60743,751],[386142,62332,822],[386572,62787,799],[386500,65020,835],[392896,60958,882],[389424,59737,808],[389380,59399,810],[390026,57684,830],[385688,62180,817],[395439,33798,622],[396591,33463,632],[396716,33896,642],[395564,34230,632],[405450,106376,940],[235199,132876,712],[235342,133869,806],[226281,130328,733],[229817,132981,986],[228914,132270,999],[229234,131801,726],[232296,134563,1017],[228138,131533,966],[230175,132189,852],[230277,132832,1043],[231230,133254,703],[233239,134229,723],[232244,134205,984],[235735,134406,789],[226188,129680,681],[226235,129991,758],[228073,131188,725],[230634,132024,700],[227946,128058,645],[350141,122886,742],[347205,126302,752],[344822,121668,715],[360369,110915,652],[354926,108852,642],[359563,106065,642],[361890,108444,732],[361606,109866,632],[379954,89164,712],[379632,90679,730],[379572,90939,922],[379383,91080,677],[377012,90096,622],[379386,88579,722],[379670,88872,722],[353638,118214,719],[354684,116451,682],[353909,118490,852],[368462,70410,542],[303617,70561,560],[306618,69288,522],[305887,71683,562],[304437,71387,621],[317569,80196,623],[320909,82425,562],[316531,79673,872],[309289,74476,607],[311243,75969,641],[314293,78125,624],[315972,78655,607],[315642,78751,620],[316061,79305,643],[316637,79434,746],[336807,95173,673],[338208,96250,552],[320553,82941,572],[325695,84711,522],[334893,93514,549],[336440,93341,552],[336474,93380,552],[352789,118551,697],[353153,119210,842],[375222,87220,607],[373735,84574,602],[375340,85504,781],[346341,119762,670],[350182,114993,652],[346028,120160,731],[345800,120530,702],[343678,123486,746],[346993,126549,752],[350357,122646,752],[353309,119358,842],[347282,126370,762],[350233,122953,822],[349294,119682,659],[350436,122705,822],[337030,93622,552],[337082,93620,552],[336978,93620,552],[336926,93615,552],[336875,93606,552],[336825,93594,552],[336775,93578,552],[336727,93559,552],[336680,93537,552],[336635,93511,552],[336550,93451,552],[336591,93483,552],[336511,93417,552],[336408,93300,552],[336380,93256,552],[336354,93211,552],[336332,93164,552],[336297,93066,552],[336313,93116,552],[336285,93016,552],[336276,92965,552],[336271,92913,552],[336269,92861,552],[336271,92809,552],[336276,92757,552],[336285,92706,552],[336297,92656,562],[336313,92606,562],[336332,92558,562],[336354,92511,562],[336380,92466,562],[337178,87197,542],[337194,87247,542],[336408,92422,562],[337855,87748,542],[337907,87750,542],[337235,92128,552],[336440,92381,562],[336474,92342,562],[337235,87341,542],[336511,92305,562],[337260,87386,542],[336550,92271,562],[338945,80700,532],[351242,80381,544],[338993,80719,532],[336591,92239,562],[337289,87430,542],[337320,87471,542],[336635,92211,562],[337354,87510,542],[336680,92185,552],[337390,87546,542],[336727,92163,562],[336775,92144,562],[337470,87611,542],[336825,92128,562],[337429,87580,542],[337514,87640,542],[336875,92116,562],[337559,87665,542],[336926,92107,562],[337605,87687,542],[336978,92102,562],[337653,87706,542],[337030,92100,552],[337703,87722,542],[337082,92102,552],[337753,87734,542],[337134,92107,552],[337804,87743,542],[337185,92116,552],[337959,87748,542],[338010,87743,542],[337333,92163,552],[338061,87734,542],[338111,87722,542],[337425,92211,552],[338161,87706,542],[338209,87688,542],[337510,92271,552],[338255,87665,542],[338300,87640,542],[342488,90818,546],[338385,87580,542],[338424,87546,542],[337959,86238,532],[337907,86236,532],[338492,82129,522],[338161,86280,532],[338111,86264,532],[338694,82157,532],[343414,94496,559],[343556,94047,952],[343855,94856,952],[346944,84398,533],[339442,81356,542],[339437,81305,542],[337134,93615,552],[342940,89804,552],[338554,87386,542],[338579,87341,532],[337789,92913,562],[342670,92193,548],[337784,92965,562],[337775,93016,562],[342937,94199,545],[337763,93066,562],[337747,93116,562],[337728,93164,562],[337706,93211,562],[337680,93256,562],[337652,93300,562],[337620,93341,562],[337586,93380,562],[337549,93417,552],[337510,93451,562],[337469,93483,562],[337425,93511,552],[337380,93537,552],[337333,93559,552],[337285,93578,552],[337235,93594,552],[337185,93606,552],[338847,82141,542],[338255,86321,532],[338796,82150,542],[338221,81989,522],[337605,86299,532],[338182,81955,522],[327152,82909,492],[337972,81609,512],[337987,81658,512],[337960,81560,512],[337951,81509,512],[337946,81458,512],[337944,81407,512],[337946,81356,512],[337951,81305,512],[337960,81254,502],[337972,81205,502],[337987,81156,502],[338006,81108,502],[338028,81062,502],[338053,81017,502],[338081,80974,502],[338112,80934,502],[338146,80895,502],[338182,80859,502],[338221,80825,512],[338261,80794,512],[338304,80766,512],[338349,80741,512],[338395,80719,512],[342944,90666,732],[338443,80700,502],[366246,70840,482],[338541,80673,512],[338492,80685,502],[338592,80664,512],[338643,80659,512],[338694,80657,512],[338745,80659,522],[338796,80664,522],[338847,80673,522],[354860,79368,513],[359198,79639,520],[357071,79250,524],[339084,80766,532],[339039,80741,532],[339127,80794,532],[347798,83892,962],[347355,84507,962],[339167,80825,532],[350781,80763,542],[339206,80859,532],[346957,85151,952],[346604,85822,962],[345875,86545,536],[339276,80934,532],[339242,80895,532],[348533,82562,544],[346299,86515,962],[345422,88361,555],[345924,86889,586],[345836,87957,942],[339360,81062,532],[339382,81108,532],[346042,87228,952],[345271,89390,559],[345680,88698,942],[345577,89449,932],[345526,90204,952],[345169,90443,551],[343427,91086,569],[345527,90962,952],[343188,91120,962],[343132,92378,972],[343315,93220,942],[338061,86252,532],[338643,82155,532],[338010,86243,532],[338541,82141,522],[337855,86238,532],[337804,86243,532],[338395,82095,522],[339334,81796,542],[339306,81839,542],[339275,81880,542],[338579,86645,532],[339206,81955,542],[339242,81919,542],[338554,86600,532],[339167,81988,542],[338525,86556,532],[339126,82019,542],[338494,86515,532],[339083,82047,542],[338460,86476,532],[339039,82073,542],[338424,86440,532],[338993,82095,542],[337285,92144,552],[337289,86556,532],[337152,87045,532],[338385,86406,532],[338945,82113,542],[338344,86375,532],[338896,82129,542],[338300,86346,532],[338209,86299,532],[338745,82155,532],[338592,82150,522],[338443,82114,522],[337178,86789,532],[337166,86839,532],[337213,87295,542],[337703,86264,532],[338261,82020,522],[338304,82048,522],[337653,86280,522],[337559,86321,532],[338146,81919,522],[337166,87147,542],[337514,86346,532],[338112,81880,522],[337157,87096,532],[338081,81840,512],[337470,86375,532],[337390,86440,532],[338028,81752,512],[338053,81797,512],[337150,86993,532],[338006,81706,512],[337354,86476,532],[337152,86941,532],[337320,86515,532],[337157,86890,532],[337429,86406,532],[338349,82073,522],[337753,86252,532],[337194,86739,532],[337213,86691,532],[337235,86645,532],[337260,86600,532],[339360,81752,542],[339382,81706,542],[339400,81658,532],[339416,81609,542],[337620,92381,562],[337586,92342,562],[338601,86691,532],[343008,91525,962],[338620,86739,532],[338636,86789,532],[337706,92511,562],[337680,92466,562],[338648,86839,532],[337728,92558,562],[343549,95515,555],[337747,92606,562],[337763,92656,562],[337549,92305,562],[338344,87612,542],[338657,87096,532],[338662,87045,532],[338602,87295,532],[338620,87247,532],[338526,87430,542],[338494,87471,542],[338460,87510,542],[337469,92239,552],[337380,92185,552],[376640,76733,737],[376820,78088,754],[372943,82294,573],[374054,83893,778],[373612,83577,721],[372669,90403,589],[377365,92773,614],[380852,92275,822],[378086,94716,754],[376427,91506,750],[361712,110534,893],[374122,98431,783],[376719,95882,909],[373803,98802,931],[373170,97523,722],[370830,95170,592],[374727,94299,612],[367640,91095,547],[367718,89456,533],[352854,102675,611],[353621,102409,992],[353677,102614,624],[373699,93197,622],[367234,93082,572],[367408,91735,559],[375825,93298,612],[377215,94808,663],[375932,95276,629],[369513,102895,898],[368925,103178,694],[368533,102804,821],[357121,114258,690],[357313,102636,626],[357879,102206,1032],[358415,102200,669],[356066,102787,612],[352772,102264,982],[344661,97071,564],[345078,97129,952],[345587,97824,972],[351496,102078,679],[351934,102059,982],[352342,102331,636],[338664,86993,532],[351113,101797,982],[337775,92706,562],[346332,99203,576],[349177,101201,605],[337789,92809,562],[337784,92757,562],[350599,102076,589],[350313,101478,982],[337791,92861,562],[349536,101104,982],[348071,100199,972],[348788,100677,982],[338648,87147,532],[338636,87197,532],[346746,99098,952],[346573,99153,652],[346296,98891,641],[346145,98481,952],[338662,86941,532],[344621,96737,622],[339428,81560,542],[339437,81509,542],[344209,95641,982],[338657,86890,532],[339442,81458,542],[339444,81407,542],[343175,90933,962],[343165,90746,952],[343378,90730,558],[343158,89811,552],[344247,90608,539],[343153,89998,552],[343152,90185,562],[343158,90559,952],[339428,81254,542],[339416,81205,542],[339401,81156,532],[339335,81017,532],[339307,80974,532],[348282,83309,962],[349959,81780,952],[349365,82251,952],[338896,80685,522],[353335,80103,942],[351855,80363,563],[350584,81352,962],[351916,80632,952],[351237,80969,952],[352616,80343,952],[352216,80345,831],[356322,79655,952],[355566,79689,942],[354813,79775,942],[357834,79746,952],[357080,79674,952],[358037,79575,592],[359910,79971,536],[359254,80038,962],[358549,79868,962],[360623,80514,952],[359946,80253,952],[363565,81970,527],[363669,82451,952],[363114,81985,952],[360937,80295,528],[361281,80819,952],[361901,80920,540],[361917,81167,952],[362626,81241,539],[362908,81591,569],[362529,81556,952],[364459,82968,553],[364682,83489,942],[364193,82953,942],[365017,83629,561],[365614,84313,541],[365134,84056,942],[365548,84651,952],[366211,85333,546],[366702,86377,541],[366254,85917,932],[366950,94430,570],[366744,86692,560],[366542,86583,962],[367154,87407,522],[366984,87963,952],[366786,87266,952],[367377,89092,552],[367240,89390,962],[367136,88672,962],[367423,89440,558],[367466,89770,546],[367297,90113,962],[367367,91403,593],[367267,91562,952],[367306,90838,962],[367192,92743,604],[367046,92995,962],[367180,92282,962],[366905,94071,589],[366557,94636,972],[366830,93824,972],[366571,95395,577],[366530,95079,598],[365895,96761,565],[365853,96414,628],[365405,96929,972],[365842,96192,972],[364254,98741,587],[362230,100487,608],[365036,97744,592],[364379,98300,972],[363797,98928,972],[363171,99514,972],[360922,101422,605],[361197,101111,620],[359622,102141,609],[358785,102210,619],[359517,101709,1012],[357037,102367,1042],[356186,102468,1032],[354518,102928,609],[355331,102509,992],[354483,102589,739],[354474,102489,992],[343153,90372,732],[345217,90801,563],[354068,79913,942],[348805,82761,952],[351034,80731,556],[358707,101987,1022],[344053,95796,582],[366227,95427,972],[364971,83295,536],[350561,101742,653],[343309,93487,965],[343371,94162,589],[364916,97633,972],[362506,100054,992],[361805,100546,972],[359586,101792,749],[360493,101456,627],[361070,100987,972],[365922,85273,932],[347389,99672,972],[309197,73799,577],[311928,76441,654],[374822,92177,702],[374991,90957,848],[344617,96400,952],[370322,101696,825],[370707,101388,996],[360875,111554,726],[357729,114680,912],[372688,99752,773],[376672,95563,843],[376344,95610,816],[368662,103819,748],[368565,103147,623],[368171,103476,947],[367269,104143,775],[368444,102156,761],[364608,107864,922],[364138,108221,792],[364516,107187,881],[369653,101596,945],[371306,99388,869],[363317,108567,900],[363491,106897,881],[368488,102487,767],[369427,102246,887],[356842,115310,757],[355146,116432,829],[306365,71921,588],[373481,82576,738],[373732,81547,605],[373981,97455,620],[374855,96731,642],[360307,101376,982],[337652,92422,562],[365671,106457,915],[377152,87666,725],[375181,89576,631],[374586,90966,706],[373734,92023,753],[366073,105455,902],[313227,77388,636],[317047,79645,725],[362092,110186,774],[365875,105798,759],[360837,111202,820],[362260,109148,660],[376027,95977,665],[376076,96310,736],[377265,95155,719],[374962,97378,935],[279881,113604,776],[281222,113252,757],[280922,114088,989],[280828,110254,884],[281617,111662,764],[279582,111252,1013],[280457,107579,742],[282181,109610,820],[280090,108003,820],[278725,108031,657],[278312,107810,782],[281822,113009,1091],[282519,111962,1102],[281091,112286,756],[278446,113384,1065],[283464,109843,716],[282273,110313,778],[275951,110587,843],[277760,110174,834],[276091,111579,923],[278138,112845,1090],[279092,113528,900],[280489,114495,927],[279476,110607,758],[277071,112249,833],[278722,110849,784],[278874,109027,860],[280314,109718,725],[277418,112100,826],[283830,109333,813],[241584,106947,530],[242064,105938,462],[242111,105909,462],[235216,110269,492],[241408,107311,769],[282378,137833,1066],[284722,136719,1192],[279527,133298,1093],[279268,131691,1312],[284905,135919,1204],[284238,135510,1076],[278221,135940,1042],[282083,140355,1181],[276684,139317,1111],[281591,138471,1200],[280022,140598,1157],[280440,140065,1100],[281257,140405,1247],[281205,140082,1120],[281667,137322,1077],[280934,138032,1191],[282531,135985,1202],[281593,134527,1114],[281873,134064,1119],[279462,140092,1223],[280867,133022,1316],[280652,133521,1280],[280916,133383,1325],[280684,133853,1104],[344179,129988,742],[343653,129587,642],[343754,129442,642],[347070,126618,752],[343332,129120,812],[343243,128745,637],[341400,127793,662],[341525,127704,672],[344268,124457,729],[341102,127374,672],[341003,127501,672],[343250,129214,812],[342422,124742,725],[343346,123899,737],[418037,53089,761],[417462,53645,746],[418089,53413,905],[337384,106413,971],[336527,105599,930],[337526,103999,927],[314133,80318,925],[310494,81479,752],[313160,77834,612],[320209,83061,857],[334642,93936,588],[333652,93190,778],[333605,92875,708],[317593,83688,853],[317828,85388,975],[314509,83953,942],[314930,83395,922],[314696,84168,932],[315082,83489,922],[316685,79792,746],[316382,79886,872],[317863,82235,948],[318928,86817,844],[319232,87223,1392],[314560,96306,673],[305979,88408,569],[304977,88662,645],[310252,81432,752],[310173,81543,752],[309923,82377,701],[309884,82046,755],[312205,83057,965],[312834,83183,892],[312637,83958,894],[313367,84719,637],[315199,84877,779],[319078,87389,912],[309377,87454,530],[308254,86090,770],[310759,85601,558],[302738,87101,822],[304037,87165,831],[303735,88258,742],[300989,87549,657],[299617,89354,691],[301024,90669,719],[307854,86526,569],[308711,84202,892],[309245,83624,937],[312117,85223,559],[313095,85198,754],[313171,85873,573],[312046,88063,659],[321656,88650,1015],[320910,88121,1274],[321891,88239,708],[315859,93414,745],[316707,93165,777],[317313,94370,918],[322292,98856,677],[319132,98281,679],[319813,97044,691],[314099,90111,866],[313086,89801,815],[314070,92618,670],[312024,91525,719],[314810,92683,935],[314861,93007,1054],[314458,92816,893],[314219,91127,680],[314626,91361,828],[315147,95358,694],[314350,94623,858],[321916,95860,977],[324532,95355,1054],[324329,97780,889],[321696,96943,865],[318728,95257,649],[317965,93448,1059],[319870,93874,893],[332402,103225,623],[330977,101837,538],[331473,100699,568],[323562,98581,837],[318017,96592,767],[322944,98396,953],[344551,106324,593],[343799,105390,838],[345392,105863,580],[328175,97171,769],[325044,99393,712],[324958,98714,763],[327194,102487,679],[325446,102431,682],[326903,102892,805],[326052,96499,777],[330679,102600,613],[330358,106812,650],[333899,108059,686],[331925,108889,690],[342904,110602,561],[341003,111900,612],[341591,110769,606],[349651,111739,628],[349642,114785,795],[348142,114393,686],[335609,107963,701],[343701,110817,775],[343611,110162,739],[345379,119539,610],[344813,119239,725],[346298,112607,738],[346163,111562,786],[345983,119822,737],[317579,93214,906],[316585,92125,998],[319418,86740,835],[319530,87396,1186],[319940,86954,926],[320803,87436,1046],[332379,96637,689],[330202,98876,857],[330829,95674,881],[317895,88862,839],[318734,88625,1238],[318839,89626,849],[321031,89122,1103],[320982,88793,1036],[322050,94093,1079],[326611,96047,934],[310250,84732,890],[319791,85934,722],[319866,86284,1123],[321754,100737,696],[321162,96030,1158],[337901,110484,611],[340023,110726,528],[337954,110811,750],[336164,105383,616],[333401,104368,594],[321458,89720,926],[320430,90646,929],[314725,92007,1002],[315230,92214,1128],[314770,92323,1044],[304478,87395,808],[344372,109763,719],[304931,88311,658],[317829,95239,646],[316660,95969,645],[319617,91842,1124],[318311,91904,1012],[318944,90330,1020],[316461,91164,1038],[315962,90611,826],[317089,89535,860],[314817,89192,955],[319755,89092,1182],[305899,87738,696],[307111,88141,534],[306907,86476,763],[316132,95444,794],[317744,97722,724],[317377,98214,793],[318022,89871,761],[312890,88437,585],[317760,87842,844],[317531,88307,1020],[316462,87950,919],[314997,87029,549],[316220,86274,636],[335453,99996,675],[332398,100107,652],[336865,102724,595],[336328,104278,602],[334551,103059,591],[336298,106402,591],[320232,96548,995],[318067,90187,803],[317750,89987,981],[323742,89627,678],[321885,90334,1096],[322038,89238,903],[321298,91154,1081],[322101,92032,963],[320521,91323,929],[337940,103556,929],[337456,103648,598],[338801,104055,760],[337047,104078,604],[337876,103218,662],[339879,105569,758],[336227,101140,572],[314356,92144,709],[313166,90472,707],[316953,88503,875],[320719,86763,1137],[319890,86612,844],[322081,87498,714],[322467,87412,807],[320553,82974,783],[322620,85032,708],[328281,100926,731],[324757,93597,855],[344412,118640,606],[343100,115697,690],[345503,113391,781],[316963,95161,662],[307373,86344,533],[306948,86797,733],[341592,104235,906],[338179,102464,620],[317796,90304,1051],[317242,90534,1149],[317664,91092,1223],[316866,90988,946],[333324,103693,773],[332851,103461,761],[336419,104954,622],[333920,95220,756],[342339,106228,798],[341486,99853,714],[342395,106584,918],[341940,106921,769],[317802,94922,860],[337510,107426,849],[337085,107568,591],[337008,106853,847],[337585,108138,579],[317239,88086,841],[301999,87962,684],[340415,109592,787],[340884,110894,823],[340219,109964,575],[341572,113563,645],[331083,108716,652],[343518,107441,670],[343074,104083,694],[346913,103602,557],[350760,110231,758],[338591,108603,621],[338995,108495,817],[338681,109307,576],[340496,111994,702],[318801,98072,704],[332192,92147,596],[331413,92723,632],[339505,109446,567],[336595,106285,603],[342407,116826,763],[320258,100396,686],[318843,98398,678],[299661,89671,708],[301667,88012,673],[334340,101369,786],[330595,101923,702],[322634,88764,637],[323561,88298,614],[323973,87845,594],[344064,107421,753],[343380,108461,656],[338139,108713,723],[345842,112651,780],[318694,99155,674],[322843,86674,773],[321161,87359,1142],[317322,97870,659],[341670,108326,865],[321946,88562,875],[321985,88891,798],[329795,95881,729],[323445,91075,1016],[336245,98016,675],[311616,84687,901],[314868,86023,601],[314840,79023,895],[320635,88859,1013],[325553,90056,809],[326951,88075,563],[335423,95098,563],[335799,94658,695],[335889,95334,692],[324796,87084,708],[325568,88300,719],[318049,87069,945],[312402,84751,600],[340443,99256,573],[337727,99080,584],[337949,97677,691],[336347,98715,811],[342478,107235,865],[324835,87440,584],[337814,96669,689],[314712,84671,936],[340902,99218,574],[351950,112169,779],[351585,111534,630],[335083,94861,700],[325177,87345,586],[309803,88014,623],[315229,149210,949],[274474,89653,712],[275080,90106,712],[274901,90328,712],[274302,89873,712],[291704,116483,806],[292036,116072,857],[290621,114646,1021],[290250,114705,819],[290216,114378,937],[287064,115093,803],[289870,118348,976],[286746,115584,816],[291288,116586,828],[290664,117744,933],[290182,118251,980],[291154,115593,808],[288769,113071,785],[253466,195340,1082],[253422,195341,1082],[253511,195335,1082],[254072,194691,1062],[253640,195304,1082],[253554,195328,1082],[253598,195317,1082],[253681,195288,1082],[253797,195222,1072],[253760,195247,1072],[253721,195269,1072],[253897,195135,1072],[253866,195166,1072],[253833,195196,1072],[254066,194780,1062],[254019,194950,1072],[253927,195102,1072],[253978,195029,1072],[253953,195066,1072],[254000,194990,1072],[254059,194823,1072],[254035,194909,1072],[254048,194867,1072],[254071,194735,1062],[253378,195339,1082],[254070,194647,1062],[254018,194432,1062],[254066,194602,1062],[254048,194516,1062],[254058,194559,1062],[254034,194473,1062],[253760,194136,1052],[253977,194353,1062],[253999,194392,1062],[253953,194316,1062],[253926,194281,1062],[253897,194247,1062],[253797,194160,1052],[253866,194216,1062],[253832,194187,1062],[253681,194095,1052],[253721,194114,1052],[253640,194079,1052],[253554,194055,1042],[253597,194065,1052],[253466,194043,1042],[253511,194047,1042],[253378,194043,1042],[253422,194041,1042],[253204,194079,1032],[253333,194047,1042],[253290,194055,1042],[253247,194065,1032],[253084,194136,1032],[253163,194095,1032],[253123,194114,1032],[252947,194247,1042],[253047,194160,1032],[252978,194216,1032],[253012,194187,1032],[252891,194316,1042],[252918,194281,1042],[252796,194866,1052],[252826,194432,1042],[252867,194353,1042],[252845,194392,1042],[252796,194516,1042],[252810,194473,1042],[252778,194602,1052],[252786,194559,1042],[252774,194647,1042],[252772,194691,1042],[252774,194735,1042],[252786,194823,1052],[252778,194780,1052],[253333,195335,1082],[252845,194990,1062],[252810,194909,1052],[252826,194950,1052],[252867,195029,1062],[252918,195101,1062],[252891,195066,1062],[252978,195166,1072],[252947,195135,1072],[253123,195268,1072],[253012,195195,1072],[253084,195246,1072],[253047,195222,1072],[253163,195287,1072],[253247,195317,1072],[253204,195303,1072],[253290,195327,1082],[234223,111538,476],[230290,113731,592],[235230,110511,502],[235043,110913,464],[234819,111231,641],[472036,6052,32],[472073,5790,32],[521245,8267,32],[471981,6311,32],[511547,29311,32],[471816,6815,32],[471907,6566,32],[471708,7057,32],[471583,7290,32],[471442,7514,32],[471285,7728,32],[470929,8120,32],[471114,7931,32],[509635,33904,32],[269998,298272,32],[268785,299473,32],[239297,291307,32],[459783,26663,32],[462934,8074,32],[468286,9168,32],[272430,295877,32],[271213,297073,32],[276094,292300,32],[274871,293490,32],[273650,294682,32],[345366,228398,32],[344812,228926,32],[334996,235648,32],[354456,217238,32],[348226,225589,32],[348688,225129,32],[327540,242921,32],[286335,245958,32],[278547,289925,32],[375001,160796,32],[383532,152521,32],[400790,171272,32],[397001,178401,32],[387037,188308,32],[386741,188445,32],[384655,189411,32],[380229,191675,32],[397109,178201,32],[456905,10065,32],[457014,9820,32],[367413,204506,32],[464686,32274,32],[470522,8459,32],[470731,8297,32],[465043,33092,32],[267574,300676,32],[465298,33736,32],[266365,301881,32],[510603,31683,32],[265158,303088,32],[263953,304297,32],[262750,305508,32],[261550,306722,32],[259693,308621,32],[456590,10497,32],[456763,10292,32],[511560,29458,32],[471815,3972,32],[471707,3730,32],[521510,8125,32],[521293,8289,32],[521721,7955,32],[521928,7779,32],[522129,7597,32],[523558,5333,32],[522325,7409,32],[522515,7215,32],[522699,7016,32],[522877,6812,32],[523050,6602,32],[523215,6387,32],[523375,6168,32],[523528,5943,32],[523674,5715,32],[523813,5482,32],[524371,3938,32],[471582,3496,32],[463099,0,32],[469332,1758,32],[469074,1696,32],[466368,43344,32],[500429,53663,32],[499352,55832,32],[469584,1838,32],[471284,3058,32],[471113,2856,32],[469831,1936,32],[470928,2666,32],[470730,2490,32],[470069,2050,32],[470520,2328,32],[470300,2181,32],[508656,36119,32],[507666,38330,32],[465687,34855,32],[466287,37148,32],[506665,40535,32],[505653,42736,32],[466017,35994,32],[504630,44932,32],[503596,47123,32],[466621,39311,32],[501496,51488,32],[466542,42349,32],[471440,3272,32],[471906,4220,32],[471980,4475,32],[472035,4734,32],[472073,4996,32],[472091,5261,32],[472091,5526,32],[438754,16498,32],[438239,15329,32],[438239,15328,32],[464297,31472,32],[470301,8606,32],[464020,30946,32],[470071,8737,32],[463578,30171,32],[469832,8852,32],[463176,29527,32],[469586,8949,32],[462986,29257,32],[469333,9029,32],[462677,28871,32],[469076,9091,32],[462456,28626,32],[468815,9135,32],[462224,28392,32],[468551,9161,32],[461854,28064,32],[277320,291111,32],[456493,10590,32],[456576,10510,32],[456405,10664,32],[457104,25370,32],[456390,10676,32],[456167,10825,32],[455926,10941,32],[455670,11022,32],[456228,25069,32],[455406,11066,32],[454812,24729,32],[455138,11073,32],[454872,11041,32],[453048,11160,32],[454741,11012,32],[453213,11106,32],[454612,10973,32],[453254,11092,32],[454365,10869,32],[453448,10997,32],[454135,10732,32],[453628,10875,32],[453927,10563,32],[453788,10729,32],[453780,10736,32],[453721,10790,32],[453540,10939,32],[453411,11015,32],[453323,11058,32],[452870,11192,32],[452835,11198,32],[452782,11200,32],[452642,11206,32],[452618,11207,32],[452510,11200,32],[452421,11188,32],[452402,11185,32],[445258,22056,32],[452332,11168,32],[452192,11134,32],[452121,11106,32],[451990,11054,32],[440846,21249,32],[440283,19971,32],[440283,19970,32],[466657,41136,32],[502551,49308,32],[466497,38315,32],[466670,40223,32],[461726,27960,32],[498264,57996,32],[466038,44917,32],[461980,28170,32],[463086,54722,32],[497165,60155,32],[488136,77001,32],[462103,28280,32],[465560,46867,32],[462341,28508,32],[462568,28747,32],[462783,28997,32],[462886,29126,32],[463082,29391,32],[463266,29665,32],[463424,29917,32],[463729,30427,32],[463876,30686,32],[464160,31208,32],[464430,31738,32],[464560,32005,32],[486655,79502,32],[460461,61701,32],[464809,32545,32],[464928,32818,32],[457614,68589,32],[485127,81976,32],[483553,84420,32],[457824,68110,32],[465155,33367,32],[465564,34480,32],[465434,34107,32],[481935,86835,32],[456906,69987,32],[465804,35233,32],[465914,35613,32],[454930,72988,32],[480271,89219,32],[478564,91572,32],[456229,71105,32],[466114,36377,32],[466204,36762,32],[466363,37536,32],[476813,93893,32],[453729,74620,32],[466433,37925,32],[448732,81686,32],[475019,96181,32],[473183,98435,32],[452482,76216,32],[466553,38706,32],[466590,39008,32],[466644,39615,32],[471305,100655,32],[469386,102839,32],[467427,104987,32],[466660,39919,32],[466672,40528,32],[466668,40832,32],[465429,107098,32],[441602,91378,32],[417974,118701,32],[463391,109172,32],[414047,158268,32],[466638,41440,32],[466613,41744,32],[466581,42047,32],[466497,42650,32],[466444,42950,32],[466290,43738,32],[466209,44132,32],[466125,44525,32],[465948,45308,32],[465855,45699,32],[465760,46089,32],[465661,46478,32],[465456,47255,32],[465348,47642,32],[465238,48028,32],[465125,48413,32],[457721,68350,32],[457504,68826,32],[457275,69295,32],[457391,69061,32],[457155,69527,32],[457032,69758,32],[456777,70214,32],[456644,70440,32],[456509,70663,32],[456371,70885,32],[456085,71323,32],[455801,71742,32],[455514,72160,32],[455223,72575,32],[454634,73399,32],[454336,73808,32],[454034,74215,32],[453422,75022,32],[453112,75422,32],[452798,75820,32],[452164,76610,32],[451842,77001,32],[441072,92059,32],[440541,92738,32],[440007,93416,32],[439471,94092,32],[438932,94766,32],[438392,95438,32],[437849,96109,32],[437304,96778,32],[436757,97445,32],[436208,98110,32],[435657,98774,32],[435103,99435,32],[434548,100095,32],[433990,100753,32],[425137,110912,32],[404623,132355,32],[346380,48953,232],[347288,48677,232],[347434,49155,242],[346525,49432,242],[423682,32197,1922],[422605,33729,1952],[423647,32174,1922],[216745,315746,762],[218534,312598,762],[460461,61701,692],[231625,298703,762],[239297,291307,762],[286335,245958,762],[428276,106956,580],[425311,110712,210],[444037,87707,260],[446542,84311,243],[435103,99435,812],[434654,99311,746],[435124,98993,345],[435657,98774,822],[435646,98380,252],[436208,98110,852],[436327,97369,618],[436757,97445,822],[437396,96540,145],[437304,96778,632],[437956,95577,240],[438956,94624,159],[438932,94766,572],[439471,94092,722],[439631,93664,166],[440007,93416,702],[440040,93164,188],[440541,92738,572],[453264,74498,788],[455514,72160,692],[451842,77001,552],[452164,76610,552],[452798,75820,722],[452932,75631,557],[452482,76216,722],[453422,75022,702],[453729,74620,692],[453112,75422,782],[454336,73808,692],[454034,74215,782],[454634,73399,692],[454930,72988,692],[455223,72575,692],[455801,71742,692],[456085,71323,692],[456229,71105,692],[456371,70885,692],[456509,70663,692],[456644,70440,692],[456777,70214,692],[456906,69987,692],[457032,69758,692],[457155,69527,692],[457275,69295,692],[457391,69061,692],[457504,68826,692],[457614,68589,692],[457721,68350,692],[457824,68110,692],[220224,310364,762],[463086,54722,692],[441370,91281,253],[450979,78223,871],[447481,83293,172],[422871,113340,395],[424691,111309,272],[425137,110912,642],[448277,82302,356],[437073,96695,226],[433952,100245,510],[433990,100753,812],[438941,94286,581],[432535,102080,346],[433282,101530,141],[434548,100095,812],[424998,110832,323],[413962,122503,584],[416435,119951,569],[330858,203191,393],[319873,213555,667],[406530,130040,622],[402046,134540,412],[397414,139241,146],[356336,178551,771],[353319,181395,632],[369945,165171,830],[379691,155933,625],[391007,145020,673],[394352,141909,565],[215069,319948,762],[213100,327637,762],[433606,101038,204],[440025,92843,574],[404299,132337,468],[404013,132854,164],[382347,153563,413],[380287,155624,405],[404721,131730,639],[404736,132121,139],[404623,132355,682],[404492,132247,234],[408122,128764,171],[405377,131531,131],[440444,92745,182],[400920,135857,140],[318444,215098,311],[315129,217971,728],[383532,152521,712],[450113,79500,297],[422841,112964,670],[419826,116466,485],[423169,112881,344],[375001,160796,762],[345933,188714,468],[387943,148266,256],[407867,128514,700],[375160,160395,765],[372327,163163,612],[407611,128942,564],[443036,89378,209],[428794,106430,395],[429385,105605,563],[430835,103943,711],[421912,114401,137],[421682,114534,243],[431771,103011,363],[376016,159750,498],[370463,164902,798],[365007,170394,520],[436461,22314,352],[435777,22464,1332],[437964,21922,1702],[436139,22586,1837],[436073,22446,139],[437176,22242,1709],[438089,22218,1792],[438142,22342,2622],[435845,22910,2212],[435811,22495,450],[437964,21923,1702],[435777,22464,582],[437964,21922,582],[455572,25215,92],[455303,25294,247],[454793,25027,195],[440852,21711,1340],[441052,21532,1342],[445151,22054,280],[440846,21249,1052],[440712,21774,1372],[443011,67668,1232],[443359,67391,1392],[443089,67731,1232],[443281,67328,1392],[444746,65227,4212],[444667,64973,4212],[444839,65263,4212],[445006,64828,4212],[445179,62071,4282],[445357,62274,4282],[444912,64793,4212],[445457,62272,4282],[445447,61798,4302],[444999,59173,4132],[444920,59235,4222],[444693,59148,4262],[445347,61800,4282],[444718,58813,4132],[443116,56845,4522],[443200,56771,4512],[444635,58869,4132],[443282,56715,4512],[442976,56372,4612],[442901,56439,4532],[441208,54548,4792],[441283,54481,4792],[440902,54205,4792],[440976,54138,4772],[439283,52247,4692],[439209,52314,4682],[438896,51964,4682],[438970,51897,4682],[437284,50013,12682],[437210,50080,12422],[436903,49737,12422],[436978,49670,12772],[435298,47794,14282],[435224,47860,14212],[434985,47444,15092],[434910,47510,14472],[443011,67668,1202],[443089,67731,1192],[443359,67391,1202],[443281,67328,1212],[444746,65227,1262],[444839,65263,1262],[445006,64828,1282],[444912,64793,1292],[445357,62274,1422],[445457,62272,1422],[445447,61798,1452],[445347,61800,1462],[444920,59235,1612],[444999,59173,1612],[444718,58813,1662],[444635,58869,1662],[443200,56771,1822],[443282,56715,1812],[442976,56372,1852],[442901,56439,1872],[441208,54548,2002],[441283,54481,2002],[440976,54138,2012],[440902,54205,2002],[439209,52314,2072],[439283,52247,2072],[438970,51897,2082],[438896,51964,2082],[437210,50080,2192],[437284,50013,2192],[436978,49670,2212],[436903,49737,2212],[435224,47860,2242],[435298,47794,2242],[434985,47444,2252],[434910,47510,2252],[397989,92847,2772],[397821,92862,2652],[397899,92770,2622],[397989,92847,1002],[221793,119101,642],[225523,116542,512],[225624,116703,542],[221531,119040,572],[221633,119204,602],[221793,119101,482],[225624,116703,482],[225523,116542,472],[221531,119040,482],[221633,119204,492],[230175,113556,542],[230175,113556,472],[312834,83183,4512],[314696,84168,3022],[319078,87389,1412],[314509,83953,3412],[315082,83489,3022],[314930,83395,3012],[380581,86368,1448],[380965,86254,1424],[380569,86679,718],[381624,84713,685],[378528,87461,846],[377963,86496,1180],[378162,87187,2680],[378697,87794,2603],[379122,88095,2543],[379278,87979,755],[379342,88317,1016],[378944,87721,739],[381304,85829,763],[381257,85507,702],[379888,87169,690],[380922,85925,1420],[382344,84388,762],[380251,86728,1101],[406073,94308,1426],[406497,94521,803],[406117,94548,772],[408107,92254,1447],[407877,93033,1417],[408044,92342,5044],[410159,90800,642],[407334,93545,1403],[407530,92817,1435],[407248,92869,1446],[405777,94324,802],[409457,91318,1403],[407081,93985,816],[406457,94772,692],[406870,94079,1446],[407834,92693,1445],[409417,91001,1432],[409734,90549,675],[409782,90882,745],[357141,94149,1865],[356587,96824,1592],[356446,96819,1592],[356728,96819,1592],[356869,96805,1592],[357009,96781,1602],[357146,96747,1592],[357281,96704,1602],[357412,96652,1602],[357540,96592,1602],[357663,96522,1602],[357782,96445,1612],[357894,96359,1612],[358001,96266,1612],[358101,96166,1622],[358194,96059,1642],[358280,95947,1652],[358357,95828,1642],[358427,95705,1652],[358487,95577,1652],[358539,95446,1682],[358582,95311,1682],[358616,95174,1682],[358640,95034,1692],[358654,94893,1722],[358659,94752,1722],[358654,94611,1732],[358640,94470,1732],[358616,94330,1732],[358582,94193,1732],[358539,94058,1742],[358487,93927,1742],[358427,93799,1742],[358357,93675,1752],[358280,93557,1752],[358194,93444,1772],[358101,93338,1772],[358001,93238,1772],[357895,93145,1782],[357782,93059,1782],[357664,92982,1772],[357540,92912,1782],[357412,92852,1782],[357281,92800,1782],[357146,92757,1782],[357009,92723,1782],[356869,92699,1782],[356728,92685,1782],[356587,92680,1782],[356305,92699,1782],[356446,92685,1782],[356165,92723,1782],[356028,92757,1782],[355893,92800,1782],[355762,92852,1782],[355634,92912,1782],[355510,92982,1782],[355392,93059,1792],[355279,93145,1772],[355173,93238,1772],[355073,93338,1772],[354980,93444,1762],[354894,93557,1752],[354817,93675,1742],[354747,93799,1742],[354687,93927,1732],[354635,94058,1722],[354592,94193,1712],[354558,94330,1712],[354534,94470,1702],[354520,94611,1692],[354515,94752,1692],[354520,94893,1682],[354534,95034,1682],[354558,95174,1672],[354592,95311,1672],[354635,95446,1662],[354687,95577,1662],[354747,95705,1662],[354817,95829,1662],[354894,95947,1652],[354980,96060,1652],[355073,96166,1642],[355173,96266,1642],[355279,96359,1642],[355392,96445,1622],[355510,96522,1622],[355634,96592,1622],[355762,96652,1602],[355893,96704,1602],[356028,96747,1602],[356165,96781,1602],[356305,96805,1592],[276578,65311,484],[277506,65264,352],[276236,65983,332],[276535,64978,500],[276520,65098,5037],[276181,65126,465],[276732,63964,372],[275479,64710,372],[222828,114271,642],[223074,114299,5308],[223200,114419,412],[221600,114351,506],[221899,114944,549],[221192,114020,362],[222117,113525,7388],[222164,113773,523],[221716,113951,524],[222697,114161,5184],[222707,114122,612],[222251,113384,438],[221398,113928,432],[222237,114179,7785],[222011,114169,626],[222282,113709,5066],[222394,113935,1438],[222288,114870,568],[221989,115237,402],[222653,113792,481],[222287,113653,508],[222481,114002,7262],[222511,114034,588],[222331,114407,704],[222466,114715,5706],[221521,113988,5575],[222415,113219,362],[222427,114639,564],[401966,79855,1304],[401882,79501,789],[402238,79381,1254],[403351,82639,802],[401687,81443,792],[402358,80509,772],[403220,80109,772],[404547,80975,802],[401739,79957,1155],[402290,80047,765],[401868,79050,802],[401343,79780,812],[393061,83483,1307],[393484,83814,892],[389725,81166,822],[392893,82477,817],[392986,83156,869],[392503,82974,820],[393323,82595,857],[394078,82973,852],[393458,83626,838],[391575,82348,979],[393404,82962,1315],[391438,81367,871],[391085,81885,842],[393687,82784,1303],[391986,82494,828],[392373,81982,823],[391888,81515,1259],[391553,82018,1275],[391945,82180,828],[390319,80324,802],[391477,81695,799],[358916,33479,684],[359821,33303,592],[358289,33668,652],[358322,32795,740],[358363,33117,729],[357944,32179,692],[358195,32436,7567],[358275,32449,728],[359345,33148,723],[359511,32841,7920],[359566,32878,7146],[358349,32822,8992],[358494,32470,7265],[358668,32855,779],[358354,32922,779],[359652,32801,651],[359469,32642,3818],[359334,32224,766],[358839,32836,787],[358913,32960,1170],[358771,32873,7977],[358642,33325,780],[358877,33150,734],[358421,33097,7811],[359164,33088,7642],[358722,33011,8560],[359209,32105,732],[359400,31843,642],[358381,32477,750],[359285,33167,743],[359479,33250,8061],[359253,32742,6689],[358952,32719,811],[359254,32454,726],[359667,33148,735],[359201,32857,7315],[359153,32824,2797],[358229,32121,679],[358785,32461,732],[358858,32555,7040],[358636,32199,5536],[358576,32071,6456],[358738,32111,728],[359300,32797,749],[359310,32699,755],[358696,32372,761],[359413,32604,4624],[331793,54550,405],[332738,54284,272],[331318,54711,282],[331256,53602,360],[330904,53352,232],[331657,53530,399],[332050,53453,406],[331657,53768,5723],[331713,53883,540],[332017,53052,6396],[332004,53106,396],[332395,53374,365],[332323,52920,4672],[332323,52920,252],[404406,31622,921],[404620,31530,5163],[404725,31724,2401],[404591,31412,937],[404683,31190,914],[404699,31360,6593],[404842,31229,950],[405089,31112,1623],[404821,31660,961],[404427,31165,920],[405070,32441,968],[405601,32325,862],[404168,32743,812],[404732,31554,909],[404959,31073,5037],[405313,31882,1608],[404774,31880,907],[403757,31323,832],[404362,32528,956],[405190,30907,1652],[405363,31844,1659],[405302,32161,924],[404773,31727,1667],[405190,30907,872],[392622,24984,746],[392956,25106,662],[392538,25049,5101],[391361,24344,5696],[391415,24657,817],[391148,23986,682],[392290,24648,834],[392580,24650,778],[392475,24885,6148],[391727,25243,751],[391779,24997,3579],[391952,25297,800],[391447,24794,4111],[391634,25180,5586],[391484,25470,1192],[391976,24804,802],[391811,24734,3300],[392035,24775,4504],[392332,25085,3732],[392014,25262,4454],[392604,23657,712],[392072,24437,767],[391440,24192,780],[391592,25349,6084],[391685,24519,791],[392160,25103,770],[392142,24805,1073],[392269,25090,812],[391636,24554,765],[391663,24941,804],[392628,24755,3990],[392891,24906,4330],[392563,24617,5052],[392556,24541,816],[392401,24472,3157],[392533,24290,767],[392687,24125,3572],[392840,24856,782],[391685,24910,784],[392377,24954,3165],[392535,24992,782],[392580,24047,825],[392134,24686,3106],[392086,24739,3778],[391484,25470,652],[284462,74566,2446],[285172,74327,382],[283876,75077,1622],[284014,73348,3061],[284030,73401,8379],[283548,73531,3052],[284408,74241,2304],[284445,74233,7263],[284596,74375,657],[283587,73615,2392],[283998,73682,7425],[283681,74122,2389],[284268,74163,10202],[284259,74445,4379],[284532,73440,1454],[284422,73030,2732],[284035,73687,2738],[284802,73994,637],[284837,74307,551],[284308,73562,2181],[284309,73259,2738],[284137,74685,2329],[284338,73872,2029],[284575,74067,911],[284544,73745,1076],[283175,73865,5242],[283242,73888,2088],[283763,74774,2323],[284422,73030,352],[283876,75077,392],[283175,73865,342],[338571,81703,563],[339054,81664,540],[338745,81449,3472],[339012,81332,556],[338480,81023,553],[338241,81170,3434],[338069,81435,526],[301147,65257,953],[302005,65296,382],[300673,65955,372],[301353,63982,5852],[301161,64503,8408],[301199,64061,5912],[300972,64197,485],[300891,64220,6292],[301045,64140,5912],[301010,64970,5551],[300634,64518,7270],[300639,64963,577],[301115,64943,1076],[300584,64380,6292],[300737,64300,6292],[300277,64541,6282],[300430,64460,6292],[301216,64863,8516],[301523,64962,6535],[301515,65120,584],[301472,64775,615],[301843,65026,559],[299977,64688,342],[300144,64686,399],[301353,63982,382],[371964,30297,406],[373210,29990,452],[371725,30357,432],[372777,29639,3540],[372974,29413,537],[372997,29537,564],[372658,29465,5292],[372746,29184,577],[372885,29230,6325],[373059,29357,7447],[373015,29735,512],[373001,29276,8298],[371903,28994,6599],[371794,28944,8136],[371794,28934,536],[372349,29055,6137],[372294,29090,6877],[372344,28947,596],[372154,29106,6222],[372204,29181,535],[371759,29136,561],[372869,28520,492],[372578,28828,593],[372058,29032,575],[371423,28881,482],[372927,29052,545],[372601,29427,6108],[372557,29602,6599],[372439,29540,4547],[372424,29777,2032],[372292,29862,503],[372319,29401,595],[372821,29866,6750],[372254,30146,6652],[372627,29587,5742],[372630,29467,546],[372670,29784,525],[372560,29736,2747],[372612,29688,2062],[372554,29287,589],[372522,29646,775],[372471,29701,1436],[372721,29648,585],[372505,29711,7227],[372585,29126,552],[372871,29794,6113],[372978,29795,4636],[203238,113068,1401],[203383,112990,4932],[202163,113846,4622],[202311,113227,5919],[202126,113106,5576],[202433,113162,1457],[201865,112353,1345],[202063,112269,5242],[202163,112575,1414],[203096,113052,5231],[203233,112831,1351],[202676,112721,5436],[202534,112533,1419],[202663,112546,1346],[202563,111863,1294],[202521,111762,1232],[202864,112331,4982],[202732,113063,6849],[202826,112753,6810],[202974,112783,5308],[203119,112749,5191],[202949,112424,1279],[202759,112472,5254],[202820,112511,1468],[203002,112751,1381],[203048,113091,1356],[202760,113217,1399],[202883,113120,1417],[202586,112979,6400],[202375,113329,1404],[202532,113376,6216],[202184,112270,1377],[202318,113503,1432],[202047,112861,1582],[202526,112293,1376],[202351,112478,5371],[202433,112224,5260],[202280,112655,1409],[201968,113236,1453],[201302,112618,1332],[202505,113069,3899],[202002,113408,5648],[202614,112201,1333],[202266,112301,1908],[202214,112062,1298],[202469,112024,5108],[203316,112992,1277],[201935,113387,1423],[202546,112937,4626],[203383,112990,1272],[202163,113846,1412],[258306,188700,1002],[258262,188701,1002],[258391,188133,1163],[258351,188695,1012],[258394,188688,1012],[258438,188677,1012],[258480,188664,1012],[258521,188648,1002],[258561,188629,1002],[258600,188607,1002],[258637,188582,1002],[258673,188556,1012],[258706,188526,1012],[258737,188495,1012],[258767,188462,1002],[258793,188426,1012],[258818,188389,1002],[258840,188350,1002],[258859,188310,1002],[258875,188269,1002],[258888,188227,1002],[258899,188183,1002],[258906,188140,1002],[258911,188095,1002],[258216,188699,1002],[258912,188051,1002],[258910,188005,1002],[258906,187960,1002],[258898,187915,1002],[258886,187871,1002],[258872,187827,1002],[258855,187785,1002],[258835,187744,1002],[258812,187704,1002],[258786,187666,1002],[258758,187631,992],[258727,187597,992],[258694,187565,992],[258659,187536,992],[258622,187509,982],[258583,187486,982],[258542,187464,982],[258500,187446,982],[258457,187431,982],[258413,187419,972],[258368,187410,972],[258171,188695,1002],[258323,187404,972],[258277,187401,972],[258232,187402,972],[258186,187405,972],[258141,187412,972],[258096,187422,972],[258052,187436,972],[258010,187452,972],[257968,187471,972],[257928,187493,972],[257890,187518,972],[257853,187546,972],[257819,187576,972],[257787,187608,972],[257757,187642,982],[257729,187679,982],[257704,187717,982],[257811,188239,1158],[257682,187757,982],[257663,187799,982],[257647,187841,982],[257633,187885,982],[257623,187930,982],[257616,187975,982],[257613,188021,982],[257612,188066,982],[257615,188112,982],[257621,188157,982],[257630,188202,982],[257996,188644,1012],[257657,188289,1002],[257675,188331,1002],[257697,188372,1002],[257720,188411,1002],[257747,188448,1002],[257776,188483,1002],[257808,188516,1002],[257842,188547,1002],[257877,188575,1002],[257915,188601,1012],[257955,188624,1012],[258038,188661,1012],[258082,188675,1012],[258126,188687,1012],[257642,188246,982],[372016,77661,3246],[372173,78021,4751],[371902,78252,579],[371770,77244,585],[371862,78102,6654],[406323,79159,764],[414749,85128,772],[412640,83511,1377],[412589,83152,1330],[413062,83393,1426],[410196,81840,798],[411217,89217,1416],[411175,88886,1430],[411541,89165,772],[410693,89660,1404],[410949,89624,1411],[410944,89954,716],[410905,89306,1385],[410970,89340,5938],[414698,86145,710],[414732,86275,5718],[414414,86555,688],[409250,81165,5860],[407381,79674,1335],[406809,79421,935],[407339,79345,1367],[414953,85698,709],[415973,85008,662],[411541,88833,1394],[411500,88516,1407],[413823,87026,721],[409870,81554,1268],[414093,86266,1382],[415289,85305,748],[415286,84953,1360],[409537,80939,1390],[409498,80630,1403],[409745,80865,791],[411050,82063,1323],[411088,82395,1228],[410609,82107,831],[409579,81298,1307],[409251,81049,1314],[404985,78171,758],[405662,78578,5731],[406232,78486,741],[405914,78281,1303],[405524,78009,798],[405609,78384,1306],[402259,76252,1249],[402222,75915,1364],[411100,88946,4808],[411226,89560,908],[411492,82310,1273],[414435,84147,716],[414094,86608,742],[411849,82694,5607],[412064,82910,1329],[415327,85623,688],[403260,76968,809],[403797,77191,1326],[404721,77958,1218],[403164,76288,719],[413548,87092,1386],[413769,86335,1253],[413824,86678,1394],[411931,88774,1202],[412296,88332,1366],[414226,85953,3859],[414374,85909,1327],[407977,80234,1267],[406318,78837,1297],[405292,78135,1348],[404684,77632,1326],[414527,84470,1412],[414193,84533,1324],[414159,84220,1431],[412020,82552,1380],[405959,78603,1338],[414659,85473,1414],[414663,85783,883],[414963,85388,1428],[414539,84795,964],[410531,81459,933],[411403,81948,709],[409118,80337,762],[408879,80764,1348],[408840,80429,1427],[407850,79572,722],[410603,81800,1322],[409829,81230,1299],[412502,82801,746],[412251,87972,1394],[410166,81488,1032],[403753,76849,1344],[402731,76105,1366],[403254,76646,1335],[411892,88435,1273],[418886,92999,1034],[420200,92831,1055],[419169,93205,1028],[425511,88240,1521],[424658,88474,1503],[424550,87779,1277],[424524,87465,1505],[424903,87017,1235],[426073,87698,1505],[426679,87865,932],[426607,88009,922],[425833,88144,1203],[426437,88281,922],[426339,88409,922],[426526,88148,922],[426741,87717,932],[426156,85954,1412],[425616,86455,1293],[426305,85638,4122],[426898,86466,1169],[426625,86902,1392],[426523,86230,1204],[423917,88045,4116],[423077,88962,1136],[422826,89071,1190],[420463,92023,1145],[420516,92357,1279],[420062,91805,1025],[422109,89778,4125],[421175,90758,1025],[416811,94978,4117],[415019,96748,4117],[413770,97981,4100],[418769,93090,4124],[420821,91564,1079],[420584,91355,4132],[420773,91206,1077],[417866,94683,1044],[418692,94122,1068],[417924,95020,1226],[416013,95878,1042],[415894,95903,4108],[422735,89183,4110],[422250,89666,1061],[426445,85557,1360],[426663,87260,1250],[426795,87565,932],[414207,97590,4121],[424146,87930,1341],[414054,97959,1249],[414087,98322,1041],[416482,95402,4123],[416312,95769,1020],[415729,96286,1027],[422337,90310,1093],[422669,90216,1204],[422410,90653,1476],[422045,90799,1268],[422506,91326,1582],[421939,90124,1032],[422293,89982,1072],[416642,95347,1034],[417009,94929,1046],[417543,95489,1118],[415538,97348,1060],[415188,97068,1223],[414645,97187,4114],[414538,97910,1233],[421382,92102,1436],[421783,91586,1589],[421639,90628,1332],[422868,89427,1125],[423965,89743,1582],[424752,89121,1622],[424784,89456,1446],[422572,89539,1082],[423240,89972,1549],[423770,88367,1415],[423800,88709,1199],[415135,96745,1067],[414491,97599,1148],[426823,85819,1336],[426483,85886,1276],[425977,87022,1410],[426280,86966,1257],[426974,86864,972],[425659,86795,1275],[425472,86584,4125],[425936,86702,1429],[421226,91070,1157],[420426,91701,1226],[414863,97158,1123],[424190,88261,1334],[424398,89921,1161],[424033,90393,1328],[414957,97827,1186],[427020,85840,1002],[414435,98555,932],[422790,90865,1699],[418601,93447,1041],[418934,93357,1045],[425887,88478,1347],[425322,86914,1330],[425816,87823,1567],[425362,87272,1232],[425699,87122,1210],[425423,87590,1494],[424943,87347,1183],[419574,93755,1278],[421013,92883,1326],[425130,88698,1296],[423598,90164,1373],[423652,90522,1457],[423104,91094,1335],[417777,94036,991],[423080,90774,1597],[423029,90439,1504],[419216,93549,1055],[426838,87410,932],[423338,90986,1017],[426166,88669,922],[422145,91477,1417],[421841,92269,1113],[421810,91946,1274],[423310,90648,1263],[419603,94100,1041],[425536,88598,1212],[425168,89041,1187],[420973,92550,1384],[419083,94312,1360],[417969,95363,1223],[415222,97388,1097],[415277,97743,1208],[419290,93908,1433],[419309,94227,1106],[418228,93883,1023],[421688,90941,1436],[425196,89372,958],[421723,91273,1314],[420914,92237,1134],[420869,91905,1126],[245768,99484,471],[246666,99141,392],[245447,99958,412],[245131,98838,497],[244621,98695,362],[245763,98820,747],[246160,98696,603],[246154,98819,7036],[246328,99088,462],[246036,98955,598],[246069,99274,471],[245849,97892,352],[245493,98628,534],[245530,98743,4575],[245469,99090,597],[245768,99173,1050],[389900,81946,1235],[392120,83508,818],[388959,81299,822],[389391,81115,840],[390186,79558,802],[394297,83156,981],[389434,81446,834],[391143,82231,1010],[391208,82569,1289],[390792,82401,888],[394844,82840,822],[393617,84581,862],[390215,82097,954],[390743,82059,841],[392077,83176,824],[392030,82828,818],[393083,83810,1011],[389051,81287,1179],[391653,83024,814],[391609,82689,824],[389825,81603,816],[403124,88900,759],[403090,90362,815],[401859,89775,812],[403751,90915,5816],[403644,91026,7373],[403588,90562,4176],[404718,91806,782],[405450,89958,767],[405527,90290,1245],[405040,90404,793],[404228,91358,783],[404180,91102,6717],[404187,91021,824],[404155,90705,974],[404647,90869,785],[404719,91229,1118],[404015,90794,4971],[403681,90469,909],[405903,89821,1222],[406137,89809,792],[405154,91074,1144],[403881,88678,908],[403912,89000,732],[405112,90746,1178],[404050,90002,807],[403582,89793,768],[404012,89673,883],[403278,87778,822],[405404,89615,764],[405537,90609,779],[344126,36413,1504],[343680,36349,1506],[344054,36035,1342],[343277,36537,1522],[342773,37263,1502],[342597,36361,1402],[343161,36243,1426],[343491,36283,4942],[343439,36471,3874],[343676,36491,1475],[344100,36831,1549],[344304,36909,1362],[384794,37380,362],[384972,37459,511],[384540,38549,292],[384109,37139,252],[385000,37093,375],[384899,37227,2120],[384712,37213,366],[385912,38128,322],[385131,37203,375],[385483,36720,262],[393207,84820,856],[391746,83725,822],[394708,81825,841],[395118,82028,828],[394783,82152,1286],[394064,81467,831],[394011,85457,868],[393624,84621,1318],[394321,85303,1355],[388417,79509,788],[387532,79522,791],[387925,79038,849],[383284,84555,766],[384083,84302,784],[382998,84850,782],[388279,78477,780],[388518,78269,4539],[388623,78285,759],[391268,83259,848],[390920,90681,862],[384474,83840,815],[389153,79097,1248],[389077,78768,785],[389459,78594,1258],[386255,80580,818],[384701,82693,758],[390019,78872,790],[389516,79260,812],[387877,78680,836],[387838,79014,6070],[395195,82368,1282],[394799,82503,859],[394507,84842,798],[392268,80958,1249],[388595,80838,815],[388673,81189,1280],[386034,81083,816],[386085,81410,914],[386287,80829,4858],[386292,80899,769],[386078,80999,5900],[386526,80438,766],[387712,80876,796],[385139,82852,758],[389523,82126,824],[386082,81304,5380],[384320,83381,5838],[384700,83267,5075],[384535,83545,2229],[384364,83710,5843],[384041,83967,801],[383893,84148,4693],[388580,77953,768],[389377,78225,792],[384743,83011,768],[388684,81516,822],[389537,77070,774],[394708,83991,944],[394787,84667,792],[394057,85801,874],[390647,78556,866],[388850,79953,835],[388551,80509,814],[388541,80203,1237],[392169,83852,851],[392669,83987,1249],[391698,83367,820],[389104,81644,1267],[388054,80028,811],[394469,81994,1281],[392584,80120,840],[392719,81132,847],[392197,80631,855],[395620,82559,794],[395058,84503,796],[394567,85178,1011],[389508,81772,1257],[393196,84489,1328],[390869,82764,1287],[389938,82263,1175],[389971,78514,779],[390251,78369,780],[391707,80159,1234],[392182,80309,1249],[391718,80472,807],[394177,82148,1157],[393844,81968,833],[391540,79145,781],[392092,79632,1249],[391251,79987,811],[392538,79775,838],[389666,78033,799],[389842,77551,770],[390195,77702,1233],[390598,78193,849],[391061,78331,1228],[389964,78209,1253],[391495,78802,782],[391997,78951,1164],[392107,79979,813],[390215,78053,856],[390579,77862,1213],[392020,79280,897],[392493,79443,831],[391483,78482,1223],[388178,80714,1272],[389758,78713,829],[388757,79273,786],[388834,79620,1235],[389174,79423,933],[393520,81769,830],[393189,81595,830],[393798,81611,837],[394478,82325,809],[389797,77193,786],[336935,93050,726],[337321,92968,663],[337085,92697,3503],[337270,92609,617],[337033,92381,3362],[337227,92291,605],[336632,92478,3248],[336487,92812,582],[395527,71699,725],[393356,70164,882],[394143,71445,753],[393497,72730,763],[393277,71053,786],[392586,74716,822],[392571,74394,1213],[393079,74050,783],[396377,78079,789],[397525,79046,1152],[397790,79262,782],[393391,76415,773],[393313,74978,782],[394354,76300,764],[396033,72240,734],[395871,72203,4654],[396708,72984,938],[396512,73121,5873],[396491,73114,773],[391691,73411,790],[391612,73446,6032],[399565,77247,1028],[399030,76719,1220],[399205,76440,782],[397919,78250,772],[396873,78293,1281],[397701,78588,780],[399040,77022,777],[398662,77493,909],[397294,73082,753],[396940,72843,767],[396820,72637,6335],[393419,70515,3783],[393321,70772,6031],[392119,73535,784],[397377,73395,5861],[397336,73399,738],[394599,73168,762],[395616,72375,725],[396741,73335,745],[397744,73606,723],[396777,72943,5153],[392029,72862,771],[391935,73214,4601],[391888,72857,4615],[391891,72566,5207],[393637,70955,6011],[393640,70911,761],[396724,72696,1702],[397703,73278,756],[391980,72501,754],[392227,72030,751],[400110,74900,834],[395037,71517,734],[392723,71370,764],[393979,73276,1132],[392992,73403,766],[392074,73177,813],[392774,73880,842],[393573,73104,1135],[393324,73608,804],[394000,73618,793],[394928,77182,1098],[399999,77094,782],[392493,74038,775],[392253,74532,813],[391481,75276,770],[391598,75937,1187],[392894,77062,777],[392114,76431,1111],[392538,76566,1034],[394431,76658,1188],[391978,75421,1080],[392005,75769,816],[393720,76604,795],[393437,76755,776],[392855,76744,828],[399083,77354,778],[399596,77558,873],[397475,78725,1036],[393589,73404,789],[394450,77003,808],[393792,76953,1157],[393856,77620,818],[394954,77535,814],[392323,74879,1155],[393304,73264,1161],[393558,77448,1204],[393814,77289,834],[393484,77091,824],[392484,76241,870],[392342,75212,802],[393248,77273,1188],[397229,78484,1170],[397411,78389,755],[393067,73751,1177],[399647,77890,974],[399130,77699,796],[383557,83744,724],[385701,80568,1352],[385938,80379,753],[388102,77151,752],[388444,76926,767],[387737,77681,728],[387636,77981,5151],[388375,76260,1036],[383542,83419,1114],[383499,83076,1146],[384285,82184,1230],[387348,78170,720],[387305,77512,1358],[386995,78726,909],[386694,79224,748],[382760,84433,1159],[382671,84619,782],[384204,81810,798],[384564,81378,1281],[386694,78899,1350],[386366,79092,1045],[386651,78570,1362],[386436,79446,1373],[385610,79870,1365],[385661,80230,1415],[386204,79920,1331],[388053,76488,1313],[386986,78406,1383],[387682,77044,1142],[387732,77361,1256],[388093,76822,1246],[213699,104548,650],[213478,104504,622],[213858,104221,8065],[213395,104563,9221],[213521,104820,601],[213164,104677,562],[214577,105436,9640],[215127,105110,3122],[213929,105898,532],[214663,105296,5684],[214863,105188,4691],[214329,105355,2479],[214076,105339,8476],[214326,105263,9349],[213855,104584,786],[214356,103886,532],[213568,105150,612],[213633,104937,644],[214005,105220,641],[214792,104887,636],[213322,104752,8707],[214337,105473,627],[214107,105652,8524],[214031,105563,630],[214260,105010,681],[214337,105027,739],[214464,105375,3836],[213527,104890,9001],[214486,105186,7260],[214444,105174,7769],[214432,105082,8309],[214641,105087,3574],[214481,105340,4653],[214530,105332,5412],[214699,105082,753],[214716,105103,4242],[214553,105301,6208],[214647,105253,898],[215127,105110,492],[282059,85531,922],[281109,86780,602],[282073,85467,752],[282162,86241,1026],[281929,86339,980],[281908,86261,5187],[282278,87215,828],[282143,86971,7080],[282243,86890,948],[282009,87015,846],[281854,86569,3910],[282436,87760,622],[283370,86470,762],[281876,86016,859],[282107,85891,916],[281981,85964,6716],[281974,86674,991],[282244,86586,1503],[282493,86434,1033],[269192,177392,894],[268952,177841,892],[268906,177839,892],[268996,177840,892],[269041,177835,892],[269084,177828,892],[269128,177817,892],[269170,177804,882],[269211,177788,882],[269251,177769,882],[269290,177747,872],[268988,177071,3897],[269146,177049,908],[269363,177696,862],[269327,177722,872],[269396,177666,872],[269427,177635,872],[269457,177602,872],[269483,177566,862],[269508,177529,852],[269530,177490,862],[269549,177450,862],[269565,177409,852],[269578,177367,852],[269589,177323,852],[269596,177280,852],[268861,177835,892],[269602,177191,842],[269601,177235,852],[269600,177145,852],[269596,177100,852],[269588,177055,852],[269097,176699,879],[268741,176882,901],[269562,176967,852],[269545,176925,852],[269525,176884,852],[269502,176844,802],[269476,176806,802],[269448,176771,802],[269417,176737,802],[269384,176705,802],[269349,176676,812],[269312,176649,812],[269273,176626,812],[269232,176604,802],[269190,176586,802],[269147,176571,802],[269103,176559,792],[269058,176550,802],[269013,176544,802],[268876,176545,832],[268967,176541,812],[268922,176542,832],[268816,177827,892],[268786,176562,822],[268831,176552,822],[268742,176576,812],[268700,176592,812],[268658,176611,822],[268618,176633,822],[268580,176658,832],[268646,177302,3266],[268509,176716,832],[268477,176748,822],[268447,176782,832],[268419,176819,832],[268436,177056,873],[268394,176857,842],[268372,176897,842],[268353,176939,842],[268323,177025,842],[268337,176981,842],[268313,177070,842],[268306,177115,852],[268303,177161,872],[268483,177374,941],[268302,177206,872],[268305,177252,872],[268311,177297,872],[268320,177342,872],[268332,177386,892],[268387,177512,892],[268410,177551,892],[268437,177588,892],[268466,177623,892],[268498,177656,892],[268532,177687,892],[268567,177715,892],[268605,177741,892],[268645,177764,892],[268686,177784,892],[268728,177801,892],[268772,177815,892],[269576,177011,852],[268543,176686,832],[268365,177471,892],[268347,177429,892],[399065,84478,832],[401982,86427,822],[401064,86596,772],[398128,85214,1304],[397490,84708,842],[398428,85375,832],[397119,86969,1229],[399014,88338,1107],[396245,86461,842],[399295,88189,750],[400042,89159,812],[400119,88573,753],[401287,86846,736],[400930,87639,870],[397151,86307,842],[397854,85695,1311],[397644,85614,842],[399229,85369,802],[398582,86281,792],[401371,87166,1327],[398140,85539,860],[398177,85853,809],[397730,85012,838],[397579,87145,811],[399888,88253,772],[401700,86667,1283],[400540,88139,1171],[400077,88250,767],[398453,87885,899],[360745,106830,914],[370767,95342,798],[371960,97073,1014],[363397,106192,861],[365848,103777,839],[363828,105856,826],[369468,100279,780],[369515,100607,838],[369785,100262,1126],[363140,107192,953],[364301,105518,965],[369810,100627,837],[368385,101448,1250],[368397,101815,731],[367956,101806,1033],[369272,100886,1227],[368963,100842,1096],[362309,107151,966],[362394,107827,909],[362064,107469,1026],[369558,100927,853],[365678,104122,1086],[365896,104137,845],[367104,102805,936],[367136,103147,762],[366441,103491,1056],[368665,101151,787],[368992,101210,822],[365460,104784,1039],[365936,104480,779],[365111,105141,775],[368032,102461,887],[370167,100310,1196],[372713,97751,1067],[372137,98429,988],[371699,98731,805],[372438,97741,989],[372469,98063,812],[371910,96731,951],[371384,96371,768],[371209,98714,768],[370868,99366,809],[370496,99703,1134],[366190,104131,972],[366470,103829,831],[368719,101459,967],[363092,106874,874],[360786,107151,883],[367974,102130,691],[367541,102455,1112],[364685,105128,841],[366143,103773,988],[370110,99998,982],[362853,107189,818],[363058,106532,1025],[210199,122073,5755],[210118,122142,5683],[210094,122011,822],[210302,121824,1252],[210332,121958,4626],[210264,121948,3955],[210623,120937,402],[210101,121391,6934],[209869,121533,645],[210451,122563,864],[211422,122158,452],[210200,122974,492],[210462,121183,6373],[211296,122109,512],[210402,122205,6114],[210310,122150,1215],[210415,121984,5234],[211335,122111,5339],[210851,121699,4802],[210888,121358,525],[210204,121436,694],[210491,121233,648],[210665,121314,678],[210652,121633,3022],[210465,121569,5654],[210810,121379,4854],[210937,122029,5369],[210855,121922,831],[210475,121629,906],[210354,121764,2871],[210250,121727,2204],[210470,121913,5060],[210360,122468,6224],[210628,122192,6723],[210073,121884,2627],[209951,121902,5490],[210145,122341,696],[210171,122352,5775],[210196,122686,588],[210145,122180,3352],[209478,121842,597],[210194,122174,4050],[209811,121802,707],[210043,121822,5259],[210142,121731,786],[210142,121891,3367],[209394,121742,452],[210779,122044,3566],[210614,121652,2251],[210558,122008,6599],[210469,121982,5943],[210414,121768,3541],[401742,78282,792],[401565,80726,903],[400919,81569,812],[401590,80635,802],[402662,79286,1265],[403695,80027,1229],[404765,81454,787],[405315,80849,792],[403477,83407,832],[404708,80784,1237],[405122,80984,1233],[401791,80294,1264],[401178,80160,819],[401468,80045,795],[400575,79906,812],[401551,80415,1292],[402159,79039,796],[404211,80559,856],[402118,78722,805],[398222,86213,771],[397484,86169,1292],[397859,86004,807],[367571,74496,596],[367724,73938,3732],[367952,74137,564],[367742,74244,3412],[216549,118545,502],[216624,118345,551],[217042,118167,630],[216112,118437,530],[216271,118087,8264],[216244,118431,562],[215895,118165,561],[216332,117629,614],[216089,117800,6307],[216006,117511,5712],[216475,117515,7306],[216466,117858,681],[216517,117875,7196],[216701,117910,606],[216340,117878,4694],[216881,117646,516],[217370,118275,422],[216259,118063,627],[216348,117990,2963],[216824,118004,5344],[216159,118799,495],[216486,118597,848],[216126,119072,442],[215934,117820,567],[216456,117195,537],[216411,117534,538],[216808,117462,538],[215331,117856,382],[215817,118419,6261],[215975,117450,532],[216567,117047,372],[215931,118546,551],[216099,118552,5013],[402764,87662,1245],[401092,89905,832],[403148,87011,822],[402020,89363,767],[401676,89522,1230],[403316,91148,6179],[403695,91365,7450],[403469,91460,7767],[404247,87846,787],[405784,89149,789],[403652,91695,6238],[404848,92573,772],[406904,89679,782],[402437,90688,4175],[402846,90486,784],[402628,90912,1211],[403879,91581,6368],[404285,91671,998],[404196,91772,5694],[403864,91225,6816],[402972,90588,6693],[403087,91226,7133],[404263,92125,5980],[403805,91477,770],[401271,89998,1262],[403142,90823,4325],[404344,92030,1155],[402512,90261,786],[402159,90360,855],[401753,90166,1106],[406235,89384,1245],[406499,89602,801],[402984,87584,1241],[402992,87898,780],[402568,88131,1252],[403253,87095,1167],[403274,87452,798],[402581,88487,764],[401685,89837,760],[402799,88007,1094],[313061,45423,662],[313690,46863,632],[313067,47103,722],[311994,46696,706],[312248,47460,582],[311687,46024,612],[271247,68827,1167],[271725,68603,322],[270328,69414,312],[270242,68456,453],[269612,68124,382],[270159,67810,512],[270269,68180,1319],[271537,68627,372],[270732,68305,595],[270811,68951,487],[271096,68100,436],[271203,68505,1143],[270679,67958,520],[270628,67611,450],[270962,67321,372],[293999,55898,480],[295381,55550,342],[294017,56283,332],[293305,54920,392],[294624,54209,422],[300527,52414,554],[300866,52327,550],[300012,53061,442],[299761,51879,560],[300144,52142,612],[300390,51371,579],[300123,52001,5213],[300485,52058,619],[300845,51718,1346],[299312,51705,462],[300829,51998,642],[300489,52253,5062],[301369,52331,422],[300590,51024,492],[367050,91544,962],[366965,92249,962],[366339,86663,962],[366578,87332,952],[364959,84186,942],[365365,84770,952],[362979,82156,952],[363524,82614,952],[360538,80715,952],[361183,81014,952],[357804,79962,952],[358505,80082,962],[354839,79992,942],[355578,79907,952],[351997,80834,962],[352684,80550,952],[349495,82426,952],[350078,81963,952],[348849,98514,994],[351234,101610,982],[346028,93837,952],[346072,93977,952],[343852,94242,952],[345986,93697,962],[345946,93556,952],[345907,93415,962],[345870,93273,962],[345835,93131,962],[343601,93452,872],[345801,92988,932],[346284,93925,962],[344919,96485,952],[344156,95014,962],[344512,95763,952],[345374,97178,952],[345876,97839,952],[346421,98463,962],[357004,102151,1042],[348295,100094,982],[348989,100547,982],[349713,100953,982],[350462,101307,982],[352025,101859,992],[352831,102054,992],[353649,102193,992],[354487,102271,1002],[355328,102291,1032],[356168,102251,1052],[345746,90981,952],[345743,90238,952],[345881,92259,962],[345820,91835,962],[347634,99593,972],[346160,93515,962],[346051,93100,962],[345958,92681,962],[345775,91409,952],[345791,89496,952],[345891,88759,952],[346042,88031,962],[346243,87315,962],[346493,86615,962],[346792,85934,962],[347137,85276,962],[347527,84643,962],[347960,84038,962],[348434,83466,962],[348946,82927,952],[350691,81543,962],[351331,81166,962],[353389,80314,942],[354108,80128,942],[356321,79874,952],[357064,79892,952],[359196,80248,962],[359874,80459,962],[361806,81355,962],[362406,81736,962],[364036,83106,942],[364516,83631,952],[365731,85379,932],[366056,86011,962],[366772,88016,952],[366921,88711,962],[367024,89415,962],[367079,90123,962],[367088,90834,962],[366833,92948,962],[366621,93762,982],[366353,94560,982],[366029,95336,982],[365651,96088,992],[365221,96811,992],[364741,97502,982],[364214,98158,982],[363642,98775,992],[363028,99350,992],[362374,99880,992],[361686,100363,992],[360964,100797,982],[360214,101178,1012],[359440,101506,1022],[358643,101778,1042],[357830,101994,1042],[347008,99049,962],[380704,89760,1836],[380973,89692,770],[381034,90037,989],[383485,88050,841],[382694,86537,788],[383002,86453,802],[383004,86233,5753],[387775,89848,829],[388171,90319,835],[387853,90164,1336],[388771,92152,836],[393310,89028,873],[392922,89232,1415],[392852,88913,1034],[391537,90288,887],[391930,90452,1883],[391579,90625,848],[396959,91642,2711],[397445,91799,2873],[397815,92343,1001],[402725,96911,8852],[398305,92520,1002],[398443,92855,2321],[398060,92763,1242],[395722,90724,2670],[393914,89211,2102],[399088,93743,3686],[400650,94844,7398],[400800,95158,8916],[400506,94938,9801],[403847,97515,1795],[404104,97727,1382],[403685,97596,8911],[404554,97197,653],[405311,95926,680],[400322,94622,7809],[398563,90707,1959],[398453,90390,985],[398937,90243,3330],[394715,89823,2657],[394664,89482,2584],[395629,90077,2551],[401759,93099,9080],[401306,92896,9385],[401595,92797,7327],[402181,93969,6697],[402087,93642,5967],[402340,93523,3124],[405272,95215,1459],[405355,95549,2012],[404765,95402,777],[403000,92988,7860],[403157,92830,785],[403210,93185,877],[403063,97075,1086],[402179,96393,8847],[403222,95613,818],[402890,95807,6628],[402839,95471,6536],[403250,93505,836],[403002,93659,6634],[403243,93235,5571],[402107,96059,8458],[402384,96300,5188],[403131,95004,5931],[403182,95293,840],[402919,95123,8318],[405178,94890,741],[403711,95063,790],[403803,93944,912],[402592,96560,994],[403259,96342,5238],[403028,96760,1170],[403487,97311,1400],[402428,92166,6903],[403378,92888,8147],[403210,95327,6445],[402848,92687,6261],[402676,93381,2523],[403427,94831,866],[403094,94619,865],[403340,94158,903],[403471,95188,826],[403661,96509,1043],[403368,96617,1016],[403323,96285,999],[399689,92796,6030],[399148,92915,1319],[399384,92485,2315],[402722,93824,7969],[403491,93383,830],[403886,96419,756],[404424,96179,716],[404160,96642,916],[404020,95632,830],[403559,95863,822],[403515,95528,801],[405706,95098,1419],[403269,95945,877],[403336,95648,7624],[402277,95663,4878],[402130,96028,2120],[402082,95728,8724],[402622,93135,7839],[402281,93309,9325],[402202,92962,8868],[399464,90692,3049],[399213,90804,3029],[399194,90471,3377],[399402,93566,3698],[399791,93439,6269],[399841,93780,6347],[400562,91272,1943],[400515,90924,1943],[401110,91457,2999],[402530,92827,7116],[403444,93035,806],[402405,92481,5981],[401994,92311,7150],[402927,96066,1036],[406072,94659,761],[405664,94761,1450],[382572,86358,5060],[383829,88606,875],[384191,88449,853],[384235,88791,847],[401792,93425,8936],[401631,93763,6050],[401409,93555,9602],[402150,92627,8759],[403050,94257,921],[402982,94366,5008],[402713,94164,7205],[400857,93369,7651],[400179,93230,3777],[400911,93049,8995],[403047,94011,6614],[401983,95094,8513],[401425,95224,6704],[401533,94892,8851],[402359,94263,8647],[401856,94411,7990],[401913,94085,9415],[402888,94788,8501],[403096,94683,6029],[402031,95420,8573],[401663,95861,8863],[401475,95553,6809],[382705,89636,797],[380539,89085,768],[383317,88797,870],[383256,86343,809],[403550,93744,986],[403321,93903,5445],[403275,93549,5440],[402551,96239,1031],[402425,94611,8916],[400959,94055,7803],[401322,94250,7084],[401012,94380,7941],[402880,94456,9022],[383870,88920,867],[382954,86095,790],[382867,85445,783],[382309,86648,797],[398014,91653,5090],[397769,92001,997],[398316,91507,3047],[398754,91402,3341],[398625,91738,890],[403718,93268,968],[403758,93600,918],[403609,93799,5360],[384633,88332,976],[403424,94916,4995],[397967,89175,2488],[403660,92932,791],[404538,93696,768],[405050,93905,786],[404984,96354,2100],[404512,96853,703],[399829,90888,3224],[400075,91077,940],[399716,91256,955],[399882,91899,2084],[400170,91773,975],[400350,92082,2920],[400043,90746,1100],[400706,91942,2724],[400704,91597,3333],[401259,91792,4459],[397823,91312,3030],[400130,91417,1072],[399300,92251,4704],[399547,92333,1167],[400157,92871,4130],[400392,92411,2905],[400845,92698,8731],[399356,92146,2546],[399527,93898,4858],[399814,94109,5359],[399706,92683,2746],[386400,89117,820],[386844,89260,1226],[386520,89789,1266],[400032,92561,2962],[401203,95004,9461],[403409,96958,970],[403730,97191,742],[398575,93205,3526],[398825,93065,1243],[398864,93407,1150],[399863,93015,4328],[400015,93334,5883],[404021,97406,817],[404265,96962,1791],[401381,93881,8604],[400977,93715,8681],[401176,93226,6935],[404084,93476,970],[399064,91224,3300],[398720,91061,3500],[399915,91561,3185],[397987,92690,2777],[398130,91196,1004],[398880,89913,3147],[399406,90336,2898],[401369,92117,5403],[401892,91971,6334],[401623,92440,8402],[400609,94510,7447],[402401,95295,7303],[399569,93131,3709],[399171,92579,2278],[399916,92209,1986],[401118,92273,7885],[401167,92581,8012],[400044,93979,5083],[399337,93241,3385],[398256,92190,931],[398811,92382,2319],[405702,95448,689],[397743,90667,3111],[397710,90338,3267],[398195,90521,3197],[398255,90858,3401],[397088,90138,946],[397188,89809,2969],[399564,91339,3253],[399504,92018,1147],[399542,91654,2346],[399503,91009,3005],[399073,91583,2759],[403972,97064,758],[382384,90440,689],[382943,90313,2913],[382797,89994,1426],[383182,90205,809],[399071,90553,4653],[401402,94582,7580],[401197,95353,8733],[399133,90149,3116],[398559,90031,3159],[398464,89716,2413],[398094,89849,3013],[397946,89490,1597],[398912,92719,3116],[398766,92052,2295],[400099,93643,6491],[391627,91824,2709],[390375,93260,2726],[390611,92385,2445],[390315,92929,2487],[398321,91844,2497],[399163,91919,3397],[396880,90943,2891],[397325,90792,3063],[397372,91130,3091],[381469,90278,1012],[389716,92466,986],[390156,92593,862],[390111,92259,853],[396727,89937,2627],[397595,89646,2935],[396777,90271,2707],[390814,91843,849],[389196,91962,983],[383163,89887,1121],[383689,89380,1246],[383608,88371,1980],[396186,90080,849],[396342,90415,2409],[397212,90459,2088],[403598,96180,775],[383400,89472,792],[383614,89021,860],[387690,91004,1619],[388435,91670,2040],[399254,91118,3014],[401907,94762,8059],[402430,94930,8405],[397498,88974,2819],[383781,88246,872],[400469,93879,6653],[400594,94178,7845],[400212,94305,6842],[400404,93549,6361],[404940,96036,2078],[404824,95718,1032],[404050,95944,658],[380187,89173,1167],[396811,90611,2534],[399303,91786,2455],[397054,89110,2385],[387590,90665,826],[387284,90491,873],[387570,90307,1222],[387404,90821,1947],[396560,89622,862],[399622,90549,957],[392764,90426,2630],[392022,90786,2550],[392310,90309,2343],[391623,90959,847],[391407,91177,822],[391573,91487,2576],[391120,91344,857],[392711,90067,2558],[392934,89557,976],[393481,89388,2605],[392793,88555,860],[392487,89075,1249],[392068,89288,849],[388261,90998,841],[388685,91482,880],[392190,89966,1292],[393740,88854,842],[382346,90098,794],[381886,90211,789],[380587,89429,799],[391273,91652,2445],[393911,89188,2635],[394340,89322,2643],[393222,88354,891],[387912,90839,911],[391844,90138,1264],[404292,97628,951],[384058,89268,2857],[389233,92282,904],[388026,91193,1847],[386949,89969,1384],[387173,89469,1217],[386352,88758,819],[399317,91475,3251],[395937,90226,2481],[387531,89991,1265],[396441,91113,2501],[396399,90755,2575],[392590,89748,1455],[385097,88543,804],[386079,89584,1427],[385994,89267,812],[385950,88934,814],[386620,90109,2080],[381988,90864,1018],[387872,90522,937],[388765,91799,1409],[386976,90298,1139],[392141,89609,1274],[385574,89063,1160],[391794,89805,1172],[403851,96084,877],[406723,82661,792],[409308,84519,802],[408170,86102,792],[405585,84244,792],[366230,102122,634],[366199,101802,798],[365854,101782,620],[251774,80564,339],[251938,80455,352],[250654,81315,962],[251042,80377,509],[251173,80430,9281],[251135,80468,499],[251350,80299,5637],[251105,80129,5358],[251572,79994,6791],[251391,80016,439],[251531,79909,7665],[251396,80652,462],[251137,80652,5249],[251205,80558,7612],[251057,80630,4619],[250466,80638,5055],[250349,80479,6184],[250617,80520,8823],[251036,79763,452],[251102,79304,382],[251341,79653,425],[251070,79886,8845],[251423,79841,473],[250976,80299,8961],[251087,80124,472],[250649,80571,490],[250780,80245,485],[251531,80413,6041],[251730,80203,381],[250469,80358,463],[251027,79962,493],[251004,80686,3048],[251011,80664,2869],[251481,80695,421],[250558,81038,421],[250651,81063,473],[251359,80205,7289],[251374,80115,8909],[251399,80250,451],[250309,80309,507],[249917,80063,422],[251435,80337,438],[250596,80913,8845],[250866,80898,442],[250514,80705,430],[250024,80196,459],[250717,81263,8888],[250998,80833,576],[250949,80971,5665],[251590,80066,5858],[251045,80672,3784],[250988,80719,2292],[251179,80803,481],[250654,81315,382],[379540,27979,8235],[379502,27935,5560],[379549,27856,552],[378235,28031,569],[378352,28719,482],[378034,27287,512],[379078,27697,5089],[379232,27653,569],[379218,27671,9783],[379399,27636,612],[379334,27872,7995],[379167,27725,7756],[379062,27772,599],[378575,28612,6888],[378700,28487,582],[378970,28487,6044],[379545,27750,5087],[379566,27560,8174],[379666,27913,576],[378916,27444,569],[378693,27142,6277],[378874,27122,588],[379336,27894,5245],[379480,27880,9168],[378774,27096,541],[379228,27030,7398],[379187,27311,574],[379461,27172,590],[379507,27533,560],[378318,27575,6666],[378492,27801,607],[378275,27758,7144],[379025,28043,915],[378967,27992,1773],[379076,27922,8895],[379590,28190,514],[379814,28285,7473],[379834,28352,2572],[379319,28338,524],[379160,28424,7345],[379471,26881,502],[379455,28085,6124],[379376,28103,583],[378910,28004,2579],[378725,27986,603],[378964,27811,558],[379136,27803,4190],[378220,27718,6216],[378470,28239,598],[378723,28321,548],[378622,28502,6301],[379054,28212,1088],[379272,27973,547],[378588,27280,583],[378631,27607,572],[378749,27511,610],[378259,27795,583],[378258,27518,612],[378610,27468,7211],[379022,27709,5878],[379011,28303,5605],[379050,28496,504],[379655,28074,6547],[379711,28085,5724],[379421,27153,638],[379035,27707,6137],[379834,28352,452],[385920,26843,7195],[385970,26831,6463],[384791,27125,442],[385547,26596,6670],[385505,26841,521],[385453,26767,7912],[385685,25806,7627],[385787,25628,9994],[385809,25730,604],[385972,26554,568],[386037,26307,5877],[386102,26518,9085],[385239,26393,589],[385385,26478,9099],[385382,26549,6148],[385896,25286,522],[385885,25699,4801],[384883,26698,5478],[384897,26478,9501],[384993,26534,566],[385761,25606,563],[385571,25428,545],[385547,25849,593],[384838,26797,6043],[385027,26680,533],[384943,26357,8932],[385352,26958,6279],[385308,26843,9945],[384981,26332,548],[385083,26888,6520],[385217,26863,563],[385068,27012,489],[385139,26840,9447],[385126,26757,5988],[385168,26617,5492],[384451,25666,482],[384650,26374,9066],[384706,26208,583],[384936,25990,543],[385436,26606,5324],[385493,26555,890],[385259,25951,609],[385809,26821,8817],[385489,26471,7593],[385626,26578,7928],[385879,26379,6692],[385764,26671,583],[385741,26297,4087],[385663,26291,7600],[385785,26206,599],[385897,26656,527],[385314,26345,5220],[385477,26427,1188],[385368,25825,485],[385173,25838,5982],[385809,25972,559],[385576,26571,8653],[385571,26098,6687],[385692,26311,4789],[385634,26361,2651],[384666,26421,5344],[385855,26322,551],[386107,26564,4671],[385794,26301,3325],[384586,26062,6751],[385866,26228,4696],[385583,26342,3404],[385996,26040,600],[386184,26486,510],[386273,26759,3322],[385818,26289,5349],[385523,26308,610],[385501,25903,4900],[385433,26204,703],[385470,26245,5106],[384730,25719,580],[384969,27040,546],[385640,26316,5534],[386273,26759,462],[292494,140704,1213],[292674,140826,3396],[292291,140586,3789],[292941,138870,1084],[288368,137846,4447],[289690,138741,3584],[289988,139061,7001],[289498,138623,1236],[289400,138432,4403],[289421,138581,7710],[288561,137975,1442],[288840,137866,1171],[288790,138047,4393],[289115,138363,8209],[288743,138117,9015],[289170,138402,1384],[288886,138186,1222],[289469,138251,1516],[289080,138297,3629],[290671,139206,1306],[290352,139323,6511],[290296,139009,1184],[289860,138436,1523],[291084,139392,1298],[290956,139581,4443],[290732,139497,1606],[291831,140363,3851],[289122,138069,1345],[288499,137663,1164],[289364,137590,1285],[290779,137009,1465],[290743,136661,1624],[291168,136919,1133],[289766,137764,1473],[289020,137374,1218],[289332,137207,1558],[291125,139744,1218],[291556,139571,1580],[293490,140769,1142],[292876,140617,1415],[293446,140394,1222],[290275,138650,1544],[291051,139038,1470],[291302,139872,3351],[291578,139945,1211],[290591,139404,4431],[291963,139495,1354],[292047,140156,1293],[292330,139321,1484],[292192,138323,1410],[292594,138586,1253],[291318,137913,1356],[291753,137762,1634],[292104,140470,1486],[292453,140384,1223],[293526,141103,1019],[290199,139173,4744],[292905,140975,1160],[289888,138834,1187],[290217,138306,1380],[290053,138996,3120],[293081,139827,1255],[293142,140163,1473],[293412,140063,1359],[293358,139740,1219],[293691,139963,1737],[294082,140220,1641],[293789,140605,1911],[292582,138221,1759],[292867,138133,1400],[292904,138492,1248],[293753,140255,2058],[291221,137240,1262],[292139,137998,1279],[293260,141228,1136],[290401,137164,1336],[290320,136471,1503],[290354,136831,1312],[289988,136635,1330],[289673,137118,1388],[290045,136968,1483],[289809,138132,1395],[219974,101587,478],[219928,101253,489],[220257,101418,491],[220068,100867,4868],[219885,100936,496],[220093,100741,508],[220303,100924,6888],[220163,100742,491],[220218,100692,9675],[221049,101212,372],[219784,102047,402],[219713,100862,508],[219837,100600,470],[220093,100685,8205],[220113,100386,474],[220321,100531,6849],[219408,100633,447],[219348,100626,6629],[219491,100598,8902],[219750,100479,503],[220216,100032,432],[220441,100626,502],[220412,100665,5775],[220453,100809,3921],[219383,101025,477],[219597,101283,6911],[219015,100832,432],[220053,101118,532],[220060,101062,8380],[219723,101283,511],[219639,101117,473],[220205,101096,2803],[220315,101303,774],[220257,101088,3589],[219756,101375,7392],[220211,101086,492],[219584,100892,5235],[219316,100653,458],[219687,101468,465],[219857,101415,8002],[220519,100833,466],[220428,100996,495],[220488,100783,4772],[219593,100786,469],[220179,100354,8002],[220567,101193,443],[393162,69052,682],[400939,74218,573],[396713,71167,679],[393815,69067,565],[282914,61868,475],[283665,61879,402],[282286,62626,312],[282881,60563,402],[282824,61190,468],[282220,61365,476],[282656,61973,769],[281583,61285,362],[282760,61772,2512],[334028,142058,4546],[333630,142133,4412],[333987,141688,4653],[336824,137479,11285],[336668,137678,846],[333083,142544,976],[333032,142190,918],[336947,137282,784],[334776,141189,4973],[335188,140773,5049],[334789,141556,4468],[336791,137971,5721],[337035,137952,9190],[337390,137527,818],[336353,138592,7469],[336637,138627,6491],[336740,138890,3286],[335047,140187,4156],[334772,139872,884],[335318,139618,2401],[336722,138029,946],[335798,139382,3806],[335940,138928,994],[336038,139567,1189],[337386,137758,6045],[337220,138012,7950],[336784,138344,1232],[334888,140146,8482],[335125,140475,4721],[334341,141227,5003],[334257,140966,4319],[334649,141006,3541],[335723,138682,4059],[336183,138165,949],[336197,139675,3229],[334418,141927,4772],[335857,139665,4108],[335357,139107,3906],[335752,139020,3831],[337445,137845,1003],[333697,142861,3987],[335257,139398,8571],[334580,140258,3960],[335545,140448,4036],[333854,141080,3938],[335428,139850,3512],[335854,140123,3218],[333541,141481,4377],[336051,138291,3763],[334043,142428,4065],[335511,140111,4187],[333915,141386,4223],[334203,140663,4131],[317929,58519,484],[318539,58038,523],[319191,58428,362],[318119,57787,540],[318490,57689,495],[318515,57866,5871],[318354,57478,8301],[318563,57398,11348],[319004,57978,502],[317921,57420,6694],[318422,57189,5830],[318442,57351,441],[317789,57491,429],[317589,57456,6656],[318786,57396,5124],[318161,58107,525],[317577,58233,429],[317651,58411,5749],[317776,58913,362],[317531,57911,382],[317481,57547,358],[317882,58156,502],[318782,57059,5822],[317337,57516,1652],[317571,58021,5363],[318782,57059,332],[317337,57516,362],[411354,81604,665],[409407,80259,825],[406135,77833,598],[408266,79469,684],[258235,193341,1092],[258421,192757,1153],[258280,193345,1092],[258192,193333,1092],[258368,193346,1092],[258324,193347,1092],[258413,193341,1092],[258500,193323,1102],[258456,193334,1102],[258542,193310,1102],[258583,193294,1102],[258847,193019,2205],[258921,192956,1092],[258902,192996,1092],[258662,193253,1092],[258699,193228,1092],[258735,193202,1092],[258768,193172,1092],[258799,193141,1092],[258829,193108,1092],[258855,193072,1092],[258880,193035,1092],[258968,192786,1092],[258782,192737,1841],[258973,192741,1092],[258937,192915,1092],[258961,192829,1092],[258950,192873,1092],[258974,192697,1092],[258972,192653,1092],[258968,192608,1092],[258960,192565,1092],[258950,192522,1092],[258699,192562,1035],[258936,192479,1092],[258920,192438,1092],[258901,192398,1092],[258879,192359,1092],[258855,192322,1092],[258828,192287,1092],[258799,192253,1092],[258768,192222,1092],[258734,192193,1092],[258699,192166,1092],[258662,192142,1092],[258623,192120,1092],[258623,193275,1092],[258542,192085,1092],[258499,192071,1092],[258456,192061,1092],[258413,192053,1092],[258368,192049,1092],[258324,192047,1092],[258280,192049,1092],[258235,192053,1092],[257922,192329,1049],[258192,192061,1092],[258149,192071,1092],[258106,192085,1092],[258065,192101,1092],[258025,192120,1092],[257986,192142,1092],[257949,192166,1092],[257914,192193,1092],[257849,192253,1092],[257880,192222,1092],[257820,192287,1092],[257793,192322,1092],[257769,192359,1092],[257747,192398,1092],[257728,192438,1092],[257712,192479,1092],[257987,192644,1348],[257698,192522,1092],[257688,192565,1092],[257680,192608,1092],[257674,192697,1092],[257676,192741,1092],[257680,192786,1092],[257688,192829,1092],[257698,192872,1092],[257712,192915,1092],[257728,192956,1092],[257747,192996,1092],[257769,193035,1092],[257793,193072,1092],[257820,193107,1092],[257849,193141,1092],[257880,193172,1092],[257914,193201,1092],[257949,193228,1092],[257986,193252,1092],[258025,193274,1092],[258065,193293,1092],[258106,193309,1092],[258149,193323,1092],[258583,192101,1092],[257676,192653,1092],[364887,43722,486],[364521,43802,1745],[364626,43389,3965],[364733,43237,5728],[364837,43369,423],[365077,42944,252],[364361,43333,384],[364457,44002,487],[365501,44336,282],[365058,43077,4046],[365203,43528,5240],[364097,44761,292],[363915,43641,375],[363674,43372,1742],[365268,43678,365],[364003,44322,354],[363674,43372,242],[295902,67709,5024],[295893,67663,561],[296271,67519,450],[295485,67085,545],[295800,66979,530],[295847,67315,563],[295961,67239,11227],[296320,67861,489],[296636,68026,382],[295989,68034,1208],[295206,67582,522],[295351,67128,7734],[295724,67654,7323],[295663,68448,523],[295482,68409,7215],[295628,67809,1161],[295332,68550,507],[295293,68236,536],[295291,67684,5956],[294609,67470,5142],[294885,67672,545],[295325,68735,392],[295249,67902,537],[295953,66770,6532],[296061,67224,8003],[294816,67401,8535],[295047,67254,7709],[295953,66770,362],[294609,67470,432],[256722,91600,5482],[256652,91557,1206],[256652,91509,1981],[256359,92319,872],[256543,92482,6225],[256496,92563,608],[256345,91334,1024],[256499,91488,7458],[256285,91700,1203],[256986,92272,580],[256302,92834,442],[256446,91133,7383],[256534,91097,566],[256981,91947,1116],[257208,91605,702],[257554,92024,402],[255851,91909,1239],[256176,92078,1956],[256385,91769,5377],[256646,91755,705],[256198,91251,516],[256330,91207,844],[256829,91315,714],[255867,91423,491],[255913,91412,1267],[256738,90774,362],[256964,91499,5506],[256008,91609,6320],[256480,92209,1054],[256713,92078,1031],[255489,91591,442],[256490,91837,1542],[256554,91914,2612],[256995,91641,1858],[361820,105822,640],[361864,106152,652],[361073,105833,645],[361596,106475,703],[361731,106050,3341],[364565,78666,3366],[364480,78308,2835],[364390,78913,491],[364815,78265,539],[396568,76274,745],[397435,76584,772],[397765,77344,782],[398167,76638,1015],[398299,76594,772],[397820,76793,1220],[395530,75206,796],[394220,74824,762],[394753,74074,762],[395574,75525,813],[396522,75919,759],[396093,75746,1147],[270976,113378,2156],[271173,113537,1132],[270956,113760,1198],[271759,112382,1007],[271434,112058,2792],[271806,112741,995],[271345,112306,1075],[271438,112980,1101],[270861,113079,1138],[271014,114085,1378],[270715,113990,1153],[269468,114916,2842],[265583,120534,1612],[270765,113593,2563],[270488,114542,1187],[270548,114871,1402],[270123,114450,1244],[271907,113413,1128],[271500,113319,1316],[271871,113048,1315],[271294,113141,3482],[270850,114300,2414],[270230,115116,1476],[269780,114687,1214],[271580,113972,1210],[266882,120711,891],[266486,120930,884],[270394,113891,1109],[270072,114117,1161],[270484,113484,3079],[269830,115026,1280],[271090,114796,1114],[271133,115111,1119],[270850,114996,1147],[266677,119000,1245],[267022,118459,1284],[272254,112811,1082],[269398,115297,1202],[270596,115210,1440],[270620,115555,1129],[267493,119239,1235],[267530,119558,1164],[267174,119806,880],[271985,113740,1586],[266387,119932,1370],[265986,120149,883],[266307,119597,896],[266057,120450,1284],[266078,120825,892],[266491,120573,1613],[271620,114307,1143],[271318,114538,1268],[268317,118899,1219],[268587,118384,1115],[266791,120035,889],[266886,120360,1591],[266403,120267,969],[271056,114431,1329],[270816,114659,1300],[266744,119693,889],[267267,120103,1591],[268542,118018,1174],[268498,117677,1204],[268845,117407,1768],[269105,116545,1198],[267265,120483,869],[269153,116885,1237],[269199,117217,1253],[269571,116627,1115],[269882,115387,1313],[338073,87306,542],[338454,87225,550],[338178,86981,2605],[338406,86865,539],[337984,86633,542],[306464,49630,586],[307421,49556,492],[306041,50155,462],[305925,49088,602],[306012,49748,591],[305405,48703,512],[306097,49333,8178],[306929,49472,588],[306769,48104,542],[306374,48922,631],[306387,49333,6429],[306604,49488,2745],[262536,88746,437],[263387,88197,442],[262174,89009,442],[262031,88626,4922],[261355,87756,4992],[261947,87610,5638],[262296,87422,5382],[262337,88054,4778],[262920,88195,1007],[262582,87830,8524],[262461,88071,661],[262800,87555,6218],[262919,87893,7215],[262102,88629,525],[262567,88463,7145],[263225,87987,5550],[262577,86958,392],[262533,88401,1030],[262082,88301,6219],[262797,87512,592],[261684,87878,1578],[261587,87871,6209],[261355,87756,352],[398281,34000,805],[398864,33963,741],[397903,34575,672],[398561,33387,792],[398771,33273,716],[398653,33571,6083],[398776,33114,6639],[398913,32727,672],[399323,34142,712],[398576,33627,3989],[398475,33660,1901],[398625,33629,3237],[398816,33598,746],[397923,33171,726],[398303,33548,796],[398121,33239,780],[398258,33088,5616],[398325,33121,772],[398350,33034,742],[398582,32967,766],[397487,33141,652],[398723,32908,728],[398525,33685,1130],[398781,33743,809],[392180,71673,758],[390736,72786,1335],[391124,72233,1434],[391166,72589,1351],[390777,73106,1315],[401339,75149,1246],[396352,72095,716],[396893,72211,1282],[398118,73150,1355],[394538,70987,757],[392535,70009,643],[391852,71197,1392],[392922,70255,1388],[392411,71169,763],[393554,69955,1340],[393968,69784,1370],[394006,70137,1245],[398541,73321,671],[398496,72984,666],[399047,73518,683],[401127,75258,1289],[400846,75040,1356],[401089,74946,1340],[400107,74600,1359],[400059,74238,1354],[400462,74473,1330],[400771,74694,948],[396267,71419,773],[396528,71649,883],[396347,71760,1274],[399673,74401,1221],[398074,72805,1381],[397660,72625,1369],[399539,73705,638],[399089,73851,660],[398587,73663,682],[396605,72001,1313],[397175,72076,948],[392873,69895,1366],[393145,69753,1351],[393143,70047,761],[393512,69612,1384],[399625,74068,1175],[394536,70669,1320],[394993,70838,1369],[392407,70861,1284],[394012,70457,741],[396853,71895,1307],[395976,71578,1162],[395935,71224,1254],[395519,71364,1248],[401253,74791,722],[393057,69390,791],[391548,72048,1328],[392370,70548,1354],[392178,71353,1348],[394995,71176,767],[391899,71553,1376],[391915,71858,1041],[344584,50090,396],[344906,50147,4733],[345031,50367,410],[344263,50434,359],[344333,50782,282],[343910,49392,4312],[344323,49970,6095],[344707,49764,7726],[345435,50352,386],[345744,50343,282],[345313,50417,4229],[344241,49303,6182],[344491,49404,355],[344125,49402,345],[344917,49341,6354],[345297,49320,375],[345355,49603,6300],[344169,49724,365],[345345,49671,396],[345228,49764,4249],[345323,48962,4662],[344513,49270,5945],[345205,49137,5082],[345281,50096,4371],[345397,50036,440],[345323,48962,242],[343910,49392,242],[368583,81578,1674],[368549,81912,591],[352158,34843,942],[352773,34833,919],[351652,35205,902],[352367,33777,5813],[352650,33771,6098],[352639,33820,913],[352344,33805,898],[352020,33812,917],[352983,34599,942],[353109,34868,812],[353042,34859,849],[352726,34545,948],[353004,34547,889],[352780,33623,920],[351325,33781,912],[351526,33811,6150],[351663,34070,974],[352759,33440,822],[352524,33552,903],[352834,34764,6017],[352444,34491,4829],[352420,34535,1582],[352361,34513,2387],[352073,34309,985],[351885,34162,5813],[351726,34088,5855],[351861,34637,995],[351870,34864,5487],[352470,34388,1010],[351911,33741,977],[351887,34183,986],[352254,34569,3819],[352402,34668,4663],[352319,34802,3256],[352189,34606,1335],[352143,34541,5340],[352501,34517,4040],[351994,34440,5531],[352308,34534,3103],[352228,34355,993],[352460,34527,1191],[408268,86397,1262],[408685,85607,1206],[409701,84724,790],[409687,84371,1255],[409943,84307,808],[404677,84393,802],[405192,84451,1231],[405577,84679,759],[409321,84416,754],[408853,83820,828],[406483,82620,1204],[406574,81754,802],[406760,82213,1211],[406221,83078,1154],[405731,83557,1234],[405949,83163,1227],[408319,87009,802],[409074,85508,794],[409062,85178,1259],[409403,84779,1250],[407245,82795,762],[408373,83250,1202],[409238,83742,847],[410215,84370,802],[405524,84041,1193],[405124,84131,849],[406169,82718,1084],[405739,83881,742],[406771,82538,762],[409299,84104,1034],[408834,83506,1147],[405652,83207,779],[409640,84050,1193],[398252,23053,837],[398263,23168,8837],[398149,23176,7549],[398032,23420,799],[398116,23817,4742],[397780,22346,752],[398219,23506,6269],[398316,23670,850],[398302,23593,11725],[398296,23393,824],[398370,23484,4013],[399246,22432,873],[399016,22494,8534],[399081,22248,908],[398881,22987,5403],[398880,22893,975],[399110,22995,9724],[399374,23459,767],[399599,23429,4772],[399245,23509,11667],[398052,22884,878],[398377,22845,4364],[398323,23593,4651],[398639,23638,783],[398338,23735,766],[399181,23537,5291],[398688,23359,6062],[398582,23303,7707],[398741,23345,5265],[398578,23499,858],[398471,23310,5592],[398954,23535,811],[399038,23227,868],[399220,23365,4812],[399478,23383,888],[399110,23196,6592],[399066,23135,10295],[398338,23199,865],[398259,23356,5775],[398857,22825,3890],[398863,22909,7329],[398913,23210,838],[398823,22450,889],[398822,22520,847],[399335,23120,850],[399287,22755,861],[399060,22758,864],[399005,22782,5264],[398206,22702,833],[398523,22968,4810],[398558,22963,904],[398655,23600,6389],[398815,22999,7989],[398074,22414,881],[398379,22309,888],[398370,22576,7648],[398799,22668,4872],[398746,22611,5726],[398595,22835,4058],[398586,22882,1185],[398741,22776,1898],[398645,22827,3310],[398620,22612,878],[398712,22968,3065],[398794,22792,1078],[398550,22950,4650],[398907,22801,3166],[398096,22723,4852],[397934,22786,841],[398078,23206,4768],[398065,22982,6136],[397949,22733,7045],[397889,22442,835],[398359,22755,856],[399280,22719,4358],[399282,23046,885],[398773,22249,5255],[399301,22603,911],[397977,23130,797],[397977,23105,4642],[398774,22155,869],[399227,21986,1802],[398601,22847,6134],[399413,23053,5079],[399227,21986,802],[399599,23429,782],[398116,23817,712],[358688,146545,911],[358731,145682,732],[359177,146855,892],[358817,147598,757],[359882,146809,752],[358923,146914,3493],[358760,147980,692],[358766,146790,1555],[357583,146827,672],[358263,146915,812],[353878,149392,731],[354545,149938,732],[353617,150909,752],[353251,149497,725],[352672,149999,752],[353590,149029,1632],[353590,149029,722],[378162,39687,716],[379040,40227,272],[377620,40670,262],[377657,39440,340],[377187,39250,242],[378610,38816,252],[371046,41647,417],[371484,41603,465],[370921,42697,272],[370552,41385,313],[370493,41292,4262],[371322,41467,4625],[371440,41279,456],[370873,41507,4584],[371003,41328,411],[371909,41157,367],[372310,42264,262],[371884,40867,232],[370493,41292,312],[208520,109410,9285],[209550,108771,3452],[208333,109567,802],[208223,107973,832],[208672,108111,811],[208596,108179,9973],[208847,108796,8397],[208953,108839,9009],[208783,108971,8639],[209122,108544,789],[209126,108376,6244],[209387,108566,6404],[208573,108599,8215],[208494,108223,842],[208717,108424,834],[208677,107555,732],[209164,108866,749],[209174,108889,10977],[209070,108378,5515],[208840,108509,7618],[208811,108461,871],[209169,108735,838],[207921,108885,861],[207526,108330,822],[208682,108930,8075],[208702,109141,843],[208811,109129,779],[208273,108333,820],[208219,108332,8180],[207913,108101,8143],[209434,108623,761],[208754,108694,3461],[208414,109326,859],[208642,109167,9022],[208308,109016,7300],[208372,109120,964],[208191,109271,7453],[208380,108568,862],[208866,108690,4939],[208771,108781,891],[208186,108723,1286],[208365,108743,7150],[208857,108580,6638],[209073,108187,807],[208324,108674,875],[208041,108307,898],[208641,108752,1078],[208517,108829,7643],[208371,109010,876],[207830,108230,857],[208052,108880,894],[208711,108709,2672],[209550,108771,712],[400522,77964,922],[399993,80589,819],[403353,77673,807],[403305,77314,801],[404316,78072,777],[407871,87493,812],[407795,86796,1048],[402399,77562,784],[403221,77266,6086],[403054,77505,3291],[404330,85054,796],[405791,86037,1241],[403336,84625,799],[404095,83033,1241],[404810,81771,828],[400579,81439,835],[400536,81121,819],[400989,81295,1278],[401225,80516,813],[401305,80869,1273],[400346,79449,1275],[400599,78605,806],[400675,78935,1259],[405648,81129,779],[406416,79861,770],[412725,84470,776],[413691,86000,776],[413417,86437,750],[412031,86652,765],[411275,87167,767],[406947,86342,814],[404520,82917,811],[404508,82564,1300],[404897,82442,798],[405746,79696,777],[406072,79482,5756],[406056,79627,778],[412637,83824,748],[405380,79100,783],[407429,80342,769],[407522,81041,774],[408242,80958,3669],[408496,81142,789],[411144,83057,783],[411777,83311,3439],[411185,83373,772],[413921,85282,787],[414176,85639,3744],[414286,85562,730],[411233,83732,771],[412150,83867,764],[412110,83550,783],[401157,77699,788],[412597,87244,759],[411849,83672,3788],[408922,81398,760],[411813,88073,840],[402268,76596,749],[401207,78047,849],[400946,78169,1256],[400997,78529,1303],[400691,79282,844],[410339,87318,792],[411334,87484,1000],[405162,81339,1127],[405430,81522,791],[405209,81683,1153],[405423,81216,1253],[406387,86509,1170],[406050,86223,763],[407916,87829,806],[400656,81806,1239],[400911,80951,830],[406310,86149,764],[405304,85478,888],[400223,82266,914],[400744,82466,1258],[401581,83219,781],[402380,83195,918],[403208,83649,801],[402433,83527,1034],[401947,83433,1244],[402168,83311,957],[403749,83834,1260],[403761,84169,795],[401869,83084,783],[403324,84302,1225],[403256,83982,866],[401169,82673,1244],[412195,87655,1205],[407416,87239,1087],[411682,87089,835],[404883,82109,1242],[404134,83346,1204],[401090,82308,814],[400671,82145,816],[405226,82005,793],[404855,85262,1164],[404813,84919,1214],[400361,79797,838],[399979,80244,1263],[401004,78829,839],[404151,83696,808],[402472,83869,942],[402110,82959,788],[411753,87405,1251],[412106,87012,1146],[411798,87764,1215],[411366,87842,778],[399935,79925,1239],[399445,80059,820],[411421,88181,924],[400174,81946,828],[407372,86910,1081],[365872,31658,7083],[365922,31594,6442],[366212,31580,7133],[366216,31397,557],[366060,31508,611],[365948,31134,6427],[366052,30868,9807],[366083,31062,626],[366260,31405,6612],[366354,31686,452],[365349,31171,5874],[365361,31369,987],[365310,31399,6243],[366111,30935,8955],[365570,31752,7078],[365607,31485,6767],[365703,31598,9397],[365715,31555,634],[364670,30806,6614],[364620,30918,7226],[364501,30603,552],[365737,31095,678],[365629,30744,624],[364597,30951,609],[364845,31108,610],[365580,30375,612],[365942,30216,522],[365764,30612,657],[365305,31775,587],[365424,31434,4664],[364872,30835,641],[364801,30788,601],[365792,31318,8404],[365065,31680,625],[365266,31454,629],[365022,30559,6192],[364869,30744,8133],[365288,31845,6212],[365718,31430,605],[365157,30489,6060],[365165,30847,8591],[365223,31118,641],[365089,31192,655],[365515,30988,4927],[365399,31124,674],[365175,30760,622],[365116,30707,646],[365424,30671,657],[364929,30793,7278],[365649,31269,6353],[365479,31434,3918],[365529,31302,3343],[365014,31232,5811],[365584,31222,2660],[364889,31449,600],[366165,31028,523],[365758,31770,532],[365673,31069,641],[364842,32061,502],[405848,92968,765],[405803,92632,760],[406316,93195,739],[397226,84471,828],[397597,84002,838],[401568,85663,1308],[401893,85562,828],[401970,85898,1298],[396633,86764,841],[401776,91647,5308],[401468,88166,828],[401001,87972,1238],[401421,87809,826],[402261,88238,1028],[402204,87921,815],[405181,87934,763],[404710,87730,1150],[405137,87616,747],[408809,90763,735],[406992,89100,793],[406714,89179,793],[404028,93145,797],[403940,92494,765],[404359,92347,774],[400566,84937,781],[400051,84410,1252],[400526,84623,808],[400431,90277,1954],[400856,90480,1251],[400422,90591,1246],[397658,87492,1275],[395287,86201,838],[399095,83698,922],[399164,84018,1285],[398798,84196,1208],[395688,86059,1345],[395282,85888,1353],[398053,84893,842],[398460,84285,848],[398415,83965,820],[402487,91834,8361],[402888,92345,7463],[404962,93223,832],[405420,93103,1115],[402150,90832,5478],[401786,90508,924],[402597,91024,5821],[403118,91562,6940],[402713,91346,6858],[402254,91528,5632],[402248,91169,6226],[403398,92705,784],[403619,92599,833],[402749,92041,6059],[402674,91686,5658],[403311,92578,7771],[403638,92448,8302],[403950,92254,6120],[403276,92225,7921],[403671,92337,5313],[400129,90401,2950],[400072,90068,2774],[401638,91334,3941],[401703,91002,5490],[400992,91126,1956],[398449,89383,2813],[399362,89993,2909],[401465,90669,2746],[403873,91921,5654],[403667,92007,5870],[401275,90313,733],[400917,90812,1502],[398942,89122,2347],[398396,89071,2656],[403473,92128,6576],[403216,91889,7702],[397421,88651,2351],[398694,88891,2421],[398662,88562,2593],[398789,88780,823],[398354,88713,2728],[398175,88366,846],[397714,88162,819],[399077,88984,786],[399053,88670,1030],[397899,88531,2726],[397938,88844,2701],[398755,88447,967],[399844,89415,792],[399483,89543,868],[399435,89226,787],[400332,89943,1183],[399887,89749,771],[400259,89608,804],[399700,90217,2654],[399248,89320,2571],[399291,89663,2529],[399641,89872,2480],[400777,90136,779],[399832,89074,1254],[400213,89248,803],[400600,88791,795],[399009,89453,2674],[397180,87636,839],[398522,88215,1252],[398145,88035,1043],[398800,89594,2613],[395562,85380,839],[396069,85916,873],[396449,85112,1325],[396823,84940,845],[395603,85714,796],[396056,85573,1327],[405660,88175,862],[401101,85138,1304],[400203,88933,1258],[400590,88456,1285],[396730,84266,797],[397217,84143,1312],[403185,86776,807],[402559,86342,818],[402775,86228,823],[398547,84960,837],[398535,84622,1278],[399581,84237,1271],[399502,83870,834],[403427,91792,6548],[397670,87821,830],[401015,88309,806],[401888,88335,826],[399588,84540,813],[404724,88047,752],[404224,87492,1136],[402012,86215,1288],[406455,89284,778],[406441,88927,1243],[406169,89053,947],[405727,88497,1220],[405234,88268,877],[402275,86130,855],[403676,86974,1192],[404165,87172,899],[397145,83822,898],[397583,83669,1267],[398333,85097,1267],[396814,84629,1309],[395972,85235,779],[408011,91941,670],[396110,86246,827],[399179,84372,829],[401378,87492,816],[409310,90643,580],[408871,91094,977],[405903,93282,960],[397156,87302,1126],[257660,76766,474],[258320,76390,382],[256272,77590,5082],[257463,75582,8736],[257533,75828,489],[257368,75687,9317],[258098,76512,10150],[257929,76304,452],[256827,77082,5075],[256897,76894,503],[256989,76978,8798],[257143,76487,5011],[256856,76576,518],[256835,76510,753],[256986,76820,4629],[256816,76766,10072],[257717,76034,513],[257883,75959,463],[256618,76789,511],[257170,75717,494],[257524,75098,422],[257484,75481,474],[256805,76216,486],[256237,76497,502],[255525,76325,402],[257849,76483,7500],[257836,75626,438],[256836,76840,2427],[256781,76988,5083],[255944,76620,437],[255571,76400,450],[256274,76845,10386],[256280,76944,470],[256224,77417,501],[256363,76973,9417],[256456,77106,446],[256494,77437,345],[256984,77074,452],[257055,76936,10281],[257151,76869,5909],[256933,76874,3092],[256952,76843,3831],[257574,76383,507],[257620,76500,446],[257331,76456,7888],[257503,75915,7296],[257435,76066,524],[257374,75770,525],[257302,76696,504],[257298,76184,5468],[257092,76286,7668],[257182,76081,523],[257360,75734,8460],[257073,75787,529],[257087,76861,5244],[257654,75806,7493],[257858,75801,6046],[257686,75597,7218],[257785,76337,492],[257258,76377,475],[257464,76235,6741],[257259,76456,511],[257201,76486,5759],[257669,75660,497],[257606,75624,5809],[257601,76305,7298],[257495,76009,5655],[257579,76184,470],[257260,76488,6467],[256928,77126,5621],[256643,77222,460],[257132,76753,7565],[256619,77364,6288],[256272,77590,352],[319504,44408,974],[318764,44853,874],[319117,44138,1103],[317833,43577,832],[319570,44456,6877],[319792,44507,922],[318349,45064,852],[319228,43038,922],[319414,43727,991],[319459,44066,992],[319441,44005,5918],[290189,71039,831],[290865,71171,412],[289513,71907,392],[289324,71513,433],[288857,70586,6222],[289345,70694,7806],[289900,70918,3070],[289743,71111,625],[289672,70265,7285],[290119,70660,575],[290469,70563,586],[290292,70586,8899],[290316,70296,9736],[290167,69875,7282],[289909,71017,9104],[290095,70767,5951],[290069,70308,546],[289362,70410,8536],[289242,70842,528],[290167,69875,452],[288857,70586,342],[351664,48517,370],[351943,48471,292],[350543,48895,292],[351016,48572,412],[351440,48468,6437],[350708,47930,458],[350439,47532,6244],[350711,47722,4867],[351266,48205,467],[351392,48129,6393],[350663,47571,491],[351606,48306,4966],[351724,48165,6849],[351595,47745,5835],[351288,47168,6703],[350119,47501,252],[351227,47646,4994],[351580,47858,425],[351367,47532,7134],[351483,47167,350],[351518,47075,5202],[350748,48245,436],[350743,48025,4758],[350512,48618,454],[350975,48215,492],[351518,47075,252],[444200,50096,2060],[444255,50187,2012],[444132,50068,2022],[444166,49786,2149],[444009,49948,2032],[444557,49698,2113],[444520,49369,2187],[445112,49326,1982],[444839,49120,7107],[444867,49086,2012],[444989,49206,2002],[444745,48965,2042],[444502,48723,2052],[444623,48844,2042],[444121,49260,6741],[444040,48775,2233],[444381,48601,2062],[443832,49544,2175],[443502,49337,2201],[443793,49230,2208],[443524,49463,2052],[443644,49585,2052],[444455,49499,6700],[443887,49828,2052],[444534,49857,7169],[443766,49707,2052],[444261,48479,2062],[443404,49341,2062],[357691,46075,534],[358651,46461,292],[357235,46901,292],[357200,45379,340],[357902,45385,473],[357643,45712,532],[358217,45035,4112],[358119,45084,838],[357874,45159,4752],[357960,45723,679],[358179,45729,485],[356798,45467,252],[358498,46091,386],[357870,45720,3668],[358154,45142,4424],[358183,45463,1022],[358217,45035,262],[313265,59661,2739],[313687,59589,501],[313132,59823,604],[313359,59004,472],[313213,58862,5692],[313421,58788,5882],[313067,59112,6831],[313036,59158,496],[313005,58936,5692],[313408,59353,497],[312798,59010,5692],[312597,59470,5693],[312675,59592,544],[312590,59085,5512],[313550,58755,8333],[313551,59044,7822],[312694,59861,6315],[312176,59236,5672],[312670,60586,402],[312723,59940,565],[313629,58715,5962],[314093,60074,382],[313640,59244,472],[313074,59683,5891],[312383,59160,5692],[313629,58715,382],[312176,59236,382],[236456,90010,494],[236695,89927,458],[237065,90217,459],[236305,90148,426],[236637,90778,352],[235851,89585,382],[236873,89472,483],[236602,89252,431],[236997,89421,435],[236956,89807,5800],[236794,89848,7361],[236652,89611,450],[236237,89756,8024],[236249,89511,6080],[236346,89667,481],[237127,90410,377],[237866,89947,1292],[236592,89567,498],[236566,89500,5958],[237662,90023,403],[237719,89769,6138],[237727,90023,7183],[236262,89807,476],[236476,89925,8250],[237122,88899,432],[237126,88902,6557],[237061,88797,392],[236211,89449,438],[237293,89542,428],[237620,89699,438],[237562,89731,4816],[237369,89807,6280],[237089,90095,437],[237258,89232,516],[236344,89954,6137],[237227,89741,487],[237238,89799,3047],[236955,89846,490],[237338,89877,414],[237613,89728,5489],[237605,90034,432],[237374,89914,4571],[237379,90192,402],[237324,89918,3889],[237150,89971,876],[237866,89947,382],[225695,98016,430],[226647,97516,302],[225485,98283,332],[226023,97389,446],[226245,97170,6824],[226140,97489,7083],[225868,96287,362],[225579,96510,9356],[224683,97092,382],[225905,97742,7554],[226330,97546,390],[225717,97984,8901],[225622,97952,8230],[225709,97661,6411],[225437,97814,396],[225677,97537,484],[225306,96832,438],[225590,96729,473],[225648,97091,7485],[225950,96510,5366],[226070,96664,442],[225483,98158,381],[225863,96981,5164],[225777,96668,424],[225737,96415,380],[225906,96526,4544],[226280,97184,383],[225351,97165,440],[225680,97125,477],[225740,97639,7170],[225965,96754,4757],[225833,96720,443],[225918,97702,411],[226168,96977,422],[226155,96825,5966],[225997,97050,5707],[225932,96990,451],[225971,97045,2381],[225889,96635,5767],[228175,111005,485],[229068,110607,422],[227821,111425,412],[228040,110228,3056],[228040,110127,4744],[228110,110061,1139],[228087,109985,1182],[228381,110198,575],[228643,110160,641],[228871,110312,1007],[228688,110422,512],[228444,110531,829],[228566,110178,7451],[228723,110517,1310],[228486,110682,1132],[228017,110007,6140],[227974,109966,6590],[228253,109566,642],[228638,110064,510],[228077,110010,7178],[228037,109678,7046],[228270,109388,372],[227995,109682,487],[227022,110204,362],[228035,110069,5655],[228469,110538,5418],[227679,110102,575],[227983,110388,4948],[227736,110556,1180],[227580,110466,713],[227972,110267,1526],[227874,109899,838],[227717,110804,502],[325225,55903,507],[325584,55967,5469],[325550,56156,476],[325690,54950,8859],[325653,55055,414],[325418,55181,431],[325914,54843,4902],[324467,55302,342],[325835,55895,4963],[326102,55993,410],[325753,55227,5056],[325209,55148,6735],[324779,55269,414],[325133,55216,492],[325248,55473,6669],[325703,55404,461],[326005,55307,334],[325754,55772,506],[324891,56638,332],[325510,55839,505],[326350,56217,322],[325914,54843,302],[242648,86558,2798],[242386,86615,6442],[242323,86504,7487],[241696,85772,7795],[241814,85858,461],[241411,85851,372],[242625,85015,402],[242634,86079,504],[242542,85773,4851],[242646,85726,5019],[241861,86206,457],[242174,86154,7504],[242545,85402,529],[242295,86318,476],[243068,86153,430],[242934,85856,5019],[243028,85833,476],[242251,85953,549],[242246,86539,5920],[242396,86173,5936],[242905,86532,6417],[243330,86254,4912],[242225,87001,332],[242670,86387,423],[242336,86662,398],[242750,86367,2366],[242996,86331,6016],[243268,86184,5294],[242949,86340,5288],[242926,86369,4549],[242936,86457,8022],[243330,86254,322],[273500,118972,1245],[273993,119433,991],[273575,119659,1027],[273710,120657,1029],[273477,120423,3742],[273670,120307,1119],[274183,120750,1170],[273135,119225,1292],[274041,119774,1026],[273639,119958,1342],[273253,120233,1062],[273335,120912,942],[275325,119264,1200],[274313,118524,964],[273088,118888,1273],[273437,118628,1016],[274217,121104,972],[273816,118072,1078],[274893,119967,1028],[274850,119644,1032],[272708,119457,929],[275609,119408,1167],[275142,119743,1246],[275356,119593,1020],[233905,107214,610],[234087,106989,1148],[234313,107192,521],[233156,106697,5394],[233707,107601,402],[232895,106360,372],[233571,106312,545],[233833,106241,548],[233833,106501,724],[233962,106319,673],[233894,106505,1427],[233959,106462,2954],[233876,106546,5702],[233857,106575,4964],[233945,106749,5589],[234137,106464,695],[233509,106004,409],[233669,106192,7996],[233611,105891,542],[234079,105586,362],[234060,105859,499],[233745,105977,474],[234012,106052,7812],[233952,106463,8013],[234011,106169,644],[234430,106139,528],[234450,106534,493],[234922,106799,392],[234534,106772,605],[234036,106367,7538],[234387,106601,5984],[233826,106806,767],[233232,106340,7097],[233499,106559,739],[233526,106581,5317],[233245,106380,498],[233227,106704,506],[234493,106857,483],[380062,88166,1276],[380404,87761,1332],[380066,88494,718],[380610,87008,666],[380669,87334,892],[380358,87400,1354],[380023,87847,1324],[380706,87692,739],[381425,86506,1201],[381811,86065,776],[381349,86159,779],[381001,86596,1288],[381041,86953,1186],[381807,85741,1330],[382496,84855,1118],[382774,84772,738],[382512,85183,746],[382113,84937,1236],[379700,88572,825],[394438,73491,1086],[393725,74439,785],[397557,77247,1245],[396610,76590,755],[397695,76105,758],[398137,76299,1222],[396459,75282,1064],[398563,76818,772],[398547,76500,1144],[395164,75699,791],[395692,76240,1154],[395204,76033,745],[397609,77912,738],[397339,77695,1036],[397051,75682,737],[397296,75548,735],[397648,75763,729],[397249,75205,718],[396802,75479,750],[395940,74730,888],[396422,74963,1140],[395906,74417,1004],[396755,75120,746],[396705,77297,775],[397023,77127,793],[397074,77486,839],[397311,77381,1237],[396659,76952,760],[396201,76756,769],[394907,73674,958],[394945,74002,877],[398489,76175,926],[395423,74214,1142],[395438,74534,762],[395350,73883,740],[394455,73794,764],[396155,76409,783],[370864,97644,3885],[370590,97369,617],[370682,98048,641],[371063,97689,614],[231576,94181,8287],[232240,93746,832],[231033,94561,322],[231157,94423,6740],[231535,93174,7241],[231642,93118,9482],[231732,93158,444],[231828,93547,4820],[231835,93582,8406],[231546,93732,2335],[231431,93771,6090],[231484,93715,7663],[231866,93845,421],[231845,93797,5035],[231135,93284,478],[230974,93301,466],[231204,93163,7388],[231829,94004,349],[231062,93981,407],[230603,93485,427],[230935,93735,469],[231519,92884,7130],[231464,92556,362],[231700,93031,402],[231225,93077,9048],[231344,93162,448],[231351,92868,454],[231388,93478,452],[231341,93634,7183],[231232,93605,498],[231297,92827,421],[230911,93362,477],[231017,93623,457],[231079,92960,457],[231145,92870,7348],[230239,93341,352],[231476,94162,387],[231672,93537,7102],[231503,93563,501],[231744,93355,400],[231575,93709,3070],[231440,93743,840],[231805,93092,7298],[231788,93689,380],[231681,93698,4594],[231107,94324,387],[231392,93887,3693],[231277,93997,449],[231794,93507,433],[231209,94056,5767],[231481,93868,5128],[231782,93933,7812],[231445,93841,565],[230801,93579,8465],[230800,93032,429],[231416,93214,487],[232240,93746,322],[283009,126420,977],[282753,126376,3377],[282823,125930,5136],[282961,126063,987],[282507,125884,964],[282916,125717,1000],[282639,126848,993],[338251,52214,414],[339037,52418,282],[337621,52826,272],[338200,51864,6871],[338261,51932,1082],[337747,51942,388],[337699,51596,351],[338543,51695,5486],[338638,51832,371],[337633,51466,5759],[338158,51528,383],[338433,51287,4697],[338592,51500,362],[337577,51686,4564],[337197,51436,4792],[337270,51638,362],[338607,51007,4242],[338545,51149,343],[338607,51007,262],[337197,51436,352],[288545,58816,582],[289453,58746,332],[288102,59478,362],[288021,58231,512],[287391,58140,382],[288702,57428,392],[288005,57900,875],[392344,35797,531],[392303,35443,617],[392660,35311,555],[392354,35175,565],[392218,35423,2381],[392252,35108,517],[392616,34986,548],[392290,34890,5972],[392548,34705,5428],[392697,34545,542],[393122,35960,572],[392903,35309,636],[392299,35112,5752],[391894,34857,456],[391908,34803,4409],[392074,34864,523],[392669,34891,4380],[392704,34651,7725],[392205,34769,493],[392377,34701,554],[392693,35207,6545],[392052,35293,539],[392654,35016,584],[391301,34964,332],[392679,34560,551],[392027,35723,593],[392294,35807,998],[391730,36393,462],[392040,35919,528],[292490,133321,1050],[292699,132922,1042],[292123,132749,1067],[292469,132952,1436],[265281,72011,475],[265006,71739,5084],[264955,71566,483],[264365,72035,704],[264678,71804,499],[264894,72340,508],[264304,71695,510],[264679,71682,5642],[265921,71975,382],[264641,72718,372],[263905,71427,422],[264134,71442,5638],[265141,70702,432],[264589,71123,527],[264942,71906,524],[265136,72010,2138],[265072,71974,1051],[265158,71951,2528],[251222,95632,506],[252129,95198,616],[251308,96135,402],[251175,95277,530],[251604,95154,612],[251218,95470,5881],[251300,94637,6610],[251422,94657,620],[251434,94673,5153],[251696,94855,814],[251982,94681,495],[252191,94820,521],[251369,95049,707],[251406,95037,1400],[251783,94503,602],[251710,94061,392],[251907,94530,5913],[251167,95154,5776],[251220,94612,6027],[251474,94277,426],[251416,94991,2266],[251307,94339,4053],[252527,95311,432],[251653,94845,1865],[251611,95018,6930],[250479,94866,362],[250763,94997,499],[250824,94654,356],[251084,95239,543],[251154,94467,383],[239753,102927,588],[239400,102811,514],[239717,102734,593],[239112,103010,390],[239596,103766,402],[238778,102514,382],[239531,102632,5288],[239589,102636,5933],[239869,103355,655],[240818,102967,382],[239391,102490,525],[239709,102610,559],[240073,102732,550],[239332,103204,484],[239071,102664,459],[239802,102763,1186],[239351,102452,502],[239075,102582,478],[239322,102309,4591],[239472,102115,391],[238873,102610,425],[239030,102531,3997],[239105,102886,4379],[239199,102852,522],[239999,101716,402],[239794,103288,482],[324671,41698,1344],[325396,41173,6284],[325424,41497,6082],[324686,41788,7049],[324918,42610,1262],[324496,41121,1282],[325523,41528,1506],[325476,41182,1484],[325871,40704,1481],[325344,41925,4137],[325154,41941,1445],[325454,41812,5908],[325581,41885,1665],[326381,42114,1432],[325123,42030,7079],[325200,42286,1437],[325933,40666,1412],[273761,87688,801],[273784,87082,622],[274051,87469,5119],[274561,88447,868],[275093,88074,702],[274284,89107,712],[274109,87542,761],[272990,88131,682],[274173,87904,949],[285686,72305,312],[428971,39053,2362],[427003,36824,2342],[358541,145027,672],[357373,146244,622],[352038,140357,592],[352888,139512,652],[352016,140379,592],[351993,140399,582],[351969,140418,582],[351944,140435,582],[351917,140450,582],[351890,140463,582],[351862,140475,572],[351833,140485,572],[351803,140493,572],[351773,140499,572],[351743,140503,572],[351712,140505,572],[351682,140505,572],[351651,140503,572],[351621,140499,572],[351591,140493,572],[351561,140485,572],[351533,140475,572],[351504,140463,572],[351477,140449,572],[351451,140434,572],[351425,140417,572],[351401,140398,572],[290282,74913,442],[290265,74912,442],[346457,52959,372],[314609,63050,442],[314861,62950,442],[315114,62852,432],[315368,62757,432],[315623,62664,432],[316135,62486,432],[315878,62574,422],[317094,62131,422],[318056,61786,412],[319021,61450,412],[319989,61123,392],[320961,60805,392],[322913,60198,392],[321936,60497,392],[314358,63153,442],[303245,67825,452],[292721,73439,442],[278719,82366,542],[272842,80283,372],[276235,78078,352],[278316,76815,332],[278901,77989,392],[279315,81540,532],[278509,82943,552],[278467,83143,552],[275794,84701,562],[278636,82553,552],[278566,82746,552],[278814,82185,542],[278922,82011,542],[284555,78244,452],[289063,75588,432],[279042,81845,532],[279174,81688,532],[279467,81403,532],[279628,81276,552],[280727,80639,482],[290134,74947,442],[290149,74939,442],[296979,70992,432],[290165,74932,442],[290181,74925,442],[290197,74920,442],[290214,74917,442],[290231,74914,442],[290248,74912,442],[290299,74915,442],[290316,74918,442],[290333,74922,442],[290349,74928,442],[290365,74934,442],[290380,74942,442],[290395,74950,442],[290409,74960,442],[290423,74971,442],[290436,74982,442],[290448,74994,442],[290459,75008,442],[292875,74437,442],[290469,75021,442],[290478,75036,442],[300126,69279,442],[299619,69548,442],[300636,69017,442],[301151,68763,452],[301669,68517,442],[302191,68278,452],[302716,68048,452],[328220,33512,1192],[329258,35019,1192],[327735,33855,1192],[325919,35856,1372],[322980,33799,1192],[322002,34091,1142],[322529,33470,1162],[325458,35906,1372],[323484,35346,1342],[323681,35468,1352],[323886,35577,1352],[324098,35670,1362],[324316,35749,1372],[324539,35812,1372],[324766,35860,1372],[324995,35891,1372],[325227,35907,1372],[325690,35889,1372],[325701,118424,542],[325020,119427,472],[303462,103352,562],[304202,102375,592],[325003,119451,472],[303156,103519,562],[303186,103515,562],[324939,119763,472],[303127,103521,562],[324945,119792,472],[303097,103521,562],[324953,119820,472],[303067,103519,562],[324962,119848,472],[303037,103516,562],[324974,119875,472],[303008,103510,562],[324987,119902,482],[302979,103503,562],[325002,119927,482],[302951,103493,562],[325018,119952,482],[302924,103482,562],[325037,119975,482],[302897,103469,562],[325056,119997,482],[302871,103454,562],[325078,120018,482],[325100,120037,482],[302846,103438,562],[303215,103509,562],[324935,119733,472],[303244,103501,562],[324933,119704,472],[303272,103491,562],[324934,119674,472],[303299,103479,562],[324936,119645,472],[303326,103466,562],[324940,119616,472],[303351,103451,562],[324946,119587,472],[303376,103434,562],[324953,119558,472],[303399,103416,562],[324963,119530,472],[303422,103396,562],[324975,119503,472],[303443,103375,562],[324988,119477,472],[336023,132068,582],[316392,118777,632],[302573,108472,602],[279566,91344,652],[341494,138499,682],[342280,136987,562],[280037,90687,582],[279973,90038,582],[280055,90658,582],[280071,90629,582],[280055,90144,582],[280085,90598,582],[280097,90567,582],[280107,90535,582],[280120,90469,582],[280114,90502,582],[280123,90435,582],[280123,90368,582],[280124,90401,582],[280120,90334,582],[280115,90301,582],[280085,90205,582],[280107,90268,582],[280097,90236,582],[280071,90174,582],[280037,90116,582],[280018,90088,582],[279996,90062,582],[273781,85874,512],[275180,86390,552],[275387,86521,552],[274966,86271,542],[274522,86066,532],[274747,86163,542],[274292,85982,522],[274058,85910,522],[273821,85850,512],[300711,107635,622],[302308,108830,632],[300971,107292,582],[323571,124218,812],[322551,123433,762],[321529,122651,622],[320506,121871,672],[319480,121094,672],[318453,120319,692],[317423,119547,682],[341543,140975,782],[341607,140898,772],[341797,141184,782],[341862,141109,782],[343910,143003,752],[343975,142927,732],[344225,143110,712],[346260,145069,772],[344158,143185,752],[346327,144995,792],[346486,145258,792],[346557,145188,792],[342294,137591,562],[352832,149007,742],[358175,152698,662],[358133,152620,672],[358088,152545,672],[355678,152200,732],[358040,152471,682],[357989,152399,682],[357935,152330,672],[357878,152263,672],[357818,152198,672],[356028,151843,712],[357303,151693,662],[353645,148105,652],[354393,150940,752],[342314,137566,562],[342348,137514,562],[342332,137541,562],[342362,137485,562],[342399,137365,562],[342393,137396,562],[342375,137456,562],[342385,137426,562],[342403,137271,562],[342404,137302,562],[342403,137334,562],[342367,137118,562],[342388,137177,562],[342400,137239,562],[342395,137208,562],[342378,137147,562],[342338,137062,562],[342353,137089,562],[342320,137036,562],[342301,137011,562],[334795,132945,692],[335928,132015,592],[335993,132048,582],[335961,132031,582],[335538,132010,592],[335715,131974,592],[335894,132002,592],[335824,131984,592],[335859,131992,592],[335788,131978,592],[335752,131975,592],[335679,131976,592],[335607,131988,592],[335643,131981,592],[335572,131998,592],[335412,132081,602],[335473,132041,592],[335505,132024,592],[335442,132060,602],[335384,132104,592],[354743,150583,742],[356800,151199,652],[345740,92702,932],[343514,93125,802],[345687,92414,922],[343436,92795,742],[345640,92126,912],[343368,92463,682],[345601,91836,842],[343309,92129,632],[345569,91545,762],[345545,91254,712],[343259,91794,572],[343219,91457,552],[412228,30439,1252],[412047,30512,1232],[411212,29149,1182],[412402,30353,1282],[412571,30255,1282],[412732,30146,1312],[412885,30025,1342],[413028,29894,1352],[413163,29753,1382],[413287,29602,1402],[412347,27795,1562],[413400,29444,1422],[413501,29277,1452],[413590,29104,1492],[413667,28926,1522],[413731,28742,1552],[413782,28554,1552],[413820,28362,1582],[413843,28169,1602],[413853,27975,1612],[413850,27780,1622],[413832,27586,1632],[411271,30676,1172],[409779,31130,1102],[409363,29697,1092],[212250,125415,522],[216008,123105,532],[215919,122972,522],[208914,127547,542],[225516,96009,362],[207303,107998,812],[213557,99049,552],[194689,116743,1672],[194459,116620,1672],[194237,116482,1682],[255079,71701,462],[258704,74009,412],[254948,76213,392],[240277,81120,462],[256013,69861,482],[254478,70789,502],[245773,77637,472],[235157,84327,472],[226693,90152,452],[222647,92917,462],[226655,90093,462],[222400,93091,472],[218644,95645,492],[214423,98303,542],[209722,101664,642],[205079,104871,842],[209643,101561,642],[201657,107197,1032],[200203,115686,1522],[198606,116602,1542],[200264,115178,1502],[198740,116640,1532],[200167,115804,1532],[193635,115984,1702],[197932,108709,1222],[198210,116701,1552],[199715,108516,1162],[199601,108584,1162],[199483,108645,1162],[199361,108697,1172],[199236,108742,1172],[199108,108778,1182],[198847,108824,1192],[198978,108805,1182],[198581,108835,1212],[198714,108834,1212],[198449,108827,1212],[198317,108810,1222],[198187,108785,1222],[198058,108751,1222],[197810,108658,1222],[197690,108600,1212],[197575,108533,1212],[197465,108459,1202],[197360,108378,1202],[197028,108138,1192],[190242,111895,1192],[190220,111681,1192],[190255,112109,1192],[190258,112324,1192],[190251,112539,1192],[190235,112753,1192],[190209,112966,1192],[190173,113178,1192],[193060,116484,1752],[190080,113259,1192],[193824,116163,1702],[194025,116330,1702],[197732,116911,1552],[195171,116942,1672],[194927,116851,1672],[195934,117114,1642],[195421,117016,1662],[195676,117074,1652],[196194,117137,1632],[196715,117131,1612],[196454,117143,1612],[197231,117055,1582],[196974,117102,1592],[197484,116991,1572],[197975,116814,1552],[198429,116827,1552],[198522,116952,1552],[198336,117042,1552],[198242,116788,1552],[198459,117079,1552],[198357,117098,1552],[198469,116672,1542],[198628,116978,1552],[203798,112699,1222],[200352,115606,1522],[200461,115548,1522],[198459,117079,302],[198357,117098,302],[198628,116978,302],[365971,30040,512],[396563,22359,732],[406950,21506,1102],[409647,20421,1492],[411031,22219,1772],[411728,21558,1772],[412195,21926,1812],[411237,21223,1722],[410725,20920,1652],[410194,20653,1572],[406152,19831,1072],[409085,20226,1422],[408511,20070,1352],[407929,19951,1282],[407340,19872,1192],[406747,19832,1122],[351265,33468,902],[342527,36201,1392],[341927,36449,1402],[342081,37423,1502],[375782,28324,462],[374035,28756,482],[375902,28810,462],[394079,24825,652],[374155,29241,452],[278898,62413,382],[301937,49982,472],[302789,51567,402],[312350,45452,632],[322532,41520,1142],[320098,43188,992],[320259,43662,1002],[323181,43199,1142],[321992,42546,1112],[265178,70324,402],[279740,64003,332],[285454,60342,362],[287073,59467,362],[286835,59027,372],[285216,59903,372],[322153,43020,1082],[247005,102678,452],[247054,102644,452],[246886,102505,442],[326955,54973,262],[327912,54682,242],[327101,55451,282],[328057,55160,262],[299595,98925,622],[298891,99901,522],[282957,87976,562],[283687,87015,672],[282938,87999,562],[298874,99929,522],[282619,88154,562],[282649,88151,562],[298818,100245,532],[282589,88155,562],[298825,100277,532],[282559,88153,562],[298834,100308,532],[282529,88150,562],[298846,100339,532],[282499,88145,572],[298859,100369,542],[282470,88138,572],[298874,100397,542],[282441,88129,572],[298892,100425,532],[282412,88118,572],[298911,100452,532],[282385,88105,572],[298932,100477,542],[282359,88090,572],[298955,100500,542],[298979,100522,542],[282333,88074,572],[282679,88146,562],[298814,100212,532],[282709,88140,562],[298812,100180,532],[282738,88131,562],[298812,100147,532],[282766,88121,562],[282794,88108,562],[298814,100114,522],[282821,88094,562],[298818,100082,522],[282847,88079,562],[298825,100050,532],[282871,88061,562],[298834,100018,532],[282895,88042,562],[298845,99988,532],[282917,88021,562],[298858,99958,522],[395891,40226,612],[395949,40449,602],[379566,43291,332],[396360,38553,622],[397535,37371,642],[405142,35236,812],[410361,36326,1032],[364770,47557,362],[410949,37519,1052],[406904,35593,872],[421073,31517,1722],[421120,33600,1812],[421232,33562,1822],[421347,33531,1822],[421463,33508,1822],[421319,31495,1742],[421581,33494,1862],[421648,31492,1772],[421700,33488,1872],[421908,31511,1802],[421818,33490,1872],[422165,31548,1812],[421936,33500,1892],[422419,31603,1842],[422053,33519,1902],[422545,31637,1852],[422169,33545,1922],[422877,31752,1882],[422283,33580,1942],[423352,31983,1912],[422501,33672,1952],[422393,33622,1952],[423502,32075,1922],[423039,31821,1892],[423197,31898,1902],[422713,31690,1862],[422293,31573,1822],[422037,31527,1802],[421778,31499,1782],[421566,31490,1762],[421483,31490,1752],[421401,31491,1742],[421237,31500,1742],[421155,31508,1722],[348983,52182,362],[348144,53446,442],[220984,140590,492],[220973,140621,492],[212913,135136,492],[216578,137773,552],[256179,166943,682],[249523,162070,682],[220983,140295,492],[220972,140264,492],[246405,159812,642],[243156,157445,632],[239842,155080,612],[232736,149658,572],[229373,147250,552],[220656,141135,632],[209424,128500,542],[210550,133409,482],[211646,134210,482],[209330,128369,542],[209859,132903,482],[206270,130279,552],[209806,132976,482],[210497,133481,482],[252854,164461,672],[212865,135200,492],[211599,134274,492],[217093,137638,512],[216891,137779,542],[216776,137918,562],[216728,137883,572],[216915,137753,542],[216941,137729,532],[216969,137706,532],[216998,137686,532],[217028,137668,532],[217060,137652,512],[220818,140051,502],[217127,137627,502],[217474,137650,502],[217161,137618,502],[217196,137611,502],[217231,137607,502],[217267,137606,502],[217303,137607,502],[217338,137611,502],[217407,137626,502],[217373,137617,502],[217441,137637,502],[217506,137666,502],[217537,137684,502],[217566,137704,502],[235877,151953,602],[220843,140073,502],[220867,140096,502],[220889,140121,502],[220909,140147,502],[220928,140175,492],[220945,140203,492],[220960,140233,492],[220992,140327,492],[220999,140360,492],[221003,140393,492],[259396,169320,722],[221005,140426,492],[221005,140459,492],[221003,140492,492],[220999,140525,492],[220992,140558,492],[220960,140652,492],[220945,140682,492],[220929,140710,492],[220910,140738,502],[229344,147290,552],[232724,149674,572],[252842,164477,672],[262542,171646,732],[265991,174194,752],[266506,174628,752],[266473,174598,752],[266567,174694,752],[266538,174660,752],[266594,174730,752],[266618,174767,752],[266640,174806,752],[266660,174847,752],[266676,174889,752],[266690,174931,752],[266701,174975,752],[266709,175019,752],[260858,183141,922],[260913,183097,922],[264493,187881,1022],[260801,183182,922],[260740,183218,922],[260678,183251,922],[260613,183279,932],[260371,179736,832],[259460,182988,892],[257961,182977,832],[256522,186946,982],[260199,183348,922],[260269,183348,922],[260129,183343,922],[258929,183685,892],[259990,183318,922],[260059,183333,922],[259922,183298,922],[259856,183274,902],[259792,183245,902],[259730,183212,892],[259670,183175,892],[259613,183134,892],[259558,183089,892],[259507,183040,892],[261334,180452,962],[260547,183302,932],[249385,196614,1112],[250198,197652,1112],[249165,196912,1112],[257426,197444,1102],[255043,200668,1172],[254823,200966,1172],[265000,182896,982],[265037,182926,992],[267041,184434,1112],[264965,182864,982],[264932,182829,982],[264902,182792,972],[264874,182753,972],[264849,182712,972],[264827,182670,972],[264808,182626,972],[264792,182581,972],[264779,182536,962],[264769,182489,962],[264762,182442,962],[264759,182394,952],[264758,182346,952],[264761,182299,952],[264768,182251,952],[264898,181947,952],[266580,175527,762],[267309,178734,882],[264777,182205,942],[264790,182158,942],[264806,182113,942],[264824,182070,952],[264846,182027,942],[264871,181986,942],[266714,175063,762],[267339,178697,882],[267372,178661,892],[267407,178629,892],[267444,178598,892],[267483,178570,892],[267524,178545,892],[267566,178523,892],[266606,175490,762],[266683,175329,762],[266668,175371,762],[266696,175286,762],[266705,175242,762],[267892,178455,892],[267844,178455,892],[267796,178458,892],[267940,178458,892],[267988,178464,892],[268035,178474,892],[268081,178487,892],[268126,178503,892],[268170,178522,892],[268254,178569,892],[268213,178544,892],[268293,178597,892],[270253,180087,832],[271547,178335,762],[271710,178182,732],[271580,178359,772],[272535,179066,772],[272666,178889,762],[274839,180771,742],[277156,182212,712],[277025,182388,712],[283431,186868,742],[295247,195643,742],[278872,183756,792],[279003,183579,732],[281071,185383,742],[283306,187036,742],[278064,182884,762],[287812,190371,802],[285362,188558,752],[285487,188389,752],[284328,187532,752],[290300,191913,752],[290157,192106,762],[292085,193231,752],[291942,193424,762],[295126,195805,832],[295958,196427,832],[296079,196265,732],[296660,196952,892],[299623,198624,732],[299367,198969,732],[301147,199759,732],[304746,202976,962],[300890,200104,832],[305257,203357,1002],[306981,202087,942],[305449,203549,1002],[316409,166357,942],[254067,190271,1012],[260340,183344,922],[260410,183335,922],[260479,183321,922],[262091,191131,1042],[267749,178465,892],[266716,175153,762],[266716,175108,752],[266712,175198,762],[267702,178475,892],[267656,178488,892],[266650,175412,762],[266629,175452,762],[267610,178504,892],[259762,194284,1122],[251800,193342,1032],[299507,64918,332],[223334,99266,352],[223042,98877,372],[224503,97913,362],[224778,98330,352],[366155,65749,512],[359264,61139,492],[365845,66151,512],[367650,67356,522],[252428,98951,452],[252378,98985,452],[252482,98659,452],[255596,96481,432],[263460,86380,392],[257498,95150,442],[270215,86535,542],[267332,88559,482],[270460,86380,512],[270715,86241,522],[270978,86117,522],[271248,86011,522],[271805,85850,522],[271524,85922,532],[272090,85796,512],[272378,85759,502],[272668,85741,502],[272958,85741,502],[273248,85759,502],[273536,85796,512],[219752,120445,532],[151306,157800,452],[151226,157827,452],[150041,154264,452],[195848,135129,562],[200118,128661,532],[206474,125293,602],[171790,147208,452],[167587,149220,452],[169022,144673,452],[151147,157859,452],[151098,157882,452],[193853,131871,442],[198805,129361,522],[151050,157908,452],[151003,157936,452],[192521,132574,452],[180781,142770,452],[175639,141261,452],[180548,138726,452],[184873,140849,582],[181886,138045,452],[186763,135532,452],[150958,157965,452],[150914,157997,452],[154931,155724,452],[154872,155777,452],[152626,153089,452],[163996,147235,452],[154637,156095,452],[151365,153663,452],[151557,157754,452],[143624,157171,452],[144974,156568,452],[145217,160382,452],[150830,158066,452],[144993,160478,452],[163703,151281,452],[162677,147908,452],[150871,158031,452],[170322,143972,452],[174348,141937,452],[183469,141484,452],[188053,134856,452],[192335,137111,582],[151389,157779,452],[151472,157763,452],[151642,157750,452],[151727,157752,452],[151812,157760,452],[151896,157774,452],[154574,156241,452],[151978,157793,452],[154551,156317,452],[152060,157818,452],[154532,156394,452],[152139,157849,452],[154519,156472,452],[152216,157885,452],[154511,156551,452],[152290,157927,452],[154509,156631,452],[152362,157973,452],[154511,156710,452],[152430,158024,452],[154520,156789,452],[152494,158080,452],[154533,156867,452],[152554,158140,452],[154551,156945,452],[152610,158204,452],[154575,157020,452],[152661,158272,452],[154604,157095,452],[152708,158343,452],[154638,157166,452],[154676,157236,452],[156440,151121,452],[155059,155630,452],[154603,156167,452],[161766,152236,452],[157729,150482,452],[154675,156025,452],[154718,155958,452],[154765,155894,452],[154816,155834,452],[154993,155675,452],[167633,149309,452],[183909,142337,452],[185313,141702,452],[184091,142477,452],[185396,141862,452],[259207,94954,462],[259756,94587,492],[316441,195369,712],[319146,198121,862],[318791,198466,912],[318585,198668,922],[315921,195876,772],[309955,60558,342],[310884,60199,342],[310137,61024,352],[311063,60666,352],[423570,26101,1872],[424807,26973,1892],[329938,122108,542],[329634,122505,532],[326579,120163,532],[326883,119766,582],[359046,159364,782],[322026,195323,842],[356367,156500,622],[318866,193009,672],[363678,149155,632],[366223,152404,832],[363152,149652,652],[365999,152622,842],[366540,152098,802],[329586,54172,242],[330542,53880,242],[330688,54359,262],[329731,54650,262],[206755,123828,512],[207029,124246,552],[208303,122815,472],[208577,123233,502],[444290,46040,1992],[443536,45499,2002],[449333,53632,1692],[449067,52743,1702],[448743,51874,1742],[448363,51027,1762],[447928,50208,1782],[447440,49418,1792],[446902,48663,1832],[446315,47944,1862],[445682,47266,1892],[445006,46630,1962],[424931,33035,1952],[449540,54536,1672],[449774,56376,1572],[449687,55453,1612],[449800,57304,1542],[449669,59154,1392],[449765,58231,1452],[449513,60068,1412],[449022,61857,1282],[449297,60971,1312],[448690,62723,1252],[447858,64381,1212],[448301,63566,1222],[447363,65166,1172],[446817,65916,1162],[435106,80948,882],[434882,81223,872],[434657,81497,872],[434430,81769,872],[434202,82041,862],[433972,82311,862],[433741,82579,902],[433508,82847,912],[325532,83333,522],[326449,82121,502],[343424,30584,1152],[344465,31412,1092],[344179,31591,1102],[339575,31588,1312],[338812,30725,1302],[339045,31105,1312],[338893,30920,1302],[339210,31279,1302],[339387,31440,1312],[339773,31723,1302],[339980,31843,1302],[340196,31949,1292],[340418,32039,1292],[340646,32112,1272],[340878,32170,1272],[341114,32210,1262],[341353,32234,1262],[341592,32241,1252],[341930,32240,1242],[342267,32216,1212],[342601,32168,1192],[342931,32098,1162],[343255,32004,1152],[343573,31888,1122],[343881,31750,1112],[247227,102525,452],[252197,99110,452],[222150,100066,372],[221357,100589,382],[221874,99649,392],[221081,100172,412],[422965,34043,1962],[424313,32620,1942],[422671,33774,1952],[422735,33822,1962],[422796,33873,1962],[422855,33927,1962],[422911,33984,1962],[426973,36090,2142],[429671,39176,2272],[430643,86045,902],[432818,83617,922],[302436,101751,652],[302853,102692,612],[278498,83124,552],[278426,83524,552],[278440,83333,552],[278424,83716,552],[278434,83907,562],[278457,84098,562],[278493,84286,562],[278540,84472,562],[278600,84654,562],[278671,84832,562],[278754,85005,562],[278848,85172,562],[278952,85333,562],[279067,85487,562],[279192,85632,562],[279325,85770,562],[279468,85898,572],[279618,86017,572],[279776,86126,572],[303154,102293,622],[350856,138826,632],[337791,129711,502],[329659,123529,472],[329634,123513,472],[329686,123543,472],[329713,123556,472],[329799,123582,472],[329741,123567,472],[329769,123575,472],[330166,123495,472],[329828,123587,472],[329858,123590,472],[329888,123591,472],[329918,123590,472],[329948,123587,472],[330006,123575,472],[329977,123582,472],[330035,123566,472],[330063,123556,472],[330090,123543,472],[330116,123529,472],[330142,123513,472],[330249,123409,482],[330189,123475,472],[330210,123455,472],[330230,123432,482],[337704,129082,492],[338422,128116,552],[337687,129110,492],[337671,129139,492],[337658,129170,492],[337767,129689,502],[337647,129201,492],[337631,129265,492],[337638,129232,492],[337626,129298,492],[337624,129331,492],[337626,129397,492],[337624,129364,492],[337631,129429,502],[337637,129462,502],[337646,129494,502],[337658,129525,502],[337686,129584,502],[337671,129555,502],[337723,129639,502],[337704,129612,502],[337744,129665,502],[351794,138926,652],[352862,137530,692],[353702,138240,702],[351485,139320,642],[359376,149595,712],[358884,149070,692],[359486,149727,712],[359605,149850,712],[359732,149965,712],[359867,150070,712],[360334,150303,712],[360010,150166,712],[360159,150251,712],[360313,150326,712],[355848,140053,702],[354030,138517,702],[355919,139969,702],[354101,138433,722],[351165,138432,642],[353773,138156,722],[352933,137446,692],[352541,137259,682],[343425,129873,632],[343001,129549,632],[344126,130214,632],[343521,129760,632],[353399,119443,822],[340791,127816,612],[341194,128125,612],[340868,127673,652],[330990,122460,532],[356717,146927,632],[279941,86224,572],[302165,102163,622],[362793,149991,652],[362670,150085,662],[362541,150170,662],[362406,150247,662],[363603,154945,872],[362267,150315,662],[362124,150374,662],[361978,150424,662],[361828,150464,662],[361677,150495,672],[361523,150515,672],[361369,150526,682],[361214,150527,682],[361059,150518,682],[359738,150964,702],[360906,150499,692],[360754,150470,692],[360604,150432,692],[360457,150383,712],[294055,68338,422],[291697,69046,442],[294293,68778,412],[292209,69338,432],[292447,69777,402],[428669,88250,802],[418059,103217,922],[411165,103390,762],[429116,87750,842],[432632,90982,962],[403849,116096,892],[406737,107414,842],[406656,113482,912],[409480,110886,922],[407983,106244,792],[412322,108310,922],[415182,105754,922],[410521,103952,762],[401060,118730,892],[398290,121383,862],[409881,104519,772],[409245,105090,792],[408612,105665,772],[407358,106827,812],[364250,148615,632],[429819,86966,882],[289151,75734,432],[290221,75093,442],[290331,75121,442],[290241,75084,442],[290328,75116,442],[290321,75108,442],[290325,75112,442],[290309,75097,442],[290317,75104,442],[290313,75100,442],[290300,75091,442],[290304,75094,442],[290290,75086,442],[290295,75088,442],[290268,75082,442],[290279,75083,442],[290285,75085,442],[290274,75082,442],[290257,75082,442],[290263,75082,442],[290252,75082,442],[290246,75083,442],[290226,75090,442],[290236,75086,442],[290231,75088,442],[253950,93075,402],[254871,92473,432],[255144,92891,442],[254223,93493,412],[306706,61398,322],[307005,61271,322],[311692,59414,352],[311210,59594,332],[310728,59777,332],[310246,59962,332],[309287,60338,332],[309766,60149,332],[308507,60650,332],[308206,60773,332],[307905,60896,332],[307605,61020,332],[307305,61145,322],[305934,61751,302],[304396,62473,292],[305164,62109,292],[303632,62842,302],[302869,63217,282],[302110,63597,312],[308808,60529,332],[206172,130208,552],[200466,133622,622],[196296,135922,612],[196357,135946,612],[196321,135967,612],[196375,135981,612],[394186,25234,682],[394336,25809,662],[393853,25935,682],[393700,25354,1012],[394186,25234,582],[394336,25809,582],[393853,25935,302],[393700,25354,302],[292875,74437,4272],[376887,96647,4082],[380852,92275,2962],[353399,119443,852],[393947,89661,2682],[393914,89211,2632],[398060,92763,2772],[397763,92930,2622],[109839,170332,1462],[84315,182093,4622],[56356,193967,1462],[80933,183588,4622],[79290,184314,4622],[90847,179206,4622],[85658,181499,4622],[92227,178597,4622],[97198,176400,4622],[98554,175801,4622],[105022,172942,4622],[110018,170734,4622],[110124,170687,4622],[103661,173544,4622],[116519,167817,4622],[111466,170084,4622],[117862,167214,4622],[118387,166497,1462],[118568,166898,4622],[122966,164908,4622],[122940,164437,1462],[123121,164838,4622],[124311,164300,4622],[129417,161992,4622],[130773,161379,4622],[136520,158781,4622],[137840,158184,4622],[150645,151912,1462],[143023,155841,4622],[149442,152939,4622],[144370,155232,4622],[150767,152340,4622],[151603,151960,4622],[151411,151564,1462],[155771,149819,4622],[157051,149162,4622],[162012,146614,4622],[170859,141575,1462],[163330,145937,4622],[168347,143360,4622],[169661,142685,4622],[171061,141966,4622],[173670,140621,4622],[202997,125016,1462],[187383,133556,4622],[174966,139954,4622],[179877,137423,4622],[181212,136736,4622],[186088,134223,4622],[199440,127344,4262],[203013,125062,1462],[191843,131258,4622],[193182,130568,3432],[198117,128025,542],[203223,125341,1442],[203289,125360,1442],[203051,125040,1512],[45057,199557,1462],[41760,201133,1462],[41570,200736,1462],[51565,196585,1462],[47449,197938,1462],[45237,199473,1462],[44868,199160,1462],[37528,200891,1462],[37801,201385,1462],[37291,200905,1462],[37577,201848,1462],[37063,200919,1462],[47633,198338,1462],[50215,197187,1462],[56500,194385,1462],[62904,191555,1462],[57874,193778,1462],[64241,190964,1462],[69423,188674,1462],[70776,188076,1462],[77937,184911,1462],[199440,127344,462],[203013,125062,302],[202997,125016,302],[170859,141575,302],[151411,151564,302],[150645,151912,302],[122940,164437,302],[118387,166497,302],[109839,170332,302],[56356,193967,302],[47449,197938,302],[44868,199160,302],[41570,200736,302],[37801,201385,302],[37528,200891,302],[37291,200905,302],[37063,200919,302],[324056,155427,3832],[324427,154656,3582],[325475,153356,3422],[325861,152562,2962],[326068,152454,2962],[322708,157380,4352],[323304,156296,3782],[323191,156461,3822],[322619,157296,4352],[324232,154764,3702],[324344,154599,3582],[324314,154821,3812],[321870,158389,3532],[320633,160196,3812],[323108,156404,3742],[323221,156239,3782],[321989,158216,4222],[321906,158160,4222],[321787,158333,3522],[343001,129549,812],[343521,129760,1122],[343425,129873,1122],[343754,129442,2822],[350233,122953,2682],[344126,130214,652],[350436,122705,2682],[350357,122646,2682],[350141,122886,2682],[347282,126370,2702],[346993,126549,2702],[347205,126302,2722],[347070,126618,2722],[343653,129587,2822],[397364,24448,8652],[394079,24825,682],[398116,23817,7612],[400560,23612,8912],[399599,23429,7692],[401643,23328,6662],[410684,22585,1972],[411031,22219,1902],[406967,21935,1302],[406950,21506,1262],[392956,25106,4452],[391484,25470,4102],[386273,26759,7522],[384791,27125,7912],[373210,29990,6682],[358579,34042,722],[371725,30357,7242],[366354,31686,6762],[364842,32061,6862],[358289,33668,772],[359821,33303,7232],[353109,34868,1332],[351652,35205,1022],[344304,36909,1502],[342060,37870,1582],[342773,37263,1542],[342081,37423,1572],[337158,38508,1922],[336865,38611,1962],[336733,38425,1962],[337058,38087,1892],[336606,38246,1932],[341984,37446,1572],[379834,28352,7602],[378352,28719,7852],[397364,24448,582],[400560,23612,582],[401643,23328,582],[406967,21935,582],[410684,22585,582],[341984,37446,1502],[337058,38087,1812],[336606,38246,1852],[337158,38508,302],[336865,38611,302],[342060,37870,302],[358579,34042,302],[346486,145258,1022],[346327,144995,982],[346557,145188,972],[346260,145069,992],[344158,143185,1022],[343975,142927,982],[344225,143110,922],[343910,143003,982],[341797,141184,862],[341607,140898,822],[341862,141109,832],[341543,140975,832],[252428,98951,492],[252482,98659,472],[252378,98985,492],[252197,99110,492],[247227,102525,502],[246886,102505,472],[247054,102644,492],[247005,102678,492],[278221,135940,4842],[276701,138123,5122],[278139,135883,4842],[276619,138066,5122],[318001,163687,3052],[316456,166290,3052],[316353,166036,3012],[320453,160191,3812],[320135,159965,3812],[320274,159942,3812],[320192,159884,3812],[319993,160846,3532],[319903,160783,3502],[320219,160332,3812],[320309,160395,3542],[318328,163220,3052],[318238,163157,3072],[317911,163623,3012],[316131,166161,3012],[316263,165973,3012],[316409,166357,3052],[279268,131691,3432],[276896,134990,2602],[279186,131634,3232],[276815,134931,2602],[272872,140416,2542],[196359,117543,1772],[196064,117531,1742],[196194,117137,1722],[195771,117500,1852],[195934,117114,1722],[195480,117450,1852],[195676,117074,1722],[195194,117381,1882],[195421,117016,1772],[194912,117293,1852],[195171,116942,1772],[194637,117187,1912],[194927,116851,1852],[194369,117064,1922],[194689,116743,1852],[193621,116593,1922],[193060,116484,2032],[193635,115984,1802],[194237,116482,1882],[194109,116923,1952],[193860,116766,1952],[194025,116330,1842],[193824,116163,1822],[194459,116620,1852],[193226,116664,2032],[193366,116816,2432],[196454,117143,1722],[196715,117131,1722],[196654,117536,1772],[196974,117102,1692],[196948,117510,1772],[197231,117055,1692],[197239,117465,1772],[197484,116991,1682],[197527,117401,1942],[197732,116911,1682],[197810,117318,1942],[197975,116814,1612],[198087,117217,1942],[198336,117042,1622],[198357,117098,1622],[198242,116788,1602],[198210,116701,1602],[193621,116593,302],[193366,116816,302],[193860,116766,302],[194109,116923,302],[194369,117064,302],[194637,117187,302],[194912,117293,302],[195194,117381,302],[195480,117450,302],[195771,117500,302],[196064,117531,302],[196359,117543,302],[196654,117536,302],[196948,117510,302],[197239,117465,302],[197527,117401,302],[197810,117318,302],[198087,117217,302],[303548,184296,3732],[303384,184165,3732],[330564,147826,3302],[330394,147703,2992],[403757,31323,4542],[398913,32727,5392],[396028,33106,1302],[411897,27720,1962],[411755,27133,2082],[411963,27081,2302],[412347,27795,1932],[412163,27032,2302],[411212,29149,1332],[410963,28775,1382],[409363,29697,1812],[405190,30907,5162],[385483,36720,4082],[384109,37139,4082],[387110,35764,1172],[351518,47075,6702],[350119,47501,4952],[359329,44237,5552],[327384,53964,6282],[327057,54480,4972],[326946,54054,6522],[300430,64460,7352],[300277,64541,7262],[300405,64000,7482],[307653,60546,332],[307305,61145,342],[306542,61011,332],[305934,61751,1762],[305508,61485,1762],[299507,64918,6422],[295953,66770,8512],[299399,64531,6632],[294609,67470,7702],[294269,67219,6382],[303453,62463,6912],[302869,63217,6962],[302432,62966,7332],[302110,63597,7212],[301416,63478,7482],[301045,64140,7352],[290167,69875,9532],[288857,70586,7802],[285501,71995,6632],[272842,80283,412],[263460,86380,5572],[263220,86012,6322],[261355,87756,6212],[256738,90774,5452],[228270,109388,4532],[227022,110204,1522],[233370,105523,5972],[209394,121742,3952],[205365,124379,1312],[205339,124120,1462],[205225,123793,1502],[205296,123898,1312],[205140,123842,1522],[221192,114020,522],[205312,124246,1462],[205282,124282,1502],[210623,120937,2842],[215331,117856,5172],[216567,117047,5392],[222415,113219,5062],[250479,94866,5132],[232895,106360,4572],[233611,105891,5582],[234079,105586,5042],[238778,102514,3372],[239999,101716,4512],[244621,98695,4132],[245849,97892,4692],[251710,94061,5462],[255489,91591,4242],[276003,77699,492],[262577,86958,6112],[283548,73531,6542],[283175,73865,7042],[278316,76815,362],[276235,78078,392],[283587,73615,6542],[284422,73030,6942],[285686,72305,6632],[291697,69046,7772],[299977,64688,6632],[304478,61969,1792],[304396,62473,1792],[305164,62109,1782],[308769,60092,8472],[308507,60650,352],[300584,64380,7352],[300737,64300,7482],[300891,64220,7482],[301199,64061,7482],[301353,63982,7392],[310728,59777,7482],[309889,59650,8252],[311014,59219,7652],[309287,60338,7142],[303632,62842,6962],[312143,58801,8192],[311692,59414,7582],[313629,58715,7672],[313277,58394,8322],[314415,57999,8212],[312798,59010,7822],[307005,61271,342],[306706,61398,352],[307605,61020,342],[307905,60896,342],[308206,60773,342],[308808,60529,352],[309766,60149,7872],[310246,59962,7752],[311210,59594,7322],[312176,59236,7582],[312383,59160,7582],[312590,59085,6822],[313005,58936,7582],[313213,58862,7822],[313421,58788,7482],[343910,49392,5832],[326210,54287,7422],[318782,57059,8292],[317337,57516,6562],[324467,55302,6682],[325914,54843,6832],[326343,54707,6742],[327492,54391,4112],[330904,53352,5882],[332323,52920,5952],[337197,51436,5762],[338607,51007,6172],[345323,48962,5942],[371884,40867,4622],[356798,45467,5332],[358217,45035,4862],[359458,44658,5082],[363674,43372,5072],[365077,42944,5072],[370493,41292,6282],[377187,39250,4272],[378610,38816,4362],[394030,33685,5042],[391301,34964,4582],[387237,36185,1222],[395538,33248,1252],[394154,34107,1152],[392697,34545,4972],[396151,33529,1252],[397487,33141,5242],[411963,27081,582],[411897,27720,582],[410963,28775,582],[396028,33106,582],[394030,33685,302],[395538,33248,302],[387110,35764,302],[359329,44237,302],[327384,53964,302],[326946,54054,302],[326210,54287,302],[314415,57999,302],[313277,58394,302],[312143,58801,302],[311014,59219,302],[309889,59650,302],[308769,60092,302],[307653,60546,302],[306542,61011,302],[305508,61485,302],[304478,61969,302],[303453,62463,302],[302432,62966,302],[301416,63478,302],[300405,64000,302],[299399,64531,302],[294269,67219,302],[285501,71995,302],[276003,77699,302],[263220,86012,302],[233370,105523,302],[205296,123898,302],[205225,123793,302],[326343,54707,272],[327057,54480,252],[327492,54391,242],[359458,44658,222],[387237,36185,202],[394154,34107,622],[396151,33529,622],[285503,135734,2002],[345801,92988,962],[345545,91254,952],[345569,91545,952],[345687,92414,952],[343601,93452,952],[343436,92795,972],[343259,91794,962],[343514,93125,962],[343368,92463,972],[343309,92129,972],[343219,91457,962],[345640,92126,952],[345601,91836,952],[345740,92702,952],[421120,33600,2062],[410976,36624,2092],[410949,37519,2242],[422393,33622,2772],[422501,33672,2782],[422230,34029,2772],[421232,33562,2052],[422605,33729,2782],[422305,34065,2782],[422671,33774,2782],[422735,33822,11882],[422449,34150,2782],[422796,33873,11882],[422516,34200,11882],[422855,33927,11882],[422911,33984,11882],[422965,34043,11882],[422639,34312,11882],[422169,33545,2282],[422283,33580,2772],[422378,34105,2782],[422579,34254,11882],[422695,34374,11882],[422053,33519,2142],[421936,33500,2122],[421818,33490,2092],[421700,33488,2082],[421581,33494,2082],[421463,33508,2052],[421347,33531,2052],[410361,36326,1962],[393003,60152,2692],[392796,60099,1862],[393084,60846,2692],[392896,60958,2692],[340868,127673,662],[341194,128125,652],[340791,127816,752],[362409,71034,2532],[362380,70939,2532],[352933,137446,932],[352541,137259,842],[352862,137530,842],[354030,138517,872],[353702,138240,842],[354101,138433,3062],[395891,40226,792],[395949,40449,792],[219752,120445,562],[215919,122972,562],[216008,123105,582],[395875,32578,5362],[395385,32720,992],[395875,32578,582],[395385,32720,302],[289151,75734,452],[289063,75588,442],[290252,75082,452],[290246,75083,452],[290257,75082,452],[290263,75082,452],[290268,75082,452],[290274,75082,452],[290279,75083,452],[290285,75085,452],[290290,75086,452],[290295,75088,452],[290300,75091,452],[290304,75094,452],[290309,75097,452],[290313,75100,452],[290317,75104,452],[290325,75112,452],[290321,75108,452],[290328,75116,452],[290331,75121,452],[290241,75084,452],[290236,75086,452],[409557,102259,4242],[409292,102133,4242],[409354,102068,4242],[409227,102072,4242],[326449,82121,3372],[325532,83333,1492],[325515,83193,2962],[320326,78742,1472],[320188,78913,1472],[326387,82038,3372],[250654,81315,6982],[249072,82856,322],[243330,86254,7102],[218726,103261,1482],[210468,108685,9322],[213929,105898,8392],[253209,80121,7272],[251938,80455,7022],[292383,57648,1112],[279969,64367,342],[288102,59478,472],[295216,56078,452],[294017,56283,362],[301340,52800,552],[300012,53061,562],[302349,52290,1482],[301369,52331,1582],[305410,50826,512],[304384,51303,462],[306041,50155,582],[327778,42095,1482],[323319,43606,1152],[324918,42610,4132],[332366,40194,1482],[332604,39878,1482],[332733,40065,1482],[327833,41607,1482],[332212,39792,1482],[332480,39698,1482],[327627,41692,1482],[326381,42114,1502],[313297,47467,702],[318349,45064,942],[308517,49464,2062],[312248,47460,702],[323181,43199,1172],[307476,49907,602],[307421,49556,2062],[319792,44507,1102],[306440,50361,582],[313690,46863,662],[303364,51791,612],[302789,51567,1532],[276535,66305,432],[277506,65264,452],[295381,55550,452],[289453,58746,472],[262158,74373,1232],[256699,77840,8672],[259721,75576,412],[283665,61879,492],[282286,62626,452],[279740,64003,432],[276236,65983,452],[271725,68603,442],[270328,69414,442],[265921,71975,1002],[253177,80070,7272],[256272,77590,7882],[264641,72718,1042],[262387,74028,1362],[261987,74260,1302],[252980,79757,7362],[258320,76390,8642],[252943,79698,7272],[237103,90981,492],[227216,97644,402],[232240,93746,7662],[221049,101212,6412],[242225,87001,7102],[237866,89947,7272],[236637,90778,872],[231033,94561,7882],[226647,97516,6212],[225485,98283,462],[219784,102047,482],[215127,105110,7172],[209550,108771,8632],[208333,109567,8212],[207562,110595,872],[204051,113059,7092],[203798,112699,6512],[203383,112990,6572],[202163,113846,5912],[200517,115538,1652],[200264,115178,1572],[200461,115548,1622],[200510,115909,1662],[200352,115606,1622],[200203,115686,1622],[200167,115804,1622],[198606,116602,1602],[198740,116640,1602],[198628,116978,1632],[198522,116952,1622],[198469,116672,1612],[198429,116827,1622],[200641,115834,2422],[218726,103261,302],[210468,108685,302],[227216,97644,302],[237103,90981,302],[249072,82856,302],[253209,80121,302],[253177,80070,302],[256699,77840,302],[276535,66305,302],[279969,64367,302],[292383,57648,302],[295216,56078,302],[301340,52800,302],[302349,52290,302],[303364,51791,302],[304384,51303,302],[305410,50826,302],[306440,50361,302],[307476,49907,302],[308517,49464,302],[313297,47467,302],[323319,43606,302],[327778,42095,302],[332366,40194,302],[332733,40065,302],[259721,75576,372],[252943,79698,312],[252980,79757,312],[200510,115909,302],[200641,115834,302],[200517,115538,302],[204051,113059,302],[207562,110595,302],[402437,32695,762],[403162,31964,802],[402297,32215,762],[403301,32444,802],[356881,156000,642],[359586,158840,812],[359397,159023,792],[312514,39997,752],[307052,42634,562],[327452,40504,1482],[332020,39030,1482],[317316,36796,932],[317344,36669,932],[317280,36920,922],[317236,37043,922],[317185,37162,932],[317126,37277,922],[316510,37939,902],[317060,37389,922],[316988,37497,922],[316908,37599,902],[316823,37697,902],[316731,37789,902],[316634,37875,902],[291910,50575,522],[291869,50536,522],[295450,48711,522],[300882,45763,562],[285806,53958,482],[280066,57336,432],[276855,58770,452],[276900,58206,452],[276885,58144,452],[276912,58269,452],[276919,58332,452],[276922,58396,452],[276921,58459,452],[276916,58523,452],[276907,58586,452],[276893,58648,452],[276876,58710,452],[276829,58828,452],[276800,58885,452],[276768,58940,452],[276731,58992,452],[276692,59043,452],[276504,59214,452],[269565,63254,452],[276649,59090,452],[276604,59134,452],[276555,59176,452],[259151,69528,452],[258847,69711,452],[257536,68940,472],[311281,205817,1042],[308337,203259,952],[333384,30892,1522],[333347,32278,1692],[332412,32340,1832],[331860,30939,1732],[331565,31147,1792],[333333,32422,1702],[333120,33112,1792],[333051,33240,1802],[333181,32981,1772],[333232,32845,1752],[333275,32707,1732],[333309,32565,1712],[421829,19506,1692],[358400,153532,652],[358236,152829,662],[358288,152965,662],[358331,153103,652],[358364,153244,652],[358387,153387,652],[358403,153677,652],[358396,153821,652],[358379,153965,652],[358352,154108,652],[358315,154248,662],[358269,154385,662],[358213,154519,662],[358148,154648,662],[358074,154773,662],[357992,154893,672],[357902,155006,662],[393098,34882,582],[394683,34423,632],[394822,34903,632],[393237,35363,592],[348341,48356,232],[349824,47905,252],[349969,48383,272],[348486,48835,242],[230260,108503,382],[228838,109434,372],[229112,109852,402],[230534,108921,402],[213933,97525,532],[213804,97510,532],[213888,97456,532],[213577,97525,532],[213744,97418,532],[213086,97997,532],[213015,97887,532],[212935,98117,532],[212925,98100,532],[212911,98134,532],[374942,40458,252],[375088,40936,252],[375803,40195,242],[375948,40673,252],[380002,21941,612],[398932,17371,902],[404592,15331,1102],[421828,13966,1252],[430725,11517,802],[431619,14278,722],[421452,18085,1562],[419912,12177,1262],[421440,17888,1532],[421445,18053,1552],[421439,18020,1542],[421436,17987,1542],[421436,17954,1542],[421437,17921,1532],[421446,17855,1522],[421454,17823,1522],[421464,17792,1522],[421476,17761,1522],[421271,13747,1262],[421490,17731,1522],[421290,13775,1262],[421506,17702,1522],[421310,13802,1262],[421524,17674,1512],[421333,13827,1262],[421544,17647,1512],[421357,13851,1262],[421565,17622,1512],[421382,13873,1262],[421588,17598,1512],[421409,13893,1262],[421613,17576,1512],[421438,13912,1262],[421639,17556,1512],[421467,13928,1262],[421666,17537,1512],[421498,13943,1262],[421695,17520,1512],[421529,13955,1262],[421724,17505,1512],[421561,13965,1262],[421755,17492,1502],[421594,13973,1262],[421786,17481,1502],[431652,14381,722],[421795,13974,1252],[421762,13979,1252],[421728,13983,1252],[421694,13984,1262],[421661,13982,1262],[421627,13979,1262],[420438,12403,1262],[420401,12351,1262],[420420,12376,1262],[420380,12326,1262],[420357,12304,1262],[420008,12166,1272],[420282,12244,1262],[420333,12282,1262],[420308,12262,1262],[420225,12213,1262],[420254,12228,1262],[420103,12174,1272],[420196,12201,1262],[420166,12190,1272],[420135,12181,1272],[420040,12167,1272],[420072,12170,1272],[419944,12171,1262],[419976,12168,1272],[392042,18841,792],[360992,27051,682],[389862,19381,752],[384952,20541,702],[389822,19251,752],[354082,28711,832],[349983,29878,942],[336523,37578,1772],[336204,37681,1802],[361864,160305,1002],[361436,160726,1002],[451507,24162,319],[451276,24197,364],[451207,23798,115],[450480,23984,240],[445669,22538,203],[446415,22805,235],[446652,22913,417],[446213,22650,111],[448925,23487,364],[449970,23529,52],[453115,24653,89],[448466,23163,220],[451780,24087,172],[450167,23579,168],[452901,24633,163],[451080,23814,0],[430321,23631,8722],[430365,23803,8722],[429996,23895,9072],[429943,23728,8902],[430321,23631,582],[430365,23803,582],[429943,23728,582],[429996,23895,582],[428710,24676,8372],[435777,22464,2202],[428593,24242,8462],[427104,25150,8612],[425008,25732,1932],[428593,24242,582],[336733,38425,1082],[336204,37681,1632],[331565,31147,1082],[332412,32340,1102],[328220,33512,1002],[333051,33240,1112],[332020,39030,622],[331300,30774,1082],[331444,30977,1082],[327975,33156,1002],[329258,35019,972],[328101,33339,1002],[332480,39698,452],[332604,39878,382],[200470,115660,1102],[200548,115783,702],[205033,123903,312],[189816,119916,302],[184492,123415,302],[189294,120784,302],[130253,151529,302],[154810,138806,302],[189620,120352,302],[189750,119973,302],[47154,189841,302],[189519,120588,302],[189542,120552,302],[37358,194109,302],[189563,120514,302],[189597,120435,302],[117795,157892,302],[189610,120394,302],[189582,120475,302],[189493,120622,302],[189465,120654,302],[180927,125410,302],[189434,120685,302],[189402,120713,302],[189367,120739,302],[189332,120763,302],[110457,161471,302],[61038,183597,302],[178390,126782,302],[178358,126719,302],[102613,165129,302],[35137,196624,302],[35370,197035,302],[35133,197048,302],[34109,201094,302],[34902,197061,302],[31427,197258,302],[5140,198748,302],[16726,198091,302],[7604,202664,302],[3818,198823,302],[5816,202770,302],[454,199013,302],[2339,202976,302],[0,199039,302],[1893,203016,302],[2116,202996,302],[27862,197460,302],[18284,202031,302],[29109,197389,302],[30429,201312,302],[31374,201256,302],[428717,18508,582],[428329,18606,582],[423565,19536,582],[431330,17560,582],[437539,20918,582],[436053,17404,582],[433494,16900,582],[433831,16797,582],[435571,16266,582],[433830,16797,582],[432702,17142,582],[428649,18241,582],[428262,18340,582],[319540,199944,1102],[312772,206610,1132],[312422,206253,1112],[319190,199587,1022],[361264,160068,992],[360916,159709,972],[361598,159048,982],[361946,159407,992],[361224,161579,972],[359400,159725,802],[359374,159052,792],[359335,159113,792],[359354,159082,792],[359319,159145,792],[359293,159213,792],[359305,159179,792],[359283,159248,792],[359269,159393,792],[359276,159284,792],[359272,159320,792],[359269,159356,792],[359272,159429,792],[359284,159501,792],[359277,159465,792],[359294,159536,792],[359377,159697,802],[359338,159636,792],[359306,159570,792],[359321,159603,792],[359356,159667,792],[366248,152385,822],[366273,152369,822],[366300,152354,822],[366328,152341,822],[366357,152330,822],[366387,152321,822],[366417,152314,822],[366447,152310,812],[366478,152307,812],[366509,152307,812],[366540,152309,812],[366570,152313,812],[366600,152320,812],[366630,152328,812],[366659,152339,812],[366687,152351,812],[366714,152366,812],[366740,152382,812],[366765,152400,812],[366789,152420,812],[366811,152442,812],[366831,152465,812],[366850,152489,822],[367402,153019,892],[367421,153042,892],[367463,153084,892],[367441,153064,892],[367535,153136,892],[367485,153103,892],[367510,153121,892],[367673,153188,892],[367588,153163,892],[367561,153150,892],[367616,153173,892],[367644,153182,892],[367762,153196,892],[367703,153193,892],[367732,153196,892],[368101,153037,892],[367851,153187,892],[367792,153195,892],[367821,153192,892],[367908,153171,892],[367879,153180,892],[368013,153117,892],[367935,153160,892],[367962,153147,892],[367988,153133,892],[368060,153080,892],[368037,153099,892],[368081,153059,892],[368119,153014,892],[324524,199652,1122],[326002,198234,1092],[362088,162457,982],[362183,162694,982],[362108,162488,972],[362126,162520,972],[362142,162553,972],[362155,162587,982],[362167,162622,982],[362176,162658,982],[362187,162731,982],[362189,162768,982],[362188,162804,982],[362185,162841,982],[362180,162877,982],[362172,162913,982],[362162,162949,982],[362150,162984,972],[362135,163017,972],[362118,163050,972],[362099,163082,982],[362079,163112,982],[362056,163141,972],[362031,163168,972],[322313,201396,1152],[324314,199437,1052],[319480,198502,902],[319457,198478,892],[319432,198456,892],[319350,198400,892],[319406,198435,892],[319378,198417,892],[319193,198347,892],[319320,198385,892],[319257,198362,892],[319289,198372,892],[319225,198353,892],[318872,198407,902],[319160,198343,892],[319093,198342,892],[319126,198341,892],[319027,198350,892],[319060,198345,892],[318963,198366,882],[318994,198357,882],[318931,198378,892],[318901,198392,892],[318843,198425,912],[318817,198445,912],[311356,205881,1062],[425415,27382,1912],[426537,28136,1952],[453028,44443,2022],[427092,28509,1962],[366936,154569,982],[365942,154836,962],[366290,155195,982],[366588,154210,962],[317114,210987,1172],[316786,210574,1182],[316696,210515,1182],[316742,210543,1182],[316829,210607,1182],[316980,210760,1182],[317019,210813,1182],[316870,210642,1182],[317183,211242,1152],[316909,210679,1182],[316945,210719,1182],[317055,210869,1172],[317086,210927,1172],[317138,211049,1162],[317157,211112,1162],[317173,211177,1162],[317190,211308,1152],[423228,19154,1682]],"transform":{"scale":[0.001,0.001,0.001],"translate":[84616.468,447422.999,-0.452]}} \ No newline at end of file From b93175e1708e0246b40061ab111ed50aa1a5cb55 Mon Sep 17 00:00:00 2001 From: Stelios Vitalis Date: Mon, 20 Jun 2022 12:10:29 +0200 Subject: [PATCH 57/90] Fix issue with broken change in click 8.1.0 Fixes #140 --- cjio/cjio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cjio/cjio.py b/cjio/cjio.py index 76df5b2..625135a 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -55,7 +55,7 @@ def cli(context, input, ignore_duplicate_keys): context.obj = {"argument": input} -@cli.resultcallback() +@cli.result_callback() def process_pipeline(processors, input, ignore_duplicate_keys): extensions = ['.json', '.off', '.poly'] #-- input allowed try: From 1f8af7c1c25b99d049857dca2152ccb9caf4f12e Mon Sep 17 00:00:00 2001 From: Stelios Vitalis Date: Mon, 20 Jun 2022 12:34:15 +0200 Subject: [PATCH 58/90] Fix issue where `lod_filter` wouldn't work for number-like lods --- cjio/cityjson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 8f18885..d943634 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1621,7 +1621,7 @@ def filter_lod(self, thelod): re = [] if 'geometry' in self.j['CityObjects'][co]: for i, g in enumerate(self.j['CityObjects'][co]['geometry']): - if g['lod'] != thelod: + if str(g['lod']) != thelod: re.append(g) # print (g) for each in re: From 367ac5dfb73cc902c63783fea4f4623e3f44b80f Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 10:44:09 +0200 Subject: [PATCH 59/90] Add draft function to read CityJSONL from stdin works w/o appearances --- cjio/cityjson.py | 72 ++++++++++++++++++++++++++++++++----------- cjio/cjio.py | 79 +++++++++++++++++++++++++----------------------- 2 files changed, 96 insertions(+), 55 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index d943634..ef0d8de 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1,5 +1,6 @@ import os +import sys import re import json @@ -81,6 +82,32 @@ def load(path, transform: bool = True): cm.load_from_j(transform=transform) return cm +def readstdin(): + lcount = 1 + #-- read first line + j1 = json.loads(sys.stdin.readline()) + cm = CityJSON(j=j1) + if "CityObjects" not in cm.j: + cm.j["CityObjects"] = {} + if "vertices" not in cm.j: + cm.j["vertices"] = [] + try: + cm.validate() + except Exception as e: + # TODO: document this in a special webpage + raise IOError("First line of STDIN is not a valid CityJSON header.") + while True: + lcount += 1 + line = sys.stdin.readline() + if line != '': + j1 = json.loads(line) + # TODO: put CityJSONFeature schema and validate here? defensive programming? + if not( "type" in j1 and j1["type"] == 'CityJSONFeature'): + raise IOError("Line {} is not of type 'CityJSONFeature'.".format(lcount)) + cm.add_cityjsonfeature(j1) + else: + break + return cm def save(citymodel, path: str, indent: bool = False): """Save a city model to a CityJSON file @@ -189,6 +216,23 @@ def poly2cj(file): j.compress() return j +def update_geom_indices(a, offset): + for i, each in enumerate(a): + if isinstance(each, list): + update_geom_indices(each, offset) + else: + if each is not None: + a[i] = each + offset +def update_texture_indices(a, toffset, voffset): + for i, each in enumerate(a): + if isinstance(each, list): + update_texture_indices(each, toffset, voffset) + else: + if each is not None: + if i == 0: + a[i] = each + toffset + else: + a[i] = each + voffset class CityJSON: @@ -1092,6 +1136,17 @@ def decompress(self): else: return False + + def add_cityjsonfeature(self, j): + offset = len(self.j["vertices"]) + self.j["vertices"] += j["vertices"] + #-- add each CityObjects + for theid in j["CityObjects"]: + self.j["CityObjects"][theid] = j["CityObjects"][theid] + if 'geometry' in self.j['CityObjects'][theid]: + for g in self.j['CityObjects'][theid]['geometry']: + update_geom_indices(g["boundaries"], offset) + def merge(self, lsCMs): # decompress() everything @@ -1101,23 +1156,6 @@ def merge(self, lsCMs): # updates textures # updates materials ############################# - def update_geom_indices(a, offset): - for i, each in enumerate(a): - if isinstance(each, list): - update_geom_indices(each, offset) - else: - if each is not None: - a[i] = each + offset - def update_texture_indices(a, toffset, voffset): - for i, each in enumerate(a): - if isinstance(each, list): - update_texture_indices(each, toffset, voffset) - else: - if each is not None: - if i == 0: - a[i] = each + toffset - else: - a[i] = each + voffset #-- decompress current CM imp_digits = math.ceil(abs(math.log(self.j["transform"]["scale"][0], 10))) diff --git a/cjio/cjio.py b/cjio/cjio.py index 625135a..d1e7d88 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -57,46 +57,49 @@ def cli(context, input, ignore_duplicate_keys): @cli.result_callback() def process_pipeline(processors, input, ignore_duplicate_keys): - extensions = ['.json', '.off', '.poly'] #-- input allowed + extensions = ['.json', '.jsonl', '.off', '.poly'] #-- input allowed try: - f = click.open_file(input, mode='r', encoding='utf-8-sig') - extension = os.path.splitext(input)[1].lower() - if extension not in extensions: - raise IOError("File type not supported (only .json, .off, and .poly).") - #-- OFF file - if (extension == '.off'): - utils.print_cmd_status("Converting %s to CityJSON" % (input)) - cm = cityjson.off2cj(f) - #-- POLY file - elif (extension == '.poly'): - utils.print_cmd_status("Converting %s to CityJSON" % (input)) - cm = cityjson.poly2cj(f) - #-- CityJSON file - else: - utils.print_cmd_status("Parsing %s" % (input)) - cm = cityjson.reader(file=f, ignore_duplicate_keys=ignore_duplicate_keys) - if not isinstance(cm.get_version(), str): - str1 = "CityJSON version should be a string 'X.Y' (eg '1.0')" - raise click.ClickException(str1) - pattern = re.compile("^(\d\.)(\d)$") #-- correct pattern for version - pattern2 = re.compile("^(\d\.)(\d\.)(\d)$") #-- wrong pattern with X.Y.Z - if pattern.fullmatch(cm.get_version()) == None: - if pattern2.fullmatch(cm.get_version()) != None: - str1 = "CityJSON version should be only X.Y (eg '1.0') and not X.Y.Z (eg '1.0.1')" - raise click.ClickException(str1) - else: - str1 = "CityJSON version is wrongly formatted" + if input == 'stdin': + cm = cityjson.readstdin() + else: + f = click.open_file(input, mode='r', encoding='utf-8-sig') + extension = os.path.splitext(input)[1].lower() + if extension not in extensions: + raise IOError("File type not supported (only .json, .off, and .poly).") + #-- OFF file + if (extension == '.off'): + utils.print_cmd_status("Converting %s to CityJSON" % (input)) + cm = cityjson.off2cj(f) + #-- POLY file + elif (extension == '.poly'): + utils.print_cmd_status("Converting %s to CityJSON" % (input)) + cm = cityjson.poly2cj(f) + #-- CityJSON file + else: + utils.print_cmd_status("Parsing %s" % (input)) + cm = cityjson.reader(file=f, ignore_duplicate_keys=ignore_duplicate_keys) + if not isinstance(cm.get_version(), str): + str1 = "CityJSON version should be a string 'X.Y' (eg '1.0')" + raise click.ClickException(str1) + pattern = re.compile("^(\d\.)(\d)$") #-- correct pattern for version + pattern2 = re.compile("^(\d\.)(\d\.)(\d)$") #-- wrong pattern with X.Y.Z + if pattern.fullmatch(cm.get_version()) == None: + if pattern2.fullmatch(cm.get_version()) != None: + str1 = "CityJSON version should be only X.Y (eg '1.0') and not X.Y.Z (eg '1.0.1')" + raise click.ClickException(str1) + else: + str1 = "CityJSON version is wrongly formatted" + raise click.ClickException(str1) + if (cm.get_version() not in cityjson.CITYJSON_VERSIONS_SUPPORTED): + allv = "" + for v in cityjson.CITYJSON_VERSIONS_SUPPORTED: + allv = allv + v + "/" + str1 = "CityJSON version %s not supported (only versions: %s), not every operators will work.\nPerhaps it's time to upgrade cjio? 'pip install cjio -U'" % (cm.get_version(), allv) raise click.ClickException(str1) - if (cm.get_version() not in cityjson.CITYJSON_VERSIONS_SUPPORTED): - allv = "" - for v in cityjson.CITYJSON_VERSIONS_SUPPORTED: - allv = allv + v + "/" - str1 = "CityJSON version %s not supported (only versions: %s), not every operators will work.\nPerhaps it's time to upgrade cjio? 'pip install cjio -U'" % (cm.get_version(), allv) - raise click.ClickException(str1) - elif (cm.get_version() != cityjson.CITYJSON_VERSIONS_SUPPORTED[-1]): - str1 = "v%s is not the latest version, and not everything will work.\n" % cm.get_version() - str1 += "Upgrade the file with 'upgrade' command: 'cjio input.json upgrade save out.json'" - utils.print_cmd_alert(str1) + elif (cm.get_version() != cityjson.CITYJSON_VERSIONS_SUPPORTED[-1]): + str1 = "v%s is not the latest version, and not everything will work.\n" % cm.get_version() + str1 += "Upgrade the file with 'upgrade' command: 'cjio input.json upgrade save out.json'" + utils.print_cmd_alert(str1) except ValueError as e: raise click.ClickException('%s: "%s".' % (e, input)) except IOError as e: From 74cc469b2711ae4de878d0d3fcae3af4d067bf6b Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 10:44:30 +0200 Subject: [PATCH 60/90] Fix error in setup.py, comma missing --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0cf56fb..3bac926 100644 --- a/setup.py +++ b/setup.py @@ -31,8 +31,8 @@ 'Operating System :: Microsoft :: Windows' ], install_requires=[ - 'numpy' - 'Click>=8.1.0', + 'numpy', + 'Click>=8.1.0' ], extras_require={ 'develop': [ From 10161252875dde87a25ea12261364a7cde7f668e Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 16:13:42 +0200 Subject: [PATCH 61/90] Add a flat --suppress_msg to the reader operator so that nothing is sent to stdout this is to allow a "streaming option" for export and save, that is the result is sent to stdout (eg with jsonl it is very useful) --- cjio/cjio.py | 136 +++++++++++++++++++++++++++++++------------------- cjio/utils.py | 10 ---- 2 files changed, 84 insertions(+), 62 deletions(-) diff --git a/cjio/cjio.py b/cjio/cjio.py index d1e7d88..b36bb36 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -32,8 +32,9 @@ def handle_parse_result(self, ctx, opts, args): @click.version_option(version=cjio.__version__, prog_name=cityjson.CITYJSON_VERSIONS_SUPPORTED[-1], message="cjio v%(version)s; supports CityJSON v%(prog)s") @click.argument('input', cls=PerCommandArgWantSubCmdHelp) @click.option('--ignore_duplicate_keys', is_flag=True, help='Load a CityJSON file even if some City Objects have the same IDs (technically invalid file)') +@click.option('--suppress_msg', is_flag=True, help='Suppress all information/messages') @click.pass_context -def cli(context, input, ignore_duplicate_keys): +def cli(context, input, ignore_duplicate_keys, suppress_msg): """Process and manipulate a CityJSON model, and allow different outputs. The different operators can be chained to perform several processing in one step, the CityJSON model @@ -52,15 +53,15 @@ def cli(context, input, ignore_duplicate_keys): cjio myfile.city.json subset --id house12 save out.city.json cjio myfile.city.json crs_assign 7145 textures_remove export --format obj output.obj """ - context.obj = {"argument": input} + context.obj = {"argument": input, "suppress_msg": suppress_msg} @cli.result_callback() -def process_pipeline(processors, input, ignore_duplicate_keys): +def process_pipeline(processors, input, ignore_duplicate_keys, suppress_msg): extensions = ['.json', '.jsonl', '.off', '.poly'] #-- input allowed try: if input == 'stdin': - cm = cityjson.readstdin() + cm = cityjson.read_stdin() else: f = click.open_file(input, mode='r', encoding='utf-8-sig') extension = os.path.splitext(input)[1].lower() @@ -68,15 +69,15 @@ def process_pipeline(processors, input, ignore_duplicate_keys): raise IOError("File type not supported (only .json, .off, and .poly).") #-- OFF file if (extension == '.off'): - utils.print_cmd_status("Converting %s to CityJSON" % (input)) + print_cmd_status("Converting %s to CityJSON" % (input)) cm = cityjson.off2cj(f) #-- POLY file elif (extension == '.poly'): - utils.print_cmd_status("Converting %s to CityJSON" % (input)) + print_cmd_status("Converting %s to CityJSON" % (input)) cm = cityjson.poly2cj(f) #-- CityJSON file else: - utils.print_cmd_status("Parsing %s" % (input)) + print_cmd_status("Parsing %s" % (input)) cm = cityjson.reader(file=f, ignore_duplicate_keys=ignore_duplicate_keys) if not isinstance(cm.get_version(), str): str1 = "CityJSON version should be a string 'X.Y' (eg '1.0')" @@ -99,7 +100,7 @@ def process_pipeline(processors, input, ignore_duplicate_keys): elif (cm.get_version() != cityjson.CITYJSON_VERSIONS_SUPPORTED[-1]): str1 = "v%s is not the latest version, and not everything will work.\n" % cm.get_version() str1 += "Upgrade the file with 'upgrade' command: 'cjio input.json upgrade save out.json'" - utils.print_cmd_alert(str1) + print_cmd_alert(str1) except ValueError as e: raise click.ClickException('%s: "%s".' % (e, input)) except IOError as e: @@ -109,15 +110,14 @@ def process_pipeline(processors, input, ignore_duplicate_keys): @cli.command('info') -@click.pass_context @click.option('--long', is_flag=True, help='More gory details about the file.') -def info_cmd(context, long): +def info_cmd(long): """Output information about the dataset.""" def processor(cm): - utils.print_cmd_status('Information ⬇️') + print_cmd_status('Information ⬇️') s = linesep.join(cm.get_info(long=long)) - click.echo(s) - utils.print_cmd_status('Information ⬆️') + print_cmd_info(s) + print_cmd_status('Information ⬆️') return cm return processor @@ -278,18 +278,18 @@ def validate_cmd(): def processor(cm): if (cityjson.MODULE_CJVAL_AVAILABLE == False): str = "Validation skipped: Python module 'cjvalpy' not installed" - utils.print_cmd_alert(str) + print_cmd_alert(str) str = "To install it: https://www.github.com/cityjson/cjvalpy" - utils.print_cmd_warning(str) + print_cmd_warning(str) str = "Alternatively use the web-app: https://validator.cityjson.org" - utils.print_cmd_warning(str) + print_cmd_warning(str) raise click.ClickException('Abort.') - utils.print_cmd_status('Validation (with official CityJSON schemas)') + print_cmd_status('Validation (with official CityJSON schemas)') try: re = cm.validate() - click.echo(re) + print_cmd_info(re) except Exception as e: - utils.print_cmd_alert("Error: {}".format(e)) + print_cmd_alert("Error: {}".format(e)) return cm return processor @@ -306,7 +306,7 @@ def merge_cmd(filepattern): $ cjio myfile.city.json merge '/home/elvis/temp/*.json' save merged.city.json """ def processor(cm): - utils.print_cmd_status('Merging files') + print_cmd_status('Merging files') lsCMs = [] g = glob.glob(filepattern) for i in g: @@ -318,7 +318,7 @@ def processor(cm): except IOError as e: raise click.ClickException('Invalid file: "%s".' % (input)) if len(lsCMs) == 0: - click.echo("WARNING: No files to merge.") + print_cmd_info("WARNING: No files to merge.") else: cm.merge(lsCMs) return cm @@ -354,7 +354,7 @@ def subset_cmd(id, bbox, random, cotype, radius, exclude): cjio myfile.city.json subset --cotype LandUse --cotype Building save out.city.json """ def processor(cm): - utils.print_cmd_status('Subset of CityJSON') + print_cmd_status('Subset of CityJSON') s = copy.deepcopy(cm) if random is not None: s = s.get_subset_random(random, exclude=exclude) @@ -379,7 +379,7 @@ def vertices_clean_cmd(): Remove duplicate vertices + orphan vertices """ def processor(cm): - utils.print_cmd_status('Clean the file') + print_cmd_status('Clean the file') cm.remove_duplicate_vertices() cm.remove_orphan_vertices() return cm @@ -391,7 +391,7 @@ def materials_remove_cmd(): Remove all materials. """ def processor(cm): - utils.print_cmd_status('Remove all material') + print_cmd_status('Remove all material') cm.remove_materials() return cm return processor @@ -402,7 +402,7 @@ def textures_remove_cmd(): Remove all textures. """ def processor(cm): - utils.print_cmd_status('Remove all textures') + print_cmd_status('Remove all textures') cm.remove_textures() return cm return processor @@ -418,7 +418,7 @@ def crs_assign_cmd(newepsg): To reproject (and thus modify all the values of the coordinates) use reproject(). """ def processor(cm): - utils.print_cmd_status('Assign EPSG:%d' % newepsg) + print_cmd_status('Assign EPSG:%d' % newepsg) cm.set_epsg(newepsg) return cm return processor @@ -435,13 +435,13 @@ def crs_reproject_cmd(epsg): def processor(cm): if (cityjson.MODULE_PYPROJ_AVAILABLE == False): str = "Reprojection skipped: Python module 'pyproj' missing (to reproject coordinates)" - utils.print_cmd_alert(str) + print_cmd_alert(str) str = "Install it: https://pypi.org/project/pyproj/" - utils.print_cmd_warning(str) + print_cmd_warning(str) raise click.ClickException('Abort.') - utils.print_cmd_status('Reproject to EPSG:%d' % epsg) + print_cmd_status('Reproject to EPSG:%d' % epsg) if (cm.get_epsg() == None): - click.echo("WARNING: CityJSON has no EPSG defined, can't be reprojected.") + print_cmd_warning("WARNING: CityJSON has no EPSG defined, can't be reprojected.") else: cm.reproject(epsg) return cm @@ -464,10 +464,10 @@ def upgrade_cmd(digit): """ def processor(cm): vlatest = cityjson.CITYJSON_VERSIONS_SUPPORTED[-1] - utils.print_cmd_status('Upgrade CityJSON file to v%s' % vlatest) + print_cmd_status('Upgrade CityJSON file to v%s' % vlatest) re, reasons = cm.upgrade_version(vlatest, digit) if (re == False): - utils.print_cmd_warning("WARNING: %s" % (reasons)) + print_cmd_warning("WARNING: %s" % (reasons)) return cm return processor @@ -478,9 +478,15 @@ def textures_locate_cmd(): Output the location of the texture files. """ def processor(cm): - utils.print_cmd_status('Locate the textures') - loc = cm.get_textures_location() - click.echo(loc) + print_cmd_status('Locate the textures') + try: + loc = cm.get_textures_location() + if loc == None: + print_cmd_info("This file does not have textures") + else: + print_cmd_status(loc) + except Exception as e: + print_cmd_warning(e) return cm return processor @@ -494,7 +500,7 @@ def textures_update_cmd(newlocation, relative): Can be used if the texture files were moved to new directory. """ def processor(cm): - utils.print_cmd_status('Update location of textures') + print_cmd_status('Update location of textures') cm.update_textures_location(newlocation, relative=relative) return cm return processor @@ -514,7 +520,7 @@ def lod_filter_cmd(lod): """ def processor(cm): - utils.print_cmd_status('Filter LoD: "%s"' % lod) + print_cmd_status('Filter LoD: "%s"' % lod) cm.filter_lod(lod) return cm return processor @@ -530,7 +536,7 @@ def attribute_remove_cmd(attr): $ cjio myfile.city.json attribute_remove roofType info """ def processor(cm): - utils.print_cmd_status('Remove attribute: "%s"' % attr) + print_cmd_status('Remove attribute: "%s"' % attr) cm.remove_attribute(attr) return cm return processor @@ -548,7 +554,7 @@ def attribute_rename_cmd(oldattr, newattr): $ cjio myfile.city.json attribute_rename oldAttr newAttr info """ def processor(cm): - utils.print_cmd_status('Rename attribute: "%s" => "%s"' % (oldattr, newattr)) + print_cmd_status('Rename attribute: "%s" => "%s"' % (oldattr, newattr)) cm.rename_attribute(oldattr, newattr) return cm return processor @@ -572,7 +578,7 @@ def processor(cm): bbox = cm.translate(values=[], minimum_xyz=True) else: bbox = cm.translate(values=values, minimum_xyz=False) - utils.print_cmd_status('Translating the file by: (%f, %f, %f)' % (bbox[0], bbox[1], bbox[2])) + print_cmd_status('Translating the file by: (%f, %f, %f)' % (bbox[0], bbox[1], bbox[2])) return cm return processor @@ -586,10 +592,10 @@ def metadata_create_cmd(): Modify/update the dataset. """ def processor(cm): - utils.print_cmd_status('Create the +metadata-extended and populate it') + print_cmd_status('Create the +metadata-extended and populate it') _, errors = cm.update_metadata_extended(overwrite=True) for e in errors: - utils.print_cmd_warning(e) + print_cmd_warning(e) return cm return processor @@ -603,10 +609,10 @@ def metadata_update_cmd(overwrite): Modify/update the dataset. """ def processor(cm): - utils.print_cmd_status('Update the +metadata-extended') + print_cmd_status('Update the +metadata-extended') _, errors = cm.update_metadata_extended(overwrite) for e in errors: - utils.print_cmd_warning(e) + print_cmd_warning(e) return cm return processor @@ -628,7 +634,7 @@ def processor(cm): j.update(cm.get_metadata()) if cm.has_metadata_extended(): j.update(cm.get_metadata_extended()) - click.echo(json.dumps(j, indent=2)) + print_cmd_info(json.dumps(j, indent=2)) return cm return processor @@ -640,7 +646,7 @@ def metadata_remove_cmd(): Modify/update the dataset. """ def processor(cm): - utils.print_cmd_status('Remove the +metadata-extended property') + print_cmd_status('Remove the +metadata-extended property') cm.metadata_extended_remove() return cm return processor @@ -662,29 +668,55 @@ def triangulate_cmd(sloppy): """ #-- mapbox_earcut available? def processor(cm): - utils.print_cmd_status('Triangulate the CityJSON file') + print_cmd_status('Triangulate the CityJSON file') if (cityjson.MODULE_TRIANGLE_AVAILABLE == False): str = "Cannot triangulate: Python module 'triangle' missing. Stopping here." - utils.print_cmd_alert(str) + print_cmd_alert(str) str = "Install it: https://pypi.org/project/triangle/" - utils.print_cmd_warning(str) + print_cmd_warning(str) raise click.ClickException('Abort.') return cm if not(cm.is_triangulated()): if sloppy == True and cityjson.MODULE_EARCUT_AVAILABLE == False: str = "Cannot triangulate: Python module 'mapbox_earcut' missing. Stopping here." - utils.print_cmd_alert(str) + print_cmd_alert(str) str = "Install it: https://pypi.org/project/mapbox-earcut/" - utils.print_cmd_warning(str) + print_cmd_warning(str) raise click.ClickException('Abort.') else: cm.triangulate(sloppy) else: - utils.print_cmd_status('This file is already triangulated!') + print_cmd_status('This file is already triangulated!') return cm return processor + +@click.pass_context +def print_cmd_info(ctx, s): + if ctx.obj["suppress_msg"] == False: + click.secho(s) + +@click.pass_context +def print_cmd_status(ctx, s): + if ctx.obj["suppress_msg"] == False: + click.secho(s, bg='cyan', fg='black') + +@click.pass_context +def print_cmd_substatus(ctx, s): + if ctx.obj["suppress_msg"] == False: + click.secho(s, fg='cyan') + +@click.pass_context +def print_cmd_warning(ctx, s): + if ctx.obj["suppress_msg"] == False: + click.secho(s, reverse=True, fg='yellow') + +@click.pass_context +def print_cmd_alert(ctx, s): + click.secho(s, reverse=True, fg='red') + + # Needed for the executable created by PyInstaller if getattr(sys, 'frozen', False): cli(sys.argv[1:]) diff --git a/cjio/utils.py b/cjio/utils.py index 2996915..2aae6e2 100644 --- a/cjio/utils.py +++ b/cjio/utils.py @@ -30,15 +30,5 @@ def verify_filename(filename): return res -def print_cmd_status(s): - echo(style(s, bg='cyan', fg='black')) -def print_cmd_substatus(s): - echo(style(s, fg='cyan')) - -def print_cmd_warning(s): - echo(style(s, reverse=True, fg='yellow')) - -def print_cmd_alert(s): - echo(style(s, reverse=True, fg='red')) From 044b6ac6a936f1b1dc206fe2b4b1ba3c859016ed Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 16:14:02 +0200 Subject: [PATCH 62/90] Add stdout to save command --- cjio/cjio.py | 52 +++++++++++++++++++++++++++++++++------------------- 1 file changed, 33 insertions(+), 19 deletions(-) diff --git a/cjio/cjio.py b/cjio/cjio.py index b36bb36..2d7bae0 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -223,27 +223,41 @@ def processor(cm): type=str, help='Path to the new textures directory. This command copies the textures to a new location. Useful when creating an independent subset of a CityJSON file.') def save_cmd(filename, indent, textures): - """Save to a CityJSON file.""" + """Save to a CityJSON file. + + Save to a file on disk, or 'stdout' pipes the file to the standart output. + + Usage examples: + + \b + cjio myfile.city.json metadata_update save myfile.city.json + cjio myfile.json upgrade save stdout + """ def saver(cm): - output = utils.verify_filename(filename) - if output['dir']: - os.makedirs(output['path'], exist_ok=True) - input_filename = os.path.splitext(os.path.basename(cm.path))[0] - output['path'] = os.path.join(output['path'], '{f}.{ext}'.format( - f=input_filename, ext='json')) + stdoutoutput = False + if filename == 'stdout': + stdoutoutput = True else: - os.makedirs(os.path.dirname(output['path']), exist_ok=True) - - # try: - # if "metadata" in cm.j: - # cm.j["metadata"]["fileIdentifier"] = os.path.basename(output['path']) - # except: - # pass - - utils.print_cmd_status("Saving CityJSON to a file %s" % output['path']) - try: - fo = click.open_file(output['path'], mode='w') - if textures: + output = utils.verify_filename(filename) + if output['dir']: + os.makedirs(output['path'], exist_ok=True) + input_filename = os.path.splitext(os.path.basename(cm.path))[0] + output['path'] = os.path.join(output['path'], '{f}.{ext}'.format( + f=input_filename, ext='json')) + else: + os.makedirs(os.path.dirname(output['path']), exist_ok=True) + if stdoutoutput == True: + if indent: + json_str = json.dumps(cm.j, indent="\t") + sys.stdout.write(json_str) + else: + json_str = json.dumps(cm.j, separators=(',',':')) + sys.stdout.write(json_str) + else: + print_cmd_status("Saving CityJSON to a file %s" % output['path']) + try: + fo = click.open_file(output['path'], mode='w') + if textures: cm.copy_textures(textures, output['path']) if indent: json_str = json.dumps(cm.j, indent="\t") From 52d5250c23fec2870c6aca68c8c077f9f90374fe Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 16:14:24 +0200 Subject: [PATCH 63/90] Add stdout to export command --- cjio/cjio.py | 100 +++++++++++++++++++++++++++++++++------------------ 1 file changed, 65 insertions(+), 35 deletions(-) diff --git a/cjio/cjio.py b/cjio/cjio.py index 2d7bae0..a7caa42 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -132,6 +132,8 @@ def export_cmd(filename, format, sloppy): """Export to another format. OBJ, Binary glTF (glb), Batched 3DModel (b3dm), STL, JSONL (JSON Lines, for streaming). + The result can be stored either in a file, out piped to stdout (by choosing 'stdout' instead + of a file). Currently, textures are not supported, sorry. @@ -140,38 +142,58 @@ def export_cmd(filename, format, sloppy): \b cjio myfile.city.json export obj myfile.obj cjio myfile.city.json export --sloppy obj myfile.obj - cjio myfile.city.json export jsonl myfile.txt + cjio myfile.city.json export jsonl stdout """ def exporter(cm, sloppy): - output = utils.verify_filename(filename) - if output['dir']: - os.makedirs(output['path'], exist_ok=True) - input_filename = os.path.splitext(os.path.basename(cm.path))[0] - output['path'] = os.path.join(output['path'], '{f}.{ext}'.format( - f=input_filename, ext=format)) + stdoutoutput = False + if filename == 'stdout': + stdoutoutput = True else: - os.makedirs(os.path.dirname(output['path']), exist_ok=True) + output = utils.verify_filename(filename) + if output['dir']: + os.makedirs(output['path'], exist_ok=True) + input_filename = os.path.splitext(os.path.basename(cm.path))[0] + output['path'] = os.path.join(output['path'], '{f}.{ext}'.format( + f=input_filename, ext=format)) + else: + os.makedirs(os.path.dirname(output['path']), exist_ok=True) + #---------- OBJ ---------- if format.lower() == 'obj': - utils.print_cmd_status("Exporting CityJSON to OBJ (%s)" % (output['path'])) - try: - with click.open_file(output['path'], mode='w') as fo: - re = cm.export2obj(sloppy) - fo.write(re.getvalue()) - except IOError as e: - raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) + if stdoutoutput: + buf = cm.export2obj(sloppy) + buf.seek(0) + for l in buf.readlines(): + sys.stdout.write(l) + else: + print_cmd_status("Exporting CityJSON to OBJ (%s)" % (output['path'])) + try: + with click.open_file(output['path'], mode='w') as fo: + re = cm.export2obj(sloppy) + fo.write(re.getvalue()) + except IOError as e: + raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) + #---------- STL ---------- elif format.lower() == 'stl': - utils.print_cmd_status("Exporting CityJSON to STL (%s)" % (output['path'])) - try: - with click.open_file(output['path'], mode='w') as fo: - re = cm.export2stl(sloppy) - fo.write(re.getvalue()) - except IOError as e: - raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) + if stdoutoutput: + buf = cm.export2stl(sloppy) + buf.seek(0) + for l in buf.readlines(): + sys.stdout.write(l) + else: + print_cmd_status("Exporting CityJSON to STL (%s)" % (output['path'])) + try: + with click.open_file(output['path'], mode='w') as fo: + re = cm.export2stl(sloppy) + fo.write(re.getvalue()) + except IOError as e: + raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) + #---------- GLB ---------- elif format.lower() == 'glb': + #-- TODO: glb stdout necessary? fname = os.path.splitext(os.path.basename(output['path']))[0] bufferbin = "{}.glb".format(fname) binfile = os.path.join(os.path.dirname(output['path']), bufferbin) - utils.print_cmd_status("Exporting CityJSON to glb %s" % binfile) + print_cmd_status("Exporting CityJSON to glb %s" % binfile) glb = cm.export2glb() # TODO B: how many buffer can there be in the 'buffers'? try: @@ -180,34 +202,42 @@ def exporter(cm, sloppy): bo.write(glb.getvalue()) except IOError as e: raise click.ClickException('Invalid output file: "%s".\n%s' % (binfile, e)) + #---------- B3DM ---------- elif format.lower() == 'b3dm': + #-- TODO: b3dm stdout necessary? fname = os.path.splitext(os.path.basename(output['path']))[0] b3dmbin = "{}.b3dm".format(fname) binfile = os.path.join(os.path.dirname(output['path']), b3dmbin) b3dm = cm.export2b3dm() - utils.print_cmd_status("Exporting CityJSON to b3dm %s" % binfile) - utils.print_cmd_warning("Although the conversion works, the output is probably incorrect.") + print_cmd_status("Exporting CityJSON to b3dm %s" % binfile) + print_cmd_warning("Although the conversion works, the output is probably incorrect.") try: b3dm.seek(0) with click.open_file(binfile, mode='wb') as bo: bo.write(b3dm.getvalue()) except IOError as e: raise click.ClickException('Invalid output file: "%s".\n%s' % (binfile, e)) + #---------- JSONL ---------- elif format.lower() == 'jsonl': - utils.print_cmd_status("Exporting CityJSON to JSON Lines (%s)" % (output['path'])) - try: - with click.open_file(output['path'], mode='w') as fo: - re = cm.export2jsonl() - fo.write(re.getvalue()) - except IOError as e: - raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) - + if stdoutoutput: + buf = cm.export2jsonl() + buf.seek(0) + for l in buf.readlines(): + sys.stdout.write(l) + else: + print_cmd_status("Exporting CityJSON to JSON Lines (%s)" % (output['path'])) + try: + with click.open_file(output['path'], mode='w') as fo: + re = cm.export2jsonl() + fo.write(re.getvalue()) + except IOError as e: + raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) def processor(cm): if (format != 'jsonl') and (cityjson.MODULE_TRIANGLE_AVAILABLE == False): str = "OBJ|glTF|b3dm export skipped: Python module 'triangle' missing (to triangulate faces)" - utils.print_cmd_alert(str) + print_cmd_alert(str) str = "Install it: https://pypi.org/project/triangle/" - utils.print_cmd_warning(str) + print_cmd_warning(str) raise click.ClickException('Abort.') else: exporter(cm, sloppy) From a2e71b9147245a83fddea87e316a0ae20072a280 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 16:15:03 +0200 Subject: [PATCH 64/90] Clean and format code --- cjio/cityjson.py | 16 +++++----------- cjio/cjio.py | 18 +++++++++--------- 2 files changed, 14 insertions(+), 20 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index ef0d8de..b090770 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -45,7 +45,6 @@ from cjio import subset, geom_help, convert, models from cjio.errors import InvalidOperation -from cjio.utils import print_cmd_warning from cjio.metadata import generate_metadata @@ -82,7 +81,7 @@ def load(path, transform: bool = True): cm.load_from_j(transform=transform) return cm -def readstdin(): +def read_stdin(): lcount = 1 #-- read first line j1 = json.loads(sys.stdin.readline()) @@ -109,6 +108,7 @@ def readstdin(): break return cm + def save(citymodel, path: str, indent: bool = False): """Save a city model to a CityJSON file @@ -443,24 +443,22 @@ def dict_raise_on_duplicates(self, ordered_pairs): return d - def validate(self): #-- only latest version, otherwise a mess with versions and different schemas #-- this is it, sorry people if (self.j["version"] != CITYJSON_VERSIONS_SUPPORTED[-1]): s = "Only files with version v%s can be validated. " % (CITYJSON_VERSIONS_SUPPORTED[-1]) raise Exception(s) - #-- fetch extensions from the URLs given js = [] js.append(json.dumps(self.j)) - print("Downloading the Extension JSON schema file(s):") + # print("Downloading the Extension JSON schema file(s):") if "extensions" in self.j: for ext in self.j["extensions"]: theurl = self.j["extensions"][ext]["url"] try: with urllib.request.urlopen(self.j["extensions"][ext]["url"]) as f: - print("\t- %s" % self.j["extensions"][ext]["url"]) + # print("\t- %s" % self.j["extensions"][ext]["url"]) # s = theurl[theurl.rfind('/') + 1:] # s = os.path.join(os.getcwd(), s) # tmp = json.loads(f.read().decode('utf-8')) @@ -469,8 +467,6 @@ def validate(self): except: s = "'%s' cannot be downloaded\nAbort" % self.j["extensions"][ext]["url"] raise Exception(s) - else: - print("\t- None") val = cjvalpy.CJValidator(js) re = val.validate() return re @@ -805,10 +801,8 @@ def get_textures_location(self): raise NotADirectoryError("Texture directory '%s' not found" % d) return None else: - print("This file does not have textures") return None else: - print("This file does not have textures") return None @@ -878,7 +872,7 @@ def copy_textures(self, new_loc, json_path): self.update_textures_location(apath, relative=True) print("Textures copied to", apath) except IOError: - raise + raise IOError() finally: self.path = curr_path else: diff --git a/cjio/cjio.py b/cjio/cjio.py index a7caa42..5aa2b16 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -288,15 +288,15 @@ def saver(cm): try: fo = click.open_file(output['path'], mode='w') if textures: - cm.copy_textures(textures, output['path']) - if indent: - json_str = json.dumps(cm.j, indent="\t") - fo.write(json_str) - else: - json_str = json.dumps(cm.j, separators=(',',':')) - fo.write(json_str) - except IOError as e: - raise click.ClickException('Invalid output file: %s \n%s' % (output['path'], e)) + cm.copy_textures(textures, output['path']) + if indent: + json_str = json.dumps(cm.j, indent="\t") + fo.write(json_str) + else: + json_str = json.dumps(cm.j, separators=(',',':')) + fo.write(json_str) + except IOError as e: + raise click.ClickException('Invalid output file: %s \n%s' % (output['path'], e)) def processor(cm): saver(cm) From a36bea7377fce2fb7e7ea31cc50d45f0b9b4e1d6 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 16:33:29 +0200 Subject: [PATCH 65/90] =?UTF-8?q?Put=20new=20email=20Bal=C3=A1zs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3bac926..43a931f 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ long_description_content_type="text/x-rst", url='https://github.com/cityjson/cjio', author='Hugo Ledoux, Balázs Dukai', - author_email='h.ledoux@tudelft.nl, b.dukai@tudelft.nl', + author_email='h.ledoux@tudelft.nl, balazs.dukai@3dgi.nl', python_requires='>=3.6', packages=['cjio'], # include_package_data=True, From 56d9e08fcb0a2bb5b394c659c27f96a8491653ef Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 16:33:45 +0200 Subject: [PATCH 66/90] Remove validate for reading jsonl because it's an optional package and silly to require just for this --- cjio/cityjson.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index b090770..b496b82 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -90,11 +90,6 @@ def read_stdin(): cm.j["CityObjects"] = {} if "vertices" not in cm.j: cm.j["vertices"] = [] - try: - cm.validate() - except Exception as e: - # TODO: document this in a special webpage - raise IOError("First line of STDIN is not a valid CityJSON header.") while True: lcount += 1 line = sys.stdin.readline() From fa41e312a65313643134a6b74ef35be5fcbffb3e Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 16:34:33 +0200 Subject: [PATCH 67/90] Terminate the function to read jsonl from stdin with "appearances" --- cjio/cityjson.py | 55 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index b496b82..764b119 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1136,6 +1136,61 @@ def add_cityjsonfeature(self, j): for g in self.j['CityObjects'][theid]['geometry']: update_geom_indices(g["boundaries"], offset) + #-- materials + if ("appearance" in j) and ("materials" in j["appearance"]): + if ("appearance" in self.j) and ("materials" in self.j["appearance"]): + offset = len(self.j["appearance"]["materials"]) + else: + if "appearance" not in self.j: + self.j["appearance"] = {} + if "materials" not in self.j["appearance"]: + self.j["appearance"]["materials"] = [] + offset = 0 + #-- copy materials + for m in j["appearance"]["materials"]: + self.j["appearance"]["materials"].append(m) + #-- update the "material" in each Geometry + for theid in j["CityObjects"]: + for g in self.j['CityObjects'][theid]['geometry']: + if 'material' in g: + for m in g['material']: + if 'values' in g['material'][m]: + update_geom_indices(g['material'][m]['values'], offset) + else: + g['material'][m]['value'] = g['material'][m]['value'] + offset + #-- textures + if ("appearance" in j) and ("textures" in j["appearance"]): + if ("appearance" in self.j) and ("textures" in self.j["appearance"]): + toffset = len(self.j["appearance"]["textures"]) + voffset = len(self.j["appearance"]["vertices-texture"]) + else: + if "appearance" not in self.j: + self.j["appearance"] = {} + if "textures" not in self.j["appearance"]: + self.j["appearance"]["textures"] = [] + if "vertices-texture" not in self.j["appearance"]: + self.j["appearance"]["vertices-texture"] = [] + toffset = 0 + voffset = 0 + #-- copy vertices-texture + self.j["appearance"]["vertices-texture"] += j["appearance"]["vertices-texture"] + #-- copy textures + for t in j["appearance"]["textures"]: + self.j["appearance"]["textures"].append(t) + #-- update the "texture" in each Geometry + for theid in j["CityObjects"]: + for g in self.j['CityObjects'][theid]['geometry']: + if 'texture' in g: + for m in g['texture']: + if 'values' in g['texture'][m]: + update_texture_indices(g['texture'][m]['values'], toffset, voffset) + else: + raise KeyError(f"The member 'values' is missing from the texture '{m}' in CityObject {theid}") + + self.remove_duplicate_vertices() + self.remove_orphan_vertices() + self.update_bbox() + def merge(self, lsCMs): # decompress() everything From 74ed273972855bf986748edf8ce79a61030f59c3 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 8 Aug 2022 16:38:36 +0200 Subject: [PATCH 68/90] Cosmetic changes --- cjio/cjio.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/cjio/cjio.py b/cjio/cjio.py index 5aa2b16..9abcee2 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -31,8 +31,8 @@ def handle_parse_result(self, ctx, opts, args): @click.group(chain=True) @click.version_option(version=cjio.__version__, prog_name=cityjson.CITYJSON_VERSIONS_SUPPORTED[-1], message="cjio v%(version)s; supports CityJSON v%(prog)s") @click.argument('input', cls=PerCommandArgWantSubCmdHelp) -@click.option('--ignore_duplicate_keys', is_flag=True, help='Load a CityJSON file even if some City Objects have the same IDs (technically invalid file)') -@click.option('--suppress_msg', is_flag=True, help='Suppress all information/messages') +@click.option('--ignore_duplicate_keys', is_flag=True, help='Load a CityJSON file even if some City Objects have the same IDs (technically invalid file).') +@click.option('--suppress_msg', is_flag=True, help='Suppress all information/messages.') @click.pass_context def cli(context, input, ignore_duplicate_keys, suppress_msg): """Process and manipulate a CityJSON model, and allow @@ -703,12 +703,15 @@ def triangulate_cmd(sloppy): If the robust method fails (crash) then it is caused by invalid input. You can use the option '--sloppy' which uses a more lenient library (mapbox-earcut), - but watch out it is less robust (collapsed triangles could be created). + but watch out it is less robust (collapsed triangles could be created!). Takes care of updating: (1) semantics; (2) textures; (3) material. - $ cjio myfile.city.json triangulate save mytriangles.city.json - $ cjio myfile.city.json triangulate --sloppy save mytriangles.city.json + sage examples: + + \b + cjio myfile.city.json triangulate save mytriangles.city.json + cjio myfile.city.json triangulate --sloppy save mytriangles.city.json """ #-- mapbox_earcut available? def processor(cm): From 2b5ad2851481b95ec938aef0d69b3424b170fa0c Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 09:41:41 +0200 Subject: [PATCH 69/90] Fix metadata lineage pyunit test raised rightfully an error --- cjio/cityjson.py | 10 +++++----- tests/test_cityjson.py | 10 +++------- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 764b119..2f8fea9 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1820,7 +1820,6 @@ def add_lineage_item(self, description: str, features: list = None, source: list :param processor: A dict with contact information for the person that conducted the processing """ - nu = datetime.now() new_item = { "processStep": { @@ -1834,16 +1833,17 @@ def add_lineage_item(self, description: str, features: list = None, source: list new_item["source"] = source if isinstance(processor, dict): new_item["processStep"]["processor"] = processor - if not self.has_metadata(): - self.j["metadata"] = {} + if not self.has_metadata_extended(): + self.add_metadata_extended_property() if not "lineage" in self.j["+metadata-extended"]: self.j["+metadata-extended"]["lineage"] = [] self.j["+metadata-extended"]["lineage"].append(new_item) def triangulate(self, sloppy): - """ - Triangulate the CityJSON file face by face together with the texture information. + """Triangulate the CityJSON file face by face together with the texture information. + + :param sloppy: A boolean, True=mapbox-earcut False=Shewchuk-robust """ vnp = np.array(self.j["vertices"]) for theid in self.j['CityObjects']: diff --git a/tests/test_cityjson.py b/tests/test_cityjson.py index 3258113..c77429d 100644 --- a/tests/test_cityjson.py +++ b/tests/test_cityjson.py @@ -153,16 +153,12 @@ def test_add_lineage_item(self): """Test the add_lineage_item function""" test_desc = "We did something" - cm = cityjson.CityJSON() - cm.add_lineage_item(test_desc) - - assert cm.j["metadata"]["lineage"][0]["processStep"]["description"] == test_desc - + assert cm.j["+metadata-extended"]["lineage"][0]["processStep"]["description"] == test_desc cm.add_lineage_item("Something else", features=["id1", "id2"], source=[{"description": "BAG"}], processor={"contactName": "3D geoinfo"}) - - item = cm.j["metadata"]["lineage"][1] + # print(cm.j["+metadata-extended"]["lineage"]) + item = cm.j["+metadata-extended"]["lineage"][1] assert item["processStep"]["description"] == "Something else" assert len(item["featureIDs"]) == 2 assert len(item["source"]) == 1 From 8aa6b519480c59885db98bcf705b14b9c209d655 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 10:32:42 +0200 Subject: [PATCH 70/90] Fix and upgrade all test files to cityjson v1.1 --- tests/data/cube.c.json | 112 +- tests/data/cube.json | 112 +- tests/data/delft.json | 288550 ++++++++++++++- tests/data/delft_1b.json | 1976 +- .../dummy/composite_solid_with_material.json | 192 +- tests/data/dummy/dummy-triangulated.json | 1 - tests/data/dummy/dummy.json | 1 - tests/data/dummy/dummy_noappearance.json | 1 - .../dummy/multisurface_with_material.json | 2 +- tests/data/dummy/rectangle.json | 80 +- tests/data/material/mt-1-triangulated.json | 2 +- tests/data/material/mt-1.json | 222 +- tests/data/material/mt-2-triangulated.json | 2 +- tests/data/material/mt-2.json | 231 +- tests/data/minimal.json | 24 +- tests/data/multi_lod.json | 8078 +- tests/data/rotterdam/rotterdam_one.json | 714 +- tests/data/rotterdam/rotterdam_subset.json | 11696 +- tests/data/rotterdam_subset_cjio_test.json | 2 +- tests/data/zurich/zurich_subset_lod2.json | 51954 ++- 20 files changed, 363293 insertions(+), 659 deletions(-) delete mode 100644 tests/data/dummy/dummy-triangulated.json delete mode 100644 tests/data/dummy/dummy.json delete mode 100644 tests/data/dummy/dummy_noappearance.json diff --git a/tests/data/cube.c.json b/tests/data/cube.c.json index f1a4f2b..52fc206 100644 --- a/tests/data/cube.c.json +++ b/tests/data/cube.c.json @@ -1 +1,111 @@ -{"CityObjects":{"id-1":{"geometry":[{"boundaries":[[[[0,1,2,3]],[[4,5,6,7]],[[0,3,5,4]],[[3,2,6,5]],[[2,1,7,6]],[[1,0,4,7]]]],"type":"Solid","lod":"1"}],"type":"+GenericCityObject"}},"version":"1.1","type":"CityJSON","vertices":[[0,0,0],[0,1000,0],[1000,1000,0],[1000,0,0],[0,0,1000],[1000,0,1000],[1000,1000,1000],[0,1000,1000]],"metadata":{"geographicalExtent":[0.0,0.0,0.0,1.0,1.0,1.0],"citymodelIdentifier":"61275d4f-079c-4dc5-a8a4-fd08a97c50a9","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"cube.c.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{"+GenericCityObject":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"1":1}}},"presentLoDs":{"1":1},"thematicModels":["+GenericCityObject"]},"transform":{"scale":[0.001,0.001,0.001],"translate":[0.0,0.0,0.0]}} \ No newline at end of file +{ + "CityObjects": {"id-1": { + "geometry": [{ + "boundaries": [[ + [[ + 0, + 1, + 2, + 3 + ]], + [[ + 4, + 5, + 6, + 7 + ]], + [[ + 0, + 3, + 5, + 4 + ]], + [[ + 3, + 2, + 6, + 5 + ]], + [[ + 2, + 1, + 7, + 6 + ]], + [[ + 1, + 0, + 4, + 7 + ]] + ]], + "type": "Solid", + "lod": "1" + }], + "type": "Building" + }}, + "version": "1.1", + "type": "CityJSON", + "vertices": [ + [ + 0, + 0, + 0 + ], + [ + 0, + 1000, + 0 + ], + [ + 1000, + 1000, + 0 + ], + [ + 1000, + 0, + 0 + ], + [ + 0, + 0, + 1000 + ], + [ + 1000, + 0, + 1000 + ], + [ + 1000, + 1000, + 1000 + ], + [ + 0, + 1000, + 1000 + ] + ], + "metadata": {"geographicalExtent": [ + 0, + 0, + 0, + 1, + 1, + 1 + ]}, + "transform": { + "scale": [ + 0.001, + 0.001, + 0.001 + ], + "translate": [ + 0, + 0, + 0 + ] + } +} \ No newline at end of file diff --git a/tests/data/cube.json b/tests/data/cube.json index d1ebd47..52fc206 100644 --- a/tests/data/cube.json +++ b/tests/data/cube.json @@ -1 +1,111 @@ -{"CityObjects":{"id-1":{"geometry":[{"boundaries":[[[[0,1,2,3]],[[4,5,6,7]],[[0,3,5,4]],[[3,2,6,5]],[[2,1,7,6]],[[1,0,4,7]]]],"type":"Solid","lod":"1"}],"type":"+GenericCityObject"}},"version":"1.1","type":"CityJSON","vertices":[[0,0,0],[0,1000,0],[1000,1000,0],[1000,0,0],[0,0,1000],[1000,0,1000],[1000,1000,1000],[0,1000,1000]],"metadata":{"geographicalExtent":[0.0,0.0,0.0,1.0,1.0,1.0],"citymodelIdentifier":"dbc4d537-a402-4809-b4f7-e2e8bb98f5be","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"cube.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{"+GenericCityObject":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"1":1}}},"presentLoDs":{"1":1},"thematicModels":["+GenericCityObject"]},"transform":{"scale":[0.001,0.001,0.001],"translate":[0.0,0.0,0.0]}} \ No newline at end of file +{ + "CityObjects": {"id-1": { + "geometry": [{ + "boundaries": [[ + [[ + 0, + 1, + 2, + 3 + ]], + [[ + 4, + 5, + 6, + 7 + ]], + [[ + 0, + 3, + 5, + 4 + ]], + [[ + 3, + 2, + 6, + 5 + ]], + [[ + 2, + 1, + 7, + 6 + ]], + [[ + 1, + 0, + 4, + 7 + ]] + ]], + "type": "Solid", + "lod": "1" + }], + "type": "Building" + }}, + "version": "1.1", + "type": "CityJSON", + "vertices": [ + [ + 0, + 0, + 0 + ], + [ + 0, + 1000, + 0 + ], + [ + 1000, + 1000, + 0 + ], + [ + 1000, + 0, + 0 + ], + [ + 0, + 0, + 1000 + ], + [ + 1000, + 0, + 1000 + ], + [ + 1000, + 1000, + 1000 + ], + [ + 0, + 1000, + 1000 + ] + ], + "metadata": {"geographicalExtent": [ + 0, + 0, + 0, + 1, + 1, + 1 + ]}, + "transform": { + "scale": [ + 0.001, + 0.001, + 0.001 + ], + "translate": [ + 0, + 0, + 0 + ] + } +} \ No newline at end of file diff --git a/tests/data/delft.json b/tests/data/delft.json index 5a391da..b27da1a 100644 --- a/tests/data/delft.json +++ b/tests/data/delft.json @@ -1 +1,288549 @@ -{"CityObjects":{"b0a8da4cc-2d2a-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09d7049cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[0,1,2]],[[0,3,1]],[[4,5,6]],[[4,7,5]],[[8,3,0]],[[4,9,7]],[[7,10,11]],[[11,12,13]],[[13,14,15]],[[13,12,14]],[[11,10,12]],[[7,9,10]],[[16,4,3]],[[9,16,17]],[[9,4,16]],[[18,8,0]],[[16,3,8]],[[0,19,18]],[[0,20,19]],[[21,1,3]],[[22,1,21]],[[23,3,4]],[[21,3,23]],[[24,4,6]],[[23,4,24]],[[25,6,5]],[[24,6,25]],[[26,5,7]],[[25,5,26]],[[27,7,11]],[[26,7,27]],[[28,11,13]],[[27,11,28]],[[29,27,28]],[[30,13,15]],[[28,13,30]],[[31,10,9]],[[32,10,31]],[[33,9,17]],[[31,9,33]],[[34,17,16]],[[33,17,34]],[[35,16,8]],[[34,16,35]],[[36,8,18]],[[35,8,36]],[[37,18,19]],[[36,18,37]],[[38,36,37]],[[39,19,20]],[[37,19,39]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"b1105d28c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-52.4)","identificatiebagpnd":"503100000000035","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027121)","inonderzoek":"0","lokaalid":"G0503.032e68eff7ec49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.0,"min-height-surface":-0.100000001490116,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85012.966 447473.243)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:6)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[40,41,42]],[[43,44,40]],[[45,46,47]],[[48,49,50]],[[48,51,52]],[[48,53,49]],[[45,47,54]],[[53,55,56]],[[57,53,52]],[[52,53,48]],[[58,55,59]],[[59,55,57]],[[59,57,60]],[[55,53,57]],[[46,61,62]],[[63,64,62]],[[64,65,66]],[[65,64,67]],[[68,65,67]],[[67,64,63]],[[69,67,63]],[[70,71,63]],[[63,62,61]],[[72,71,73]],[[74,72,75]],[[76,74,77]],[[77,74,75]],[[78,77,75]],[[75,72,79]],[[80,75,79]],[[81,80,79]],[[82,81,79]],[[79,72,73]],[[83,79,84]],[[84,79,85]],[[86,84,85]],[[87,86,88]],[[88,86,85]],[[85,79,89]],[[89,79,73]],[[73,71,90]],[[91,73,92]],[[92,73,90]],[[90,71,93]],[[93,71,70]],[[46,62,52]],[[43,40,54]],[[94,95,96]],[[94,70,61]],[[94,61,95]],[[70,63,61]],[[51,46,52]],[[51,47,46]],[[44,41,40]],[[45,54,40]],[[97,42,98]],[[99,42,97]],[[100,99,97]],[[100,97,101]],[[98,42,102]],[[103,98,104]],[[104,98,105]],[[106,104,105]],[[107,108,109]],[[105,107,110]],[[110,107,109]],[[109,108,111]],[[98,102,105]],[[105,112,107]],[[113,112,102]],[[112,113,114]],[[114,113,115]],[[112,105,102]],[[113,102,116]],[[42,41,102]],[[117,118,44]],[[44,118,41]],[[119,117,43]],[[43,117,44]],[[120,119,54]],[[54,119,43]],[[121,120,47]],[[47,120,54]],[[122,121,51]],[[51,121,47]],[[123,122,48]],[[48,122,51]],[[124,123,50]],[[50,123,48]],[[125,124,49]],[[49,124,50]],[[126,125,53]],[[53,125,49]],[[127,126,56]],[[56,126,53]],[[128,127,55]],[[55,127,56]],[[129,128,58]],[[58,128,55]],[[130,129,59]],[[59,129,58]],[[131,130,60]],[[60,130,59]],[[132,131,57]],[[57,131,60]],[[133,132,52]],[[52,132,57]],[[134,133,62]],[[62,133,52]],[[135,134,64]],[[64,134,62]],[[136,135,66]],[[66,135,64]],[[137,136,65]],[[65,136,66]],[[138,137,68]],[[68,137,65]],[[139,138,67]],[[67,138,68]],[[140,139,69]],[[69,139,67]],[[141,140,63]],[[63,140,69]],[[142,141,71]],[[71,141,63]],[[143,142,72]],[[72,142,71]],[[144,143,74]],[[74,143,72]],[[145,144,76]],[[76,144,74]],[[146,145,77]],[[77,145,76]],[[147,146,78]],[[78,146,77]],[[148,147,75]],[[75,147,78]],[[149,148,80]],[[80,148,75]],[[150,149,81]],[[81,149,80]],[[151,150,82]],[[82,150,81]],[[152,151,79]],[[79,151,82]],[[153,152,83]],[[83,152,79]],[[154,153,84]],[[84,153,83]],[[155,154,86]],[[86,154,84]],[[156,155,87]],[[87,155,86]],[[157,156,88]],[[88,156,87]],[[158,157,85]],[[85,157,88]],[[159,158,89]],[[89,158,85]],[[160,159,73]],[[73,159,89]],[[161,160,91]],[[91,160,73]],[[162,161,92]],[[92,161,91]],[[163,162,90]],[[90,162,92]],[[164,163,93]],[[93,163,90]],[[165,164,70]],[[70,164,93]],[[166,165,94]],[[94,165,70]],[[167,166,96]],[[96,166,94]],[[168,167,95]],[[95,167,96]],[[169,168,61]],[[61,168,95]],[[170,169,46]],[[46,169,61]],[[171,170,45]],[[45,170,46]],[[172,171,40]],[[40,171,45]],[[173,172,42]],[[42,172,40]],[[174,173,99]],[[99,173,42]],[[175,174,100]],[[100,174,99]],[[176,175,101]],[[101,175,100]],[[177,176,97]],[[97,176,101]],[[178,177,98]],[[98,177,97]],[[179,178,103]],[[103,178,98]],[[180,179,104]],[[104,179,103]],[[181,180,106]],[[106,180,104]],[[182,181,105]],[[105,181,106]],[[183,182,110]],[[110,182,105]],[[184,183,109]],[[109,183,110]],[[185,184,111]],[[111,184,109]],[[186,185,108]],[[108,185,111]],[[187,186,107]],[[107,186,108]],[[188,187,112]],[[112,187,107]],[[189,188,114]],[[114,188,112]],[[190,189,115]],[[115,189,114]],[[191,190,113]],[[113,190,115]],[[192,191,116]],[[116,191,113]],[[193,192,102]],[[102,192,116]],[[118,193,41]],[[41,193,102]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11267a1d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000004048","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027095)","inonderzoek":"0","lokaalid":"G0503.032e68f0085849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.89000010490417,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84841.951 447542.723)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:168)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[194,195,196]],[[195,197,196]],[[197,198,199]],[[197,195,198]],[[195,200,198]],[[198,200,201]],[[202,203,204]],[[204,203,205]],[[204,205,194]],[[194,205,206]],[[194,206,207]],[[194,207,195]],[[208,202,209]],[[209,202,204]],[[209,204,196]],[[196,204,194]],[[210,208,197]],[[197,208,209]],[[197,209,196]],[[211,210,199]],[[199,210,197]],[[212,211,198]],[[198,211,199]],[[213,212,201]],[[201,212,198]],[[214,213,215]],[[215,213,216]],[[216,213,200]],[[200,213,201]],[[203,214,205]],[[205,214,206]],[[206,214,215]],[[206,215,207]],[[207,215,216]],[[207,216,195]],[[195,216,200]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126a169-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000032718","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027096)","inonderzoek":"0","lokaalid":"G0503.032e68f0086549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84835.527 447547.038)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:170)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[217,207,218]],[[218,207,219]],[[217,216,207]],[[217,220,221]],[[216,217,221]],[[222,223,220]],[[221,220,223]],[[224,223,225]],[[226,222,220]],[[225,223,222]],[[227,226,220]],[[228,226,227]],[[229,228,227]],[[230,231,217]],[[217,231,232]],[[217,232,233]],[[217,233,220]],[[234,230,235]],[[235,230,218]],[[218,230,217]],[[236,234,237]],[[237,234,235]],[[237,235,219]],[[219,235,218]],[[206,236,207]],[[207,236,237]],[[207,237,219]],[[215,206,216]],[[216,206,207]],[[238,215,221]],[[221,215,216]],[[239,238,223]],[[223,238,221]],[[240,239,224]],[[224,239,223]],[[241,240,225]],[[225,240,224]],[[242,241,222]],[[222,241,225]],[[243,242,226]],[[226,242,222]],[[244,243,228]],[[228,243,226]],[[245,244,229]],[[229,244,228]],[[246,245,247]],[[247,245,248]],[[248,245,227]],[[227,245,229]],[[231,246,232]],[[232,246,247]],[[232,247,233]],[[233,247,248]],[[233,248,220]],[[220,248,227]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126c87e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026153","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027097)","inonderzoek":"0","lokaalid":"G0503.032e68f0086649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.49000000953674,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84830.424 447550.641)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:172)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[233,249,248]],[[248,249,250]],[[250,251,252]],[[250,253,251]],[[254,255,253]],[[249,254,253]],[[249,233,256]],[[250,249,253]],[[233,257,256]],[[232,258,233]],[[233,258,259]],[[233,259,260]],[[233,260,257]],[[247,232,248]],[[248,232,233]],[[261,247,250]],[[250,247,248]],[[262,261,252]],[[252,261,250]],[[263,262,251]],[[251,262,252]],[[264,263,253]],[[253,263,251]],[[265,264,255]],[[255,264,253]],[[266,265,254]],[[254,265,255]],[[267,266,249]],[[249,266,254]],[[268,267,269]],[[269,267,270]],[[270,267,256]],[[256,267,249]],[[258,268,259]],[[259,268,269]],[[259,269,260]],[[260,269,270]],[[260,270,257]],[[257,270,256]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126c883-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000026154","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027023)","inonderzoek":"0","lokaalid":"G0503.032e68f0086749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.48000001907349,"min-height-surface":0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84843.704 447561.474)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:1)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[271,272,270]],[[271,270,260]],[[272,273,270]],[[272,274,273]],[[275,276,277]],[[277,276,278]],[[277,278,271]],[[271,278,272]],[[259,275,260]],[[260,275,277]],[[260,277,271]],[[269,259,270]],[[270,259,260]],[[279,269,273]],[[273,269,270]],[[280,279,274]],[[274,279,273]],[[276,280,278]],[[278,280,272]],[[272,280,274]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715ef-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026151","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000061493)","inonderzoek":"0","lokaalid":"G0503.032e68f0087749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.29999995231628,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84850.858 447537.122)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:164)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[281,282,283]],[[281,284,282]],[[281,285,284]],[[281,286,285]],[[281,287,288]],[[286,281,289]],[[289,281,288]],[[288,287,290]],[[291,292,281]],[[281,292,287]],[[293,291,294]],[[294,291,283]],[[283,291,281]],[[295,293,296]],[[296,293,294]],[[296,294,282]],[[282,294,283]],[[297,295,284]],[[284,295,296]],[[284,296,282]],[[298,297,285]],[[285,297,284]],[[299,298,286]],[[286,298,285]],[[300,299,301]],[[301,299,289]],[[289,299,286]],[[302,300,303]],[[303,300,301]],[[303,301,288]],[[288,301,289]],[[304,302,290]],[[290,302,303]],[[290,303,288]],[[292,304,287]],[[287,304,290]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715f4-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026152","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027094)","inonderzoek":"0","lokaalid":"G0503.032e68f0087849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.04999995231628,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84845.575 447540.308)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:166)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[301,303,305]],[[301,306,307]],[[301,305,306]],[[305,308,309]],[[305,310,308]],[[308,310,311]],[[311,310,312]],[[305,303,310]],[[300,302,301]],[[301,302,303]],[[313,300,307]],[[307,300,301]],[[209,313,196]],[[196,313,306]],[[306,313,307]],[[204,209,194]],[[194,209,196]],[[194,196,305]],[[305,196,306]],[[205,204,206]],[[206,204,207]],[[207,204,195]],[[195,204,194]],[[195,194,309]],[[309,194,305]],[[314,205,236]],[[236,205,206]],[[236,206,237]],[[237,206,219]],[[219,206,207]],[[219,207,315]],[[315,207,308]],[[308,207,195]],[[308,195,309]],[[316,314,317]],[[317,314,236]],[[317,236,237]],[[317,237,318]],[[318,237,219]],[[318,219,315]],[[318,315,311]],[[311,315,308]],[[319,316,312]],[[312,316,317]],[[312,317,318]],[[312,318,311]],[[320,319,310]],[[310,319,312]],[[302,320,303]],[[303,320,310]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715fe-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:56.3)","identificatiebagpnd":"503100000026156","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027033)","inonderzoek":"0","lokaalid":"G0503.032e68f0087a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.0699999332428,"min-height-surface":0.439999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84883.885 447560.978)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:19A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[321,322,323]],[[323,324,325]],[[323,326,321]],[[325,327,328]],[[326,325,328]],[[323,325,326]],[[323,329,324]],[[329,330,331]],[[324,329,332]],[[332,329,331]],[[331,330,333]],[[334,331,333]],[[335,336,337]],[[337,336,338]],[[337,338,329]],[[329,338,330]],[[339,335,340]],[[340,335,341]],[[341,335,337]],[[341,337,323]],[[323,337,329]],[[342,339,343]],[[343,339,340]],[[343,340,322]],[[322,340,341]],[[322,341,323]],[[344,342,321]],[[321,342,343]],[[321,343,322]],[[345,344,326]],[[326,344,321]],[[346,345,328]],[[328,345,326]],[[347,346,327]],[[327,346,328]],[[348,347,325]],[[325,347,327]],[[349,348,324]],[[324,348,325]],[[350,349,332]],[[332,349,324]],[[351,350,331]],[[331,350,332]],[[352,351,334]],[[334,351,331]],[[353,352,333]],[[333,352,334]],[[336,353,338]],[[338,353,330]],[[330,353,333]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11271601-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000005344","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0087b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.97000002861023,"min-height-surface":0.490000009536743,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[354,355,356]],[[357,356,358]],[[357,358,359]],[[359,358,360]],[[356,361,358]],[[358,361,362]],[[356,363,361]],[[356,355,363]],[[364,365,357]],[[357,365,356]],[[366,364,359]],[[359,364,357]],[[367,366,360]],[[360,366,359]],[[368,367,358]],[[358,367,360]],[[343,368,322]],[[322,368,362]],[[362,368,358]],[[340,343,341]],[[341,343,323]],[[323,343,322]],[[323,322,361]],[[361,322,362]],[[369,340,370]],[[370,340,341]],[[370,341,363]],[[363,341,323]],[[363,323,361]],[[371,369,372]],[[372,369,370]],[[372,370,355]],[[355,370,363]],[[373,371,354]],[[354,371,372]],[[354,372,355]],[[365,373,356]],[[356,373,354]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1127160e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026155","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0087e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[374,375,376]],[[318,377,376]],[[375,378,376]],[[376,379,318]],[[318,379,315]],[[376,378,379]],[[375,380,378]],[[381,382,383]],[[383,382,384]],[[383,384,374]],[[374,384,375]],[[385,381,376]],[[376,381,383]],[[376,383,374]],[[386,385,377]],[[377,385,376]],[[317,386,318]],[[318,386,377]],[[237,317,219]],[[219,317,315]],[[315,317,318]],[[235,237,218]],[[218,237,219]],[[218,219,379]],[[379,219,315]],[[277,235,271]],[[271,235,378]],[[378,235,218]],[[378,218,379]],[[278,277,272]],[[272,277,271]],[[272,271,380]],[[380,271,378]],[[382,278,384]],[[384,278,375]],[[375,278,272]],[[375,272,380]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1127b2f3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000004630","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027131)","inonderzoek":"0","lokaalid":"G0503.032e68f0093c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.07999992370605,"min-height-surface":-0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84941.813 447486.436)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:76)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[387,388,389]],[[387,389,390]],[[390,389,391]],[[389,388,392]],[[389,393,394]],[[389,392,393]],[[388,395,392]],[[396,397,398]],[[398,397,399]],[[398,399,387]],[[387,399,388]],[[400,396,401]],[[401,396,398]],[[401,398,390]],[[390,398,387]],[[402,400,403]],[[403,400,404]],[[404,400,391]],[[391,400,401]],[[391,401,390]],[[405,402,406]],[[406,402,403]],[[406,403,407]],[[407,403,404]],[[407,404,389]],[[389,404,391]],[[408,405,409]],[[409,405,406]],[[409,406,410]],[[410,406,407]],[[410,407,394]],[[394,407,389]],[[411,408,412]],[[412,408,409]],[[412,409,413]],[[413,409,410]],[[413,410,393]],[[393,410,394]],[[414,411,392]],[[392,411,412]],[[392,412,413]],[[392,413,393]],[[415,414,416]],[[416,414,395]],[[395,414,392]],[[397,415,399]],[[399,415,416]],[[399,416,388]],[[388,416,395]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128005c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000004571","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027130)","inonderzoek":"0","lokaalid":"G0503.032e68f0094c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.97000002861023,"min-height-surface":-0.100000001490116,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84948.166 447484.337)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:74)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[417,418,398]],[[417,398,419]],[[419,398,401]],[[398,418,420]],[[398,416,399]],[[398,420,416]],[[418,421,420]],[[422,423,424]],[[424,423,425]],[[424,425,417]],[[417,425,418]],[[426,422,427]],[[427,422,424]],[[427,424,419]],[[419,424,417]],[[428,426,400]],[[400,426,401]],[[401,426,427]],[[401,427,419]],[[429,428,396]],[[396,428,400]],[[396,400,398]],[[398,400,401]],[[430,429,397]],[[397,429,396]],[[397,396,399]],[[399,396,398]],[[431,430,415]],[[415,430,397]],[[415,397,416]],[[416,397,399]],[[432,431,420]],[[420,431,415]],[[420,415,416]],[[433,432,434]],[[434,432,421]],[[421,432,420]],[[423,433,425]],[[425,433,434]],[[425,434,418]],[[418,434,421]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280066-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000027887","identificatiebagvbohoogstehuisnummer":"(1:503010000027074)","identificatiebagvbolaagstehuisnummer":"(1:503010000027073)","inonderzoek":"0","lokaalid":"G0503.032e68f0094e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84920.286 447536.887)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:24-26)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[435,436,437]],[[438,439,440]],[[438,440,441]],[[437,442,443]],[[443,438,441]],[[436,442,437]],[[443,444,445]],[[438,443,445]],[[441,437,443]],[[436,446,442]],[[447,448,449]],[[449,448,450]],[[449,450,435]],[[435,450,436]],[[451,447,452]],[[452,447,449]],[[452,449,437]],[[437,449,435]],[[453,451,454]],[[454,451,452]],[[454,452,441]],[[441,452,437]],[[455,453,456]],[[456,453,454]],[[456,454,440]],[[440,454,441]],[[457,455,458]],[[458,455,456]],[[458,456,439]],[[439,456,440]],[[459,457,438]],[[438,457,458]],[[438,458,439]],[[460,459,461]],[[461,459,445]],[[445,459,438]],[[462,460,463]],[[463,460,461]],[[463,461,444]],[[444,461,445]],[[464,462,443]],[[443,462,463]],[[443,463,444]],[[465,464,442]],[[442,464,443]],[[466,465,446]],[[446,465,442]],[[448,466,450]],[[450,466,436]],[[436,466,446]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128006b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000004642","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027075)","inonderzoek":"0","lokaalid":"G0503.032e68f0094f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84924.277 447540.160)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:28)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[467,468,469]],[[468,467,470]],[[467,439,470]],[[435,440,471]],[[439,467,471]],[[441,440,435]],[[437,441,435]],[[435,471,472]],[[436,435,472]],[[439,471,440]],[[467,473,471]],[[474,475,467]],[[467,475,473]],[[476,474,469]],[[469,474,467]],[[477,476,468]],[[468,476,469]],[[478,477,470]],[[470,477,468]],[[458,478,439]],[[439,478,470]],[[456,458,440]],[[440,458,439]],[[454,456,441]],[[441,456,440]],[[452,454,437]],[[437,454,441]],[[449,452,435]],[[435,452,437]],[[450,449,436]],[[436,449,435]],[[479,450,472]],[[472,450,436]],[[480,479,471]],[[471,479,472]],[[475,480,473]],[[473,480,471]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280070-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000026299","identificatiebagvbohoogstehuisnummer":"(1:503010000027112)","identificatiebagvbolaagstehuisnummer":"(1:503010000027111)","inonderzoek":"0","lokaalid":"G0503.032e68f0095049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84945.216 447536.460)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33-35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[481,482,483]],[[481,484,485]],[[482,481,485]],[[486,482,485]],[[485,484,487]],[[488,485,487]],[[487,484,489]],[[490,491,492]],[[492,491,493]],[[492,493,494]],[[494,493,495]],[[494,495,481]],[[481,495,484]],[[496,490,497]],[[497,490,492]],[[497,492,498]],[[498,492,494]],[[498,494,483]],[[483,494,481]],[[499,496,500]],[[500,496,497]],[[500,497,501]],[[501,497,498]],[[501,498,482]],[[482,498,483]],[[502,499,486]],[[486,499,500]],[[486,500,501]],[[486,501,482]],[[503,502,485]],[[485,502,486]],[[504,503,488]],[[488,503,485]],[[505,504,487]],[[487,504,488]],[[506,505,489]],[[489,505,487]],[[491,506,493]],[[493,506,495]],[[495,506,484]],[[484,506,489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280075-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000026298","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060272)","inonderzoek":"0","lokaalid":"G0503.032e68f0095149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.09999990463257,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84949.097 447541.631)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[498,507,494]],[[507,498,508]],[[508,498,501]],[[507,509,494]],[[509,510,494]],[[494,510,495]],[[510,509,511]],[[509,512,511]],[[513,514,515]],[[515,514,516]],[[515,516,507]],[[507,516,509]],[[517,513,508]],[[508,513,515]],[[508,515,507]],[[500,517,501]],[[501,517,508]],[[497,500,498]],[[498,500,501]],[[492,497,494]],[[494,497,498]],[[493,492,495]],[[495,492,494]],[[518,493,510]],[[510,493,495]],[[519,518,511]],[[511,518,510]],[[520,519,512]],[[512,519,511]],[[514,520,516]],[[516,520,509]],[[509,520,512]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128007a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000004647","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003297)","inonderzoek":"0","lokaalid":"G0503.032e68f0095249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.10999989509583,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84949.891 447597.257)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[521,522,523]],[[523,524,525]],[[524,526,527]],[[524,523,528]],[[524,528,526]],[[529,530,531]],[[528,529,531]],[[523,532,528]],[[528,532,529]],[[523,522,532]],[[532,522,533]],[[534,535,536]],[[536,535,537]],[[536,537,521]],[[521,537,522]],[[538,534,523]],[[523,534,536]],[[523,536,521]],[[539,538,525]],[[525,538,523]],[[540,539,524]],[[524,539,525]],[[541,540,527]],[[527,540,524]],[[542,541,526]],[[526,541,527]],[[543,542,528]],[[528,542,526]],[[544,543,531]],[[531,543,528]],[[545,544,530]],[[530,544,531]],[[546,545,529]],[[529,545,530]],[[547,546,532]],[[532,546,529]],[[548,547,533]],[[533,547,532]],[[535,548,537]],[[537,548,522]],[[522,548,533]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128007f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37.4)","identificatiebagpnd":"503100000004637","identificatiebagvbohoogstehuisnummer":"(1:503010000027084)","identificatiebagvbolaagstehuisnummer":"(1:503010000027076)","inonderzoek":"0","lokaalid":"G0503.032e68f0095349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.1100001335144,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84940.274 447558.360)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:30-46)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[549,550,551]],[[550,552,551]],[[550,553,552]],[[552,553,554]],[[555,556,549]],[[549,556,550]],[[557,555,551]],[[551,555,549]],[[558,557,552]],[[552,557,551]],[[559,558,554]],[[554,558,552]],[[560,559,553]],[[553,559,554]],[[556,560,550]],[[550,560,553]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11282794-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004645","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003305)","inonderzoek":"0","lokaalid":"G0503.032e68f0095449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.15999984741211,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84996.140 447550.544)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[561,562,563]],[[564,565,566]],[[566,565,567]],[[564,562,561]],[[565,564,561]],[[561,568,569]],[[561,570,568]],[[570,561,571]],[[572,561,569]],[[572,565,561]],[[573,574,575]],[[575,574,576]],[[575,576,564]],[[564,576,562]],[[577,573,578]],[[578,573,566]],[[566,573,575]],[[566,575,564]],[[579,577,580]],[[580,577,578]],[[580,578,567]],[[567,578,566]],[[581,579,565]],[[565,579,580]],[[565,580,567]],[[582,581,572]],[[572,581,565]],[[583,582,569]],[[569,582,572]],[[584,583,568]],[[568,583,569]],[[585,584,570]],[[570,584,568]],[[586,585,571]],[[571,585,570]],[[587,586,561]],[[561,586,571]],[[588,587,563]],[[563,587,561]],[[574,588,576]],[[576,588,562]],[[562,588,563]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11282799-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000025336","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003307)","inonderzoek":"0","lokaalid":"G0503.032e68f0095549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.67000007629395,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85001.101 447546.689)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:47)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[589,590,591]],[[592,591,590]],[[590,589,593]],[[593,589,594]],[[595,596,594]],[[589,595,594]],[[589,597,595]],[[589,598,597]],[[597,598,599]],[[600,601,602]],[[602,601,603]],[[602,603,604]],[[604,603,605]],[[604,605,589]],[[589,605,598]],[[606,600,607]],[[607,600,602]],[[607,602,608]],[[608,602,604]],[[608,604,591]],[[591,604,589]],[[609,606,592]],[[592,606,607]],[[592,607,608]],[[592,608,591]],[[610,609,590]],[[590,609,592]],[[575,610,564]],[[564,610,593]],[[593,610,590]],[[576,575,562]],[[562,575,564]],[[562,564,594]],[[594,564,593]],[[611,576,596]],[[596,576,562]],[[596,562,594]],[[612,611,595]],[[595,611,596]],[[613,612,597]],[[597,612,595]],[[614,613,599]],[[599,613,597]],[[601,614,603]],[[603,614,605]],[[605,614,598]],[[598,614,599]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128279e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000004646","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027115)","inonderzoek":"0","lokaalid":"G0503.032e68f0095649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84953.045 447544.630)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[615,616,617]],[[617,616,618]],[[616,615,515]],[[615,516,515]],[[615,619,516]],[[615,620,619]],[[621,622,623]],[[623,622,624]],[[623,624,615]],[[615,624,620]],[[625,621,617]],[[617,621,623]],[[617,623,615]],[[626,625,618]],[[618,625,617]],[[627,626,616]],[[616,626,618]],[[628,627,513]],[[513,627,515]],[[515,627,616]],[[629,628,514]],[[514,628,513]],[[514,513,516]],[[516,513,515]],[[630,629,619]],[[619,629,514]],[[619,514,516]],[[622,630,624]],[[624,630,620]],[[620,630,619]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000004644","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027117)","inonderzoek":"0","lokaalid":"G0503.032e68f0095749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.46000003814697,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84957.402 447548.205)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[631,632,633]],[[631,634,632]],[[631,635,636]],[[634,631,636]],[[636,635,637]],[[637,635,638]],[[639,637,640]],[[640,637,638]],[[641,640,642]],[[642,640,638]],[[643,644,631]],[[631,644,635]],[[645,643,633]],[[633,643,631]],[[646,645,632]],[[632,645,633]],[[647,646,634]],[[634,646,632]],[[623,647,615]],[[615,647,636]],[[636,647,634]],[[624,623,620]],[[620,623,615]],[[620,615,637]],[[637,615,636]],[[648,624,639]],[[639,624,620]],[[639,620,637]],[[649,648,640]],[[640,648,639]],[[650,649,641]],[[641,649,640]],[[651,650,642]],[[642,650,641]],[[652,651,638]],[[638,651,642]],[[644,652,635]],[[635,652,638]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004636","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003304)","inonderzoek":"0","lokaalid":"G0503.032e68f0095849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84988.378 447559.512)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:44)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[653,654,655]],[[656,657,658]],[[656,659,657]],[[659,660,661]],[[662,663,664]],[[660,662,664]],[[665,662,660]],[[659,653,660]],[[662,665,666]],[[659,656,653]],[[660,653,665]],[[656,654,653]],[[667,668,669]],[[669,668,670]],[[669,670,656]],[[656,670,654]],[[671,667,672]],[[672,667,669]],[[672,669,658]],[[658,669,656]],[[673,671,657]],[[657,671,672]],[[657,672,658]],[[674,673,659]],[[659,673,657]],[[675,674,661]],[[661,674,659]],[[676,675,660]],[[660,675,661]],[[677,676,664]],[[664,676,660]],[[678,677,663]],[[663,677,664]],[[679,678,662]],[[662,678,663]],[[680,679,666]],[[666,679,662]],[[681,680,665]],[[665,680,666]],[[682,681,653]],[[653,681,665]],[[683,682,655]],[[655,682,653]],[[668,683,670]],[[670,683,654]],[[654,683,655]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827ad-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004640","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003305)","inonderzoek":"0","lokaalid":"G0503.032e68f0095949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.05999994277954,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84991.913 447554.453)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[684,685,686]],[[687,688,689]],[[686,690,684]],[[686,691,690]],[[690,689,692]],[[689,693,694]],[[689,688,693]],[[689,690,691]],[[695,687,689]],[[696,695,689]],[[691,696,689]],[[578,691,686]],[[578,580,691]],[[697,698,577]],[[577,698,579]],[[577,579,578]],[[578,579,580]],[[699,697,686]],[[686,697,577]],[[686,577,578]],[[700,699,685]],[[685,699,686]],[[672,700,658]],[[658,700,684]],[[684,700,685]],[[669,672,656]],[[656,672,658]],[[656,658,690]],[[690,658,684]],[[670,669,654]],[[654,669,656]],[[654,656,692]],[[692,656,690]],[[701,670,689]],[[689,670,654]],[[689,654,692]],[[702,701,694]],[[694,701,689]],[[703,702,693]],[[693,702,694]],[[704,703,688]],[[688,703,693]],[[705,704,687]],[[687,704,688]],[[706,705,695]],[[695,705,687]],[[707,706,696]],[[696,706,695]],[[708,707,691]],[[691,707,696]],[[698,708,579]],[[579,708,580]],[[580,708,691]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827b2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000028346","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003299)","inonderzoek":"0","lokaalid":"G0503.032e68f0095a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.00999999046326,"min-height-surface":0.129999995231628,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84958.769 447588.042)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[709,710,711]],[[712,713,714]],[[711,712,714]],[[712,715,713]],[[712,716,715]],[[712,717,716]],[[712,718,717]],[[712,719,718]],[[712,720,719]],[[712,721,720]],[[712,722,721]],[[712,723,722]],[[712,724,723]],[[712,725,724]],[[712,726,725]],[[712,727,726]],[[712,728,727]],[[712,729,728]],[[729,712,730]],[[730,712,731]],[[731,712,732]],[[732,712,733]],[[733,712,734]],[[734,712,735]],[[735,712,736]],[[736,712,737]],[[711,738,712]],[[739,740,738]],[[711,739,738]],[[711,710,741]],[[711,741,739]],[[710,742,741]],[[710,743,742]],[[744,745,746]],[[746,745,747]],[[746,747,709]],[[709,747,710]],[[748,744,711]],[[711,744,746]],[[711,746,709]],[[749,748,714]],[[714,748,711]],[[750,749,713]],[[713,749,714]],[[751,750,715]],[[715,750,713]],[[752,751,716]],[[716,751,715]],[[753,752,717]],[[717,752,716]],[[754,753,718]],[[718,753,717]],[[755,754,719]],[[719,754,718]],[[756,755,720]],[[720,755,719]],[[757,756,721]],[[721,756,720]],[[758,757,722]],[[722,757,721]],[[759,758,723]],[[723,758,722]],[[760,759,724]],[[724,759,723]],[[761,760,725]],[[725,760,724]],[[762,761,726]],[[726,761,725]],[[763,762,727]],[[727,762,726]],[[764,763,728]],[[728,763,727]],[[765,764,729]],[[729,764,728]],[[766,765,730]],[[730,765,729]],[[767,766,731]],[[731,766,730]],[[768,767,732]],[[732,767,731]],[[769,768,733]],[[733,768,732]],[[770,769,734]],[[734,769,733]],[[771,770,735]],[[735,770,734]],[[772,771,736]],[[736,771,735]],[[773,772,774]],[[774,772,737]],[[737,772,736]],[[775,773,776]],[[776,773,774]],[[776,774,712]],[[712,774,737]],[[777,775,778]],[[778,775,776]],[[778,776,738]],[[738,776,712]],[[779,777,740]],[[740,777,778]],[[740,778,738]],[[780,779,739]],[[739,779,740]],[[781,780,741]],[[741,780,739]],[[782,781,742]],[[742,781,741]],[[783,782,743]],[[743,782,742]],[[745,783,747]],[[747,783,710]],[[710,783,743]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827b7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000004643","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003298)","inonderzoek":"0","lokaalid":"G0503.032e68f0095b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.00999999046326,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84955.890 447590.722)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:38)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[712,784,737]],[[737,785,786]],[[737,787,785]],[[737,788,787]],[[737,789,788]],[[737,790,789]],[[737,791,790]],[[737,792,791]],[[737,793,792]],[[737,794,793]],[[737,784,794]],[[712,795,784]],[[712,796,795]],[[712,797,796]],[[712,798,797]],[[712,799,798]],[[712,800,799]],[[712,801,800]],[[712,802,801]],[[712,803,802]],[[712,804,803]],[[712,805,804]],[[712,806,805]],[[712,807,806]],[[712,738,807]],[[807,536,808]],[[807,809,536]],[[809,810,537]],[[536,809,537]],[[810,809,811]],[[812,738,813]],[[807,812,809]],[[807,738,812]],[[776,778,712]],[[712,778,738]],[[774,776,737]],[[737,776,712]],[[814,774,786]],[[786,774,737]],[[815,814,785]],[[785,814,786]],[[816,815,787]],[[787,815,785]],[[817,816,788]],[[788,816,787]],[[818,817,789]],[[789,817,788]],[[819,818,790]],[[790,818,789]],[[820,819,791]],[[791,819,790]],[[821,820,792]],[[792,820,791]],[[822,821,793]],[[793,821,792]],[[823,822,794]],[[794,822,793]],[[824,823,784]],[[784,823,794]],[[825,824,795]],[[795,824,784]],[[826,825,796]],[[796,825,795]],[[827,826,797]],[[797,826,796]],[[828,827,798]],[[798,827,797]],[[829,828,799]],[[799,828,798]],[[830,829,800]],[[800,829,799]],[[831,830,801]],[[801,830,800]],[[832,831,802]],[[802,831,801]],[[833,832,803]],[[803,832,802]],[[834,833,804]],[[804,833,803]],[[835,834,805]],[[805,834,804]],[[836,835,806]],[[806,835,805]],[[837,836,807]],[[807,836,806]],[[838,837,808]],[[808,837,807]],[[839,838,534]],[[534,838,536]],[[536,838,808]],[[840,839,535]],[[535,839,534]],[[535,534,537]],[[537,534,536]],[[841,840,810]],[[810,840,535]],[[810,535,537]],[[842,841,811]],[[811,841,810]],[[843,842,809]],[[809,842,811]],[[844,843,812]],[[812,843,809]],[[845,844,813]],[[813,844,812]],[[778,845,738]],[[738,845,813]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b22139d30-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[846,847,848]],[[849,850,851]],[[852,853,164]],[[164,853,854]],[[855,856,164]],[[857,858,859]],[[860,861,862]],[[857,852,863]],[[864,865,866]],[[867,868,869]],[[870,871,872]],[[870,865,873]],[[874,875,876]],[[871,875,872]],[[877,878,864]],[[879,880,881]],[[882,883,884]],[[885,886,887]],[[888,889,890]],[[891,892,893]],[[894,895,896]],[[890,889,897]],[[898,899,900]],[[901,902,899]],[[903,896,904]],[[896,901,898]],[[905,894,906]],[[848,847,907]],[[908,909,847]],[[910,911,912]],[[913,846,911]],[[911,914,912]],[[915,916,917]],[[918,915,917]],[[919,885,920]],[[921,887,886]],[[922,923,895]],[[924,902,901]],[[897,850,882]],[[916,914,925]],[[846,908,847]],[[913,909,908]],[[926,849,851]],[[884,927,928]],[[929,869,868]],[[883,930,919]],[[878,873,865]],[[931,932,873]],[[869,877,864]],[[878,865,864]],[[933,905,934]],[[906,891,893]],[[935,936,937]],[[938,846,939]],[[876,932,880]],[[876,875,871]],[[881,931,877]],[[881,932,931]],[[849,930,883]],[[885,915,920]],[[940,864,866]],[[941,942,943]],[[879,881,877]],[[880,932,881]],[[927,944,916]],[[916,925,927]],[[945,946,947]],[[929,948,949]],[[950,951,877]],[[951,880,879]],[[871,870,873]],[[872,865,870]],[[952,928,925]],[[925,914,952]],[[953,897,889]],[[850,883,882]],[[938,954,846]],[[955,884,928]],[[956,910,912]],[[954,928,952]],[[888,936,934]],[[954,911,846]],[[848,939,846]],[[895,904,896]],[[933,922,895]],[[957,958,923]],[[959,863,852]],[[856,960,858]],[[959,852,856]],[[961,864,962]],[[947,963,953]],[[851,850,897]],[[906,893,964]],[[892,889,893]],[[939,848,907]],[[939,965,938]],[[894,905,966]],[[906,964,905]],[[967,968,941]],[[969,943,942]],[[955,970,971]],[[888,964,893]],[[972,958,957]],[[973,904,958]],[[849,883,850]],[[919,918,883]],[[954,955,928]],[[883,917,944]],[[928,927,925]],[[944,917,916]],[[858,857,863]],[[859,852,857]],[[950,945,947]],[[974,877,945]],[[932,871,873]],[[932,876,871]],[[931,878,877]],[[931,873,878]],[[968,868,975]],[[862,941,976]],[[926,977,849]],[[867,978,868]],[[919,886,885]],[[862,976,921]],[[911,952,914]],[[911,954,952]],[[883,918,917]],[[920,915,918]],[[905,933,966]],[[905,964,934]],[[858,940,866]],[[962,864,940]],[[898,901,899]],[[895,894,966]],[[973,924,903]],[[924,901,903]],[[901,896,903]],[[898,894,896]],[[904,973,903]],[[979,902,924]],[[856,858,863]],[[866,859,858]],[[980,981,982]],[[165,943,969]],[[918,919,920]],[[930,886,919]],[[846,913,908]],[[956,909,913]],[[164,856,852]],[[960,962,940]],[[983,973,972]],[[979,924,973]],[[984,985,961]],[[986,867,987]],[[165,855,164]],[[988,980,942]],[[986,978,867]],[[982,165,969]],[[989,948,929]],[[978,981,975]],[[855,981,978]],[[855,165,981]],[[980,975,981]],[[868,978,975]],[[947,851,963]],[[947,926,851]],[[990,938,965]],[[922,933,934]],[[991,992,937]],[[882,884,955]],[[877,951,879]],[[950,880,951]],[[890,897,882]],[[963,851,897]],[[993,984,961]],[[987,867,961]],[[946,926,947]],[[946,977,926]],[[994,939,907]],[[983,972,935]],[[967,929,868]],[[869,864,961]],[[977,948,989]],[[945,877,869]],[[849,989,930]],[[849,977,989]],[[867,869,961]],[[949,977,945]],[[945,977,946]],[[945,869,949]],[[941,988,942]],[[968,975,988]],[[884,944,927]],[[884,883,944]],[[959,856,863]],[[985,987,961]],[[942,980,969]],[[988,975,980]],[[935,937,992]],[[888,934,964]],[[972,957,935]],[[922,934,936]],[[971,970,937]],[[935,957,936]],[[889,888,893]],[[890,936,888]],[[890,937,936]],[[991,954,938]],[[890,971,937]],[[955,954,970]],[[947,953,889]],[[963,897,953]],[[930,861,886]],[[930,967,861]],[[886,860,921]],[[861,941,862]],[[976,941,943]],[[861,967,941]],[[936,957,922]],[[935,992,990]],[[962,993,961]],[[985,855,987]],[[856,985,984]],[[856,855,985]],[[994,979,973]],[[994,902,979]],[[957,923,922]],[[958,904,923]],[[933,895,966]],[[923,904,895]],[[855,986,987]],[[855,978,986]],[[990,992,938]],[[937,970,991]],[[913,910,956]],[[913,911,910]],[[950,974,945]],[[950,877,974]],[[939,983,965]],[[973,958,972]],[[983,990,965]],[[983,935,990]],[[994,983,939]],[[994,973,983]],[[858,960,940]],[[856,984,993]],[[929,949,869]],[[948,977,949]],[[882,971,890]],[[882,955,971]],[[989,967,930]],[[989,929,967]],[[941,968,988]],[[967,868,968]],[[954,991,970]],[[938,992,991]],[[921,860,862]],[[886,861,860]],[[960,993,962]],[[960,856,993]],[[980,982,969]],[[981,165,982]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2214d56a-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[995,176,177]],[[995,177,178]],[[179,995,178]],[[179,176,995]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22183104-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef608549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[996,997,998]],[[999,1000,1001]],[[999,996,1000]],[[1000,996,1002]],[[999,997,996]],[[998,997,1003]],[[998,1004,1005]],[[998,1003,1004]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221a544c-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1006,1007,1008]],[[1009,1010,1011]],[[1012,1013,1014]],[[1015,1008,1010]],[[1016,1017,1011]],[[1016,1018,1017]],[[1016,1008,1019]],[[1018,1016,1020]],[[1013,1020,1021]],[[1022,1009,1011]],[[1014,1021,1023]],[[1012,1022,1011]],[[1017,1012,1011]],[[1017,1013,1012]],[[1015,1023,1006]],[[1014,1013,1021]],[[1020,1019,1021]],[[1020,1016,1019]],[[1019,1008,1007]],[[1015,1006,1008]],[[1024,1025,1010]],[[1023,1021,1006]],[[1009,1024,1010]],[[1009,1014,1023]],[[1024,1009,1023]],[[1025,1015,1010]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221b16fc-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef947849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1026,1027,1028]],[[1029,1030,1031]],[[1032,1027,1033]],[[1032,1028,1027]],[[1032,1034,1028]],[[1032,1035,1034]],[[1032,1036,1035]],[[1031,1037,1038]],[[1039,1040,1041]],[[1042,1043,1044]],[[1045,1042,1044]],[[1045,1046,1042]],[[1047,1045,1044]],[[1048,1049,1050]],[[1029,1031,1051]],[[1052,1053,1054]],[[1052,1038,1053]],[[1052,1031,1038]],[[1039,1041,1032]],[[1032,1041,1036]],[[1030,1029,1055]],[[1056,1030,1055]],[[1055,1029,1047]],[[1057,1055,1058]],[[1058,1055,1059]],[[1059,1055,1060]],[[1060,1055,1032]],[[1060,1033,1061]],[[1045,1029,1051]],[[1047,1048,1050]],[[1062,1055,1057]],[[1055,1047,1050]],[[1048,1047,1044]],[[1029,1045,1047]],[[1049,1039,1050]],[[1049,1040,1039]],[[1051,1052,1054]],[[1051,1031,1052]],[[1032,1055,1050]],[[1062,1056,1055]],[[1060,1032,1033]],[[1050,1039,1032]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221b8c65-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1063,1064,1065]],[[1064,1066,1065]],[[1064,1067,1066]],[[1068,1065,1066]],[[1066,1069,1070]],[[1071,1066,1072]],[[1072,1066,1073]],[[1073,1066,1074]],[[1074,1066,1075]],[[1075,1066,1076]],[[1076,1066,1077]],[[1077,1066,1078]],[[1078,1066,1079]],[[1079,1066,1080]],[[1080,1066,1081]],[[1081,1066,1082]],[[1082,1083,1084]],[[1084,1083,1085]],[[1085,1083,1086]],[[1086,1083,1087]],[[1087,1083,1088]],[[1088,1083,1089]],[[1089,1083,1090]],[[1090,1083,1091]],[[1091,1083,1092]],[[1092,1083,1093]],[[1083,1082,1066]],[[1083,1066,1070]],[[1094,1066,1071]],[[1094,1068,1066]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221d3a47-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.22217ab858564a8fa4707f2a0b468ec2","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1095,1096,1097]],[[1098,1099,1100]],[[1099,1095,1100]],[[1101,1100,1102]],[[1103,1104,1099]],[[1096,1095,1104]],[[1105,1106,1104]],[[1106,1097,1096]],[[1101,1098,1100]],[[1104,1095,1099]],[[1103,1098,1101]],[[1103,1099,1098]],[[1105,1103,1101]],[[1105,1104,1103]],[[1104,1106,1096]],[[1105,1097,1106]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221dafb6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef4b0449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1107,1108,1109]],[[1110,1111,1112]],[[1113,1114,1115]],[[1116,1117,1118]],[[1119,1120,1121]],[[1121,1122,1119]],[[1123,1120,1124]],[[1124,1120,1125]],[[1125,1120,1126]],[[1117,1127,1118]],[[1128,1126,1119]],[[1129,1130,1131]],[[1132,1133,1115]],[[1134,1135,1136]],[[1137,1107,1138]],[[1138,1139,1137]],[[1140,1109,1141]],[[1142,1143,1144]],[[1145,1146,1147]],[[1148,433,1149]],[[1147,1150,1151]],[[1152,415,432]],[[1153,412,414]],[[1154,1155,1156]],[[1157,1158,1159]],[[1160,1161,1162]],[[1163,1164,1165]],[[1166,1167,1168]],[[1169,1154,1156]],[[1170,1171,1167]],[[1172,1160,1162]],[[1162,1161,1173]],[[1174,1172,1162]],[[1175,1176,1177]],[[1175,1178,1172]],[[1179,1180,1181]],[[1182,1183,1149]],[[1184,1185,1177]],[[1186,1187,1145]],[[1145,1187,1188]],[[1189,432,1190]],[[1151,1191,1192]],[[1193,1194,1195]],[[1186,1192,1196]],[[1197,1198,1199]],[[1200,1201,1199]],[[1202,1203,1197]],[[1201,1204,1197]],[[1197,1204,1202]],[[1205,1206,1207]],[[1199,1201,1197]],[[1208,1209,1210]],[[1189,1195,432]],[[1211,1212,1213]],[[1214,1215,1207]],[[1206,1216,1211]],[[1211,1217,1218]],[[1217,1211,1216]],[[1213,1206,1211]],[[1219,1149,1220]],[[1221,1222,1223]],[[1224,1225,1226]],[[1227,1111,1115]],[[1228,1110,1225]],[[1225,1110,1229]],[[1111,1230,1112]],[[1231,1232,1163]],[[1163,1233,1158]],[[1234,1235,1236]],[[1222,1228,1223]],[[1237,1238,1134]],[[1128,1130,1129]],[[1189,1214,1201]],[[1239,433,1148]],[[1235,1240,1144]],[[1240,1241,1142]],[[1180,1242,414]],[[1243,1244,1153]],[[1245,1138,1109]],[[1245,1139,1138]],[[1137,1246,1107]],[[1141,1247,1140]],[[1131,1248,1139]],[[1249,1238,1248]],[[1165,1164,1157]],[[1165,1231,1163]],[[1220,1250,1219]],[[1251,1215,1252]],[[1253,1254,1144]],[[1221,1223,1224]],[[1255,1113,1221]],[[1132,1256,1133]],[[1195,1194,1257]],[[1258,1259,1260]],[[1157,1261,1166]],[[1262,1263,1233]],[[1168,1171,1231]],[[1171,1264,1231]],[[1164,1163,1158]],[[1233,1263,1158]],[[1174,1154,1265]],[[1266,1232,1231]],[[1267,1184,1243]],[[1268,415,1152]],[[1115,1222,1113]],[[1115,1110,1228]],[[1237,1269,1246]],[[1270,1247,1141]],[[1189,1271,1272]],[[1210,433,1273]],[[1234,1250,1274]],[[1275,1143,1142]],[[1131,1249,1248]],[[1276,1277,1249]],[[1249,1277,1238]],[[1278,1122,1133]],[[1238,1277,1279]],[[1131,1280,1129]],[[1281,1282,1283]],[[1284,412,1244]],[[1242,1285,414]],[[1286,1243,1153]],[[1193,1195,1189]],[[1194,1258,1260]],[[1147,1151,1192]],[[1185,1178,1177]],[[1132,1287,1256]],[[1127,1288,1118]],[[1289,1136,1290]],[[1237,1248,1238]],[[1185,1184,1291]],[[1242,1180,1292]],[[1248,1137,1139]],[[1248,1237,1137]],[[1186,1293,1294]],[[1186,1196,1292]],[[1242,1267,1286]],[[1282,1176,1283]],[[1221,1224,1226]],[[1223,1225,1224]],[[1149,1183,1148]],[[1271,1190,1210]],[[1295,1140,1247]],[[1295,1109,1140]],[[1264,1296,1266]],[[1296,1232,1266]],[[1296,1169,1233]],[[1169,1263,1262]],[[1289,1269,1136]],[[1108,1246,1269]],[[1170,1175,1265]],[[1172,1174,1265]],[[1236,1235,1144]],[[1297,1113,1255]],[[1288,1279,1118]],[[1279,1130,1118]],[[1287,1117,1116]],[[1279,1277,1130]],[[1255,1221,1226]],[[1113,1222,1221]],[[1240,1142,1144]],[[1250,1226,1298]],[[1276,1130,1277]],[[1129,1126,1128]],[[1149,1274,1220]],[[1149,1143,1274]],[[1253,1270,1290]],[[1141,1108,1289]],[[1285,1153,414]],[[1285,1286,1153]],[[1254,1290,1299]],[[1136,1135,1117]],[[1144,1300,1236]],[[1290,1117,1299]],[[1283,1176,1159]],[[1176,1170,1261]],[[1117,1135,1127]],[[1134,1238,1301]],[[1299,1117,1287]],[[1290,1136,1117]],[[1191,1185,1291]],[[1191,1178,1185]],[[1270,1253,1144]],[[1270,1289,1290]],[[1181,1259,1258]],[[414,415,1259]],[[1302,1258,1194]],[[1179,1181,1258]],[[1189,1190,1271]],[[432,433,1190]],[[1142,1234,1274]],[[1241,1235,1234]],[[1250,1255,1226]],[[1234,1236,1297]],[[1257,1152,432]],[[1260,1259,1152]],[[1274,1275,1142]],[[1274,1143,1275]],[[1159,1176,1303]],[[1282,1243,1177]],[[1223,1228,1225]],[[1222,1115,1228]],[[1231,1264,1266]],[[1169,1262,1233]],[[1300,1299,1114]],[[1287,1304,1256]],[[1132,1299,1287]],[[1300,1254,1299]],[[1297,1114,1113]],[[1236,1300,1114]],[[1305,1306,1252]],[[1252,1215,1272]],[[1278,1128,1122]],[[1126,1120,1119]],[[1128,1116,1118]],[[1304,1287,1116]],[[1232,1233,1163]],[[1232,1296,1233]],[[1210,1307,1271]],[[1209,1308,1307]],[[1309,1200,1199]],[[1310,1193,1200]],[[1234,1297,1255]],[[1236,1114,1297]],[[1172,1265,1175]],[[1311,1296,1264]],[[1142,1241,1234]],[[1240,1235,1241]],[[1289,1108,1269]],[[1141,1109,1108]],[[1138,1107,1109]],[[1246,1108,1107]],[[1308,1208,1148]],[[1273,433,1239]],[[1208,1210,1239]],[[1239,1210,1273]],[[1130,1128,1118]],[[1119,1122,1128]],[[1293,1312,1294]],[[1293,1186,1292]],[[1259,1268,1152]],[[1259,415,1268]],[[1131,1276,1249]],[[1131,1130,1276]],[[1302,1179,1258]],[[1312,1293,1292]],[[1179,1292,1180]],[[1179,1312,1292]],[[1184,1242,1292]],[[1286,1285,1242]],[[1184,1177,1243]],[[1178,1175,1177]],[[1146,1145,1188]],[[1147,1186,1145]],[[1200,1193,1201]],[[1294,1312,1302]],[[1257,1194,1260]],[[1302,1312,1179]],[[1247,1270,1144]],[[1141,1289,1270]],[[1274,1250,1220]],[[1234,1255,1250]],[[1307,1210,1209]],[[1190,433,1210]],[[1307,1272,1271]],[[1307,1183,1252]],[[1307,1252,1272]],[[1207,1206,1213]],[[1306,1251,1252]],[[1215,1214,1272]],[[1207,1215,1251]],[[1207,1213,1214]],[[1305,1182,1313]],[[1313,1314,1306]],[[1171,1170,1265]],[[1176,1175,1170]],[[1303,1261,1159]],[[1303,1176,1261]],[[1165,1166,1231]],[[1261,1170,1167]],[[1157,1166,1165]],[[1261,1167,1166]],[[1176,1282,1177]],[[1243,1284,1244]],[[1153,1244,412]],[[1243,1282,1281]],[[1214,1189,1272]],[[1201,1193,1189]],[[1265,1311,1171]],[[1265,1154,1311]],[[1193,1302,1194]],[[1193,1310,1302]],[[1115,1111,1110]],[[1227,1230,1111]],[[1166,1168,1231]],[[1167,1171,1168]],[[1192,1191,1291]],[[1151,1178,1191]],[[1196,1192,1291]],[[1186,1147,1192]],[[1184,1196,1291]],[[1184,1292,1196]],[[1114,1132,1115]],[[1114,1299,1132]],[[1304,1278,1133]],[[1116,1128,1278]],[[414,1181,1180]],[[414,1259,1181]],[[1306,1314,1251]],[[1205,1250,1298]],[[1205,1298,1206]],[[1226,1206,1298]],[[1313,1219,1314]],[[1314,1219,1205]],[[1296,1311,1169]],[[1174,1155,1154]],[[1315,1129,1280]],[[1315,1126,1129]],[[1313,1182,1149]],[[1313,1306,1305]],[[1183,1305,1252]],[[1183,1182,1305]],[[1261,1157,1159]],[[1164,1158,1157]],[[1183,1308,1148]],[[1183,1307,1308]],[[1148,1208,1239]],[[1308,1209,1208]],[[1294,1309,1199]],[[1294,1302,1309]],[[1309,1310,1200]],[[1309,1302,1310]],[[1286,1267,1243]],[[1242,1184,1267]],[[1135,1301,1127]],[[1238,1279,1288]],[[1288,1301,1238]],[[1288,1127,1301]],[[1135,1134,1301]],[[1136,1269,1237]],[[1137,1237,1246]],[[1134,1136,1237]],[[1195,1257,432]],[[1260,1152,1257]],[[1171,1311,1264]],[[1154,1169,1311]],[[1159,1281,1283]],[[1284,1243,1281]],[[1159,1284,1281]],[[1159,412,1284]],[[1278,1304,1116]],[[1133,1256,1304]],[[1205,1219,1250]],[[1313,1149,1219]],[[1207,1314,1205]],[[1207,1251,1314]],[[1144,1254,1300]],[[1253,1290,1254]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221e7287-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1316,1317,1318]],[[1319,1320,1321]],[[1322,1323,1324]],[[1325,1326,1327]],[[1328,1329,1330]],[[1331,1332,1333]],[[1334,1335,1336]],[[1337,1338,1339]],[[1340,1341,1342]],[[1343,1337,1344]],[[1340,1345,1341]],[[1345,1346,1341]],[[1345,1347,1346]],[[1348,1347,1343]],[[1349,1350,1351]],[[1335,1352,1353]],[[1354,1355,1356]],[[1357,1358,1359]],[[1360,1361,1362]],[[1363,1364,1365]],[[1359,1358,1366]],[[1336,1335,1367]],[[1368,1369,1370]],[[1371,1372,1373]],[[1374,1375,1376]],[[1375,1377,1376]],[[1368,1378,1379]],[[1380,1381,1382]],[[1383,1384,1385]],[[1386,1387,1388]],[[1386,1388,1389]],[[1390,1391,1392]],[[1387,1393,1388]],[[1394,1395,1396]],[[1397,1398,1393]],[[1399,1381,1400]],[[1392,1401,1398]],[[1402,1403,1323]],[[1404,1405,1406]],[[1407,1408,1409]],[[1410,1411,1409]],[[1412,1404,1413]],[[1414,1415,1416]],[[1415,1417,1416]],[[1418,1419,1420]],[[1421,1422,1423]],[[1424,673,674]],[[1425,1426,1427]],[[1428,1318,1429]],[[1430,1431,1432]],[[1433,1434,1435]],[[1436,699,700]],[[1437,1438,1439]],[[610,575,1440]],[[1441,1438,1442]],[[1443,1375,1444]],[[1445,1446,1447]],[[1448,1449,1450]],[[1377,1324,1323]],[[1377,1451,1324]],[[1377,1375,1451]],[[1402,1452,1403]],[[1453,575,577]],[[1454,1455,1456]],[[1457,1458,1459]],[[1460,1461,1425]],[[1462,1463,1457]],[[1464,1465,1466]],[[1467,1468,1402]],[[1469,1470,1471]],[[1472,1473,1474]],[[1362,1475,1476]],[[1477,1478,1455]],[[1479,1465,1478]],[[1454,1480,1467]],[[1481,1482,1483]],[[1484,1485,1486]],[[1487,1488,1489]],[[1485,1490,1486]],[[1491,1492,1493]],[[1373,1494,1495]],[[1495,1353,1372]],[[1371,1373,1495]],[[1367,1353,1496]],[[1371,1495,1372]],[[1496,1353,1495]],[[1495,1494,1497]],[[1484,1486,1498]],[[1499,1411,1413]],[[1410,1500,1501]],[[1502,1373,1372]],[[1502,1503,1329]],[[1504,1505,1506]],[[1481,1507,607]],[[1508,1509,1510]],[[1511,1455,1512]],[[1513,1514,1515]],[[1516,1491,1488]],[[1440,1517,1518]],[[1510,1509,1519]],[[1520,1433,1521]],[[1522,1523,1400]],[[1449,1524,1471]],[[1370,1369,1525]],[[1526,1498,1486]],[[1527,1469,1370]],[[1528,1529,1463]],[[1468,1467,1530]],[[1468,1529,1438]],[[1468,1463,1529]],[[1444,1531,1532]],[[1533,1534,1535]],[[1329,1536,1330]],[[1537,1538,1539]],[[1503,1540,1325]],[[1541,1542,1320]],[[1543,1336,1329]],[[1543,1329,1328]],[[1330,1503,1485]],[[1320,1319,1544]],[[1506,1545,1509]],[[1519,1360,1362]],[[1459,1454,1504]],[[1546,1547,1456]],[[1504,1547,1505]],[[1547,1454,1456]],[[1494,1336,1548]],[[1549,1550,1334]],[[1551,1552,1518]],[[1553,1529,1528]],[[1554,1555,1436]],[[577,699,1555]],[[1556,1347,1350]],[[1556,1346,1347]],[[1557,1546,1456]],[[1456,1455,1558]],[[1559,1560,1407]],[[1561,1562,1563]],[[1446,1464,1322]],[[1512,1465,1464]],[[1564,1558,1565]],[[1511,1512,1566]],[[1567,1568,1569]],[[1570,1506,1509]],[[1358,1344,1339]],[[1358,1357,1344]],[[1329,1503,1536]],[[1571,1538,1572]],[[1447,1487,1445]],[[1512,1445,1566]],[[1573,1504,1506]],[[1459,1574,1454]],[[1548,1336,1367]],[[1494,1329,1336]],[[1373,1329,1494]],[[1373,1502,1329]],[[1575,1576,1317]],[[1577,1424,674]],[[1501,1413,1411]],[[1578,1579,1580]],[[1411,1581,1409]],[[1417,1420,1416]],[[1582,1362,1476]],[[1519,1583,1360]],[[1584,1585,1586]],[[1515,1583,1519]],[[1585,1483,1586]],[[1508,1587,1570]],[[1470,1469,1588]],[[1353,1367,1335]],[[1428,1429,1589]],[[1385,1590,1591]],[[1382,1384,1429]],[[1385,1591,1592]],[[1446,1322,1324]],[[1466,1323,1322]],[[1593,1594,1595]],[[1578,1596,1579]],[[672,1595,700]],[[672,673,1597]],[[1598,1394,1396]],[[1318,1428,1433]],[[1520,1434,1433]],[[1599,1578,1404]],[[1600,1430,1426]],[[1437,1403,1452]],[[1601,1602,1430]],[[1427,1437,1603]],[[1554,1436,700]],[[1555,699,1436]],[[1446,1445,1464]],[[1512,1464,1445]],[[1604,1350,1348]],[[1605,1349,1606]],[[1607,1608,1609]],[[1609,1608,1472]],[[1332,1610,1611]],[[1442,1438,1529]],[[1612,1613,1527]],[[1348,1344,1357]],[[1509,1515,1519]],[[1509,1545,1513]],[[1614,1615,1453]],[[1616,1617,1472]],[[1524,1448,1618]],[[1531,1619,1620]],[[1353,1352,1621]],[[1358,1622,1366]],[[1623,1345,1340]],[[1623,1624,1345]],[[1625,1626,1627]],[[1532,1628,1629]],[[1507,1544,1630]],[[1631,1326,1540]],[[1630,1544,1319]],[[1542,1541,1632]],[[1555,1554,577]],[[1431,1633,1634]],[[1635,1636,1637]],[[1584,1510,1519]],[[607,1638,1474]],[[1639,1637,1640]],[[1380,1400,1381]],[[1591,1403,1592]],[[1477,1467,1402]],[[1477,1454,1467]],[[1476,1475,1641]],[[1362,1361,1475]],[[1361,1360,1642]],[[1558,1511,1489]],[[1643,1479,1478]],[[1323,1465,1479]],[[1564,1456,1558]],[[1454,1574,1480]],[[577,1644,1614]],[[1645,1461,1617]],[[1646,1482,1647]],[[1648,1649,1482]],[[1338,1623,1650]],[[1338,1624,1623]],[[1361,1641,1475]],[[1491,1565,1488]],[[1429,1522,1382]],[[1399,1391,1381]],[[1651,1652,1653]],[[1654,1563,1655]],[[1415,1560,1559]],[[1407,1581,1417]],[[1581,1411,1499]],[[1656,1657,1658]],[[1328,1330,1485]],[[1536,1503,1330]],[[1413,1404,1578]],[[1412,1501,1656]],[[1406,1405,1659]],[[1576,1395,1317]],[[1474,1647,607]],[[1482,1649,1483]],[[1660,1592,1403]],[[1385,1384,1590]],[[1661,1662,1602]],[[1521,1589,1662]],[[1663,1442,1664]],[[1638,1472,1474]],[[1327,1476,1665]],[[1493,1564,1565]],[[1666,1447,1667]],[[1668,1669,1670]],[[1671,1572,1631]],[[1321,1630,1319]],[[1540,1671,1631]],[[1538,1502,1539]],[[1507,1672,1541]],[[1537,1539,1321]],[[1538,1537,1572]],[[1673,1674,1675]],[[1327,1326,1582]],[[1673,1676,1537]],[[1674,1673,1321]],[[1631,1572,1537]],[[1632,1674,1542]],[[1539,1630,1321]],[[1344,1337,1339]],[[1343,1347,1345]],[[1468,1677,1463]],[[1678,1574,1677]],[[1427,1602,1679]],[[1662,1385,1679]],[[1625,1666,1667]],[[1626,1444,1627]],[[1497,1496,1495]],[[1497,1548,1496]],[[1635,1680,1636]],[[1611,1664,1462]],[[1542,1674,1321]],[[1676,1326,1631]],[[1647,1481,607]],[[1647,1482,1481]],[[1681,1660,1403]],[[1681,1682,1660]],[[1509,1513,1515]],[[1545,1557,1514]],[[1407,1560,1408]],[[1651,1416,1683]],[[1684,1575,1317]],[[1404,1406,1576]],[[1468,1530,1677]],[[1467,1480,1530]],[[1581,1407,1409]],[[1581,1685,1417]],[[1490,1327,1526]],[[1326,1675,1582]],[[1486,1490,1526]],[[1485,1503,1325]],[[1582,1476,1327]],[[1641,1493,1476]],[[1667,1446,1324]],[[1667,1447,1446]],[[1686,1607,1609]],[[1440,575,1517]],[[675,1577,674]],[[1419,1687,1420]],[[1530,1678,1677]],[[1530,1480,1678]],[[1351,1355,1354]],[[1356,1688,1354]],[[1640,1474,1689]],[[1638,607,609]],[[1411,1410,1501]],[[1408,1560,1690]],[[1691,1661,1692]],[[1693,1634,1633]],[[1570,1573,1506]],[[1333,1694,1573]],[[1570,1587,1695]],[[1611,1696,1664]],[[1697,1370,1469]],[[1370,1525,1612]],[[1550,1698,1699]],[[1700,1701,1702]],[[1352,1335,1703]],[[1704,1526,1665]],[[1705,1706,1702]],[[1669,1668,1625]],[[1699,1703,1550]],[[1471,1524,1697]],[[1707,1708,1699]],[[1708,1588,1621]],[[1328,1709,1543]],[[1703,1335,1334]],[[1709,1549,1543]],[[1334,1336,1543]],[[1470,1710,1471]],[[1697,1711,1370]],[[1621,1527,1359]],[[1588,1469,1527]],[[1359,1527,1357]],[[1359,1366,1621]],[[1435,1693,1712]],[[673,1424,1577]],[[1481,1483,1507]],[[1567,1636,1568]],[[1713,1444,1626]],[[1629,1714,1524]],[[1507,1541,1544]],[[1542,1321,1320]],[[1462,1528,1463]],[[1664,1442,1553]],[[1664,1553,1528]],[[1442,1529,1553]],[[1679,1385,1592]],[[1383,1429,1384]],[[1589,1383,1385]],[[1589,1429,1383]],[[1627,1444,1715]],[[1713,1443,1444]],[[1438,1441,1439]],[[1461,1552,1425]],[[1483,1716,1507]],[[1717,1718,1582]],[[1544,1541,1320]],[[1672,1632,1541]],[[1323,1477,1402]],[[1643,1478,1477]],[[1621,1352,1708]],[[1621,1622,1353]],[[1451,1443,1713]],[[1451,1375,1443]],[[1407,1417,1559]],[[1580,1719,1720]],[[1655,1562,1690]],[[1561,1500,1721]],[[1450,1627,1448]],[[1618,1629,1524]],[[1722,1441,1442]],[[1439,1603,1437]],[[1659,1658,1657]],[[1723,1404,1656]],[[1723,1656,1658]],[[1501,1657,1656]],[[1345,1624,1343]],[[1338,1337,1624]],[[1431,1634,1724]],[[1691,1521,1662]],[[1689,1474,1473]],[[1646,1647,1474]],[[1564,1725,1726]],[[1642,1641,1361]],[[1725,1642,1360]],[[1493,1641,1642]],[[1714,1697,1524]],[[1711,1368,1370]],[[1671,1571,1572]],[[1671,1540,1571]],[[1649,1586,1483]],[[1727,1510,1584]],[[1628,1728,1714]],[[1620,1619,1369]],[[1410,1721,1500]],[[1410,1409,1408]],[[1729,1597,673]],[[1594,1693,1730]],[[1597,1593,672]],[[1594,1712,1693]],[[1435,1731,1316]],[[1432,1692,1601]],[[1577,1732,673]],[[1595,1733,700]],[[1597,1729,1712]],[[1316,1684,1317]],[[1731,1734,1316]],[[1735,1421,1423]],[[1575,1599,1404]],[[1596,1422,1421]],[[1520,1724,1634]],[[1520,1521,1691]],[[1378,1728,1379]],[[1531,1375,1619]],[[1736,1435,1712]],[[1434,1520,1634]],[[1633,1733,1730]],[[1693,1434,1634]],[[1368,1379,1369]],[[1728,1628,1379]],[[1558,1737,1511]],[[1558,1455,1737]],[[1425,1439,1738]],[[1722,1609,1472]],[[1460,1617,1461]],[[1460,1722,1617]],[[1645,1616,1518]],[[1739,610,1440]],[[1323,1643,1477]],[[1323,1479,1643]],[[1365,1604,1740]],[[1350,1347,1348]],[[1357,1740,1348]],[[1365,1364,1351]],[[1741,1740,1357]],[[1604,1348,1740]],[[1534,1364,1363]],[[1364,1356,1351]],[[1632,1675,1674]],[[1632,1672,1742]],[[1604,1351,1350]],[[1604,1365,1351]],[[1743,1744,1615]],[[1426,1425,1552]],[[1659,1723,1658]],[[1405,1404,1723]],[[1707,1745,1470]],[[1707,1701,1745]],[[1654,1655,1652]],[[1563,1562,1655]],[[1651,1654,1652]],[[1683,1563,1654]],[[1390,1392,1398]],[[1746,1401,1392]],[[1638,1739,1440]],[[609,610,1739]],[[1382,1590,1384]],[[1382,1381,1591]],[[1382,1591,1590]],[[1381,1403,1591]],[[1633,1554,700]],[[1747,1644,1554]],[[1334,1550,1703]],[[1550,1549,1748]],[[1458,1677,1574]],[[1678,1480,1574]],[[1749,1459,1504]],[[1458,1463,1677]],[[1749,1457,1459]],[[1611,1610,1750]],[[1694,1749,1504]],[[1332,1457,1749]],[[1568,1750,1695]],[[1695,1573,1570]],[[1742,1582,1675]],[[1672,1507,1716]],[[1687,1419,1751]],[[1751,1752,1577]],[[1711,1378,1368]],[[1714,1728,1378]],[[1449,1448,1524]],[[1627,1715,1618]],[[1492,1665,1476]],[[1753,1669,1450]],[[1449,1754,1755]],[[1487,1489,1445]],[[1702,1706,1704]],[[1526,1327,1665]],[[1707,1705,1701]],[[1498,1526,1706]],[[1698,1748,1705]],[[1498,1706,1705]],[[1702,1704,1756]],[[1706,1526,1704]],[[1705,1748,1498]],[[1705,1707,1698]],[[1627,1618,1448]],[[1629,1628,1714]],[[1459,1458,1574]],[[1457,1463,1458]],[[1332,1611,1457]],[[1664,1528,1462]],[[1663,1609,1442]],[[1439,1425,1603]],[[1650,1340,1342]],[[1650,1623,1340]],[[1499,1578,1685]],[[1757,1734,1596]],[[1757,1596,1578]],[[1734,1732,1596]],[[1607,1686,1696]],[[1686,1663,1696]],[[1432,1601,1430]],[[1692,1724,1691]],[[1427,1681,1437]],[[1682,1592,1660]],[[1715,1532,1618]],[[1531,1444,1375]],[[1731,1435,1736]],[[1434,1693,1435]],[[1689,1607,1639]],[[1689,1608,1607]],[[1720,1719,1418]],[[1758,1735,1423]],[[1719,1579,1418]],[[1596,1421,1579]],[[1321,1673,1537]],[[1675,1326,1676]],[[1537,1676,1631]],[[1673,1675,1676]],[[1655,1690,1652]],[[1562,1408,1690]],[[1560,1415,1690]],[[1559,1417,1415]],[[1714,1711,1697]],[[1714,1378,1711]],[[1725,1564,1493]],[[1726,1456,1564]],[[1642,1725,1493]],[[1726,1583,1456]],[[1360,1726,1725]],[[1360,1583,1726]],[[1357,1527,1613]],[[1527,1370,1612]],[[1740,1741,1363]],[[1613,1525,1741]],[[1740,1363,1365]],[[1741,1525,1363]],[[1745,1754,1470]],[[1745,1701,1754]],[[1710,1754,1449]],[[1710,1470,1754]],[[1640,1689,1639]],[[1473,1608,1689]],[[1713,1625,1667]],[[1713,1626,1625]],[[1351,1356,1355]],[[1364,1688,1356]],[[1759,1331,1573]],[[1332,1749,1694]],[[1573,1694,1504]],[[1333,1332,1694]],[[1573,1331,1333]],[[1759,1610,1760]],[[1598,1522,1429]],[[1523,1401,1399]],[[1598,1523,1522]],[[1598,1401,1523]],[[1500,1561,1563]],[[1721,1562,1561]],[[1583,1557,1456]],[[1557,1545,1505]],[[1460,1738,1722]],[[1460,1425,1738]],[[1751,1577,675]],[[1752,1422,1596]],[[1729,1732,1731]],[[1752,1596,1732]],[[1516,1756,1491]],[[1489,1566,1445]],[[1670,1761,1516]],[[1492,1476,1493]],[[1762,1743,1615]],[[1633,700,1733]],[[1615,1744,1552]],[[1743,1633,1431]],[[1747,1633,1743]],[[1747,1554,1633]],[[1406,1659,1657]],[[1405,1723,1659]],[[1470,1708,1707]],[[1352,1703,1699]],[[1739,1638,609]],[[1440,1472,1638]],[[1632,1742,1675]],[[1585,1716,1483]],[[1763,1717,1742]],[[1718,1362,1582]],[[1722,1472,1617]],[[1608,1473,1472]],[[1523,1399,1400]],[[1401,1746,1399]],[[1597,1594,1593]],[[1693,1633,1730]],[[1595,1594,1730]],[[1597,1712,1594]],[[1607,1696,1680]],[[1686,1764,1663]],[[1760,1610,1332]],[[1508,1570,1509]],[[1759,1695,1610]],[[1759,1573,1695]],[[1331,1760,1332]],[[1331,1759,1760]],[[1695,1750,1610]],[[1680,1696,1611]],[[1457,1611,1462]],[[1750,1680,1611]],[[1601,1661,1602]],[[1601,1692,1661]],[[1644,1762,1615]],[[1615,1551,1453]],[[1600,1431,1430]],[[1724,1692,1432]],[[1690,1653,1652]],[[1690,1415,1414]],[[1654,1651,1683]],[[1653,1414,1651]],[[1651,1414,1416]],[[1653,1690,1414]],[[1661,1691,1662]],[[1724,1520,1691]],[[1455,1454,1477]],[[1547,1504,1454]],[[1722,1439,1441]],[[1722,1738,1439]],[[1753,1761,1670]],[[1701,1705,1702]],[[1668,1516,1488]],[[1761,1702,1516]],[[1516,1702,1756]],[[1761,1755,1702]],[[1669,1753,1670]],[[1755,1754,1700]],[[1579,1765,1418]],[[1579,1421,1735]],[[1599,1757,1578]],[[1599,1684,1757]],[[1751,1758,1423]],[[1765,1579,1735]],[[1687,1751,675]],[[1752,1732,1577]],[[1640,1646,1474]],[[1640,1648,1646]],[[1357,1613,1741]],[[1612,1525,1613]],[[1516,1668,1670]],[[1625,1627,1669]],[[1487,1668,1488]],[[1666,1625,1668]],[[1755,1700,1702]],[[1754,1701,1700]],[[1593,1595,672]],[[1730,1733,1595]],[[1442,1609,1722]],[[1764,1686,1609]],[[575,1453,1517]],[[1615,1552,1551]],[[1614,1453,577]],[[1551,1517,1453]],[[1325,1540,1326]],[[1503,1571,1540]],[[1519,1718,1717]],[[1519,1362,1718]],[[1527,1621,1588]],[[1366,1622,1621]],[[1727,1584,1586]],[[1519,1717,1584]],[[1649,1567,1586]],[[1569,1508,1727]],[[1489,1511,1566]],[[1737,1455,1511]],[[1696,1663,1664]],[[1764,1609,1663]],[[1618,1532,1629]],[[1715,1444,1532]],[[1549,1709,1498]],[[1328,1485,1484]],[[1748,1549,1498]],[[1334,1543,1549]],[[1484,1709,1328]],[[1484,1498,1709]],[[1396,1406,1657]],[[1766,1395,1576]],[[1666,1487,1447]],[[1666,1668,1487]],[[1464,1466,1322]],[[1465,1323,1466]],[[1387,1390,1398]],[[1387,1391,1390]],[[1765,1419,1418]],[[1765,1735,1758]],[[1419,1758,1751]],[[1419,1765,1758]],[[1614,1644,1615]],[[1747,1743,1762]],[[1554,1644,577]],[[1747,1762,1644]],[[1712,1729,1736]],[[673,1732,1729]],[[1379,1620,1369]],[[1379,1628,1620]],[[1628,1531,1620]],[[1628,1532,1531]],[[1522,1380,1382]],[[1522,1400,1380]],[[1503,1538,1571]],[[1503,1502,1538]],[[1506,1505,1545]],[[1547,1546,1505]],[[1546,1557,1505]],[[1514,1513,1545]],[[1583,1514,1557]],[[1583,1515,1514]],[[1551,1518,1517]],[[1552,1461,1518]],[[1616,1645,1617]],[[1518,1461,1645]],[[1440,1616,1472]],[[1440,1518,1616]],[[1432,1431,1724]],[[1744,1743,1431]],[[1767,1755,1761]],[[1767,1449,1755]],[[1704,1492,1756]],[[1493,1565,1491]],[[1756,1492,1491]],[[1704,1665,1492]],[[1699,1708,1352]],[[1470,1588,1708]],[[1404,1412,1656]],[[1413,1501,1412]],[[1420,1720,1418]],[[1580,1579,1719]],[[1417,1720,1420]],[[1417,1685,1720]],[[1685,1580,1720]],[[1685,1578,1580]],[[1391,1746,1392]],[[1391,1399,1746]],[[1423,1752,1751]],[[1423,1422,1752]],[[1565,1489,1488]],[[1565,1558,1489]],[[1490,1325,1327]],[[1490,1485,1325]],[[1581,1499,1685]],[[1413,1578,1499]],[[1727,1567,1569]],[[1680,1750,1568]],[[1568,1587,1569]],[[1568,1695,1587]],[[1727,1508,1510]],[[1569,1587,1508]],[[1637,1636,1649]],[[1680,1568,1636]],[[1586,1567,1727]],[[1649,1636,1567]],[[1767,1450,1449]],[[1669,1627,1450]],[[1767,1753,1450]],[[1767,1761,1753]],[[1435,1316,1433]],[[1684,1599,1575]],[[1734,1684,1316]],[[1734,1757,1684]],[[1662,1589,1385]],[[1521,1433,1428]],[[1521,1428,1589]],[[1433,1316,1318]],[[1598,1318,1317]],[[1598,1429,1318]],[[1469,1471,1697]],[[1710,1449,1471]],[[1349,1605,1556]],[[1606,1346,1605]],[[1349,1556,1350]],[[1605,1346,1556]],[[1425,1427,1603]],[[1430,1602,1427]],[[1427,1679,1681]],[[1602,1662,1679]],[[1679,1682,1681]],[[1679,1592,1682]],[[1496,1548,1367]],[[1497,1494,1548]],[[1729,1731,1736]],[[1732,1734,1731]],[[1534,1533,1364]],[[1535,1364,1533]],[[1525,1534,1363]],[[1525,1535,1534]],[[1387,1397,1393]],[[1387,1398,1397]],[[1744,1600,1552]],[[1430,1427,1426]],[[1337,1343,1624]],[[1344,1348,1343]],[[1699,1698,1707]],[[1550,1748,1698]],[[1404,1576,1575]],[[1766,1396,1395]],[[1406,1766,1576]],[[1406,1396,1766]],[[1354,1349,1351]],[[1354,1606,1349]],[[1721,1408,1562]],[[1721,1410,1408]],[[1648,1637,1649]],[[1639,1607,1635]],[[1639,1635,1637]],[[1607,1680,1635]],[[1317,1394,1598]],[[1317,1395,1394]],[[1716,1585,1672]],[[1717,1582,1742]],[[1763,1585,1584]],[[1742,1672,1585]],[[1585,1763,1742]],[[1584,1717,1763]],[[1552,1600,1426]],[[1744,1431,1600]],[[1646,1648,1482]],[[1640,1637,1648]],[[1438,1437,1452]],[[1681,1403,1437]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22204791-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1768,1769,1770]],[[1771,1772,1773]],[[1774,1775,1776]],[[1777,1778,1779]],[[1780,1781,1782]],[[1783,1784,1778]],[[1785,1783,1778]],[[1786,1787,1783]],[[1788,1789,1790]],[[1791,1786,1783]],[[1792,1793,1786]],[[1794,1792,1786]],[[1795,1796,1792]],[[1794,1797,1792]],[[1795,1792,1797]],[[1798,1799,1800]],[[1791,1794,1786]],[[1801,1797,1794]],[[1802,1794,1791]],[[1785,1791,1783]],[[1803,1802,1791]],[[1804,1785,1805]],[[1798,1800,1806]],[[1807,1808,1799]],[[1799,1808,1800]],[[1809,1810,1774]],[[1811,1809,1812]],[[1813,1814,1815]],[[1812,1816,1811]],[[1812,1815,1816]],[[1812,1813,1815]],[[1813,1817,1814]],[[1818,1772,1817]],[[1771,1770,1772]],[[1771,1768,1770]],[[1768,1819,1769]],[[1820,1821,1822]],[[1820,1782,1823]],[[1821,1820,1823]],[[1823,1782,1781]],[[1788,1780,1782]],[[1788,1790,1780]],[[1824,1825,1789]],[[1826,1825,1824]],[[1827,1789,1788]],[[1776,1775,1828]],[[1810,1828,1775]],[[1776,1829,1808]],[[1776,1828,1829]],[[1812,1774,1830]],[[1830,1774,1776]],[[1820,1819,1771]],[[1819,1822,1769]],[[1827,1824,1789]],[[1827,1831,1824]],[[1807,1799,1779]],[[1800,1808,1828]],[[1832,1804,1777]],[[1785,1778,1777]],[[1798,1832,1779]],[[1805,1785,1777]],[[1773,1818,1817]],[[1773,1772,1818]],[[1809,1774,1812]],[[1810,1775,1774]],[[1777,1804,1805]],[[1806,1785,1804]],[[1830,1807,1779]],[[1808,1829,1828]],[[1830,1808,1807]],[[1830,1776,1808]],[[1771,1819,1768]],[[1820,1822,1819]],[[1773,1813,1812]],[[1773,1817,1813]],[[1831,1826,1824]],[[1831,1825,1826]],[[1832,1798,1806]],[[1779,1799,1798]],[[1804,1832,1806]],[[1777,1779,1832]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22206eb6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1833,1834,1835]],[[1836,1837,1838]],[[1839,174,1840]],[[1841,1842,172]],[[1837,172,1843]],[[1844,1845,1843]],[[1846,172,173]],[[1847,1848,1846]],[[1849,1850,1851]],[[1846,1843,172]],[[1834,173,1835]],[[1852,1853,1835]],[[1835,173,1840]],[[173,1839,1840]],[[173,174,1839]],[[1845,1837,1843]],[[1845,1838,1837]],[[1854,1853,1852]],[[1855,1856,1857]],[[1848,1858,1846]],[[1846,1858,1843]],[[1835,1853,1833]],[[1849,1851,1846]],[[1855,1857,1849]],[[1851,1847,1846]],[[1833,1846,173]],[[1849,1857,1850]],[[172,1836,1841]],[[172,1837,1836]],[[1859,1850,1857]],[[1859,1851,1850]],[[1834,1833,173]],[[1853,1846,1833]],[[1853,1849,1846]],[[1856,1860,1859]],[[1860,1854,1852]],[[1860,1853,1854]],[[1853,1855,1849]],[[1853,1860,1855]],[[1857,1856,1859]],[[1855,1860,1856]],[[1858,1844,1843]],[[1858,1845,1844]],[[1838,1841,1836]],[[1838,1842,1841]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222095f0-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1861,1862,1863]],[[1864,1865,1866]],[[1867,1868,1865]],[[1869,1870,1871]],[[1872,1873,1870]],[[1874,1875,1876]],[[1877,1869,1871]],[[1863,1873,1867]],[[1863,1878,1873]],[[1862,1879,1878]],[[1868,1875,1874]],[[1867,1873,1876]],[[1876,1869,1877]],[[1872,1870,1869]],[[1867,1864,1863]],[[1866,1863,1864]],[[1874,1876,1877]],[[1875,1867,1876]],[[1861,1863,1866]],[[1862,1878,1863]],[[1876,1872,1869]],[[1876,1873,1872]],[[1864,1867,1865]],[[1875,1868,1867]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2221a6f3-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1880,1881,1882]],[[1880,1882,1883]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2221ce24-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.35f5257403d44b2da79b759adfef6652","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1884,1885,1886]],[[1884,1886,1887]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2222df3c-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1888,1889,1890]],[[1888,1891,1892]],[[1888,1893,1891]],[[1888,1894,1893]],[[1888,1890,1894]],[[1889,1895,1890]],[[1889,1896,1895]],[[1889,1897,1896]],[[1898,1899,1889]],[[1900,1898,1889]],[[1901,1900,1889]],[[1902,1901,1889]],[[1902,1903,1901]],[[1902,1904,1903]],[[1902,1905,1904]],[[1902,1906,1905]],[[1907,1908,1902]],[[1902,1908,1909]],[[1910,1907,1911]],[[1911,1907,1912]],[[1912,1907,1902]],[[1913,1914,1912]],[[1915,1913,1912]],[[1912,1916,1917]],[[1918,1919,1912]],[[1920,1918,1912]],[[1921,1920,1912]],[[1922,1921,1917]],[[1917,1916,1923]],[[1924,1917,1923]],[[1925,1926,1917]],[[1927,1925,1917]],[[1928,1927,1917]],[[1923,122,123]],[[1916,121,122]],[[1888,1892,120]],[[121,1888,120]],[[1924,1923,123]],[[1924,1928,1917]],[[1923,1916,122]],[[1907,1929,1908]],[[1912,1914,1911]],[[1910,1929,1907]],[[1902,1889,1916]],[[1899,1897,1889]],[[1912,1902,1916]],[[1909,1906,1902]],[[1916,1888,121]],[[1916,1889,1888]],[[1930,1917,1926]],[[1930,1922,1917]],[[1921,1912,1917]],[[1919,1915,1912]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2223065e-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef501749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1931,1932,1933]],[[1934,350,351]],[[1935,347,348]],[[347,1936,346]],[[1937,1938,1939]],[[1940,1941,1942]],[[1943,1941,1940]],[[1944,1945,1946]],[[1947,1948,1949]],[[1950,1951,1952]],[[1953,1954,1955]],[[1956,1957,1958]],[[1959,1960,1961]],[[1962,1963,1959]],[[1964,1962,1959]],[[1965,1961,1966]],[[1967,1968,1969]],[[1970,1971,1972]],[[1973,1974,1975]],[[1976,292,291]],[[1959,1961,1977]],[[1978,1979,1980]],[[1981,1982,1983]],[[1984,319,320]],[[1985,304,1986]],[[1987,1988,1989]],[[1990,386,1989]],[[386,1991,385]],[[385,1991,383]],[[383,1991,1992]],[[1993,1994,1995]],[[1996,1997,1998]],[[1999,2000,2001]],[[2002,2003,2000]],[[2004,2005,2006]],[[2007,2008,2009]],[[2010,2011,2012]],[[2013,2014,2015]],[[1933,1932,2016]],[[2011,2017,2018]],[[2018,2019,2011]],[[2019,2018,2020]],[[2021,2022,2023]],[[2024,2025,2026]],[[2027,2028,352]],[[2029,2030,2031]],[[2032,2002,2033]],[[1989,386,317]],[[1980,2034,2035]],[[2035,350,1980]],[[2013,2036,2037]],[[1985,1982,304]],[[1963,2038,2039]],[[2040,2041,2042]],[[2043,2044,1983]],[[2045,2046,2047]],[[2007,2048,2008]],[[2049,2050,2051]],[[2052,2053,2054]],[[2055,2056,2057]],[[2020,2009,2058]],[[2059,2060,350]],[[2061,1974,2062]],[[2063,2064,1960]],[[2065,1975,2066]],[[2067,292,1976]],[[347,1947,2068]],[[2069,2070,2071]],[[2045,1994,1993]],[[2072,2073,1982]],[[2074,2071,2075]],[[2076,2077,2078]],[[2046,1984,320]],[[2046,2045,1984]],[[2079,2080,2081]],[[2082,2081,2083]],[[292,1986,304]],[[2084,2052,2054]],[[349,2085,2086]],[[2057,1947,347]],[[2087,2067,1976]],[[2088,2052,2067]],[[2060,2089,1978]],[[2090,2091,2092]],[[2093,2094,2001]],[[2008,2095,2096]],[[2097,2098,2099]],[[2037,2100,2101]],[[2102,2033,2103]],[[2104,2097,2001]],[[2105,2106,2107]],[[2108,2109,2110]],[[2111,2078,2112]],[[2074,1945,1943]],[[2113,2114,2075]],[[1953,1950,1954]],[[2028,2115,2116]],[[1997,2117,2118]],[[2088,2061,2062]],[[2119,2062,1974]],[[2067,2052,292]],[[2088,2120,2052]],[[2087,2061,2088]],[[2121,1961,1969]],[[293,2065,291]],[[2065,1973,1975]],[[2122,2123,1963]],[[2124,2120,2088]],[[2125,2041,2126]],[[2040,2127,2120]],[[1961,1960,1967]],[[2042,2041,2125]],[[2128,2129,352]],[[2116,2130,2080]],[[1935,2057,347]],[[1958,1936,1956]],[[2057,2056,2131]],[[2132,2127,1948]],[[2037,2110,2100]],[[2133,2093,2109]],[[2032,2033,2048]],[[2134,2015,2135]],[[2004,2136,2000]],[[2032,2048,2007]],[[2137,2138,2038]],[[2139,2140,2042]],[[1986,2054,1985]],[[2084,292,2052]],[[2141,1981,2142]],[[2143,2053,2144]],[[1979,2145,2034]],[[349,350,2146]],[[1991,2109,2093]],[[1991,386,2109]],[[2147,2137,2038]],[[2148,2138,2137]],[[2124,2149,2120]],[[2039,2122,1963]],[[2052,2120,2053]],[[2088,2062,2124]],[[2106,2150,2151]],[[2097,1999,2001]],[[2152,2153,2154]],[[2006,2136,2004]],[[320,2155,2047]],[[2156,304,1982]],[[2157,2156,2073]],[[2158,304,2156]],[[2086,2085,2057]],[[2159,2146,1937]],[[2160,2155,320]],[[2161,2158,2162]],[[2163,2164,2165]],[[2166,1941,2165]],[[2167,2168,2157]],[[2158,302,304]],[[2169,2170,2161]],[[2169,2160,2170]],[[2103,2033,2171]],[[2103,2150,2134]],[[2172,2144,2053]],[[2173,1983,1982]],[[1994,2073,2072]],[[2110,2109,1990]],[[2060,1978,350]],[[2089,1979,1978]],[[2174,2175,2051]],[[2176,2011,2019]],[[2177,2178,1952]],[[2112,1954,1950]],[[2153,2179,2154]],[[2005,2004,1999]],[[2139,2180,2069]],[[2070,1951,2071]],[[2181,1940,1942]],[[2182,1948,2127]],[[1968,2040,2120]],[[1958,1943,1940]],[[2183,2184,2154]],[[2179,2153,2098]],[[2010,2012,2016]],[[2011,2176,2185]],[[2147,1962,1964]],[[2147,2038,1963]],[[1998,2118,2020]],[[2009,2017,2007]],[[1996,2029,2031]],[[2020,2186,2009]],[[2009,2008,2058]],[[2048,2102,2008]],[[2013,2187,2014]],[[2014,2135,2015]],[[2003,2032,2007]],[[2003,2002,2032]],[[2066,1975,2061]],[[2065,2188,1973]],[[2189,1950,1952]],[[2189,2112,1950]],[[2129,2027,352]],[[2129,2115,2027]],[[1968,1967,2040]],[[1960,2123,2063]],[[2190,1995,1994]],[[319,1984,1993]],[[291,2191,1976]],[[2192,2065,2191]],[[2108,2133,2109]],[[2104,2193,2179]],[[2036,2108,2110]],[[2036,2015,2107]],[[1960,1959,2123]],[[1962,2147,1963]],[[2049,2194,2118]],[[2175,2174,2176]],[[2155,2169,2162]],[[2170,302,2158]],[[1987,1989,317]],[[1988,1990,1989]],[[2195,2118,2117]],[[2186,2017,2009]],[[320,2047,2046]],[[2155,2196,2047]],[[2026,2197,1934]],[[2198,2030,2199]],[[2200,2128,2023]],[[2117,2021,2195]],[[2199,2030,2029]],[[2083,2201,2117]],[[2028,2116,2202]],[[2203,2197,2204]],[[2119,2205,2062]],[[2119,1961,2121]],[[1964,1959,1977]],[[1963,2123,1959]],[[1999,2004,2000]],[[1999,2097,2005]],[[2086,2057,2206]],[[2085,349,2055]],[[2193,2207,2183]],[[2154,2208,2152]],[[2058,2096,2014]],[[2058,2008,2096]],[[2167,2073,1994]],[[2156,1982,2073]],[[2195,2050,2118]],[[2051,2175,2049]],[[2095,2102,2134]],[[2102,2103,2134]],[[2135,2095,2134]],[[2048,2033,2102]],[[2034,1938,2209]],[[2085,2055,2057]],[[2209,1938,1937]],[[2210,2053,1971]],[[2131,2056,1970]],[[2127,2053,2120]],[[2131,1970,2132]],[[2172,1939,1938]],[[2025,2116,2204]],[[2130,2129,2211]],[[2025,2202,2116]],[[351,2028,2202]],[[2136,2002,2000]],[[2171,2033,2002]],[[1947,2131,1948]],[[1947,2057,2131]],[[2146,2212,2213]],[[2146,2034,2212]],[[2175,2176,2194]],[[2174,2185,2176]],[[2162,2158,2156]],[[2161,2170,2158]],[[2164,2166,2165]],[[2214,1941,2166]],[[319,1987,317]],[[319,1988,1987]],[[2215,1983,2044]],[[2072,2190,1994]],[[2216,2044,2217]],[[2092,2215,2044]],[[2053,2143,2054]],[[2217,2044,2043]],[[2143,1985,2054]],[[2143,2173,1985]],[[2218,2215,2092]],[[2141,2110,1981]],[[2219,2220,2221]],[[2220,2222,2164]],[[2223,2196,2167]],[[2155,2162,2168]],[[2223,2167,1994]],[[2157,2162,2156]],[[2201,2022,2117]],[[2200,2023,2022]],[[2082,2083,2224]],[[2130,2116,2115]],[[2094,2104,2001]],[[2133,2108,2193]],[[2133,2193,2104]],[[2108,2107,2207]],[[2056,2225,1970]],[[2172,1938,2145]],[[351,2024,1934]],[[2204,2197,2026]],[[2113,2163,2165]],[[2222,2214,2166]],[[2226,2199,2029]],[[2100,2218,2091]],[[2183,2154,2179]],[[2184,2208,2154]],[[2122,2063,2123]],[[2122,2125,2126]],[[2199,2090,2089]],[[2227,2228,2145]],[[2146,2035,2034]],[[2146,350,2035]],[[2142,1981,1983]],[[1995,1988,319]],[[302,2160,320]],[[302,2170,2160]],[[2185,1931,2229]],[[2174,1932,1931]],[[2069,2074,2230]],[[1945,1941,1943]],[[2231,2068,2232]],[[1956,347,2068]],[[2233,2230,2234]],[[2068,1947,1949]],[[2232,1949,2231]],[[2230,2074,1943]],[[2235,2076,2236]],[[2237,2164,2163]],[[2159,2055,349]],[[2159,1939,2055]],[[2191,2066,1976]],[[2191,2065,2066]],[[293,2188,2065]],[[293,2119,1973]],[[2205,2121,2149]],[[2205,2119,2121]],[[2205,2124,2062]],[[2205,2149,2124]],[[2096,2095,2135]],[[2008,2102,2095]],[[2116,2203,2204]],[[2081,2082,2203]],[[2058,2014,2187]],[[2096,2135,2014]],[[2148,2139,2138]],[[2148,2180,2139]],[[291,2192,2191]],[[291,2065,2192]],[[2113,2075,2163]],[[1955,1954,2078]],[[2071,2077,2075]],[[2076,2237,2163]],[[2197,2030,2059]],[[2199,2089,2198]],[[2238,2030,2198]],[[2197,2203,2082]],[[2227,2239,2228]],[[2092,2044,2216]],[[2034,2145,1938]],[[2228,2144,2145]],[[2104,2098,2097]],[[2104,2179,2098]],[[2133,2094,2093]],[[2133,2104,2094]],[[1998,2020,2058]],[[2118,2019,2020]],[[2018,2186,2020]],[[2018,2017,2186]],[[2081,2080,2083]],[[2211,2128,2240]],[[2201,2200,2022]],[[2240,2128,2200]],[[2200,2241,2240]],[[2081,2203,2079]],[[1941,1946,2165]],[[1945,2074,1946]],[[1978,1980,350]],[[1979,2034,1980]],[[2242,2190,2072]],[[1995,319,1993]],[[1981,2072,1982]],[[1981,2110,2242]],[[1981,2242,2072]],[[2110,1988,2242]],[[2242,1995,2190]],[[2242,1988,1995]],[[2110,1990,1988]],[[2109,386,1990]],[[2036,2107,2108]],[[2015,2105,2107]],[[2080,2130,2240]],[[2129,2128,2211]],[[2080,2241,2083]],[[2080,2240,2241]],[[2149,1969,2120]],[[2149,2121,1969]],[[1969,1968,2120]],[[1969,1961,1967]],[[2056,1939,2225]],[[2056,2055,1939]],[[2162,2169,2161]],[[2155,2160,2169]],[[2030,2238,2059]],[[2198,2089,2060]],[[1934,2059,350]],[[2238,2198,2060]],[[1994,2045,2047]],[[1993,1984,2045]],[[2213,2209,1937]],[[2212,2034,2209]],[[2067,2087,2088]],[[2243,2066,2061]],[[2178,2189,1952]],[[2178,2112,2189]],[[1949,2182,2231]],[[1957,1956,2068]],[[293,1973,2188]],[[2119,1974,1973]],[[1946,2114,2165]],[[2114,2074,2075]],[[2064,2244,1960]],[[2040,2042,2127]],[[1939,2159,1937]],[[349,2146,2159]],[[2012,2229,2016]],[[2229,1931,1933]],[[2016,2229,1933]],[[2185,2174,1931]],[[2245,2111,2112]],[[2077,2076,2163]],[[2178,2245,2112]],[[2236,2076,2111]],[[2244,2040,1967]],[[2126,2063,2122]],[[2091,2218,2092]],[[2100,2110,2218]],[[2239,2090,2092]],[[2199,2226,2091]],[[2196,2168,2167]],[[2196,2155,2168]],[[2215,2142,1983]],[[2215,2218,2141]],[[2215,2141,2142]],[[2218,2110,2141]],[[2241,2201,2083]],[[2241,2200,2201]],[[2184,2107,2106]],[[2153,2099,2098]],[[2208,2106,2152]],[[2006,2099,2153]],[[2151,2153,2152]],[[2151,2006,2153]],[[2134,2105,2015]],[[2106,2151,2152]],[[2134,2150,2105]],[[2103,2151,2150]],[[2237,2221,2164]],[[2219,2177,2214]],[[2164,2221,2220]],[[2246,2235,2219]],[[2164,2222,2166]],[[2220,2214,2222]],[[2247,2230,2233]],[[2234,2231,2182]],[[1976,2243,2087]],[[1975,1974,2061]],[[2139,2042,2125]],[[2040,2064,2041]],[[2138,2125,2038]],[[2138,2139,2125]],[[1985,2173,1982]],[[2143,2144,2217]],[[2184,2106,2208]],[[2105,2150,2106]],[[2144,2172,2145]],[[2225,1939,2172]],[[352,2028,351]],[[2027,2115,2028]],[[2225,2210,1970]],[[2210,2172,2053]],[[2132,1972,2127]],[[1971,2053,1972]],[[2247,2127,2042]],[[1972,2053,2127]],[[1998,1997,2118]],[[2224,2083,2117]],[[2224,2117,1997]],[[2022,2021,2117]],[[2100,2226,2029]],[[2100,2091,2226]],[[2187,1998,2058]],[[2187,2248,1998]],[[2051,2195,2021]],[[2051,2050,2195]],[[2112,2078,1954]],[[2111,2076,2078]],[[1936,2181,1942]],[[1936,1940,2181]],[[2068,1949,2232]],[[1948,2182,1949]],[[1970,2210,1971]],[[2225,2172,2210]],[[2173,2043,1983]],[[2173,2143,2043]],[[2143,2217,2043]],[[2144,2228,2216]],[[2131,2132,1948]],[[1970,1972,2132]],[[2245,2236,2111]],[[2177,2219,2235]],[[2029,2248,2100]],[[2029,1996,2248]],[[1997,1996,2224]],[[2030,2197,2031]],[[2224,1996,2031]],[[1998,2248,1996]],[[2031,2082,2224]],[[2031,2197,2082]],[[347,1956,1936]],[[2068,2231,1957]],[[2234,1957,2231]],[[1958,1940,1936]],[[2177,2235,2236]],[[2237,2076,2235]],[[2089,2090,1979]],[[2092,2228,2239]],[[2227,2090,2239]],[[2199,2091,2090]],[[1979,2227,2145]],[[1979,2090,2227]],[[2220,2219,2214]],[[2246,2237,2235]],[[2221,2246,2219]],[[2221,2237,2246]],[[2108,2207,2193]],[[2107,2184,2207]],[[2193,2183,2179]],[[2207,2184,2183]],[[2026,2025,2204]],[[2026,1934,2024]],[[2202,2024,351]],[[2202,2025,2024]],[[2167,2157,2073]],[[2168,2162,2157]],[[2234,1958,1957]],[[2234,1943,1958]],[[2099,2005,2097]],[[2099,2006,2005]],[[2177,2245,2178]],[[2177,2236,2245]],[[1986,2084,2054]],[[1986,292,2084]],[[2136,2171,2002]],[[2136,2006,2171]],[[2148,2147,1964]],[[2148,2137,2147]],[[348,2086,2206]],[[348,349,2086]],[[2248,2101,2100]],[[2248,2187,2101]],[[2110,2037,2036]],[[2101,2187,2037]],[[2187,2013,2037]],[[2015,2036,2013]],[[2087,2243,2061]],[[1976,2066,2243]],[[2047,2223,1994]],[[2047,2196,2223]],[[1941,1944,1946]],[[1941,1945,1944]],[[2234,2230,1943]],[[2069,2071,2074]],[[2165,2114,2113]],[[1946,2074,2114]],[[2182,2233,2234]],[[2140,2139,2069]],[[2127,2247,2182]],[[2247,2140,2230]],[[2140,2069,2230]],[[2180,2070,2069]],[[2182,2247,2233]],[[2042,2140,2247]],[[2071,1953,2077]],[[2071,1951,1953]],[[2077,1953,1955]],[[1951,1950,1953]],[[2075,2077,2163]],[[1955,2078,2077]],[[2197,2059,1934]],[[2238,2060,2059]],[[1977,1965,1966]],[[1977,1961,1965]],[[2116,2079,2203]],[[2116,2080,2079]],[[2012,2185,2229]],[[2012,2011,2185]],[[2144,2216,2217]],[[2228,2092,2216]],[[2103,2006,2151]],[[2103,2171,2006]],[[2206,1935,348]],[[2206,2057,1935]],[[2125,2039,2038]],[[2125,2122,2039]],[[1960,2244,1967]],[[2064,2040,2244]],[[2194,2019,2118]],[[2194,2176,2019]],[[2064,2126,2041]],[[2064,2063,2126]],[[2129,2130,2115]],[[2211,2240,2130]],[[2148,2070,2180]],[[2148,1951,2070]],[[2194,2049,2175]],[[2118,2050,2049]],[[2146,2213,1937]],[[2212,2209,2213]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222354ba-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a0e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2249,2250,2251]],[[2249,2251,2252]],[[2252,2251,2253]],[[2251,344,345]],[[2253,2251,345]],[[2250,344,2251]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222465d8-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2254,2255,2256]],[[2257,2254,2256]],[[2258,2254,2257]],[[2258,2259,2254]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22250278-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2260,2261,2262]],[[2263,2264,2265]],[[2266,2267,2268]],[[2269,2270,2271]],[[2272,2273,2274]],[[2272,2274,2275]],[[2276,2277,2270]],[[2277,2273,2270]],[[2278,2279,2280]],[[2281,2274,2282]],[[2283,2284,2285]],[[2286,2287,2288]],[[2289,2281,2284]],[[2290,2291,2292]],[[2293,2294,2295]],[[2296,2290,2297]],[[2298,2296,2297]],[[2299,2292,2300]],[[2301,2302,2303]],[[2304,2305,2306]],[[2307,2308,2309]],[[2310,2311,2312]],[[2313,2314,2312]],[[2315,2316,2317]],[[2318,2319,2320]],[[2321,2322,2323]],[[2318,2324,2319]],[[2319,2324,2325]],[[2326,2327,2328]],[[2328,2329,2330]],[[2331,2311,2310]],[[2314,2313,2332]],[[2333,2334,2335]],[[2336,2308,2322]],[[2337,2338,2339]],[[2340,2341,2342]],[[2343,2344,2345]],[[2346,2347,2348]],[[2349,2350,2351]],[[2352,2353,2354]],[[2353,2352,2355]],[[2356,2357,2358]],[[2359,2360,2358]],[[2361,2362,2363]],[[2360,2348,2364]],[[2365,2366,2367]],[[2365,2368,2366]],[[2365,2369,2370]],[[2345,2371,2343]],[[2345,2344,2372]],[[2373,2374,2375]],[[2363,2362,2376]],[[2377,2378,2379]],[[2380,2381,2382]],[[2375,2374,2377]],[[2377,2380,2378]],[[2341,2383,2342]],[[2384,2385,2386]],[[2385,2387,2388]],[[2384,2373,2389]],[[2390,2385,2391]],[[2383,2392,2393]],[[2394,2387,2395]],[[2396,2335,2397]],[[2398,2399,2400]],[[2401,2402,2403]],[[2401,2404,2402]],[[2405,2400,2335]],[[2406,2405,2335]],[[2407,2408,2409]],[[2410,2411,2412]],[[2412,2411,2413]],[[2339,2338,2414]],[[2411,2415,2416]],[[2417,2418,2419]],[[2420,2421,2422]],[[2423,2424,2425]],[[2423,2426,2424]],[[2427,2424,2428]],[[2429,2430,2431]],[[2432,2433,2434]],[[2435,2436,2437]],[[2306,2438,2439]],[[2440,2441,2442]],[[2443,2444,2445]],[[2443,2446,2447]],[[2448,2445,2449]],[[2450,2451,2438]],[[2452,2453,2454]],[[2455,2456,2457]],[[2458,2444,2459]],[[2460,2461,2462]],[[2463,2464,2465]],[[2466,2467,2468]],[[2452,2440,2453]],[[2469,2470,2471]],[[2472,2264,2473]],[[2266,2474,2267]],[[2475,2268,2267]],[[2475,2476,2268]],[[2475,2477,2476]],[[2466,2478,2475]],[[2475,2478,2477]],[[2466,2468,2478]],[[2466,2479,2467]],[[2480,2481,2479]],[[2479,2481,2467]],[[2480,2482,2483]],[[2481,2480,2483]],[[2484,2482,2485]],[[2486,2487,2303]],[[2488,2489,2490]],[[2491,2492,2488]],[[2493,2494,2495]],[[2496,2497,2489]],[[2498,2499,2496]],[[2500,2501,2502]],[[2503,2504,2500]],[[2505,2506,2507]],[[2419,2418,2508]],[[2469,2487,2486]],[[2509,2260,2510]],[[2511,2469,2486]],[[2510,2302,2301]],[[2302,2486,2303]],[[2261,2260,2509]],[[2260,2302,2510]],[[2509,2483,2261]],[[2483,2484,2261]],[[2483,2482,2484]],[[2512,2513,2514]],[[2465,2515,2516]],[[2517,2485,2518]],[[2516,2485,2482]],[[2516,2518,2485]],[[2519,2520,2521]],[[2522,2523,2524]],[[2455,2457,2441]],[[2525,2526,2527]],[[2528,2451,2450]],[[2450,2438,2306]],[[2529,2530,2531]],[[2532,2533,2534]],[[2535,2536,2537]],[[2538,2419,2539]],[[2540,2541,2542]],[[2534,2430,2543]],[[2544,2545,2501]],[[2546,2507,2502]],[[2547,2536,2530]],[[2548,2549,2420]],[[2415,2541,2550]],[[2551,2552,2553]],[[2287,2286,2295]],[[2295,2554,2293]],[[2293,2554,2555]],[[2282,2274,2556]],[[2294,2557,2290]],[[2555,2554,2557]],[[2300,2558,2556]],[[2282,2554,2288]],[[2352,2356,2358]],[[2348,2360,2359]],[[2528,2459,2451]],[[2459,2444,2451]],[[2559,2560,2561]],[[2501,2546,2502]],[[2561,2544,2501]],[[2562,2545,2544]],[[2563,2564,2565]],[[2566,2567,2568]],[[2569,2570,2571]],[[2436,2542,2572]],[[2264,2573,2265]],[[2501,2545,2546]],[[2574,2434,2306]],[[2420,2575,2548]],[[2417,2419,2576]],[[2493,2495,2562]],[[2577,2578,2579]],[[2580,2316,2324]],[[2333,2581,2572]],[[2582,2583,2584]],[[2402,2398,2405]],[[2399,2404,2585]],[[2586,2587,2588]],[[2589,2495,2494]],[[2590,2591,2592]],[[2588,2593,2594]],[[2553,2537,2536]],[[2595,2508,2596]],[[2535,2597,2582]],[[2338,2322,2414]],[[2598,2599,2349]],[[2599,2600,2601]],[[2602,2381,2603]],[[2602,2362,2382]],[[2474,2604,2605]],[[2474,2269,2267]],[[2471,2473,2469]],[[2264,2487,2473]],[[2606,2607,2608]],[[2609,2610,2489]],[[2611,2612,2613]],[[2614,2615,2338]],[[2616,2442,2525]],[[2617,2618,2619]],[[2620,2266,2263]],[[2268,2264,2263]],[[2557,2554,2282]],[[2288,2281,2282]],[[2357,2359,2358]],[[2357,2348,2359]],[[2356,2346,2357]],[[2367,2621,2622]],[[2598,2349,2351]],[[2601,2350,2349]],[[2305,2543,2429]],[[2623,2534,2543]],[[2557,2291,2290]],[[2557,2558,2291]],[[2381,2380,2603]],[[2382,2362,2361]],[[2624,2574,2439]],[[2304,2623,2543]],[[2379,2622,2621]],[[2361,2363,2622]],[[2625,2626,2279]],[[2626,2627,2283]],[[2628,2629,2524]],[[2630,2440,2442]],[[2294,2555,2557]],[[2294,2293,2555]],[[2398,2402,2399]],[[2392,2631,2395]],[[2632,2512,2633]],[[2634,2516,2482]],[[2521,2635,2464]],[[2617,2619,2515]],[[2290,2636,2505]],[[2299,2300,2637]],[[2507,2506,2502]],[[2607,2638,2639]],[[2471,2640,2472]],[[2640,2641,2620]],[[2642,2643,2644]],[[2500,2502,2643]],[[2515,2465,2635]],[[2521,2464,2632]],[[2561,2645,2493]],[[2594,2494,2645]],[[2444,2458,2445]],[[2456,2646,2458]],[[2379,2378,2622]],[[2377,2647,2380]],[[2648,2534,2623]],[[2533,2649,2430]],[[2650,2651,2623]],[[2596,2649,2648]],[[2369,2652,2371]],[[2371,2652,2343]],[[2344,2363,2376]],[[2344,2652,2363]],[[2635,2653,2464]],[[2654,2655,2656]],[[2464,2513,2632]],[[2512,2628,2657]],[[2434,2304,2306]],[[2433,2432,2658]],[[2433,2658,2304]],[[2432,2426,2658]],[[2428,2426,2432]],[[2423,2659,2575]],[[2610,2660,2496]],[[2499,2497,2496]],[[2416,2415,2661]],[[2411,2410,2334]],[[2319,2325,2328]],[[2662,2316,2663]],[[2603,2647,2374]],[[2603,2380,2647]],[[2664,2307,2309]],[[2307,2312,2308]],[[2647,2377,2374]],[[2377,2379,2375]],[[2498,2665,2666]],[[2498,2660,2665]],[[2667,2565,2331]],[[2564,2566,2668]],[[2493,2562,2544]],[[2669,2545,2562]],[[2655,2616,2527]],[[2657,2670,2671]],[[2340,2375,2672]],[[2340,2373,2375]],[[2290,2292,2636]],[[2673,2558,2300]],[[2445,2674,2454]],[[2445,2646,2674]],[[2263,2266,2268]],[[2263,2265,2620]],[[2392,2585,2675]],[[2390,2387,2385]],[[2676,2396,2397]],[[2677,2406,2335]],[[2678,2611,2583]],[[2591,2588,2576]],[[2586,2679,2680]],[[2418,2681,2682]],[[2645,2683,2594]],[[2660,2498,2496]],[[2684,2683,2645]],[[2587,2685,2576]],[[2684,2560,2559]],[[2684,2645,2560]],[[2380,2382,2378]],[[2381,2602,2382]],[[2437,2436,2572]],[[2334,2677,2335]],[[2552,2686,2437]],[[2435,2687,2436]],[[2651,2650,2540]],[[2548,2575,2661]],[[2542,2688,2540]],[[2569,2689,2690]],[[2687,2691,2688]],[[2623,2304,2692]],[[2540,2691,2651]],[[2686,2552,2693]],[[2572,2542,2541]],[[2436,2687,2542]],[[2694,2570,2695]],[[2571,2693,2569]],[[2354,2353,2351]],[[2352,2358,2355]],[[2677,2410,2412]],[[2677,2334,2410]],[[2594,2696,2589]],[[2414,2669,2696]],[[2697,2563,2565]],[[2698,2564,2563]],[[2699,2583,2611]],[[2613,2337,2591]],[[2415,2334,2541]],[[2415,2411,2334]],[[2294,2296,2298]],[[2294,2290,2296]],[[2593,2339,2696]],[[2593,2696,2594]],[[2696,2339,2414]],[[2588,2591,2337]],[[2504,2559,2501]],[[2606,2608,2700]],[[2323,2701,2437]],[[2702,2547,2689]],[[2628,2524,2523]],[[2525,2441,2461]],[[2557,2556,2558]],[[2274,2273,2556]],[[2400,2585,2397]],[[2404,2675,2585]],[[2635,2465,2653]],[[2516,2634,2463]],[[2666,2638,2607]],[[2665,2639,2638]],[[2541,2333,2572]],[[2541,2334,2333]],[[2703,2704,2470]],[[2705,2666,2607]],[[2639,2660,2706]],[[2639,2665,2660]],[[2540,2549,2550]],[[2707,2692,2421]],[[2520,2519,2708]],[[2632,2513,2512]],[[2709,2629,2634]],[[2657,2523,2670]],[[2710,2369,2371]],[[2370,2368,2365]],[[2648,2695,2596]],[[2648,2694,2695]],[[2415,2550,2661]],[[2541,2540,2550]],[[2582,2678,2583]],[[2597,2612,2678]],[[2539,2611,2711]],[[2678,2612,2611]],[[2333,2712,2581]],[[2407,2664,2309]],[[2572,2581,2437]],[[2321,2336,2322]],[[2581,2323,2437]],[[2321,2713,2407]],[[2279,2626,2285]],[[2279,2278,2625]],[[2514,2629,2628]],[[2514,2634,2629]],[[2714,2520,2708]],[[2714,2618,2520]],[[2715,2698,2697]],[[2715,2564,2698]],[[2460,2671,2670]],[[2716,2708,2633]],[[2460,2462,2671]],[[2714,2708,2671]],[[2716,2512,2657]],[[2628,2523,2657]],[[2470,2469,2511]],[[2473,2487,2469]],[[2623,2651,2570]],[[2691,2686,2717]],[[2571,2651,2691]],[[2571,2570,2651]],[[2571,2717,2693]],[[2571,2691,2717]],[[2718,2319,2328]],[[2718,2578,2719]],[[2669,2546,2545]],[[2669,2507,2546]],[[2706,2608,2639]],[[2720,2705,2607]],[[2639,2608,2607]],[[2700,2683,2684]],[[2437,2721,2552]],[[2701,2615,2722]],[[2721,2701,2722]],[[2323,2322,2723]],[[2537,2721,2722]],[[2437,2701,2721]],[[2724,2427,2428]],[[2725,2659,2425]],[[2331,2726,2311]],[[2317,2311,2727]],[[2728,2567,2564]],[[2568,2315,2317]],[[2564,2668,2565]],[[2726,2727,2311]],[[2430,2429,2543]],[[2528,2729,2459]],[[2554,2286,2288]],[[2554,2295,2286]],[[2521,2617,2635]],[[2619,2518,2515]],[[2644,2730,2642]],[[2620,2265,2573]],[[2502,2506,2643]],[[2507,2290,2505]],[[2731,2505,2636]],[[2732,2506,2505]],[[2674,2733,2734]],[[2456,2458,2457]],[[2695,2569,2596]],[[2695,2570,2569]],[[2691,2540,2688]],[[2650,2707,2540]],[[2542,2687,2688]],[[2686,2691,2687]],[[2703,2641,2704]],[[2573,2264,2472]],[[2471,2472,2473]],[[2471,2470,2704]],[[2471,2704,2640]],[[2735,2500,2642]],[[2643,2642,2500]],[[2730,2736,2737]],[[2650,2692,2707]],[[2658,2426,2423]],[[2633,2519,2632]],[[2520,2618,2521]],[[2428,2424,2426]],[[2427,2724,2725]],[[2648,2532,2534]],[[2648,2649,2532]],[[2660,2610,2706]],[[2489,2488,2609]],[[2738,2735,2641]],[[2642,2730,2735]],[[2566,2726,2668]],[[2566,2568,2726]],[[2285,2626,2283]],[[2625,2280,2627]],[[2283,2289,2284]],[[2283,2627,2289]],[[2623,2692,2650]],[[2421,2658,2422]],[[2739,2394,2631]],[[2739,2387,2394]],[[2623,2694,2648]],[[2623,2570,2694]],[[2559,2561,2501]],[[2560,2645,2561]],[[2397,2341,2340]],[[2397,2585,2341]],[[2600,2355,2350]],[[2358,2350,2355]],[[2386,2385,2388]],[[2384,2389,2391]],[[2329,2715,2740]],[[2728,2564,2715]],[[2439,2574,2306]],[[2434,2433,2304]],[[2564,2567,2566]],[[2327,2326,2316]],[[2349,2599,2601]],[[2353,2355,2599]],[[2400,2399,2585]],[[2402,2404,2399]],[[2584,2531,2530]],[[2690,2689,2547]],[[2690,2547,2529]],[[2551,2693,2552]],[[2584,2530,2536]],[[2529,2547,2530]],[[2392,2395,2390]],[[2631,2394,2395]],[[2401,2675,2404]],[[2401,2631,2675]],[[2550,2548,2661]],[[2550,2549,2548]],[[2741,2697,2667]],[[2698,2563,2697]],[[2557,2282,2556]],[[2288,2287,2281]],[[2635,2617,2515]],[[2521,2618,2617]],[[2680,2679,2706]],[[2682,2742,2609]],[[2561,2493,2544]],[[2645,2494,2493]],[[2743,2370,2369]],[[2710,2368,2370]],[[2630,2656,2709]],[[2630,2442,2654]],[[2606,2700,2559]],[[2700,2608,2679]],[[2559,2700,2684]],[[2608,2706,2679]],[[2491,2488,2490]],[[2609,2742,2610]],[[2537,2553,2552]],[[2536,2547,2553]],[[2721,2537,2552]],[[2722,2597,2535]],[[2624,2434,2574]],[[2624,2432,2434]],[[2580,2318,2579]],[[2320,2718,2719]],[[2273,2637,2556]],[[2292,2291,2673]],[[2636,2299,2277]],[[2300,2556,2637]],[[2277,2299,2637]],[[2636,2292,2299]],[[2685,2417,2576]],[[2685,2681,2418]],[[2335,2400,2397]],[[2405,2398,2400]],[[2445,2458,2646]],[[2455,2441,2440]],[[2700,2679,2683]],[[2586,2680,2587]],[[2588,2587,2576]],[[2588,2594,2586]],[[2273,2277,2637]],[[2636,2276,2731]],[[2306,2305,2450]],[[2304,2543,2305]],[[2277,2276,2636]],[[2732,2505,2731]],[[2422,2423,2575]],[[2424,2427,2725]],[[2659,2423,2425]],[[2422,2658,2423]],[[2514,2464,2634]],[[2464,2653,2465]],[[2634,2464,2463]],[[2514,2513,2464]],[[2534,2533,2430]],[[2532,2649,2533]],[[2744,2745,2352]],[[2746,2621,2367]],[[2357,2346,2348]],[[2745,2744,2747]],[[2366,2364,2367]],[[2348,2347,2364]],[[2747,2347,2346]],[[2744,2621,2347]],[[2652,2367,2622]],[[2364,2746,2367]],[[2363,2652,2622]],[[2344,2343,2652]],[[2307,2313,2312]],[[2332,2740,2314]],[[2748,2314,2740]],[[2565,2668,2331]],[[2314,2310,2312]],[[2314,2667,2331]],[[2314,2331,2310]],[[2668,2726,2331]],[[2336,2407,2309]],[[2332,2313,2307]],[[2332,2664,2409]],[[2332,2307,2664]],[[2465,2516,2463]],[[2515,2518,2516]],[[2672,2379,2621]],[[2672,2375,2379]],[[2459,2729,2458]],[[2431,2441,2457]],[[2338,2723,2322]],[[2701,2323,2723]],[[2722,2615,2597]],[[2701,2723,2615]],[[2726,2568,2727]],[[2315,2327,2316]],[[2749,2272,2275]],[[2749,2273,2272]],[[2347,2746,2364]],[[2347,2621,2746]],[[2292,2673,2300]],[[2291,2558,2673]],[[2732,2276,2736]],[[2750,2605,2604]],[[2640,2620,2573]],[[2737,2604,2620]],[[2447,2446,2448]],[[2443,2445,2446]],[[2652,2365,2367]],[[2652,2369,2365]],[[2498,2666,2470]],[[2665,2638,2666]],[[2590,2613,2591]],[[2612,2597,2614]],[[2613,2338,2337]],[[2615,2723,2338]],[[2613,2614,2338]],[[2597,2615,2614]],[[2611,2613,2711]],[[2612,2614,2613]],[[2594,2589,2494]],[[2495,2669,2562]],[[2611,2539,2699]],[[2751,2531,2584]],[[2583,2751,2584]],[[2419,2508,2595]],[[2678,2582,2597]],[[2584,2536,2535]],[[2722,2535,2537]],[[2582,2584,2535]],[[2407,2336,2321]],[[2309,2308,2336]],[[2408,2407,2713]],[[2409,2664,2407]],[[2581,2321,2323]],[[2581,2713,2321]],[[2738,2641,2705]],[[2735,2730,2737]],[[2735,2752,2500]],[[2720,2606,2503]],[[2568,2317,2727]],[[2316,2311,2317]],[[2304,2421,2692]],[[2304,2658,2421]],[[2753,2448,2449]],[[2446,2445,2448]],[[2683,2586,2594]],[[2683,2679,2586]],[[2686,2435,2437]],[[2686,2687,2435]],[[2284,2281,2287]],[[2289,2627,2281]],[[2409,2408,2397]],[[2712,2333,2396]],[[2676,2408,2713]],[[2676,2397,2408]],[[2713,2712,2676]],[[2333,2335,2396]],[[2754,2531,2755]],[[2699,2539,2419]],[[2595,2755,2419]],[[2531,2751,2755]],[[2601,2600,2350]],[[2599,2355,2600]],[[2714,2462,2461]],[[2714,2671,2462]],[[2342,2383,2393]],[[2341,2585,2392]],[[2391,2342,2393]],[[2389,2340,2342]],[[2305,2528,2450]],[[2729,2431,2457]],[[2429,2528,2305]],[[2429,2431,2528]],[[2745,2356,2352]],[[2745,2346,2356]],[[2353,2598,2351]],[[2353,2599,2598]],[[2741,2748,2740]],[[2697,2565,2667]],[[2748,2667,2314]],[[2748,2741,2667]],[[2750,2276,2270]],[[2604,2736,2276]],[[2337,2593,2588]],[[2337,2339,2593]],[[2666,2705,2470]],[[2752,2503,2500]],[[2752,2738,2705]],[[2752,2735,2738]],[[2720,2752,2705]],[[2720,2503,2752]],[[2705,2703,2470]],[[2705,2641,2703]],[[2504,2606,2559]],[[2720,2607,2606]],[[2715,2741,2740]],[[2715,2697,2741]],[[2734,2733,2456]],[[2674,2646,2733]],[[2500,2504,2501]],[[2503,2606,2504]],[[2576,2592,2591]],[[2576,2419,2592]],[[2590,2538,2539]],[[2592,2419,2538]],[[2644,2732,2730]],[[2731,2276,2732]],[[2452,2455,2440]],[[2455,2734,2456]],[[2452,2734,2455]],[[2733,2646,2456]],[[2424,2725,2425]],[[2724,2659,2725]],[[2506,2644,2643]],[[2506,2732,2644]],[[2274,2627,2280]],[[2274,2281,2627]],[[2626,2625,2627]],[[2278,2280,2625]],[[2756,2718,2328]],[[2756,2578,2718]],[[2529,2754,2596]],[[2529,2531,2754]],[[2569,2693,2689]],[[2553,2547,2702]],[[2689,2693,2551]],[[2717,2686,2693]],[[2702,2551,2553]],[[2702,2689,2551]],[[2676,2712,2396]],[[2713,2581,2712]],[[2632,2519,2521]],[[2633,2708,2519]],[[2590,2539,2711]],[[2419,2755,2699]],[[2751,2699,2755]],[[2751,2583,2699]],[[2696,2495,2589]],[[2696,2669,2495]],[[2472,2640,2573]],[[2704,2641,2640]],[[2737,2736,2604]],[[2730,2732,2736]],[[2276,2750,2604]],[[2270,2269,2757]],[[2620,2604,2474]],[[2750,2270,2757]],[[2605,2757,2474]],[[2605,2750,2757]],[[2620,2474,2266]],[[2757,2269,2474]],[[2707,2420,2549]],[[2422,2575,2420]],[[2420,2707,2421]],[[2549,2540,2707]],[[2587,2681,2685]],[[2706,2742,2682]],[[2508,2418,2492]],[[2417,2685,2418]],[[2492,2609,2488]],[[2492,2682,2609]],[[2671,2716,2657]],[[2514,2628,2512]],[[2708,2716,2671]],[[2633,2512,2716]],[[2418,2682,2492]],[[2681,2706,2682]],[[2523,2522,2670]],[[2654,2656,2630]],[[2522,2460,2670]],[[2522,2526,2460]],[[2524,2527,2522]],[[2442,2441,2525]],[[2526,2525,2461]],[[2527,2616,2525]],[[2460,2526,2461]],[[2522,2527,2526]],[[2524,2655,2527]],[[2524,2629,2655]],[[2709,2655,2629]],[[2709,2656,2655]],[[2616,2654,2442]],[[2616,2655,2654]],[[2641,2737,2620]],[[2641,2735,2737]],[[2489,2610,2496]],[[2742,2706,2610]],[[2613,2590,2711]],[[2592,2538,2590]],[[2378,2361,2622]],[[2378,2382,2361]],[[2663,2326,2328]],[[2663,2316,2326]],[[2728,2327,2567]],[[2329,2328,2327]],[[2567,2315,2568]],[[2567,2327,2315]],[[2325,2663,2328]],[[2662,2324,2316]],[[2325,2662,2663]],[[2325,2324,2662]],[[2447,2753,2449]],[[2447,2448,2753]],[[2454,2734,2452]],[[2454,2674,2734]],[[2329,2728,2715]],[[2329,2327,2728]],[[2754,2595,2596]],[[2754,2755,2595]],[[2391,2389,2342]],[[2373,2340,2389]],[[2392,2390,2393]],[[2385,2384,2391]],[[2393,2390,2391]],[[2395,2387,2390]],[[2458,2729,2457]],[[2528,2431,2729]],[[2745,2747,2346]],[[2744,2347,2747]],[[2579,2320,2719]],[[2319,2718,2320]],[[2579,2318,2320]],[[2580,2324,2318]],[[2710,2743,2369]],[[2710,2370,2743]],[[2596,2690,2529]],[[2596,2569,2690]],[[2341,2392,2383]],[[2675,2631,2392]],[[2719,2577,2579]],[[2719,2578,2577]],[[2360,2366,2368]],[[2360,2364,2366]],[[2681,2680,2706]],[[2681,2587,2680]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222836f6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cff49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2758,2759,2760]],[[2761,2762,2763]],[[2764,2765,2766]],[[2767,2768,2769]],[[2766,2770,2771]],[[2772,2761,2763]],[[2773,2774,2775]],[[2776,2773,2777]],[[2775,2774,2778]],[[2770,2772,2776]],[[2779,2780,2781]],[[2779,2782,2783]],[[2774,2784,2785]],[[2786,2787,2788]],[[2789,2790,2786]],[[2776,2774,2773]],[[2791,2792,2758]],[[2791,2793,2794]],[[2795,2794,2793]],[[2784,2796,2763]],[[2774,2797,2782]],[[2796,2776,2772]],[[2762,2794,2763]],[[2758,2795,2793]],[[2798,2794,2795]],[[2767,2759,2758]],[[2798,2795,2760]],[[2799,2800,2789]],[[2780,2779,2800]],[[2759,2798,2760]],[[2760,2795,2758]],[[2762,2791,2794]],[[2758,2793,2791]],[[2774,2785,2797]],[[2797,2783,2782]],[[2801,2802,2803]],[[2802,2768,2767]],[[2800,2790,2789]],[[2800,2783,2790]],[[2771,2770,2777]],[[2801,2803,2761]],[[2796,2772,2763]],[[2801,2765,2802]],[[2803,2762,2761]],[[2803,2792,2762]],[[2762,2792,2791]],[[2803,2802,2767]],[[2792,2767,2758]],[[2792,2803,2767]],[[2769,2759,2767]],[[2769,2798,2759]],[[2784,2804,2785]],[[2783,2800,2779]],[[2804,2797,2785]],[[2805,2787,2783]],[[2765,2764,2802]],[[2764,2768,2802]],[[2772,2801,2761]],[[2772,2770,2801]],[[2770,2765,2801]],[[2770,2766,2765]],[[2805,2783,2797]],[[2787,2790,2783]],[[2799,2780,2800]],[[2799,2781,2780]],[[2789,2786,2788]],[[2790,2787,2786]],[[2787,2784,2763]],[[2787,2804,2784]],[[2770,2776,2777]],[[2796,2784,2774]],[[2778,2774,2782]],[[2776,2796,2774]],[[2804,2805,2797]],[[2804,2787,2805]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2228f9ca-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef607d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2806,242,243]],[[244,2807,2806]],[[2807,241,2806]],[[245,2808,244]],[[2809,2810,2811]],[[2812,215,238]],[[2810,2813,238]],[[2814,213,215]],[[241,2807,2809]],[[2812,2813,2815]],[[2809,2807,2813]],[[245,247,261]],[[2807,244,2808]],[[2808,245,261]],[[2811,2810,238]],[[239,240,2809]],[[2814,2812,2815]],[[238,2813,2812]],[[213,2814,2815]],[[215,2812,2814]],[[244,2806,243]],[[241,242,2806]],[[2810,2809,2813]],[[240,241,2809]],[[239,2811,238]],[[239,2809,2811]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222920fb-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.2a5997ebc5054d16864de6fe20493984","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2816,2817,2818]],[[2819,2818,2820]],[[2821,2822,2820]],[[2817,2822,2818]],[[2819,2817,2823]],[[2822,2824,2818]],[[2819,2816,2818]],[[2823,2817,2816]],[[2822,2819,2820]],[[2823,2816,2819]],[[2819,2822,2817]],[[2821,2824,2822]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222b6a92-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5d1a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2825,2826,2827]],[[2827,2828,183]],[[2829,2828,2830]],[[2829,2831,2828]],[[2832,2827,183]],[[2828,182,183]],[[2826,2830,2828]],[[2833,2829,2834]],[[2835,2832,183]],[[2835,2827,2832]],[[182,2836,2834]],[[182,2831,2836]],[[2826,2828,2827]],[[2831,182,2828]],[[2825,2835,183]],[[2825,2827,2835]],[[2836,2833,2834]],[[2836,2831,2829]],[[2834,2829,2830]],[[2833,2836,2829]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222c557f-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2837,2838,2839]],[[2840,2841,2839]],[[2838,2842,2839]],[[2839,2843,2840]],[[2843,2839,2842]],[[2844,2845,2846]],[[2844,2843,2842]],[[2844,2847,2845]],[[2844,2848,2847]],[[2849,2847,2848]],[[2850,2851,2852]],[[2852,2851,2853]],[[2850,2849,2848]],[[2851,2850,2848]],[[2851,2854,2855]],[[2851,2848,2854]],[[2854,2848,2856]],[[2844,2842,2848]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222ddc12-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2857,184,185]],[[2857,185,2858]],[[185,186,2859]],[[2859,2860,185]],[[2861,2862,2863]],[[2864,2865,2866]],[[2867,2868,191]],[[2869,2870,2871]],[[2872,2873,2874]],[[2875,2876,2877]],[[2878,2879,2880]],[[2879,2881,2882]],[[2883,2873,2884]],[[2885,2886,2887]],[[2887,2886,2888]],[[2889,2890,2891]],[[2892,2893,2894]],[[2895,192,2894]],[[2896,2897,2898]],[[192,2867,191]],[[2870,2869,2899]],[[2900,2901,2902]],[[2903,2904,2905]],[[2906,189,2907]],[[2898,186,187]],[[2908,2909,2910]],[[2858,185,2860]],[[2911,2912,2913]],[[2914,2915,2916]],[[2917,2918,188]],[[188,189,2906]],[[2919,2920,2874]],[[2921,2922,2923]],[[2924,2925,2867]],[[2926,2927,2928]],[[2929,2930,2907]],[[2931,190,2932]],[[2933,2934,2928]],[[2935,2936,2937]],[[2893,2923,2938]],[[2939,2913,2912]],[[2940,2941,2942]],[[2942,2872,2920]],[[190,2943,189]],[[2929,2907,189]],[[2944,2945,2946]],[[2908,2910,2947]],[[2920,2872,2874]],[[2942,2921,2923]],[[2938,2875,2948]],[[2876,2913,2877]],[[2880,2882,2887]],[[2884,2941,2940]],[[2862,2906,2907]],[[2949,188,2906]],[[2876,2950,2874]],[[2951,2922,2950]],[[2881,2884,2952]],[[2940,2942,2923]],[[2911,2953,2954]],[[2911,2955,2953]],[[2938,2923,2875]],[[2877,2913,2948]],[[2896,2861,2956]],[[2957,2909,2908]],[[2876,2951,2950]],[[2876,2875,2951]],[[190,2931,2943]],[[2924,2867,192]],[[2950,2919,2874]],[[2950,2921,2919]],[[2958,2944,2959]],[[2958,2945,2944]],[[2921,2942,2920]],[[2960,2872,2942]],[[186,2898,2859]],[[2917,188,2862]],[[2895,2961,2962]],[[2892,2963,2964]],[[2945,2965,2909]],[[2958,2910,2965]],[[2885,2889,2886]],[[2885,2881,2952]],[[2895,2966,192]],[[2967,2968,2969]],[[2943,2929,189]],[[2943,2930,2929]],[[2862,2949,2906]],[[2862,188,2949]],[[2944,2903,2959]],[[2970,2900,2971]],[[2972,2973,2964]],[[2871,2948,2974]],[[2882,2881,2885]],[[2883,2884,2881]],[[2941,2960,2942]],[[2873,2872,2960]],[[2933,2869,2912]],[[2925,2868,2867]],[[2969,2865,2975]],[[2948,2913,2974]],[[187,2918,2898]],[[187,188,2918]],[[2879,2883,2881]],[[2879,2873,2883]],[[2961,2895,2894]],[[2976,2966,2895]],[[2954,2933,2912]],[[2934,2955,2928]],[[2945,2909,2977]],[[2965,2910,2909]],[[2858,2860,2947]],[[2860,2900,2902]],[[2946,2945,2977]],[[2958,2965,2945]],[[2971,2978,2979]],[[2946,2903,2944]],[[2930,2932,2980]],[[2905,2959,2903]],[[2936,2905,2981]],[[2936,2959,2905]],[[2869,2939,2912]],[[2974,2913,2939]],[[2873,2941,2884]],[[2873,2960,2941]],[[2937,2982,2935]],[[2983,2915,2914]],[[2984,2916,2864]],[[2985,2981,2904]],[[2865,2864,2975]],[[2915,2983,2986]],[[2987,2932,2975]],[[190,191,2868]],[[2930,2931,2932]],[[2930,2943,2931]],[[2940,2923,2964]],[[2922,2951,2875]],[[2948,2875,2877]],[[2923,2922,2875]],[[2988,2967,2969]],[[2864,2987,2975]],[[2916,2915,2864]],[[2986,2932,2987]],[[2864,2915,2987]],[[2914,2984,2989]],[[2933,2928,2990]],[[2991,2982,2985]],[[2992,2978,2993]],[[2992,2979,2978]],[[2868,2925,2994]],[[2871,2870,2938]],[[2907,2863,2862]],[[2896,2898,2918]],[[2995,2996,2927]],[[2955,2911,2928]],[[2990,2928,2996]],[[2911,2936,2926]],[[2997,2908,2947]],[[2997,2957,2908]],[[2899,2990,2995]],[[2869,2933,2990]],[[2893,2892,2964]],[[2894,2963,2892]],[[2919,2921,2920]],[[2950,2922,2921]],[[2973,2890,2952]],[[2889,2885,2952]],[[2886,2891,2963]],[[2886,2889,2891]],[[2995,2998,2926]],[[2999,2926,2991]],[[2971,2986,2978]],[[3000,3001,2999]],[[3001,3000,2989]],[[3002,2978,2983]],[[2904,2901,2985]],[[2980,2907,2930]],[[2985,2901,2992]],[[2863,2907,2980]],[[2995,2926,3001]],[[2989,2995,3001]],[[2891,2890,2973]],[[2952,2884,2940]],[[2991,2926,2982]],[[2928,2911,2926]],[[2984,2995,2989]],[[2927,2926,2998]],[[2899,2995,2984]],[[2990,2996,2995]],[[2981,2937,2936]],[[2981,2985,2937]],[[2900,2970,2901]],[[2904,2903,2946]],[[2901,2970,2992]],[[2981,2905,2904]],[[2992,2970,2979]],[[3003,2946,2977]],[[2977,2902,3003]],[[2902,2957,2860]],[[2904,3003,2901]],[[2860,2997,2947]],[[2977,2957,2902]],[[2977,2909,2957]],[[2997,2860,2957]],[[2859,2897,2860]],[[2954,2934,2933]],[[2953,2955,2934]],[[2983,2978,2986]],[[2863,2971,2861]],[[2986,2863,2980]],[[2897,2900,2860]],[[2986,2971,2863]],[[2979,2970,2971]],[[2932,2986,2980]],[[2987,2915,2986]],[[2911,2954,2912]],[[2953,2934,2954]],[[2983,3000,3002]],[[3001,2926,2999]],[[2973,2952,2940]],[[2890,2889,2952]],[[2964,2973,2940]],[[2964,2963,2972]],[[2891,2972,2963]],[[2891,2973,2972]],[[2899,2866,2968]],[[2984,2864,2866]],[[2865,2968,2866]],[[2962,2961,2938]],[[2926,2935,2982]],[[2926,2936,2935]],[[2932,2868,2994]],[[2932,190,2868]],[[2966,2988,3004]],[[2994,2975,2932]],[[2966,3004,192]],[[2967,2976,2962]],[[3004,2988,2925]],[[2968,2865,2969]],[[2994,2988,2969]],[[2966,2976,2988]],[[2901,3003,2902]],[[2904,2946,3003]],[[2984,2914,2916]],[[2989,2983,2914]],[[3002,2993,2978]],[[2982,2937,2985]],[[2993,2985,2992]],[[2993,2991,2985]],[[3002,2991,2993]],[[3002,2999,2991]],[[2887,2882,2885]],[[2880,2879,2882]],[[2988,2994,2925]],[[2969,2975,2994]],[[3002,3000,2999]],[[2983,2989,3000]],[[2971,2956,2861]],[[2971,2900,2956]],[[2990,2899,2869]],[[2984,2866,2899]],[[2948,2871,2938]],[[2899,2968,2962]],[[2962,2938,2870]],[[2961,2893,2938]],[[2895,2962,2976]],[[2870,2899,2962]],[[2976,2967,2988]],[[2962,2968,2967]],[[2939,2871,2974]],[[2939,2869,2871]],[[2900,2897,2956]],[[2918,2861,2896]],[[2898,2897,2859]],[[2896,2956,2897]],[[2861,2917,2862]],[[2861,2918,2917]],[[3004,2924,192]],[[3004,2925,2924]],[[2923,2893,2964]],[[2961,2894,2893]],[[2995,2927,2998]],[[2996,2928,2927]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222e2a53-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3005,3006,3007]],[[3005,3007,3008]],[[3008,3009,3010]],[[3008,3011,3009]],[[3008,3007,3011]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222ec5e4-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3012,3013,3014]],[[3013,3015,3014]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2230c204-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3016,3017,3018]],[[3016,3019,3020]],[[3020,3019,3021]],[[3021,3019,3022]],[[3022,3019,3023]],[[3016,3018,3019]],[[3017,3024,3018]],[[3025,3026,3024]],[[3024,3026,3027]],[[3028,3025,3024]],[[3017,3028,3024]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2231105d-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3029,3030,3031]],[[3030,3032,3031]],[[3031,3033,3034]],[[3031,3032,3033]],[[3033,3032,3035]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2231d343-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.21ab1c490f1540238f61717fe02159de","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3036,3037,3038]],[[3036,3038,3039]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2232218d-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef749949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3040,3041,3042]],[[3043,3044,3045]],[[3045,3046,3047]],[[2257,3043,2258]],[[2256,3048,3049]],[[3048,2256,3050]],[[3051,2256,2255]],[[3052,2256,3053]],[[3052,3050,2256]],[[3054,2256,3055]],[[2259,3056,3057]],[[3058,3059,3060]],[[3061,2256,3062]],[[3059,1788,1782]],[[3063,2256,3064]],[[3063,3062,2256]],[[3065,2256,3051]],[[3065,3064,2256]],[[3066,3051,2255]],[[3067,3066,2255]],[[3068,2255,3069]],[[3069,3070,3071]],[[3071,3072,3073]],[[3073,3072,3074]],[[3074,3075,3076]],[[3058,3060,3077]],[[3059,1782,3060]],[[3076,3078,3077]],[[3061,3079,2256]],[[2256,3079,3080]],[[3078,3058,3077]],[[3080,3055,2256]],[[3078,3076,3075]],[[3075,3074,3072]],[[3072,3071,3070]],[[3070,3069,3081]],[[3081,3069,2255]],[[2255,3082,3083]],[[3083,3081,2255]],[[2259,3084,3082]],[[2259,3085,3084]],[[2259,3086,3085]],[[2259,3087,3086]],[[2259,3088,3087]],[[2259,3089,3088]],[[2259,3057,3089]],[[3090,3056,2259]],[[3091,3090,2259]],[[3092,3091,2259]],[[3047,3093,3043]],[[2259,3094,3092]],[[2259,3095,3094]],[[2259,3096,3095]],[[2259,3097,3096]],[[2259,3098,3097]],[[2259,2258,3098]],[[3043,3093,3099]],[[3045,3047,3043]],[[3045,3042,3046]],[[3100,3101,3102]],[[3100,3041,3101]],[[3046,3103,3104]],[[3105,3106,3107]],[[3108,3103,3046]],[[3105,3109,3106]],[[3103,3110,3111]],[[3103,3112,3110]],[[3041,3100,3042]],[[3112,3113,3114]],[[3115,3116,3117]],[[3115,3118,3116]],[[3119,3120,3121]],[[3122,3123,3124]],[[3125,3126,3127]],[[3128,3129,3126]],[[3130,3131,3129]],[[3132,3133,3134]],[[3135,1830,1779]],[[3136,3137,3138]],[[3138,3139,3140]],[[3140,3141,3142]],[[3142,3143,3144]],[[3144,3145,3146]],[[3146,3122,3147]],[[3147,3122,3124]],[[3124,3123,3148]],[[3135,1779,3149]],[[3148,3150,3149]],[[3151,3152,3136]],[[3151,3132,3153]],[[3149,3150,3135]],[[3133,3131,3154]],[[3155,3156,3127]],[[3150,3148,3123]],[[3157,3156,3155]],[[3157,3119,3158]],[[3146,3145,3122]],[[3120,3118,3115]],[[3145,3144,3143]],[[3139,3141,3140]],[[3143,3142,3141]],[[3137,3139,3138]],[[3152,3137,3136]],[[3159,3160,3161]],[[3162,3163,3117]],[[3162,3160,3163]],[[3152,3151,3153]],[[3153,3132,3134]],[[3130,3154,3131]],[[3134,3133,3154]],[[3128,3130,3129]],[[3125,3128,3126]],[[3156,3125,3127]],[[3158,3156,3157]],[[3121,3158,3119]],[[3115,3121,3120]],[[3163,3115,3117]],[[3113,3164,3161]],[[3160,3159,3163]],[[3164,3113,3102]],[[3161,3164,3159]],[[3108,3165,3103]],[[3101,3041,3166]],[[3164,3101,3167]],[[3168,3169,3170]],[[3171,3172,3173]],[[3174,3175,3176]],[[3177,3178,3179]],[[3175,3180,3179]],[[3181,3182,3183]],[[3184,3185,3186]],[[3187,3188,3189]],[[3190,1771,1773]],[[3191,3192,3193]],[[3188,3194,3193]],[[3192,3195,3196]],[[3196,3171,3173]],[[3173,3172,3197]],[[3198,3199,3200]],[[3190,1773,3199]],[[3197,3201,3200]],[[3202,3203,3189]],[[3202,3183,3204]],[[3199,3198,3190]],[[3181,3185,3205]],[[3200,3201,3198]],[[3186,3178,3206]],[[3207,3208,3176]],[[3201,3197,3172]],[[3209,3210,3207]],[[3209,3211,3212]],[[3196,3195,3171]],[[3211,3169,3213]],[[3195,3192,3191]],[[3191,3193,3194]],[[3194,3188,3187]],[[3204,3203,3202]],[[3187,3189,3203]],[[3182,3204,3183]],[[3205,3182,3181]],[[3166,3214,3170]],[[3185,3184,3205]],[[3186,3206,3184]],[[3178,3177,3206]],[[3179,3180,3177]],[[3175,3174,3180]],[[3176,3208,3174]],[[3207,3210,3208]],[[3209,3212,3210]],[[3211,3213,3212]],[[3169,3168,3213]],[[3170,3214,3168]],[[3166,3041,3214]],[[3054,3053,2256]],[[2258,3099,3098]],[[3215,3216,2257]],[[2255,3068,3067]],[[2259,2255,2254]],[[2259,3082,2255]],[[3215,2257,3049]],[[3049,2257,2256]],[[3216,3043,2257]],[[3043,3099,2258]],[[3164,3102,3101]],[[3113,3112,3165]],[[3113,3165,3102]],[[3112,3103,3165]],[[3042,3100,3046]],[[3108,3046,3100]],[[3109,3217,3107]],[[3109,3110,3106]],[[3111,3109,3107]],[[3111,3110,3109]],[[3217,3105,3107]],[[3217,3109,3105]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2c15e416-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efc86849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3218,3219,3220]],[[3221,3222,3223]],[[3224,3225,3226]],[[3227,3228,3221]],[[3229,3230,3231]],[[3232,3233,3234]],[[3235,3236,3237]],[[3238,3239,3240]],[[3241,3242,3243]],[[3243,3244,3241]],[[3241,3244,3245]],[[3246,3247,3248]],[[3249,3245,3250]],[[3251,3247,3252]],[[3253,3254,3255]],[[3256,3252,3257]],[[3256,3251,3252]],[[3245,3258,3259]],[[3260,3261,3218]],[[3262,3225,3263]],[[3264,3220,3265]],[[3266,3265,3220]],[[3267,3268,3266]],[[3269,3267,3270]],[[3271,3269,3270]],[[3272,3271,3273]],[[3274,3272,3275]],[[3276,3277,3278]],[[3279,3280,3281]],[[3282,3283,3284]],[[3285,3286,3287]],[[3288,3289,3290]],[[3291,3292,3293]],[[3294,3295,3296]],[[3297,3298,3299]],[[3297,3294,3300]],[[3297,3301,3298]],[[3297,3302,3301]],[[3296,3295,3303]],[[3297,3304,3302]],[[3297,3300,3304]],[[3294,3305,3300]],[[3306,3289,3307]],[[3295,3308,3303]],[[3308,3309,3310]],[[3291,3311,3309]],[[3293,3312,3311]],[[3313,3314,3315]],[[3306,3292,3289]],[[3289,3288,3307]],[[3316,3317,3288]],[[3318,3319,3320]],[[3321,3287,3317]],[[3319,3322,3323]],[[3324,3318,3320]],[[3325,3326,3327]],[[3319,3323,3320]],[[3328,3329,3330]],[[3322,3331,3332]],[[3329,3333,3330]],[[3334,3282,3335]],[[3336,3337,3338]],[[3284,3339,3335]],[[3340,3276,3341]],[[3330,3342,3343]],[[3278,3344,3274]],[[3345,3341,3346]],[[3278,3347,3341]],[[3274,3275,3347]],[[3272,3273,3275]],[[3271,3348,3273]],[[3271,3270,3348]],[[3267,3349,3270]],[[3267,3266,3349]],[[3268,3265,3266]],[[3350,3220,3264]],[[3218,3351,3219]],[[3352,3242,3241]],[[3352,3353,3354]],[[3355,3234,3242]],[[3356,3357,3358]],[[3359,3238,3240]],[[3227,3360,3361]],[[3244,3258,3245]],[[3333,3362,3330]],[[3363,3337,3336]],[[3343,3364,3346]],[[3365,3366,3340]],[[3346,3364,3367]],[[3368,3333,3363]],[[3282,3284,3335]],[[3369,3329,3339]],[[3335,3339,3370]],[[3284,3369,3339]],[[3327,3334,3335]],[[3283,3369,3284]],[[3343,3363,3364]],[[3333,3337,3363]],[[3371,3338,3346]],[[3366,3276,3340]],[[3372,3338,3373]],[[3371,3336,3338]],[[3287,3324,3320]],[[3324,3319,3318]],[[3316,3314,3317]],[[3315,3285,3374]],[[3337,3280,3373]],[[3337,3366,3280]],[[3313,3321,3317]],[[3374,3287,3321]],[[3367,3371,3346]],[[3367,3336,3371]],[[3375,3246,3376]],[[3359,3259,3238]],[[3328,3330,3370]],[[3343,3346,3370]],[[3364,3336,3367]],[[3364,3363,3336]],[[3253,3377,3254]],[[3375,3378,3379]],[[3365,3281,3366]],[[3280,3366,3281]],[[3380,3331,3322]],[[3322,3381,3380]],[[3382,3334,3327]],[[3381,3369,3334]],[[3345,3340,3341]],[[3383,3365,3340]],[[3384,3279,3281]],[[3373,3280,3279]],[[3372,3373,3279]],[[3338,3337,3373]],[[3253,3255,3385]],[[3248,3247,3386]],[[3253,3387,3251]],[[3386,3247,3251]],[[3376,3388,3389]],[[3376,3246,3254]],[[3389,3253,3251]],[[3254,3246,3248]],[[3290,3316,3288]],[[3290,3314,3316]],[[3286,3324,3287]],[[3286,3319,3324]],[[3390,3384,3365]],[[3346,3338,3384]],[[3314,3313,3317]],[[3314,3290,3315]],[[3362,3342,3330]],[[3362,3363,3343]],[[3389,3251,3256]],[[3387,3386,3251]],[[3362,3368,3363]],[[3362,3333,3368]],[[3389,3377,3253]],[[3388,3376,3377]],[[3255,3254,3248]],[[3377,3376,3254]],[[3334,3283,3282]],[[3334,3369,3283]],[[3390,3345,3346]],[[3383,3340,3345]],[[3323,3332,3327]],[[3332,3331,3325]],[[3330,3343,3370]],[[3342,3362,3343]],[[3390,3365,3383]],[[3384,3281,3365]],[[3361,3360,3224]],[[3361,3224,3227]],[[3391,3392,3393]],[[3394,3395,3396]],[[3397,3398,3399]],[[3228,3400,3221]],[[3382,3380,3381]],[[3326,3331,3380]],[[3227,3401,3360]],[[3401,3227,3223]],[[3384,3372,3279]],[[3384,3338,3372]],[[3250,3379,3402]],[[3224,3401,3225]],[[3354,3355,3242]],[[3354,3234,3355]],[[3250,3245,3259]],[[3378,3402,3379]],[[3244,3259,3258]],[[3375,3379,3246]],[[3403,3238,3244]],[[3243,3403,3244]],[[3352,3354,3242]],[[3353,3234,3354]],[[3345,3390,3383]],[[3346,3384,3390]],[[3313,3315,3321]],[[3290,3285,3315]],[[3404,3245,3249]],[[3404,3241,3245]],[[3315,3374,3321]],[[3285,3287,3374]],[[3385,3386,3387]],[[3255,3248,3386]],[[3224,3228,3227]],[[3405,3406,3407]],[[3393,3392,3408]],[[3399,3398,3234]],[[3231,3237,3229]],[[3393,3358,3391]],[[3222,3221,3357]],[[3223,3227,3221]],[[3351,3223,3407]],[[3223,3263,3401]],[[3409,3405,3410]],[[3411,3261,3260]],[[3350,3262,3218]],[[3218,3262,3260]],[[3400,3228,3230]],[[3412,3232,3413]],[[3233,3232,3230]],[[3234,3353,3232]],[[3253,3385,3387]],[[3255,3386,3385]],[[3350,3218,3220]],[[3261,3411,3218]],[[3230,3232,3231]],[[3353,3413,3232]],[[3263,3260,3262]],[[3223,3351,3260]],[[3351,3411,3260]],[[3351,3218,3411]],[[3391,3358,3357]],[[3414,3415,3406]],[[3416,3237,3412]],[[3231,3232,3237]],[[3357,3356,3222]],[[3417,3406,3405]],[[3410,3405,3407]],[[3223,3222,3409]],[[3406,3417,3418]],[[3419,3420,3229]],[[3236,3229,3237]],[[3236,3421,3419]],[[3358,3396,3356]],[[3422,3393,3421]],[[3327,3332,3325]],[[3323,3322,3332]],[[3382,3326,3380]],[[3325,3331,3326]],[[3356,3409,3222]],[[3395,3394,3409]],[[3244,3238,3259]],[[3240,3225,3247]],[[3416,3412,3413]],[[3237,3232,3412]],[[3415,3235,3413]],[[3415,3423,3235]],[[3419,3421,3393]],[[3423,3415,3414]],[[3418,3414,3406]],[[3421,3424,3414]],[[3405,3394,3417]],[[3405,3409,3394]],[[3420,3419,3408]],[[3229,3236,3419]],[[3416,3235,3237]],[[3424,3421,3236]],[[3394,3396,3417]],[[3358,3393,3422]],[[3356,3395,3409]],[[3356,3396,3395]],[[3398,3397,3243]],[[3243,3397,3425]],[[3221,3391,3357]],[[3221,3392,3391]],[[3233,3399,3234]],[[3233,3230,3228]],[[3228,3397,3233]],[[3426,3427,3425]],[[3276,3278,3341]],[[3277,3344,3278]],[[3326,3382,3327]],[[3381,3334,3382]],[[3413,3235,3416]],[[3423,3236,3235]],[[3291,3293,3311]],[[3292,3312,3293]],[[3312,3306,3307]],[[3312,3292,3306]],[[3419,3393,3408]],[[3421,3414,3422]],[[3396,3418,3417]],[[3396,3358,3422]],[[3418,3422,3414]],[[3418,3396,3422]],[[3339,3328,3370]],[[3339,3329,3328]],[[3308,3291,3309]],[[3295,3292,3291]],[[3223,3410,3407]],[[3223,3409,3410]],[[3278,3274,3347]],[[3344,3272,3274]],[[3239,3427,3240]],[[3226,3225,3240]],[[3246,3379,3247]],[[3427,3226,3240]],[[3233,3397,3399]],[[3425,3403,3243]],[[3426,3425,3397]],[[3427,3239,3425]],[[3376,3389,3256]],[[3388,3377,3389]],[[3305,3296,3303]],[[3305,3294,3296]],[[3426,3226,3427]],[[3428,3228,3224]],[[3428,3224,3226]],[[3360,3401,3224]],[[3429,3250,3402]],[[3429,3249,3250]],[[3397,3228,3428]],[[3230,3420,3400]],[[3303,3308,3310]],[[3295,3291,3308]],[[3423,3424,3236]],[[3423,3414,3424]],[[3401,3263,3225]],[[3223,3260,3263]],[[3428,3426,3397]],[[3428,3226,3426]],[[3403,3239,3238]],[[3403,3425,3239]],[[3392,3420,3408]],[[3230,3229,3420]],[[3392,3400,3420]],[[3392,3221,3400]],[[3379,3240,3247]],[[3379,3250,3359]],[[3379,3359,3240]],[[3250,3259,3359]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c160b4a-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf249cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3430,3431,3432]],[[3433,3434,3435]],[[3436,3437,3438]],[[3439,3440,3441]],[[3442,3443,3444]],[[3445,3446,3447]],[[3448,3449,3450]],[[3451,3452,3453]],[[3454,3455,3456]],[[3457,3456,3458]],[[3459,3458,3460]],[[3461,3462,3463]],[[3464,3465,3466]],[[3467,3468,3469]],[[3470,3471,3472]],[[3473,3474,3475]],[[3476,3477,3478]],[[3479,3437,3452]],[[3480,3481,3482]],[[3483,3484,3485]],[[3486,3487,3488]],[[3489,3490,3491]],[[3492,3493,3494]],[[3495,3496,3497]],[[3498,3499,3500]],[[3437,3501,3502]],[[3503,3504,3505]],[[3506,3507,3508]],[[3509,3510,3511]],[[3472,3471,3512]],[[3513,3431,3514]],[[3515,3512,3471]],[[3516,3517,3518]],[[3519,3520,3521]],[[3522,3520,3519]],[[3478,3440,3523]],[[3466,3524,3525]],[[3526,3478,3477]],[[3527,3519,3528]],[[3529,3530,3531]],[[3532,3469,3533]],[[3534,3476,3535]],[[3536,3517,3516]],[[3537,3538,3539]],[[3540,3541,3542]],[[3541,3543,3544]],[[3545,3546,3547]],[[3533,3548,3532]],[[3542,3541,3549]],[[3550,3544,3551]],[[3543,3552,3467]],[[3553,3525,3554]],[[3534,3522,3519]],[[3555,3517,3556]],[[3543,3557,3544]],[[3467,3469,3557]],[[3557,3543,3467]],[[3548,3468,3554]],[[3552,3543,3541]],[[3552,3558,3467]],[[3559,3560,3523]],[[3520,3478,3530]],[[3561,3562,3530]],[[3529,3520,3530]],[[3562,3521,3531]],[[3521,3520,3529]],[[3545,3547,3563]],[[3538,3478,3539]],[[3564,3526,3477]],[[3539,3478,3526]],[[3541,3544,3550]],[[3557,3469,3565]],[[3541,3550,3549]],[[3544,3557,3551]],[[3527,3546,3566]],[[3547,3567,3563]],[[3568,3549,3550]],[[3539,3542,3549]],[[3565,3537,3569]],[[3539,3549,3568]],[[3536,3525,3570]],[[3525,3553,3466]],[[3555,3571,3537]],[[3568,3550,3551]],[[3534,3535,3522]],[[3468,3553,3554]],[[3561,3572,3562]],[[3562,3531,3530]],[[3541,3540,3552]],[[3527,3468,3558]],[[3468,3467,3558]],[[3468,3533,3469]],[[3468,3548,3533]],[[3518,3517,3532]],[[3563,3567,3542]],[[3547,3558,3540]],[[3573,3574,3575]],[[3576,3577,3431]],[[3439,3560,3559]],[[3523,3530,3478]],[[3527,3534,3519]],[[3478,3520,3522]],[[3578,3466,3553]],[[3578,3464,3466]],[[3566,3476,3534]],[[3478,3522,3535]],[[3579,3580,3553]],[[3581,3582,3583]],[[3584,3582,3581]],[[3585,3586,3570]],[[3555,3537,3565]],[[3551,3557,3565]],[[3528,3587,3441]],[[3521,3529,3531]],[[3588,3577,3576]],[[3589,3431,3577]],[[3575,3590,3573]],[[3432,3574,3430]],[[3591,3592,3593]],[[3591,3594,3575]],[[3595,3596,3597]],[[3598,3590,3594]],[[3515,3471,3599]],[[3600,3601,3602]],[[3575,3594,3590]],[[3603,3434,3433]],[[3472,3604,3470]],[[3605,3513,3604]],[[3606,3596,3607]],[[3470,3608,3434]],[[3553,3464,3578]],[[3609,3584,3581]],[[3553,3609,3464]],[[3584,3610,3582]],[[3611,3610,3584]],[[3538,3583,3610]],[[3580,3611,3584]],[[3611,3538,3610]],[[3526,3563,3539]],[[3526,3564,3563]],[[3546,3612,3566]],[[3546,3564,3477]],[[3465,3581,3583]],[[3465,3609,3581]],[[3609,3580,3584]],[[3613,3579,3614]],[[3553,3580,3609]],[[3613,3611,3580]],[[3563,3542,3539]],[[3540,3558,3552]],[[3567,3540,3542]],[[3567,3547,3540]],[[3579,3613,3580]],[[3579,3615,3614]],[[3616,3617,3618]],[[3561,3530,3619]],[[3620,3621,3622]],[[3623,3624,3625]],[[3554,3518,3548]],[[3554,3516,3518]],[[3439,3559,3440]],[[3560,3618,3523]],[[3532,3565,3469]],[[3465,3464,3609]],[[3537,3571,3586]],[[3556,3536,3571]],[[3570,3586,3536]],[[3556,3517,3536]],[[3569,3551,3565]],[[3571,3536,3586]],[[3568,3537,3539]],[[3586,3538,3537]],[[3565,3532,3555]],[[3548,3518,3532]],[[3610,3583,3582]],[[3538,3586,3583]],[[3587,3562,3572]],[[3587,3521,3562]],[[3593,3515,3626]],[[3470,3599,3471]],[[3612,3546,3477]],[[3545,3563,3564]],[[3525,3516,3554]],[[3525,3536,3516]],[[3432,3591,3575]],[[3605,3512,3515]],[[3524,3570,3525]],[[3524,3585,3570]],[[3441,3468,3528]],[[3441,3553,3468]],[[3593,3592,3515]],[[3592,3605,3515]],[[3595,3513,3514]],[[3605,3591,3513]],[[3616,3627,3441]],[[3618,3560,3627]],[[3528,3521,3587]],[[3528,3519,3521]],[[3628,3465,3583]],[[3524,3466,3465]],[[3589,3629,3431]],[[3630,3431,3629]],[[3591,3432,3431]],[[3575,3574,3432]],[[3517,3555,3532]],[[3556,3571,3555]],[[3461,3463,3460]],[[3631,3632,3484]],[[3483,3633,3634]],[[3635,3485,3636]],[[3637,3480,3638]],[[3639,3579,3632]],[[3640,3600,3641]],[[3642,3434,3603]],[[3643,3501,3644]],[[3502,3434,3437]],[[3645,3646,3438]],[[3647,3648,3436]],[[3649,3650,3651]],[[3652,3653,3654]],[[3546,3527,3558]],[[3528,3468,3527]],[[3547,3546,3558]],[[3545,3564,3546]],[[3655,3656,3657]],[[3658,3637,3638]],[[3659,3660,3661]],[[3625,3629,3589]],[[3662,3663,3648]],[[3644,3437,3664]],[[3665,3666,3667]],[[3661,3660,3603]],[[3668,3669,3670]],[[3671,3606,3607]],[[3577,3588,3672]],[[3621,3660,3659]],[[3673,3446,3674]],[[3675,3444,3676]],[[3445,3677,3446]],[[3678,3679,3673]],[[3461,3460,3458]],[[3680,3484,3483]],[[3674,3681,3452]],[[3682,3683,3684]],[[3674,3449,3685]],[[3686,3681,3687]],[[3688,3453,3452]],[[3689,3690,3691]],[[3451,3683,3692]],[[3495,3688,3496]],[[3693,3645,3694]],[[3695,3497,3496]],[[3445,3450,3677]],[[3674,3446,3677]],[[3696,3448,3450]],[[3674,3677,3450]],[[3446,3697,3447]],[[3698,3699,3700]],[[3701,3448,3696]],[[3702,3703,3704]],[[3705,3706,3445]],[[3448,3701,3707]],[[3447,3697,3493]],[[3446,3673,3679]],[[3628,3585,3524]],[[3583,3586,3585]],[[3505,3708,3709]],[[3710,3504,3711]],[[3712,3713,3714]],[[3715,3716,3717]],[[3718,3719,3720]],[[3721,3722,3650]],[[3723,3724,3725]],[[3726,3727,3717]],[[3718,3503,3719]],[[3711,3728,3729]],[[3725,3724,3730]],[[3503,3731,3504]],[[3732,3733,3734]],[[3587,3572,3733]],[[3735,3736,3737]],[[3737,3510,3738]],[[3739,3740,3698]],[[3741,3446,3679]],[[3699,3704,3700]],[[3703,3697,3741]],[[3465,3628,3524]],[[3583,3585,3628]],[[3742,3449,3448]],[[3674,3450,3449]],[[3742,3743,3685]],[[3744,3496,3688]],[[3745,3690,3746]],[[3689,3747,3748]],[[3749,3750,3751]],[[3752,3753,3754]],[[3740,3442,3444]],[[3443,3755,3444]],[[3739,3756,3757]],[[3700,3679,3756]],[[3493,3492,3447]],[[3758,3696,3705]],[[3759,3760,3761]],[[3718,3720,3762]],[[3763,3704,3699]],[[3700,3756,3698]],[[3686,3764,3765]],[[3689,3748,3695]],[[3597,3596,3766]],[[3767,3768,3769]],[[3770,3771,3772]],[[3773,3774,3713]],[[3775,3776,3777]],[[3778,3779,3780]],[[3781,3514,3776]],[[3641,3600,3782]],[[3783,3784,3785]],[[3786,3752,3751]],[[3787,3784,3776]],[[3788,3775,3789]],[[3790,3791,3714]],[[3709,3708,3710]],[[3790,3792,3793]],[[3794,3795,3761]],[[3796,3431,3430]],[[3797,3798,3796]],[[3799,3573,3590]],[[3430,3574,3573]],[[3800,3707,3676]],[[3707,3800,3742]],[[3636,3801,3802]],[[3803,3456,3457]],[[3804,3635,3486]],[[3805,3801,3806]],[[3807,3483,3804]],[[3802,3801,3808]],[[3633,3807,3487]],[[3488,3804,3486]],[[3635,3802,3486]],[[3809,3810,3811]],[[3487,3457,3458]],[[3812,3802,3808]],[[3803,3813,3456]],[[3809,3811,3806]],[[3706,3696,3450]],[[3742,3800,3743]],[[3641,3814,3815]],[[3816,3817,3818]],[[3819,3820,3814]],[[3816,3818,3821]],[[3779,3822,3823]],[[3819,3814,3641]],[[3823,3824,3820]],[[3825,3814,3826]],[[3705,3696,3706]],[[3701,3676,3707]],[[3605,3604,3472]],[[3513,3827,3604]],[[3605,3472,3512]],[[3604,3827,3470]],[[3828,3829,3631]],[[3830,3831,3632]],[[3692,3683,3832]],[[3684,3497,3833]],[[3834,3835,3682]],[[3682,3832,3683]],[[3495,3451,3453]],[[3684,3683,3451]],[[3836,3835,3498]],[[3646,3436,3438]],[[3442,3739,3837]],[[3756,3679,3757]],[[3456,3838,3673]],[[3839,3811,3840]],[[3841,3842,3455]],[[3843,3844,3845]],[[3846,3489,3491]],[[3847,3842,3841]],[[3848,3845,3844]],[[3848,3849,3845]],[[3850,3841,3851]],[[3852,3845,3849]],[[3839,3850,3853]],[[3847,3854,3852]],[[3850,3855,3841]],[[3856,3490,3844]],[[3786,3789,3753]],[[3775,3857,3776]],[[3858,3816,3859]],[[3774,3792,3790]],[[3859,3816,3821]],[[3858,3817,3816]],[[3860,3629,3625]],[[3430,3573,3799]],[[3861,3862,3863]],[[3796,3576,3431]],[[3457,3812,3808]],[[3635,3636,3802]],[[3662,3644,3663]],[[3501,3437,3644]],[[3808,3805,3457]],[[3808,3801,3805]],[[3783,3864,3865]],[[3865,3866,3867]],[[3608,3771,3867]],[[3868,3514,3781]],[[3865,3864,3866]],[[3713,3716,3715]],[[3594,3593,3598]],[[3470,3434,3799]],[[3513,3597,3827]],[[3626,3515,3599]],[[3867,3866,3434]],[[3864,3869,3866]],[[3788,3789,3786]],[[3870,3778,3780]],[[3869,3871,3866]],[[3869,3857,3871]],[[3686,3765,3745]],[[3687,3681,3685]],[[3616,3618,3627]],[[3872,3523,3618]],[[3566,3534,3527]],[[3566,3612,3476]],[[3635,3483,3485]],[[3634,3873,3680]],[[3498,3874,3499]],[[3438,3479,3694]],[[3875,3876,3661]],[[3877,3621,3863]],[[3433,3875,3661]],[[3661,3876,3659]],[[3878,3879,3880]],[[3666,3876,3875]],[[3667,3666,3875]],[[3622,3630,3620]],[[3700,3741,3679]],[[3697,3446,3741]],[[3881,3763,3699]],[[3704,3741,3700]],[[3568,3569,3537]],[[3568,3551,3569]],[[3737,3654,3759]],[[3882,3883,3509]],[[3650,3649,3884]],[[3883,3735,3738]],[[3650,3884,3736]],[[3649,3736,3884]],[[3496,3744,3690]],[[3744,3681,3746]],[[3811,3853,3456]],[[3455,3838,3456]],[[3806,3811,3456]],[[3810,3840,3811]],[[3451,3495,3497]],[[3453,3688,3495]],[[3601,3826,3602]],[[3885,3886,3887]],[[3653,3888,3711]],[[3721,3650,3888]],[[3874,3693,3694]],[[3647,3646,3645]],[[3599,3470,3626]],[[3766,3608,3470]],[[3889,3890,3502]],[[3435,3434,3502]],[[3891,3892,3893]],[[3880,3666,3665]],[[3435,3665,3667]],[[3880,3894,3666]],[[3895,3673,3896]],[[3846,3896,3489]],[[3837,3897,3442]],[[3491,3755,3443]],[[3898,3782,3859]],[[3899,3774,3773]],[[3714,3900,3790]],[[3901,3885,3887]],[[3902,3759,3761]],[[3762,3720,3710]],[[3653,3711,3729]],[[3888,3903,3711]],[[3720,3719,3709]],[[3904,3710,3708]],[[3723,3710,3794]],[[3761,3723,3794]],[[3434,3773,3903]],[[3714,3791,3712]],[[3794,3710,3711]],[[3711,3903,3713]],[[3641,3782,3866]],[[3600,3885,3901]],[[3903,3773,3713]],[[3905,3906,3898]],[[3866,3773,3434]],[[3866,3782,3773]],[[3907,3899,3906]],[[3773,3782,3898]],[[3792,3899,3907]],[[3908,3905,3821]],[[3858,3901,3887]],[[3782,3600,3901]],[[3793,3792,3909]],[[3774,3899,3792]],[[3827,3766,3470]],[[3608,3867,3434]],[[3910,3615,3579]],[[3614,3611,3613]],[[3911,3481,3480]],[[3911,3615,3481]],[[3910,3482,3481]],[[3481,3615,3910]],[[3912,3913,3658]],[[3480,3482,3638]],[[3914,3912,3658]],[[3473,3637,3913]],[[3915,3914,3639]],[[3638,3482,3639]],[[3631,3830,3632]],[[3916,3473,3913]],[[3758,3675,3676]],[[3758,3705,3675]],[[3764,3800,3676]],[[3745,3691,3690]],[[3800,3917,3743]],[[3800,3764,3917]],[[3904,3504,3710]],[[3505,3719,3503]],[[3794,3711,3713]],[[3728,3731,3729]],[[3784,3783,3670]],[[3781,3918,3868]],[[3770,3772,3919]],[[3920,3606,3671]],[[3771,3918,3772]],[[3769,3768,3868]],[[3771,3921,3918]],[[3769,3608,3767]],[[3781,3669,3919]],[[3669,3922,3770]],[[3771,3770,3867]],[[3919,3669,3770]],[[3787,3869,3785]],[[3865,3668,3670]],[[3868,3768,3514]],[[3769,3921,3608]],[[3772,3918,3781]],[[3918,3921,3868]],[[3625,3589,3623]],[[3923,3623,3672]],[[3923,3588,3798]],[[3923,3672,3588]],[[3430,3799,3797]],[[3626,3470,3799]],[[3799,3624,3797]],[[3624,3623,3923]],[[3873,3924,3484]],[[3462,3461,3655]],[[3639,3658,3638]],[[3913,3637,3658]],[[3838,3896,3673]],[[3838,3848,3489]],[[3443,3925,3491]],[[3443,3897,3925]],[[3704,3703,3741]],[[3493,3697,3703]],[[3731,3654,3653]],[[3654,3722,3721]],[[3898,3859,3821]],[[3782,3858,3859]],[[3926,3734,3619]],[[3733,3572,3561]],[[3734,3561,3619]],[[3734,3733,3561]],[[3459,3460,3634]],[[3463,3924,3460]],[[3893,3892,3643]],[[3890,3927,3879]],[[3501,3889,3502]],[[3501,3892,3891]],[[3747,3764,3676]],[[3747,3691,3765]],[[3460,3873,3634]],[[3460,3924,3873]],[[3745,3765,3691]],[[3764,3747,3765]],[[3698,3740,3444]],[[3698,3756,3739]],[[3853,3851,3454]],[[3849,3838,3455]],[[3538,3637,3475]],[[3911,3480,3637]],[[3928,3736,3649]],[[3654,3737,3736]],[[3489,3848,3844]],[[3838,3849,3848]],[[3715,3717,3929]],[[3716,3713,3726]],[[3930,3759,3931]],[[3909,3737,3759]],[[3723,3760,3724]],[[3759,3724,3760]],[[3730,3724,3503]],[[3503,3654,3731]],[[3698,3881,3699]],[[3763,3702,3704]],[[3826,3814,3824]],[[3908,3909,3907]],[[3780,3823,3820]],[[3886,3817,3887]],[[3820,3824,3814]],[[3776,3909,3818]],[[3870,3932,3778]],[[3779,3932,3822]],[[3933,3750,3822]],[[3823,3780,3779]],[[3933,3932,3870]],[[3779,3778,3932]],[[3917,3686,3687]],[[3917,3764,3686]],[[3837,3739,3757]],[[3442,3740,3739]],[[3678,3837,3757]],[[3897,3443,3442]],[[3678,3897,3837]],[[3895,3896,3846]],[[3805,3803,3457]],[[3813,3806,3456]],[[3801,3809,3806]],[[3801,3810,3809]],[[3732,3616,3441]],[[3732,3734,3926]],[[3618,3617,3872]],[[3617,3732,3926]],[[3872,3619,3523]],[[3872,3926,3619]],[[3825,3826,3601]],[[3824,3776,3818]],[[3934,3647,3693]],[[3648,3663,3436]],[[3875,3433,3667]],[[3661,3603,3433]],[[3883,3935,3735]],[[3936,3650,3736]],[[3738,3735,3737]],[[3937,3507,3936]],[[3882,3508,3935]],[[3650,3722,3651]],[[3735,3936,3736]],[[3937,3935,3507]],[[3832,3835,3836]],[[3834,3498,3835]],[[3938,3682,3833]],[[3747,3834,3682]],[[3923,3798,3797]],[[3588,3576,3798]],[[3797,3796,3430]],[[3798,3576,3796]],[[3894,3876,3666]],[[3894,3630,3876]],[[3715,3939,3713]],[[3939,3929,3930]],[[3939,3795,3794]],[[3931,3759,3902]],[[3713,3939,3794]],[[3715,3929,3939]],[[3922,3668,3865]],[[3922,3669,3668]],[[3851,3853,3850]],[[3454,3456,3853]],[[3827,3597,3766]],[[3513,3595,3597]],[[3637,3473,3475]],[[3913,3831,3916]],[[3893,3643,3662]],[[3892,3501,3643]],[[3893,3662,3934]],[[3643,3644,3662]],[[3707,3742,3448]],[[3685,3449,3742]],[[3500,3479,3452]],[[3438,3437,3479]],[[3940,3498,3834]],[[3499,3479,3500]],[[3915,3639,3632]],[[3914,3658,3639]],[[3940,3874,3498]],[[3694,3479,3499]],[[3925,3846,3491]],[[3925,3897,3895]],[[3807,3804,3488]],[[3483,3635,3804]],[[3487,3807,3488]],[[3633,3483,3807]],[[3871,3788,3866]],[[3871,3857,3775]],[[3828,3631,3484]],[[3657,3474,3830]],[[3475,3461,3458]],[[3656,3474,3657]],[[3829,3941,3462]],[[3461,3475,3655]],[[3652,3721,3888]],[[3652,3654,3721]],[[3433,3435,3667]],[[3502,3879,3878]],[[3587,3732,3441]],[[3587,3733,3732]],[[3878,3880,3665]],[[3879,3927,3880]],[[3600,3640,3601]],[[3815,3814,3825]],[[3886,3602,3817]],[[3602,3824,3818]],[[3654,3928,3722]],[[3722,3928,3651]],[[3868,3921,3769]],[[3771,3608,3921]],[[3600,3886,3885]],[[3600,3602,3886]],[[3857,3869,3787]],[[3670,3669,3781]],[[3864,3785,3869]],[[3864,3783,3785]],[[3486,3812,3457]],[[3486,3802,3812]],[[3620,3861,3863]],[[3630,3629,3861]],[[3817,3858,3887]],[[3782,3901,3858]],[[3839,3855,3850]],[[3854,3843,3852]],[[3508,3650,3506]],[[3508,3888,3650]],[[3451,3692,3452]],[[3836,3498,3500]],[[3500,3692,3836]],[[3500,3452,3692]],[[3795,3902,3761]],[[3795,3931,3902]],[[3681,3744,3688]],[[3746,3690,3744]],[[3872,3617,3926]],[[3616,3732,3617]],[[3903,3882,3511]],[[3903,3508,3882]],[[3855,3847,3841]],[[3843,3845,3852]],[[3842,3847,3852]],[[3854,3856,3843]],[[3805,3813,3803]],[[3805,3806,3813]],[[3867,3922,3865]],[[3867,3770,3922]],[[3490,3489,3844]],[[3896,3838,3489]],[[3843,3856,3844]],[[3755,3491,3490]],[[3598,3593,3626]],[[3594,3591,3593]],[[3504,3728,3711]],[[3504,3731,3728]],[[3786,3780,3866]],[[3751,3750,3870]],[[3751,3870,3780]],[[3750,3933,3870]],[[3820,3819,3780]],[[3815,3825,3640]],[[3780,3641,3866]],[[3780,3819,3641]],[[3815,3640,3641]],[[3825,3601,3640]],[[3510,3509,3738]],[[3882,3935,3883]],[[3717,3727,3929]],[[3942,3759,3727]],[[3726,3712,3727]],[[3909,3759,3942]],[[3943,3944,3791]],[[3945,3727,3712]],[[3716,3726,3717]],[[3713,3712,3726]],[[3944,3712,3791]],[[3944,3945,3712]],[[3934,3648,3647]],[[3934,3662,3648]],[[3831,3915,3632]],[[3831,3913,3912]],[[3538,3911,3637]],[[3614,3615,3911]],[[3790,3943,3791]],[[3942,3944,3943]],[[3842,3849,3455]],[[3842,3852,3849]],[[3497,3938,3833]],[[3748,3682,3938]],[[3497,3695,3938]],[[3747,3682,3748]],[[3634,3680,3483]],[[3873,3484,3680]],[[3788,3786,3866]],[[3751,3780,3786]],[[3672,3589,3577]],[[3672,3623,3589]],[[3939,3930,3795]],[[3795,3930,3931]],[[3904,3505,3504]],[[3904,3708,3505]],[[3789,3777,3753]],[[3822,3824,3823]],[[3789,3775,3777]],[[3788,3871,3775]],[[3777,3754,3753]],[[3822,3750,3749]],[[3751,3754,3749]],[[3933,3822,3932]],[[3749,3754,3822]],[[3777,3776,3822]],[[3894,3893,3934]],[[3894,3891,3893]],[[3773,3906,3899]],[[3773,3898,3906]],[[3663,3664,3436]],[[3663,3644,3664]],[[3694,3645,3438]],[[3693,3647,3645]],[[3444,3946,3881]],[[3702,3493,3703]],[[3862,3877,3863]],[[3862,3624,3877]],[[3877,3947,3621]],[[3660,3642,3603]],[[3622,3621,3659]],[[3947,3660,3621]],[[3942,3945,3944]],[[3942,3727,3945]],[[3690,3689,3496]],[[3748,3938,3695]],[[3496,3689,3695]],[[3691,3747,3689]],[[3627,3439,3441]],[[3627,3560,3439]],[[3878,3435,3502]],[[3878,3665,3435]],[[3818,3908,3821]],[[3909,3792,3907]],[[3784,3781,3776]],[[3919,3772,3781]],[[3784,3670,3781]],[[3783,3865,3670]],[[3861,3860,3862]],[[3861,3629,3860]],[[3671,3595,3514]],[[3607,3596,3595]],[[3915,3912,3914]],[[3915,3831,3912]],[[3727,3930,3929]],[[3727,3759,3930]],[[3830,3916,3831]],[[3474,3473,3916]],[[3924,3828,3484]],[[3924,3463,3941]],[[3657,3829,3655]],[[3828,3924,3941]],[[3829,3462,3655]],[[3941,3463,3462]],[[3631,3829,3657]],[[3828,3941,3829]],[[3840,3856,3855]],[[3755,3490,3856]],[[3855,3854,3847]],[[3855,3856,3854]],[[3759,3503,3724]],[[3759,3654,3503]],[[3651,3928,3649]],[[3654,3736,3928]],[[3497,3684,3451]],[[3833,3682,3684]],[[3595,3671,3607]],[[3514,3768,3920]],[[3514,3920,3671]],[[3768,3606,3920]],[[3927,3891,3894]],[[3889,3501,3891]],[[3880,3927,3894]],[[3879,3502,3890]],[[3891,3890,3889]],[[3891,3927,3890]],[[3810,3636,3485]],[[3810,3801,3636]],[[3861,3620,3630]],[[3863,3621,3620]],[[3777,3822,3754]],[[3776,3824,3822]],[[3647,3436,3646]],[[3664,3437,3436]],[[3947,3642,3660]],[[3947,3877,3642]],[[3718,3730,3503]],[[3718,3762,3730]],[[3657,3830,3631]],[[3474,3916,3830]],[[3452,3681,3688]],[[3674,3685,3681]],[[3743,3687,3685]],[[3743,3917,3687]],[[3681,3745,3746]],[[3681,3686,3745]],[[3633,3459,3634]],[[3633,3458,3459]],[[3935,3508,3507]],[[3903,3888,3508]],[[3639,3910,3579]],[[3639,3482,3910]],[[3596,3608,3766]],[[3596,3606,3767]],[[3596,3767,3608]],[[3606,3768,3767]],[[3942,3793,3909]],[[3942,3943,3793]],[[3774,3790,3900]],[[3793,3943,3790]],[[3817,3602,3818]],[[3826,3824,3602]],[[3559,3523,3440]],[[3619,3530,3523]],[[3720,3709,3710]],[[3719,3505,3709]],[[3758,3701,3696]],[[3758,3676,3701]],[[3725,3762,3723]],[[3725,3730,3762]],[[3731,3653,3729]],[[3652,3888,3653]],[[3444,3881,3698]],[[3946,3675,3494]],[[3475,3656,3655]],[[3475,3474,3656]],[[3946,3702,3763]],[[3494,3493,3702]],[[3881,3946,3763]],[[3675,3705,3492]],[[3851,3455,3454]],[[3851,3841,3455]],[[3774,3714,3713]],[[3774,3900,3714]],[[3797,3624,3923]],[[3799,3434,3624]],[[3624,3642,3877]],[[3624,3434,3642]],[[3538,3614,3911]],[[3538,3611,3614]],[[3513,3591,3431]],[[3605,3592,3591]],[[3936,3506,3650]],[[3936,3507,3506]],[[3906,3905,3907]],[[3818,3909,3908]],[[3821,3905,3898]],[[3908,3907,3905]],[[3705,3445,3447]],[[3706,3450,3445]],[[3934,3940,3834]],[[3934,3693,3940]],[[3499,3874,3694]],[[3940,3693,3874]],[[3633,3487,3458]],[[3486,3457,3487]],[[3799,3598,3626]],[[3799,3590,3598]],[[3876,3622,3659]],[[3876,3630,3622]],[[3751,3752,3754]],[[3786,3753,3752]],[[3755,3840,3810]],[[3755,3856,3840]],[[3811,3839,3853]],[[3840,3855,3839]],[[3760,3723,3761]],[[3762,3710,3723]],[[3862,3625,3624]],[[3862,3860,3625]],[[3535,3476,3478]],[[3612,3477,3476]],[[3675,3492,3494]],[[3705,3447,3492]],[[3882,3509,3511]],[[3883,3738,3509]],[[3735,3937,3936]],[[3735,3935,3937]],[[3925,3895,3846]],[[3897,3673,3895]],[[3702,3946,3494]],[[3444,3675,3946]],[[3679,3678,3757]],[[3673,3897,3678]],[[3692,3832,3836]],[[3682,3835,3832]],[[3857,3787,3776]],[[3785,3784,3787]],[[3948,3458,3456]],[[3949,3948,3673]],[[3673,3948,3456]],[[3950,3949,3674]],[[3674,3949,3673]],[[3951,3950,3452]],[[3452,3950,3674]],[[3437,3951,3452]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c160b4d-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efc5ef49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[3952,3953,3954]],[[3955,3956,3957]],[[3957,3958,3955]],[[3959,3960,3954]],[[3960,3956,3954]],[[3961,3962,3963]],[[3961,3963,3964]],[[3965,3966,3967]],[[3968,3969,3970]],[[3971,3972,3973]],[[3971,3974,3972]],[[3975,3976,3977]],[[3978,3979,3974]],[[3980,3981,3982]],[[3971,3973,3983]],[[3972,3984,3973]],[[3985,3986,3987]],[[3988,3989,3990]],[[3991,3992,3993]],[[3994,3995,3996]],[[3997,3998,3999]],[[3994,4000,4001]],[[4002,4003,4004]],[[4005,4006,4007]],[[3967,3981,3965]],[[3967,4008,3990]],[[4009,3990,4008]],[[4010,4011,3982]],[[4012,3965,3981]],[[4013,4014,3981]],[[4015,4016,4010]],[[4013,3981,3980]],[[3980,3982,4017]],[[4017,3982,4018]],[[4018,3982,4011]],[[4011,4010,4016]],[[4019,4015,4010]],[[4020,4019,4010]],[[4021,4020,4010]],[[4022,4021,4010]],[[4023,4024,4025]],[[4010,4026,4022]],[[4010,4027,4026]],[[4024,4028,4029]],[[4030,4031,4032]],[[4033,4034,4035]],[[4036,4037,4038]],[[4039,4040,4041]],[[4042,4043,4044]],[[4044,4045,4046]],[[4047,4048,4049]],[[4050,4051,4052]],[[4035,4053,4054]],[[4055,4056,4057]],[[4035,4054,4058]],[[4056,4059,4024]],[[4060,4024,4029]],[[4061,4058,4027]],[[4062,4024,4023]],[[4026,4027,4058]],[[4061,4063,4064]],[[4027,4065,4061]],[[4066,4027,4010]],[[4067,4066,4010]],[[4068,4067,4010]],[[4068,4069,4067]],[[4070,4071,4072]],[[4073,4074,4075]],[[4076,4077,4074]],[[4078,4079,4080]],[[4081,4082,4083]],[[4084,3962,4085]],[[3963,3962,4084]],[[4085,3962,4086]],[[4086,3962,4087]],[[4088,4089,4078]],[[4080,4088,4078]],[[4090,4091,4079]],[[4079,4092,4080]],[[4079,4093,4092]],[[4079,4094,4093]],[[4095,4096,4097]],[[4079,4098,4094]],[[4079,4091,4098]],[[4090,4099,4091]],[[4090,4100,4099]],[[4090,4101,4100]],[[4101,4090,4102]],[[4102,4090,4103]],[[4090,4104,4103]],[[4090,4105,4104]],[[4090,4106,4105]],[[4090,4107,4106]],[[4090,4108,4107]],[[4090,4097,4096]],[[4108,4090,4109]],[[4109,4090,4110]],[[4110,4090,4111]],[[4111,4090,4096]],[[4095,4112,4096]],[[4113,4114,4112]],[[4115,4116,4114]],[[4115,4114,4117]],[[4117,4114,4118]],[[4118,4114,4113]],[[4119,4118,4120]],[[4120,4118,4121]],[[4095,4113,4112]],[[4121,4118,4113]],[[4122,4095,4097]],[[4123,4124,4097]],[[4097,4125,4122]],[[4097,4126,4125]],[[4097,4127,4126]],[[4097,4128,4127]],[[4128,4097,4129]],[[4129,4097,4130]],[[4097,4131,4130]],[[4097,4124,4131]],[[4132,4123,4097]],[[4133,4134,4097]],[[4097,4134,4132]],[[4133,4135,4136]],[[4133,4136,4134]],[[4135,4137,4136]],[[4137,4138,4136]],[[4137,3954,4138]],[[3954,3953,4138]],[[3954,3956,3952]],[[3955,3952,3956]],[[4139,4140,3958]],[[4141,4142,4143]],[[3958,4140,3955]],[[4139,4142,4141]],[[4140,4139,4144]],[[4144,4139,4141]],[[4145,4146,4147]],[[4148,4149,4150]],[[4001,4151,3994]],[[4152,4003,3995]],[[4153,3972,4154]],[[4155,4003,4002]],[[4073,4156,4071]],[[4157,4158,4159]],[[4009,4160,3988]],[[4009,4161,4160]],[[4145,4162,4163]],[[4164,4165,4166]],[[4167,4168,4169]],[[4170,4171,4172]],[[4147,4171,4164]],[[4163,4006,4005]],[[4173,4174,4175]],[[4176,4177,4178]],[[3997,4179,3998]],[[4180,4181,4182]],[[4183,4184,4185]],[[4154,4003,4186]],[[4187,4002,4000]],[[4000,4004,4001]],[[4185,4184,4188]],[[4189,4190,4191]],[[4152,3994,4151]],[[3996,4000,3994]],[[4192,4193,4194]],[[4195,4196,4197]],[[4150,4198,4199]],[[4200,4168,4201]],[[4202,4200,4201]],[[4168,4166,4169]],[[4164,4203,4165]],[[4204,3996,3989]],[[4165,4169,4166]],[[4150,3996,4148]],[[4175,4205,4173]],[[4161,4009,4173]],[[4164,4168,4200]],[[4164,4166,4168]],[[4183,4185,4206]],[[4188,4154,4185]],[[3968,3970,4186]],[[4186,4003,3968]],[[4207,4203,4171]],[[4208,4162,4161]],[[4203,4209,4165]],[[4172,4171,4147]],[[4179,4210,3969]],[[4211,4179,3969]],[[4001,4004,4151]],[[4003,3989,3995]],[[3988,4147,3989]],[[4005,4007,4147]],[[4147,4212,3989]],[[4147,4200,4212]],[[4213,4214,4215]],[[4215,4214,4149]],[[4216,4217,4218]],[[4167,4198,4202]],[[4187,4219,4002]],[[4220,4221,4211]],[[4222,4158,4071]],[[4223,4224,4077]],[[4073,4072,4225]],[[4070,4073,4071]],[[4197,4226,4074]],[[4227,4228,4229]],[[4207,4171,4170]],[[4176,4007,4006]],[[4230,4177,4176]],[[4230,4231,4177]],[[4232,4233,4170]],[[4207,4175,4174]],[[4175,4233,4205]],[[4232,4234,4231]],[[4216,4235,4236]],[[4237,4236,4212]],[[4150,4238,4198]],[[4238,4214,4237]],[[4239,4076,4074]],[[4229,4240,4227]],[[4241,3991,3999]],[[4185,4210,4242]],[[4242,3997,4206]],[[4190,4243,4181]],[[4244,4245,4220]],[[4179,4245,4244]],[[4246,3968,4155]],[[4211,3969,3968]],[[4247,4248,4249]],[[4158,4072,4071]],[[3985,4250,4182]],[[3992,3991,4241]],[[4184,4251,4188]],[[3984,3986,3985]],[[4160,4145,3988]],[[4162,4208,4163]],[[4249,4222,4193]],[[4249,4158,4222]],[[4068,4249,4248]],[[4252,4253,4254]],[[4255,4244,4220]],[[3998,4255,3999]],[[4255,3998,4244]],[[4243,4241,3999]],[[4256,4248,4247]],[[4257,4258,4259]],[[4220,4245,4221]],[[4244,3998,4179]],[[4072,4157,4225]],[[4197,4074,4225]],[[4194,4193,4260]],[[4222,4260,4193]],[[4161,4176,4208]],[[4176,4178,4007]],[[4261,4032,4262]],[[4229,4263,4264]],[[4265,4082,4081]],[[4083,4082,4266]],[[4267,4030,4032]],[[4268,4269,4270]],[[4074,4226,4239]],[[4076,4271,4224]],[[4263,4272,4273]],[[4253,4274,4082]],[[3964,4274,4253]],[[3964,3963,4269]],[[4275,4276,4082]],[[4274,3964,4269]],[[4259,4277,4257]],[[4256,4278,4248]],[[4279,4280,4249]],[[4281,4256,4247]],[[4158,4226,4159]],[[4077,4076,4223]],[[4159,4226,4196]],[[4239,4249,4076]],[[4202,4198,4282]],[[4238,4149,4214]],[[4237,4214,4213]],[[4215,4217,4236]],[[4273,4264,4263]],[[4283,4253,4276]],[[4284,4283,4276]],[[4253,4082,4276]],[[4217,4216,4236]],[[4285,4286,4287]],[[4198,4238,4237]],[[4236,3989,4212]],[[4229,4030,4240]],[[4261,4288,4289]],[[4264,4031,4229]],[[4290,4270,4077]],[[4030,4229,4031]],[[4264,4273,4270]],[[4270,4290,4262]],[[4290,4077,4271]],[[4204,4285,4291]],[[4292,4216,4293]],[[4204,4236,4285]],[[4286,4293,4294]],[[4152,3995,3994]],[[3989,3996,3995]],[[4295,3993,4189]],[[4180,4182,4250]],[[4296,3985,4182]],[[3984,4153,3987]],[[4000,4002,4004]],[[4219,4155,4002]],[[3964,4068,4010]],[[3964,4271,4068]],[[4278,4256,4277]],[[4278,4068,4248]],[[4263,4228,4297]],[[4284,4276,4275]],[[4220,4298,4000]],[[4298,4211,3968]],[[4246,4298,3968]],[[4221,4245,4211]],[[4191,4180,4250]],[[4191,4181,4180]],[[4251,4153,4154]],[[3993,4184,4183]],[[4222,4156,4260]],[[4222,4071,4156]],[[4215,4236,4213]],[[4235,4285,4236]],[[4225,4157,4159]],[[4072,4158,4157]],[[4251,4154,4188]],[[3972,4003,4154]],[[4147,4232,4172]],[[4233,4175,4170]],[[4053,4035,4034]],[[4024,4064,4025]],[[3973,3984,4296]],[[4296,3984,3985]],[[4281,4247,4249]],[[4281,4277,4256]],[[4280,4281,4249]],[[4258,4257,4281]],[[4299,4055,4045]],[[4055,4047,4049]],[[4168,4167,4201]],[[4199,4198,4167]],[[4255,4243,3999]],[[4190,4300,3992]],[[4272,4283,4301]],[[4297,4228,4254]],[[4280,4258,4281]],[[4280,4279,4259]],[[4281,4257,4277]],[[4258,4280,4259]],[[4282,4237,4212]],[[4213,4236,4237]],[[4295,4302,4153]],[[4302,3985,3987]],[[4251,3993,4295]],[[4250,3985,4303]],[[4246,4155,4219]],[[3968,4003,4155]],[[3991,4206,3997]],[[4206,4185,4242]],[[3991,3997,3999]],[[4242,4210,4179]],[[4304,4037,4050]],[[4305,4052,4306]],[[4189,4300,4190]],[[4189,4303,4295]],[[3993,3992,4300]],[[4241,4243,3992]],[[4189,3993,4300]],[[4251,4184,3993]],[[4250,4189,4191]],[[4250,4303,4189]],[[4050,4037,4051]],[[4041,4307,4033]],[[4062,4308,4024]],[[4051,4061,4052]],[[4227,4254,4228]],[[4272,4254,4283]],[[4051,4037,4309]],[[4050,4052,4310]],[[4311,4312,4046]],[[4313,4038,4304]],[[4061,4035,4058]],[[4314,4309,4315]],[[4192,4279,4249]],[[4075,4259,4279]],[[4284,4301,4283]],[[4272,4297,4254]],[[4316,4040,4317]],[[4318,4317,4319]],[[4320,4056,4049]],[[4056,4060,4057]],[[4044,4306,4045]],[[4305,4042,4310]],[[4148,4293,4218]],[[4217,4215,4149]],[[4148,4218,4149]],[[4293,4216,4218]],[[4150,4149,4238]],[[4218,4217,4149]],[[4235,4292,4285]],[[4235,4216,4292]],[[4287,4294,3996]],[[4286,4292,4293]],[[4287,4286,4294]],[[4285,4292,4286]],[[4261,4262,4288]],[[4321,4267,4261]],[[4288,4262,4322]],[[4032,4270,4262]],[[4290,4271,4322]],[[4323,4030,4267]],[[4322,4271,4288]],[[4254,4253,4283]],[[4042,4044,4046]],[[4324,4306,4044]],[[4294,4148,3996]],[[4294,4293,4148]],[[4081,4272,4301]],[[4081,4325,4272]],[[4055,4049,4056]],[[4048,4320,4049]],[[4299,4326,4055]],[[4327,4047,4055]],[[4048,4328,4320]],[[4056,4024,4060]],[[4251,4295,4153]],[[4302,3987,4153]],[[4317,4329,4319]],[[4318,4319,4041]],[[4330,4316,4318]],[[4319,4307,4041]],[[4316,4317,4318]],[[4331,4039,4035]],[[4073,4070,4072]],[[4073,4260,4156]],[[4262,4290,4322]],[[4077,4224,4271]],[[4052,4047,4306]],[[4052,4061,4047]],[[4325,4081,4268]],[[4082,4274,4266]],[[4273,4325,4270]],[[4269,3963,4270]],[[4270,4325,4268]],[[4273,4272,4325]],[[4268,4083,4266]],[[4268,4081,4083]],[[4202,4282,4212]],[[4198,4237,4282]],[[4200,4202,4212]],[[4201,4167,4202]],[[3991,4183,4206]],[[3991,3993,4183]],[[4035,4041,4033]],[[4330,4318,4041]],[[4236,4204,3989]],[[4291,4287,4204]],[[4288,4271,4289]],[[4289,4321,4332]],[[4311,4333,4312]],[[4329,4317,4333]],[[4209,4203,4207]],[[4230,4161,4173]],[[4082,4265,4275]],[[4265,4301,4284]],[[4301,4265,4081]],[[4284,4275,4265]],[[4172,4232,4170]],[[4231,4205,4233]],[[4234,4232,4147]],[[4231,4233,4232]],[[4007,4234,4147]],[[4007,4178,4234]],[[4181,4255,4220]],[[4181,4243,4255]],[[4045,4055,4057]],[[4326,4327,4055]],[[4328,4059,4334]],[[4024,4308,4028]],[[4047,4328,4048]],[[4334,4056,4320]],[[4328,4024,4059]],[[4061,4064,4024]],[[4311,4319,4329]],[[4046,4307,4319]],[[4252,4030,4323]],[[4252,4240,4030]],[[4279,4192,4075]],[[4249,4193,4192]],[[4046,4312,4042]],[[4315,4309,4037]],[[4036,4315,4037]],[[4335,4314,4315]],[[4040,4316,4041]],[[4335,4315,4036]],[[4223,4076,4224]],[[4271,3964,4321]],[[4336,4313,4042]],[[4336,4036,4038]],[[4204,4287,3996]],[[4291,4285,4287]],[[4231,4178,4177]],[[4231,4234,4178]],[[4306,4327,4045]],[[4306,4047,4327]],[[4041,4316,4330]],[[4312,4036,4336]],[[4035,4039,4041]],[[4331,4335,4312]],[[4063,4061,4065]],[[4314,4035,4061]],[[4324,4043,4306]],[[4324,4044,4043]],[[4073,4194,4260]],[[4075,4192,4194]],[[4042,4312,4336]],[[4333,4317,4312]],[[4205,4230,4173]],[[4205,4231,4230]],[[4174,4173,4150]],[[4009,3996,4173]],[[4165,4174,4169]],[[4165,4209,4174]],[[4175,4207,4170]],[[4174,4209,4207]],[[4331,4040,4039]],[[4312,4317,4040]],[[4271,4321,4289]],[[3964,4253,4321]],[[4252,4323,4253]],[[4321,4253,4323]],[[4261,4267,4032]],[[4321,4323,4267]],[[4327,4299,4045]],[[4327,4326,4299]],[[4228,4263,4229]],[[4297,4272,4263]],[[4169,4199,4167]],[[4169,4150,4199]],[[4194,4073,4075]],[[4225,4074,4073]],[[4335,4331,4035]],[[4312,4040,4331]],[[4145,4163,4146]],[[4208,4006,4163]],[[4158,4239,4226]],[[4158,4249,4239]],[[4160,4162,4145]],[[4160,4161,4162]],[[4312,4335,4036]],[[4035,4314,4335]],[[4009,3988,3990]],[[4145,4147,3988]],[[4051,4314,4061]],[[4051,4309,4314]],[[4319,4311,4046]],[[4329,4333,4311]],[[4249,4271,4076]],[[4249,4068,4271]],[[4061,4328,4047]],[[4061,4024,4328]],[[4147,4164,4200]],[[4171,4203,4164]],[[4174,4150,4169]],[[4173,3996,4150]],[[3969,4210,4186]],[[4185,4154,4210]],[[4245,4179,4211]],[[3997,4242,4179]],[[4304,4038,4037]],[[4313,4336,4038]],[[4310,4337,4050]],[[4337,4313,4304]],[[4328,4334,4320]],[[4059,4056,4334]],[[4159,4195,4225]],[[4159,4196,4195]],[[4004,4152,4151]],[[4004,4003,4152]],[[4032,4264,4270]],[[4032,4031,4264]],[[4305,4310,4052]],[[4337,4304,4050]],[[4153,3984,3972]],[[3987,3986,3984]],[[4043,4305,4306]],[[4043,4042,4305]],[[4243,4190,3992]],[[4181,4191,4190]],[[4042,4337,4310]],[[4042,4313,4337]],[[4187,4246,4219]],[[4187,4000,4298]],[[4187,4298,4246]],[[4220,4211,4298]],[[4266,4269,4268]],[[4266,4274,4269]],[[3969,4186,3970]],[[4210,4154,4186]],[[4303,4302,4295]],[[4303,3985,4302]],[[4195,4197,4225]],[[4196,4226,4197]],[[4208,4176,4006]],[[4161,4230,4176]],[[4227,4252,4254]],[[4227,4240,4252]],[[4332,4261,4289]],[[4332,4321,4261]],[[4069,4278,4277]],[[4069,4068,4278]],[[4069,4259,4075]],[[4069,4277,4259]],[[4146,4005,4147]],[[4146,4163,4005]],[[4078,4087,3962]],[[3964,4079,3962]],[[4338,4087,4078]],[[4339,3964,3962]],[[4340,3978,3983]],[[3978,3974,3971]],[[4339,3961,3964]],[[4339,3962,3961]],[[3979,3977,4341]],[[3976,3974,4341]],[[3975,3977,4340]],[[3976,4341,3977]],[[3983,3978,3971]],[[4340,3977,3979]],[[3974,3979,4341]],[[3978,4340,3979]],[[4338,4078,4089]],[[3962,4079,4078]],[[4014,4012,3981]],[[4014,3965,4012]],[[4008,3967,3966]],[[3990,3981,3967]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c1659af-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe75149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:22.000"},"geometry":[{"boundaries":[[[4342,4343,4344]],[[4345,4346,4342]],[[4345,4342,4344]],[[4344,4343,4347]],[[4347,4343,4348]],[[4349,4350,4346]],[[4346,4351,4342]],[[4346,4352,4351]],[[4346,4353,4352]],[[4346,4354,4353]],[[4346,4355,4354]],[[4346,4350,4355]],[[4349,4356,4350]],[[4357,4358,4359]],[[4349,4360,4356]],[[4361,4362,4363]],[[4364,4365,4360]],[[4366,4367,4368]],[[4369,4370,4365]],[[4371,4372,4373]],[[4374,4375,4376]],[[4376,4377,4378]],[[4379,4380,4362]],[[4381,4382,4383]],[[4384,4385,4386]],[[4387,4388,4389]],[[4390,4391,4392]],[[4393,4394,4395]],[[4396,4397,4398]],[[4396,4399,4400]],[[4401,4402,4403]],[[4400,4404,4370]],[[4368,4405,4406]],[[4399,4396,4406]],[[4407,4408,4382]],[[4409,4410,4411]],[[4412,4413,4414]],[[4369,4349,4413]],[[4415,4416,4417]],[[4367,4416,4368]],[[4415,4418,4414]],[[4416,4349,4368]],[[4419,4372,4420]],[[4421,4422,4423]],[[4424,4372,4371]],[[4425,4426,4427]],[[4428,4429,4430]],[[4431,4426,4403]],[[4432,4433,4434]],[[4426,4435,4427]],[[4374,4436,4375]],[[4436,4437,4438]],[[4427,4435,4439]],[[4435,4426,4431]],[[4414,4418,4370]],[[4415,4413,4416]],[[4440,4401,4374]],[[4437,4426,4425]],[[4377,4376,4375]],[[4375,4436,4438]],[[4397,4396,4400]],[[4373,4441,4442]],[[4418,4443,4370]],[[4398,4366,4396]],[[4349,4444,4445]],[[4430,4411,4403]],[[4438,4446,4434]],[[4435,4431,4439]],[[4447,4448,4387]],[[4449,4358,4450]],[[4451,4440,4374]],[[4375,4438,4433]],[[4433,4452,4377]],[[4375,4433,4377]],[[4442,4371,4373]],[[4420,4429,4428]],[[4453,4451,4376]],[[4454,4455,4456]],[[4428,4430,4403]],[[4457,4349,4458]],[[4459,4460,4429]],[[4461,4462,4349]],[[4463,4389,4388]],[[4464,4465,4466]],[[4368,4371,4405]],[[4371,4445,4424]],[[4409,4460,4467]],[[4468,4469,4390]],[[4406,4396,4366]],[[4405,4371,4399]],[[4374,4401,4436]],[[4403,4426,4437]],[[4357,4447,4470]],[[4471,4472,4340]],[[4401,4440,4402]],[[4473,4474,4444]],[[4372,4473,4420]],[[4372,4424,4473]],[[4376,4451,4374]],[[4402,4428,4403]],[[4455,4451,4453]],[[4428,4454,4420]],[[4404,4456,4453]],[[4404,4441,4475]],[[4445,4444,4474]],[[4349,4460,4461]],[[4359,4449,4388]],[[4476,4477,4478]],[[4479,4450,4480]],[[4481,4482,4463]],[[4438,4425,4446]],[[4438,4437,4425]],[[4366,4398,4367]],[[4443,4418,4415]],[[4483,4484,4485]],[[4486,4480,4358]],[[4388,4387,4448]],[[4389,4487,4387]],[[4486,4479,4480]],[[4488,4489,4490]],[[4491,4449,4450]],[[4479,4486,4492]],[[4357,4486,4358]],[[4493,4494,4495]],[[4496,4497,4498]],[[4499,4500,4498]],[[4417,4416,4367]],[[4413,4349,4416]],[[4442,4441,4404]],[[4373,4372,4475]],[[4370,4369,4414]],[[4414,4369,4412]],[[4501,4502,4503]],[[4504,4505,4506]],[[4448,4359,4388]],[[4480,4450,4358]],[[4507,4432,4434]],[[4508,4509,4510]],[[4463,4511,4481]],[[4472,3975,4340]],[[4512,4340,4482]],[[4513,4495,4494]],[[4481,4511,4449]],[[4463,4388,4449]],[[4491,4481,4449]],[[4511,4463,4449]],[[4437,4401,4403]],[[4437,4436,4401]],[[4427,4446,4425]],[[4431,4403,4411]],[[4479,4493,4450]],[[4514,4515,3975]],[[4450,4493,4495]],[[4516,4500,4517]],[[4489,4495,4513]],[[4493,4479,4492]],[[4368,4445,4371]],[[4474,4473,4424]],[[4368,4406,4366]],[[4405,4399,4406]],[[4463,4487,4389]],[[4340,4477,4487]],[[4512,4471,4340]],[[4518,4519,4471]],[[4518,4512,4519]],[[4482,4487,4463]],[[4471,4512,4518]],[[4482,4481,4491]],[[4442,4399,4371]],[[4442,4400,4399]],[[4451,4402,4440]],[[4451,4455,4402]],[[4454,4419,4420]],[[4520,4462,4461]],[[4424,4445,4474]],[[4368,4349,4445]],[[4413,4415,4414]],[[4417,4443,4415]],[[4449,4359,4358]],[[4448,4447,4357]],[[4446,4521,4434]],[[4522,4439,4431]],[[4523,4524,4525]],[[4526,4527,4528]],[[4443,4397,4370]],[[4442,4404,4400]],[[4370,4397,4400]],[[4443,4417,4397]],[[4529,4530,4531]],[[4496,4499,4497]],[[4532,4533,4534]],[[4535,4536,4537]],[[4538,4539,4540]],[[4541,4542,4543]],[[4544,4545,4546]],[[4547,4548,4549]],[[4550,4551,4552]],[[4553,4554,4395]],[[4555,4510,4556]],[[4557,4558,4559]],[[4560,4550,4561]],[[4408,4562,4361]],[[4523,4361,4363]],[[4563,4548,4547]],[[4509,4564,4565]],[[4392,4391,4566]],[[4567,4509,4565]],[[4411,4522,4431]],[[4568,4569,4570]],[[4468,4392,4571]],[[4363,4572,4523]],[[4523,4572,4524]],[[4573,4574,4565]],[[4575,4521,4446]],[[4556,4510,4567]],[[4576,4577,4421]],[[4510,4509,4567]],[[4508,4578,4577]],[[4421,4423,4564]],[[4579,4580,4581]],[[4582,4583,4584]],[[4585,4586,4386]],[[4531,4587,4588]],[[4386,4586,4589]],[[4590,4591,4543]],[[4534,4592,4532]],[[4593,4594,4595]],[[4596,4589,4586]],[[4564,4423,4597]],[[4566,4598,4362]],[[4580,4423,4581]],[[4599,4600,4580]],[[4380,4566,4362]],[[4391,4601,4602]],[[4574,4469,4603]],[[4565,4564,4597]],[[4604,4597,4600]],[[4521,4605,4507]],[[4605,4422,4507]],[[4601,4606,4607]],[[4429,4460,4409]],[[4522,4608,4439]],[[4598,4609,4363]],[[4610,4590,4611]],[[4609,4602,4612]],[[4613,4614,4615]],[[4525,4524,4614]],[[4616,4586,4585]],[[4608,4617,4618]],[[4363,4612,4572]],[[4612,4524,4572]],[[4619,4620,4534]],[[4541,4621,4622]],[[4623,4624,4625]],[[4362,4598,4363]],[[4626,4391,4602]],[[4627,4628,4623]],[[4629,4630,4631]],[[4632,4559,4525]],[[4523,4558,4361]],[[4621,4594,4620]],[[4536,4484,4633]],[[4634,4635,4636]],[[4385,4585,4386]],[[4637,4638,4639]],[[4385,4640,4641]],[[4362,4562,4379]],[[4642,4643,4644]],[[4601,4645,4606]],[[4469,4574,4573]],[[4377,4452,4378]],[[4646,4507,4422]],[[4612,4614,4524]],[[4584,4647,4582]],[[4648,4594,4591]],[[4649,4650,4651]],[[4652,4653,4579]],[[4654,4655,4606]],[[4656,4384,4386]],[[4628,4627,4532]],[[4640,4657,4588]],[[4386,4589,4656]],[[4658,4464,4384]],[[4659,4529,4660]],[[4466,4661,4464]],[[4637,4662,4660]],[[4663,4664,4656]],[[4665,4657,4385]],[[4648,4591,4590]],[[4594,4621,4591]],[[4609,4612,4363]],[[4648,4614,4612]],[[4666,4667,4668]],[[4669,4648,4610]],[[4670,4671,4672]],[[4548,4673,4549]],[[4674,4675,4526]],[[4676,4610,4611]],[[4540,4677,4678]],[[4679,4680,4681]],[[4682,4539,4683]],[[4684,4685,4686]],[[4667,4526,4668]],[[4528,4683,4687]],[[4688,4675,4674]],[[4526,4528,4674]],[[4561,4689,4560]],[[4668,4526,4689]],[[4690,4560,4688]],[[4688,4674,4691]],[[4527,4682,4683]],[[4538,4634,4686]],[[4686,4685,4538]],[[4687,4674,4528]],[[4539,4538,4685]],[[4635,4659,4636]],[[4527,4683,4528]],[[4539,4685,4683]],[[4529,4531,4660]],[[4692,4532,4531]],[[4693,4694,4530]],[[4624,4592,4593]],[[4693,4677,4694]],[[4695,4611,4696]],[[4538,4540,4678]],[[4697,4540,4539]],[[4574,4556,4567]],[[4698,4452,4432]],[[4699,4676,4611]],[[4668,4689,4700]],[[4701,4702,4703]],[[4537,4633,4663]],[[4651,4704,4484]],[[4705,4706,4476]],[[4650,4707,4708]],[[4709,4499,4496]],[[4704,4485,4484]],[[4702,4483,4485]],[[4710,4711,4702]],[[4663,4589,4537]],[[4514,4506,4505]],[[4712,4713,4492]],[[4657,4660,4588]],[[4660,4531,4588]],[[4384,4665,4385]],[[4588,4587,4640]],[[4552,4714,4382]],[[4552,4715,4716]],[[4656,4658,4384]],[[4478,4717,4476]],[[4656,4664,4658]],[[4710,4702,4718]],[[4665,4464,4661]],[[4658,4664,4719]],[[4720,4721,4722]],[[4702,4485,4703]],[[4723,4503,4701]],[[4724,4722,4721]],[[4387,4720,4447]],[[4701,4703,4723]],[[4357,4496,4486]],[[4704,4723,4703]],[[4704,4725,4723]],[[4726,4727,4728]],[[4725,4729,4726]],[[4728,4730,4731]],[[4516,4732,4500]],[[4731,4709,4733]],[[4734,4735,4556]],[[4644,4736,4642]],[[4603,4734,4556]],[[4735,4644,4555]],[[4556,4735,4555]],[[4546,4545,4736]],[[4731,4737,4728]],[[4627,4623,4585]],[[4728,4737,4726]],[[4470,4709,4496]],[[4707,4727,4729]],[[4727,4738,4739]],[[4729,4708,4707]],[[4596,4535,4537]],[[4658,4719,4465]],[[4705,4710,4718]],[[4740,4741,4618]],[[4581,4423,4422]],[[4741,4575,4618]],[[4521,4507,4434]],[[4740,4605,4741]],[[4581,4422,4605]],[[4740,4581,4605]],[[4579,4653,4599]],[[4742,4634,4636]],[[4538,4678,4634]],[[4678,4635,4634]],[[4678,4693,4529]],[[4510,4743,4508]],[[4393,4453,4378]],[[4378,4698,4577]],[[4432,4507,4698]],[[4618,4617,4744]],[[4604,4654,4645]],[[4745,4522,4410]],[[4655,4607,4606]],[[4740,4579,4581]],[[4740,4652,4579]],[[4590,4543,4542]],[[4591,4621,4543]],[[4635,4529,4659]],[[4635,4678,4529]],[[4685,4684,4683]],[[4691,4674,4687]],[[4746,4491,4450]],[[4519,4512,4491]],[[4618,4744,4740]],[[4744,4458,4652]],[[4592,4534,4620]],[[4694,4695,4747]],[[4529,4693,4530]],[[4678,4677,4693]],[[4434,4433,4438]],[[4432,4452,4433]],[[4394,4577,4578]],[[4646,4422,4421]],[[4689,4675,4560]],[[4689,4526,4675]],[[4655,4599,4653]],[[4580,4597,4423]],[[4748,4749,4631]],[[4750,4751,4707]],[[4623,4625,4752]],[[4536,4753,4649]],[[4641,4627,4585]],[[4592,4620,4593]],[[4743,4644,4554]],[[4570,4545,4754]],[[4735,4736,4644]],[[4735,4734,4546]],[[4545,4755,4736]],[[4756,4757,4643]],[[4756,4755,4545]],[[4642,4736,4755]],[[4570,4756,4545]],[[4642,4755,4756]],[[4735,4546,4736]],[[4571,4380,4544]],[[4599,4654,4600]],[[4604,4573,4597]],[[4599,4655,4654]],[[4573,4565,4597]],[[4503,4724,4701]],[[4758,4487,4477]],[[4759,4720,4722]],[[4760,4487,4758]],[[4701,4718,4702]],[[4701,4724,4718]],[[4720,4759,4447]],[[4733,4737,4731]],[[4739,4761,4730]],[[4762,4515,4732]],[[4542,4696,4611]],[[4694,4677,4695]],[[4763,4764,4765]],[[4766,4712,4492]],[[4517,4730,4516]],[[4761,4762,4732]],[[4662,4639,4767]],[[4768,4742,4636]],[[4470,4733,4709]],[[4731,4517,4709]],[[4749,4750,4650]],[[4650,4750,4707]],[[4456,4419,4454]],[[4475,4372,4419]],[[4402,4454,4428]],[[4402,4455,4454]],[[4483,4633,4484]],[[4483,4711,4769]],[[4658,4465,4464]],[[4466,4465,4478]],[[4770,4407,4714]],[[4568,4570,4754]],[[4771,4700,4563]],[[4557,4383,4558]],[[4679,4551,4772]],[[4552,4382,4381]],[[4715,4551,4679]],[[4772,4550,4773]],[[4694,4533,4530]],[[4694,4747,4533]],[[4530,4692,4531]],[[4530,4533,4692]],[[4531,4532,4587]],[[4692,4533,4532]],[[4690,4688,4691]],[[4560,4675,4688]],[[4549,4673,4583]],[[4548,4559,4632]],[[4774,4775,4472]],[[4519,4746,4488]],[[4556,4574,4603]],[[4567,4565,4574]],[[4652,4458,4653]],[[4653,4458,4655]],[[4770,4568,4754]],[[4714,4552,4716]],[[4776,4647,4669]],[[4583,4673,4615]],[[4719,4717,4465]],[[4719,4664,4777]],[[4719,4777,4778]],[[4769,4663,4633]],[[4385,4657,4640]],[[4661,4779,4639]],[[4575,4608,4618]],[[4575,4427,4608]],[[4716,4715,4681]],[[4552,4551,4715]],[[4569,4716,4681]],[[4568,4714,4716]],[[4478,4779,4466]],[[4660,4662,4659]],[[4768,4639,4779]],[[4662,4636,4659]],[[4657,4637,4660]],[[4638,4661,4639]],[[4661,4466,4779]],[[4465,4717,4478]],[[4381,4383,4780]],[[4408,4361,4558]],[[4563,4557,4548]],[[4383,4408,4558]],[[4781,4557,4563]],[[4780,4383,4557]],[[4768,4478,4477]],[[4768,4779,4478]],[[4629,4631,4535]],[[4749,4650,4649]],[[4680,4686,4742]],[[4782,4691,4687]],[[4676,4671,4776]],[[4783,4549,4582]],[[4468,4390,4392]],[[4469,4645,4601]],[[4762,4648,4458]],[[4762,4594,4648]],[[4607,4602,4601]],[[4648,4612,4602]],[[4762,4458,4349]],[[4648,4602,4458]],[[4740,4744,4652]],[[4617,4458,4744]],[[4617,4522,4745]],[[4460,4349,4467]],[[4385,4641,4585]],[[4640,4587,4641]],[[4491,4746,4519]],[[4450,4495,4746]],[[4508,4553,4578]],[[4554,4453,4393]],[[4444,4462,4473]],[[4444,4349,4462]],[[4420,4459,4429]],[[4520,4473,4462]],[[4420,4520,4459]],[[4420,4473,4520]],[[4515,4784,4732]],[[4498,4497,4499]],[[4492,4498,4766]],[[4486,4496,4498]],[[4698,4646,4577]],[[4698,4507,4646]],[[4464,4665,4384]],[[4661,4638,4665]],[[4472,4785,4786]],[[4787,4774,4488]],[[4788,4774,4787]],[[4746,4495,4489]],[[4620,4622,4621]],[[4696,4542,4541]],[[4490,4489,4506]],[[4488,4746,4489]],[[4789,4490,4506]],[[4789,4787,4490]],[[4781,4700,4561]],[[4563,4547,4771]],[[4666,4771,4547]],[[4668,4700,4771]],[[4608,4427,4439]],[[4575,4446,4427]],[[4456,4475,4419]],[[4441,4373,4475]],[[4768,4767,4639]],[[4768,4636,4767]],[[4724,4721,4790]],[[4720,4387,4760]],[[4645,4573,4604]],[[4645,4469,4573]],[[4722,4502,4759]],[[4503,4723,4501]],[[4748,4631,4630]],[[4749,4753,4631]],[[4506,4713,4504]],[[4492,4494,4493]],[[4468,4734,4603]],[[4571,4546,4734]],[[4615,4584,4583]],[[4648,4669,4584]],[[4376,4378,4453]],[[4452,4698,4378]],[[4394,4393,4378]],[[4395,4554,4393]],[[4791,4504,4712]],[[4513,4494,4713]],[[4390,4601,4391]],[[4390,4469,4601]],[[4684,4782,4687]],[[4680,4690,4691]],[[4765,4789,4506]],[[4788,4775,4774]],[[4514,4763,4765]],[[4764,4785,4788]],[[4786,4792,4763]],[[4786,4785,4792]],[[4509,4576,4564]],[[4577,4646,4421]],[[4561,4550,4780]],[[4560,4773,4550]],[[4550,4381,4780]],[[4550,4552,4381]],[[4519,4774,4471]],[[4519,4488,4774]],[[4599,4580,4579]],[[4600,4597,4580]],[[4514,4765,4506]],[[4763,4792,4764]],[[4726,4501,4725]],[[4737,4502,4501]],[[4723,4725,4501]],[[4708,4729,4725]],[[4727,4726,4729]],[[4737,4501,4726]],[[4502,4733,4759]],[[4502,4737,4733]],[[4382,4408,4383]],[[4382,4714,4407]],[[4747,4619,4533]],[[4619,4622,4620]],[[4776,4669,4610]],[[4647,4584,4669]],[[4484,4536,4651]],[[4753,4749,4649]],[[4554,4643,4681]],[[4643,4642,4756]],[[4716,4569,4568]],[[4757,4756,4570]],[[4506,4513,4713]],[[4506,4489,4513]],[[4757,4569,4681]],[[4757,4570,4569]],[[4762,4748,4594]],[[4750,4749,4748]],[[4762,4738,4748]],[[4751,4727,4707]],[[4759,4470,4447]],[[4759,4733,4470]],[[4448,4357,4359]],[[4470,4496,4357]],[[4793,4705,4476]],[[4790,4721,4758]],[[4718,4706,4705]],[[4721,4720,4760]],[[4616,4629,4596]],[[4631,4753,4535]],[[4636,4662,4767]],[[4637,4639,4662]],[[4576,4508,4577]],[[4510,4555,4743]],[[4673,4613,4615]],[[4525,4614,4613]],[[4763,4514,3975]],[[4515,4762,3975]],[[4621,4541,4543]],[[4622,4696,4541]],[[4577,4394,4378]],[[4578,4395,4394]],[[4794,4758,4477]],[[4706,4790,4758]],[[4721,4760,4758]],[[4387,4487,4760]],[[4722,4503,4502]],[[4722,4724,4503]],[[4719,4778,4717]],[[4711,4483,4702]],[[4613,4632,4525]],[[4548,4557,4559]],[[4673,4632,4613]],[[4673,4548,4632]],[[4667,4672,4527]],[[4540,4697,4677]],[[4526,4667,4527]],[[4666,4547,4783]],[[4533,4619,4534]],[[4747,4622,4619]],[[4566,4626,4598]],[[4566,4391,4626]],[[4453,4456,4455]],[[4404,4475,4456]],[[4512,4482,4491]],[[4340,4487,4482]],[[4680,4742,4768]],[[4686,4634,4742]],[[4747,4696,4622]],[[4747,4695,4696]],[[4793,4476,4717]],[[4706,4794,4476]],[[4611,4590,4542]],[[4610,4648,4590]],[[4784,4515,4791]],[[4712,4784,4791]],[[4568,4770,4714]],[[4380,4571,4392]],[[4417,4398,4397]],[[4417,4367,4398]],[[4505,4515,4514]],[[4505,4791,4515]],[[4766,4784,4712]],[[4766,4498,4500]],[[4583,4582,4549]],[[4647,4776,4582]],[[4498,4492,4486]],[[4713,4494,4492]],[[3975,4786,4763]],[[3975,4472,4786]],[[4695,4697,4699]],[[4682,4527,4672]],[[4670,4672,4667]],[[4795,4682,4672]],[[4704,4708,4725]],[[4651,4650,4708]],[[4784,4500,4732]],[[4784,4766,4500]],[[4748,4595,4594]],[[4625,4630,4752]],[[4748,4625,4595]],[[4748,4630,4625]],[[4727,4739,4728]],[[4761,4732,4516]],[[4499,4517,4500]],[[4730,4761,4516]],[[4709,4517,4499]],[[4731,4730,4517]],[[4683,4684,4687]],[[4782,4680,4691]],[[4686,4782,4684]],[[4686,4680,4782]],[[4361,4562,4362]],[[4408,4407,4562]],[[4778,4793,4717]],[[4778,4710,4793]],[[4715,4679,4681]],[[4773,4680,4679]],[[4379,4796,4380]],[[4754,4545,4544]],[[4571,4544,4546]],[[4796,4754,4544]],[[4549,4783,4547]],[[4783,4776,4671]],[[4667,4666,4670]],[[4668,4771,4666]],[[4793,4710,4705]],[[4778,4777,4711]],[[4778,4711,4710]],[[4777,4664,4769]],[[4682,4697,4539]],[[4682,4795,4697]],[[4490,4787,4488]],[[4788,4785,4775]],[[4789,4788,4787]],[[4789,4764,4788]],[[4679,4772,4773]],[[4551,4550,4772]],[[4485,4704,4703]],[[4651,4708,4704]],[[4559,4523,4525]],[[4559,4558,4523]],[[4738,4751,4750]],[[4738,4761,4739]],[[4753,4536,4535]],[[4649,4651,4536]],[[4645,4654,4606]],[[4604,4600,4654]],[[4564,4576,4421]],[[4509,4508,4576]],[[4566,4380,4392]],[[4796,4544,4380]],[[4508,4743,4553]],[[4555,4644,4743]],[[4578,4553,4395]],[[4743,4554,4553]],[[4699,4697,4795]],[[4695,4677,4697]],[[4734,4468,4571]],[[4603,4469,4468]],[[4728,4739,4730]],[[4727,4751,4738]],[[4648,4615,4614]],[[4648,4584,4615]],[[4672,4671,4795]],[[4670,4783,4671]],[[4781,4561,4780]],[[4700,4689,4561]],[[4774,4472,4471]],[[4775,4785,4472]],[[4349,4369,4360]],[[4413,4412,4369]],[[4718,4790,4706]],[[4718,4724,4790]],[[4741,4521,4575]],[[4741,4605,4521]],[[4557,4781,4780]],[[4563,4700,4781]],[[4586,4616,4596]],[[4752,4630,4616]],[[4596,4629,4535]],[[4616,4630,4629]],[[4712,4504,4713]],[[4791,4505,4504]],[[4624,4628,4592]],[[4532,4592,4628]],[[4587,4627,4641]],[[4587,4532,4627]],[[4616,4623,4752]],[[4616,4585,4623]],[[4626,4609,4598]],[[4626,4602,4609]],[[4409,4457,4410]],[[4617,4608,4522]],[[4797,4745,4457]],[[4409,4411,4430]],[[4773,4690,4680]],[[4773,4560,4690]],[[4695,4699,4611]],[[4795,4671,4676]],[[4797,4457,4458]],[[4467,4349,4457]],[[4476,4794,4477]],[[4706,4758,4794]],[[4748,4738,4750]],[[4762,4761,4738]],[[4407,4379,4562]],[[4407,4770,4379]],[[4458,4607,4655]],[[4458,4602,4607]],[[4369,4364,4360]],[[4369,4365,4364]],[[4596,4537,4589]],[[4536,4633,4537]],[[4625,4624,4595]],[[4623,4628,4624]],[[4745,4410,4457]],[[4522,4411,4410]],[[4429,4409,4430]],[[4467,4457,4409]],[[4459,4461,4460]],[[4459,4520,4461]],[[4681,4643,4757]],[[4554,4644,4643]],[[4624,4593,4595]],[[4620,4594,4593]],[[4617,4797,4458]],[[4617,4745,4797]],[[4610,4676,4776]],[[4699,4795,4676]],[[4483,4769,4633]],[[4656,4589,4663]],[[4777,4769,4711]],[[4664,4663,4769]],[[4657,4638,4637]],[[4657,4665,4638]],[[4765,4764,4789]],[[4792,4785,4764]],[[4776,4783,4582]],[[4670,4666,4783]],[[4796,4770,4754]],[[4796,4379,4770]],[[4798,4345,4344]],[[4347,4798,4344]],[[4799,4347,4348]],[[4800,4365,4370]],[[4404,4800,4370]],[[4801,4453,4554]],[[4681,4801,4554]],[[4802,4681,4680]],[[4768,4802,4680]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c16cf36-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:22.000"},"geometry":[{"boundaries":[[[4803,4804,4805]],[[4806,4807,4808]],[[4809,4810,4811]],[[4812,4813,4810]],[[4810,4814,4815]],[[4816,4817,4814]],[[4818,4819,4816]],[[4820,4821,4818]],[[4822,4823,4824]],[[4825,4826,4820]],[[4827,4828,4829]],[[4830,4831,4832]],[[4828,4833,4834]],[[4831,4835,4836]],[[4837,4831,4838]],[[4836,4825,4831]],[[4839,4840,4841]],[[4839,4842,4840]],[[4839,4843,4842]],[[4844,4845,4839]],[[4846,4847,4848]],[[4839,4849,4844]],[[4850,4849,4839]],[[4851,4852,4849]],[[4853,4854,4850]],[[4855,4853,4850]],[[4848,4855,4850]],[[4848,4856,4855]],[[4857,4858,4848]],[[4846,4859,4860]],[[4861,4862,4848]],[[4863,4846,4860]],[[4864,4865,4847]],[[4866,4864,4847]],[[4848,4867,4846]],[[4868,4869,4866]],[[4870,4871,4868]],[[4872,4870,4868]],[[4872,4873,4870]],[[4874,4875,4872]],[[4874,4876,4875]],[[4877,4878,4879]],[[4879,4878,4880]],[[4880,4878,4881]],[[4882,4880,4881]],[[4866,4883,4864]],[[4884,4885,4886]],[[4887,4888,4889]],[[4890,4891,4892]],[[4893,4894,4895]],[[4896,4885,4884]],[[4884,4897,4898]],[[4899,4900,4901]],[[4902,4903,4904]],[[4905,4906,4907]],[[4908,4909,4910]],[[4911,4912,4904]],[[4907,4913,4914]],[[4908,4915,4916]],[[4917,4918,4919]],[[4920,4921,4922]],[[4923,4924,4919]],[[4913,4903,4902]],[[4925,4890,4926]],[[4927,4928,4889]],[[4902,4929,4913]],[[4930,4931,4932]],[[4933,4934,4935]],[[4936,4937,4938]],[[4923,4919,4939]],[[4940,4941,4942]],[[4936,4943,4937]],[[4878,4944,4945]],[[4946,4947,4941]],[[4948,4949,4881]],[[4950,4874,4878]],[[4881,4945,4948]],[[4944,4874,4872]],[[4868,4951,4872]],[[4952,4944,4951]],[[4953,4951,4954]],[[4868,4871,4869]],[[4846,4863,4847]],[[4862,4857,4848]],[[4847,4861,4848]],[[4955,4956,4957]],[[4958,4959,4841]],[[4960,4961,4962]],[[4963,4964,4965]],[[4966,4967,4968]],[[4820,4969,4827]],[[4970,4971,4972]],[[4973,4974,4975]],[[4820,4976,4821]],[[4977,4837,4978]],[[4979,4980,4981]],[[4982,4983,4984]],[[4985,4986,4827]],[[4987,4988,4989]],[[4990,4991,4830]],[[4992,4838,4833]],[[4993,4994,4995]],[[4994,4996,4997]],[[4998,4999,5000]],[[4836,5001,4825]],[[4824,5002,5003]],[[4822,4824,5003]],[[5004,4979,5005]],[[5005,5006,5004]],[[5007,5008,4972]],[[4969,5009,4827]],[[5010,5011,5012]],[[5013,5014,4980]],[[5005,5015,5006]],[[4824,5016,5017]],[[5018,5019,5020]],[[5021,5022,5023]],[[5024,5025,5026]],[[4831,4830,4835]],[[5027,5010,5028]],[[5029,5030,5031]],[[4830,5032,5033]],[[4838,4978,4837]],[[5034,5016,4824]],[[5035,5016,5034]],[[5036,5037,5029]],[[5038,4978,5039]],[[5000,4972,5030]],[[5040,4983,4989]],[[5041,4837,4977]],[[5030,5037,4998]],[[4998,5000,5030]],[[5042,4984,5031]],[[5038,5041,4977]],[[4984,4983,5029]],[[4988,4957,4990]],[[5043,5044,5045]],[[5046,5008,5026]],[[5047,5048,5049]],[[5050,5051,5052]],[[4999,5053,5054]],[[5055,5035,5056]],[[4823,5034,4824]],[[5054,5053,5035]],[[5015,5057,5058]],[[5046,5059,5008]],[[5041,4832,4837]],[[4830,4991,5060]],[[5061,5008,5007]],[[5006,5062,5063]],[[4823,4822,5000]],[[4972,5008,5030]],[[4970,4822,5064]],[[5065,5048,5019]],[[5066,4822,5003]],[[4970,5000,4822]],[[5067,5068,4983]],[[4998,5037,5068]],[[5069,5070,5071]],[[5052,5072,4804]],[[5073,5074,5075]],[[5076,5077,5078]],[[5052,5051,5072]],[[5079,5080,5081]],[[5082,5083,5072]],[[5084,5069,5077]],[[5049,4994,5047]],[[5072,5051,5082]],[[5085,5086,5087]],[[4810,4815,4811]],[[5085,5087,4969]],[[5088,4996,5089]],[[4803,5075,4804]],[[4803,5073,5075]],[[4984,5029,5031]],[[4983,5036,5029]],[[4994,4993,5090]],[[5078,5077,5091]],[[5020,5092,5090]],[[5019,5048,5092]],[[5090,5047,4994]],[[5092,5048,5047]],[[5093,5094,5095]],[[4811,4804,5072]],[[5096,4929,5097]],[[5098,4919,4918]],[[5066,5064,4822]],[[5099,4970,5064]],[[5100,5028,5101]],[[5053,4998,5068]],[[5102,5027,5028]],[[5017,5002,4824]],[[5103,4820,4826]],[[4986,4833,4828]],[[5104,5090,4993]],[[5092,5047,5090]],[[5105,5106,5107]],[[5108,4904,5109]],[[5110,5111,5112]],[[5113,5114,5115]],[[5116,5117,5118]],[[5119,5120,5121]],[[4838,4992,5122]],[[4833,4986,4992]],[[5123,5124,5125]],[[5126,4894,5127]],[[4995,5128,4993]],[[5129,5130,5131]],[[4813,4812,5128]],[[5076,5072,5083]],[[5049,4996,4994]],[[4813,5132,4810]],[[5098,5133,4943]],[[5134,5096,4886]],[[5032,4974,5135]],[[5136,4956,4974]],[[5064,4806,5099]],[[5137,5138,5139]],[[4807,5137,5139]],[[5019,5092,5020]],[[5139,5138,5140]],[[5137,5003,5138]],[[4820,4818,4969]],[[4819,4817,4816]],[[5041,4989,4990]],[[4988,4955,4957]],[[4956,5060,4991]],[[4956,5136,5060]],[[5059,5042,5031]],[[4982,4989,4983]],[[5141,5134,5142]],[[4895,4896,5143]],[[5068,5036,4983]],[[5068,5037,5036]],[[5031,5030,5008]],[[5029,5037,5030]],[[4911,4904,4903]],[[5144,4899,5145]],[[4901,4900,4912]],[[4898,5146,5147]],[[5148,5149,5145]],[[5109,4904,4900]],[[5099,4971,4970]],[[5099,5150,4971]],[[4829,4820,4827]],[[5103,4976,4820]],[[5151,5152,5049]],[[5153,5027,5102]],[[5154,5049,5048]],[[5101,5155,5156]],[[5157,5100,5158]],[[5154,5016,5158]],[[5156,5089,5101]],[[4997,5132,4813]],[[4929,4914,4913]],[[5117,5159,5118]],[[5160,5161,5119]],[[5162,4939,4919]],[[5163,5164,5165]],[[5165,5164,5166]],[[5141,5167,5134]],[[5160,4929,5167]],[[5168,5169,5170]],[[5171,5045,5172]],[[5026,5170,5173]],[[5169,5174,5024]],[[5080,5079,5018]],[[5019,5138,5003]],[[5091,5080,5175]],[[5020,5090,5131]],[[5018,5140,5019]],[[5176,5177,5139]],[[5138,5019,5140]],[[5003,5002,5065]],[[5090,5104,5129]],[[4993,5128,4812]],[[4993,5094,5104]],[[5178,4809,5095]],[[4886,5097,5179]],[[4886,5180,5142]],[[5143,4893,4895]],[[5112,5117,5180]],[[4990,4989,4988]],[[5040,5067,4983]],[[5181,5182,5183]],[[5184,5142,5185]],[[5131,5175,5080]],[[5177,4808,5139]],[[5078,5091,5175]],[[5081,4805,5079]],[[5186,5187,4893]],[[5159,5188,5189]],[[4896,4895,4885]],[[4894,5126,5190]],[[5080,5018,5020]],[[5139,4808,4807]],[[5045,5044,5172]],[[4987,4989,4982]],[[5097,4929,4902]],[[4914,5191,4907]],[[5077,5081,5091]],[[5077,5069,5081]],[[5192,5193,5120]],[[5192,5194,5193]],[[5195,5196,5197]],[[5198,5164,5163]],[[5078,5093,5076]],[[4809,4811,5072]],[[5173,5169,5024]],[[5199,5062,5200]],[[4806,4808,5099]],[[5201,4964,4963]],[[5099,4808,5150]],[[5202,4964,5203]],[[5079,5177,5176]],[[5079,4805,5177]],[[5023,5022,5204]],[[5168,5061,5205]],[[5026,5173,5024]],[[5170,5169,5173]],[[5200,5062,5206]],[[5170,5026,5061]],[[5017,5154,5048]],[[5100,5157,5102]],[[5155,5101,5028]],[[5089,5152,5151]],[[5207,5208,5192]],[[5207,5167,5141]],[[5123,5209,5124]],[[5125,5210,5211]],[[5212,5213,5214]],[[5214,5184,5185]],[[5215,5216,5217]],[[5218,5219,5220]],[[5075,5052,4804]],[[5075,5074,5050]],[[5075,5050,5052]],[[5074,5070,5082]],[[5097,4886,5096]],[[5112,5111,5159]],[[5085,4816,5086]],[[4819,4821,5221]],[[4901,4912,5222]],[[4900,4904,4912]],[[5223,5222,5224]],[[5223,4901,5222]],[[4995,4813,5128]],[[5086,4816,4810]],[[4809,4812,4810]],[[5094,4993,4812]],[[4994,4997,4995]],[[5049,5152,4996]],[[5112,5159,5117]],[[5213,5212,5225]],[[5042,5059,5171]],[[5031,5008,5059]],[[5149,5179,5108]],[[5097,4902,5108]],[[5145,5109,5144]],[[5108,4902,4904]],[[5032,5136,4974]],[[5032,5060,5136]],[[5226,5124,5209]],[[5220,5227,5228]],[[5229,5106,5230]],[[5105,5124,5226]],[[5225,5231,5232]],[[5233,5234,5232]],[[5235,5236,5230]],[[5114,4947,4946]],[[5237,5238,5239]],[[5240,5241,5209]],[[5239,5242,5237]],[[5241,5230,5226]],[[5237,5243,5238]],[[5244,5236,5235]],[[5245,5246,5217]],[[4942,5247,5238]],[[5248,5245,5217]],[[5249,5115,4946]],[[5250,5107,5106]],[[5251,5252,5210]],[[5253,5254,5255]],[[5207,5160,5167]],[[5194,5256,5193]],[[5257,5253,5258]],[[5254,5253,5257]],[[5259,5260,4920]],[[5184,5261,5207]],[[5183,5182,5194]],[[5261,5262,5208]],[[5183,5194,5263]],[[5081,5069,5264]],[[5077,5083,5084]],[[5082,5070,5083]],[[5070,5069,5084]],[[5083,5070,5084]],[[5074,5071,5070]],[[5154,5151,5049]],[[5089,5265,5088]],[[5089,4996,5152]],[[5088,5132,4997]],[[5149,4886,5179]],[[4885,5110,5112]],[[5140,5176,5139]],[[4805,4808,5177]],[[5266,4940,5243]],[[5267,5248,5268]],[[5122,5269,4978]],[[5056,5068,5067]],[[5038,5067,5040]],[[5039,5055,5056]],[[5041,5040,4989]],[[5041,5038,5040]],[[5046,5026,5025]],[[5008,5061,5026]],[[4942,5244,5247]],[[5270,5271,5272]],[[5111,5188,5159]],[[5211,5210,5252]],[[5118,5273,5212]],[[5231,5233,5232]],[[5118,5212,5116]],[[5214,5234,5261]],[[5273,5225,5212]],[[5232,5234,5213]],[[4970,4972,5000]],[[4971,5007,4972]],[[5274,5275,5276]],[[5160,5119,4914]],[[5142,5134,4886]],[[5167,5096,5134]],[[5124,5105,5210]],[[5277,5278,5252]],[[5187,5216,5218]],[[5219,5240,5220]],[[5279,5242,5239]],[[5242,5216,5243]],[[5147,5143,4884]],[[5280,5281,5282]],[[5283,4916,5284]],[[5285,5224,5286]],[[5287,5283,5284]],[[5288,5289,5253]],[[5282,5187,5186]],[[5127,4894,4893]],[[5290,5145,4899]],[[5290,5146,5291]],[[5034,5054,5035]],[[5034,4823,4999]],[[5190,5228,5188]],[[5227,5125,5211]],[[4915,4908,5292]],[[4916,5283,5293]],[[4916,4909,4908]],[[5294,5191,5295]],[[5296,5297,5197]],[[5298,5256,5194]],[[5299,5300,5301]],[[5298,5254,5256]],[[4887,5302,5301]],[[5255,5288,5253]],[[5303,5165,5166]],[[5304,4935,4934]],[[5305,5306,5307]],[[5308,5304,4934]],[[5307,5233,5231]],[[5278,5231,5225]],[[5309,5277,5251]],[[5233,5306,5182]],[[5181,5233,5182]],[[5306,5298,5182]],[[5263,5194,5310]],[[5182,5298,5194]],[[5255,5311,5288]],[[5312,4934,5313]],[[5250,5307,5314]],[[5250,5229,5113]],[[5305,5315,5311]],[[4934,5312,5308]],[[5255,5298,5306]],[[5255,5254,5298]],[[5311,5289,5288]],[[5316,5317,5318]],[[5258,5121,5193]],[[5295,5191,5119]],[[5319,4931,4907]],[[5312,5289,5311]],[[5094,5178,5095]],[[5094,4812,5178]],[[5110,5188,5111]],[[5110,5190,5188]],[[4886,5112,5180]],[[4886,4885,5112]],[[4978,5038,4977]],[[5039,5067,5038]],[[5041,4990,4832]],[[4830,5060,5032]],[[4957,4991,4990]],[[4957,4956,4991]],[[5181,5262,5261]],[[5208,5263,5310]],[[5320,4931,5319]],[[4903,4913,4907]],[[5131,5080,5020]],[[5091,5081,5080]],[[4920,5319,5295]],[[4907,5191,5294]],[[5292,4943,5321]],[[4933,5162,5322]],[[5095,4809,5072]],[[5178,4812,4809]],[[5018,5176,5140]],[[5018,5079,5176]],[[5133,5323,5321]],[[5284,4916,4915]],[[4887,4889,5302]],[[5255,5306,5311]],[[5305,5311,5306]],[[5308,5324,5304]],[[5325,4926,4890]],[[5326,5327,5328]],[[5024,5046,5025]],[[5024,5174,5046]],[[5109,5145,5149]],[[5329,5146,4897]],[[4886,5149,4884]],[[5329,5330,5291]],[[5189,5211,5118]],[[5278,5314,5231]],[[5331,5332,5224]],[[5286,4912,4911]],[[5113,5307,5250]],[[5306,5233,5307]],[[5088,4810,5132]],[[4816,4814,4810]],[[5010,4985,5009]],[[5087,5086,5265]],[[5153,5011,5027]],[[4992,4986,4985]],[[4985,5010,4992]],[[5155,5028,5010]],[[5016,5055,5102]],[[5011,5010,5027]],[[4838,5122,4978]],[[5012,5011,5153]],[[4992,5012,5122]],[[4992,5010,5012]],[[5172,5333,4987]],[[4982,4984,5042]],[[5292,4937,4943]],[[5334,5335,5317]],[[5336,5334,5317]],[[4910,4930,5337]],[[5338,5318,5335]],[[4910,4909,5339]],[[5063,5340,5004]],[[4808,4805,5341]],[[5086,5088,5265]],[[5086,4810,5088]],[[5342,5331,5274]],[[5133,5321,4943]],[[5098,4918,5287]],[[4918,4917,5343]],[[5210,5105,5309]],[[5250,5314,5309]],[[5309,5314,5277]],[[5307,5231,5314]],[[5252,5278,5273]],[[5277,5314,5278]],[[4942,4941,5244]],[[5344,5271,4941]],[[5117,5116,5185]],[[5184,5141,5142]],[[5234,5181,5261]],[[5183,5263,5262]],[[5233,5181,5234]],[[5183,5262,5181]],[[5259,5289,5260]],[[5311,5315,5312]],[[5289,5345,4921]],[[5345,5313,5338]],[[4920,4922,5346]],[[4922,5347,5348]],[[5294,5295,5319]],[[5348,5347,5338]],[[4922,4921,5347]],[[5260,5289,4921]],[[5056,5053,5068]],[[5054,5034,4999]],[[5294,5319,4907]],[[5339,5349,4910]],[[5350,5316,5318]],[[5351,4921,5345]],[[5352,5353,5354]],[[5355,5196,5163]],[[5123,5125,5227]],[[5124,5210,5125]],[[5035,5055,5016]],[[5153,5122,5012]],[[5344,5267,5268]],[[5248,5271,5268]],[[5042,5172,4982]],[[4955,4988,4987]],[[4890,5305,4891]],[[5324,4935,5304]],[[5350,4938,5316]],[[4937,5292,5336]],[[5196,5165,5354]],[[5356,4939,5162]],[[5246,5357,5217]],[[5246,5245,5266]],[[5357,5215,5217]],[[5243,4942,5238]],[[4834,4838,4831]],[[5001,4826,4825]],[[5326,5163,5195]],[[5296,5196,5358]],[[4971,5150,5007]],[[4808,5341,5061]],[[4995,4997,4813]],[[4996,5088,4997]],[[5118,5211,5273]],[[5359,5228,5211]],[[5209,5241,5226]],[[5230,5106,5226]],[[5346,4932,5319]],[[5348,5338,5337]],[[5247,5360,5241]],[[5236,5229,5230]],[[5163,5165,5355]],[[5303,5356,5353]],[[5258,5361,5121]],[[5260,4921,4920]],[[5319,4920,5346]],[[5361,5259,4920]],[[5361,5295,5121]],[[5361,4920,5295]],[[5126,5218,5220]],[[5219,5238,5241]],[[5239,5219,5218]],[[5239,5238,5219]],[[4937,5316,4938]],[[5312,5345,5289]],[[4937,5317,5316]],[[5335,5337,5338]],[[5214,5116,5212]],[[5185,5180,5117]],[[5362,5323,5098]],[[4917,4924,5275]],[[5287,5362,5098]],[[5323,4915,5321]],[[5098,5323,5133]],[[5362,4915,5323]],[[4884,5143,4896]],[[5363,5281,5280]],[[5064,5066,4806]],[[5003,5137,4807]],[[5184,5207,5141]],[[5208,5310,5192]],[[5213,5225,5232]],[[5273,5278,5225]],[[5322,5350,5313]],[[5317,5335,5318]],[[4907,4931,4905]],[[4906,4903,4907]],[[4930,5364,4931]],[[4911,4906,5364]],[[5364,4906,4905]],[[4911,4903,4906]],[[5234,5214,5213]],[[5261,5184,5214]],[[4900,5144,5109]],[[4900,4899,5144]],[[5218,5216,5242]],[[5215,5243,5216]],[[5333,4975,4987]],[[4974,4956,4975]],[[5357,5243,5215]],[[5357,5246,5266]],[[5016,5157,5158]],[[5102,5028,5100]],[[5365,5282,5281]],[[5366,5216,5282]],[[4893,5187,5127]],[[5282,5216,5187]],[[5149,5108,5109]],[[5179,5097,5108]],[[4933,5322,4934]],[[5162,4936,5322]],[[5338,5313,5318]],[[5322,4938,5350]],[[4915,5292,5321]],[[4908,4910,5336]],[[4937,5336,5317]],[[5292,4908,5336]],[[5187,5218,5127]],[[5279,5239,5218]],[[4807,5066,5003]],[[4807,4806,5066]],[[4932,5348,5337]],[[5347,5351,5338]],[[5346,5348,4932]],[[5346,4922,5348]],[[5154,5017,5016]],[[5048,5065,5017]],[[5359,5188,5228]],[[5189,5118,5159]],[[5333,4973,4975]],[[5135,4974,4973]],[[5217,5366,5281]],[[5217,5216,5366]],[[5366,5365,5281]],[[5366,5282,5365]],[[5073,5071,5074]],[[5264,5069,5071]],[[4805,5073,4803]],[[4805,5071,5073]],[[5211,5252,5273]],[[5251,5277,5252]],[[4932,5320,5319]],[[4932,5337,4930]],[[5106,5229,5250]],[[5236,5244,5114]],[[5236,5114,5113]],[[5244,4941,4947]],[[5207,5161,5160]],[[5119,5121,5295]],[[5207,5192,5367]],[[5193,5121,5120]],[[5367,5192,5120]],[[5310,5194,5192]],[[5210,5309,5251]],[[5107,5250,5309]],[[5368,5342,5276]],[[5293,4909,4916]],[[5274,5283,5287]],[[5369,5368,5224]],[[5119,5367,5120]],[[5161,5207,5367]],[[5085,4818,4816]],[[5085,4969,4818]],[[4895,5190,4885]],[[5190,5126,5220]],[[5322,5313,4934]],[[5350,5318,5313]],[[5257,5258,5193]],[[5253,5259,5258]],[[5357,5266,5243]],[[5245,5248,5267]],[[4914,5119,5191]],[[5161,5367,5119]],[[5150,5061,5007]],[[5150,4808,5061]],[[5244,4947,5114]],[[4941,5271,5270]],[[5261,5208,5207]],[[5262,5263,5208]],[[5218,5126,5127]],[[5220,5228,5190]],[[5305,5308,5315]],[[5305,5324,5308]],[[5342,5274,5276]],[[5287,4918,5274]],[[5325,5327,5370]],[[5326,5328,5371]],[[5370,5195,5197]],[[5355,5165,5196]],[[5106,5105,5226]],[[5107,5309,5105]],[[5322,4936,4938]],[[5162,4919,4936]],[[5372,5058,5057]],[[5373,5374,5206]],[[5169,5168,5204]],[[4980,5341,5013]],[[5000,4999,4823]],[[4998,5053,4999]],[[4905,4931,5364]],[[5320,4932,4931]],[[4890,5324,5305]],[[4890,4925,5324]],[[5274,5343,5275]],[[5274,4918,5343]],[[5375,5372,5057]],[[5058,5376,5373]],[[5274,5293,5283]],[[5349,4911,5364]],[[5050,5082,5051]],[[5050,5074,5082]],[[5214,5185,5116]],[[5142,5180,5185]],[[5147,5363,5143]],[[5147,5281,5363]],[[5016,5102,5157]],[[5055,5269,5153]],[[5130,5078,5175]],[[5076,5083,5077]],[[5256,5257,5193]],[[5256,5254,5257]],[[4832,4831,4837]],[[4834,4833,4838]],[[5090,5129,5131]],[[5104,5094,5129]],[[5299,5327,5300]],[[5299,5328,5327]],[[5151,5100,5101]],[[5154,5158,5100]],[[5006,5063,5004]],[[5021,5205,5063]],[[5205,5021,5023]],[[5063,5062,5021]],[[5204,5022,5169]],[[5021,5062,5022]],[[5327,5195,5370]],[[5377,5358,5378]],[[5039,5269,5055]],[[5039,4978,5269]],[[5342,5332,5331]],[[5368,5223,5224]],[[5293,5379,4909]],[[5286,5222,4912]],[[5331,5224,5285]],[[5332,5369,5224]],[[5380,5372,5375]],[[5135,5376,5372]],[[5003,5065,5019]],[[5002,5017,5065]],[[5378,4925,4926]],[[5354,5165,5352]],[[5271,5344,5268]],[[5266,5245,5267]],[[4975,4955,4987]],[[4975,4956,4955]],[[5372,5376,5058]],[[5381,5382,5333]],[[5241,5360,5235]],[[5247,5244,5360]],[[5143,5186,4893]],[[5280,5282,5186]],[[5379,5331,5285]],[[5293,5274,5331]],[[4954,5383,4860]],[[4954,4951,5383]],[[5148,5384,4897]],[[5330,5145,5290]],[[5174,5199,5043]],[[5043,5381,5044]],[[5204,5168,5023]],[[5061,5341,5205]],[[5023,5168,5205]],[[5170,5061,5168]],[[5006,5015,5062]],[[5333,5382,4973]],[[5062,5015,5206]],[[5005,5057,5015]],[[5022,5062,5199]],[[5382,5376,5135]],[[5385,5303,5166]],[[5385,4939,5356]],[[4878,4874,4944]],[[4950,4876,4874]],[[5143,5280,5186]],[[5143,5363,5280]],[[5199,5381,5043]],[[5382,5374,5376]],[[5338,5351,5345]],[[5347,4921,5351]],[[5148,5145,5329]],[[5330,5290,5291]],[[4982,5172,4987]],[[5044,5381,5333]],[[5386,5387,5201]],[[4961,5388,4867]],[[4817,4819,5221]],[[4818,4821,4819]],[[4909,5379,5285]],[[5293,5331,5379]],[[5258,5259,5361]],[[5253,5289,5259]],[[5046,5171,5059]],[[5046,5045,5171]],[[5378,4933,4925]],[[4935,5324,4925]],[[5228,5227,5211]],[[5220,5240,5123]],[[5220,5123,5227]],[[5240,5209,5123]],[[5146,5329,5291]],[[5329,5145,5330]],[[5384,5329,4897]],[[5384,5148,5329]],[[4943,4919,5098]],[[4943,4936,4919]],[[5343,4917,5275]],[[4919,4924,4917]],[[4884,4898,5147]],[[4897,5146,4898]],[[5378,5354,4933]],[[5353,5162,5354]],[[5389,5149,5148]],[[5389,4884,5149]],[[4897,5389,5148]],[[4897,4884,5389]],[[5055,5153,5102]],[[5269,5122,5153]],[[5131,5130,5175]],[[5093,5095,5076]],[[5241,5235,5230]],[[5360,5244,5235]],[[5100,5151,5154]],[[5101,5089,5151]],[[5045,5174,5043]],[[5200,5206,5374]],[[5339,5286,4911]],[[5224,5222,5286]],[[4891,5249,5272]],[[4946,4941,5270]],[[4885,5190,5110]],[[4895,4894,5190]],[[4944,4872,4951]],[[4875,4873,4872]],[[5290,4901,5223]],[[5290,4899,4901]],[[5010,5156,5155]],[[5265,5089,5156]],[[5305,5115,4891]],[[5305,5307,5115]],[[5236,5113,5229]],[[5115,5307,5113]],[[5087,5009,4969]],[[4986,4828,4827]],[[5285,5339,4909]],[[5285,5286,5339]],[[5335,4910,5337]],[[5349,5364,4930]],[[5284,5362,5287]],[[5284,4915,5362]],[[4963,5390,5391]],[[4841,5392,4839]],[[5393,5394,5395]],[[5396,5397,5388]],[[5398,5399,5386]],[[5400,4840,5401]],[[4850,4851,4849]],[[4854,4852,4851]],[[5167,4929,5096]],[[5160,4914,4929]],[[5199,5374,5381]],[[5206,5015,5373]],[[5058,5373,5015]],[[5376,5374,5373]],[[4825,4829,4828]],[[4825,4820,4829]],[[5342,5369,5332]],[[5342,5368,5369]],[[4973,5382,5135]],[[5381,5374,5382]],[[5303,5352,5165]],[[5303,5353,5352]],[[4863,4866,4847]],[[4869,4883,4866]],[[5396,5388,5394]],[[5402,4867,5388]],[[5249,4946,5270]],[[5115,5114,4946]],[[5205,5340,5063]],[[5403,5341,4979]],[[5009,4985,4827]],[[5009,5156,5010]],[[5404,5405,4967]],[[5406,5380,5014]],[[5265,5009,5087]],[[5265,5156,5009]],[[5359,5189,5188]],[[5359,5211,5189]],[[5340,4979,5004]],[[5340,5205,5403]],[[4892,5300,4890]],[[5300,5327,5325]],[[4850,4839,4962]],[[4843,5407,4842]],[[5408,5201,5387]],[[4958,4841,5400]],[[5386,5409,5387]],[[5410,5411,5412]],[[5039,5056,5067]],[[5035,5053,5056]],[[4910,5349,4930]],[[5339,4911,5349]],[[5413,4980,5014]],[[5414,5415,5416]],[[5417,5401,5418]],[[5013,5341,5419]],[[5334,4910,5335]],[[5334,5336,4910]],[[4881,4878,4945]],[[4877,4950,4878]],[[5325,5377,4926]],[[5196,5354,5420]],[[5397,5402,5388]],[[5397,4867,5402]],[[5421,4959,4958]],[[5422,5394,5388]],[[5392,4959,5423]],[[5395,5394,5424]],[[5425,5421,4958]],[[5423,5424,5426]],[[5400,4841,4840]],[[5426,5424,5422]],[[5427,5391,5421]],[[5391,5423,5421]],[[4839,5392,4962]],[[5424,5394,5422]],[[4960,5392,5426]],[[4841,4959,5392]],[[4863,5428,4866]],[[5383,4951,4868]],[[5022,5199,5169]],[[5200,5374,5199]],[[5046,5174,5045]],[[5169,5199,5174]],[[5404,5013,5419]],[[5404,5406,5013]],[[4890,5300,5325]],[[4892,4927,4888]],[[5409,5410,5387]],[[5202,5429,5430]],[[5386,5201,5398]],[[5203,4964,5201]],[[4851,4850,4854]],[[4962,4867,4850]],[[5421,5423,4959]],[[5390,5395,5423]],[[4960,5426,5422]],[[5392,5423,5426]],[[5431,5432,5415]],[[5202,5203,5408]],[[5387,5410,5408]],[[5416,5432,5430]],[[5171,5172,5042]],[[5044,5333,5172]],[[5433,4847,4865]],[[5433,4861,4847]],[[5404,4966,5406]],[[5380,5135,5372]],[[5406,4966,5434]],[[5404,5419,5405]],[[5418,4967,5415]],[[4966,5404,4967]],[[4968,5418,5401]],[[4968,4967,5418]],[[5393,4963,4965]],[[5393,5395,5390]],[[5340,5403,4979]],[[5205,5341,5403]],[[5413,4981,4980]],[[4979,5341,4980]],[[5005,4981,5375]],[[5005,4979,4981]],[[4805,5264,5071]],[[4805,5081,5264]],[[4856,4848,4858]],[[4850,4867,4848]],[[5392,4960,4962]],[[5422,5388,4961]],[[5408,5203,5201]],[[5408,5435,5202]],[[5380,5406,5434]],[[5014,5013,5406]],[[5353,5356,5162]],[[5303,5385,5356]],[[5408,5410,5435]],[[5436,5401,5417]],[[5418,5412,5417]],[[5410,5409,5436]],[[5415,5412,5418]],[[5436,5409,5401]],[[5380,5375,5014]],[[5375,4981,5413]],[[4966,4968,5434]],[[5401,5135,4968]],[[5430,5419,5341]],[[5430,5432,5405]],[[5130,5093,5078]],[[5095,5072,5076]],[[5326,5195,5327]],[[5163,5196,5195]],[[5383,5428,4860]],[[5428,4868,4866]],[[4925,4933,4935]],[[5354,5162,4933]],[[5425,5386,5399]],[[4958,5409,5386]],[[5129,5093,5130]],[[5129,5094,5093]],[[4860,5428,4863]],[[5383,4868,5428]],[[5377,5296,5358]],[[5197,5196,5296]],[[5410,5429,5435]],[[5415,5432,5416]],[[5429,5414,5430]],[[5414,5412,5415]],[[4963,5398,5201]],[[5427,5421,5399]],[[5219,5241,5240]],[[5238,5247,5241]],[[4892,4888,5300]],[[4927,4889,4888]],[[5423,5395,5424]],[[5390,4963,5393]],[[4805,5430,5341]],[[4805,4964,5430]],[[4968,5380,5434]],[[4968,5135,5380]],[[4882,4881,4949]],[[4945,5272,4948]],[[5378,5420,5354]],[[5358,5196,5420]],[[5377,5378,4926]],[[5358,5420,5378]],[[4963,5391,5427]],[[5390,5423,5391]],[[5396,5393,4965]],[[5396,5394,5393]],[[5272,5249,5270]],[[4891,5115,5249]],[[5271,4948,5272]],[[5271,4949,4948]],[[5243,4940,4942]],[[5266,5267,4940]],[[5005,5375,5057]],[[5413,5014,5375]],[[5421,5425,5399]],[[4958,5386,5425]],[[5431,5405,5432]],[[5419,5430,5405]],[[5409,5400,5401]],[[5409,4958,5400]],[[4940,5344,4941]],[[4940,5267,5344]],[[5429,5202,5435]],[[5430,4964,5202]],[[4835,4830,5033]],[[4832,4990,4830]],[[4828,4831,4825]],[[4828,4834,4831]],[[5297,5377,5325]],[[5297,5296,5377]],[[5370,5297,5325]],[[5370,5197,5297]],[[5410,5412,5414]],[[5411,5417,5412]],[[5430,5414,5416]],[[5429,5410,5414]],[[5398,5427,5399]],[[5398,4963,5427]],[[4967,5431,5415]],[[4967,5405,5431]],[[5198,5326,5371]],[[5198,5163,5326]],[[4962,4961,4867]],[[4960,5422,4961]],[[4845,4843,4839]],[[4845,5407,4843]],[[5308,5312,5315]],[[5313,5345,5312]],[[5237,5242,5243]],[[5279,5218,5242]],[[5411,5436,5417]],[[5411,5410,5436]],[[5300,4887,5301]],[[5300,4888,4887]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c1743cc-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efcc0b49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:56:35.000"},"geometry":[{"boundaries":[[[4879,4880,5437]],[[5438,5439,5385]],[[5440,5441,5442]],[[5440,5443,5444]],[[5445,5446,5447]],[[5448,5449,5446]],[[5450,5451,5452]],[[5450,5453,5454]],[[5455,5456,5457]],[[5455,5457,5458]],[[5459,5460,5461]],[[5460,5462,5461]],[[5463,5464,5465]],[[5466,5467,5468]],[[5467,5469,5468]],[[5470,5471,5472]],[[5473,5474,5475]],[[5476,5459,5461]],[[5466,5468,5465]],[[5469,4343,5468]],[[5461,5463,5465]],[[5477,5478,5479]],[[5464,5466,5465]],[[5480,5481,5482]],[[5462,5463,5461]],[[5483,5482,5484]],[[5485,5486,5487]],[[5459,5458,5460]],[[5455,5454,5456]],[[5450,5452,5453]],[[5488,5475,5489]],[[5446,5490,5448]],[[5490,5446,5491]],[[5491,5446,5445]],[[5447,5440,5492]],[[5440,5442,5443]],[[5488,5493,5441]],[[5493,5488,5494]],[[5488,5489,5495]],[[5475,5496,5489]],[[5497,5498,5499]],[[5496,5475,5500]],[[5500,5475,5474]],[[5475,5501,5473]],[[5475,5502,5501]],[[5503,5504,5505]],[[5506,5503,5505]],[[5507,5506,5505]],[[5508,5507,5505]],[[5509,5508,5505]],[[5510,5511,5512]],[[5513,5505,5514]],[[5514,5505,5515]],[[5515,5505,5516]],[[5517,5515,5516]],[[5518,5517,5516]],[[5519,5518,5516]],[[5517,5518,5520]],[[5520,5518,5521]],[[5521,5518,5522]],[[5522,5518,5523]],[[5518,5487,5524]],[[5525,5523,5518]],[[5526,5525,5518]],[[5527,5526,5518]],[[5528,5529,5483]],[[5530,5531,5532]],[[5485,5533,5486]],[[4927,5486,5534]],[[5535,5536,5537]],[[5538,5539,5540]],[[5541,5485,5487]],[[5542,5543,5544]],[[5302,5533,5545]],[[5546,5547,5548]],[[5549,5550,5551]],[[5299,5519,5552]],[[5553,5554,5555]],[[5556,5557,5542]],[[5552,5558,5299]],[[4855,5559,4853]],[[4842,5560,5561]],[[5562,5563,4869]],[[5558,5371,5328]],[[5556,5198,5564]],[[5565,5566,5567]],[[5166,5438,5385]],[[5565,5567,5568]],[[5569,4939,5570]],[[5571,5572,5573]],[[5570,4939,5385]],[[5574,5575,5576]],[[5577,5223,5368]],[[5578,5579,5580]],[[5581,5582,5583]],[[5584,5585,5586]],[[5587,5588,5551]],[[5589,5590,5591]],[[5592,5593,5594]],[[5581,5583,5595]],[[5563,4949,5596]],[[5563,4882,4949]],[[5563,5437,4882]],[[5437,4880,4882]],[[4879,5437,4877]],[[5437,4876,4950]],[[4873,4875,5562]],[[4873,5562,4870]],[[4870,5562,4871]],[[4871,5562,4869]],[[4864,4883,5597]],[[5597,4883,4869]],[[5563,5598,5597]],[[5597,4865,4864]],[[5599,5600,5576]],[[5601,5539,5602]],[[5603,4861,5433]],[[5604,5605,5606]],[[5598,5607,4858]],[[5608,5609,5610]],[[5559,5598,5611]],[[5607,5559,4855]],[[5612,5611,5613]],[[5614,5615,5616]],[[4853,5559,4854]],[[5617,5618,5619]],[[4852,4854,5620]],[[4852,5620,4849]],[[5621,5622,5623]],[[4844,4849,5620]],[[5620,5611,5624]],[[4845,4844,5624]],[[5561,5407,4845]],[[5625,5626,5627]],[[5539,5601,5540]],[[5539,5538,5608]],[[4836,5628,5001]],[[5629,5033,5032]],[[5629,5630,5033]],[[5617,5631,5618]],[[5033,5630,4835]],[[5632,5633,4814]],[[5634,5628,5635]],[[5628,4826,5001]],[[5628,4836,4835]],[[5636,5637,4804]],[[5638,5639,5622]],[[5640,4976,5103]],[[5639,5641,5622]],[[4976,5632,4821]],[[4821,5632,5221]],[[5221,5632,4817]],[[4817,5632,4814]],[[4814,5633,4815]],[[4815,5633,4811]],[[5642,5643,5623]],[[5623,5643,5621]],[[5510,5644,5645]],[[5646,5505,5513]],[[5646,5509,5505]],[[5511,5510,5647]],[[5504,5502,5505]],[[5494,5488,5495]],[[5648,5516,5505]],[[5492,5440,5444]],[[5505,5502,5475]],[[5451,5450,5449]],[[5488,5441,5440]],[[5440,5447,5446]],[[5455,5450,5454]],[[5446,5449,5450]],[[5649,5459,5476]],[[5650,5651,5645]],[[5458,5459,5455]],[[5649,5651,5652]],[[5459,5649,5652]],[[5651,5653,5652]],[[5651,5650,5653]],[[5645,5644,5650]],[[5510,5645,5654]],[[5645,5655,5654]],[[5655,5656,5654]],[[5657,5629,5658]],[[5659,5660,5661]],[[5662,5661,5660]],[[5663,5135,5616]],[[5606,5659,5661]],[[5659,5664,5660]],[[5665,5666,5617]],[[5665,4811,5631]],[[5667,5668,5669]],[[5606,5629,5032]],[[5616,5662,5664]],[[5614,5670,5615]],[[5615,5671,5605]],[[5657,5635,5629]],[[5616,5664,5663]],[[5662,5660,5664]],[[5608,5672,5616]],[[5673,5668,5614]],[[5638,5674,5675]],[[5676,5677,5678]],[[5679,5680,5628]],[[5628,4835,5630]],[[5681,5682,5683]],[[5634,5679,5628]],[[5631,5617,5666]],[[5684,5677,5685]],[[5673,5614,5616]],[[5686,5687,5688]],[[4811,5665,5636]],[[4811,5633,5631]],[[5539,5608,5616]],[[5672,5673,5616]],[[5604,5606,5661]],[[5032,5135,5663]],[[5032,5689,5606]],[[5032,5659,5689]],[[5627,5677,5690]],[[5691,5641,5639]],[[5627,5692,5685]],[[5627,5685,5677]],[[5693,5694,5609]],[[5671,5695,5605]],[[5668,5696,5614]],[[5687,5694,5688]],[[5696,5697,5670]],[[5668,5667,5698]],[[5610,5669,5672]],[[5610,5667,5669]],[[5632,5640,5693]],[[5640,5103,4826]],[[5681,5683,5657]],[[5699,5679,5634]],[[5693,5682,5694]],[[5695,5657,5658]],[[5691,5639,5700]],[[5691,5678,5641]],[[4811,5636,4804]],[[5636,5619,5678]],[[5636,5684,5637]],[[5636,5678,5684]],[[5637,5685,5692]],[[5637,5684,5685]],[[5625,5701,5626]],[[4804,5637,5692]],[[5675,5701,5702]],[[5626,5703,5627]],[[5625,5702,5701]],[[5703,4804,5692]],[[5704,5702,5705]],[[5700,5675,5702]],[[5690,5705,5627]],[[5690,5704,5705]],[[5638,5675,5700]],[[5638,5621,5674]],[[5694,5682,5688]],[[5683,5634,5657]],[[5706,5707,5536]],[[5708,5590,5709]],[[5710,5711,5712]],[[5713,5714,5715]],[[5586,5716,5717]],[[5712,5711,5718]],[[5662,5604,5661]],[[5658,5629,5605]],[[5616,5615,5604]],[[5670,5697,5687]],[[5670,5687,5615]],[[5686,5681,5695]],[[5615,5687,5671]],[[5697,5694,5687]],[[5705,5625,5627]],[[5705,5702,5625]],[[5693,5640,5679]],[[5632,4976,5640]],[[5719,5710,5720]],[[5547,5546,5721]],[[5617,5636,5665]],[[5617,5619,5636]],[[5684,5678,5677]],[[5619,5641,5678]],[[5675,5674,5701]],[[5621,4804,5674]],[[5702,5704,5700]],[[5690,5676,5704]],[[5722,5600,5723]],[[5722,5574,5576]],[[5724,5725,5726]],[[5727,5588,5728]],[[5554,5723,5729]],[[5730,5731,5732]],[[5708,5733,5555]],[[5734,5735,5714]],[[5736,5580,5728]],[[5550,5549,5737]],[[5736,5728,5738]],[[5739,5740,5583]],[[5551,5741,5587]],[[5742,5743,5248]],[[5744,5667,5609]],[[5698,5744,5696]],[[5744,5698,5667]],[[5744,5697,5696]],[[5745,5746,5747]],[[5748,5531,5749]],[[5693,5683,5682]],[[5693,5679,5699]],[[5683,5699,5634]],[[5683,5693,5699]],[[5750,5716,5751]],[[5728,5588,5587]],[[5752,5751,5732]],[[5584,5717,5753]],[[5731,5752,5732]],[[5753,5754,5755]],[[5751,5716,5756]],[[5720,5757,5719]],[[5758,5717,5716]],[[5759,5147,5760]],[[5761,5578,5580]],[[5579,5595,5762]],[[5758,5763,5717]],[[5754,5281,5755]],[[5587,5738,5728]],[[5732,5736,5738]],[[5669,5673,5672]],[[5669,5668,5673]],[[5640,5680,5679]],[[5640,4826,5628]],[[5764,5765,5567]],[[5766,5571,5767]],[[5768,5769,5770]],[[5498,5771,5499]],[[5674,5626,5701]],[[5674,4804,5626]],[[5627,5703,5692]],[[5626,4804,5703]],[[5608,5610,5672]],[[5609,5667,5610]],[[5772,5709,5773]],[[5774,5588,5727]],[[5761,5580,5736]],[[5736,5751,5756]],[[5749,5721,5775]],[[5290,5223,5775]],[[5710,5548,5711]],[[5546,5776,5290]],[[5695,5681,5657]],[[5688,5682,5681]],[[5777,5778,5779]],[[5747,5746,5780]],[[5738,5730,5732]],[[5781,5248,5217]],[[5773,5739,5583]],[[5782,5783,5727]],[[5135,5539,5616]],[[5538,5609,5608]],[[5547,5721,5749]],[[5721,5290,5775]],[[5547,5749,5531]],[[5775,5223,5577]],[[5532,5784,5530]],[[5749,5775,5577]],[[5767,5785,5766]],[[5786,5787,5788]],[[5572,5766,5789]],[[5790,5748,5791]],[[5605,5695,5658]],[[5671,5687,5686]],[[5681,5686,5688]],[[5695,5671,5686]],[[5694,5744,5609]],[[5694,5697,5744]],[[5792,5793,5794]],[[5766,5785,5795]],[[5536,5707,5796]],[[5706,5797,5707]],[[5787,5795,5532]],[[5748,5749,5791]],[[5766,5795,5787]],[[5798,5799,5800]],[[5659,5663,5664]],[[5659,5032,5663]],[[5732,5751,5736]],[[5752,5750,5751]],[[5801,5802,5750]],[[5752,5731,5750]],[[5725,5803,5804]],[[5805,5750,5804]],[[5806,5763,5803]],[[5758,5750,5805]],[[5757,5720,5807]],[[5581,5595,5579]],[[5712,5720,5710]],[[5712,5718,5808]],[[5809,5810,5742]],[[5743,5271,5248]],[[5742,5724,5809]],[[5801,5750,5731]],[[5811,5566,5812]],[[5813,5814,5707]],[[5815,5765,5764]],[[4924,4923,5569]],[[5166,5816,5817]],[[5818,5569,5570]],[[5819,5815,5764]],[[5814,5536,5796]],[[5820,5818,5570]],[[5821,5822,5820]],[[5707,5770,5813]],[[5484,5482,5821]],[[5439,5570,5385]],[[5569,5765,4924]],[[5724,5823,5725]],[[5803,5805,5804]],[[5802,5801,5809]],[[5802,5804,5750]],[[5809,5730,5592]],[[5801,5731,5730]],[[5792,5794,5824]],[[5793,5825,5794]],[[5788,5787,5532]],[[5720,5808,5826]],[[5827,5788,5790]],[[5532,5531,5828]],[[5635,5628,5630]],[[5680,5640,5628]],[[5629,5635,5630]],[[5657,5634,5635]],[[5829,5729,5590]],[[5729,5591,5590]],[[5704,5691,5700]],[[5704,5678,5691]],[[5592,5830,5809]],[[4949,5271,5830]],[[5730,5809,5801]],[[5830,5810,5809]],[[5603,4857,4862]],[[5596,5723,5613]],[[5743,5742,5810]],[[5831,5823,5724]],[[5832,5811,5812]],[[5764,5567,5566]],[[5833,5812,5834]],[[5835,5735,5832]],[[5715,5836,5713]],[[5819,5275,5815]],[[5835,5832,5812]],[[5735,5837,5811]],[[5614,5696,5670]],[[5668,5698,5696]],[[5542,5544,5838]],[[5834,5839,5537]],[[5519,5516,5470]],[[5817,5528,5438]],[[5518,5840,5527]],[[5516,5841,5511]],[[5572,5571,5766]],[[5767,5799,5785]],[[5842,5544,5843]],[[5438,5844,5439]],[[5845,5846,5842]],[[5847,5779,5848]],[[5849,5756,5716]],[[5761,5736,5756]],[[5281,5850,5217]],[[5763,5758,5803]],[[5795,5784,5532]],[[5795,5785,5851]],[[5543,5542,5845]],[[5852,5853,5558]],[[5659,5606,5689]],[[5605,5629,5606]],[[5850,5806,5781]],[[5831,5742,5248]],[[5248,5781,5823]],[[5806,5803,5725]],[[5854,5806,5855]],[[5856,5754,5763]],[[5855,5725,5823]],[[5726,5809,5724]],[[5580,5857,5858]],[[5580,5579,5857]],[[5812,5833,5835]],[[5834,5814,5833]],[[5594,5593,5859]],[[5730,5738,5593]],[[5576,5600,5722]],[[5601,5611,5612]],[[5860,5816,5838]],[[5557,5861,5542]],[[5555,5780,5746]],[[5555,5573,5780]],[[5551,5862,5741]],[[5863,5830,5592]],[[5864,5865,5866]],[[5867,5868,5869]],[[5755,5864,5584]],[[5760,5870,5719]],[[5800,5871,5733]],[[5772,5773,5583]],[[5872,5873,5772]],[[5873,5708,5709]],[[5874,5771,5827]],[[5875,5794,5825]],[[5830,5863,4949]],[[5741,5859,5587]],[[5864,5866,5585]],[[5876,5877,5866]],[[5704,5676,5678]],[[5690,5677,5676]],[[5726,5725,5804]],[[5855,5806,5725]],[[5537,5839,5565]],[[5878,5779,5778]],[[5879,5565,5568]],[[5567,5765,5568]],[[5553,5722,5554]],[[5553,5574,5722]],[[5597,5433,4865]],[[5596,5729,5723]],[[5880,5439,5844]],[[5880,5820,5439]],[[5853,5861,5564]],[[5881,5542,5861]],[[5557,5564,5861]],[[5198,5371,5853]],[[5558,5882,5852]],[[5552,5542,5881]],[[5861,5852,5881]],[[5853,5371,5558]],[[5480,5883,5481]],[[5848,5779,5878]],[[5833,5715,5835]],[[5833,5814,5836]],[[5884,5885,5886]],[[5516,5648,5841]],[[5875,5825,5787]],[[5793,5789,5825]],[[5861,5853,5852]],[[5564,5198,5853]],[[5551,5550,5862]],[[5551,5774,5549]],[[5470,5478,5878]],[[5552,5846,5845]],[[5843,5543,5845]],[[5843,5544,5543]],[[5778,5886,5887]],[[5884,5822,5885]],[[5888,5578,5877]],[[5581,5579,5578]],[[5739,5589,5889]],[[5862,5596,5741]],[[5890,5576,5575]],[[5890,5612,5613]],[[5589,5709,5590]],[[5873,5733,5708]],[[5870,5891,5719]],[[5892,5548,5710]],[[5871,5800,5799]],[[5798,5808,5893]],[[5871,5799,5767]],[[5808,5894,5826]],[[5795,5851,5784]],[[5785,5799,5851]],[[5865,5757,5868]],[[5869,5826,5872]],[[5535,5745,5824]],[[5895,5896,5553]],[[5707,5814,5796]],[[5834,5537,5814]],[[5824,5745,5897]],[[5535,5895,5745]],[[5711,5548,5547]],[[5892,5898,5776]],[[5755,5759,5760]],[[5281,5147,5759]],[[5888,5581,5578]],[[5867,5582,5581]],[[5899,5714,5713]],[[5715,5833,5836]],[[5875,5768,5770]],[[5836,5814,5813]],[[5299,5558,5328]],[[5299,5301,5519]],[[5549,5774,5889]],[[5740,5595,5583]],[[5580,5858,5728]],[[5774,5551,5588]],[[5858,5782,5727]],[[5739,5889,5783]],[[5665,5631,5666]],[[5633,5618,5631]],[[5849,5877,5761]],[[5876,5888,5877]],[[5789,5792,5897]],[[5706,5536,5535]],[[5529,5528,5817]],[[5880,5844,5528]],[[5838,5544,5900]],[[5544,5842,5900]],[[5860,5480,5901]],[[5860,5900,5480]],[[4924,5815,5275]],[[4924,5765,5815]],[[5735,5734,5902]],[[5903,5275,5904]],[[5275,5819,5904]],[[5764,5566,5837]],[[5905,5837,5735]],[[5905,5819,5837]],[[5900,5860,5838]],[[5556,5164,5198]],[[5786,5768,5787]],[[5797,5706,5794]],[[5745,5789,5897]],[[5766,5825,5789]],[[5639,5638,5700]],[[5622,5621,5638]],[[5794,5706,5824]],[[5794,5875,5797]],[[5593,5592,5730]],[[5594,5863,5592]],[[5763,5754,5753]],[[5856,5281,5754]],[[5586,5849,5716]],[[5866,5877,5849]],[[5164,5816,5166]],[[5901,5480,5529]],[[5799,5798,5851]],[[5800,5733,5798]],[[5728,5858,5727]],[[5762,5595,5740]],[[5783,5782,5739]],[[5858,5857,5740]],[[5887,5885,5778]],[[5887,5886,5885]],[[5735,5811,5832]],[[5837,5566,5811]],[[5573,5767,5571]],[[5573,5871,5767]],[[5753,5755,5584]],[[5281,5759,5755]],[[5791,5874,5827]],[[5734,5498,5906]],[[5749,5577,5791]],[[5907,5499,5874]],[[5497,5907,5368]],[[5874,5791,5907]],[[5907,5577,5368]],[[5907,5791,5577]],[[5497,5499,5907]],[[5771,5874,5499]],[[5531,5718,5711]],[[5893,5851,5798]],[[5770,5797,5875]],[[5770,5707,5797]],[[5828,5788,5532]],[[5825,5766,5787]],[[5616,5604,5662]],[[5615,5605,5604]],[[5908,5708,5555]],[[5554,5829,5708]],[[5746,5553,5555]],[[5722,5723,5554]],[[5817,5438,5166]],[[5528,5844,5438]],[[5146,5870,5147]],[[5146,5891,5870]],[[5876,5868,5867]],[[5826,5894,5872]],[[5582,5869,5872]],[[5807,5720,5826]],[[5868,5826,5869]],[[5720,5712,5808]],[[5729,5737,5591]],[[5729,5596,5862]],[[5737,5862,5550]],[[5737,5729,5862]],[[5857,5762,5740]],[[5857,5579,5762]],[[5530,5893,5808]],[[5909,5894,5808]],[[5739,5773,5589]],[[5583,5910,5772]],[[5549,5589,5591]],[[5773,5709,5589]],[[5789,5747,5572]],[[5789,5745,5747]],[[5780,5572,5747]],[[5780,5573,5572]],[[5897,5792,5824]],[[5789,5793,5792]],[[5589,5549,5889]],[[5591,5737,5549]],[[5830,5911,5810]],[[5830,5271,5743]],[[5868,5807,5826]],[[5868,5876,5865]],[[5868,5757,5807]],[[5898,5891,5776]],[[5554,5908,5555]],[[5554,5708,5908]],[[5835,5714,5735]],[[5835,5715,5714]],[[5583,5582,5910]],[[5867,5869,5582]],[[5902,5903,5904]],[[5276,5275,5903]],[[5790,5788,5828]],[[5827,5786,5788]],[[5718,5530,5808]],[[5784,5851,5893]],[[5771,5786,5827]],[[5899,5713,5769]],[[5901,5529,5817]],[[5480,5483,5529]],[[5146,5776,5891]],[[5146,5290,5776]],[[5719,5898,5710]],[[5776,5548,5892]],[[5863,5741,5596]],[[5594,5859,5741]],[[5582,5872,5910]],[[5894,5909,5733]],[[4857,5603,4858]],[[5613,5576,5890]],[[4844,5620,5624]],[[5601,5612,5912]],[[5559,5611,5620]],[[5598,5613,5611]],[[5866,5865,5876]],[[5760,5147,5870]],[[5837,5819,5764]],[[5905,5904,5819]],[[5750,5758,5716]],[[5805,5803,5758]],[[5845,5842,5843]],[[5846,5900,5842]],[[5867,5888,5876]],[[5867,5581,5888]],[[5827,5790,5791]],[[5828,5748,5790]],[[5812,5839,5834]],[[5812,5566,5565]],[[5555,5871,5573]],[[5733,5872,5894]],[[5555,5733,5871]],[[5873,5872,5733]],[[5776,5546,5548]],[[5290,5721,5546]],[[5823,5831,5248]],[[5724,5742,5831]],[[5906,5498,5368]],[[5498,5714,5771]],[[5368,5498,5497]],[[5276,5903,5902]],[[5902,5734,5276]],[[5714,5498,5734]],[[5276,5906,5368]],[[5276,5734,5906]],[[5813,5769,5836]],[[5899,5786,5771]],[[5836,5769,5713]],[[5813,5770,5769]],[[5854,5781,5806]],[[5217,5850,5781]],[[4856,5607,4855]],[[4856,4858,5607]],[[5528,5483,5880]],[[5480,5482,5483]],[[5740,5782,5858]],[[5740,5739,5782]],[[5872,5772,5910]],[[5873,5709,5772]],[[5798,5909,5808]],[[5798,5733,5909]],[[5865,5719,5757]],[[5865,5864,5760]],[[5710,5898,5892]],[[5719,5891,5898]],[[5865,5760,5719]],[[5864,5755,5760]],[[5547,5531,5711]],[[5748,5828,5531]],[[5407,5560,4842]],[[5561,4845,5624]],[[5613,5599,5576]],[[5723,5600,5599]],[[5900,5883,5480]],[[5481,5913,5482]],[[5726,5802,5809]],[[5726,5804,5802]],[[4858,5603,5598]],[[4862,4861,5603]],[[5901,5816,5860]],[[5901,5817,5816]],[[5557,5556,5564]],[[5816,5164,5556]],[[5823,5854,5855]],[[5823,5781,5854]],[[5765,5569,5568]],[[4923,4939,5569]],[[5849,5761,5756]],[[5877,5578,5761]],[[5864,5585,5584]],[[5866,5849,5585]],[[5584,5586,5717]],[[5585,5849,5586]],[[5905,5902,5904]],[[5905,5735,5902]],[[5556,5838,5816]],[[5556,5542,5838]],[[5900,5481,5883]],[[5885,5913,5481]],[[5531,5530,5718]],[[5784,5893,5530]],[[5850,5856,5806]],[[5753,5717,5763]],[[5806,5856,5763]],[[5850,5281,5856]],[[5783,5774,5727]],[[5783,5889,5774]],[[5569,5818,5568]],[[5839,5812,5565]],[[5478,5477,5878]],[[5647,5516,5511]],[[5647,5510,5914]],[[5512,5644,5510]],[[5654,5647,5914]],[[5470,5516,5647]],[[5563,5613,5598]],[[5723,5599,5613]],[[5777,5779,5535]],[[5536,5814,5537]],[[5778,5777,5884]],[[5777,5565,5879]],[[5439,5820,5570]],[[5879,5568,5818]],[[5741,5863,5594]],[[5596,4949,5863]],[[5603,5433,5597]],[[4875,4876,5437]],[[5593,5587,5859]],[[5593,5738,5587]],[[5545,5533,5485]],[[5533,5534,5486]],[[4889,5533,5302]],[[4889,5534,5533]],[[5510,5654,5914]],[[5656,5471,5470]],[[5786,5899,5769]],[[5771,5714,5899]],[[5537,5565,5777]],[[5847,5896,5779]],[[5895,5535,5779]],[[5824,5706,5535]],[[5787,5768,5875]],[[5786,5769,5768]],[[5484,5820,5880]],[[5879,5818,5820]],[[5483,5484,5880]],[[5482,5913,5821]],[[5484,5821,5820]],[[5913,5885,5822]],[[5911,5743,5810]],[[5911,5830,5743]],[[4840,5915,5401]],[[5561,5560,5407]],[[5848,5878,5479]],[[5656,5470,5654]],[[5885,5519,5778]],[[5885,5846,5519]],[[5552,5519,5846]],[[5301,5302,5518]],[[5542,5552,5845]],[[5882,5558,5552]],[[5881,5882,5552]],[[5881,5852,5882]],[[5301,5518,5519]],[[5524,5840,5518]],[[5518,5545,5487]],[[5518,5302,5545]],[[5601,5624,5611]],[[5915,4840,5561]],[[5915,5561,5624]],[[4840,4842,5561]],[[5537,5777,5535]],[[5879,5884,5777]],[[5778,5884,5886]],[[5822,5821,5913]],[[5879,5822,5884]],[[5879,5820,5822]],[[5745,5553,5746]],[[5896,5574,5553]],[[5540,5601,5912]],[[5915,5624,5601]],[[5896,5895,5779]],[[5553,5745,5895]],[[4854,5559,5620]],[[5607,5598,5559]],[[5603,5597,5598]],[[5437,4950,4877]],[[5613,5563,5596]],[[5597,4869,5563]],[[5562,5437,5563]],[[5562,4875,5437]],[[5472,5478,5470]],[[5472,5479,5478]],[[5885,5900,5846]],[[5885,5481,5900]],[[5915,5602,5401]],[[5915,5601,5602]],[[5479,5878,5477]],[[5470,5647,5654]],[[5401,5539,5135]],[[5401,5602,5539]],[[5708,5829,5590]],[[5554,5729,5829]],[[5545,5541,5487]],[[5545,5485,5541]],[[5778,5470,5878]],[[5778,5519,5470]],[[4348,4343,5469]],[[5467,4799,4348]],[[5467,4348,5469]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c176ae8-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.407ee0b5c4684c8baa3e2a326ead6088","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5916,5917,5918]],[[5919,5920,5921]],[[5922,5919,5921]],[[5923,5922,5924]],[[5925,5926,5927]],[[5928,5927,5926]],[[5929,5928,5926]],[[5930,5931,5926]],[[5932,5933,5934]],[[5935,5933,5932]],[[5936,5932,5937]],[[5938,5939,5940]],[[5941,5942,5927]],[[5943,5944,5945]],[[5946,5947,5948]],[[5948,5943,5949]],[[5949,5950,5951]],[[5951,5950,5952]],[[5949,5943,5950]],[[5950,5943,5945]],[[5947,5953,5943]],[[5954,5955,5956]],[[5948,5947,5943]],[[5957,5958,5959]],[[5960,5947,5946]],[[5961,5962,5963]],[[5964,5965,5966]],[[5931,5929,5926]],[[5967,5968,5969]],[[5970,5971,5972]],[[5973,5974,5975]],[[5971,5970,5976]],[[5977,5978,5979]],[[5980,5981,5982]],[[5983,5976,5984]],[[5985,5986,5987]],[[5963,5988,5989]],[[5990,5955,5991]],[[5992,5993,5956]],[[5935,5994,5933]],[[5995,5996,5997]],[[5942,5996,5925]],[[5927,5942,5925]],[[5941,5924,5942]],[[5941,5923,5924]],[[5922,5921,5924]],[[5920,5918,5917]],[[5920,5917,5921]],[[5916,5994,5935]],[[5998,5999,5917]],[[6000,6001,6002]],[[6003,6004,6005]],[[6006,5971,5976]],[[5986,5974,5987]],[[5983,6007,6006]],[[5970,6008,6009]],[[6010,6011,6012]],[[6013,6014,6010]],[[5987,5974,6004]],[[5970,5972,6008]],[[6015,6016,6017]],[[6010,6014,6018]],[[6019,6020,6021]],[[6022,5926,5947]],[[5972,6012,6008]],[[5984,6023,6024]],[[6010,5971,6013]],[[6006,6007,6025]],[[6026,6027,6028]],[[6022,6029,6030]],[[5983,5984,6031]],[[6032,5981,6033]],[[6034,5978,6035]],[[6036,6037,6038]],[[6039,6040,6034]],[[6005,6004,5974]],[[6036,6041,6042]],[[6043,6044,6045]],[[6046,6047,6048]],[[6049,6050,6051]],[[6012,6011,6052]],[[6053,6054,6055]],[[6056,6057,6058]],[[6059,6030,6060]],[[6052,6061,6012]],[[6017,6016,6029]],[[6062,6063,6064]],[[6065,6066,6067]],[[6068,6069,6070]],[[6071,6072,6073]],[[6074,6058,6070]],[[6075,6021,6076]],[[6068,6070,6057]],[[6063,6077,6064]],[[6062,6078,6063]],[[6079,6080,6081]],[[6069,6082,6083]],[[6084,6085,6063]],[[6086,6087,6082]],[[6088,6063,6085]],[[6089,6074,6090]],[[6091,6063,6088]],[[6092,6074,6093]],[[6069,6068,6086]],[[6077,6091,6094]],[[6071,6073,6095]],[[6040,6037,5979]],[[5976,5970,6009]],[[6096,6097,6040]],[[6098,6099,6100]],[[6088,6072,6101]],[[6102,6094,6101]],[[6103,6104,6060]],[[6072,6088,6083]],[[6105,6106,6107]],[[6108,6109,5997]],[[6000,6002,6110]],[[6054,6111,6112]],[[6113,5961,6114]],[[6015,6115,6116]],[[6117,6118,6119]],[[6093,6069,6083]],[[6103,6120,6121]],[[6121,6083,6087]],[[6069,6086,6082]],[[6122,6030,6086]],[[6082,6087,6083]],[[6048,6059,6060]],[[6083,6121,6073]],[[6047,6086,6030]],[[6123,6124,6125]],[[6126,6127,6128]],[[6035,6126,6129]],[[6124,6130,5981]],[[6013,6025,6014]],[[6131,5975,6029]],[[6041,6132,6133]],[[6099,6024,6134]],[[6119,6089,6085]],[[6070,6069,6093]],[[5987,6017,6022]],[[6081,6110,6051]],[[6083,6073,6072]],[[6067,6135,6136]],[[6137,6039,6034]],[[6037,5977,5979]],[[6138,6018,6014]],[[6139,6140,6141]],[[6142,6143,6144]],[[5958,5998,5959]],[[6144,6145,6142]],[[6146,6106,6105]],[[6106,6147,6143]],[[6148,6109,6149]],[[6108,6150,6149]],[[6151,6147,6146]],[[6152,6058,6089]],[[6080,6079,6111]],[[6051,6153,6154]],[[6155,6002,6054]],[[6051,6154,6049]],[[6156,6155,6157]],[[6081,6080,6001]],[[6158,6119,6085]],[[6159,6118,6160]],[[6074,6070,6093]],[[6158,6117,6119]],[[6058,6057,6070]],[[6092,6090,6074]],[[6119,6152,6089]],[[6118,6056,6152]],[[6118,6159,6056]],[[6161,6162,6163]],[[5980,6124,5981]],[[6163,6125,6164]],[[6164,5982,6032]],[[6165,6166,6031]],[[6038,6041,6036]],[[6035,5978,6126]],[[5978,5977,6126]],[[6098,6167,6096]],[[6007,6161,6025]],[[6144,6168,6145]],[[6107,6106,6143]],[[6169,6170,6171]],[[6172,6173,6174]],[[6142,6171,6105]],[[6175,6176,5925]],[[6177,6178,6021]],[[6076,6021,6020]],[[6110,6002,6155]],[[6179,6180,6178]],[[6181,6182,6183]],[[6184,6163,6164]],[[6185,6182,6181]],[[6186,6187,6188]],[[6182,6185,6189]],[[6141,6190,6191]],[[6192,6189,5968]],[[6188,6190,5975]],[[6193,6194,6195]],[[6196,6197,6198]],[[6199,6182,6192]],[[6181,6200,6139]],[[6140,6190,6141]],[[6032,5982,5981]],[[6201,6183,6202]],[[5968,6193,5969]],[[6112,6203,6055]],[[6078,6204,6158]],[[6010,6018,6011]],[[6014,6025,6138]],[[5977,6127,6126]],[[6041,6133,6205]],[[6124,6035,6130]],[[6206,6044,6042]],[[6130,6035,6129]],[[6124,6123,6034]],[[5981,6130,6033]],[[6128,6127,6207]],[[6208,6129,6128]],[[6209,6208,6128]],[[6206,6042,6205]],[[6133,6003,6205]],[[6127,6036,6043]],[[6210,6005,5974]],[[6127,6043,6207]],[[6211,5974,5973]],[[6212,6045,6206]],[[6042,6041,6205]],[[6043,6042,6044]],[[6127,5977,6036]],[[6094,6076,6213]],[[6214,6215,6203]],[[6216,6217,6020]],[[6213,6064,6094]],[[6121,6218,6103]],[[6121,6087,6218]],[[5936,5959,5932]],[[6219,5964,5966]],[[6151,6220,6173]],[[5937,6176,6173]],[[6150,6174,6148]],[[6221,6222,6223]],[[6150,6147,6174]],[[6147,6106,6146]],[[6034,6123,6137]],[[6034,6035,6124]],[[6224,6007,5983]],[[6006,5976,5983]],[[6137,6161,6039]],[[6163,6184,6025]],[[6166,5983,6031]],[[6166,6098,6096]],[[6225,6226,6227]],[[6227,5931,5930]],[[6157,6065,6228]],[[6177,6179,6178]],[[6190,6164,6229]],[[6230,6043,6045]],[[6231,6208,5973]],[[6208,6130,6129]],[[6232,6027,6026]],[[5967,6199,6192]],[[5984,6024,6031]],[[5984,5976,6023]],[[6061,6052,6115]],[[6061,6008,6012]],[[6026,6115,6052]],[[6195,6194,6197]],[[6233,6208,6209]],[[6129,6126,6128]],[[6234,6235,6168]],[[6169,6171,6145]],[[6044,6206,6045]],[[6206,6205,6236]],[[6206,6236,6212]],[[6205,6003,6005]],[[6210,6045,6212]],[[6237,5974,6211]],[[6209,6207,5973]],[[6209,6128,6207]],[[6237,6210,5974]],[[6236,6205,6005]],[[6184,6138,6025]],[[6184,6200,6138]],[[6081,6001,6110]],[[6001,6111,6002]],[[6202,6183,6182]],[[6200,6184,6139]],[[6185,6181,6141]],[[6238,6018,6200]],[[6027,6232,6239]],[[6011,6018,6201]],[[6183,6238,6181]],[[6018,6138,6200]],[[6181,6238,6200]],[[6183,6201,6238]],[[5936,5964,6240]],[[5938,6241,6108]],[[6242,5965,5964]],[[6143,6150,6108]],[[5938,6108,5939]],[[6149,6109,6108]],[[6107,6142,6105]],[[6243,6244,6245]],[[6246,6244,6243]],[[6247,6245,6171]],[[6150,6148,6149]],[[6174,6248,6221]],[[5939,6108,5997]],[[6109,6221,6223]],[[5939,5997,5996]],[[6223,6176,6175]],[[6197,6194,6249]],[[5968,6189,6187]],[[6185,6191,6189]],[[6188,5975,6250]],[[5968,6187,6193]],[[6191,6190,6188]],[[6251,6250,5975]],[[6186,6193,6187]],[[6252,6197,6249]],[[6194,6193,6186]],[[6198,6253,6196]],[[6028,6115,6026]],[[6254,6015,6116]],[[6254,5969,6255]],[[6207,6256,6257]],[[6207,6043,6256]],[[6210,6230,6045]],[[6256,6043,6230]],[[6207,6257,5973]],[[6256,6230,6257]],[[6120,6095,6073]],[[6021,6258,6259]],[[6019,6021,6178]],[[6075,6102,6260]],[[6261,6021,6259]],[[6020,6062,6213]],[[6072,6102,6101]],[[6102,6071,6260]],[[6102,6076,6094]],[[6075,6258,6021]],[[6020,6213,6076]],[[6062,6064,6213]],[[6102,6075,6076]],[[6102,6072,6071]],[[6104,6046,6048]],[[6030,6029,6060]],[[6103,6218,6046]],[[6087,6086,6218]],[[6056,6159,6081]],[[6110,6153,6051]],[[6262,6263,6049]],[[6225,6227,6050]],[[6156,6157,6228]],[[6065,6226,6228]],[[6189,6191,6187]],[[6185,6141,6191]],[[5993,5954,5956]],[[6264,6265,6266]],[[6262,6156,6228]],[[6267,6268,6157]],[[6153,6156,6154]],[[6155,6267,6157]],[[5930,6050,6227]],[[6263,6225,6050]],[[6043,6036,6042]],[[5977,6037,6036]],[[6229,5973,5975]],[[6233,6209,5973]],[[6033,6231,6229]],[[6033,6130,6231]],[[5973,6208,6233]],[[6231,6130,6208]],[[6257,6269,6211]],[[6257,6230,6269]],[[6232,6202,6239]],[[6182,6189,6192]],[[6199,6202,6182]],[[6232,6201,6202]],[[5968,5967,6192]],[[6239,6202,6199]],[[6125,5980,5982]],[[6125,6124,5980]],[[6061,6015,6017]],[[6061,6115,6015]],[[6122,6086,6068]],[[6068,6057,6056]],[[6203,6112,6078]],[[6062,6020,6214]],[[6083,6092,6093]],[[6089,6058,6074]],[[6088,6092,6083]],[[6090,6085,6089]],[[6022,6081,6051]],[[6159,6160,6081]],[[5966,5940,5957]],[[5939,5958,5957]],[[6219,5966,5959]],[[5965,6242,5938]],[[6047,6030,6059]],[[6122,6022,6030]],[[6270,6137,6123]],[[6270,6162,6137]],[[6168,6235,6271]],[[6272,6246,6169]],[[5936,6234,5964]],[[6273,6274,6275]],[[6234,6168,5964]],[[6144,6108,6241]],[[6242,6241,5938]],[[6242,6168,6144]],[[5966,5938,5940]],[[5966,5965,5938]],[[6249,6186,6250]],[[6249,6194,6186]],[[6088,6090,6092]],[[6088,6085,6090]],[[6041,6038,6132]],[[6166,6165,6098]],[[6097,6167,6132]],[[6132,6003,6133]],[[6103,6071,6095]],[[6258,6136,6259]],[[6140,6164,6190]],[[6140,6139,6164]],[[5955,6276,6277]],[[5962,5961,6278]],[[6279,6280,6281]],[[6100,6004,6003]],[[5956,5963,6282]],[[5956,5955,5990]],[[6109,6223,5997]],[[5925,5996,5995]],[[5995,6223,6283]],[[6221,6148,6174]],[[6279,6277,6280]],[[6266,5985,5987]],[[6284,6276,5993]],[[6276,6280,6277]],[[5962,6266,5947]],[[6099,6098,6024]],[[6061,6009,6008]],[[6023,5976,6009]],[[6278,6285,5962]],[[6266,6265,5985]],[[6278,5961,6113]],[[6281,6280,6286]],[[5972,6010,6012]],[[5972,5971,6010]],[[6100,5987,6004]],[[6266,6287,6264]],[[6214,6203,6078]],[[6079,6081,6160]],[[6063,6078,6084]],[[6160,6118,6117]],[[6155,6053,6180]],[[6215,6214,6217]],[[6053,6216,6019]],[[6217,6214,6020]],[[6174,6147,6172]],[[6150,6143,6147]],[[6260,6258,6075]],[[6060,6136,6258]],[[6103,6260,6071]],[[6060,6258,6260]],[[6100,6099,6134]],[[6100,6003,6098]],[[6262,6225,6263]],[[6228,6226,6225]],[[6121,6120,6073]],[[6046,6104,6103]],[[6288,6253,6198]],[[6289,6015,6196]],[[6250,6252,6249]],[[6253,6290,6291]],[[6251,6292,6252]],[[6198,6197,6292]],[[6288,6198,6251]],[[6292,6197,6252]],[[6254,6027,5967]],[[6027,6239,5967]],[[6193,6195,5969]],[[6293,6015,6254]],[[6015,6293,6196]],[[6255,5969,6293]],[[5966,5957,5959]],[[6294,5939,5957]],[[6230,6237,6269]],[[6212,6236,6210]],[[5960,6282,5962]],[[5962,6282,5963]],[[6283,6175,5925]],[[6283,6223,6175]],[[6055,6203,6215]],[[6112,6295,6204]],[[6170,6246,6243]],[[6151,6173,6172]],[[6218,6047,6046]],[[6218,6086,6047]],[[6271,6169,6145]],[[6271,6235,6273]],[[6271,6273,6169]],[[6275,6244,6246]],[[6273,6275,6272]],[[6275,6246,6272]],[[5983,6096,6040]],[[5983,6166,6096]],[[6079,6112,6111]],[[6079,6295,6112]],[[6278,6113,6285]],[[5989,5988,6281]],[[6289,6196,6291]],[[6293,6197,6196]],[[6011,6201,6232]],[[6018,6238,6201]],[[6061,6100,6134]],[[6017,5987,6100]],[[6264,6287,6280]],[[6285,6113,6286]],[[6114,5989,6281]],[[6279,5988,5990]],[[6155,6180,6267]],[[6053,6178,6180]],[[6143,6142,6107]],[[6145,6171,6142]],[[6190,6229,5975]],[[6231,5973,6229]],[[6011,6026,6052]],[[6011,6232,6026]],[[6027,6254,6116]],[[6255,6293,6254]],[[6100,6061,6017]],[[6023,6009,6061]],[[6097,6038,6037]],[[6167,6098,6132]],[[6097,6132,6038]],[[6098,6003,6132]],[[6173,6248,6174]],[[6222,6176,6223]],[[6222,6221,6248]],[[6109,6148,6221]],[[6137,6162,6161]],[[6270,6125,6163]],[[6016,6290,6029]],[[6289,6291,6290]],[[6110,6001,6000]],[[6080,6111,6001]],[[6053,6019,6178]],[[6216,6020,6019]],[[6116,6028,6027]],[[6116,6115,6028]],[[6153,6155,6156]],[[6153,6110,6155]],[[6181,6139,6141]],[[6184,6164,6139]],[[6136,6135,6259]],[[6136,6226,6067]],[[6254,5967,5969]],[[6239,6199,5967]],[[6040,6097,6037]],[[6096,6167,6097]],[[6016,6289,6290]],[[6016,6015,6289]],[[6293,6195,6197]],[[6293,5969,6195]],[[6290,6288,6131]],[[6198,6292,6251]],[[6235,6296,6273]],[[6274,6244,6275]],[[6157,6268,6065]],[[6267,6180,6179]],[[6161,6163,6025]],[[6162,6270,6163]],[[6257,6211,5973]],[[6269,6237,6211]],[[6286,6114,6281]],[[5961,5963,5989]],[[5947,6266,5987]],[[6287,6286,6280]],[[5937,6245,6244]],[[5937,6173,6245]],[[6196,6253,6291]],[[6288,6290,6253]],[[6290,6131,6029]],[[6251,5975,6131]],[[6229,6032,6033]],[[6229,6164,6032]],[[5940,6294,5957]],[[5940,5939,6294]],[[6134,6023,6061]],[[6134,6024,6023]],[[6135,6261,6259]],[[6177,6021,6261]],[[6135,6179,6261]],[[6261,6179,6177]],[[6223,5995,5997]],[[6283,5925,5995]],[[6007,6224,6161]],[[6224,6040,6039]],[[6040,6224,5983]],[[6039,6161,6224]],[[6171,6170,6247]],[[6169,6246,6170]],[[6053,6217,6216]],[[6053,6215,6217]],[[6156,6262,6049]],[[6228,6225,6262]],[[6024,6165,6031]],[[6024,6098,6165]],[[6120,6103,6095]],[[6060,6260,6103]],[[6155,6054,6053]],[[6002,6111,6054]],[[6234,6296,6235]],[[5937,6244,6274]],[[5964,6168,6242]],[[6271,6145,6168]],[[6108,6144,6143]],[[6241,6242,6144]],[[6173,6222,6248]],[[6173,6176,6222]],[[5936,6296,6234]],[[5937,6274,6273]],[[6169,6273,6272]],[[6296,5937,6273]],[[6171,6220,6105]],[[6171,6245,6220]],[[6105,6220,6146]],[[6245,6173,6220]],[[6147,6151,6172]],[[6146,6220,6151]],[[6247,6243,6245]],[[6247,6170,6243]],[[6091,6077,6063]],[[6094,6064,6077]],[[6101,6091,6088]],[[6101,6094,6091]],[[6288,6251,6131]],[[6252,6250,6251]],[[5960,5962,5947]],[[6285,6266,5962]],[[6118,6152,6119]],[[6056,6058,6152]],[[6214,6078,6062]],[[6204,6117,6158]],[[6112,6204,6078]],[[6295,6160,6204]],[[6296,5936,5937]],[[6240,5959,5936]],[[6268,6066,6065]],[[6268,6267,6179]],[[6067,6179,6135]],[[6066,6268,6179]],[[6006,6013,5971]],[[6006,6025,6013]],[[6230,6210,6237]],[[6236,6005,6210]],[[5988,5963,5990]],[[5955,5954,6276]],[[5955,6277,5991]],[[5954,5993,6276]],[[6136,6227,6226]],[[6136,5931,6227]],[[6084,6158,6085]],[[6084,6078,6158]],[[6053,6055,6215]],[[6054,6112,6055]],[[6297,6298,5935]],[[6299,5917,5916]],[[6285,6287,6266]],[[6285,6286,6287]],[[5994,5916,5918]],[[6298,6299,5916]],[[6240,6219,5959]],[[6240,5964,6219]],[[5988,6279,6281]],[[5991,6277,6279]],[[6164,6125,5982]],[[6270,6123,6125]],[[6300,6299,6298]],[[5998,5917,6299]],[[6065,6067,6226]],[[6066,6179,6067]],[[6186,6188,6250]],[[6187,6191,6188]],[[6297,5935,5932]],[[6298,5916,5935]],[[6113,6114,6286]],[[5961,5989,6114]],[[5998,6297,5932]],[[6300,6298,6297]],[[6204,6160,6117]],[[6295,6079,6160]],[[6104,6048,6060]],[[6047,6059,6048]],[[5992,6284,5993]],[[6284,6280,6276]],[[6156,6049,6154]],[[6263,6050,6049]],[[6264,6284,5992]],[[6264,6280,6284]],[[6279,5990,5991]],[[5963,5956,5990]],[[5959,5998,5932]],[[5958,5999,5998]],[[5998,6300,6297]],[[5998,6299,6300]],[[5979,6034,6040]],[[5979,5978,6034]],[[6022,6051,5926]],[[6022,6056,6081]],[[6051,5930,5926]],[[6051,6050,5930]],[[5987,6022,5947]],[[6017,6029,6022]],[[6022,6068,6056]],[[6022,6122,6068]],[[6301,5931,6136]],[[6060,6301,6136]],[[6302,6029,5975]],[[5974,6302,5975]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c179213-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[6303,6304,6305]],[[6306,6307,6308]],[[6309,6310,6311]],[[6312,6313,6314]],[[6315,6316,6317]],[[6318,6315,6319]],[[5926,6315,6317]],[[6320,6321,6322]],[[6307,6323,6324]],[[6325,6315,6318]],[[6308,6326,6327]],[[6328,6329,6330]],[[6331,6332,6323]],[[6308,6327,6306]],[[6333,6334,6335]],[[6336,6337,6338]],[[6339,6340,6326]],[[6341,6342,6343]],[[5926,6317,6344]],[[6345,6346,6317]],[[6347,6325,6318]],[[6348,6349,6350]],[[6325,6340,6315]],[[6316,6315,6340]],[[6351,6352,6345]],[[6334,6353,6335]],[[6354,6308,6324]],[[6306,6326,6355]],[[6333,6347,6318]],[[6326,6340,6325]],[[6356,6357,6329]],[[6358,5953,6359]],[[6360,6361,6321]],[[6362,6363,6364]],[[6334,6360,6365]],[[6366,6367,6314]],[[6328,6330,6368]],[[6316,6339,6308]],[[6324,6308,6307]],[[6354,6316,6308]],[[6365,6353,6334]],[[6369,6370,6371]],[[6372,6373,6362]],[[6321,6365,6360]],[[6353,6365,6321]],[[6319,6315,6374]],[[6353,6320,6373]],[[6312,5926,6304]],[[6375,6310,6376]],[[6377,6378,6359]],[[6311,6379,6309]],[[6380,6381,6382]],[[6335,6355,6333]],[[6383,6307,6306]],[[6326,6347,6355]],[[6318,6360,6333]],[[6384,6385,6386]],[[6387,6388,6389]],[[6390,6391,6392]],[[6311,6375,6393]],[[6351,6345,6330]],[[6353,6373,6335]],[[6369,6394,6395]],[[6396,6397,6358]],[[6333,6360,6334]],[[6318,6319,6360]],[[6398,6399,6400]],[[6401,6402,6399]],[[6320,6374,6403]],[[6322,6361,6374]],[[6326,6306,6327]],[[6355,6383,6306]],[[6404,6405,6406]],[[6407,6408,6409]],[[6361,6319,6374]],[[6361,6360,6319]],[[6320,6403,6373]],[[6320,6322,6374]],[[6307,6383,6323]],[[6355,6335,6383]],[[6316,6345,6317]],[[6332,6354,6324]],[[6308,6339,6326]],[[6316,6340,6339]],[[6322,6321,6361]],[[6320,6353,6321]],[[6359,6378,6410]],[[6400,6411,6397]],[[6355,6347,6333]],[[6326,6325,6347]],[[6397,6411,6394]],[[6412,6399,6413]],[[6414,6415,6416]],[[5947,6377,6415]],[[6378,6377,5947]],[[6410,6417,6418]],[[6419,6420,6421]],[[6422,6176,6423]],[[6424,6342,6425]],[[6426,6315,6427]],[[6428,6429,6430]],[[6431,6432,6433]],[[5947,6399,6378]],[[6434,6344,6435]],[[6404,6436,6437]],[[6431,6433,6438]],[[6437,6432,6370]],[[6407,6439,6440]],[[6367,6441,5926]],[[6442,6443,6444]],[[6445,6359,5953]],[[6415,6377,6359]],[[6430,6446,6447]],[[6448,6449,6349]],[[6431,6438,6371]],[[6450,6451,6452]],[[6453,6449,6454]],[[6448,6454,6449]],[[6455,6382,6456]],[[6457,6458,6459]],[[6455,6460,6461]],[[6462,6449,6438]],[[6370,6431,6371]],[[6370,6432,6431]],[[6408,6407,6440]],[[6463,6464,6376]],[[6465,6466,6467]],[[6390,6468,6469]],[[6387,6440,6470]],[[6471,6472,6408]],[[6389,6408,6440]],[[6466,6465,6456]],[[6473,6399,5947]],[[6429,6453,6474]],[[6381,6466,6456]],[[6470,6475,6344]],[[6476,6477,6478]],[[6479,6477,6480]],[[6382,6381,6456]],[[6447,6481,6482]],[[6476,6480,6477]],[[6483,6459,6484]],[[6485,6389,6388]],[[6465,6455,6456]],[[6486,6335,6357]],[[6487,6488,6489]],[[6490,6491,6492]],[[6490,6423,5953]],[[6493,6433,6348]],[[6494,6495,6496]],[[6479,6497,6466]],[[6479,6466,6381]],[[6432,6436,6496]],[[6474,6473,6429]],[[6429,6479,6381]],[[6484,6375,6464]],[[6494,6433,6495]],[[6432,6437,6436]],[[6411,6413,6394]],[[6496,6399,6473]],[[6498,6458,6488]],[[6499,6385,6500]],[[6491,6501,6386]],[[6492,6502,6337]],[[6503,6504,6505]],[[6506,6507,6508]],[[6509,6508,6510]],[[6463,6511,6512]],[[6513,6514,6515]],[[6384,6317,6500]],[[6516,6517,6513]],[[6507,6513,6515]],[[6317,6384,6501]],[[6336,6338,6518]],[[6503,6505,6519]],[[6508,6507,6490]],[[6490,6510,6508]],[[6507,6491,6490]],[[6520,6521,6519]],[[6521,6517,6516]],[[6497,6467,6466]],[[6461,6476,6471]],[[6522,6523,6524]],[[6520,6519,6505]],[[6525,6526,6527]],[[6315,5926,6427]],[[6397,6396,6400]],[[6402,6378,6399]],[[6398,6528,6401]],[[6398,6529,6528]],[[6529,6396,6358]],[[6398,6400,6396]],[[6529,6417,6528]],[[6418,6358,6410]],[[6429,6428,6453]],[[6449,6350,6349]],[[6448,6474,6454]],[[6428,6482,6530]],[[5926,6344,5947]],[[6375,6531,6393]],[[6440,6387,6389]],[[6344,6532,6387]],[[6440,6439,6470]],[[6407,6409,6533]],[[6498,6534,6435]],[[6535,6536,6450]],[[6479,6537,6477]],[[6538,6439,6533]],[[6539,6517,6520]],[[6514,6501,6515]],[[6481,6382,6530]],[[6408,6489,6471]],[[6474,6453,6454]],[[6530,6449,6453]],[[6540,6343,6541]],[[6363,6403,6374]],[[6542,6543,6427]],[[6544,6363,6374]],[[6545,6341,6543]],[[6546,6363,6544]],[[6315,6547,6374]],[[6548,6549,6550]],[[6438,6449,6371]],[[6530,6482,6481]],[[6551,6445,5953]],[[6415,6359,6445]],[[6338,6346,6518]],[[6346,6345,6352]],[[6518,6352,6351]],[[6518,6346,6352]],[[6552,6351,6553]],[[6552,6518,6351]],[[6309,6376,6310]],[[6464,6375,6376]],[[6426,6547,6315]],[[6554,6372,6546]],[[6555,6512,6556]],[[6557,6489,6558]],[[6386,6385,6491]],[[6336,6552,6357]],[[6337,6502,6559]],[[6500,6317,6560]],[[6515,6501,6491]],[[6501,6384,6386]],[[6393,6561,6562]],[[6563,6564,6565]],[[6566,6542,6427]],[[6545,6543,6542]],[[6553,6329,6357]],[[6323,6332,6324]],[[6553,6330,6329]],[[6332,6316,6354]],[[6486,6567,6568]],[[6330,6345,6368]],[[6331,6568,6332]],[[6569,6356,6328]],[[6570,6332,6568]],[[6570,6316,6332]],[[6492,6337,6336]],[[6518,6552,6336]],[[6571,6441,6572]],[[6573,5926,6441]],[[6574,6419,6421]],[[6421,6176,6574]],[[6344,6479,5947]],[[6575,6537,6479]],[[6407,6533,6439]],[[6469,6576,6390]],[[6387,6470,6344]],[[6577,6578,6579]],[[6538,6475,6470]],[[6580,6409,6581]],[[6580,6581,6475]],[[6472,6471,6582]],[[6538,6580,6475]],[[6533,6409,6580]],[[6482,6428,6430]],[[6530,6453,6428]],[[6369,6404,6437]],[[6405,6395,6406]],[[6560,6502,6499]],[[6559,6583,6337]],[[6362,6364,6372]],[[6550,6584,6585]],[[6541,6342,6424]],[[6586,6587,6426]],[[6526,6425,6588]],[[6546,6364,6363]],[[6372,6589,6590]],[[6590,6548,6550]],[[6425,6372,6585]],[[6335,6373,6372]],[[6591,6526,6592]],[[6592,6526,6593]],[[6444,6443,6594]],[[6341,6425,6342]],[[6595,6425,6526]],[[6588,6341,6545]],[[6566,6592,6593]],[[6566,6596,6592]],[[6587,6554,6547]],[[6372,6364,6546]],[[6591,6527,6526]],[[6597,6598,6525]],[[6599,6525,6527]],[[6598,6526,6525]],[[6600,6443,6442]],[[6594,6601,6602]],[[6571,6442,6444]],[[6603,6600,6442]],[[6604,6603,6572]],[[6605,6600,6603]],[[6590,6589,6586]],[[6372,6554,6589]],[[6537,6478,6477]],[[6576,6469,6472]],[[6391,6582,6478]],[[6478,6471,6476]],[[6497,6606,6607]],[[6606,6479,6480]],[[6582,6576,6472]],[[6390,6392,6468]],[[6608,6609,6472]],[[6609,6409,6408]],[[6473,6448,6349]],[[6473,6474,6448]],[[6366,6604,6367]],[[6603,6442,6571]],[[6558,6610,6484]],[[6531,6317,6539]],[[6335,6492,6357]],[[6492,6425,6490]],[[6510,6490,6503]],[[6507,6515,6491]],[[6393,6531,6561]],[[6539,6520,6505]],[[6504,6611,6539]],[[6612,6539,6611]],[[6371,6382,5953]],[[6336,6357,6492]],[[6463,6512,6555]],[[6489,6557,6512]],[[6523,6522,6379]],[[6379,6522,6613]],[[6613,6309,6379]],[[6613,6376,6309]],[[6613,6463,6376]],[[6613,6511,6463]],[[6489,6488,6458]],[[6487,6408,6485]],[[6614,6498,6488]],[[6615,6459,6458]],[[6312,6304,6616]],[[5926,5925,6305]],[[6493,6462,6438]],[[6350,6449,6462]],[[6499,6500,6560]],[[6385,6384,6500]],[[6344,6375,6435]],[[6506,6513,6507]],[[6317,6517,6539]],[[6514,6513,6517]],[[6509,6516,6508]],[[6509,6521,6516]],[[6594,6573,6444]],[[6602,6617,6573]],[[6602,6573,6594]],[[6618,6571,6444]],[[6536,6532,6344]],[[6388,6387,6532]],[[6451,6619,6452]],[[6388,6532,6535]],[[6434,6536,6344]],[[6535,6532,6536]],[[6534,6614,6434]],[[6614,6488,6487]],[[6434,6451,6450]],[[6452,6388,6535]],[[6516,6506,6508]],[[6516,6513,6506]],[[6552,6553,6357]],[[6351,6330,6553]],[[6560,6559,6502]],[[6560,6317,6583]],[[6542,6566,6593]],[[6427,6596,6566]],[[6524,6393,6562]],[[6620,6621,6563]],[[6622,6623,6531]],[[6564,6612,6611]],[[6512,6511,6489]],[[6565,6504,6503]],[[6385,6499,6491]],[[6623,6624,6561]],[[6617,6602,6601]],[[6599,6597,6525]],[[6464,6555,6556]],[[6464,6463,6555]],[[6576,6391,6390]],[[6609,6608,6581]],[[6537,6575,6392]],[[6392,6575,6468]],[[6446,6429,6381]],[[6494,6348,6433]],[[6598,6595,6526]],[[6425,6585,6424]],[[6584,6625,6424]],[[6626,6627,6343]],[[6584,6424,6585]],[[6625,6549,6427]],[[6590,6586,6548]],[[6589,6587,6586]],[[6503,6522,6624]],[[6624,6562,6561]],[[6503,6563,6565]],[[6425,6423,6490]],[[6628,6629,6630]],[[6305,5925,6420]],[[6422,6631,6632]],[[6633,6303,6634]],[[6422,6632,6176]],[[6634,6303,6305]],[[6635,6628,6422]],[[6633,6631,6422]],[[6422,6636,6633]],[[6304,5926,6305]],[[6632,6574,6176]],[[6637,6305,6420]],[[6632,6637,6574]],[[6637,6420,6419]],[[6497,6460,6467]],[[6461,6471,6455]],[[6423,6635,6422]],[[6638,6304,6629]],[[6639,6640,6635]],[[6640,6304,6638]],[[6422,6628,6630]],[[6628,6635,6629]],[[6537,6391,6478]],[[6537,6392,6391]],[[6434,6614,6451]],[[6451,6487,6619]],[[6450,6452,6535]],[[6619,6485,6452]],[[6313,6312,6616]],[[6314,5926,6312]],[[6462,6493,6350]],[[6438,6433,6493]],[[6423,6366,6314]],[[6366,6605,6604]],[[6547,6426,6587]],[[6549,6584,6550]],[[6626,6625,6427]],[[6548,6586,6426]],[[6543,6626,6427]],[[6627,6341,6343]],[[6549,6426,6427]],[[6549,6548,6426]],[[6540,6625,6626]],[[6584,6549,6625]],[[6600,6595,6443]],[[6595,6601,6594]],[[6441,6367,6572]],[[6366,6423,6605]],[[6636,6630,6303]],[[6634,6305,6637]],[[6383,6486,6323]],[[6383,6335,6486]],[[6570,6567,6641]],[[6486,6357,6567]],[[6486,6331,6323]],[[6486,6568,6331]],[[6574,6637,6419]],[[6632,6631,6634]],[[6519,6521,6509]],[[6520,6517,6521]],[[6398,6401,6399]],[[6528,6417,6402]],[[6598,6597,6601]],[[6642,6427,6617]],[[6591,6642,6527]],[[6617,6601,6597]],[[6310,6375,6311]],[[6464,6556,6484]],[[6414,6416,5953]],[[6415,6445,6416]],[[6641,6356,6569]],[[6345,6316,6368]],[[6641,6643,6570]],[[6368,6316,6570]],[[6395,6413,6406]],[[6411,6400,6412]],[[6404,6369,6405]],[[6394,6413,6395]],[[6493,6348,6350]],[[6433,6432,6495]],[[6607,6606,6480]],[[6497,6479,6606]],[[6610,6457,6483]],[[6459,6615,6484]],[[6457,6459,6483]],[[6458,6498,6615]],[[6484,6610,6483]],[[6489,6458,6457]],[[6489,6610,6558]],[[6489,6457,6610]],[[6556,6557,6558]],[[6556,6512,6557]],[[6314,6367,5926]],[[6604,6572,6367]],[[6635,6638,6629]],[[6640,6639,6644]],[[6625,6540,6424]],[[6343,6342,6541]],[[6343,6540,6626]],[[6541,6424,6540]],[[6567,6356,6641]],[[6567,6357,6356]],[[6643,6328,6368]],[[6356,6329,6328]],[[6643,6569,6328]],[[6643,6641,6569]],[[6529,6358,6418]],[[6397,6371,6358]],[[6359,6410,6358]],[[6378,6402,6410]],[[6593,6545,6542]],[[6588,6425,6341]],[[6604,6605,6603]],[[6443,6595,6594]],[[6423,6600,6605]],[[6423,6595,6600]],[[6560,6583,6559]],[[6317,6346,6583]],[[6581,6608,6475]],[[6468,6575,6577]],[[6531,6375,6317]],[[6344,6317,6375]],[[6489,6490,5953]],[[6624,6522,6562]],[[6489,6503,6490]],[[6522,6511,6613]],[[6596,6591,6592]],[[6596,6642,6591]],[[6528,6402,6401]],[[6417,6410,6402]],[[6547,6544,6374]],[[6547,6546,6544]],[[6382,6471,6489]],[[6382,6455,6471]],[[6468,6579,6469]],[[6609,6408,6472]],[[6469,6579,6472]],[[6468,6577,6579]],[[6460,6607,6461]],[[6480,6476,6461]],[[6465,6460,6455]],[[6607,6480,6461]],[[6358,6371,5953]],[[6449,6530,6382]],[[6437,6370,6369]],[[6371,6397,6369]],[[6492,6499,6502]],[[6492,6491,6499]],[[6583,6338,6337]],[[6583,6346,6338]],[[6531,6623,6561]],[[6620,6624,6623]],[[6435,6615,6498]],[[6435,6484,6615]],[[6558,6484,6556]],[[6435,6375,6484]],[[6411,6412,6413]],[[6400,6399,6412]],[[6489,6522,6503]],[[6489,6511,6522]],[[6311,6524,6379]],[[6524,6562,6522]],[[6379,6524,6523]],[[6311,6393,6524]],[[6417,6529,6418]],[[6398,6396,6529]],[[6389,6485,6408]],[[6388,6452,6485]],[[6543,6627,6626]],[[6543,6341,6627]],[[5925,6421,6420]],[[5925,6176,6421]],[[6642,6599,6527]],[[6617,6597,6599]],[[6441,6571,6618]],[[6572,6603,6571]],[[6344,6575,6479]],[[6577,6475,6578]],[[6344,6577,6575]],[[6344,6475,6577]],[[6629,6303,6630]],[[6629,6304,6303]],[[6633,6636,6303]],[[6422,6630,6636]],[[6632,6634,6637]],[[6631,6633,6634]],[[6467,6460,6465]],[[6497,6607,6460]],[[6335,6425,6492]],[[6335,6372,6425]],[[6601,6595,6598]],[[6423,6425,6595]],[[6635,6640,6638]],[[6635,6423,6639]],[[6585,6590,6550]],[[6585,6372,6590]],[[6479,6473,5947]],[[6479,6429,6473]],[[6349,6348,6494]],[[6406,6413,6399]],[[6349,6494,6473]],[[6495,6432,6496]],[[6436,6404,6645]],[[6645,6404,6406]],[[6564,6621,6612]],[[6620,6623,6622]],[[6565,6564,6611]],[[6563,6621,6564]],[[6547,6554,6546]],[[6587,6589,6554]],[[6439,6538,6470]],[[6533,6580,6538]],[[6612,6531,6539]],[[6622,6621,6620]],[[6612,6622,6531]],[[6612,6621,6622]],[[5947,6414,5953]],[[5947,6415,6414]],[[6317,6514,6517]],[[6317,6501,6514]],[[6478,6582,6471]],[[6391,6576,6582]],[[6593,6588,6545]],[[6593,6526,6588]],[[6403,6362,6373]],[[6403,6363,6362]],[[6380,6446,6381]],[[6430,6429,6446]],[[6416,6551,5953]],[[6416,6445,6551]],[[6563,6624,6620]],[[6563,6503,6624]],[[6519,6510,6503]],[[6519,6509,6510]],[[6408,6487,6489]],[[6485,6619,6487]],[[6451,6614,6487]],[[6534,6498,6614]],[[6567,6570,6568]],[[6643,6368,6570]],[[6314,6313,6423]],[[6644,6304,6640]],[[6313,6639,6423]],[[6313,6616,6639]],[[6616,6644,6639]],[[6616,6304,6644]],[[6436,6645,6496]],[[6406,6399,6645]],[[6494,6496,6473]],[[6645,6399,6496]],[[6505,6504,6539]],[[6565,6611,6504]],[[5953,6382,6489]],[[6371,6449,6382]],[[6430,6447,6482]],[[6380,6382,6481]],[[6380,6447,6446]],[[6380,6481,6447]],[[6394,6369,6397]],[[6395,6405,6369]],[[6534,6434,6435]],[[6450,6536,6434]],[[6573,6617,5926]],[[6427,5926,6617]],[[6427,6642,6596]],[[6617,6599,6642]],[[6618,6573,6441]],[[6618,6444,6573]],[[6579,6608,6472]],[[6581,6409,6609]],[[6578,6608,6579]],[[6578,6475,6608]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b31bb8aab-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022858","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027108)","inonderzoek":"0","lokaalid":"G0503.032e68f0452049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.57000017166138,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84931.822 447528.541)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:23)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6646,6647,6648]],[[6649,6650,6648]],[[6647,6651,6648]],[[6648,6652,6649]],[[6649,6652,6653]],[[6648,6651,6652]],[[6654,6655,6656]],[[6656,6655,6657]],[[6656,6657,6646]],[[6646,6657,6647]],[[6658,6654,6648]],[[6648,6654,6656]],[[6648,6656,6646]],[[6659,6658,6650]],[[6650,6658,6648]],[[6660,6659,6649]],[[6649,6659,6650]],[[6661,6660,6653]],[[6653,6660,6649]],[[6662,6661,6652]],[[6652,6661,6653]],[[6663,6662,6651]],[[6651,6662,6652]],[[6655,6663,6657]],[[6657,6663,6647]],[[6647,6663,6651]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bb8ab0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022856","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027109)","inonderzoek":"0","lokaalid":"G0503.032e68f0452149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.17000007629395,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84936.025 447531.543)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:27)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6664,6665,6666]],[[6664,6656,6667]],[[6667,6668,6669]],[[6667,6656,6668]],[[6666,6657,6656]],[[6664,6666,6656]],[[6665,6670,6666]],[[6671,6672,6673]],[[6673,6672,6674]],[[6673,6674,6664]],[[6664,6674,6665]],[[6675,6671,6667]],[[6667,6671,6673]],[[6667,6673,6664]],[[6676,6675,6669]],[[6669,6675,6667]],[[6677,6676,6668]],[[6668,6676,6669]],[[6654,6677,6656]],[[6656,6677,6668]],[[6655,6654,6657]],[[6657,6654,6656]],[[6678,6655,6666]],[[6666,6655,6657]],[[6679,6678,6670]],[[6670,6678,6666]],[[6672,6679,6674]],[[6674,6679,6665]],[[6665,6679,6670]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bb8ab5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022786","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027110)","inonderzoek":"0","lokaalid":"G0503.032e68f0452249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84939.413 447534.185)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[488,487,6674]],[[488,6680,6681]],[[6681,6680,6682]],[[6680,488,6674]],[[6680,6674,6673]],[[504,505,488]],[[488,505,487]],[[6683,504,6681]],[[6681,504,488]],[[6684,6683,6682]],[[6682,6683,6681]],[[6685,6684,6680]],[[6680,6684,6682]],[[6686,6685,6671]],[[6671,6685,6673]],[[6673,6685,6680]],[[6687,6686,6672]],[[6672,6686,6671]],[[6672,6671,6674]],[[6674,6671,6673]],[[505,6687,487]],[[487,6687,6672]],[[487,6672,6674]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbb1ca-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000017304","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027132)","inonderzoek":"0","lokaalid":"G0503.032e68f0452349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.88000011444092,"min-height-surface":-0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84935.378 447488.560)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:78)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[407,410,6688]],[[407,6688,404]],[[404,6688,6689]],[[6688,410,6690]],[[6688,6691,6692]],[[6688,6690,6691]],[[6690,410,413]],[[406,409,407]],[[407,409,410]],[[403,406,404]],[[404,406,407]],[[6693,403,6694]],[[6694,403,6689]],[[6689,403,404]],[[6695,6693,6696]],[[6696,6693,6694]],[[6696,6694,6688]],[[6688,6694,6689]],[[6697,6695,6698]],[[6698,6695,6696]],[[6698,6696,6692]],[[6692,6696,6688]],[[6699,6697,1158]],[[1158,6697,6698]],[[1158,6698,6691]],[[6691,6698,6692]],[[1159,6699,6690]],[[6690,6699,1158]],[[6690,1158,6691]],[[412,1159,413]],[[413,1159,6690]],[[409,412,410]],[[410,412,413]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd90d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026158","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0452e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.25999999046326,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6700,6701,6702]],[[6701,6703,6702]],[[6704,6702,6703]],[[6704,6703,6705]],[[6706,1964,6707]],[[6707,1964,6708]],[[6707,6708,6700]],[[6700,6708,6701]],[[6709,6706,6702]],[[6702,6706,6707]],[[6702,6707,6700]],[[6710,6709,6704]],[[6704,6709,6702]],[[6711,6710,6705]],[[6705,6710,6704]],[[1977,6711,6703]],[[6703,6711,6705]],[[1964,1977,6708]],[[6708,1977,6701]],[[6701,1977,6703]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd912-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000032719","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003246)","inonderzoek":"0","lokaalid":"G0503.032e68f0452f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.26999998092651,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84855.056 447534.320)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:160)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6712,6713,6714]],[[6712,294,296]],[[6714,6715,6716]],[[294,6714,6716]],[[6712,6714,294]],[[6711,1977,6705]],[[6705,1977,6703]],[[6705,6703,6712]],[[6712,6703,6713]],[[6717,6711,295]],[[295,6711,296]],[[296,6711,6705]],[[296,6705,6712]],[[6718,6717,293]],[[293,6717,295]],[[293,295,294]],[[294,295,296]],[[2119,6718,6716]],[[6716,6718,293]],[[6716,293,294]],[[1961,2119,6715]],[[6715,2119,6716]],[[1966,1961,6714]],[[6714,1961,6715]],[[1977,1966,6703]],[[6703,1966,6713]],[[6713,1966,6714]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd917-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017309","identificatiebagvbohoogstehuisnummer":"(1:503010000027072)","identificatiebagvbolaagstehuisnummer":"(1:503010000027071)","inonderzoek":"0","lokaalid":"G0503.032e68f0453049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.129999995231628,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84916.182 447533.963)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:20-22)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[461,463,6719]],[[6719,6720,6721]],[[6719,6722,6720]],[[6722,6723,6724]],[[461,6719,6721]],[[6719,6723,6722]],[[6725,6726,460]],[[460,6726,462]],[[460,462,461]],[[461,462,463]],[[6727,6725,6728]],[[6728,6725,6721]],[[6721,6725,460]],[[6721,460,461]],[[6729,6727,6730]],[[6730,6727,6728]],[[6730,6728,6720]],[[6720,6728,6721]],[[6731,6729,6722]],[[6722,6729,6730]],[[6722,6730,6720]],[[6732,6731,6724]],[[6724,6731,6722]],[[6733,6732,6723]],[[6723,6732,6724]],[[6734,6733,6719]],[[6719,6733,6723]],[[6726,6734,462]],[[462,6734,463]],[[463,6734,6719]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd91c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000017315","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060239)","inonderzoek":"0","lokaalid":"G0503.032e68f0453149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.90000009536743,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84923.713 447522.485)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:15)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6735,6736,6737]],[[6736,6738,6737]],[[6739,6740,6741]],[[6739,6742,6740]],[[6743,6744,6742]],[[6742,6744,6745]],[[6739,6743,6742]],[[6738,6736,6746]],[[6739,6738,6743]],[[6739,6737,6738]],[[6736,6747,6746]],[[6748,6749,6735]],[[6735,6749,6736]],[[6750,6748,6737]],[[6737,6748,6735]],[[6751,6750,6739]],[[6739,6750,6737]],[[6752,6751,6741]],[[6741,6751,6739]],[[6753,6752,6740]],[[6740,6752,6741]],[[6754,6753,6742]],[[6742,6753,6740]],[[6755,6754,6745]],[[6745,6754,6742]],[[6756,6755,6744]],[[6744,6755,6745]],[[6757,6756,6743]],[[6743,6756,6744]],[[6758,6757,6738]],[[6738,6757,6743]],[[6759,6758,6746]],[[6746,6758,6738]],[[6760,6759,6747]],[[6747,6759,6746]],[[6749,6760,6736]],[[6736,6760,6747]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd921-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026312","identificatiebagvbohoogstehuisnummer":"(1:503010000003235)","identificatiebagvbolaagstehuisnummer":"(1:503010000003234)","inonderzoek":"0","lokaalid":"G0503.032e68f0453249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84882.592 447515.552)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:146-146A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6761,6762,6763]],[[6764,6765,6766]],[[6767,6768,6769]],[[6767,6770,6768]],[[6763,6771,6769]],[[6769,6766,6767]],[[6765,6772,6766]],[[6769,6764,6766]],[[6773,6764,6769]],[[6771,6774,6775]],[[6776,6777,6773]],[[6769,6775,6773]],[[6778,6779,6776]],[[6773,6778,6776]],[[6779,6778,6780]],[[6778,6773,6775]],[[6778,6775,6781]],[[6769,6771,6775]],[[6762,6782,6763]],[[6763,6782,6771]],[[6762,6783,6782]],[[6784,6785,6786]],[[6786,6785,6787]],[[6786,6787,6761]],[[6761,6787,6762]],[[6788,6784,6789]],[[6789,6784,6786]],[[6789,6786,6763]],[[6763,6786,6761]],[[6790,6788,6791]],[[6791,6788,6789]],[[6791,6789,6769]],[[6769,6789,6763]],[[6792,6790,2849]],[[2849,6790,6791]],[[2849,6791,6768]],[[6768,6791,6769]],[[2847,6792,6770]],[[6770,6792,2849]],[[6770,2849,6768]],[[2845,2847,6767]],[[6767,2847,6770]],[[2846,2845,6766]],[[6766,2845,6767]],[[2844,2846,6772]],[[6772,2846,6766]],[[2843,2844,6765]],[[6765,2844,6772]],[[2840,2843,6764]],[[6764,2843,6765]],[[2841,2840,6773]],[[6773,2840,6764]],[[2839,2841,6777]],[[6777,2841,6773]],[[2837,2839,6776]],[[6776,2839,6777]],[[2838,2837,6779]],[[6779,2837,6776]],[[3009,2838,6780]],[[6780,2838,6779]],[[3010,3009,6778]],[[6778,3009,6780]],[[3008,3010,6793]],[[6793,3010,6781]],[[6781,3010,6778]],[[6794,3008,6795]],[[6795,3008,6793]],[[6795,6793,6775]],[[6775,6793,6781]],[[6796,6794,6774]],[[6774,6794,6795]],[[6774,6795,6775]],[[6797,6796,6771]],[[6771,6796,6774]],[[6798,6797,6799]],[[6799,6797,6800]],[[6800,6797,6782]],[[6782,6797,6771]],[[6801,6798,6802]],[[6802,6798,6799]],[[6802,6799,6803]],[[6803,6799,6800]],[[6803,6800,6783]],[[6783,6800,6782]],[[6785,6801,6787]],[[6787,6801,6762]],[[6762,6801,6802]],[[6762,6802,6803]],[[6762,6803,6783]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd926-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026311","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003236)","inonderzoek":"0","lokaalid":"G0503.032e68f0453349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.55999994277954,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84879.113 447518.066)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:148)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6804,6793,6805]],[[6806,6807,6808]],[[6793,6804,6808]],[[6807,6806,6809]],[[6806,6808,6810]],[[6806,6810,6811]],[[6810,6808,6804]],[[6810,6804,6812]],[[6812,6804,6813]],[[6805,6795,6814]],[[6804,6805,6815]],[[6793,6795,6805]],[[6816,6817,3008]],[[3008,6817,6794]],[[3008,6794,6793]],[[6793,6794,6795]],[[3005,6816,6808]],[[6808,6816,3008]],[[6808,3008,6793]],[[3006,3005,6807]],[[6807,3005,6808]],[[6818,3006,6809]],[[6809,3006,6807]],[[6819,6818,6806]],[[6806,6818,6809]],[[6820,6819,6821]],[[6821,6819,6811]],[[6811,6819,6806]],[[6822,6820,6823]],[[6823,6820,6821]],[[6823,6821,6810]],[[6810,6821,6811]],[[6824,6822,6825]],[[6825,6822,6823]],[[6825,6823,6812]],[[6812,6823,6810]],[[6826,6824,6827]],[[6827,6824,6825]],[[6827,6825,6813]],[[6813,6825,6812]],[[6828,6826,6829]],[[6829,6826,6827]],[[6829,6827,6804]],[[6804,6827,6813]],[[6830,6828,6831]],[[6831,6828,6829]],[[6831,6829,6815]],[[6815,6829,6804]],[[6832,6830,6805]],[[6805,6830,6831]],[[6805,6831,6815]],[[6833,6832,6814]],[[6814,6832,6805]],[[6817,6833,6794]],[[6794,6833,6795]],[[6795,6833,6814]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd92b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022857","identificatiebagvbohoogstehuisnummer":"(1:503010000027107)","identificatiebagvbolaagstehuisnummer":"(1:503010000027106)","inonderzoek":"0","lokaalid":"G0503.032e68f0453449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.19000005722046,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84928.642 447523.921)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:17-19)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6834,6835,6836]],[[6837,6838,6836]],[[6835,6839,6836]],[[6836,6839,6837]],[[6662,6663,6652]],[[6652,6663,6651]],[[6652,6651,6834]],[[6834,6651,6835]],[[6840,6662,6836]],[[6836,6662,6652]],[[6836,6652,6834]],[[6841,6840,6838]],[[6838,6840,6836]],[[6842,6841,6748]],[[6748,6841,6735]],[[6735,6841,6837]],[[6837,6841,6838]],[[6843,6842,6749]],[[6749,6842,6748]],[[6749,6748,6736]],[[6736,6748,6735]],[[6736,6735,6839]],[[6839,6735,6837]],[[6663,6843,6651]],[[6651,6843,6835]],[[6835,6843,6749]],[[6835,6749,6736]],[[6835,6736,6839]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff40-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000017219","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003238)","inonderzoek":"0","lokaalid":"G0503.032e68f0453549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.54999995231628,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84875.569 447520.559)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:150)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6829,6831,6827]],[[6844,6845,6846]],[[6821,6823,6825]],[[6847,6821,6825]],[[6827,6848,6825]],[[6848,6849,6847]],[[6825,6848,6847]],[[6827,6846,6848]],[[6827,6844,6846]],[[6844,6850,6845]],[[6831,6844,6827]],[[6851,6852,6828]],[[6828,6852,6830]],[[6828,6830,6829]],[[6829,6830,6831]],[[6853,6851,6826]],[[6826,6851,6828]],[[6826,6828,6827]],[[6827,6828,6829]],[[6854,6853,6824]],[[6824,6853,6826]],[[6824,6826,6825]],[[6825,6826,6827]],[[6855,6854,6822]],[[6822,6854,6824]],[[6822,6824,6823]],[[6823,6824,6825]],[[6856,6855,6820]],[[6820,6855,6822]],[[6820,6822,6821]],[[6821,6822,6823]],[[6857,6856,6847]],[[6847,6856,6820]],[[6847,6820,6821]],[[6858,6857,6849]],[[6849,6857,6847]],[[6859,6858,6848]],[[6848,6858,6849]],[[6860,6859,6846]],[[6846,6859,6848]],[[6861,6860,6845]],[[6845,6860,6846]],[[6862,6861,6850]],[[6850,6861,6845]],[[6863,6862,6844]],[[6844,6862,6850]],[[6852,6863,6830]],[[6830,6863,6831]],[[6831,6863,6844]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff45-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000026313","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027061)","inonderzoek":"0","lokaalid":"G0503.032e68f0453649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.45000004768372,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84898.718 447521.039)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:2)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6864,6865,6866]],[[6864,6867,6868]],[[6869,6870,6871]],[[6872,6865,6864]],[[6873,6865,6872]],[[6874,6873,6872]],[[6875,6876,6864]],[[6872,6864,6876]],[[6877,6876,6878]],[[6878,6876,6879]],[[6879,6876,6875]],[[6868,6867,6871]],[[6875,6868,6880]],[[6875,6864,6868]],[[6881,6871,6882]],[[6882,6871,6883]],[[6883,6871,6870]],[[6867,6869,6871]],[[6884,6870,6869]],[[6885,6886,6864]],[[6864,6886,6867]],[[6887,6885,6866]],[[6866,6885,6864]],[[6888,6887,6865]],[[6865,6887,6866]],[[6889,6888,6873]],[[6873,6888,6865]],[[6890,6889,6874]],[[6874,6889,6873]],[[6891,6890,6872]],[[6872,6890,6874]],[[6892,6891,6876]],[[6876,6891,6872]],[[6893,6892,6877]],[[6877,6892,6876]],[[6894,6893,6878]],[[6878,6893,6877]],[[6895,6894,6879]],[[6879,6894,6878]],[[6896,6895,6897]],[[6897,6895,6898]],[[6898,6895,6875]],[[6875,6895,6879]],[[6899,6896,6900]],[[6900,6896,6897]],[[6900,6897,6901]],[[6901,6897,6898]],[[6901,6898,6880]],[[6880,6898,6875]],[[6902,6899,6868]],[[6868,6899,6900]],[[6868,6900,6901]],[[6868,6901,6880]],[[6903,6902,6871]],[[6871,6902,6868]],[[6904,6903,6905]],[[6905,6903,6906]],[[6906,6903,6881]],[[6881,6903,6871]],[[6907,6904,6908]],[[6908,6904,6905]],[[6908,6905,6909]],[[6909,6905,6906]],[[6909,6906,6882]],[[6882,6906,6881]],[[6910,6907,6883]],[[6883,6907,6908]],[[6883,6908,6909]],[[6883,6909,6882]],[[6911,6910,6870]],[[6870,6910,6883]],[[6912,6911,6884]],[[6884,6911,6870]],[[6913,6912,6869]],[[6869,6912,6884]],[[6886,6913,6867]],[[6867,6913,6869]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff4a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000032725","identificatiebagvbohoogstehuisnummer":"(1:503010000027063)","identificatiebagvbolaagstehuisnummer":"(1:503010000027062)","inonderzoek":"0","lokaalid":"G0503.032e68f0453749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.88000011444092,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84901.595 447523.022)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:4-6)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6914,6915,6916]],[[6914,6917,6918]],[[6917,6914,6916]],[[6916,6919,6920]],[[6916,6921,6919]],[[6917,6916,6920]],[[6922,6923,6924]],[[6924,6923,6925]],[[6924,6925,6926]],[[6926,6925,6927]],[[6926,6927,6914]],[[6914,6927,6915]],[[6928,6922,6918]],[[6918,6922,6924]],[[6918,6924,6926]],[[6918,6926,6914]],[[6929,6928,6917]],[[6917,6928,6918]],[[6930,6929,6885]],[[6885,6929,6864]],[[6864,6929,6920]],[[6920,6929,6917]],[[6931,6930,6886]],[[6886,6930,6885]],[[6886,6885,6867]],[[6867,6885,6864]],[[6867,6864,6919]],[[6919,6864,6920]],[[6932,6931,6921]],[[6921,6931,6886]],[[6921,6886,6867]],[[6921,6867,6919]],[[6933,6932,6916]],[[6916,6932,6921]],[[6923,6933,6925]],[[6925,6933,6927]],[[6927,6933,6915]],[[6915,6933,6916]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff4f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026157","identificatiebagvbohoogstehuisnummer":"(1:503010000003244)","identificatiebagvbolaagstehuisnummer":"(1:503010000003241)","inonderzoek":"0","lokaalid":"G0503.032e68f0453849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.24000000953674,"min-height-surface":-0.0399999991059303,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84867.943 447525.170)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:154-154C)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6934,6935,6936]],[[6935,6937,6936]],[[6935,6938,6937]],[[6935,6939,6938]],[[6935,6940,6939]],[[6939,6940,6941]],[[6940,6935,6942]],[[6943,6944,6945]],[[6943,6940,6942]],[[6943,6942,6944]],[[6944,6946,6947]],[[6947,6946,6948]],[[6948,6946,6949]],[[6944,6942,6946]],[[6950,2177,6934]],[[6934,2177,6935]],[[6951,6950,6936]],[[6936,6950,6934]],[[6952,6951,6937]],[[6937,6951,6936]],[[6953,6952,6938]],[[6938,6952,6937]],[[6954,6953,6939]],[[6939,6953,6938]],[[6955,6954,6941]],[[6941,6954,6939]],[[6956,6955,6940]],[[6940,6955,6941]],[[6957,6956,6943]],[[6943,6956,6940]],[[6958,6957,6945]],[[6945,6957,6943]],[[6959,6958,6944]],[[6944,6958,6945]],[[6960,6959,6947]],[[6947,6959,6944]],[[6961,6960,6948]],[[6948,6960,6947]],[[6962,6961,6949]],[[6949,6961,6948]],[[6963,6962,6964]],[[6964,6962,6946]],[[6946,6962,6949]],[[6965,6963,1952]],[[1952,6963,6964]],[[1952,6964,6942]],[[6942,6964,6946]],[[2177,6965,6935]],[[6935,6965,1952]],[[6935,1952,6942]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff54-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017307","identificatiebagvbohoogstehuisnummer":"(1:503010000027065)","identificatiebagvbolaagstehuisnummer":"(1:503010000027064)","inonderzoek":"0","lokaalid":"G0503.032e68f0453949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84904.818 447525.439)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:8-10)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6966,6967,6968]],[[6969,6966,6970]],[[6970,6966,6926]],[[6926,6966,6927]],[[6969,6967,6966]],[[6971,6972,6969]],[[6969,6972,6967]],[[6973,6971,6970]],[[6970,6971,6969]],[[6924,6973,6926]],[[6926,6973,6970]],[[6925,6924,6927]],[[6927,6924,6926]],[[6974,6925,6966]],[[6966,6925,6927]],[[6975,6974,6968]],[[6968,6974,6966]],[[6972,6975,6967]],[[6967,6975,6968]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff59-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017215","identificatiebagvbohoogstehuisnummer":"(1:503010000027067)","identificatiebagvbolaagstehuisnummer":"(1:503010000027066)","inonderzoek":"0","lokaalid":"G0503.032e68f0453a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84908.607 447528.139)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:12-14)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6976,6977,6978]],[[6978,6967,6969]],[[6978,6979,6967]],[[6976,6978,6969]],[[6980,6981,6982]],[[6982,6981,6983]],[[6982,6983,6976]],[[6976,6983,6977]],[[6984,6980,6971]],[[6971,6980,6969]],[[6969,6980,6982]],[[6969,6982,6976]],[[6985,6984,6972]],[[6972,6984,6971]],[[6972,6971,6967]],[[6967,6971,6969]],[[6986,6985,6979]],[[6979,6985,6972]],[[6979,6972,6967]],[[6987,6986,6978]],[[6978,6986,6979]],[[6981,6987,6983]],[[6983,6987,6977]],[[6977,6987,6978]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff5e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026218","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027089)","inonderzoek":"0","lokaalid":"G0503.032e68f0453b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.07999992370605,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84861.651 447529.723)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:156)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6988,6989,6708]],[[6707,6990,6991]],[[6988,6708,6991]],[[6991,6708,6707]],[[6989,6992,6708]],[[6989,6993,6992]],[[6964,1952,6946]],[[6946,1952,6942]],[[6946,6942,6988]],[[6988,6942,6989]],[[6994,6964,6991]],[[6991,6964,6946]],[[6991,6946,6988]],[[6995,6994,6990]],[[6990,6994,6991]],[[6706,6995,6707]],[[6707,6995,6990]],[[1964,6706,6708]],[[6708,6706,6707]],[[2148,1964,6992]],[[6992,1964,6708]],[[1951,2148,6993]],[[6993,2148,6992]],[[1952,1951,6942]],[[6942,1951,6989]],[[6989,1951,6993]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff63-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017218","identificatiebagvbohoogstehuisnummer":"(1:503010000027070)","identificatiebagvbolaagstehuisnummer":"(1:503010000027069)","inonderzoek":"0","lokaalid":"G0503.032e68f0453c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.69000005722046,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.809 447531.432)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:16-18)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6996,6997,6998]],[[6728,6999,6982]],[[6982,6999,6983]],[[6728,6730,6999]],[[6999,6730,6997]],[[6997,6730,6998]],[[7000,7001,6727]],[[6727,7001,6729]],[[6727,6729,6728]],[[6728,6729,6730]],[[7002,7000,6980]],[[6980,7000,6982]],[[6982,7000,6727]],[[6982,6727,6728]],[[7003,7002,6981]],[[6981,7002,6980]],[[6981,6980,6983]],[[6983,6980,6982]],[[7004,7003,6999]],[[6999,7003,6981]],[[6999,6981,6983]],[[7005,7004,6997]],[[6997,7004,6999]],[[7006,7005,6996]],[[6996,7005,6997]],[[7007,7006,6998]],[[6998,7006,6996]],[[7001,7007,6729]],[[6729,7007,6730]],[[6730,7007,6998]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff68-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000017221","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003233)","inonderzoek":"0","lokaalid":"G0503.032e68f0453e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.09999990463257,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.280 447513.169)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:144)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7008,7009,7010]],[[7011,7012,7013]],[[7014,7015,7013]],[[7012,7014,7013]],[[7010,7009,7016]],[[7011,7017,7012]],[[7018,7011,7013]],[[7010,7019,7018]],[[7020,7021,7022]],[[7023,7024,7020]],[[7022,7025,7020]],[[7011,7026,7022]],[[7020,7025,7023]],[[7025,7022,7026]],[[7025,7026,7027]],[[7026,7011,7028]],[[7029,7030,7031]],[[7029,7028,7030]],[[7029,7026,7028]],[[7011,7018,7028]],[[7010,7018,7013]],[[7032,7028,7018]],[[7010,7016,7019]],[[7033,7034,7008]],[[7008,7034,7009]],[[7035,7033,7010]],[[7010,7033,7008]],[[7036,7035,7013]],[[7013,7035,7010]],[[7037,7036,7015]],[[7015,7036,7013]],[[1064,7037,7014]],[[7014,7037,7015]],[[1067,1064,7012]],[[7012,1064,7014]],[[1066,1067,7017]],[[7017,1067,7012]],[[1069,1066,7011]],[[7011,1066,7017]],[[1070,1069,7022]],[[7022,1069,7011]],[[1083,1070,7021]],[[7021,1070,7022]],[[1093,1083,7020]],[[7020,1083,7021]],[[1092,1093,7024]],[[7024,1093,7020]],[[2854,1092,7023]],[[7023,1092,7024]],[[2855,2854,7025]],[[7025,2854,7023]],[[2851,2855,7027]],[[7027,2855,7025]],[[2853,2851,7026]],[[7026,2851,7027]],[[2852,2853,7029]],[[7029,2853,7026]],[[2850,2852,7031]],[[7031,2852,7029]],[[2849,2850,6768]],[[6768,2850,7030]],[[7030,2850,7031]],[[6791,2849,6769]],[[6769,2849,6768]],[[6769,6768,7028]],[[7028,6768,7030]],[[6789,6791,6763]],[[6763,6791,6769]],[[6763,6769,7032]],[[7032,6769,7028]],[[6786,6789,6761]],[[6761,6789,6763]],[[6761,6763,7018]],[[7018,6763,7032]],[[6787,6786,6762]],[[6762,6786,6761]],[[6762,6761,7019]],[[7019,6761,7018]],[[7038,6787,7016]],[[7016,6787,6762]],[[7016,6762,7019]],[[7034,7038,7009]],[[7009,7038,7016]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc267b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027889","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0453f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6901,6906,6800]],[[6901,6803,6898]],[[6901,6800,6803]],[[6906,7039,6800]],[[6906,7040,7039]],[[6906,6909,7040]],[[7040,6909,7041]],[[6900,6905,6901]],[[6901,6905,6906]],[[6897,6900,6898]],[[6898,6900,6901]],[[6802,6897,6803]],[[6803,6897,6898]],[[6799,6802,6800]],[[6800,6802,6803]],[[7042,6799,7039]],[[7039,6799,6800]],[[7043,7042,7040]],[[7040,7042,7039]],[[7044,7043,7041]],[[7041,7043,7040]],[[6908,7044,6909]],[[6909,7044,7041]],[[6905,6908,6906]],[[6906,6908,6909]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2680-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:29.9)","identificatiebagpnd":"503100000017308","identificatiebagvbohoogstehuisnummer":"(1:503010000027144)","identificatiebagvbolaagstehuisnummer":"(1:503010000027143)","inonderzoek":"0","lokaalid":"G0503.032e68f0454049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.11999988555908,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84901.723 447506.067)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:140-142)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7045,7046,7047]],[[7048,7049,7050]],[[7051,7046,7045]],[[7052,7046,7053]],[[7053,7046,7051]],[[7050,7054,7051]],[[7055,7045,7056]],[[7057,7054,7049]],[[7058,7057,7049]],[[7048,7059,7049]],[[7060,7059,7061]],[[7060,7062,7059]],[[7063,7059,7062]],[[7064,7062,7065]],[[7062,7060,7065]],[[7049,7054,7050]],[[7048,7061,7059]],[[7066,7061,7067]],[[7048,7067,7061]],[[7068,7066,7067]],[[7067,7048,7069]],[[7051,7045,7050]],[[7055,7050,7045]],[[7070,7050,7071]],[[7072,7055,7056]],[[7071,7050,7055]],[[7073,7074,7045]],[[7045,7074,7075]],[[7045,7075,7076]],[[7045,7076,7056]],[[7077,7073,7047]],[[7047,7073,7045]],[[7078,7077,7046]],[[7046,7077,7047]],[[7079,7078,7052]],[[7052,7078,7046]],[[7080,7079,7053]],[[7053,7079,7052]],[[7081,7080,7051]],[[7051,7080,7053]],[[7082,7081,7054]],[[7054,7081,7051]],[[7083,7082,7057]],[[7057,7082,7054]],[[7084,7083,7058]],[[7058,7083,7057]],[[7085,7084,7049]],[[7049,7084,7058]],[[7086,7085,7059]],[[7059,7085,7049]],[[7087,7086,7063]],[[7063,7086,7059]],[[7088,7087,7062]],[[7062,7087,7063]],[[7089,7088,7064]],[[7064,7088,7062]],[[7090,7089,7065]],[[7065,7089,7064]],[[7091,7090,7060]],[[7060,7090,7065]],[[7092,7091,7061]],[[7061,7091,7060]],[[7093,7092,7066]],[[7066,7092,7061]],[[7094,7093,7068]],[[7068,7093,7066]],[[7095,7094,7067]],[[7067,7094,7068]],[[7096,7095,7069]],[[7069,7095,7067]],[[7097,7096,7048]],[[7048,7096,7069]],[[7098,7097,7050]],[[7050,7097,7048]],[[7099,7098,7070]],[[7070,7098,7050]],[[7100,7099,7071]],[[7071,7099,7070]],[[7101,7100,7055]],[[7055,7100,7071]],[[7102,7101,7103]],[[7103,7101,7104]],[[7104,7101,7072]],[[7072,7101,7055]],[[7074,7102,7075]],[[7075,7102,7103]],[[7075,7103,7076]],[[7076,7103,7104]],[[7076,7104,7056]],[[7056,7104,7072]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2685-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:29.9)","identificatiebagpnd":"503100000017313","identificatiebagvbohoogstehuisnummer":"(1:503010000027141)","identificatiebagvbolaagstehuisnummer":"(1:503010000027140)","inonderzoek":"0","lokaalid":"G0503.032e68f0454149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.11999988555908,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84907.181 447503.812)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:136-138)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7105,7106,7056]],[[7107,7108,7109]],[[7105,7056,7109]],[[7109,7110,7107]],[[7109,7056,7110]],[[7110,7056,7045]],[[7106,7111,7056]],[[7112,7113,7114]],[[7114,7113,1874]],[[7114,1874,7115]],[[7115,1874,7116]],[[7115,7116,7105]],[[7105,7116,7106]],[[7117,7112,7109]],[[7109,7112,7114]],[[7109,7114,7115]],[[7109,7115,7105]],[[7118,7117,7108]],[[7108,7117,7109]],[[7119,7118,7107]],[[7107,7118,7108]],[[7120,7119,7110]],[[7110,7119,7107]],[[7121,7120,7073]],[[7073,7120,7045]],[[7045,7120,7110]],[[7122,7121,7074]],[[7074,7121,7073]],[[7074,7073,7075]],[[7075,7073,7076]],[[7076,7073,7056]],[[7056,7073,7045]],[[7123,7122,1877]],[[1877,7122,7074]],[[1877,7074,7075]],[[1877,7075,7124]],[[7124,7075,7076]],[[7124,7076,7111]],[[7111,7076,7056]],[[7113,7123,1874]],[[1874,7123,7116]],[[7116,7123,7106]],[[7106,7123,1877]],[[7106,1877,7124]],[[7106,7124,7111]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc268a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000017314","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027099)","inonderzoek":"0","lokaalid":"G0503.032e68f0454249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.32999992370605,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84911.581 447513.461)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:3)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7125,7126,7127]],[[7125,7127,7128]],[[7129,7076,7124]],[[7130,7127,7126]],[[7129,7104,7076]],[[7129,7131,7104]],[[7104,7131,7132]],[[7129,7127,7131]],[[7133,7134,7127]],[[7131,7127,7134]],[[7134,7135,7136]],[[7135,7134,7133]],[[7137,7130,7126]],[[7133,7127,7130]],[[1878,7138,7139]],[[7139,7138,7140]],[[7139,7140,7125]],[[7125,7140,7126]],[[1873,1878,7128]],[[7128,1878,7139]],[[7128,7139,7125]],[[1870,1873,7127]],[[7127,1873,7128]],[[1871,1870,7129]],[[7129,1870,7127]],[[1877,1871,7124]],[[7124,1871,7129]],[[7075,1877,7076]],[[7076,1877,7124]],[[7103,7075,7104]],[[7104,7075,7076]],[[7141,7103,7132]],[[7132,7103,7104]],[[7142,7141,7131]],[[7131,7141,7132]],[[7143,7142,7134]],[[7134,7142,7131]],[[7144,7143,7136]],[[7136,7143,7134]],[[7145,7144,7135]],[[7135,7144,7136]],[[7146,7145,7133]],[[7133,7145,7135]],[[7147,7146,7130]],[[7130,7146,7133]],[[7148,7147,7137]],[[7137,7147,7130]],[[7138,7148,7140]],[[7140,7148,7126]],[[7126,7148,7137]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2699-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37.6)","identificatiebagpnd":"503100000032234","identificatiebagvbohoogstehuisnummer":"(1:503010000027139)","identificatiebagvbolaagstehuisnummer":"(1:503010000027137)","inonderzoek":"0","lokaalid":"G0503.032e68f0454549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84911.526 447499.820)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:134-134A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7149,7150,7151]],[[7152,7153,7154]],[[7150,7149,7154]],[[7154,7155,7152]],[[7152,7155,7156]],[[7155,7154,7157]],[[7157,7115,7158]],[[7157,7154,7116]],[[7158,7115,7159]],[[7157,7116,7115]],[[7154,7149,7116]],[[7150,7160,7151]],[[7151,7160,7161]],[[7151,7161,7162]],[[7163,7160,7164]],[[7161,7165,7166]],[[7161,7163,7165]],[[7161,7160,7163]],[[7167,7168,7150]],[[7150,7168,7160]],[[7169,7167,7154]],[[7154,7167,7150]],[[7170,7169,7153]],[[7153,7169,7154]],[[7171,7170,7152]],[[7152,7170,7153]],[[7172,7171,7156]],[[7156,7171,7152]],[[7173,7172,7155]],[[7155,7172,7156]],[[7174,7173,7157]],[[7157,7173,7155]],[[7175,7174,7158]],[[7158,7174,7157]],[[7176,7175,7159]],[[7159,7175,7158]],[[7114,7176,7115]],[[7115,7176,7159]],[[1874,7114,7116]],[[7116,7114,7115]],[[1868,1874,7149]],[[7149,1874,7116]],[[1865,1868,7151]],[[7151,1868,7149]],[[1866,1865,7162]],[[7162,1865,7151]],[[1861,1866,7161]],[[7161,1866,7162]],[[7177,1861,1862]],[[1862,1861,7178]],[[7178,1861,7166]],[[7166,1861,7161]],[[7179,7177,7180]],[[7180,7177,1862]],[[7180,1862,7181]],[[7181,1862,7178]],[[7181,7178,7165]],[[7165,7178,7166]],[[7182,7179,7163]],[[7163,7179,7180]],[[7163,7180,7181]],[[7163,7181,7165]],[[7183,7182,7164]],[[7164,7182,7163]],[[7168,7183,7160]],[[7160,7183,7164]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc269e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:30.9)","identificatiebagpnd":"503100000017310","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027136)","inonderzoek":"0","lokaalid":"G0503.032e68f0454649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.1800000667572,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.622 447497.659)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:132)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7184,7185,7186]],[[7186,7185,7187]],[[7185,7184,7188]],[[7185,7189,7190]],[[7185,7188,7189]],[[7188,7191,7192]],[[7189,7188,7192]],[[7184,7193,7188]],[[7194,7195,7196]],[[7196,7195,7197]],[[7196,7197,7184]],[[7184,7197,7193]],[[7198,7194,7186]],[[7186,7194,7196]],[[7186,7196,7184]],[[7199,7198,7187]],[[7187,7198,7186]],[[7200,7199,7185]],[[7185,7199,7187]],[[7167,7200,7150]],[[7150,7200,7190]],[[7190,7200,7185]],[[7168,7167,7160]],[[7160,7167,7150]],[[7160,7150,7189]],[[7189,7150,7190]],[[7201,7168,7192]],[[7192,7168,7160]],[[7192,7160,7189]],[[7202,7201,7191]],[[7191,7201,7192]],[[7203,7202,7188]],[[7188,7202,7191]],[[7195,7203,7197]],[[7197,7203,7193]],[[7193,7203,7188]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc26a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022787","identificatiebagvbohoogstehuisnummer":"(1:503010000027101)","identificatiebagvbolaagstehuisnummer":"(1:503010000027100)","inonderzoek":"0","lokaalid":"G0503.032e68f0454749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84913.581 447515.061)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:5-7)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7181,7204,7205]],[[7178,7181,7205]],[[7206,7207,7205]],[[7205,7207,7178]],[[7206,7139,7207]],[[7206,7140,7139]],[[7208,7206,7209]],[[7210,7206,7211]],[[7140,7208,7212]],[[7140,7206,7208]],[[7209,7206,7210]],[[7213,7209,7210]],[[7214,7215,7206]],[[7206,7215,7216]],[[7206,7216,7211]],[[7217,7214,7205]],[[7205,7214,7206]],[[7218,7217,7204]],[[7204,7217,7205]],[[7180,7218,7181]],[[7181,7218,7204]],[[1862,7180,7178]],[[7178,7180,7181]],[[1879,1862,7207]],[[7207,1862,7178]],[[7219,1879,1878]],[[1878,1879,7139]],[[7139,1879,7207]],[[7220,7219,7138]],[[7138,7219,1878]],[[7138,1878,7140]],[[7140,1878,7139]],[[7221,7220,7212]],[[7212,7220,7138]],[[7212,7138,7140]],[[7222,7221,7208]],[[7208,7221,7212]],[[7223,7222,7209]],[[7209,7222,7208]],[[7224,7223,7213]],[[7213,7223,7209]],[[7225,7224,7226]],[[7226,7224,7210]],[[7210,7224,7213]],[[7215,7225,7216]],[[7216,7225,7226]],[[7216,7226,7211]],[[7211,7226,7210]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc26a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:30.9)","identificatiebagpnd":"503100000017303","identificatiebagvbohoogstehuisnummer":"(1:503010000027135)","identificatiebagvbolaagstehuisnummer":"(1:503010000027134)","inonderzoek":"0","lokaalid":"G0503.032e68f0454849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84918.038 447495.615)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:130-130A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7227,7228,7229]],[[7228,7230,7231]],[[7228,7227,7197]],[[7232,7233,7234]],[[7235,7232,7230]],[[7232,7235,7233]],[[7233,7235,7236]],[[7236,7235,7237]],[[7232,7231,7230]],[[7230,7228,7238]],[[7238,7228,7197]],[[7239,7238,7196]],[[7240,7239,7196]],[[7238,7197,7196]],[[7227,7241,7197]],[[7227,7242,7241]],[[7243,7244,7227]],[[7227,7244,7242]],[[7245,7243,7229]],[[7229,7243,7227]],[[7246,7245,7228]],[[7228,7245,7229]],[[7247,7246,7231]],[[7231,7246,7228]],[[7248,7247,7232]],[[7232,7247,7231]],[[7249,7248,7234]],[[7234,7248,7232]],[[1005,7249,7233]],[[7233,7249,7234]],[[998,1005,7236]],[[7236,1005,7233]],[[996,998,7237]],[[7237,998,7236]],[[1002,996,7235]],[[7235,996,7237]],[[1000,1002,7230]],[[7230,1002,7235]],[[1001,1000,7238]],[[7238,1000,7230]],[[999,1001,7239]],[[7239,1001,7238]],[[997,999,7240]],[[7240,999,7239]],[[7250,997,7194]],[[7194,997,7196]],[[7196,997,7240]],[[7251,7250,7195]],[[7195,7250,7194]],[[7195,7194,7197]],[[7197,7194,7196]],[[7252,7251,7241]],[[7241,7251,7195]],[[7241,7195,7197]],[[7244,7252,7242]],[[7242,7252,7241]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dbd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022788","identificatiebagvbohoogstehuisnummer":"(1:503010000027103)","identificatiebagvbolaagstehuisnummer":"(1:503010000027102)","inonderzoek":"0","lokaalid":"G0503.032e68f0454949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.8600001335144,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84917.758 447517.943)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:9-11)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7253,7254,7255]],[[7256,7257,7258]],[[7258,7257,7259]],[[7256,7254,7253]],[[7257,7256,7253]],[[7253,7255,7260]],[[7254,7261,7255]],[[7262,7263,6753]],[[6753,7263,6754]],[[6753,6754,6740]],[[6740,6754,6742]],[[6740,6742,7256]],[[7256,6742,7254]],[[7264,7262,7258]],[[7258,7262,6753]],[[7258,6753,6740]],[[7258,6740,7256]],[[7265,7264,7259]],[[7259,7264,7258]],[[7266,7265,7257]],[[7257,7265,7259]],[[7267,7266,7253]],[[7253,7266,7257]],[[7268,7267,7260]],[[7260,7267,7253]],[[7216,7268,7211]],[[7211,7268,7255]],[[7255,7268,7260]],[[7226,7216,7210]],[[7210,7216,7211]],[[7210,7211,7261]],[[7261,7211,7255]],[[7263,7226,6754]],[[6754,7226,6742]],[[6742,7226,7254]],[[7254,7226,7210]],[[7254,7210,7261]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dc2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:22.9)","identificatiebagpnd":"503100000017311","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027133)","inonderzoek":"0","lokaalid":"G0503.032e68f0454a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.1399998664856,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84928.992 447490.710)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:80)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7269,7270,7271]],[[7270,7272,7271]],[[7271,7272,7273]],[[7273,7272,7274]],[[7275,7274,7272]],[[7272,7270,7276]],[[6696,6698,6688]],[[6688,6698,6692]],[[6688,6692,7269]],[[7269,6692,7270]],[[6694,6696,6689]],[[6689,6696,6688]],[[6689,6688,7271]],[[7271,6688,7269]],[[7277,6694,7273]],[[7273,6694,6689]],[[7273,6689,7271]],[[7278,7277,7274]],[[7274,7277,7273]],[[7279,7278,7275]],[[7275,7278,7274]],[[1263,7279,7272]],[[7272,7279,7275]],[[1158,1263,6691]],[[6691,1263,7276]],[[7276,1263,7272]],[[6698,1158,6692]],[[6692,1158,6691]],[[6692,6691,7270]],[[7270,6691,7276]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dc7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026304","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003296)","inonderzoek":"0","lokaalid":"G0503.032e68f0454b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.05999994277954,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84947.427 447599.451)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:36)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7280,7281,7282]],[[7283,7280,7282]],[[7284,7280,7283]],[[7284,7285,7280]],[[7284,7286,7285]],[[7285,7286,7287]],[[7288,7289,543]],[[543,7289,544]],[[543,544,528]],[[528,544,531]],[[528,531,7284]],[[7284,531,7286]],[[7290,7288,7291]],[[7291,7288,7292]],[[7292,7288,7283]],[[7283,7288,543]],[[7283,543,528]],[[7283,528,7284]],[[7293,7290,7294]],[[7294,7290,7291]],[[7294,7291,7295]],[[7295,7291,7292]],[[7295,7292,7282]],[[7282,7292,7283]],[[7296,7293,7281]],[[7281,7293,7294]],[[7281,7294,7295]],[[7281,7295,7282]],[[7297,7296,7280]],[[7280,7296,7281]],[[7298,7297,7285]],[[7285,7297,7280]],[[7299,7298,7287]],[[7287,7298,7285]],[[7289,7299,544]],[[544,7299,531]],[[531,7299,7286]],[[7286,7299,7287]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dcc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026305","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003295)","inonderzoek":"0","lokaalid":"G0503.032e68f0454c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.51000022888184,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84941.552 447605.645)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7292,7300,7301]],[[7300,7292,7302]],[[7303,7300,7302]],[[7304,7292,7295]],[[7305,7302,7306]],[[7305,7306,7307]],[[7302,7292,7304]],[[7308,7304,7295]],[[7306,7302,7304]],[[7308,7295,7309]],[[7291,7294,7292]],[[7292,7294,7295]],[[7310,7291,7301]],[[7301,7291,7292]],[[7311,7310,7300]],[[7300,7310,7301]],[[7312,7311,7303]],[[7303,7311,7300]],[[7313,7312,7314]],[[7314,7312,7315]],[[7315,7312,7302]],[[7302,7312,7303]],[[7316,7313,7317]],[[7317,7313,7314]],[[7317,7314,7318]],[[7318,7314,7315]],[[7318,7315,7305]],[[7305,7315,7302]],[[7319,7316,7307]],[[7307,7316,7317]],[[7307,7317,7318]],[[7307,7318,7305]],[[7320,7319,7306]],[[7306,7319,7307]],[[7321,7320,7304]],[[7304,7320,7306]],[[7322,7321,7308]],[[7308,7321,7304]],[[7323,7322,7309]],[[7309,7322,7308]],[[7294,7323,7295]],[[7295,7323,7309]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc751d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026236","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027040)","inonderzoek":"0","lokaalid":"G0503.032e68f0455949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.03999996185303,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84899.425 447577.136)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7324,7325,7326]],[[7324,7327,7328]],[[7324,7326,7327]],[[7325,7329,7326]],[[7326,7329,7330]],[[7331,7332,7333]],[[7333,7332,2312]],[[7333,2312,7324]],[[7324,2312,7325]],[[7334,7331,2284]],[[2284,7331,7333]],[[2284,7333,7328]],[[7328,7333,7324]],[[7335,7334,2285]],[[2285,7334,7336]],[[7336,7334,7327]],[[7327,7334,2284]],[[7327,2284,7328]],[[7337,7335,7338]],[[7338,7335,2285]],[[7338,2285,7339]],[[7339,2285,7336]],[[7339,7336,7326]],[[7326,7336,7327]],[[7340,7337,7341]],[[7341,7337,7338]],[[7341,7338,7342]],[[7342,7338,7339]],[[7342,7339,7330]],[[7330,7339,7326]],[[2311,7340,7329]],[[7329,7340,7341]],[[7329,7341,7342]],[[7329,7342,7330]],[[7332,2311,2312]],[[2312,2311,7325]],[[7325,2311,7329]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc7522-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026232","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027041)","inonderzoek":"0","lokaalid":"G0503.032e68f0455a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.419999986886978,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.334 447579.308)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7343,7344,7345]],[[7346,7347,7348]],[[7346,7345,7344]],[[7346,7344,7347]],[[7343,7349,7344]],[[7343,7350,7351]],[[7349,7343,7351]],[[2298,7352,7343]],[[7343,7352,2297]],[[7343,2297,7353]],[[7343,7353,7350]],[[2294,2298,7345]],[[7345,2298,7343]],[[2295,2294,7346]],[[7346,2294,7345]],[[2287,2295,7348]],[[7348,2295,7346]],[[2284,2287,7328]],[[7328,2287,7347]],[[7347,2287,7348]],[[7333,2284,7324]],[[7324,2284,7328]],[[7324,7328,7344]],[[7344,7328,7347]],[[2312,7333,7325]],[[7325,7333,7324]],[[7325,7324,7349]],[[7349,7324,7344]],[[7354,2312,2308]],[[2308,2312,7355]],[[7355,2312,7351]],[[7351,2312,7325]],[[7351,7325,7349]],[[7352,7354,2297]],[[2297,7354,2308]],[[2297,2308,7353]],[[7353,2308,7355]],[[7353,7355,7350]],[[7350,7355,7351]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c37-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026230","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027051)","inonderzoek":"0","lokaalid":"G0503.032e68f0455b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.9300000667572,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.625 447604.950)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:57)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7356,7357,7358]],[[7356,7358,7359]],[[7358,7357,7360]],[[7358,7360,7361]],[[2624,7362,7356]],[[7356,7362,7357]],[[2432,2624,7359]],[[7359,2624,7356]],[[2428,2432,7358]],[[7358,2432,7359]],[[2724,2428,7361]],[[7361,2428,7358]],[[7363,2724,7360]],[[7360,2724,7361]],[[7362,7363,7357]],[[7357,7363,7360]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c3c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026224","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027042)","inonderzoek":"0","lokaalid":"G0503.032e68f0455c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.479999989271164,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84905.401 447581.619)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7364,7355,7365]],[[7355,7353,7365]],[[7353,7366,7367]],[[7368,7353,7367]],[[7365,7353,7368]],[[2322,2308,7364]],[[7364,2308,7355]],[[2414,2322,7365]],[[7365,2322,7364]],[[2669,2414,7368]],[[7368,2414,7365]],[[2507,2669,7367]],[[7367,2669,7368]],[[2290,2507,7366]],[[7366,2507,7367]],[[2297,2290,7353]],[[7353,2290,7366]],[[2308,2297,7355]],[[7355,2297,7353]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c41-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000032721","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027052)","inonderzoek":"0","lokaalid":"G0503.032e68f0455d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84905.591 447607.059)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:59)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7369,7370,7371]],[[7372,7373,7374]],[[7371,7375,7374]],[[7370,7376,7371]],[[7374,7375,7372]],[[7372,7377,7378]],[[7372,7375,7377]],[[7371,7376,7375]],[[7379,7380,2449]],[[2449,7380,7381]],[[2449,7381,7369]],[[7369,7381,7370]],[[2447,7379,7371]],[[7371,7379,2449]],[[7371,2449,7369]],[[2443,2447,7374]],[[7374,2447,7371]],[[2444,2443,7373]],[[7373,2443,7374]],[[2451,2444,7372]],[[7372,2444,7373]],[[2438,2451,7378]],[[7378,2451,7372]],[[2439,2438,7377]],[[7377,2438,7378]],[[2624,2439,7356]],[[7356,2439,7375]],[[7375,2439,7377]],[[7362,2624,7357]],[[7357,2624,7356]],[[7357,7356,7376]],[[7376,7356,7375]],[[7380,7362,7381]],[[7381,7362,7370]],[[7370,7362,7357]],[[7370,7357,7376]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c46-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026228","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027053)","inonderzoek":"0","lokaalid":"G0503.032e68f0455e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.310000002384186,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84908.575 447609.097)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:61)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7382,7383,7384]],[[7382,7384,7385]],[[7383,7386,7384]],[[7387,7388,2454]],[[2454,7388,7389]],[[2454,7389,7382]],[[7382,7389,7383]],[[2445,7387,7385]],[[7385,7387,2454]],[[7385,2454,7382]],[[2449,2445,7369]],[[7369,2445,7384]],[[7384,2445,7385]],[[7381,2449,7370]],[[7370,2449,7369]],[[7370,7369,7386]],[[7386,7369,7384]],[[7388,7381,7389]],[[7389,7381,7383]],[[7383,7381,7370]],[[7383,7370,7386]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c4b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026229","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027054)","inonderzoek":"0","lokaalid":"G0503.032e68f0455f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.319999992847443,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.042 447611.640)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:63)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7390,7391,7392]],[[7393,7390,7392]],[[7391,7390,7394]],[[7390,7393,7395]],[[7393,7396,7395]],[[7393,7397,7398]],[[7396,7393,7398]],[[7399,7400,7393]],[[7393,7400,7397]],[[7401,7399,7392]],[[7392,7399,7393]],[[2630,7401,7391]],[[7391,7401,7392]],[[2440,2630,7394]],[[7394,2630,7391]],[[2453,2440,7390]],[[7390,2440,7394]],[[2454,2453,7382]],[[7382,2453,7395]],[[7395,2453,7390]],[[7389,2454,7383]],[[7383,2454,7382]],[[7383,7382,7396]],[[7396,7382,7395]],[[7402,7389,7398]],[[7398,7389,7383]],[[7398,7383,7396]],[[7400,7402,7397]],[[7397,7402,7398]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c50-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000026227","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027055)","inonderzoek":"0","lokaalid":"G0503.032e68f0456049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.46000000834465,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84920.220 447592.293)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:67)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7403,7404,7405]],[[7403,7406,7407]],[[7404,7403,7408]],[[7408,7403,7407]],[[7407,7406,7409]],[[2491,2714,7410]],[[7410,2714,7411]],[[7410,7411,7403]],[[7403,7411,7406]],[[2492,2491,7405]],[[7405,2491,7410]],[[7405,7410,7403]],[[2508,2492,7404]],[[7404,2492,7405]],[[2596,2508,7408]],[[7408,2508,7404]],[[2649,2596,7412]],[[7412,2596,7407]],[[7407,2596,7408]],[[2461,2649,7413]],[[7413,2649,7412]],[[7413,7412,7409]],[[7409,7412,7407]],[[2714,2461,7411]],[[7411,2461,7406]],[[7406,2461,7413]],[[7406,7413,7409]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c53-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026226","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0456149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.08999991416931,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7412,7413,7414]],[[7412,7414,7415]],[[7413,7416,7414]],[[7417,7418,2649]],[[2649,7418,2461]],[[2649,2461,7412]],[[7412,2461,7413]],[[2430,7417,7415]],[[7415,7417,2649]],[[7415,2649,7412]],[[2431,2430,7414]],[[7414,2430,7415]],[[2441,2431,7416]],[[7416,2431,7414]],[[7418,2441,2461]],[[2461,2441,7413]],[[7413,2441,7416]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c58-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000017319","identificatiebagvbohoogstehuisnummer":"(1:503010000003291)","identificatiebagvbolaagstehuisnummer":"(1:503010000003290)","inonderzoek":"0","lokaalid":"G0503.032e68f0456249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.310000002384186,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84925.993 447620.937)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:30-31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7419,7420,7421]],[[7422,7423,7424]],[[7423,7425,7426]],[[7424,7423,7426]],[[7427,7422,7424]],[[7428,7429,7430]],[[7427,7431,7422]],[[7432,7431,7433]],[[7432,7434,7435]],[[7432,7433,7434]],[[7434,7433,7436]],[[7431,7437,7433]],[[7431,7427,7428]],[[7437,7431,7428]],[[7430,7437,7428]],[[7421,7438,7427]],[[7419,7421,7439]],[[7428,7427,7440]],[[7441,7440,7438]],[[7441,7438,7442]],[[7440,7427,7438]],[[7438,7421,7443]],[[7443,7444,7445]],[[7443,7420,7444]],[[7443,7421,7420]],[[7446,7419,7439]],[[7447,7419,7446]],[[7448,7449,7421]],[[7421,7449,7439]],[[7450,7448,7427]],[[7427,7448,7421]],[[7451,7450,7424]],[[7424,7450,7427]],[[7452,7451,7426]],[[7426,7451,7424]],[[7453,7452,7425]],[[7425,7452,7426]],[[7454,7453,7423]],[[7423,7453,7425]],[[7455,7454,7422]],[[7422,7454,7423]],[[7456,7455,7431]],[[7431,7455,7422]],[[7457,7456,7432]],[[7432,7456,7431]],[[7458,7457,7435]],[[7435,7457,7432]],[[7459,7458,7434]],[[7434,7458,7435]],[[7460,7459,7436]],[[7436,7459,7434]],[[7461,7460,7433]],[[7433,7460,7436]],[[7462,7461,7437]],[[7437,7461,7433]],[[7463,7462,7430]],[[7430,7462,7437]],[[7464,7463,7429]],[[7429,7463,7430]],[[7465,7464,7428]],[[7428,7464,7429]],[[7466,7465,7440]],[[7440,7465,7428]],[[7467,7466,7441]],[[7441,7466,7440]],[[7468,7467,7442]],[[7442,7467,7441]],[[7469,7468,7438]],[[7438,7468,7442]],[[7470,7469,7443]],[[7443,7469,7438]],[[7471,7470,7445]],[[7445,7470,7443]],[[7472,7471,7444]],[[7444,7471,7445]],[[7473,7472,7420]],[[7420,7472,7444]],[[7474,7473,7419]],[[7419,7473,7420]],[[7475,7474,7447]],[[7447,7474,7419]],[[7476,7475,7446]],[[7446,7475,7447]],[[7449,7476,7439]],[[7439,7476,7446]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c5d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000026225","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027057)","inonderzoek":"0","lokaalid":"G0503.032e68f0456349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.19000005722046,"min-height-surface":0.46000000834465,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84922.501 447589.020)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:69)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7477,7478,7479]],[[7477,7479,7480]],[[7479,7478,7411]],[[7479,7411,7410]],[[7481,7482,2497]],[[2497,7482,2618]],[[2497,2618,7483]],[[7483,2618,7484]],[[7483,7484,7477]],[[7477,7484,7478]],[[2489,7481,7480]],[[7480,7481,2497]],[[7480,2497,7483]],[[7480,7483,7477]],[[2490,2489,7479]],[[7479,2489,7480]],[[2491,2490,7410]],[[7410,2490,7479]],[[2714,2491,7411]],[[7411,2491,7410]],[[7482,2714,2618]],[[2618,2714,7484]],[[7484,2714,7478]],[[7478,2714,7411]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c62-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000032720","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027059)","inonderzoek":"0","lokaalid":"G0503.032e68f0456449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.0,"min-height-surface":0.490000009536743,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84924.685 447585.981)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:71)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7485,7486,7487]],[[7485,7487,7488]],[[7486,7489,7487]],[[7487,7490,7491]],[[7490,7483,7492]],[[7493,7490,7489]],[[7492,7494,7495]],[[7492,7483,7494]],[[7490,7484,7483]],[[7490,7493,7484]],[[7490,7487,7489]],[[2262,2517,7496]],[[7496,2517,7497]],[[7496,7497,7485]],[[7485,7497,7486]],[[2260,2262,7488]],[[7488,2262,7496]],[[7488,7496,7485]],[[2302,2260,7487]],[[7487,2260,7488]],[[2486,2302,7491]],[[7491,2302,7487]],[[2511,2486,7490]],[[7490,2486,7491]],[[2470,2511,7492]],[[7492,2511,7490]],[[2498,2470,7495]],[[7495,2470,7492]],[[2499,2498,7494]],[[7494,2498,7495]],[[2497,2499,7483]],[[7483,2499,7494]],[[2618,2497,7484]],[[7484,2497,7483]],[[2619,2618,7493]],[[7493,2618,7484]],[[2518,2619,7489]],[[7489,2619,7493]],[[2517,2518,7497]],[[7497,2518,7486]],[[7486,2518,7489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc275-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026308","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0456549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.05999994277954,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7498,7499,7500]],[[7498,7500,7501]],[[7501,7500,7502]],[[7503,7504,7505]],[[7505,7504,7506]],[[7505,7506,7498]],[[7498,7506,7499]],[[7507,7503,7448]],[[7448,7503,7421]],[[7421,7503,7501]],[[7501,7503,7505]],[[7501,7505,7498]],[[7508,7507,7449]],[[7449,7507,7448]],[[7449,7448,7439]],[[7439,7448,7421]],[[7439,7421,7502]],[[7502,7421,7501]],[[7509,7508,7500]],[[7500,7508,7449]],[[7500,7449,7439]],[[7500,7439,7502]],[[7504,7509,7506]],[[7506,7509,7499]],[[7499,7509,7500]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc27a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026307","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060887)","inonderzoek":"0","lokaalid":"G0503.032e68f0456649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.96000003814697,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84933.650 447613.578)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7510,7511,7506]],[[7510,7505,7512]],[[7512,7505,7513]],[[7510,7506,7505]],[[7514,7515,7510]],[[7510,7515,7511]],[[7516,7514,7512]],[[7512,7514,7510]],[[7517,7516,7513]],[[7513,7516,7512]],[[7518,7517,7503]],[[7503,7517,7505]],[[7505,7517,7513]],[[7519,7518,7504]],[[7504,7518,7503]],[[7504,7503,7506]],[[7506,7503,7505]],[[7515,7519,7511]],[[7511,7519,7504]],[[7511,7504,7506]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc27f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026306","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003294)","inonderzoek":"0","lokaalid":"G0503.032e68f0456749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.99000000953674,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84939.538 447607.795)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:34)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7315,7318,7520]],[[7315,7521,7522]],[[7521,7523,7524]],[[7525,7526,7523]],[[7521,7525,7523]],[[7526,7525,7527]],[[7521,7520,7525]],[[7521,7315,7520]],[[7520,7318,7528]],[[7314,7317,7315]],[[7315,7317,7318]],[[7529,7314,7522]],[[7522,7314,7315]],[[7530,7529,7521]],[[7521,7529,7522]],[[7531,7530,7514]],[[7514,7530,7510]],[[7510,7530,7524]],[[7524,7530,7521]],[[7532,7531,7515]],[[7515,7531,7514]],[[7515,7514,7511]],[[7511,7514,7510]],[[7511,7510,7523]],[[7523,7510,7524]],[[7533,7532,7526]],[[7526,7532,7515]],[[7526,7515,7511]],[[7526,7511,7523]],[[7534,7533,7527]],[[7527,7533,7526]],[[7535,7534,7525]],[[7525,7534,7527]],[[7536,7535,7520]],[[7520,7535,7525]],[[7537,7536,7528]],[[7528,7536,7520]],[[7317,7537,7318]],[[7318,7537,7528]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc293-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026220","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027028)","inonderzoek":"0","lokaalid":"G0503.032e68f0456b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.55000019073486,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84865.905 447577.729)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:11)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7538,7539,7540]],[[7538,7540,7541]],[[7539,7542,7540]],[[7543,7544,2051]],[[2051,7544,7545]],[[2051,7545,7546]],[[7546,7545,7547]],[[7546,7547,7538]],[[7538,7547,7539]],[[2174,7543,7541]],[[7541,7543,2051]],[[7541,2051,7546]],[[7541,7546,7538]],[[1932,2174,7548]],[[7548,2174,7540]],[[7540,2174,7541]],[[7549,1932,7550]],[[7550,1932,7548]],[[7550,7548,7542]],[[7542,7548,7540]],[[7544,7549,7545]],[[7545,7549,7547]],[[7547,7549,7539]],[[7539,7549,7550]],[[7539,7550,7542]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc29d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026221","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027029)","inonderzoek":"0","lokaalid":"G0503.032e68f0456d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.6100001335144,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84870.014 447581.083)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:13)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7551,7552,7553]],[[7551,7554,7547]],[[7552,7551,7546]],[[7555,7552,7546]],[[7546,7551,7547]],[[7556,7557,7558]],[[7558,7557,7559]],[[7559,7557,7560]],[[7559,7560,7551]],[[7551,7560,7554]],[[7561,7556,7562]],[[7562,7556,7558]],[[7562,7558,7563]],[[7563,7558,7559]],[[7563,7559,7553]],[[7553,7559,7551]],[[7564,7561,2023]],[[2023,7561,7562]],[[2023,7562,7565]],[[7565,7562,7563]],[[7565,7563,7552]],[[7552,7563,7553]],[[2021,7564,7555]],[[7555,7564,2023]],[[7555,2023,7565]],[[7555,7565,7552]],[[2051,2021,7546]],[[7546,2021,7555]],[[7545,2051,7547]],[[7547,2051,7546]],[[7557,7545,7560]],[[7560,7545,7554]],[[7554,7545,7547]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9b7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017403","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027030)","inonderzoek":"0","lokaalid":"G0503.032e68f0456f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84873.014 447583.083)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:15)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7566,7559,7567]],[[7566,7568,7559]],[[7559,7568,7560]],[[7560,7568,7569]],[[7570,7571,7566]],[[7566,7571,7568]],[[7572,7570,7573]],[[7573,7570,7567]],[[7567,7570,7566]],[[7556,7572,7558]],[[7558,7572,7573]],[[7558,7573,7559]],[[7559,7573,7567]],[[7557,7556,7560]],[[7560,7556,7558]],[[7560,7558,7559]],[[7574,7557,7569]],[[7569,7557,7560]],[[7571,7574,7568]],[[7568,7574,7569]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9c1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017318","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027043)","inonderzoek":"0","lokaalid":"G0503.032e68f0457149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84877.536 447586.302)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:41)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7575,7576,7577]],[[7575,7577,7578]],[[7577,7576,7579]],[[7580,7577,7579]],[[7580,7579,7581]],[[7582,7583,2360]],[[2360,7583,7584]],[[2360,7584,7575]],[[7575,7584,7576]],[[2358,7582,7578]],[[7578,7582,2360]],[[7578,2360,7575]],[[2350,2358,7577]],[[7577,2358,7578]],[[2351,2350,7580]],[[7580,2350,7577]],[[2354,2351,7581]],[[7581,2351,7580]],[[7585,2354,7579]],[[7579,2354,7581]],[[7583,7585,7584]],[[7584,7585,7576]],[[7576,7585,7579]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9c6-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:52.7)","identificatiebagpnd":"503100000017422","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027031)","inonderzoek":"0","lokaalid":"G0503.032e68f0457249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84879.588 447573.483)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:17)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7563,7586,7559]],[[7587,7563,7588]],[[7588,7589,7590]],[[7588,7563,7589]],[[7589,7563,7565]],[[7587,7586,7563]],[[7586,7591,7559]],[[7559,7591,7567]],[[7592,7593,7587]],[[7587,7593,7586]],[[7594,7592,7588]],[[7588,7592,7587]],[[7595,7594,7596]],[[7596,7594,7590]],[[7590,7594,7588]],[[7597,7595,2128]],[[2128,7595,7596]],[[2128,7596,7589]],[[7589,7596,7590]],[[2023,7597,7565]],[[7565,7597,2128]],[[7565,2128,7589]],[[7562,2023,7563]],[[7563,2023,7565]],[[7558,7562,7559]],[[7559,7562,7563]],[[7573,7558,7567]],[[7567,7558,7559]],[[7598,7573,7591]],[[7591,7573,7567]],[[7593,7598,7586]],[[7586,7598,7591]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9cb-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017409","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027044)","inonderzoek":"0","lokaalid":"G0503.032e68f0457349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.9300000667572,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84880.543 447588.458)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:43)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7599,7600,7601]],[[7602,7603,7601]],[[7600,7604,7601]],[[7601,7604,7602]],[[7605,7606,2371]],[[2371,7606,7607]],[[2371,7607,7608]],[[7608,7607,7609]],[[7608,7609,7599]],[[7599,7609,7600]],[[2710,7605,7601]],[[7601,7605,2371]],[[7601,2371,7608]],[[7601,7608,7599]],[[2368,2710,7603]],[[7603,2710,7601]],[[2360,2368,7575]],[[7575,2368,7602]],[[7602,2368,7603]],[[7584,2360,7576]],[[7576,2360,7575]],[[7576,7575,7604]],[[7604,7575,7602]],[[7606,7584,7607]],[[7607,7584,7609]],[[7609,7584,7600]],[[7600,7584,7576]],[[7600,7576,7604]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9d5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026231","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027045)","inonderzoek":"0","lokaalid":"G0503.032e68f0457549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.92000007629395,"min-height-surface":0.259999990463257,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84884.043 447591.158)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7610,7611,7612]],[[7610,7612,7613]],[[7612,7611,7609]],[[7612,7614,7615]],[[7614,7612,7609]],[[7614,7609,7616]],[[7616,7609,7608]],[[7617,7618,2602]],[[2602,7618,7619]],[[2602,7619,7620]],[[7620,7619,7621]],[[7620,7621,7610]],[[7610,7621,7611]],[[2362,7617,7613]],[[7613,7617,2602]],[[7613,2602,7620]],[[7613,7620,7610]],[[2376,2362,7612]],[[7612,2362,7613]],[[2344,2376,7615]],[[7615,2376,7612]],[[2372,2344,7614]],[[7614,2344,7615]],[[2345,2372,7616]],[[7616,2372,7614]],[[2371,2345,7608]],[[7608,2345,7616]],[[7607,2371,7609]],[[7609,2371,7608]],[[7618,7607,7619]],[[7619,7607,7621]],[[7621,7607,7611]],[[7611,7607,7609]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9df-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000029881","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027046)","inonderzoek":"0","lokaalid":"G0503.032e68f0457749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.747 447592.960)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:47)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7620,7622,7623]],[[7624,7620,7623]],[[7622,7625,7626]],[[7622,7620,7625]],[[7624,7621,7620]],[[7624,7627,7628]],[[7621,7624,7628]],[[2386,2388,7624]],[[7624,2388,7629]],[[7624,7629,7627]],[[2384,2386,7623]],[[7623,2386,7624]],[[2373,2384,7622]],[[7622,2384,7623]],[[2374,2373,7626]],[[7626,2373,7622]],[[2603,2374,7625]],[[7625,2374,7626]],[[2602,2603,7620]],[[7620,2603,7625]],[[7619,2602,7621]],[[7621,2602,7620]],[[7630,7619,7631]],[[7631,7619,7628]],[[7628,7619,7621]],[[2388,7630,7629]],[[7629,7630,7631]],[[7629,7631,7627]],[[7627,7631,7628]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd10f5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000029882","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0457949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7632,7633,7634]],[[7632,7634,7635]],[[7634,7633,7629]],[[7634,7629,7636]],[[7633,7631,7629]],[[2401,7637,7632]],[[7632,7637,7633]],[[2631,2401,7635]],[[7635,2401,7632]],[[2739,2631,7634]],[[7634,2631,7635]],[[2387,2739,7636]],[[7636,2739,7634]],[[2388,2387,7629]],[[7629,2387,7636]],[[7630,2388,7631]],[[7631,2388,7629]],[[7637,7630,7633]],[[7633,7630,7631]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd10ff-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017424","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000054296)","inonderzoek":"0","lokaalid":"G0503.032e68f0457b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84892.280 447597.016)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:51)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7638,7639,7640]],[[7639,7633,7640]],[[7640,7641,7642]],[[7641,7640,7633]],[[7641,7633,7632]],[[2406,7643,7638]],[[7638,7643,7639]],[[2405,2406,7640]],[[7640,2406,7638]],[[2402,2405,7642]],[[7642,2405,7640]],[[2403,2402,7641]],[[7641,2402,7642]],[[2401,2403,7632]],[[7632,2403,7641]],[[7637,2401,7633]],[[7633,2401,7632]],[[7643,7637,7639]],[[7639,7637,7633]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd110e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017410","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000061316)","inonderzoek":"0","lokaalid":"G0503.032e68f0457e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.270000010728836,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84896.941 447600.562)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:53)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7644,7645,7646]],[[7644,7646,7647]],[[7645,7648,7646]],[[7649,7650,7651]],[[7649,7646,7648]],[[7649,7648,7650]],[[7652,7653,2416]],[[2416,7653,7654]],[[2416,7654,7644]],[[7644,7654,7645]],[[2411,7652,7647]],[[7647,7652,2416]],[[7647,2416,7644]],[[2413,2411,7646]],[[7646,2411,7647]],[[2412,2413,7649]],[[7649,2413,7646]],[[2677,2412,7651]],[[7651,2412,7649]],[[7655,2677,2406]],[[2406,2677,7638]],[[7638,2677,7650]],[[7650,2677,7651]],[[7656,7655,7643]],[[7643,7655,2406]],[[7643,2406,7639]],[[7639,2406,7638]],[[7639,7638,7648]],[[7648,7638,7650]],[[7653,7656,7654]],[[7654,7656,7645]],[[7645,7656,7643]],[[7645,7643,7639]],[[7645,7639,7648]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd1111-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017407","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0457f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.11999988555908,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7657,7658,7659]],[[7660,7661,7659]],[[7658,7662,7659]],[[7661,7660,7663]],[[7659,7662,7660]],[[7664,7665,2724]],[[2724,7665,7363]],[[2724,7363,7361]],[[7361,7363,7360]],[[7361,7360,7657]],[[7657,7360,7658]],[[2659,7664,7659]],[[7659,7664,2724]],[[7659,2724,7361]],[[7659,7361,7657]],[[2575,2659,7661]],[[7661,2659,7659]],[[2661,2575,7663]],[[7663,2575,7661]],[[2416,2661,7644]],[[7644,2661,7660]],[[7660,2661,7663]],[[7654,2416,7645]],[[7645,2416,7644]],[[7645,7644,7662]],[[7662,7644,7660]],[[7665,7654,7363]],[[7363,7654,7360]],[[7360,7654,7658]],[[7658,7654,7645]],[[7658,7645,7662]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd1116-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017412","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027024)","inonderzoek":"0","lokaalid":"G0503.032e68f0458049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.0900000035762787,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84852.482 447568.060)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:3)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7666,7667,7668]],[[7666,7669,7670]],[[7667,7666,7670]],[[7670,7669,375]],[[374,7670,375]],[[375,7669,7671]],[[7672,7673,2001]],[[2001,7673,7674]],[[2001,7674,7666]],[[7666,7674,7669]],[[2093,7672,7668]],[[7668,7672,2001]],[[7668,2001,7666]],[[1991,2093,7667]],[[7667,2093,7668]],[[1992,1991,7670]],[[7670,1991,7667]],[[383,1992,374]],[[374,1992,7670]],[[384,383,375]],[[375,383,374]],[[7675,384,7671]],[[7671,384,375]],[[7673,7675,7674]],[[7674,7675,7669]],[[7669,7675,7671]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd111b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017420","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000054295)","inonderzoek":"0","lokaalid":"G0503.032e68f0458149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84855.482 447570.260)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:5)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7676,7677,7669]],[[7676,7669,7666]],[[7678,7679,2000]],[[2000,7679,7680]],[[2000,7680,7676]],[[7676,7680,7677]],[[2001,7678,7666]],[[7666,7678,2000]],[[7666,2000,7676]],[[7674,2001,7669]],[[7669,2001,7666]],[[7679,7674,7680]],[[7680,7674,7677]],[[7677,7674,7669]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd382e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017408","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0458249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7681,7682,7683]],[[7681,7684,7685]],[[7681,7683,7684]],[[7686,7687,2003]],[[2003,7687,7688]],[[2003,7688,7681]],[[7681,7688,7682]],[[2000,7686,7676]],[[7676,7686,7685]],[[7685,7686,2003]],[[7685,2003,7681]],[[7680,2000,7677]],[[7677,2000,7676]],[[7677,7676,7684]],[[7684,7676,7685]],[[7689,7680,7683]],[[7683,7680,7677]],[[7683,7677,7684]],[[7687,7689,7688]],[[7688,7689,7682]],[[7682,7689,7683]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3833-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026219","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027027)","inonderzoek":"0","lokaalid":"G0503.032e68f0458349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.03999996185303,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84862.159 447575.143)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:9)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7548,7550,7690]],[[7550,7691,7690]],[[7692,7693,7694]],[[7695,7692,7694]],[[7690,7696,7694]],[[7694,7696,7695]],[[7690,7691,7696]],[[7697,7698,1932]],[[1932,7698,7549]],[[1932,7549,7548]],[[7548,7549,7550]],[[2016,7697,7690]],[[7690,7697,1932]],[[7690,1932,7548]],[[2010,2016,7694]],[[7694,2016,7690]],[[2011,2010,7693]],[[7693,2010,7694]],[[2017,2011,7692]],[[7692,2011,7693]],[[2007,2017,7695]],[[7695,2017,7692]],[[2003,2007,7681]],[[7681,2007,7696]],[[7696,2007,7695]],[[7688,2003,7682]],[[7682,2003,7681]],[[7682,7681,7691]],[[7691,7681,7696]],[[7698,7688,7549]],[[7549,7688,7550]],[[7550,7688,7682]],[[7550,7682,7691]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd384d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000017317","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027034)","inonderzoek":"0","lokaalid":"G0503.032e68f0458949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.99000000953674,"min-height-surface":0.610000014305115,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.782 447557.084)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:21)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7699,7700,7701]],[[7701,7700,7702]],[[7699,7703,7700]],[[7699,7704,7705]],[[7703,7699,7705]],[[7706,7705,7707]],[[7705,7708,7707]],[[7705,7704,7708]],[[7709,7710,7699]],[[7699,7710,7704]],[[7711,7709,7701]],[[7701,7709,7699]],[[372,7711,355]],[[355,7711,7702]],[[7702,7711,7701]],[[370,372,363]],[[363,372,355]],[[363,355,7700]],[[7700,355,7702]],[[341,370,323]],[[323,370,361]],[[361,370,363]],[[361,363,7703]],[[7703,363,7700]],[[337,341,329]],[[329,341,323]],[[329,323,7705]],[[7705,323,361]],[[7705,361,7703]],[[338,337,330]],[[330,337,329]],[[330,329,7706]],[[7706,329,7705]],[[7712,338,7707]],[[7707,338,330]],[[7707,330,7706]],[[7713,7712,7708]],[[7708,7712,7707]],[[7710,7713,7704]],[[7704,7713,7708]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3852-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000026237","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027035)","inonderzoek":"0","lokaalid":"G0503.032e68f0458a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.13000011444092,"min-height-surface":0.5,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.062 447561.843)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:25)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7714,7715,7716]],[[7716,7717,7718]],[[7719,7720,7721]],[[7717,7716,7715]],[[7715,7714,7722]],[[7714,7719,7722]],[[7714,7720,7719]],[[7723,7721,7724]],[[7721,7725,7724]],[[7721,7720,7725]],[[7726,7727,7714]],[[7714,7727,7720]],[[7728,7726,7716]],[[7716,7726,7714]],[[7729,7728,7718]],[[7718,7728,7716]],[[7730,7729,7717]],[[7717,7729,7718]],[[7731,7730,7732]],[[7732,7730,7733]],[[7733,7730,7715]],[[7715,7730,7717]],[[7734,7731,2279]],[[2279,7731,7732]],[[2279,7732,7735]],[[7735,7732,7733]],[[7735,7733,7722]],[[7722,7733,7715]],[[2280,7734,7719]],[[7719,7734,2279]],[[7719,2279,7735]],[[7719,7735,7722]],[[2274,2280,7721]],[[7721,2280,7719]],[[2275,2274,7723]],[[7723,2274,7721]],[[7736,2275,7724]],[[7724,2275,7723]],[[7737,7736,7725]],[[7725,7736,7724]],[[7727,7737,7720]],[[7720,7737,7725]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3857-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026234","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027037)","inonderzoek":"0","lokaalid":"G0503.032e68f0458b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.3199999332428,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84889.601 447570.319)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:29)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7738,7739,7740]],[[7739,7741,7740]],[[7740,7741,7742]],[[7742,7741,7743]],[[7744,7745,7746]],[[7746,7745,2580]],[[7746,2580,7747]],[[7747,2580,7748]],[[7748,2580,7749]],[[7749,2580,7750]],[[7749,7750,7738]],[[7738,7750,7739]],[[7751,7744,7752]],[[7752,7744,7746]],[[7752,7746,7747]],[[7752,7747,7753]],[[7753,7747,7748]],[[7753,7748,7740]],[[7740,7748,7749]],[[7740,7749,7738]],[[7754,7751,7742]],[[7742,7751,7752]],[[7742,7752,7753]],[[7742,7753,7740]],[[7755,7754,7743]],[[7743,7754,7742]],[[2579,7755,7741]],[[7741,7755,7743]],[[7745,2579,2580]],[[2580,2579,7750]],[[7750,2579,7739]],[[7739,2579,7741]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f6c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000033625","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027036)","inonderzoek":"0","lokaalid":"G0503.032e68f0458c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.569999992847443,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84899.662 447565.129)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:27)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7733,7735,7756]],[[7748,7757,7758]],[[7748,7753,7757]],[[7733,7756,7758]],[[7758,7756,7748]],[[7756,7735,7342]],[[7735,7336,7342]],[[7342,7336,7339]],[[7732,2279,7733]],[[7733,2279,7735]],[[7759,7732,7758]],[[7758,7732,7733]],[[7760,7759,7757]],[[7757,7759,7758]],[[7752,7760,7753]],[[7753,7760,7757]],[[7747,7752,7748]],[[7748,7752,7753]],[[7761,7747,7756]],[[7756,7747,7748]],[[7341,7761,7342]],[[7342,7761,7756]],[[7338,7341,7339]],[[7339,7341,7342]],[[2285,7338,7336]],[[7336,7338,7339]],[[2279,2285,7735]],[[7735,2285,7336]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f71-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:52.7)","identificatiebagpnd":"503100000026222","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027032)","inonderzoek":"0","lokaalid":"G0503.032e68f0458d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.15000009536743,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84883.868 447567.309)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:19)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7762,7763,7764]],[[7762,7765,7763]],[[7766,7764,7767]],[[7768,7766,7767]],[[7767,7764,7763]],[[7769,7596,7762]],[[7762,7596,7590]],[[7762,7590,7765]],[[7770,7769,7764]],[[7764,7769,7762]],[[7771,7770,7766]],[[7766,7770,7764]],[[7772,7771,353]],[[353,7771,333]],[[333,7771,7768]],[[7768,7771,7766]],[[7773,7772,352]],[[352,7772,353]],[[352,353,334]],[[334,353,333]],[[334,333,7767]],[[7767,333,7768]],[[2128,7773,7589]],[[7589,7773,7763]],[[7763,7773,352]],[[7763,352,334]],[[7763,334,7767]],[[7596,2128,7590]],[[7590,2128,7589]],[[7590,7589,7765]],[[7765,7589,7763]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f76-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026233","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027038)","inonderzoek":"0","lokaalid":"G0503.032e68f0458e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.21000003814697,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84893.214 447572.683)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7774,7775,7750]],[[7774,7750,7749]],[[7776,2316,7761]],[[7761,2316,7756]],[[7756,2316,7774]],[[7774,2316,7775]],[[7746,7776,7747]],[[7747,7776,7761]],[[7747,7761,7748]],[[7748,7761,7756]],[[7748,7756,7749]],[[7749,7756,7774]],[[2580,7746,7750]],[[7750,7746,7747]],[[7750,7747,7748]],[[7750,7748,7749]],[[2316,2580,7775]],[[7775,2580,7750]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f7b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026235","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027039)","inonderzoek":"0","lokaalid":"G0503.032e68f0458f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.389999985694885,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84895.825 447574.836)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7777,7778,7779]],[[7777,7779,7780]],[[7781,7777,7780]],[[7782,7778,7777]],[[7783,7781,7780]],[[7783,7784,7781]],[[7783,7778,7782]],[[7784,7783,7782]],[[7785,7786,7340]],[[7340,7786,2311]],[[7340,2311,7341]],[[7341,2311,7342]],[[7342,2311,7330]],[[7330,2311,7329]],[[7330,7329,7783]],[[7783,7329,7778]],[[7787,7785,7776]],[[7776,7785,7761]],[[7761,7785,7340]],[[7761,7340,7341]],[[7761,7341,7756]],[[7756,7341,7342]],[[7756,7342,7774]],[[7774,7342,7780]],[[7780,7342,7330]],[[7780,7330,7783]],[[7788,7787,2316]],[[2316,7787,7776]],[[2316,7776,7775]],[[7775,7776,7761]],[[7775,7761,7756]],[[7775,7756,7774]],[[7775,7774,7779]],[[7779,7774,7780]],[[7786,7788,2311]],[[2311,7788,7329]],[[7329,7788,7778]],[[7778,7788,2316]],[[7778,2316,7775]],[[7778,7775,7779]],[[7789,7790,7781]],[[7781,7790,7777]],[[7791,7789,7784]],[[7784,7789,7781]],[[7792,7791,7782]],[[7782,7791,7784]],[[7790,7792,7777]],[[7777,7792,7782]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd428-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000026302","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003316)","inonderzoek":"0","lokaalid":"G0503.032e68f046ba49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":8.56999969482422,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85021.496 447524.002)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:57)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7793,7794,7795]],[[7795,7796,7797]],[[7797,7796,7798]],[[7798,7799,7800]],[[7798,7801,7799]],[[7798,7796,7801]],[[7795,7802,7796]],[[7793,7795,7797]],[[1783,1787,7793]],[[7793,1787,7794]],[[1784,1783,7797]],[[7797,1783,7793]],[[1778,1784,7798]],[[7798,1784,7797]],[[7803,1778,7800]],[[7800,1778,7798]],[[1354,7803,7799]],[[7799,7803,7800]],[[7804,1354,1606]],[[1606,1354,7805]],[[7805,1354,7801]],[[7801,1354,7799]],[[7806,7804,7807]],[[7807,7804,1606]],[[7807,1606,7808]],[[7808,1606,7805]],[[7808,7805,7796]],[[7796,7805,7801]],[[7809,7806,7802]],[[7802,7806,7807]],[[7802,7807,7808]],[[7802,7808,7796]],[[7810,7809,7795]],[[7795,7809,7802]],[[1787,7810,7794]],[[7794,7810,7795]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd42d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000018587","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005337)","inonderzoek":"0","lokaalid":"G0503.032e68f046bb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.69000005722046,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85027.406 447519.861)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:77)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7811,7812,7813]],[[7814,7815,7816]],[[7813,7814,7816]],[[7817,7818,7814]],[[7813,7817,7814]],[[7812,7817,7813]],[[7812,7819,7817]],[[7820,7821,7811]],[[7811,7821,7812]],[[1806,7820,7813]],[[7813,7820,7811]],[[1785,1806,7816]],[[7816,1806,7813]],[[1791,1785,7815]],[[7815,1785,7816]],[[1803,1791,7814]],[[7814,1791,7815]],[[1802,1803,7818]],[[7818,1803,7814]],[[7822,1802,7817]],[[7817,1802,7818]],[[7823,7822,7819]],[[7819,7822,7817]],[[7821,7823,7812]],[[7812,7823,7819]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd432-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018602","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005338)","inonderzoek":"0","lokaalid":"G0503.032e68f046bc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.67000007629395,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85036.711 447505.477)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:72)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7824,7825,7826]],[[7824,7826,7827]],[[7825,7828,7826]],[[7825,7829,7828]],[[7825,7830,7829]],[[1835,1840,7824]],[[7824,1840,7825]],[[1816,1835,7827]],[[7827,1835,7824]],[[1811,1816,7826]],[[7826,1816,7827]],[[7831,1811,7828]],[[7828,1811,7826]],[[7832,7831,7829]],[[7829,7831,7828]],[[7833,7832,7830]],[[7830,7832,7829]],[[1840,7833,7825]],[[7825,7833,7830]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd437-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018593","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005332)","inonderzoek":"0","lokaalid":"G0503.032e68f046bd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85019.386 447493.264)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:67)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7834,7835,7836]],[[7834,7836,7837]],[[1851,1772,7834]],[[7834,1772,7835]],[[1847,1851,7838]],[[7838,1851,7837]],[[7837,1851,7834]],[[1770,1847,7839]],[[7839,1847,7838]],[[7839,7838,7836]],[[7836,7838,7837]],[[1772,1770,7835]],[[7835,1770,7839]],[[7835,7839,7836]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd43a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018608","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046be49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.88000011444092,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7840,7841,7842]],[[7840,7842,7843]],[[1859,1817,7844]],[[7844,1817,7845]],[[7844,7845,7840]],[[7840,7845,7841]],[[1851,1859,7834]],[[7834,1859,7843]],[[7843,1859,7844]],[[7843,7844,7840]],[[1772,1851,7835]],[[7835,1851,7834]],[[7835,7834,7842]],[[7842,7834,7843]],[[1817,1772,7845]],[[7845,1772,7841]],[[7841,1772,7835]],[[7841,7835,7842]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd43f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018611","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005333)","inonderzoek":"0","lokaalid":"G0503.032e68f046bf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.77999997138977,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85025.433 447497.508)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:69)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7846,7847,7845]],[[7846,7845,7844]],[[1860,1814,7848]],[[7848,1814,7849]],[[7848,7849,7846]],[[7846,7849,7847]],[[7850,1860,1859]],[[1859,1860,7844]],[[7844,1860,7848]],[[7844,7848,7846]],[[7851,7850,1817]],[[1817,7850,1859]],[[1817,1859,7845]],[[7845,1859,7844]],[[1814,7851,7849]],[[7849,7851,7847]],[[7847,7851,1817]],[[7847,1817,7845]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd442-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018590","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7852,7853,7854]],[[7852,7854,7855]],[[1800,7856,7852]],[[7852,7856,7853]],[[7857,1800,1806]],[[1806,1800,7813]],[[7813,1800,7855]],[[7855,1800,7852]],[[7858,7857,7820]],[[7820,7857,1806]],[[7820,1806,7811]],[[7811,1806,7813]],[[7811,7813,7854]],[[7854,7813,7855]],[[7856,7858,7853]],[[7853,7858,7820]],[[7853,7820,7811]],[[7853,7811,7854]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd447-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000027999","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005334)","inonderzoek":"0","lokaalid":"G0503.032e68f046c149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.76999998092651,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85031.345 447501.656)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:71)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7859,7860,7849]],[[7859,7849,7848]],[[1852,1815,7861]],[[7861,1815,7862]],[[7861,7862,7859]],[[7859,7862,7860]],[[1860,1852,7848]],[[7848,1852,7861]],[[7848,7861,7859]],[[1814,1860,7849]],[[7849,1860,7848]],[[1815,1814,7862]],[[7862,1814,7860]],[[7860,1814,7849]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd44c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000027996","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005336)","inonderzoek":"0","lokaalid":"G0503.032e68f046c249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.8199999332428,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85031.465 447515.641)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:75)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7863,7864,7865]],[[7863,7865,7866]],[[1828,7867,7863]],[[7863,7867,7864]],[[1800,1828,7852]],[[7852,1828,7866]],[[7866,1828,7863]],[[7856,1800,7853]],[[7853,1800,7852]],[[7853,7852,7865]],[[7865,7852,7866]],[[7867,7856,7864]],[[7864,7856,7853]],[[7864,7853,7865]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd44f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018605","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.6800000667572,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7868,7869,7862]],[[7868,7862,7861]],[[7870,7871,1835]],[[1835,7871,1816]],[[1835,1816,7824]],[[7824,1816,7827]],[[7824,7827,7868]],[[7868,7827,7869]],[[1852,7870,7861]],[[7861,7870,1835]],[[7861,1835,7824]],[[7861,7824,7868]],[[1815,1852,7862]],[[7862,1852,7861]],[[7871,1815,1816]],[[1816,1815,7827]],[[7827,1815,7869]],[[7869,1815,7862]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb64-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018600","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005329)","inonderzoek":"0","lokaalid":"G0503.032e68f046c449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84999.155 447498.983)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:61)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7872,7873,7874]],[[7872,7875,7876]],[[7872,7874,7875]],[[7873,7877,7874]],[[7877,7873,7878]],[[7879,1789,1790]],[[1790,1789,7872]],[[7872,1789,7880]],[[7872,7880,7873]],[[7881,7879,914]],[[914,7879,1790]],[[914,1790,7876]],[[7876,1790,7872]],[[912,7881,7875]],[[7875,7881,914]],[[7875,914,7876]],[[956,912,7874]],[[7874,912,7875]],[[909,956,7877]],[[7877,956,7874]],[[847,909,7882]],[[7882,909,7878]],[[7878,909,7877]],[[1789,847,7880]],[[7880,847,7882]],[[7880,7882,7873]],[[7873,7882,7878]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb67-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018607","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.82999992370605,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7883,7884,7885]],[[7883,7885,7886]],[[7884,7887,7885]],[[1780,1790,7888]],[[7888,1790,7883]],[[7883,1790,7872]],[[7883,7872,7884]],[[915,1780,7889]],[[7889,1780,7888]],[[7889,7888,7886]],[[7886,7888,7883]],[[916,915,7885]],[[7885,915,7889]],[[7885,7889,7886]],[[914,916,7876]],[[7876,916,7887]],[[7887,916,7885]],[[1790,914,7872]],[[7872,914,7876]],[[7872,7876,7884]],[[7884,7876,7887]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb6a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018610","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7890,7888,7889]],[[7890,7889,7891]],[[1781,7892,7893]],[[7893,7892,7890]],[[7890,7892,1780]],[[7890,1780,7888]],[[885,1781,7894]],[[7894,1781,7893]],[[7894,7893,7891]],[[7891,7893,7890]],[[7895,885,915]],[[915,885,7889]],[[7889,885,7894]],[[7889,7894,7891]],[[7892,7895,1780]],[[1780,7895,915]],[[1780,915,7888]],[[7888,915,7889]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb6f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018598","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005330)","inonderzoek":"0","lokaalid":"G0503.032e68f046c749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.75999999046326,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85003.595 447492.683)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:62)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7896,7893,7897]],[[7896,7897,7898]],[[7893,7894,7897]],[[1823,7899,7896]],[[7896,7899,1781]],[[7896,1781,7893]],[[921,1823,7898]],[[7898,1823,7896]],[[887,921,7897]],[[7897,921,7898]],[[7900,887,885]],[[885,887,7894]],[[7894,887,7897]],[[7899,7900,1781]],[[1781,7900,885]],[[1781,885,7893]],[[7893,885,7894]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb74-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018601","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060856)","inonderzoek":"0","lokaalid":"G0503.032e68f046c849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85013.307 447488.999)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:65)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7901,7902,7903]],[[7901,7903,7904]],[[1848,1769,7905]],[[7905,1769,7906]],[[7905,7906,7901]],[[7901,7906,7902]],[[7907,1848,1858]],[[1858,1848,7908]],[[7908,1848,7904]],[[7904,1848,7905]],[[7904,7905,7901]],[[7909,7907,1822]],[[1822,7907,1858]],[[1822,1858,7910]],[[7910,1858,7908]],[[7910,7908,7903]],[[7903,7908,7904]],[[1769,7909,7906]],[[7906,7909,7902]],[[7902,7909,1822]],[[7902,1822,7910]],[[7902,7910,7903]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb77-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018589","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7838,7839,7906]],[[7838,7906,7905]],[[1847,1770,7838]],[[7838,1770,7839]],[[1848,1847,7905]],[[7905,1847,7838]],[[1769,1848,7906]],[[7906,1848,7905]],[[1770,1769,7839]],[[7839,1769,7906]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb7a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000032235","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046ca49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.49000000953674,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7908,7910,7911]],[[7908,7912,7913]],[[7908,7911,7912]],[[7912,7911,7914]],[[1858,1822,7908]],[[7908,1822,7910]],[[1845,1858,7913]],[[7913,1858,7908]],[[7915,1845,7912]],[[7912,1845,7913]],[[7916,7915,7914]],[[7914,7915,7912]],[[1821,7916,7911]],[[7911,7916,7914]],[[1822,1821,7910]],[[7910,1821,7911]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb7f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000022860","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027125)","inonderzoek":"0","lokaalid":"G0503.032e68f046cb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.73000001907349,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84969.447 447476.735)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:62)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7917,7918,7919]],[[7920,7921,7922]],[[7920,7923,7921]],[[7920,7924,7923]],[[7920,7918,7924]],[[7924,7918,7917]],[[7917,7919,7925]],[[7926,7927,7928]],[[7928,7927,7929]],[[7928,7929,7920]],[[7920,7929,7918]],[[7930,7926,7922]],[[7922,7926,7928]],[[7922,7928,7920]],[[7931,7930,7921]],[[7921,7930,7922]],[[7932,7931,7923]],[[7923,7931,7921]],[[7933,7932,7924]],[[7924,7932,7923]],[[7934,7933,7917]],[[7917,7933,7924]],[[7935,7934,7925]],[[7925,7934,7917]],[[7936,7935,7919]],[[7919,7935,7925]],[[7927,7936,7929]],[[7929,7936,7918]],[[7918,7936,7919]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb84-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000026301","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027124)","inonderzoek":"0","lokaalid":"G0503.032e68f046cc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.72000002861023,"min-height-surface":-0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84974.937 447475.330)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:60)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7937,7938,7939]],[[7940,7941,7942]],[[7929,7940,7942]],[[7937,7939,7942]],[[7940,7929,7928]],[[7942,7939,7929]],[[7938,7943,7939]],[[880,7944,7937]],[[7937,7944,950]],[[7937,950,7945]],[[7937,7945,7938]],[[876,880,7942]],[[7942,880,7937]],[[874,876,7941]],[[7941,876,7942]],[[7946,874,7940]],[[7940,874,7941]],[[7947,7946,7926]],[[7926,7946,7928]],[[7928,7946,7940]],[[7948,7947,7927]],[[7927,7947,7926]],[[7927,7926,7929]],[[7929,7926,7928]],[[7949,7948,7950]],[[7950,7948,7951]],[[7951,7948,7939]],[[7939,7948,7927]],[[7939,7927,7929]],[[7952,7949,7953]],[[7953,7949,7950]],[[7953,7950,7954]],[[7954,7950,7951]],[[7954,7951,7943]],[[7943,7951,7939]],[[7944,7952,950]],[[950,7952,7953]],[[950,7953,7945]],[[7945,7953,7954]],[[7945,7954,7938]],[[7938,7954,7943]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb89-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35)","identificatiebagpnd":"503100000018596","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027127)","inonderzoek":"0","lokaalid":"G0503.032e68f046cd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.45000004768372,"min-height-surface":0.0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84974.524 447485.045)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:68)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7955,7956,7957]],[[7958,7959,7957]],[[7958,7960,7959]],[[7958,7961,7962]],[[7960,7958,7963]],[[7963,7958,7962]],[[7964,7965,7957]],[[7957,7966,7958]],[[7957,7965,7966]],[[7956,7964,7957]],[[7967,7968,7955]],[[7955,7968,7956]],[[7969,7967,7957]],[[7957,7967,7955]],[[7970,7969,7959]],[[7959,7969,7957]],[[7971,7970,7960]],[[7960,7970,7959]],[[7972,7971,7963]],[[7963,7971,7960]],[[1295,7972,7962]],[[7962,7972,7963]],[[1109,1295,7961]],[[7961,1295,7962]],[[1245,1109,7958]],[[7958,1109,7961]],[[1139,1245,7966]],[[7966,1245,7958]],[[1131,1139,7965]],[[7965,1139,7966]],[[1280,1131,7964]],[[7964,1131,7965]],[[7968,1280,7956]],[[7956,1280,7964]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be229e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000026300","identificatiebagvbohoogstehuisnummer":"(1:503010000027123)","identificatiebagvbolaagstehuisnummer":"(1:503010000027122)","inonderzoek":"0","lokaalid":"G0503.032e68f046ce49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.73000001907349,"min-height-surface":-0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84979.787 447473.527)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:58-58A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7973,7974,7975]],[[7976,7977,7975]],[[7974,7978,7975]],[[7977,7976,7979]],[[7976,7975,7978]],[[7974,7980,7978]],[[7974,7981,7980]],[[7980,7981,7982]],[[875,874,7973]],[[7973,874,7941]],[[7973,7941,7974]],[[872,875,7975]],[[7975,875,7973]],[[865,872,7977]],[[7977,872,7975]],[[866,865,7979]],[[7979,865,7977]],[[859,866,7976]],[[7976,866,7979]],[[852,859,7978]],[[7978,859,7976]],[[853,852,7980]],[[7980,852,7978]],[[854,853,7982]],[[7982,853,7980]],[[7946,854,7940]],[[7940,854,7981]],[[7981,854,7982]],[[874,7946,7941]],[[7941,7946,7940]],[[7941,7940,7974]],[[7974,7940,7981]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000022863","identificatiebagvbohoogstehuisnummer":"(1:503010000003314)","identificatiebagvbolaagstehuisnummer":"(1:503010000003313)","inonderzoek":"0","lokaalid":"G0503.032e68f046cf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.92000007629395,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85018.008 447530.384)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:54-55)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7805,7808,7983]],[[7805,7984,7985]],[[7805,7983,7984]],[[7986,7983,7808]],[[7987,7988,7989]],[[7989,7990,7991]],[[7989,7988,7992]],[[7991,7990,7993]],[[7993,7990,7994]],[[7989,7992,7990]],[[7988,7995,7992]],[[7992,7995,7996]],[[7995,7997,7998]],[[7998,7999,8000]],[[8000,7999,8001]],[[7995,7988,7997]],[[7998,7997,7999]],[[7988,7983,7997]],[[8002,7986,7808]],[[7997,7983,7986]],[[8002,8003,7986]],[[8003,8002,8004]],[[1606,7807,7805]],[[7805,7807,7808]],[[1346,1606,7985]],[[7985,1606,7805]],[[1341,1346,7984]],[[7984,1346,7985]],[[1342,1341,7983]],[[7983,1341,7984]],[[1650,1342,7988]],[[7988,1342,7983]],[[1338,1650,7987]],[[7987,1650,7988]],[[1339,1338,7989]],[[7989,1338,7987]],[[1358,1339,7991]],[[7991,1339,7989]],[[1622,1358,7993]],[[7993,1358,7991]],[[1353,1622,7994]],[[7994,1622,7993]],[[1372,1353,7990]],[[7990,1353,7994]],[[8005,1372,7992]],[[7992,1372,7990]],[[3033,8005,7996]],[[7996,8005,7992]],[[3034,3033,7995]],[[7995,3033,7996]],[[3031,3034,7998]],[[7998,3034,7995]],[[3029,3031,8000]],[[8000,3031,7998]],[[8006,3029,8001]],[[8001,3029,8000]],[[8007,8006,7999]],[[7999,8006,8001]],[[8008,8007,7997]],[[7997,8007,7999]],[[8009,8008,7986]],[[7986,8008,7997]],[[8010,8009,8003]],[[8003,8009,7986]],[[8011,8010,8004]],[[8004,8010,8003]],[[8012,8011,8002]],[[8002,8011,8004]],[[7807,8012,7808]],[[7808,8012,8002]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000029913","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003308)","inonderzoek":"0","lokaalid":"G0503.032e68f046d049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.53000020980835,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85006.313 447542.303)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:49)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8013,608,8014]],[[8013,8015,8016]],[[608,8013,604]],[[605,604,8017]],[[605,8017,8018]],[[8019,604,8020]],[[604,8019,8017]],[[8021,8019,8022]],[[8019,8020,8022]],[[8016,8015,8023]],[[604,8016,8020]],[[604,8013,8016]],[[8023,8015,8024]],[[1630,8025,8026]],[[8026,8025,8027]],[[8026,8027,8013]],[[8013,8027,8015]],[[1507,1630,8014]],[[8014,1630,8026]],[[8014,8026,8013]],[[607,1507,608]],[[608,1507,8014]],[[602,607,604]],[[604,607,608]],[[603,602,605]],[[605,602,604]],[[8028,603,8018]],[[8018,603,605]],[[8029,8028,8017]],[[8017,8028,8018]],[[8030,8029,8019]],[[8019,8029,8017]],[[8031,8030,8021]],[[8021,8030,8019]],[[8032,8031,8022]],[[8022,8031,8021]],[[8033,8032,8020]],[[8020,8032,8022]],[[8034,8033,8016]],[[8016,8033,8020]],[[8035,8034,8023]],[[8023,8034,8016]],[[8036,8035,8024]],[[8024,8035,8023]],[[8025,8036,8027]],[[8027,8036,8015]],[[8015,8036,8024]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22ad-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000029914","identificatiebagvbohoogstehuisnummer":"(1:503010000003310)","identificatiebagvbolaagstehuisnummer":"(1:503010000003309)","inonderzoek":"0","lokaalid":"G0503.032e68f046d149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.65999984741211,"min-height-surface":-0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85009.378 447538.258)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:50-51)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8037,8038,8027]],[[8026,8039,8027]],[[8040,8037,8027]],[[8041,8040,8027]],[[8039,8041,8027]],[[8042,8039,8026]],[[8042,8043,8044]],[[8039,8042,8044]],[[1539,3018,8045]],[[8045,3018,8046]],[[8045,8046,8042]],[[8042,8046,8043]],[[8047,1539,1630]],[[1630,1539,8026]],[[8026,1539,8045]],[[8026,8045,8042]],[[8048,8047,8025]],[[8025,8047,1630]],[[8025,1630,8027]],[[8027,1630,8026]],[[3017,8048,8038]],[[8038,8048,8025]],[[8038,8025,8027]],[[3028,3017,8037]],[[8037,3017,8038]],[[3025,3028,8040]],[[8040,3028,8037]],[[3026,3025,8041]],[[8041,3025,8040]],[[3027,3026,8039]],[[8039,3026,8041]],[[3024,3027,8044]],[[8044,3027,8039]],[[3018,3024,8046]],[[8046,3024,8043]],[[8043,3024,8044]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027998","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046d249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8049,8050,8051]],[[8049,8051,8052]],[[8053,8054,1810]],[[1810,8054,8055]],[[1810,8055,8056]],[[8056,8055,8057]],[[8056,8057,8049]],[[8049,8057,8050]],[[1828,8053,7863]],[[7863,8053,8052]],[[8052,8053,1810]],[[8052,1810,8056]],[[8052,8056,8049]],[[7867,1828,7864]],[[7864,1828,7863]],[[7864,7863,8051]],[[8051,7863,8052]],[[8054,7867,8055]],[[8055,7867,8057]],[[8057,7867,8050]],[[8050,7867,7864]],[[8050,7864,8051]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000018594","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005335)","inonderzoek":"0","lokaalid":"G0503.032e68f046d349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.8199999332428,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85035.520 447511.425)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:73)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8058,8059,8057]],[[8058,8057,8056]],[[1809,8060,8058]],[[8058,8060,8059]],[[1810,1809,8056]],[[8056,1809,8058]],[[8055,1810,8057]],[[8057,1810,8056]],[[8060,8055,8059]],[[8059,8055,8057]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027997","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046d449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.88000011444092,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8061,8062,8063]],[[8061,8063,8064]],[[1811,7831,7826]],[[7826,7831,7828]],[[7826,7828,8061]],[[8061,7828,8062]],[[1809,1811,8058]],[[8058,1811,8064]],[[8064,1811,7826]],[[8064,7826,8061]],[[8060,1809,8059]],[[8059,1809,8058]],[[8059,8058,8063]],[[8063,8058,8064]],[[7831,8060,7828]],[[7828,8060,8062]],[[8062,8060,8059]],[[8062,8059,8063]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22bd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-48.6)","identificatiebagpnd":"503100000022859","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003317)","inonderzoek":"0","lokaalid":"G0503.032e68f046d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85042.649 447462.716)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:79)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8065,8066,8067]],[[8068,8069,8070]],[[8068,8071,8069]],[[8072,8073,8074]],[[8070,8074,8068]],[[8075,8076,8074]],[[8075,8077,8076]],[[8078,8079,8080]],[[8074,8073,8075]],[[8081,8072,8074]],[[8082,8083,8084]],[[8072,8082,8084]],[[8073,8072,8084]],[[8085,8086,8087]],[[8072,8088,8089]],[[8080,8090,8091]],[[8078,8080,8091]],[[8089,8092,8091]],[[8093,8094,8070]],[[8091,8095,8078]],[[8092,8095,8091]],[[8088,8092,8089]],[[8096,8097,8098]],[[8099,8100,8088]],[[8072,8081,8088]],[[8088,8081,8099]],[[8094,8074,8070]],[[8096,8101,8102]],[[8096,8081,8097]],[[8103,8101,8104]],[[8105,8106,8107]],[[8105,8107,8108]],[[8106,8103,8107]],[[8108,8109,8110]],[[8108,8107,8109]],[[8103,8104,8107]],[[8101,8096,8098]],[[8101,8098,8104]],[[8104,8098,8111]],[[8111,8098,8112]],[[8081,8074,8094]],[[8094,8087,8086]],[[8113,8098,8097]],[[8097,8081,8094]],[[8086,8097,8094]],[[8114,8093,8070]],[[8115,8094,8093]],[[8114,8116,8093]],[[8114,8067,8116]],[[8114,8065,8067]],[[8117,8118,8065]],[[8065,8118,8066]],[[8119,8117,8114]],[[8114,8117,8065]],[[8120,8119,8070]],[[8070,8119,8114]],[[8121,8120,8069]],[[8069,8120,8070]],[[8122,8121,8071]],[[8071,8121,8069]],[[8123,8122,8068]],[[8068,8122,8071]],[[8124,8123,8074]],[[8074,8123,8068]],[[8125,8124,8076]],[[8076,8124,8074]],[[8126,8125,8077]],[[8077,8125,8076]],[[8127,8126,8075]],[[8075,8126,8077]],[[8128,8127,8073]],[[8073,8127,8075]],[[8129,8128,8084]],[[8084,8128,8073]],[[8130,8129,8083]],[[8083,8129,8084]],[[8131,8130,8082]],[[8082,8130,8083]],[[8132,8131,8072]],[[8072,8131,8082]],[[8133,8132,8089]],[[8089,8132,8072]],[[8134,8133,8091]],[[8091,8133,8089]],[[8135,8134,8090]],[[8090,8134,8091]],[[8136,8135,8080]],[[8080,8135,8090]],[[8137,8136,8079]],[[8079,8136,8080]],[[8138,8137,8078]],[[8078,8137,8079]],[[8139,8138,8095]],[[8095,8138,8078]],[[8140,8139,8092]],[[8092,8139,8095]],[[8141,8140,8088]],[[8088,8140,8092]],[[8142,8141,8100]],[[8100,8141,8088]],[[8143,8142,8099]],[[8099,8142,8100]],[[8144,8143,8081]],[[8081,8143,8099]],[[8145,8144,8096]],[[8096,8144,8081]],[[8146,8145,8102]],[[8102,8145,8096]],[[8147,8146,8101]],[[8101,8146,8102]],[[8148,8147,8103]],[[8103,8147,8101]],[[8149,8148,8106]],[[8106,8148,8103]],[[8150,8149,8105]],[[8105,8149,8106]],[[8151,8150,8108]],[[8108,8150,8105]],[[8152,8151,8110]],[[8110,8151,8108]],[[8153,8152,8109]],[[8109,8152,8110]],[[8154,8153,8107]],[[8107,8153,8109]],[[8155,8154,8104]],[[8104,8154,8107]],[[8156,8155,8111]],[[8111,8155,8104]],[[8157,8156,8112]],[[8112,8156,8111]],[[8158,8157,8098]],[[8098,8157,8112]],[[2887,8158,8113]],[[8113,8158,8098]],[[2880,2887,8097]],[[8097,2887,8113]],[[2878,2880,8086]],[[8086,2880,8097]],[[2879,2878,8085]],[[8085,2878,8086]],[[2873,2879,8087]],[[8087,2879,8085]],[[2874,2873,8094]],[[8094,2873,8087]],[[2876,2874,8115]],[[8115,2874,8094]],[[2913,2876,8093]],[[8093,2876,8115]],[[2911,2913,8116]],[[8116,2913,8093]],[[8159,2911,8067]],[[8067,2911,8116]],[[8118,8159,8066]],[[8066,8159,8067]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22c2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018519","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000002511)","inonderzoek":"0","lokaalid":"G0503.032e68f046d649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.73000001907349,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84995.031 447504.834)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:58)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7880,8160,8161]],[[7880,8161,7882]],[[8162,8163,8161]],[[8160,8162,8161]],[[8164,8165,8162]],[[8165,8164,8166]],[[8166,8164,8167]],[[8160,8164,8162]],[[8168,1825,1789]],[[1789,1825,7880]],[[7880,1825,8160]],[[8169,8168,847]],[[847,8168,1789]],[[847,1789,7882]],[[7882,1789,7880]],[[907,8169,8161]],[[8161,8169,847]],[[8161,847,7882]],[[8170,907,8163]],[[8163,907,8161]],[[8171,8170,8162]],[[8162,8170,8163]],[[8172,8171,8165]],[[8165,8171,8162]],[[8173,8172,8166]],[[8166,8172,8165]],[[8174,8173,8167]],[[8167,8173,8166]],[[8175,8174,8164]],[[8164,8174,8167]],[[1825,8175,8160]],[[8160,8175,8164]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22c7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-34)","identificatiebagpnd":"503100000032723","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027126)","inonderzoek":"0","lokaalid":"G0503.032e68f046d749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.65000009536743,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84988.193 447489.302)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:66)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8176,8177,8178]],[[8176,7945,8177]],[[8179,8180,8181]],[[7945,8176,7954]],[[7951,7954,8182]],[[7954,8183,8182]],[[7954,8176,8183]],[[8176,8179,8183]],[[8176,8180,8179]],[[8181,8180,8184]],[[8184,8180,8185]],[[892,891,8176]],[[8176,891,8180]],[[889,892,8178]],[[8178,892,8176]],[[947,889,8177]],[[8177,889,8178]],[[950,947,7945]],[[7945,947,8177]],[[7953,950,7954]],[[7954,950,7945]],[[7950,7953,7951]],[[7951,7953,7954]],[[8186,7950,8182]],[[8182,7950,7951]],[[899,8186,8183]],[[8183,8186,8182]],[[900,899,8179]],[[8179,899,8183]],[[898,900,8181]],[[8181,900,8179]],[[894,898,8184]],[[8184,898,8181]],[[906,894,8185]],[[8185,894,8184]],[[891,906,8180]],[[8180,906,8185]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22cc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000022862","identificatiebagvbohoogstehuisnummer":"(1:503010000003312)","identificatiebagvbolaagstehuisnummer":"(1:503010000003311)","inonderzoek":"0","lokaalid":"G0503.032e68f046d849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.28000020980835,"min-height-surface":-0.340000003576279,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85011.805 447532.804)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:52-53)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8187,8188,8189]],[[8187,8190,8188]],[[8188,8046,8045]],[[8188,8191,8046]],[[8188,8190,8191]],[[8187,8192,8193]],[[8194,8190,8195]],[[8196,8194,8195]],[[8197,8196,8195]],[[8197,8195,8198]],[[8198,8195,8199]],[[8195,8200,8201]],[[8195,8193,8200]],[[8190,8193,8195]],[[8190,8187,8193]],[[8202,8203,8005]],[[8005,8203,3033]],[[8005,3033,7992]],[[7992,3033,7996]],[[7992,7996,8187]],[[8187,7996,8192]],[[8204,8202,1372]],[[1372,8202,8005]],[[1372,8005,7990]],[[7990,8005,7992]],[[7990,7992,8189]],[[8189,7992,8187]],[[1502,8204,8188]],[[8188,8204,1372]],[[8188,1372,7990]],[[8188,7990,8189]],[[8205,1502,1539]],[[1539,1502,8045]],[[8045,1502,8188]],[[8206,8205,3018]],[[3018,8205,1539]],[[3018,1539,8046]],[[8046,1539,8045]],[[3019,8206,8191]],[[8191,8206,3018]],[[8191,3018,8046]],[[3023,3019,8190]],[[8190,3019,8191]],[[3022,3023,8194]],[[8194,3023,8190]],[[3021,3022,8196]],[[8196,3022,8194]],[[3020,3021,8197]],[[8197,3021,8196]],[[3016,3020,8198]],[[8198,3020,8197]],[[8207,3016,8199]],[[8199,3016,8198]],[[8208,8207,8195]],[[8195,8207,8199]],[[3030,8208,8201]],[[8201,8208,8195]],[[3032,3030,8200]],[[8200,3030,8201]],[[3035,3032,8193]],[[8193,3032,8200]],[[8203,3035,3033]],[[3033,3035,7996]],[[7996,3035,8192]],[[8192,3035,8193]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49e1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000018595","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027128)","inonderzoek":"0","lokaalid":"G0503.032e68f046d949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.98000001907349,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84961.012 447480.098)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:70)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8209,8210,8211]],[[8209,8212,8213]],[[8210,8209,8214]],[[8215,8214,8216]],[[8216,8214,8217]],[[8214,8213,8217]],[[8214,8209,8213]],[[8218,8219,8209]],[[8209,8219,8212]],[[8220,8218,8211]],[[8211,8218,8209]],[[8221,8220,8222]],[[8222,8220,8210]],[[8210,8220,8211]],[[8223,8221,8224]],[[8224,8221,8222]],[[8224,8222,8214]],[[8214,8222,8210]],[[8225,8223,8226]],[[8226,8223,8224]],[[8226,8224,8215]],[[8215,8224,8214]],[[1143,8225,8227]],[[8227,8225,8226]],[[8227,8226,8216]],[[8216,8226,8215]],[[1144,1143,8217]],[[8217,1143,8227]],[[8217,8227,8216]],[[1247,1144,8213]],[[8213,1144,8217]],[[8219,1247,8212]],[[8212,1247,8213]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49e6-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000018591","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027129)","inonderzoek":"0","lokaalid":"G0503.032e68f046da49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84954.601 447482.214)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:72)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8224,8226,424]],[[8224,424,8222]],[[8222,424,427]],[[424,8226,8228]],[[424,434,425]],[[424,8228,434]],[[8226,8227,8228]],[[8223,8225,8224]],[[8224,8225,8226]],[[8221,8223,8222]],[[8222,8223,8224]],[[8229,8221,426]],[[426,8221,427]],[[427,8221,8222]],[[8230,8229,422]],[[422,8229,426]],[[422,426,424]],[[424,426,427]],[[8231,8230,423]],[[423,8230,422]],[[423,422,425]],[[425,422,424]],[[8232,8231,433]],[[433,8231,423]],[[433,423,434]],[[434,423,425]],[[1149,8232,8228]],[[8228,8232,433]],[[8228,433,434]],[[1143,1149,8227]],[[8227,1149,8228]],[[8225,1143,8226]],[[8226,1143,8227]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49eb-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000028000","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003303)","inonderzoek":"0","lokaalid":"G0503.032e68f046e249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.82999992370605,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84984.506 447563.460)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:43)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8233,8234,8235]],[[8233,8236,8234]],[[8234,8236,8237]],[[8237,8236,8238]],[[8236,8239,8240]],[[8241,8233,8242]],[[8240,8239,8243]],[[8236,8233,8239]],[[8244,8241,8242]],[[8239,8233,8241]],[[676,677,660]],[[660,677,664]],[[660,664,8233]],[[8233,664,8242]],[[675,676,661]],[[661,676,660]],[[661,660,8235]],[[8235,660,8233]],[[1687,675,8234]],[[8234,675,661]],[[8234,661,8235]],[[1420,1687,8237]],[[8237,1687,8234]],[[1416,1420,8245]],[[8245,1420,8238]],[[8238,1420,8237]],[[8246,1416,8247]],[[8247,1416,8245]],[[8247,8245,8236]],[[8236,8245,8238]],[[8248,8246,8249]],[[8249,8246,8247]],[[8249,8247,8240]],[[8240,8247,8236]],[[8250,8248,8243]],[[8243,8248,8249]],[[8243,8249,8240]],[[8251,8250,8239]],[[8239,8250,8243]],[[8252,8251,8241]],[[8241,8251,8239]],[[8253,8252,8244]],[[8244,8252,8241]],[[677,8253,664]],[[664,8253,8242]],[[8242,8253,8244]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49f0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000017045","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003302)","inonderzoek":"0","lokaalid":"G0503.032e68f046e349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.76999998092651,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84980.310 447567.401)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:42)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8247,8254,8245]],[[8245,8254,8255]],[[8256,8247,8249]],[[8257,8254,8258]],[[8257,8258,8259]],[[8258,8254,8260]],[[8258,8261,8262]],[[8258,8263,8261]],[[8261,8263,8264]],[[8254,8247,8260]],[[8265,8260,8256]],[[8263,8258,8260]],[[8266,8256,8249]],[[8260,8247,8256]],[[8267,8268,8246]],[[8246,8268,8248]],[[8246,8248,8247]],[[8247,8248,8249]],[[8269,8267,1416]],[[1416,8267,8246]],[[1416,8246,8245]],[[8245,8246,8247]],[[1683,8269,8255]],[[8255,8269,1416]],[[8255,1416,8245]],[[8270,1683,8254]],[[8254,1683,8255]],[[8271,8270,8257]],[[8257,8270,8254]],[[8272,8271,8259]],[[8259,8271,8257]],[[8273,8272,8258]],[[8258,8272,8259]],[[8274,8273,8262]],[[8262,8273,8258]],[[8275,8274,8261]],[[8261,8274,8262]],[[8276,8275,8264]],[[8264,8275,8261]],[[8277,8276,8263]],[[8263,8276,8264]],[[8278,8277,8260]],[[8260,8277,8263]],[[8279,8278,8265]],[[8265,8278,8260]],[[8280,8279,8256]],[[8256,8279,8265]],[[8281,8280,8266]],[[8266,8280,8256]],[[8268,8281,8248]],[[8248,8281,8249]],[[8249,8281,8266]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49f5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026309","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003301)","inonderzoek":"0","lokaalid":"G0503.032e68f046e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.76999998092651,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84967.823 447579.382)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:41)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8282,8283,8284]],[[8285,8286,8287]],[[8286,8288,8287]],[[8289,8290,8287]],[[8288,8289,8287]],[[8291,8285,8287]],[[8292,8293,8285]],[[8294,8295,8285]],[[8296,8297,8295]],[[8298,8299,8300]],[[8299,8301,8300]],[[8302,8303,8304]],[[8300,8301,8304]],[[8302,8305,8303]],[[8302,8306,8305]],[[8301,8302,8304]],[[8296,8298,8300]],[[8295,8294,8296]],[[8291,8284,8307]],[[8296,8308,8298]],[[8296,8294,8308]],[[8294,8285,8293]],[[8284,8309,8307]],[[8291,8307,8285]],[[8310,8293,8292]],[[8285,8307,8292]],[[8284,8283,8309]],[[8311,8312,8282]],[[8282,8312,8283]],[[8313,8311,8284]],[[8284,8311,8282]],[[8314,8313,8291]],[[8291,8313,8284]],[[8315,8314,8287]],[[8287,8314,8291]],[[8316,8315,8290]],[[8290,8315,8287]],[[8317,8316,8289]],[[8289,8316,8290]],[[8318,8317,8288]],[[8288,8317,8289]],[[2798,8318,8286]],[[8286,8318,8288]],[[2794,2798,8285]],[[8285,2798,8286]],[[2763,2794,8295]],[[8295,2794,8285]],[[2787,2763,8297]],[[8297,2763,8295]],[[2788,2787,8296]],[[8296,2787,8297]],[[2789,2788,8300]],[[8300,2788,8296]],[[2799,2789,8304]],[[8304,2789,8300]],[[8319,2799,8303]],[[8303,2799,8304]],[[8320,8319,8305]],[[8305,8319,8303]],[[8321,8320,8306]],[[8306,8320,8305]],[[8322,8321,8302]],[[8302,8321,8306]],[[8323,8322,8301]],[[8301,8322,8302]],[[8324,8323,8325]],[[8325,8323,8326]],[[8326,8323,8299]],[[8299,8323,8301]],[[8327,8324,8328]],[[8328,8324,8325]],[[8328,8325,8329]],[[8329,8325,8326]],[[8329,8326,8298]],[[8298,8326,8299]],[[8330,8327,8308]],[[8308,8327,8328]],[[8308,8328,8329]],[[8308,8329,8298]],[[8331,8330,8294]],[[8294,8330,8308]],[[8332,8331,8293]],[[8293,8331,8294]],[[8333,8332,8310]],[[8310,8332,8293]],[[8334,8333,8292]],[[8292,8333,8310]],[[8335,8334,8307]],[[8307,8334,8292]],[[8336,8335,8309]],[[8309,8335,8307]],[[8312,8336,8283]],[[8283,8336,8309]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49fa-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026310","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003300)","inonderzoek":"0","lokaalid":"G0503.032e68f046e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.04999995231628,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84965.207 447582.006)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:40)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8337,8338,8339]],[[8337,8339,8340]],[[8339,8341,8342]],[[8343,8344,8341]],[[8339,8343,8341]],[[8344,8343,8345]],[[8339,8346,8343]],[[8339,8338,8346]],[[8346,8338,8347]],[[8348,8349,8331]],[[8331,8349,8332]],[[8331,8332,8294]],[[8294,8332,8293]],[[8294,8293,8337]],[[8337,8293,8338]],[[8350,8348,8340]],[[8340,8348,8331]],[[8340,8331,8294]],[[8340,8294,8337]],[[8351,8350,8339]],[[8339,8350,8340]],[[8352,8351,8342]],[[8342,8351,8339]],[[746,8352,709]],[[709,8352,8341]],[[8341,8352,8342]],[[747,746,710]],[[710,746,709]],[[710,709,8344]],[[8344,709,8341]],[[8353,747,8345]],[[8345,747,710]],[[8345,710,8344]],[[8354,8353,8343]],[[8343,8353,8345]],[[8355,8354,8346]],[[8346,8354,8343]],[[8356,8355,8347]],[[8347,8355,8346]],[[8349,8356,8332]],[[8332,8356,8293]],[[8293,8356,8338]],[[8338,8356,8347]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cd7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000022785","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0562849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.4300000667572,"min-height-surface":0.259999990463257,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8357,8358,8359]],[[8357,8359,8360]],[[8358,8361,8359]],[[1396,1657,8362]],[[8362,1657,8357]],[[8357,1657,8363]],[[8357,8363,8358]],[[1398,1396,8364]],[[8364,1396,8362]],[[8364,8362,8360]],[[8360,8362,8357]],[[1393,1398,8359]],[[8359,1398,8364]],[[8359,8364,8360]],[[1388,1393,8365]],[[8365,1393,8361]],[[8361,1393,8359]],[[1657,1388,8363]],[[8363,1388,8365]],[[8363,8365,8358]],[[8358,8365,8361]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cdc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-40.2)","identificatiebagpnd":"503100000022784","identificatiebagvbohoogstehuisnummer":"(1:503010000027120)","identificatiebagvbolaagstehuisnummer":"(1:503010000027118)","inonderzoek":"0","lokaalid":"G0503.032e68f0562949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.42000007629395,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84963.917 447554.114)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:51-55)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8366,8367,8368]],[[8369,8370,8371]],[[8365,8369,8371]],[[8363,8369,8365]],[[8372,8363,8373]],[[8363,8374,8369]],[[8363,8372,8374]],[[8374,8375,8376]],[[8374,8372,8375]],[[8363,8367,8366]],[[8368,8367,8377]],[[8373,8378,8379]],[[8373,8366,8378]],[[8373,8363,8366]],[[8368,8377,8380]],[[8381,8368,8380]],[[1501,1500,8367]],[[8367,1500,8377]],[[8382,1501,1657]],[[1657,1501,8363]],[[8363,1501,8367]],[[8383,8382,1388]],[[1388,8382,1657]],[[1388,1657,8365]],[[8365,1657,8363]],[[1389,8383,8371]],[[8371,8383,1388]],[[8371,1388,8365]],[[8384,1389,8370]],[[8370,1389,8371]],[[8385,8384,8369]],[[8369,8384,8370]],[[8386,8385,8374]],[[8374,8385,8369]],[[8387,8386,8376]],[[8376,8386,8374]],[[8388,8387,8375]],[[8375,8387,8376]],[[8389,8388,8372]],[[8372,8388,8375]],[[8390,8389,8373]],[[8373,8389,8372]],[[8391,8390,8379]],[[8379,8390,8373]],[[8392,8391,8378]],[[8378,8391,8379]],[[8393,8392,8366]],[[8366,8392,8378]],[[8394,8393,8368]],[[8368,8393,8366]],[[8395,8394,8381]],[[8381,8394,8368]],[[8396,8395,8380]],[[8380,8395,8381]],[[1500,8396,8377]],[[8377,8396,8380]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cdf-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026303","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0562a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.330000013113022,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8326,8329,8397]],[[8329,8398,8397]],[[8398,8329,8399]],[[8398,8399,8400]],[[8329,8401,8399]],[[8325,8328,8326]],[[8326,8328,8329]],[[8402,8325,8397]],[[8397,8325,8326]],[[1097,8402,8398]],[[8398,8402,8397]],[[1095,1097,8400]],[[8400,1097,8398]],[[8403,1095,8399]],[[8399,1095,8400]],[[8404,8403,8401]],[[8401,8403,8399]],[[8328,8404,8329]],[[8329,8404,8401]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18906-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017316","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":0.75,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8405,8406,8407]],[[8405,8407,8408]],[[8408,8407,8409]],[[8406,8410,8407]],[[8406,8411,8410]],[[1151,1150,8405]],[[8405,1150,8406]],[[1178,1151,8408]],[[8408,1151,8405]],[[1172,1178,8409]],[[8409,1178,8408]],[[1160,1172,8407]],[[8407,1172,8409]],[[1161,1160,8410]],[[8410,1160,8407]],[[8412,1161,8411]],[[8411,1161,8410]],[[1150,8412,8406]],[[8406,8412,8411]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1890f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017220","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.40000009536743,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8413,8414,8415]],[[8413,8415,8416]],[[8417,1942,8413]],[[8413,1942,8414]],[[2214,8417,8416]],[[8416,8417,8413]],[[1941,2214,8415]],[[8415,2214,8416]],[[1942,1941,8414]],[[8414,1941,8415]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18912-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017502","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.340000003576279,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8418,8419,8420]],[[8419,8421,8420]],[[8419,8422,8421]],[[8421,8422,8423]],[[8424,8425,8418]],[[8418,8425,8419]],[[8426,8424,8420]],[[8420,8424,8418]],[[8427,8426,8421]],[[8421,8426,8420]],[[8428,8427,8423]],[[8423,8427,8421]],[[8429,8428,8422]],[[8422,8428,8423]],[[8425,8429,8419]],[[8419,8429,8422]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18915-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026315","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.83999991416931,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8430,8431,8432]],[[8430,8432,8433]],[[8434,8435,8430]],[[8430,8435,8431]],[[8436,8434,8433]],[[8433,8434,8430]],[[8437,8436,8432]],[[8432,8436,8433]],[[8435,8437,8431]],[[8431,8437,8432]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18918-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017416","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8438,8439,8440]],[[8438,8440,8441]],[[8442,8443,8438]],[[8438,8443,8439]],[[8444,8442,8441]],[[8441,8442,8438]],[[8445,8444,8440]],[[8440,8444,8441]],[[8443,8445,8439]],[[8439,8445,8440]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b041-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000027890","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050769)","inonderzoek":"0","lokaalid":"G0503.032e68f0752449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.409999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84922.364 447574.977)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48B)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8446,8447,8448]],[[8447,8449,8448]],[[2477,2303,8446]],[[8446,2303,8447]],[[8450,2477,2476]],[[2476,2477,8448]],[[8448,2477,8446]],[[8451,8450,2487]],[[2487,8450,2476]],[[2487,2476,8449]],[[8449,2476,8448]],[[2303,8451,8447]],[[8447,8451,2487]],[[8447,2487,8449]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b046-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000027892","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050770)","inonderzoek":"0","lokaalid":"G0503.032e68f0752649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.409999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84923.983 447577.736)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48C)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8452,8453,8454]],[[8453,8455,8454]],[[2478,2301,8452]],[[8452,2301,8453]],[[2477,2478,8446]],[[8446,2478,8454]],[[8454,2478,8452]],[[2303,2477,8447]],[[8447,2477,8446]],[[8447,8446,8455]],[[8455,8446,8454]],[[2301,2303,8453]],[[8453,2303,8447]],[[8453,8447,8455]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b04b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017418","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050771)","inonderzoek":"0","lokaalid":"G0503.032e68f0752749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84927.347 447578.414)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48D)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8456,8457,8452]],[[8457,8453,8452]],[[2468,2510,8458]],[[8458,2510,8459]],[[8458,8459,8456]],[[8456,8459,8457]],[[8460,2468,2478]],[[2478,2468,8452]],[[8452,2468,8458]],[[8452,8458,8456]],[[8461,8460,2301]],[[2301,8460,2478]],[[2301,2478,8453]],[[8453,2478,8452]],[[2510,8461,8459]],[[8459,8461,8457]],[[8457,8461,2301]],[[8457,2301,8453]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b050-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.4)","identificatiebagpnd":"503100000017415","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050774)","inonderzoek":"0","lokaalid":"G0503.032e68f0752849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.90000009536743,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84931.244 447585.027)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48G)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8462,8463,8464]],[[8463,7497,8464]],[[8464,7497,7496]],[[2484,2485,8462]],[[8462,2485,8463]],[[2261,2484,8464]],[[8464,2484,8462]],[[8465,2261,2262]],[[2262,2261,7496]],[[7496,2261,8464]],[[8466,8465,2517]],[[2517,8465,2262]],[[2517,2262,7497]],[[7497,2262,7496]],[[2485,8466,8463]],[[8463,8466,2517]],[[8463,2517,7497]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b055-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017501","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050772)","inonderzoek":"0","lokaalid":"G0503.032e68f0752949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.389999985694885,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84929.127 447581.439)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48E)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8467,8468,8458]],[[8468,8459,8458]],[[8469,8470,2467]],[[2467,8470,2509]],[[2467,2509,8471]],[[8471,2509,8472]],[[8471,8472,8467]],[[8467,8472,8468]],[[8473,8469,2468]],[[2468,8469,8458]],[[8458,8469,2467]],[[8458,2467,8471]],[[8458,8471,8467]],[[8474,8473,2510]],[[2510,8473,2468]],[[2510,2468,8459]],[[8459,2468,8458]],[[8470,8474,2509]],[[2509,8474,8472]],[[8472,8474,8468]],[[8468,8474,2510]],[[8468,2510,8459]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b05a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017320","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050773)","inonderzoek":"0","lokaalid":"G0503.032e68f0752a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.82999992370605,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84932.514 447581.966)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48F)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8475,8472,8471]],[[8475,8471,8476]],[[2483,2509,8475]],[[8475,2509,8472]],[[2481,2483,8476]],[[8476,2483,8475]],[[2467,2481,8471]],[[8471,2481,8476]],[[2509,2467,8472]],[[8472,2467,8471]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b05d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017405","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.60000002384186,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8477,8478,8479]],[[8478,8480,8479]],[[8481,8482,8477]],[[8477,8482,8478]],[[8483,8481,8479]],[[8479,8481,8477]],[[8484,8483,8480]],[[8480,8483,8479]],[[8482,8484,8478]],[[8478,8484,8480]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d770-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017417","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.02999997138977,"min-height-surface":0.270000010728836,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8485,8486,8487]],[[8485,8487,8488]],[[8486,8489,8487]],[[8490,8491,8485]],[[8485,8491,8486]],[[8492,8490,8488]],[[8488,8490,8485]],[[8493,8492,8487]],[[8487,8492,8488]],[[8494,8493,8489]],[[8489,8493,8487]],[[8491,8494,8486]],[[8486,8494,8489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d773-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027891","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.49000000953674,"min-height-surface":0.430000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8495,8496,8497]],[[8495,8497,8498]],[[8497,8496,8499]],[[8497,8499,8500]],[[2273,2749,8495]],[[8495,2749,8496]],[[2270,2273,8498]],[[8498,2273,8495]],[[2271,2270,8497]],[[8497,2270,8498]],[[2269,2271,8500]],[[8500,2271,8497]],[[2267,2269,8499]],[[8499,2269,8500]],[[2749,2267,8496]],[[8496,2267,8499]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d778-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017414","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050768)","inonderzoek":"0","lokaalid":"G0503.032e68f0752e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.419999986886978,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84919.038 447574.260)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8448,8449,8501]],[[8449,8502,8501]],[[2476,2487,8448]],[[8448,2487,8449]],[[2268,2476,8501]],[[8501,2476,8448]],[[2264,2268,8502]],[[8502,2268,8501]],[[2487,2264,8449]],[[8449,2264,8502]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d795-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000022861","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.40000009536743,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8503,8504,8364]],[[8504,8362,8364]],[[1401,1598,8503]],[[8503,1598,8504]],[[8505,1401,1398]],[[1398,1401,8364]],[[8364,1401,8503]],[[8506,8505,1396]],[[1396,8505,1398]],[[1396,1398,8362]],[[8362,1398,8364]],[[1598,8506,8504]],[[8504,8506,1396]],[[8504,1396,8362]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1fea8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018599","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8507,8508,8509]],[[8508,8510,8509]],[[1478,1465,8507]],[[8507,1465,8508]],[[1455,1478,8509]],[[8509,1478,8507]],[[1512,1455,8510]],[[8510,1455,8509]],[[1465,1512,8508]],[[8508,1512,8510]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feab-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018606","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.30999994277954,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8511,8512,8513]],[[8512,8514,8513]],[[1451,1713,8511]],[[8511,1713,8512]],[[1324,1451,8513]],[[8513,1451,8511]],[[1667,1324,8514]],[[8514,1324,8513]],[[1713,1667,8512]],[[8512,1667,8514]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feae-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018588","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8515,8516,8517]],[[8516,8518,8517]],[[1438,1452,8515]],[[8515,1452,8516]],[[1468,1438,8517]],[[8517,1438,8515]],[[1402,1468,8518]],[[8518,1468,8517]],[[1452,1402,8516]],[[8516,1402,8518]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018603","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.78999996185303,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8519,8520,8521]],[[8519,8521,8522]],[[8522,8521,8523]],[[8520,8524,8521]],[[8520,8525,8524]],[[1225,1229,8519]],[[8519,1229,8520]],[[1226,1225,8522]],[[8522,1225,8519]],[[1206,1226,8523]],[[8523,1226,8522]],[[1216,1206,8521]],[[8521,1206,8523]],[[1217,1216,8524]],[[8524,1216,8521]],[[8526,1217,8525]],[[8525,1217,8524]],[[1229,8526,8520]],[[8520,8526,8525]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb4-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018604","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.21000003814697,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8527,8528,8529]],[[8527,8529,8530]],[[8530,8529,8531]],[[8528,8532,8529]],[[8528,8533,8532]],[[1122,1121,8527]],[[8527,1121,8528]],[[1133,1122,8530]],[[8530,1122,8527]],[[1115,1133,8531]],[[8531,1133,8530]],[[1227,1115,8529]],[[8529,1115,8531]],[[1230,1227,8532]],[[8532,1227,8529]],[[8534,1230,8533]],[[8533,1230,8532]],[[1121,8534,8528]],[[8528,8534,8533]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018597","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075ea49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.35999989509583,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8535,8536,8537]],[[8536,8538,8537]],[[8537,8538,8539]],[[8536,8540,8538]],[[8538,8540,8541]],[[8536,8542,8540]],[[8543,8544,8535]],[[8535,8544,8536]],[[1315,8543,8537]],[[8537,8543,8535]],[[1126,1315,8539]],[[8539,1315,8537]],[[1125,1126,8538]],[[8538,1126,8539]],[[1124,1125,8541]],[[8541,1125,8538]],[[8545,1124,8540]],[[8540,1124,8541]],[[8546,8545,8542]],[[8542,8545,8540]],[[8544,8546,8536]],[[8536,8546,8542]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feba-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018517","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075eb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":0.75,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8547,8548,8549]],[[8547,8549,8550]],[[8550,8549,8551]],[[8548,8552,8549]],[[8548,8553,8552]],[[1213,1212,8547]],[[8547,1212,8548]],[[1214,1213,8550]],[[8550,1213,8547]],[[1201,1214,8551]],[[8551,1214,8550]],[[1204,1201,8549]],[[8549,1201,8551]],[[1202,1204,8552]],[[8552,1204,8549]],[[8554,1202,8553]],[[8553,1202,8552]],[[1212,8554,8548]],[[8548,8554,8553]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1febd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018609","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075ec49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.34999990463257,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8555,8556,8557]],[[8555,8557,8558]],[[8558,8557,8559]],[[8556,8560,8557]],[[8556,8561,8560]],[[1199,1198,8555]],[[8555,1198,8556]],[[1294,1199,8558]],[[8558,1199,8555]],[[1186,1294,8559]],[[8559,1294,8558]],[[1187,1186,8557]],[[8557,1186,8559]],[[1188,1187,8560]],[[8560,1187,8557]],[[8562,1188,8561]],[[8561,1188,8560]],[[1198,8562,8556]],[[8556,8562,8561]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b41373904-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8563,1898,1900]],[[2886,8564,8565]],[[8566,8567,8568]],[[8567,8569,8570]],[[8571,8572,8153]],[[8572,8573,8574]],[[8575,8571,8576]],[[8577,8578,8579]],[[8580,8581,8565]],[[8570,1915,8582]],[[8583,8579,8584]],[[8574,8573,8578]],[[8585,8586,8587]],[[8588,8589,8590]],[[8591,8592,8586]],[[1924,123,8593]],[[1928,1924,8590]],[[1927,1928,8590]],[[1925,8590,1926]],[[1926,8590,1930]],[[1930,8582,1922]],[[8594,8569,8567]],[[1922,8582,1921]],[[8570,8155,8567]],[[1920,1921,8582]],[[1918,1920,8582]],[[1919,1918,8582]],[[1915,1919,8582]],[[1929,8570,1908]],[[8582,8590,8595]],[[1915,8570,1913]],[[8570,1911,1914]],[[1929,1910,8570]],[[8570,8582,8596]],[[1909,1908,8570]],[[1906,1909,8570]],[[8570,8597,8154]],[[1904,1905,8570]],[[1903,1904,8570]],[[1901,1903,8570]],[[1900,1901,8598]],[[8563,1900,8598]],[[8563,1899,1898]],[[8563,1897,1899]],[[8563,1896,1897]],[[8563,1895,1896]],[[1894,1890,8563]],[[1893,1894,8563]],[[1891,1893,8563]],[[8599,8600,8598]],[[8601,8567,8566]],[[8602,8600,120]],[[120,8600,119]],[[8599,8569,119]],[[8598,1901,8570]],[[8601,8594,8567]],[[8603,8566,8565]],[[8604,8605,2894]],[[8606,8607,8608]],[[8580,8565,8564]],[[8564,8609,8580]],[[8564,2886,2963]],[[8610,8611,8612]],[[8607,2894,8605]],[[193,8613,192]],[[192,8613,8610]],[[8614,118,8580]],[[193,8615,8613]],[[8609,8564,8616]],[[8154,8571,8153]],[[8597,8617,8573]],[[8615,8614,8606]],[[193,118,8614]],[[8618,8619,8581]],[[8618,8566,8603]],[[8578,8620,8584]],[[8621,8622,8583]],[[1925,1927,8590]],[[8623,8622,8621]],[[8586,8592,123]],[[8624,8623,8621]],[[8613,8615,8606]],[[193,8614,8615]],[[8610,8625,192]],[[8604,2894,192]],[[1930,8590,8582]],[[8595,8626,8627]],[[8154,8576,8571]],[[8617,8596,8628]],[[8614,8580,8606]],[[8581,8619,8565]],[[1924,8593,8590]],[[123,8592,8593]],[[8629,8630,8583]],[[8585,8591,8586]],[[8631,8583,8584]],[[8622,8579,8583]],[[8618,8601,8566]],[[117,8594,8601]],[[8620,8617,8584]],[[8632,8630,8629]],[[8579,8578,8584]],[[1911,8570,1910]],[[8633,8577,8579]],[[8572,8576,8573]],[[8634,8605,8604]],[[8608,8607,8605]],[[8625,8604,192]],[[8635,8611,8634]],[[8593,8588,8590]],[[8593,8592,8588]],[[124,8586,123]],[[8587,8623,8624]],[[8636,8596,8582]],[[8582,8595,8627]],[[8637,8621,8583]],[[8637,8624,8621]],[[8573,8617,8620]],[[8576,8154,8597]],[[8590,8589,8595]],[[8588,8592,8638]],[[8578,8573,8620]],[[8576,8597,8573]],[[8635,8634,8604]],[[8611,8606,8608]],[[117,8618,118]],[[117,8601,8618]],[[1914,1913,8570]],[[8596,8617,8597]],[[8577,8574,8578]],[[8639,8572,8574]],[[8585,8624,8637]],[[8587,124,8623]],[[118,8581,8580]],[[118,8618,8581]],[[8600,8599,119]],[[8598,8569,8599]],[[8155,8570,8154]],[[8582,8627,8636]],[[8598,8570,8569]],[[1905,1906,8570]],[[8570,8596,8597]],[[8640,8626,8629]],[[8617,8631,8584]],[[8629,8583,8631]],[[8640,8628,8636]],[[8631,8617,8628]],[[1892,8602,120]],[[1892,8600,8602]],[[8625,8612,8604]],[[8625,8610,8612]],[[8583,8630,8637]],[[8638,8589,8588]],[[8632,8638,8591]],[[8595,8589,8638]],[[8632,8591,8630]],[[8638,8592,8591]],[[8596,8636,8628]],[[8627,8626,8636]],[[8626,8640,8636]],[[8631,8628,8640]],[[8640,8629,8631]],[[8626,8632,8629]],[[8585,8587,8624]],[[8586,124,8587]],[[8612,8635,8604]],[[8612,8611,8635]],[[8641,8616,8564]],[[8609,8606,8580]],[[8641,8609,8616]],[[8607,8606,8609]],[[8607,8641,8564]],[[8607,8609,8641]],[[1891,8563,8598]],[[1890,1895,8563]],[[8572,8575,8576]],[[8572,8571,8575]],[[8619,8603,8565]],[[8619,8618,8603]],[[8634,8608,8605]],[[8634,8611,8608]],[[8639,8577,8633]],[[8639,8574,8577]],[[8630,8585,8637]],[[8630,8591,8585]],[[8595,8632,8626]],[[8595,8638,8632]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4137fbfc-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.a7f64e78a3f34c07a6005756fd037ca1","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8642,8643,8644]],[[8642,8644,8645]],[[8644,8643,8646]],[[8646,8647,8648]],[[8646,8643,8649]],[[8646,8649,8647]],[[8647,8649,8650]],[[8649,8643,8651]],[[8651,8652,8653]],[[8651,8643,8654]],[[8651,8654,8652]],[[8643,8655,8654]],[[8655,8656,8657]],[[8655,8643,8658]],[[8657,8656,8659]],[[8656,8655,8658]],[[8660,8661,8662]],[[8661,8663,8662]],[[8661,8664,8665]],[[8661,8665,8663]],[[8665,8664,8658]],[[8665,8658,8666]],[[8664,8656,8658]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4138231e-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef704049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8667,8668,8669]],[[8670,7728,7729]],[[8671,8672,8673]],[[8674,8675,2249]],[[8676,8677,8678]],[[8679,6972,6986]],[[8680,8681,6975]],[[8682,8683,6908]],[[8684,6910,8685]],[[7043,7044,8683]],[[8683,7044,6908]],[[8686,7042,2214]],[[8687,6861,8688]],[[8689,6860,8690]],[[8690,6860,8691]],[[8692,8690,8691]],[[8693,8694,8691]],[[8695,6860,8687]],[[8696,8697,8694]],[[8698,8694,8697]],[[8699,8697,8696]],[[6950,8696,8700]],[[8701,8687,2214]],[[8702,6908,6910]],[[2214,8703,8417]],[[8702,6910,8684]],[[8703,8682,8702]],[[8704,8705,8702]],[[8706,8707,8708]],[[8681,8680,8709]],[[8710,8707,8711]],[[8712,8707,2252]],[[8712,2252,2253]],[[8713,8680,6975]],[[2250,2249,8714]],[[8714,2249,8715]],[[8674,2249,2252]],[[8716,8717,8715]],[[8671,6732,6733]],[[8718,6733,465]],[[7729,8719,8670]],[[8668,8667,8720]],[[8721,8493,8494]],[[8722,8720,8721]],[[8723,8724,8725]],[[8726,8727,8728]],[[7727,8728,7737]],[[7737,8728,7736]],[[7736,8728,2275]],[[2275,8728,2749]],[[8443,8729,8445]],[[8730,2480,8731]],[[8731,2480,2479]],[[2634,2482,8732]],[[8733,2634,8734]],[[2634,8732,8734]],[[2482,2480,8732]],[[8735,8731,2479]],[[8730,8732,2480]],[[8736,8730,8737]],[[8738,8739,1101]],[[8740,560,556]],[[8741,1105,8742]],[[8743,8744,8745]],[[1101,8746,1105]],[[1101,8739,8747]],[[8742,8746,560]],[[8748,2475,2267]],[[1101,8747,8746]],[[8739,8736,8737]],[[8737,8730,8731]],[[8735,2466,2475]],[[2466,8735,2479]],[[8747,8739,8737]],[[2824,2749,8728]],[[2821,8491,8437]],[[8749,8494,8491]],[[8728,8727,2818]],[[2749,2824,8750]],[[8443,8737,8729]],[[2818,8724,8723]],[[8727,8724,2818]],[[8443,8747,8737]],[[2818,2824,8728]],[[8751,2821,8437]],[[8749,2820,8494]],[[8752,8723,8725]],[[8729,8435,8445]],[[8729,2821,8435]],[[2818,8753,2820]],[[2749,8750,2267]],[[8753,2818,8723]],[[8750,8735,2475]],[[8719,8752,8725]],[[8754,366,8675]],[[465,8669,8718]],[[8752,8755,8756]],[[2252,8707,8674]],[[8709,8757,8681]],[[8758,8759,8680]],[[8760,8709,8761]],[[8762,8715,8675]],[[8715,2249,8675]],[[8763,8764,8760]],[[8719,8765,8766]],[[8678,8675,8761]],[[8756,8755,8677]],[[8767,8768,8754]],[[8768,8769,8770]],[[8675,8678,8754]],[[8771,6986,8772]],[[8755,8773,8767]],[[8770,8774,8768]],[[8775,8670,8719]],[[8775,8776,8670]],[[6972,8713,6975]],[[6972,8777,8758]],[[8685,8778,8709]],[[8778,8681,8757]],[[8779,8780,8709]],[[8780,8684,8685]],[[2820,8722,8494]],[[8720,8493,8721]],[[8772,8676,8771]],[[8680,8761,8709]],[[6732,8772,6986]],[[6732,8673,8772]],[[6986,8771,8679]],[[8678,8761,8759]],[[8679,8777,6972]],[[8679,8759,8777]],[[8755,8767,8754]],[[8766,8752,8719]],[[8695,8687,8701]],[[6860,6861,8687]],[[8687,8688,2214]],[[6861,7042,8686]],[[8669,8668,8718]],[[8781,6733,8718]],[[8720,8667,466]],[[2820,8753,8668]],[[8782,8680,8713]],[[8759,8761,8680]],[[8755,8766,8773]],[[8783,8774,8770]],[[8783,8766,8765]],[[8755,8752,8766]],[[8754,8768,366]],[[8784,8769,8768]],[[8704,8702,8780]],[[8702,8682,6908]],[[8781,8672,8671]],[[8672,8676,8673]],[[2177,8701,2214]],[[2177,8695,8701]],[[8756,8672,8718]],[[8672,8677,8676]],[[8785,8783,8769]],[[8774,366,8768]],[[366,8786,8762]],[[8717,8714,8715]],[[367,8786,366]],[[367,8717,8716]],[[8725,8775,8719]],[[8776,7728,8670]],[[8783,8773,8766]],[[8769,8784,8773]],[[8773,8785,8769]],[[8765,8719,8783]],[[7042,8683,2214]],[[7042,7043,8683]],[[8779,8787,8708]],[[6910,8778,8685]],[[8787,8788,8708]],[[8789,8674,8707]],[[8779,8790,8787]],[[8760,8764,8790]],[[8790,8764,8788]],[[8760,8674,8789]],[[8718,8672,8781]],[[8756,8677,8672]],[[6732,8671,8673]],[[6733,8781,8671]],[[8725,8776,8775]],[[8725,7728,8776]],[[6972,8758,8713]],[[8777,8759,8758]],[[8709,8780,8685]],[[8708,8791,8780]],[[8791,8704,8780]],[[8792,8705,8704]],[[8750,8793,2267]],[[8793,2475,8748]],[[8759,8676,8678]],[[8772,8673,8676]],[[8709,8778,8757]],[[6910,8681,8778]],[[8759,8771,8676]],[[8759,8679,8771]],[[8756,8668,8753]],[[8756,8718,8668]],[[466,8669,465]],[[466,8667,8669]],[[8769,8783,8770]],[[8719,366,8774]],[[8794,8726,8728]],[[8794,8727,8726]],[[8706,8763,8789]],[[8763,8760,8789]],[[8707,8706,8789]],[[8788,8764,8763]],[[8743,8745,8740]],[[8741,560,8745]],[[2214,8682,8703]],[[2214,8683,8682]],[[366,8762,8675]],[[8786,8716,8762]],[[8494,8722,8721]],[[2820,8668,8720]],[[8493,8720,466]],[[8722,2820,8720]],[[8787,8795,8788]],[[8790,8788,8795]],[[8780,8779,8708]],[[8790,8795,8787]],[[8760,8779,8709]],[[8760,8790,8779]],[[8741,8742,560]],[[1105,8746,8742]],[[8762,8716,8715]],[[8786,367,8716]],[[8700,8696,8694]],[[6950,8699,8696]],[[8792,8791,8708]],[[8792,8704,8791]],[[6950,8695,2177]],[[8691,6860,8695]],[[8773,8783,8785]],[[8719,8774,8783]],[[8767,8784,8768]],[[8767,8773,8784]],[[8688,8686,2214]],[[8688,6861,8686]],[[8743,8740,556]],[[8745,560,8740]],[[8788,8706,8708]],[[8788,8763,8706]],[[8780,8702,8684]],[[8705,8703,8702]],[[8744,8741,8745]],[[8744,1105,8741]],[[8435,8751,8437]],[[8435,2821,8751]],[[2821,8749,8491]],[[2821,2820,8749]],[[8711,8712,2253]],[[8711,8707,8712]],[[2267,8793,8748]],[[8750,2475,8793]],[[8700,8693,8691]],[[8700,8694,8693]],[[8695,8700,8691]],[[8695,6950,8700]],[[8758,8782,8713]],[[8758,8680,8782]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4138bef7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.967be64250624d208a88a6471c2bd3aa","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8738,8736,8739]],[[8738,1101,8658]],[[8658,8736,8738]],[[8796,8797,8798]],[[8799,8797,8730]],[[8800,8732,8801]],[[8733,8734,8802]],[[8803,8733,8802]],[[8804,8805,8806]],[[8807,8734,8800]],[[8808,8802,8809]],[[8802,8807,8809]],[[8802,8734,8807]],[[8734,8732,8800]],[[8810,8800,8801]],[[8810,8801,8811]],[[8812,8730,8736]],[[8801,8797,8796]],[[8813,8796,8798]],[[8732,8797,8801]],[[8732,8730,8797]],[[8799,8814,8797]],[[1102,8666,1101]],[[8658,1101,8666]],[[8799,8643,8814]],[[542,8815,8481]],[[8665,8666,8663]],[[8816,8817,8818]],[[8819,838,8820]],[[8662,8821,8660]],[[8822,8823,8824]],[[8825,8483,8484]],[[8826,8482,8827]],[[8828,8829,8830]],[[8831,8832,8833]],[[8834,8835,8836]],[[8837,8838,8839]],[[8840,8841,8837]],[[8842,8843,8844]],[[8844,8845,8842]],[[8846,8847,8845]],[[8844,8848,8849]],[[8850,8851,8852]],[[8849,8853,8845]],[[8854,7451,7452]],[[8855,8852,8851]],[[8856,8857,8858]],[[8844,8838,8859]],[[8860,8841,8861]],[[8862,7514,8863]],[[8864,541,542]],[[8865,8866,8867]],[[8868,7529,8869]],[[8870,8871,7312]],[[8815,8872,8831]],[[8864,8481,8483]],[[7291,7310,8873]],[[8874,542,543]],[[8875,8876,8877]],[[8878,8879,8880]],[[8881,541,8882]],[[8883,8884,8885]],[[8820,539,8819]],[[829,8886,828]],[[8887,8888,837]],[[837,8888,8889]],[[836,837,8889]],[[817,8890,816]],[[8889,8880,8891]],[[8892,8662,8663]],[[8893,834,835]],[[8893,833,834]],[[8893,832,833]],[[8891,8894,8895]],[[8893,831,832]],[[830,8893,829]],[[827,828,8886]],[[8886,829,8893]],[[8894,8822,8895]],[[8896,8897,8898]],[[8886,826,827]],[[8886,8899,823]],[[8824,8895,8822]],[[8886,823,824]],[[821,822,8899]],[[820,821,8900]],[[8890,8901,8902]],[[8903,8904,8905]],[[817,818,8900]],[[8892,8906,8821]],[[1102,8907,8666]],[[774,814,8908]],[[772,774,8908]],[[8909,8902,8901]],[[770,771,8908]],[[769,770,8910]],[[768,769,8910]],[[8902,8908,814]],[[8902,8911,8908]],[[8912,766,767]],[[8890,8902,815]],[[766,8912,765]],[[762,763,8913]],[[761,762,8913]],[[760,761,8913]],[[8914,759,760]],[[8915,8916,8917]],[[8918,758,759]],[[8914,8915,8918]],[[8918,8915,757]],[[8915,755,756]],[[8917,754,755]],[[8919,753,754]],[[751,752,8919]],[[8920,751,8919]],[[8920,750,751]],[[8921,749,8920]],[[8920,749,750]],[[8919,752,753]],[[8922,8352,8923]],[[8924,8925,8403]],[[8898,8350,8896]],[[8926,8927,8928]],[[8330,8929,8328]],[[8898,8897,8930]],[[8907,1102,8931]],[[8931,1102,8925]],[[1100,8925,1102]],[[8932,8933,7451]],[[8854,7452,8934]],[[8935,8873,8867]],[[8867,8876,8865]],[[8877,8876,8936]],[[8833,8832,8482]],[[8850,8937,8938]],[[8939,8940,8933]],[[8941,8942,8943]],[[8351,8944,8350]],[[8945,8946,8879]],[[8822,8816,8947]],[[8903,8823,8948]],[[8821,8662,8892]],[[7530,8949,8950]],[[8951,7516,8952]],[[767,8910,8912]],[[767,768,8910]],[[8953,8954,8884]],[[540,541,8954]],[[8906,8904,8955]],[[8948,8947,8955]],[[8890,817,8900]],[[8948,8955,8904]],[[8956,8901,8905]],[[8908,8911,8910]],[[8957,8958,8959]],[[8960,8961,8962]],[[8963,8819,8964]],[[8965,541,8881]],[[8966,8881,8882]],[[8885,8954,8965]],[[819,8900,818]],[[819,820,8900]],[[8481,8864,542]],[[8882,541,8864]],[[8848,8967,8849]],[[8968,8969,8937]],[[8970,8971,8972]],[[8972,543,7291]],[[7311,8973,7310]],[[8974,8975,8976]],[[8937,8969,8977]],[[8934,8978,8979]],[[8914,8918,759]],[[757,758,8918]],[[8970,8972,8980]],[[8936,8876,8873]],[[8844,8849,8845]],[[8981,8982,8850]],[[8983,8984,8855]],[[8853,8985,8986]],[[8926,8928,8987]],[[8987,8350,8898]],[[764,8913,763]],[[764,765,8913]],[[8913,8912,8910]],[[8913,765,8912]],[[8952,8830,8951]],[[8863,8951,8830]],[[8988,8989,8990]],[[8834,7529,8950]],[[8991,8992,8938]],[[8993,8939,8932]],[[8851,8850,8979]],[[8856,8849,8967]],[[8981,8994,8982]],[[8977,8991,8938]],[[8846,8845,8978]],[[8847,8842,8845]],[[8946,8995,8816]],[[8816,8818,8947]],[[8861,8996,8838]],[[8844,8843,8838]],[[8978,8851,8979]],[[8983,8845,8984]],[[8997,8959,8998]],[[8867,8873,8876]],[[8999,8971,8970]],[[9000,8804,8827]],[[9001,8949,8862]],[[8949,7514,8862]],[[8890,8895,8901]],[[8900,821,8899]],[[8905,8895,8824]],[[8886,824,825]],[[8917,8919,754]],[[8917,9002,8920]],[[8932,8939,8933]],[[8940,7451,8933]],[[8926,8898,9003]],[[8926,8987,8898]],[[7503,8848,7517]],[[9004,8967,8848]],[[9005,8968,8937]],[[9006,9007,8977]],[[8834,8869,7529]],[[8836,7314,8869]],[[770,8908,8910]],[[771,772,8908]],[[8875,8865,8876]],[[9008,8806,9009]],[[8960,8962,8997]],[[9008,8865,9010]],[[8988,8840,8839]],[[9011,8828,7516]],[[8990,8841,8840]],[[8835,9012,8836]],[[9013,9014,8961]],[[8980,8935,8867]],[[9015,8871,8975]],[[8974,8804,8806]],[[7310,8936,8873]],[[7310,8877,8936]],[[816,8890,815]],[[8900,8899,8890]],[[8830,8829,8863]],[[7529,7530,8950]],[[9016,8829,8828]],[[8834,9001,8829]],[[8938,8932,8934]],[[9017,8993,8932]],[[8932,8854,8934]],[[8932,7451,8854]],[[7314,8868,8869]],[[7314,7529,8868]],[[534,8820,838]],[[8884,8954,8885]],[[539,8953,8964]],[[8953,540,8954]],[[8964,8953,8884]],[[539,540,8953]],[[8975,8871,8839]],[[7311,7312,8871]],[[8985,9018,8994]],[[8858,7448,9019]],[[8963,8964,8884]],[[8819,539,8964]],[[8930,9020,9021]],[[9022,9023,8897]],[[8483,8882,8864]],[[8483,8966,8882]],[[8885,8965,8881]],[[8954,541,8965]],[[8658,8812,8736]],[[8658,8643,8812]],[[542,8957,8815]],[[8959,8997,8832]],[[7450,9007,7448]],[[8993,8992,9007]],[[8966,8825,8946]],[[8484,8817,9024]],[[7448,8967,7503]],[[7448,8857,8967]],[[8404,9021,8403]],[[9020,8925,8924]],[[8938,8934,8979]],[[7452,8978,8934]],[[7514,8951,8863]],[[7514,7516,8951]],[[9025,9026,8922]],[[9027,9002,8917]],[[8850,8938,8979]],[[8992,9017,8938]],[[8863,9001,8862]],[[7530,7514,8949]],[[9025,8943,9028]],[[9025,9028,9023]],[[8903,8948,8904]],[[8821,8818,8660]],[[8823,8947,8948]],[[8823,8822,8947]],[[9029,8958,8970]],[[9030,543,8971]],[[8959,8958,9029]],[[8872,8815,8957]],[[8874,8957,542]],[[8874,8999,8958]],[[8957,8874,8958]],[[9030,8971,8999]],[[8963,8884,8883]],[[8879,8816,8894]],[[8895,8886,8891]],[[8880,8879,8894]],[[8815,8831,8481]],[[8832,8827,8482]],[[8828,8952,7516]],[[8828,8830,8952]],[[8328,8929,8404]],[[8927,8331,8928]],[[8403,9021,8924]],[[9003,8898,8930]],[[8982,8937,8850]],[[9005,8982,9019]],[[8832,8997,8827]],[[9031,8805,9000]],[[7517,8844,8859]],[[7517,8848,8844]],[[7517,9032,7516]],[[7517,8859,9032]],[[543,8972,8971]],[[7291,8873,8935]],[[9019,8968,9005]],[[7448,9007,9006]],[[835,836,8893]],[[838,8819,8888]],[[8894,8891,8880]],[[830,831,8893]],[[7450,8940,8939]],[[7450,7451,8940]],[[8997,9031,9000]],[[8805,8804,9000]],[[9009,8806,9031]],[[8806,9008,8974]],[[8988,8990,8840]],[[8989,8841,8990]],[[9033,9034,8663]],[[8901,8895,8905]],[[9024,9035,8484]],[[8966,8945,9036]],[[9035,8946,8825]],[[8816,8822,8894]],[[9032,8996,9011]],[[8841,8989,9016]],[[8865,8875,9010]],[[9015,7311,8871]],[[8875,9037,9010]],[[9038,8973,9039]],[[9040,9015,8975]],[[9039,7311,9015]],[[8899,8886,8895]],[[8893,8889,8891]],[[8982,9005,8937]],[[8982,9018,9019]],[[8871,8988,8839]],[[8871,8989,8988]],[[8983,8855,8851]],[[8984,8986,8855]],[[8978,8983,8851]],[[8978,8845,8983]],[[746,9041,8923]],[[746,748,9041]],[[8957,8959,8872]],[[8998,8960,8997]],[[9031,8997,9009]],[[9000,8827,8997]],[[9031,8806,8805]],[[9009,8962,9008]],[[9030,8874,543]],[[9030,8999,8874]],[[8872,8832,8831]],[[8872,8959,8832]],[[8481,8833,8482]],[[8481,8831,8833]],[[8973,8877,7310]],[[8973,8875,8877]],[[8828,8861,8841]],[[8996,8859,8838]],[[8841,8860,8837]],[[8861,8838,9042]],[[8351,9043,8944]],[[8944,8897,8896]],[[8871,9012,8989]],[[8836,8869,8834]],[[8829,9001,8863]],[[8950,8949,9001]],[[9021,9020,8924]],[[8930,8897,9023]],[[8972,8935,8980]],[[8972,7291,8935]],[[7503,9004,8848]],[[7503,8967,9004]],[[9037,8975,9010]],[[8839,8804,8976]],[[838,8887,837]],[[838,8888,8887]],[[8888,8963,8878]],[[9044,8881,9036]],[[9045,9036,8879]],[[9045,8885,9044]],[[8916,9027,8917]],[[8352,746,8923]],[[8812,8799,8730]],[[8812,8643,8799]],[[9001,8834,8950]],[[8829,9016,9046]],[[8929,8927,8404]],[[8929,8330,8927]],[[8404,8927,8926]],[[8330,8331,8927]],[[8982,8994,9018]],[[8853,8984,8845]],[[8852,8986,8994]],[[8852,8855,8986]],[[8985,8853,8849]],[[8986,8984,8853]],[[9020,8930,8931]],[[8942,8913,8911]],[[9026,9025,9023]],[[8907,9033,8663]],[[8404,9003,9047]],[[9048,9028,9049]],[[8666,8907,8663]],[[9049,8909,8956]],[[9020,8931,8925]],[[9048,9023,9028]],[[9048,8907,8931]],[[9048,9049,8907]],[[9034,8956,8905]],[[9033,8907,9049]],[[8881,8966,9036]],[[8483,8825,8966]],[[9036,8945,8879]],[[8966,8946,8945]],[[8976,8975,8839]],[[9037,9040,8975]],[[8937,8977,8938]],[[8969,9006,8977]],[[9007,8991,8977]],[[9050,8992,8991]],[[9007,9050,8991]],[[9007,8992,9050]],[[8875,9040,9037]],[[9038,9039,9015]],[[9014,9029,8980]],[[8958,8999,8970]],[[8824,8903,8905]],[[8824,8823,8903]],[[8852,8981,8850]],[[8852,8994,8981]],[[8968,9006,8969]],[[8968,9019,9006]],[[748,8921,9041]],[[748,749,8921]],[[8878,8963,9045]],[[8888,8819,8963]],[[8860,9042,8837]],[[8860,8861,9042]],[[8840,8837,8839]],[[9042,8838,8837]],[[8892,9034,8905]],[[9033,8956,9034]],[[8944,9043,9026]],[[8351,8352,9043]],[[8352,8922,9043]],[[9002,9041,8920]],[[9027,8916,8941]],[[8917,755,8915]],[[8913,8914,760]],[[8913,8942,8941]],[[8331,8987,8928]],[[8331,8350,8987]],[[9047,9003,8930]],[[8404,8926,9003]],[[8871,8870,9012]],[[7312,7314,8870]],[[8947,8821,8955]],[[8947,8818,8821]],[[8484,9035,8825]],[[9024,8817,8995]],[[9035,8995,8946]],[[9035,9024,8995]],[[8946,8816,8879]],[[8995,8817,8816]],[[8890,8899,8895]],[[822,823,8899]],[[826,8886,825]],[[8893,8891,8886]],[[9034,8892,8663]],[[8905,8904,8906]],[[8821,8906,8955]],[[8892,8905,8906]],[[8938,9017,8932]],[[8992,8993,9017]],[[9040,9038,9015]],[[8973,7311,9039]],[[8875,9038,9040]],[[8875,8973,9038]],[[8930,9051,8931]],[[8930,9023,9051]],[[9051,9048,8931]],[[9051,9023,9048]],[[538,8820,534]],[[538,539,8820]],[[7450,8993,9007]],[[7450,8939,8993]],[[7448,8858,8857]],[[8985,8849,8856]],[[8857,8856,8967]],[[8858,8985,8856]],[[8841,9016,8828]],[[8989,9012,9016]],[[8829,9046,8834]],[[9016,9012,9046]],[[757,8915,756]],[[8914,8916,8915]],[[9045,8883,8885]],[[9045,8963,8883]],[[9021,9047,8930]],[[9021,8404,9047]],[[8870,8836,9012]],[[8870,7314,8836]],[[8959,9029,8998]],[[9014,8867,8961]],[[8980,9029,8970]],[[9013,8998,9029]],[[9029,9014,9013]],[[8980,8867,9014]],[[8997,8962,9009]],[[8866,8865,9008]],[[8961,8866,8962]],[[8974,8976,8804]],[[9010,8974,9008]],[[9010,8975,8974]],[[9022,9026,9023]],[[8922,8923,9002]],[[9025,9027,8943]],[[9025,8922,9002]],[[9025,9002,9027]],[[8923,9041,9002]],[[8944,9026,9022]],[[9043,8922,9026]],[[8917,8920,8919]],[[9041,8921,8920]],[[9046,8835,8834]],[[9046,9012,8835]],[[9033,9049,8956]],[[8909,8901,8956]],[[9028,8911,9049]],[[8911,8913,8910]],[[815,8902,814]],[[8909,8911,8902]],[[9049,8911,8909]],[[9028,8943,8942]],[[9028,8942,8911]],[[8943,9027,8941]],[[8914,8941,8916]],[[8914,8913,8941]],[[9011,8996,8861]],[[9032,8859,8996]],[[8828,9011,8861]],[[7516,9032,9011]],[[8985,9019,9018]],[[7448,9006,9019]],[[8879,8878,9045]],[[8880,8888,8878]],[[8897,8944,9022]],[[8896,8350,8944]],[[836,8889,8893]],[[8888,8880,8889]],[[9019,8985,8858]],[[8994,8986,8985]],[[9045,9044,9036]],[[8885,8881,9044]],[[8962,8866,9008]],[[8961,8867,8866]],[[9013,8960,8998]],[[9013,8961,8960]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413d2c2d-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9052,7400,9053]],[[9054,9055,2630]],[[9055,7401,2630]],[[9053,7399,7401]],[[2709,9054,2630]],[[9052,7401,9055]],[[9052,9053,7401]],[[7400,7399,9053]],[[9052,9054,2709]],[[9052,9055,9054]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413e64b2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9056,465,9057]],[[9058,9059,6734]],[[9059,9057,9060]],[[464,9061,462]],[[9060,9062,9059]],[[462,9058,6734]],[[462,9061,9058]],[[9063,9064,9061]],[[464,465,9061]],[[6734,9059,6733]],[[9063,9061,9056]],[[465,9060,9057]],[[9062,6733,9059]],[[9059,9063,9057]],[[9061,465,9056]],[[465,9062,9060]],[[465,6733,9062]],[[9057,9063,9056]],[[9064,9058,9061]],[[9059,9064,9063]],[[9059,9058,9064]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413eb30b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9065,9066,9067]],[[9068,9069,9070]],[[9071,9072,9073]],[[9074,9075,9076]],[[9074,9067,9075]],[[9067,9077,9075]],[[9078,9065,9071]],[[9071,9065,9072]],[[9078,9066,9065]],[[9066,9077,9067]],[[9069,9074,9076]],[[9069,9068,9074]],[[9073,9068,9070]],[[9071,9073,9070]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413feb75-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9079,8148,9080]],[[9081,9082,8144]],[[9083,9084,9085]],[[9086,8143,8144]],[[9082,9087,8144]],[[9088,9089,9090]],[[9091,8143,9086]],[[9090,9092,9093]],[[8140,9094,9095]],[[9095,9094,9096]],[[9096,9094,9097]],[[9097,9094,9098]],[[9098,9094,9099]],[[9099,9094,9100]],[[9100,9094,9101]],[[9101,9094,9102]],[[9102,9094,9103]],[[9104,9102,9103]],[[9105,9104,9103]],[[9106,9105,9103]],[[9103,9094,9089]],[[9107,9108,9103]],[[9109,9107,9103]],[[9110,9103,9089]],[[9110,9111,9109]],[[9110,9112,9111]],[[9110,9113,9112]],[[9114,8142,8143]],[[9115,9116,9117]],[[8145,9081,8144]],[[8145,8146,9118]],[[8142,9092,8141]],[[8142,9093,9092]],[[9117,9119,9120]],[[9114,8143,9091]],[[9079,9121,9122]],[[8147,8148,9121]],[[9123,9124,9125]],[[9126,9090,9093]],[[9117,9120,9127]],[[9128,9129,9121]],[[9130,9131,9114]],[[9093,8142,9131]],[[9089,9094,8140]],[[9110,9132,9133]],[[8141,9090,8140]],[[8141,9092,9090]],[[9130,9114,9091]],[[9131,8142,9114]],[[9118,9081,8145]],[[9117,9116,9134]],[[9135,9085,9084]],[[9087,9136,9086]],[[8147,9129,9137]],[[8147,9121,9129]],[[9132,9138,9084]],[[9139,9123,9131]],[[9079,9122,8148]],[[9121,8148,9122]],[[9140,9115,9079]],[[9115,9128,9079]],[[9125,9124,9138]],[[9123,9126,9093]],[[9134,9116,9082]],[[9141,9124,9139]],[[9142,9082,9081]],[[9116,9136,9087]],[[9090,9089,8140]],[[9089,9088,9110]],[[9143,9110,9133]],[[9143,9113,9110]],[[8144,9087,9086]],[[9082,9116,9087]],[[9138,9135,9084]],[[9138,9116,9115]],[[9123,9125,9126]],[[9132,9110,9088]],[[9086,9136,9091]],[[9136,9141,9130]],[[9091,9136,9130]],[[9116,9141,9136]],[[9138,9141,9116]],[[9138,9124,9141]],[[9118,9137,9119]],[[9118,8146,9137]],[[9115,9127,9128]],[[9119,9081,9118]],[[8147,9137,8146]],[[9129,9120,9137]],[[9120,9119,9137]],[[9117,9142,9119]],[[9119,9142,9081]],[[9134,9082,9142]],[[9129,9128,9120]],[[9115,9135,9138]],[[9079,9128,9121]],[[9127,9120,9128]],[[9126,9125,9138]],[[9126,9088,9090]],[[9132,9126,9138]],[[9132,9088,9126]],[[9115,9117,9127]],[[9134,9142,9117]],[[9130,9139,9131]],[[9130,9141,9139]],[[9131,9123,9093]],[[9139,9124,9123]],[[9080,9140,9079]],[[9083,9135,9115]],[[9084,9083,9080]],[[9083,9115,9140]],[[9109,9103,9110]],[[9108,9106,9103]],[[9080,9083,9140]],[[9085,9135,9083]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b41414b16-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef949249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9144,117,119]],[[9144,119,8569]],[[8594,9144,8569]],[[8594,117,9144]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414283a4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6895,6897,6787]],[[6895,6787,7038]],[[6897,6802,6787]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4142aad2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9145,9146,9147]],[[9146,9148,9147]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414394d7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cba49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7792,7790,7791]],[[7790,7789,7791]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414394ec-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9149,9150,365]],[[9151,9152,9153]],[[9154,9155,9152]],[[9156,9157,9158]],[[9159,9151,9160]],[[9157,9152,9161]],[[9162,9153,7713]],[[9163,7711,9160]],[[7710,9162,7713]],[[9149,9156,9158]],[[9149,365,364]],[[373,9157,372]],[[373,9158,9157]],[[373,9150,9158]],[[373,365,9150]],[[7709,9162,7710]],[[9160,9153,9162]],[[9164,9161,9159]],[[372,9157,9161]],[[9164,9159,7711]],[[9161,9152,9151]],[[9157,9156,9152]],[[9158,9150,9149]],[[9163,9160,9162]],[[7711,9159,9160]],[[9160,9151,9153]],[[9159,9161,9151]],[[9155,9165,364]],[[9155,9156,9165]],[[9165,9149,364]],[[9165,9156,9149]],[[372,9164,7711]],[[372,9161,9164]],[[7709,9163,9162]],[[7709,7711,9163]],[[9156,9154,9152]],[[9156,9155,9154]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b46c34501-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.29a2059927f84b779ccc323a4d72025a","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5999,5958,5921]],[[5999,5921,5917]],[[5958,5924,5921]],[[9166,5939,5996]],[[9166,9167,5939]],[[5942,9166,5996]],[[9168,9167,9166]],[[9168,5939,9167]],[[5958,9168,9166]],[[5958,5939,9168]],[[5924,9166,5942]],[[5924,5958,9166]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c36c2c-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efcc0d49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[9169,9170,9171]],[[9172,9173,9174]],[[9175,9176,9177]],[[9178,9170,9169]],[[9179,9180,3737]],[[9181,9182,9183]],[[9184,9185,9186]],[[9181,9187,9182]],[[9188,9187,9181]],[[9188,9189,9187]],[[9190,9191,3909]],[[9192,9190,3909]],[[9193,9192,3909]],[[9194,9195,9196]],[[9193,9197,9198]],[[9199,9200,9201]],[[9202,9185,9184]],[[9203,9204,9205]],[[9206,9207,9208]],[[9209,9210,3747]],[[9211,9212,9210]],[[9213,9214,9215]],[[9216,9211,9217]],[[9218,9219,3485]],[[9220,3755,9221]],[[9222,9218,3484]],[[9222,9223,9218]],[[9224,9225,9226]],[[9227,9228,9229]],[[9230,9231,9232]],[[9233,9234,9235]],[[9236,9237,9238]],[[9239,9240,9241]],[[9242,9243,9244]],[[9238,9245,9246]],[[9247,9243,9248]],[[9247,9248,9249]],[[9221,3810,9219]],[[9249,9248,9250]],[[9251,9252,9253]],[[9254,9255,9256]],[[9256,9255,9257]],[[9257,9255,9258]],[[9255,9254,9250]],[[9259,9260,9252]],[[9261,9255,9262]],[[9262,9255,9263]],[[9263,9255,9264]],[[9264,9255,9265]],[[9266,9267,9268]],[[9265,9255,9269]],[[9269,9255,9270]],[[9271,9269,9270]],[[9272,9271,9270]],[[9273,9272,9270]],[[9274,9273,9270]],[[9275,9276,9277]],[[9278,9274,9270]],[[9279,9280,9281]],[[9282,9278,9270]],[[9283,9226,9284]],[[9285,9286,9287]],[[9288,9225,9289]],[[9290,9291,3579]],[[9292,3441,9293]],[[9294,9295,9296]],[[9297,3834,9298]],[[9297,9299,3894]],[[9300,9301,9175]],[[9302,9303,9304]],[[3632,9222,3484]],[[3484,9218,3485]],[[3485,9219,3810]],[[3810,9221,3755]],[[9305,9220,9306]],[[9210,9212,9298]],[[9307,9217,9211]],[[3747,9298,3834]],[[3834,9297,3934]],[[3934,9297,3894]],[[3894,9299,9308]],[[9309,9310,9311]],[[9312,9313,9314]],[[9181,9183,3737]],[[9315,9316,9317]],[[9183,9179,3737]],[[9180,9178,3737]],[[9180,9170,9178]],[[9318,9178,9169]],[[9319,9320,9321]],[[9322,9323,9324]],[[9325,9326,9327]],[[9301,9328,9329]],[[9330,9327,9331]],[[9329,9332,9319]],[[9333,9334,9335]],[[9336,9337,9338]],[[9339,9340,9341]],[[9236,9238,9246]],[[9342,9343,9344]],[[9345,9346,9347]],[[9348,9349,9350]],[[9321,9351,9352]],[[9353,9354,9355]],[[9356,9357,9327]],[[9215,9207,9358]],[[9359,9360,9361]],[[9176,9175,9352]],[[9362,9363,9327]],[[9364,9365,9366]],[[9327,9357,9353]],[[9175,9319,9352]],[[9328,9367,9329]],[[9368,9369,9327]],[[9363,9366,9368]],[[9370,9302,9371]],[[9372,9373,9374]],[[9375,9174,9173]],[[9302,9304,9371]],[[9376,9352,9351]],[[9377,9332,9364]],[[9296,9362,9330]],[[9377,9320,9332]],[[9327,9353,9325]],[[9378,9379,9295]],[[9380,9350,9381]],[[9380,9357,9356]],[[9382,9383,9384]],[[9326,9331,9327]],[[9260,9362,9295]],[[9363,9385,9386]],[[9326,9296,9331]],[[9362,9327,9330]],[[9384,9383,9325]],[[9378,9295,9294]],[[9387,9388,9389]],[[9372,9390,9391]],[[9392,9393,9382]],[[9394,9379,9378]],[[9230,9232,9395]],[[9231,9396,9232]],[[9340,9397,9341]],[[9245,9239,9398]],[[9399,9400,9401]],[[9397,9340,9241]],[[9402,9403,9404]],[[9405,9406,9322]],[[9177,9176,9407]],[[9406,9405,9408]],[[9409,9410,9411]],[[9371,9304,9344]],[[9172,9408,9412]],[[9389,9413,9414]],[[9392,9382,9415]],[[9416,9417,9394]],[[9418,9376,9351]],[[9176,9352,9376]],[[9419,9420,9421]],[[9371,9344,9422]],[[9423,9344,9304]],[[9424,9425,9426]],[[9427,9206,9208]],[[9428,9429,3431]],[[9335,9430,9391]],[[9391,3553,3441]],[[9381,9431,9432]],[[9433,9434,9435]],[[9339,9341,9244]],[[9397,9240,9400]],[[9436,9437,9438]],[[9439,9440,9395]],[[9293,9280,9276]],[[9441,3440,9442]],[[9438,9443,9444]],[[9440,9443,9445]],[[9438,9446,9443]],[[9395,9447,9230]],[[9446,9228,9445]],[[9448,9232,9396]],[[9224,9449,9450]],[[9436,9444,9451]],[[9258,9255,9261]],[[9452,9243,9453]],[[9329,9350,9332]],[[9349,9431,9381]],[[9341,9399,9244]],[[9341,9397,9399]],[[9388,9387,9259]],[[9454,9173,9172]],[[9259,9454,9455]],[[9375,9173,9454]],[[9456,9457,9424]],[[9422,9344,9343]],[[9319,9332,9320]],[[9350,9365,9332]],[[9458,9421,9459]],[[9460,9371,9422]],[[9461,9427,9462]],[[9461,9206,9427]],[[9454,9259,9375]],[[9463,9464,9465]],[[9466,9467,9468]],[[9467,9469,9470]],[[9471,9393,9392]],[[9472,9382,9393]],[[9473,9353,9381]],[[9335,9334,9430]],[[9435,9474,9433]],[[9355,9415,9325]],[[9417,9393,9471]],[[9475,9392,9355]],[[9471,9434,9391]],[[9476,9434,9473]],[[9477,9404,9478]],[[9479,9480,9481]],[[9482,9337,9336]],[[9426,9483,9456]],[[9484,9485,9486]],[[9487,9409,9411]],[[9334,9402,9430]],[[9478,9488,9489]],[[9430,9402,9490]],[[9334,9328,9403]],[[9478,9489,9491]],[[9492,9493,9175]],[[9494,9493,9492]],[[9176,9376,9407]],[[9174,9495,9172]],[[9496,9324,9497]],[[9379,9292,9284]],[[9293,9275,9498]],[[9378,9326,9325]],[[9294,9296,9326]],[[9499,9500,9501]],[[9502,9503,9270]],[[9504,9505,9448]],[[9501,9447,9395]],[[9334,9333,9328]],[[9348,9350,9367]],[[9175,9301,9319]],[[9367,9350,9329]],[[9328,9333,9367]],[[9335,9391,9267]],[[9401,9240,9506]],[[9340,9339,9398]],[[9239,9506,9240]],[[9240,9397,9241]],[[9401,9400,9240]],[[9399,9397,9400]],[[9244,9401,9242]],[[9244,9399,9401]],[[9242,9506,9507]],[[9242,9401,9506]],[[9508,9509,9510]],[[9511,9500,9512]],[[9398,9246,9245]],[[9287,9286,9243]],[[9513,9235,9514]],[[9515,9231,9230]],[[9459,9516,9517]],[[9421,9420,9516]],[[9242,9453,9243]],[[9507,9245,9518]],[[9285,9519,9248]],[[9452,9507,9518]],[[9451,9520,9436]],[[9439,9521,9520]],[[9448,9505,9395]],[[9520,9451,9440]],[[9395,9505,9439]],[[9225,9288,9521]],[[9505,9504,9396]],[[9505,9521,9439]],[[9321,9377,9385]],[[9369,9365,9380]],[[9351,9385,9362]],[[9385,9377,9386]],[[9319,9321,9352]],[[9320,9377,9321]],[[9285,9248,9286]],[[9248,9243,9286]],[[9507,9452,9453]],[[9518,9285,9452]],[[9522,9523,9252]],[[9455,9260,9259]],[[9524,9343,9342]],[[9525,9457,9464]],[[9345,9526,9495]],[[9426,9456,9424]],[[9420,9527,9460]],[[9343,9524,9422]],[[9528,9338,9337]],[[9346,9495,9529]],[[9426,9411,9483]],[[9530,9528,9531]],[[9347,9532,9345]],[[9495,9481,9172]],[[9422,9524,9425]],[[9533,9534,9535]],[[9536,9533,9535]],[[9535,9530,9532]],[[9533,9537,9538]],[[9539,9426,9524]],[[9530,9531,9526]],[[9540,9541,9482]],[[9174,9529,9495]],[[9542,9387,9389]],[[9174,9542,9529]],[[9542,9389,9410]],[[9543,9446,9279]],[[9445,9443,9446]],[[9543,9228,9446]],[[9227,9440,9445]],[[9543,9279,9544]],[[9436,9438,9444]],[[9326,9378,9294]],[[9394,9417,9379]],[[9495,9346,9345]],[[9529,9409,9346]],[[9545,9282,9270]],[[9250,9254,9249]],[[9546,9547,9548]],[[9503,9545,9270]],[[9548,9549,9550]],[[9551,9552,9502]],[[9487,9347,9346]],[[9532,9526,9345]],[[9553,9538,9537]],[[9554,9524,9342]],[[9555,9556,9342]],[[9534,9557,9535]],[[9558,9554,9556]],[[9559,9538,9554]],[[9471,9475,9435]],[[9471,9392,9475]],[[9446,9280,9279]],[[3441,3440,9560]],[[9279,9281,9441]],[[9561,3441,9560]],[[9410,9389,9414]],[[9562,9252,9251]],[[9529,9542,9409]],[[9174,9375,9387]],[[9388,9563,9389]],[[9564,9522,9517]],[[9389,9563,9413]],[[9465,9259,9252]],[[9565,9566,9567]],[[9568,9313,9569]],[[9308,9570,9571]],[[9572,9573,9574]],[[9567,9566,9203]],[[9575,9576,9577]],[[9578,9579,9580]],[[9581,9577,9582]],[[9583,9566,9584]],[[9585,9586,9566]],[[3894,9308,3630]],[[9299,9462,9308]],[[9333,9348,9367]],[[9333,9335,9267]],[[9587,9588,9589]],[[9527,9420,9419]],[[9460,9424,9457]],[[9422,9425,9424]],[[9420,9460,9516]],[[9422,9424,9460]],[[9525,9464,9463]],[[9523,9465,9252]],[[9495,9479,9481]],[[9324,9590,9497]],[[9531,9591,9495]],[[9592,9541,9593]],[[9405,9496,9594]],[[9323,9595,9324]],[[9486,9485,9596]],[[9489,9488,9485]],[[9494,9488,9404]],[[9494,9492,9596]],[[9283,9293,9226]],[[9280,9446,9276]],[[9407,9597,9177]],[[9494,9300,9493]],[[9477,9478,9373]],[[9489,9485,9593]],[[9373,9491,9374]],[[9598,9478,9491]],[[9564,9463,9523]],[[9464,9563,9465]],[[9414,9464,9457]],[[9413,9563,9464]],[[9599,9600,9601]],[[9428,3431,3630]],[[9565,9584,9566]],[[9602,9603,9586]],[[9604,9605,9513]],[[9234,9509,9514]],[[9386,9364,9363]],[[9364,9332,9365]],[[9363,9364,9366]],[[9386,9377,9364]],[[9308,9576,9570]],[[9214,9582,9606]],[[9607,9577,9576]],[[9207,9215,9208]],[[9292,9293,9283]],[[3441,9561,9293]],[[9608,9501,9395]],[[9511,9609,9610]],[[9460,9525,9516]],[[9522,9252,9459]],[[9611,9412,9408]],[[9408,9172,9481]],[[9612,9613,9303]],[[9614,9344,9423]],[[9303,9613,9555]],[[9342,9344,9614]],[[9615,9283,9284]],[[9615,9292,9283]],[[9314,9313,9616]],[[9617,9618,9429]],[[9619,9620,9621]],[[9619,9361,9622]],[[9623,9309,9624]],[[9573,9571,9570]],[[9601,9600,9580]],[[9625,9571,9573]],[[9626,9578,9580]],[[9600,9599,9580]],[[9311,9627,9309]],[[9579,9601,9580]],[[9205,9628,9359]],[[9625,9629,9571]],[[9630,9625,9572]],[[9570,9576,9575]],[[9357,9381,9353]],[[9431,9266,9476]],[[9381,9432,9473]],[[9431,9349,9266]],[[9516,9525,9517]],[[9525,9463,9564]],[[9404,9300,9494]],[[9403,9328,9301]],[[9319,9301,9329]],[[9300,9404,9403]],[[9300,9403,9301]],[[9402,9334,9403]],[[9347,9536,9532]],[[9538,9559,9533]],[[9524,9553,9539]],[[9553,9554,9538]],[[9631,9632,9565]],[[9632,9311,9579]],[[9628,9360,9359]],[[9313,9568,9616]],[[9267,9391,9268]],[[9349,9267,9266]],[[9380,9381,9357]],[[9350,9349,9381]],[[9580,9633,9602]],[[9628,9204,9634]],[[9481,9480,9323]],[[9418,9407,9376]],[[9323,9480,9595]],[[9541,9531,9528]],[[9322,9324,9496]],[[9635,9480,9636]],[[9558,9637,9638]],[[9534,9533,9559]],[[9558,9638,9559]],[[9637,9534,9638]],[[9516,9459,9421]],[[9517,9522,9459]],[[9370,9303,9302]],[[9423,9304,9303]],[[9595,9590,9324]],[[9639,9597,9640]],[[9595,9635,9590]],[[9596,9492,9641]],[[9225,9505,9396]],[[9225,9521,9505]],[[9475,9474,9435]],[[9392,9415,9355]],[[9174,9387,9542]],[[9375,9259,9387]],[[9642,9643,9628]],[[9574,9573,9581]],[[9606,9582,9577]],[[9215,9427,9208]],[[9353,9355,9325]],[[9474,9475,9355]],[[9644,9601,9579]],[[9645,9599,9601]],[[9546,9285,9518]],[[9250,9270,9255]],[[9546,9550,9646]],[[9647,9270,9250]],[[9519,9250,9248]],[[9647,9646,9551]],[[9648,9547,9510]],[[9647,9502,9270]],[[9548,9552,9549]],[[9552,9503,9502]],[[9646,9550,9551]],[[9549,9552,9551]],[[9548,9610,9552]],[[9442,9503,9552]],[[9519,9646,9250]],[[9550,9549,9551]],[[9285,9646,9519]],[[9546,9510,9547]],[[9508,9510,9546]],[[9509,9648,9510]],[[9514,9508,9518]],[[9514,9509,9508]],[[9308,9649,3630]],[[9649,9571,9650]],[[9379,9417,9651]],[[9472,9393,9417]],[[9492,9175,9177]],[[9493,9300,9175]],[[9564,9523,9522]],[[9563,9388,9465]],[[9594,9611,9405]],[[9412,9454,9172]],[[9481,9406,9408]],[[9481,9323,9322]],[[9405,9611,9408]],[[9455,9454,9412]],[[9641,9492,9177]],[[9596,9488,9494]],[[9597,9641,9177]],[[9597,9486,9596]],[[9363,9368,9327]],[[9366,9365,9368]],[[9233,9235,9605]],[[9605,9515,9230]],[[9233,9648,9509]],[[9234,9514,9235]],[[9544,9441,9442]],[[9560,3440,9441]],[[9652,9543,9442]],[[9279,9441,9544]],[[9291,9612,9370]],[[9371,9460,9527]],[[9539,9553,9537]],[[9524,9554,9553]],[[9224,9498,9289]],[[9275,9289,9498]],[[9293,9450,9449]],[[9293,9498,9450]],[[9470,9653,9467]],[[9654,9655,9656]],[[9643,9466,9314]],[[9467,9653,9468]],[[9656,9657,9658]],[[9659,9660,9661]],[[9569,9662,9663]],[[9622,9568,9663]],[[9524,9426,9425]],[[9539,9411,9426]],[[9552,9610,9442]],[[9512,9229,9543]],[[9608,9499,9501]],[[9608,9440,9229]],[[9648,9664,9547]],[[9609,9442,9610]],[[9405,9322,9496]],[[9406,9481,9322]],[[9635,9636,9639]],[[9480,9592,9636]],[[9590,9635,9639]],[[9595,9480,9635]],[[9470,9468,9653]],[[9655,9665,9656]],[[9504,9448,9396]],[[9395,9232,9448]],[[9284,9292,9615]],[[9379,3441,9292]],[[9410,9414,9483]],[[9413,9464,9414]],[[9645,9644,9623]],[[9666,9627,9667]],[[9293,9276,9275]],[[9446,9438,9276]],[[9579,9668,9644]],[[9310,9623,9644]],[[9626,9632,9578]],[[9584,9565,9632]],[[9566,9583,9585]],[[9626,9580,9602]],[[9584,9626,9583]],[[9584,9632,9626]],[[9574,9581,9634]],[[9575,9577,9581]],[[9325,9383,9394]],[[9382,9416,9394]],[[9415,9384,9325]],[[9415,9382,9384]],[[9669,9613,9612]],[[9303,9555,9423]],[[9555,9613,9556]],[[9612,9291,9669]],[[9670,9336,9338]],[[9390,3553,9391]],[[9491,9671,9374]],[[9491,9489,9672]],[[9490,9373,9372]],[[9390,9336,9670]],[[9390,9482,9336]],[[9482,9671,9540]],[[9557,9390,9670]],[[9374,9671,9482]],[[9338,9557,9670]],[[9535,9532,9536]],[[9338,9535,9557]],[[9338,9528,9530]],[[9526,9531,9495]],[[9528,9337,9541]],[[9673,9643,9642]],[[9673,9466,9643]],[[3553,9534,9637]],[[3553,9557,9534]],[[9674,9658,9468]],[[9675,3431,9676]],[[9521,9288,9520]],[[9277,9276,9437]],[[9289,9277,9288]],[[9276,9438,9437]],[[9677,9678,9679]],[[9562,9680,9252]],[[9548,9681,9610]],[[9500,9499,9512]],[[9447,9682,9233]],[[9235,9513,9605]],[[9476,9473,9432]],[[9354,9353,9473]],[[9290,9669,9683]],[[9612,9303,9370]],[[3579,9291,3632]],[[9683,9669,9291]],[[9288,9277,9437]],[[9289,9275,9277]],[[9684,9685,9686]],[[9674,9468,9470]],[[9679,9687,9688]],[[9689,9291,9370]],[[9589,9690,9691]],[[9691,9692,9527]],[[9290,9558,9669]],[[9556,9613,9669]],[[9693,9660,9659]],[[9694,9675,9695]],[[9569,9655,9662]],[[9569,9663,9568]],[[9325,9394,9378]],[[9383,9382,9394]],[[9414,9456,9483]],[[9414,9457,9456]],[[9696,9697,9428]],[[9666,9624,9627]],[[9660,9698,9661]],[[9661,3431,9694]],[[9293,9699,9226]],[[9224,9289,9225]],[[9293,9449,9699]],[[9450,9498,9224]],[[9518,9238,9514]],[[9237,9604,9513]],[[9604,9237,9236]],[[9513,9514,9238]],[[9281,9561,9441]],[[9561,9280,9293]],[[9700,9358,9207]],[[9358,9213,9215]],[[9701,9700,9634]],[[9701,9582,9213]],[[9581,9701,9634]],[[9581,9582,9701]],[[9643,9314,9360]],[[9466,9468,9702]],[[9651,9391,3441]],[[9430,9372,9391]],[[9517,9525,9564]],[[9460,9457,9525]],[[9242,9507,9453]],[[9506,9239,9507]],[[9309,9627,9624]],[[9703,9704,9663]],[[9666,9667,9429]],[[9705,9703,9663]],[[9627,9620,9617]],[[9621,9311,9631]],[[9431,9476,9432]],[[9268,9434,9476]],[[9599,9650,9633]],[[9649,9308,9571]],[[9574,9706,9572]],[[9633,9580,9599]],[[9583,9602,9585]],[[9630,9572,9706]],[[9214,9707,9462]],[[9214,9427,9215]],[[9614,9555,9342]],[[9614,9423,9555]],[[9571,9629,9650]],[[9630,9706,9603]],[[9369,9380,9356]],[[9365,9350,9380]],[[9327,9369,9356]],[[9368,9365,9369]],[[9627,9617,9667]],[[9620,9676,9618]],[[9688,9588,9587]],[[9692,9689,9370]],[[9253,9688,9687]],[[9688,3632,9689]],[[9677,9679,9587]],[[9678,9687,9679]],[[9662,9695,9663]],[[9708,9620,9619]],[[9708,9704,9703]],[[9704,9622,9663]],[[9705,9708,9703]],[[9619,9622,9704]],[[9443,9451,9444]],[[9443,9440,9451]],[[9640,9597,9407]],[[9639,9486,9597]],[[9461,9467,9466]],[[9461,9469,9467]],[[9398,9239,9241]],[[9245,9507,9239]],[[9308,9607,9576]],[[9308,9462,9707]],[[9607,9606,9577]],[[9606,9308,9707]],[[9222,9688,9253]],[[3632,9291,9689]],[[9361,9568,9622]],[[9616,9360,9314]],[[9709,9710,9317]],[[9711,9712,9713]],[[9395,9440,9608]],[[9439,9520,9440]],[[9411,9410,9483]],[[9409,9542,9410]],[[9572,9625,9573]],[[9630,9629,9625]],[[9203,9205,9359]],[[9204,9574,9634]],[[9205,9204,9628]],[[9706,9574,9204]],[[9361,9203,9359]],[[9203,9586,9204]],[[9513,9238,9237]],[[9518,9245,9238]],[[9711,9714,9715]],[[9716,9712,9715]],[[9541,9672,9593]],[[9671,9491,9672]],[[9479,9592,9480]],[[9593,9485,9484]],[[9214,9606,9707]],[[9607,9308,9606]],[[9490,9372,9430]],[[9374,9482,9372]],[[9409,9487,9346]],[[9411,9539,9347]],[[9629,9633,9650]],[[9603,9706,9586]],[[9717,9251,9253]],[[9718,9678,9719]],[[9719,9680,9562]],[[9680,9459,9252]],[[9472,9416,9382]],[[9472,9417,9416]],[[9626,9602,9583]],[[9633,9629,9603]],[[9311,9310,9668]],[[9623,9720,9645]],[[9668,9310,9644]],[[9309,9623,9310]],[[9665,9655,9569]],[[9695,9708,9705]],[[9354,9433,9474]],[[9473,9434,9433]],[[9721,9659,9654]],[[9659,9661,9694]],[[9502,9647,9551]],[[9250,9646,9647]],[[9251,9719,9562]],[[9719,9458,9680]],[[9194,9317,9195]],[[9317,9710,9315]],[[9234,9233,9509]],[[9681,9511,9610]],[[9233,9664,9648]],[[9722,9511,9681]],[[9230,9233,9605]],[[9230,9447,9233]],[[9194,9723,9724]],[[9317,9316,9195]],[[9725,9726,9201]],[[9727,9712,9728]],[[9532,9530,9526]],[[9535,9338,9530]],[[9314,9702,9312]],[[9314,9466,9702]],[[9479,9591,9592]],[[9479,9495,9591]],[[9720,9429,9428]],[[9667,9617,9429]],[[9720,9666,9429]],[[9623,9624,9666]],[[9402,9477,9490]],[[9598,9491,9373]],[[9490,9477,9373]],[[9402,9404,9477]],[[9373,9478,9598]],[[9404,9488,9478]],[[9285,9546,9646]],[[9518,9508,9546]],[[9193,9723,9729]],[[9195,9316,9730]],[[9649,9645,3630]],[[9601,9644,9645]],[[9348,9267,9349]],[[9348,9333,9267]],[[9433,9354,9473]],[[9474,9355,9354]],[[9656,9658,9693]],[[9658,9698,9660]],[[9663,9695,9705]],[[9676,9620,9708]],[[9695,9675,9708]],[[9618,9617,9620]],[[9194,9709,9317]],[[9724,9731,9709]],[[9723,9732,9724]],[[9733,9726,9728]],[[9734,9735,9307]],[[3444,3755,9736]],[[9728,9712,9737]],[[9714,9738,9729]],[[9594,9497,9739]],[[9590,9639,9497]],[[9411,9347,9487]],[[9539,9537,9536]],[[9539,9536,9347]],[[9537,9533,9536]],[[3776,9723,9193]],[[3776,9201,9723]],[[9186,9713,9712]],[[9713,9186,9740]],[[9316,9716,9730]],[[9738,9740,9729]],[[9730,9715,9714]],[[9316,9315,9737]],[[9729,9730,9714]],[[9196,9195,9730]],[[9716,9737,9712]],[[9728,9726,9727]],[[9730,9716,9715]],[[9316,9737,9716]],[[9723,9731,9732]],[[9201,9726,9733]],[[9710,9733,9315]],[[9710,9731,9201]],[[9731,9710,9709]],[[9731,9723,9201]],[[9578,9632,9579]],[[9565,9567,9631]],[[9619,9631,9567]],[[9621,9627,9311]],[[9729,9723,9194]],[[9732,9731,9724]],[[9210,9734,9307]],[[9741,9742,3444]],[[9458,9677,9419]],[[9458,9719,9677]],[[9611,9594,9260]],[[9496,9497,9594]],[[9738,9711,9743]],[[9715,9712,9711]],[[9730,9729,9196]],[[9197,9193,9729]],[[9711,9713,9743]],[[9186,9197,9740]],[[9307,9735,9217]],[[3755,9220,9305]],[[9371,9527,9692]],[[9744,9688,9689]],[[9691,9690,9692]],[[9589,9744,9692]],[[9587,9589,9691]],[[9744,9689,9692]],[[9588,9744,9589]],[[9588,9688,9744]],[[9736,9216,9217]],[[9306,9212,9211]],[[9233,9682,9722]],[[9447,9501,9682]],[[9233,9722,9664]],[[9682,9501,9500]],[[9722,9500,9511]],[[9722,9682,9500]],[[9260,9351,9362]],[[9739,9497,9640]],[[9260,9739,9351]],[[9640,9407,9418]],[[9664,9681,9547]],[[9664,9722,9681]],[[9558,9556,9669]],[[9554,9342,9556]],[[9725,9727,9726]],[[9725,9712,9727]],[[9315,9728,9737]],[[9315,9733,9728]],[[3676,9209,3747]],[[9735,9741,9736]],[[9515,9604,9236]],[[9515,9605,9604]],[[9658,9661,9698]],[[3514,3431,9661]],[[9645,9696,3630]],[[9645,9697,9696]],[[9331,9296,9330]],[[9295,9362,9296]],[[9645,9720,9697]],[[9623,9666,9720]],[[9700,9628,9634]],[[9643,9360,9628]],[[9700,9207,9628]],[[9206,9461,9673]],[[9206,9673,9207]],[[9461,9466,9673]],[[9739,9640,9418]],[[9497,9639,9640]],[[9419,9691,9527]],[[9419,9587,9691]],[[9702,9665,9312]],[[9654,9695,9655]],[[9657,9665,9702]],[[9656,9721,9654]],[[9371,9692,9370]],[[9690,9589,9692]],[[9452,9287,9243]],[[9452,9285,9287]],[[9200,9725,9201]],[[9186,9712,9725]],[[9579,9311,9668]],[[9632,9631,9311]],[[9687,9717,9253]],[[9687,9678,9718]],[[9717,9718,9251]],[[9717,9687,9718]],[[9636,9486,9639]],[[9636,9592,9484]],[[9210,9209,9745]],[[3676,3444,9209]],[[9654,9659,9694]],[[9721,9693,9659]],[[3755,9305,9736]],[[9305,9211,9216]],[[9693,9658,9660]],[[3514,9661,9658]],[[9708,9619,9704]],[[9567,9361,9619]],[[9721,9656,9693]],[[9665,9657,9656]],[[9680,9458,9459]],[[9419,9421,9458]],[[9699,9224,9226]],[[9699,9449,9224]],[[9211,9305,9306]],[[9216,9736,9305]],[[9711,9738,9714]],[[9740,9197,9729]],[[9602,9586,9585]],[[9706,9204,9586]],[[9211,9210,9307]],[[9745,9742,9734]],[[9468,9657,9702]],[[9468,9658,9657]],[[9217,9735,9736]],[[9742,9209,3444]],[[9362,9385,9363]],[[9351,9321,9385]],[[9340,9398,9241]],[[9339,9246,9398]],[[9361,9616,9568]],[[9361,9360,9616]],[[9655,9695,9662]],[[9654,9694,9695]],[[9417,9471,9651]],[[9435,9434,9471]],[[9546,9548,9550]],[[9547,9681,9548]],[[3431,9618,9676]],[[3431,9429,9618]],[[9736,9741,3444]],[[9735,9734,9741]],[[9708,9675,9676]],[[9694,3431,9675]],[[9696,9428,3630]],[[9697,9720,9428]],[[3553,9558,3579]],[[3553,9637,9558]],[[9291,9290,9683]],[[3579,9558,9290]],[[9729,9194,9196]],[[9724,9709,9194]],[[9636,9484,9486]],[[9592,9593,9484]],[[9351,9739,9418]],[[9260,9594,9739]],[[9455,9611,9260]],[[9455,9412,9611]],[[9710,9201,9733]],[[9184,9200,9746]],[[9619,9621,9631]],[[9620,9627,9621]],[[9543,9229,9228]],[[9499,9608,9229]],[[9440,9227,9229]],[[9445,9228,9227]],[[9591,9541,9592]],[[9672,9489,9593]],[[9442,9543,9544]],[[9512,9499,9229]],[[9652,9512,9543]],[[9609,9511,9512]],[[9718,9719,9251]],[[9678,9677,9719]],[[9288,9436,9520]],[[9288,9437,9436]],[[9677,9587,9419]],[[9679,9688,9587]],[[9567,9203,9361]],[[9566,9586,9203]],[[9734,9210,9745]],[[9298,3747,9210]],[[9633,9603,9602]],[[9629,9630,9603]],[[9531,9541,9591]],[[9337,9482,9541]],[[9266,9268,9476]],[[9391,9434,9268]],[[9379,9651,3441]],[[9471,9391,9651]],[[9463,9465,9523]],[[9388,9259,9465]],[[9312,9569,9313]],[[9312,9665,9569]],[[9573,9575,9581]],[[9573,9570,9575]],[[9747,9748,9749]],[[9750,9202,9184]],[[9743,9740,9738]],[[9743,9713,9740]],[[9725,9184,9186]],[[9674,3514,9658]],[[9441,9561,9560]],[[9281,9280,9561]],[[9748,9751,9752]],[[9753,3776,3514]],[[9751,9754,9755]],[[9756,3776,9753]],[[9686,9752,3514]],[[9757,9758,9756]],[[9759,9684,9686]],[[9674,9185,9760]],[[9482,9390,9372]],[[9557,3553,9390]],[[9672,9540,9671]],[[9672,9541,9540]],[[9200,9761,9762]],[[9762,9763,9746]],[[9207,9642,9628]],[[9207,9673,9642]],[[9764,9765,9766]],[[9758,9757,9760]],[[9469,9674,9470]],[[9749,9686,9685]],[[9597,9596,9641]],[[9485,9488,9596]],[[9767,9202,9766]],[[9760,9185,9202]],[[9674,9760,9749]],[[9760,9757,9768]],[[9185,9674,9469]],[[9749,9685,9674]],[[9750,9764,9766]],[[9763,3776,9756]],[[9758,9760,9202]],[[9754,9747,9760]],[[9765,9756,9767]],[[9767,9756,9758]],[[9202,9750,9766]],[[9746,9200,9762]],[[9746,9750,9184]],[[9746,9764,9750]],[[9763,9764,9746]],[[9763,9765,9764]],[[9700,9213,9358]],[[9700,9701,9213]],[[9427,9214,9462]],[[9213,9582,9214]],[[9748,9747,9751]],[[9768,9757,9753]],[[9752,9753,3514]],[[9752,9751,9753]],[[9757,9756,9753]],[[9765,9763,9756]],[[9202,9767,9758]],[[9766,9765,9767]],[[9751,9755,9753]],[[9754,9760,9768]],[[9755,9768,9753]],[[9755,9754,9768]],[[3776,9199,9201]],[[9769,9761,9199]],[[3776,9769,9199]],[[3776,9763,9769]],[[9599,9649,9650]],[[9599,9645,9649]],[[9769,9762,9761]],[[9769,9763,9762]],[[9652,9609,9512]],[[9652,9442,9609]],[[9192,9193,9198]],[[3909,3776,9193]],[[9734,9742,9741]],[[9745,9209,9742]],[[9760,9747,9749]],[[9754,9751,9747]],[[9686,9748,9752]],[[9686,9749,9748]],[[9725,9200,9184]],[[9199,9761,9200]],[[3514,9759,9686]],[[3514,9674,9759]],[[9674,9684,9759]],[[9674,9685,9684]],[[9688,9222,3632]],[[9253,9223,9222]],[[9558,9559,9554]],[[9638,9534,9559]],[[3909,9181,3737]],[[9188,9191,9189]],[[3909,9188,9181]],[[3909,9191,9188]],[[9770,9503,9442]],[[3440,9770,9442]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c407db-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe75349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5644,5512,5841]],[[5644,5440,5650]],[[5650,5446,5653]],[[5653,5455,5652]],[[5652,5455,5459]],[[5653,5450,5455]],[[5653,5446,5450]],[[5650,5440,5446]],[[5644,5488,5440]],[[5644,5648,5488]],[[5488,5505,5475]],[[5488,5648,5505]],[[5644,5841,5648]],[[5512,5511,5841]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c42f03-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28e49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[9771,9772,9773]],[[9771,9774,9775]],[[9771,9776,9774]],[[9774,9776,9777]],[[9771,9773,9776]],[[9776,9773,9778]],[[9772,9779,9773]],[[9773,9779,9780]],[[9772,9781,9779]],[[9779,9781,9782]],[[9782,9783,9784]],[[9784,9785,9786]],[[9784,9783,9785]],[[9782,9781,9783]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b491588b8-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9787,9788,9789]],[[9790,8186,7932]],[[9791,7934,7935]],[[9791,7933,7934]],[[7933,9791,9792]],[[9793,9794,9790]],[[9795,9788,9794]],[[9796,7950,8186]],[[9797,9793,7935]],[[7936,9794,9793]],[[9791,9790,9792]],[[7932,7933,9792]],[[7936,9797,7935]],[[7936,9793,9797]],[[7927,9795,7936]],[[7927,9788,9795]],[[9795,9794,7936]],[[9787,9789,9798]],[[7927,9789,9788]],[[7927,7950,9789]],[[9794,9799,8186]],[[9799,7950,9796]],[[9794,9787,9799]],[[9794,9788,9787]],[[9792,9800,7932]],[[9794,8186,9790]],[[9793,9801,7935]],[[9801,9790,9791]],[[8186,9799,9796]],[[9798,7950,9799]],[[9787,9798,9799]],[[9789,7950,9798]],[[9800,9790,7932]],[[9800,9792,9790]],[[7935,9801,9791]],[[9793,9790,9801]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4915aff8-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9802,9803,7754]],[[9804,9805,9806]],[[9802,9807,9808]],[[9802,7754,9809]],[[9808,9807,9810]],[[9802,9809,9807]],[[9811,9804,7755]],[[9812,9813,9814]],[[9815,7771,9816]],[[9816,7771,353]],[[9817,9809,9818]],[[9819,2579,2578]],[[9819,7755,2579]],[[9819,7770,7755]],[[7596,7769,2578]],[[7594,7596,2578]],[[7592,7594,2744]],[[2330,2672,2621]],[[9820,2409,2397]],[[9820,9821,2409]],[[2672,9822,2340]],[[2340,2740,2332]],[[9822,2329,2740]],[[2328,2330,2621]],[[2329,9822,2330]],[[9823,2756,2328]],[[2621,9823,2328]],[[2744,7594,2756]],[[2756,7594,2578]],[[9806,9805,9811]],[[9806,9817,9804]],[[9814,9813,353]],[[338,7712,9812]],[[2340,9822,2740]],[[2672,2330,9822]],[[9815,9817,7771]],[[9809,7754,9818]],[[9813,9816,353]],[[9813,9812,9816]],[[9809,9815,9816]],[[9809,9817,9815]],[[9818,9804,9817]],[[9811,7770,7771]],[[7771,9806,9811]],[[7771,9817,9806]],[[7755,9818,7754]],[[7755,9804,9818]],[[2340,9820,2397]],[[9821,2332,2409]],[[2340,9821,9820]],[[2340,2332,9821]],[[7769,9819,2578]],[[7769,7770,9819]],[[2744,9823,2621]],[[2744,2756,9823]],[[9809,9812,7712]],[[9809,9816,9812]],[[338,9814,353]],[[338,9812,9814]],[[7755,9824,9811]],[[7755,7770,9824]],[[7770,9811,9824]],[[9805,9804,9811]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4916e86b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.71178dd3a331470b86cb2586a764831b","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2821,8729,9825]],[[9825,8735,8750]],[[2824,9825,8750]],[[2821,9825,2824]],[[8729,8735,9825]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b491736be-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[586,703,579]],[[586,579,585]],[[585,579,584]],[[583,584,579]],[[583,579,582]],[[582,579,581]],[[706,707,579]],[[579,707,708]],[[704,705,579]],[[579,705,706]],[[703,704,579]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4918966b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9826,9827,9828]],[[9829,6796,6797]],[[9830,6796,9831]],[[9830,9827,9832]],[[9833,7042,6861]],[[9834,6830,6832]],[[6862,9835,9836]],[[9837,9838,9839]],[[9836,7042,9840]],[[9835,9841,9842]],[[9828,9830,9831]],[[9843,9838,9834]],[[9843,9844,9839]],[[9845,9846,9847]],[[9847,6796,9829]],[[6863,9848,9841]],[[6863,6830,9837]],[[6796,9830,6794]],[[6796,9847,9831]],[[9826,6833,9827]],[[9832,6794,9830]],[[6833,9843,6832]],[[9849,6830,9834]],[[6797,9845,9829]],[[9846,9831,9847]],[[9850,9840,7042]],[[6862,9836,9840]],[[6833,9832,9827]],[[6833,6794,9832]],[[9850,9833,6861]],[[9850,7042,9833]],[[6832,9843,9834]],[[9839,9851,9835]],[[9841,9835,6862]],[[9851,9852,9836]],[[6862,9850,6861]],[[6862,9840,9850]],[[9829,9845,9847]],[[9852,7042,9836]],[[9838,9853,9849]],[[9838,9837,9853]],[[6863,9841,6862]],[[9842,9837,9839]],[[6799,9845,6797]],[[6799,9854,9845]],[[9836,9835,9851]],[[9841,9848,9842]],[[9854,9831,9846]],[[9828,7042,9852]],[[6833,9844,9843]],[[9828,9827,9830]],[[9845,9854,9846]],[[6799,9831,9854]],[[9839,9826,9851]],[[9826,9828,9852]],[[9851,9826,9852]],[[9844,6833,9826]],[[9843,9839,9838]],[[9844,9826,9839]],[[9835,9842,9839]],[[9848,6863,9842]],[[6863,9837,9842]],[[6830,9853,9837]],[[6799,9828,9831]],[[6799,7042,9828]],[[9838,9849,9834]],[[9853,6830,9849]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4918e3d0-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5c1f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9855,279,266]],[[9856,266,267]],[[269,9857,267]],[[269,279,9858]],[[9859,9858,9860]],[[9858,279,9860]],[[9857,9858,267]],[[9860,266,9856]],[[9856,9859,9860]],[[9857,269,9858]],[[9860,9855,266]],[[9860,279,9855]],[[267,9859,9856]],[[267,9858,9859]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4919a79b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[139,9861,138]],[[135,136,134]],[[136,131,134]],[[131,132,133]],[[134,131,133]],[[136,137,131]],[[138,129,130]],[[128,129,9862]],[[9862,129,9861]],[[9861,129,138]],[[130,137,138]],[[130,131,137]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b491d7828-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9863,8611,8610]],[[9863,8610,8613]],[[8606,9863,8613]],[[8606,8611,9863]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4920103c-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef749a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9864,9865,9866]],[[9867,9864,9866]],[[9868,9866,9869]],[[9865,9870,9871]],[[9872,9873,9874]],[[9872,9866,9868]],[[9873,9872,9868]],[[9875,9876,9867]],[[9877,9878,9875]],[[9875,9879,9876]],[[9875,9878,9879]],[[9871,9872,9874]],[[9876,9880,9867]],[[9870,9865,9881]],[[9882,9878,9877]],[[9875,9883,9877]],[[9871,9874,9869]],[[9866,9865,9869]],[[9880,9864,9867]],[[9880,9882,9864]],[[9864,9882,9877]],[[9880,9878,9882]],[[9877,9883,9881]],[[9875,9872,9883]],[[9883,9870,9881]],[[9883,9871,9870]],[[9865,9871,9869]],[[9883,9872,9871]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492196f9-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[559,476,558]],[[559,474,476]],[[559,475,474]],[[9884,9885,9886]],[[9887,9888,9889]],[[9890,479,480]],[[9891,475,559]],[[450,479,9892]],[[9893,479,9890]],[[9894,8492,8493]],[[8427,8428,8746]],[[9895,8490,8436]],[[9895,8436,8437]],[[9896,9897,9889]],[[9898,9899,9900]],[[8435,8434,9901]],[[8435,9901,8445]],[[9902,9886,9903]],[[9904,9905,8746]],[[9906,9907,9908]],[[8426,8442,8424]],[[9909,8426,8427]],[[9910,8443,8442]],[[9911,9912,8442]],[[9911,9913,9912]],[[9902,9914,9915]],[[8428,560,8746]],[[9912,9913,8429]],[[9903,560,8429]],[[8429,560,8428]],[[8492,9916,8490]],[[8492,9893,9917]],[[8436,9918,9919]],[[8436,8490,9900]],[[466,9892,9920]],[[466,450,9892]],[[9921,9897,9896]],[[9889,9888,559]],[[9922,9899,9898]],[[9903,559,560]],[[9919,8434,8436]],[[9923,8490,9924]],[[9922,9898,9885]],[[9889,559,9925]],[[8747,9904,8746]],[[9904,9926,9905]],[[475,9891,480]],[[8492,9894,9893]],[[9893,9927,479]],[[9928,479,9927]],[[9916,9921,8490]],[[9929,9897,9921]],[[9930,9931,9884]],[[9896,9924,9921]],[[9914,9901,9915]],[[9932,9898,9925]],[[9903,9925,559]],[[9932,9885,9898]],[[9886,9933,9903]],[[9886,9885,9934]],[[8746,9905,9909]],[[9935,8747,9936]],[[9905,9926,8426]],[[8747,8443,9936]],[[9906,9926,9937]],[[9904,8747,9935]],[[9919,9915,8434]],[[8444,8445,9901]],[[9913,9903,8429]],[[9933,9925,9903]],[[9938,9889,9925]],[[9897,9929,9889]],[[9893,9891,9917]],[[9890,480,9891]],[[9884,9931,9885]],[[9899,8436,9900]],[[8425,9912,8429]],[[8444,9901,9914]],[[9920,9928,9927]],[[9892,479,9928]],[[9939,9893,9894]],[[9920,9927,9893]],[[9900,8490,9923]],[[8490,9921,9924]],[[8746,9909,8427]],[[9905,8426,9909]],[[9915,9919,9918]],[[9918,9899,9931]],[[8424,9912,8425]],[[8424,8442,9912]],[[9940,9915,9918]],[[9915,9901,8434]],[[9902,9903,9914]],[[9940,9941,9902]],[[9898,9923,9938]],[[9898,9900,9923]],[[9923,9896,9938]],[[9923,9924,9896]],[[9898,9938,9925]],[[9896,9889,9938]],[[9891,9893,9890]],[[9939,8493,9920]],[[9926,9906,8426]],[[9942,8443,9907]],[[8444,9911,8442]],[[8444,9913,9911]],[[9937,9935,9936]],[[9926,9904,9935]],[[466,9920,8493]],[[9892,9928,9920]],[[8426,9910,8442]],[[9908,8443,9910]],[[9933,9934,9925]],[[9933,9886,9934]],[[9934,9932,9925]],[[9934,9885,9932]],[[9906,9937,9936]],[[9926,9935,9937]],[[9916,9929,9921]],[[9916,9917,9887]],[[9913,9914,9903]],[[9913,8444,9914]],[[9941,9940,9918]],[[9930,9884,9886]],[[9931,9899,9922]],[[9918,8436,9899]],[[9885,9931,9922]],[[9941,9918,9931]],[[9941,9930,9902]],[[9941,9931,9930]],[[9940,9902,9915]],[[9930,9886,9902]],[[9888,9917,9891]],[[9916,8492,9917]],[[9929,9887,9889]],[[9929,9916,9887]],[[8491,9895,8437]],[[8491,8490,9895]],[[8426,9906,9908]],[[9942,9936,8443]],[[9906,9942,9907]],[[9906,9936,9942]],[[8426,9908,9910]],[[9907,8443,9908]],[[559,9888,9891]],[[9887,9917,9888]],[[9893,9939,9920]],[[9894,8493,9939]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49220b8c-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5caa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9943,6905,6900]],[[9944,9945,6902]],[[6903,9944,6902]],[[6903,6905,9946]],[[6902,9943,6900]],[[9945,9946,9943]],[[6902,9945,9943]],[[9946,6905,9943]],[[9947,9946,9945]],[[9947,6903,9946]],[[9944,9947,9945]],[[9944,6903,9947]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4922cf69-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9948,9949,9950]],[[9951,9952,168]],[[9953,168,9954]],[[9955,170,9956]],[[9952,9957,9958]],[[9952,9959,7916]],[[9960,167,9961]],[[9961,167,9958]],[[9958,167,9952]],[[9957,921,9962]],[[7915,7916,9963]],[[1821,1823,7916]],[[171,9949,170]],[[171,9950,9949]],[[9954,9955,9956]],[[169,170,9955]],[[168,9952,167]],[[9964,9965,9949]],[[9966,9956,170]],[[9966,9965,9956]],[[9967,9960,976]],[[166,167,9960]],[[9963,9959,9948]],[[168,9953,9965]],[[169,9954,168]],[[169,9955,9954]],[[9962,9961,9958]],[[976,9960,9961]],[[7916,9957,9952]],[[9957,9962,9958]],[[9956,9953,9954]],[[9956,9965,9953]],[[166,9967,976]],[[166,9960,9967]],[[9949,9966,170]],[[9949,9965,9966]],[[1823,9957,7916]],[[1823,921,9957]],[[976,9962,921]],[[976,9961,9962]],[[9949,9959,9964]],[[9963,7916,9959]],[[9965,9964,168]],[[9959,9952,9951]],[[9964,9951,168]],[[9964,9959,9951]],[[9963,9948,9950]],[[9959,9949,9948]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4924564a-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef663949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9968,9969,9970]],[[9968,9970,9971]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492762e2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9972,8006,8007]],[[8007,8008,8009]],[[8010,8007,8009]],[[9972,8007,8010]],[[8011,9972,8010]],[[8011,8006,9972]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492910e5-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef501549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9973,235,9974]],[[9975,259,232]],[[9976,277,259]],[[9977,9978,259]],[[9979,277,9976]],[[9975,9980,259]],[[259,9981,9976]],[[9978,9981,259]],[[9982,9983,9976]],[[9976,9981,9982]],[[9984,277,9979]],[[9983,9985,9979]],[[9984,9974,9986]],[[9987,9988,232]],[[9989,9978,9980]],[[9980,9978,9977]],[[9981,9990,9982]],[[9984,9986,277]],[[235,277,9986]],[[9983,9984,9985]],[[9974,235,9986]],[[9983,9973,9984]],[[9983,9982,9990]],[[9983,9979,9976]],[[9985,9984,9979]],[[9991,9990,9978]],[[9990,9973,9983]],[[9984,9973,9974]],[[230,235,9973]],[[9987,9991,9988]],[[230,9973,9991]],[[9978,9990,9981]],[[9991,9973,9990]],[[9988,9975,232]],[[9989,9991,9978]],[[259,9980,9977]],[[9975,9988,9989]],[[9975,9989,9980]],[[9988,9991,9989]],[[230,9987,232]],[[230,9991,9987]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4929fae4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a1049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9074,9068,9067]],[[9068,9065,9067]],[[9068,9072,9065]],[[9068,9073,9072]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492abedc-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef928049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9992,9993,9994]],[[9995,9996,9997]],[[9995,9998,9999]],[[1376,10000,1374]],[[10001,10002,10003]],[[1376,10001,10000]],[[10001,10003,10004]],[[10005,10006,10001]],[[10005,8172,8173]],[[10004,10005,10001]],[[1010,1008,994]],[[10007,10008,10009]],[[994,10010,902]],[[994,1008,10010]],[[10011,7247,10012]],[[10013,7246,10014]],[[10015,10016,10017]],[[10018,7243,7245]],[[10019,7244,7243]],[[10020,10021,10022]],[[10023,10024,10017]],[[10025,10026,10027]],[[10016,10028,10027]],[[10029,10030,10031]],[[10032,10007,10033]],[[10034,10035,10036]],[[10037,646,10038]],[[645,646,10039]],[[10040,645,10039]],[[10041,9994,9993]],[[644,10041,10042]],[[10043,10033,10044]],[[10045,9993,9992]],[[10045,9992,10046]],[[9992,10040,10047]],[[10047,10040,10039]],[[10043,10044,10048]],[[10049,10050,10025]],[[10051,10049,10025]],[[10052,10051,10025]],[[10053,10052,10025]],[[10054,10053,10025]],[[10055,10054,10025]],[[10056,10055,10025]],[[10057,10056,10025]],[[10058,10057,10025]],[[10025,10059,10060]],[[10060,10058,10025]],[[10025,10029,10059]],[[10061,10059,10029]],[[10031,10061,10029]],[[10030,10029,10062]],[[10062,10029,10063]],[[10063,10029,10064]],[[10064,10029,10065]],[[10029,10066,10067]],[[10029,10068,10066]],[[10029,10069,10068]],[[10029,10070,10069]],[[10029,10071,10070]],[[10029,10072,10071]],[[10029,10073,10072]],[[10029,10074,10073]],[[10029,10075,10074]],[[10029,10076,10075]],[[10029,10077,10076]],[[10029,10078,10077]],[[10029,10079,10078]],[[10029,10080,10081]],[[10079,10029,10082]],[[10083,10084,10085]],[[10086,10029,10087]],[[10087,10088,10089]],[[10089,10090,10091]],[[10092,10093,10094]],[[10095,10091,10096]],[[10097,10098,10095]],[[10099,10100,10098]],[[10101,10102,10100]],[[10103,10104,10105]],[[10106,10103,10102]],[[10105,10107,10108]],[[10108,10109,10110]],[[10110,10111,10112]],[[10112,10113,10114]],[[10114,10115,10116]],[[10116,10117,10118]],[[10118,10119,10120]],[[10120,10083,10085]],[[10121,10122,10123]],[[10124,10125,10126]],[[10127,10128,10129]],[[10130,10131,10132]],[[10132,10133,10134]],[[10135,10136,10137]],[[10138,10139,10140]],[[10141,10142,10143]],[[10144,10145,10146]],[[10050,10147,10025]],[[10148,10149,10150]],[[10151,10152,10153]],[[10153,10152,10154]],[[10154,10152,10155]],[[10156,10154,10155]],[[10157,10156,10155]],[[10158,10026,10159]],[[10159,10026,10160]],[[10160,10026,10161]],[[10161,10026,10162]],[[10162,10026,10163]],[[10163,10026,10164]],[[10164,10026,10165]],[[10165,10026,10166]],[[10166,10026,10167]],[[10167,10026,10025]],[[10168,10167,10025]],[[10169,10168,10025]],[[10170,10169,10025]],[[10171,10170,10025]],[[10172,10171,10025]],[[10147,10172,10025]],[[10173,10174,10175]],[[10176,10177,10178]],[[10179,10180,10181]],[[10179,10182,10180]],[[10179,10183,10182]],[[10179,10184,10183]],[[10179,10185,10184]],[[10179,10186,10185]],[[10179,10187,10186]],[[10179,10188,10187]],[[10179,10189,10188]],[[10179,10190,10189]],[[10179,10191,10190]],[[10179,10192,10191]],[[10179,10193,10192]],[[10179,10194,10193]],[[10179,10195,10194]],[[10179,10196,10195]],[[10179,10197,10196]],[[10179,10198,10197]],[[10179,10199,10198]],[[10179,10200,10199]],[[10179,10201,10200]],[[10179,10202,10201]],[[10148,10203,10132]],[[10179,10204,10202]],[[10179,10205,10206]],[[10204,10179,10207]],[[10207,10179,10206]],[[10206,10205,10208]],[[10208,10205,10209]],[[10209,10205,10210]],[[10210,10205,10211]],[[10211,10205,10212]],[[10212,10205,10213]],[[10093,10205,10214]],[[10093,10213,10205]],[[10215,10216,1016]],[[10093,10217,10218]],[[10093,10219,10217]],[[10220,10221,10144]],[[10222,10223,10224]],[[10144,10225,10226]],[[10144,10226,10227]],[[10228,10229,10230]],[[10226,10231,10227]],[[10232,10233,10234]],[[10235,10230,10236]],[[10233,10237,10234]],[[10238,10239,10240]],[[10238,10240,10241]],[[10238,10241,10242]],[[10243,10244,10245]],[[10152,10246,10247]],[[10139,10248,10249]],[[10250,10135,10251]],[[10252,10253,10254]],[[10255,10227,10256]],[[10256,10227,10257]],[[10258,10259,10260]],[[10261,10262,10259]],[[10263,10264,10262]],[[10265,10266,10264]],[[10267,10268,10266]],[[10269,10270,10268]],[[10271,10085,10084]],[[10119,10083,10120]],[[10117,10119,10118]],[[10115,10117,10116]],[[10082,10029,10086]],[[10114,10113,10115]],[[10272,10179,10181]],[[10112,10111,10113]],[[10028,10179,10273]],[[10270,10274,10275]],[[10111,10110,10109]],[[10276,10277,10275]],[[10109,10108,10107]],[[10173,10277,10278]],[[10107,10105,10104]],[[10175,10279,10280]],[[10104,10103,10106]],[[10138,10140,10280]],[[10106,10102,10101]],[[10249,10248,10281]],[[10101,10100,10099]],[[10250,10251,10281]],[[10099,10098,10097]],[[10137,10251,10135]],[[10097,10095,10096]],[[10137,10136,10282]],[[10096,10091,10090]],[[10252,10254,10282]],[[10090,10089,10088]],[[10283,10284,10179]],[[10088,10087,10285]],[[10286,10287,10288]],[[10285,10087,10029]],[[10176,10287,10289]],[[10081,10285,10029]],[[10178,10290,10291]],[[10080,10029,10292]],[[10293,10294,10291]],[[10292,10028,10295]],[[10296,10294,10297]],[[10295,10028,10273]],[[10298,10299,10300]],[[10273,10179,10301]],[[10302,10299,10303]],[[10301,10179,10304]],[[10302,10305,10181]],[[10304,10179,10306]],[[10296,10307,10300]],[[10306,10179,10284]],[[10308,10309,10288]],[[10308,10254,10253]],[[10179,10310,10283]],[[10249,10140,10139]],[[10310,10179,10311]],[[10311,10179,10312]],[[10312,10179,10313]],[[10313,10179,10272]],[[10272,10181,10305]],[[10305,10302,10303]],[[10303,10299,10298]],[[10298,10300,10307]],[[10307,10296,10297]],[[10297,10294,10293]],[[10293,10291,10290]],[[10290,10178,10177]],[[10177,10176,10289]],[[10289,10287,10286]],[[10286,10288,10309]],[[10309,10308,10253]],[[10136,10252,10282]],[[10255,10314,10227]],[[10314,10144,10227]],[[10248,10250,10281]],[[10315,10144,10314]],[[10316,10317,10144]],[[10279,10138,10280]],[[10174,10279,10175]],[[10278,10174,10173]],[[10276,10278,10277]],[[10274,10276,10275]],[[10269,10274,10270]],[[10267,10269,10268]],[[10265,10267,10266]],[[10263,10265,10264]],[[10262,10261,10263]],[[10259,10258,10261]],[[10260,10257,10227]],[[10258,10260,10227]],[[10132,10318,10319]],[[10320,10258,10227]],[[10132,10203,10321]],[[10322,10227,10323]],[[10132,10324,10325]],[[10323,10227,10326]],[[10327,10324,10132]],[[10155,10141,10328]],[[10329,10152,10330]],[[10132,10152,10329]],[[10331,10132,10319]],[[10332,10132,10131]],[[10333,10334,10148]],[[10335,10336,10148]],[[10132,10331,10130]],[[10148,10337,10149]],[[10148,10338,10337]],[[10148,10339,10338]],[[10331,10129,10128]],[[10148,10132,10339]],[[10339,10132,10134]],[[10129,10340,10127]],[[10132,10332,10133]],[[10126,10125,10340]],[[10128,10130,10331]],[[10341,10124,10126]],[[10125,10127,10340]],[[10123,10122,10341]],[[10122,10124,10341]],[[10271,10121,10123]],[[10084,10121,10271]],[[10010,1008,10205]],[[10342,907,10343]],[[10343,1010,10342]],[[10344,1011,1010]],[[8171,10345,10346]],[[1008,1016,10205]],[[10035,10034,10347]],[[10348,10349,10350]],[[10351,10004,10003]],[[9995,9999,10352]],[[10353,10354,10355]],[[10356,10357,10358]],[[10359,10360,10347]],[[10361,10362,10363]],[[10357,10364,10358]],[[10365,10366,10357]],[[10367,10368,10369]],[[10370,10371,10372]],[[9996,9995,10373]],[[10374,10375,10376]],[[10377,9997,9996]],[[10361,10378,10362]],[[10379,10380,10381]],[[10382,10383,10384]],[[10148,10334,10385]],[[10382,10386,10383]],[[10330,10152,10387]],[[9996,10388,10389]],[[10390,10391,10152]],[[10392,10389,10393]],[[10390,10152,10394]],[[10393,10389,10395]],[[10152,10151,10394]],[[10389,10396,10397]],[[10155,10158,10157]],[[10398,10333,10148]],[[10396,10389,10388]],[[10398,10148,10399]],[[10388,10026,10379]],[[10148,10336,10399]],[[10400,10401,10402]],[[10150,10335,10148]],[[10381,10388,10379]],[[10403,10388,10381]],[[10132,10329,10327]],[[10404,10148,10385]],[[10380,10379,10405]],[[10406,10407,10144]],[[10328,10143,10408]],[[10404,10409,10148]],[[10326,10148,10409]],[[10315,10316,10144]],[[10152,10247,10155]],[[10407,10410,10144]],[[10132,10321,10152]],[[10410,10411,10144]],[[10411,10145,10144]],[[10326,10227,10148]],[[10412,10413,10414]],[[10415,10238,10416]],[[10417,10415,10416]],[[10418,10417,10416]],[[10414,10418,10416]],[[10414,10416,10243]],[[10414,10413,10419]],[[10148,10227,10232]],[[10146,10420,10144]],[[10420,10421,10230]],[[10420,10230,10144]],[[10422,10230,10421]],[[10236,10230,10422]],[[10423,10230,10235]],[[10424,10228,10230]],[[10229,10224,10223]],[[10229,10223,10230]],[[10219,10093,10222]],[[10220,10144,10230]],[[10425,10220,10230]],[[10230,10423,10424]],[[10230,10426,10427]],[[10093,10092,10428]],[[10230,10223,10426]],[[10429,10430,10214]],[[10431,10426,10223]],[[10093,10218,10094]],[[10432,10433,10093]],[[10093,10223,10222]],[[10429,10434,10435]],[[10216,10436,10214]],[[10214,10205,10216]],[[10214,10437,10438]],[[10214,10436,10437]],[[10439,10440,10216]],[[10441,10439,10216]],[[10442,10443,10215]],[[10215,10443,10444]],[[10445,10446,10442]],[[10447,10448,10449]],[[10450,10451,10445]],[[10452,10453,10451]],[[10452,10454,10453]],[[10455,10447,10449]],[[10456,10454,10455]],[[10447,10457,10448]],[[10457,10458,10459]],[[10460,10461,10462]],[[10461,10463,10462]],[[10461,10464,10463]],[[10035,10346,10345]],[[10465,10466,10464]],[[10464,1011,10465]],[[9867,10467,10365]],[[10465,10468,10469]],[[10470,10471,10472]],[[10470,10360,10473]],[[10473,10474,10475]],[[10476,10477,10474]],[[10477,10359,10478]],[[10479,10480,10481]],[[10479,10366,10480]],[[10482,10483,10484]],[[10485,10467,10486]],[[10485,10486,10487]],[[10467,10488,10489]],[[10488,10490,10491]],[[10374,9866,9997]],[[10491,10492,10493]],[[10494,9866,10495]],[[10492,10490,10496]],[[10496,9867,10494]],[[10497,10496,10494]],[[10498,10494,10499]],[[10499,10494,10495]],[[10495,9866,10500]],[[10501,10495,10500]],[[10500,9866,10502]],[[10502,9866,10503]],[[10504,10502,10503]],[[10503,9866,10374]],[[10377,10505,10374]],[[10377,10506,10505]],[[10507,10508,10377]],[[10509,10510,10508]],[[10511,10418,10414]],[[10512,10244,10243]],[[10471,10470,10475]],[[10347,10364,10357]],[[10406,10144,10317]],[[10221,10225,10144]],[[1016,10216,10205]],[[10440,10436,10216]],[[10320,10227,10322]],[[10231,10237,10233]],[[10513,10214,10438]],[[10513,10429,10214]],[[10507,10377,9996]],[[10508,10506,10377]],[[10478,10359,10481]],[[10347,10357,10359]],[[10514,10230,10427]],[[10514,10425,10230]],[[10470,10465,1011]],[[10469,10466,10465]],[[10387,10152,10391]],[[10321,10246,10152]],[[10377,10374,9997]],[[10505,10375,10374]],[[10468,10470,10472]],[[1011,10344,10346]],[[10515,10223,10093]],[[10433,10431,10223]],[[10376,10503,10374]],[[10516,10504,10503]],[[10517,10328,10408]],[[10026,10155,10328]],[[10450,10452,10451]],[[1016,10454,10452]],[[10412,10243,10245]],[[10416,10512,10243]],[[10483,10365,10487]],[[10489,10518,10486]],[[10460,10519,10461]],[[1011,10464,10461]],[[10366,10365,10482]],[[10357,9867,10365]],[[10450,10442,1016]],[[10446,10443,10442]],[[10518,10488,10493]],[[9867,10496,10490]],[[10442,10450,10445]],[[1016,10452,10450]],[[1011,10447,1016]],[[1011,10519,10447]],[[10328,10379,10026]],[[10328,10517,10405]],[[10520,10392,10393]],[[9996,10389,10392]],[[10158,10155,10026]],[[10521,10142,10522]],[[10442,10215,1016]],[[10444,10439,10441]],[[10523,10496,10497]],[[10523,10492,10496]],[[10524,10495,10525]],[[10524,10499,10495]],[[10526,10502,10504]],[[10527,10528,10500]],[[10361,10363,10507]],[[10362,10510,10363]],[[10529,10464,10466]],[[10529,10463,10464]],[[10361,10507,9996]],[[10509,10508,10507]],[[10395,10389,10397]],[[9996,10026,10388]],[[10457,10519,10458]],[[1011,10461,10519]],[[10497,10494,10498]],[[9867,9866,10494]],[[10402,10388,10403]],[[10530,10396,10388]],[[10392,10361,9996]],[[10384,10378,10361]],[[9867,10488,10467]],[[9867,10490,10488]],[[10148,10232,10415]],[[10234,10239,10232]],[[10527,10500,10502]],[[10501,10525,10495]],[[10453,10454,10456]],[[1016,10447,10454]],[[10232,10238,10415]],[[10232,10239,10238]],[[10242,10512,10416]],[[10241,10244,10512]],[[10359,10479,10481]],[[10359,10366,10479]],[[10470,10473,10475]],[[10360,10476,10473]],[[10473,10476,10474]],[[10477,10478,10474]],[[10531,10532,10019]],[[10023,10017,7244]],[[10533,10534,10351]],[[10002,10349,10003]],[[10141,10522,10142]],[[10521,10247,10142]],[[10412,10414,10243]],[[10419,10511,10414]],[[10531,10021,10532]],[[10021,10028,10016]],[[10535,10517,10408]],[[10405,10379,10328]],[[10238,10242,10416]],[[10241,10512,10242]],[[10470,1011,10035]],[[8171,8172,10036]],[[10042,10041,9993]],[[10040,643,645]],[[10047,10039,10037]],[[10047,10043,9992]],[[10360,10477,10476]],[[10360,10359,10477]],[[10488,10491,10493]],[[10490,10492,10491]],[[10386,10520,10393]],[[10386,10392,10520]],[[10013,10014,10012]],[[7246,7247,10014]],[[10536,10537,10370]],[[10538,10349,10539]],[[10355,10540,10356]],[[10541,10542,10369]],[[10543,10544,10371]],[[10545,10546,10547]],[[10548,10549,10550]],[[10551,10552,10537]],[[10553,9998,10554]],[[10372,10555,10556]],[[10549,10554,10550]],[[10546,10545,10543]],[[10557,10558,10373]],[[10038,9996,10373]],[[10545,10555,10372]],[[10551,10537,10536]],[[10467,10489,10486]],[[10488,10518,10489]],[[10559,10531,7245]],[[7245,10531,10018]],[[10392,10382,10361]],[[10383,10378,10384]],[[10480,10366,10484]],[[10359,10357,10366]],[[8170,10343,907]],[[8170,10560,10561]],[[10356,10562,10353]],[[10356,10358,10563]],[[10328,10141,10143]],[[10155,10522,10141]],[[10365,10485,10487]],[[10365,10467,10485]],[[10458,10460,10462]],[[10458,10519,10460]],[[10564,10527,10502]],[[10564,10528,10527]],[[10565,10132,10325]],[[10565,10318,10132]],[[10366,10482,10484]],[[10365,10483,10482]],[[644,9994,10041]],[[644,643,9994]],[[10561,10560,10344]],[[10346,10035,1011]],[[994,10342,1010]],[[994,907,10342]],[[10564,10526,10504]],[[10564,10502,10526]],[[10363,10509,10507]],[[10363,10510,10509]],[[10538,10548,10349]],[[10540,10537,10552]],[[10373,9995,10539]],[[10548,10543,10349]],[[10550,10566,10548]],[[10550,10554,10566]],[[10000,10001,10006]],[[1376,10002,10001]],[[10543,10370,10355]],[[10370,10537,10540]],[[10470,10035,10347]],[[10004,10567,10005]],[[10345,10036,10035]],[[10345,8171,10036]],[[10347,10034,10568]],[[10036,8172,10567]],[[10569,10347,10568]],[[10567,8172,10005]],[[10348,10351,10003]],[[10568,10034,10567]],[[10533,10570,10569]],[[10360,10470,10347]],[[10361,10382,10384]],[[10392,10386,10382]],[[10429,10435,10430]],[[10434,10432,10435]],[[10213,10093,10428]],[[10430,10432,10093]],[[10214,10430,10093]],[[10435,10432,10430]],[[10552,10547,10356]],[[9998,10356,10554]],[[10544,10543,10545]],[[10571,10554,10546]],[[10370,10372,10556]],[[10546,10554,10547]],[[9994,10040,9992]],[[9994,643,10040]],[[10013,10559,7245]],[[10012,10531,10559]],[[10448,10457,10459]],[[10447,10519,10457]],[[10020,10023,7244]],[[10022,10021,10023]],[[10528,10501,10500]],[[10528,10525,10501]],[[10551,10556,10547]],[[10547,10556,10555]],[[10568,10567,10004]],[[10034,10036,10567]],[[10020,10572,10021]],[[10573,10016,10015]],[[10574,10548,10538]],[[10566,10575,10571]],[[10576,10352,10538]],[[9999,9998,10577]],[[10530,10401,10400]],[[10530,10388,10401]],[[10516,10376,10375]],[[10516,10503,10376]],[[10369,10542,10578]],[[10368,10367,10348]],[[10563,10358,10369]],[[10579,10563,10578]],[[10369,10368,10541]],[[10367,10351,10348]],[[10563,10369,10578]],[[10358,10367,10369]],[[10580,10541,10368]],[[10354,10542,10541]],[[10356,10353,10355]],[[10354,10541,10580]],[[10562,10581,10353]],[[10578,10542,10354]],[[10562,10563,10581]],[[10562,10356,10563]],[[10349,10543,10355]],[[10548,10566,10543]],[[10556,10536,10370]],[[10556,10551,10536]],[[10561,10344,1010]],[[10560,8170,10346]],[[10560,10346,10344]],[[8170,8171,10346]],[[10024,10573,10017]],[[10024,10021,10573]],[[10155,10521,10522]],[[10155,10247,10521]],[[10533,10351,10367]],[[10534,10004,10351]],[[10014,10011,10012]],[[10014,7247,10011]],[[10032,10047,10038]],[[10033,10043,10047]],[[10544,10372,10371]],[[10544,10545,10372]],[[10352,10574,10538]],[[10352,9999,10574]],[[10540,10552,10356]],[[10547,10554,10356]],[[10018,10531,7243]],[[10012,10021,10531]],[[10029,10025,10027]],[[10029,10067,10065]],[[10534,10568,10004]],[[10534,10569,10568]],[[10047,10032,10033]],[[10038,10008,10032]],[[10033,10007,10009]],[[10557,10373,10539]],[[10008,10558,10009]],[[10008,10373,10558]],[[10009,10557,10539]],[[10009,10558,10557]],[[10032,10008,10007]],[[10038,10373,10008]],[[10456,10455,10449]],[[10454,10447,10455]],[[10227,10233,10232]],[[10227,10231,10233]],[[10364,10570,10533]],[[10364,10347,10570]],[[10350,10580,10368]],[[10579,10581,10563]],[[10350,10354,10580]],[[10353,10581,10354]],[[10355,10350,10349]],[[10355,10354,10350]],[[10349,10348,10003]],[[10350,10368,10348]],[[10354,10579,10578]],[[10354,10581,10579]],[[10047,10037,10038]],[[10039,646,10037]],[[10023,10021,10024]],[[10012,10028,10021]],[[10532,10572,7244]],[[10532,10021,10572]],[[10352,10576,9995]],[[10538,10539,9995]],[[9998,9995,9997]],[[10576,10538,9995]],[[10017,10573,10015]],[[10021,10016,10573]],[[10433,10515,10093]],[[10433,10223,10515]],[[10572,10020,7244]],[[10022,10023,10020]],[[10535,10405,10517]],[[10535,10380,10405]],[[10574,10577,10553]],[[10574,9999,10577]],[[10549,10553,10554]],[[10577,9998,10553]],[[10574,10549,10548]],[[10574,10553,10549]],[[10469,10468,10472]],[[10465,10470,10468]],[[10215,10441,10216]],[[10215,10444,10441]],[[10543,10566,10571]],[[10566,10554,10575]],[[10543,10571,10546]],[[10575,10554,10571]],[[10551,10547,10552]],[[10555,10545,10547]],[[10343,10561,1010]],[[10343,8170,10561]],[[10400,10402,10403]],[[10401,10388,10402]],[[10028,10029,10027]],[[10028,10292,10029]],[[10355,10370,10540]],[[10543,10371,10370]],[[10559,10013,10012]],[[7245,7246,10013]],[[10531,10019,7243]],[[10532,7244,10019]],[[10533,10569,10534]],[[10570,10347,10569]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492c6bd0-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef790749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8402,1097,1105]],[[8402,1105,8744]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492d56e7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3100,3102,3165]],[[3100,3165,3108]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492e19ca-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cab49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10582,10583,10584]],[[10585,10586,10587]],[[10588,6932,6933]],[[10589,10590,10588]],[[6932,10590,10591]],[[6886,10592,6913]],[[10593,10594,6974]],[[10587,10586,10595]],[[10596,8681,6910]],[[10597,10594,10598]],[[6974,6975,10593]],[[10599,10600,10601]],[[10591,6912,10592]],[[10596,10602,10603]],[[10592,6912,6913]],[[10604,10584,6975]],[[10583,10595,10593]],[[10582,10587,10595]],[[10600,10599,6911]],[[10593,10586,10594]],[[10587,10605,10585]],[[10601,10606,6910]],[[10602,10587,10603]],[[6911,10599,6910]],[[10607,10605,10587]],[[10588,10590,6932]],[[10591,10608,6912]],[[10589,10585,10609]],[[10607,10602,10610]],[[10604,10603,10582]],[[10595,10586,10593]],[[10607,10610,10600]],[[10606,10596,6910]],[[10599,10601,6910]],[[10610,10602,10606]],[[8681,10604,6975]],[[8681,10603,10604]],[[10610,10606,10601]],[[10602,10596,10606]],[[6925,10588,6933]],[[6925,10589,10588]],[[10601,10600,10610]],[[6911,6912,10600]],[[10608,10607,10600]],[[10587,10602,10607]],[[10584,10593,6975]],[[10584,10583,10593]],[[6932,10591,6886]],[[10608,10605,10607]],[[6886,10591,10592]],[[10609,10585,10605]],[[6912,10608,10600]],[[10591,10590,10608]],[[10596,10603,8681]],[[10595,10583,10582]],[[10604,10582,10584]],[[10603,10587,10582]],[[10611,10589,6925]],[[10609,10605,10608]],[[10611,10597,10589]],[[10594,10586,10598]],[[6974,10611,6925]],[[6974,10594,10597]],[[10589,10597,10598]],[[10611,6974,10597]],[[10598,10585,10589]],[[10598,10586,10585]],[[10590,10609,10608]],[[10590,10589,10609]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492e6811-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef608949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6710,6706,6709]],[[10612,6711,10613]],[[6706,6710,10613]],[[10614,6706,10613]],[[10613,6711,10615]],[[10615,295,297]],[[10615,6711,295]],[[10612,10616,6711]],[[6710,6711,10616]],[[6710,10612,10613]],[[6710,10616,10612]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492f03ba-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10617,10618,7732]],[[10619,9807,10620]],[[7730,10621,10622]],[[10622,10621,10618]],[[9810,10623,9808]],[[10624,7732,7759]],[[9803,10623,7760]],[[9803,7760,10625]],[[10625,7760,7752]],[[10626,7732,10624]],[[9810,9807,10619]],[[10617,7732,10626]],[[10627,10628,10629]],[[10630,10626,10624]],[[7754,10625,7752]],[[7754,9803,10625]],[[7730,10618,10621]],[[7730,7732,10618]],[[10623,10631,10632]],[[10633,10634,10635]],[[10627,10636,10628]],[[7760,10632,10636]],[[10633,10622,10618]],[[10635,10637,10622]],[[7759,10627,10629]],[[10636,10632,10628]],[[10629,10624,7759]],[[10629,10630,10624]],[[10638,10637,10639]],[[10637,7730,10622]],[[10623,10640,10634]],[[10623,9810,10640]],[[10631,10633,10617]],[[10633,10618,10617]],[[10626,10631,10617]],[[10638,10639,10640]],[[10631,10634,10633]],[[10640,10639,10635]],[[10633,10635,10622]],[[10634,10640,10635]],[[10639,10637,10635]],[[10620,7730,10637]],[[10632,10631,10626]],[[10623,10634,10631]],[[10628,10632,10626]],[[7760,10623,10632]],[[9810,10619,10640]],[[10619,10637,10638]],[[10637,10619,10620]],[[10638,10640,10619]],[[7760,10627,7759]],[[7760,10636,10627]],[[10628,10630,10629]],[[10628,10626,10630]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49310031-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef790849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10641,10642,10643]],[[10644,10641,10643]],[[10645,10646,10643]],[[10643,10042,10644]],[[10643,10646,10042]],[[10647,10648,10646]],[[10649,644,10042]],[[652,10650,10651]],[[10647,10646,10652]],[[10653,10648,10650]],[[10646,10645,10652]],[[652,10653,10650]],[[652,644,10653]],[[10653,10654,10649]],[[10653,644,10654]],[[10653,10646,10648]],[[10653,10649,10646]],[[10646,10649,10042]],[[10654,644,10649]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4931275f-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef949349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10655,2887,2888]],[[8158,2887,10655]],[[8156,8567,8155]],[[8156,8157,8568]],[[8156,8568,8567]],[[8568,10656,8566]],[[10657,2886,8565]],[[10657,2888,2886]],[[10655,8157,8158]],[[10656,10657,8565]],[[8568,8157,10655]],[[10657,10655,2888]],[[10657,10656,10655]],[[8566,10656,8565]],[[8568,10655,10656]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4931c302-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10658,10659,10660]],[[10661,10662,10663]],[[10027,10664,10016]],[[10665,10666,10667]],[[10668,10664,10669]],[[10661,10670,10662]],[[10661,10671,10670]],[[10668,10672,10673]],[[10017,10674,10675]],[[10675,10676,10671]],[[10677,10678,10672]],[[10679,6662,6840]],[[10680,7265,10681]],[[10682,7195,7252]],[[10682,10683,7195]],[[10683,10684,10685]],[[10686,10687,10688]],[[10685,10684,7203]],[[10688,10687,10689]],[[10690,10687,10691]],[[10692,10693,10694]],[[10695,10696,10697]],[[7182,10696,7180]],[[10693,7168,7201]],[[10698,10699,7214]],[[10681,7183,10680]],[[10700,7216,7214]],[[10697,7268,7216]],[[10695,7180,10696]],[[7267,7265,7266]],[[10701,7168,10693]],[[10702,7202,10703]],[[10704,10705,10706]],[[10707,10694,10704]],[[10708,10709,10710]],[[10711,10712,10713]],[[10714,10715,10716]],[[10717,6752,10718]],[[10719,6751,10720]],[[10721,10722,10723]],[[10724,10717,10725]],[[10726,6841,10727]],[[10728,10729,10730]],[[10731,10728,10730]],[[10732,10733,10734]],[[10735,10736,10737]],[[10738,6677,6654]],[[10739,6660,6661]],[[10730,10740,10731]],[[10741,10742,10743]],[[10744,10745,10746]],[[10747,10748,10745]],[[6671,10749,6685]],[[10746,10730,10750]],[[10751,6683,6684]],[[10752,10753,10754]],[[10753,502,10754]],[[10752,504,6683]],[[500,502,517]],[[10755,10756,10757]],[[10758,10759,10760]],[[10761,517,10753]],[[10762,10755,10763]],[[10764,647,10765]],[[10766,625,10767]],[[10768,646,647]],[[10769,10712,10770]],[[10771,10678,10677]],[[10772,10773,10774]],[[10775,10776,10777]],[[10778,10779,10780]],[[10708,10781,10782]],[[10783,10729,10728]],[[10750,10784,10744]],[[10782,10709,10708]],[[10772,10678,10771]],[[10785,10702,10703]],[[7202,7203,10684]],[[10664,10786,10669]],[[10786,10787,10771]],[[10788,10714,10738]],[[10731,10789,10728]],[[10786,10771,10677]],[[10773,10772,10771]],[[10790,10791,10792]],[[10793,10753,10794]],[[10795,10796,10781]],[[10797,10798,10799]],[[10800,10696,7182]],[[10800,7268,10697]],[[10801,626,10762]],[[10791,513,10792]],[[7183,10800,7182]],[[7183,10802,10800]],[[10803,10739,10804]],[[10727,6748,6750]],[[10805,10806,10807]],[[10808,10798,10809]],[[10810,10809,10811]],[[10691,10772,10779]],[[10806,10805,10733]],[[10812,10807,10780]],[[10680,10813,10814]],[[10813,7168,10815]],[[6685,10749,10747]],[[10748,6675,10745]],[[10726,10727,10711]],[[6841,6748,10727]],[[10816,10804,10679]],[[10817,6662,10818]],[[10693,10692,10701]],[[7201,10702,10693]],[[10819,10778,10780]],[[10820,6753,10707]],[[10821,10778,10822]],[[10820,10718,6753]],[[10819,10810,10778]],[[10823,10824,10825]],[[10775,10826,10827]],[[10737,6684,10776]],[[10828,10829,10830]],[[10793,10831,10753]],[[10832,10732,10734]],[[10819,10833,10834]],[[10835,10836,10837]],[[10838,10839,10840]],[[6677,10730,10746]],[[6677,10740,10730]],[[10800,10697,10696]],[[7218,7180,10695]],[[10841,10660,10842]],[[10841,10843,10660]],[[10828,10842,10844]],[[10844,10829,10828]],[[10845,10841,10842]],[[10843,10846,10658]],[[10847,10828,10830]],[[10845,10842,10828]],[[10799,10848,10797]],[[10849,6752,10717]],[[10850,10810,10811]],[[10770,10712,10711]],[[10851,10787,10786]],[[10851,10773,10852]],[[10669,10786,10677]],[[10853,10854,10710]],[[10855,10856,10786]],[[10786,10856,10851]],[[10852,10773,10771]],[[10774,10709,10772]],[[10857,10776,6684]],[[10784,10729,10858]],[[10675,10674,10676]],[[10027,10855,10664]],[[10747,10857,6684]],[[10745,6676,10746]],[[10768,10764,10760]],[[10859,10860,10861]],[[10713,10862,10711]],[[10726,10711,10816]],[[10788,10738,6654]],[[10740,6677,10738]],[[10863,10864,10815]],[[7183,7168,10813]],[[10767,10801,10743]],[[10865,10843,10866]],[[10038,10759,10758]],[[625,626,10767]],[[10867,10868,10834]],[[10869,10770,10870]],[[10830,10871,10872]],[[10873,10659,10793]],[[10839,10734,10840]],[[10874,10666,10665]],[[10847,10866,10828]],[[10846,10865,10875]],[[10876,10865,10866]],[[10875,10877,10878]],[[10717,10718,10811]],[[6752,6753,10718]],[[10789,10832,10734]],[[10879,10713,10733]],[[10701,10863,7168]],[[10815,7168,10863]],[[10880,10881,10882]],[[10883,517,10761]],[[10823,10884,10850]],[[10821,10779,10778]],[[10700,10697,7216]],[[10885,10695,10697]],[[10886,10887,10888]],[[10756,10755,10889]],[[503,10754,502]],[[10890,504,10752]],[[10875,10742,10877]],[[10741,10891,10742]],[[10892,10893,10742]],[[10893,10894,10743]],[[10790,10792,517]],[[513,517,10792]],[[10895,10896,10897]],[[10887,10756,10898]],[[10715,10899,10716]],[[6659,6660,10899]],[[10900,10666,10901]],[[10900,10667,10666]],[[10747,10745,10857]],[[6675,6676,10745]],[[10785,10694,10693]],[[7201,7202,10702]],[[10846,10896,10880]],[[10790,10902,10791]],[[10880,10883,10881]],[[10880,10658,10846]],[[10857,10745,10744]],[[10730,10729,10750]],[[10744,10746,10750]],[[6676,6677,10746]],[[10844,10660,10873]],[[10903,10882,10831]],[[10829,10793,10794]],[[10831,10881,10761]],[[10859,10904,10860]],[[10860,625,10861]],[[10664,10855,10786]],[[10027,10856,10855]],[[10833,10807,10869]],[[10840,10734,10805]],[[10809,10717,10811]],[[10725,10797,10848]],[[6658,10905,6654]],[[10906,6659,10715]],[[10738,10714,10740]],[[10715,6659,10899]],[[10907,10700,7214]],[[10908,10885,10700]],[[10830,10872,10909]],[[10871,6683,10872]],[[10827,10737,10776]],[[10909,10872,10735]],[[10737,10910,6684]],[[10751,10735,6683]],[[10859,10760,10764]],[[10038,646,10768]],[[10911,10912,10835]],[[10913,10912,10854]],[[10794,10753,10752]],[[517,502,10753]],[[10763,10801,10762]],[[626,627,10762]],[[10914,10801,10915]],[[10762,627,10889]],[[10880,10896,10895]],[[10888,10887,10791]],[[10902,10888,10791]],[[10889,10755,10762]],[[10790,10916,10897]],[[10896,10886,10902]],[[10758,10766,10767]],[[10917,625,10766]],[[10918,10906,10715]],[[6658,6659,10906]],[[6841,10679,6840]],[[10818,6662,10679]],[[10919,10854,10853]],[[10710,10709,10920]],[[10911,10710,10854]],[[10837,10795,10781]],[[10774,10920,10709]],[[10851,10919,10853]],[[10731,10716,10832]],[[10899,6660,10716]],[[6660,10739,10716]],[[10803,10804,10862]],[[10716,10739,10732]],[[10817,10818,10921]],[[10723,10719,10848]],[[6751,6752,10720]],[[10905,10715,10714]],[[10918,6658,10906]],[[10724,10725,10848]],[[10725,10798,10797]],[[10787,10852,10771]],[[10787,10851,10852]],[[10660,10843,10658]],[[10846,10875,10878]],[[10714,10731,10740]],[[10714,10716,10731]],[[7217,10698,7214]],[[10908,10700,10699]],[[623,10765,647]],[[623,10904,10859]],[[10679,10726,10816]],[[10679,6841,10726]],[[10878,10922,10896]],[[10922,10915,10755]],[[10836,10795,10837]],[[10836,10796,10795]],[[10923,10924,10708]],[[10837,10781,10708]],[[10794,10752,6683]],[[10754,10890,10752]],[[10925,10858,10901]],[[10911,10854,10912]],[[10919,10913,10854]],[[10835,10926,10836]],[[10777,10925,10901]],[[10750,10729,10784]],[[10681,10802,7183]],[[7268,10800,10802]],[[10743,10801,10914]],[[10767,626,10801]],[[10735,10827,10909]],[[10927,10775,10874]],[[10660,10844,10842]],[[10660,10659,10873]],[[10694,10928,10704]],[[10929,10690,10825]],[[10706,10707,10704]],[[10686,10683,10687]],[[10692,10694,7264]],[[10693,10702,10785]],[[10930,10661,10663]],[[10675,10671,10661]],[[10812,10796,10807]],[[10805,10734,10733]],[[10812,10780,10779]],[[10807,10833,10780]],[[10796,10805,10807]],[[10796,10836,10838]],[[10796,10840,10805]],[[10839,10926,10858]],[[10700,10885,10697]],[[7218,10695,10885]],[[6671,10748,10749]],[[6671,6675,10748]],[[10871,10794,6683]],[[10871,10830,10794]],[[10866,10845,10828]],[[10866,10843,10845]],[[10905,10788,6654]],[[10905,10714,10788]],[[10931,10812,10709]],[[10691,10678,10772]],[[10778,10810,10850]],[[10868,10809,10810]],[[10851,10774,10773]],[[10920,10853,10710]],[[10851,10920,10774]],[[10851,10853,10920]],[[10867,10834,10833]],[[10868,10810,10834]],[[10833,10819,10780]],[[10834,10810,10819]],[[10734,10783,10789]],[[10783,10839,10858]],[[10808,10770,10798]],[[10869,10806,10770]],[[10814,10864,10701]],[[10813,10815,10864]],[[10692,10814,10701]],[[10864,10863,10701]],[[10932,10933,10901]],[[10934,10935,10936]],[[10856,10937,10919]],[[10912,10938,10835]],[[10851,10856,10919]],[[10938,10932,10835]],[[10684,10785,10703]],[[10928,10694,10785]],[[10821,10884,10939]],[[10705,10704,10940]],[[9996,10893,10026]],[[10893,10743,10742]],[[503,10890,10754]],[[503,504,10890]],[[10905,10918,10715]],[[10905,6658,10918]],[[10941,10942,10943]],[[10942,10866,10847]],[[10943,10942,10944]],[[10941,10866,10942]],[[10874,10934,10927]],[[10775,10827,10776]],[[7218,10908,7217]],[[7218,10885,10908]],[[10659,10831,10793]],[[10881,10883,10761]],[[10753,10831,10761]],[[10882,10658,10880]],[[10737,10736,10910]],[[10737,10827,10735]],[[10921,10804,10739]],[[10921,10679,10804]],[[10796,10812,10781]],[[10812,10772,10709]],[[10772,10812,10779]],[[10931,10781,10812]],[[10901,10933,10900]],[[10027,10026,10667]],[[10902,10790,10897]],[[10883,10880,10895]],[[10916,10895,10897]],[[10916,10883,10895]],[[10666,10874,10901]],[[10925,10784,10858]],[[10776,10925,10777]],[[10744,10784,10925]],[[10769,10806,10733]],[[10869,10807,10806]],[[10699,10907,7214]],[[10699,10700,10907]],[[10829,10873,10793]],[[10829,10844,10873]],[[10672,10669,10677]],[[10668,10676,10664]],[[10847,10830,10909]],[[10829,10794,10830]],[[10731,10832,10789]],[[10716,10732,10832]],[[10757,10922,10755]],[[10891,10741,10914]],[[10869,10867,10833]],[[10869,10868,10867]],[[10720,10849,10724]],[[10720,6752,10849]],[[10910,10751,6684]],[[10910,10736,10751]],[[10675,10930,10663]],[[10675,10661,10930]],[[10846,10878,10896]],[[10877,10891,10945]],[[10845,10843,10841]],[[10865,10846,10843]],[[10659,10903,10831]],[[10659,10658,10903]],[[10831,10882,10881]],[[10903,10658,10882]],[[10824,10823,10811]],[[10822,10778,10850]],[[10939,10823,10825]],[[10850,10811,10823]],[[10939,10884,10823]],[[10822,10850,10884]],[[10826,10847,10909]],[[10944,10942,10847]],[[10933,10856,10027]],[[10946,10938,10913]],[[10667,10933,10027]],[[10667,10900,10933]],[[10768,10759,10038]],[[10760,10766,10758]],[[10711,10722,10798]],[[10719,6750,6751]],[[10947,10927,10936]],[[10927,10934,10936]],[[10760,10859,10861]],[[10765,623,10859]],[[10932,10858,10926]],[[10932,10901,10858]],[[10729,10783,10858]],[[10728,10789,10783]],[[10824,10929,10825]],[[10691,10779,10821]],[[10884,10821,10822]],[[10939,10691,10821]],[[10939,10690,10691]],[[10939,10825,10690]],[[10929,10948,10690]],[[10687,10690,10948]],[[10940,10689,10705]],[[10687,10948,10689]],[[10948,10929,10689]],[[10707,6753,7264]],[[10928,10940,10704]],[[10928,10686,10688]],[[10940,10688,10689]],[[10940,10928,10688]],[[10689,10706,10705]],[[10824,10811,10820]],[[10891,10914,10915]],[[10741,10743,10914]],[[10776,10744,10925]],[[10776,10857,10744]],[[10861,10917,10766]],[[10861,625,10917]],[[10711,10862,10816]],[[10804,10816,10862]],[[10732,10879,10733]],[[10732,10739,10803]],[[10879,10803,10862]],[[10879,10732,10803]],[[10876,10892,10865]],[[10876,10893,10892]],[[10949,10893,10876]],[[10894,10758,10767]],[[10886,10757,10887]],[[10886,10922,10757]],[[10809,10725,10717]],[[10809,10798,10725]],[[10913,10938,10912]],[[10932,10926,10835]],[[10927,10943,10944]],[[10949,10876,10941]],[[10026,10941,10943]],[[10876,10866,10941]],[[10016,10674,10017]],[[10016,10664,10676]],[[10743,10894,10767]],[[10950,10038,10758]],[[10894,10951,10758]],[[9996,10038,10950]],[[9996,10894,10893]],[[10951,10950,10758]],[[9996,10951,10894]],[[9996,10950,10951]],[[10931,10782,10781]],[[10931,10709,10782]],[[10785,10684,10686]],[[10703,7202,10684]],[[7195,10685,7203]],[[7195,10683,10685]],[[10680,10814,7265]],[[10813,10864,10814]],[[7267,10681,7265]],[[7183,10813,10680]],[[10924,10837,10708]],[[10911,10835,10837]],[[10883,10790,517]],[[10883,10916,10790]],[[10694,10707,7264]],[[10706,10824,10820]],[[10706,10820,10707]],[[10811,10718,10820]],[[623,10860,10904]],[[623,625,10860]],[[10817,10921,10739]],[[10818,10679,10921]],[[6661,10817,10739]],[[6661,6662,10817]],[[10896,10922,10886]],[[10945,10891,10915]],[[10769,10713,10712]],[[10879,10862,10713]],[[10827,10826,10909]],[[10944,10847,10826]],[[10796,10838,10840]],[[10836,10926,10839]],[[10719,10724,10848]],[[10849,10717,10724]],[[10706,10929,10824]],[[10706,10689,10929]],[[10868,10870,10809]],[[10868,10869,10870]],[[10870,10808,10809]],[[10870,10770,10808]],[[10785,10686,10928]],[[10684,10683,10686]],[[10908,10698,7217]],[[10908,10699,10698]],[[7268,10681,7267]],[[7268,10802,10681]],[[10026,10949,10941]],[[10026,10893,10949]],[[10026,10947,10936]],[[10944,10826,10927]],[[10901,10874,10777]],[[10927,10826,10775]],[[10859,10764,10765]],[[10768,647,10764]],[[10892,10875,10865]],[[10892,10742,10875]],[[10934,10952,10935]],[[10935,10026,10936]],[[10777,10874,10775]],[[10952,10934,10874]],[[10667,10935,10665]],[[10667,10026,10935]],[[10665,10952,10874]],[[10665,10935,10952]],[[513,10889,627]],[[10756,10887,10757]],[[10898,10756,10889]],[[10898,10791,10887]],[[513,10898,10889]],[[513,10791,10898]],[[10896,10902,10897]],[[10886,10888,10902]],[[6685,10747,6684]],[[10749,10748,10747]],[[10671,10676,10673]],[[10674,10016,10676]],[[10943,10947,10026]],[[10943,10927,10947]],[[10722,10711,10727]],[[10798,10770,10711]],[[10919,10937,10913]],[[10933,10932,10938]],[[10937,10946,10913]],[[10937,10953,10946]],[[10672,10668,10669]],[[10673,10676,10668]],[[10933,10937,10856]],[[10953,10938,10946]],[[10710,10923,10708]],[[10911,10837,10924]],[[10911,10923,10710]],[[10911,10924,10923]],[[10933,10953,10937]],[[10933,10938,10953]],[[10806,10769,10770]],[[10733,10713,10769]],[[10922,10945,10915]],[[10877,10742,10891]],[[10878,10945,10922]],[[10878,10877,10945]],[[6683,10735,10872]],[[10751,10736,10735]],[[10915,10763,10755]],[[10915,10801,10763]],[[6750,10723,10727]],[[10721,10798,10722]],[[10799,10723,10848]],[[10722,10727,10723]],[[10724,10719,10720]],[[10723,6750,10719]],[[10799,10721,10723]],[[10799,10798,10721]],[[10766,10760,10861]],[[10759,10768,10760]],[[7265,10954,7264]],[[7265,10814,10954]],[[10954,10692,7264]],[[10954,10814,10692]],[[10734,10839,10783]],[[10838,10836,10839]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b493349d4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.9958a905655d4ef0bdce4cc3ddf59082","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10955,8735,8729]],[[3038,8729,8737]],[[8731,8735,1885]],[[1887,1886,3037]],[[1885,8735,1886]],[[8731,1887,3036]],[[8731,1884,1887]],[[8731,1885,1884]],[[1886,8735,10955]],[[3039,3038,8737]],[[3037,10955,3038]],[[3036,3039,8737]],[[8731,3036,8737]],[[1887,3037,3036]],[[3038,10955,8729]],[[3037,1886,10955]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49340dd5-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10956,10957,10958]],[[10956,10958,10959]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4935bab7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6732,6729,6731]],[[10960,7005,7006]],[[10961,7004,7005]],[[10962,6981,7004]],[[10962,10963,10964]],[[10965,6986,6987]],[[7007,6729,6732]],[[10966,7007,6732]],[[10965,10966,10967]],[[10968,10969,10963]],[[6986,10966,6732]],[[6986,10967,10966]],[[7007,10969,7006]],[[10970,10966,10969]],[[10968,10971,10960]],[[10971,7004,10961]],[[7007,10970,10969]],[[7007,10966,10970]],[[10972,10964,10965]],[[10963,10969,10966]],[[10965,10963,10966]],[[10971,10961,10960]],[[10962,10971,10963]],[[7006,10969,10968]],[[6981,10964,10972]],[[6981,10962,10964]],[[10968,10960,7006]],[[10961,7005,10960]],[[6981,10972,6987]],[[10964,10963,10965]],[[10963,10971,10968]],[[10962,7004,10971]],[[10972,10965,6987]],[[10967,6986,10965]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49387a1d-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10973,10974,10975]],[[10974,10976,10975]],[[10975,10977,10978]],[[10978,10977,10979]],[[10975,10980,10977]],[[10975,10981,10980]],[[10980,10982,10983]],[[10980,10981,10982]],[[10975,10984,10981]],[[10981,10985,10986]],[[10981,10984,10985]],[[10975,10987,10984]],[[10984,10988,10989]],[[10989,10990,10991]],[[10989,10988,10990]],[[10990,10988,10992]],[[10984,10993,10988]],[[10988,10993,10994]],[[10994,10993,10995]],[[10984,10987,10993]],[[10975,10976,10987]],[[10987,10976,10996]],[[10974,10997,10976]],[[10976,10997,10998]],[[10998,10999,11000]],[[11000,11001,11002]],[[11000,10999,11001]],[[11001,10999,11003]],[[10998,11004,10999]],[[10999,11005,11006]],[[10999,11007,11005]],[[10999,11008,11007]],[[10999,11004,11008]],[[11008,11004,11009]],[[11009,11010,11011]],[[11011,11010,11012]],[[11009,11004,11010]],[[10998,10997,11004]],[[11004,11013,11014]],[[11004,11015,11013]],[[11004,10997,11015]],[[11015,11016,11017]],[[11015,11018,11016]],[[11016,11018,11019]],[[11015,11020,11018]],[[11018,11020,11021]],[[11015,11022,11020]],[[11020,11022,11023]],[[11023,11022,11024]],[[11024,11022,11025]],[[11015,11026,11022]],[[11022,11026,11027]],[[11027,11026,11028]],[[11015,10997,11026]],[[11026,11029,11030]],[[11030,11031,11032]],[[11030,11029,11031]],[[11026,11033,11029]],[[11029,11033,11034]],[[11026,11035,11033]],[[11033,11036,11037]],[[11037,11036,11038]],[[11033,11039,11036]],[[11036,11039,11040]],[[11033,11035,11039]],[[11039,11041,11042]],[[11039,11043,11041]],[[11039,11044,11043]],[[11039,11035,11044]],[[11044,11035,11045]],[[11045,11046,11047]],[[11045,11035,11046]],[[11026,11048,11035]],[[11035,11049,11050]],[[11050,11049,11051]],[[11035,11052,11049]],[[11035,11048,11052]],[[11052,11053,11054]],[[11052,11048,11053]],[[11053,11055,11056]],[[11053,11048,11055]],[[11055,11057,11058]],[[11058,11059,11060]],[[11058,11057,11059]],[[11055,11048,11057]],[[11057,11048,11061]],[[11061,11062,11063]],[[11061,11048,11062]],[[11062,11048,11064]],[[11026,10997,11048]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4939b281-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5f4049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11065,299,11066]],[[11065,11066,11067]],[[11068,11069,11065]],[[298,299,11065]],[[11068,11065,11067]],[[11069,298,11065]],[[298,11068,11067]],[[298,11069,11068]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b69a8d7bc-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"P0028","class":"waterloop","creationdate":"2014-07-10","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.3600507750384e9faeac329b0fffe720","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:57:13.000"},"geometry":[{"boundaries":[[[11070,11071,11072]],[[11073,11070,11074]],[[11075,11076,11074]],[[11077,11075,11074]],[[11078,11077,11074]],[[11079,11078,11074]],[[11080,11079,11074]],[[11081,11082,11083]],[[11084,11085,11086]],[[11087,11088,11089]],[[11090,11091,11086]],[[11086,11092,11093]],[[11094,11090,11086]],[[11095,11096,11097]],[[11098,11095,11097]],[[11098,11099,11095]],[[11098,11100,11099]],[[11097,11101,11102]],[[11102,11101,11103]],[[11104,11105,11106]],[[11104,11107,11108]],[[11104,11109,11110]],[[11104,11108,11109]],[[11111,11104,11110]],[[11104,11112,11107]],[[11113,11114,11088]],[[11104,11115,11098]],[[11091,11084,11086]],[[11116,11117,11118]],[[11119,11118,11081]],[[11085,11120,11086]],[[11121,11081,11083]],[[11120,11122,11086]],[[11082,11080,11123]],[[11098,11102,11104]],[[11124,11086,11122]],[[11125,11086,11124]],[[11126,11086,11125]],[[11127,11086,11126]],[[11128,11086,11127]],[[11129,11130,11088]],[[11131,11123,11074]],[[11070,11072,11074]],[[11132,11133,11072]],[[11134,11135,11072]],[[11134,11072,11136]],[[11136,11072,11137]],[[11137,11072,11138]],[[11138,11072,11139]],[[11140,11138,11139]],[[11141,11140,11139]],[[11142,11141,11139]],[[11143,11142,11139]],[[11144,11143,11139]],[[11145,11144,11139]],[[11146,11145,11139]],[[11147,11146,11139]],[[11148,11147,11139]],[[11149,11148,11139]],[[11139,11072,11150]],[[11150,11072,11151]],[[11152,11150,11153]],[[11154,11152,11153]],[[11155,11156,11157]],[[11153,11150,11158]],[[11159,11160,11150]],[[11158,11150,11161]],[[11162,11163,11150]],[[11161,11150,11164]],[[11165,11166,11150]],[[11164,11150,11166]],[[11123,11080,11074]],[[11121,11083,11167]],[[11150,11163,11165]],[[11123,11083,11082]],[[11168,11169,11167]],[[11170,11171,11172]],[[11150,11160,11162]],[[11168,11171,11173]],[[11174,11175,11176]],[[11177,11156,11178]],[[11151,11179,11150]],[[11159,11150,11179]],[[11151,11072,11133]],[[11180,11132,11072]],[[11181,11180,11072]],[[11072,11182,11181]],[[11072,11183,11182]],[[11072,11184,11183]],[[11072,11185,11184]],[[11072,11071,11185]],[[11076,11073,11074]],[[11186,11187,11188]],[[11189,11190,11117]],[[11191,11192,11190]],[[11193,11194,11192]],[[11195,11196,11194]],[[11197,11198,11196]],[[11199,11200,11198]],[[11201,11202,11200]],[[11203,11204,11202]],[[11205,11089,11204]],[[11104,11111,11115]],[[11094,11086,11093]],[[11102,11098,11097]],[[11088,11130,11113]],[[11086,11103,11206]],[[11207,11129,11088]],[[11207,11208,11129]],[[11087,11207,11088]],[[11087,11209,11207]],[[11210,11211,11209]],[[11210,11212,11211]],[[11210,11213,11212]],[[11214,11213,11215]],[[11216,11214,11217]],[[11218,11216,11217]],[[11219,11218,11220]],[[11221,11219,11222]],[[11223,11221,11224]],[[11225,11223,11226]],[[11227,11225,11228]],[[11229,11227,11230]],[[11230,11227,11231]],[[11231,11227,11232]],[[11232,11227,11228]],[[11228,11225,11233]],[[11233,11225,11226]],[[11226,11223,11234]],[[11234,11223,11235]],[[11235,11223,11224]],[[11224,11221,11222]],[[11222,11219,11220]],[[11220,11218,11217]],[[11236,11220,11217]],[[11237,11236,11217]],[[11238,11237,11217]],[[11239,11238,11217]],[[11240,11239,11217]],[[11241,11240,11217]],[[11242,11241,11217]],[[11243,11242,11244]],[[11245,11243,11244]],[[11246,11245,11244]],[[11247,11246,11244]],[[11248,11247,11244]],[[11188,11248,11186]],[[11244,11186,11248]],[[11249,11250,11251]],[[11251,11186,11244]],[[11249,11251,11244]],[[11244,11242,11217]],[[11252,11253,11177]],[[11217,11214,11215]],[[11174,11254,11172]],[[11215,11213,11210]],[[11209,11087,11210]],[[11175,11253,11255]],[[11205,11256,11089]],[[11087,11089,11256]],[[11257,11258,11157]],[[11204,11259,11205]],[[11260,11261,11262]],[[11204,11263,11259]],[[11257,11261,11264]],[[11263,11204,11203]],[[11203,11202,11265]],[[11265,11202,11201]],[[11201,11200,11266]],[[11266,11200,11199]],[[11199,11198,11267]],[[11267,11198,11268]],[[11268,11198,11197]],[[11197,11196,11269]],[[11269,11196,11195]],[[11195,11194,11270]],[[11270,11194,11271]],[[11271,11194,11193]],[[11193,11192,11272]],[[11272,11192,11273]],[[11273,11192,11191]],[[11189,11274,11190]],[[11191,11190,11274]],[[11275,11189,11117]],[[11276,11275,11117]],[[11116,11276,11117]],[[11277,11278,11262]],[[11118,11279,11116]],[[11118,11280,11279]],[[11281,11282,11283]],[[11118,11119,11280]],[[11277,11282,11284]],[[11119,11081,11285]],[[11285,11081,11121]],[[11286,11287,11167]],[[11121,11167,11287]],[[11169,11286,11167]],[[11288,11289,11283]],[[11168,11290,11169]],[[11168,11291,11290]],[[11292,11293,11294]],[[11168,11173,11291]],[[11288,11293,11295]],[[11173,11171,11296]],[[11170,11297,11171]],[[11296,11171,11297]],[[11298,11170,11172]],[[11299,11300,11294]],[[11172,11301,11298]],[[11302,11303,11304]],[[11172,11254,11301]],[[11299,11303,11305]],[[11254,11174,11306]],[[11176,11307,11174]],[[11306,11174,11307]],[[11308,11176,11175]],[[11309,11302,11304]],[[11302,11310,11311]],[[11175,11312,11308]],[[11309,11310,11302]],[[11313,11255,11253]],[[11312,11175,11255]],[[11314,11313,11253]],[[11315,11316,11311]],[[11317,11318,11319]],[[11253,11252,11314]],[[11315,11318,11316]],[[11252,11177,11320]],[[11320,11177,11321]],[[11321,11177,11322]],[[11322,11177,11178]],[[11178,11156,11323]],[[11323,11156,11324]],[[11324,11156,11155]],[[11155,11157,11325]],[[11325,11157,11326]],[[11326,11157,11327]],[[11327,11157,11258]],[[11258,11257,11328]],[[11328,11257,11329]],[[11329,11257,11330]],[[11330,11257,11331]],[[11331,11257,11264]],[[11264,11261,11332]],[[11332,11261,11333]],[[11333,11261,11334]],[[11334,11261,11335]],[[11335,11261,11260]],[[11260,11262,11278]],[[11278,11277,11284]],[[11284,11282,11336]],[[11336,11282,11281]],[[11281,11283,11337]],[[11338,11339,11283]],[[11337,11283,11339]],[[11340,11338,11283]],[[11341,11340,11283]],[[11289,11341,11283]],[[11342,11289,11288]],[[11343,11342,11288]],[[11344,11343,11288]],[[11345,11344,11288]],[[11295,11345,11288]],[[11346,11295,11293]],[[11347,11346,11293]],[[11348,11347,11293]],[[11349,11348,11293]],[[11292,11349,11293]],[[11350,11292,11294]],[[11351,11350,11294]],[[11352,11351,11294]],[[11300,11352,11294]],[[11353,11300,11299]],[[11354,11353,11299]],[[11355,11354,11299]],[[11305,11355,11299]],[[11356,11305,11303]],[[11357,11356,11303]],[[11302,11357,11303]],[[11316,11302,11311]],[[11106,11105,11319]],[[11318,11358,11316]],[[11318,11359,11358]],[[11318,11360,11359]],[[11318,11361,11360]],[[11318,11362,11361]],[[11106,11112,11104]],[[11362,11318,11363]],[[11363,11318,11364]],[[11364,11318,11365]],[[11365,11318,11366]],[[11366,11318,11367]],[[11367,11318,11368]],[[11368,11318,11369]],[[11369,11318,11370]],[[11370,11318,11371]],[[11371,11318,11372]],[[11372,11318,11317]],[[11317,11319,11373]],[[11373,11319,11105]],[[11092,11086,11206]],[[11102,11103,11086]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"b80066d8d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11374,11375,11376]],[[11374,11376,11377]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b8009a157-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0bbe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11378,11379,11380]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b82575848-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2014-07-10","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.a6c08b19180041c1972275ff0fc7c5ce","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[4137,4135,11381]],[[4135,4133,11382]],[[4346,11383,4349]],[[11384,4097,11385]],[[11385,4090,11386]],[[11386,4090,4079]],[[11387,11388,3990]],[[11389,3976,11390]],[[11391,11392,11393]],[[11394,11395,11396]],[[11397,4003,11398]],[[11399,11364,11400]],[[11399,11401,11364]],[[11402,11403,11363]],[[11402,11404,11403]],[[11405,11406,11404]],[[11407,11408,11406]],[[3972,11358,11408]],[[11409,4349,11410]],[[11411,11409,11412]],[[11413,11409,11414]],[[11415,11412,11409]],[[11416,11409,11417]],[[11418,11414,11409]],[[11416,11418,11409]],[[11409,11419,11420]],[[11409,11421,11419]],[[11409,11422,11421]],[[11409,11423,11422]],[[11409,11410,11423]],[[4349,11424,11410]],[[4349,11425,11424]],[[4349,11426,11425]],[[4349,11427,11426]],[[4349,11428,11427]],[[4349,11429,11428]],[[4349,11430,11429]],[[4349,11431,11430]],[[4349,11432,11431]],[[4349,11433,11432]],[[4349,11434,11433]],[[4349,11435,11434]],[[4349,11436,11435]],[[4349,11437,11436]],[[4349,11438,11437]],[[4349,11439,11438]],[[11440,4097,11384]],[[4346,11441,11383]],[[11442,11316,11358]],[[4798,11441,4345]],[[11443,4762,11409]],[[4345,11441,4346]],[[11417,11409,11420]],[[11383,11439,4349]],[[11390,11444,11389]],[[11445,11446,11447]],[[4762,11302,11448]],[[11398,4003,11449]],[[11444,4762,11448]],[[11450,3989,11392]],[[11450,11451,3989]],[[3974,11358,3972]],[[11452,11402,11363]],[[11453,3989,11454]],[[11392,11391,11455]],[[11456,3990,11388]],[[11457,3982,3981]],[[11458,11457,3981]],[[11459,11460,3964]],[[11461,4010,3982]],[[11462,11463,4010]],[[11464,11465,11466]],[[11467,4010,11468]],[[11468,4010,11469]],[[11385,4097,4090]],[[4133,4097,11440]],[[11382,4133,11440]],[[11381,4135,11382]],[[11470,3954,11381]],[[11381,3954,4137]],[[11470,11471,3959]],[[3954,11470,3959]],[[11472,11454,3989]],[[11388,11447,11456]],[[11393,11395,11394]],[[4003,11397,11395]],[[11402,11452,11404]],[[11473,11407,11405]],[[11474,11475,4010]],[[11467,11476,11477]],[[11478,11479,4010]],[[11480,11481,11479]],[[11482,11483,11461]],[[11480,11479,11483]],[[11405,11407,11406]],[[11484,11408,11407]],[[11479,11481,4010]],[[11462,11485,11463]],[[11460,11486,11487]],[[11487,4079,11460]],[[11480,11463,11485]],[[11480,11488,11463]],[[11451,11388,11454]],[[11451,11447,11388]],[[11302,11443,11411]],[[11489,4762,11443]],[[11490,11491,3981]],[[11492,11490,3990]],[[11473,11484,11407]],[[3972,11408,11484]],[[11493,11477,11488]],[[11465,11494,3964]],[[11446,11456,11447]],[[11446,3990,11456]],[[11455,11450,11392]],[[11455,11451,11450]],[[3975,4762,11390]],[[11302,11316,11448]],[[11451,11472,3989]],[[11451,11454,11472]],[[11476,11495,11488]],[[11463,11488,11495]],[[11482,11457,11317]],[[11496,3982,11457]],[[11401,11452,11363]],[[11452,11405,11404]],[[11302,11489,11443]],[[11302,4762,11489]],[[11398,11449,11400]],[[4003,11401,11449]],[[11494,11459,3964]],[[11386,11486,11459]],[[11480,11475,11474]],[[11480,11485,11475]],[[11497,11493,11498]],[[11466,4010,11467]],[[11499,11461,3982]],[[11478,4010,11461]],[[11396,11397,11398]],[[11396,11395,11397]],[[3975,11390,3976]],[[11500,11316,3974]],[[11480,11482,11317]],[[11480,11483,11482]],[[11388,11501,11454]],[[11502,3989,11503]],[[3981,11491,11317]],[[11492,3990,11446]],[[11445,11504,11490]],[[11504,11491,11505]],[[11317,11504,11447]],[[11317,11491,11504]],[[11463,11469,4010]],[[11463,11495,11469]],[[11504,11445,11447]],[[11504,11505,11490]],[[11482,11496,11457]],[[11482,11499,11496]],[[11413,11414,11418]],[[11413,11415,11409]],[[3964,11460,4079]],[[11459,11486,11460]],[[11364,11401,11363]],[[4003,3972,11452]],[[4003,11452,11401]],[[3972,11473,11452]],[[11483,11478,11461]],[[11483,11479,11478]],[[11491,11490,11505]],[[3981,3990,11490]],[[11386,11494,11493]],[[11386,11459,11494]],[[11449,11399,11400]],[[11449,11401,11399]],[[11443,11409,11411]],[[4762,4349,11409]],[[11506,11453,11454]],[[11503,3989,11453]],[[11493,11507,11477]],[[11498,11508,11466]],[[11481,11474,4010]],[[11481,11480,11474]],[[11387,11501,11388]],[[11503,11506,11501]],[[11493,11509,11508]],[[11493,11494,11509]],[[11509,11464,11466]],[[11509,11494,11464]],[[11466,11465,3964]],[[11464,11494,11465]],[[4762,11444,11390]],[[11448,11316,11500]],[[11444,11500,11389]],[[11444,11448,11500]],[[3974,11389,11500]],[[3974,3976,11389]],[[11501,11506,11454]],[[11503,11453,11506]],[[11317,11458,3981]],[[11317,11457,11458]],[[11496,11499,3982]],[[11482,11461,11499]],[[11502,11387,3990]],[[11502,11501,11387]],[[11495,11468,11469]],[[11477,11507,11467]],[[11476,11467,11468]],[[11508,11509,11466]],[[11495,11476,11468]],[[11488,11477,11476]],[[11497,11466,11467]],[[3964,4010,11466]],[[11497,11498,11466]],[[11493,11508,11498]],[[11507,11497,11467]],[[11507,11493,11497]],[[11386,11487,11486]],[[11386,4079,11487]],[[4003,11392,3989]],[[4003,11395,11392]],[[11391,11393,11394]],[[11392,11395,11393]],[[11445,11492,11446]],[[11445,11490,11492]],[[11452,11473,11405]],[[3972,11484,11473]],[[3974,11442,11358]],[[3974,11316,11442]],[[3989,11502,3990]],[[11503,11501,11502]],[[11475,11462,4010]],[[11475,11485,11462]],[[11102,11086,11386]],[[11386,11086,11385]],[[11104,11102,11493]],[[11493,11102,11386]],[[11105,11104,11488]],[[11488,11104,11493]],[[11373,11105,11480]],[[11480,11105,11488]],[[11317,11373,11480]],[[11372,11317,11447]],[[11371,11372,11451]],[[11451,11372,11447]],[[11370,11371,11455]],[[11455,11371,11451]],[[11369,11370,11391]],[[11391,11370,11455]],[[11368,11369,11394]],[[11394,11369,11391]],[[11367,11368,11396]],[[11396,11368,11394]],[[11366,11367,11398]],[[11398,11367,11396]],[[11365,11366,11400]],[[11400,11366,11398]],[[11364,11365,11400]],[[11362,11363,11403]],[[11361,11362,11404]],[[11404,11362,11403]],[[11360,11361,11406]],[[11406,11361,11404]],[[11359,11360,11408]],[[11408,11360,11406]],[[11358,11359,11408]],[[11357,11302,11411]],[[11356,11357,11412]],[[11412,11357,11411]],[[11305,11356,11415]],[[11415,11356,11412]],[[11355,11305,11413]],[[11413,11305,11415]],[[11354,11355,11418]],[[11418,11355,11413]],[[11353,11354,11416]],[[11416,11354,11418]],[[11300,11353,11417]],[[11417,11353,11416]],[[11352,11300,11420]],[[11420,11300,11417]],[[11351,11352,11419]],[[11419,11352,11420]],[[11350,11351,11421]],[[11421,11351,11419]],[[11292,11350,11422]],[[11422,11350,11421]],[[11349,11292,11423]],[[11423,11292,11422]],[[11348,11349,11410]],[[11410,11349,11423]],[[11347,11348,11424]],[[11424,11348,11410]],[[11346,11347,11425]],[[11425,11347,11424]],[[11295,11346,11426]],[[11426,11346,11425]],[[11345,11295,11427]],[[11427,11295,11426]],[[11344,11345,11428]],[[11428,11345,11427]],[[11343,11344,11429]],[[11429,11344,11428]],[[11342,11343,11430]],[[11430,11343,11429]],[[11289,11342,11431]],[[11431,11342,11430]],[[11341,11289,11432]],[[11432,11289,11431]],[[11340,11341,11433]],[[11433,11341,11432]],[[11338,11340,11434]],[[11434,11340,11433]],[[11339,11338,11435]],[[11435,11338,11434]],[[11337,11339,11436]],[[11436,11339,11435]],[[11281,11337,11437]],[[11437,11337,11436]],[[11336,11281,11438]],[[11438,11281,11437]],[[11284,11336,11439]],[[11439,11336,11438]],[[11278,11284,11383]],[[11383,11284,11439]],[[11260,11278,11441]],[[11441,11278,11383]],[[4798,11260,11441]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b8257ccdc-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.5b05c66e86d84678906e0e603c4ba008","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11510,11511,11512]],[[11513,11514,11510]],[[11515,11513,11510]],[[11515,11516,11517]],[[11515,11517,11518]],[[11513,11519,11514]],[[11518,11513,11515]],[[11519,11511,11514]],[[11518,11519,11513]],[[11518,11511,11519]],[[11520,11515,11512]],[[11514,11511,11510]],[[11512,11515,11510]],[[11520,11516,11515]],[[11521,11522,11511]],[[11511,11522,11512]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b82590617-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.2b508589ce3a4bf5a6633db491f5383d","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11523,11524,11217]],[[11210,11087,5526]],[[5524,11210,5840]],[[5840,11210,5527]],[[5527,11210,5526]],[[5526,11087,5525]],[[11205,11259,5646]],[[11203,11265,5508]],[[11266,11199,5507]],[[11267,11268,5507]],[[11197,11269,5506]],[[11195,11270,5503]],[[11270,11271,5503]],[[11271,11193,5504]],[[11273,11191,5501]],[[11191,11274,5501]],[[11274,11189,5473]],[[11275,11276,5474]],[[11116,11279,5496]],[[11279,11280,5496]],[[11119,11285,5495]],[[11285,11121,5495]],[[11287,11286,5493]],[[11169,11290,5441]],[[11290,11291,5442]],[[11173,11296,5443]],[[11297,11170,5492]],[[11301,11254,5445]],[[11254,11306,5445]],[[11307,11176,5490]],[[11308,11312,5448]],[[11312,11255,5448]],[[11313,11314,5449]],[[11314,11252,5451]],[[11320,11321,5452]],[[11321,11322,5452]],[[11178,11323,5453]],[[11323,11324,5453]],[[11324,11155,5453]],[[11155,11325,5454]],[[11325,11326,5454]],[[11326,11327,5454]],[[5449,11314,5451]],[[11264,11332,5458]],[[11333,11334,5460]],[[11334,11335,5460]],[[5454,11327,5456]],[[5456,11328,5457]],[[5457,11331,5458]],[[5458,11333,5460]],[[11335,11260,5464]],[[5462,11335,5463]],[[5463,11335,5464]],[[5464,11260,5466]],[[11260,4347,4799]],[[5467,11260,4799]],[[11260,4798,4347]],[[5466,11260,5467]],[[5460,11335,5462]],[[5453,11155,5454]],[[11332,11333,5458]],[[5452,11322,5453]],[[11331,11264,5458]],[[11330,11331,5457]],[[11329,11330,5457]],[[11328,11329,5457]],[[11258,11328,5456]],[[11327,11258,5456]],[[5451,11252,5452]],[[5448,11255,5449]],[[5490,11308,5448]],[[5491,11307,5490]],[[5445,11306,5491]],[[5447,11301,5445]],[[11322,11178,5453]],[[5492,11298,5447]],[[5444,11297,5492]],[[11252,11320,5452]],[[5443,11296,5444]],[[5442,11291,5443]],[[11255,11313,5449]],[[5441,11290,5442]],[[5493,11169,5441]],[[11176,11308,5490]],[[5494,11287,5493]],[[11306,11307,5491]],[[5495,11121,5494]],[[5489,11119,5495]],[[11298,11301,5447]],[[11170,11298,5492]],[[5496,11280,5489]],[[11296,11297,5444]],[[5500,11116,5496]],[[11291,11173,5443]],[[5474,11276,5500]],[[5473,11189,5474]],[[11286,11169,5493]],[[5501,11274,5473]],[[11121,11287,5494]],[[5502,11273,5501]],[[5504,11272,5502]],[[11280,11119,5489]],[[5503,11271,5504]],[[5506,11195,5503]],[[11276,11116,5500]],[[5507,11268,5506]],[[11189,11275,5474]],[[5508,11266,5507]],[[5509,11203,5508]],[[5646,11259,5509]],[[11272,11273,5502]],[[11193,11272,5504]],[[5513,11256,5646]],[[5514,11256,5513]],[[5515,11256,5514]],[[11269,11195,5506]],[[5517,11087,5515]],[[11268,11197,5506]],[[5520,11087,5517]],[[11199,11267,5507]],[[5521,11087,5520]],[[11201,11266,5508]],[[11265,11201,5508]],[[5522,11087,5521]],[[11263,11203,5509]],[[11259,11263,5509]],[[5523,11087,5522]],[[11256,11205,5646]],[[11087,11256,5515]],[[5525,11087,5523]],[[5487,11210,5524]],[[11210,5487,11215]],[[11215,11523,11217]],[[5487,11523,11215]],[[11525,5486,11217]],[[5487,11524,11523]],[[5487,5486,11524]],[[11524,11525,11217]],[[11524,5486,11525]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b825a1738-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.53dd2a24d1a34833a084928458e10f8f","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11526,11527,5272]],[[11528,11529,11244]],[[11528,11527,11529]],[[4891,5272,11528]],[[5272,11527,11528]],[[4891,11528,11244]],[[11530,11527,11526]],[[4945,11526,5272]],[[4945,11530,11526]],[[11249,11244,11529]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b86c25248-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11531,11532,11533]],[[11531,11534,11532]],[[11531,2857,2858]],[[11531,2858,2947]],[[11535,11536,11537]],[[11536,11535,2947]],[[11538,11537,11536]],[[11539,11540,11541]],[[11541,11538,11536]],[[11542,11540,11539]],[[11543,11542,11539]],[[11544,11545,11546]],[[11545,11547,11546]],[[11548,11544,11546]],[[11549,11550,11551]],[[11539,11547,11543]],[[11552,11550,11553]],[[11553,11550,11554]],[[11531,2825,2857]],[[11554,11549,11555]],[[11556,11555,11557]],[[11558,11556,11557]],[[11535,11534,2947]],[[11531,2947,11534]],[[11559,11560,11561]],[[11562,11559,11561]],[[11546,11547,11539]],[[11541,11536,11539]],[[11563,11564,11565]],[[11566,11563,11565]],[[11551,11548,11546]],[[11567,11568,11569]],[[11551,11546,11549]],[[11569,11568,11570]],[[8159,11570,2911]],[[11554,11550,11549]],[[11549,11557,11555]],[[11549,11560,11557]],[[11549,11561,11560]],[[11549,2911,11561]],[[11561,2911,11564]],[[11564,2911,11565]],[[11565,2911,11568]],[[11568,2911,11570]],[[183,2857,2825]],[[184,2857,183]],[[11571,2825,11531]],[[11572,11571,11533]],[[11533,11571,11531]],[[11573,11572,11532]],[[11532,11572,11533]],[[11574,11573,11534]],[[11534,11573,11532]],[[11575,11574,11535]],[[11535,11574,11534]],[[11576,11575,11537]],[[11537,11575,11535]],[[11577,11576,11538]],[[11538,11576,11537]],[[11578,11577,11541]],[[11541,11577,11538]],[[11579,11578,11540]],[[11540,11578,11541]],[[11580,11579,11542]],[[11542,11579,11540]],[[11581,11580,11543]],[[11543,11580,11542]],[[11582,11581,11547]],[[11547,11581,11543]],[[11583,11582,11545]],[[11545,11582,11547]],[[11584,11583,11544]],[[11544,11583,11545]],[[11585,11584,11548]],[[11548,11584,11544]],[[11586,11585,11551]],[[11551,11585,11548]],[[11587,11586,11550]],[[11550,11586,11551]],[[11588,11587,11552]],[[11552,11587,11550]],[[11589,11588,11553]],[[11553,11588,11552]],[[11590,11589,11554]],[[11554,11589,11553]],[[11591,11590,11555]],[[11555,11590,11554]],[[11592,11591,11556]],[[11556,11591,11555]],[[11593,11592,11558]],[[11558,11592,11556]],[[11594,11593,11557]],[[11557,11593,11558]],[[11595,11594,11560]],[[11560,11594,11557]],[[11596,11595,11559]],[[11559,11595,11560]],[[11597,11596,11562]],[[11562,11596,11559]],[[11598,11597,11561]],[[11561,11597,11562]],[[11599,11598,11564]],[[11564,11598,11561]],[[11600,11599,11563]],[[11563,11599,11564]],[[11601,11600,11566]],[[11566,11600,11563]],[[11602,11601,11565]],[[11565,11601,11566]],[[11603,11602,11568]],[[11568,11602,11565]],[[11604,11603,11567]],[[11567,11603,11568]],[[11605,11604,11569]],[[11569,11604,11567]],[[11606,11605,11570]],[[11570,11605,11569]],[[8159,11606,11570]],[[2936,2911,11549]],[[2959,2936,11546]],[[11546,2936,11549]],[[2958,2959,11539]],[[11539,2959,11546]],[[2910,2958,11536]],[[11536,2958,11539]],[[2947,2910,11536]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c2a086-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7968,8543,1280]],[[8543,1315,1280]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c538a4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11607,11608,11609]],[[11607,7803,1354]],[[11608,11607,1354]],[[11610,7803,11607]],[[1354,1688,11608]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5adfd-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0875b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11611,11612,11613]],[[11611,11614,11612]],[[11611,212,2815]],[[11614,11611,11615]],[[11615,11611,2815]],[[2815,212,213]],[[11616,212,11611]],[[11617,11616,11613]],[[11613,11616,11611]],[[11618,11617,11612]],[[11612,11617,11613]],[[11619,11618,11614]],[[11614,11618,11612]],[[11620,11619,11615]],[[11615,11619,11614]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5ae06-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08da749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11067,297,298]],[[11067,10615,297]],[[11067,11066,11621]],[[10615,11067,11621]],[[11622,10615,11621]],[[11066,11622,11621]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5d51d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[477,557,476]],[[557,558,476]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c89463-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10683,10682,10662]],[[10683,10662,11623]],[[11623,11624,11625]],[[11625,11624,10678]],[[11624,11626,11627]],[[11627,11626,11628]],[[11624,11623,11626]],[[10662,10682,7252]],[[10662,11626,11623]],[[10675,10663,10017]],[[10663,7244,10017]],[[10663,10662,7252]],[[10663,7252,7244]],[[10687,10683,11623]],[[10691,10687,11625]],[[11625,10687,11623]],[[10678,10691,11625]],[[10672,10678,11624]],[[10673,10672,11627]],[[11627,10672,11624]],[[10671,10673,11628]],[[11628,10673,11627]],[[10670,10671,11626]],[[11626,10671,11628]],[[10662,10670,11626]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b8e220996-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11629,11630,11631]],[[11632,1831,1827]],[[8174,1831,11633]],[[11634,8174,8175]],[[1825,11634,8175]],[[11635,11633,11636]],[[8174,11635,8173]],[[11636,10005,8173]],[[11636,11637,10005]],[[11638,11639,11637]],[[8174,11633,11635]],[[11640,11637,11636]],[[11635,11636,8173]],[[11640,1831,11638]],[[11633,11640,11636]],[[11633,1831,11640]],[[11640,11638,11637]],[[11639,10005,11637]],[[11632,11641,11642]],[[11643,10005,1831]],[[1831,11634,1825]],[[1831,8174,11634]],[[11644,11630,11629]],[[11641,10005,11630]],[[11643,11631,10005]],[[11630,10005,11631]],[[11644,11642,11641]],[[11632,11645,11641]],[[11646,11644,11629]],[[11632,11642,11644]],[[1831,11639,11638]],[[1831,10005,11639]],[[11632,11643,1831]],[[11646,11631,11643]],[[11644,11641,11630]],[[11645,10005,11641]],[[11646,11632,11644]],[[1827,11645,11632]],[[11631,11646,11629]],[[11643,11632,11646]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e220999-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11647,11648,11649]],[[11650,11651,11652]],[[11653,3117,11651]],[[11651,11654,11655]],[[11656,11652,11655]],[[11653,3162,3117]],[[11647,11649,11657]],[[11656,11650,11652]],[[11653,3160,3162]],[[11650,11658,11651]],[[11659,11660,11661]],[[11656,11655,11654]],[[11652,11662,11655]],[[11656,11647,11657]],[[11656,11661,11647]],[[3161,11656,11657]],[[3161,11650,11656]],[[11648,11661,11660]],[[11651,11662,11652]],[[3161,11663,11650]],[[11664,3160,11653]],[[11663,11658,11650]],[[3117,11660,11659]],[[11663,11665,11658]],[[11664,3161,3160]],[[11656,11654,11661]],[[11651,3117,11659]],[[11661,11654,11659]],[[11655,11662,11651]],[[11653,11651,11658]],[[11659,11654,11651]],[[11649,11648,11660]],[[11647,11661,11648]],[[11665,11653,11658]],[[11665,11664,11653]],[[11663,11664,11665]],[[11663,3161,11664]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2209a5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11666,11667,11668]],[[11669,11667,11666]],[[11670,11669,11666]],[[11671,11670,11666]],[[11672,11671,11666]],[[11673,11672,11666]],[[11674,11673,11666]],[[11675,11674,11666]],[[11676,11675,11666]],[[11677,11676,11666]],[[11678,11677,11666]],[[11679,11678,11666]],[[11680,11679,11666]],[[11681,11666,11682]],[[11682,11666,11683]],[[11683,11666,11684]],[[11684,11666,11685]],[[11685,11666,11686]],[[11686,11666,11687]],[[11687,11666,11688]],[[11688,11666,11689]],[[11689,11666,11690]],[[11690,11666,11691]],[[11691,11666,11692]],[[11692,11666,11693]],[[11693,11666,11694]],[[11694,11666,11695]],[[11695,11666,11696]],[[11696,11666,11697]],[[11697,11666,11698]],[[11698,11666,11699]],[[11699,11666,11700]],[[11700,11666,11701]],[[11701,11666,11702]],[[11702,11666,11703]],[[11703,11666,11704]],[[11704,11666,11705]],[[11705,11666,11706]],[[11706,11666,11707]],[[11707,11666,11708]],[[11708,11666,11709]],[[11709,11666,11710]],[[11710,11666,11711]],[[11711,11666,11712]],[[11712,11666,11713]],[[11713,11666,11714]],[[11666,11715,11716]],[[11666,11717,11715]],[[11666,11718,11717]],[[11666,11719,11718]],[[11666,11720,11719]],[[11666,11721,11720]],[[11666,11722,11721]],[[11666,11723,11722]],[[11666,11724,11723]],[[11666,11725,11724]],[[11666,11726,11725]],[[11666,11727,11726]],[[11666,11728,11727]],[[11666,11729,11728]],[[11666,11730,11729]],[[11666,11731,11730]],[[11666,11732,11731]],[[11666,11733,11732]],[[11666,11734,11733]],[[11666,11735,11734]],[[11666,11736,11735]],[[11666,11737,11736]],[[11666,11738,11737]],[[11666,11739,11738]],[[11666,11740,11739]],[[11666,11741,11740]],[[11666,11742,11741]],[[11666,11743,11742]],[[11666,11744,11743]],[[11666,11745,11744]],[[11666,11746,11745]],[[11666,11747,11746]],[[11666,11748,11747]],[[11666,11749,11748]],[[11666,11750,11749]],[[11666,11751,11750]],[[11666,11752,11751]],[[11666,11753,11752]],[[11666,11754,11753]],[[11666,11755,11754]],[[11666,11756,11755]],[[11666,11757,11756]],[[11666,11758,11757]],[[11666,11668,11758]],[[11714,11666,11716]],[[11681,11680,11666]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e22f3bc-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11759,11760,11761]],[[11762,11763,11764]],[[11764,11763,11759]],[[11762,11760,11759]],[[11765,11762,11766]],[[11765,11760,11762]],[[11764,11759,11761]],[[11763,11762,11759]],[[11766,11764,11761]],[[11766,11762,11764]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e23693d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11767,11768,11769]],[[11770,11771,11772]],[[11773,11774,11775]],[[11776,11777,11767]],[[11778,11773,11779]],[[11774,11780,11781]],[[11782,11783,11774]],[[11784,11769,11785]],[[11774,11783,11780]],[[11786,11782,11787]],[[11788,11789,11780]],[[11788,11783,11786]],[[11771,11781,11790]],[[11784,11791,11769]],[[11779,11792,11772]],[[11775,11781,11770]],[[11777,11768,11767]],[[11793,11769,11768]],[[11794,11767,11791]],[[11790,11789,11776]],[[11784,11790,11794]],[[11767,11769,11791]],[[11780,11790,11781]],[[11780,11789,11790]],[[11790,11776,11767]],[[11789,11788,11786]],[[11789,11777,11776]],[[11786,11768,11777]],[[11780,11783,11788]],[[11787,11773,11778]],[[11771,11790,11784]],[[11790,11767,11794]],[[11793,11778,11779]],[[11782,11786,11783]],[[11773,11787,11774]],[[11787,11793,11786]],[[11774,11787,11782]],[[11778,11793,11787]],[[11779,11775,11792]],[[11774,11781,11775]],[[11792,11770,11772]],[[11792,11775,11770]],[[11793,11779,11772]],[[11773,11775,11779]],[[11771,11784,11785]],[[11794,11791,11784]],[[11789,11786,11777]],[[11793,11768,11786]],[[11772,11771,11785]],[[11770,11781,11771]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e23ddc7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ad49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11795,11796,11797]],[[11798,11799,11800]],[[11801,11802,11798]],[[11800,11801,11798]],[[11803,11795,11804]],[[11796,11805,11797]],[[11804,11797,11801]],[[11805,11802,11801]],[[11804,11801,11800]],[[11797,11805,11801]],[[11803,11804,11800]],[[11795,11797,11804]],[[11803,11796,11795]],[[11806,11805,11796]],[[11806,11803,11800]],[[11806,11796,11803]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e24c8ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ab49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11807,11808,11809]],[[11810,11811,11812]],[[11810,11813,11811]],[[11814,11808,11815]],[[11816,11807,11809]],[[11815,11808,11807]],[[11812,11811,11807]],[[11817,11807,11811]],[[11809,11818,11819]],[[11820,11814,11817]],[[11816,11812,11807]],[[11821,11822,11810]],[[11811,11813,11817]],[[11823,11814,11820]],[[11824,11823,11825]],[[11813,11820,11817]],[[11821,11825,11822]],[[11818,11826,11823]],[[11822,11813,11810]],[[11823,11820,11813]],[[11822,11823,11813]],[[11826,11814,11823]],[[11824,11827,11823]],[[11824,11819,11827]],[[11812,11821,11810]],[[11825,11823,11822]],[[11826,11818,11809]],[[11821,11812,11816]],[[11824,11825,11816]],[[11816,11825,11821]],[[11819,11816,11809]],[[11819,11824,11816]],[[11817,11815,11807]],[[11817,11814,11815]],[[11827,11818,11823]],[[11827,11819,11818]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e253d86-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11828,11829,11830]],[[11831,11832,11833]],[[11834,11835,11831]],[[11836,11837,11838]],[[11839,11840,11841]],[[11839,11842,11831]],[[11831,11842,11832]],[[11843,11844,11845]],[[11846,11847,11848]],[[11842,11839,11841]],[[11828,11849,11850]],[[11839,11831,11840]],[[11832,11851,11849]],[[11842,11841,11851]],[[11828,11850,11852]],[[11853,11841,11848]],[[11849,11853,11850]],[[11851,11841,11853]],[[11833,11834,11831]],[[11845,11854,11855]],[[11847,11853,11848]],[[11856,11831,11835]],[[11828,11857,11858]],[[11859,11860,11861]],[[11862,11836,11838]],[[11847,11850,11853]],[[11863,11852,11864]],[[11848,11841,11846]],[[11860,11864,11847]],[[11857,11828,11852]],[[11833,11865,11834]],[[11840,11866,11841]],[[11834,11865,11835]],[[11866,11867,11841]],[[11856,11865,11868]],[[11865,11855,11869]],[[11841,11867,11846]],[[11866,11870,11854]],[[11871,11859,11872]],[[11843,11855,11829]],[[11873,11870,11866]],[[11870,11855,11854]],[[11863,11859,11871]],[[11872,11837,11871]],[[11836,11871,11837]],[[11836,11852,11863]],[[11873,11868,11870]],[[11869,11855,11870]],[[11867,11860,11846]],[[11867,11861,11860]],[[11858,11862,11829]],[[11858,11836,11862]],[[11865,11856,11835]],[[11840,11831,11856]],[[11847,11864,11852]],[[11860,11859,11864]],[[11859,11863,11864]],[[11871,11836,11863]],[[11833,11832,11830]],[[11842,11851,11832]],[[11861,11854,11845]],[[11861,11866,11854]],[[11872,11844,11837]],[[11874,11845,11844]],[[11862,11838,11843]],[[11837,11844,11843]],[[11849,11828,11830]],[[11858,11829,11828]],[[11832,11849,11830]],[[11851,11853,11849]],[[11856,11868,11840]],[[11869,11870,11868]],[[11840,11873,11866]],[[11840,11868,11873]],[[11872,11874,11844]],[[11872,11859,11861]],[[11872,11861,11874]],[[11867,11866,11861]],[[11843,11845,11855]],[[11874,11861,11845]],[[11868,11865,11869]],[[11833,11855,11865]],[[11862,11843,11829]],[[11838,11837,11843]],[[11860,11847,11846]],[[11852,11850,11847]],[[11836,11857,11852]],[[11836,11858,11857]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e26eb7a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11875,11876,11877]],[[11878,11877,11879]],[[11880,11881,11882]],[[11881,11876,11883]],[[11879,11884,11885]],[[11886,11876,11881]],[[11878,11883,11877]],[[11882,11881,11883]],[[11887,11884,11879]],[[11887,11886,11885]],[[11880,11885,11881]],[[11884,11887,11885]],[[11878,11880,11882]],[[11879,11885,11880]],[[11885,11886,11881]],[[11887,11876,11886]],[[11880,11878,11879]],[[11882,11883,11878]],[[11883,11875,11877]],[[11883,11876,11875]],[[11888,11876,11887]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2823ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11889,11890,11891]],[[11892,11890,11889]],[[11892,11893,11894]],[[11895,11896,11897]],[[11898,11892,11889]],[[11899,11900,11901]],[[11891,11890,11902]],[[11892,11894,11890]],[[11894,11902,11890]],[[11895,11903,11896]],[[11894,11895,11902]],[[11893,11892,11898]],[[11893,11903,11895]],[[11897,11904,11905]],[[11906,11889,11907]],[[11906,11898,11889]],[[11908,11896,11903]],[[11909,11900,11910]],[[11908,11898,11906]],[[11908,11903,11898]],[[11889,11891,11905]],[[11902,11895,11897]],[[11902,11897,11891]],[[11910,11900,11899]],[[11889,11905,11907]],[[11911,11897,11905]],[[11896,11909,11897]],[[11896,11908,11909]],[[11894,11893,11895]],[[11898,11903,11893]],[[11897,11909,11904]],[[11908,11900,11909]],[[11891,11911,11905]],[[11891,11897,11911]],[[11907,11899,11901]],[[11905,11904,11910]],[[11905,11910,11899]],[[11904,11909,11910]],[[11906,11907,11901]],[[11905,11899,11907]],[[11912,11900,11908]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e28998c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11913,11914,11915]],[[11916,11917,11918]],[[11919,11920,11921]],[[11922,11923,11924]],[[11925,11926,11927]],[[11924,11914,11927]],[[11928,11929,11930]],[[11931,11915,11932]],[[11933,11934,11935]],[[11926,11922,11936]],[[11935,11934,11937]],[[11938,11939,11940]],[[11918,11917,11927]],[[11916,11937,11941]],[[11936,11922,11924]],[[11923,11926,11942]],[[11928,11930,11939]],[[11915,11914,11932]],[[11921,11920,11943]],[[11933,11914,11944]],[[11920,11919,11945]],[[11945,11946,11920]],[[11919,11947,11945]],[[11913,11944,11914]],[[11948,11949,11946]],[[11949,11944,11950]],[[11927,11926,11936]],[[11951,11941,11929]],[[11952,11953,11915]],[[11913,11950,11944]],[[11931,11952,11915]],[[11943,11920,11950]],[[11922,11926,11923]],[[11926,11925,11942]],[[11946,11950,11920]],[[11949,11933,11944]],[[11946,11949,11950]],[[11954,11934,11933]],[[11936,11924,11927]],[[11932,11914,11924]],[[11917,11925,11927]],[[11941,11937,11929]],[[11934,11919,11955]],[[11938,11940,11932]],[[11955,11919,11939]],[[11952,11931,11940]],[[11923,11928,11938]],[[11929,11937,11934]],[[11923,11929,11928]],[[11951,11925,11941]],[[11953,11913,11915]],[[11953,11921,11913]],[[11913,11943,11950]],[[11913,11921,11943]],[[11924,11923,11932]],[[11942,11951,11923]],[[11946,11947,11948]],[[11946,11945,11947]],[[11934,11948,11947]],[[11954,11949,11948]],[[11940,11931,11932]],[[11940,11939,11952]],[[11952,11919,11921]],[[11956,11930,11929]],[[11919,11952,11939]],[[11921,11953,11952]],[[11923,11938,11932]],[[11928,11939,11938]],[[11929,11934,11956]],[[11956,11934,11955]],[[11923,11951,11929]],[[11942,11925,11951]],[[11919,11934,11947]],[[11937,11916,11935]],[[11918,11935,11916]],[[11918,11933,11935]],[[11934,11954,11948]],[[11933,11949,11954]],[[11917,11941,11925]],[[11917,11916,11941]],[[11939,11956,11955]],[[11939,11930,11956]],[[11957,11918,11927]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e290e1c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3056,11645,1788]],[[3056,3089,3057]],[[3056,3088,3089]],[[3056,1788,3088]],[[3088,3085,3087]],[[3087,3085,3086]],[[3088,3070,3085]],[[3085,3070,3084]],[[3084,3083,3082]],[[3084,3070,3083]],[[3083,3070,3081]],[[3088,1788,3070]],[[3070,3075,3072]],[[3070,3078,3075]],[[3070,1788,3078]],[[3078,1788,3058]],[[3058,1788,3059]],[[11645,1827,1788]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e29d205-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11958,11959,11960]],[[11961,11962,11963]],[[11964,11965,11966]],[[11967,11968,11969]],[[11969,11970,11971]],[[11972,11973,11959]],[[11969,11968,11974]],[[11975,11959,11976]],[[11972,11977,11978]],[[11967,11963,11962]],[[11979,11971,11958]],[[11970,11980,11981]],[[11970,11965,11964]],[[11981,11982,11975]],[[11983,11984,11985]],[[11984,11967,11969]],[[11970,11969,11974]],[[11967,11962,11968]],[[11970,11974,11980]],[[11968,11962,11974]],[[11964,11966,11958]],[[11976,11959,11958]],[[11973,11961,11963]],[[11973,11978,11961]],[[11985,11984,11969]],[[11983,11967,11984]],[[11965,11981,11966]],[[11981,11980,11982]],[[11979,11958,11960]],[[11966,11976,11958]],[[11985,11979,11960]],[[11971,11964,11958]],[[11977,11962,11978]],[[11962,11961,11978]],[[11969,11971,11979]],[[11970,11964,11971]],[[11977,11972,11982]],[[11978,11973,11972]],[[11966,11981,11976]],[[11965,11970,11981]],[[11979,11985,11969]],[[11960,11983,11985]],[[11975,11972,11959]],[[11982,11980,11977]],[[11981,11975,11976]],[[11982,11972,11975]],[[11974,11977,11980]],[[11974,11962,11977]],[[11986,11959,11973]],[[11987,11988,11960]],[[11960,11988,11983]],[[11959,11987,11960]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2a94ee-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11989,10140,10249]],[[10280,10140,11989]],[[10175,10280,11989]],[[10173,10175,11989]],[[10277,10173,11989]],[[11990,10277,11989]],[[11990,10275,10277]],[[11990,10270,10275]],[[11990,10268,10270]],[[11990,10266,10268]],[[11990,10264,10266]],[[11990,10262,10264]],[[10260,10259,11990]],[[11990,11991,11992]],[[10256,10257,11990]],[[10255,10256,11990]],[[10314,10255,11990]],[[10315,10314,11990]],[[10316,10315,11990]],[[10317,10316,11990]],[[10406,10317,11990]],[[10407,10406,11990]],[[10410,10407,11992]],[[10411,10410,11992]],[[10145,10411,11992]],[[10146,10145,11992]],[[10420,10146,11992]],[[11992,11991,11993]],[[10422,11992,10236]],[[10236,11992,10235]],[[10235,11992,10423]],[[10423,11992,10424]],[[10424,11992,10228]],[[10228,11992,10229]],[[10229,11992,10224]],[[10224,11992,10222]],[[10222,11992,10219]],[[10219,11992,10217]],[[10217,11992,10218]],[[10218,11992,10094]],[[10094,11992,10092]],[[10092,11992,11993]],[[10428,10092,11993]],[[10213,10428,11993]],[[10212,10213,11993]],[[10211,10212,11993]],[[10210,10211,11993]],[[10209,10210,11993]],[[10208,10209,11993]],[[11993,11991,11994]],[[10207,10206,11993]],[[10204,10207,11993]],[[10202,10204,11993]],[[10201,10202,11993]],[[10200,10201,11993]],[[10199,10200,11993]],[[10198,11993,10197]],[[10197,11994,10196]],[[10196,11994,10195]],[[10195,11994,10194]],[[11994,10192,10193]],[[11994,10191,10192]],[[11994,10190,10191]],[[11994,10189,10190]],[[11994,10188,10189]],[[11994,11995,10188]],[[10188,11995,10187]],[[10187,11995,10186]],[[10186,11995,10185]],[[10185,11995,10184]],[[10184,11995,10183]],[[11995,10180,10182]],[[11995,11989,10299]],[[10180,11995,10181]],[[10181,11995,10302]],[[10302,11995,10299]],[[10299,11989,10300]],[[10300,11989,10296]],[[10296,11989,10294]],[[10294,11989,10291]],[[10291,11989,10178]],[[10178,11989,10176]],[[10176,11989,10287]],[[11989,10308,10288]],[[11989,10254,10308]],[[11989,10282,10254]],[[11989,10137,10282]],[[11989,10251,10137]],[[11989,10281,10251]],[[11989,10249,10281]],[[10198,10199,11993]],[[11990,10259,10262]],[[10194,11994,10193]],[[11991,11989,11994]],[[10421,11992,10422]],[[10421,10420,11992]],[[10287,11989,10288]],[[11991,11990,11989]],[[10197,11993,11994]],[[10206,10208,11993]],[[10183,11995,10182]],[[11994,11989,11995]],[[10407,11990,11992]],[[10257,10260,11990]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2dc9d5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11996,11997,11998]],[[11999,12000,12001]],[[12002,12003,12004]],[[12002,12000,12003]],[[12005,12006,12000]],[[12007,12006,12005]],[[12005,12000,12008]],[[12006,12009,12010]],[[12011,12012,12006]],[[12001,12000,12004]],[[12000,12010,12003]],[[12004,12000,12002]],[[12013,12014,12015]],[[11999,12016,12000]],[[12017,11997,12015]],[[12008,12013,12015]],[[12016,12017,12014]],[[11996,12008,12015]],[[12013,12016,12014]],[[12000,12013,12008]],[[12000,12016,12013]],[[11996,12015,11997]],[[12014,12017,12015]],[[12007,12005,11996]],[[12006,12012,12009]],[[12018,12007,11998]],[[12019,12011,12007]],[[12000,12006,12010]],[[12007,12011,12006]],[[12018,12019,12007]],[[12018,12011,12019]],[[12007,11996,11998]],[[12005,12008,11996]],[[11999,12017,12016]],[[11999,11997,12017]],[[12020,11997,11999]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2e8cb2-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12021,12022,12023]],[[12024,12025,12026]],[[12027,12028,12029]],[[12030,12022,12031]],[[12026,12025,12030]],[[12032,12030,12025]],[[12033,12034,12035]],[[12036,12037,12038]],[[12039,12040,12041]],[[12035,12042,12043]],[[12039,12041,12044]],[[12033,12035,12038]],[[12045,12035,12034]],[[12045,12042,12035]],[[12040,12039,12037]],[[12046,12042,12030]],[[12047,12048,12049]],[[12038,12035,12043]],[[12025,12027,12029]],[[12043,12042,12046]],[[12046,12030,12032]],[[12042,12022,12030]],[[12045,12041,12023]],[[12045,12034,12041]],[[12050,12051,12049]],[[12052,12041,12040]],[[12041,12051,12023]],[[12053,12022,12054]],[[12051,12050,12054]],[[12055,12056,12027]],[[12057,12053,12054]],[[12057,12058,12059]],[[12027,12047,12028]],[[12056,12055,12048]],[[12024,12027,12025]],[[12056,12047,12027]],[[12047,12060,12028]],[[12049,12048,12061]],[[12029,12046,12032]],[[12028,12043,12046]],[[12059,12061,12048]],[[12049,12062,12050]],[[12057,12063,12024]],[[12055,12027,12063]],[[12038,12039,12044]],[[12037,12060,12052]],[[12047,12049,12052]],[[12052,12051,12041]],[[12064,12050,12062]],[[12054,12021,12051]],[[12060,12036,12065]],[[12038,12044,12033]],[[12056,12048,12047]],[[12059,12063,12057]],[[12055,12059,12048]],[[12064,12062,12061]],[[12060,12047,12052]],[[12061,12062,12049]],[[12061,12058,12064]],[[12057,12054,12050]],[[12041,12033,12044]],[[12041,12034,12033]],[[12057,12024,12066]],[[12063,12027,12024]],[[12058,12050,12064]],[[12058,12057,12050]],[[12037,12052,12040]],[[12049,12051,12052]],[[12067,12031,12022]],[[12067,12066,12031]],[[12053,12067,12022]],[[12066,12024,12031]],[[12025,12029,12032]],[[12028,12046,12029]],[[12065,12036,12038]],[[12037,12039,12038]],[[12043,12065,12038]],[[12060,12037,12036]],[[12028,12065,12043]],[[12028,12060,12065]],[[12053,12066,12067]],[[12053,12057,12066]],[[12061,12059,12058]],[[12055,12063,12059]],[[12031,12026,12030]],[[12031,12024,12026]],[[12051,12021,12023]],[[12054,12022,12021]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2f4faa-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12068,12069,12070]],[[12071,12072,12073]],[[12074,12075,12076]],[[12077,12078,12068]],[[12079,12080,12081]],[[12082,12083,12084]],[[12085,12086,12087]],[[12078,12088,12089]],[[12081,12090,12091]],[[12086,12091,12092]],[[12077,12093,12087]],[[12087,12092,12088]],[[12094,12085,12095]],[[12096,12086,12085]],[[12097,12073,12098]],[[12076,12075,12099]],[[12100,12071,12097]],[[12101,12074,12076]],[[12086,12079,12091]],[[12102,12103,12104]],[[12105,12076,12103]],[[12101,12106,12107]],[[12100,12098,12070]],[[12073,12108,12094]],[[12109,12071,12100]],[[12071,12073,12097]],[[12098,12068,12070]],[[12094,12095,12093]],[[12088,12077,12087]],[[12093,12095,12087]],[[12084,12091,12090]],[[12090,12110,12084]],[[12085,12087,12095]],[[12086,12092,12087]],[[12111,12099,12112]],[[12104,12112,12113]],[[12104,12111,12112]],[[12075,12112,12099]],[[12079,12105,12080]],[[12076,12099,12111]],[[12081,12102,12090]],[[12113,12083,12082]],[[12110,12104,12113]],[[12102,12080,12103]],[[12114,12078,12069]],[[12088,12092,12089]],[[12077,12088,12078]],[[12092,12091,12089]],[[12083,12112,12107]],[[12112,12075,12074]],[[12109,12106,12071]],[[12107,12074,12101]],[[12115,12109,12070]],[[12115,12106,12109]],[[12107,12115,12070]],[[12107,12106,12115]],[[12094,12108,12085]],[[12108,12072,12116]],[[12116,12072,12101]],[[12071,12106,12072]],[[12105,12101,12076]],[[12072,12106,12101]],[[12079,12081,12091]],[[12080,12102,12081]],[[12068,12114,12069]],[[12068,12078,12114]],[[12098,12094,12068]],[[12098,12073,12094]],[[12089,12084,12083]],[[12089,12091,12084]],[[12069,12089,12083]],[[12069,12078,12089]],[[12110,12102,12104]],[[12110,12090,12102]],[[12109,12100,12070]],[[12097,12098,12100]],[[12096,12079,12086]],[[12096,12116,12079]],[[12079,12116,12105]],[[12108,12073,12072]],[[12080,12105,12103]],[[12116,12101,12105]],[[12103,12111,12104]],[[12103,12076,12111]],[[12107,12112,12074]],[[12083,12113,12112]],[[12068,12093,12077]],[[12068,12094,12093]],[[12110,12082,12084]],[[12110,12113,12082]],[[12096,12108,12116]],[[12096,12085,12108]],[[12083,12117,12069]],[[12118,12107,12070]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3061e0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10364,10533,10358]],[[10533,10367,10358]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3061ec-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12119,12120,12121]],[[12119,12121,12122]],[[12122,12121,12123]],[[12123,12121,12124]],[[12124,12121,12125]],[[12125,12121,12126]],[[12126,12121,12127]],[[12127,12121,12128]],[[12128,12121,12129]],[[12129,12121,12130]],[[12130,12121,12131]],[[12131,12121,12132]],[[12132,12121,12133]],[[12133,12121,12134]],[[12134,12121,12135]],[[12135,12121,12136]],[[12136,12121,12137]],[[12137,12121,12138]],[[12138,12121,12139]],[[12139,12121,12140]],[[12140,12121,12141]],[[12141,12121,12142]],[[12120,12143,12121]],[[12144,12142,12121]],[[12145,12121,12146]],[[12146,12121,12147]],[[12147,12121,12148]],[[12148,12121,12149]],[[12149,12121,12150]],[[12150,12121,12151]],[[12151,12121,12152]],[[12152,12121,12153]],[[12145,12144,12121]],[[12154,12121,12155]],[[12155,12121,12156]],[[12156,12121,12157]],[[12157,12121,12158]],[[12158,12121,12159]],[[12159,12121,12160]],[[12160,12121,12161]],[[12161,12121,12162]],[[12162,12121,12163]],[[12163,12121,12164]],[[12121,12143,12165]],[[12166,12121,12167]],[[12167,12121,12168]],[[12168,12121,12169]],[[12169,12121,12170]],[[12170,12121,12171]],[[12171,12121,12172]],[[12172,12121,12173]],[[12173,12121,12174]],[[12174,12121,12175]],[[12175,12121,12176]],[[12176,12121,12177]],[[12177,12121,12178]],[[12178,12121,12179]],[[12179,12121,12180]],[[12180,12121,12181]],[[12181,12121,12182]],[[12182,12121,12183]],[[12184,12182,12183]],[[12185,12184,12183]],[[12186,12185,12183]],[[12187,12186,12183]],[[12188,12187,12183]],[[12189,12188,12183]],[[12190,12189,12183]],[[12191,12190,12183]],[[12192,12191,12183]],[[12193,12192,12183]],[[12194,12193,12183]],[[12183,12121,12195]],[[12196,12183,12197]],[[12197,12183,12198]],[[12198,12183,12199]],[[12199,12183,12200]],[[12200,12183,12201]],[[12201,12183,12202]],[[12202,12183,12203]],[[12203,12183,12204]],[[12204,12183,12205]],[[12205,12183,12206]],[[12206,12183,12195]],[[12195,12121,12207]],[[12207,12121,12208]],[[12208,12121,12209]],[[12209,12121,12165]],[[12164,12121,12166]],[[12154,12153,12121]],[[12210,12183,12196]],[[12210,12194,12183]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e319a5c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12211,1025,12212]],[[12213,1024,1023]],[[12214,12211,1023]],[[12212,1024,12213]],[[1023,12211,12215]],[[1025,1024,12212]],[[12215,12213,1023]],[[12215,12212,12213]],[[1015,12214,1023]],[[1015,1025,12211]],[[12215,12211,12212]],[[12214,1015,12211]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e328488-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12216,12217,3166]],[[12218,12219,12220]],[[12216,12221,12217]],[[12222,12223,12224]],[[12225,12226,12227]],[[12227,3115,3163]],[[12228,12229,12226]],[[12230,12231,12232]],[[12216,12233,12221]],[[12234,12235,12236]],[[12237,12231,12230]],[[12238,3115,12231]],[[12239,12223,12240]],[[12232,3115,12241]],[[12242,12221,12233]],[[12218,12217,12221]],[[12243,12230,12232]],[[12244,12245,12238]],[[12246,12247,12248]],[[12249,12250,12251]],[[12252,12233,12246]],[[12246,12233,12253]],[[12254,12255,12216]],[[12256,12257,12258]],[[12259,12255,12254]],[[12260,3166,12261]],[[12240,12262,3159]],[[12263,12229,12222]],[[12250,12249,12264]],[[12265,12238,12245]],[[12266,12243,12232]],[[12231,3115,12232]],[[12262,12228,3159]],[[12262,12222,12228]],[[12267,12268,12250]],[[12244,12238,12269]],[[12270,12271,12272]],[[12273,3169,12258]],[[12274,12275,12276]],[[12277,12278,12241]],[[12243,12279,12280]],[[12280,12230,12243]],[[12254,12216,3166]],[[12281,12233,12216]],[[3159,12225,3163]],[[12222,12262,12223]],[[12235,12216,12282]],[[12258,12283,12284]],[[12285,12286,12287]],[[12288,12267,12264]],[[12216,12235,12281]],[[12216,12255,12289]],[[12262,12240,12223]],[[12217,12279,12275]],[[12217,12290,12279]],[[12291,12237,12230]],[[12237,12292,12269]],[[12238,12231,12269]],[[12217,12240,3159]],[[12217,12275,12240]],[[12290,12292,12237]],[[12217,12245,12292]],[[12285,12265,12245]],[[12217,12293,12245]],[[12241,12276,12266]],[[12275,12279,12243]],[[3170,12261,3166]],[[3170,3169,12261]],[[12294,12247,12295]],[[12296,12238,12295]],[[12297,12298,12296]],[[12297,12296,12247]],[[12298,12299,12296]],[[12256,3169,12296]],[[12289,12256,12282]],[[12236,12235,12282]],[[12283,12259,12254]],[[12257,12255,12259]],[[12300,12221,12294]],[[12301,12252,12246]],[[12267,12288,12268]],[[12264,12249,12295]],[[12302,12295,12238]],[[12247,12296,12295]],[[12288,12264,12295]],[[12267,12250,12264]],[[12249,12300,12294]],[[12294,12301,12248]],[[12253,12297,12247]],[[3169,12238,12296]],[[3115,12224,12277]],[[12278,12303,12274]],[[12289,12257,12256]],[[12299,12281,12234]],[[12233,12297,12253]],[[12281,12299,12298]],[[12281,12297,12233]],[[12281,12298,12297]],[[12251,12218,12221]],[[12268,12219,12218]],[[12274,12276,12241]],[[12275,12243,12266]],[[12294,12304,12301]],[[12304,12242,12301]],[[12301,12246,12248]],[[12253,12247,12246]],[[12236,12282,12256]],[[12258,3169,12256]],[[12216,12289,12282]],[[12255,12257,12289]],[[12299,12256,12296]],[[12299,12236,12256]],[[12259,12258,12257]],[[12284,12305,12258]],[[12219,12268,12302]],[[12302,12268,12288]],[[12241,12266,12232]],[[12276,12275,12266]],[[12219,12302,12220]],[[12302,12238,12265]],[[12293,12285,12245]],[[12287,12220,12265]],[[12280,12291,12230]],[[12290,12217,12292]],[[12280,12290,12291]],[[12280,12279,12290]],[[12270,12254,3166]],[[12272,12284,12283]],[[12272,12283,12254]],[[12258,12259,12283]],[[12292,12244,12269]],[[12292,12245,12244]],[[12228,12225,3159]],[[12228,12226,12225]],[[3169,12306,12261]],[[12270,3166,12260]],[[12261,12306,12260]],[[12272,12254,12270]],[[12307,12306,12273]],[[12307,12260,12306]],[[12305,12273,12258]],[[12306,3169,12273]],[[12270,12307,12305]],[[12270,12260,12307]],[[12271,12305,12284]],[[12307,12273,12305]],[[12272,12271,12284]],[[12270,12305,12271]],[[12221,12304,12294]],[[12221,12242,12304]],[[12227,12263,3115]],[[12278,12274,12241]],[[12263,12222,12224]],[[12229,12228,12222]],[[3115,12277,12241]],[[12239,12240,12277]],[[12224,12239,12277]],[[12224,12223,12239]],[[12225,12227,3163]],[[12263,12224,3115]],[[12220,12302,12265]],[[12288,12295,12302]],[[12300,12249,12251]],[[12268,12218,12250]],[[12218,12286,12217]],[[12218,12220,12287]],[[12285,12287,12265]],[[12286,12218,12287]],[[12252,12242,12233]],[[12252,12301,12242]],[[12299,12234,12236]],[[12281,12235,12234]],[[12300,12251,12221]],[[12250,12218,12251]],[[12286,12293,12217]],[[12286,12285,12293]],[[12247,12294,12248]],[[12295,12249,12294]],[[12226,12263,12227]],[[12226,12229,12263]],[[12231,12237,12269]],[[12291,12290,12237]],[[12308,12278,12277]],[[12308,12303,12278]],[[12240,12308,12277]],[[12303,12275,12274]],[[12240,12303,12308]],[[12240,12275,12303]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e33202e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12309,12310,12311]],[[12312,12313,12314]],[[12315,7831,12316]],[[12317,12318,12319]],[[12320,12317,12321]],[[12322,12320,12321]],[[12321,12317,12323]],[[12324,12318,12317]],[[12316,7831,7832]],[[12325,12326,12327]],[[12328,12329,12330]],[[12327,12316,7832]],[[12331,12332,12333]],[[12334,12335,12336]],[[12337,12338,8060]],[[12339,7856,7867]],[[12340,7820,7856]],[[12341,7821,7820]],[[8055,12342,7867]],[[12343,12344,12345]],[[12346,12347,12348]],[[12349,12350,7856]],[[12351,12352,8060]],[[12338,8055,8060]],[[12353,12327,7832]],[[12324,12354,12355]],[[12350,12340,7856]],[[12356,7820,12340]],[[7831,12314,12357]],[[12333,8060,7831]],[[12358,12359,12341]],[[12359,7821,12341]],[[12360,12361,7856]],[[12349,12361,12362]],[[12338,12344,8055]],[[12309,12342,8055]],[[12363,12364,12365]],[[12366,12365,12367]],[[12363,12368,12369]],[[12370,12371,12372]],[[12361,12349,7856]],[[12362,12373,12374]],[[12375,12356,12340]],[[12356,12376,12358]],[[12377,12343,12378]],[[12338,12368,12379]],[[12332,12380,12333]],[[12352,12369,8060]],[[12381,12382,12383]],[[12384,12385,12364]],[[12386,12332,12331]],[[12387,12382,12381]],[[12388,12374,12340]],[[12389,12356,12375]],[[12353,12390,12391]],[[12392,12393,12317]],[[12354,12329,12394]],[[12354,12324,12317]],[[12326,12395,12396]],[[12317,12319,12323]],[[12327,12326,12396]],[[12325,12330,12397]],[[12338,12345,12344]],[[12338,12398,12345]],[[12336,8055,12399]],[[12374,12400,12340]],[[12357,12401,12331]],[[12381,12402,12403]],[[12339,12360,7856]],[[12339,12370,12360]],[[12350,12362,12340]],[[12362,12361,12373]],[[12404,12389,12400]],[[12376,12359,12358]],[[12405,12390,7832]],[[12391,12330,12325]],[[12401,12386,12331]],[[12401,12313,12387]],[[7820,12358,12341]],[[12406,7821,12359]],[[12365,12407,12367]],[[12408,12409,12347]],[[12337,12368,12338]],[[12369,12352,12384]],[[12351,12384,12352]],[[12380,12332,12381]],[[12410,12312,12320]],[[12313,12382,12387]],[[12331,12333,7831]],[[12351,8060,12333]],[[12400,12375,12340]],[[12400,12389,12375]],[[12356,12358,7820]],[[12356,12389,12376]],[[12395,12411,12396]],[[12412,12317,12320]],[[12413,12414,12415]],[[12315,12416,12314]],[[12396,12316,12327]],[[12396,12411,12316]],[[12417,12310,12418]],[[12361,12360,12370]],[[12313,12419,12382]],[[12420,12403,12421]],[[12344,12399,8055]],[[12422,12367,12407]],[[12423,12339,7867]],[[12424,12407,12425]],[[12426,12311,12417]],[[12409,12309,12311]],[[12309,12336,12310]],[[12309,8055,12336]],[[7831,12357,12331]],[[12416,12315,12316]],[[12326,12325,12397]],[[12394,12427,12354]],[[12428,12403,12429]],[[12335,12310,12336]],[[12430,12431,12432]],[[12372,12361,12370]],[[12346,12371,12423]],[[12370,12339,12371]],[[12347,12409,12426]],[[12342,12309,12409]],[[12342,12408,7867]],[[12342,12409,12408]],[[12380,12385,12384]],[[12425,12407,12365]],[[12351,12380,12384]],[[12351,12333,12380]],[[12412,12414,12317]],[[12414,12392,12317]],[[12432,12377,12378]],[[12422,12424,12428]],[[12420,12433,12425]],[[12421,12428,12433]],[[12431,12428,12429]],[[12418,12434,12417]],[[12410,12435,12312]],[[12435,12436,12419]],[[12431,12418,12437]],[[12438,12439,12348]],[[7832,12390,12353]],[[12328,12394,12329]],[[12440,12441,12404]],[[12376,12389,12404]],[[12348,12347,12438]],[[12442,12434,12443]],[[12408,12444,7867]],[[12408,12347,12444]],[[12384,12364,12369]],[[12425,12433,12424]],[[12337,12369,12368]],[[12337,8060,12369]],[[12385,12425,12364]],[[12385,12420,12425]],[[12426,12417,12442]],[[12440,12404,12400]],[[12439,12441,12373]],[[12406,12404,12441]],[[12445,12398,12338]],[[12445,12338,12379]],[[12383,12402,12381]],[[12446,12403,12402]],[[12380,12381,12385]],[[12387,12386,12401]],[[12332,12387,12381]],[[12332,12386,12387]],[[12431,12434,12418]],[[12406,12441,12434]],[[12442,12438,12347]],[[12443,12439,12438]],[[12442,12417,12434]],[[12311,12310,12417]],[[12378,12343,12398]],[[12445,12379,12366]],[[12377,12432,12431]],[[12430,12367,12431]],[[12430,12447,12366]],[[12379,12368,12366]],[[12367,12430,12366]],[[12447,12398,12445]],[[12366,12447,12445]],[[12378,12398,12447]],[[12431,12422,12428]],[[12431,12367,12422]],[[12357,12314,12401]],[[12312,12419,12313]],[[12401,12314,12313]],[[7831,12315,12314]],[[12429,12410,12322]],[[12312,12415,12412]],[[12419,12436,12382]],[[12382,12446,12383]],[[12436,12446,12382]],[[12436,12435,12446]],[[12327,12391,12325]],[[12390,12405,12328]],[[12353,12391,12327]],[[12390,12330,12391]],[[12322,12410,12320]],[[12429,12446,12435]],[[12347,12426,12442]],[[12409,12311,12426]],[[12444,12423,7867]],[[12371,12339,12423]],[[12420,12421,12433]],[[12403,12428,12421]],[[12335,12448,12437]],[[12399,12344,12343]],[[12398,12343,12345]],[[12377,12449,12343]],[[12310,12335,12418]],[[12399,12343,12449]],[[12449,12448,12334]],[[12437,12377,12431]],[[12334,12448,12335]],[[12449,12377,12448]],[[12395,12414,12411]],[[12395,12397,12392]],[[12326,12397,12395]],[[12330,12329,12393]],[[12378,12430,12432]],[[12378,12447,12430]],[[12428,12424,12433]],[[12422,12407,12424]],[[12335,12437,12418]],[[12448,12377,12437]],[[12390,12328,12330]],[[12405,12394,12328]],[[12406,12376,12404]],[[12406,12359,12376]],[[12381,12420,12385]],[[12381,12403,12420]],[[12314,12415,12312]],[[12413,12411,12414]],[[12411,12413,12316]],[[12415,12314,12416]],[[12416,12413,12415]],[[12416,12316,12413]],[[12312,12412,12320]],[[12415,12414,12412]],[[12395,12392,12414]],[[12397,12330,12393]],[[12355,12354,12427]],[[12393,12329,12354]],[[12317,12393,12354]],[[12392,12397,12393]],[[12371,12348,12372]],[[12346,12444,12347]],[[12406,12431,12429]],[[12406,12434,12431]],[[12348,12439,12372]],[[12434,12441,12439]],[[12372,12373,12361]],[[12372,12439,12373]],[[12340,12362,12388]],[[12350,12349,12362]],[[12362,12374,12388]],[[12373,12441,12440]],[[12374,12440,12400]],[[12374,12373,12440]],[[12368,12363,12366]],[[12364,12425,12365]],[[12364,12363,12369]],[[12365,12366,12363]],[[12312,12435,12419]],[[12410,12429,12435]],[[12442,12443,12438]],[[12434,12439,12443]],[[12383,12446,12402]],[[12429,12403,12446]],[[12399,12334,12336]],[[12399,12449,12334]],[[12444,12346,12423]],[[12348,12371,12346]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e336e96-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12450,12451,12452]],[[12453,12452,12454]],[[12455,12456,12457]],[[12456,12451,12458]],[[12458,12459,12457]],[[12458,12451,12460]],[[12459,12455,12457]],[[12461,12451,12456]],[[12462,12463,12453]],[[12462,12456,12455]],[[12461,12462,12454]],[[12461,12456,12462]],[[12453,12464,12452]],[[12463,12455,12464]],[[12465,12455,12459]],[[12463,12462,12455]],[[12462,12453,12454]],[[12463,12464,12453]],[[12464,12465,12450]],[[12464,12455,12465]],[[12450,12460,12451]],[[12465,12459,12460]],[[12459,12458,12460]],[[12457,12456,12458]],[[12464,12450,12452]],[[12465,12460,12450]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e33bd04-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12466,12467,12468]],[[11826,12469,12470]],[[11814,12471,11808]],[[12469,11809,12472]],[[12473,12474,12475]],[[12476,11826,12470]],[[12476,11814,11826]],[[12471,12477,11808]],[[12478,12479,12475]],[[12480,12481,12482]],[[12483,12472,12468]],[[12467,12477,12468]],[[12479,12473,12475]],[[12484,12485,12481]],[[12470,12469,12468]],[[12472,12466,12468]],[[12484,12480,12467]],[[12482,12477,12467]],[[12469,12472,12483]],[[11809,12486,12472]],[[12473,12485,12474]],[[12481,12480,12484]],[[12472,12486,12466]],[[11809,12473,12479]],[[12468,12469,12483]],[[11826,11809,12469]],[[12478,12467,12466]],[[12475,12474,12484]],[[12475,12484,12467]],[[12474,12485,12484]],[[12481,12473,11809]],[[12481,12485,12473]],[[12467,12478,12475]],[[12466,12486,12478]],[[12480,12482,12467]],[[11808,12477,12482]],[[11808,12481,11809]],[[11808,12482,12481]],[[12476,12471,11814]],[[12476,12477,12471]],[[12486,12479,12478]],[[12486,11809,12479]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e34317c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1aa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12487,12488,12489]],[[12490,12491,12492]],[[12488,12491,12489]],[[12493,12489,12491]],[[12494,12495,12496]],[[12497,12493,12491]],[[12490,12498,12491]],[[12499,12500,12501]],[[12490,12499,12498]],[[12502,12493,12497]],[[12500,12503,12504]],[[12500,12499,12503]],[[12498,12497,12491]],[[12498,12499,12501]],[[12505,12506,12495]],[[12502,12501,12507]],[[12504,12492,12488]],[[12504,12503,12490]],[[12487,12508,12509]],[[12492,12491,12488]],[[12504,12490,12492]],[[12503,12499,12490]],[[12501,12496,12510]],[[12507,12493,12502]],[[12511,12512,12513]],[[12508,12514,12515]],[[12494,12505,12495]],[[12515,12506,12505]],[[12511,12504,12512]],[[12514,12506,12515]],[[12498,12502,12497]],[[12510,12496,12516]],[[12515,12494,12496]],[[12515,12505,12494]],[[12506,12516,12495]],[[12516,12493,12507]],[[12498,12501,12502]],[[12500,12496,12501]],[[12501,12510,12507]],[[12496,12495,12516]],[[12510,12516,12507]],[[12506,12493,12516]],[[12496,12500,12511]],[[12504,12488,12512]],[[12496,12511,12515]],[[12512,12488,12487]],[[12513,12509,12515]],[[12513,12512,12509]],[[12509,12508,12515]],[[12509,12512,12487]],[[12515,12511,12513]],[[12500,12504,12511]],[[12514,12487,12489]],[[12514,12508,12487]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e347fd5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12517,12518,12519]],[[12520,12521,12522]],[[12523,12524,12525]],[[12520,12526,12527]],[[12519,12518,12524]],[[12517,12528,12527]],[[12523,12520,12522]],[[12524,12518,12525]],[[12520,12525,12526]],[[12520,12523,12525]],[[12517,12526,12518]],[[12525,12518,12526]],[[12519,12523,12522]],[[12519,12524,12523]],[[12521,12527,12528]],[[12521,12520,12527]],[[12526,12517,12527]],[[12519,12528,12517]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e34ce31-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12529,12530,12531]],[[12529,12531,12532]],[[12533,12534,12535]],[[12530,12536,12531]],[[12535,12529,12532]],[[12534,12537,12530]],[[12538,12533,12532]],[[12534,12529,12535]],[[12533,12537,12534]],[[12538,12536,12537]],[[12532,12533,12535]],[[12538,12537,12533]],[[12534,12530,12529]],[[12537,12536,12530]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e362de1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12539,3111,12540]],[[12541,3046,3104]],[[12542,12543,12541]],[[3046,12544,3047]],[[12545,12546,12547]],[[12548,12549,12550]],[[12551,12552,12553]],[[12554,12555,12556]],[[12557,12558,12559]],[[12560,12561,12562]],[[12563,12564,3099]],[[12565,12470,12566]],[[12567,12550,12568]],[[12569,12476,12570]],[[12571,12547,12546]],[[12572,12476,12470]],[[12573,12468,12574]],[[12550,12549,12568]],[[12575,12576,12564]],[[12577,12578,12579]],[[12578,12580,12581]],[[12567,12549,12580]],[[12563,12567,12580]],[[12563,12577,12579]],[[12564,12553,3099]],[[12581,12576,12578]],[[12582,12583,12559]],[[12552,12559,12558]],[[12576,12575,12584]],[[12579,12584,12575]],[[12585,12586,12587]],[[12578,12576,12584]],[[12587,12559,12588]],[[12588,12589,12585]],[[12588,12559,12589]],[[12576,12582,12564]],[[12589,12590,12551]],[[12551,12590,12552]],[[12589,12559,12552]],[[12556,12555,12591]],[[12556,12592,12561]],[[12567,12554,12550]],[[12567,12591,12554]],[[12553,12552,12558]],[[12590,12589,12552]],[[12592,12556,12591]],[[12556,12561,12554]],[[12567,12563,3099]],[[12579,12575,12563]],[[12591,12567,3099]],[[12568,12549,12567]],[[12585,12593,12586]],[[12585,12564,12593]],[[12564,12582,12593]],[[12582,12559,12586]],[[12594,12582,12576]],[[12586,12593,12582]],[[12595,12591,3099]],[[12555,12554,12591]],[[12579,12578,12584]],[[12580,12549,12581]],[[12580,12577,12563]],[[12580,12578,12577]],[[12585,12587,12588]],[[12586,12559,12587]],[[12575,12564,12563]],[[12585,12551,12564]],[[12564,12551,12553]],[[12585,12589,12551]],[[12596,12597,12571]],[[12598,3111,12539]],[[12565,12599,12470]],[[12600,12601,12602]],[[12603,12604,12539]],[[12603,12605,12604]],[[12606,12594,12468]],[[12581,12549,12607]],[[12541,12543,12608]],[[12609,12610,12611]],[[12612,12613,12596]],[[12597,12614,12571]],[[3103,12612,3104]],[[12612,12476,12569]],[[12615,12606,12468]],[[12604,12477,12616]],[[12558,12557,3111]],[[12615,12468,12617]],[[12559,12583,12557]],[[12468,12477,12604]],[[12546,12545,12539]],[[12547,12598,12545]],[[12477,12546,12616]],[[12477,12571,12546]],[[12557,12583,12618]],[[12582,12594,12583]],[[12619,12620,12565]],[[12570,12543,12569]],[[3093,12544,12610]],[[3093,3047,12544]],[[12621,12622,12623]],[[12624,12625,12544]],[[12626,12627,12628]],[[12629,3093,12609]],[[12630,12631,12632]],[[12599,12633,12634]],[[12546,12539,12616]],[[12545,12598,12539]],[[12619,12635,12620]],[[12626,12636,12637]],[[12562,12592,12630]],[[12621,12627,12638]],[[12639,12632,12640]],[[12641,12637,12642]],[[12574,12594,12581]],[[12606,12583,12594]],[[12599,12634,12636]],[[12636,12643,12637]],[[12574,12581,12644]],[[12594,12576,12581]],[[12607,12602,12644]],[[12600,12468,12573]],[[12644,12602,12601]],[[12566,12562,12645]],[[12646,12561,12560]],[[12646,12554,12561]],[[12600,12647,12648]],[[12646,12550,12554]],[[12648,12646,12560]],[[12647,12548,12646]],[[12571,12614,12547]],[[12614,3111,12598]],[[12468,12600,12470]],[[12602,12607,12548]],[[12648,12647,12646]],[[12600,12602,12548]],[[12595,12631,12630]],[[12632,12639,12630]],[[12573,12574,12644]],[[12468,12594,12574]],[[12618,12615,12617]],[[12583,12606,12615]],[[12649,12650,12651]],[[12541,3104,12542]],[[12611,12610,12572]],[[12652,12608,12543]],[[12611,12622,12609]],[[12609,3093,12610]],[[12621,12628,12627]],[[12623,12622,12611]],[[12477,12596,12571]],[[12613,12614,12597]],[[12646,12548,12550]],[[12647,12600,12548]],[[12557,12605,12540]],[[12617,12468,12604]],[[12539,12604,12616]],[[12605,12617,12604]],[[12562,12566,12560]],[[12470,12600,12648]],[[12638,12609,12622]],[[12638,12627,12629]],[[12645,12619,12565]],[[12562,12635,12619]],[[12561,12592,12562]],[[12591,12595,12592]],[[12581,12607,12644]],[[12549,12548,12607]],[[3104,12612,12569]],[[3103,12613,12612]],[[12601,12573,12644]],[[12601,12600,12573]],[[12544,12651,12610]],[[12544,12608,12624]],[[12625,12624,12476]],[[12625,12651,12544]],[[12650,12649,12476]],[[12650,12610,12651]],[[12624,12652,12476]],[[12624,12608,12652]],[[12640,12643,12634]],[[12653,3093,12643]],[[12626,12641,12627]],[[12642,3093,12629]],[[12470,12599,12626]],[[12599,12620,12633]],[[12638,12629,12609]],[[12627,12641,12642]],[[12639,12633,12620]],[[12634,12643,12636]],[[12572,12623,12611]],[[12470,12626,12628]],[[12470,12623,12572]],[[12470,12628,12623]],[[12622,12621,12638]],[[12623,12628,12621]],[[12572,12650,12476]],[[12572,12610,12650]],[[12569,12542,3104]],[[12569,12543,12542]],[[12631,12595,12653]],[[12653,12643,12640]],[[12566,12645,12565]],[[12562,12619,12645]],[[12652,12570,12476]],[[12652,12543,12570]],[[12639,12640,12633]],[[12633,12640,12634]],[[12626,12599,12636]],[[12565,12620,12599]],[[12540,12603,12539]],[[12540,12605,12603]],[[12547,12614,12598]],[[12613,3111,12614]],[[12635,12639,12620]],[[12635,12630,12639]],[[12605,12557,12617]],[[12540,3111,12557]],[[12544,12541,12608]],[[12544,3046,12541]],[[12596,12613,12597]],[[3103,3111,12613]],[[12476,12596,12477]],[[12476,12612,12596]],[[12557,12618,12617]],[[12583,12615,12618]],[[12649,12625,12476]],[[12649,12651,12625]],[[12631,12653,12632]],[[12595,3099,12653]],[[12632,12653,12640]],[[3099,3093,12653]],[[12562,12630,12635]],[[12592,12595,12630]],[[12626,12637,12641]],[[12643,3093,12637]],[[12627,12642,12629]],[[12637,3093,12642]],[[12566,12648,12560]],[[12566,12470,12648]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e36a37d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10052,12654,10051]],[[12654,10049,10051]],[[12654,10050,10049]],[[12654,10147,10050]],[[12654,10172,10147]],[[12654,10171,10172]],[[12654,10170,10171]],[[12655,10169,10170]],[[12655,10168,10169]],[[12655,10167,10168]],[[12655,10166,10167]],[[12655,10165,10166]],[[10163,10164,12655]],[[12655,12656,12657]],[[10161,12655,10160]],[[10160,12655,10159]],[[10159,12655,10158]],[[10387,12655,12657]],[[10157,10158,12655]],[[10156,10157,12655]],[[10154,10156,12655]],[[10153,10154,12655]],[[10151,10153,12655]],[[10394,10151,12655]],[[10390,10394,12655]],[[10391,10390,12655]],[[10387,10391,12655]],[[10330,10387,12657]],[[10329,10330,12657]],[[10327,10329,12657]],[[10324,10327,12657]],[[12657,12656,12658]],[[10565,12657,10318]],[[10318,12657,10319]],[[10319,12657,10331]],[[10331,12657,10129]],[[10129,12657,12659]],[[10340,10129,12659]],[[10126,10340,12659]],[[12659,12657,12658]],[[10123,10341,12659]],[[10271,10123,12659]],[[10085,10271,12659]],[[10120,10085,12659]],[[10118,10120,12659]],[[10116,10118,12659]],[[12658,12656,12660]],[[10112,12658,10110]],[[10110,12658,10108]],[[10102,12658,12660]],[[10105,10108,12658]],[[10103,12658,10102]],[[10102,12660,10100]],[[10100,12660,10098]],[[10098,12660,10095]],[[10095,12660,10091]],[[10091,12660,10089]],[[10089,12660,10087]],[[12660,10082,10086]],[[12660,10079,10082]],[[12660,10078,10079]],[[12660,10077,10078]],[[12660,12661,10077]],[[10077,12661,10076]],[[10076,12661,10075]],[[10075,12661,10074]],[[10074,12661,10073]],[[12661,12654,10064]],[[10072,12661,10071]],[[10071,12661,10070]],[[10070,12661,10069]],[[10069,12661,10068]],[[10068,12661,10066]],[[10066,12661,10067]],[[10067,12661,10065]],[[10065,12661,10064]],[[10064,12654,10063]],[[10063,12654,10062]],[[10062,12654,10030]],[[10030,12654,10031]],[[10031,12654,10061]],[[10061,12654,10059]],[[10059,12654,10060]],[[12654,12655,10170]],[[10058,12654,10057]],[[10057,12654,10056]],[[10056,12654,10055]],[[10055,12654,10054]],[[10054,12654,10053]],[[10053,12654,10052]],[[10103,10105,12658]],[[12655,10164,10165]],[[10325,12657,10565]],[[10325,10324,12657]],[[10087,12660,10086]],[[12656,12654,12661]],[[10162,12655,10161]],[[10162,10163,12655]],[[10114,12658,10112]],[[10114,10116,12658]],[[10060,12654,10058]],[[12656,12655,12654]],[[10116,12659,12658]],[[10341,10126,12659]],[[10073,12661,10072]],[[12660,12656,12661]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3717f5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12662,12663,3214]],[[12664,12665,12666]],[[12667,12668,12669]],[[3044,12670,3042]],[[3044,3042,3045]],[[12671,12672,3040]],[[12673,12674,12675]],[[12676,12677,12662]],[[12678,12679,12680]],[[12681,3216,12682]],[[12683,12684,12685]],[[12686,12687,12670]],[[12688,12686,12672]],[[12684,12689,12690]],[[12691,12692,12693]],[[12694,12695,12663]],[[12696,3216,12681]],[[3216,3215,12682]],[[12691,12697,12698]],[[12680,12699,12700]],[[12691,12698,12701]],[[12701,12699,12680]],[[12685,12701,12702]],[[12691,12701,12703]],[[12702,12698,12697]],[[12701,12679,12678]],[[12704,12705,12706]],[[12706,3215,12707]],[[12708,12695,12709]],[[12665,12664,12699]],[[12678,12680,12710]],[[12708,12666,12695]],[[12711,12691,12693]],[[12711,12697,12691]],[[12710,12680,12676]],[[12679,12701,12680]],[[12704,12707,12712]],[[12713,3215,12663]],[[12711,12702,12697]],[[12714,12685,12702]],[[12713,12707,3215]],[[12706,12682,3215]],[[12715,12662,12700]],[[12713,12716,12665]],[[12663,12715,12709]],[[12664,12666,12708]],[[12702,12701,12698]],[[12685,12699,12701]],[[12665,12699,12717]],[[12706,12681,12682]],[[12704,12706,12707]],[[12718,12719,12704]],[[12709,12664,12708]],[[12715,12699,12664]],[[12709,12715,12664]],[[12676,12680,12700]],[[12713,12704,12712]],[[12720,12696,12718]],[[12706,12705,12681]],[[12717,12721,12665]],[[12693,12710,12676]],[[12693,12692,12710]],[[12704,12719,12705]],[[12669,12722,12723]],[[12715,12700,12699]],[[12677,12676,12700]],[[12714,12711,12693]],[[12714,12702,12711]],[[12716,12713,12663]],[[12712,12707,12713]],[[12692,12703,12710]],[[12703,12701,12678]],[[12710,12703,12678]],[[12692,12691,12703]],[[12662,12715,12663]],[[12662,12677,12700]],[[12714,12662,3214]],[[12693,12676,12662]],[[12709,12694,12663]],[[12709,12695,12694]],[[12695,12716,12663]],[[12695,12666,12716]],[[12685,12714,3214]],[[12693,12662,12714]],[[3042,12670,3040]],[[12670,12724,12675]],[[12685,12684,12686]],[[12685,3214,12725]],[[12696,12726,12727]],[[12728,12729,3043]],[[12730,12731,12732]],[[12728,3216,12727]],[[3040,12670,12687]],[[12675,12674,12686]],[[12724,12733,12675]],[[12734,12735,12729]],[[12736,12673,12675]],[[12737,12738,12673]],[[12683,12689,12684]],[[12739,12683,12740]],[[12704,12713,12665]],[[12718,12704,12665]],[[12741,12671,3040]],[[12672,3041,3040]],[[12727,12726,12668]],[[12742,12721,12717]],[[12705,12696,12681]],[[12705,12719,12696]],[[12743,12744,12733]],[[12734,12729,12728]],[[12736,12737,12673]],[[12745,12743,12746]],[[12728,12727,12747]],[[3216,12696,12727]],[[12667,12669,12674]],[[12668,12726,12720]],[[12668,12720,12669]],[[12696,12719,12718]],[[12748,12718,12665]],[[12720,12726,12696]],[[12746,12743,12724]],[[12745,12749,12750]],[[12748,12665,12721]],[[12716,12666,12665]],[[12744,12750,12751]],[[12731,3043,12729]],[[12670,12675,12686]],[[12733,12744,12736]],[[12668,12667,12727]],[[12674,12673,12752]],[[12667,12753,12747]],[[12752,12738,12732]],[[12753,12667,12674]],[[12747,12727,12667]],[[12751,12750,12749]],[[12744,12743,12750]],[[12741,12688,12671]],[[12686,3041,12672]],[[3216,12728,3043]],[[12747,12753,12734]],[[12751,12754,12737]],[[12737,12730,12738]],[[12725,12683,12685]],[[12690,12686,12684]],[[12687,12755,3040]],[[12756,12686,12688]],[[12755,12756,12741]],[[12687,12686,12756]],[[12723,12717,12699]],[[12669,12757,12722]],[[12723,12722,12742]],[[12757,12718,12722]],[[12742,12748,12721]],[[12722,12718,12748]],[[12743,12745,12750]],[[3044,12749,12745]],[[12746,12724,12670]],[[12743,12733,12724]],[[12673,12738,12752]],[[12752,12731,12735]],[[12747,12734,12728]],[[12753,12735,12734]],[[3041,12758,3214]],[[3041,12686,12759]],[[12723,12742,12717]],[[12722,12748,12742]],[[3044,12746,12670]],[[3044,12745,12746]],[[12674,12723,12699]],[[12674,12669,12723]],[[12744,12751,12737]],[[12749,12754,12751]],[[12758,12725,3214]],[[12758,12740,12725]],[[12754,12730,12737]],[[3044,3043,12730]],[[3044,12754,12749]],[[3044,12730,12754]],[[12735,12731,12729]],[[12730,3043,12731]],[[12739,12690,12689]],[[12759,12686,12690]],[[12683,12739,12689]],[[12740,12758,12759]],[[12739,12759,12690]],[[12758,3041,12759]],[[12733,12736,12675]],[[12744,12737,12736]],[[12739,12740,12759]],[[12683,12725,12740]],[[12671,12688,12672]],[[12741,12756,12688]],[[12757,12720,12718]],[[12757,12669,12720]],[[12752,12732,12731]],[[12738,12730,12732]],[[12753,12752,12735]],[[12753,12674,12752]],[[3040,12755,12741]],[[12687,12756,12755]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e37180a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12760,12761,12762]],[[12763,12764,12765]],[[12764,3099,12766]],[[3097,12767,3096]],[[3096,12767,3095]],[[3095,12767,3094]],[[3094,12767,3092]],[[3092,12767,3091]],[[3091,12767,3090]],[[12768,12769,12770]],[[12771,12772,12766]],[[12773,12766,12774]],[[12775,12553,12776]],[[12767,3098,12764]],[[12764,3098,3099]],[[12762,12774,12766]],[[12766,3099,12762]],[[12770,12777,12778]],[[12779,12780,12781]],[[12782,12783,12780]],[[3056,3090,12767]],[[12784,12785,12762]],[[12784,12783,12785]],[[12778,12783,12784]],[[12764,12786,12767]],[[12774,12762,12785]],[[3099,12553,12762]],[[12785,12782,12774]],[[12785,12783,12782]],[[12782,12780,12774]],[[12766,12772,12765]],[[12779,12773,12774]],[[12787,12781,12772]],[[12762,12761,12784]],[[12762,12553,12760]],[[11645,12775,12776]],[[12761,12770,12778]],[[12774,12780,12779]],[[12788,3056,12786]],[[12787,12772,12771]],[[12783,3056,12772]],[[12773,12771,12766]],[[12773,12779,12781]],[[12775,12760,12553]],[[12775,11645,12768]],[[12775,12768,12760]],[[12769,12777,12770]],[[3056,12777,11645]],[[3056,12783,12777]],[[12760,12770,12761]],[[12760,12768,12770]],[[12761,12778,12784]],[[12777,12783,12778]],[[12772,12789,12765]],[[12788,12786,12790]],[[12789,12763,12765]],[[12763,12788,12790]],[[12765,12764,12766]],[[12790,12786,12764]],[[11645,12769,12768]],[[11645,12777,12769]],[[12763,12790,12764]],[[12763,12789,12788]],[[12772,12788,12789]],[[12772,3056,12788]],[[3056,12767,12786]],[[3097,3098,12767]],[[12783,12781,12780]],[[12783,12772,12781]],[[12773,12787,12771]],[[12773,12781,12787]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e39d73d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12791,12792,12793]],[[12794,12792,12795]],[[12792,12794,12796]],[[12797,12798,12799]],[[12793,12792,12796]],[[12800,12801,12797]],[[12802,12803,12804]],[[12805,12793,12806]],[[12806,12793,12796]],[[12807,12808,12809]],[[12806,12810,12805]],[[12801,12798,12797]],[[12796,12811,12807]],[[12811,12794,12795]],[[12812,12813,12814]],[[12795,12792,12791]],[[12813,12797,12799]],[[12804,12815,12816]],[[12813,12812,12797]],[[12817,12797,12812]],[[12814,12813,12799]],[[12814,12803,12812]],[[12818,12795,12808]],[[12811,12796,12794]],[[12818,12811,12795]],[[12807,12799,12796]],[[12807,12814,12799]],[[12803,12809,12804]],[[12807,12809,12814]],[[12809,12815,12804]],[[12819,12820,12821]],[[12822,12821,12810]],[[12817,12823,12824]],[[12822,12825,12826]],[[12818,12807,12811]],[[12818,12808,12807]],[[12815,12805,12810]],[[12810,12798,12801]],[[12814,12809,12803]],[[12808,12815,12809]],[[12802,12817,12812]],[[12823,12820,12819]],[[12808,12805,12815]],[[12808,12795,12791]],[[12800,12827,12828]],[[12820,12804,12816]],[[12822,12826,12828]],[[12826,12810,12801]],[[12823,12802,12804]],[[12812,12803,12802]],[[12826,12801,12828]],[[12826,12825,12810]],[[12827,12800,12797]],[[12828,12801,12800]],[[12827,12823,12819]],[[12816,12815,12810]],[[12822,12810,12825]],[[12806,12798,12810]],[[12821,12816,12810]],[[12821,12820,12816]],[[12824,12823,12827]],[[12817,12802,12823]],[[12797,12824,12827]],[[12797,12817,12824]],[[12822,12819,12821]],[[12823,12804,12820]],[[12828,12819,12822]],[[12828,12827,12819]],[[12805,12791,12793]],[[12805,12808,12791]],[[12806,12829,12798]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3a4cc7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12830,12831,12832]],[[12833,12834,12835]],[[12836,12837,12838]],[[12839,12831,12840]],[[12841,12836,12842]],[[12835,12831,12843]],[[12844,12845,12830]],[[12838,12837,12846]],[[12840,12846,12839]],[[12837,12839,12846]],[[12836,12839,12837]],[[12841,12831,12839]],[[12830,12843,12831]],[[12845,12844,12833]],[[12845,12835,12843]],[[12834,12840,12835]],[[12842,12844,12832]],[[12847,12838,12846]],[[12833,12848,12847]],[[12847,12846,12834]],[[12835,12840,12831]],[[12834,12846,12840]],[[12842,12836,12838]],[[12841,12839,12836]],[[12833,12847,12834]],[[12848,12838,12847]],[[12844,12830,12832]],[[12845,12843,12830]],[[12842,12848,12844]],[[12842,12838,12848]],[[12845,12833,12835]],[[12844,12848,12833]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3ae885-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12849,12850,12851]],[[12852,12850,12849]],[[12853,12852,12849]],[[12854,12853,12849]],[[12855,12854,12849]],[[12856,12855,12849]],[[12857,12856,12849]],[[12858,12857,12849]],[[12859,12858,12849]],[[12849,12860,12861]],[[12862,12863,12849]],[[12864,12862,12849]],[[12865,12864,12849]],[[12866,12865,12849]],[[12867,12866,12849]],[[12868,12867,12849]],[[12869,12868,12849]],[[12870,12869,12849]],[[12871,12870,12849]],[[12872,12871,12849]],[[12873,12872,12849]],[[12874,12873,12849]],[[12849,12851,12875]],[[12876,12877,12849]],[[12878,12876,12861]],[[12879,12878,12861]],[[12880,12879,12861]],[[12881,12860,12882]],[[12883,12861,12884]],[[12884,12861,12885]],[[12885,12861,12886]],[[12886,12861,12887]],[[12849,12877,12874]],[[12888,12861,12889]],[[12889,12861,12890]],[[12890,12861,12881]],[[12891,12890,12881]],[[12892,12891,12881]],[[12893,12892,12881]],[[12894,12893,12881]],[[12895,12894,12881]],[[12896,12895,12881]],[[12897,12881,12898]],[[12898,12881,12899]],[[12900,12881,12882]],[[12901,12899,12881]],[[12902,12901,12881]],[[12900,12902,12881]],[[12903,12849,12875]],[[12904,12905,12882]],[[12906,12904,12882]],[[12907,12906,12882]],[[12908,12907,12882]],[[12909,12908,12882]],[[12910,12909,12882]],[[12882,12860,12911]],[[12912,12882,12913]],[[12913,12882,12914]],[[12914,12882,12915]],[[12915,12882,12916]],[[12917,12915,12916]],[[12918,12917,12916]],[[12919,12918,12916]],[[12916,12882,12911]],[[12920,12921,12916]],[[12922,12920,12916]],[[12923,12922,12916]],[[12924,12923,12916]],[[12925,12926,12916]],[[12916,12926,12924]],[[12925,12927,12926]],[[12925,12928,12927]],[[12925,12929,12928]],[[12925,12930,12929]],[[12911,12860,12849]],[[12931,12925,12932]],[[12932,12925,12933]],[[12933,12925,12934]],[[12934,12925,12935]],[[12935,12911,12936]],[[12936,12911,12937]],[[12937,12911,12938]],[[12938,12911,12939]],[[12939,12911,12940]],[[12940,12911,12941]],[[12941,12911,12942]],[[12942,12911,12903]],[[12903,12911,12849]],[[12905,12900,12882]],[[12888,12887,12861]],[[12943,12861,12883]],[[12943,12880,12861]],[[12944,12882,12912]],[[12944,12910,12882]],[[12945,12925,12931]],[[12925,12946,12930]],[[12935,12925,12911]],[[12945,12946,12925]],[[12876,12849,12861]],[[12863,12859,12849]],[[12925,12916,12911]],[[12921,12919,12916]],[[12896,12881,12897]],[[12861,12860,12881]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3bd29c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12947,12948,12949]],[[12950,12951,12952]],[[12953,12954,12955]],[[12954,12956,12957]],[[12958,12957,12956]],[[12949,12959,12960]],[[12951,12961,12955]],[[12962,12963,12950]],[[12961,12951,12963]],[[12952,12947,12964]],[[12952,12964,12965]],[[12947,12949,12964]],[[12959,12966,12960]],[[12948,12957,12966]],[[12967,12962,12950]],[[12965,12963,12962]],[[12968,12967,12952]],[[12969,12951,12950]],[[12961,12953,12955]],[[12954,12957,12955]],[[12961,12970,12953]],[[12961,12971,12956]],[[12948,12972,12949]],[[12948,12966,12972]],[[12972,12959,12949]],[[12972,12966,12959]],[[12949,12960,12971]],[[12966,12957,12960]],[[12960,12973,12974]],[[12960,12957,12973]],[[12965,12968,12952]],[[12965,12962,12968]],[[12975,12954,12953]],[[12956,12971,12958]],[[12952,12967,12950]],[[12968,12962,12967]],[[12975,12956,12954]],[[12975,12961,12956]],[[12963,12969,12950]],[[12963,12951,12969]],[[12974,12958,12971]],[[12973,12957,12958]],[[12970,12975,12953]],[[12970,12961,12975]],[[12960,12974,12971]],[[12973,12958,12974]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3c6f5d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12976,9866,9872]],[[12977,9867,10357]],[[10356,9875,12978]],[[12979,12980,12981]],[[12982,12980,9875]],[[12976,9997,9866]],[[12983,12982,12984]],[[12985,12981,12986]],[[12983,12984,12987]],[[12988,12989,12990]],[[12991,12992,12983]],[[12993,12994,12995]],[[12991,12983,12996]],[[12995,12994,9872]],[[12997,12980,12998]],[[12999,13000,13001]],[[12982,12983,12992]],[[13002,12988,12990]],[[13003,13002,12992]],[[13004,13005,13006]],[[13003,12991,12996]],[[13003,12992,12991]],[[12989,12996,13007]],[[12987,13008,12996]],[[10356,13009,9875]],[[13010,13008,13011]],[[13012,13013,13010]],[[13013,10356,13010]],[[13014,12978,13015]],[[9875,9867,12978]],[[12996,12983,12987]],[[13016,9875,13010]],[[13017,13018,13016]],[[13017,13008,13018]],[[13019,13020,13005]],[[12989,13021,12996]],[[10356,12996,13008]],[[13005,9998,12985]],[[13022,12979,12985]],[[13004,12997,13005]],[[12993,12995,9872]],[[12994,12985,9998]],[[13011,13017,13016]],[[13011,13008,13017]],[[9998,13023,9872]],[[13023,9997,12976]],[[13000,13007,13020]],[[13005,13007,9998]],[[13024,13025,12990]],[[13024,13007,13025]],[[10356,13014,10357]],[[13015,9867,12977]],[[13025,12999,12990]],[[13025,13007,13000]],[[12988,13002,13021]],[[13021,13002,13003]],[[12988,13021,12989]],[[13003,12996,13021]],[[12985,12979,12981]],[[12986,13026,13006]],[[12990,12982,12992]],[[13026,13004,13006]],[[12997,12998,13005]],[[12998,13027,13019]],[[12999,13001,12980]],[[13027,13001,13020]],[[13028,12982,13018]],[[13018,12982,13016]],[[13016,12982,9875]],[[12992,13002,12990]],[[13008,12984,13028]],[[13008,12987,12984]],[[13022,13029,12993]],[[9872,9875,12993]],[[13016,13010,13011]],[[10356,13008,13010]],[[9875,13012,13010]],[[13009,10356,13013]],[[12993,13029,12994]],[[12993,13030,13022]],[[13026,12980,12997]],[[12980,12982,12990]],[[13009,13012,9875]],[[13009,13013,13012]],[[13008,13028,13018]],[[12984,12982,13028]],[[12985,12986,13006]],[[13026,12997,13004]],[[12981,13026,12986]],[[12981,12980,13026]],[[9872,12994,9998]],[[13029,12985,12994]],[[10357,13015,12977]],[[12978,9867,13015]],[[10357,13014,13015]],[[10356,12978,13014]],[[13006,13005,12985]],[[13007,10356,9998]],[[12998,13019,13005]],[[12998,12980,13027]],[[13020,13007,13005]],[[12996,10356,13007]],[[13024,12989,13007]],[[13024,12990,12989]],[[13001,13000,13020]],[[12999,13025,13000]],[[9872,13023,12976]],[[9998,9997,13023]],[[12979,13022,13030]],[[12985,13029,13022]],[[12999,12980,12990]],[[12993,9875,12980]],[[12993,12979,13030]],[[12993,12980,12979]],[[13019,13027,13020]],[[12980,13001,13027]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3c6f63-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8da49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13031,13032,13033]],[[13034,13035,13036]],[[13037,13038,13039]],[[13040,13041,13042]],[[13037,13043,13038]],[[13044,13041,13040]],[[13045,13046,13047]],[[13048,13049,13050]],[[13051,13043,13052]],[[13051,13038,13043]],[[13053,13052,13037]],[[13043,13037,13052]],[[13044,13048,13041]],[[13044,13049,13048]],[[13054,13055,13053]],[[13050,13037,13041]],[[13049,13056,13050]],[[13053,13037,13050]],[[13057,13058,13049]],[[13059,13060,13061]],[[13034,13062,13035]],[[13051,13052,13055]],[[13056,13049,13054]],[[13035,13046,13031]],[[13040,13063,13064]],[[13065,13033,13066]],[[13067,13068,13069]],[[13067,13032,13070]],[[13071,13067,13069]],[[13072,13046,13068]],[[13071,13073,13066]],[[13074,13066,13073]],[[13067,13071,13032]],[[13075,13074,13039]],[[13076,13036,13033]],[[13046,13072,13031]],[[13032,13066,13033]],[[13075,13038,13051]],[[13073,13039,13074]],[[13077,13037,13039]],[[13064,13057,13044]],[[13078,13058,13057]],[[13079,13080,13062]],[[13081,13045,13047]],[[13032,13071,13066]],[[13077,13039,13073]],[[13069,13063,13040]],[[13064,13044,13040]],[[13042,13069,13040]],[[13068,13046,13045]],[[13063,13045,13064]],[[13063,13068,13045]],[[13035,13047,13046]],[[13075,13061,13076]],[[13071,13069,13042]],[[13068,13063,13069]],[[13054,13053,13056]],[[13055,13052,13053]],[[13057,13049,13044]],[[13058,13080,13079]],[[13058,13079,13049]],[[13079,13055,13054]],[[13078,13080,13058]],[[13064,13045,13080]],[[13038,13075,13039]],[[13065,13066,13074]],[[13055,13059,13061]],[[13076,13074,13075]],[[13067,13070,13072]],[[13032,13031,13072]],[[13076,13065,13074]],[[13076,13033,13065]],[[13061,13034,13076]],[[13060,13082,13034]],[[13061,13060,13034]],[[13081,13080,13045]],[[13067,13072,13068]],[[13070,13032,13072]],[[13059,13082,13060]],[[13079,13054,13049]],[[13059,13079,13082]],[[13059,13055,13079]],[[13036,13035,13031]],[[13034,13082,13062]],[[13051,13061,13075]],[[13051,13055,13061]],[[13033,13036,13031]],[[13076,13034,13036]],[[13048,13050,13041]],[[13056,13053,13050]],[[13035,13062,13047]],[[13062,13080,13081]],[[13064,13078,13057]],[[13064,13080,13078]],[[13047,13062,13081]],[[13082,13079,13062]],[[13077,13071,13042]],[[13077,13073,13071]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d0b1b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ac49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11806,13083,11805]],[[13084,13085,13086]],[[11805,13087,13088]],[[13089,13090,13091]],[[13092,13090,13093]],[[13089,11802,13093]],[[13085,11798,13091]],[[11800,11799,13084]],[[11798,13085,11799]],[[13094,11806,11800]],[[13095,11806,13096]],[[13097,13083,11806]],[[13086,13098,13094]],[[13086,13097,13095]],[[13099,13087,11805]],[[13083,13090,13088]],[[13089,13093,13090]],[[11802,13092,13093]],[[13100,13092,11802]],[[13100,13088,13092]],[[11798,13089,13091]],[[11798,11802,13089]],[[13086,13094,11800]],[[13096,11806,13094]],[[13086,13095,13098]],[[13097,11806,13095]],[[13098,13096,13094]],[[13098,13095,13096]],[[11805,13100,11802]],[[13088,13090,13092]],[[11805,13088,13100]],[[13087,13101,13088]],[[13083,13101,11805]],[[13101,13087,13099]],[[11805,13101,13099]],[[13083,13088,13101]],[[11800,13084,13086]],[[11799,13085,13084]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d3258-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12964,12949,12965]],[[13102,12963,12965]],[[12949,12971,12965]],[[13102,12971,12961]],[[12961,13103,13102]],[[12961,12963,13103]],[[13102,13104,12963]],[[13103,12963,13104]],[[12971,13102,12965]],[[13103,13104,13102]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d5974-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13105,1021,1019]],[[13106,1019,1007]],[[1006,13107,1007]],[[13107,13108,13106]],[[1007,13107,13106]],[[1006,1021,13107]],[[13106,13108,1019]],[[13107,1021,13108]],[[13108,13105,1019]],[[13108,1021,13105]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3f2ebd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13109,13110,13111]],[[13112,13113,13114]],[[13112,13115,13113]],[[13116,13117,13118]],[[13116,13119,13120]],[[13110,13121,13122]],[[13123,13116,13120]],[[13124,13125,13111]],[[13126,13123,13127]],[[13110,13122,13128]],[[13119,13121,13120]],[[13129,13130,13131]],[[13132,13118,13117]],[[13133,13119,13134]],[[13113,13115,13126]],[[13116,13118,13134]],[[13119,13124,13121]],[[13119,13133,13135]],[[13110,13114,13113]],[[13110,13127,13121]],[[13136,13137,13131]],[[13115,13117,13126]],[[13136,13115,13137]],[[13132,13117,13115]],[[13110,13128,13111]],[[13122,13121,13124]],[[13136,13132,13115]],[[13118,13138,13134]],[[13136,13138,13132]],[[13133,13139,13135]],[[13137,13140,13131]],[[13137,13115,13112]],[[13140,13141,13129]],[[13140,13137,13112]],[[13127,13123,13120]],[[13126,13117,13123]],[[13121,13127,13120]],[[13113,13126,13127]],[[13141,13112,13114]],[[13141,13140,13112]],[[13109,13111,13125]],[[13128,13124,13111]],[[13119,13116,13134]],[[13123,13117,13116]],[[13122,13124,13128]],[[13135,13125,13124]],[[13132,13138,13118]],[[13136,13139,13138]],[[13140,13129,13131]],[[13141,13114,13130]],[[13131,13130,13125]],[[13129,13141,13130]],[[13114,13110,13109]],[[13113,13127,13110]],[[13130,13109,13125]],[[13130,13114,13109]],[[13138,13133,13134]],[[13138,13139,13133]],[[13119,13135,13124]],[[13139,13125,13135]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e404005-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13142,13143,13144]],[[13145,12489,13146]],[[13147,13148,13149]],[[12514,13150,13151]],[[13152,13153,13143]],[[13151,12506,12514]],[[13154,13153,12506]],[[12506,13153,12493]],[[13155,13156,13157]],[[13158,13159,13160]],[[13156,13161,13162]],[[13147,13149,13163]],[[13159,13158,13161]],[[13164,13153,13152]],[[13165,13158,13152]],[[13165,13161,13158]],[[13166,13157,13143]],[[13149,13148,13152]],[[13157,13152,13143]],[[13163,13149,13152]],[[13166,13155,13157]],[[13147,13161,13148]],[[13157,13163,13152]],[[13157,13162,13167]],[[12493,13159,13161]],[[12493,13153,13168]],[[13158,13160,13152]],[[13159,12493,13168]],[[13160,13168,13164]],[[13160,13159,13168]],[[13160,13164,13152]],[[13168,13153,13164]],[[13169,13156,13155]],[[13156,12493,13161]],[[13170,13169,13155]],[[12489,13156,13169]],[[13157,13156,13162]],[[12489,12493,13156]],[[13157,13167,13163]],[[13162,13161,13167]],[[13171,13170,13155]],[[12489,13169,13170]],[[13165,13148,13161]],[[13165,13152,13148]],[[13150,13154,13172]],[[13173,12506,13172]],[[13174,12514,13175]],[[13146,13143,13176]],[[13174,13177,13178]],[[13172,12506,13151]],[[13178,13177,13150]],[[13144,13154,13150]],[[13151,13150,13172]],[[13177,13144,13150]],[[13179,13145,13176]],[[13180,13166,13146]],[[13177,13174,13144]],[[13175,13181,13142]],[[13174,13142,13144]],[[13176,13143,13142]],[[13180,13171,13166]],[[12489,13170,13171]],[[13146,13166,13143]],[[13171,13155,13166]],[[13181,13179,13176]],[[12514,12489,13179]],[[13174,13175,13142]],[[12514,13179,13175]],[[12514,13178,13150]],[[12514,13174,13178]],[[12489,13180,13146]],[[12489,13171,13180]],[[13167,13147,13163]],[[13167,13161,13147]],[[13154,13173,13172]],[[13154,12506,13173]],[[13176,13145,13146]],[[13179,12489,13145]],[[13142,13181,13176]],[[13175,13179,13181]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e404008-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13182,13183,13184]],[[13185,13186,13187]],[[13182,13184,13185]],[[13182,13185,13187]],[[13184,13186,13185]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e415141-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13188,13189,13190]],[[13191,13190,13192]],[[13193,13194,13192]],[[13195,13189,13188]],[[13191,13196,13197]],[[13195,13198,13189]],[[13194,13191,13192]],[[13194,13196,13191]],[[13197,13196,13199]],[[13200,13201,13198]],[[13197,13199,13188]],[[13198,13202,13189]],[[13196,13198,13199]],[[13196,13200,13198]],[[13199,13195,13188]],[[13199,13198,13195]],[[13190,13197,13188]],[[13190,13191,13197]],[[13194,13200,13196]],[[13194,13193,13200]],[[13193,13201,13200]],[[13202,13198,13201]],[[13202,13193,13192]],[[13202,13201,13193]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e41ee11-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13203,13204,13205]],[[13203,13205,13206]],[[13207,13203,13206]],[[13207,13204,13203]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4289b7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13208,13209,13210]],[[13211,13212,13210]],[[13213,13214,13211]],[[13215,13213,13216]],[[13217,13211,13210]],[[13218,13215,13216]],[[13212,13219,13208]],[[13212,13214,13215]],[[13212,13215,13219]],[[13214,13213,13215]],[[13212,13208,13210]],[[13209,13220,13210]],[[13221,13213,13217]],[[13214,13212,13211]],[[13219,13209,13208]],[[13219,13215,13218]],[[13217,13213,13211]],[[13218,13220,13209]],[[13221,13216,13213]],[[13221,13220,13216]],[[13220,13218,13216]],[[13209,13219,13218]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e43e94c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11699,13222,13223]],[[11704,13224,13225]],[[11707,13226,13227]],[[11709,13228,13229]],[[11711,13230,13231]],[[11713,13232,13233]],[[11716,13234,13235]],[[11717,13236,13237]],[[11719,13238,13239]],[[13240,11745,11746]],[[11747,11748,13241]],[[13242,13243,13244]],[[13245,13242,13244]],[[13246,13245,13244]],[[13247,13246,13244]],[[13248,13247,13244]],[[13249,13248,13250]],[[13251,13249,13250]],[[13248,13244,13250]],[[13243,13252,13253]],[[13243,13254,13244]],[[13243,13255,13254]],[[13243,13253,13255]],[[13252,13256,13253]],[[13252,13257,13256]],[[13252,13240,13257]],[[13257,13240,13258]],[[13252,11737,13240]],[[13240,11740,11741]],[[11668,11667,13259]],[[13260,13240,13261]],[[13261,13240,13262]],[[13262,13240,13263]],[[13263,13240,13241]],[[13241,11748,13264]],[[13264,11750,13265]],[[13265,11752,13266]],[[13266,11753,13267]],[[13267,11755,13268]],[[13268,11757,13269]],[[13269,11668,13259]],[[11751,11752,13265]],[[11758,11668,13269]],[[11728,13270,13271]],[[11757,11758,13269]],[[11729,13272,13273]],[[11756,11757,13268]],[[11754,11755,13267]],[[13274,13240,13260]],[[11731,13275,13276]],[[13268,11755,11756]],[[13252,13275,11732]],[[13277,11731,13276]],[[13277,13272,11730]],[[13278,11729,13273]],[[11754,13267,11753]],[[13266,11752,11753]],[[13278,13270,11728]],[[13279,11727,13271]],[[11726,13280,13281]],[[13265,11750,11751]],[[13279,13280,11726]],[[11748,11749,13264]],[[11750,13264,11749]],[[13282,11725,13281]],[[13282,13283,11724]],[[13284,11724,13283]],[[11722,13285,13286]],[[13241,13240,11747]],[[13284,13285,11723]],[[13287,11722,13286]],[[11746,11747,13240]],[[13288,11721,13287]],[[11720,13289,13238]],[[11745,13240,11744]],[[13288,13289,11720]],[[13240,11742,11743]],[[11743,11744,13240]],[[13290,11719,13239]],[[11718,13291,13236]],[[11742,13240,11741]],[[13290,13291,11718]],[[11738,11739,13240]],[[11740,13240,11739]],[[13292,11717,13237]],[[11715,13293,13234]],[[13240,11737,11738]],[[13292,13293,11715]],[[11735,11736,13252]],[[11737,13252,11736]],[[13294,11716,13235]],[[11714,13295,13232]],[[13252,11734,11735]],[[13294,13295,11714]],[[11732,11733,13252]],[[11734,13252,11733]],[[13296,11713,13233]],[[13296,13297,11712]],[[13275,11731,11732]],[[13297,13230,11712]],[[11729,11730,13272]],[[11731,13277,11730]],[[13298,11711,13231]],[[13298,13299,11710]],[[13278,11728,11729]],[[13299,13228,11710]],[[11726,11727,13279]],[[11728,13271,11727]],[[13300,11708,13229]],[[13300,13301,11708]],[[13281,11725,11726]],[[13301,13226,11707]],[[11723,11724,13284]],[[11725,13282,11724]],[[13302,11706,13227]],[[13302,13303,11705]],[[13285,11722,11723]],[[13303,13224,11705]],[[11720,11721,13288]],[[11722,13287,11721]],[[13304,11703,13225]],[[11702,13305,13306]],[[13238,11719,11720]],[[13304,13305,11703]],[[11717,11718,13236]],[[11719,13290,11718]],[[13307,11701,13306]],[[13307,13308,11700]],[[13292,11715,11717]],[[13308,13222,11700]],[[11714,11716,13294]],[[11715,13234,11716]],[[13309,11698,13223]],[[13232,11713,11714]],[[11696,13310,13311]],[[13296,11712,11713]],[[13309,13310,11697]],[[11710,11711,13298]],[[11712,13230,11711]],[[13312,11694,13311]],[[11691,13313,13314]],[[13228,11709,11710]],[[13312,13313,11693]],[[11709,13229,11708]],[[11706,11707,13227]],[[11708,13301,11707]],[[13315,11690,13314]],[[13302,11705,11706]],[[11687,13316,13317]],[[13224,11704,11705]],[[13315,13316,11688]],[[11702,11703,13305]],[[11704,13225,11703]],[[11701,11702,13306]],[[13318,11685,13317]],[[13307,11700,11701]],[[13222,11699,11700]],[[13318,13319,11683]],[[13223,11698,11699]],[[13309,11697,11698]],[[13310,11696,11697]],[[13311,11695,11696]],[[13319,13320,11681]],[[13311,11694,11695]],[[13312,11693,11694]],[[13313,11692,11693]],[[13313,11691,11692]],[[13320,13321,11679]],[[13314,11690,11691]],[[13315,11689,11690]],[[13315,11688,11689]],[[13316,11687,11688]],[[13317,11686,11687]],[[13321,13322,11677]],[[13317,11685,11686]],[[13318,11684,11685]],[[13318,11683,11684]],[[13319,11682,11683]],[[13322,13323,11675]],[[13319,11681,11682]],[[13320,11680,11681]],[[13320,11679,11680]],[[13321,11678,11679]],[[13323,13324,11673]],[[13321,11677,11678]],[[13322,11676,11677]],[[13322,11675,11676]],[[13323,11674,11675]],[[13324,13325,11671]],[[13323,11673,11674]],[[13324,11672,11673]],[[13324,11671,11672]],[[13325,11670,11671]],[[13325,13259,11669]],[[13325,11669,11670]],[[13259,11667,11669]],[[13326,13240,13274]],[[13326,13258,13240]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e44d366-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3117,1779,11660]],[[13327,13328,13329]],[[13330,13331,13332]],[[13331,13333,13332]],[[13334,13335,13336]],[[13337,1369,1619]],[[13338,13339,13340]],[[13341,13342,13343]],[[13344,13345,13346]],[[13347,1778,7803]],[[13348,13349,13350]],[[13351,13350,13352]],[[13353,7803,11610]],[[3148,3149,1779]],[[3157,3148,1779]],[[3147,3124,3148]],[[3151,3147,3148]],[[3144,3146,3147]],[[3142,3144,3147]],[[3136,3142,3147]],[[3138,3140,3142]],[[3136,3138,3142]],[[3151,3136,3147]],[[3131,3151,3148]],[[3131,3132,3151]],[[3131,3133,3132]],[[3157,3131,3148]],[[3157,3129,3131]],[[3157,3126,3129]],[[3157,3127,3126]],[[3157,3155,3127]],[[3116,3157,1779]],[[3116,3119,3157]],[[3116,3120,3119]],[[3116,3118,3120]],[[3117,3116,1779]],[[1778,11660,1779]],[[13354,13355,13356]],[[13357,13358,13359]],[[13360,13361,11660]],[[13362,13356,7803]],[[13363,13364,13365]],[[13366,13367,13368]],[[13369,13370,13371]],[[13372,13373,13374]],[[13347,13359,1778]],[[13375,13376,13377]],[[13378,13379,13380]],[[13381,13359,13347]],[[13382,13347,7803]],[[13383,13384,13385]],[[13386,13387,13388]],[[13389,13390,13382]],[[13391,13392,13393]],[[13394,13395,13396]],[[13397,13398,13399]],[[13400,13359,13381]],[[13401,13402,13379]],[[13385,13392,13403]],[[13404,13379,13378]],[[13402,13380,13379]],[[13405,13378,13380]],[[13406,13407,13408]],[[13392,13391,13409]],[[13410,13411,13412]],[[13413,13414,13415]],[[13416,13372,13374]],[[13417,13386,13388]],[[13418,13419,13420]],[[13421,13422,13423]],[[13394,13424,13375]],[[13425,13383,13426]],[[13427,13428,13429]],[[13388,13387,13380]],[[13430,13431,13432]],[[13433,13434,13435]],[[13436,13437,13438]],[[13439,13440,13441]],[[13442,13404,13378]],[[13383,13403,13426]],[[13388,13380,13443]],[[13374,13431,13405]],[[13444,13445,13401]],[[13426,13403,13423]],[[13383,13385,13403]],[[13446,13384,13425]],[[13412,13446,13425]],[[13402,13443,13380]],[[13447,13424,13448]],[[13449,13333,13331]],[[13450,13451,13452]],[[13453,13454,13455]],[[13456,13445,13444]],[[13457,13458,13459]],[[13460,13461,13462]],[[13463,13457,13459]],[[13385,13393,13392]],[[13464,13465,13466]],[[13417,13388,13443]],[[13467,13468,13469]],[[13374,13405,13416]],[[13470,13471,13391]],[[13391,13393,13470]],[[13425,13384,13383]],[[13472,13473,13474]],[[13475,13476,13477]],[[13333,13478,13332]],[[13479,13480,13481]],[[13409,13423,13403]],[[13387,13386,13481]],[[13387,13405,13380]],[[13463,13408,13457]],[[13409,13395,13423]],[[13446,13482,13384]],[[13389,13473,13429]],[[13390,13389,13428]],[[13390,13397,13382]],[[13483,13468,13467]],[[13484,13485,13486]],[[13458,13487,13459]],[[13407,13471,13470]],[[13450,13452,13488]],[[13489,13490,13478]],[[13411,13398,13412]],[[13421,13423,13395]],[[13397,13446,13398]],[[13482,13428,13427]],[[13491,13449,13331]],[[13491,12553,13490]],[[13449,13489,13333]],[[13490,12553,13478]],[[13345,13492,13493]],[[13494,13495,13496]],[[13347,13399,13381]],[[13347,13397,13399]],[[13417,13497,13498]],[[13480,13463,13387]],[[13457,13408,13407]],[[13480,13499,13408]],[[13407,13406,13471]],[[13406,13396,13395]],[[13500,13330,13478]],[[10000,12553,13491]],[[13482,13390,13428]],[[13397,13347,13382]],[[13391,13406,13501]],[[13408,13396,13406]],[[13502,13503,13440]],[[13504,13505,13394]],[[13446,13412,13398]],[[13419,13506,13507]],[[13508,13509,13510]],[[13511,13512,13513]],[[13508,13514,13509]],[[13515,13516,13517]],[[13345,13518,13492]],[[13510,13509,13519]],[[13415,13520,13521]],[[13522,13523,13524]],[[13525,13521,13520]],[[13353,13526,13527]],[[13415,13521,13528]],[[13513,13512,13515]],[[13489,13478,13333]],[[13529,13530,13531]],[[13479,13417,13498]],[[13504,13394,13396]],[[13374,13373,13431]],[[13469,13454,13373]],[[13532,13523,13522]],[[13355,13354,13533]],[[13399,13411,13534]],[[13535,13357,13359]],[[13536,13537,13538]],[[13539,13461,13540]],[[13400,13535,13359]],[[13541,13542,13360]],[[13543,13454,13469]],[[13455,13369,13453]],[[13544,13545,13455]],[[13545,13370,13369]],[[13397,13482,13446]],[[13397,13390,13482]],[[13479,13499,13480]],[[13396,13408,13499]],[[13417,13479,13481]],[[13497,13503,13546]],[[13547,13495,13548]],[[13549,13512,13511]],[[13550,13346,13348]],[[13494,13551,13548]],[[13552,13440,13553]],[[13554,13555,13556]],[[13474,13465,13472]],[[13557,13354,13362]],[[7803,13355,13473]],[[7803,13356,13355]],[[13472,13429,13473]],[[13428,13389,13429]],[[13385,13427,13558]],[[13384,13482,13427]],[[13427,13472,13558]],[[13427,13429,13472]],[[13559,13539,13437]],[[13353,13527,7803]],[[13414,13560,13415]],[[13523,13561,13513]],[[13515,13562,13523]],[[13563,13371,13370]],[[13536,13538,13353]],[[13438,13564,13527]],[[13536,13353,11610]],[[13538,13537,13565]],[[13350,13349,11610]],[[13348,13566,13567]],[[13406,13395,13501]],[[13568,13424,11660]],[[13392,13409,13403]],[[13501,13395,13409]],[[13569,13570,13571]],[[13572,13363,13548]],[[13573,13574,13570]],[[13435,13553,13433]],[[13518,13569,13551]],[[13571,13364,13363]],[[13575,13510,13549]],[[13519,13439,13516]],[[13511,13576,13577]],[[13510,13575,13578]],[[13579,13496,13495]],[[13551,13572,13548]],[[13535,13534,13580]],[[13399,13398,13411]],[[13387,13463,13416]],[[13480,13408,13463]],[[13480,13387,13481]],[[13416,13405,13387]],[[13581,13582,1375]],[[13583,13584,13582]],[[13563,13524,13562]],[[13561,13521,13576]],[[13522,13524,13462]],[[13523,13562,13524]],[[13460,13545,13544]],[[13462,13370,13545]],[[13459,13372,13416]],[[13469,13373,13372]],[[13549,13519,13512]],[[13516,13441,13517]],[[13577,13575,13549]],[[13434,13585,13435]],[[13522,13462,13461]],[[13524,13370,13462]],[[13362,13354,13356]],[[13485,13469,13468]],[[13586,13533,13486]],[[13465,13587,13533]],[[13365,13588,13435]],[[13553,13440,13514]],[[13589,13590,13552]],[[13585,13365,13435]],[[13578,13434,13433]],[[13514,13440,13509]],[[13435,13588,13553]],[[13590,13502,13552]],[[13571,13591,13364]],[[13592,13502,13590]],[[13537,13593,13414]],[[13594,13496,13579]],[[13595,13564,13438]],[[13543,13544,13455]],[[13540,13595,13437]],[[13460,13462,13545]],[[13596,13597,13598]],[[1369,13599,13597]],[[13518,13551,13492]],[[13492,13600,13493]],[[13594,13566,13600]],[[13600,13492,13494]],[[13525,13601,13576]],[[13520,13560,13567]],[[13434,13548,13585]],[[13572,13571,13363]],[[13602,13603,13604]],[[13346,13566,13348]],[[13329,13328,13605]],[[13491,13331,13330]],[[13606,13599,1369]],[[13607,13606,13608]],[[13609,13574,13573]],[[13574,13610,13570]],[[13611,13609,13573]],[[13610,13502,13592]],[[13432,13456,13442]],[[13401,13379,13404]],[[13405,13430,13378]],[[13444,13401,13404]],[[13378,13430,13442]],[[13405,13431,13430]],[[13369,13371,13456]],[[13371,13563,13556]],[[13442,13456,13444]],[[13371,13556,13456]],[[13351,13550,13350]],[[13346,13493,13566]],[[11657,13502,3106]],[[13503,13401,13440]],[[13351,13344,13550]],[[13345,13493,13346]],[[13606,13607,13599]],[[13612,13613,12558]],[[13614,13615,13584]],[[13584,1375,13582]],[[13450,13477,13616]],[[13477,13491,13330]],[[13617,13609,13618]],[[13573,13570,13619]],[[13507,13506,13360]],[[13620,13410,13412]],[[13565,13537,13414]],[[13349,13348,13567]],[[13600,13494,13496]],[[13492,13551,13494]],[[13355,13587,13473]],[[13587,13465,13474]],[[13449,13490,13489]],[[13449,13491,13490]],[[13583,13614,13584]],[[13615,13621,13622]],[[13334,12558,13335]],[[13623,13624,13337]],[[13575,13625,13578]],[[13548,13363,13585]],[[13402,13503,13443]],[[13402,13401,13503]],[[13626,13468,13483]],[[13627,13393,13558]],[[13610,13592,13591]],[[13610,13628,13502]],[[13629,13500,13451]],[[13476,13475,13328]],[[13468,13626,13586]],[[13465,13533,13466]],[[13473,13587,13474]],[[13355,13533,13587]],[[13463,13459,13416]],[[13464,13558,13472]],[[13372,13467,13469]],[[13626,13464,13466]],[[13459,13467,13372]],[[13459,13487,13483]],[[13630,13564,13595]],[[13455,13454,13543]],[[13469,13485,13543]],[[13533,13354,13486]],[[13484,13631,13630]],[[13632,13564,13630]],[[13485,13484,13543]],[[13633,13595,13461]],[[13436,13438,13526]],[[13437,13595,13438]],[[1778,13360,11660]],[[13361,13634,13635]],[[13636,13419,13418]],[[13448,13394,11657]],[[10000,13637,1374]],[[13476,13491,13477]],[[13638,13619,13603]],[[13604,13569,13518]],[[13576,13511,13561]],[[13576,13639,13577]],[[13640,13628,13610]],[[3106,13502,13628]],[[13538,13436,13353]],[[13436,13559,13437]],[[13641,13642,13643]],[[13608,13612,13598]],[[13644,13641,13623]],[[13608,13613,13612]],[[13554,13556,13562]],[[13445,13456,13556]],[[13436,13565,13559]],[[13413,13528,13532]],[[3106,13645,3107]],[[13645,13574,13609]],[[13508,13433,13646]],[[13508,13510,13578]],[[13596,13598,13612]],[[13598,13599,13607]],[[13647,13648,13649]],[[13650,13651,13343]],[[13596,13652,13648]],[[13651,13653,12558]],[[13654,13655,13656]],[[13657,13658,13659]],[[13539,13540,13437]],[[13461,13595,13540]],[[13401,13441,13440]],[[13555,13445,13556]],[[13515,13517,13562]],[[13517,13555,13554]],[[13660,13335,13661]],[[13624,13660,13661]],[[13422,13426,13423]],[[13421,13395,13377]],[[13506,13634,13361]],[[13506,13419,13634]],[[13478,13330,13332]],[[13616,13477,13330]],[[13647,13656,13352]],[[13654,13649,13662]],[[13656,13338,13663]],[[13656,13655,13339]],[[13664,13581,13665]],[[13666,1374,13637]],[[13593,13560,13414]],[[13593,13567,13560]],[[13406,13391,13471]],[[13501,13409,13391]],[[13521,13525,13576]],[[13520,13601,13525]],[[11657,13503,13502]],[[11657,13505,13503]],[[13569,13571,13572]],[[13570,13591,13571]],[[13427,13385,13384]],[[13558,13393,13385]],[[13667,13596,13612]],[[13597,13599,13598]],[[13569,13619,13570]],[[13611,13573,13619]],[[13523,13513,13515]],[[13523,13532,13561]],[[13645,13640,13574]],[[3106,13628,13640]],[[13361,13635,13376]],[[13635,13419,13636]],[[13668,13669,13352]],[[13367,3107,13368]],[[13656,13663,13668]],[[13670,3107,13367]],[[13484,13630,13544]],[[13631,13632,13630]],[[13671,13335,13660]],[[12558,13661,13335]],[[13512,13516,13515]],[[13439,13441,13516]],[[13630,13633,13544]],[[13630,13595,13633]],[[13633,13460,13544]],[[13633,13461,13460]],[[13341,13672,13342]],[[13648,13650,13343]],[[13625,13547,13434]],[[13495,13494,13548]],[[13360,13542,13507]],[[13542,13420,13507]],[[13580,13542,13541]],[[13580,13420,13542]],[[13357,13541,13358]],[[13357,13535,13541]],[[13345,13344,13604]],[[13604,13344,13602]],[[13673,13360,1778]],[[13506,13361,13360]],[[13363,13365,13585]],[[13589,13591,13590]],[[13373,13453,13431]],[[13455,13545,13369]],[[13431,13453,13369]],[[13373,13454,13453]],[[13407,13458,13457]],[[13407,13487,13458]],[[13450,13622,13477]],[[13488,13674,13615]],[[13615,13622,13488]],[[13622,13621,13477]],[[13669,13367,13366]],[[13638,13611,13619]],[[13570,13610,13591]],[[13574,13640,13610]],[[13649,13342,13672]],[[13648,13343,13342]],[[13459,13483,13467]],[[13487,13407,13470]],[[13627,13464,13626]],[[13466,13586,13626]],[[13594,13600,13496]],[[13566,13493,13600]],[[13601,13639,13576]],[[13601,13594,13579]],[[13401,13555,13441]],[[13401,13445,13555]],[[13538,13565,13436]],[[13414,13413,13559]],[[13618,13609,13611]],[[13617,13645,13609]],[[13586,13486,13485]],[[13354,13557,13486]],[[13359,13358,1778]],[[13541,13360,13673]],[[1619,13584,13674]],[[1619,1375,13584]],[[13656,13668,13352]],[[13663,13669,13668]],[[13337,13675,1369]],[[13613,13661,12558]],[[13473,13382,7803]],[[13473,13389,13382]],[[13584,13615,13674]],[[13621,13475,13477]],[[13556,13563,13562]],[[13370,13524,13563]],[[13676,13660,13624]],[[13676,13671,13660]],[[13512,13519,13516]],[[13509,13440,13439]],[[13510,13519,13549]],[[13509,13439,13519]],[[13622,13450,13488]],[[13616,13629,13450]],[[3107,13645,13617]],[[3106,13640,13645]],[[13539,13522,13461]],[[13539,13413,13522]],[[13646,13514,13508]],[[13553,13588,13552]],[[13646,13553,13514]],[[13646,13433,13553]],[[13677,13530,13678]],[[13334,13679,12558]],[[13537,13349,13593]],[[13350,13550,13348]],[[13452,13451,13500]],[[13629,13330,13500]],[[13674,13452,1619]],[[13674,13488,13452]],[[13543,13484,13544]],[[13486,13631,13484]],[[13413,13415,13528]],[[13560,13520,13415]],[[13670,13338,13340]],[[13338,13656,13339]],[[13468,13586,13485]],[[13466,13533,13586]],[[13511,13577,13549]],[[13639,13680,13577]],[[13656,13647,13654]],[[13648,13342,13649]],[[13365,13589,13552]],[[13591,13592,13590]],[[13364,13589,13365]],[[13364,13591,13589]],[[13666,13637,13476]],[[10000,13491,13476]],[[3107,13681,13368]],[[3107,13617,13618]],[[13643,13682,13336]],[[13678,13679,13334]],[[13669,13366,13352]],[[13368,13681,13351]],[[13366,13351,13352]],[[13366,13368,13351]],[[13550,13344,13346]],[[13602,13683,13684]],[[13672,13662,13649]],[[13339,13655,13685]],[[13678,13530,13679]],[[13686,13478,13679]],[[13687,13688,13529]],[[13689,13679,13529]],[[13687,13531,13690]],[[13687,13529,13531]],[[12553,13679,13478]],[[12553,12558,13679]],[[13534,13535,13400]],[[13580,13541,13535]],[[13581,13583,13582]],[[13475,13614,13583]],[[13691,13581,1375]],[[13664,13475,13583]],[[13436,13526,13353]],[[13527,13362,7803]],[[13438,13527,13526]],[[13564,13632,13527]],[[13623,13676,13624]],[[13671,13692,13335]],[[13623,13671,13676]],[[13692,13336,13335]],[[13661,13693,13624]],[[13644,13694,13642]],[[13361,13568,11660]],[[13361,13376,13568]],[[11657,13447,13448]],[[13568,13376,13375]],[[13568,13375,13424]],[[13394,13505,11657]],[[13377,13394,13375]],[[13377,13395,13394]],[[11649,13447,11657]],[[13424,13394,13448]],[[13662,13685,13654]],[[13695,13659,13658]],[[13614,13621,13615]],[[13614,13475,13621]],[[13520,13567,13594]],[[13593,13349,13567]],[[13520,13594,13601]],[[13567,13566,13594]],[[13376,13635,13377]],[[13634,13419,13635]],[[13531,13677,13690]],[[13682,13642,13694]],[[13677,13682,13694]],[[13334,13336,13682]],[[13596,13647,13352]],[[13596,13648,13647]],[[1369,13596,13352]],[[1369,13597,13596]],[[13653,13667,13612]],[[13652,13596,13667]],[[12558,13653,13612]],[[12558,13343,13651]],[[13653,13652,13667]],[[13650,13648,13652]],[[13649,13654,13647]],[[13685,13655,13654]],[[13365,13552,13588]],[[13502,13440,13552]],[[13327,13666,13328]],[[13637,10000,13476]],[[13328,13666,13476]],[[13327,1374,13666]],[[13557,13632,13631]],[[13362,13527,13632]],[[13681,13618,13351]],[[13681,3107,13618]],[[13663,13367,13669]],[[13670,3111,3107]],[[13663,13670,13367]],[[13663,13338,13670]],[[13670,13657,3111]],[[13339,13685,13658]],[[13695,13658,13685]],[[13340,13339,13658]],[[13687,13696,13688]],[[1619,13500,13686]],[[13690,13644,1619]],[[13644,13623,13337]],[[13337,13693,13613]],[[13337,13624,13693]],[[1619,13644,13337]],[[13690,13694,13644]],[[13465,13464,13472]],[[13626,13483,13627]],[[1374,13329,1375]],[[13328,13475,13665]],[[13381,13534,13400]],[[13381,13399,13534]],[[13464,13627,13558]],[[13483,13487,13470]],[[13627,13470,13393]],[[13627,13483,13470]],[[13652,13651,13650]],[[13652,13653,13651]],[[1619,13687,13690]],[[1619,13696,13687]],[[13577,13680,13575]],[[13579,13495,13547]],[[13562,13517,13554]],[[13441,13555,13517]],[[13632,13557,13362]],[[13631,13486,13557]],[[13684,13618,13638]],[[13618,13611,13638]],[[13683,13602,13344]],[[13638,13603,13602]],[[13351,13683,13344]],[[13351,13618,13684]],[[3111,13659,12558]],[[3111,13657,13659]],[[13659,13697,12558]],[[13659,13695,13697]],[[12558,13341,13343]],[[13697,13662,13672]],[[13697,13341,12558]],[[13697,13672,13341]],[[13662,13695,13685]],[[13662,13697,13695]],[[13639,13579,13680]],[[13639,13601,13579]],[[13696,13689,13688]],[[13696,1619,13686]],[[13605,13691,1375]],[[13605,13665,13691]],[[13507,13420,13419]],[[13580,13534,13410]],[[13623,13641,13671]],[[13641,13643,13692]],[[13671,13641,13692]],[[13644,13642,13641]],[[13369,13432,13431]],[[13369,13456,13432]],[[13414,13559,13565]],[[13413,13539,13559]],[[13432,13442,13430]],[[13444,13404,13442]],[[13386,13417,13481]],[[13443,13503,13497]],[[13580,13410,13420]],[[13620,13425,13422]],[[13420,13410,13418]],[[13534,13411,13410]],[[13499,13498,13396]],[[13503,13505,13504]],[[13690,13677,13694]],[[13531,13530,13677]],[[13508,13578,13433]],[[13575,13680,13625]],[[13689,13529,13688]],[[13679,13530,13529]],[[13686,13500,13478]],[[1619,13452,13500]],[[13682,13678,13334]],[[13682,13677,13678]],[[13551,13569,13572]],[[13603,13619,13569]],[[13578,13625,13434]],[[13680,13579,13547]],[[13434,13547,13548]],[[13625,13680,13547]],[[13569,13604,13603]],[[13518,13345,13604]],[[13602,13684,13638]],[[13683,13351,13684]],[[13536,13349,13537]],[[13536,11610,13349]],[[13657,13340,13658]],[[13657,13670,13340]],[[11660,13447,11649]],[[11660,13424,13447]],[[13413,13532,13522]],[[13528,13521,13561]],[[13513,13561,13511]],[[13532,13528,13561]],[[13689,13686,13679]],[[13689,13696,13686]],[[1375,13329,13605]],[[1374,13327,13329]],[[13418,13698,13636]],[[13418,13410,13620]],[[13620,13422,13698]],[[13425,13426,13422]],[[13422,13636,13698]],[[13421,13635,13636]],[[13418,13620,13698]],[[13412,13425,13620]],[[13635,13421,13377]],[[13636,13422,13421]],[[13546,13504,13396]],[[13546,13503,13504]],[[13691,13665,13581]],[[13605,13328,13665]],[[13581,13664,13583]],[[13665,13475,13664]],[[13358,13673,1778]],[[13358,13541,13673]],[[13498,13497,13546]],[[13417,13443,13497]],[[13396,13498,13546]],[[13499,13479,13498]],[[13692,13643,13336]],[[13642,13682,13643]],[[13450,13629,13451]],[[13616,13330,13629]],[[13675,13606,1369]],[[13613,13693,13661]],[[13607,13608,13598]],[[13606,13675,13613]],[[13606,13613,13608]],[[13675,13337,13613]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e44faa0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1af49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13699,13700,13701]],[[13699,13701,13702]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4548ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13703,9877,9881]],[[9864,13704,13705]],[[13705,13704,13703]],[[9864,9877,13704]],[[9865,13705,9881]],[[9865,9864,13705]],[[13705,13703,9881]],[[13704,9877,13703]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e45490b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13706,13707,13708]],[[13709,13710,13711]],[[13712,13710,13713]],[[13714,13715,13716]],[[13717,13718,13719]],[[13720,13709,13711]],[[13721,13722,13723]],[[13724,13725,13726]],[[13715,13727,13728]],[[13729,13730,13713]],[[13731,13732,13729]],[[13733,13734,13706]],[[13735,13732,13723]],[[13732,13724,13736]],[[13737,13731,13738]],[[13739,13733,13706]],[[13708,13740,13741]],[[13723,13732,13731]],[[13731,13729,13709]],[[13736,13727,13713]],[[13709,13729,13713]],[[13729,13732,13730]],[[13714,13716,13734]],[[13725,13707,13716]],[[13709,13713,13710]],[[13734,13707,13706]],[[13724,13726,13727]],[[13726,13716,13728]],[[13742,13743,13744]],[[13713,13727,13715]],[[13732,13736,13730]],[[13732,13745,13724]],[[13736,13724,13727]],[[13746,13725,13724]],[[13717,13719,13747]],[[13711,13710,13719]],[[13741,13748,13749]],[[13738,13709,13720]],[[13716,13715,13728]],[[13743,13713,13715]],[[13712,13742,13744]],[[13713,13743,13742]],[[13731,13750,13721]],[[13745,13732,13735]],[[13731,13748,13750]],[[13751,13746,13745]],[[13708,13741,13752]],[[13749,13753,13754]],[[13740,13722,13721]],[[13722,13735,13723]],[[13748,13741,13740]],[[13745,13735,13722]],[[13712,13713,13742]],[[13730,13736,13713]],[[13719,13720,13711]],[[13738,13731,13709]],[[13710,13747,13719]],[[13744,13743,13755]],[[13747,13734,13733]],[[13716,13707,13734]],[[13727,13726,13728]],[[13725,13716,13726]],[[13734,13747,13744]],[[13733,13717,13747]],[[13747,13712,13744]],[[13747,13710,13712]],[[13731,13721,13723]],[[13750,13748,13740]],[[13750,13740,13721]],[[13708,13746,13751]],[[13741,13754,13752]],[[13718,13720,13719]],[[13741,13749,13754]],[[13748,13731,13749]],[[13754,13739,13752]],[[13756,13753,13757]],[[13739,13717,13733]],[[13739,13758,13717]],[[13758,13718,13717]],[[13756,13738,13720]],[[13751,13745,13722]],[[13746,13724,13745]],[[13744,13755,13734]],[[13743,13715,13755]],[[13754,13758,13739]],[[13754,13753,13758]],[[13752,13706,13708]],[[13752,13739,13706]],[[13740,13751,13722]],[[13740,13708,13751]],[[13718,13756,13720]],[[13737,13757,13731]],[[13758,13756,13718]],[[13758,13753,13756]],[[13755,13714,13734]],[[13755,13715,13714]],[[13756,13737,13738]],[[13757,13749,13731]],[[13756,13757,13737]],[[13753,13749,13757]],[[13759,13746,13708]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e46330a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9c0f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13760,13761,13762]],[[13763,13764,13765]],[[13766,13767,13768]],[[13768,13769,13770]],[[13771,13772,13766]],[[13773,13774,13775]],[[13776,13777,13778]],[[13762,13778,13760]],[[13779,13780,13781]],[[13782,13783,13761]],[[13784,13785,13781]],[[13786,13787,13788]],[[13789,13790,13791]],[[13792,13793,13794]],[[13769,13788,13777]],[[13795,13796,13797]],[[13783,13770,13769]],[[13798,13797,13799]],[[13786,13788,13769]],[[13787,13800,13777]],[[13782,13801,13802]],[[13771,13768,13770]],[[13803,13804,13805]],[[13772,13771,13806]],[[13807,13789,13791]],[[13805,13794,13793]],[[13808,13809,13810]],[[13798,13799,13811]],[[13810,13809,13774]],[[13811,13792,13812]],[[13780,13813,13765]],[[13814,13815,13805]],[[13791,13816,13807]],[[13791,13790,13816]],[[13817,13807,13765]],[[13816,13790,13763]],[[13779,13815,13813]],[[13779,13767,13766]],[[13784,13780,13765]],[[13784,13781,13780]],[[13789,13817,13818]],[[13818,13817,13813]],[[13789,13818,13814]],[[13813,13780,13779]],[[13794,13805,13772]],[[13779,13781,13786]],[[13819,13815,13779]],[[13818,13813,13815]],[[13808,13804,13809]],[[13805,13819,13772]],[[13813,13817,13765]],[[13789,13807,13817]],[[13800,13796,13777]],[[13800,13797,13796]],[[13776,13778,13762]],[[13777,13796,13778]],[[13775,13774,13809]],[[13820,13803,13811]],[[13810,13774,13773]],[[13809,13820,13775]],[[13821,13799,13797]],[[13821,13820,13799]],[[13797,13798,13795]],[[13799,13820,13811]],[[13822,13795,13801]],[[13782,13812,13770]],[[13802,13801,13795]],[[13760,13778,13822]],[[13823,13822,13778]],[[13823,13795,13822]],[[13822,13801,13760]],[[13795,13798,13802]],[[13764,13821,13797]],[[13764,13773,13821]],[[13821,13775,13820]],[[13821,13773,13775]],[[13803,13805,13793]],[[13804,13814,13805]],[[13802,13811,13812]],[[13820,13809,13803]],[[13783,13776,13762]],[[13769,13777,13776]],[[13785,13786,13781]],[[13785,13824,13786]],[[13762,13761,13783]],[[13760,13801,13761]],[[13811,13802,13798]],[[13812,13782,13802]],[[13812,13792,13794]],[[13811,13803,13792]],[[13800,13784,13765]],[[13800,13785,13784]],[[13806,13771,13770]],[[13768,13767,13769]],[[13764,13808,13773]],[[13808,13763,13790]],[[13773,13808,13810]],[[13764,13763,13808]],[[13807,13763,13765]],[[13807,13816,13763]],[[13786,13824,13787]],[[13785,13800,13824]],[[13812,13806,13770]],[[13772,13825,13766]],[[13794,13806,13812]],[[13794,13772,13806]],[[13788,13787,13777]],[[13824,13800,13787]],[[13783,13782,13770]],[[13761,13801,13782]],[[13789,13814,13790]],[[13818,13815,13814]],[[13783,13769,13776]],[[13767,13786,13769]],[[13796,13823,13778]],[[13796,13795,13823]],[[13771,13766,13768]],[[13825,13779,13766]],[[13792,13803,13793]],[[13804,13790,13814]],[[13809,13804,13803]],[[13808,13790,13804]],[[13772,13819,13825]],[[13805,13815,13819]],[[13767,13779,13786]],[[13825,13819,13779]],[[13800,13826,13797]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e47e113-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9c0e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13827,13828,13829]],[[13830,13831,13832]],[[13833,13834,13835]],[[13836,13837,13838]],[[13839,13840,13841]],[[13834,13842,13843]],[[13844,13845,13846]],[[13833,13847,13834]],[[13848,13847,13849]],[[13842,13834,13847]],[[13850,13844,13851]],[[13845,13852,13846]],[[13853,13854,13831]],[[13846,13855,13839]],[[13856,13857,13858]],[[13859,13860,13857]],[[13856,13859,13857]],[[13861,13839,13841]],[[13852,13855,13846]],[[13849,13847,13833]],[[13862,13863,13829]],[[13864,13865,13855]],[[13857,13854,13853]],[[13860,13859,13856]],[[13866,13841,13867]],[[13855,13865,13868]],[[13853,13869,13827]],[[13860,13854,13857]],[[13870,13867,13840]],[[13830,13871,13831]],[[13871,13872,13873]],[[13873,13869,13831]],[[13874,13875,13876]],[[13877,13869,13873]],[[13840,13878,13879]],[[13880,13881,13848]],[[13835,13843,13882]],[[13883,13867,13870]],[[13882,13876,13884]],[[13885,13872,13886]],[[13887,13852,13845]],[[13863,13864,13852]],[[13882,13884,13849]],[[13848,13862,13842]],[[13879,13870,13840]],[[13885,13875,13874]],[[13888,13837,13872]],[[13889,13828,13877]],[[13874,13890,13872]],[[13872,13877,13873]],[[13880,13868,13881]],[[13855,13852,13864]],[[13891,13864,13863]],[[13865,13881,13868]],[[13871,13886,13872]],[[13836,13889,13877]],[[13892,13837,13888]],[[13836,13877,13872]],[[13870,13886,13883]],[[13870,13879,13893]],[[13830,13832,13866]],[[13831,13854,13832]],[[13839,13878,13840]],[[13893,13886,13870]],[[13843,13894,13882]],[[13895,13896,13889]],[[13837,13836,13872]],[[13828,13896,13829]],[[13884,13876,13875]],[[13892,13888,13897]],[[13833,13882,13849]],[[13875,13898,13884]],[[13834,13843,13835]],[[13842,13894,13843]],[[13853,13827,13829]],[[13869,13877,13827]],[[13882,13892,13876]],[[13837,13895,13838]],[[13880,13899,13868]],[[13900,13901,13878]],[[13868,13878,13855]],[[13878,13901,13879]],[[13855,13878,13839]],[[13901,13884,13898]],[[13868,13900,13878]],[[13868,13899,13900]],[[13879,13901,13898]],[[13900,13884,13901]],[[13876,13897,13890]],[[13876,13892,13897]],[[13858,13853,13829]],[[13831,13869,13853]],[[13884,13899,13849]],[[13884,13900,13899]],[[13863,13887,13829]],[[13863,13852,13887]],[[13835,13882,13833]],[[13894,13892,13882]],[[13856,13851,13860]],[[13846,13839,13861]],[[13887,13850,13829]],[[13887,13845,13844]],[[13862,13891,13863]],[[13891,13902,13865]],[[13891,13865,13864]],[[13891,13862,13902]],[[13867,13841,13840]],[[13866,13854,13861]],[[13849,13880,13848]],[[13849,13899,13880]],[[13866,13861,13841]],[[13851,13846,13861]],[[13842,13895,13894]],[[13842,13896,13895]],[[13894,13837,13892]],[[13894,13895,13837]],[[13838,13889,13836]],[[13838,13895,13889]],[[13903,13858,13829]],[[13857,13853,13858]],[[13890,13874,13876]],[[13885,13904,13875]],[[13848,13902,13862]],[[13881,13865,13902]],[[13831,13871,13873]],[[13883,13886,13871]],[[13898,13893,13879]],[[13898,13875,13904]],[[13861,13860,13851]],[[13861,13854,13860]],[[13883,13830,13867]],[[13883,13871,13830]],[[13851,13844,13846]],[[13850,13887,13844]],[[13830,13866,13867]],[[13832,13854,13866]],[[13847,13848,13842]],[[13881,13902,13848]],[[13888,13890,13897]],[[13888,13872,13890]],[[13903,13856,13858]],[[13850,13851,13856]],[[13877,13828,13827]],[[13889,13896,13828]],[[13893,13904,13886]],[[13893,13898,13904]],[[13872,13885,13874]],[[13886,13904,13885]],[[13850,13903,13829]],[[13850,13856,13903]],[[13842,13905,13896]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4aa043-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff17049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13906,13907,13908]],[[13909,8727,8794]],[[13910,7726,7728]],[[13911,13912,13913]],[[13914,13913,13915]],[[13916,13917,13918]],[[13910,13916,7726]],[[13919,7726,13920]],[[13914,13915,13921]],[[13919,13920,13922]],[[13923,13914,13921]],[[13918,13920,13916]],[[13924,13923,13921]],[[13912,7726,13921]],[[13925,13926,13927]],[[13914,13923,13928]],[[13913,13912,13915]],[[13926,7726,13912]],[[13929,13930,13931]],[[13932,7727,13926]],[[13924,13921,13919]],[[13915,13912,13921]],[[13918,13933,13922]],[[13921,7726,13919]],[[8725,13934,7728]],[[13934,13917,13916]],[[7726,13916,13920]],[[13910,13934,13916]],[[13922,13924,13919]],[[13933,13935,13923]],[[13936,13937,13938]],[[13923,13935,13939]],[[7728,13934,13910]],[[13940,13941,13935]],[[13942,13929,13943]],[[13944,13945,13946]],[[13947,13948,13925]],[[13949,13950,13932]],[[13951,13925,13931]],[[13950,13943,13952]],[[13942,13943,13949]],[[13953,13952,13954]],[[13955,13956,13954]],[[13943,13950,13949]],[[13933,13923,13924]],[[13955,13957,13958]],[[13931,13942,13926]],[[13908,7727,13932]],[[13959,13960,13908]],[[13961,8728,7727]],[[13962,13926,13912]],[[7727,7726,13926]],[[13942,13949,13932]],[[13950,13952,13953]],[[13930,13942,13931]],[[13930,13929,13942]],[[13960,13906,13908]],[[13907,13945,13963]],[[13908,13907,7727]],[[13906,13960,13945]],[[13914,13928,13913]],[[13964,13912,13911]],[[13928,13965,13947]],[[13966,13912,13964]],[[13925,13951,13926]],[[13931,13926,13951]],[[13907,13963,7727]],[[13967,13968,13960]],[[13933,13918,13917]],[[13922,13920,13918]],[[13966,13962,13912]],[[13927,13926,13962]],[[13969,13970,13971]],[[13972,8728,13973]],[[13953,13954,13960]],[[13907,13906,13945]],[[13947,13966,13964]],[[13927,13962,13966]],[[13956,13955,13974]],[[13975,8727,13976]],[[13944,13973,13961]],[[13977,13972,13973]],[[13973,13946,13977]],[[13973,13944,13946]],[[8724,13938,8725]],[[8724,13958,13978]],[[13957,13978,13958]],[[8724,13975,13979]],[[13980,13944,13961]],[[13963,13945,13944]],[[13971,13972,13977]],[[13971,8728,13972]],[[13946,13968,13969]],[[8794,8728,13971]],[[8724,13979,13958]],[[13954,8794,13967]],[[13965,13939,13981]],[[13938,8724,13978]],[[13966,13947,13927]],[[13964,13911,13928]],[[13934,13940,13917]],[[13982,13937,13983]],[[13948,13943,13929]],[[13953,13960,13959]],[[13948,13955,13952]],[[13974,13975,13976]],[[13946,13969,13977]],[[13970,8794,13971]],[[13936,13938,13978]],[[13937,8725,13938]],[[13957,13947,13965]],[[13984,8725,13982]],[[13942,13932,13926]],[[13959,13908,13932]],[[13940,13935,13917]],[[13985,13984,13986]],[[13922,13933,13924]],[[13917,13935,13933]],[[13980,13961,7727]],[[13973,8728,13961]],[[13979,13955,13958]],[[13985,13935,13941]],[[8725,13940,13934]],[[8725,13941,13940]],[[13945,13968,13946]],[[13945,13960,13968]],[[13977,13969,13971]],[[13968,13967,13969]],[[13957,13981,13978]],[[13983,13937,13936]],[[13979,13975,13974]],[[8724,8727,13975]],[[13986,13984,13983]],[[8725,13937,13982]],[[13983,13984,13982]],[[13941,8725,13984]],[[13931,13925,13929]],[[13947,13957,13948]],[[13947,13925,13927]],[[13948,13929,13925]],[[13970,13967,8794]],[[13970,13969,13967]],[[13957,13955,13948]],[[13979,13974,13955]],[[13957,13965,13981]],[[13947,13964,13928]],[[13913,13928,13911]],[[13987,13939,13965]],[[13981,13939,13986]],[[13965,13928,13987]],[[13936,13981,13983]],[[13985,13941,13984]],[[13983,13981,13986]],[[13936,13978,13981]],[[13939,13985,13986]],[[13939,13935,13985]],[[13948,13952,13943]],[[13954,13967,13960]],[[13932,13953,13959]],[[13932,13950,13953]],[[13955,13954,13952]],[[13956,8794,13954]],[[13963,13980,7727]],[[13963,13944,13980]],[[13923,13987,13928]],[[13923,13939,13987]],[[13956,13976,13909]],[[13956,13974,13976]],[[13956,13909,8794]],[[13976,8727,13909]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4b15d3-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13988,13989,13990]],[[13991,13992,13993]],[[13994,13995,13996]],[[13990,13997,13998]],[[13992,13999,14000]],[[14001,14002,14003]],[[14001,13993,14000]],[[14004,14005,14006]],[[14002,14000,14007]],[[14003,14008,14009]],[[13996,14010,14011]],[[14012,14013,14014]],[[14015,13992,14016]],[[14017,14013,14018]],[[14019,14020,14015]],[[14019,14021,14020]],[[14022,14017,13989]],[[14019,14015,14016]],[[14016,14023,14019]],[[14023,13991,13994]],[[14024,14018,14012]],[[14005,14008,14007]],[[14025,14005,14004]],[[14014,14008,14005]],[[14015,13989,13992]],[[14026,13998,14014]],[[14014,14013,14026]],[[14012,14025,14024]],[[14017,14022,14013]],[[14027,13988,14026]],[[14011,14028,14029]],[[14030,14009,14028]],[[14029,13994,14011]],[[14023,14016,13991]],[[14026,14022,14027]],[[14026,14013,14022]],[[13995,14001,13996]],[[13993,13992,14000]],[[14031,14024,14004]],[[14014,14005,14025]],[[14026,13988,13998]],[[14027,13989,13988]],[[14006,14031,14004]],[[13992,13989,14018]],[[14007,14031,14006]],[[13999,14018,14024]],[[14004,14024,14025]],[[13999,13992,14018]],[[14031,14007,14000]],[[14006,14005,14007]],[[14002,14032,14003]],[[14009,13997,14028]],[[14000,14002,14001]],[[14007,14008,14002]],[[14003,14032,14008]],[[14002,14008,14032]],[[13995,13993,14001]],[[13995,13994,13991]],[[14010,14009,14030]],[[14008,13997,14009]],[[13994,14021,14023]],[[14029,14028,14033]],[[14011,14010,14030]],[[13996,14003,14010]],[[14022,13989,14027]],[[14017,14018,13989]],[[14010,14003,14009]],[[13996,14001,14003]],[[14021,14019,14023]],[[14020,13990,14015]],[[13995,13991,13993]],[[14016,13992,13991]],[[13994,14029,14021]],[[14028,13997,14033]],[[13990,14033,13997]],[[14021,14029,14033]],[[14028,14011,14030]],[[13994,13996,14011]],[[14025,14012,14014]],[[14018,14013,14012]],[[14031,13999,14024]],[[14031,14000,13999]],[[13989,14015,13990]],[[14021,14033,14020]],[[13988,13990,13998]],[[14020,14033,13990]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4bd8b0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1771,3212,3213]],[[1820,14034,1782]],[[1782,3050,3060]],[[3060,3076,3077]],[[3060,3050,3076]],[[3076,3071,3074]],[[3074,3071,3073]],[[3076,3050,3071]],[[3071,3068,3069]],[[3071,3067,3068]],[[3071,3066,3067]],[[3071,3055,3066]],[[3066,3079,3051]],[[3051,3064,3065]],[[3051,3062,3064]],[[3064,3062,3063]],[[3051,3079,3062]],[[3062,3079,3061]],[[3066,3055,3079]],[[3079,3055,3080]],[[3071,3050,3055]],[[3055,3050,3054]],[[3054,3052,3053]],[[3054,3050,3052]],[[1782,3048,3050]],[[1782,14034,3048]],[[14035,1771,3213]],[[14036,14034,14037]],[[1771,3201,3212]],[[3212,3201,3210]],[[3210,3201,3208]],[[3208,3180,3174]],[[3208,3206,3180]],[[3180,3206,3177]],[[3208,3204,3206]],[[3206,3204,3184]],[[3184,3182,3205]],[[3184,3204,3182]],[[3208,3203,3204]],[[3208,3171,3203]],[[3203,3194,3187]],[[3203,3191,3194]],[[3203,3195,3191]],[[3203,3171,3195]],[[3208,3201,3171]],[[3171,3201,3172]],[[1771,3190,3201]],[[3201,3190,3198]],[[1820,14037,14034]],[[1820,1771,14036]],[[14034,14036,3213]],[[14036,1771,14035]],[[1820,14036,14037]],[[14035,3213,14036]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4ee645-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14038,14039,14040]],[[14041,14042,14043]],[[14040,14043,14044]],[[14042,14039,14038]],[[14044,14038,14040]],[[14042,14041,14039]],[[14045,14043,14040]],[[14046,14038,14044]],[[14046,14042,14038]],[[14043,14045,14041]],[[14046,14043,14042]],[[14046,14044,14043]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4fa919-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14047,14048,14049]],[[14050,14051,8743]],[[14052,8402,8744]],[[14052,14053,14048]],[[14054,14050,8743]],[[14055,14056,14057]],[[14058,14051,14059]],[[14050,14054,14060]],[[14050,14059,14051]],[[14061,14062,14063]],[[14064,14065,14066]],[[14067,14051,14058]],[[14068,14069,14070]],[[14059,14050,14071]],[[14059,14072,14073]],[[14074,14064,14075]],[[14061,14073,14062]],[[14076,14077,14078]],[[14079,14061,14069]],[[14080,14073,14061]],[[14072,14063,14073]],[[14063,8322,14081]],[[14057,14056,8323]],[[8323,8325,14082]],[[14061,14063,14069]],[[14081,8322,8323]],[[14068,14070,14083]],[[14068,14084,14085]],[[14083,14070,14081]],[[14062,14073,14063]],[[14060,14054,8743]],[[14071,14086,14072]],[[14052,14048,14087]],[[8325,8402,14087]],[[8743,14084,8744]],[[14065,14088,14066]],[[14089,14074,14075]],[[14075,14090,14056]],[[14056,14090,8323]],[[14070,14069,14063]],[[14082,14057,8323]],[[14077,14076,14091]],[[14065,14064,14074]],[[14066,14092,14064]],[[14078,14089,14075]],[[14065,14074,14089]],[[14065,14084,14088]],[[8743,14051,14080]],[[14072,14086,14063]],[[14072,14059,14071]],[[14060,14071,14050]],[[8322,14086,14071]],[[14073,14058,14059]],[[14067,14080,14051]],[[14073,14067,14058]],[[14073,14080,14067]],[[14093,14083,14081]],[[14066,14088,14068]],[[8744,14065,14094]],[[14079,14095,14061]],[[14085,14079,14069]],[[14095,14080,14061]],[[8744,14084,14065]],[[8743,14079,14084]],[[8325,14096,14082]],[[8325,14087,14096]],[[14093,14081,8323]],[[14093,14097,14092]],[[14068,14085,14069]],[[14084,14079,14085]],[[8743,14095,14079]],[[8743,14080,14095]],[[14094,14053,8744]],[[14048,14096,14087]],[[14094,14048,14053]],[[14094,14098,14049]],[[14070,14063,14081]],[[14086,8322,14063]],[[8402,14052,14087]],[[8744,14053,14052]],[[14091,14099,14077]],[[14065,14089,14099]],[[14082,14076,14057]],[[14099,14089,14078]],[[14055,14076,14078]],[[14098,14094,14091]],[[14076,14055,14057]],[[14078,14056,14055]],[[14075,14097,14090]],[[14092,14083,14093]],[[14082,14049,14076]],[[14049,14048,14094]],[[14066,14068,14083]],[[14088,14084,14068]],[[14076,14049,14098]],[[14047,14096,14048]],[[14078,14077,14099]],[[14076,14098,14091]],[[14064,14092,14097]],[[14066,14083,14092]],[[14082,14047,14049]],[[14082,14096,14047]],[[14065,14091,14094]],[[14065,14099,14091]],[[14078,14075,14056]],[[14064,14097,14075]],[[8322,14060,8743]],[[8322,14071,14060]],[[14090,14093,8323]],[[14090,14097,14093]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e506d0e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14100,14101,14102]],[[14103,14104,14105]],[[14106,14107,14104]],[[14108,14102,14101]],[[14109,14110,14106]],[[14110,14107,14111]],[[14112,14109,14103]],[[14104,14108,14105]],[[14103,14106,14104]],[[14111,14107,14106]],[[14113,14109,14112]],[[14110,14111,14106]],[[14101,14105,14108]],[[14104,14107,14114]],[[14115,14103,14105]],[[14109,14106,14103]],[[14116,14117,14118]],[[14119,14120,14112]],[[14100,14115,14101]],[[14121,14119,14103]],[[14115,14121,14103]],[[14103,14119,14112]],[[14122,14110,14123]],[[14110,14109,14113]],[[14116,14119,14124]],[[14120,14113,14112]],[[14117,14116,14121]],[[14121,14116,14124]],[[14123,14120,14119]],[[14123,14113,14120]],[[14118,14100,14102]],[[14115,14105,14101]],[[14114,14108,14104]],[[14122,14102,14108]],[[14123,14116,14118]],[[14123,14119,14116]],[[14122,14114,14107]],[[14122,14108,14114]],[[14117,14100,14118]],[[14117,14121,14100]],[[14123,14110,14113]],[[14122,14107,14110]],[[14119,14121,14124]],[[14115,14100,14121]],[[14125,14102,14122]],[[14118,14126,14123]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e51a58d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1773,3169,3199]],[[3199,3169,3200]],[[3200,3169,3197]],[[3197,3169,3173]],[[3173,3169,3196]],[[3196,3169,3192]],[[3192,3169,3193]],[[3193,3169,3188]],[[3188,3169,3189]],[[3189,3169,3202]],[[3202,3169,3183]],[[3183,3169,3181]],[[3181,3169,3185]],[[3185,3169,3186]],[[3186,3169,3178]],[[3178,3169,3179]],[[3179,3169,3175]],[[3175,3169,3176]],[[3176,3169,3207]],[[3207,3169,3209]],[[3209,3169,3211]],[[14127,12238,14128]],[[1812,1830,12238]],[[3115,12238,1830]],[[14129,3169,1773]],[[1830,3121,3115]],[[1830,3135,3121]],[[3121,3156,3158]],[[3121,3135,3156]],[[3156,3134,3125]],[[3125,3130,3128]],[[3125,3134,3130]],[[3130,3134,3154]],[[3156,3137,3134]],[[3134,3137,3153]],[[3153,3137,3152]],[[3156,3135,3137]],[[3137,3141,3139]],[[3137,3145,3141]],[[3141,3145,3143]],[[3137,3135,3145]],[[3145,3150,3122]],[[3122,3150,3123]],[[3145,3135,3150]],[[1812,14128,14129]],[[12238,3169,14130]],[[1812,14129,1773]],[[14130,3169,14129]],[[1812,14127,14128]],[[1812,12238,14127]],[[14128,14130,14129]],[[14128,12238,14130]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e528fa4-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14131,14132,14133]],[[14134,14132,14131]],[[14132,14135,14136]],[[14132,14137,14135]],[[14138,14139,14132]],[[14140,14138,14132]],[[14141,14140,14132]],[[14142,14143,14144]],[[14145,14132,14146]],[[14146,14132,14147]],[[14147,14132,14148]],[[14148,14142,14149]],[[14149,14142,14150]],[[14150,14142,14151]],[[14151,14142,14152]],[[14152,14142,14144]],[[14153,14154,14155]],[[14143,14142,14154]],[[14156,14143,14154]],[[14132,14142,14148]],[[14157,14158,14154]],[[14153,14157,14154]],[[14132,14154,14142]],[[14159,14155,14154]],[[14160,14159,14154]],[[14161,14160,14154]],[[14162,14161,14154]],[[14163,14162,14164]],[[14165,14163,14164]],[[14166,14165,14164]],[[14167,14166,14164]],[[14168,14167,14164]],[[14169,14168,14164]],[[14170,14169,14164]],[[14171,14170,14164]],[[14172,14171,14164]],[[14173,14172,14164]],[[14174,14173,14164]],[[14175,14174,14164]],[[14176,14175,14164]],[[14177,14132,14145]],[[14178,14164,14179]],[[14179,14164,14180]],[[14180,14164,14132]],[[14181,14180,14132]],[[14182,14181,14132]],[[14183,14182,14132]],[[14184,14183,14132]],[[14185,14184,14132]],[[14186,14185,14132]],[[14186,14187,14185]],[[14186,14188,14187]],[[14186,14189,14188]],[[14186,14190,14189]],[[14186,14191,14190]],[[14186,14192,14191]],[[14186,14193,14192]],[[14186,14194,14193]],[[14195,14196,14186]],[[14197,14195,14186]],[[14198,14197,14186]],[[14199,14198,14186]],[[14200,14199,14186]],[[14201,14200,14186]],[[14202,14201,14203]],[[14204,14202,14203]],[[14205,14204,14203]],[[14206,14205,14203]],[[14132,14164,14154]],[[14207,14203,14208]],[[14208,14203,14209]],[[14209,14203,14210]],[[14210,14203,14211]],[[14211,14203,14212]],[[14212,14203,14213]],[[14213,14203,14214]],[[14214,14203,14215]],[[14215,14203,14216]],[[14216,14203,14217]],[[14217,14203,14218]],[[14218,14203,14219]],[[14219,14203,14220]],[[14220,14203,14221]],[[14221,14203,14132]],[[14222,14221,14132]],[[14223,14222,14132]],[[14224,14223,14132]],[[14225,14224,14132]],[[14226,14225,14132]],[[14134,14226,14132]],[[14177,14141,14132]],[[14133,14132,14136]],[[14227,14164,14178]],[[14227,14176,14164]],[[14162,14154,14164]],[[14158,14156,14154]],[[14228,14203,14207]],[[14228,14206,14203]],[[14137,14132,14139]],[[14203,14186,14132]],[[14201,14186,14203]],[[14196,14194,14186]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e530428-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14229,14230,14231]],[[14232,14233,14231]],[[14234,14232,14235]],[[14236,14229,14237]],[[14234,14238,14232]],[[14230,14229,14236]],[[14238,14239,14233]],[[14236,14237,14240]],[[14241,14235,14230]],[[14235,14232,14231]],[[14230,14235,14231]],[[14242,14234,14235]],[[14232,14238,14233]],[[14234,14239,14238]],[[14234,14243,14239]],[[14234,14237,14243]],[[14244,14236,14240]],[[14229,14233,14239]],[[14244,14241,14236]],[[14242,14235,14241]],[[14241,14230,14236]],[[14231,14233,14229]],[[14243,14229,14239]],[[14243,14237,14229]],[[14242,14244,14240]],[[14242,14241,14244]],[[14240,14245,14242]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e54165e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14246,14247,14248]],[[14249,14250,14251]],[[14247,14252,14248]],[[14253,14254,14255]],[[14256,14257,14258]],[[14258,14249,14251]],[[14246,14258,14247]],[[14251,14252,14247]],[[14259,14260,14261]],[[14258,14251,14247]],[[14262,14260,14259]],[[14261,14258,14246]],[[14263,14261,14260]],[[14264,14258,14261]],[[14265,14266,14267]],[[14268,14256,14264]],[[14264,14256,14258]],[[14250,14269,14270]],[[14263,14268,14261]],[[14268,14266,14256]],[[14270,14248,14252]],[[14269,14254,14248]],[[14271,14272,14256]],[[14257,14269,14249]],[[14258,14257,14249]],[[14272,14269,14257]],[[14251,14250,14252]],[[14249,14269,14250]],[[14253,14246,14248]],[[14255,14261,14246]],[[14266,14271,14256]],[[14265,14272,14271]],[[14259,14255,14254]],[[14259,14261,14255]],[[14262,14266,14263]],[[14265,14271,14266]],[[14261,14268,14264]],[[14263,14266,14268]],[[14256,14272,14257]],[[14265,14269,14272]],[[14250,14270,14252]],[[14269,14248,14270]],[[14266,14262,14267]],[[14263,14260,14262]],[[14246,14253,14255]],[[14248,14254,14253]],[[14267,14259,14254]],[[14267,14262,14259]],[[14273,14254,14269]],[[14267,14274,14265]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5527a9-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14275,14276,14277]],[[14278,14279,14280]],[[14281,14282,14283]],[[14280,14284,14285]],[[14286,14287,14282]],[[14288,14289,14290]],[[14291,14292,14285]],[[14284,14290,14285]],[[14292,14283,14293]],[[14293,14282,14294]],[[14295,14286,14296]],[[14277,14297,14275]],[[14298,14295,14299]],[[14286,14282,14281]],[[14277,14287,14297]],[[14288,14290,14284]],[[14300,14287,14286]],[[14297,14301,14275]],[[14302,14283,14291]],[[14303,14304,14279]],[[14278,14280,14285]],[[14279,14284,14280]],[[14298,14302,14305]],[[14292,14306,14307]],[[14299,14295,14302]],[[14282,14276,14294]],[[14292,14293,14306]],[[14283,14282,14293]],[[14304,14307,14294]],[[14308,14275,14301]],[[14300,14297,14287]],[[14300,14289,14297]],[[14308,14294,14275]],[[14294,14276,14275]],[[14288,14294,14308]],[[14306,14293,14294]],[[14288,14308,14289]],[[14301,14289,14308]],[[14292,14307,14303]],[[14306,14294,14307]],[[14278,14303,14279]],[[14278,14292,14303]],[[14297,14289,14301]],[[14300,14290,14289]],[[14302,14281,14283]],[[14296,14286,14281]],[[14279,14304,14284]],[[14303,14307,14304]],[[14305,14291,14285]],[[14305,14302,14291]],[[14298,14299,14302]],[[14295,14281,14302]],[[14300,14298,14305]],[[14295,14296,14281]],[[14282,14277,14276]],[[14282,14287,14277]],[[14285,14292,14278]],[[14291,14283,14292]],[[14300,14295,14298]],[[14300,14286,14295]],[[14304,14288,14284]],[[14304,14294,14288]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e55c364-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14309,9869,9874]],[[14310,9874,9873]],[[9868,14311,14312]],[[14311,9869,14309]],[[14310,14309,9874]],[[14311,9868,9869]],[[14312,14310,9873]],[[14313,14309,14310]],[[14313,14311,14309]],[[14312,9873,9868]],[[14313,14312,14311]],[[14313,14310,14312]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e55ea86-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14314,1013,1017]],[[1020,14315,1018]],[[14316,14314,1017]],[[14315,14317,14314]],[[14316,14315,14314]],[[14317,1013,14314]],[[1018,14316,1017]],[[1018,14315,14316]],[[1020,14317,14315]],[[1020,1013,14317]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e566010-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14318,14319,14320]],[[14321,14319,14322]],[[14320,14323,14321]],[[14324,14325,14326]],[[14320,14319,14323]],[[14327,14325,14324]],[[14322,14328,14326]],[[14328,14319,14318]],[[14324,14328,14329]],[[14322,14319,14328]],[[14328,14318,14329]],[[14320,14325,14318]],[[14328,14324,14326]],[[14329,14327,14324]],[[14318,14327,14329]],[[14318,14325,14327]],[[14320,14321,14322]],[[14323,14319,14321]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e580e0a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff16b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14330,14331,14332]],[[14333,14334,8708]],[[14335,14336,14333]],[[14337,14338,14336]],[[14332,14339,14340]],[[14341,14342,14334]],[[14343,14332,14340]],[[14344,14345,14346]],[[14347,14348,14349]],[[14350,14338,14337]],[[14350,14331,14330]],[[14340,14351,14344]],[[14336,14338,14334]],[[14352,14353,14346]],[[14332,14354,14339]],[[14355,8707,14356]],[[14348,14347,14354]],[[14339,14351,14340]],[[14343,14340,14357]],[[14358,14357,14344]],[[14338,14359,14334]],[[14338,14330,14359]],[[14357,14358,14359]],[[14360,14341,14353]],[[14361,14362,14363]],[[14364,14342,14365]],[[14359,14330,14343]],[[14338,14350,14330]],[[14350,14348,14331]],[[14331,14348,14354]],[[14341,14365,14342]],[[14353,14358,14346]],[[14349,14335,14366]],[[14336,14334,14333]],[[14359,14341,14334]],[[14359,14358,14341]],[[14341,14367,14365]],[[14360,14353,14352]],[[14345,14352,14346]],[[14341,14358,14353]],[[14368,14369,14352]],[[14370,14371,14372]],[[14337,14348,14350]],[[14347,8708,14373]],[[14343,14357,14359]],[[14340,14344,14357]],[[14374,14375,14376]],[[14377,14378,14342]],[[14377,14379,14378]],[[14377,14342,14375]],[[14330,14332,14343]],[[14331,14354,14332]],[[14339,14354,14380]],[[14381,14362,14361]],[[14382,14383,14362]],[[14362,14380,8708]],[[14383,14369,14362]],[[14384,14385,14386]],[[14356,14378,14379]],[[8707,14342,14378]],[[14358,14344,14346]],[[14351,14387,14388]],[[14389,14374,14376]],[[14372,14390,14384]],[[14389,14384,14374]],[[14385,14355,14379]],[[14374,14386,14375]],[[14374,14384,14386]],[[14383,14365,14391]],[[14388,14344,14351]],[[14392,14393,14391]],[[14392,14365,14394]],[[14365,14392,14391]],[[14365,14367,14394]],[[14395,14371,14382]],[[14393,14396,14397]],[[14386,14385,14379]],[[14385,14395,14355]],[[14390,14385,14384]],[[14390,14395,14385]],[[14386,14377,14375]],[[14386,14379,14377]],[[14396,14398,14397]],[[14367,14399,14398]],[[14392,14394,14393]],[[14367,14398,14394]],[[14370,14389,14364]],[[14372,14384,14389]],[[14368,14352,14345]],[[14399,14367,14360]],[[14399,14360,14352]],[[14367,14341,14360]],[[14355,14356,14379]],[[8707,14378,14356]],[[14382,14370,14365]],[[14372,14389,14370]],[[14382,14371,14370]],[[14390,14372,14371]],[[14337,14349,14348]],[[14366,14333,8708]],[[14366,14347,14349]],[[14373,14354,14347]],[[8707,14362,8708]],[[14397,14391,14393]],[[14339,14387,14351]],[[14339,14380,14381]],[[14373,14380,14354]],[[14373,8708,14380]],[[14389,14376,14364]],[[14375,14342,14376]],[[8707,14382,14362]],[[14395,14390,14371]],[[8707,14395,14382]],[[8707,14355,14395]],[[14363,14368,14345]],[[14362,14369,14368]],[[14337,14335,14349]],[[14337,14336,14335]],[[14347,14366,8708]],[[14335,14333,14366]],[[14394,14396,14393]],[[14394,14398,14396]],[[14369,14399,14352]],[[14369,14398,14399]],[[14369,14397,14398]],[[14383,14391,14397]],[[14369,14383,14397]],[[14382,14365,14383]],[[14344,14388,14345]],[[14362,14368,14363]],[[14370,14364,14365]],[[14376,14342,14364]],[[14345,14388,14363]],[[14381,14380,14362]],[[14361,14388,14387]],[[14361,14363,14388]],[[14387,14381,14361]],[[14387,14339,14381]],[[8707,8710,14342]],[[8792,8708,14334]],[[14342,8792,14334]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e580e10-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14400,10084,10083]],[[10121,14400,10122]],[[10122,14400,10124]],[[10124,14400,10125]],[[10125,14400,10127]],[[10127,14400,10128]],[[10128,14400,10130]],[[10130,14400,10131]],[[10131,14400,10332]],[[10332,14400,10133]],[[10133,14400,10134]],[[10134,14400,10339]],[[10339,14400,14401]],[[10338,10339,14401]],[[10337,10338,14401]],[[10149,10337,14401]],[[14401,14402,14403]],[[10335,14401,10336]],[[10336,14401,10399]],[[10334,14401,14403]],[[10398,10399,14401]],[[10333,10398,14401]],[[10334,10333,14401]],[[10276,14404,10278]],[[10404,10385,14403]],[[10409,10404,14403]],[[10326,10409,14403]],[[14403,14402,14404]],[[10322,14403,10320]],[[10320,14403,10258]],[[10258,14403,10261]],[[10261,14403,10263]],[[10263,14403,10265]],[[10269,14403,14404]],[[10267,10265,14403]],[[10269,10267,14403]],[[10274,10269,14404]],[[10276,10274,14404]],[[10250,14404,10135]],[[10174,10278,14404]],[[10279,10174,14404]],[[10138,10279,14404]],[[10139,10138,14404]],[[10248,10139,14404]],[[10250,10248,14404]],[[10117,14400,10119]],[[10136,10135,14404]],[[10252,10136,14404]],[[14404,14402,14400]],[[10309,14404,10286]],[[10286,14404,10289]],[[10289,14404,10177]],[[10177,14404,10290]],[[10290,14404,10293]],[[10293,14404,10297]],[[10297,14404,10307]],[[10307,14404,10298]],[[10298,14404,10303]],[[10303,14404,10305]],[[10305,14404,10272]],[[10272,14404,10313]],[[10313,14404,10312]],[[10312,14404,10311]],[[10311,14404,10310]],[[10310,14404,10283]],[[10283,14404,10284]],[[10284,14404,10306]],[[10306,14404,10304]],[[10304,14404,10301]],[[10273,14404,14400]],[[10273,10301,14404]],[[10295,10273,14400]],[[10292,10295,14400]],[[10080,10292,14400]],[[10081,10080,14400]],[[10285,10081,14400]],[[10088,10285,14400]],[[10090,10088,14400]],[[10096,10090,14400]],[[10097,10096,14400]],[[10099,10097,14400]],[[10101,10099,14400]],[[10106,10101,14400]],[[10104,10106,14400]],[[10107,10104,14400]],[[10109,10107,14400]],[[10111,10109,14400]],[[10113,10111,14400]],[[10115,10113,14400]],[[10117,10115,14400]],[[10385,10334,14403]],[[14400,10083,10119]],[[14401,14400,14402]],[[10121,10084,14400]],[[10253,14404,10309]],[[10253,10252,14404]],[[10323,14403,10322]],[[10323,10326,14403]],[[10150,14401,10335]],[[10150,10149,14401]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e58829a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14405,14406,14407]],[[14408,14409,14410]],[[14409,14411,14405]],[[14412,14406,14405]],[[14413,14414,14410]],[[14410,14414,14408]],[[14408,14414,14411]],[[14413,14406,14412]],[[14409,14405,14407]],[[14412,14414,14413]],[[14411,14415,14405]],[[14411,14414,14415]],[[14416,14412,14405]],[[14416,14414,14412]],[[14410,14409,14407]],[[14408,14411,14409]],[[14415,14416,14405]],[[14415,14414,14416]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e58d102-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14417,14418,14419]],[[14420,14419,14421]],[[14422,14423,14424]],[[14425,14418,14417]],[[14426,14427,14424]],[[14426,14428,14429]],[[14430,14431,14417]],[[14425,14432,14418]],[[14429,14432,14425]],[[14433,14418,14432]],[[14434,14425,14431]],[[14427,14426,14425]],[[14430,14434,14431]],[[14427,14425,14434]],[[14420,14435,14430]],[[14424,14434,14435]],[[14424,14423,14426]],[[14433,14432,14436]],[[14423,14428,14426]],[[14436,14432,14428]],[[14422,14424,14437]],[[14427,14434,14424]],[[14433,14422,14421]],[[14424,14435,14437]],[[14438,14422,14437]],[[14423,14436,14428]],[[14426,14429,14425]],[[14428,14432,14429]],[[14438,14435,14420]],[[14435,14434,14430]],[[14438,14420,14421]],[[14430,14419,14420]],[[14422,14438,14421]],[[14437,14435,14438]],[[14433,14423,14422]],[[14433,14436,14423]],[[14430,14417,14419]],[[14431,14425,14417]],[[14419,14439,14421]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5993eb-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14440,14441,14442]],[[14443,14444,14445]],[[14443,14446,14444]],[[14447,14448,14444]],[[14449,14450,14443]],[[14446,14447,14444]],[[14451,14449,14445]],[[14452,14448,14441]],[[14440,14453,14454]],[[14455,14456,14457]],[[14454,14457,14443]],[[14458,14459,14457]],[[14458,14456,14453]],[[14458,14457,14456]],[[14447,14458,14460]],[[14459,14446,14443]],[[14449,14443,14445]],[[14457,14459,14443]],[[14444,14452,14445]],[[14444,14448,14452]],[[14450,14454,14443]],[[14453,14456,14455]],[[14447,14461,14459]],[[14447,14446,14461]],[[14454,14453,14455]],[[14460,14458,14453]],[[14452,14451,14445]],[[14462,14450,14449]],[[14440,14450,14462]],[[14454,14455,14457]],[[14440,14454,14450]],[[14440,14460,14453]],[[14463,14451,14452]],[[14462,14449,14451]],[[14441,14440,14462]],[[14442,14460,14440]],[[14447,14459,14458]],[[14461,14446,14459]],[[14451,14463,14462]],[[14448,14442,14441]],[[14441,14463,14452]],[[14441,14462,14463]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5aa630-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14464,12663,3215]],[[14465,14466,14467]],[[14468,14465,14467]],[[14469,3213,3168]],[[14470,14471,14472]],[[14473,3214,12663]],[[14474,14475,3048]],[[14476,12663,14477]],[[14478,14479,14480]],[[14481,14482,14483]],[[14484,14485,14486]],[[14487,14488,14489]],[[14485,14487,14490]],[[14491,14492,14493]],[[14488,14487,14494]],[[14495,14472,14496]],[[14482,14472,14495]],[[14491,14479,14034]],[[14497,14498,14483]],[[14499,3214,14473]],[[14493,14492,14500]],[[14494,14487,3214]],[[14481,14483,14499]],[[14499,14483,14498]],[[14471,14501,14496]],[[14482,14481,14472]],[[3049,14468,3215]],[[3049,3048,14468]],[[14502,14503,14504]],[[14505,14479,14478]],[[14491,14482,14501]],[[14506,14488,14494]],[[14482,14497,14483]],[[14484,14486,14469]],[[14491,14501,14492]],[[14501,14495,14496]],[[14500,14470,14493]],[[14507,14479,14508]],[[14476,14504,12663]],[[14503,14478,14504]],[[14509,14476,14477]],[[14502,14504,14476]],[[14510,14507,14473]],[[14499,14498,14494]],[[14472,14481,14499]],[[14498,14497,14506]],[[14511,14500,14492]],[[14511,14471,14500]],[[14512,14513,14491]],[[14470,14514,14512]],[[3214,14484,3168]],[[14486,14515,14469]],[[14489,14490,14487]],[[14515,14486,14490]],[[14486,14485,14490]],[[3214,14487,14485]],[[14471,14511,14501]],[[14492,14501,14511]],[[14472,14499,14470]],[[14494,3214,14499]],[[14478,14480,12663]],[[14507,14508,14473]],[[14474,14502,14476]],[[14516,14503,14502]],[[14517,14466,14475]],[[14509,14518,14476]],[[14464,14519,14477]],[[14518,14474,14476]],[[14480,14507,14510]],[[14520,14470,14473]],[[14493,14512,14491]],[[14508,14479,14513]],[[3048,14465,14468]],[[3048,14466,14465]],[[14034,14474,3048]],[[14034,14516,14474]],[[14519,14475,14477]],[[14521,14522,14517]],[[14477,14475,14509]],[[14475,14474,14518]],[[14504,14478,12663]],[[14503,14516,14505]],[[14503,14505,14478]],[[14034,14479,14505]],[[3213,14497,14482]],[[14515,14489,14497]],[[14498,14506,14494]],[[14497,14488,14506]],[[14497,14489,14488]],[[14515,14490,14489]],[[12663,14480,14510]],[[14479,14507,14480]],[[14508,14514,14520]],[[14508,14513,14514]],[[14474,14516,14502]],[[14034,14505,14516]],[[14468,14467,3215]],[[14517,14475,14521]],[[3213,14482,14491]],[[14482,14495,14501]],[[14472,14471,14496]],[[14470,14500,14471]],[[14479,14491,14513]],[[14034,3213,14491]],[[3168,14484,14469]],[[3214,14485,14484]],[[14509,14475,14518]],[[14466,3048,14475]],[[12663,14464,14477]],[[3215,14467,14522]],[[14519,14521,14475]],[[14519,14464,14521]],[[14522,14464,3215]],[[14522,14521,14464]],[[3213,14515,14497]],[[3213,14469,14515]],[[14467,14517,14522]],[[14467,14466,14517]],[[14510,14473,12663]],[[14470,14499,14473]],[[14508,14520,14473]],[[14514,14470,14520]],[[14470,14512,14493]],[[14514,14513,14512]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5b9032-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14523,14524,14525]],[[14526,14527,14528]],[[14529,14530,14523]],[[14531,14532,14533]],[[14534,14535,14536]],[[14537,14538,14539]],[[14540,14530,14529]],[[14533,14532,14527]],[[14526,14529,14523]],[[14523,14525,14526]],[[14536,14540,14528]],[[14535,14530,14540]],[[14530,14524,14523]],[[14530,14535,14537]],[[14541,14542,14539]],[[14543,14532,14539]],[[14544,14537,14535]],[[14545,14538,14537]],[[14542,14537,14539]],[[14538,14543,14539]],[[14531,14546,14547]],[[14539,14532,14541]],[[14525,14533,14527]],[[14547,14542,14541]],[[14526,14525,14527]],[[14524,14546,14525]],[[14534,14544,14535]],[[14543,14545,14544]],[[14530,14542,14524]],[[14530,14537,14542]],[[14525,14546,14533]],[[14547,14541,14532]],[[14534,14536,14528]],[[14535,14540,14536]],[[14533,14546,14531]],[[14524,14542,14546]],[[14531,14547,14532]],[[14546,14542,14547]],[[14543,14534,14528]],[[14543,14544,14534]],[[14544,14545,14537]],[[14543,14538,14545]],[[14540,14526,14528]],[[14540,14529,14526]],[[14548,14532,14543]],[[14527,14549,14528]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5bb778-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1012,1014,14550]],[[14551,1009,1022]],[[14551,14550,1009]],[[1014,1009,14550]],[[1012,14551,1022]],[[1012,14550,14551]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5cc8bd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14552,14553,14554]],[[14555,14556,14557]],[[14558,14559,14555]],[[14560,14561,14562]],[[14563,14557,14564]],[[14556,14565,14557]],[[14566,14567,14568]],[[14566,14569,14570]],[[14562,14571,14560]],[[14563,14564,14560]],[[14572,14573,14574]],[[14575,14576,14559]],[[14566,14568,14554]],[[14568,14577,14578]],[[14579,14552,14554]],[[14579,14578,14552]],[[14554,14568,14578]],[[14580,14558,14557]],[[14576,14577,14559]],[[14568,14567,14581]],[[14568,14581,14577]],[[14570,14569,14565]],[[14582,14578,14577]],[[14579,14554,14578]],[[14583,14584,14585]],[[14586,14578,14587]],[[14553,14584,14563]],[[14588,14580,14563]],[[14587,14589,14575]],[[14589,14578,14582]],[[14558,14575,14559]],[[14582,14577,14576]],[[14571,14553,14563]],[[14590,14583,14591]],[[14585,14586,14583]],[[14552,14578,14586]],[[14580,14572,14574]],[[14592,14584,14573]],[[14580,14588,14572]],[[14588,14584,14592]],[[14558,14580,14591]],[[14557,14563,14580]],[[14583,14590,14584]],[[14572,14592,14573]],[[14584,14588,14563]],[[14592,14572,14588]],[[14575,14589,14582]],[[14587,14578,14589]],[[14577,14581,14559]],[[14567,14566,14581]],[[14581,14555,14559]],[[14570,14556,14555]],[[14557,14558,14555]],[[14591,14575,14558]],[[14587,14583,14586]],[[14587,14591,14583]],[[14554,14553,14562]],[[14585,14584,14553]],[[14552,14585,14553]],[[14552,14586,14585]],[[14576,14575,14582]],[[14591,14587,14575]],[[14581,14570,14555]],[[14581,14566,14570]],[[14565,14564,14557]],[[14569,14561,14564]],[[14563,14560,14571]],[[14564,14561,14560]],[[14580,14574,14591]],[[14573,14584,14574]],[[14570,14565,14556]],[[14569,14564,14565]],[[14554,14562,14561]],[[14553,14571,14562]],[[14574,14590,14591]],[[14574,14584,14590]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5e0130-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14593,13701,14594]],[[14595,13700,14596]],[[14596,14597,14595]],[[14598,14599,14600]],[[14601,13700,14602]],[[14600,13702,13701]],[[14603,14604,14605]],[[14606,14607,14608]],[[13701,14593,14609]],[[14610,14611,14612]],[[14613,14605,14614]],[[14615,14604,14616]],[[14617,14618,14607]],[[14619,14604,14603]],[[14600,14599,13702]],[[14617,14607,14620]],[[14609,14600,13701]],[[14609,14598,14600]],[[14614,14605,14604]],[[14621,14603,14605]],[[14595,14612,13700]],[[14611,14594,13700]],[[14622,14602,14615]],[[13700,13699,14613]],[[14623,14614,14604]],[[14602,13700,14613]],[[14606,14608,14619]],[[14608,14624,14619]],[[14597,14625,14616]],[[14602,14614,14623]],[[14609,14610,14616]],[[14609,14593,14610]],[[14612,14611,13700]],[[14594,13701,13700]],[[14625,14615,14616]],[[14622,14601,14602]],[[14595,14597,14616]],[[14596,14625,14597]],[[14602,14613,14614]],[[14621,14605,14613]],[[14610,14594,14611]],[[14610,14593,14594]],[[14610,14595,14616]],[[14610,14612,14595]],[[13702,14620,13699]],[[13702,14599,14618]],[[14625,14622,14615]],[[14625,14596,14622]],[[14598,14618,14599]],[[14598,14624,14618]],[[13702,14617,14620]],[[13702,14618,14617]],[[13699,14621,14613]],[[13699,14603,14621]],[[14615,14623,14604]],[[14615,14602,14623]],[[14618,14624,14607]],[[14598,14604,14624]],[[13699,14606,14603]],[[14607,14624,14608]],[[14620,14606,13699]],[[14620,14607,14606]],[[14596,14601,14622]],[[14596,13700,14601]],[[14606,14619,14603]],[[14624,14604,14619]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c79603-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14626,14627,14628]],[[14629,14630,14631]],[[14629,14632,14630]],[[14633,14630,14634]],[[14632,14635,14636]],[[14637,14638,14639]],[[14640,14641,14642]],[[14643,14644,14645]],[[14646,14647,14626]],[[14648,14649,14633]],[[14650,14649,14651]],[[14651,14630,14650]],[[14652,14653,14654]],[[14655,14636,14656]],[[14657,14658,14659]],[[14660,14644,14643]],[[14661,14658,14662]],[[14663,14635,14664]],[[14661,14659,14658]],[[14656,14635,14663]],[[14665,14641,14666]],[[14640,14662,14667]],[[14668,14638,14669]],[[14659,14670,14660]],[[14671,14642,14672]],[[14642,14641,14673]],[[14674,14647,14646]],[[14675,14676,14653]],[[14634,14648,14633]],[[14634,14632,14636]],[[14626,14663,14627]],[[14655,14652,14677]],[[14640,14678,14666]],[[14654,14657,14677]],[[14675,14653,14656]],[[14667,14658,14657]],[[14679,14680,14681]],[[14638,14672,14673]],[[14679,14681,14674]],[[14682,14683,14669]],[[14648,14655,14649]],[[14657,14659,14651]],[[14651,14649,14657]],[[14677,14657,14649]],[[14649,14655,14677]],[[14636,14635,14656]],[[14647,14684,14685]],[[14686,14687,14688]],[[14689,14685,14687]],[[14666,14689,14690]],[[14691,14647,14685]],[[14692,14682,14673]],[[14638,14673,14682]],[[14672,14642,14673]],[[14693,14646,14694]],[[14627,14663,14664]],[[14629,14695,14664]],[[14696,14626,14628]],[[14679,14674,14693]],[[14695,14628,14664]],[[14697,14694,14631]],[[14697,14693,14694]],[[14698,14679,14697]],[[14699,14688,14684]],[[14659,14660,14643]],[[14671,14672,14700]],[[14670,14661,14701]],[[14662,14658,14667]],[[14626,14675,14663]],[[14676,14689,14653]],[[14691,14676,14675]],[[14689,14678,14654]],[[14686,14688,14683]],[[14681,14680,14688]],[[14666,14690,14665]],[[14688,14668,14683]],[[14678,14689,14666]],[[14687,14684,14688]],[[14632,14664,14635]],[[14628,14627,14664]],[[14645,14659,14643]],[[14645,14651,14659]],[[14641,14640,14666]],[[14642,14662,14640]],[[14688,14702,14668]],[[14637,14703,14638]],[[14704,14629,14631]],[[14705,14646,14696]],[[14705,14696,14628]],[[14646,14626,14696]],[[14694,14705,14704]],[[14694,14646,14705]],[[14694,14704,14631]],[[14705,14628,14695]],[[14706,14702,14680]],[[14668,14639,14638]],[[14680,14702,14688]],[[14706,14639,14702]],[[14678,14667,14654]],[[14678,14640,14667]],[[14631,14680,14679]],[[14706,14707,14639]],[[14647,14691,14675]],[[14685,14676,14691]],[[14692,14665,14690]],[[14692,14641,14665]],[[14642,14701,14662]],[[14662,14701,14661]],[[14633,14650,14630]],[[14633,14649,14650]],[[14685,14684,14708]],[[14647,14699,14684]],[[14685,14689,14676]],[[14685,14708,14687]],[[14638,14703,14672]],[[14703,14644,14709]],[[14671,14701,14642]],[[14670,14659,14661]],[[14703,14671,14700]],[[14709,14701,14671]],[[14672,14703,14700]],[[14707,14644,14703]],[[14703,14709,14671]],[[14644,14660,14709]],[[14709,14670,14701]],[[14709,14660,14670]],[[14648,14636,14655]],[[14648,14634,14636]],[[14683,14668,14669]],[[14702,14639,14668]],[[14679,14693,14697]],[[14674,14646,14693]],[[14626,14647,14675]],[[14699,14681,14688]],[[14674,14699,14647]],[[14674,14681,14699]],[[14631,14698,14697]],[[14631,14679,14698]],[[14686,14682,14690]],[[14673,14641,14692]],[[14675,14656,14663]],[[14653,14655,14656]],[[14689,14654,14653]],[[14667,14657,14654]],[[14677,14652,14654]],[[14655,14653,14652]],[[14689,14687,14686]],[[14708,14684,14687]],[[14682,14686,14683]],[[14690,14689,14686]],[[14631,14706,14680]],[[14631,14707,14706]],[[14704,14695,14629]],[[14704,14705,14695]],[[14630,14632,14634]],[[14629,14664,14632]],[[14644,14651,14645]],[[14644,14630,14651]],[[14707,14637,14639]],[[14707,14703,14637]],[[14638,14682,14669]],[[14692,14690,14682]],[[14710,14711,14707]],[[14707,14711,14644]],[[14631,14710,14707]],[[14712,14631,14630]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c8a81e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14713,14714,14715]],[[14716,14715,14717]],[[14716,14718,14715]],[[14716,14717,14719]],[[14720,14715,14718]],[[14714,14717,14715]],[[14720,14713,14715]],[[14721,14714,14713]],[[14721,14722,14719]],[[14721,14713,14722]],[[14722,14716,14719]],[[14722,14718,14716]],[[14722,14720,14718]],[[14722,14713,14720]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c9e082-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14723,14724,14725]],[[14726,14725,14727]],[[14726,14723,14725]],[[14728,14724,14723]],[[14728,14726,14727]],[[14728,14723,14726]],[[14729,14724,14728]],[[14727,14729,14728]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cb8e76-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14730,14731,14732]],[[14733,14732,14734]],[[14733,14730,14732]],[[14735,14731,14730]],[[14735,14733,14734]],[[14735,14730,14733]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc2a0d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14736,14737,14738]],[[14739,14738,14740]],[[14737,14741,14742]],[[14743,14738,14739]],[[14740,14744,14739]],[[14745,14746,14737]],[[14747,14744,14740]],[[14742,14741,14744]],[[14744,14743,14739]],[[14744,14741,14736]],[[14743,14736,14738]],[[14743,14744,14736]],[[14738,14737,14746]],[[14736,14741,14737]],[[14747,14742,14744]],[[14747,14745,14742]],[[14742,14745,14737]],[[14747,14746,14745]],[[14738,14748,14740]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc786f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14749,14750,14751]],[[14752,14753,14754]],[[14755,14756,14757]],[[14758,14759,14760]],[[14761,14762,14763]],[[14752,14764,14753]],[[14756,14765,14766]],[[14767,14768,14769]],[[14766,14765,14770]],[[14771,14751,14772]],[[14773,14757,14774]],[[14775,14750,14749]],[[14776,14777,14752]],[[14772,14764,14778]],[[14762,14752,14754]],[[14770,14760,14779]],[[14768,14780,14763]],[[14763,14754,14753]],[[14766,14775,14756]],[[14766,14750,14775]],[[14775,14757,14756]],[[14762,14754,14763]],[[14749,14781,14782]],[[14783,14784,14785]],[[14786,14776,14762]],[[14749,14751,14781]],[[14780,14787,14788]],[[14789,14790,14783]],[[14757,14788,14755]],[[14757,14773,14788]],[[14781,14784,14782]],[[14780,14768,14791]],[[14790,14786,14761]],[[14781,14751,14785]],[[14758,14768,14767]],[[14769,14753,14792]],[[14761,14786,14762]],[[14789,14793,14790]],[[14793,14789,14786]],[[14794,14752,14777]],[[14776,14786,14777]],[[14761,14795,14796]],[[14773,14782,14797]],[[14774,14749,14782]],[[14775,14774,14757]],[[14775,14749,14774]],[[14798,14794,14771]],[[14778,14752,14794]],[[14763,14769,14768]],[[14763,14753,14769]],[[14761,14796,14790]],[[14795,14788,14773]],[[14796,14797,14790]],[[14796,14773,14797]],[[14783,14799,14789]],[[14793,14786,14790]],[[14797,14783,14790]],[[14789,14777,14786]],[[14784,14783,14797]],[[14789,14771,14794]],[[14785,14799,14783]],[[14771,14772,14798]],[[14764,14792,14753]],[[14770,14779,14750]],[[14756,14787,14770]],[[14756,14755,14787]],[[14776,14752,14762]],[[14778,14764,14752]],[[14795,14800,14788]],[[14787,14758,14770]],[[14785,14771,14799]],[[14785,14751,14771]],[[14792,14760,14759]],[[14770,14750,14766]],[[14764,14779,14760]],[[14764,14750,14779]],[[14767,14792,14759]],[[14764,14760,14792]],[[14778,14798,14772]],[[14778,14794,14798]],[[14788,14787,14755]],[[14791,14758,14787]],[[14782,14784,14797]],[[14781,14785,14784]],[[14800,14780,14788]],[[14761,14763,14780]],[[14758,14767,14759]],[[14769,14792,14767]],[[14771,14789,14799]],[[14794,14777,14789]],[[14756,14770,14765]],[[14758,14760,14770]],[[14782,14773,14774]],[[14796,14795,14773]],[[14780,14791,14787]],[[14768,14758,14791]],[[14761,14800,14795]],[[14761,14780,14800]],[[14764,14801,14750]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc9f9d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14802,3101,3166]],[[14803,3167,3101]],[[14804,14805,14806]],[[14807,14808,14609]],[[14809,14810,14811]],[[14812,14813,14814]],[[14815,13091,14816]],[[14817,14818,14819]],[[14820,13097,13086]],[[14819,14821,13085]],[[14822,14823,14824]],[[14825,14826,14604]],[[14827,14828,14829]],[[14830,14831,14616]],[[14808,14832,14609]],[[14825,13090,14826]],[[14833,14834,14835]],[[14805,14811,14810]],[[14805,14810,3166]],[[14836,14837,14838]],[[12217,14839,3166]],[[14836,14826,13090]],[[14806,14837,14840]],[[14826,14841,14604]],[[14841,14826,14837]],[[14842,14843,14844]],[[14836,14838,14826]],[[14837,14826,14838]],[[3166,14841,14806]],[[14842,14844,14604]],[[13083,14809,14804]],[[14840,14837,14836]],[[14845,14846,14847]],[[14848,14849,14828]],[[14850,14849,14848]],[[12217,3159,14829]],[[14851,14852,14827]],[[14852,14853,14839]],[[14806,13083,14804]],[[14809,13083,14854]],[[14829,14855,14830]],[[14827,14848,14828]],[[14616,14851,14827]],[[14856,14846,14853]],[[14604,14844,14857]],[[14851,14616,14847]],[[14839,14846,14857]],[[14604,14857,14616]],[[14841,14857,14843]],[[14846,14856,14851]],[[14858,14855,14829]],[[14828,14849,14829]],[[13090,14840,14836]],[[13090,14806,14840]],[[14857,14846,14845]],[[14853,14852,14856]],[[14839,14853,14846]],[[14839,14827,14852]],[[13090,13083,14806]],[[14811,14805,14804]],[[14839,14848,14827]],[[12217,14850,14848]],[[3166,14839,14841]],[[12217,14848,14839]],[[14616,14845,14847]],[[14616,14857,14845]],[[14809,14859,14810]],[[3166,14810,14859]],[[14841,14842,14604]],[[14841,14843,14842]],[[14846,14851,14847]],[[14856,14852,14851]],[[14829,14850,12217]],[[14829,14849,14850]],[[14804,14809,14811]],[[13083,14860,14854]],[[14843,14857,14844]],[[14841,14839,14857]],[[3166,14806,14805]],[[14841,14837,14806]],[[14861,14862,14823]],[[14863,13097,14822]],[[14864,14831,14865]],[[14830,14616,14827]],[[14866,14867,14868]],[[14866,13090,14869]],[[14870,14813,14871]],[[14872,14609,14864]],[[14873,14817,13085]],[[14818,14803,14874]],[[14822,14824,14863]],[[13097,14874,14803]],[[14870,14871,14875]],[[14875,14876,14598]],[[14877,14878,14879]],[[14880,13091,14881]],[[14882,14883,14884]],[[14881,13091,14885]],[[14812,14886,14598]],[[14884,14883,14887]],[[14886,14888,14889]],[[14890,14879,14878]],[[14858,14891,14855]],[[14858,14829,3159]],[[14872,14870,14892]],[[14814,14813,14870]],[[14865,14831,14893]],[[14864,14616,14831]],[[14598,14835,14604]],[[14598,14833,14835]],[[14867,14869,14825]],[[14894,14835,14834]],[[14895,14815,14833]],[[14895,13091,14815]],[[14867,14825,14604]],[[14869,13090,14825]],[[3167,14818,14817]],[[14873,14896,14897]],[[14877,14897,14878]],[[14873,13085,14896]],[[14820,14874,13097]],[[14818,3167,14803]],[[13085,14821,13086]],[[14819,14874,14821]],[[14898,14868,14867]],[[14894,14834,14816]],[[14899,14900,14876]],[[14812,14598,14900]],[[14812,14899,14813]],[[14900,14598,14876]],[[14854,14861,14802]],[[14901,13097,14902]],[[14862,14903,14823]],[[14862,13083,14903]],[[14833,14815,14834]],[[14833,14598,14904]],[[14886,14904,14598]],[[14885,13091,14895]],[[14885,14886,14889]],[[14883,14905,14879]],[[14904,14886,14885]],[[14812,14814,14886]],[[14877,14879,3164]],[[14906,13085,13091]],[[14889,14905,14881]],[[14888,14886,14814]],[[14879,14887,14883]],[[14906,13091,14880]],[[14859,14809,14854]],[[13083,14862,14860]],[[14802,14861,14823]],[[14860,14862,14861]],[[14813,14899,14876]],[[14812,14900,14899]],[[14907,14908,14891]],[[14907,14865,14893]],[[14855,14908,14830]],[[14855,14891,14908]],[[14829,14830,14827]],[[14893,14831,14830]],[[14859,14854,3166]],[[14860,14861,14854]],[[14909,14858,14910]],[[3159,14872,14864]],[[14911,14822,14901]],[[14822,13097,14901]],[[14911,14912,14822]],[[14912,14823,14822]],[[14913,14858,3159]],[[14910,14865,14909]],[[14813,14875,14871]],[[14832,14598,14609]],[[3167,14914,3164]],[[14873,14897,14914]],[[14823,14903,14824]],[[13083,13097,14903]],[[14912,14803,3101]],[[14902,13097,14803]],[[14909,14865,14907]],[[14910,14913,14864]],[[3164,14814,3159]],[[3164,14879,14905]],[[14819,14818,14874]],[[14819,13085,14817]],[[14872,14807,14609]],[[14915,14832,14808]],[[14803,14912,14902]],[[3101,14802,14912]],[[14902,14911,14901]],[[14902,14912,14911]],[[14904,14895,14833]],[[14904,14885,14895]],[[14891,14909,14907]],[[14891,14858,14909]],[[14807,14892,14808]],[[14875,14598,14832]],[[14870,14875,14832]],[[14813,14876,14875]],[[14892,14915,14808]],[[14870,14832,14915]],[[14903,14863,14824]],[[14903,13097,14863]],[[14879,14890,14887]],[[14878,14897,14896]],[[14890,14896,14906]],[[14890,14878,14896]],[[14914,14817,14873]],[[14914,3167,14817]],[[14815,14816,14834]],[[13091,13090,14816]],[[14868,14898,14816]],[[14816,14898,14894]],[[14866,14868,14816]],[[14867,14604,14898]],[[14835,14898,14604]],[[14835,14894,14898]],[[14885,14889,14881]],[[14888,14905,14889]],[[14814,14905,14888]],[[14814,3164,14905]],[[14867,14866,14869]],[[14816,13090,14866]],[[14821,14820,13086]],[[14821,14874,14820]],[[14854,14802,3166]],[[14823,14912,14802]],[[14910,14864,14865]],[[14609,14616,14864]],[[14914,14877,3164]],[[14914,14897,14877]],[[14864,14913,3159]],[[14910,14858,14913]],[[14872,14892,14807]],[[14870,14915,14892]],[[14882,14880,14881]],[[14887,14890,14906]],[[14906,14884,14887]],[[14880,14882,14884]],[[14908,14893,14830]],[[14908,14907,14893]],[[14884,14906,14880]],[[14896,13085,14906]],[[14814,14872,3159]],[[14814,14870,14872]],[[14905,14882,14881]],[[14905,14883,14882]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ce263c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14916,14917,14918]],[[14919,14920,14921]],[[14921,14922,14923]],[[14924,14925,14918]],[[14926,14927,14928]],[[14922,14929,14923]],[[14930,14931,14932]],[[14933,14917,14916]],[[14934,14935,14936]],[[14937,14938,14922]],[[14939,14935,14940]],[[14941,14942,14943]],[[14930,14944,14945]],[[14946,14935,14947]],[[14920,14917,14948]],[[14949,14950,14944]],[[14936,14951,14952]],[[14943,14922,14938]],[[14953,14944,14930]],[[14933,14954,14917]],[[14952,14947,14936]],[[14955,14942,14941]],[[14946,14956,14940]],[[14956,14957,14958]],[[14959,14960,14956]],[[14952,14946,14947]],[[14955,14961,14962]],[[14963,14959,14956]],[[14962,14964,14951]],[[14964,14956,14946]],[[14961,14963,14956]],[[14954,14933,14931]],[[14965,14954,14931]],[[14933,14932,14931]],[[14966,14967,14931]],[[14948,14917,14954]],[[14926,14928,14957]],[[14927,14945,14928]],[[14960,14957,14956]],[[14958,14950,14968]],[[14919,14918,14920]],[[14925,14916,14918]],[[14921,14920,14948]],[[14918,14917,14920]],[[14921,14937,14922]],[[14969,14967,14960]],[[14967,14945,14927]],[[14945,14950,14928]],[[14960,14926,14957]],[[14960,14967,14926]],[[14970,14940,14968]],[[14970,14939,14940]],[[14935,14946,14940]],[[14964,14962,14956]],[[14956,14958,14940]],[[14958,14928,14950]],[[14952,14964,14946]],[[14952,14951,14964]],[[14942,14929,14922]],[[14971,14925,14924]],[[14933,14916,14932]],[[14953,14949,14944]],[[14972,14930,14932]],[[14944,14950,14945]],[[14937,14973,14938]],[[14937,14965,14969]],[[14971,14919,14923]],[[14948,14937,14921]],[[14940,14958,14968]],[[14957,14928,14958]],[[14947,14934,14936]],[[14947,14935,14934]],[[14929,14971,14923]],[[14929,14942,14971]],[[14923,14919,14921]],[[14924,14918,14919]],[[14974,14972,14925]],[[14974,14953,14972]],[[14972,14953,14930]],[[14949,14970,14950]],[[14972,14916,14925]],[[14972,14932,14916]],[[14936,14939,14974]],[[14936,14935,14939]],[[14963,14955,14941]],[[14955,14936,14942]],[[14938,14963,14941]],[[14951,14936,14955]],[[14955,14962,14951]],[[14961,14956,14962]],[[14919,14971,14924]],[[14942,14925,14971]],[[14926,14967,14927]],[[14966,14930,14945]],[[14969,14965,14967]],[[14965,14931,14967]],[[14948,14965,14937]],[[14948,14954,14965]],[[14959,14969,14960]],[[14973,14937,14969]],[[14959,14963,14938]],[[14961,14955,14963]],[[14950,14970,14968]],[[14974,14939,14970]],[[14974,14949,14953]],[[14974,14970,14949]],[[14959,14973,14969]],[[14959,14938,14973]],[[14930,14966,14931]],[[14945,14967,14966]],[[14941,14943,14938]],[[14942,14922,14943]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cfd40c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14975,14976,14977]],[[12951,14978,14979]],[[14980,14981,14982]],[[12955,14983,3110]],[[14984,11657,3106]],[[14985,14986,14987]],[[14988,14989,13144]],[[14990,14991,14992]],[[14993,13154,14994]],[[14995,14994,13154]],[[14996,14997,14998]],[[14999,15000,15001]],[[15002,15003,15004]],[[15005,12955,12957]],[[15006,12955,3110]],[[15007,15008,15009]],[[15010,15006,15011]],[[15012,14979,15013]],[[15014,3114,3113]],[[14984,15015,15016]],[[15017,13153,15018]],[[15019,15020,15021]],[[15022,15023,15021]],[[15024,15025,15023]],[[13143,13153,15021]],[[14996,15026,15027]],[[15028,15015,15029]],[[15030,15031,15027]],[[15032,14998,14997]],[[15027,14997,14996]],[[15033,15030,15016]],[[15031,15034,14997]],[[14998,13153,14996]],[[15002,15035,15036]],[[15037,15038,15025]],[[15039,14984,3106]],[[15016,15026,14984]],[[15016,15030,15026]],[[15016,15028,15033]],[[15040,15041,3106]],[[15042,15020,15038]],[[14997,15034,15032]],[[15021,13153,15043]],[[15043,14998,15032]],[[15043,13153,14998]],[[15032,15034,15044]],[[15031,15030,15033]],[[15045,15020,15042]],[[13143,15021,15020]],[[15025,15038,15019]],[[15039,15046,15042]],[[15047,15040,15048]],[[14983,12955,15005]],[[15023,15029,15024]],[[15015,15024,15029]],[[15049,15033,15050]],[[15033,15028,15050]],[[15025,15019,15021]],[[15038,15020,15019]],[[15051,15040,3106]],[[15052,15053,15054]],[[15055,15056,15053]],[[15057,15051,3106]],[[15058,15054,15059]],[[15056,15060,15057]],[[15058,15047,15054]],[[15052,15055,15053]],[[15055,15060,15056]],[[15061,15040,15051]],[[15039,15042,15038]],[[15045,13143,15020]],[[14984,14996,11657]],[[14984,15026,14996]],[[15053,15062,15054]],[[15047,15048,15052]],[[15063,15064,15065]],[[15047,15052,15054]],[[15066,15036,15067]],[[15046,15039,15004]],[[15068,15067,15063]],[[15036,15035,15069]],[[15065,15070,15058]],[[15071,15064,15072]],[[15046,15045,15042]],[[15073,15003,15002]],[[15069,15035,15004]],[[15002,15036,15066]],[[15039,15069,15004]],[[15071,15070,15064]],[[15065,15064,15070]],[[15067,15036,15072]],[[15059,15065,15058]],[[15074,15063,15065]],[[15050,15028,15029]],[[15016,15015,15028]],[[15039,15037,14984]],[[15039,15038,15037]],[[15075,15076,15068]],[[15002,15004,15035]],[[15030,15027,15026]],[[15031,14997,15027]],[[15070,15047,15058]],[[15070,15077,15047]],[[14984,15024,15015]],[[14984,15037,15024]],[[15078,15057,3106]],[[15061,15048,15040]],[[15079,15080,15005]],[[15079,15056,15080]],[[15072,15041,15071]],[[15081,15047,15077]],[[15043,15022,15021]],[[15022,15029,15023]],[[13143,15073,15066]],[[15003,15045,15046]],[[15023,15025,15021]],[[15024,15037,15025]],[[15074,15059,15079]],[[15053,15056,15079]],[[15066,15073,15002]],[[13143,15045,15073]],[[15082,15011,3110]],[[15083,15084,15085]],[[12947,14999,12948]],[[14994,3161,14993]],[[15082,15086,15011]],[[15085,12951,12955]],[[15083,15087,15084]],[[15086,15082,15087]],[[15088,14990,14992]],[[15089,14980,14999]],[[15075,12957,15090]],[[15090,12948,15091]],[[14978,15092,15093]],[[14979,3114,15013]],[[15094,15095,15096]],[[13144,12948,15095]],[[15097,15098,12947]],[[15012,12951,14979]],[[15076,15090,15091]],[[12957,12948,15090]],[[15099,15008,15100]],[[15009,15098,15013]],[[12948,14999,14980]],[[14992,3113,3161]],[[15101,15022,15043]],[[15050,15029,15022]],[[15079,15005,12957]],[[15080,15056,15057]],[[15080,15057,15102]],[[15060,15051,15057]],[[15103,14985,15104]],[[13143,15066,15068]],[[15075,15063,12957]],[[15065,15059,15074]],[[3112,15082,3110]],[[14978,15093,14979]],[[15067,15072,15064]],[[15036,15069,15072]],[[15105,15000,14999]],[[15100,3113,15001]],[[14999,15001,15089]],[[15000,15100,15001]],[[3113,14981,15001]],[[14981,14980,15089]],[[14991,15106,15107]],[[14982,15108,14980]],[[14995,15109,15110]],[[14992,14981,3113]],[[15111,15112,15110]],[[15113,14990,15088]],[[15095,15114,15096]],[[15089,15001,14981]],[[15096,15114,14981]],[[15108,12948,14980]],[[15113,15106,14990]],[[15107,15115,15116]],[[15117,15118,14979]],[[3112,3114,15118]],[[15099,15100,15000]],[[15008,15007,15100]],[[15017,15018,11657]],[[13153,13154,14976]],[[15088,14992,14994]],[[15110,15088,14994]],[[3106,15041,15039]],[[15081,15077,15071]],[[15081,15071,15041]],[[15077,15070,15071]],[[15097,15119,15012]],[[12952,12951,15012]],[[15083,15085,12955]],[[15120,14978,15085]],[[15084,15120,15085]],[[15092,3112,15117]],[[15082,15121,15087]],[[15121,15092,15084]],[[15084,15092,15120]],[[15082,3112,15092]],[[15085,14978,12951]],[[15120,15092,14978]],[[14993,15122,13154]],[[15018,13153,14976]],[[15011,15006,3110]],[[15011,15086,15010]],[[15087,15083,15086]],[[15123,15006,15010]],[[15123,15083,12955]],[[15010,15086,15083]],[[15117,14979,15093]],[[15118,3114,14979]],[[15105,15099,15000]],[[15124,15008,15099]],[[15114,15108,14982]],[[15114,12948,15108]],[[14989,14987,15125]],[[15125,12948,14989]],[[15097,15012,15098]],[[15119,12952,15012]],[[15092,15117,15093]],[[3112,15118,15117]],[[15014,15013,3114]],[[15098,15012,15013]],[[15101,15049,15050]],[[15049,15031,15033]],[[15034,15049,15044]],[[15034,15031,15049]],[[15022,15101,15050]],[[15043,15032,15044]],[[15087,15121,15084]],[[15082,15092,15121]],[[15126,15127,14993]],[[15122,14976,13154]],[[11657,15122,15127]],[[14977,14976,15122]],[[3113,15007,15014]],[[3113,15100,15007]],[[13143,15068,15076]],[[15066,15067,15068]],[[15078,15102,15057]],[[15005,15080,15102]],[[15040,15081,15041]],[[15040,15047,15081]],[[15076,15075,15090]],[[15068,15063,15075]],[[12957,15063,15074]],[[15067,15064,15063]],[[15109,14995,13154]],[[15110,14994,14995]],[[15102,15078,15005]],[[3106,3110,14983]],[[13143,14988,13144]],[[15104,15076,15103]],[[15106,15113,15111]],[[15106,14991,14990]],[[15044,15101,15043]],[[15044,15049,15101]],[[14981,15114,14982]],[[15095,12948,15114]],[[14977,15128,14975]],[[11657,15018,15128]],[[15124,15009,15008]],[[12947,15098,15009]],[[12952,15097,12947]],[[12952,15119,15097]],[[13144,14989,12948]],[[14988,15104,14989]],[[13144,15094,15115]],[[13144,15095,15094]],[[15126,14993,3161]],[[15127,15122,14993]],[[14986,15125,14987]],[[14986,12948,15125]],[[14989,14985,14987]],[[15091,12948,14986]],[[15104,14985,14989]],[[15076,15091,15103]],[[14986,15103,15091]],[[14986,14985,15103]],[[15105,15124,15099]],[[12947,15009,15124]],[[14996,15017,11657]],[[14996,13153,15017]],[[15009,15014,15007]],[[15009,15013,15014]],[[11657,14977,15122]],[[11657,15128,14977]],[[15074,15079,12957]],[[15062,15053,15079]],[[15059,15062,15079]],[[15059,15054,15062]],[[11657,15126,3161]],[[11657,15127,15126]],[[12947,15105,14999]],[[12947,15124,15105]],[[14991,15116,14992]],[[15096,14981,14992]],[[15055,15048,15061]],[[15055,15052,15048]],[[15060,15061,15051]],[[15060,15055,15061]],[[15115,15096,15116]],[[15115,15094,15096]],[[13143,15104,14988]],[[13143,15076,15104]],[[13144,15106,13154]],[[15113,15112,15111]],[[13154,15106,15111]],[[15107,15116,14991]],[[13144,15107,15106]],[[13144,15115,15107]],[[15078,15129,15005]],[[15078,3106,14983]],[[15129,14983,15005]],[[15129,15078,14983]],[[15004,15003,15046]],[[15073,15045,15003]],[[14994,14992,3161]],[[15116,15096,14992]],[[15112,15088,15110]],[[15112,15113,15088]],[[15111,15109,13154]],[[15111,15110,15109]],[[15018,14975,15128]],[[15018,14976,14975]],[[15006,15123,12955]],[[15010,15083,15123]],[[15041,15069,15039]],[[15041,15072,15069]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d13392-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15130,15131,15132]],[[15133,15134,15135]],[[15130,15136,15131]],[[15137,15131,15136]],[[15138,15139,15140]],[[15141,15142,15143]],[[15144,15145,15142]],[[15137,15146,15147]],[[15148,15142,15145]],[[15149,15150,15151]],[[15133,15135,15151]],[[15152,15153,15154]],[[15155,15137,15136]],[[15156,15150,15131]],[[15157,15158,15148]],[[15153,15159,15160]],[[15159,15161,15162]],[[15161,15153,15148]],[[15160,15159,15163]],[[15161,15148,15164]],[[15162,15164,15165]],[[15162,15161,15164]],[[15163,15165,15166]],[[15164,15148,15165]],[[15167,15168,15169]],[[15170,15157,15171]],[[15170,15139,15157]],[[15157,15148,15145]],[[15172,15173,15174]],[[15175,15176,15177]],[[15178,15174,15173]],[[15179,15180,15181]],[[15182,15177,15149]],[[15154,15150,15183]],[[15169,15178,15130]],[[15184,15168,15144]],[[15147,15185,15186]],[[15151,15150,15187]],[[15188,15173,15172]],[[15176,15181,15177]],[[15189,15190,15174]],[[15189,15191,15192]],[[15156,15193,15187]],[[15185,15134,15194]],[[15130,15155,15136]],[[15190,15195,15172]],[[15130,15173,15155]],[[15130,15178,15173]],[[15196,15146,15197]],[[15188,15155,15173]],[[15185,15146,15175]],[[15146,15188,15197]],[[15178,15198,15174]],[[15181,15183,15149]],[[15192,15141,15189]],[[15141,15143,15180]],[[15179,15189,15180]],[[15174,15191,15189]],[[15197,15190,15176]],[[15197,15195,15190]],[[15199,15167,15130]],[[15200,15165,15158]],[[15174,15198,15191]],[[15192,15201,15141]],[[15194,15133,15151]],[[15149,15183,15150]],[[15144,15171,15145]],[[15168,15140,15170]],[[15141,15201,15142]],[[15144,15168,15171]],[[15186,15185,15193]],[[15134,15177,15135]],[[15163,15159,15162]],[[15154,15183,15152]],[[15175,15134,15185]],[[15175,15177,15134]],[[15187,15194,15151]],[[15194,15134,15133]],[[15190,15172,15174]],[[15195,15188,15172]],[[15167,15140,15168]],[[15167,15138,15140]],[[15199,15138,15167]],[[15165,15148,15158]],[[15202,15199,15130]],[[15202,15200,15199]],[[15132,15166,15202]],[[15132,15163,15166]],[[15132,15202,15130]],[[15166,15165,15202]],[[15199,15200,15138]],[[15202,15165,15200]],[[15177,15182,15135]],[[15177,15181,15149]],[[15197,15188,15195]],[[15137,15155,15188]],[[15178,15169,15201]],[[15201,15169,15184]],[[15165,15163,15162]],[[15160,15154,15153]],[[15188,15146,15137]],[[15197,15176,15196]],[[15190,15179,15176]],[[15180,15152,15181]],[[15137,15147,15131]],[[15146,15185,15147]],[[15175,15196,15176]],[[15175,15146,15196]],[[15176,15179,15181]],[[15190,15189,15179]],[[15138,15158,15139]],[[15138,15200,15158]],[[15171,15157,15145]],[[15139,15158,15157]],[[15193,15194,15187]],[[15193,15185,15194]],[[15167,15169,15130]],[[15168,15184,15169]],[[15147,15186,15131]],[[15187,15150,15156]],[[15186,15156,15131]],[[15186,15193,15156]],[[15180,15143,15152]],[[15142,15148,15143]],[[15168,15170,15171]],[[15140,15139,15170]],[[15135,15149,15151]],[[15135,15182,15149]],[[15189,15141,15180]],[[15192,15178,15201]],[[15198,15192,15191]],[[15198,15178,15192]],[[15181,15152,15183]],[[15143,15148,15153]],[[15143,15153,15152]],[[15161,15159,15153]],[[15201,15144,15142]],[[15201,15184,15144]],[[15132,15160,15163]],[[15132,15154,15160]],[[15203,15154,15132]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d15abd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15204,15205,15206]],[[15206,15205,15207]],[[15205,15208,15209]],[[15209,15210,15205]],[[15211,15212,15206]],[[15213,15209,15208]],[[15204,15206,15213]],[[15212,15209,15214]],[[15204,15213,15208]],[[15214,15209,15213]],[[15211,15206,15207]],[[15214,15213,15206]],[[15206,15212,15214]],[[15211,15209,15212]],[[15207,15205,15210]],[[15204,15208,15205]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d3cb76-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15215,15216,15217]],[[15218,15217,15219]],[[15220,15221,15222]],[[15215,15217,15222]],[[15221,15223,15224]],[[15225,15216,15215]],[[15215,15226,15225]],[[15227,15228,15225]],[[15218,15222,15217]],[[15229,15215,15222]],[[15230,15224,15226]],[[15231,15226,15224]],[[15221,15215,15229]],[[15230,15226,15215]],[[15231,15227,15226]],[[15228,15216,15225]],[[15226,15227,15225]],[[15231,15228,15227]],[[15232,15220,15219]],[[15220,15223,15221]],[[15220,15233,15219]],[[15220,15222,15233]],[[15222,15221,15229]],[[15220,15232,15223]],[[15221,15230,15215]],[[15221,15224,15230]],[[15228,15232,15219]],[[15223,15231,15224]],[[15233,15218,15219]],[[15233,15222,15218]],[[15228,15223,15232]],[[15228,15231,15223]],[[15234,15216,15228]],[[15217,15235,15219]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d48e56-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15236,15237,15238]],[[15239,15240,15236]],[[15241,15242,15243]],[[15244,15245,15240]],[[15242,15246,15243]],[[15247,15237,15236]],[[15245,15248,15247]],[[15249,15237,15248]],[[15250,15242,15251]],[[15239,15244,15240]],[[15250,15246,15242]],[[15252,15253,15245]],[[15252,15254,15249]],[[15249,15248,15253]],[[15250,15254,15252]],[[15255,15249,15254]],[[15250,15255,15254]],[[15256,15249,15255]],[[15252,15245,15244]],[[15253,15248,15245]],[[15251,15242,15241]],[[15246,15250,15252]],[[15257,15241,15258]],[[15243,15246,15252]],[[15259,15241,15257]],[[15241,15252,15258]],[[15252,15249,15253]],[[15256,15237,15249]],[[15259,15257,15239]],[[15260,15244,15239]],[[15259,15239,15238]],[[15257,15260,15239]],[[15245,15247,15240]],[[15248,15237,15247]],[[15256,15250,15251]],[[15256,15255,15250]],[[15239,15236,15238]],[[15240,15247,15236]],[[15260,15252,15244]],[[15241,15243,15252]],[[15258,15260,15257]],[[15258,15252,15260]],[[15251,15259,15238]],[[15251,15241,15259]],[[15261,15237,15256]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d5a08f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbc0149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15262,15263,15264]],[[15265,15264,15266]],[[15267,15268,15269]],[[15270,15271,15272]],[[15268,15273,15270]],[[15274,15275,15276]],[[15277,15274,15276]],[[15278,15274,15277]],[[15279,15276,15265]],[[15280,15281,15282]],[[15282,15279,15283]],[[15265,15284,15267]],[[15285,15279,15265]],[[15265,15276,15284]],[[15269,15286,15267]],[[15269,15263,15286]],[[15269,15268,15272]],[[15273,15271,15270]],[[15282,15281,15279]],[[15275,15273,15268]],[[15262,15265,15286]],[[15268,15270,15272]],[[15284,15268,15267]],[[15276,15275,15268]],[[15286,15265,15267]],[[15276,15268,15284]],[[15277,15281,15280]],[[15277,15276,15281]],[[15285,15265,15266]],[[15285,15287,15279]],[[15283,15279,15287]],[[15281,15276,15279]],[[15265,15262,15264]],[[15286,15263,15262]],[[15288,15277,15289]],[[15288,15278,15277]],[[15289,15280,15282]],[[15289,15277,15280]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d5c6c6-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15290,15291,15292]],[[15293,15294,15295]],[[15296,15297,15298]],[[15299,15300,15290]],[[15296,15298,15301]],[[15302,15296,15291]],[[15295,15294,15303]],[[15298,15297,15304]],[[15295,15303,15290]],[[15294,15298,15304]],[[15294,15299,15303]],[[15300,15302,15290]],[[15301,15295,15290]],[[15293,15298,15294]],[[15301,15290,15292]],[[15303,15299,15290]],[[15294,15304,15305]],[[15297,15296,15304]],[[15294,15305,15299]],[[15304,15296,15305]],[[15301,15293,15295]],[[15301,15298,15293]],[[15290,15302,15291]],[[15305,15296,15302]],[[15305,15300,15299]],[[15305,15302,15300]],[[15306,15291,15296]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d97113-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15307,15308,15309]],[[15310,15311,15312]],[[15313,15314,15315]],[[15313,15316,15314]],[[15315,15314,15317]],[[15317,15314,15318]],[[15318,15314,15319]],[[15318,15320,15317]],[[15321,15322,15312]],[[15318,15323,15324]],[[15322,15316,15310]],[[15309,15325,15326]],[[15312,15322,15310]],[[15327,15328,15329]],[[15314,15316,15330]],[[15308,15328,15309]],[[15322,15329,15316]],[[15322,15327,15329]],[[15319,15314,15330]],[[15315,15311,15313]],[[15310,15313,15311]],[[15310,15316,15313]],[[15331,15318,15324]],[[15323,15325,15324]],[[15330,15323,15319]],[[15326,15325,15323]],[[15330,15326,15323]],[[15330,15309,15326]],[[15316,15307,15330]],[[15328,15325,15309]],[[15323,15318,15319]],[[15331,15320,15318]],[[15327,15321,15312]],[[15327,15322,15321]],[[15330,15307,15309]],[[15316,15329,15308]],[[15316,15308,15307]],[[15329,15328,15308]],[[15332,15328,15327]],[[15325,15333,15324]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da0cd1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15334,15335,15336]],[[15337,15338,15339]],[[15340,15341,15342]],[[15343,15344,15345]],[[15346,15347,15348]],[[15349,15350,15338]],[[15351,15348,15352]],[[15353,15354,15355]],[[15356,15348,15357]],[[15357,15335,15334]],[[15358,15359,15342]],[[15360,15350,15359]],[[15352,15347,15361]],[[15362,15363,15364]],[[15349,15355,15350]],[[15364,15365,15362]],[[15335,15344,15366]],[[15367,15342,15359]],[[15341,15358,15342]],[[15360,15359,15358]],[[15360,15341,15361]],[[15345,15340,15343]],[[15345,15357,15348]],[[15357,15334,15368]],[[15347,15346,15339]],[[15356,15357,15368]],[[15356,15368,15337]],[[15334,15338,15337]],[[15346,15356,15339]],[[15346,15348,15356]],[[15366,15336,15335]],[[15369,15343,15342]],[[15367,15362,15342]],[[15369,15370,15343]],[[15370,15371,15343]],[[15366,15344,15371]],[[15362,15369,15342]],[[15371,15344,15343]],[[15365,15369,15362]],[[15365,15372,15370]],[[15350,15354,15359]],[[15350,15355,15354]],[[15354,15363,15367]],[[15354,15353,15373]],[[15354,15373,15363]],[[15373,15374,15364]],[[15361,15341,15352]],[[15360,15358,15341]],[[15335,15357,15345]],[[15348,15347,15352]],[[15335,15345,15344]],[[15340,15342,15343]],[[15354,15367,15359]],[[15363,15362,15367]],[[15364,15375,15365]],[[15336,15338,15334]],[[15365,15375,15372]],[[15374,15355,15376]],[[15365,15370,15369]],[[15372,15377,15370]],[[15345,15351,15352]],[[15345,15348,15351]],[[15370,15377,15378]],[[15374,15353,15355]],[[15336,15376,15349]],[[15336,15366,15376]],[[15375,15377,15372]],[[15375,15376,15377]],[[15356,15337,15339]],[[15368,15334,15337]],[[15373,15364,15363]],[[15373,15353,15374]],[[15339,15361,15347]],[[15339,15360,15361]],[[15336,15349,15338]],[[15376,15355,15349]],[[15370,15378,15371]],[[15377,15376,15378]],[[15352,15340,15345]],[[15352,15341,15340]],[[15375,15374,15376]],[[15375,15364,15374]],[[15378,15366,15371]],[[15378,15376,15366]],[[15360,15379,15350]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da0cdd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15380,15381,15382]],[[15383,15384,15385]],[[15386,15387,15388]],[[15389,15390,15391]],[[15392,15391,15380]],[[15393,15394,15395]],[[15396,15397,15398]],[[15399,15386,15400]],[[15401,15380,15382]],[[15391,15381,15380]],[[15401,15392,15380]],[[15402,15398,15397]],[[15403,15404,15405]],[[15390,15381,15391]],[[15392,15393,15391]],[[15384,15406,15385]],[[15388,15394,15401]],[[15407,15396,15398]],[[15395,15407,15408]],[[15407,15388,15396]],[[15409,15395,15383]],[[15410,15402,15411]],[[15389,15409,15412]],[[15394,15407,15395]],[[15393,15389,15391]],[[15412,15385,15390]],[[15413,15414,15406]],[[15414,15381,15406]],[[15409,15383,15412]],[[15406,15381,15390]],[[15384,15413,15406]],[[15400,15381,15414]],[[15383,15415,15384]],[[15415,15416,15413]],[[15412,15383,15385]],[[15415,15413,15384]],[[15408,15417,15383]],[[15408,15398,15402]],[[15413,15416,15414]],[[15417,15408,15402]],[[15408,15407,15398]],[[15394,15388,15407]],[[15383,15395,15408]],[[15409,15393,15395]],[[15416,15402,15410]],[[15386,15381,15400]],[[15399,15405,15386]],[[15387,15386,15404]],[[15410,15411,15418]],[[15403,15387,15404]],[[15418,15399,15400]],[[15405,15404,15386]],[[15411,15402,15397]],[[15416,15415,15417]],[[15387,15403,15397]],[[15418,15400,15410]],[[15412,15390,15389]],[[15385,15406,15390]],[[15416,15417,15402]],[[15415,15383,15417]],[[15414,15410,15400]],[[15414,15416,15410]],[[15411,15403,15418]],[[15411,15397,15403]],[[15388,15401,15382]],[[15394,15392,15401]],[[15387,15396,15388]],[[15387,15397,15396]],[[15418,15405,15399]],[[15418,15403,15405]],[[15389,15393,15409]],[[15392,15394,15393]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da8252-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15419,15420,15421]],[[15422,15423,15424]],[[15424,15425,15426]],[[15427,15428,15429]],[[15430,15426,15431]],[[15432,15420,15433]],[[15434,15435,15425]],[[15425,15436,15437]],[[15438,15434,15425]],[[15425,15437,15426]],[[15435,15439,15425]],[[15440,15436,15439]],[[15440,15441,15442]],[[15440,15439,15441]],[[15423,15443,15424]],[[15438,15425,15424]],[[15430,15444,15433]],[[15430,15431,15444]],[[15445,15443,15423]],[[15438,15424,15443]],[[15419,15430,15433]],[[15446,15426,15430]],[[15431,15429,15444]],[[15431,15427,15429]],[[15426,15437,15431]],[[15428,15420,15432]],[[15447,15448,15449]],[[15446,15447,15449]],[[15419,15446,15430]],[[15449,15422,15446]],[[15441,15450,15442]],[[15435,15443,15445]],[[15450,15435,15445]],[[15441,15439,15435]],[[15419,15433,15420]],[[15444,15429,15432]],[[15451,15447,15446]],[[15448,15445,15449]],[[15426,15422,15424]],[[15449,15445,15423]],[[15442,15450,15445]],[[15441,15435,15450]],[[15446,15422,15426]],[[15449,15423,15422]],[[15444,15432,15433]],[[15429,15428,15432]],[[15437,15428,15427]],[[15440,15420,15428]],[[15439,15436,15425]],[[15440,15437,15436]],[[15442,15451,15421]],[[15442,15448,15451]],[[15443,15434,15438]],[[15443,15435,15434]],[[15451,15419,15421]],[[15451,15446,15419]],[[15451,15448,15447]],[[15442,15445,15448]],[[15431,15437,15427]],[[15440,15428,15437]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95dca4f1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15452,15453,15454]],[[15455,15456,15457]],[[15458,15455,15459]],[[15460,15461,15454]],[[15462,15456,15455]],[[15455,15458,15462]],[[15462,15457,15456]],[[15459,15455,15463]],[[15464,15465,15466]],[[15464,15463,15465]],[[15459,15464,15452]],[[15465,15463,15466]],[[15467,15462,15468]],[[15457,15463,15455]],[[15467,15457,15462]],[[15466,15463,15457]],[[15469,15467,15468]],[[15466,15457,15467]],[[15459,15452,15470]],[[15471,15467,15469]],[[15454,15453,15460]],[[15452,15466,15471]],[[15452,15471,15453]],[[15466,15467,15471]],[[15458,15468,15462]],[[15458,15472,15468]],[[15471,15469,15453]],[[15461,15472,15454]],[[15469,15460,15453]],[[15469,15468,15461]],[[15470,15454,15472]],[[15470,15452,15454]],[[15469,15461,15460]],[[15468,15472,15461]],[[15452,15464,15466]],[[15459,15463,15464]],[[15473,15472,15458]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95de048f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15474,15475,15476]],[[15477,15478,15479]],[[15480,15477,15479]],[[15481,15482,15483]],[[15484,15478,15485]],[[15477,15480,15486]],[[15484,15485,15487]],[[15488,15489,15490]],[[15478,15491,15485]],[[15486,15480,15490]],[[15492,15487,15476]],[[15485,15491,15493]],[[15492,15476,15475]],[[15494,15495,15496]],[[15487,15497,15476]],[[15481,15491,15482]],[[15487,15493,15497]],[[15487,15485,15493]],[[15498,15475,15474]],[[15481,15493,15491]],[[15484,15492,15496]],[[15494,15474,15499]],[[15492,15475,15498]],[[15476,15497,15474]],[[15499,15474,15497]],[[15496,15498,15474]],[[15483,15482,15486]],[[15491,15478,15486]],[[15500,15488,15501]],[[15488,15502,15481]],[[15490,15489,15483]],[[15502,15500,15503]],[[15488,15481,15489]],[[15497,15493,15481]],[[15495,15490,15480]],[[15501,15488,15490]],[[15474,15494,15496]],[[15504,15495,15494]],[[15479,15484,15496]],[[15479,15478,15484]],[[15496,15492,15498]],[[15484,15487,15492]],[[15491,15486,15482]],[[15478,15477,15486]],[[15495,15501,15490]],[[15495,15500,15501]],[[15504,15500,15495]],[[15499,15497,15481]],[[15504,15503,15500]],[[15504,15494,15499]],[[15504,15499,15503]],[[15488,15500,15502]],[[15490,15483,15486]],[[15489,15481,15483]],[[15502,15499,15481]],[[15502,15503,15499]],[[15480,15505,15495]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95df8b58-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15506,15507,15508]],[[15509,15510,15511]],[[15512,15509,15511]],[[15508,15513,15506]],[[15514,15511,15515]],[[15510,15516,15511]],[[15517,15516,15510]],[[15518,15519,8761]],[[8674,15517,8675]],[[8674,15516,15517]],[[15506,15520,15521]],[[8674,8760,15520]],[[8675,15522,8761]],[[15523,15521,8760]],[[15524,15514,15525]],[[15508,15516,15526]],[[15514,15515,15508]],[[15511,15516,15515]],[[15514,15508,15507]],[[15515,15516,15508]],[[8674,15526,15516]],[[8674,15520,15526]],[[15527,15518,8761]],[[15525,15507,15519]],[[8761,15524,15528]],[[15512,15511,15514]],[[8761,15519,8760]],[[15519,15507,15506]],[[15526,15513,15508]],[[15526,15520,15513]],[[8760,15521,15520]],[[15521,15519,15506]],[[15520,15506,15513]],[[15521,15523,15519]],[[8760,15519,15523]],[[15518,15525,15519]],[[15528,15529,8761]],[[15528,15518,15529]],[[15528,15525,15518]],[[15528,15524,15525]],[[15522,15512,15524]],[[15522,15517,15509]],[[15522,15509,15512]],[[15517,15510,15509]],[[8761,15522,15524]],[[8675,15517,15522]],[[15525,15514,15507]],[[15524,15512,15514]],[[15529,15527,8761]],[[15529,15518,15527]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e04e3b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9bf749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15530,15531,15532]],[[15533,15534,15535]],[[15536,15537,15538]],[[15537,15539,15538]],[[15540,15541,15542]],[[15543,15538,15542]],[[15544,15541,15545]],[[15546,15547,15536]],[[15548,15549,15550]],[[15551,15552,15537]],[[15539,15553,15538]],[[15547,15551,15537]],[[15554,15552,15555]],[[15537,15552,15554]],[[15556,15557,15558]],[[15539,15559,15541]],[[15550,15552,15551]],[[15539,15554,15559]],[[15539,15537,15554]],[[15544,15545,15560]],[[15559,15554,15555]],[[15561,15544,15531]],[[15545,15559,15555]],[[15546,15536,15562]],[[15544,15542,15541]],[[15563,15536,15564]],[[15547,15537,15536]],[[15535,15562,15565]],[[15546,15548,15551]],[[15535,15565,15533]],[[15562,15536,15565]],[[15539,15541,15553]],[[15559,15545,15541]],[[15566,15564,15561]],[[15540,15553,15541]],[[15533,15566,15534]],[[15533,15565,15566]],[[15565,15563,15566]],[[15536,15538,15564]],[[15566,15563,15564]],[[15565,15536,15563]],[[15538,15540,15542]],[[15538,15553,15540]],[[15545,15556,15560]],[[15555,15557,15556]],[[15555,15550,15549]],[[15555,15552,15550]],[[15566,15561,15530]],[[15564,15538,15543]],[[15531,15544,15560]],[[15561,15543,15544]],[[15546,15551,15547]],[[15548,15550,15551]],[[15558,15567,15560]],[[15530,15561,15531]],[[15556,15558,15560]],[[15567,15531,15560]],[[15535,15546,15562]],[[15535,15548,15546]],[[15544,15543,15542]],[[15561,15564,15543]],[[15557,15567,15558]],[[15532,15534,15530]],[[15567,15532,15531]],[[15534,15566,15530]],[[15545,15555,15556]],[[15549,15557,15555]],[[15557,15532,15567]],[[15557,15534,15532]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e1395b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15568,15569,15570]],[[15571,15572,15573]],[[15571,10005,11645]],[[15574,15569,15568]],[[15575,15576,15577]],[[15569,15573,15575]],[[15578,15579,15571]],[[15573,15574,15571]],[[15570,15569,15575]],[[15571,15579,15580]],[[11645,15578,15571]],[[15578,15581,15577]],[[15573,15572,15575]],[[15579,15578,15576]],[[15582,15583,15584]],[[15575,15577,12553]],[[15585,15581,15578]],[[15584,12553,15577]],[[15579,15576,15580]],[[15575,12553,10000]],[[15578,15577,15576]],[[15581,15584,15577]],[[11645,15585,15578]],[[11645,12776,15582]],[[15585,15584,15581]],[[15583,12776,12553]],[[10006,15570,10000]],[[15586,10005,15574]],[[15586,15568,15570]],[[15574,15573,15569]],[[15585,15582,15584]],[[15585,11645,15582]],[[15570,15575,10000]],[[15580,15576,15575]],[[15586,15574,15568]],[[10005,15571,15574]],[[15572,15580,15575]],[[15572,15571,15580]],[[15584,15583,12553]],[[15582,12776,15583]],[[10006,15586,15570]],[[10006,10005,15586]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e24a9a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15587,15588,12699]],[[15588,14325,12674]],[[14320,15589,15590]],[[15591,15592,14322]],[[15593,14322,14326]],[[15594,14320,14322]],[[15595,15594,14322]],[[15596,15597,15598]],[[15599,15600,14320]],[[15596,15598,14325]],[[15601,15602,15603]],[[15595,14322,15592]],[[15604,15602,15605]],[[15603,15592,15591]],[[15606,15607,15593]],[[15608,15604,15609]],[[14320,15590,14325]],[[15610,12686,12674]],[[15589,15611,15590]],[[15598,12674,14325]],[[15612,15613,15600]],[[15589,14320,15600]],[[15590,15614,15615]],[[15613,15589,15600]],[[15616,15617,14326]],[[15588,12674,12699]],[[15618,15595,15592]],[[15594,12686,14320]],[[15619,15608,15620]],[[15609,15604,15605]],[[15615,15610,15598]],[[15597,15615,15598]],[[15614,15611,15610]],[[15612,15611,15613]],[[15601,15605,15602]],[[15593,15607,15609]],[[12685,15594,15595]],[[12685,12686,15594]],[[15617,15621,15619]],[[15620,15617,15619]],[[15620,15606,15593]],[[15619,15621,15608]],[[15616,15622,15587]],[[14326,14325,15622]],[[15590,15611,15614]],[[15589,15613,15611]],[[15590,15596,14325]],[[15623,15597,15596]],[[12686,15599,14320]],[[12686,15600,15599]],[[15598,15610,12674]],[[15600,12686,15610]],[[15623,15615,15597]],[[15614,15610,15615]],[[15590,15623,15596]],[[15590,15615,15623]],[[15606,15620,15608]],[[12699,12685,15604]],[[15606,15608,15607]],[[15618,12685,15595]],[[15621,15604,15608]],[[15621,12699,15604]],[[15604,15603,15602]],[[15604,12685,15618]],[[15593,15609,15605]],[[15607,15608,15609]],[[15610,15612,15600]],[[15610,15611,15612]],[[15622,15616,14326]],[[15587,12699,15616]],[[15621,15616,12699]],[[15621,15617,15616]],[[15593,15601,14322]],[[15593,15605,15601]],[[15601,15591,14322]],[[15601,15603,15591]],[[14326,15620,15593]],[[14326,15617,15620]],[[15622,15588,15587]],[[15622,14325,15588]],[[15603,15618,15592]],[[15603,15604,15618]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e5572f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15624,15625,9879]],[[15626,15627,9878]],[[9880,15625,15626]],[[15625,9876,9879]],[[15626,15625,15624]],[[9880,9876,15625]],[[9880,15626,9878]],[[15627,9879,9878]],[[15624,15627,15626]],[[15624,9879,15627]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e5ccd1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15628,15629,15630]],[[15631,15628,15630]],[[15632,15633,15634]],[[15635,15629,15636]],[[15637,15638,15639]],[[15640,15641,15629]],[[15642,15643,15644]],[[15645,15629,15628]],[[15646,15647,15648]],[[15649,15650,15651]],[[15644,15652,15653]],[[15653,15654,15649]],[[15655,15656,15657]],[[15658,15650,15654]],[[15659,15643,15660]],[[15661,15662,15652]],[[15663,15647,15630]],[[15660,15643,15642]],[[15631,15664,15628]],[[15665,15666,15667]],[[15668,15639,15666]],[[15669,15656,15639]],[[15655,15667,15666]],[[15635,15670,15629]],[[15635,15667,15670]],[[15634,15670,15667]],[[15641,15671,15636]],[[15672,15668,15665]],[[15673,15631,15630]],[[15673,15664,15631]],[[15651,15670,15634]],[[15650,15629,15670]],[[15632,15649,15633]],[[15650,15670,15651]],[[15632,15634,15667]],[[15633,15651,15634]],[[15638,15669,15639]],[[15656,15666,15639]],[[15638,15656,15669]],[[15655,15657,15642]],[[15674,15657,15656]],[[15674,15675,15657]],[[15671,15665,15636]],[[15665,15667,15676]],[[15635,15665,15676]],[[15668,15637,15639]],[[15664,15675,15674]],[[15664,15673,15677]],[[15678,15679,15628]],[[15679,15640,15645]],[[15628,15679,15645]],[[15680,15638,15637]],[[15648,15647,15681]],[[15663,15682,15647]],[[15633,15649,15651]],[[15654,15650,15649]],[[15632,15653,15649]],[[15652,15644,15661]],[[15652,15662,15654]],[[15682,15650,15662]],[[15659,15682,15643]],[[15643,15682,15661]],[[15638,15674,15656]],[[15660,15681,15659]],[[15647,15646,15630]],[[15664,15674,15678]],[[15646,15677,15673]],[[15646,15657,15675]],[[15679,15637,15672]],[[15679,15678,15637]],[[15645,15640,15629]],[[15679,15672,15641]],[[15629,15641,15636]],[[15640,15679,15641]],[[15677,15675,15664]],[[15677,15646,15675]],[[15632,15655,15683]],[[15666,15656,15655]],[[15664,15678,15628]],[[15680,15637,15678]],[[15655,15642,15683]],[[15652,15654,15653]],[[15683,15642,15653]],[[15643,15661,15644]],[[15653,15642,15644]],[[15657,15660,15642]],[[15661,15682,15662]],[[15663,15650,15682]],[[15671,15672,15665]],[[15671,15641,15672]],[[15680,15674,15638]],[[15680,15678,15674]],[[15646,15660,15657]],[[15648,15681,15660]],[[15655,15632,15667]],[[15683,15653,15632]],[[15662,15658,15654]],[[15662,15650,15658]],[[15630,15646,15673]],[[15648,15660,15646]],[[15647,15659,15681]],[[15647,15682,15659]],[[15665,15635,15636]],[[15676,15667,15635]],[[15665,15668,15666]],[[15672,15637,15668]],[[15650,15684,15629]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e6b6dc-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9af849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15685,8677,8755]],[[15686,15687,15688]],[[15686,15689,15687]],[[15690,8677,15688]],[[15691,15689,15686]],[[15687,15690,15688]],[[8678,15689,8754]],[[8678,15690,15689]],[[15689,15690,15687]],[[8678,8677,15690]],[[8677,15685,15688]],[[15691,8754,15689]],[[15691,15685,8755]],[[15686,15688,15685]],[[15685,15691,15686]],[[8755,8754,15691]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e88c0d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15692,15693,15694]],[[15692,15695,15696]],[[15697,15698,15695]],[[15699,15700,15696]],[[15701,15702,15698]],[[15703,15704,15702]],[[15697,15695,15692]],[[15695,15702,15699]],[[15701,15698,15705]],[[15702,15695,15698]],[[15706,15707,15694]],[[15707,15701,15705]],[[15707,15705,15697]],[[15707,15706,15701]],[[15707,15697,15694]],[[15705,15698,15697]],[[15695,15699,15696]],[[15700,15693,15692]],[[15702,15704,15699]],[[15708,15693,15704]],[[15704,15700,15699]],[[15704,15693,15700]],[[15708,15701,15706]],[[15708,15709,15703]],[[15701,15708,15703]],[[15708,15704,15709]],[[15701,15703,15702]],[[15709,15704,15703]],[[15697,15692,15694]],[[15696,15700,15692]],[[15710,15693,15708]],[[15694,15711,15706]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ea39ef-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15712,15713,15714]],[[15715,15714,15716]],[[15717,15718,15716]],[[15717,15713,15712]],[[15718,15715,15716]],[[15718,15717,15715]],[[15715,15712,15714]],[[15715,15717,15712]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ea6026-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15719,15720,15721]],[[15722,15723,15724]],[[15725,15726,15727]],[[15728,15729,15730]],[[15731,15724,15726]],[[15730,15729,15721]],[[15732,15733,15734]],[[15735,15736,15730]],[[15734,15726,15724]],[[15737,15738,15726]],[[15719,15721,15729]],[[15739,15730,15721]],[[15740,15732,15734]],[[15726,15725,15731]],[[15741,15722,15725]],[[15739,15721,15722]],[[15741,15735,15730]],[[15736,15728,15730]],[[15728,15733,15742]],[[15737,15726,15734]],[[15740,15734,15724]],[[15727,15743,15736]],[[15723,15740,15724]],[[15742,15733,15732]],[[15742,15740,15744]],[[15724,15731,15722]],[[15725,15722,15731]],[[15721,15720,15722]],[[15745,15744,15723]],[[15723,15722,15720]],[[15744,15740,15723]],[[15742,15732,15740]],[[15739,15741,15730]],[[15727,15726,15738]],[[15722,15741,15739]],[[15725,15735,15741]],[[15720,15745,15723]],[[15746,15742,15744]],[[15733,15737,15734]],[[15733,15728,15738]],[[15743,15738,15728]],[[15737,15733,15738]],[[15735,15727,15736]],[[15735,15725,15727]],[[15746,15745,15719]],[[15747,15744,15745]],[[15746,15719,15729]],[[15745,15720,15719]],[[15736,15743,15728]],[[15727,15738,15743]],[[15746,15747,15745]],[[15746,15744,15747]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95eafcdb-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15748,15749,8753]],[[15748,8723,8752]],[[15750,15751,15748]],[[15748,8753,8723]],[[15750,15749,15751]],[[8756,8753,15749]],[[15750,15748,8752]],[[15751,15749,15748]],[[8756,15750,8752]],[[8756,15749,15750]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ec5c64-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15752,15753,15754]],[[15755,15756,15757]],[[15758,15759,15756]],[[15757,15760,15761]],[[15762,15763,15758]],[[15759,15754,15753]],[[15764,15765,15762]],[[15765,15754,15759]],[[15755,15758,15756]],[[15763,15765,15758]],[[15758,15765,15759]],[[15764,15760,15754]],[[15759,15753,15756]],[[15754,15760,15752]],[[15756,15766,15757]],[[15756,15753,15766]],[[15762,15765,15763]],[[15764,15754,15765]],[[15767,15768,15769]],[[15768,15753,15769]],[[15757,15752,15760]],[[15769,15753,15752]],[[15755,15757,15761]],[[15767,15769,15752]],[[15766,15768,15757]],[[15766,15753,15768]],[[15757,15767,15752]],[[15757,15768,15767]],[[15762,15755,15761]],[[15762,15758,15755]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ecd1fd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15770,15771,15772]],[[15773,15774,15775]],[[15776,15777,15778]],[[15779,15780,15781]],[[15770,15774,15771]],[[15771,15779,15781]],[[15770,15775,15774]],[[15782,15783,15774]],[[15773,15782,15774]],[[15784,15785,15786]],[[15787,15788,15782]],[[15789,15785,15784]],[[15790,15776,15778]],[[15776,15791,15777]],[[15780,15786,15781]],[[15771,15792,15772]],[[15790,15793,15794]],[[15793,15784,15779]],[[15793,15778,15784]],[[15777,15784,15778]],[[15771,15794,15779]],[[15779,15784,15780]],[[15795,15770,15772]],[[15795,15796,15770]],[[15780,15784,15786]],[[15777,15791,15789]],[[15773,15787,15782]],[[15787,15797,15788]],[[15770,15796,15798]],[[15798,15787,15773]],[[15788,15791,15776]],[[15795,15785,15791]],[[15788,15799,15791]],[[15797,15791,15799]],[[15782,15788,15776]],[[15787,15796,15797]],[[15777,15789,15784]],[[15791,15785,15789]],[[15798,15796,15787]],[[15795,15797,15796]],[[15788,15797,15799]],[[15795,15791,15797]],[[15775,15798,15773]],[[15775,15770,15798]],[[15785,15781,15786]],[[15785,15792,15781]],[[15774,15783,15794]],[[15782,15776,15790]],[[15783,15790,15794]],[[15783,15782,15790]],[[15794,15793,15779]],[[15790,15778,15793]],[[15794,15771,15774]],[[15781,15792,15771]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ecf925-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15800,15801,15802]],[[15803,15804,15805]],[[15806,15807,15801]],[[15808,15809,15804]],[[15810,15811,15807]],[[15812,15809,15808]],[[15802,15801,15807]],[[15813,15804,15803]],[[15814,15810,15801]],[[15802,15811,15815]],[[15816,15810,15817]],[[15818,15819,15810]],[[15819,15818,15805]],[[15819,15811,15810]],[[15820,15821,15814]],[[15805,15818,15821]],[[15820,15814,15822]],[[15817,15810,15814]],[[15814,15823,15822]],[[15814,15801,15823]],[[15821,15817,15814]],[[15821,15818,15816]],[[15824,15819,15805]],[[15824,15811,15819]],[[15821,15816,15817]],[[15818,15810,15816]],[[15810,15806,15801]],[[15810,15807,15806]],[[15803,15820,15822]],[[15805,15821,15820]],[[15823,15813,15803]],[[15823,15801,15813]],[[15800,15815,15812]],[[15811,15824,15812]],[[15811,15802,15807]],[[15815,15800,15802]],[[15820,15803,15805]],[[15822,15823,15803]],[[15825,15800,15808]],[[15813,15801,15800]],[[15811,15812,15815]],[[15824,15809,15812]],[[15813,15825,15804]],[[15800,15812,15808]],[[15804,15825,15808]],[[15813,15800,15825]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ed1f59-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15826,15827,15828]],[[15829,15830,15831]],[[15826,15829,15831]],[[15832,15833,15834]],[[15834,15827,15831]],[[15835,15836,15837]],[[15831,15827,15826]],[[15835,15837,15838]],[[15834,15833,15827]],[[15834,15839,15832]],[[15829,15840,15830]],[[15829,15826,15836]],[[15829,15836,15840]],[[15827,15833,15828]],[[15837,15828,15832]],[[15836,15826,15828]],[[15838,15832,15839]],[[15828,15833,15832]],[[15838,15837,15832]],[[15836,15828,15837]],[[15830,15841,15839]],[[15841,15840,15835]],[[15841,15835,15838]],[[15840,15836,15835]],[[15842,15834,15831]],[[15842,15839,15834]],[[15839,15841,15838]],[[15830,15840,15841]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ed4687-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15843,15844,15845]],[[15846,15847,15848]],[[15843,15845,15849]],[[15844,15847,15845]],[[15850,15843,15851]],[[15845,15847,15849]],[[15851,15843,15849]],[[15850,15844,15843]],[[15850,15851,15848]],[[15849,15847,15851]],[[15851,15846,15848]],[[15851,15847,15846]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b981072fa-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15217,11959,15852]],[[15217,15852,15235]],[[11959,11986,15852]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9813a745-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1ad049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15853,8126,8128]],[[15853,8128,15854]],[[15854,8128,8130]],[[8130,8128,8129]],[[8126,8127,8128]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9813ce67-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15855,15856,15857]],[[15855,15857,15858]],[[15856,15859,15857]],[[15856,15860,15859]],[[15860,15856,15861]],[[15861,15856,15862]],[[15862,15856,15863]],[[15863,15856,15864]],[[15864,15856,15865]],[[15865,15856,15866]],[[15866,15856,15867]],[[15867,15856,15868]],[[15868,15856,15869]],[[15869,15856,15870]],[[15870,15856,15871]],[[15871,15856,15872]],[[15872,15856,15873]],[[15873,15856,15874]],[[15874,15856,15875]],[[15875,15856,15876]],[[15876,15856,15877]],[[15877,15856,15878]],[[15878,15856,15879]],[[15879,15856,15880]],[[15880,15856,15881]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9816dbab-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15882,15883,15217]],[[14527,14532,15884]],[[15885,15328,15886]],[[15886,15328,15887]],[[15887,15328,15888]],[[15888,15328,15889]],[[15328,15890,15891]],[[15889,15328,15891]],[[15890,15328,15892]],[[15892,14118,15893]],[[15893,14118,15894]],[[15894,14102,15895]],[[15895,14102,15896]],[[11876,15884,15897]],[[15898,14102,15897]],[[15896,14102,15898]],[[15899,15328,15885]],[[15884,15693,14527]],[[15899,15900,15325]],[[15693,15884,15694]],[[15694,15884,11876]],[[11876,15897,11877]],[[11877,15897,15472]],[[15472,15897,15470]],[[15470,15897,14102]],[[14102,15894,14118]],[[14118,15892,15328]],[[15328,15899,15325]],[[15325,15900,11997]],[[15901,15216,14267]],[[15902,15903,15904]],[[15904,15905,15906]],[[15907,15904,15906]],[[15908,15909,15910]],[[15910,15903,15911]],[[15912,15908,15910]],[[15911,15912,15910]],[[15902,15911,15903]],[[15913,15902,15904]],[[15914,15913,15904]],[[11987,15915,15906]],[[15916,11959,15217]],[[15904,15917,15914]],[[11987,11959,15915]],[[15917,15904,15918]],[[15919,15907,15906]],[[15918,15904,15907]],[[15920,15919,15906]],[[15216,15901,15217]],[[15920,15906,15921]],[[15921,15906,15915]],[[15915,11959,15916]],[[15217,15922,15916]],[[15217,15923,15922]],[[14267,14254,15924]],[[15923,15217,15925]],[[15925,15217,15926]],[[15926,15217,15927]],[[15927,15217,15928]],[[15928,15217,15929]],[[15929,15217,15930]],[[15930,15217,15883]],[[15931,15882,15217]],[[15932,15931,15217]],[[15933,15932,15217]],[[15901,15933,15217]],[[15901,15934,15933]],[[15901,15935,15934]],[[15901,15936,15935]],[[15901,15937,15936]],[[15937,15901,15938]],[[15938,15901,15939]],[[15939,15901,15940]],[[15940,15901,15941]],[[15941,15901,15942]],[[15942,15943,15944]],[[15944,15943,15945]],[[7171,15945,7170]],[[7170,15945,15943]],[[15943,15942,15901]],[[7199,15943,15901]],[[15924,15901,14267]],[[7198,7199,15901]],[[14254,11998,15946]],[[14254,15947,15924]],[[14254,15946,15947]],[[11998,15948,15946]],[[11998,15949,15948]],[[11998,15950,15949]],[[11998,15951,15950]],[[11998,11997,15952]],[[11998,15952,15951]],[[11997,15900,15952]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9817c598-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15953,15954,15955]],[[15954,15956,15955]],[[15957,15958,15959]],[[15957,15955,15960]],[[15957,15961,15958]],[[15957,15962,15961]],[[15957,15963,15962]],[[15957,15964,15963]],[[15957,15965,15964]],[[15957,15966,15965]],[[15957,15967,15966]],[[15957,15968,15967]],[[15957,15969,15968]],[[15957,15960,15969]],[[15955,15970,15960]],[[15955,15956,15970]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981a0ff9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33bf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15971,15972,15973]],[[15971,15973,15974]],[[15972,15975,15973]],[[15976,15977,15978]],[[15979,15976,15980]],[[15981,15979,15982]],[[15983,15981,15984]],[[15985,15983,15986]],[[15987,15985,15988]],[[15989,15987,15990]],[[15991,15989,15992]],[[15993,15991,15994]],[[15995,15993,15996]],[[15997,15995,15998]],[[15997,15999,16000]],[[15997,15998,15999]],[[15995,15996,15998]],[[15977,16001,16002]],[[15993,15994,15996]],[[15991,15992,15994]],[[16001,16003,16004]],[[15989,15990,15992]],[[15987,15988,15990]],[[16003,16005,16006]],[[15985,15986,15988]],[[15983,15984,15986]],[[16005,16007,16008]],[[15981,15982,15984]],[[15979,15980,15982]],[[16007,16009,16010]],[[15976,15978,15980]],[[15977,16002,15978]],[[16009,16011,16012]],[[16001,16004,16002]],[[16003,16006,16004]],[[16011,16013,16014]],[[16005,16008,16006]],[[16007,16010,16008]],[[16013,16015,16016]],[[16009,16012,16010]],[[16011,16014,16012]],[[16015,16017,16018]],[[16013,16016,16014]],[[16015,16018,16016]],[[16017,16019,16020]],[[16017,16020,16018]],[[16019,15975,16020]],[[16019,15973,15975]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981aabab-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee28149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8743,8321,8322]],[[8743,556,16021]],[[16022,458,16023]],[[1882,10957,15847]],[[16024,7034,7033]],[[16025,8321,16026]],[[16027,16024,16028]],[[16029,16027,16030]],[[16030,16027,16031]],[[16032,16030,16033]],[[16033,16030,16034]],[[16034,16030,16035]],[[16036,16034,16035]],[[16035,16030,16037]],[[16037,16030,16038]],[[16039,16037,16038]],[[16038,16030,16031]],[[16040,16038,16041]],[[16041,16038,16042]],[[16043,16041,16042]],[[16044,16043,16042]],[[16042,16038,16031]],[[16045,16042,16031]],[[16031,16027,16028]],[[16046,16031,16047]],[[16047,16031,16028]],[[16048,16047,16028]],[[1880,7037,1881]],[[1073,1074,16049]],[[15844,16050,15847]],[[15847,16050,16051]],[[15844,16052,16050]],[[16053,16054,15844]],[[16055,15844,16056]],[[16056,16049,16057]],[[16055,16053,15844]],[[6727,16058,16059]],[[1072,1073,16049]],[[1071,1072,16049]],[[1094,1071,16049]],[[1068,1094,16049]],[[16049,1065,1068]],[[16049,1063,1065]],[[16049,15844,1063]],[[6893,6894,16024]],[[7037,16024,7033]],[[7037,7035,7036]],[[7037,7033,7035]],[[6889,6890,16024]],[[6894,7034,16024]],[[7034,6894,7038]],[[7038,6894,6895]],[[6924,6928,6889]],[[16023,460,16059]],[[6893,16024,6890]],[[6892,6893,6890]],[[6892,6890,6891]],[[16024,16060,6924]],[[6924,6889,16024]],[[6889,6887,6888]],[[6887,6889,6928]],[[6887,6929,6885]],[[16058,6980,16060]],[[6929,6887,6928]],[[6924,16060,6973]],[[6973,16060,6971]],[[6971,16060,6980]],[[6980,16058,6727]],[[6727,16059,460]],[[460,16023,459]],[[16023,458,459]],[[16022,478,458]],[[477,478,557]],[[478,555,557]],[[478,16022,555]],[[556,555,16061]],[[16061,555,16062]],[[16062,555,16063]],[[16063,555,16064]],[[16064,555,16065]],[[16065,555,16066]],[[16066,555,16067]],[[16067,555,16022]],[[8320,8321,16025]],[[8319,8320,16068]],[[8320,16069,16068]],[[8320,16025,16069]],[[16070,16071,16072]],[[16071,16073,16072]],[[16071,16069,16025]],[[16071,16025,16073]],[[16074,16075,16076]],[[16074,16077,16075]],[[16074,16073,16025]],[[16074,16025,16077]],[[16078,16079,8317]],[[16078,8317,8318]],[[16025,16026,16080]],[[16081,14727,8316]],[[8314,8311,8313]],[[8311,16082,8312]],[[8311,16083,16082]],[[8311,16084,16083]],[[8311,16085,16084]],[[16084,16085,16086]],[[16086,16085,16087]],[[16087,16085,16088]],[[16088,16085,16089]],[[16089,16085,16090]],[[16090,16091,16092]],[[14729,16081,16093]],[[14724,16094,14725]],[[14727,8315,8316]],[[16080,16026,16095]],[[8321,8743,16026]],[[16025,16079,16077]],[[16025,16081,16079]],[[16079,16081,8317]],[[8317,16081,8316]],[[16095,16096,16097]],[[16095,16098,16096]],[[16095,16099,16098]],[[16098,16100,16101]],[[16101,16100,16102]],[[16098,16099,16100]],[[16095,16103,16099]],[[16099,16104,16105]],[[16099,16103,16104]],[[16095,16106,16103]],[[16103,16107,16108]],[[16108,16107,16109]],[[16103,16106,16107]],[[16107,16106,16110]],[[16095,16111,16106]],[[16106,16111,16112]],[[16095,16113,16111]],[[16095,16026,16113]],[[16113,16026,16114]],[[8743,16021,16026]],[[16021,556,16115]],[[16021,16116,16117]],[[16117,16116,16118]],[[16021,16119,16116]],[[16116,16120,16121]],[[16121,16122,16123]],[[16121,16120,16122]],[[16122,16120,16124]],[[16124,16120,16125]],[[16116,16119,16120]],[[16120,16119,16126]],[[16126,16127,16128]],[[16126,16119,16127]],[[16127,16119,16129]],[[16021,16130,16119]],[[16119,16131,16132]],[[16119,16130,16131]],[[16131,16130,16133]],[[16021,16134,16130]],[[16021,16115,16134]],[[556,16061,16115]],[[14724,16135,16094]],[[16136,16091,16135]],[[16092,16091,16136]],[[16085,8314,16094]],[[16090,16085,16091]],[[8311,8314,16085]],[[16136,14724,16093]],[[16136,16135,14724]],[[8314,14725,16094]],[[8314,8315,14727]],[[14729,14727,16081]],[[14725,8314,14727]],[[14724,14729,16093]],[[10958,10957,1881]],[[1882,15847,16028]],[[16024,1882,16028]],[[1881,10957,1882]],[[16024,1883,1882]],[[16024,7037,1883]],[[1883,7037,1880]],[[7037,10958,1881]],[[16052,15844,16054]],[[1064,10958,7037]],[[1064,10959,10958]],[[15844,16049,16056]],[[15847,10957,10956]],[[15850,1063,15844]],[[15848,15847,10956]],[[16051,16028,15847]],[[10959,15848,10956]],[[10959,1064,15850]],[[10959,15850,15848]],[[1064,1063,15850]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981af9f2-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16137,13251,13250]],[[16137,16138,16139]],[[16139,16140,16141]],[[16141,16142,16143]],[[16143,16144,16145]],[[10245,10244,16146]],[[16145,16147,16146]],[[10245,16146,16148]],[[16148,16146,16147]],[[16147,16145,16144]],[[16144,16143,16142]],[[16142,16141,16140]],[[16140,16139,16138]],[[16138,16137,13250]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981ecb10-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12452,15809,12454]],[[15809,15824,12454]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981f8dcc-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16149,16150,16151]],[[16149,16151,16152]],[[16152,16151,16153]],[[16153,16151,16154]],[[16154,16151,16155]],[[16155,16151,16156]],[[16156,16151,16157]],[[16157,16151,16158]],[[16158,16159,16160]],[[16160,16159,16161]],[[16161,16159,16162]],[[16162,16159,16163]],[[16163,16159,16164]],[[16164,16159,16165]],[[16165,16159,16166]],[[16166,16159,16167]],[[16167,16159,16168]],[[16168,16159,16169]],[[16169,16159,16170]],[[16158,16151,16159]],[[16171,16172,16173]],[[16151,16171,16173]],[[16150,16171,16151]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9821d845-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee48d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[261,262,16174]],[[261,16174,2808]],[[2808,16175,2807]],[[16175,2808,16174]],[[16175,16174,16176]],[[262,16177,16174]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98229afb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16178,16179,16180]],[[16181,16182,16183]],[[16184,16185,16186]],[[16178,16187,16186]],[[16185,16184,16188]],[[16189,16188,16184]],[[16190,16186,16187]],[[16190,16184,16186]],[[16187,16178,16191]],[[16178,16192,16191]],[[16192,16178,16193]],[[16192,16193,16194]],[[16178,16195,16193]],[[16195,16178,16196]],[[16196,16178,16197]],[[16178,16180,16197]],[[16179,16198,16180]],[[16198,16179,16199]],[[16198,16199,16200]],[[16199,16179,16201]],[[16202,16203,16204]],[[16205,16203,16206]],[[16207,16208,16209]],[[16210,16201,12083]],[[16211,12107,16212]],[[16212,12107,16213]],[[16213,12107,16214]],[[16214,12107,16215]],[[12107,16216,16217]],[[16218,16219,12107]],[[16220,16218,12107]],[[16221,16220,12107]],[[16222,16221,12107]],[[16223,16222,16204]],[[16208,16223,16209]],[[16224,16208,16207]],[[16225,16224,16207]],[[16226,16225,16207]],[[16227,16226,16207]],[[16228,16227,16207]],[[16229,16228,16207]],[[16229,16230,16231]],[[16229,16207,16230]],[[16232,16230,16207]],[[16233,16232,16207]],[[16234,16233,16207]],[[16235,16234,16207]],[[16236,16235,16207]],[[16237,16236,16207]],[[16237,16238,16239]],[[16237,16207,16238]],[[16201,16179,12083]],[[16207,16183,16240]],[[16240,16183,16241]],[[16207,16242,16183]],[[16243,16181,16183]],[[16243,16244,16181]],[[16242,16243,16183]],[[16245,16246,16243]],[[16245,16247,16246]],[[16242,16245,16243]],[[16242,16248,16245]],[[16249,16250,16248]],[[16242,16249,16248]],[[16251,16252,16249]],[[16242,16251,16249]],[[16242,16253,16251]],[[16254,16242,16207]],[[16209,16254,16207]],[[16204,16209,16223]],[[16255,16256,16257]],[[16255,16257,16258]],[[16259,16260,16257]],[[16256,16259,16257]],[[16209,16261,16258]],[[16262,16259,16256]],[[12083,16211,16210]],[[16255,16258,16261]],[[16261,16209,16203]],[[16203,16209,16204]],[[16203,16202,16206]],[[12107,16217,16215]],[[16263,12083,14772]],[[12107,16219,16216]],[[16264,16204,16265]],[[16264,16202,16204]],[[16204,12107,12118]],[[16204,16222,12107]],[[16211,12083,12107]],[[16179,14772,12083]],[[12117,12083,16263]],[[16263,14772,14751]],[[16266,16267,16259]],[[16259,16267,16260]],[[16268,16266,16262]],[[16262,16266,16259]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9824be2e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13800,16269,16270]],[[16271,16272,16273]],[[16273,16274,16275]],[[16273,16276,16274]],[[16273,16277,16276]],[[16273,16278,16277]],[[16271,14711,16279]],[[16278,16273,16272]],[[16272,16271,16280]],[[16280,16271,16281]],[[16281,16271,16282]],[[16282,16271,16283]],[[16283,16271,16284]],[[16284,16271,16279]],[[16270,14631,14712]],[[14569,14566,16285]],[[12519,16286,16285]],[[12522,16287,16286]],[[16288,16287,12521]],[[12519,12522,16286]],[[12521,16287,12522]],[[14566,12519,16285]],[[12528,12519,14554]],[[16269,11833,16285]],[[14554,12519,14566]],[[11833,14569,16285]],[[14561,14569,11833]],[[11855,11833,16269]],[[11830,14561,11833]],[[14936,11855,16269]],[[11829,11855,14936]],[[14942,14936,16269]],[[14974,11829,14936]],[[14925,14942,16269]],[[14925,16269,12023]],[[12042,12045,16269]],[[12023,16269,12045]],[[13800,12042,16269]],[[16289,16290,12042]],[[13764,16291,16289]],[[13842,13800,16270]],[[13765,12042,13800]],[[13826,13800,13829]],[[13842,13862,13800]],[[13829,13800,13862]],[[11918,13842,16270]],[[13905,13842,11957]],[[11933,11918,16270]],[[11957,13842,11918]],[[16292,11933,16270]],[[11914,11933,16292]],[[16292,16270,14712]],[[16279,14710,16270]],[[16270,14710,14631]],[[16279,14711,14710]],[[12022,16291,13764]],[[16289,12042,13765]],[[12022,16293,16291]],[[12022,12042,16293]],[[16293,12042,16290]],[[13764,16289,13765]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98250c84-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef1df449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16028,16021,16117]],[[16028,16060,16048]],[[16047,16048,16060]],[[16046,16047,16060]],[[16031,16046,16060]],[[16045,16031,16060]],[[16042,16045,16060]],[[16044,16042,16060]],[[16043,16044,16060]],[[16041,16043,16060]],[[16040,16041,16060]],[[16038,16040,16060]],[[16039,16038,16060]],[[16037,16039,16060]],[[16035,16037,16060]],[[16036,16035,16060]],[[16034,16036,16060]],[[16033,16034,16060]],[[16032,16033,16060]],[[16030,16032,16060]],[[16029,16030,16060]],[[16027,16029,16060]],[[16027,16060,16024]],[[16028,16023,16060]],[[16028,16117,16023]],[[16022,16023,16117]],[[16066,16067,16117]],[[16065,16066,16117]],[[16064,16065,16117]],[[16062,16063,16118]],[[16061,16134,16115]],[[16061,16130,16134]],[[16061,16133,16130]],[[16061,16131,16133]],[[16061,16132,16131]],[[16061,16119,16132]],[[16061,16129,16119]],[[16061,16127,16129]],[[16061,16128,16127]],[[16061,16126,16128]],[[16061,16120,16126]],[[16061,16125,16120]],[[16061,16124,16125]],[[16061,16122,16124]],[[16061,16123,16122]],[[16061,16121,16123]],[[16061,16116,16121]],[[16061,16062,16118]],[[16061,16118,16116]],[[16063,16064,16117]],[[16063,16117,16118]],[[16067,16022,16117]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98272edb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13205,15713,13206]],[[16294,16295,13206]],[[13217,13204,13207]],[[13217,13210,13204]],[[13206,16295,13207]],[[13207,16295,13217]],[[16296,13220,13221]],[[14410,14407,16296]],[[13221,16295,16296]],[[13217,16295,13221]],[[16295,16297,14413]],[[13186,14406,14413]],[[13187,13186,14413]],[[14410,16295,14413]],[[14413,16297,13187]],[[15207,13183,13182]],[[15207,15210,13183]],[[16297,16298,15207]],[[13182,16297,15207]],[[16299,16300,15211]],[[15831,15830,16301]],[[16302,16298,16301]],[[13202,16303,16294]],[[16298,15831,16301]],[[15207,16298,15211]],[[13187,16297,13182]],[[16296,16295,14410]],[[15717,16294,13206]],[[15761,9066,9078]],[[15762,9071,16303]],[[15761,9078,15762]],[[15764,15762,16303]],[[9078,9071,15762]],[[15760,15764,16303]],[[13190,15760,16303]],[[13202,13192,16303]],[[13190,16303,13192]],[[11766,13202,16294]],[[11766,13189,13202]],[[11765,11766,16294]],[[11761,13189,11766]],[[16304,11765,16294]],[[16304,11760,11765]],[[14045,14040,16304]],[[16294,14045,16304]],[[15716,14041,16294]],[[14045,16294,14041]],[[16305,16306,15714]],[[16307,15716,15714]],[[15717,15716,16294]],[[15713,15717,13206]],[[14041,16308,14039]],[[14041,15716,16308]],[[16306,16307,15714]],[[16308,15716,16307]],[[14039,16305,15714]],[[16308,16305,14039]],[[16298,16299,15211]],[[16309,16302,16301]],[[16299,16298,16302]],[[15209,16309,16301]],[[15209,16300,16309]],[[15209,15211,16300]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9827560c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4ae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[21,16170,16159]],[[21,16159,22]],[[1,3,22]],[[22,3,21]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98295220-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1ad149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2963,2894,8564]],[[2894,8607,8564]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9829794e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6995,6964,6994]],[[6995,6962,6964]],[[6995,6706,10614]],[[6962,6995,16310]],[[6961,16311,6960]],[[6961,6962,16310]],[[16311,6961,16310]],[[16310,6995,16312]],[[16312,6995,10614]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b982f6cae-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16313,16314,16315]],[[16314,16316,16315]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98322b9f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33ca49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15772,12451,15795]],[[12451,12461,15795]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98349d40-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef135b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"sierbestrating","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[300,11066,299]],[[300,313,11066]],[[11066,313,11617]],[[11622,11066,11617]],[[11618,11622,11617]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9837d0a9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16317,16318,16319]],[[16317,16319,16320]],[[16318,16321,16319]],[[16321,16318,16322]],[[16323,16324,16325]],[[16326,16323,16327]],[[16328,16326,16329]],[[16330,16328,16331]],[[16332,16330,16333]],[[16334,16332,16335]],[[16336,16334,16337]],[[16338,16336,16339]],[[16340,16338,16341]],[[16342,16340,16343]],[[16342,16344,16345]],[[16342,16343,16344]],[[16324,16346,16347]],[[16340,16341,16343]],[[16346,16348,16349]],[[16338,16339,16341]],[[16336,16337,16339]],[[16348,16350,16351]],[[16334,16335,16337]],[[16332,16333,16335]],[[16350,16352,16351]],[[16330,16331,16333]],[[16328,16329,16331]],[[16352,16353,16354]],[[16326,16327,16329]],[[16323,16325,16327]],[[16353,16355,16356]],[[16324,16347,16325]],[[16346,16349,16347]],[[16355,16357,16358]],[[16348,16351,16349]],[[16352,16354,16351]],[[16357,16359,16360]],[[16353,16356,16354]],[[16355,16358,16356]],[[16359,16361,16362]],[[16357,16360,16358]],[[16359,16362,16360]],[[16361,16363,16364]],[[16361,16364,16362]],[[16363,16322,16364]],[[16363,16321,16322]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983909fb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[127,128,9862]],[[16365,16366,127]],[[16366,126,127]],[[16366,125,126]],[[162,163,16367]],[[16368,16365,127]],[[16369,8639,8633]],[[16365,16368,8633]],[[16370,8152,8639]],[[9861,16367,9862]],[[16371,8150,8151]],[[163,16372,16367]],[[16371,16373,8150]],[[8152,16374,8151]],[[16375,16376,16371]],[[8151,16374,16371]],[[16376,16375,16377]],[[16377,16375,16378]],[[16378,16375,16379]],[[16379,16380,16381]],[[16381,16382,16383]],[[16383,16384,16385]],[[16385,16386,16387]],[[16387,16388,16389]],[[16389,16390,16391]],[[16391,16392,16393]],[[16394,16395,16396]],[[16397,11379,16395]],[[16393,16398,16396]],[[11379,16397,11380]],[[16395,16394,16397]],[[16396,16399,16394]],[[16396,16398,16399]],[[16393,16392,16398]],[[16391,16400,16392]],[[16391,16390,16400]],[[16389,16388,16390]],[[16387,16401,16388]],[[16387,16386,16401]],[[16385,16402,16386]],[[16385,16384,16402]],[[16383,16403,16384]],[[16383,16382,16403]],[[16381,16404,16382]],[[16381,16405,16404]],[[16381,16406,16405]],[[16381,16380,16406]],[[16379,16407,16380]],[[16379,16408,16407]],[[16379,16375,16408]],[[16371,16374,16375]],[[8152,16370,16374]],[[8639,16369,16370]],[[16369,8633,16368]],[[7946,16409,16372]],[[16367,16368,9862]],[[9862,16368,127]],[[16410,15884,16409]],[[8220,15884,16410]],[[16410,16409,7930]],[[7930,16409,7926]],[[7926,16409,7946]],[[7946,16372,854]],[[16372,164,854]],[[16372,163,164]],[[140,9861,139]],[[161,162,16367]],[[160,161,16367]],[[159,160,16367]],[[158,159,16367]],[[157,158,16367]],[[156,157,16367]],[[155,156,16367]],[[154,155,16367]],[[140,142,143]],[[154,16367,153]],[[153,16367,152]],[[152,16367,151]],[[151,16367,150]],[[150,16367,149]],[[149,16367,148]],[[148,16367,147]],[[147,16367,146]],[[146,16367,145]],[[145,16367,140]],[[144,145,140]],[[143,144,140]],[[142,140,141]],[[16367,9861,140]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983a1b0d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetgangersgebied","inonderzoek":"0","lokaalid":"G0503.032e68eee28449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16411,280,16412]],[[16413,264,16414]],[[16415,7574,7585]],[[7557,16416,7545]],[[16417,16418,280]],[[16419,7549,7545]],[[16420,7688,7549]],[[16421,7689,7688]],[[16422,7675,7674]],[[16421,7680,7689]],[[16423,278,7675]],[[384,7675,278]],[[280,278,16424]],[[262,263,16425]],[[16426,263,16427]],[[16428,262,16425]],[[16425,263,16429]],[[16425,16429,16430]],[[16429,263,16426]],[[16429,16426,16431]],[[16431,16426,16432]],[[263,264,16427]],[[16433,7557,7574]],[[16427,16434,16435]],[[16427,16413,16434]],[[16427,264,16413]],[[16414,264,16436]],[[16437,16438,16439]],[[16414,16437,16439]],[[16414,16440,16437]],[[16414,16441,16440]],[[16414,16442,16441]],[[16414,16443,16442]],[[16414,16444,16443]],[[16414,16445,16444]],[[16414,16436,16445]],[[16446,265,280]],[[264,16447,16436]],[[264,265,16448]],[[16447,264,16449]],[[16449,264,16450]],[[16450,264,16451]],[[16451,264,16452]],[[16452,264,16453]],[[16453,264,16454]],[[16455,16456,264]],[[16454,264,16456]],[[16457,16455,264]],[[16448,16457,264]],[[16458,16448,265]],[[16459,16458,265]],[[16460,16459,265]],[[16446,16460,265]],[[7674,7680,16461]],[[16446,280,16462]],[[16462,280,16463]],[[16463,280,16464]],[[16464,280,16465]],[[16465,280,16466]],[[16466,280,16467]],[[16467,280,16468]],[[16468,280,16418]],[[16469,16417,280]],[[16470,16469,280]],[[7584,16415,7585]],[[280,16471,16470]],[[7584,7607,16472]],[[16471,280,16473]],[[16473,280,16474]],[[16474,280,16475]],[[16475,280,16476]],[[16476,280,16477]],[[16477,280,16411]],[[16412,280,16478]],[[16478,280,16479]],[[16479,280,16480]],[[16480,280,16481]],[[16481,280,16424]],[[278,16482,16424]],[[16422,16423,7675]],[[16482,278,16423]],[[16461,16422,7674]],[[16483,16423,16422]],[[16461,7680,16421]],[[7688,16420,16421]],[[7549,16419,16420]],[[7545,16416,16419]],[[7557,16433,16416]],[[16433,7574,16415]],[[16484,16433,16415]],[[16415,7584,16472]],[[16472,7607,16485]],[[16485,7607,7619]],[[16486,16485,7619]],[[16487,16488,7630]],[[16489,16490,7630]],[[16491,16489,7630]],[[16492,16491,7630]],[[16493,16492,7630]],[[16494,16493,7630]],[[16495,16494,7630]],[[16496,16495,7630]],[[12902,16496,7630]],[[12902,16497,16496]],[[12900,16498,16497]],[[16499,16500,16501]],[[16502,16499,16501]],[[16503,16502,16501]],[[16504,16503,16501]],[[16505,16504,16501]],[[12151,16505,16501]],[[16506,16507,16508]],[[12178,12179,16509]],[[12181,12182,16509]],[[16510,16511,12156]],[[16512,16510,16513]],[[16514,16515,16513]],[[16516,16514,16513]],[[16517,16516,16513]],[[16518,16517,16513]],[[16519,16518,16513]],[[16520,16519,16513]],[[16521,16520,16513]],[[16522,16521,16513]],[[16513,16507,16523]],[[16524,16507,16506]],[[16523,16522,16513]],[[16507,16513,16508]],[[16515,16512,16513]],[[12151,16525,16505]],[[16526,16527,16528]],[[10981,10986,16529]],[[16527,16530,16531]],[[16527,10997,16530]],[[14175,12128,12129]],[[16501,16500,16532]],[[16501,16533,16534]],[[16501,16532,16533]],[[16500,16535,16532]],[[16500,16536,16535]],[[16500,16537,16536]],[[16500,16538,16537]],[[16500,16539,16538]],[[16500,16540,16539]],[[16500,16541,16540]],[[16500,16542,16541]],[[16500,16543,16542]],[[16500,16544,16543]],[[16500,16545,16544]],[[16500,16546,16545]],[[16500,16547,16546]],[[16500,16548,16547]],[[16500,16549,16548]],[[16550,16551,16552]],[[16500,16553,16549]],[[16500,16551,16550]],[[16553,16500,16554]],[[16554,16500,16555]],[[16555,16500,16556]],[[16556,16500,16557]],[[16557,16500,16558]],[[16558,16500,16550]],[[12905,16559,16498]],[[16552,16551,16560]],[[16560,16551,16561]],[[16561,16551,16562]],[[16562,16551,16563]],[[16563,16551,16564]],[[16564,16551,16565]],[[16565,16551,12924]],[[16566,16565,12926]],[[12915,16551,16567]],[[16568,12944,16569]],[[12909,16570,16571]],[[12931,12932,16572]],[[16573,16574,12945]],[[16572,16573,12931]],[[16575,16572,12932]],[[16576,16575,12933]],[[16577,16576,12934]],[[16578,16577,12935]],[[16579,16578,12936]],[[16580,16579,12937]],[[16581,16582,12939]],[[16583,16581,12940]],[[12855,16584,16583]],[[16585,16586,16587]],[[16588,16589,16590]],[[16590,16589,7643]],[[16590,16591,16592]],[[7363,7362,16593]],[[7643,16591,16590]],[[7454,16594,7402]],[[16595,16596,16597]],[[16597,16593,16598]],[[16599,7654,16596]],[[16596,7363,16597]],[[7381,7389,16600]],[[16601,16602,16600]],[[7362,16602,16603]],[[16600,16604,16605]],[[7381,16600,16602]],[[16606,16604,7389]],[[16607,16606,16594]],[[16607,16594,16608]],[[16594,16606,7402]],[[16609,16610,16611]],[[16610,7455,16611]],[[16610,16594,7454]],[[16611,16612,16613]],[[16612,16611,7455]],[[16614,16615,16616]],[[16614,16612,7455]],[[16615,16614,7456]],[[16617,16618,16619]],[[16617,16615,16618]],[[16615,7456,16618]],[[16618,7458,7459]],[[7458,16618,7456]],[[7458,7456,7457]],[[16614,7455,7456]],[[16610,7454,7455]],[[7654,16599,16591]],[[16593,7362,16603]],[[8847,8846,9052]],[[8842,8847,9052]],[[8843,8842,2709]],[[16586,7637,16589]],[[16620,8804,8803]],[[8804,8839,2634]],[[8827,8804,16620]],[[8827,16620,8826]],[[8839,8838,2709]],[[8803,8804,8733]],[[8733,8804,2634]],[[8839,2709,2634]],[[8838,8843,2709]],[[8842,9052,2709]],[[8846,7453,7400]],[[8846,7400,9052]],[[7389,16604,16600]],[[7453,7402,7400]],[[7453,7454,7402]],[[7402,16606,7389]],[[16597,7363,16593]],[[7381,16602,7362]],[[7654,7363,16596]],[[7643,7654,16591]],[[16589,7637,7643]],[[16490,16487,7630]],[[16488,16486,7619]],[[7630,16488,7619]],[[14190,12195,12207]],[[14194,12203,12204]],[[16621,12202,12203]],[[16621,12201,12202]],[[12170,16509,16513]],[[16621,12200,12201]],[[16621,16509,12210]],[[12200,16621,12199]],[[12199,16621,12198]],[[12198,16621,12197]],[[12197,16621,12196]],[[12196,16621,12210]],[[12210,16509,12194]],[[12194,16509,12193]],[[12193,16509,12192]],[[12192,16509,12191]],[[12191,16509,12190]],[[12190,16509,12189]],[[12189,16509,12188]],[[12188,16509,12187]],[[12185,12186,16509]],[[12187,16509,12186]],[[12184,12185,16509]],[[12182,12184,16509]],[[12154,16622,16623]],[[16510,12157,16513]],[[16511,16622,12155]],[[12180,12181,16509]],[[12179,12180,16509]],[[16624,12153,16623]],[[12177,12178,16509]],[[12176,12177,16509]],[[12175,12176,16509]],[[12174,12175,16509]],[[12173,12174,16509]],[[12172,12173,16509]],[[12171,12172,16509]],[[12170,12171,16509]],[[12169,12170,16513]],[[16525,12152,16624]],[[12169,16513,12168]],[[12168,16513,12167]],[[12164,12166,16513]],[[12167,16513,12166]],[[12163,12164,16513]],[[12162,12163,16513]],[[12161,12162,16513]],[[12160,12161,16513]],[[12159,12160,16513]],[[12158,12159,16513]],[[12157,12158,16513]],[[12156,12157,16510]],[[12155,12156,16511]],[[16625,12142,16501]],[[16622,12154,12155]],[[16623,12153,12154]],[[16624,12152,12153]],[[16525,12151,12152]],[[16501,12150,12151]],[[16501,12149,12150]],[[16501,12148,12149]],[[16501,12147,12148]],[[16501,12146,12147]],[[16501,12145,12146]],[[16501,12144,12145]],[[16501,12142,12144]],[[16625,12141,12142]],[[16625,12140,12141]],[[16625,12139,12140]],[[16625,12138,12139]],[[16625,12137,12138]],[[16625,12136,12137]],[[16625,12135,12136]],[[16625,12134,12135]],[[16625,12133,12134]],[[16625,12132,12133]],[[16625,12131,12132]],[[16625,12130,12131]],[[16625,12129,12130]],[[16625,14174,12129]],[[14176,12127,12128]],[[16582,16580,12938]],[[16583,12851,12850]],[[16583,12875,12851]],[[16583,12903,12875]],[[16574,16626,12946]],[[16583,12942,12903]],[[12906,16627,16628]],[[16583,12941,12942]],[[16629,12908,16571]],[[16583,12940,12941]],[[16626,16630,12930]],[[16581,12939,12940]],[[16568,16570,12910]],[[16582,12938,12939]],[[16630,16631,12929]],[[16580,12937,12938]],[[12912,16632,16569]],[[16579,12936,12937]],[[16633,12914,16567]],[[16578,12935,12936]],[[16631,16634,12928]],[[16577,12934,12935]],[[16634,16566,12927]],[[16576,12933,12934]],[[16633,16632,12913]],[[16575,12932,12933]],[[16629,16627,12907]],[[12945,12931,16573]],[[12946,12945,16574]],[[12930,12946,16626]],[[12929,12930,16630]],[[12928,12929,16631]],[[16559,12904,16628]],[[12928,16634,12927]],[[12927,16566,12926]],[[12926,16565,12924]],[[12924,16551,12923]],[[12923,16551,12922]],[[12922,16551,12920]],[[12920,16551,12921]],[[12921,16551,12919]],[[12917,12918,16551]],[[12919,16551,12918]],[[12915,12917,16551]],[[12914,12915,16567]],[[12913,12914,16633]],[[12912,12913,16632]],[[12944,12912,16569]],[[12910,12944,16568]],[[12909,12910,16570]],[[12908,12909,16571]],[[12907,12908,16629]],[[12906,12907,16627]],[[7637,12889,7630]],[[16628,12904,12906]],[[16559,12905,12904]],[[16498,12900,12905]],[[16497,12902,12900]],[[7630,12901,12902]],[[7630,12899,12901]],[[7630,12898,12899]],[[7630,12897,12898]],[[7630,12896,12897]],[[7630,12895,12896]],[[7630,12894,12895]],[[7630,12893,12894]],[[12877,16586,16585]],[[7630,12892,12893]],[[7637,16586,12884]],[[12890,12891,7630]],[[12892,7630,12891]],[[12889,12890,7630]],[[12888,12889,7637]],[[12887,12888,7637]],[[12886,12887,7637]],[[12885,12886,7637]],[[12884,12885,7637]],[[12883,12884,16586]],[[12943,12883,16586]],[[12880,12943,16586]],[[12879,12880,16586]],[[12878,12879,16586]],[[12876,12878,16586]],[[12877,12876,16586]],[[12874,12877,16585]],[[12873,12874,16585]],[[16584,12862,16585]],[[12873,16585,12872]],[[12872,16585,12871]],[[12871,16585,12870]],[[12870,16585,12869]],[[12869,16585,12868]],[[12868,16585,12867]],[[12867,16585,12866]],[[12866,16585,12865]],[[12865,16585,12864]],[[12864,16585,12862]],[[12862,16584,12863]],[[16584,12859,12863]],[[16584,12858,12859]],[[16584,12857,12858]],[[16584,12856,12857]],[[16584,12855,12856]],[[16583,12854,12855]],[[16583,12853,12854]],[[16583,12852,12853]],[[16583,12850,12852]],[[16529,14131,16635]],[[16635,14133,14136]],[[16635,14131,14133]],[[16529,14134,14131]],[[16529,14226,14134]],[[16529,14225,14226]],[[16529,14224,14225]],[[16529,14223,14224]],[[16529,14222,14223]],[[16529,14221,14222]],[[14194,16621,12203]],[[16529,10987,14221]],[[12125,12126,14178]],[[10996,14219,14220]],[[12125,14179,12124]],[[10976,14218,14219]],[[14180,12123,12124]],[[12122,14182,12119]],[[14183,12120,12119]],[[12143,12120,14184]],[[12143,14185,12165]],[[14187,12209,12165]],[[12208,14189,12207]],[[14191,12206,12195]],[[12205,12206,14192]],[[12205,14193,12204]],[[14210,11007,14209]],[[11012,14206,14228]],[[12208,12209,14188]],[[16621,14205,14206]],[[12122,12123,14181]],[[16621,14204,14205]],[[16621,14202,14204]],[[12126,12127,14227]],[[14202,16621,14201]],[[14201,16621,14200]],[[14200,16621,14199]],[[14199,16621,14198]],[[14198,16621,14197]],[[14197,16621,14195]],[[14195,16621,14196]],[[14196,16621,14194]],[[14194,12204,14193]],[[14193,12205,14192]],[[14192,12206,14191]],[[14191,12195,14190]],[[14190,12207,14189]],[[14189,12208,14188]],[[14185,14187,12165]],[[14188,12209,14187]],[[14184,14185,12143]],[[14183,14184,12120]],[[14182,14183,12119]],[[14181,14182,12122]],[[14180,14181,12123]],[[14179,14180,12124]],[[14178,14179,12125]],[[14227,14178,12126]],[[14176,14227,12127]],[[14175,14176,12128]],[[14174,14175,12129]],[[14173,14174,16625]],[[14172,14173,16625]],[[14171,14172,16625]],[[14170,14171,16625]],[[14169,14170,16625]],[[14168,14169,16625]],[[14167,14168,16625]],[[14166,14167,16625]],[[16635,14159,16625]],[[16625,14165,14166]],[[16625,14163,14165]],[[16625,14162,14163]],[[16625,14161,14162]],[[16625,14160,14161]],[[16625,14159,14160]],[[16635,14155,14159]],[[16635,14153,14155]],[[16635,14157,14153]],[[16635,14158,14157]],[[16635,14156,14158]],[[16635,14143,14156]],[[16635,14144,14143]],[[16635,14152,14144]],[[16635,14151,14152]],[[16635,14150,14151]],[[16635,14149,14150]],[[16635,14148,14149]],[[16635,14147,14148]],[[16635,14146,14147]],[[16635,14145,14146]],[[16635,14177,14145]],[[16635,14141,14177]],[[16635,14140,14141]],[[16635,14138,14140]],[[16635,14139,14138]],[[16635,14137,14139]],[[16635,14135,14137]],[[16635,14136,14135]],[[16526,11052,16527]],[[16530,10997,10974]],[[16527,11048,10997]],[[16527,11064,11048]],[[16527,11062,11064]],[[16527,11063,11062]],[[16527,11061,11063]],[[16527,11057,11061]],[[16527,11059,11057]],[[16527,11060,11059]],[[16527,11058,11060]],[[16527,11055,11058]],[[16527,11056,11055]],[[16527,11053,11056]],[[16527,11054,11053]],[[11020,16636,16621]],[[16527,11052,11054]],[[16526,16636,11047]],[[11052,16526,11049]],[[11049,16526,11051]],[[11051,16526,11050]],[[11050,16526,11035]],[[11035,16526,11046]],[[11046,16526,11047]],[[11047,16636,11045]],[[11045,16636,11044]],[[11044,16636,11043]],[[11043,16636,11041]],[[11041,16636,11042]],[[11040,11039,16636]],[[11042,16636,11039]],[[11036,11040,16636]],[[11038,11036,16636]],[[11037,11038,16636]],[[11033,11037,16636]],[[11034,11033,16636]],[[11029,11034,16636]],[[11031,11029,16636]],[[11032,11031,16636]],[[14216,11002,14215]],[[11030,11032,16636]],[[11001,14214,14215]],[[11026,11030,16636]],[[14213,10999,14212]],[[11028,11026,16636]],[[11006,14211,14212]],[[11027,11028,16636]],[[14210,14211,11005]],[[11022,11027,16636]],[[14209,11008,14208]],[[14206,11012,16621]],[[11009,14207,14208]],[[16636,11025,11022]],[[14228,14207,11011]],[[16636,11024,11025]],[[14213,14214,11003]],[[16636,11023,11024]],[[16636,11020,11023]],[[14216,14217,11000]],[[16621,11021,11020]],[[16621,11018,11021]],[[16621,11019,11018]],[[14217,14218,10998]],[[11019,16621,11016]],[[11016,16621,11017]],[[11017,16621,11015]],[[11015,16621,11013]],[[11013,16621,11014]],[[11014,16621,11004]],[[11004,16621,11010]],[[16621,11012,11010]],[[10977,16529,16530]],[[14228,11011,11012]],[[14220,14221,10987]],[[11011,14207,11009]],[[11009,14208,11008]],[[11008,14209,11007]],[[11007,14210,11005]],[[11005,14211,11006]],[[11006,14212,10999]],[[10999,14213,11003]],[[11003,14214,11001]],[[11001,14215,11002]],[[11002,14216,11000]],[[11000,14217,10998]],[[10998,14218,10976]],[[10976,14219,10996]],[[10996,14220,10987]],[[10987,16529,10993]],[[10993,16529,10995]],[[10995,16529,10994]],[[10994,16529,10988]],[[10988,16529,10992]],[[10992,16529,10990]],[[10990,16529,10991]],[[10991,16529,10989]],[[10989,16529,10984]],[[10984,16529,10985]],[[10985,16529,10986]],[[10982,10981,16529]],[[10983,10982,16529]],[[10980,10983,16529]],[[10977,10980,16529]],[[10979,10977,16530]],[[10978,10979,16530]],[[10975,10978,16530]],[[10973,10975,16530]],[[10974,10973,16530]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983e1262-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33cc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11998,14254,16637]],[[11998,16637,12018]],[[14254,14273,16637]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983ed62d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32dc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16638,16639,16640]],[[16638,16640,16641]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983f98fe-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef160449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"onverhard","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7971,8219,16410]],[[7970,16642,8543]],[[8220,16410,8218]],[[8218,16410,8219]],[[8219,7971,7972]],[[16643,7971,16410]],[[16643,16642,7970]],[[7970,7971,16643]],[[7969,7970,7967]],[[7967,7970,8543]],[[7968,7967,8543]],[[8544,16644,16645]],[[8543,16644,8544]],[[8543,16642,16644]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984083fa-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16646,6952,6953]],[[16646,6953,16647]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984231bb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef136949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"sierbestrating","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2352,7592,2744]],[[2352,2354,7573]],[[7592,2352,7593]],[[7593,2352,7598]],[[7598,2352,7573]],[[7573,2354,7570]],[[7570,2354,7571]],[[7571,2354,7585]],[[7574,7571,7585]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984231ca-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1d149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16648,15792,16649]],[[14285,16649,15792]],[[14418,14433,16650]],[[16651,16649,14285]],[[16652,16653,16650]],[[16654,16652,15903]],[[16655,16654,15903]],[[16656,16655,15903]],[[16657,16656,15903]],[[16658,16659,15903]],[[16660,16658,15903]],[[16661,16660,15903]],[[16662,16661,15903]],[[16663,16662,15903]],[[16664,16663,15903]],[[16665,16664,15910]],[[16057,16665,15910]],[[16664,15903,15910]],[[16659,16657,15903]],[[15903,16652,16650]],[[16650,16653,14418]],[[16651,14419,16653]],[[16653,14419,14418]],[[16651,14290,14419]],[[16312,12451,16648]],[[16312,10614,15809]],[[14290,16651,14285]],[[15792,16648,15772]],[[15772,16648,12451]],[[12451,16312,12452]],[[12452,16312,15809]],[[15809,10614,10613]],[[15804,15809,10613]],[[11769,15421,11618]],[[11785,11769,11618]],[[11619,11785,11618]],[[13131,13125,16666]],[[13041,13131,16176]],[[16667,16668,16669]],[[16670,16671,16177]],[[1027,16672,1033]],[[1033,16672,16177]],[[16673,16674,16675]],[[16676,16677,16669]],[[16678,16679,16670]],[[16671,16670,16679]],[[16680,16681,16669]],[[16678,16670,16682]],[[16683,16684,16685]],[[16686,16687,16688]],[[16689,16690,16669]],[[16691,16692,16693]],[[16674,16694,16675]],[[16695,16696,16693]],[[16697,16669,16696]],[[16698,16699,16700]],[[16699,16669,16701]],[[16702,16698,16700]],[[16700,16699,16701]],[[16694,16703,16704]],[[16701,16669,16705]],[[16706,16673,16675]],[[16705,16669,16690]],[[16707,16673,16706]],[[16707,16684,16683]],[[16687,16708,16685]],[[16689,16669,16681]],[[16709,16682,16710]],[[16680,16669,16677]],[[16671,1033,16177]],[[16676,16669,16668]],[[16667,16669,16711]],[[16711,16669,16712]],[[16712,16669,16697]],[[16697,16696,16713]],[[16713,16696,16714]],[[16714,16696,16715]],[[16715,16696,16716]],[[16716,16696,16717]],[[16718,16716,16719]],[[16720,16718,16721]],[[16722,16720,16723]],[[16724,16722,16725]],[[16726,16724,16727]],[[16728,16726,16729]],[[16730,16728,16731]],[[16732,16730,16733]],[[16734,16732,16735]],[[16736,16734,16737]],[[16738,16736,16739]],[[16740,16738,16741]],[[16739,16741,16738]],[[16742,16740,16741]],[[16737,16739,16736]],[[16735,16737,16734]],[[16733,16735,16732]],[[16731,16733,16730]],[[16729,16731,16728]],[[16727,16729,16726]],[[16725,16727,16724]],[[16723,16725,16722]],[[16721,16723,16720]],[[16719,16721,16718]],[[16717,16719,16716]],[[16743,16744,16693]],[[16696,16745,16717]],[[16696,16695,16745]],[[16746,16747,16704]],[[16693,16748,16695]],[[16743,16747,16746]],[[16748,16693,16749]],[[16749,16693,16750]],[[16750,16693,16751]],[[16751,16693,16692]],[[16752,16691,16693]],[[16744,16752,16693]],[[16746,16744,16743]],[[16704,16703,16746]],[[16694,16674,16703]],[[16672,13042,16177]],[[16673,16753,16674]],[[16673,16707,16683]],[[16683,16685,16708]],[[16708,16687,16686]],[[16754,16708,16686]],[[16754,16755,16756]],[[16709,16710,16688]],[[16757,16756,16755]],[[16710,16686,16688]],[[16755,16754,16686]],[[13042,13041,16174]],[[16710,16682,16670]],[[13042,16174,16177]],[[13041,16176,16174]],[[13131,16666,16176]],[[15421,15420,11622]],[[13125,11619,16666]],[[16666,11619,11620]],[[13125,11785,11619]],[[15420,15534,10615]],[[15421,11622,11618]],[[15534,15557,10615]],[[15420,10615,11622]],[[15557,10613,10615]],[[15557,15804,10613]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9845daba-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6857,6858,16758]],[[6857,16758,6820]],[[6820,6818,6819]],[[6820,16759,6818]],[[6820,16758,16759]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98462904-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb0349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16760,16761,16762]],[[16762,16763,16764]],[[16760,16762,16764]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9847615f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16765,16766,16767]],[[16766,16768,16767]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98484b4f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15470,14102,14125]],[[15470,14125,15459]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98490f1a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15906,15905,11987]],[[15905,11988,11987]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984abcea-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12536,16367,12531]],[[14448,11901,16370]],[[12536,16368,16367]],[[16169,16170,24]],[[16375,25,16408]],[[16408,25,16407]],[[16407,25,16380]],[[16380,25,16406]],[[16769,16404,16405]],[[16769,16382,16404]],[[16406,16769,16405]],[[16770,16382,16769]],[[16769,16406,25]],[[25,16375,24]],[[24,16375,16162]],[[16168,16169,24]],[[16167,16168,24]],[[16166,16167,24]],[[16165,16166,24]],[[16164,16165,24]],[[16163,16164,24]],[[16162,16163,24]],[[16161,16162,16375]],[[16160,16161,16375]],[[16158,16160,16375]],[[16157,16158,16375]],[[16156,16157,16375]],[[16374,16150,16375]],[[16375,16155,16156]],[[16375,16154,16155]],[[14448,16370,16369]],[[16375,16153,16154]],[[16374,16370,11900]],[[16153,16375,16152]],[[16152,16375,16149]],[[16149,16375,16150]],[[16150,16374,16171]],[[16374,16172,16171]],[[16374,11900,16172]],[[16368,15729,16369]],[[16370,11901,11900]],[[16367,16372,14738]],[[16409,15292,16372]],[[16369,14442,14448]],[[16369,15729,14442]],[[16409,15884,14532]],[[15729,16368,15746]],[[15746,16368,12536]],[[12531,16367,14731]],[[14731,16367,14732]],[[14732,16367,14746]],[[14746,16367,14738]],[[14738,16372,14237]],[[14237,16372,14240]],[[14240,16372,15291]],[[15291,16372,15292]],[[15292,16409,15237]],[[15237,16409,15238]],[[15238,16409,14532]],[[6,5,24]],[[24,5,25]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984eb436-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16771,16772,16773]],[[16771,16773,16774]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98525e11-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15694,11876,15711]],[[11876,11888,15711]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98554433-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16775,16776,16777]],[[16776,16778,16777]],[[16776,16761,16778]],[[16778,16761,16760]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98556b73-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16779,16780,16781]],[[16781,16780,16782]],[[16779,16783,16780]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9856f206-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16784,16785,16786]],[[16784,16786,16787]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b985fcb64-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0ac049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[211,313,210]],[[210,313,209]],[[211,11617,313]],[[211,212,11616]],[[11617,211,11616]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f4dc812-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[1026,1035,1036]],[[16788,1026,1036]],[[1048,16788,1049]],[[1049,16788,1040]],[[1040,16788,1041]],[[1041,16788,1036]],[[1026,1034,1035]],[[1026,1028,1034]],[[16788,16789,1026]],[[1026,16789,1027]],[[13077,16790,1048]],[[16791,13042,16672]],[[1048,16790,16788]],[[13077,13042,16791]],[[16789,16791,16672]],[[16790,13077,16791]],[[1027,16789,16672]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f4f9d10-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14527,15693,15710]],[[14527,15710,14549]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f5123ac-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe3e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16792,16793,3225]],[[3277,16794,3344]],[[3344,16795,3272]],[[3272,16796,3271]],[[3271,16797,3269]],[[3269,16798,3267]],[[3267,16799,3268]],[[3268,16800,3265]],[[3265,16801,3264]],[[3264,16802,3350]],[[3350,16803,3262]],[[16793,16804,3247]],[[3225,16793,3247]],[[3247,16804,3252]],[[3262,16792,3225]],[[3276,16805,3277]],[[16806,3366,3337]],[[3262,16803,16792]],[[3276,3366,16807]],[[16801,16802,3264]],[[16803,3350,16802]],[[3333,16808,3337]],[[16809,3329,3369]],[[3265,16800,16801]],[[3333,3329,16810]],[[16798,16799,3267]],[[16800,3268,16799]],[[3381,16811,3369]],[[16812,3322,3319]],[[3269,16797,16798]],[[3381,3322,16813]],[[16795,16796,3272]],[[16797,3271,16796]],[[3286,16814,3319]],[[16815,3285,3290]],[[3344,16794,16795]],[[3286,3285,16816]],[[16807,16805,3276]],[[16794,3277,16805]],[[3289,16817,3290]],[[3366,16806,16807]],[[3337,16808,16806]],[[3333,16810,16808]],[[16818,3292,16819]],[[3329,16809,16810]],[[3289,3292,16818]],[[16809,3369,16811]],[[16811,3381,16813]],[[16813,3322,16812]],[[16812,3319,16814]],[[16814,3286,16816]],[[16816,3285,16815]],[[16815,3290,16817]],[[16817,3289,16818]],[[16819,3292,3295]],[[16820,16819,3295]],[[16821,16820,3295]],[[16822,16821,3295]],[[16823,16822,3295]],[[16824,16823,3295]],[[16825,16824,3295]],[[16825,3294,16826]],[[16825,3295,3294]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f531ed5-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef16be49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[10028,10012,7279]],[[10028,7279,16827]],[[7278,7279,10012]],[[16828,10179,16827]],[[16827,10179,10028]],[[16828,1173,10179]],[[10205,10179,8554]],[[1161,10179,1173]],[[10205,1124,8545]],[[8534,1123,10205]],[[1124,10205,1123]],[[8534,10205,1230]],[[1230,10205,1112]],[[1217,8526,10205]],[[1112,10205,8526]],[[1218,1217,10205]],[[1203,8554,10179]],[[1218,10205,8554]],[[8562,1203,10179]],[[1202,8554,1203]],[[1188,8562,10179]],[[1146,1188,10179]],[[1161,8412,10179]],[[1146,10179,8412]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f5409d1-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7194,7198,15924]],[[7198,15901,15924]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f556936-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16829,16830,16831]],[[16829,16832,16833]],[[16833,16834,16835]],[[16833,16836,16834]],[[16833,16837,16836]],[[16833,16832,16837]],[[16829,16838,16832]],[[16829,16839,16838]],[[16829,16840,16839]],[[16829,16841,16840]],[[16829,16842,16841]],[[16829,16843,16842]],[[16829,16844,16843]],[[16829,16845,16844]],[[16829,16846,16845]],[[16829,16847,16846]],[[16829,16848,16847]],[[16829,16849,16848]],[[16829,16850,16849]],[[16829,16851,16850]],[[16829,16852,16851]],[[16829,16853,16852]],[[16829,16831,16853]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f565329-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6958,6955,6957]],[[6957,6955,6956]],[[6958,6959,16854]],[[6955,16855,6954]],[[6955,6958,16855]],[[16855,6958,16854]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f56c89e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14126,14118,15328]],[[14126,15328,15332]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f56efd5-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32dd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16856,16857,16858]],[[16857,16859,16858]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f576553-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15804,15557,15805]],[[15557,15549,15805]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f615017-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eef5fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8136,8137,16860]],[[16861,8136,11378]],[[8134,8135,8133]],[[11379,11378,8136]],[[16862,11379,8136]],[[16863,16862,8136]],[[16864,16863,8136]],[[16865,16864,8136]],[[16866,16865,8136]],[[16860,16866,8136]],[[16804,8135,16861]],[[16861,8135,8136]],[[16867,16793,16868]],[[8135,16804,16867]],[[8135,16867,8133]],[[16804,16793,16867]],[[8122,16868,8121]],[[8125,16868,8122]],[[8124,8125,8122]],[[8124,8122,8123]],[[16868,16793,8121]],[[8117,16793,8118]],[[8120,8121,8117]],[[8120,8117,8119]],[[8121,16793,8117]],[[11605,16793,11604]],[[8159,8118,11606]],[[8118,11605,11606]],[[8118,16793,11605]],[[11601,16793,11600]],[[11603,11604,11602]],[[11604,11601,11602]],[[11604,16793,11601]],[[11600,16793,15289]],[[11599,11600,11597]],[[11598,11599,11597]],[[11600,15289,11597]],[[15288,16793,16792]],[[11595,11596,11593]],[[15266,15264,11593]],[[11594,11595,11593]],[[15264,15263,11593]],[[11591,11592,11590]],[[11590,11592,11589]],[[16795,11588,11589]],[[11587,11588,11586]],[[11586,11588,11585]],[[16808,11584,11585]],[[11585,11588,16807]],[[11581,11583,11584]],[[16813,11581,11584]],[[11582,11583,11581]],[[16814,11580,11581]],[[11579,11580,11577]],[[16815,11577,11580]],[[11578,11579,11577]],[[16818,11576,11577]],[[11575,11576,11573]],[[16818,11573,11576]],[[11574,11575,11573]],[[16818,11572,11573]],[[11571,11572,2825]],[[2825,11572,16818]],[[2826,2825,16818]],[[16819,2834,2830]],[[2830,2826,16819]],[[16819,181,182]],[[182,2834,16819]],[[180,181,179]],[[179,181,176]],[[176,181,16869]],[[175,176,16869]],[[16869,181,16870]],[[16870,181,16826]],[[16826,181,16825]],[[16825,181,16824]],[[16824,181,16823]],[[16823,181,16822]],[[16822,181,16821]],[[16821,181,16820]],[[16820,181,16819]],[[16819,2826,16818]],[[16818,11577,16817]],[[16817,11577,16815]],[[16815,11580,16816]],[[16816,11580,16814]],[[16814,11581,16812]],[[16812,11581,16813]],[[16813,11584,16811]],[[16811,11584,16809]],[[16809,11584,16810]],[[16810,11584,16808]],[[16808,11585,16806]],[[16806,11585,16807]],[[16807,11588,16805]],[[16805,11588,16794]],[[16794,11588,16795]],[[16795,11589,15263]],[[15263,11589,11592]],[[15263,16797,16796]],[[15263,16798,16797]],[[15269,16799,16798]],[[15289,11596,11597]],[[15288,15289,16793]],[[16803,15288,16792]],[[16801,16800,15269]],[[15269,16800,16799]],[[16802,15288,16803]],[[16802,16801,15275]],[[15288,16802,15278]],[[15278,16802,15274]],[[15274,16802,15275]],[[15275,16801,15273]],[[15273,16801,15271]],[[15271,16801,15272]],[[16801,15269,15272]],[[16796,16795,15263]],[[16798,15263,15269]],[[11592,11593,15263]],[[11596,15287,11593]],[[15285,15266,11593]],[[15287,15285,11593]],[[15283,15287,11596]],[[15282,15283,11596]],[[15289,15282,11596]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f68f153-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee28049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12832,7096,7099]],[[6655,6678,6679]],[[16871,16317,6755]],[[16872,15991,15993]],[[6749,6663,6760]],[[6758,6759,6756]],[[16872,15976,15979]],[[6757,6758,6756]],[[6754,6755,16317]],[[16872,16017,16015]],[[7223,7224,7221]],[[7222,7223,7221]],[[6754,16317,7226]],[[7226,16317,7224]],[[7147,7148,7146]],[[7146,7148,7145]],[[16317,7138,7221]],[[7143,7144,7141]],[[7142,7143,7141]],[[7148,7138,16317]],[[7101,7103,7100]],[[16320,12842,7100]],[[7098,7099,7096]],[[7097,7098,7096]],[[12842,7099,7100]],[[12832,7094,7096]],[[7095,7096,7094]],[[16873,7093,7094]],[[7092,7093,7091]],[[7091,7093,7090]],[[7090,7093,16873]],[[7089,7090,16873]],[[16873,7094,16874]],[[15909,16873,16875]],[[16875,16873,16874]],[[16874,7094,16876]],[[16876,7094,16877]],[[16877,7094,16878]],[[16878,7094,16879]],[[16879,7094,16880]],[[16880,7094,16881]],[[16881,7094,16882]],[[16882,7094,16883]],[[16883,7094,16884]],[[16884,7094,16885]],[[16885,7094,16886]],[[16886,7094,16887]],[[16887,7094,16888]],[[16888,7094,16889]],[[16889,7094,12832]],[[16890,16889,12832]],[[505,15971,6672]],[[16891,16890,12832]],[[12841,12842,16320]],[[16342,16345,12841]],[[16892,16871,6756]],[[16340,16342,12841]],[[16340,12841,16338]],[[7224,16317,7221]],[[16336,16338,12841]],[[16336,12841,16334]],[[7148,16317,7145]],[[16334,12841,16332]],[[16354,16356,16351]],[[16330,16332,12841]],[[16356,16358,16351]],[[16328,16330,12841]],[[16326,16328,12841]],[[16358,16322,16341]],[[16323,16326,12841]],[[16324,16323,12841]],[[16360,16322,16358]],[[16346,16324,12841]],[[16348,16346,12841]],[[16362,16322,16360]],[[16350,16348,12841]],[[16352,16350,12841]],[[16364,16322,16362]],[[16353,16352,12841]],[[16355,16353,12841]],[[16322,16318,16344]],[[16357,16355,12841]],[[16359,16357,12841]],[[16318,16317,16344]],[[16361,16359,12841]],[[16363,16361,12841]],[[16321,16363,12841]],[[7103,16320,7100]],[[16319,16321,12841]],[[16872,15995,15997]],[[16317,7144,7145]],[[16317,16320,7144]],[[7144,16320,7141]],[[7141,16320,7103]],[[16351,16358,16349]],[[16349,16358,16341]],[[16347,16349,16341]],[[16325,16347,16327]],[[16327,16347,16329]],[[16329,16347,16335]],[[16331,16329,16335]],[[16333,16331,16335]],[[16335,16347,16341]],[[16337,16335,16339]],[[16339,16335,16341]],[[16341,16322,16344]],[[16343,16341,16344]],[[15974,16892,6756]],[[15997,16000,16872]],[[15995,16872,15993]],[[15971,6679,6672]],[[16872,15989,15991]],[[6655,6679,15971]],[[16008,16010,16006]],[[15989,16872,15987]],[[16010,16012,16004]],[[15987,16872,15985]],[[15985,16872,15983]],[[16012,16018,15996]],[[15983,16872,15981]],[[15981,16872,15979]],[[16014,16018,16012]],[[16872,15977,15976]],[[16872,16001,15977]],[[16016,16018,16014]],[[16872,16003,16001]],[[16872,16005,16003]],[[16018,15972,15999]],[[16872,16007,16005]],[[16872,16009,16007]],[[16020,15975,16018]],[[16872,16011,16009]],[[16872,16013,16011]],[[16872,16015,16013]],[[16018,15975,15972]],[[16872,16019,16017]],[[16872,16892,15973]],[[16774,15972,15971]],[[6759,15974,6756]],[[6759,6760,15974]],[[8391,8392,16893]],[[15971,15974,6655]],[[6655,15974,6663]],[[6663,15974,6760]],[[16006,16010,16004]],[[16004,16012,15996]],[[16002,16004,15980]],[[15978,16002,15980]],[[15980,16004,15984]],[[15982,15980,15984]],[[15984,16004,15996]],[[15986,15984,15990]],[[15988,15986,15990]],[[15990,15984,15996]],[[15992,15990,15994]],[[15994,15990,15996]],[[15996,16018,15999]],[[15998,15996,15999]],[[16894,16893,15881]],[[16773,15999,15972]],[[16895,16896,16897]],[[16897,16896,16898]],[[16898,16896,16899]],[[16900,16898,16899]],[[16901,16900,16899]],[[16899,16896,16902]],[[16903,16899,16904]],[[16904,16899,16905]],[[16905,16899,16902]],[[16906,16905,16907]],[[16907,16905,16908]],[[16909,16907,16908]],[[16908,16905,16902]],[[16910,16908,16911]],[[16911,16908,16912]],[[16912,16908,16902]],[[16913,16912,16902]],[[16914,16913,16902]],[[16902,16896,16915]],[[16916,16902,16917]],[[16917,16902,16915]],[[16918,16917,16915]],[[16915,16896,16772]],[[8388,8391,16893]],[[16894,16919,16920]],[[16921,16919,16894]],[[16922,16921,16923]],[[16923,16921,16924]],[[16925,16923,16926]],[[16927,16925,16926]],[[16926,16923,16924]],[[16928,16926,16929]],[[16929,16926,16930]],[[16931,16929,16930]],[[16930,16926,16924]],[[16932,16930,16933]],[[16933,16930,16924]],[[16934,16933,16935]],[[16935,16933,16936]],[[16937,16935,16936]],[[16936,16933,16938]],[[16939,16936,16938]],[[16938,16933,16924]],[[16940,16938,16924]],[[16924,16921,16894]],[[16941,16942,15858]],[[16943,15858,16942]],[[15880,15881,15878]],[[15879,15880,15878]],[[15878,15881,15876]],[[15877,15878,15876]],[[15876,15881,15874]],[[15875,15876,15874]],[[15874,15881,15860]],[[15873,15874,15872]],[[15872,15874,15871]],[[15871,15874,15870]],[[15870,15874,15869]],[[15869,15874,15860]],[[15868,15869,15865]],[[15867,15868,15865]],[[15866,15867,15865]],[[15865,15869,15864]],[[15864,15869,15860]],[[15863,15864,15860]],[[15862,15863,15860]],[[15861,15862,15860]],[[15860,15881,15857]],[[15859,15860,15857]],[[15881,16944,15857]],[[16944,15881,16893]],[[8272,15855,15858]],[[14714,15856,15855]],[[14721,15856,14714]],[[14717,15855,8273]],[[16945,16946,14719]],[[16947,16945,14717]],[[16948,16947,14717]],[[16949,16948,8274]],[[16950,16949,16951]],[[16952,16950,16951]],[[16953,16952,16951]],[[16954,16953,16951]],[[16951,16949,8274]],[[8275,16951,8274]],[[8274,14717,8273]],[[8273,15855,8272]],[[8272,15858,16955]],[[8271,8272,16955]],[[16956,15858,16943]],[[16957,16955,16958]],[[16955,16956,16958]],[[16955,15858,16956]],[[16959,8392,8395]],[[16960,16943,16961]],[[16943,16942,16961]],[[8387,8388,16893]],[[16944,15858,15857]],[[16959,8396,16962]],[[16959,8395,8396]],[[8394,8395,8393]],[[8395,8392,8393]],[[1389,8384,16894]],[[8390,8391,8389]],[[8391,8388,8389]],[[16893,16894,8387]],[[8384,8385,8386]],[[8386,8387,8384]],[[16894,8384,8387]],[[16963,16894,16964]],[[16965,16963,16966]],[[16894,1386,1389]],[[1391,1387,16967]],[[1386,16965,1387]],[[16968,16969,16920]],[[16963,16965,1386]],[[16965,16967,1387]],[[1386,16894,16963]],[[16969,16964,16894]],[[16969,10652,16964]],[[16920,16969,16894]],[[10647,10652,16969]],[[650,651,16970]],[[16968,650,16970]],[[16920,648,16968]],[[648,649,650]],[[16920,624,648]],[[16968,648,650]],[[16920,16971,630]],[[16771,16915,16772]],[[624,16920,630]],[[520,16971,519]],[[630,520,514]],[[630,16971,520]],[[506,518,519]],[[15971,506,16774]],[[493,518,506]],[[505,506,15971]],[[16942,16941,16962]],[[16893,8392,16959]],[[16959,16962,16941]],[[16941,15858,16944]],[[14717,14714,15855]],[[16948,14717,8274]],[[16945,14719,14717]],[[16946,16972,14719]],[[16972,14721,14719]],[[16972,15856,14721]],[[16973,12831,16345]],[[16973,16891,12832]],[[12831,16973,12832]],[[16319,12841,16320]],[[12832,7099,12842]],[[12831,12841,16345]],[[16344,16974,16000]],[[16344,16317,16871]],[[6756,16871,6755]],[[16974,16344,16871]],[[15973,16892,15974]],[[15973,16019,16872]],[[16974,16872,16000]],[[16896,15999,16773]],[[16774,16773,15972]],[[16772,16896,16773]],[[519,16774,506]],[[519,16771,16774]],[[16971,16771,519]],[[16971,16915,16771]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6bb041-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1acf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8131,8132,8133]],[[16867,8131,8133]],[[15854,8130,8131]],[[16867,15854,8131]],[[16868,15853,16867]],[[15853,8125,8126]],[[16867,15853,15854]],[[16868,8125,15853]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6bb053-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16781,16782,16975]],[[16782,16976,16975]],[[16976,16782,16977]],[[16977,16782,16978]],[[16978,16782,16979]],[[16980,16978,16979]],[[16981,16980,16979]],[[16982,16981,16979]],[[16983,16982,16979]],[[16984,16983,16979]],[[16985,16984,16979]],[[16986,16985,16979]],[[16987,16986,16979]],[[16988,16987,16989]],[[16990,16988,16989]],[[16991,16990,16989]],[[16992,16991,16989]],[[16993,16992,16989]],[[16993,16989,16954]],[[16987,16979,16989]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6c25cb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16994,16995,14274]],[[3012,15234,16995]],[[14267,16994,14274]],[[14267,16996,16994]],[[3014,15216,15234]],[[16997,16998,3015]],[[16996,14267,3015]],[[16994,16997,16995]],[[16997,3013,16995]],[[16997,3015,3013]],[[16996,3015,16998]],[[14267,15216,3015]],[[3012,3014,15234]],[[3015,15216,3014]],[[3013,3012,16995]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6cc165-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16920,16919,16971]],[[16919,16915,16971]],[[16919,16918,16915]],[[16918,16919,16917]],[[16906,16907,16932]],[[16905,16906,16933]],[[16904,16905,16934]],[[16903,16904,16935]],[[16899,16903,16937]],[[16901,16899,16936]],[[16900,16901,16939]],[[16898,16900,16938]],[[16897,16898,16940]],[[16895,16897,16924]],[[16895,16894,16896]],[[16895,16924,16894]],[[16907,16909,16930]],[[16897,16940,16924]],[[16898,16938,16940]],[[16909,16908,16931]],[[16900,16939,16938]],[[16901,16936,16939]],[[16908,16910,16929]],[[16899,16937,16936]],[[16903,16935,16937]],[[16910,16911,16928]],[[16904,16934,16935]],[[16905,16933,16934]],[[16911,16912,16926]],[[16906,16932,16933]],[[16907,16930,16932]],[[16912,16913,16927]],[[16909,16931,16930]],[[16908,16929,16931]],[[16913,16914,16925]],[[16910,16928,16929]],[[16911,16926,16928]],[[16914,16902,16923]],[[16912,16927,16926]],[[16913,16925,16927]],[[16902,16916,16922]],[[16914,16923,16925]],[[16902,16922,16923]],[[16916,16917,16921]],[[16916,16921,16922]],[[16917,16919,16921]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6e9666-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33cb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14419,14290,14439]],[[14290,14300,14439]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6e966f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16305,16308,16307]],[[16305,16307,16306]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6fcec4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16999,17000,17001]],[[16999,17002,17003]],[[17004,17005,17006]],[[17006,17005,17007]],[[17007,17008,17009]],[[17001,17000,17010]],[[16999,17003,17000]],[[17009,17011,17010]],[[17012,17005,17004]],[[17012,17013,17005]],[[17001,17010,17011]],[[17011,17009,17014]],[[17014,17009,17015]],[[17015,17009,17016]],[[17016,17009,17008]],[[17008,17007,17017]],[[17017,17007,17005]],[[17005,17013,17018]],[[17018,17013,16783]],[[16779,17018,16783]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f70e0dc-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16789,16788,16790]],[[16789,16790,16791]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f71cae4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4b449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[588,17005,17018]],[[7807,17017,17005]],[[7807,17008,17017]],[[175,16869,17019]],[[12405,17019,17002]],[[12406,16999,17001]],[[17011,17014,7809]],[[17019,12405,7833]],[[17014,17015,7809]],[[17015,17016,7809]],[[12394,17002,16999]],[[17011,1796,17001]],[[174,175,7833]],[[174,7833,1840]],[[175,17019,7833]],[[12394,12405,17002]],[[7832,7833,12405]],[[12394,16999,12427]],[[12427,16999,12355]],[[12355,16999,12324]],[[12324,16999,12318]],[[12318,16999,12319]],[[12319,16999,12323]],[[12323,16999,12321]],[[12321,16999,12322]],[[12406,12429,16999]],[[12322,16999,12429]],[[17016,17008,7807]],[[12406,17001,7823]],[[7821,12406,7823]],[[7823,17001,1795]],[[1795,17001,1796]],[[7807,7809,17016]],[[1796,17011,7809]],[[8012,7807,17005]],[[8011,8012,17005]],[[8006,8011,17005]],[[3029,8006,17005]],[[8207,3029,17005]],[[8207,3030,3029]],[[3016,8207,17005]],[[8208,3030,8207]],[[3017,3016,17005]],[[3017,17005,8036]],[[8035,8036,17005]],[[8025,3017,8036]],[[8032,8035,17005]],[[8034,8035,8032]],[[8031,8032,17005]],[[8033,8034,8032]],[[8028,8031,17005]],[[8030,8031,8028]],[[603,8028,17005]],[[8029,8030,8028]],[[611,603,17005]],[[611,614,603]],[[613,614,612]],[[576,611,17005]],[[612,614,611]],[[586,588,17018]],[[576,17005,588]],[[587,588,586]],[[586,17018,703]],[[703,17018,702]],[[702,17018,678]],[[701,702,670]],[[670,702,683]],[[8250,17018,8248]],[[682,683,681]],[[683,680,681]],[[683,702,680]],[[680,678,679]],[[680,702,678]],[[678,17018,677]],[[677,17018,8253]],[[8252,8253,8251]],[[8253,8250,8251]],[[8253,17018,8250]],[[8248,17018,8281]],[[8281,17018,8279]],[[8280,8281,8279]],[[8276,17018,8275]],[[8278,8279,8277]],[[8279,8276,8277]],[[8279,17018,8276]],[[16951,8275,16988]],[[16954,16951,16993]],[[16993,16951,16992]],[[16992,16951,16991]],[[16991,16951,16990]],[[16990,16951,16988]],[[16988,8275,16987]],[[16987,8275,16986]],[[16986,8275,16985]],[[16985,8275,16984]],[[16984,8275,16983]],[[16983,8275,16982]],[[16982,8275,16981]],[[16981,8275,16980]],[[16980,8275,16978]],[[16978,8275,16977]],[[16977,8275,16976]],[[16976,8275,16975]],[[16975,8275,16781]],[[8275,16779,16781]],[[8275,17018,16779]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f724050-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7088,7089,7087]],[[16873,15902,7089]],[[7085,7086,7087]],[[7089,15921,7087]],[[7087,7084,7085]],[[7084,7087,15921]],[[7083,7080,7082]],[[7082,7080,7081]],[[7083,7084,15915]],[[7080,7083,15915]],[[7079,7077,7078]],[[7077,7120,7073]],[[7077,7079,15915]],[[7077,7119,7120]],[[7119,7077,15915]],[[7118,7114,7117]],[[7118,7176,7114]],[[7118,7119,15916]],[[7118,17020,7176]],[[7175,7173,7174]],[[7175,7172,7173]],[[7175,7176,17020]],[[7175,17021,7172]],[[7079,7080,15915]],[[7172,17021,17022]],[[17022,17023,17024]],[[17024,17025,17026]],[[17024,17027,17025]],[[17025,17027,17028]],[[17028,17027,17029]],[[17024,17023,17027]],[[17027,17030,17031]],[[17027,17023,17030]],[[17030,17032,17033]],[[17030,17034,17032]],[[17032,17035,17036]],[[17032,17037,17035]],[[17032,17034,17037]],[[17030,17023,17034]],[[17034,17038,17039]],[[17034,17040,17038]],[[17034,17023,17040]],[[17040,17023,17041]],[[17022,17042,17023]],[[17023,17042,17043]],[[17043,17042,17044]],[[17022,17021,17042]],[[7175,17020,17021]],[[17020,7118,15916]],[[7119,15915,15916]],[[7084,15921,15915]],[[7089,15920,15921]],[[7089,15919,15920]],[[7089,15907,15919]],[[15907,7089,15918]],[[15918,7089,15917]],[[15917,7089,15914]],[[15914,7089,15913]],[[15913,7089,15902]],[[16873,15911,15902]],[[16873,15912,15911]],[[16873,15908,15912]],[[15909,15908,16873]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f72b4d4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17045,17046,17047]],[[17045,17047,17048]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f732a64-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17049,17050,9145]],[[15325,17051,15333]],[[15325,16768,17051]],[[17051,16768,17052]],[[17052,16766,17053]],[[16765,17054,16766]],[[17055,17056,16765]],[[9148,17055,16765]],[[9145,17057,9146]],[[9145,17058,17057]],[[9145,17059,17058]],[[9145,17060,17059]],[[9145,17061,17060]],[[17049,9145,17062]],[[11997,17063,17064]],[[11997,17065,17063]],[[11997,17066,17065]],[[11997,17067,17066]],[[11997,12020,17067]],[[17053,16766,17054]],[[17052,16768,16766]],[[9148,17068,17055]],[[9145,11997,17064]],[[9145,17050,17061]],[[16768,15325,9147]],[[9147,16765,16767]],[[17056,17054,16765]],[[17057,17068,9146]],[[9147,9148,16765]],[[9146,17068,9148]],[[16768,9147,16767]],[[15325,11997,9145]],[[17062,9145,17064]],[[9147,15325,9145]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f76379f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0ad049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17069,16177,16430]],[[16430,16428,16425]],[[16430,16177,16428]],[[16428,16177,262]],[[17069,17070,16177]],[[16177,17070,16670]],[[17071,16670,17072]],[[17073,17071,17072]],[[17073,17072,17074]],[[16670,17070,17072]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"ba2bf3d0a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17075,17076,17077]],[[17075,17077,17078]],[[17079,17080,17075]],[[17075,17080,17076]],[[17081,17082,17077]],[[17077,17082,17078]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c139a9-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7823,1795,1801]],[[7823,1802,7822]],[[1801,1794,1802]],[[7823,1801,1802]],[[1795,1797,1801]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c139ab-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7169,7170,17083]],[[17083,7199,7167]],[[7167,7199,7200]],[[7169,17083,7167]],[[15943,7199,17083]],[[7170,15943,17083]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c1d52d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0876949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[266,279,265]],[[279,280,265]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c22373-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10539,17084,1403]],[[17085,1377,17084]],[[1381,10539,1403]],[[1376,1377,17085]],[[10002,1376,17085]],[[10539,1381,10009]],[[10539,17085,17084]],[[10009,1381,10044]],[[10033,10009,10044]],[[1381,17086,10044]],[[1381,1391,17086]],[[1323,1403,17084]],[[1377,1323,17084]],[[10349,10002,17085]],[[10539,10349,17085]],[[1391,16967,17086]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c2bff4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17087,1525,1369]],[[17088,17087,1369]],[[17089,11609,17088]],[[11608,17090,17087]],[[11609,11608,17087]],[[17088,11609,17087]],[[17089,11607,11609]],[[13350,11610,17089]],[[17089,11610,11607]],[[13352,13350,17088]],[[17088,13350,17089]],[[1369,13352,17088]],[[1535,1525,17087]],[[1364,1535,17090]],[[17090,1535,17087]],[[1688,1364,11608]],[[11608,1364,17090]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c46d5d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f097f149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17091,17092,17093]],[[17094,17095,17093]],[[17096,17097,17091]],[[17091,17098,17096]],[[17091,17099,17098]],[[17091,17097,17092]],[[17099,17091,17100]],[[17101,17091,17102]],[[17102,17091,17103]],[[17093,17092,17094]],[[17100,17091,17104]],[[17091,17101,17104]],[[17105,17106,17091]],[[17107,17108,17109]],[[17108,17107,17105]],[[17110,17109,17108]],[[17111,17112,17110]],[[17113,17112,17111]],[[17111,17114,17113]],[[17115,17114,17111]],[[17116,17115,17111]],[[17117,17116,17118]],[[17118,17119,17117]],[[17120,17121,17118]],[[17120,17118,17122]],[[17122,17118,17123]],[[17123,17124,17125]],[[17125,17124,17126]],[[17126,17124,17127]],[[17127,17128,17129]],[[17129,17128,17130]],[[17130,17128,17131]],[[17131,17128,17132]],[[17132,17128,17133]],[[17128,17134,17135]],[[17136,17128,17137]],[[17137,17128,17138]],[[17138,17128,17139]],[[17139,17128,17135]],[[17140,17134,17141]],[[17142,17135,17134]],[[17134,17143,17142]],[[17144,17134,17140]],[[17140,17145,17146]],[[17140,17141,17145]],[[17145,17141,17147]],[[17144,17143,17134]],[[17133,17128,17136]],[[17118,17116,17111]],[[17127,17124,17128]],[[17121,17119,17118]],[[17124,17123,17118]],[[17106,17103,17091]],[[17111,17110,17108]],[[17108,17105,17091]],[[17148,17149,17150]],[[17093,17151,17152]],[[17152,17153,17154]],[[17155,17156,17157]],[[17157,17156,17158]],[[17157,17158,17159]],[[17156,17150,17149]],[[17156,17149,17158]],[[17150,17154,17148]],[[17153,17148,17154]],[[17160,17153,17152]],[[17161,17160,17152]],[[17151,17161,17152]],[[17162,17151,17093]],[[17163,17164,17093]],[[17093,17164,17162]],[[17165,17163,17093]],[[17166,17165,17093]],[[17167,17166,17093]],[[17168,17167,17093]],[[17095,17168,17093]],[[1038,17169,17146]],[[17146,17169,17140]],[[1053,1038,17145]],[[17145,1038,17146]],[[1054,1053,17147]],[[17147,1053,17145]],[[17170,1054,17141]],[[17141,1054,17147]],[[17171,17170,17134]],[[17134,17170,17141]],[[17172,17171,17128]],[[17128,17171,17134]],[[17173,17172,17124]],[[17124,17172,17128]],[[17174,17173,17118]],[[17118,17173,17124]],[[17175,17174,17111]],[[17111,17174,17118]],[[17176,17175,17108]],[[17108,17175,17111]],[[17177,17176,17091]],[[17091,17176,17108]],[[17178,17177,17093]],[[17093,17177,17091]],[[17179,17178,17152]],[[17152,17178,17093]],[[17180,17179,17154]],[[17154,17179,17152]],[[17181,17180,17150]],[[17150,17180,17154]],[[17182,17181,17156]],[[17156,17181,17150]],[[17183,17182,17155]],[[17155,17182,17156]],[[17184,17183,17157]],[[17157,17183,17155]],[[17185,17184,17159]],[[17159,17184,17157]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c5a65f-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17186,17187,17188]],[[17189,8656,8664]],[[17190,17189,8664]],[[17188,17189,17190]],[[17191,17192,17186]],[[17193,17191,17194]],[[17187,17189,17188]],[[17187,17195,17196]],[[17187,17197,17195]],[[17187,17186,17197]],[[17198,8484,17199]],[[17192,17197,17186]],[[17192,17200,17201]],[[17192,17193,17200]],[[17192,17191,17193]],[[17191,8484,17198]],[[17194,17191,17202]],[[17202,17198,17203]],[[17203,17198,17204]],[[17202,17191,17198]],[[8817,8484,17191]],[[8818,8817,17186]],[[17186,8817,17191]],[[8660,8818,17188]],[[17188,8818,17186]],[[8661,8660,17190]],[[17190,8660,17188]],[[8664,8661,17190]],[[8659,8656,17189]],[[8657,8659,17187]],[[17187,8659,17189]],[[8655,8657,17196]],[[17196,8657,17187]],[[8654,8655,17195]],[[17195,8655,17196]],[[8652,8654,17197]],[[17197,8654,17195]],[[8653,8652,17192]],[[17192,8652,17197]],[[8651,8653,17201]],[[17201,8653,17192]],[[8649,8651,17200]],[[17200,8651,17201]],[[8650,8649,17193]],[[17193,8649,17200]],[[8647,8650,17194]],[[17194,8650,17193]],[[8648,8647,17202]],[[17202,8647,17194]],[[8646,8648,17203]],[[17203,8648,17202]],[[8644,8646,17204]],[[17204,8646,17203]],[[8645,8644,17198]],[[17198,8644,17204]],[[8642,8645,17199]],[[17199,8645,17198]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c8da19-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17205,10652,17206]],[[17205,17206,17207]],[[17208,10652,10645]],[[17209,17086,17210]],[[17211,10044,17086]],[[17209,17212,17211]],[[17209,17213,17212]],[[17214,17209,17210]],[[17211,17086,17209]],[[17215,17216,17214]],[[17217,17215,17214]],[[17210,17217,17214]],[[17210,10641,17217]],[[17206,10641,17210]],[[17206,17218,10641]],[[17206,10652,17218]],[[17218,10652,17208]],[[16964,10652,17205]],[[16963,16964,17207]],[[17207,16964,17205]],[[16966,16963,17206]],[[17206,16963,17207]],[[16965,16966,17210]],[[17210,16966,17206]],[[16967,16965,17086]],[[17086,16965,17210]],[[10048,10044,17211]],[[10043,10048,17212]],[[17212,10048,17211]],[[9992,10043,17213]],[[17213,10043,17212]],[[10046,9992,17209]],[[17209,9992,17213]],[[10045,10046,17214]],[[17214,10046,17209]],[[9993,10045,17216]],[[17216,10045,17214]],[[10042,9993,17215]],[[17215,9993,17216]],[[10644,10042,17217]],[[17217,10042,17215]],[[10641,10644,17217]],[[10642,10641,17218]],[[10643,10642,17208]],[[17208,10642,17218]],[[10645,10643,17208]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c92854-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.7fa0197b61b6438794ab14242e673e48","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17219,17075,17220]],[[17219,17221,17222]],[[17222,17223,17224]],[[17225,37,39]],[[17225,38,37]],[[17225,17226,38]],[[17225,17227,17228]],[[17225,17228,17226]],[[17227,17224,17228]],[[17224,17223,17228]],[[17222,17221,17223]],[[17219,17220,17221]],[[17220,17075,17078]],[[17229,17220,17078]],[[17230,17229,17078]],[[17231,17230,17078]],[[17231,17078,17232]],[[17233,17234,17235]],[[17235,17234,17236]],[[17237,17236,17234]],[[17238,17239,17234]],[[17240,17238,17234]],[[17241,17240,17234]],[[17242,17241,17243]],[[17244,17242,17243]],[[17245,17244,17243]],[[17246,17247,17248]],[[17249,17248,17250]],[[17249,17246,17248]],[[17251,17245,17243]],[[17251,17246,17249]],[[17251,17243,17246]],[[17241,17234,17243]],[[17239,17237,17234]],[[17232,17078,17252]],[[17078,17253,17252]],[[17078,17234,17253]],[[17253,17234,17233]],[[17254,17079,17219]],[[17219,17079,17075]],[[17255,17254,17222]],[[17222,17254,17219]],[[17256,17255,17224]],[[17224,17255,17222]],[[17257,17256,17227]],[[17227,17256,17224]],[[17258,17257,17225]],[[17225,17257,17227]],[[20,17258,39]],[[39,17258,17225]],[[19,20,37]],[[37,20,39]],[[18,19,36]],[[36,19,38]],[[38,19,37]],[[16273,36,17226]],[[17226,36,38]],[[16271,16273,17228]],[[17228,16273,17226]],[[14711,16271,14644]],[[14644,16271,17223]],[[17223,16271,17228]],[[14630,14644,17221]],[[17221,14644,17223]],[[16292,14712,17220]],[[17220,14712,14630]],[[17220,14630,17221]],[[11914,16292,17229]],[[17229,16292,17220]],[[11927,11914,17230]],[[17230,11914,17229]],[[13905,11957,13896]],[[13896,11957,17231]],[[17231,11957,11927]],[[17231,11927,17230]],[[13829,13896,17232]],[[17232,13896,17231]],[[13826,13829,13797]],[[13797,13829,17252]],[[17252,13829,17232]],[[13764,13797,17253]],[[17253,13797,17252]],[[12022,13764,17233]],[[17233,13764,17253]],[[12023,12022,17235]],[[17235,12022,17233]],[[14925,12023,17236]],[[17236,12023,17235]],[[14974,14925,17237]],[[17237,14925,17236]],[[11829,14974,17239]],[[17239,14974,17237]],[[11830,11829,17238]],[[17238,11829,17239]],[[14561,11830,17240]],[[17240,11830,17238]],[[14554,14561,17241]],[[17241,14561,17240]],[[12528,14554,17242]],[[17242,14554,17241]],[[12521,12528,17244]],[[17244,12528,17242]],[[16288,12521,17245]],[[17245,12521,17244]],[[17259,16288,17251]],[[17251,16288,17245]],[[17260,17259,17249]],[[17249,17259,17251]],[[17261,17260,17250]],[[17250,17260,17249]],[[17262,17263,17246]],[[17246,17263,17247]],[[17264,17262,17243]],[[17243,17262,17246]],[[17265,17264,17234]],[[17234,17264,17243]],[[17082,17265,17078]],[[17078,17265,17234]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ca6162-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17266,17267,17268]],[[17266,17269,17267]],[[17270,17271,17272]],[[17270,17273,17271]],[[2766,17269,17266]],[[2781,17274,2778]],[[17274,17275,17276]],[[17274,17277,17275]],[[2778,17273,2775]],[[17277,17274,2781]],[[8319,17277,2781]],[[8319,2781,2799]],[[2781,2778,2779]],[[2779,2778,2782]],[[17274,17273,2778]],[[17273,17270,2771]],[[2775,17273,2771]],[[2775,2777,2773]],[[2775,2771,2777]],[[17270,17269,2771]],[[2769,2766,17266]],[[2766,2771,17269]],[[2766,2769,2764]],[[2764,2769,2768]],[[17266,8318,2769]],[[2798,2769,8318]],[[16078,8318,17266]],[[16079,16078,17268]],[[17268,16078,17266]],[[16077,16079,17267]],[[17267,16079,17268]],[[16075,16077,17269]],[[17269,16077,17267]],[[16076,16075,17270]],[[17270,16075,17269]],[[16074,16076,17272]],[[17272,16076,17270]],[[16073,16074,17271]],[[17271,16074,17272]],[[16072,16073,17273]],[[17273,16073,17271]],[[16070,16072,17274]],[[17274,16072,17273]],[[16071,16070,17276]],[[17276,16070,17274]],[[16069,16071,17275]],[[17275,16071,17276]],[[16068,16069,17277]],[[17277,16069,17275]],[[8319,16068,17277]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cbe7b0-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1112,8526,1229]],[[1112,1229,1110]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cc0ecf-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6951,6952,17278]],[[17279,6951,17278]],[[17280,17279,17278]],[[17280,17281,17279]],[[6960,17282,6959]],[[6954,17281,6953]],[[17283,17284,17285]],[[17281,17280,6953]],[[6960,17284,17282]],[[17283,17282,17284]],[[17283,17279,17281]],[[17282,17283,17281]],[[16647,6953,17280]],[[16646,16647,17278]],[[17278,16647,17280]],[[6952,16646,17278]],[[16648,6951,17279]],[[16312,16648,17283]],[[17283,16648,17279]],[[16310,16312,17285]],[[17285,16312,17283]],[[16311,16310,17284]],[[17284,16310,17285]],[[6960,16311,17284]],[[16854,6959,17282]],[[16855,16854,17281]],[[17281,16854,17282]],[[6954,16855,17281]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cd20b1-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17286,17287,17288]],[[17287,17289,17288]],[[10623,9803,17286]],[[17286,9803,17287]],[[9808,10623,17288]],[[17288,10623,17286]],[[9802,9808,17289]],[[17289,9808,17288]],[[9803,9802,17287]],[[17287,9802,17289]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cd9515-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2250,8714,343]],[[2250,343,344]],[[8714,367,343]],[[343,367,368]],[[8714,8717,367]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cef542-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8219,7972,1247]],[[7972,1295,1247]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d1b3a6-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17290,17291,17292]],[[17293,17294,17295]],[[8484,17293,17199]],[[17199,17293,17295]],[[17295,17294,17296]],[[17297,17298,17299]],[[8484,17300,17293]],[[8484,17297,17300]],[[17300,17297,17299]],[[8482,17297,8484]],[[8482,17291,17290]],[[17301,17297,8482]],[[17302,17301,17303]],[[17301,17290,17303]],[[17301,8482,17290]],[[17292,17291,17304]],[[17305,17292,17304]],[[17291,17306,17304]],[[8482,8826,17291]],[[8643,8642,17295]],[[17295,8642,17199]],[[8814,8643,17296]],[[17296,8643,17295]],[[8797,8814,17294]],[[17294,8814,17296]],[[8798,8797,17293]],[[17293,8797,17294]],[[8813,8798,17300]],[[17300,8798,17293]],[[8796,8813,17299]],[[17299,8813,17300]],[[8801,8796,17298]],[[17298,8796,17299]],[[8811,8801,17297]],[[17297,8801,17298]],[[8810,8811,17301]],[[17301,8811,17297]],[[8800,8810,17302]],[[17302,8810,17301]],[[8807,8800,17303]],[[17303,8800,17302]],[[8809,8807,17290]],[[17290,8807,17303]],[[8808,8809,17292]],[[17292,8809,17290]],[[8802,8808,17305]],[[17305,8808,17292]],[[8803,8802,17304]],[[17304,8802,17305]],[[16620,8803,17306]],[[17306,8803,17304]],[[8826,16620,17291]],[[17291,16620,17306]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d44bdf-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17307,17308,17309]],[[17308,17310,17309]],[[17308,17311,17310]],[[17311,7712,7713]],[[17311,9809,7712]],[[17311,17308,9809]],[[10620,9807,17307]],[[17307,9807,17308]],[[9152,9155,17310]],[[17310,9155,17309]],[[9153,9152,17311]],[[17311,9152,17310]],[[7713,9153,17311]],[[9807,9809,17308]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d5fa48-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a4049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17312,17313,17314]],[[17313,17315,17316]],[[17315,17317,17318]],[[17317,17319,17320]],[[17319,17321,17322]],[[17321,17323,17324]],[[17323,17325,17326]],[[17327,17328,17329]],[[17318,17317,17320]],[[17320,17319,17322]],[[17330,17331,17332]],[[17324,17322,17321]],[[17333,17332,17327]],[[17327,17334,17333]],[[17327,17329,17334]],[[17330,17335,17331]],[[17327,17336,17328]],[[17316,17315,17318]],[[17330,17332,17333]],[[17337,17336,17327]],[[17326,17325,17335]],[[17326,17324,17323]],[[17325,17331,17335]],[[17314,17313,17316]],[[17338,17312,17314]],[[17339,17340,17338]],[[17341,17342,17339]],[[17343,17344,17341]],[[17345,17346,17343]],[[17347,17348,17345]],[[17349,17350,17347]],[[17338,17340,17312]],[[17340,17339,17342]],[[17342,17341,17344]],[[17344,17343,17346]],[[17346,17345,17348]],[[17348,17347,17350]],[[17350,17349,17351]],[[17350,17351,17352]],[[17349,17353,17351]],[[17349,17354,17353]],[[16254,16209,17349]],[[17349,16209,17354]],[[16242,16254,17347]],[[17347,16254,17349]],[[16253,16242,17345]],[[17345,16242,17347]],[[16251,16253,17343]],[[17343,16253,17345]],[[16252,16251,17341]],[[17341,16251,17343]],[[16249,16252,17339]],[[17339,16252,17341]],[[16250,16249,17338]],[[17338,16249,17339]],[[16248,16250,17314]],[[17314,16250,17338]],[[16245,16248,17316]],[[17316,16248,17314]],[[16247,16245,17318]],[[17318,16245,17316]],[[16246,16247,17320]],[[17320,16247,17318]],[[16243,16246,17322]],[[17322,16246,17320]],[[16244,16243,17324]],[[17324,16243,17322]],[[16181,16244,17326]],[[17326,16244,17324]],[[16182,16181,17335]],[[17335,16181,17326]],[[16183,16182,17330]],[[17330,16182,17335]],[[16241,16183,17333]],[[17333,16183,17330]],[[16240,16241,17334]],[[17334,16241,17333]],[[16207,16240,17329]],[[17329,16240,17334]],[[16238,16207,17328]],[[17328,16207,17329]],[[17355,17356,17327]],[[17327,17356,17337]],[[17357,17355,17332]],[[17332,17355,17327]],[[17358,17357,17331]],[[17331,17357,17332]],[[17359,17358,17325]],[[17325,17358,17331]],[[17360,17359,17323]],[[17323,17359,17325]],[[17361,17360,17321]],[[17321,17360,17323]],[[17362,17361,17319]],[[17319,17361,17321]],[[17363,17362,17317]],[[17317,17362,17319]],[[17364,17363,17315]],[[17315,17363,17317]],[[17365,17364,17313]],[[17313,17364,17315]],[[17366,17365,17312]],[[17312,17365,17313]],[[17367,17366,17340]],[[17340,17366,17312]],[[17368,17367,17342]],[[17342,17367,17340]],[[17369,17368,17344]],[[17344,17368,17342]],[[17370,17369,17346]],[[17346,17369,17344]],[[17371,17370,17348]],[[17348,17370,17346]],[[17372,17371,17350]],[[17350,17371,17348]],[[16267,17372,16260]],[[16260,17372,17352]],[[17352,17372,17350]],[[16257,16260,17351]],[[17351,16260,17352]],[[16258,16257,17353]],[[17353,16257,17351]],[[16209,16258,17354]],[[17354,16258,17353]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d7ced0-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17373,7452,7453]],[[17373,7453,17374]],[[8978,7452,17373]],[[8846,8978,17374]],[[17374,8978,17373]],[[7453,8846,17374]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d8b896-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17375,17376,8403]],[[17376,1095,8403]],[[8925,1100,17375]],[[17375,1100,17376]],[[8403,8925,17375]],[[1100,1095,17376]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2dc146d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.10994c13ed9746c2b01feaa5f372aece","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17377,17378,17379]],[[17380,17381,17382]],[[17383,17380,17384]],[[17384,17380,17382]],[[17385,17380,17383]],[[17385,17386,17380]],[[17387,17386,17385]],[[17379,17386,17377]],[[17377,17386,17388]],[[17388,17386,17387]],[[17389,17390,17391]],[[17392,17393,17394]],[[17395,17396,17397]],[[17398,17399,17400]],[[17401,17402,17403]],[[17403,17404,17405]],[[17406,17407,17408]],[[17407,17409,17410]],[[17411,17412,17413]],[[17413,17414,17415]],[[17415,17416,17400]],[[17417,17418,17419]],[[17420,17421,17422]],[[17423,17424,17422]],[[17425,17426,17427]],[[17428,17429,17430]],[[17431,17432,17433]],[[17432,17430,17433]],[[17432,17427,17434]],[[17430,17432,17428]],[[17435,17430,17429]],[[17435,17429,17436]],[[17437,17428,17432]],[[17438,17437,17432]],[[17439,17438,17432]],[[17434,17439,17432]],[[17440,17434,17427]],[[17426,17440,17427]],[[17422,17441,17427]],[[17442,17425,17427]],[[17443,17442,17427]],[[17444,17443,17427]],[[17445,17444,17427]],[[17446,17445,17427]],[[17447,17446,17427]],[[17448,17447,17427]],[[17441,17448,17427]],[[17449,17441,17422]],[[17450,17449,17422]],[[17424,17450,17422]],[[17451,17420,17422]],[[17452,17423,17422]],[[17421,17452,17422]],[[17453,17454,17455]],[[17456,17420,17451]],[[17455,17456,17451]],[[17453,17455,17451]],[[17457,17454,17453]],[[17419,17453,17451]],[[17419,17458,17453]],[[17410,17417,17419]],[[17419,17459,17458]],[[17419,17418,17459]],[[17410,17408,17407]],[[17460,17417,17410]],[[17409,17460,17410]],[[17400,17461,17408]],[[17462,17463,17411]],[[17405,17464,17462]],[[17406,17408,17461]],[[17461,17400,17399]],[[17465,17466,17401]],[[17400,17467,17398]],[[17400,17468,17467]],[[17400,17469,17468]],[[17400,17416,17469]],[[17415,17470,17416]],[[17415,17471,17470]],[[17472,17473,17474]],[[17415,17414,17471]],[[17465,17473,17475]],[[17414,17413,17412]],[[17463,17476,17411]],[[17412,17411,17476]],[[17464,17463,17462]],[[17477,17478,17474]],[[17479,17480,17481]],[[17405,17404,17464]],[[17477,17480,17482]],[[17483,17484,17403]],[[17404,17403,17484]],[[17402,17483,17403]],[[17485,17402,17401]],[[17486,17485,17401]],[[17487,17486,17401]],[[17466,17487,17401]],[[17488,17466,17465]],[[17475,17488,17465]],[[17489,17475,17473]],[[17490,17489,17473]],[[17472,17490,17473]],[[17491,17472,17474]],[[17478,17491,17474]],[[17492,17478,17477]],[[17493,17492,17477]],[[17494,17493,17477]],[[17482,17494,17477]],[[17495,17482,17480]],[[17496,17495,17480]],[[17497,17496,17480]],[[17479,17497,17480]],[[17498,17395,17394]],[[17499,17500,17481]],[[17499,17397,17396]],[[17479,17481,17501]],[[17501,17481,17500]],[[17500,17499,17502]],[[17502,17499,17503]],[[17503,17499,17504]],[[17505,17396,17395]],[[17504,17499,17396]],[[17506,17505,17395]],[[17507,17506,17395]],[[17508,17507,17395]],[[17509,17508,17395]],[[17498,17509,17395]],[[17510,17498,17394]],[[17393,17510,17394]],[[17391,17511,17394]],[[17512,17392,17394]],[[17513,17512,17394]],[[17514,17513,17394]],[[17515,17514,17394]],[[17516,17515,17394]],[[17517,17516,17394]],[[17511,17517,17394]],[[17518,17511,17391]],[[17519,17518,17391]],[[17390,17519,17391]],[[17520,17521,17391]],[[17522,17389,17391]],[[17521,17522,17391]],[[17523,17524,17520]],[[17520,17525,17521]],[[17520,17524,17525]],[[17523,17379,17526]],[[17524,17523,17526]],[[17379,17527,17526]],[[17379,17378,17527]],[[11906,14447,17377]],[[17377,14447,17378]],[[11908,11906,17388]],[[17388,11906,17377]],[[16173,11912,17387]],[[17387,11912,11908]],[[17387,11908,17388]],[[16151,16173,17385]],[[17385,16173,17387]],[[16159,16151,17383]],[[17383,16151,17385]],[[22,16159,17384]],[[17384,16159,17383]],[[17528,1,17382]],[[17382,1,22]],[[17382,22,17384]],[[2,17528,17381]],[[17381,17528,17382]],[[17529,2,17380]],[[17380,2,17381]],[[17530,17529,17386]],[[17386,17529,17380]],[[17531,17530,17379]],[[17379,17530,17386]],[[17532,17533,17520]],[[17520,17533,17523]],[[17534,17532,17391]],[[17391,17532,17520]],[[17535,17534,17394]],[[17394,17534,17391]],[[17536,17535,17395]],[[17395,17535,17394]],[[17537,17536,17397]],[[17397,17536,17395]],[[17538,17537,17499]],[[17499,17537,17397]],[[17539,17538,17481]],[[17481,17538,17499]],[[17540,17539,17480]],[[17480,17539,17481]],[[17541,17540,17477]],[[17477,17540,17480]],[[17542,17541,17474]],[[17474,17541,17477]],[[17543,17542,17473]],[[17473,17542,17474]],[[17544,17543,17465]],[[17465,17543,17473]],[[17545,17544,17401]],[[17401,17544,17465]],[[17546,17545,17403]],[[17403,17545,17401]],[[17547,17546,17405]],[[17405,17546,17403]],[[17548,17547,17462]],[[17462,17547,17405]],[[17549,17548,17411]],[[17411,17548,17462]],[[17550,17549,17413]],[[17413,17549,17411]],[[17551,17550,17415]],[[17415,17550,17413]],[[17552,17551,17400]],[[17400,17551,17415]],[[17553,17552,17408]],[[17408,17552,17400]],[[17554,17553,17410]],[[17410,17553,17408]],[[17555,17554,17419]],[[17419,17554,17410]],[[17556,17555,17451]],[[17451,17555,17419]],[[17557,17556,17422]],[[17422,17556,17451]],[[17558,17557,17427]],[[17427,17557,17422]],[[17559,17558,17432]],[[17432,17558,17427]],[[17560,17559,17431]],[[17431,17559,17432]],[[1046,17560,17433]],[[17433,17560,17431]],[[1042,1046,17430]],[[17430,1046,17433]],[[1043,1042,17435]],[[17435,1042,17430]],[[1044,1043,17436]],[[17436,1043,17435]],[[1048,1044,17429]],[[17429,1044,17436]],[[13077,1048,17428]],[[17428,1048,17429]],[[13037,13077,17437]],[[17437,13077,17428]],[[13136,13037,17438]],[[17438,13037,17437]],[[13139,13136,17439]],[[17439,13136,17438]],[[11772,13139,17434]],[[17434,13139,17439]],[[11793,11772,17440]],[[17440,11772,17434]],[[15442,11793,17426]],[[17426,11793,17440]],[[15440,15442,17425]],[[17425,15442,17426]],[[15535,15440,17442]],[[17442,15440,17425]],[[15548,15535,17443]],[[17443,15535,17442]],[[15549,15548,17444]],[[17444,15548,17443]],[[15805,15549,17445]],[[17445,15549,17444]],[[15824,15805,17446]],[[17446,15805,17445]],[[12454,15824,17447]],[[17447,15824,17446]],[[12461,12454,17448]],[[17448,12454,17447]],[[15795,12461,17441]],[[17441,12461,17448]],[[15785,15795,17449]],[[17449,15795,17441]],[[14305,15785,17450]],[[17450,15785,17449]],[[14300,14305,17424]],[[17424,14305,17450]],[[14439,14300,14421]],[[14421,14300,17423]],[[17423,14300,17424]],[[14433,14421,17452]],[[17452,14421,17423]],[[16650,14433,17421]],[[17421,14433,17452]],[[15903,16650,17420]],[[17420,16650,17421]],[[15904,15903,17456]],[[17456,15903,17420]],[[15905,15904,17455]],[[17455,15904,17456]],[[11988,15905,11983]],[[11983,15905,17454]],[[17454,15905,17455]],[[11967,11983,17457]],[[17457,11983,17454]],[[11963,11967,17453]],[[17453,11967,17457]],[[11973,11963,17458]],[[17458,11963,17453]],[[15852,11986,17459]],[[17459,11986,11973]],[[17459,11973,17458]],[[15235,15852,15219]],[[15219,15852,17418]],[[17418,15852,17459]],[[15228,15219,17417]],[[17417,15219,17418]],[[16995,15234,17460]],[[17460,15234,15228]],[[17460,15228,17417]],[[14274,16995,14265]],[[14265,16995,17409]],[[17409,16995,17460]],[[14269,14265,17407]],[[17407,14265,17409]],[[16637,14273,17406]],[[17406,14273,14269]],[[17406,14269,17407]],[[12018,16637,17461]],[[17461,16637,17406]],[[12011,12018,17399]],[[17399,12018,17461]],[[12012,12011,17398]],[[17398,12011,17399]],[[12009,12012,17467]],[[17467,12012,17398]],[[12010,12009,17468]],[[17468,12009,17467]],[[12003,12010,17469]],[[17469,12010,17468]],[[12004,12003,17416]],[[17416,12003,17469]],[[12001,12004,17470]],[[17470,12004,17416]],[[11999,12001,17471]],[[17471,12001,17470]],[[17067,12020,17414]],[[17414,12020,11999]],[[17414,11999,17471]],[[17066,17067,17412]],[[17412,17067,17414]],[[17065,17066,17476]],[[17476,17066,17412]],[[17063,17065,17463]],[[17463,17065,17476]],[[17064,17063,17464]],[[17464,17063,17463]],[[17062,17064,17404]],[[17404,17064,17464]],[[17049,17062,17484]],[[17484,17062,17404]],[[17050,17049,17483]],[[17483,17049,17484]],[[17061,17050,17402]],[[17402,17050,17483]],[[17060,17061,17485]],[[17485,17061,17402]],[[17059,17060,17486]],[[17486,17060,17485]],[[17058,17059,17487]],[[17487,17059,17486]],[[17057,17058,17466]],[[17466,17058,17487]],[[17068,17057,17488]],[[17488,17057,17466]],[[17055,17068,17475]],[[17475,17068,17488]],[[17056,17055,17489]],[[17489,17055,17475]],[[17054,17056,17490]],[[17490,17056,17489]],[[17053,17054,17472]],[[17472,17054,17490]],[[17052,17053,17491]],[[17491,17053,17472]],[[17051,17052,17478]],[[17478,17052,17491]],[[15333,17051,15324]],[[15324,17051,17492]],[[17492,17051,17478]],[[15331,15324,17493]],[[17493,15324,17492]],[[15320,15331,17494]],[[17494,15331,17493]],[[15317,15320,17482]],[[17482,15320,17494]],[[15315,15317,17495]],[[17495,15317,17482]],[[15311,15315,17496]],[[17496,15315,17495]],[[15312,15311,17497]],[[17497,15311,17496]],[[15327,15312,17479]],[[17479,15312,17497]],[[14126,15332,14123]],[[14123,15332,17501]],[[17501,15332,15327]],[[17501,15327,17479]],[[14122,14123,17500]],[[17500,14123,17501]],[[15459,14125,17502]],[[17502,14125,14122]],[[17502,14122,17500]],[[15458,15459,17503]],[[17503,15459,17502]],[[17561,15473,17504]],[[17504,15473,15458]],[[17504,15458,17503]],[[17562,17561,17396]],[[17396,17561,17504]],[[17563,17562,17505]],[[17505,17562,17396]],[[11879,17563,17506]],[[17506,17563,17505]],[[11887,11879,17507]],[[17507,11879,17506]],[[15711,11888,15706]],[[15706,11888,17508]],[[17508,11888,11887]],[[17508,11887,17507]],[[15708,15706,17509]],[[17509,15706,17508]],[[14549,15710,14528]],[[14528,15710,17498]],[[17498,15710,15708]],[[17498,15708,17509]],[[14543,14528,17510]],[[17510,14528,17498]],[[15251,14548,17393]],[[17393,14548,14543]],[[17393,14543,17510]],[[15256,15251,17392]],[[17392,15251,17393]],[[15301,15261,17512]],[[17512,15261,15256]],[[17512,15256,17392]],[[15296,15301,17513]],[[17513,15301,17512]],[[17564,15306,17514]],[[17514,15306,15296]],[[17514,15296,17513]],[[14245,17564,14242]],[[14242,17564,17515]],[[17515,17564,17514]],[[14234,14242,17516]],[[17516,14242,17515]],[[14748,14234,14740]],[[14740,14234,17517]],[[17517,14234,17516]],[[14747,14740,17511]],[[17511,14740,17517]],[[14734,14747,17518]],[[17518,14747,17511]],[[14735,14734,17519]],[[17519,14734,17518]],[[12532,14735,17390]],[[17390,14735,17519]],[[12538,12532,17389]],[[17389,12532,17390]],[[17565,12538,17522]],[[17522,12538,17389]],[[15742,17565,17521]],[[17521,17565,17522]],[[15728,15742,17525]],[[17525,15742,17521]],[[17566,15728,17524]],[[17524,15728,17525]],[[17567,17566,17526]],[[17526,17566,17524]],[[14460,17567,17527]],[[17527,17567,17526]],[[14447,14460,17378]],[[17378,14460,17527]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2de5e68-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17568,7729,17307]],[[17568,17307,366]],[[366,17309,364]],[[366,17307,17309]],[[7729,7730,17307]],[[8719,7729,17568]],[[366,8719,17568]],[[9155,364,17309]],[[7730,10620,17307]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2defaf4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1218,8554,1212]],[[1218,1212,1211]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2dfe4b4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13242,13275,13252]],[[13247,13276,13275]],[[17569,13277,13276]],[[17570,10244,13270]],[[13273,17571,13278]],[[13286,13285,10225]],[[10427,10426,13239]],[[10426,10431,13290]],[[10431,10433,13291]],[[10433,10432,13236]],[[10432,10434,13237]],[[10434,10429,13292]],[[10429,10513,13293]],[[10513,10438,13234]],[[10438,10437,13235]],[[10437,10436,13294]],[[10436,10440,13295]],[[10440,10439,13232]],[[10439,10444,13233]],[[10444,10443,13296]],[[10443,10446,13297]],[[10446,10445,13230]],[[10445,10451,13231]],[[10451,10453,13298]],[[10453,10456,13299]],[[10456,10449,13228]],[[10449,10448,13229]],[[10448,10459,13300]],[[10459,10458,13301]],[[10458,10462,13301]],[[10462,10463,13226]],[[10463,10529,13227]],[[10529,10466,13302]],[[10466,10469,13303]],[[10469,10472,13224]],[[10472,10471,13225]],[[10471,10475,13304]],[[10475,10474,13305]],[[10474,10478,13306]],[[10478,10481,13307]],[[10481,10480,13308]],[[10480,10484,13222]],[[10484,10483,13223]],[[10483,10487,13309]],[[10487,10486,13310]],[[10486,10518,13311]],[[10518,10493,13312]],[[10493,10492,13313]],[[10492,10523,13314]],[[10523,10497,13315]],[[10497,10498,13316]],[[10498,10499,13317]],[[10499,10524,13318]],[[10524,10525,13319]],[[10525,10528,13320]],[[10528,10564,13321]],[[10564,10504,13322]],[[10504,10516,13323]],[[10516,10375,13324]],[[10375,10505,13325]],[[10505,10506,13259]],[[10506,10508,13269]],[[10508,10510,13267]],[[10510,10362,13266]],[[10362,10378,13265]],[[10378,10383,13264]],[[10383,10386,13241]],[[10386,10393,13263]],[[10393,10395,13262]],[[10395,10397,13261]],[[10397,10396,13260]],[[10396,10530,13274]],[[10530,10400,13326]],[[10400,10403,13258]],[[10403,10381,13257]],[[10381,10380,13256]],[[10380,10535,13253]],[[13258,10403,13257]],[[10535,10408,13255]],[[10408,10143,13254]],[[17572,13272,13277]],[[10143,10142,13244]],[[10142,10247,17573]],[[10247,10246,17574]],[[10246,10321,17575]],[[17573,10247,17576]],[[10244,10241,13271]],[[10321,10203,10245]],[[17574,10246,17577]],[[10203,10148,10418]],[[17578,10246,17575]],[[17575,10321,17579]],[[10240,10239,13280]],[[17579,10321,10245]],[[10240,13280,13279]],[[10245,10203,10412]],[[10412,10203,10413]],[[10413,10203,10419]],[[10226,10225,13285]],[[10419,10203,10511]],[[10231,13284,13283]],[[10511,10203,10418]],[[10148,10415,10417]],[[13286,10221,13287]],[[10418,10148,10417]],[[10514,10427,13238]],[[17577,10246,17578]],[[17576,10247,17574]],[[13244,10142,17573]],[[13254,10143,13244]],[[13255,10408,13254]],[[13253,10535,13255]],[[13256,10380,13253]],[[13257,10381,13256]],[[13326,10400,13258]],[[13274,10530,13326]],[[13260,10396,13274]],[[13261,10397,13260]],[[13262,10395,13261]],[[13263,10393,13262]],[[13241,10386,13263]],[[13264,10383,13241]],[[13265,10378,13264]],[[13266,10362,13265]],[[13267,10510,13266]],[[13268,10508,13267]],[[13269,10508,13268]],[[13259,10506,13269]],[[13325,10505,13259]],[[13324,10375,13325]],[[13323,10516,13324]],[[13322,10504,13323]],[[13321,10564,13322]],[[13320,10528,13321]],[[13319,10525,13320]],[[13318,10524,13319]],[[13317,10499,13318]],[[13316,10498,13317]],[[13315,10497,13316]],[[13314,10523,13315]],[[13313,10492,13314]],[[13312,10493,13313]],[[13311,10518,13312]],[[13310,10486,13311]],[[13309,10487,13310]],[[13223,10483,13309]],[[13222,10484,13223]],[[13308,10480,13222]],[[13307,10481,13308]],[[13306,10478,13307]],[[13305,10474,13306]],[[13304,10475,13305]],[[13225,10471,13304]],[[13224,10472,13225]],[[13303,10469,13224]],[[13302,10466,13303]],[[13227,10529,13302]],[[13226,10463,13227]],[[13301,10462,13226]],[[13300,10459,13301]],[[13229,10448,13300]],[[13228,10449,13229]],[[13299,10456,13228]],[[13298,10453,13299]],[[13231,10451,13298]],[[13230,10445,13231]],[[13297,10446,13230]],[[13296,10443,13297]],[[13233,10444,13296]],[[13232,10439,13233]],[[13295,10440,13232]],[[13294,10436,13295]],[[13235,10437,13294]],[[13234,10438,13235]],[[13293,10513,13234]],[[13292,10429,13293]],[[13237,10434,13292]],[[13236,10432,13237]],[[13291,10433,13236]],[[13290,10431,13291]],[[13239,10426,13290]],[[13238,10427,13239]],[[13289,10514,13238]],[[13288,10425,13289]],[[13287,10220,13288]],[[10425,10514,13289]],[[10220,10425,13288]],[[13287,10221,10220]],[[13285,13284,10226]],[[10221,13286,10225]],[[13282,10237,13283]],[[13284,10231,10226]],[[13283,10237,10231]],[[13282,13281,10234]],[[13282,10234,10237]],[[13281,13280,10239]],[[10234,13281,10239]],[[13271,10241,13279]],[[13279,10241,10240]],[[13271,13270,10244]],[[13278,17570,13270]],[[17571,17570,13278]],[[13272,17580,13273]],[[17571,13273,17581]],[[17581,13273,17580]],[[17580,13272,17572]],[[17572,13277,17582]],[[17582,13277,17569]],[[17569,13276,13249]],[[13249,13276,13248]],[[13248,13276,13247]],[[13247,13275,13246]],[[13246,13275,13245]],[[13245,13275,13242]],[[13242,13252,13243]],[[13250,13244,17573]],[[16138,13250,17576]],[[17576,13250,17573]],[[16140,16138,17574]],[[17574,16138,17576]],[[16142,16140,17577]],[[17577,16140,17574]],[[16144,16142,17578]],[[17578,16142,17577]],[[16147,16144,17575]],[[17575,16144,17578]],[[16148,16147,17579]],[[17579,16147,17575]],[[10245,16148,17579]],[[16146,10244,17570]],[[16145,16146,17571]],[[17571,16146,17570]],[[16143,16145,17581]],[[17581,16145,17571]],[[16141,16143,17580]],[[17580,16143,17581]],[[16139,16141,17572]],[[17572,16141,17580]],[[16137,16139,17582]],[[17582,16139,17572]],[[13251,16137,17569]],[[17569,16137,17582]],[[13249,13251,17569]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e00bdc-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17583,9132,17584]],[[17585,8148,8149]],[[17586,17587,17588]],[[9132,17583,9133]],[[9133,17589,9143]],[[17587,17590,17591]],[[17592,17593,17594]],[[17593,17595,17596]],[[17595,17597,17596]],[[17598,17599,17600]],[[17599,8137,8139]],[[8137,8138,8139]],[[9106,17601,9105]],[[9105,17602,9104]],[[17599,8139,17600]],[[17588,17587,17591]],[[17591,17590,17603]],[[17603,17592,17594]],[[17594,17593,17596]],[[17596,17597,17604]],[[8139,17605,17600]],[[8139,8140,17605]],[[17604,17598,17600]],[[9104,17586,17588]],[[9108,17606,9106]],[[9107,17607,9108]],[[17597,17598,17604]],[[9109,17608,9107]],[[9111,17609,9109]],[[9112,17610,9111]],[[17590,17592,17603]],[[9113,17611,9112]],[[9143,17612,9113]],[[17602,17586,9104]],[[17601,17602,9105]],[[17606,17601,9106]],[[17607,17606,9108]],[[17608,17607,9107]],[[17609,17608,9109]],[[17610,17609,9111]],[[17611,17610,9112]],[[17612,17611,9113]],[[17589,17612,9143]],[[17613,17583,17584]],[[17589,9133,17583]],[[17585,17613,17584]],[[9080,17585,17584]],[[9080,8148,17585]],[[17585,8149,8150]],[[9084,9080,17584]],[[9132,9084,17584]],[[9102,9104,17588]],[[9101,9102,17591]],[[17591,9102,17588]],[[9100,9101,17603]],[[17603,9101,17591]],[[9099,9100,17594]],[[17594,9100,17603]],[[9098,9099,17596]],[[17596,9099,17594]],[[9097,9098,17604]],[[17604,9098,17596]],[[9096,9097,17600]],[[17600,9097,17604]],[[9095,9096,17605]],[[17605,9096,17600]],[[8140,9095,17605]],[[16860,8137,17599]],[[16866,16860,17598]],[[17598,16860,17599]],[[16865,16866,17597]],[[17597,16866,17598]],[[16864,16865,17595]],[[17595,16865,17597]],[[16863,16864,17593]],[[17593,16864,17595]],[[16862,16863,17592]],[[17592,16863,17593]],[[11379,16862,17590]],[[17590,16862,17592]],[[16395,11379,17587]],[[17587,11379,17590]],[[16396,16395,17586]],[[17586,16395,17587]],[[16393,16396,17602]],[[17602,16396,17586]],[[16391,16393,17601]],[[17601,16393,17602]],[[16389,16391,17606]],[[17606,16391,17601]],[[16387,16389,17607]],[[17607,16389,17606]],[[16385,16387,17608]],[[17608,16387,17607]],[[16383,16385,17609]],[[17609,16385,17608]],[[16381,16383,17610]],[[17610,16383,17609]],[[16379,16381,17611]],[[17611,16381,17610]],[[16378,16379,17612]],[[17612,16379,17611]],[[16377,16378,17589]],[[17589,16378,17612]],[[16376,16377,17583]],[[17583,16377,17589]],[[16371,16376,17613]],[[17613,16376,17583]],[[16373,16371,17585]],[[17585,16371,17613]],[[8150,16373,17585]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e1e06f-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8600,1892,8598]],[[1892,1891,8598]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e4514a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1146,8412,1150]],[[1146,1150,1147]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e4c69a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[171,172,17614]],[[17615,171,17614]],[[17616,17615,17614]],[[17616,17617,17615]],[[17616,1845,7915]],[[17617,17616,7915]],[[1838,1845,17616]],[[1842,1838,17614]],[[17614,1838,17616]],[[172,1842,17614]],[[9950,171,17615]],[[9963,9950,17617]],[[17617,9950,17615]],[[7915,9963,17617]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e5d871-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10648,10647,10650]],[[10647,10651,10650]],[[10651,17618,652]],[[10651,10647,17618]],[[652,17618,651]],[[17618,10647,17619]],[[17618,17619,17620]],[[16970,651,17618]],[[16968,16970,17620]],[[17620,16970,17618]],[[16969,16968,17619]],[[17619,16968,17620]],[[10647,16969,17619]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e674f4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17621,8534,17622]],[[8534,1121,17622]],[[1123,8534,17621]],[[1120,1123,17622]],[[17622,1123,17621]],[[1121,1120,17622]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e7acf3-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17623,1563,16960]],[[1563,17623,17624]],[[17624,17623,17625]],[[1563,1683,16960]],[[16960,17626,17627]],[[16960,17628,17626]],[[16960,1683,17628]],[[16957,17628,1683]],[[16955,16957,8271]],[[16957,8270,8271]],[[16957,1683,8270]],[[16942,16962,17625]],[[17625,16962,17624]],[[16961,16942,17623]],[[17623,16942,17625]],[[16960,16961,17623]],[[16943,16960,17627]],[[16956,16943,17626]],[[17626,16943,17627]],[[16958,16956,17628]],[[17628,16956,17626]],[[16957,16958,17628]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e8e5f6-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1203,8562,1197]],[[8562,1198,1197]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea451d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8623,124,8622]],[[8633,8579,8622]],[[17629,8633,8622]],[[124,17630,8622]],[[8622,17630,17629]],[[124,125,17630]],[[16365,8633,17629]],[[16366,16365,17630]],[[17630,16365,17629]],[[125,16366,17630]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea9355-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0875c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2813,11615,2815]],[[2813,2807,17631]],[[11615,2813,17631]],[[17631,2807,17632]],[[17632,2807,17633]],[[16666,11620,17631]],[[17631,11620,11615]],[[16176,16666,17632]],[[17632,16666,17631]],[[16175,16176,17633]],[[17633,16176,17632]],[[2807,16175,17633]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea9356-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17634,17379,17635]],[[17379,17523,17635]],[[17636,17531,17634]],[[17634,17531,17379]],[[17533,17637,17523]],[[17523,17637,17635]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ed2b76-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8792,8417,8705]],[[8792,14342,1942]],[[2253,346,8711]],[[8703,8705,8417]],[[8417,8792,1942]],[[1942,14342,1936]],[[2253,345,346]],[[1936,8711,346]],[[1936,14342,8711]],[[8710,8711,14342]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ed529d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17638,17639,15922]],[[17638,15922,17021]],[[17042,17021,15922]],[[17044,17042,15923]],[[17640,17641,15928]],[[17642,17640,15929]],[[17643,17642,15930]],[[17644,17643,15883]],[[17645,17644,15882]],[[17646,17645,15931]],[[17647,17646,15932]],[[17648,17647,15933]],[[17649,17648,15934]],[[17650,17649,15935]],[[17651,17650,15936]],[[17652,17651,15937]],[[17653,17652,15938]],[[17654,17653,15939]],[[17655,17656,15941]],[[17657,17655,15942]],[[17658,7171,7172]],[[17658,17657,15944]],[[17658,15945,7171]],[[17656,17654,15940]],[[17658,15944,15945]],[[17641,17659,15927]],[[17657,15942,15944]],[[17659,17660,15926]],[[17655,15941,15942]],[[17660,17044,15925]],[[17656,15940,15941]],[[17654,15939,15940]],[[17653,15938,15939]],[[17652,15937,15938]],[[17651,15936,15937]],[[17650,15935,15936]],[[17649,15934,15935]],[[17648,15933,15934]],[[17647,15932,15933]],[[17646,15931,15932]],[[17645,15882,15931]],[[17644,15883,15882]],[[17643,15930,15883]],[[17642,15929,15930]],[[17640,15928,15929]],[[17641,15927,15928]],[[17659,15926,15927]],[[17660,15925,15926]],[[17044,15923,15925]],[[17042,15922,15923]],[[17020,15916,17638]],[[17638,15916,17639]],[[17021,17020,17638]],[[17043,17044,17660]],[[17023,17043,17659]],[[17659,17043,17660]],[[17041,17023,17641]],[[17641,17023,17659]],[[17040,17041,17640]],[[17640,17041,17641]],[[17038,17040,17642]],[[17642,17040,17640]],[[17039,17038,17643]],[[17643,17038,17642]],[[17034,17039,17644]],[[17644,17039,17643]],[[17037,17034,17645]],[[17645,17034,17644]],[[17035,17037,17646]],[[17646,17037,17645]],[[17036,17035,17647]],[[17647,17035,17646]],[[17032,17036,17648]],[[17648,17036,17647]],[[17033,17032,17649]],[[17649,17032,17648]],[[17030,17033,17650]],[[17650,17033,17649]],[[17031,17030,17651]],[[17651,17030,17650]],[[17027,17031,17652]],[[17652,17031,17651]],[[17029,17027,17653]],[[17653,17027,17652]],[[17028,17029,17654]],[[17654,17029,17653]],[[17025,17028,17656]],[[17656,17028,17654]],[[17026,17025,17655]],[[17655,17025,17656]],[[17024,17026,17657]],[[17657,17026,17655]],[[17022,17024,17658]],[[17658,17024,17657]],[[7172,17022,17658]],[[15916,15922,17639]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ee8aa2-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8572,8639,8152]],[[8572,8152,8153]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2eed8e4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1500,1563,8396]],[[1563,17624,8396]],[[16962,8396,17624]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f011e8-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[166,976,943]],[[166,943,165]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f0601b-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17661,7809,17662]],[[17661,17662,17663]],[[17662,7809,1787]],[[17662,1787,17664]],[[7809,7810,1787]],[[1796,7809,17661]],[[1792,1796,17663]],[[17663,1796,17661]],[[1793,1792,17662]],[[17662,1792,17663]],[[1786,1793,17664]],[[17664,1793,17662]],[[1787,1786,17664]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f149e9-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1162,1173,17665]],[[17665,17666,17667]],[[17668,17669,1263]],[[17669,7279,1263]],[[17669,17667,17666]],[[17669,17666,7279]],[[17667,17670,17665]],[[1162,17665,17670]],[[1174,1162,17670]],[[1155,1174,17667]],[[17667,1174,17670]],[[1156,1155,17669]],[[17669,1155,17667]],[[1169,1156,17668]],[[17668,1156,17669]],[[1263,1169,17668]],[[16827,7279,17666]],[[16828,16827,17665]],[[17665,16827,17666]],[[1173,16828,17665]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f1bf47-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f097f249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17671,17672,17673]],[[17674,17675,17676]],[[17672,17671,17677]],[[17678,17677,17671]],[[17679,17680,17681]],[[17682,17679,17683]],[[17684,17682,17685]],[[17686,17684,17687]],[[17688,17689,17690]],[[17691,17692,17693]],[[17694,17695,17696]],[[17694,17691,17697]],[[17694,17698,17695]],[[17695,17698,17699]],[[17694,17697,17698]],[[17700,17691,17701]],[[17691,17700,17697]],[[17692,17702,17703]],[[17702,17704,17705]],[[17701,17691,17693]],[[17692,17706,17693]],[[17704,17707,17708]],[[17692,17709,17706]],[[17707,17710,17708]],[[17692,17703,17709]],[[17702,17711,17703]],[[17710,17688,17690]],[[17702,13184,17711]],[[17689,17712,17713]],[[17702,17705,13184]],[[17704,17708,17705]],[[17712,17686,17713]],[[17708,17710,17690]],[[17689,17713,17690]],[[17686,17687,17713]],[[17684,17685,17687]],[[17680,17714,17715]],[[17685,17682,17716]],[[17716,17682,17683]],[[17679,17717,17683]],[[17718,17719,17720]],[[17679,17681,17717]],[[17680,17721,17681]],[[17680,17722,17721]],[[17680,17723,17722]],[[17680,17715,17723]],[[17714,17724,17715]],[[17714,17725,17724]],[[17714,17726,17725]],[[17714,17727,17726]],[[17719,17728,17729]],[[17718,17730,17727]],[[17718,17731,17730]],[[17714,17718,17727]],[[17714,17719,17718]],[[17718,17720,17732]],[[17733,17728,17678]],[[17719,17734,17720]],[[17719,17729,17734]],[[17728,17733,17729]],[[17729,17733,17735]],[[17728,17677,17678]],[[17672,17736,17673]],[[17737,17738,17736]],[[17737,17674,17739]],[[17736,17740,17673]],[[17740,17736,17741]],[[17736,17742,17741]],[[17742,17736,17738]],[[17737,17743,17738]],[[17743,17737,17744]],[[17744,17737,17745]],[[17745,17737,17739]],[[17739,17674,17746]],[[17746,17674,17747]],[[17747,17674,17676]],[[17676,17675,17748]],[[17748,17675,17749]],[[17750,17751,17752]],[[17752,17751,17753]],[[17753,17751,17754]],[[17754,17755,17756]],[[17757,17758,17759]],[[17759,17758,17760]],[[17675,17750,17749]],[[17761,17760,17758]],[[17762,17763,17764]],[[17762,17765,17766]],[[17763,17761,17758]],[[17766,17765,17767]],[[17762,17764,17765]],[[17763,17758,17764]],[[17757,17768,17758]],[[17757,17755,17768]],[[17757,17756,17755]],[[17749,17750,17752]],[[17751,17755,17754]],[[17769,17770,17674]],[[17674,17770,17675]],[[17771,17769,17737]],[[17737,17769,17674]],[[17772,17771,17736]],[[17736,17771,17737]],[[17773,17772,17672]],[[17672,17772,17736]],[[17774,17773,17677]],[[17677,17773,17672]],[[17775,17774,17728]],[[17728,17774,17677]],[[17776,17775,17719]],[[17719,17775,17728]],[[17777,17776,17714]],[[17714,17776,17719]],[[17778,17777,17680]],[[17680,17777,17714]],[[17779,17778,17679]],[[17679,17778,17680]],[[17780,17779,17682]],[[17682,17779,17679]],[[17781,17780,17684]],[[17684,17780,17682]],[[17782,17781,17686]],[[17686,17781,17684]],[[17783,17782,17712]],[[17712,17782,17686]],[[17784,17783,17689]],[[17689,17783,17712]],[[17785,17784,17688]],[[17688,17784,17689]],[[17786,17785,17710]],[[17710,17785,17688]],[[17787,17786,17707]],[[17707,17786,17710]],[[17788,17787,17704]],[[17704,17787,17707]],[[17789,17788,17702]],[[17702,17788,17704]],[[17790,17789,17692]],[[17692,17789,17702]],[[17791,17790,17691]],[[17691,17790,17692]],[[17792,17791,17694]],[[17694,17791,17691]],[[17793,17792,17696]],[[17696,17792,17694]],[[15839,17700,17701]],[[15830,15839,17693]],[[17693,15839,17701]],[[16301,15830,17706]],[[17706,15830,17693]],[[15209,16301,17709]],[[17709,16301,17706]],[[15210,15209,17703]],[[17703,15209,17709]],[[13183,15210,17711]],[[17711,15210,17703]],[[13184,13183,17711]],[[13186,13184,17705]],[[14406,13186,17708]],[[17708,13186,17705]],[[14407,14406,17690]],[[17690,14406,17708]],[[16296,14407,17713]],[[17713,14407,17690]],[[13220,16296,17687]],[[17687,16296,17713]],[[13210,13220,17685]],[[17685,13220,17687]],[[13204,13210,17716]],[[17716,13210,17685]],[[13205,13204,17683]],[[17683,13204,17716]],[[15713,13205,17717]],[[17717,13205,17683]],[[15714,15713,17681]],[[17681,15713,17717]],[[14039,15714,17721]],[[17721,15714,17681]],[[14040,14039,17722]],[[17722,14039,17721]],[[16304,14040,17723]],[[17723,14040,17722]],[[11760,16304,17715]],[[17715,16304,17723]],[[11761,11760,17724]],[[17724,11760,17715]],[[13189,11761,17725]],[[17725,11761,17724]],[[13190,13189,17726]],[[17726,13189,17725]],[[15760,13190,17727]],[[17727,13190,17726]],[[15761,15760,17730]],[[17730,15760,17727]],[[9066,15761,17731]],[[17731,15761,17730]],[[9077,9066,17718]],[[17718,9066,17731]],[[9075,9077,17732]],[[17732,9077,17718]],[[17794,9075,17720]],[[17720,9075,17732]],[[15131,17794,17734]],[[17734,17794,17720]],[[15132,15131,17729]],[[17729,15131,17734]],[[17795,15203,17735]],[[17735,15203,15132]],[[17735,15132,17729]],[[17796,17795,17733]],[[17733,17795,17735]],[[13707,17796,17678]],[[17678,17796,17733]],[[13708,13707,17671]],[[17671,13707,17678]],[[15505,13759,15495]],[[15495,13759,17673]],[[17673,13759,13708]],[[17673,13708,17671]],[[15496,15495,17740]],[[17740,15495,17673]],[[15379,15496,15350]],[[15350,15496,17741]],[[17741,15496,17740]],[[15338,15350,17742]],[[17742,15350,17741]],[[15684,15338,15629]],[[15629,15338,17738]],[[17738,15338,17742]],[[15630,15629,17743]],[[17743,15629,17738]],[[15381,15630,17744]],[[17744,15630,17743]],[[15382,15381,17745]],[[17745,15381,17744]],[[13997,15382,17739]],[[17739,15382,17745]],[[13998,13997,17746]],[[17746,13997,17739]],[[12829,13998,12798]],[[12798,13998,17747]],[[17747,13998,17746]],[[12799,12798,17676]],[[17676,12798,17747]],[[14801,12799,14750]],[[14750,12799,17748]],[[17748,12799,17676]],[[14751,14750,17749]],[[17749,14750,17748]],[[16263,14751,17752]],[[17752,14751,17749]],[[12117,16263,12069]],[[12069,16263,17753]],[[17753,16263,17752]],[[12070,12069,17754]],[[17754,12069,17753]],[[16204,12118,17756]],[[17756,12118,12070]],[[17756,12070,17754]],[[16265,16204,17757]],[[17757,16204,17756]],[[16264,16265,17759]],[[17759,16265,17757]],[[16202,16264,17760]],[[17760,16264,17759]],[[16206,16202,17761]],[[17761,16202,17760]],[[16205,16206,17763]],[[17763,16206,17761]],[[16203,16205,17762]],[[17762,16205,17763]],[[16261,16203,17766]],[[17766,16203,17762]],[[16255,16261,17767]],[[17767,16261,17766]],[[16256,16255,17765]],[[17765,16255,17767]],[[16262,16256,17764]],[[17764,16256,17765]],[[17797,16268,17758]],[[17758,16268,16262]],[[17758,16262,17764]],[[17798,17797,17768]],[[17768,17797,17758]],[[17799,17798,17755]],[[17755,17798,17768]],[[17800,17799,17751]],[[17751,17799,17755]],[[17801,17800,17750]],[[17750,17800,17751]],[[17770,17801,17675]],[[17675,17801,17750]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"baeb0d610-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12531,14731,12532]],[[14731,14735,12532]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb14b79-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16997,16994,16998]],[[16994,16996,16998]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb4316e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17802,11901,14448]],[[11906,17803,17804]],[[11906,11901,17805]],[[17802,17805,11901]],[[17803,11906,17805]],[[14447,17802,14448]],[[14447,17804,17802]],[[14447,11906,17804]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb71848-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee49149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[1033,16671,1061]],[[1059,1060,1061]],[[16671,17169,1061]],[[1061,1058,1059]],[[1061,1057,1058]],[[1061,1062,1057]],[[1061,1038,1062]],[[1062,1038,1056]],[[1056,1038,1030]],[[1030,1037,1031]],[[1030,1038,1037]],[[1061,17169,1038]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb96194-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17806,17807,17808]],[[17808,16775,16777]],[[17806,17808,16777]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebac1f9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4af49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8221,15884,8220]],[[8221,426,15884]],[[7277,15900,15899]],[[7247,7248,15952]],[[15884,426,15897]],[[400,15897,426]],[[403,15898,15897]],[[403,15896,15898]],[[403,15895,15896]],[[15893,15894,403]],[[15892,15893,6694]],[[15891,15890,6694]],[[15889,15891,6694]],[[15888,15889,6694]],[[15887,15888,6694]],[[15886,15887,6694]],[[15885,15886,6694]],[[7247,15952,15900]],[[7249,15951,15952]],[[7249,15950,15951]],[[7249,15949,15950]],[[1004,15948,15949]],[[1004,15946,15948]],[[1004,1003,15946]],[[1003,15924,15947]],[[7249,15952,7248]],[[1003,15947,15946]],[[7194,1003,997]],[[7194,15924,1003]],[[7249,1004,15949]],[[15890,15892,6694]],[[15899,6694,7277]],[[1005,1004,7249]],[[7247,15900,10012]],[[15900,7278,10012]],[[15885,6694,15899]],[[7278,15900,7277]],[[15894,15895,403]],[[400,403,15897]],[[6694,15893,403]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebae90f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17809,16297,17810]],[[15956,15954,17811]],[[15964,15831,16298]],[[15954,17812,17811]],[[17811,15839,15842]],[[17811,17700,15839]],[[17811,17697,17700]],[[15831,15967,15842]],[[15842,15956,17811]],[[17813,17814,15961]],[[15970,15956,15842]],[[15960,15970,15842]],[[15969,15960,15842]],[[16303,9071,9070]],[[15842,15968,15969]],[[15968,15842,15967]],[[15967,15831,15966]],[[15966,15831,15965]],[[15965,15831,15964]],[[15964,16298,15963]],[[15963,16298,15962]],[[15962,16298,15961]],[[15961,16298,17815]],[[15961,17814,15958]],[[17815,17813,15961]],[[17816,17815,16298]],[[17817,17816,16298]],[[17818,17817,16298]],[[16297,17819,16298]],[[16298,17820,17818]],[[16298,17821,17820]],[[16298,17822,17821]],[[16298,17823,17822]],[[16298,17824,17823]],[[17819,16297,17809]],[[16298,17825,17824]],[[16297,16295,17810]],[[17825,16298,17819]],[[17826,17827,17828]],[[16295,17829,17810]],[[17829,16295,17828]],[[17828,16295,17826]],[[16294,17830,16295]],[[16295,17830,17826]],[[16294,17831,17830]],[[16294,17832,17831]],[[17831,17833,17834]],[[17831,17835,17833]],[[17831,17836,17835]],[[17831,17837,17836]],[[17831,17838,17837]],[[17831,17839,17838]],[[17831,17840,17839]],[[17831,17841,17840]],[[17831,17842,17841]],[[17831,17832,17842]],[[16294,17843,17832]],[[16294,17844,17843]],[[16294,17845,17844]],[[16294,17846,17845]],[[16294,17847,17846]],[[17848,16294,17849]],[[16294,17850,17847]],[[16294,16303,17849]],[[17850,16294,17851]],[[17851,16294,17852]],[[17852,16294,17848]],[[16303,17853,17849]],[[17854,16188,17855]],[[17854,16185,16188]],[[17854,9069,16185]],[[17854,17853,9070]],[[17854,9070,9069]],[[17853,16303,9070]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebae918-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefaa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16944,16893,16941]],[[16893,16959,16941]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebc6f96-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16763,17856,16764]],[[17856,17857,16764]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebf073e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17858,17859,17860]],[[17858,17860,17861]],[[17861,17860,17862]],[[17859,17863,17860]],[[17860,17864,17865]],[[17860,17866,17864]],[[17860,17867,17866]],[[17860,17868,17867]],[[17860,17869,17868]],[[17860,17863,17869]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec01841-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16060,16023,16059]],[[16060,16059,16058]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec0184a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef1df549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15338,15684,15650]],[[16178,15479,15339]],[[15479,15496,15379]],[[15360,15479,15379]],[[15339,15479,15360]],[[16186,16185,15150]],[[13759,15505,15480]],[[13746,13759,15480]],[[15479,16178,15480]],[[16185,9069,9076]],[[17795,13707,13725]],[[17795,17796,13707]],[[16186,15203,17795]],[[13725,16186,17795]],[[13746,16186,13725]],[[15203,16186,15154]],[[16185,17794,15150]],[[15150,17794,15131]],[[9076,9075,17794]],[[12796,14801,14764]],[[15154,16186,15150]],[[17794,16185,9076]],[[15480,16186,13746]],[[16178,16186,15480]],[[15650,16178,15339]],[[14764,14772,16179]],[[16178,12806,16179]],[[12796,12799,14801]],[[16179,12796,14764]],[[16179,12806,12796]],[[14014,13998,12806]],[[13998,12829,12806]],[[16178,14014,12806]],[[16178,14008,14014]],[[16638,16641,15382]],[[16640,15388,15382]],[[16178,15388,14008]],[[16178,15386,15388]],[[15663,15630,15386]],[[16178,15663,15386]],[[15386,15630,15381]],[[15650,15663,16178]],[[15338,15650,15339]],[[16856,16858,16639]],[[14008,15388,16639]],[[16641,16640,15382]],[[16639,15388,16640]],[[13997,16638,15382]],[[16856,16638,13997]],[[14008,16859,13997]],[[16856,16639,16638]],[[13997,16859,16857]],[[14008,16639,16858]],[[16859,14008,16858]],[[16857,16856,13997]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec2b0ec-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14245,14240,17564]],[[14240,15291,17564]],[[17564,15291,15306]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec2ff3f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16173,16172,11900]],[[16173,11900,11912]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec32664-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1f949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[23,24,16170]],[[23,16170,21]],[[4,6,23]],[[23,6,24]],[[3,4,21]],[[21,4,23]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec76b97-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16275,35,16273]],[[35,36,16273]],[[8,18,35]],[[35,18,36]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec8f206-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17804,17803,17802]],[[17803,17805,17802]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec91931-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16289,16291,16293]],[[16289,16293,16290]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecc264e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[34,35,33]],[[17870,31,33]],[[35,16275,33]],[[33,16275,17870]],[[16,8,34]],[[34,8,35]],[[17,16,33]],[[33,16,34]],[[9,17,31]],[[31,17,33]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecdd400-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16989,16979,17871]],[[16989,17872,16082]],[[16989,17873,17872]],[[17873,16989,17874]],[[17874,16989,17875]],[[17875,16989,17876]],[[17876,16989,17871]],[[17871,16979,17877]],[[17877,16979,17878]],[[17878,16979,17879]],[[17879,16979,17880]],[[17880,16979,17881]],[[17881,16979,17882]],[[17882,16979,17883]],[[17883,16979,17884]],[[17884,16979,17807]],[[17885,17884,17807]],[[17886,17885,17807]],[[17887,17886,17807]],[[17887,17807,17806]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baece497b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8699,8698,8697]],[[8698,8692,8694]],[[8698,8699,8692]],[[8694,8692,8691]],[[8692,8699,8689]],[[8692,8689,8690]],[[8699,6950,16648]],[[8689,16649,6860]],[[8689,8699,16649]],[[16649,8699,16648]],[[16648,6950,6951]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecfa8c8-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17888,17889,17890]],[[17888,17890,17891]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed01e43-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16989,16953,16954]],[[16989,16952,16953]],[[16952,16989,16950]],[[16950,16989,16949]],[[16949,16989,16948]],[[16948,16989,16947]],[[16947,16989,16092]],[[16947,16092,16945]],[[16989,16090,16092]],[[16989,16089,16090]],[[16989,16088,16089]],[[16989,16087,16088]],[[16989,16086,16087]],[[16989,16084,16086]],[[16989,16083,16084]],[[16989,16082,16083]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed35282-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17892,17893,17894]],[[17892,17894,17895]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed6123a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15238,17894,15251]],[[15251,17894,17893]],[[15238,14532,11376]],[[11376,17895,15238]],[[17894,15238,17895]],[[15251,17892,11375]],[[15251,17893,17892]],[[15251,11375,14548]],[[17892,17895,11375]],[[11377,11376,14532]],[[11375,17895,11376]],[[14548,11377,14532]],[[14548,11374,11377]],[[14548,11375,11374]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed74a77-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16589,16588,16587]],[[16589,16587,16586]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed8a9c4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef170a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7931,16410,7930]],[[7931,7932,16643]],[[16410,7931,16643]],[[8186,16642,16643]],[[16643,7932,8186]],[[8186,16645,16642]],[[16644,16642,16645]],[[10010,8546,8544]],[[8544,16645,10010]],[[8545,8546,10205]],[[10205,8546,10010]],[[10010,16645,899]],[[902,10010,899]],[[899,16645,8186]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed8f811-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee48c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17896,15440,15535]],[[17896,17897,15440]],[[17898,15440,17897]],[[15534,17899,15535]],[[17898,15420,15440]],[[15535,17899,17896]],[[15534,15420,17899]],[[17899,15420,17898]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baedc2c50-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17898,17897,17896]],[[17898,17896,17899]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baedd648a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeed149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17900,16197,17901]],[[17900,17901,17902]],[[17901,17903,17904]],[[17901,16197,17905]],[[17901,17905,17903]],[[17903,17905,17906]],[[17905,16197,16180]],[[17905,17907,17908]],[[17907,17905,16180]],[[17907,16180,17909]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee30a16-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9969,14460,9970]],[[9971,17890,17889]],[[17891,15729,15728]],[[9968,9971,17889]],[[17890,15729,17891]],[[17566,9968,17889]],[[14442,15729,17890]],[[17888,17891,15728]],[[14460,14442,9970]],[[17566,17888,15728]],[[14460,9969,17567]],[[17889,17888,17566]],[[14442,17890,9971]],[[9970,14442,9971]],[[17567,9968,17566]],[[9969,9968,17567]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee50621-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17910,17911,14746]],[[17912,17910,14734]],[[14732,17912,14734]],[[17910,14746,14747]],[[14732,17913,17912]],[[14732,14746,17911]],[[17913,14732,17911]],[[14734,17910,14747]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee6656b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17698,17812,17699]],[[17698,17697,17811]],[[17812,17698,17811]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee70214-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15292,15237,15301]],[[15237,15261,15301]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee86179-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13131,13041,13037]],[[13131,13037,13136]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeeea27e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16945,16092,16136]],[[16945,16136,16946]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef24c20-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11785,13125,13139]],[[11785,13139,11772]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef3f9c3-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1f849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17914,16270,16269]],[[17915,17916,16279]],[[17917,17918,17919]],[[17920,17870,16275]],[[16279,17916,16284]],[[16284,17916,16283]],[[16283,17916,16282]],[[16282,17916,16281]],[[16281,17916,16280]],[[16280,17916,16272]],[[16272,17921,16278]],[[16278,17921,16277]],[[16277,17921,16276]],[[17922,16275,16274]],[[16276,17921,16274]],[[17923,17920,16275]],[[17924,17923,16275]],[[17925,17924,16275]],[[17926,17925,16275]],[[17927,17926,16275]],[[17922,17927,16275]],[[17928,17922,16274]],[[17921,17928,16274]],[[17921,17929,17928]],[[17921,17930,17929]],[[17921,17931,17930]],[[17932,17933,17931]],[[17934,17935,17933]],[[17936,17937,17935]],[[17938,17939,17937]],[[17940,17941,17939]],[[17942,17943,17941]],[[17944,17945,17943]],[[17946,17947,17945]],[[17948,17949,17947]],[[17950,17951,17949]],[[17952,17953,17951]],[[17954,17955,17953]],[[17956,17957,17955]],[[17919,17958,17957]],[[17917,17919,17957]],[[16270,17915,16279]],[[17959,17917,17957]],[[17960,17959,17957]],[[17961,17960,17957]],[[17962,17961,17957]],[[17963,17962,17957]],[[17964,17963,17957]],[[17956,17964,17957]],[[17954,17956,17955]],[[17952,17954,17953]],[[17950,17952,17951]],[[17948,17950,17949]],[[17946,17948,17947]],[[17944,17946,17945]],[[17942,17944,17943]],[[17940,17942,17941]],[[17938,17940,17939]],[[17936,17938,17937]],[[17934,17936,17935]],[[17932,17934,17933]],[[17921,17932,17931]],[[17921,17965,17932]],[[17966,17967,17965]],[[17968,17966,17965]],[[17969,17968,17965]],[[17970,17969,17965]],[[17971,17972,17969]],[[17971,17973,17972]],[[17974,17971,17969]],[[17974,17975,17971]],[[17976,17974,17969]],[[17976,17977,17974]],[[17976,17978,17977]],[[17976,17979,17978]],[[17970,17976,17969]],[[17980,17981,17976]],[[17970,17980,17976]],[[17921,17970,17965]],[[17982,17983,17970]],[[17921,17982,17970]],[[17916,17921,16272]],[[16270,17984,17915]],[[16285,17985,16269]],[[16285,16286,16830]],[[16270,17986,17984]],[[17986,16270,17987]],[[17986,17987,17988]],[[16270,17914,17987]],[[16269,17985,17914]],[[16286,16287,16846]],[[17985,16285,17989]],[[17989,16285,17990]],[[17990,16285,16830]],[[16830,16286,16831]],[[16831,16286,16853]],[[16853,16286,16852]],[[16852,16286,16851]],[[16851,16286,16850]],[[16850,16286,16849]],[[16849,16286,16848]],[[16848,16286,16847]],[[16847,16286,16846]],[[16846,16287,16845]],[[16845,16287,16844]],[[16844,16287,16843]],[[16843,16287,16842]],[[16842,16287,16841]],[[16841,16287,16840]],[[16839,16840,17991]],[[16838,16839,17991]],[[16832,16838,17991]],[[16837,16832,17991]],[[16836,16837,17991]],[[17869,16835,16834]],[[16834,16836,17868]],[[16833,16835,17859]],[[17858,16833,17859]],[[17859,16835,17863]],[[17863,16835,17869]],[[17869,16834,17868]],[[17868,16836,17867]],[[17867,16836,17991]],[[17866,17867,17991]],[[17864,17866,17991]],[[17865,17864,17991]],[[17865,17991,17992]],[[16840,16287,17991]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef46f44-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17260,16287,17259]],[[17259,16287,16288]],[[17260,17991,16287]],[[17260,17261,17991]],[[17991,17261,17992]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baefcac78-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17046,17045,14305]],[[14285,17047,14305]],[[17048,15792,15785]],[[14305,17047,17046]],[[14285,15792,17048]],[[17045,17048,15785]],[[17047,14285,17048]],[[14305,17045,15785]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baefd21e7-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16026,16093,16114]],[[16093,16113,16114]],[[16113,16093,16111]],[[16111,16093,16112]],[[16112,16093,16106]],[[16106,16093,16110]],[[16110,16093,16107]],[[16107,16093,16109]],[[16109,16093,16108]],[[16108,16093,16103]],[[16103,16093,16104]],[[16104,16093,16105]],[[16105,16093,16099]],[[16099,16093,16100]],[[16100,16093,16102]],[[16102,16093,16101]],[[16101,16093,16098]],[[16098,16093,16096]],[[16096,16093,16097]],[[16097,16093,16095]],[[16095,16093,16080]],[[16080,16093,16025]],[[16093,16081,16025]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf005617-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16787,11877,16316]],[[16313,16315,17561]],[[17561,16315,15473]],[[11879,16785,16784]],[[16315,15472,15473]],[[11877,15472,16316]],[[17563,16314,16313]],[[16316,15472,16315]],[[17562,16313,17561]],[[17562,17563,16313]],[[11879,11877,16786]],[[16787,16786,11877]],[[16785,11879,16786]],[[16314,16787,16316]],[[16314,17563,16784]],[[16314,16784,16787]],[[17563,11879,16784]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf00f2b1-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15746,12536,17565]],[[15746,17565,15742]],[[12536,12538,17565]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf01b573-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16300,16299,16302]],[[16300,16302,16309]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf03b16f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16872,16974,16892]],[[16974,16871,16892]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf03b17b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17910,17912,17913]],[[17910,17913,17911]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf053805-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16000,15999,16021]],[[16000,16028,16344]],[[16056,16057,15910]],[[16973,16028,16891]],[[16890,16891,16028]],[[16889,16890,16028]],[[16888,16889,16051]],[[16887,16888,16051]],[[16886,16887,16051]],[[16885,16886,16051]],[[16884,16885,16051]],[[16883,16884,16051]],[[16882,16883,15910]],[[16881,16882,15910]],[[16880,16881,15910]],[[16879,16880,15910]],[[16878,16879,15910]],[[16877,16878,15910]],[[16876,16877,15910]],[[16875,15910,15909]],[[16874,15910,16875]],[[16874,16876,15910]],[[15910,16883,16051]],[[16345,16028,16973]],[[15910,16055,16056]],[[15910,16053,16055]],[[15910,16054,16053]],[[15910,16052,16054]],[[16051,16889,16028]],[[15910,16050,16052]],[[16345,16344,16028]],[[16050,15910,16051]],[[16028,16000,16021]],[[16026,16021,16894]],[[16093,16026,15881]],[[16136,16093,16972]],[[16946,16136,16972]],[[16972,16093,15881]],[[15856,16972,15881]],[[16026,16894,15881]],[[16021,16896,16894]],[[16021,15999,16896]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf05864c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2838,3009,3011]],[[16661,16662,1074]],[[2842,16653,2848]],[[16653,2854,2856]],[[16653,1092,2854]],[[16662,16663,1074]],[[16664,16049,1074]],[[1091,16652,1090]],[[1090,16652,1089]],[[1089,16652,1088]],[[1088,16652,1087]],[[1087,16652,1086]],[[1086,16652,1085]],[[1085,16654,1084]],[[1084,16654,1082]],[[1082,16654,1081]],[[1081,16655,1080]],[[1080,16655,1079]],[[1079,16655,1078]],[[1078,16655,1077]],[[16655,1075,1076]],[[16655,1074,1075]],[[1077,16655,1076]],[[16665,16057,16049]],[[16664,16665,16049]],[[16663,16664,1074]],[[1092,16652,1091]],[[2848,16653,2856]],[[2838,3011,2842]],[[1074,16660,16661]],[[1074,16658,16660]],[[1074,16659,16658]],[[1074,16657,16659]],[[1074,16656,16657]],[[1074,16655,16656]],[[1081,16654,16655]],[[1085,16652,16654]],[[1092,16653,16652]],[[6859,6860,16649]],[[16651,6859,16649]],[[16758,6858,16651]],[[16651,6858,6859]],[[16759,16758,16651]],[[3007,3006,16759]],[[3006,6818,16759]],[[16651,3007,16759]],[[16653,3007,16651]],[[16653,3011,3007]],[[16653,2842,3011]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf067030-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14738,14237,14748]],[[14237,14234,14748]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf06be8c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15421,11769,15442]],[[11769,11793,15442]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf084513-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16085,16094,16091]],[[16094,16135,16091]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf0b7934-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4b249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16777,8312,17806]],[[17806,8312,17887]],[[8356,16777,8353]],[[17886,17887,8312]],[[17885,17886,8312]],[[17884,17885,8312]],[[17883,17884,8312]],[[17882,17883,8312]],[[17881,17882,8312]],[[17880,17881,8312]],[[17879,17880,8312]],[[17878,17879,8312]],[[17877,17878,8312]],[[17871,17877,8312]],[[17876,17871,8312]],[[17875,17876,8312]],[[17874,17875,8312]],[[17873,17874,8312]],[[17872,17873,8312]],[[16082,17872,8312]],[[8312,16777,8336]],[[8336,16777,8333]],[[8335,8336,8334]],[[8336,8333,8334]],[[8353,16777,783]],[[8333,16777,8332]],[[8332,16777,8356]],[[8355,8356,8354]],[[8356,8353,8354]],[[783,16777,782]],[[8353,783,747]],[[16777,16778,841]],[[842,16777,841]],[[781,782,779]],[[781,779,780]],[[782,16777,779]],[[779,16777,778]],[[778,16777,845]],[[844,845,843]],[[845,842,843]],[[845,16777,842]],[[841,16778,548]],[[535,841,548]],[[7323,16778,7322]],[[547,548,546]],[[548,545,546]],[[548,16778,545]],[[545,16778,544]],[[544,16778,7299]],[[7298,7299,7296]],[[7298,7296,7297]],[[7299,16778,7296]],[[7296,7323,7294]],[[7296,16778,7323]],[[7534,16778,7533]],[[7321,7322,7320]],[[7322,7319,7320]],[[7322,16778,7319]],[[7319,16778,7317]],[[7317,16778,7537]],[[7536,7537,7534]],[[7536,7534,7535]],[[7537,16778,7534]],[[7533,16778,7504]],[[7515,7533,7504]],[[7504,16778,7509]],[[7449,7509,16760]],[[16764,7475,7476]],[[7476,7449,16760]],[[7474,7475,7473]],[[7473,7475,7472]],[[16764,7471,7472]],[[7472,7475,16764]],[[7470,7471,7469]],[[16764,7468,7471]],[[7469,7471,7468]],[[16764,7467,7468]],[[7466,7467,7464]],[[17857,7464,7467]],[[7465,7466,7464]],[[17857,7463,7464]],[[7462,7463,7461]],[[17857,7460,7463]],[[7461,7463,7460]],[[17857,7459,7460]],[[16618,7459,17857]],[[17857,7467,16764]],[[7476,16760,16764]],[[7509,16778,16760]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf3f295d-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3243,3242,3234]],[[3243,3234,3398]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"baf3f2966-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef663a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5950,5945,17993]],[[5945,17994,17993]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"bbdc52a89-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"stuw","bronhouder":"W0372","creationdate":"","inonderzoek":"","lokaalid":"G0503.032e68f09ead49cce0532ee22091b28c","lv_publicatiedatum":"","namespace":"NL.IMGeo","plus_status":"","plus_type":"waardeOnbekend","relatievehoogteligging":"","tijdstipregistratie":""},"geometry":[{"boundaries":[[[17076,17634,17077]],[[17634,17635,17077]],[[17080,17636,17076]],[[17076,17636,17634]],[[17637,17081,17635]],[[17635,17081,17077]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"bdce6a385-fd58-11e5-8acc-1fc21a78c5fd":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.97986f98d554454a8a839c15b513a8e4","lv_publicatiedatum":"2015-11-30T11:11:19.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2015-11-27T10:24:41.000"},"geometry":[{"boundaries":[[[17995,17996,17997]],[[17998,5486,4891]],[[17999,18000,4891]],[[17996,5486,17998]],[[18000,18001,4891]],[[17997,11244,11217]],[[11244,17999,4891]],[[11244,18002,17999]],[[18003,18004,17998]],[[11217,5486,18005]],[[18001,17998,4891]],[[18001,18002,18006]],[[18000,18002,18001]],[[18000,17999,18002]],[[18001,18003,17998]],[[18006,11244,18004]],[[18007,17995,17997]],[[18008,18004,17997]],[[18009,17995,18007]],[[17996,18010,17997]],[[18005,18007,11217]],[[18005,18009,18007]],[[18010,17996,17998]],[[18009,5486,17996]],[[17995,18009,17996]],[[18005,5486,18009]],[[17998,18008,18010]],[[18004,11244,17997]],[[17998,18004,18008]],[[18003,18001,18006]],[[18003,18006,18004]],[[18002,11244,18006]],[[18007,17997,11217]],[[18010,18008,17997]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"be252b118-2d37-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[18011,18012,18013]],[[18011,18013,18014]],[[18015,18016,18011]],[[18011,18016,18012]],[[18017,18015,18014]],[[18014,18015,18011]],[[18018,18017,18013]],[[18013,18017,18014]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"be2539be1-2d37-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0986649cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:57:13.000"},"geometry":[{"boundaries":[[[4964,18019,18012]],[[4964,18020,11518]],[[4964,18012,18020]],[[18019,18013,18012]],[[18019,18021,18013]],[[18019,18022,18021]],[[18021,18022,30]],[[28,30,5621]],[[28,18023,29]],[[18023,28,5621]],[[30,18022,5621]],[[4965,4964,11518]],[[11511,11518,18020]],[[18016,11521,18012]],[[18012,11521,11511]],[[18012,11511,18020]],[[18024,18018,18021]],[[18021,18018,18013]],[[15,18024,30]],[[30,18024,18021]],[[13,15,28]],[[28,15,30]],[[11,13,27]],[[27,13,29]],[[29,13,28]],[[5643,27,18023]],[[18023,27,29]],[[5621,5643,18023]],[[4804,5621,18022]],[[4805,4804,18019]],[[18019,4804,18022]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"bea630875-00b8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09d6f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[18025,17793,17261]],[[18025,17263,17793]],[[17793,18026,17261]],[[18027,18028,18029]],[[18030,18026,18031]],[[18032,18033,18034]],[[18028,18030,18035]],[[18033,18027,18036]],[[18034,18033,18036]],[[18036,18027,18029]],[[18029,18028,18035]],[[18035,18030,18031]],[[18031,18026,18037]],[[18037,18026,18038]],[[18038,18026,17793]],[[17248,17263,18025]],[[17247,17263,17248]],[[17250,18025,17261]],[[17248,18025,17250]],[[17992,17261,18026]],[[17865,18026,18030]],[[17992,18026,17865]],[[17860,18030,18028]],[[17865,18030,17860]],[[17862,18028,18027]],[[17860,18028,17862]],[[15954,18029,18035]],[[15953,18029,15954]],[[17812,18035,18031]],[[15954,18035,17812]],[[17699,18031,18037]],[[17812,18031,17699]],[[17695,18037,18038]],[[17699,18037,17695]],[[17696,18038,17793]],[[17695,18038,17696]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"bea632f90-00b8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09df249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17797,18039,18040]],[[17797,16206,18039]],[[18039,16202,16264]],[[16268,18041,1051]],[[16202,18039,16206]],[[16206,17797,16205]],[[16205,17797,16268]],[[16203,16205,16268]],[[16261,16203,16256]],[[16255,16261,16256]],[[16203,16268,16256]],[[17797,18041,16268]],[[16262,16256,16268]],[[1045,1051,18041]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"bedab6302-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"W0372","class":"waterloop","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff33a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[18042,17361,17362]],[[18043,18044,17171]],[[16268,1045,17171]],[[1054,17170,17171]],[[1045,1051,17171]],[[17171,1051,1054]],[[17797,1046,1045]],[[17801,17559,17560]],[[1046,17798,17560]],[[17558,17559,17770]],[[17774,17557,17773]],[[17556,17557,17776]],[[17778,17554,17555]],[[17555,17556,17777]],[[17780,17552,17553]],[[17553,17554,17779]],[[17780,17551,17552]],[[17780,17550,17551]],[[17781,17549,17550]],[[17781,17548,17549]],[[17781,17547,17548]],[[17781,17546,17547]],[[17783,17545,17546]],[[17784,17544,17545]],[[17785,17543,17544]],[[17786,17542,17543]],[[17787,17541,17542]],[[17788,17540,17541]],[[17788,17539,17540]],[[17789,17538,17539]],[[17790,17537,17538]],[[17536,17537,17790]],[[17265,17534,17535]],[[17535,17536,17264]],[[17081,17532,17534]],[[17533,17532,17637]],[[17637,17532,17081]],[[17081,17534,17082]],[[17082,17534,17265]],[[17265,17535,17264]],[[17264,17536,17263]],[[17262,17264,17263]],[[17263,17536,17793]],[[17793,17536,17792]],[[17792,17536,17791]],[[17791,17536,17790]],[[17790,17538,17789]],[[17789,17539,17788]],[[17788,17541,17787]],[[17787,17542,17786]],[[17786,17543,17785]],[[17785,17544,17784]],[[17784,17545,17783]],[[17783,17546,17782]],[[17782,17546,17781]],[[17781,17550,17780]],[[17780,17553,17779]],[[17779,17554,17778]],[[17778,17555,17777]],[[18045,18046,17174]],[[17777,17556,17776]],[[17776,17557,17774]],[[17776,17774,17775]],[[17557,17558,17772]],[[17773,17557,17772]],[[17772,17558,17771]],[[17771,17558,17769]],[[17769,17558,17770]],[[17371,17372,17171]],[[17770,17559,17801]],[[17801,17560,17800]],[[17800,17560,17798]],[[18047,18048,18042]],[[17799,17800,17798]],[[1046,17797,17798]],[[1045,16268,17797]],[[18049,17178,17179]],[[16268,17171,16266]],[[16266,17171,17372]],[[16267,16266,17372]],[[17370,17371,17171]],[[17369,17370,17171]],[[17368,17369,17171]],[[17171,17367,17368]],[[17171,17366,17367]],[[17171,17365,17366]],[[17171,18050,17365]],[[17365,18051,17364]],[[18052,17180,17181]],[[17363,17364,18053]],[[17362,17363,18054]],[[18042,17360,17361]],[[18042,17359,17360]],[[17356,17358,17359]],[[17356,17357,17358]],[[18055,17175,17176]],[[17355,17357,17356]],[[17174,17175,18045]],[[17356,17359,18042]],[[17174,18046,17173]],[[18042,17362,18054]],[[18056,18047,18042]],[[18054,18056,18042]],[[18057,18054,17363]],[[18053,18057,17363]],[[18051,18053,17364]],[[18050,18051,17365]],[[18058,18050,17171]],[[18059,18058,17171]],[[17172,18060,17171]],[[17171,18061,18059]],[[17171,18062,18061]],[[17171,18063,18062]],[[17171,18064,18063]],[[17171,18044,18064]],[[17172,17173,18046]],[[17177,18065,17176]],[[17171,18060,18043]],[[17177,17178,18066]],[[18055,18045,17175]],[[18060,18067,18068]],[[18060,17172,18067]],[[17179,17180,18049]],[[18046,18067,17172]],[[18065,18055,17176]],[[18069,18065,17177]],[[18069,17177,18066]],[[18066,17178,18049]],[[18049,17180,18052]],[[17183,17181,17182]],[[18070,18052,18071]],[[18072,18071,18073]],[[18074,18072,18073]],[[18075,18074,18073]],[[18076,18077,18078]],[[18079,18076,18080]],[[18081,18079,18082]],[[18083,18081,18084]],[[18081,18085,18084]],[[18081,18082,18085]],[[18079,18080,18082]],[[18077,18086,18087]],[[18076,18078,18080]],[[18077,18087,18078]],[[18086,18088,18089]],[[18086,18089,18087]],[[18088,18075,18089]],[[18075,18090,18089]],[[18075,18073,18090]],[[18071,17185,18073]],[[18071,17184,17185]],[[18071,18052,17183]],[[18071,17183,17184]],[[18052,17181,17183]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"bedabd859-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"W0372","class":"waterloop","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.016d65723c70442d8abf815e2dc165cd","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-04-10T04:15:11.000"},"geometry":[{"boundaries":[[[17636,17080,17254]],[[17636,17256,17531]],[[19,18,1]],[[17530,2,17529]],[[17528,2,20]],[[17528,19,1]],[[6,4,5]],[[5,4,7]],[[11,7,10]],[[18091,18017,18092]],[[13,11,18093]],[[15,13,14]],[[18024,18017,18018]],[[14,18024,15]],[[18092,18017,18024]],[[18016,18015,11521]],[[11521,18015,18094]],[[11521,18095,11522]],[[11521,18096,18095]],[[11521,18097,18096]],[[18096,18098,18099]],[[18098,18096,18097]],[[18098,18097,18100]],[[18092,18024,14]],[[11521,18101,18097]],[[11521,18094,18101]],[[18015,18091,18094]],[[18094,18091,18102]],[[18015,18017,18091]],[[4,9,7]],[[16,3,8]],[[18092,14,18103]],[[3,1,8]],[[13,18093,14]],[[11,10,18093]],[[7,9,10]],[[16,17,9]],[[4,16,9]],[[4,3,16]],[[17258,20,17257]],[[1,18,8]],[[2,17530,17257]],[[20,19,17528]],[[17531,17256,17530]],[[2,17257,20]],[[17530,17256,17257]],[[17636,17255,17256]],[[17636,17254,17255]],[[17254,17080,17079]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"bfce80032-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18104,18105,18106]],[[18104,18106,18107]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce91150-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[5643,5642,27]],[[5642,26,27]],[[5642,16769,26]],[[7,11,26]],[[26,11,27]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce93872-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18108,18109,18110]],[[18108,18110,18111]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce95fa3-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9780,5952,18110]],[[9780,16979,9773]],[[18110,18109,17807]],[[17994,18112,18113]],[[17807,18113,17808]],[[17808,18113,18114]],[[18114,18115,18116]],[[18114,18117,18115]],[[18114,18113,18117]],[[18117,18118,18119]],[[18117,18120,18118]],[[18117,18121,18120]],[[18120,18121,18122]],[[18122,18121,18123]],[[18123,18121,18124]],[[18117,18113,18121]],[[18121,18113,18125]],[[18125,18126,18127]],[[18125,18128,18126]],[[18125,18129,18128]],[[18128,18130,18131]],[[18131,18130,18132]],[[18128,18129,18130]],[[18130,18129,18133]],[[18125,18113,18129]],[[17994,5945,5944]],[[17994,5944,18112]],[[18108,17993,17994]],[[17993,18111,5950]],[[18113,18109,17994]],[[17807,18109,18113]],[[17807,16979,18110]],[[9780,18110,16979]],[[18111,17993,18108]],[[5952,18111,18110]],[[5952,5950,18111]],[[18109,18108,17994]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea2371-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9282,9545,3440]],[[9545,9503,3440]],[[3950,17007,3949]],[[3949,17009,3948]],[[3948,17010,3458]],[[17003,3440,3478]],[[17000,3478,3538]],[[3478,17000,17003]],[[9503,9770,3440]],[[3903,16783,17013]],[[3458,17000,3475]],[[3951,17006,3950]],[[9278,9282,3440]],[[9274,9278,3440]],[[9273,9274,3440]],[[17003,9273,3440]],[[17003,9272,9273]],[[17003,9271,9272]],[[17003,9269,9271]],[[3437,17004,3951]],[[9269,17003,9265]],[[9264,9265,17003]],[[9263,9264,17003]],[[9262,9263,17003]],[[9261,9262,17003]],[[9258,9261,17003]],[[9257,9258,17003]],[[9256,9257,17003]],[[9254,17003,9249]],[[9249,17003,9247]],[[3475,17000,3538]],[[9254,9256,17003]],[[3437,3434,17012]],[[17000,3458,17010]],[[17010,3948,17009]],[[17009,3949,17007]],[[17007,3950,17006]],[[17006,3951,17004]],[[17004,3437,17012]],[[17012,3434,17013]],[[18134,16780,16783]],[[18135,18134,16783]],[[18136,18135,16783]],[[18137,18136,16783]],[[18138,18137,16783]],[[18139,18138,16783]],[[18140,18139,16783]],[[18141,18140,16783]],[[18142,18141,16783]],[[18143,18142,16783]],[[18144,18143,16783]],[[18145,18144,16783]],[[18146,18145,16783]],[[18147,18146,16783]],[[18148,18147,16783]],[[18149,18148,16783]],[[18150,18149,16783]],[[18151,18150,16783]],[[18152,18151,16783]],[[18153,18152,16783]],[[18154,18153,16783]],[[3903,18154,16783]],[[3903,18155,18154]],[[3903,18156,18155]],[[3903,18157,18156]],[[3903,18158,18157]],[[18159,18160,18158]],[[18161,18159,18158]],[[18161,18162,18159]],[[18161,18163,18162]],[[18164,18161,18158]],[[18165,18166,18161]],[[18167,18165,18161]],[[18164,18167,18161]],[[18164,18168,18167]],[[18169,18164,18158]],[[18169,18170,18164]],[[18169,18171,18170]],[[18172,18169,18158]],[[18173,18174,18169]],[[18173,18175,18174]],[[18176,18173,18169]],[[18176,18177,18173]],[[18178,18176,18169]],[[18178,18179,18176]],[[18178,18180,18179]],[[18178,18181,18180]],[[18172,18178,18169]],[[18182,18183,18178]],[[18178,18172,18182]],[[18184,18182,18172]],[[18172,18158,3903]],[[3434,3903,17013]],[[18185,18172,3903]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea4a8a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17019,9243,9247]],[[9247,17003,17002]],[[17019,9247,17002]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea70b2-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-11-03","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.c76f5d580cb14842ba0da04e1433d2ef","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18186,18187,6423]],[[18188,5944,5943]],[[18188,18112,5944]],[[5953,18189,5943]],[[18190,18188,5943]],[[18191,18190,5943]],[[18192,18191,5943]],[[18193,18192,5943]],[[18194,18193,5943]],[[18195,18194,5943]],[[18189,18195,5943]],[[18196,18189,5953]],[[18197,18196,5953]],[[18198,18197,5953]],[[18199,18198,5953]],[[18200,18199,5953]],[[18201,18200,5953]],[[18202,18201,5953]],[[18203,18202,5953]],[[18204,18203,5953]],[[18205,18204,5953]],[[18206,18205,5953]],[[18207,18206,5953]],[[18208,18207,5953]],[[18209,18208,5953]],[[6423,18209,5953]],[[6423,18187,18209]],[[6176,18186,6423]],[[18210,18211,18186]],[[6176,18210,18186]],[[18212,5937,18107]],[[5937,18210,6176]],[[18104,5932,18105]],[[18212,18210,5937]],[[18213,18212,18214]],[[18214,18212,18215]],[[18216,18214,18215]],[[18217,18216,18215]],[[18215,18212,18218]],[[18219,18215,18220]],[[18221,18219,18220]],[[18220,18215,18218]],[[18222,18220,18218]],[[18218,18212,18223]],[[18224,18218,18225]],[[18226,18224,18225]],[[18225,18218,18227]],[[18228,18225,18227]],[[18227,18218,18229]],[[18230,18227,18229]],[[18229,18218,18223]],[[18231,18229,18223]],[[18232,18231,18223]],[[18223,18212,16762]],[[18233,18223,16762]],[[18234,18233,16762]],[[16762,18212,18107]],[[18106,18105,5932]],[[18106,5932,18235]],[[17856,18106,18235]],[[18104,5937,5932]],[[16763,18106,17856]],[[16763,18107,18106]],[[16763,16762,18107]],[[18107,5937,18104]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea97e3-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16769,25,26]],[[5,7,25]],[[25,7,26]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea97e9-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8249cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16400,16390,18236]],[[16392,16400,18236]],[[16398,16392,18236]],[[18237,16394,18236]],[[18236,16399,16398]],[[18236,16394,16399]],[[18237,16397,16394]],[[18237,11378,11380]],[[16397,18237,11380]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceae630-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0c3449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18238,3349,3266]],[[18238,3220,3219]],[[18238,3266,3220]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceb347d-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eed11849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18236,16390,16770]],[[16403,16382,16770]],[[16384,16403,16770]],[[16402,16384,16770]],[[16386,16402,16770]],[[16401,16386,16770]],[[16388,16401,16770]],[[16390,16388,16770]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcebaa0a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef172349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9284,9226,4220]],[[9253,9252,4009]],[[9221,9219,3966]],[[4022,4026,9198]],[[9298,4013,3980]],[[4034,4033,9189]],[[9339,3298,3301]],[[9246,3301,3973]],[[3301,3302,3973]],[[4016,4015,9461]],[[9225,9396,4181]],[[4015,4019,9469]],[[9339,9244,3298]],[[4182,9515,4296]],[[9461,4015,9469]],[[3973,4296,9236]],[[9253,4009,4008]],[[3307,4453,4801]],[[3320,4360,4365]],[[4355,4350,3335]],[[4354,4355,3335]],[[3327,4350,4356]],[[5461,5465,3275]],[[5476,5461,3348]],[[3406,5471,5656]],[[3352,5896,5847]],[[5912,5612,3402]],[[5540,5912,3402]],[[5538,5540,3378]],[[5609,5538,3378]],[[5693,5609,3375]],[[5632,5693,3376]],[[5633,5632,3256]],[[5618,5633,3257]],[[5619,5618,18239]],[[5619,18239,18237]],[[5618,3257,18239]],[[5633,3256,3257]],[[3249,5890,5575]],[[5632,3376,3256]],[[5612,5890,3429]],[[5574,3404,5575]],[[3376,5693,3375]],[[5609,3378,3375]],[[5574,5896,3241]],[[3429,3402,5612]],[[3378,5540,3402]],[[5848,3353,5847]],[[3351,5655,5645]],[[5890,3249,3429]],[[3413,5479,5472]],[[5575,3404,3249]],[[5848,5479,3353]],[[5471,3415,5472]],[[3404,5574,3241]],[[5896,3352,3241]],[[5656,5655,3407]],[[3413,3353,5479]],[[3352,5847,3353]],[[3415,3413,5472]],[[5651,3219,5645]],[[5471,3406,3415]],[[5656,3407,3406]],[[5651,5649,3349]],[[5655,3351,3407]],[[5649,5476,3270]],[[5645,3219,3351]],[[5651,18238,3219]],[[3348,3270,5476]],[[5651,3349,18238]],[[3341,5468,4343]],[[5649,3270,3349]],[[5465,5468,3347]],[[4342,3341,4343]],[[3346,4351,4352]],[[5461,3273,3348]],[[4342,4351,3346]],[[4353,3370,4352]],[[3273,5461,3275]],[[5465,3347,3275]],[[4353,4354,3335]],[[3287,4800,4404]],[[3347,5468,3341]],[[4342,3346,3341]],[[4356,4360,3323]],[[4800,3320,4365]],[[3346,4352,3370]],[[4453,3317,4404]],[[3370,4353,3335]],[[3323,3327,4356]],[[3335,4350,3327]],[[4681,3307,4801]],[[3312,4802,4768]],[[4360,3320,3323]],[[4681,4802,3312]],[[3320,4800,3287]],[[4404,3317,3287]],[[4453,3288,3317]],[[4453,3307,3288]],[[4768,4477,3309]],[[4681,3312,3307]],[[4477,4340,3309]],[[4768,3311,3312]],[[4340,3983,3303]],[[4768,3309,3311]],[[4340,3310,3309]],[[4340,3303,3310]],[[3983,3973,3302]],[[3303,3983,3305]],[[3305,3983,3300]],[[3300,3983,3304]],[[3304,3983,3302]],[[3966,3965,9221]],[[9244,3299,3298]],[[9246,9339,3301]],[[4181,9231,4182]],[[3973,9236,9246]],[[9284,4220,4000]],[[4296,9515,9236]],[[4181,4220,9225]],[[9396,9231,4181]],[[9515,4182,9231]],[[3996,9379,4000]],[[9226,9225,4220]],[[4009,9260,3996]],[[9379,9284,4000]],[[9295,9379,3996]],[[9260,9295,3996]],[[3966,9219,4008]],[[4009,9252,9260]],[[3965,4014,9220]],[[4013,9306,4014]],[[4008,9223,9253]],[[9299,4017,4018]],[[4008,9218,9223]],[[3980,4017,9297]],[[9218,4008,9219]],[[9306,9220,4014]],[[9221,3965,9220]],[[9212,9306,4013]],[[4011,9462,4018]],[[4013,9298,9212]],[[3980,9297,9298]],[[4011,4016,9461]],[[9297,4017,9299]],[[9299,4018,9462]],[[9462,4011,9461]],[[9469,4019,9185]],[[9185,4019,4020]],[[9186,9185,4020]],[[9197,9186,4021]],[[4026,9192,9198]],[[9198,9197,4022]],[[4058,9190,9192]],[[4307,4046,9183]],[[9190,4053,9191]],[[4053,9189,9191]],[[4060,9170,9180]],[[4046,9179,9183]],[[4029,9171,9170]],[[9169,9171,9774]],[[9318,9169,9777]],[[9778,9318,9776]],[[9776,9318,9777]],[[9777,9169,9774]],[[9774,9171,4029]],[[9775,9774,4028]],[[9771,9775,4028]],[[9772,9771,4028]],[[9772,4028,4308]],[[9180,9179,4045]],[[4033,9187,9189]],[[4028,9774,4029]],[[9182,4307,9183]],[[4029,9170,4060]],[[9180,4057,4060]],[[9182,9187,4307]],[[4057,9180,4045]],[[4045,9179,4046]],[[4033,4307,9187]],[[4053,4034,9189]],[[4054,4053,9190]],[[4058,4054,9190]],[[4026,4058,9192]],[[4022,9197,4021]],[[4021,9186,4020]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcec6cc0-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9318,18240,9178]],[[18241,9778,9773]],[[18240,9318,18242]],[[3510,3737,18240]],[[3511,3510,18180]],[[3903,3511,18185]],[[18185,3511,18172]],[[18172,3511,18184]],[[18184,3511,18182]],[[18182,3511,18183]],[[18183,3511,18178]],[[18178,3511,18181]],[[18181,3511,18180]],[[18180,3510,18179]],[[18179,3510,18176]],[[18176,3510,18177]],[[18177,3510,18173]],[[18173,3510,18175]],[[18175,3510,18174]],[[18174,3510,18240]],[[18169,18174,18240]],[[18171,18169,18240]],[[18170,18171,18240]],[[18164,18170,18240]],[[18168,18164,18240]],[[18165,18167,18240]],[[18166,18165,18243]],[[18161,18166,18243]],[[18163,18161,18243]],[[18162,18163,18243]],[[18159,18162,18243]],[[18160,18159,18243]],[[18158,18160,18243]],[[18157,18158,18243]],[[18156,18157,18243]],[[18155,18156,18154]],[[18154,18156,18153]],[[18153,18156,18151]],[[18152,18153,18151]],[[18151,18156,18137]],[[18150,18151,18148]],[[18149,18150,18148]],[[18148,18151,18146]],[[18147,18148,18146]],[[18146,18151,18137]],[[18145,18146,18142]],[[18144,18145,18143]],[[18143,18145,18142]],[[18142,18146,18140]],[[18141,18142,18140]],[[18140,18146,18137]],[[18139,18140,18137]],[[18138,18139,18137]],[[18137,18156,16780]],[[18136,18137,16780]],[[18135,18136,16780]],[[18134,18135,16780]],[[16780,18156,16782]],[[18242,9318,9778]],[[16979,18241,9773]],[[16782,18241,16979]],[[16782,18156,18243]],[[16782,18243,18241]],[[18167,18168,18240]],[[18165,18240,18243]],[[3737,9178,18240]],[[18241,18242,9778]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcece247-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[3252,16804,3257]],[[16804,16861,3257]],[[3257,16861,18239]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcedf371-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef173a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[4089,5923,4338]],[[4087,4338,5941]],[[6301,6060,4270]],[[5931,3963,4084]],[[6029,6302,4074]],[[6060,4077,4270]],[[9783,4062,9785]],[[5986,5985,4067]],[[9786,4023,5948]],[[9781,9772,4308]],[[5951,5952,9779]],[[4023,4025,5948]],[[4062,4023,9785]],[[4062,9781,4308]],[[4085,4086,5927]],[[9783,9781,4062]],[[5985,6265,4066]],[[5974,4069,4075]],[[6301,4270,3963]],[[9785,4023,9786]],[[4086,4087,5927]],[[9784,9786,5949]],[[9782,9784,5949]],[[9779,9782,5951]],[[9779,5952,9780]],[[5949,5951,9782]],[[4064,5960,4025]],[[5992,4063,4065]],[[9786,5948,5949]],[[4064,4063,5956]],[[5960,5946,4025]],[[5948,4025,5946]],[[4027,5992,4065]],[[4064,6282,5960]],[[5985,4066,4067]],[[4064,5956,6282]],[[4027,4066,6265]],[[5956,4063,5992]],[[5992,4027,6264]],[[4027,6265,6264]],[[4067,4069,5986]],[[4074,6302,4075]],[[4077,6029,4074]],[[5986,4069,5974]],[[5974,4075,6302]],[[6060,6029,4077]],[[4085,5929,4084]],[[5931,6301,3963]],[[4084,5929,5931]],[[4085,5928,5929]],[[4085,5927,5928]],[[4087,5941,5927]],[[4338,5923,5941]],[[5923,4089,5922]],[[5922,4089,5919]],[[5919,4089,18244]],[[5920,5919,18245]],[[5918,5920,18246]],[[5918,18246,5994]],[[5920,18247,18246]],[[5920,18245,18247]],[[5919,18248,18245]],[[18249,5919,18250]],[[5919,18251,18248]],[[4089,4088,18252]],[[18251,5919,18253]],[[18253,5919,18254]],[[18254,5919,18249]],[[18250,5919,18255]],[[18255,5919,18256]],[[18256,5919,18244]],[[18244,4089,18257]],[[18257,4089,18258]],[[18258,4089,18259]],[[18259,4089,18252]],[[18252,4088,18260]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcee1a90-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18261,32,31]],[[18261,31,17870]],[[10,9,32]],[[32,9,31]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceeb72a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18239,16861,18237]],[[16861,11378,18237]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceeb730-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eed11b49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16826,3294,16870]],[[3294,3297,16870]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceede58-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229c49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18187,18186,18211]],[[18187,16775,18209]],[[18209,18207,18208]],[[18209,18192,18207]],[[18207,18204,18206]],[[18206,18204,18205]],[[18207,18201,18204]],[[18204,18202,18203]],[[18204,18201,18202]],[[18207,18195,18201]],[[18201,18198,18200]],[[18200,18198,18199]],[[18201,18195,18198]],[[18198,18195,18197]],[[18197,18189,18196]],[[18197,18195,18189]],[[18207,18194,18195]],[[18207,18192,18194]],[[18194,18192,18193]],[[18209,18188,18192]],[[18192,18190,18191]],[[18192,18188,18190]],[[18209,18112,18188]],[[18209,18113,18112]],[[18113,18209,16775]],[[18129,18113,16775]],[[18133,18129,16775]],[[18130,18133,16775]],[[18132,18130,16775]],[[18131,18132,16775]],[[18128,18131,16775]],[[18126,18128,16775]],[[18127,18126,16775]],[[18125,18127,16775]],[[18121,18125,16775]],[[18124,18121,16775]],[[18123,18124,16775]],[[18122,18123,16775]],[[18120,18122,16775]],[[18118,18120,16775]],[[18119,18118,16775]],[[18117,18119,16775]],[[18115,18117,16775]],[[18116,18115,16775]],[[18114,18116,16775]],[[18114,16775,17808]],[[18187,16776,16775]],[[18218,18224,16761]],[[18234,16762,16761]],[[18233,18234,16761]],[[18223,18233,16761]],[[18232,18223,16761]],[[18231,18232,16761]],[[18229,18231,16761]],[[18230,18229,16761]],[[18227,18230,16761]],[[18228,18227,16761]],[[18225,18228,16761]],[[18226,18225,16761]],[[18224,18226,16761]],[[16776,18213,16761]],[[18222,18218,16761]],[[18211,18212,16776]],[[16761,18220,18222]],[[16761,18221,18220]],[[16761,18219,18221]],[[16761,18215,18219]],[[16761,18217,18215]],[[16761,18216,18217]],[[16761,18214,18216]],[[16761,18213,18214]],[[16776,18212,18213]],[[18211,18210,18212]],[[18187,18211,16776]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcef52cd-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fb49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[3297,3299,16870]],[[3299,16869,16870]],[[3299,9244,16869]],[[16869,9243,17019]],[[9243,16869,9244]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcf03dd2-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef173949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[5641,5619,18237]],[[5641,18236,5622]],[[5622,16770,5623]],[[5623,16770,5642]],[[5642,16770,16769]],[[5622,18236,16770]],[[5641,18237,18236]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcf03dd8-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18242,18241,18243]],[[18242,18243,18240]]],"lod":"1","type":"MultiSurface"}],"type":"Road"}},"metadata":{"geographicalExtent":[84616.468,447422.999,-0.452,85140.83899999999,447750.636,16.846],"referenceSystem":"https://www.opengis.net/def/crs/EPSG/0/7415","citymodelIdentifier":"86a36ef9-a43e-4f87-8eb9-daa993d71355","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"delft.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{"WaterBody":{"uniqueFeatureCount":3,"aggregateFeatureCount":3,"presentLoDs":{"1":3}},"Road":{"uniqueFeatureCount":143,"aggregateFeatureCount":143,"presentLoDs":{"1":143}},"LandUse":{"uniqueFeatureCount":81,"aggregateFeatureCount":81,"presentLoDs":{"1":81}},"Building":{"uniqueFeatureCount":160,"aggregateFeatureCount":160,"presentLoDs":{"1":160}},"PlantCover":{"uniqueFeatureCount":126,"aggregateFeatureCount":126,"presentLoDs":{"1":126}},"Bridge":{"uniqueFeatureCount":3,"aggregateFeatureCount":3,"presentLoDs":{"1":3}},"+GenericCityObject":{"uniqueFeatureCount":54,"aggregateFeatureCount":54,"presentLoDs":{"1":54}}},"presentLoDs":{"1":570},"thematicModels":["WaterBody","Road","LandUse","Building","PlantCover","Bridge","+GenericCityObject"]},"type":"CityJSON","version":"1.1","vertices":[[411283,25181,572],[412163,27032,582],[411755,27133,582],[413571,26683,582],[418114,25557,582],[418511,26894,582],[418448,26903,582],[423464,25667,582],[412434,22752,582],[421953,19972,582],[423347,19595,582],[424894,25312,582],[423565,19536,572],[425113,25258,582],[423782,19478,582],[425331,25204,582],[417108,21489,582],[417055,21296,582],[411229,23077,582],[411030,23131,582],[410823,23187,582],[413571,26683,1562],[412163,27032,1562],[418114,25557,1632],[418448,26903,1812],[418511,26894,1812],[423464,25667,1892],[424894,25312,1902],[425113,25258,1982],[424894,25312,1962],[425331,25204,1962],[421953,19972,1712],[423347,19595,1702],[417055,21296,1842],[417108,21489,1852],[412434,22752,1872],[411229,23077,1882],[411030,23131,2422],[411229,23077,2292],[410823,23187,2422],[393347,59669,6452],[416101,61295,6452],[424165,81601,6452],[404992,53462,6452],[405974,54155,6452],[393184,59554,6452],[389219,56732,6452],[399010,49244,6452],[397907,47100,6452],[396015,40703,6452],[396198,40656,6452],[398196,48188,6452],[386610,44619,6452],[389578,42358,6452],[399888,49863,6452],[386278,42772,6452],[389466,41932,6452],[386243,43226,6452],[385960,42856,6452],[386011,43050,6452],[386069,43272,6452],[387926,58500,6452],[383712,45382,6452],[380026,44875,6452],[383345,43990,6452],[383461,43722,6452],[383519,43944,6452],[383101,43610,6452],[383410,43528,6452],[379913,44450,6452],[385366,61644,6452],[373646,46546,6452],[373636,46516,6452],[373220,46223,6452],[373624,46486,6452],[373556,46379,6452],[373610,46458,6452],[373594,46430,6452],[373576,46404,6452],[373461,46295,6452],[373534,46356,6452],[373511,46334,6452],[373487,46314,6452],[373433,46279,6452],[373405,46265,6452],[373283,46228,6452],[373376,46252,6452],[373345,46242,6452],[373315,46234,6452],[373252,46225,6452],[373125,46233,6452],[373188,46224,6452],[373156,46228,6452],[366829,47900,6452],[385535,61769,6452],[389122,59387,6452],[386731,62656,6452],[427205,83282,6452],[428972,80753,6452],[426922,83461,6452],[427742,84047,6452],[427925,83785,6452],[423945,66825,6452],[429692,81256,6452],[429875,80994,6452],[433996,76230,6452],[430424,81368,6452],[438993,67054,6452],[439132,66863,6452],[440005,67586,6452],[439885,67759,6452],[440045,67529,6452],[433002,62836,6452],[431881,62005,6452],[433290,62427,6452],[432149,61624,6452],[428849,59870,6452],[405974,54155,352],[416101,61295,352],[404992,53462,352],[399888,49863,352],[399010,49244,352],[398196,48188,352],[397907,47100,352],[396198,40656,352],[396015,40703,352],[389578,42358,352],[389466,41932,352],[386278,42772,352],[385960,42856,352],[386011,43050,352],[386069,43272,352],[386243,43226,352],[386610,44619,352],[383712,45382,352],[383345,43990,352],[383519,43944,352],[383461,43722,352],[383410,43528,352],[383101,43610,352],[379913,44450,352],[380026,44875,352],[373646,46546,352],[373636,46516,352],[373624,46486,352],[373610,46458,352],[373594,46430,352],[373576,46404,352],[373556,46379,352],[373534,46356,352],[373511,46334,352],[373487,46314,352],[373461,46295,352],[373433,46279,352],[373405,46265,352],[373376,46252,352],[373345,46242,352],[373315,46234,352],[373283,46228,352],[373252,46225,352],[373220,46223,352],[373188,46224,352],[373156,46228,352],[373125,46233,352],[366829,47900,352],[385366,61644,352],[385535,61769,352],[386731,62656,352],[389122,59387,352],[387926,58500,352],[389219,56732,352],[393184,59554,352],[393347,59669,352],[424165,81601,352],[426922,83461,352],[427742,84047,352],[427925,83785,352],[427205,83282,352],[428972,80753,352],[429692,81256,352],[429875,80994,352],[430424,81368,352],[433996,76230,352],[439885,67759,352],[440005,67586,352],[440045,67529,352],[439132,66863,352],[438993,67054,352],[433002,62836,352],[433290,62427,352],[432149,61624,352],[431881,62005,352],[428849,59870,352],[423945,66825,352],[239127,126716,3342],[236526,130339,3342],[226148,117412,3342],[225229,117961,3342],[222235,119812,3342],[225196,117911,3342],[222043,119937,3342],[222075,119915,3342],[239127,126716,432],[236526,130339,432],[239127,126716,442],[236526,130339,442],[236526,130339,452],[236526,130339,3322],[226148,117412,432],[226148,117412,442],[225229,117961,432],[225196,117911,432],[222235,119812,432],[222075,119915,432],[222043,119937,432],[222043,119937,452],[222043,119937,3322],[227727,127337,3322],[236681,133773,3322],[238272,131560,3322],[225757,130078,3322],[220489,120985,3322],[217534,122981,3322],[217751,122834,3322],[217723,122793,3322],[217511,122947,3322],[216716,123533,3322],[216499,123680,3322],[216693,123500,3322],[216477,123647,3322],[227727,127337,452],[225757,130078,452],[225757,130078,482],[225757,130078,2942],[236681,133773,452],[236681,133773,532],[238272,131560,452],[238272,131560,532],[220489,120985,452],[217751,122834,452],[217723,122793,452],[217511,122947,452],[217534,122981,452],[216716,123533,452],[216693,123500,452],[216477,123647,452],[216499,123680,452],[216499,123680,482],[216499,123680,2942],[224136,131931,2942],[216459,123706,2942],[209579,128491,2942],[209404,128301,2942],[216677,133640,2942],[220906,136370,2942],[220783,136540,2942],[227506,134382,2942],[228961,132382,2942],[228961,132382,482],[228961,132382,512],[228961,132382,2932],[216459,123706,482],[209404,128301,482],[209579,128491,482],[216677,133640,482],[220783,136540,482],[220906,136370,482],[224136,131931,482],[227506,134382,482],[227506,134382,512],[227506,134382,2932],[234710,136515,2932],[229924,143320,2932],[224254,138853,2932],[224130,139023,2932],[234710,136515,512],[229924,143320,512],[234710,136515,532],[229924,143320,532],[224254,138853,512],[224130,139023,512],[243507,120624,3752],[235960,110991,3752],[245458,117882,3752],[235767,111116,3752],[235667,111182,3752],[230733,114421,3752],[250725,125757,3752],[244733,124162,3752],[230711,114435,3752],[249506,127469,3752],[243507,120624,442],[250725,125757,442],[245458,117882,442],[245458,117882,3722],[235960,110991,442],[235960,110991,3722],[235767,111116,442],[235667,111182,442],[230733,114421,442],[230711,114435,442],[230711,114435,3502],[244733,124162,442],[244733,124162,3502],[249506,127469,442],[239127,126716,3502],[226148,117412,3502],[226126,117378,3502],[238272,131560,3502],[236526,130339,3502],[241718,128399,3502],[241296,133674,3502],[244031,130002,3502],[226126,117378,442],[238272,131560,442],[238272,131560,3472],[241296,133674,442],[241296,133674,532],[241296,133674,3472],[244031,130002,442],[241718,128399,442],[269724,125155,3522],[270795,125813,3522],[267552,130267,3522],[261643,128933,3522],[263699,126130,3522],[267997,124111,3522],[262301,125150,3522],[264561,122034,3522],[264198,134874,3522],[269483,138574,3522],[265579,138864,3522],[258205,133620,3522],[268771,139552,3522],[268012,140591,3522],[264198,134874,892],[269483,138574,892],[264198,134874,1062],[269483,138574,1062],[267552,130267,892],[267552,130267,942],[267552,130267,1062],[270795,125813,892],[270795,125813,942],[269724,125155,892],[267997,124111,892],[264561,122034,892],[262301,125150,892],[263699,126130,892],[261643,128933,892],[258205,133620,892],[265579,138864,892],[268012,140591,892],[268771,139552,892],[275036,133500,4422],[274068,134829,4422],[273822,132617,4422],[276094,129496,4422],[270902,125879,4422],[276223,129318,4422],[270969,125770,4422],[267552,130267,4422],[270795,125813,4422],[272838,133968,4422],[276094,129496,942],[273822,132617,942],[276223,129318,942],[270969,125770,942],[270902,125879,942],[272838,133968,942],[272838,133968,1062],[274068,134829,942],[274068,134829,1062],[275036,133500,942],[239663,138633,3472],[234006,146275,3472],[239243,138352,3472],[242030,134187,3472],[234710,136515,3472],[236681,133773,3472],[229924,143320,3472],[239663,138633,532],[234006,146275,532],[239663,138633,542],[234006,146275,542],[239243,138352,532],[242030,134187,532],[336628,67047,3532],[335233,68866,3532],[330422,68973,3532],[327637,59791,3532],[321413,61704,3532],[331944,73148,3532],[329127,70864,3532],[329010,70770,3532],[335350,68960,3532],[336628,67047,372],[335233,68866,372],[336628,67047,3422],[335233,68866,3422],[327637,59791,372],[327637,59791,3422],[321413,61704,372],[321413,61704,392],[321413,61704,3332],[330422,68973,372],[330422,68973,392],[330422,68973,3332],[329010,70770,372],[329010,70770,392],[329010,70770,3332],[329127,70864,372],[329127,70864,392],[329127,70864,3332],[331944,73148,372],[335350,68960,372],[335350,68960,3422],[342837,65118,3422],[341467,66952,3422],[333863,57877,3422],[338190,71237,3422],[341584,67046,3422],[342837,65118,352],[341467,66952,352],[342837,65118,3402],[341467,66952,3402],[333863,57877,352],[333863,57877,3402],[327637,59791,352],[336628,67047,352],[335233,68866,352],[335350,68960,352],[338190,71237,352],[341584,67046,352],[341584,67046,3402],[300751,123562,3242],[298348,126781,3242],[300619,123464,3242],[307689,114842,3242],[307743,114881,3242],[302333,122177,3242],[301963,121903,3242],[295840,125794,3242],[299917,120333,3242],[298495,119282,3242],[303927,112023,3242],[297958,127303,3242],[300751,123562,592],[298348,126781,592],[300751,123562,602],[298348,126781,602],[300619,123464,592],[300619,123464,602],[301963,121903,592],[301963,121903,602],[302333,122177,592],[302333,122177,602],[307743,114881,592],[307743,114881,602],[307689,114842,592],[303927,112023,592],[303927,112023,3212],[298495,119282,592],[298495,119282,3212],[299917,120333,592],[295840,125794,592],[297958,127303,592],[310952,117539,3242],[311149,117439,3242],[311033,117598,3242],[311186,117388,3242],[303888,123272,3242],[300222,128181,3242],[305973,124814,3242],[310952,117539,602],[305973,124814,602],[311033,117598,602],[311149,117439,602],[311186,117388,602],[300222,128181,602],[303888,123272,602],[333629,110741,3612],[334337,109627,3612],[334429,109693,3612],[328224,117845,3612],[332862,110155,3612],[333645,109130,3612],[324201,114896,3612],[329609,107676,3612],[328185,117897,3612],[333629,110741,472],[328224,117845,472],[333629,110741,532],[328224,117845,532],[333629,110741,3552],[328224,117845,3552],[334429,109693,472],[334429,109693,532],[334429,109693,3552],[334337,109627,472],[334337,109627,532],[334337,109627,3552],[333645,109130,472],[332862,110155,472],[329609,107676,472],[324201,114896,472],[328185,117897,472],[339502,112081,3552],[335044,108676,3552],[332700,121225,3552],[330739,119790,3552],[330692,119855,3552],[332653,121289,3552],[339502,112081,532],[332700,121225,532],[339502,112081,3402],[332700,121225,3402],[335044,108676,532],[330739,119790,532],[330692,119855,532],[332653,121289,532],[330278,165190,3562],[337488,172404,3562],[329617,165846,3562],[327202,166245,3562],[328100,165355,3562],[322013,165861,3562],[324437,163457,3562],[325634,169480,3562],[333046,176505,3562],[333151,176613,3562],[332956,176802,3562],[333737,175835,3562],[333841,175943,3562],[330278,165190,612],[337488,172404,612],[330278,165190,3462],[337488,172404,3462],[329617,165846,612],[328100,165355,612],[327202,166245,612],[324437,163457,612],[322013,165861,612],[325634,169480,612],[332956,176802,612],[333151,176613,612],[333046,176505,612],[333737,175835,612],[333841,175943,612],[311662,117706,6562],[334866,135470,6562],[311601,117785,6562],[311473,117952,6562],[329358,142664,6562],[306154,124900,6562],[311662,117706,652],[334866,135470,652],[311601,117785,652],[311473,117952,652],[306154,124900,652],[329358,142664,652],[383533,127735,6612],[383844,127529,6612],[383582,127785,6612],[375381,119436,6612],[379831,129659,6612],[370898,123632,6612],[378379,131056,6612],[380351,130200,6612],[380185,130027,6612],[380504,130358,6612],[380650,130510,6612],[380026,129861,6612],[375381,119436,662],[383844,127529,662],[375381,119436,672],[383844,127529,672],[370898,123632,662],[370898,123632,6512],[378379,131056,662],[378379,131056,6512],[379831,129659,662],[380026,129861,662],[380185,130027,662],[380351,130200,662],[380504,130358,662],[380650,130510,662],[383533,127735,662],[383582,127785,662],[383532,119200,7122],[379084,115970,7122],[378597,114168,7122],[377999,114811,7122],[375381,119436,7122],[383844,127529,7122],[386585,124680,7122],[386669,124766,7122],[387457,123827,7122],[387979,123489,7122],[387541,123913,7122],[383532,119200,672],[387979,123489,672],[383532,119200,692],[387979,123489,692],[383532,119200,6982],[387979,123489,6982],[378597,114168,672],[378597,114168,692],[378597,114168,6982],[377999,114811,672],[379084,115970,672],[386669,124766,672],[386585,124680,672],[387457,123827,672],[387541,123913,672],[341965,117106,3402],[341985,113977,3402],[345747,112222,3402],[344220,111091,3402],[336346,124117,3402],[336460,124214,3402],[341965,117106,522],[336460,124214,522],[341965,117106,532],[336460,124214,532],[345747,112222,522],[344220,111091,522],[341985,113977,522],[339502,112081,522],[332700,121225,522],[336346,124117,522],[345842,120332,3912],[345998,120187,3912],[345877,120344,3912],[345831,120060,3912],[343263,123652,3912],[341965,117106,3912],[336460,124214,3912],[340546,127151,3912],[340089,127302,3912],[340215,127239,3912],[340389,127353,3912],[340410,127326,3912],[345842,120332,532],[343263,123652,532],[345877,120344,532],[345998,120187,532],[345831,120060,532],[340089,127302,532],[340215,127239,532],[340389,127353,532],[340410,127326,532],[340546,127151,532],[374145,136526,3402],[374765,136104,3402],[374236,136620,3402],[366730,127732,3402],[363790,127886,3402],[365367,126410,3402],[365182,129373,3402],[364046,132734,3402],[362744,131655,3402],[371114,139667,3402],[371183,139739,3402],[370970,139949,3402],[373174,137474,3402],[373265,137567,3402],[366730,127732,612],[374765,136104,612],[366730,127732,622],[374765,136104,622],[365367,126410,612],[365367,126410,622],[363790,127886,612],[365182,129373,612],[362744,131655,612],[364046,132734,612],[370970,139949,612],[371183,139739,612],[371114,139667,612],[373265,137567,612],[373174,137474,612],[374145,136526,612],[374236,136620,612],[365367,126410,6512],[366081,125741,6512],[367279,127020,6512],[377511,132933,6512],[377664,133091,6512],[374855,136016,6512],[366730,127732,6512],[376991,132392,6512],[374765,136104,6512],[377809,133242,6512],[374890,136052,6512],[377345,132760,6512],[377185,132594,6512],[370898,123632,622],[378379,131056,622],[367279,127020,622],[366081,125741,622],[374855,136016,622],[374890,136052,622],[377809,133242,622],[377664,133091,622],[377511,132933,622],[377345,132760,622],[377185,132594,622],[376991,132392,622],[339535,156468,3462],[346572,163545,3462],[337013,158896,3462],[332416,158272,3462],[335552,157450,3462],[335673,157548,3462],[335425,157360,3462],[335293,157278,3462],[335155,157206,3462],[335013,157142,3462],[334867,157088,3462],[334717,157044,3462],[334565,157010,3462],[334412,156986,3462],[334257,156972,3462],[334101,156968,3462],[333945,156974,3462],[333791,156991,3462],[333637,157018,3462],[333486,157055,3462],[333338,157102,3462],[333192,157158,3462],[333051,157224,3462],[332915,157299,3462],[332784,157383,3462],[332658,157475,3462],[332539,157575,3462],[332427,157683,3462],[332133,157988,3462],[342098,168006,3462],[342243,167740,3462],[342306,167805,3462],[342940,167068,3462],[343003,167132,3462],[346643,163616,3462],[339535,156468,582],[346572,163545,582],[339535,156468,602],[346572,163545,602],[337013,158896,582],[335673,157548,582],[335552,157450,582],[335425,157360,582],[335293,157278,582],[335155,157206,582],[335013,157142,582],[334867,157088,582],[334717,157044,582],[334565,157010,582],[334412,156986,582],[334257,156972,582],[334101,156968,582],[333945,156974,582],[333791,156991,582],[333637,157018,582],[333486,157055,582],[333338,157102,582],[333192,157158,582],[333051,157224,582],[332915,157299,582],[332784,157383,582],[332658,157475,582],[332539,157575,582],[332427,157683,582],[332133,157988,582],[332133,157988,592],[332416,158272,582],[332416,158272,592],[342098,168006,582],[342098,168006,592],[342306,167805,582],[342243,167740,582],[342940,167068,582],[343003,167132,582],[346643,163616,582],[330728,158839,3462],[330955,157510,3462],[331304,157155,3462],[330891,157648,3462],[330837,157790,3462],[330792,157935,3462],[330757,158083,3462],[330731,158233,3462],[330716,158384,3462],[330710,158536,3462],[330714,158688,3462],[330752,158989,3462],[330786,159137,3462],[330829,159283,3462],[330882,159425,3462],[330944,159564,3462],[331015,159698,3462],[331095,159828,3462],[331183,159952,3462],[331279,160070,3462],[331382,160181,3462],[331493,160285,3462],[331610,160382,3462],[331731,160469,3462],[328600,163511,3462],[341152,168809,3462],[337516,172432,3462],[341207,168866,3462],[341848,168136,3462],[341904,168194,3462],[331304,157155,592],[330955,157510,592],[330891,157648,592],[330837,157790,592],[330792,157935,592],[330757,158083,592],[330731,158233,592],[330716,158384,592],[330710,158536,592],[330714,158688,592],[330728,158839,592],[330752,158989,592],[330786,159137,592],[330829,159283,592],[330882,159425,592],[330944,159564,592],[331015,159698,592],[331095,159828,592],[331183,159952,592],[331279,160070,592],[331382,160181,592],[331493,160285,592],[331610,160382,592],[331731,160469,592],[328600,163511,592],[330278,165190,592],[337488,172404,592],[337516,172432,592],[341207,168866,592],[341152,168809,592],[341848,168136,592],[341904,168194,592],[378317,75059,1124],[378738,76596,682],[377529,76956,857],[378953,67998,918],[378587,68443,1159],[377742,67890,918],[373456,54525,332],[365076,48582,332],[365016,48381,332],[380668,58689,515],[376187,56381,463],[372503,56010,577],[374585,57769,608],[371945,56696,332],[384526,65287,864],[382738,64682,838],[384706,64101,977],[373775,55133,639],[375964,60288,883],[374095,60410,332],[375135,58915,332],[380442,60171,875],[381590,62000,962],[378229,62590,794],[373009,59762,719],[370804,59271,762],[369207,57009,332],[372690,60488,787],[367241,55868,332],[369100,57162,332],[365988,57669,332],[373463,63139,818],[373677,61374,741],[372314,62577,749],[372515,62210,332],[372561,62211,757],[378031,69930,1171],[379546,68901,917],[379880,71279,1195],[384732,68178,682],[384261,67604,953],[384784,68103,672],[374756,69498,802],[376554,68936,522],[376888,69842,857],[373034,69360,522],[374379,67423,522],[374694,69165,568],[372674,70180,522],[372813,71421,1023],[371411,70507,935],[377902,68940,1200],[370850,68928,522],[371160,68032,522],[371346,68158,522],[370300,69525,717],[369193,70925,552],[370939,70838,821],[371618,71860,1328],[373350,70343,921],[373163,69450,522],[378153,77385,572],[378752,75318,1265],[378838,76596,682],[379439,74847,1207],[379390,74488,1186],[380006,74941,682],[379096,75255,1270],[380722,73916,692],[382727,71047,692],[382497,71375,692],[381895,70985,1141],[382655,70055,924],[383280,68727,940],[383344,69097,1141],[386736,65309,672],[373539,71705,1033],[372569,72449,1123],[370119,70913,889],[380526,72860,1410],[377697,67564,879],[380459,72529,1088],[380042,72602,999],[379665,63651,784],[381947,64688,972],[372863,61819,752],[372229,61924,757],[373381,70669,741],[374031,70620,827],[374716,72589,872],[375039,71535,1003],[376119,72727,859],[377192,74286,1068],[377100,76671,815],[375437,58990,622],[383944,63083,890],[384149,62559,640],[384456,62888,932],[381038,71337,1288],[375225,65972,841],[377272,67293,892],[377489,67592,522],[378927,64188,994],[378422,63976,930],[371615,63504,522],[372030,62939,741],[380141,73278,1134],[377013,68392,571],[378551,73986,922],[379016,71794,944],[379970,74992,682],[374312,72657,990],[372633,73112,804],[373721,54764,549],[376516,58775,629],[377832,59562,857],[376570,59102,782],[377357,67968,832],[374320,69549,954],[375564,75542,941],[373046,70730,589],[381667,62641,854],[382381,61992,839],[384741,61873,652],[377629,72800,1039],[377680,70340,962],[373873,74378,785],[370241,71886,809],[373686,64820,828],[382726,61501,608],[384626,63012,952],[378501,64625,828],[381331,60249,576],[369192,71195,726],[383784,62028,621],[383653,61029,640],[383963,61222,523],[374217,74702,854],[377692,58532,804],[378539,58331,537],[380326,59470,540],[379919,59280,536],[383536,62220,799],[381021,64561,823],[375038,74944,1024],[377379,73518,945],[376217,73384,1024],[376871,58713,787],[369022,71216,552],[429299,81775,985],[301265,70135,422],[300020,70398,422],[301115,69841,422],[300485,71174,422],[301740,70990,422],[300849,71465,422],[301318,70108,422],[299899,70202,502],[301109,69587,502],[301213,69791,422],[368423,74284,532],[367730,73718,552],[367581,72284,492],[369135,81747,562],[374018,77507,572],[368699,83874,532],[367859,81872,552],[365005,78391,512],[368444,81194,562],[371843,77063,562],[362319,78609,522],[364451,79065,512],[363752,78488,512],[367153,74399,552],[364339,77831,512],[367862,74980,542],[368562,82424,552],[371266,77751,552],[371965,78332,562],[372533,77636,572],[206259,124886,592],[206430,125176,602],[206072,124984,592],[203991,124758,1646],[203422,125508,532],[203362,125366,532],[205424,125285,1024],[203563,126816,612],[205961,124910,602],[205853,124832,602],[205748,124750,572],[203339,125375,532],[203289,125360,522],[205503,124574,873],[205549,124572,562],[205647,124663,562],[205339,124120,492],[205312,124246,512],[205282,124282,512],[205033,123903,302],[205140,123842,302],[204655,124504,1522],[205365,124379,542],[205455,124477,542],[204997,125089,1134],[203174,124969,302],[203199,125198,642],[203223,125341,522],[203051,125040,302],[204439,125348,1130],[203472,125654,532],[203545,125954,552],[203568,126107,572],[203581,126261,572],[203584,126415,602],[203392,126503,572],[203513,125803,552],[271430,87656,642],[271448,87794,462],[271373,87623,642],[271245,87911,462],[271358,87914,462],[271313,87594,642],[271242,88061,462],[270314,88038,462],[271191,87545,632],[271128,87525,632],[271064,87509,632],[270999,87496,632],[270983,87493,632],[270966,87490,632],[270950,87488,632],[270933,87486,632],[270917,87484,632],[270901,87482,632],[270884,87481,632],[270807,87477,632],[270317,87888,462],[270730,87478,632],[270653,87484,632],[270576,87494,632],[270500,87509,622],[270426,87529,622],[270352,87553,622],[270281,87582,612],[270211,87615,612],[270126,87752,462],[270215,87885,462],[271253,87568,632],[332686,144539,782],[332436,144378,1084],[332970,144157,782],[331628,145191,965],[332108,145087,1116],[330394,147703,972],[329197,147149,852],[330231,147828,972],[331587,144834,1055],[332066,144765,1120],[332003,143482,802],[332334,143714,901],[355778,62380,722],[355283,62068,515],[355806,61882,452],[353558,73686,512],[354587,73277,577],[353588,73781,512],[350601,70925,487],[351559,68783,522],[352683,71618,462],[354711,68167,629],[354570,67168,504],[357415,66125,526],[360442,69813,618],[362380,70939,482],[357326,72485,462],[357289,72370,462],[362409,71034,482],[363541,70673,482],[363485,70491,482],[361480,68902,482],[356820,65747,538],[359510,69501,491],[361196,66437,619],[359466,65749,548],[359610,64760,452],[353573,69607,517],[354113,69804,462],[356415,64736,802],[355739,65426,699],[355152,64737,520],[356434,62705,741],[356398,62390,811],[356518,62628,452],[355627,61329,566],[355243,61714,616],[348398,65619,530],[347783,65119,342],[350608,67366,342],[335823,79075,586],[334918,79541,482],[334888,79445,482],[342148,67543,739],[344407,69328,342],[332506,80192,472],[332474,80086,472],[336544,69975,523],[329903,71497,584],[321939,79954,650],[325515,83193,522],[320188,78913,572],[325162,74628,575],[322904,72789,422],[325717,75056,392],[329843,80899,472],[329898,81081,472],[328741,81365,502],[322157,74066,835],[322930,72940,908],[322985,73307,1000],[324112,75162,689],[324137,75468,468],[323863,75486,672],[320326,78742,552],[325912,76898,601],[323650,75899,481],[327823,79309,472],[328768,81461,502],[326387,82038,512],[326962,77770,624],[326182,75513,482],[328549,76731,598],[329303,77535,472],[333507,74016,518],[332213,73299,657],[332162,72976,546],[344102,69970,570],[343211,69105,591],[331349,76013,488],[329392,77546,640],[334015,77396,462],[335996,79005,462],[336052,79187,462],[338769,71734,474],[338650,70769,588],[332145,79642,618],[332533,78132,465],[336842,75079,597],[336432,72057,496],[338150,71514,587],[332167,77538,640],[341119,77518,592],[338658,78281,462],[338623,78167,462],[337992,77333,596],[340263,75472,462],[342290,77249,462],[341149,77613,592],[342235,77067,462],[345970,71512,505],[346441,73557,462],[344367,72000,486],[342027,68264,646],[341295,68376,514],[341205,67697,524],[347323,75602,472],[344903,76352,462],[344871,76247,462],[341696,73660,462],[343229,71857,492],[348445,75162,462],[348501,75344,462],[347353,75697,602],[345112,70569,564],[345529,68126,616],[349848,71664,746],[350826,72613,514],[350291,72993,898],[349779,73029,829],[351070,74331,462],[347875,71756,462],[354673,73230,462],[350926,73296,641],[351105,74446,462],[354730,73411,462],[323242,75306,858],[321805,75142,539],[321302,75234,509],[349335,67899,516],[350482,67516,357],[351062,68492,683],[355947,63707,637],[357499,64472,885],[341929,67602,518],[349761,66900,721],[349563,67607,682],[331336,73565,585],[329766,73964,498],[329005,71372,525],[356619,62423,452],[355872,63062,783],[355550,61263,342],[356717,62771,785],[358866,64446,820],[347299,70446,629],[343528,71462,642],[343135,71156,497],[351290,66745,532],[351844,67359,497],[349738,70950,518],[353808,69585,644],[337622,70891,519],[335669,71845,487],[334853,69577,528],[336354,71389,644],[325248,75278,559],[319133,77746,635],[318955,77641,422],[323313,75974,606],[325597,77962,476],[322850,75669,706],[330662,73775,650],[335312,69132,535],[355039,63760,736],[352023,65647,550],[338911,70728,673],[340876,71874,608],[341564,67329,524],[346006,67381,574],[347892,65267,537],[359346,64748,705],[358995,65461,752],[354977,70196,595],[357668,65827,770],[359688,64644,452],[326509,74408,522],[326552,74740,523],[326105,74838,656],[327962,72354,539],[330866,72300,621],[330626,73462,740],[353971,68561,676],[357068,65464,745],[354581,64066,524],[352852,66274,605],[331587,77698,691],[332701,74589,671],[334691,76200,674],[335454,75588,462],[355988,61617,452],[322402,76063,525],[350719,69223,498],[346855,72098,590],[352337,68006,575],[351875,67682,329],[356779,65415,579],[335836,75270,511],[325687,75233,569],[354098,69571,602],[343737,70382,656],[343484,71118,673],[340187,70239,512],[342500,68512,511],[336256,76212,578],[336547,75870,472],[322969,76673,502],[334995,75474,646],[344663,70607,676],[344749,71281,634],[362870,67179,482],[358091,124745,760],[357082,124503,637],[358992,121239,760],[383663,110215,395],[383647,109884,773],[384940,109919,344],[377880,96460,982],[376887,96647,922],[378571,95238,652],[385950,104720,708],[386001,105063,781],[384527,103426,751],[387330,102868,119],[388311,103919,109],[387463,103868,117],[375672,106488,1118],[374824,106542,924],[375618,106134,1023],[388050,101536,892],[389892,100515,1009],[390013,101920,94],[394879,100780,1049],[395332,100813,752],[394810,101263,752],[396849,100122,1029],[397380,99175,752],[397818,99643,752],[395512,99049,1022],[393511,100035,1110],[396519,99923,1036],[397311,99102,752],[396083,98744,1132],[394904,97571,987],[397570,97315,736],[395879,97399,753],[398064,94345,772],[389077,99560,1056],[390141,100179,752],[400383,95053,732],[398481,93870,964],[397900,93012,946],[392065,98383,1054],[391890,98542,752],[391713,98567,974],[379721,103700,818],[380678,103927,467],[380791,104565,860],[393299,95469,758],[397763,92930,782],[394756,96588,740],[390654,99509,1046],[390395,101006,970],[388947,93483,840],[390218,93477,892],[389219,95503,908],[392536,102458,79],[392851,102605,752],[391868,103146,58],[380649,89881,772],[382080,91357,832],[379810,90680,872],[381405,92312,842],[387898,93008,824],[387544,92485,814],[356120,119089,765],[354205,118750,852],[356622,118731,775],[358280,119246,1091],[357733,118614,1169],[358961,117792,1113],[344262,130349,632],[349681,124087,842],[348499,126936,712],[345057,130934,572],[352328,121998,863],[353479,119519,852],[353159,121253,872],[348667,126740,712],[355624,123539,690],[354959,124928,1051],[354349,124634,712],[349785,125125,842],[352016,122762,712],[353960,120558,868],[355559,119465,995],[353700,120762,692],[369243,105289,802],[358012,114963,922],[355295,127644,722],[353009,127073,999],[353270,126360,978],[356100,133705,740],[354421,135197,716],[355610,133073,751],[355202,132736,791],[355590,132702,1160],[355112,132056,795],[355481,132049,850],[357290,136026,843],[357245,135710,808],[358808,135339,612],[356974,133670,794],[359996,132459,644],[361812,131907,740],[358911,135242,612],[360602,130291,945],[360924,129929,710],[361314,130248,837],[364043,128448,411],[369723,115255,932],[367227,118237,975],[365368,113580,1003],[359352,120845,940],[357884,119992,728],[365566,118999,845],[366428,121659,897],[364458,119313,889],[360195,121798,779],[362454,123320,1042],[362203,124721,774],[367103,126721,1003],[365609,108825,923],[368879,109251,802],[367455,111211,984],[375222,118925,874],[369060,110184,1004],[371824,109786,1096],[381766,92620,834],[383247,93693,870],[378980,98010,970],[379235,96257,915],[379778,96870,932],[385180,95850,977],[384908,96627,1106],[384391,96874,970],[381492,92353,652],[367078,107418,802],[372313,121795,930],[374299,102491,1063],[376448,100665,642],[376593,103042,951],[373873,106509,1155],[372668,105762,1399],[374097,106162,1003],[370502,114922,1109],[371301,116360,1112],[372931,108148,678],[372384,107788,464],[378015,97470,1011],[377518,97182,642],[377503,96837,925],[370755,104692,1354],[371045,107122,802],[389000,96368,1218],[387995,97985,1155],[386598,96793,1155],[375109,113912,870],[376460,112555,925],[377542,113161,1041],[381077,103841,782],[382029,103278,815],[373700,100836,887],[375228,99410,642],[376947,97597,936],[372115,105069,1694],[380799,111783,928],[379100,111675,876],[380538,109780,983],[386922,102673,120],[386580,103476,120],[386489,102797,105],[381277,97567,878],[382151,98447,1038],[379628,99251,868],[385789,103359,968],[382497,101123,925],[382665,102471,776],[380000,102296,451],[390518,102402,104],[392104,101965,131],[390835,100857,1081],[391324,101343,990],[386410,101785,876],[356287,131956,900],[352028,136394,572],[355390,132400,572],[388358,106810,112],[387554,104538,169],[376006,105108,1261],[376750,104404,632],[376536,105410,1281],[382717,109743,692],[377923,107351,1266],[378128,106306,1374],[378506,106951,1301],[378628,98740,890],[378859,98320,642],[377971,105285,1070],[377916,104976,886],[378302,105611,910],[383001,98584,876],[373977,119543,1034],[372037,117450,953],[379156,106223,801],[361859,122015,958],[360644,121026,1222],[356251,120096,739],[354901,121506,870],[385668,96048,1152],[390460,93686,892],[385452,102802,1072],[389860,96978,963],[372436,108143,529],[371596,108093,1042],[371660,105077,1352],[383800,90394,918],[385337,93709,872],[395358,91206,925],[395086,91374,806],[393947,89661,852],[387927,104033,507],[386604,106947,295],[387830,106540,323],[388179,106978,312],[386881,105459,668],[383938,109093,709],[384350,109045,364],[388090,102200,209],[383305,109924,880],[377228,105045,737],[376717,104033,865],[376317,104100,650],[390455,101693,528],[387629,101665,707],[387953,100861,790],[372176,120775,889],[370843,117612,915],[372122,108773,999],[367823,125689,810],[367542,126686,1008],[396562,98105,746],[377147,104365,862],[378083,101205,959],[356581,134362,555],[356199,134405,815],[353345,135989,741],[354200,136210,708],[352754,137007,932],[379027,101777,851],[379858,100962,911],[379068,98659,996],[378040,108395,964],[376914,108457,937],[377644,108060,988],[377146,107089,1220],[387426,106383,288],[386992,106509,264],[376145,106122,1324],[372641,105411,1656],[356040,126555,906],[354993,125257,923],[363665,129089,605],[357754,129545,708],[359875,131393,929],[359071,132202,653],[356033,132994,1109],[381672,106114,716],[378479,104214,957],[380253,107760,736],[381706,108535,891],[380007,109181,869],[377172,107415,972],[389152,97690,900],[359224,119824,1035],[357601,117615,1182],[357495,116957,912],[359188,116765,754],[365111,126414,847],[364787,126013,871],[365342,126054,839],[359658,129742,943],[364569,126697,618],[355811,122897,692],[356951,127197,924],[367068,119924,864],[364138,119002,911],[362650,117605,951],[366397,111830,1179],[395228,97054,745],[397257,98160,860],[397473,98888,752],[375784,110854,1071],[375303,112922,1028],[374168,110846,1016],[375760,107166,1093],[375432,108177,1109],[390570,95612,1075],[391309,95551,915],[370785,123341,856],[370153,122317,983],[372279,116468,939],[371810,115741,928],[385142,95493,1109],[384778,88569,842],[385587,89393,733],[389710,99200,905],[390214,100111,752],[395782,101077,1033],[395309,100604,1027],[381696,95072,940],[382841,93761,940],[383433,95010,1045],[386438,92618,835],[385780,93576,1037],[383888,110994,692],[386580,106591,638],[384327,108698,693],[367177,123978,912],[363369,122996,1027],[376718,110513,1216],[377015,109123,1125],[377187,110456,1076],[377748,114838,832],[376810,111159,1307],[378194,112076,1259],[381014,103528,479],[380135,103319,444],[375621,98689,902],[369857,123684,917],[371909,116408,1079],[378615,112743,985],[379030,113372,965],[378818,111697,1084],[378915,110322,791],[395909,101430,752],[355614,138145,771],[355534,137475,878],[356100,136798,710],[354789,137880,876],[354339,137246,738],[353081,130503,852],[350845,128796,712],[351485,128617,893],[351854,128241,785],[359629,115379,726],[363223,118558,1156],[362277,118268,1183],[373688,110177,1034],[373040,108812,975],[384036,102855,810],[380733,96320,953],[379888,96571,652],[382440,97684,881],[383342,97493,1021],[383375,97818,882],[386974,106168,635],[382414,109054,897],[386237,107077,343],[384763,108569,366],[384741,108239,688],[386213,106717,675],[372198,105746,1619],[372142,105411,1444],[362131,117241,1041],[376078,109506,1208],[360171,115352,909],[360206,115677,792],[354999,138904,602],[357838,125493,646],[357196,131970,723],[374680,110521,1115],[362567,131821,612],[397821,92862,782],[376429,112212,1125],[355688,136456,709],[362545,120302,1164],[363914,119242,1145],[363571,124692,731],[375593,105810,1264],[376736,107101,955],[375226,109539,1015],[387972,95518,1181],[387477,100332,1068],[388541,99880,1070],[385118,98324,899],[386056,99110,891],[384345,98958,873],[388835,100069,842],[383916,101836,996],[386232,100433,905],[385271,101457,1029],[386954,99463,1185],[388619,98383,948],[387270,102180,560],[386629,97108,1010],[388332,93893,1152],[363220,125713,618],[382808,93685,652],[387423,93643,1220],[384322,94400,808],[381791,109251,767],[381394,106190,863],[380916,105578,736],[359498,132128,834],[358779,132597,637],[353708,135233,852],[370450,114615,956],[352763,128134,788],[363138,121316,910],[379615,103059,521],[379245,103449,818],[378625,107949,1110],[387605,92849,1005],[362463,126763,625],[365297,125739,787],[360060,126280,795],[361318,128230,627],[365586,125731,960],[359188,126368,631],[360694,130998,924],[361919,125774,838],[377299,100269,935],[370145,114888,1084],[378181,115143,833],[394383,97076,975],[392921,95655,980],[381859,107493,777],[367707,121982,778],[367629,121262,1011],[386499,98947,1128],[353592,120559,856],[368515,123974,937],[387122,100824,1011],[374424,106181,1166],[375884,108163,989],[361856,130522,639],[361455,129181,778],[384135,97262,1082],[386366,97947,1123],[384827,98101,1031],[382883,101060,828],[357793,127518,912],[361104,131288,714],[376207,106784,955],[375701,106811,937],[384265,98281,1010],[369042,123333,833],[381193,107600,868],[374117,110538,878],[360764,131675,663],[354546,124958,925],[384473,97525,916],[398659,70497,848],[398468,69586,642],[401530,71735,642],[401529,74294,672],[404590,73882,642],[402798,75182,672],[415594,87649,660],[414786,89231,922],[414442,89280,654],[407835,95496,722],[404087,98098,732],[410628,91292,642],[386659,73820,692],[388676,70959,682],[390250,72398,692],[405917,99519,732],[405800,99642,732],[407754,97287,652],[409227,102072,822],[408923,102395,732],[387469,76341,692],[382678,79467,682],[384643,76680,692],[407871,97410,652],[409354,102068,822],[409292,102133,822],[410714,100492,852],[410921,100809,852],[409557,102259,822],[410718,100618,852],[410857,93451,817],[411902,91866,817],[412302,92558,642],[410779,100553,852],[411000,100173,652],[407900,97382,652],[408498,95615,675],[408171,95743,497],[410291,94649,652],[411842,91508,634],[413475,90202,647],[418337,86285,652],[416325,88376,652],[419920,84639,652],[416739,84934,662],[410070,78074,768],[410714,78179,632],[413774,80327,632],[416639,82337,652],[407652,76031,642],[404249,74622,806],[397666,70097,681],[393081,68385,682],[392563,65443,652],[395406,67438,652],[390692,68098,672],[378297,85752,768],[377821,86359,572],[378429,86762,743],[381985,84115,682],[414314,90467,642],[413884,90103,464],[411698,90178,642],[379545,87574,722],[410179,93922,653],[419551,78678,686],[420093,79206,873],[418954,79038,652],[393530,60049,915],[394071,60583,963],[393084,60846,912],[426537,83794,1051],[426367,84251,652],[393124,60182,1023],[393003,60152,912],[394884,60963,765],[395276,62210,822],[394680,61968,652],[403515,67078,718],[403855,68420,642],[400796,66269,642],[408803,71414,648],[409261,72038,636],[406914,70571,642],[416091,77025,632],[416343,76666,543],[414453,75790,797],[411256,73394,796],[410736,73137,896],[409732,72332,938],[397736,64117,652],[409973,72722,642],[413033,74874,632],[300675,84679,432],[300666,84691,512],[298390,83428,612],[298345,83067,648],[298591,82844,432],[298442,83049,432],[297867,82526,645],[296317,81184,432],[295019,85972,808],[295979,86971,522],[293444,85121,522],[295837,86073,676],[297830,84435,522],[296144,81421,432],[296477,81975,764],[295606,84358,632],[293456,85105,522],[299707,85805,522],[299803,85875,512],[277832,92320,702],[277375,91971,712],[277572,91719,712],[278027,92077,702],[316987,155026,852],[315700,154190,852],[316604,152974,892],[317981,153915,872],[400004,48830,826],[400391,48400,824],[400586,48742,682],[400469,49026,822],[400366,49185,1012],[400515,48934,682],[400554,48839,682],[400612,48643,682],[400631,48542,672],[400643,48441,672],[400646,48236,672],[400648,48338,672],[400637,48134,672],[400621,48033,672],[400300,47719,818],[400598,47933,672],[400568,47835,672],[400531,47739,682],[400488,47646,682],[400251,47357,809],[400384,47470,682],[400439,47556,672],[400256,47310,682],[400184,47236,682],[399781,47145,809],[400027,47106,682],[400108,47168,682],[399942,47049,682],[399460,48285,829],[399282,46948,813],[399760,46953,682],[399853,46998,682],[399665,46915,682],[399568,46883,692],[399469,46858,692],[398378,47203,836],[398858,46855,692],[399163,46825,692],[399266,46829,692],[399061,46828,692],[398959,46838,692],[400323,47387,682],[399368,46840,682],[251393,147531,823],[250776,148722,632],[250751,148704,758],[260770,135935,1287],[262714,126434,1077],[264380,121924,962],[260026,130547,1046],[258515,130040,1265],[258725,129583,1088],[265414,119058,1035],[265175,115372,662],[267674,117148,662],[263267,115704,870],[264027,114769,989],[263774,114973,1033],[263968,114436,804],[261165,125030,1208],[259905,123471,843],[261308,121749,923],[258128,110370,696],[258922,111265,422],[256694,109681,422],[259224,110909,675],[259708,109971,762],[259745,110303,661],[263733,121617,872],[262889,120999,1051],[263553,120251,935],[252326,116263,444],[252226,117788,439],[250284,117662,422],[253039,114816,477],[252853,115950,682],[250615,112571,422],[248601,115907,527],[248099,116108,422],[252036,118982,573],[251722,119469,738],[251304,119374,477],[259036,126291,1169],[258309,126541,1017],[257869,125333,1117],[247136,119394,496],[248160,120261,756],[246654,121563,598],[247329,123337,872],[248667,115309,422],[258050,133758,1215],[257254,133402,1087],[257967,133071,1356],[250292,132857,671],[249225,128022,971],[251339,131641,934],[243373,129537,833],[249911,127542,851],[250076,126686,816],[243548,130901,699],[243915,131022,716],[241819,133786,743],[242304,134250,744],[241698,137373,542],[240434,139151,542],[244088,129795,699],[245226,128468,585],[244512,129918,665],[256617,141113,849],[255624,142768,811],[255251,142595,956],[245753,141964,924],[246198,142342,572],[243206,140143,562],[248699,144174,779],[249189,144540,602],[246170,142070,829],[246114,141770,629],[246977,141289,809],[249854,143589,602],[250694,142072,1377],[251831,143960,1203],[250531,145447,602],[251072,145832,602],[250859,146749,834],[251342,138021,1072],[251666,140372,1163],[249207,140053,1303],[249067,147507,602],[251722,144918,602],[252303,145122,1103],[252646,145597,1049],[252766,144380,1153],[258146,145761,642],[258403,145383,840],[261957,148485,732],[264826,138747,1113],[262697,138355,1061],[261279,136795,1088],[267584,141055,1154],[265936,140365,1153],[254578,137493,1181],[258848,137392,1042],[258815,139520,1070],[249681,143815,825],[249116,142706,771],[257924,132721,1415],[258272,132957,1326],[249252,137500,977],[251585,137826,891],[254021,116139,944],[253700,116630,787],[253270,118994,756],[253831,117652,687],[256063,119290,732],[251937,130537,914],[252492,131384,692],[243678,129332,611],[243327,129199,842],[243591,128673,626],[249560,142799,1057],[253828,147715,763],[255974,148014,841],[255553,149470,642],[250857,125720,798],[253729,126342,1054],[251048,127047,954],[261050,128707,1094],[259660,127833,1059],[261995,126778,1038],[251799,141398,1087],[260311,135740,1162],[258452,134320,1275],[247144,122010,782],[248957,120479,830],[253025,117285,566],[252847,118142,714],[244415,119476,754],[245390,121763,600],[250515,125599,839],[262078,121717,1078],[257232,116004,895],[256438,114924,731],[259044,111404,766],[246412,129178,887],[246272,128140,887],[262513,115082,958],[262812,112352,838],[262928,108923,618],[261959,111076,778],[260005,109468,615],[260988,140820,1048],[261164,142228,867],[260566,140602,1111],[259865,140203,977],[259560,142813,770],[250597,126252,748],[261668,128779,1175],[262811,127076,1210],[247653,123088,738],[249581,122973,886],[257350,134045,1218],[254289,132936,714],[253323,134207,666],[253861,132439,683],[244041,139015,542],[244649,139001,765],[250641,141749,1248],[251473,141220,1374],[245639,141320,563],[245975,140753,604],[246489,141219,613],[252702,136328,661],[252954,137971,1097],[249458,142102,945],[247770,141522,777],[245367,139265,652],[248494,140496,1245],[247651,140508,1010],[247979,138730,998],[247822,137731,691],[242536,135925,818],[249249,134916,679],[259427,107939,677],[258342,108896,561],[263433,112643,658],[263271,113493,898],[265721,141930,1164],[262594,140213,986],[257533,145002,817],[253899,145119,793],[248559,120087,422],[250657,121102,845],[249667,119519,469],[253339,116835,858],[252642,116770,442],[249818,120551,625],[254154,117152,876],[253419,117490,732],[257326,123802,863],[263454,146531,742],[265903,143296,1130],[263289,142760,1033],[260919,125171,1032],[258792,124632,895],[244924,138440,787],[249345,141069,1317],[250558,141025,1454],[246686,142527,881],[254395,115678,891],[254917,116229,847],[256059,116797,856],[256813,117600,938],[251183,132906,675],[250853,132418,854],[251723,128875,1072],[253951,130219,1093],[255681,131112,1133],[259391,131808,1254],[253461,114973,569],[255514,116056,422],[250057,119984,441],[248008,141001,872],[247348,141047,962],[247299,140720,894],[246937,140945,909],[246843,140259,890],[244484,126333,757],[247357,126581,939],[246118,127164,580],[246870,126145,673],[260792,129889,1125],[244298,125010,639],[246494,126035,630],[246312,126591,606],[263290,111606,624],[266640,111289,641],[265015,113080,649],[267384,112198,827],[245542,127908,570],[245453,127231,620],[245179,125192,624],[245146,124869,774],[247157,142652,751],[257811,129598,1209],[251364,129404,911],[252027,146963,632],[253206,147793,875],[252472,146484,893],[260846,103843,412],[257474,108830,673],[246371,140158,957],[256181,115372,737],[265861,119140,1020],[259990,121003,792],[246807,139931,1003],[247209,140070,880],[251773,146985,753],[252256,144776,1101],[252085,139301,1214],[245452,118302,665],[257184,109696,666],[245366,129452,673],[244232,121051,721],[243705,120623,661],[246660,138904,890],[252971,146099,788],[257713,146368,760],[245102,127437,812],[260891,136958,1044],[257539,135425,1279],[255899,135706,1019],[260708,144476,737],[260007,143739,756],[264869,139070,1114],[260895,140172,978],[262381,138512,1206],[249455,120095,689],[262771,126754,1263],[247065,139044,805],[247271,140379,1158],[259295,131130,1209],[258365,126891,1146],[263091,143971,862],[259354,131453,1402],[259671,131016,1128],[269204,109701,662],[251715,132135,671],[253739,131425,895],[252832,130483,839],[252434,134277,791],[266148,107606,683],[268597,109581,798],[266584,108723,633],[267646,111652,684],[245140,127814,623],[257945,142031,767],[258831,127776,1046],[255052,136131,1093],[255048,132113,856],[254670,131582,847],[250895,147102,688],[260238,118324,873],[261620,121233,989],[261653,121578,805],[259862,119957,969],[261439,119874,1026],[263793,107282,604],[261174,105353,595],[265196,108267,780],[258934,135580,1147],[254539,132437,886],[261847,144087,960],[260318,143597,899],[245820,129917,665],[247272,122986,741],[252380,118772,733],[258574,108030,544],[265570,108044,627],[258896,119271,848],[253424,138102,1035],[270039,124633,942],[269817,125001,1052],[268746,124547,1046],[268312,123589,912],[268090,123957,1022],[389728,74285,702],[389671,74245,702],[390071,73647,702],[390603,74003,732],[389896,75081,722],[389416,74774,702],[313059,159741,942],[313958,160511,902],[313000,159823,942],[302733,149624,1180],[301480,151393,872],[301220,151186,1181],[301840,147807,1106],[298873,145451,882],[303344,148791,872],[298796,145557,882],[297335,147417,882],[298723,145503,882],[296143,143670,1035],[295706,146236,882],[292843,144470,952],[294409,142215,952],[297265,149061,916],[295541,148384,919],[289615,143603,1291],[289536,143700,1022],[290251,142670,952],[291240,146148,1033],[292015,146536,963],[290102,145539,1083],[290394,145896,872],[288786,144779,1022],[291350,146835,1259],[291247,146489,872],[291660,146678,1146],[290441,145769,1043],[292285,149829,932],[293174,148666,1131],[294278,149067,756],[291075,147638,1296],[291397,147971,872],[290602,147418,872],[289799,150389,1067],[290368,152572,932],[288907,151557,872],[294804,148870,725],[294186,148414,697],[309000,156786,862],[308988,156802,942],[306517,155006,862],[291736,171269,1041],[294013,172428,1081],[292923,173676,1086],[284457,159929,966],[285895,158972,932],[285401,160228,1164],[280271,156152,972],[279627,154543,852],[282802,156786,872],[282303,157603,1008],[280691,157370,781],[276686,154450,1103],[276392,152258,902],[277865,154433,1034],[271759,151018,1062],[271853,151705,1067],[270595,151374,916],[287845,162406,934],[289172,161287,932],[289086,162898,1178],[273367,151222,1251],[273445,151973,943],[274968,153261,1009],[275804,154139,923],[273549,155237,892],[274856,155789,902],[274678,156031,902],[279372,156110,892],[280528,159843,862],[286177,166094,988],[284613,168202,950],[284732,166333,1079],[287250,161170,913],[292501,161034,1256],[291972,161362,1022],[292272,159340,1244],[277456,159206,892],[279661,161448,1022],[278386,161498,998],[270440,159555,962],[270638,159611,712],[270451,159599,712],[268012,153435,761],[269708,154119,969],[267499,155201,998],[262898,157965,973],[263965,158748,672],[262287,157536,672],[265123,153662,862],[262753,156922,903],[262204,157476,672],[265392,156580,874],[265296,153691,997],[266600,155221,1080],[266311,155371,672],[266640,155545,1038],[267792,156450,682],[272904,159555,992],[272689,159744,712],[272567,159763,961],[270337,155576,975],[269509,157643,828],[269145,157163,812],[271328,156844,864],[269351,157584,682],[269692,158976,878],[269239,157849,834],[270365,159537,712],[270580,159692,712],[276535,160850,732],[274992,159626,732],[275319,159292,1002],[272044,160688,712],[274891,159561,980],[273182,159685,976],[274618,157485,1077],[273879,160253,1029],[273929,160618,1040],[272950,159894,997],[279235,161707,883],[275055,162889,732],[275392,163330,879],[273287,165325,732],[276699,164113,732],[274887,166422,732],[276718,160960,864],[277045,163359,911],[277459,162243,825],[279052,163314,891],[277735,162319,955],[278103,165086,883],[277451,164173,876],[285145,165050,949],[283895,163834,922],[281611,166054,1084],[281247,165235,996],[282084,165389,923],[280410,165385,732],[281185,165834,732],[281125,165914,732],[280969,165083,1030],[282042,166469,732],[283719,167628,732],[285676,162304,1099],[285474,163469,940],[284683,162764,922],[284240,168367,923],[284645,169673,722],[283584,168997,722],[284627,169698,722],[291133,158482,932],[286685,169864,978],[286221,170789,742],[295174,160804,1101],[295528,160723,973],[294480,161783,937],[288545,170784,937],[290393,170670,993],[288592,171137,935],[288301,172624,780],[288486,173984,792],[287241,174040,898],[289279,173044,991],[287797,175244,928],[287795,175352,752],[295007,171637,1227],[295170,170939,902],[295659,171292,902],[289759,172580,752],[290421,172883,1109],[291631,173824,1065],[289810,166180,1263],[288934,165857,1353],[289657,165191,998],[293419,173784,752],[293142,174176,752],[301641,176246,772],[301616,175592,902],[303388,176920,1062],[294849,175425,752],[295145,175007,752],[296375,176466,762],[294951,176800,884],[292613,178581,752],[295136,178188,884],[294120,179648,762],[293813,173210,1183],[293735,174008,752],[299939,178118,954],[299768,178870,772],[299743,178853,772],[299618,175678,1016],[297593,176228,912],[298044,174982,997],[297450,175191,855],[294997,174216,997],[305432,172718,935],[303966,172337,912],[305016,171774,1072],[314099,166440,944],[312645,168154,1141],[313325,166953,981],[313434,155911,872],[315918,157799,852],[313382,155983,852],[304173,154844,1072],[301498,155806,942],[302272,153742,954],[302196,153064,1134],[303228,153356,1190],[299955,147650,1100],[306015,150582,882],[305957,150663,872],[308391,152407,862],[310874,154186,862],[315967,157731,872],[318508,159557,882],[318415,159588,852],[314805,165058,972],[316538,162192,852],[316456,162306,902],[314585,164902,902],[306492,155000,942],[304084,153261,872],[298413,160696,1052],[298500,160292,912],[299236,160814,912],[297606,163114,912],[297055,162724,912],[294135,155805,1217],[293764,156264,1251],[293257,155731,1129],[298734,159952,1163],[299111,159430,942],[298942,159308,942],[299036,159377,942],[296639,153373,970],[295591,154645,947],[295740,152829,1304],[297279,155315,990],[296919,155395,1100],[295536,151505,938],[295638,152167,1118],[295561,152147,932],[297010,162788,912],[314038,160399,852],[311507,158584,852],[304385,157918,942],[309372,171676,1036],[310352,170286,929],[310442,170982,908],[311390,166042,961],[314390,165294,1045],[311127,162417,942],[310952,162660,942],[308672,169088,898],[308007,168944,1015],[310034,167880,948],[305577,173746,1066],[307081,173902,1215],[306040,174674,982],[303969,174614,1052],[304613,174105,936],[304702,174770,938],[294903,173569,903],[293799,165276,994],[293405,165027,1308],[293985,164116,1043],[295177,170144,1003],[295225,170456,1087],[294863,170579,1208],[292352,164053,1296],[292676,164591,1422],[291725,164732,1111],[294027,161541,1008],[293714,162037,1125],[289241,168297,1071],[287570,167078,991],[288493,167205,974],[294600,171080,1298],[294102,155426,1449],[294374,154626,1458],[294640,153854,1364],[293101,165506,1288],[287526,170311,925],[288867,169923,1103],[287059,169751,953],[292236,165629,1060],[291348,165229,1045],[292205,165241,1331],[291394,147157,1279],[291482,147810,1274],[294106,147676,937],[292267,148230,1294],[293830,148144,713],[296178,156273,998],[295582,156407,1215],[295252,156174,1116],[293631,155232,1313],[278225,157161,946],[277710,156342,1268],[278588,156920,865],[277557,155339,1035],[276779,155128,1135],[277466,154656,1039],[293074,167704,1164],[292615,168329,1288],[291626,167301,1049],[288613,165616,1343],[301267,151532,1192],[292552,174201,1037],[288447,171017,742],[294771,160599,1138],[267958,150510,913],[267699,150806,772],[269953,147709,852],[273239,150030,902],[287681,164211,1210],[292812,163467,1082],[293158,163387,946],[293211,163679,1124],[281663,164568,809],[294945,159116,1065],[295030,159796,965],[293072,159774,1111],[293348,156416,1112],[293675,161681,1240],[293223,160777,1335],[293996,161186,1247],[292658,159580,1065],[294660,157085,884],[294796,164181,897],[294771,165948,912],[292219,163000,1381],[262841,157620,829],[264108,157897,817],[264153,158211,866],[263775,158354,992],[274059,160802,732],[274359,160424,732],[298357,149814,1134],[298482,148411,1072],[297419,156343,1031],[298406,157569,1032],[297240,157768,1170],[297962,160453,964],[297918,160096,1008],[293023,162312,1057],[292631,162119,1056],[292932,161619,1081],[292062,162029,1024],[290579,162635,1068],[304248,176688,1092],[310686,166545,1097],[308584,165940,942],[308744,165718,942],[300405,151085,1027],[273082,156027,912],[272390,158401,1060],[292434,169840,1425],[292764,174709,752],[289828,143492,1092],[289960,144514,1030],[291021,144469,1113],[307600,174461,1204],[307307,175667,1100],[303258,177423,772],[278937,164294,732],[309842,169716,933],[308771,169762,1030],[315294,165406,962],[311539,167046,1178],[294964,149856,1093],[294679,147821,923],[299434,158012,982],[298509,158224,1245],[300728,153472,1084],[299539,153767,1106],[296969,152897,1157],[296149,152771,1217],[296883,152238,1179],[294991,156597,1165],[297241,176306,1037],[274548,160120,994],[293544,168976,993],[297419,167823,912],[290616,169503,1009],[290948,168650,1221],[270796,159018,909],[312954,167372,1211],[303870,177198,927],[304579,176621,942],[303964,177857,1009],[307358,172779,938],[289792,172432,1010],[286184,174211,742],[298641,159270,1138],[286858,169891,742],[273874,152048,916],[274443,152864,878],[284384,161397,1072],[299241,158742,1201],[299745,157975,972],[279190,158070,816],[278100,156081,1220],[293402,155236,932],[306581,173064,964],[307184,171391,1079],[276117,158208,942],[293874,148483,699],[296926,176796,996],[279651,164784,892],[285283,164214,1069],[284266,168007,722],[292735,162778,1264],[296146,158721,1091],[296189,159102,977],[296074,160154,1101],[297141,160335,977],[295378,157228,914],[295663,157086,1089],[295483,160384,970],[290202,166390,1062],[289906,166861,1319],[289161,167573,1305],[292615,166161,1039],[293846,165625,993],[290764,167257,1258],[290672,169829,1163],[291950,166445,1037],[292938,168575,1036],[293112,168081,999],[292666,156692,1216],[278311,157828,890],[277835,157368,1089],[293748,162384,958],[296359,157652,961],[290249,163531,1056],[292568,165807,1045],[299966,154353,1099],[300763,153808,965],[298983,154604,999],[296586,159349,973],[289730,169920,1016],[308087,169668,806],[305200,178903,902],[268788,158399,682],[293355,161811,1249],[286041,165038,1073],[286696,164119,950],[306304,169098,912],[277458,157621,1040],[308278,171036,921],[291592,166946,1224],[269881,152202,968],[268238,150349,936],[297736,155556,1158],[290812,164374,1072],[291227,164167,1337],[289653,162270,1118],[287725,175302,752],[287332,174706,914],[277954,155089,1057],[277917,154730,1217],[275724,156076,1100],[297716,174770,884],[297275,152171,1031],[295861,150776,932],[296326,150966,1080],[297279,176673,897],[299110,178281,911],[297409,153205,982],[297909,151018,970],[298532,151162,1095],[298325,154065,1119],[278215,165241,732],[279839,159359,862],[278359,158184,889],[297557,160180,1093],[269011,158371,843],[266763,151520,742],[266647,152337,945],[271583,155601,815],[267568,152626,869],[279288,158704,986],[297170,144217,882],[297863,148542,894],[293569,163593,930],[298040,154826,1016],[294070,179426,876],[294395,164293,1024],[294342,163963,909],[267580,150967,772],[298706,147633,863],[347383,147813,853],[347782,147102,941],[348296,147724,897],[343134,146181,857],[345265,147813,889],[342906,146074,622],[346136,145226,1042],[345191,145392,1089],[346200,145149,1022],[346384,146545,1083],[346366,145419,1042],[346430,145342,1042],[344443,143812,897],[344098,143264,1022],[343089,145833,864],[343784,143158,1022],[342738,143106,1043],[343848,143081,982],[343281,143714,903],[344034,143341,1042],[341734,141262,882],[341416,141128,862],[340212,140287,800],[341480,141051,832],[341671,141339,882],[340477,142309,752],[341385,144530,892],[340962,143590,962],[338667,143866,739],[339590,143054,622],[338204,144300,622],[337018,143282,622],[339424,142967,773],[346177,148012,973],[346121,147667,836],[347439,148143,1018],[346432,149661,622],[347914,148123,894],[342095,145005,967],[340864,142889,901],[348542,147614,622],[340086,139894,622],[339591,140838,784],[344710,145842,854],[345866,145608,1101],[345172,147165,796],[340617,143358,757],[340579,143010,860],[217223,123174,611],[216050,123077,582],[216396,123609,572],[217727,122637,628],[219410,121493,700],[218170,122513,622],[220572,120844,669],[219876,120535,562],[221972,119836,679],[221705,119320,602],[296155,135648,975],[296803,135833,978],[293358,137759,1012],[296667,134835,944],[297800,131706,832],[305571,137698,822],[301594,138337,992],[296437,135596,745],[301360,143916,882],[441922,69187,1192],[439056,73379,1122],[439159,68910,1297],[434976,74885,1114],[435893,77290,1077],[438077,74795,1092],[434399,75878,1115],[439884,68052,1223],[435942,77607,1191],[436003,77746,1062],[440341,68249,1181],[434490,76553,1140],[265914,91095,452],[265675,90738,452],[266006,91033,452],[266754,90749,452],[266106,91183,452],[265702,90599,522],[266653,90599,452],[266828,90482,452],[267576,90197,452],[266928,90632,452],[267476,90048,452],[267770,89212,522],[267530,90011,462],[267658,89925,462],[268306,89491,462],[267770,90091,462],[268418,89657,462],[268158,89072,462],[268398,89429,462],[268019,89045,522],[441873,68896,1192],[442840,67546,1692],[439155,65468,1787],[441616,64306,1783],[436319,64024,1678],[434656,63573,1940],[435526,61466,1909],[433269,56803,1984],[431569,57264,1690],[432228,56264,1890],[430417,60266,1808],[430709,60119,1673],[431053,50004,1924],[428630,52973,1857],[428535,52316,1751],[423388,50635,1894],[422432,51415,742],[424720,49416,742],[425939,51388,1684],[426131,51031,742],[426749,51134,1791],[421861,50501,742],[421732,50614,742],[421365,49971,742],[421297,51434,1750],[421033,51529,1753],[421941,51275,1752],[422320,51537,1722],[420736,52000,1782],[419348,52842,812],[419208,52341,742],[419018,52598,792],[420903,53316,1683],[421590,53769,1507],[421631,54103,1468],[424031,55678,1535],[424978,56140,1510],[424790,56868,992],[428047,58090,1688],[437401,63958,1720],[438634,64592,1887],[437355,65433,1755],[432381,54761,1802],[438760,62452,1801],[440651,60872,1961],[441046,61439,2146],[444267,59967,2190],[442484,59462,2007],[444078,58600,2039],[433760,62709,1933],[434126,61717,1849],[442732,64633,1870],[443519,63700,2218],[444667,64973,1292],[433141,45698,742],[430820,48006,2338],[427142,50939,742],[434768,55713,1873],[434441,56247,1906],[434382,55903,1716],[435908,64458,1755],[436947,65226,1799],[424907,49985,2159],[424644,50391,2162],[424973,50611,1924],[425578,51144,1937],[425401,51860,1649],[430105,60086,1734],[430332,59594,1867],[438335,52479,1996],[436890,51148,2132],[434729,48097,2218],[432961,61978,1657],[432920,61665,1666],[432542,61455,1675],[432366,60107,1706],[431776,47528,2052],[433216,46817,2106],[441109,55336,2093],[443116,56845,1832],[442584,56637,2031],[427788,52881,1654],[428277,50286,1876],[423546,51989,1585],[422625,51447,1706],[423466,51298,1759],[432588,61797,1701],[444751,61206,2221],[443886,62889,2224],[443221,61362,2320],[443109,67208,1692],[427161,51333,1762],[433798,63023,1873],[425488,50465,1930],[425910,51043,1927],[421868,53382,1655],[432749,46284,2151],[431992,47043,2058],[433610,46668,2290],[438059,62698,1879],[442246,64092,1987],[445179,62071,1432],[444693,59148,1662],[422967,51032,1711],[425406,56428,1638],[428557,55460,1654],[423411,55848,962],[423988,55335,1571],[443976,63567,2237],[429052,59187,1704],[429540,57863,1664],[431056,56764,1695],[430772,57932,1630],[439393,60575,1984],[436414,61192,1741],[422329,54337,1514],[422236,53626,1518],[427948,50751,1819],[432100,58076,1700],[428460,57949,1699],[442984,63169,2218],[438568,57671,1806],[438833,59705,1808],[434071,61376,1710],[441910,58239,2077],[440765,55459,2083],[437216,56276,1840],[434309,55218,1942],[440631,58386,1909],[435004,60623,1743],[433382,57793,1745],[429595,58210,1792],[435993,54996,1836],[434501,49912,2169],[439988,55803,1949],[439217,59221,1997],[439422,57734,1991],[430910,58952,1680],[435650,52320,1938],[435573,49828,2024],[442274,64411,1784],[436936,51495,2146],[437761,54734,1948],[437452,55503,2011],[437326,54508,2072],[438409,56338,2032],[442309,61269,2113],[429776,59564,1816],[262755,92937,432],[262643,92771,432],[262671,92632,502],[263442,92476,452],[263358,92292,452],[263469,92458,452],[263219,92264,502],[291499,69222,442],[291719,69139,442],[292057,70296,432],[292300,70158,412],[398136,113578,112],[395202,116431,312],[395979,114144,312],[396090,114036,112],[397969,113406,112],[397816,113248,112],[397669,113097,112],[397371,112791,112],[395753,114364,312],[394882,116102,312],[394735,115951,312],[394437,115644,312],[395035,116259,312],[402128,109631,752],[401352,110382,112],[401940,109437,752],[401164,110188,112],[401074,109690,752],[401648,109135,752],[400872,109886,112],[320256,152713,852],[317815,151178,892],[319575,149449,842],[321457,150841,832],[397229,78997,812],[398387,79795,792],[396423,80166,822],[390320,75248,732],[394476,78252,812],[394212,78616,812],[396077,80668,822],[393831,79143,832],[390431,72923,692],[390750,73165,712],[390341,72877,692],[390196,72644,692],[390322,72863,692],[390304,72848,692],[390288,72831,692],[390272,72814,692],[388214,76066,702],[388165,76056,702],[387532,76265,692],[387499,76302,692],[390238,72418,692],[390233,72755,692],[390223,72734,692],[390214,72712,692],[390206,72690,692],[390200,72668,692],[390193,72621,692],[390192,72598,692],[390192,72574,692],[390194,72551,692],[387687,76142,692],[390198,72528,692],[387645,76168,692],[390203,72505,692],[390209,72482,692],[387605,76198,692],[390217,72460,692],[390227,72439,692],[387568,76230,692],[390245,72776,692],[390258,72795,692],[387731,76118,692],[387823,76081,692],[387776,76098,692],[387870,76067,692],[387919,76056,692],[387968,76049,692],[388017,76046,692],[388067,76046,692],[388116,76049,702],[388250,76076,702],[388285,76088,702],[388320,76102,702],[393404,79735,832],[388354,76118,712],[388387,76136,712],[388419,76155,712],[388450,76176,712],[388567,76260,732],[388892,76494,742],[397637,81136,822],[398903,80151,802],[397991,81381,822],[396439,82704,802],[395242,81878,832],[396140,89738,838],[397078,88587,832],[395990,90181,1682],[397392,81490,822],[395128,89546,781],[394360,86732,872],[392777,87989,892],[396951,83057,822],[398983,82636,822],[398132,83871,832],[410986,90197,642],[410567,90687,642],[410453,90608,642],[410590,90706,642],[410631,90748,642],[410611,90726,642],[411053,90243,642],[411578,90262,642],[411610,90244,642],[410678,91219,642],[411152,90290,642],[410693,90848,642],[410680,90822,642],[411187,90301,642],[410704,90876,642],[411222,90310,642],[410713,90904,642],[410725,90962,642],[410720,90933,642],[411295,90320,642],[411670,90202,642],[410729,91021,642],[411405,90317,642],[410728,91050,642],[411441,90311,642],[410725,91080,642],[411476,90302,642],[410719,91109,642],[411511,90291,642],[410712,91137,642],[411545,90278,642],[410703,91165,642],[410691,91193,642],[410663,91245,642],[410646,91269,642],[411641,90224,642],[410728,90991,642],[411368,90320,642],[411332,90322,642],[411259,90317,642],[410665,90796,642],[411118,90277,642],[410649,90772,642],[411085,90261,642],[410321,89736,712],[410121,90376,672],[409788,90145,692],[410204,90434,662],[410654,89966,682],[399335,82126,822],[397746,81735,822],[401697,75998,762],[400119,80990,812],[401390,75296,742],[402144,75334,682],[401920,75666,742],[401638,74415,672],[401619,74388,672],[402676,75128,672],[401686,74824,682],[402262,75206,672],[402236,75227,672],[401703,74761,682],[402318,75170,672],[402289,75187,672],[401695,74793,682],[402411,75131,672],[401710,74630,672],[402443,75122,672],[401710,74696,672],[402379,75142,672],[402348,75155,672],[401691,74534,672],[402543,75111,682],[402510,75112,682],[401554,74315,672],[401669,74473,672],[402610,75115,682],[402577,75112,682],[401681,74503,672],[401654,74443,672],[402643,75121,672],[402707,75139,672],[401577,74338,672],[402769,75165,672],[402739,75151,672],[401599,74362,672],[402476,75116,672],[401700,74566,672],[401706,74598,672],[401711,74663,672],[401708,74728,672],[402211,75250,682],[401674,74855,682],[402188,75274,682],[401661,74884,682],[402167,75300,682],[401645,74913,682],[401612,74963,702],[401168,75629,762],[391077,73396,752],[391444,73655,772],[395773,89881,820],[450321,40934,2114],[451872,42489,2062],[450753,43151,2102],[447691,38046,2166],[447994,38083,2930],[448195,38286,2162],[445139,40116,2315],[446842,41731,2102],[444035,39590,2283],[445903,40337,2226],[446622,37734,2300],[446945,36786,2648],[446738,36906,2173],[446751,36643,2825],[446683,36366,2183],[444168,36206,2236],[444245,35528,2262],[447317,36439,2182],[447287,36640,2575],[446965,36399,2565],[438771,35841,2412],[441524,37755,2313],[436935,35096,2151],[442391,32077,2132],[443894,35234,2272],[443576,35608,2282],[439752,33758,2326],[439769,33335,2307],[429878,29604,2090],[429000,29787,2002],[429614,29631,9978],[439653,30911,2112],[437372,31989,2277],[429052,29294,2067],[427719,28928,1962],[429369,29195,2033],[429664,29368,2071],[429420,29566,2081],[428829,28820,2012],[427490,28775,1962],[439652,33651,4025],[439600,33645,2320],[450008,40639,2134],[450264,40760,2721],[447860,42464,2102],[447117,41570,2215],[449736,44128,2072],[450585,45051,2032],[452077,45389,2032],[452085,47060,1932],[451369,46030,1962],[452730,48136,1872],[454642,47484,1942],[453300,49253,1812],[453793,50407,1802],[455327,49354,1882],[454647,51252,1922],[455558,50344,1852],[454788,54030,1722],[454538,52801,1742],[454826,52636,1923],[455305,55766,7851],[455075,55969,10202],[455203,55645,1763],[455312,60423,11508],[455046,60433,1680],[455391,60169,13085],[452566,66330,1422],[453174,65186,1362],[453179,65841,1442],[451630,68395,1352],[451118,68475,1302],[451880,67428,1372],[445882,75456,1233],[447384,73248,1082],[446962,74064,1268],[437098,86286,952],[437567,85797,902],[437877,85923,1060],[436424,86990,972],[436055,88299,1042],[435604,87845,982],[437463,87999,1052],[436434,88488,1052],[436861,88468,1062],[439461,85157,1072],[437191,88327,1052],[438551,86416,1052],[448381,72323,1321],[451048,69232,1322],[439678,83526,1100],[445098,77204,1182],[441046,82895,1092],[446690,74950,1202],[448163,73031,1222],[452354,67143,1419],[452071,67399,10105],[452310,66825,1380],[451950,67580,1452],[452288,67316,1412],[453938,64281,10467],[453701,64003,1402],[454150,64072,1502],[452457,66954,9749],[454143,62785,1452],[454571,63165,1512],[453617,64776,1541],[454508,62572,1772],[454444,62223,1496],[454936,62237,1522],[455299,59083,1750],[454940,59031,1562],[455503,57991,1714],[454183,62719,8436],[454532,62876,1549],[455030,57780,1602],[455087,60773,1619],[455523,60312,1592],[455336,56639,1840],[455034,56525,1692],[455516,56278,1756],[455413,60036,1618],[455540,54566,1809],[455854,53333,1802],[455550,57759,7679],[455688,57628,1728],[454206,51591,1772],[455825,54564,1751],[455872,56821,1722],[455691,51343,1832],[455025,48400,1912],[453183,44735,2012],[448826,43264,2072],[450385,39975,2112],[444076,33139,2162],[445602,34222,2172],[444202,35343,2276],[444196,35383,4128],[448017,37637,2845],[447743,37713,3056],[447778,37584,2550],[437256,34764,2333],[445939,40474,4747],[445860,40363,2271],[455271,57743,15812],[455278,57049,11095],[455379,56995,1791],[455387,55265,1786],[454953,55273,1752],[455490,56645,14791],[455112,57689,1649],[454766,60273,1562],[455795,58339,1682],[455555,56591,1738],[455475,55947,1787],[455245,55964,1788],[452627,66362,1423],[431955,29081,2082],[429830,28873,2052],[429684,28946,2042],[433804,29385,2092],[436098,34352,2246],[454400,61909,1461],[454498,61540,1492],[454792,61824,1683],[455775,54967,11035],[455665,55576,1759],[429364,29563,2092],[429101,29684,2005],[429170,29347,9733],[429803,28876,7555],[429073,28854,2024],[455775,55262,10483],[447527,37633,2868],[447185,37488,2167],[447558,37384,2530],[448286,37586,2594],[448140,37674,2514],[448045,37396,2517],[443848,36484,2269],[443944,35917,2272],[444159,36196,2433],[446939,37528,2261],[446080,40620,2279],[435632,29812,2102],[440903,36769,2187],[441110,31507,2122],[448601,37862,2119],[448571,37130,2142],[449151,37935,2142],[447239,37338,2921],[448177,37999,2444],[448517,38021,2274],[450277,40600,2104],[446998,36177,2164],[447249,35643,2162],[447827,36870,2180],[447940,36363,2152],[447035,36178,2452],[448321,37346,2175],[448071,37298,2236],[447268,37107,2575],[447200,37230,2851],[447574,36918,2565],[447800,37120,2494],[447607,36663,2171],[447544,36744,2477],[441542,37295,2312],[442414,38147,2305],[442046,38171,2177],[444156,39373,2285],[438323,30484,2112],[397382,125632,1949],[397862,125775,1062],[397429,125990,1930],[400161,122409,1942],[399835,122365,942],[400428,122021,978],[403191,119506,1863],[402674,119631,942],[403776,118959,1007],[431607,94664,1057],[431495,94360,992],[432178,95139,1082],[411789,112514,2063],[412194,112141,1045],[411116,113370,1082],[409106,114009,1222],[409047,113680,1003],[409526,113815,2087],[408760,114780,1083],[408258,114574,1007],[408779,114384,2089],[405789,117150,2026],[405535,116920,1982],[405682,116899,995],[413859,109362,1017],[413336,109831,1018],[414248,108927,1862],[415377,108037,1040],[417195,106309,962],[417387,106258,1041],[418456,105635,1416],[419199,104752,1007],[419313,105054,2056],[418900,105201,2095],[424273,101541,7542],[424190,101245,2088],[424990,100924,9726],[427318,99129,12875],[427284,99208,1050],[426902,99227,13255],[395143,127370,978],[395553,127169,7188],[395604,127418,1934],[420545,103618,1008],[420419,104036,2064],[420163,103716,952],[429063,96984,7695],[428511,97112,13983],[429107,96460,962],[404483,117995,988],[421945,102736,2055],[422302,102612,1321],[422394,102919,2060],[417587,107241,2008],[419072,106067,1092],[417046,107853,1102],[416580,107107,2093],[416781,106746,1038],[416828,107079,1080],[412541,110976,2099],[412964,111238,2064],[412627,111648,2054],[409758,114110,1049],[409712,113755,1057],[410040,114018,1363],[406099,116718,2035],[406631,116487,2023],[406436,116950,2071],[405095,118467,2009],[404595,118285,2026],[405005,117789,2003],[402470,120208,1997],[401226,121359,986],[375184,147659,1913],[374052,147629,1755],[374797,147336,1459],[369491,152176,1145],[369119,152529,933],[368838,152527,906],[368369,153151,950],[368612,153514,942],[368245,153109,902],[395895,127305,1030],[394932,128567,990],[394196,129441,1032],[395903,126888,1923],[425616,100327,10953],[425746,99978,1390],[426051,100185,11623],[429880,96537,1049],[429881,96133,15308],[430333,96398,2061],[429545,96539,9747],[431031,94880,1050],[424631,100711,1117],[425271,100454,14636],[428308,97229,1020],[429698,97183,10723],[430177,96788,11728],[430225,96103,1065],[430234,95761,1840],[430299,96074,14815],[426324,99434,10684],[426945,99335,1043],[429443,96907,7605],[429420,96653,1140],[425317,100098,1324],[426342,98713,12310],[422938,101427,962],[427529,97749,12469],[427801,98371,1461],[427478,98432,1324],[427633,98041,13403],[427568,98743,2017],[427254,98514,1946],[428482,97802,12281],[428751,97758,11269],[428399,97873,1092],[426577,99754,1068],[427147,98188,1030],[427239,98495,12950],[426916,98641,1941],[427752,98710,13827],[425287,100874,1952],[425485,100691,13330],[426096,99150,7961],[425254,99786,1024],[427272,98807,12846],[427819,98711,1070],[431272,94763,1059],[431302,94827,9116],[430612,95673,2041],[430486,96057,10668],[428078,97595,1962],[428421,97458,12049],[426728,98948,11282],[429343,97250,15751],[428152,97891,12000],[427128,98194,11939],[426585,98649,9795],[424920,100227,1236],[425202,99788,10990],[430601,96045,1178],[396937,125921,1046],[397169,126082,9224],[396983,126252,1075],[398127,125311,1028],[398170,125284,8048],[425003,100931,1078],[423192,102578,1092],[423572,102175,7109],[423868,101365,2066],[423598,101433,8899],[423759,101079,1046],[423537,101831,7268],[424643,100356,1956],[424862,99916,982],[430637,96364,1091],[398141,124928,1932],[398895,124611,1029],[396587,126068,1074],[396452,126871,1914],[396229,127038,1890],[396408,126528,1929],[396632,126428,1032],[394533,128793,1018],[394116,128539,1953],[394488,128446,1024],[396350,126183,1765],[395520,127124,1294],[384774,137556,1997],[385226,137482,2022],[385271,137824,2009],[399827,122644,994],[395280,127945,1847],[395971,127326,7314],[393742,129059,1920],[394159,128855,1962],[392760,129655,982],[424171,101631,1090],[423467,101512,1318],[423517,101867,1372],[429255,97276,9868],[423537,102194,1026],[422710,102162,1353],[422798,102456,2059],[431694,95341,1027],[431428,95446,1993],[431323,95121,1113],[430865,95263,2005],[399679,123804,1053],[399688,123376,1976],[399965,123658,1036],[398469,124452,1064],[398439,124120,1256],[398867,124231,1334],[396141,126390,1867],[431719,95010,1993],[424139,100909,1989],[399178,124440,1020],[399724,123969,1092],[420678,104630,996],[421120,104309,1072],[417176,106658,2072],[417761,106158,2034],[416983,107713,2085],[416647,108163,1042],[421530,102894,1007],[421926,103126,1050],[421966,103442,1016],[385511,136759,1952],[385703,136450,1006],[399541,122798,984],[402832,120421,2003],[402731,120147,1094],[403882,119230,2010],[403516,119399,1994],[403602,120051,1988],[403290,120169,2021],[370808,151477,945],[369956,151718,1810],[371238,150978,1925],[372005,149948,1912],[372542,149282,1926],[372097,150632,1923],[419721,104588,2081],[420087,104158,2006],[420507,104708,2054],[421644,103199,2064],[400254,123079,2006],[399936,122930,1976],[400153,122802,1101],[402990,120353,1234],[402991,119946,1988],[402888,119694,1008],[400889,122211,1026],[400993,122480,1984],[400531,122263,1976],[391632,131226,1946],[391982,131131,1053],[391673,131570,1879],[394145,129276,982],[398529,124800,1243],[411322,111568,1812],[408418,114232,2002],[409798,114427,1027],[409191,115108,1082],[408666,114112,1011],[411200,111928,2050],[410430,112517,1020],[418586,106287,2034],[407025,115664,990],[406166,117771,1022],[405777,117568,1078],[406186,117390,2019],[407937,114990,2083],[407559,115789,2067],[407514,115475,2021],[406279,116340,991],[406835,116771,1061],[406787,116431,1027],[407223,116592,2043],[405460,117668,2017],[404297,119418,2028],[404205,118742,2008],[406678,116832,2042],[409247,114609,2092],[409481,113499,2047],[410904,113028,2051],[410518,113162,1053],[410544,112795,2108],[409224,115005,1020],[410258,113623,1069],[410000,113328,2096],[410210,113265,1045],[409507,114235,1030],[409138,114355,1024],[408868,115058,2084],[374721,147059,908],[375051,147072,1149],[374993,146768,878],[373545,148078,901],[379645,142514,1949],[379214,142636,911],[380812,141131,1901],[378754,143175,1869],[378941,142977,906],[379044,143177,1960],[375610,146835,914],[375139,147321,1906],[375298,146837,891],[371767,149956,1840],[371519,150307,1931],[376212,145793,1834],[376311,146489,1924],[375926,146409,1920],[379322,142879,1962],[379735,143202,1934],[373647,148286,1912],[373220,148614,1933],[375967,146731,1914],[373691,148605,1930],[431161,95855,1072],[430956,95935,2050],[430847,95620,1072],[369025,153417,1863],[370513,152045,1905],[368863,153791,1002],[368746,153420,1889],[411226,112654,1049],[411270,112993,1048],[409953,112970,2088],[408371,114859,2063],[407980,115320,2074],[406520,116213,977],[407136,115944,2027],[406807,116044,2028],[407277,116858,1092],[406875,117108,1009],[388298,134407,1958],[387783,134648,961],[388252,134077,1931],[388659,133968,1956],[389044,133893,1958],[388685,134337,1627],[413068,111505,1092],[410795,112763,1030],[410815,112355,2064],[409618,114521,2072],[377023,145965,915],[376683,146164,1918],[376594,145480,1936],[375585,146474,1214],[410591,113499,1455],[408002,116058,1002],[407605,116147,2048],[394488,128019,1820],[393095,129455,1921],[393454,129595,1936],[393080,129857,963],[391993,130729,1956],[392319,130221,1935],[392589,130515,977],[381864,140104,914],[381590,140374,1949],[389296,133453,1947],[389955,133431,1022],[389288,133877,1026],[387109,135384,1990],[387104,135812,1114],[386765,135457,1978],[392630,130830,976],[383069,138965,935],[390963,132188,1936],[390523,132744,991],[390145,132780,1928],[388615,133653,1937],[390131,133192,969],[389250,133110,1925],[388995,133540,1925],[381680,141024,2006],[380861,141461,1976],[382366,140646,1995],[382004,141127,981],[377270,144591,892],[377375,144803,1942],[397757,125441,1923],[397334,125289,1913],[397675,125143,1335],[396892,125604,1007],[408461,115537,2057],[416013,108598,2066],[416390,108173,2066],[414945,108470,1022],[416936,107354,2090],[415491,108351,2083],[415099,109080,2089],[417157,107055,1059],[415905,108307,1068],[415141,109425,2023],[415045,109666,1102],[414744,109520,2077],[415926,107925,2074],[415056,108746,2087],[386137,136624,1976],[385744,136767,1010],[383540,139261,1027],[384037,139067,1983],[383585,139598,1035],[386094,136305,1968],[386414,136293,1041],[383217,139509,1995],[388288,134849,974],[386852,136103,2000],[386459,136646,1008],[385561,137110,2008],[385606,137466,1976],[394842,127887,984],[419337,105792,1005],[419808,105265,2046],[420701,104235,2064],[421004,104134,2073],[405842,117889,1409],[406479,117282,2066],[405373,118619,1102],[405543,118314,1990],[405502,117985,2024],[411248,112267,2096],[412762,110270,1012],[414387,109935,2081],[414727,109927,1063],[413634,110098,1044],[413448,110110,2084],[413248,110846,2076],[412923,110922,2064],[413138,110559,1060],[412166,111393,2045],[413749,110393,2105],[412875,110566,2055],[413157,110171,2057],[414019,109991,2098],[413654,109695,2079],[413424,110481,1051],[413970,109632,2072],[413533,110767,2069],[414057,110309,2038],[413226,111238,1037],[389818,133255,1938],[383549,138810,1991],[383171,139178,1960],[399147,124089,1224],[399464,123882,1932],[398862,123869,1938],[399420,123532,1961],[389723,132553,1908],[390872,131519,1903],[389409,132798,936],[391886,130462,945],[393125,130191,963],[389716,132999,979],[387450,134931,1988],[389512,133038,1939],[431094,95207,1337],[418547,105968,2078],[404683,118961,2027],[400520,122664,1069],[400563,123012,1025],[399376,123201,1949],[400901,121804,1948],[401336,121651,1979],[401376,121967,1961],[410882,113418,1030],[368603,152868,913],[368696,153060,1848],[370464,151675,1898],[384291,138103,1086],[384819,137890,2008],[383996,138743,1996],[371908,149749,936],[401703,121169,1976],[401746,121499,1972],[402192,121382,1916],[402869,120745,1920],[403028,120708,1094],[401596,122175,1092],[411658,111536,2036],[412058,111121,1036],[411705,111864,2086],[382813,139239,1923],[382322,140314,1997],[381249,140733,1958],[383946,138389,1968],[377037,145500,1954],[368136,152989,892],[374471,147284,1855],[382906,139917,1966],[382276,139969,1984],[382652,140269,1997],[383206,139961,1005],[382551,140731,1072],[422774,102820,1024],[422235,102278,1001],[421309,103674,2046],[420912,103463,2030],[421684,103518,2022],[421284,104052,987],[420658,103920,2040],[407957,115694,1050],[392907,130248,1948],[392409,130876,1962],[393786,129377,1943],[392861,129917,1923],[391584,130888,1890],[398045,124657,1095],[418985,105851,2067],[412216,111745,2094],[431183,95509,2032],[401729,121884,1010],[371606,150968,1937],[378846,143848,1914],[378281,144506,1951],[377420,145144,1947],[387499,135292,2015],[387857,134915,1515],[403479,120392,1092],[368935,152769,1784],[369572,152399,1873],[369207,152758,1717],[406725,117189,2032],[377769,144160,1922],[405080,118871,1035],[419359,105396,2067],[380432,142604,962],[380902,141786,1946],[380028,142511,1965],[380070,142852,1923],[410301,113963,1031],[399605,123108,1320],[414248,108927,982],[411322,111568,952],[408418,114232,1002],[405535,116920,932],[210602,319433,1062],[211419,318556,1062],[214793,319857,832],[208877,320868,1062],[211070,325923,832],[210218,325787,832],[207846,325349,832],[212854,327427,832],[211248,326057,832],[335118,198071,876],[333494,199934,813],[334518,196473,962],[336397,197315,832],[419248,114877,832],[420635,113524,832],[421626,113801,853],[436212,96346,911],[436634,96196,878],[436593,96307,12502],[438747,89436,1185],[440095,92440,722],[437873,90413,1072],[441204,91074,712],[445663,85012,712],[445651,85029,712],[444145,84104,1020],[439076,88953,1067],[442779,87036,907],[411461,122262,862],[417612,118356,722],[407393,128667,722],[438278,89477,1082],[439538,92624,778],[438411,92753,892],[438493,92925,8867],[438452,93067,890],[428468,106175,836],[433609,100429,842],[424764,110579,752],[437190,94534,949],[437143,94169,967],[437474,94009,922],[434532,98280,920],[434253,99103,870],[432905,99526,922],[437129,95022,10123],[436466,94846,986],[436857,94656,961],[434692,97225,932],[434783,98118,904],[435518,97038,929],[436293,97123,872],[435032,97998,889],[429245,105119,9336],[428982,105017,855],[429313,104922,824],[423405,110698,812],[427421,106058,872],[404185,131903,732],[403389,128842,922],[417605,117981,849],[414543,119658,822],[416938,117296,832],[399819,132350,912],[401257,130875,922],[406460,126326,892],[404893,127557,942],[398473,133840,902],[395364,137452,862],[393008,140033,822],[390592,142594,822],[367036,162765,1012],[373525,157278,944],[366264,164327,992],[388503,144618,842],[363379,169772,882],[369096,158919,972],[370139,157275,952],[339854,193579,858],[339680,193499,11170],[339808,193229,881],[380395,150013,912],[382368,148955,872],[377282,154434,877],[376331,154665,930],[376249,154952,7679],[376132,154823,6289],[377253,153918,6554],[377195,153771,875],[377481,152779,901],[375712,154577,927],[374857,154203,893],[374817,153877,927],[372803,154631,902],[375174,153053,912],[373769,156281,893],[373517,156396,7039],[373387,156264,890],[376118,155310,892],[376310,155259,7953],[375543,155922,928],[384417,147729,872],[385692,146896,872],[373254,155252,896],[373096,156579,903],[371923,155297,912],[386775,146067,862],[373524,157270,5542],[370790,156394,942],[375177,156599,940],[367831,161248,1012],[364702,167983,922],[365364,166516,962],[364329,168598,892],[360072,173425,872],[356544,177264,842],[352392,181857,799],[354092,179794,832],[349405,184198,11356],[349493,184488,822],[349108,184528,873],[349446,184133,827],[346794,186536,842],[350304,183346,812],[345077,188892,825],[342351,190432,882],[320547,211858,1006],[313361,219411,832],[316369,214780,1012],[338614,194159,871],[338405,194569,10453],[338139,194186,885],[330899,199154,1012],[328606,201149,1022],[327141,202666,1012],[324601,205572,1062],[318746,212291,1062],[319577,211421,1062],[286012,245644,832],[302359,225558,1062],[314000,217159,1002],[312651,218460,1062],[311112,219741,1062],[242536,283852,1062],[268373,259616,1062],[231298,298380,832],[309463,220901,1062],[300653,226658,1062],[297218,229216,1062],[292918,232334,1062],[289684,234794,1062],[287638,236691,1062],[284091,241114,1062],[281943,244084,1062],[278205,249448,1062],[276631,251666,1062],[274926,253541,1062],[272334,256108,1062],[271457,256890,1062],[269652,258500,1062],[265231,261970,1062],[245067,280767,1062],[262061,263975,1062],[256862,267538,1062],[259607,265438,1062],[254672,269515,1062],[252458,271715,1062],[250534,273565,1062],[249268,274992,1062],[247235,277665,1062],[240065,286724,1062],[227570,297540,1062],[228211,296316,1062],[238343,288386,1062],[236027,290279,1062],[233932,291726,1062],[231275,293609,1062],[229744,294730,1062],[228881,295447,1062],[228711,295667,1062],[226505,299403,1062],[219985,310200,832],[221584,305692,1062],[218292,312438,832],[217434,310893,1062],[216483,315620,832],[213275,316227,1062],[205414,323264,832],[207209,321619,1062],[205003,321964,1062],[204150,322181,832],[204136,322052,1062],[205822,321866,1062],[429041,105448,10435],[429118,105331,15783],[429964,104432,836],[431964,100755,11847],[431839,101153,9304],[431164,101672,9748],[434681,98236,14736],[434573,98610,889],[438575,94076,753],[438157,94697,792],[435849,96869,900],[349781,184058,818],[348945,184846,10253],[349441,184562,11181],[348764,184987,835],[428735,105760,823],[428512,104909,12989],[428743,105216,10609],[429008,105134,10553],[430753,103266,831],[430243,103012,889],[430811,102928,15768],[431310,102280,10694],[431097,102832,827],[430980,101949,13452],[429918,104073,852],[430333,103714,847],[429956,104233,11317],[428896,104340,892],[429497,103686,10733],[429493,103841,886],[428962,104802,10533],[429022,104683,15640],[429254,104741,10185],[436942,95338,910],[437349,93019,996],[436992,93380,992],[437340,92350,1022],[437561,94682,895],[437864,94532,873],[437906,94868,846],[436675,96515,855],[435476,96719,944],[438100,94660,13683],[437430,93666,940],[437056,93494,983],[437345,93200,10660],[350242,183585,812],[350084,183906,10287],[350015,183629,813],[348603,185039,11552],[348245,185417,11779],[348111,185489,9761],[431583,101885,9623],[431136,102027,8672],[431492,102540,12807],[431415,102390,857],[431535,102270,8200],[430288,103350,894],[433193,100475,866],[429231,104275,890],[437575,94827,10887],[429877,103756,875],[428734,105139,15738],[430190,103105,12217],[437025,96014,820],[436131,95700,969],[431714,102321,836],[432043,101764,11076],[431901,101574,878],[432022,101401,11459],[432299,101043,11652],[432102,101144,899],[432058,100808,904],[435601,96777,11284],[435843,95466,962],[436018,95529,10849],[350062,183977,815],[342832,190880,840],[342496,191349,805],[348766,184771,14346],[347950,185882,829],[339602,193987,818],[339356,193993,867],[339558,193646,856],[428934,104490,10704],[429283,104364,11326],[429613,104299,11221],[429534,104157,887],[429578,104511,847],[432439,101075,877],[432479,101388,847],[431947,101935,844],[431632,101671,901],[347587,186341,843],[339727,193844,11183],[436936,94465,14708],[437270,95184,885],[436816,94325,979],[436103,95161,12741],[436087,95364,951],[435616,96714,7553],[351710,182478,8734],[351958,182251,807],[350446,183728,10817],[437697,93209,954],[438116,94358,836],[339837,193845,7901],[338511,195170,10824],[339455,194149,6807],[436418,94489,982],[351500,182290,817],[351171,182693,809],[351040,182939,8962],[350489,183173,824],[349844,183901,12448],[340168,193197,867],[340888,192682,840],[339312,193662,862],[339268,193306,903],[338659,194517,858],[337728,194627,912],[340016,193538,7465],[338172,194043,8198],[336799,195117,927],[338870,193276,892],[342144,191752,824],[339024,194071,881],[338798,193643,11120],[338277,195254,842],[338698,194769,7637],[338702,194853,823],[351374,182359,9788],[352342,181477,807],[350537,183531,807],[350837,183156,803],[351544,182621,811],[431674,102004,863],[339104,194455,7207],[338831,194627,9743],[432791,100616,892],[432424,100643,10104],[432752,100301,916],[340649,193018,7917],[340558,193134,828],[341276,192280,849],[432943,100514,9089],[432396,100995,9049],[432128,100746,9757],[432353,100398,906],[437990,93369,898],[437561,91369,1052],[339300,193977,10839],[435762,96190,936],[373206,154891,874],[437359,93895,9549],[339071,194457,839],[438192,93211,898],[437848,93255,7668],[376070,154949,892],[375411,154880,998],[374399,154541,901],[377745,151518,902],[368509,159999,992],[376373,154994,910],[375552,154968,2796],[376104,152953,911],[376286,154329,924],[376030,154620,940],[376737,154946,6019],[376462,154865,6465],[377150,153420,899],[376724,153028,900],[377101,153058,884],[376677,152682,883],[373433,156599,898],[340211,193556,811],[340974,192647,7563],[339959,193754,9790],[374798,153962,7456],[338568,193796,897],[373330,155020,6955],[373584,154872,904],[373856,156934,910],[376485,152896,6262],[377188,153174,7015],[377240,154111,889],[340342,193367,8083],[376419,152978,906],[373478,156950,895],[376647,154724,890],[376063,154573,5786],[375756,154931,893],[322234,208338,1082],[335169,198375,1021],[443903,81566,1152],[444257,86883,594],[457400,55040,1522],[457359,53203,1522],[462761,54675,1102],[462283,55742,892],[461801,56820,892],[462865,54417,672],[462925,54267,1102],[457380,67875,732],[456573,61990,1522],[457365,57052,1522],[457314,58070,1522],[457230,59058,1522],[457089,60054,1522],[456863,61023,1522],[456264,62958,1512],[446661,80868,2267],[446208,81296,1099],[446246,80982,2193],[455888,63885,1502],[452239,73714,930],[452651,73277,906],[452856,73678,3059],[455593,64769,1460],[455450,64810,1502],[455444,66553,2229],[455580,66347,15749],[455458,67211,1244],[455665,65145,1795],[454994,65722,7632],[455167,67303,2413],[454807,67706,2469],[454549,67384,13398],[453911,68982,9768],[453822,69206,13102],[453362,69277,11751],[453417,69338,2139],[453155,69786,2616],[452150,73039,925],[452561,72600,876],[451170,73441,3132],[451376,73263,910],[451582,73669,3062],[447785,77982,1339],[448303,77930,3002],[448209,78208,1189],[446176,80339,2381],[446155,80655,1500],[445690,80676,8064],[453374,72390,933],[453409,72722,820],[453014,72499,921],[452692,69811,1303],[452780,70190,1853],[452376,70319,2447],[455174,66703,9430],[455072,66329,14322],[455318,66470,6047],[455102,66962,2137],[454597,66662,1429],[454154,69108,1229],[454198,68815,2372],[454477,69047,1088],[454004,67443,1412],[455334,67068,16640],[455365,66825,6058],[451739,73166,1014],[451822,73500,1555],[455421,69323,2312],[455459,69639,2263],[455014,69378,2340],[455606,65724,6017],[455747,65816,1729],[455555,65734,16508],[455354,65873,7632],[455757,66117,1326],[455417,66217,7895],[455294,65837,1433],[454360,68060,1241],[454896,68404,2450],[453629,70705,2635],[453798,70586,928],[453975,70980,2695],[455208,67617,2432],[454206,69516,8607],[454303,69519,2556],[454346,69833,2591],[454616,68735,8360],[455270,68937,902],[455162,69094,10572],[454627,69433,2484],[453718,69893,1055],[453801,69636,2694],[453934,69900,13403],[454392,69551,15497],[453902,69168,1075],[454158,69201,8503],[453948,69499,1112],[454552,69715,926],[453978,68916,2599],[454344,67427,2161],[454637,66981,1394],[455147,66093,15803],[455627,67902,2362],[455492,67523,1159],[454110,69880,2691],[446545,80511,1276],[446280,80568,10029],[445727,81098,1297],[445852,82009,7881],[453888,68666,10013],[453506,69703,2732],[452934,69170,1342],[454407,68381,1320],[453895,68539,2113],[454028,68096,1300],[455827,69588,2115],[455540,70614,1634],[455334,68648,2319],[455639,68836,837],[455600,68514,876],[455572,68168,1114],[445671,80755,1129],[447442,77736,1281],[447233,77896,2353],[447095,77528,1105],[455795,69252,2260],[453031,72186,1748],[453469,72141,2741],[446895,80720,1085],[444586,82508,1035],[445159,83722,916],[455251,67974,2381],[455441,67774,11216],[454411,67781,2450],[446314,78822,1130],[445812,78876,1162],[446813,77617,1153],[446303,81650,1766],[446289,81531,8380],[445305,81249,1642],[444862,81369,1052],[447601,79076,1073],[447936,79320,1018],[447658,79409,1251],[446656,81492,1050],[445586,80108,1138],[445525,82579,2278],[445921,82455,1541],[446037,82794,2539],[445308,81604,1031],[446712,81829,1213],[446264,81854,7444],[446300,81978,1137],[445928,82143,2220],[447026,81088,2267],[447079,81270,7418],[446973,81414,912],[447267,81274,859],[447347,81641,1311],[447540,80248,2358],[447205,80296,1763],[447195,79976,2208],[447173,82412,1911],[447225,82753,1998],[446482,82688,2382],[453874,70303,2500],[452943,70901,2853],[453349,71119,2927],[452994,71242,2950],[445648,80989,6894],[444538,82150,1019],[446437,82333,2410],[446938,83212,1858],[447691,82222,885],[447904,81431,1024],[447561,81189,950],[444656,82380,7296],[444987,82377,959],[455222,68250,1472],[454158,70236,2723],[455044,69712,2146],[452329,74050,1579],[452767,74277,705],[452469,74445,2838],[450277,74609,1125],[450325,74971,1138],[450094,74769,3043],[449022,76413,2824],[449349,76599,1090],[449119,77059,3007],[449579,77289,3065],[449854,76828,1569],[449989,77216,2748],[448906,79173,2722],[448442,79262,2510],[448410,78911,2702],[449221,75569,1174],[449651,75470,1186],[449709,75806,1395],[450823,76901,1107],[450759,76560,832],[451217,76843,2477],[452081,72395,1130],[451742,72211,2794],[452154,72091,2709],[451180,74701,958],[451689,74636,2801],[451595,74923,965],[450818,73491,2992],[450652,73109,1373],[451129,73110,3161],[452417,70661,2411],[451781,70784,2042],[452545,71327,2984],[452900,71516,1111],[451615,73995,2925],[451833,73843,1094],[451983,74226,2494],[450352,74018,3248],[450877,73838,3185],[452189,73356,886],[451288,74430,2969],[453684,71027,2818],[453588,71316,931],[453198,72889,2796],[453245,71405,920],[451403,72630,2453],[450889,72349,1181],[451314,72257,1881],[452520,72260,926],[452893,73987,3011],[453760,71694,2666],[453289,71747,926],[454395,70169,2659],[453314,70798,3008],[453240,70431,2645],[452772,70478,1202],[454505,71155,2421],[454273,71248,2499],[454105,70848,877],[451646,75264,1045],[451986,75154,845],[452023,75499,727],[448788,78191,2856],[448699,78470,1102],[449022,77369,1070],[448658,77162,2909],[448398,78601,3117],[451409,76371,1133],[451410,76715,519],[450023,77527,2663],[450449,77802,2481],[450778,77675,2572],[450448,78101,1925],[448881,78837,2979],[453875,71229,838],[453111,73177,1055],[454542,71507,2298],[454182,71520,732],[453837,72386,2492],[453905,73030,2274],[453079,71897,2942],[454055,71627,2626],[454192,70554,2635],[454129,72298,2448],[454165,72635,2345],[454601,70077,958],[453222,73559,1924],[451460,76086,2367],[450705,76216,699],[453294,73893,2329],[452379,74735,1040],[452797,74593,561],[452407,75062,832],[449322,78756,2746],[455151,70399,2400],[454776,70461,2697],[450284,77080,1483],[450431,77451,2866],[450985,77252,2735],[450582,76960,1110],[449671,78271,2549],[450086,78165,2367],[450124,78521,2248],[453495,73080,1379],[449191,77725,2793],[449660,77959,2973],[449281,79050,1634],[449637,78936,842],[449273,79369,936],[452049,74561,2814],[448025,79020,2798],[448933,75732,2828],[448853,76050,1123],[448394,76126,1105],[448152,76918,2733],[447795,77330,2665],[447330,77047,971],[448579,77484,1225],[448753,77865,2970],[451668,71550,2947],[451580,71188,2373],[452083,71426,2918],[453802,72049,2617],[453591,70376,2695],[451768,75636,2088],[451742,76271,559],[448498,79608,2669],[448427,79915,1114],[448113,79666,2855],[454835,71093,2384],[454752,71392,684],[454339,71882,2270],[454596,71850,2430],[447947,78330,2961],[448200,77279,2750],[447603,78126,2821],[448565,76487,2852],[448501,76810,1361],[447512,77451,2790],[448023,76551,1605],[447996,78688,2994],[447537,78438,1341],[447850,77656,2833],[450854,74811,1099],[450552,74872,1008],[450666,74601,3092],[451723,75961,863],[450883,75122,934],[450938,75457,1097],[450619,75203,1335],[451952,74827,960],[450057,74457,3095],[450249,74296,1300],[450960,75767,843],[449726,76140,1025],[449400,75948,2998],[450386,72893,2290],[449352,74003,1762],[450580,72414,1252],[450391,75297,1467],[449609,75155,1177],[449239,74930,2591],[449311,75269,2996],[448844,75060,2809],[449704,74873,3036],[450017,74101,3189],[450484,74228,1224],[449951,73773,2861],[449602,74170,2896],[449398,76912,1201],[449443,76288,2976],[449914,76519,2974],[450159,76391,986],[450557,76637,1363],[450073,75739,973],[453546,70056,2644],[450679,75867,967],[450905,74165,2986],[447077,79640,1162],[447441,79229,2829],[447480,79558,2772],[447796,79775,2517],[446710,79083,1475],[446431,79172,2139],[448457,80227,969],[448065,79983,1596],[447336,80980,2360],[447090,78970,2568],[447367,78880,2440],[447091,82068,1372],[446828,82183,2206],[451346,72910,1129],[450702,72831,2580],[450933,72708,1142],[446901,78266,1216],[446824,79415,2475],[447302,78233,2699],[446496,80151,1239],[446530,79854,2269],[446919,80072,2616],[447401,79870,1106],[446871,79754,2520],[447742,80089,1186],[447785,80430,1168],[448215,80669,2454],[447926,80808,2458],[448068,80317,1033],[447952,81117,2259],[447514,80872,857],[447927,81742,774],[447214,80607,1320],[452548,71959,1871],[452441,71586,1053],[451998,71698,1236],[447582,80560,2388],[448552,80904,1077],[448227,81005,2015],[454670,70719,758],[454301,70425,890],[448313,75481,1157],[452504,71010,2979],[455092,70704,1030],[455496,69962,2211],[445412,82255,1295],[450219,76743,1189],[449397,79728,2027],[448985,79845,2599],[448924,80182,1136],[448533,80565,1420],[449717,78625,2550],[448866,79485,1588],[451660,72490,1125],[451581,71846,1194],[451337,71966,2725],[450935,72074,2315],[445994,79619,1144],[446856,80403,1111],[446047,79979,1226],[448268,81360,1945],[448322,81399,732],[446500,83637,884],[446075,83461,1847],[446537,83326,1975],[447099,81759,2059],[447994,76223,1804],[448162,75600,1202],[447572,78762,1228],[451705,72808,1178],[450967,74512,3221],[450437,73237,2375],[450227,73337,2747],[445073,83049,929],[445186,83397,1873],[451309,75715,921],[447340,78550,2662],[447030,78631,2351],[447151,77202,2470],[451220,73762,3243],[451240,74083,2928],[449206,74615,2713],[451232,75048,1057],[447378,81980,1113],[445565,83594,984],[446082,84124,743],[445559,82931,2107],[445586,83248,1913],[446066,83107,2385],[446492,79496,2394],[447420,82312,1111],[446097,83772,1594],[446657,78722,1395],[445906,78943,1147],[450630,75549,871],[452133,72720,1262],[455511,70291,1813],[462761,54675,252],[462925,54267,252],[454994,65722,1502],[451781,70784,1292],[449352,74003,1222],[427492,25064,10375],[427104,25150,1842],[428710,24676,1902],[429886,24540,1752],[429729,24684,8371],[429748,24454,9076],[428957,26113,1946],[429466,26142,1956],[429117,26482,1982],[429218,25946,1960],[429521,25914,2008],[429424,26598,1992],[429268,26545,1982],[429770,26351,1924],[429582,26640,2002],[429888,26447,7781],[429783,26645,1986],[430138,26534,1920],[429906,26691,2012],[430153,24797,10198],[430334,24918,1863],[430079,25183,1811],[430477,26540,1959],[430398,26686,2022],[430216,26230,8965],[430345,26280,9199],[430325,26334,7197],[430896,26218,1888],[430665,26291,1937],[430815,26040,1989],[430335,26012,13788],[430474,26031,1927],[430878,26581,2032],[430720,26627,2022],[430684,25959,13551],[430495,26013,2024],[437843,23600,2654],[437560,23896,1692],[437360,23602,1802],[437690,23903,1722],[437826,23850,1982],[438079,23870,1802],[437950,23889,1732],[438832,22582,2902],[439112,22827,2597],[438747,23330,2566],[438206,23842,1872],[438298,23481,2673],[438325,23781,2499],[438331,23805,1972],[438573,23707,1982],[438454,23760,2152],[438688,23647,2152],[438799,23578,2162],[439006,23420,2192],[438905,23503,2192],[438794,22489,3142],[438887,22452,3142],[439190,23236,1922],[439101,23331,2152],[439082,22519,2742],[439416,22918,1912],[439348,23029,1912],[439437,22735,2533],[438322,22788,2812],[439673,22501,1708],[439626,22735,1912],[439859,22581,1912],[439740,22654,1922],[439954,22405,1635],[439982,22516,1912],[440223,22254,1448],[440109,22459,1752],[440240,22411,1702],[440510,22340,1482],[440507,22155,1383],[440647,22318,1452],[440786,22305,1422],[440895,22037,1348],[440926,22301,1412],[439518,22823,1872],[446790,24428,1178],[446863,24311,8988],[447150,24332,1080],[453776,25552,666],[454214,25199,598],[454315,25460,572],[450930,24112,3932],[445177,22501,1062],[454691,25162,492],[446421,24084,7373],[446491,24045,2362],[446580,24150,8369],[446726,24356,6976],[446945,24957,8958],[446730,24923,8894],[447377,25161,8555],[447485,25215,1133],[447463,25355,3627],[447713,24666,8424],[447881,24825,1029],[447754,25016,8353],[448132,24850,1057],[448070,24866,3624],[448088,24606,4347],[448844,25496,1107],[448645,25261,4604],[448687,25224,3911],[447918,25094,4486],[447632,25271,1080],[447845,24589,1063],[447945,24392,7120],[448864,25528,4610],[448776,25579,4871],[449042,26179,1179],[448903,26026,1140],[449233,25980,1164],[448446,24227,4396],[448657,24272,883],[448645,24416,917],[449533,26463,1272],[449300,26407,1312],[450751,24151,419],[451053,24252,442],[454690,25163,492],[454691,25163,472],[447755,24376,4468],[448448,24988,3843],[448337,24798,3605],[448577,24744,3601],[450370,24731,931],[449915,24143,575],[450221,24031,446],[449533,25395,1036],[449207,25293,1018],[449387,25254,3602],[449768,26509,1242],[445942,23482,4111],[445875,23236,1013],[446088,23456,5299],[449258,25657,1077],[440168,22162,2642],[440713,21774,1542],[445900,22896,825],[446058,23109,2394],[444815,22757,999],[441065,22306,1412],[440374,22371,1632],[439841,22174,2802],[440100,22069,2802],[439804,22081,2892],[439711,22119,2892],[431443,25729,1795],[431514,25985,14508],[431321,25807,8651],[436940,23738,1589],[436960,23473,2332],[437711,23131,2541],[437766,22959,2763],[437815,23292,2850],[436109,22869,2122],[435845,22911,2212],[435845,22910,1762],[433744,24150,1834],[434272,23941,2142],[433786,24485,1799],[430018,26356,14289],[430282,24665,1767],[430358,24544,1730],[430555,24716,1939],[431757,25608,1891],[431763,25916,1815],[431645,25677,3824],[430070,26701,2012],[430675,25704,2156],[430431,25706,1936],[432695,23871,1850],[433007,24050,2023],[432941,24162,1779],[431165,25290,7407],[430824,25435,2246],[431105,25240,2181],[430179,26056,3373],[430260,26060,2273],[431342,25517,2785],[431334,25781,2180],[430820,25575,2012],[431102,25933,1787],[431264,25988,7517],[430304,25979,5291],[429328,25756,9602],[429506,25646,10636],[429433,25814,9278],[429687,25883,8741],[429590,25920,8923],[430540,25178,1879],[430412,25142,2702],[430360,24893,14124],[430560,26662,2022],[429964,25222,13570],[429867,24943,1795],[432618,24138,2884],[432718,24207,2083],[432561,24189,13835],[430576,24298,1881],[430875,24705,1924],[430007,26101,9559],[430127,25805,7962],[430187,25773,3586],[430291,25829,1947],[433511,23602,2251],[433337,24254,1732],[432598,24478,3564],[430122,25483,10945],[429913,25333,8117],[429255,24839,1805],[429565,25108,1861],[429233,25236,1889],[432114,24104,4174],[432084,24150,2126],[432029,24038,3043],[431224,24339,10008],[431113,24339,1732],[431027,24285,7327],[430185,25770,6993],[430033,25737,9382],[430855,25138,1957],[430723,24998,1857],[431012,25011,11395],[431182,26459,2012],[431032,26525,2012],[430232,25258,11652],[430313,25370,1894],[430692,25250,2194],[430632,25157,11423],[430544,25614,6512],[430420,25651,6162],[430784,25570,7010],[430714,25683,13272],[431239,25086,2121],[431793,24938,1984],[431746,25050,2778],[431477,24752,1893],[431162,24531,1757],[429542,25472,1980],[429841,25354,1925],[429679,25640,1951],[427716,25371,1884],[428033,25602,10665],[427458,25291,9468],[430362,25279,7383],[430288,25286,11198],[430267,25579,5852],[430443,25463,2549],[432919,24556,1876],[432867,24696,3271],[431132,24870,2017],[431353,26101,1859],[430892,24203,1984],[432314,24277,3073],[432402,24058,1830],[430102,24725,1757],[429911,25229,9931],[429899,24816,1739],[430513,25522,2064],[430544,25299,9913],[428366,25037,2364],[428195,25167,2664],[428135,24945,2008],[428216,25743,1887],[427809,24991,8621],[427894,25147,1962],[427507,25124,1844],[428555,25575,1917],[428426,25159,11043],[428636,25472,2179],[428882,24758,8117],[428925,24955,1902],[428624,25053,9009],[428119,25414,1943],[428173,25385,1952],[428284,25175,8982],[429887,26315,14073],[429797,26145,2101],[429928,26161,13524],[429748,26026,2229],[429896,25798,8090],[429373,25454,1923],[428666,25121,1947],[429470,25314,10732],[428910,25747,1948],[429070,25859,8729],[428883,25825,1988],[447527,24382,988],[447539,24576,1040],[449084,25788,3825],[430124,24467,10392],[430036,25633,6022],[429968,25717,3190],[430132,25635,4531],[430234,26699,2012],[429210,25659,1969],[446606,23299,4798],[446548,23239,6513],[446646,23233,4181],[447405,24819,8323],[447395,24988,3332],[446860,24058,7281],[446987,23954,5202],[447124,24160,6387],[446382,23008,665],[446146,23066,965],[445933,22717,405],[447220,23884,6479],[447161,23934,7321],[447022,23760,4766],[448046,24164,2946],[448048,24073,861],[448174,24048,860],[430344,25774,6221],[446579,23602,5055],[446596,23521,963],[446710,23546,2885],[446506,23962,6046],[446373,23987,8247],[429424,25820,1962],[429171,25604,1935],[428924,25519,2584],[429095,25389,9977],[429547,25945,6646],[449063,25723,1124],[447485,24201,971],[432758,25315,1852],[431422,26178,1826],[429616,24698,9930],[429587,24706,1774],[429519,24571,1681],[429494,24760,8075],[447580,23987,5930],[447371,24101,3799],[446551,24379,8709],[447393,25129,8409],[447132,25239,4522],[446794,25053,8322],[446452,24717,7482],[447010,25027,4120],[447192,24856,6317],[430281,24342,7987],[429918,25700,3976],[429821,25752,1983],[430228,25704,6390],[429977,25543,6981],[430019,25781,2355],[429964,25820,5642],[430081,25613,5329],[430057,25555,1911],[447025,23928,1026],[447866,24220,948],[447952,24135,3292],[450033,25468,980],[451211,25794,981],[451201,26587,1102],[450937,25767,1011],[450722,26599,1182],[447570,24185,7285],[431833,24047,1936],[431617,24323,2295],[431516,24196,7704],[431244,24816,2693],[431453,25094,2043],[431491,24220,2022],[431627,24605,1913],[428903,25425,1934],[429264,24737,1711],[429182,24589,8002],[428991,25986,7376],[447324,24752,8130],[447229,24094,1037],[447650,23646,4965],[447913,23468,658],[447801,23642,6459],[447545,23955,949],[447273,24006,5513],[446275,24179,7597],[446259,24052,6262],[446883,23885,3444],[446924,23793,2813],[446711,24020,6252],[448155,24424,955],[447970,23900,3974],[448100,23855,5892],[447931,23741,5154],[451678,25485,991],[451227,25329,918],[451702,25091,829],[451677,26536,1052],[432018,24645,2842],[432335,24510,3097],[436057,23432,1752],[435325,23045,2200],[435729,23222,1923],[431936,24074,1719],[432161,23943,1693],[432382,24508,1855],[447716,23933,3665],[447768,23851,5598],[446528,23533,5956],[446770,23481,5624],[446824,23665,4592],[447251,23744,897],[447300,23695,5254],[447444,23764,2761],[446003,23765,2901],[446059,23798,5546],[445854,23969,5292],[446295,23845,5786],[446375,23653,4571],[446604,23758,8216],[429743,26671,2002],[447670,25437,8445],[447553,25637,4962],[447937,25481,5004],[447143,23496,2876],[446492,23360,2799],[446652,23692,7134],[446745,23806,5838],[446526,23161,2360],[446401,23307,4376],[447277,23431,659],[447324,23504,5049],[447599,23318,464],[447567,23608,806],[446306,23292,1748],[446347,23230,1084],[446188,23604,3500],[446182,23510,7501],[446239,23656,2625],[446443,23627,7326],[446312,23418,5784],[446168,23752,6866],[446043,23611,2328],[446117,23232,4953],[445805,23680,7992],[445857,23697,1019],[446124,23421,1091],[445602,23562,4192],[445635,22722,670],[446622,23194,738],[446839,23387,817],[446948,23455,2621],[448421,23796,752],[448301,23652,5187],[448447,23476,530],[448199,23640,727],[448208,23774,3650],[448239,23904,3745],[448530,24112,3039],[448554,24138,4363],[447611,23767,5543],[447744,23696,3343],[447887,23808,5863],[428403,24893,1881],[429919,26041,8543],[445860,23660,5356],[445661,23557,4385],[445584,23476,1015],[430319,25666,4984],[445599,22922,1121],[445383,23135,1122],[445161,22587,1062],[447050,23534,868],[448605,26045,4765],[448841,26268,3662],[448395,26092,4332],[446939,23327,5305],[447044,23374,4634],[446197,23749,7491],[446189,24348,7244],[446138,24355,6092],[446133,24141,8312],[448672,25681,3222],[448857,25684,1112],[448342,25488,5314],[447888,25338,4835],[448840,25857,4812],[448690,23696,635],[448667,24035,793],[447161,25360,7862],[446831,25072,7118],[449107,25397,3696],[448625,25646,4676],[448183,24450,4315],[448315,24239,4315],[451174,24967,832],[451348,24591,658],[448179,23611,4962],[453061,26157,812],[453378,24841,217],[453497,25959,722],[453916,25726,652],[450510,25770,1009],[450140,24015,5121],[449369,23680,375],[447959,23340,4842],[447303,23151,402],[449622,23844,542],[446739,23272,2568],[447890,23809,817],[448957,23597,438],[449144,24085,838],[449295,24731,949],[447078,23284,565],[449400,23796,562],[449272,25170,1036],[449137,25099,3375],[449155,24921,973],[448375,24609,1003],[448390,24716,1028],[449109,25547,4882],[449552,24999,968],[449041,25711,3639],[450232,23962,384],[451300,24302,435],[451736,25620,886],[451957,25208,706],[452610,26320,922],[446872,25062,6415],[446855,25075,7483],[448275,25738,4915],[448174,25799,3594],[431702,25246,1789],[448883,25089,4569],[448865,25035,1051],[449081,25313,1075],[448623,24825,1020],[448885,24663,952],[448430,25197,4170],[432432,23944,2203],[433340,23546,1946],[448281,25980,6022],[448836,26215,4557],[445787,23377,2396],[448906,24263,859],[448596,24497,4307],[448683,24383,4542],[448706,24641,909],[448409,25093,4431],[449416,24989,3281],[448725,24337,3860],[450658,25681,998],[450554,25568,1990],[450678,25240,952],[451113,25753,3527],[450358,25704,1185],[445907,23715,4542],[450971,24986,1093],[446817,23780,939],[446264,23315,2439],[448397,24178,900],[448968,25727,2732],[446399,24640,8478],[448167,24881,4312],[446039,24155,5668],[445946,24088,7252],[447996,24081,3845],[447965,25882,4602],[448130,25822,4335],[451746,25085,1981],[452148,26447,982],[433089,24729,1917],[432532,24626,2352],[432336,24765,2631],[433033,24369,1799],[432783,24834,1852],[451273,24582,706],[450698,24839,868],[448394,25560,4374],[433387,24599,1799],[432100,24903,2501],[432315,25025,1863],[439647,22179,1919],[446963,25016,4899],[450243,26573,1202],[436086,23747,1595],[435746,23526,1611],[437732,22636,2869],[447058,24914,8528],[436554,22950,2597],[436535,23086,2541],[437374,23361,2445],[436566,22748,2284],[437431,22582,2265],[436898,22830,2640],[438142,22342,3462],[438142,22343,2622],[436097,23431,1956],[436302,23596,2061],[437386,23923,1578],[434872,24403,1722],[438187,22472,2976],[432669,23840,2058],[433706,23839,2292],[434100,23403,2074],[433503,24224,1961],[437820,23900,1722],[435676,23337,2073],[435786,23879,1517],[435357,23636,1549],[435140,23960,1822],[434961,23778,1733],[433107,24246,1943],[434929,23470,1843],[434541,23595,1793],[434636,23296,2083],[434995,24120,1585],[434616,24259,1635],[433729,23453,2177],[450835,25039,913],[436575,23529,1836],[437410,22980,2356],[436913,23122,2323],[437054,22975,2724],[436310,23630,1839],[437350,23048,2674],[436290,23344,2074],[439385,22396,2423],[435150,23343,2046],[434897,23150,1992],[434293,23521,2069],[434536,23300,2272],[439272,23135,1872],[433699,24432,2017],[435337,23350,1796],[435410,23992,1655],[440265,22590,1416],[450594,26838,1327],[450297,27002,1385],[461878,37046,1712],[465239,35098,1102],[465382,35631,1102],[465511,36168,1102],[465627,36707,1102],[465894,38340,1102],[462103,39179,1712],[465819,37793,1102],[466039,39988,1102],[466060,40539,1102],[461702,40794,1712],[466067,41091,1102],[466065,41413,1102],[465945,42550,1102],[465796,43683,1102],[460194,42014,1712],[465618,44813,1102],[465412,45937,1102],[465178,47056,1102],[458792,42521,1712],[464915,48169,1102],[456779,49051,1952],[464625,49275,1102],[464307,50373,1102],[463961,51463,1102],[457150,51032,1522],[463588,52543,1102],[463188,53614,1102],[457356,53049,1522],[462925,54267,1952],[450583,33661,1994],[449488,35894,2112],[448834,35155,2122],[463834,31497,1102],[464040,31890,1102],[460695,34639,1712],[456115,47149,1952],[448856,34176,2186],[448868,34272,2068],[447940,34309,2122],[450776,27561,1478],[450814,27889,1414],[450425,27810,3564],[450535,27439,1923],[450348,27603,1511],[455300,25392,309],[454691,25162,472],[456956,25796,372],[461458,35643,1712],[464579,33107,1102],[466004,39438,1102],[465956,38888,1102],[465730,37249,1102],[465083,34569,1102],[464914,34044,1102],[464732,33523,1102],[464413,32695,1102],[447887,26089,4358],[448002,26108,4789],[447670,26221,4960],[464233,32290,1102],[463615,31112,1102],[463384,30733,1102],[462886,29999,1102],[463141,30362,1102],[459524,34165,1712],[462619,29645,1102],[462340,29300,1102],[462050,28964,1102],[461750,28638,1102],[453097,35621,1848],[455909,35805,1672],[455741,36444,1722],[461164,28073,1102],[460881,27833,1102],[460589,27603,1102],[455633,33111,1495],[460290,27383,1102],[455667,27768,868],[454365,29176,1259],[459984,27174,1102],[459670,26976,1102],[459350,26788,1102],[459024,26611,1102],[457312,25902,1102],[458691,26446,1102],[458354,26292,1102],[458011,26150,1102],[450565,27122,1635],[450831,27159,2031],[446550,25978,8167],[446983,25931,9112],[446810,26369,4468],[455018,25460,570],[454691,25163,492],[447319,28268,1607],[447647,27811,1724],[448327,28009,1495],[433693,27875,2032],[433474,25304,1727],[434687,28062,2022],[455657,25623,531],[451842,27067,1114],[451747,27394,1167],[451516,27406,1204],[455532,25871,626],[447039,25403,8522],[447001,25465,9136],[446885,25396,7303],[444765,25502,4458],[444591,25364,3384],[444648,25253,1422],[452292,27180,1059],[445044,28664,1916],[444654,26805,1634],[445402,26952,1573],[451623,26752,1094],[451868,27023,3541],[452309,26765,1030],[438799,23960,2154],[437714,23912,1976],[437836,24138,1588],[439988,22725,1537],[440029,23066,1482],[451811,26658,3405],[448727,27148,1337],[448682,26823,1288],[448937,26918,4682],[449053,27088,1312],[449445,26920,1516],[449858,26950,1263],[445982,26935,4531],[445907,27101,3187],[445841,26823,7955],[442355,30434,2092],[441432,30019,2092],[441754,28292,1947],[447636,25895,5087],[445590,25167,8891],[445355,25243,8386],[445277,25017,8781],[445540,25269,6577],[445564,25562,6379],[445328,25536,8669],[445931,24682,7926],[445889,24714,7790],[445781,24582,6090],[444772,24879,4749],[444872,24986,8004],[444913,25717,6014],[444756,26118,4209],[444627,25615,1545],[444688,24408,1295],[444846,24634,3683],[444525,24691,3679],[445282,25309,4858],[444127,25163,1449],[439759,23183,1665],[439205,24083,1584],[441915,28062,2185],[442105,28038,4188],[436721,26007,1900],[435039,24445,1611],[439164,23454,2165],[431901,26675,1942],[431431,26791,8364],[431398,26546,1966],[438781,23659,2435],[432861,27326,2010],[432720,27698,2042],[432643,27432,2028],[438336,24342,1628],[438123,28888,2072],[441665,27627,1913],[432372,27234,2020],[431947,27003,1991],[432592,27074,1977],[428313,26439,1967],[427756,26940,1962],[427455,26830,1952],[438343,24075,2209],[425403,25652,1932],[425836,26335,1912],[425040,26196,1902],[437985,24283,1740],[426660,25586,1831],[426725,25372,10061],[426951,25535,1804],[430777,26911,2018],[431190,26716,14481],[431056,26744,1973],[428589,26888,2005],[429713,27380,1992],[428723,27191,1982],[431037,27142,2020],[430994,26917,1973],[427695,25799,1949],[427489,25614,9315],[426222,25934,1854],[426594,26083,1877],[430621,27196,2036],[426816,26597,1932],[423882,26035,1882],[425008,25732,1902],[456002,37710,1782],[451723,39243,2082],[461439,28322,1102],[453053,35299,1822],[457518,34419,1632],[455197,45364,1982],[456562,39201,1802],[454244,43583,2002],[458075,42049,1712],[457516,41161,1802],[452861,35651,1863],[450660,37531,2102],[450148,36748,2112],[431157,27053,10581],[431377,26988,2012],[431499,26323,9888],[431793,26314,14426],[431739,26345,1920],[431998,26478,1968],[432170,25807,1821],[432018,26093,1889],[428608,26467,1987],[428526,26486,12030],[432415,27559,2030],[432345,27423,11883],[432537,27392,2067],[431992,27195,10733],[431679,27163,11146],[432613,27225,11039],[432468,27271,8878],[426171,25565,1820],[426330,25733,1863],[427002,25892,1852],[427120,25838,9796],[427193,26114,1924],[430762,27230,9416],[430653,27188,8020],[431356,27426,2043],[431228,27468,9196],[431071,27251,8077],[427430,25716,1848],[427214,25684,1871],[431601,27197,7730],[431696,27198,2043],[431544,27472,2012],[431399,26428,1900],[426912,25874,1889],[426637,26033,1910],[427061,25494,9608],[431087,27503,2022],[431656,27539,11269],[431495,27104,2002],[431995,27348,2029],[431954,27381,2064],[432289,27523,9841],[431038,27244,2001],[426528,25943,10711],[426453,25556,10361],[426545,25728,1852],[426936,25440,1796],[426749,25942,9316],[426753,25677,9887],[447233,27588,1647],[447698,27463,1655],[445071,26580,3041],[445086,26082,4160],[446543,25407,9104],[446568,25719,8890],[446489,25609,1347],[447888,26827,3874],[448014,26673,3908],[448040,26983,3714],[445601,24560,8715],[445814,24509,1210],[446552,25843,7743],[446460,25117,9752],[446283,25510,8765],[447100,25468,3663],[442241,28031,1944],[442161,27883,1917],[445380,23828,4195],[445486,24087,2259],[445271,24055,1135],[444921,25077,2149],[444963,24998,1500],[444554,26100,1510],[445010,24234,1202],[445156,24448,2793],[445131,24520,7628],[445672,26272,6599],[448314,26343,4361],[448394,26725,4792],[445218,24659,1611],[444578,25585,2373],[444988,24638,1310],[444986,25413,4989],[445192,25280,6370],[444349,24959,1436],[445290,23662,1071],[445311,23198,1029],[432241,27606,2062],[446311,27776,1527],[445856,27549,1640],[445946,27429,3116],[447077,25963,8971],[447160,25826,3826],[445319,24389,4856],[445281,24525,5389],[445249,24446,1237],[445928,24415,8364],[446005,24343,6107],[446108,24526,8467],[445510,24816,6094],[446109,25287,7978],[445575,24375,5295],[446322,24593,8704],[446291,24894,9020],[445468,24889,6755],[445231,25208,5770],[445811,24280,5785],[448799,26641,4975],[449005,26733,1284],[446272,26841,8074],[446014,26694,5425],[447258,26802,3437],[447616,26820,3456],[447532,27102,1391],[447616,26405,3857],[445259,25786,7117],[445130,25775,7077],[444836,25220,3460],[447361,25595,8549],[446785,25110,7863],[448637,28261,1521],[450623,29674,1603],[446009,30429,2061],[445638,27059,4691],[445834,23971,5585],[445016,25198,4627],[444932,25265,5991],[446608,26322,8363],[446315,26681,3571],[447314,26630,4538],[446811,26639,3987],[447190,26400,5326],[446404,27368,3585],[447227,26214,4831],[447317,26206,3310],[446805,27432,2457],[446862,27301,1566],[446935,27375,4400],[446587,26556,7632],[447745,27499,5835],[447279,27364,2694],[446114,26303,7537],[446044,26488,8257],[446001,26417,5742],[445047,24179,4799],[445088,24133,4116],[445541,24274,1213],[445350,24151,4473],[445525,24320,6171],[445736,24049,2815],[446098,25510,8756],[446270,26033,8649],[445030,23834,1129],[445156,23577,4273],[448566,26795,3179],[448427,27041,4683],[447667,27054,3389],[447961,27432,1773],[448954,26384,1196],[451147,27035,1230],[450873,27093,1373],[449456,27039,1341],[448801,26430,3670],[449910,27302,1341],[450252,27793,1608],[450009,28004,1454],[445566,23890,1042],[446775,27677,1574],[446902,27038,4550],[446033,25658,7574],[447350,26399,5466],[447078,26238,8475],[444741,26123,4102],[444730,23537,1160],[445419,23761,3577],[448442,26864,1316],[448114,27070,3788],[448235,27295,1512],[448177,26934,1351],[447878,27012,1373],[448593,26619,4590],[451338,27200,1417],[448490,27210,1359],[457663,26020,1102],[456382,35155,1632],[451579,27604,1268],[451711,27449,3881],[450419,27012,4174],[451823,27452,1193],[451570,27783,1282],[445396,32229,2102],[446606,33115,2112],[445606,24858,8257],[445862,24032,8142],[446376,26486,4798],[452072,26951,1087],[451862,26643,1063],[445641,23958,4464],[445599,23984,5144],[445905,24195,7883],[445204,25154,7500],[445058,25138,3971],[444670,24795,1370],[451144,27166,1379],[451926,26996,1053],[444460,25427,1420],[444369,24562,1367],[446042,24926,9318],[446047,25142,8706],[445813,24959,8909],[445641,25319,7932],[445887,25402,7396],[445805,25578,8632],[446531,24807,8751],[445825,26626,7603],[445663,26001,6969],[445287,26117,6913],[447536,26249,5165],[447187,26960,2134],[445764,25103,6000],[445667,24997,7721],[449117,33832,2019],[449385,28244,1671],[450308,27281,1539],[452095,26981,3434],[452207,26969,1005],[450827,27877,1624],[449650,28442,1517],[450952,28909,1496],[450578,29347,1569],[450651,29440,3585],[445651,25181,8288],[444858,25504,6863],[439976,29464,2082],[446652,25049,10141],[446708,25275,9055],[446483,26261,8622],[446058,25964,8367],[445833,30081,1909],[443624,31102,2102],[446438,27696,3451],[446567,25182,9868],[447650,26735,3748],[451229,27850,1327],[451021,27151,3298],[448349,26355,4643],[448539,26202,3885],[448530,26368,5827],[448542,26487,3408],[448307,26065,4764],[447653,25975,3381],[444987,26722,1604],[446110,26048,7946],[445465,25617,6303],[445049,23406,1092],[436307,28419,2032],[450384,27933,1428],[453051,35603,2034],[436980,24057,1561],[314430,207249,1230],[316355,206791,1242],[314669,208453,1202],[318361,208953,1172],[316687,208899,1192],[317776,207285,1242],[319271,208784,1152],[320047,208371,1142],[319771,206542,1242],[323142,202960,1232],[327150,199075,1202],[325911,201792,1132],[327721,199830,1122],[328956,198774,1112],[333112,193411,1136],[330830,197303,1092],[312886,207209,1162],[313587,207937,1202],[312712,207384,1162],[313778,207489,1198],[319147,201156,1215],[320122,199958,1102],[319727,202427,1245],[319867,203514,1242],[319468,203160,7771],[320609,207872,1142],[321523,205143,1232],[363109,162872,1052],[361573,161240,1002],[361761,161057,1012],[364263,163928,1032],[363554,163787,1052],[364176,162373,1052],[364017,161209,1052],[362192,160639,1022],[363749,160169,1042],[363387,159480,1012],[362908,163067,1052],[362755,167217,8025],[362740,166993,1190],[363460,167065,992],[319004,203336,1240],[317349,204086,1252],[318390,202041,1213],[364237,164921,1022],[362338,165975,1056],[362458,164939,1056],[362638,166297,1058],[319238,201842,1206],[319510,202253,9956],[319333,202553,1225],[346165,182707,1105],[346507,182992,1070],[345923,183129,1115],[346931,180864,15344],[347250,181268,14727],[346905,181042,1156],[349509,181935,941],[351591,180056,892],[347816,183572,9642],[347267,180561,1172],[348781,181202,14764],[348703,181387,1054],[348630,181341,12375],[348357,182038,7234],[348401,182176,988],[348275,182166,12316],[347764,180836,1125],[347342,180529,12886],[357201,174332,942],[354706,177010,922],[352732,174699,1131],[362586,166308,7340],[362355,166095,4514],[362686,166667,1042],[362534,166786,2282],[363036,167838,992],[362775,167364,992],[313895,208084,1202],[321947,203319,1273],[321612,204086,1232],[321461,202706,1253],[314335,206482,1320],[316083,205747,1262],[335581,191314,9861],[335697,191227,6975],[335614,191344,1186],[348948,180230,1110],[348762,178829,1121],[349609,180456,1027],[347358,181270,1116],[347589,181282,10287],[346832,180804,14063],[346855,180668,1154],[346952,181401,1140],[346325,181582,1130],[346591,181158,1160],[347297,181312,10805],[347038,181655,11031],[345129,182313,1144],[343219,184235,1114],[342057,184895,1121],[346997,181745,1131],[336667,192051,10285],[336864,191883,1067],[336989,192075,14690],[339073,187565,1119],[347224,180230,1173],[347678,180163,1170],[347406,181655,1067],[346029,181660,1127],[346120,182362,1113],[345789,182093,1149],[343494,187404,982],[339758,190031,1023],[347720,180492,1149],[348444,182504,982],[348833,182403,979],[348353,181540,8116],[348745,181731,979],[349039,180939,1065],[348656,181009,1088],[348610,180651,1109],[348032,181289,4071],[348267,181107,1085],[348991,180577,1079],[349307,180854,10589],[349418,181222,994],[349374,180868,1031],[349661,180913,9921],[339190,190788,1009],[339440,190373,1027],[339488,190758,981],[334433,192736,1183],[334519,193426,1108],[333550,192918,1273],[346279,181220,1147],[336300,191898,9689],[335882,191383,9267],[336224,191419,5321],[336634,190105,1162],[337462,189421,13922],[337133,190013,1173],[339630,190263,8131],[339490,190844,992],[346544,180804,1168],[336942,191422,9695],[337272,191077,1146],[337318,191392,1188],[335614,192896,12391],[335958,192848,12277],[336138,193030,9785],[337925,188830,1141],[338108,190208,1145],[337543,189560,1157],[338294,191678,1011],[338132,191276,12766],[338246,191292,1057],[337636,190265,1141],[337528,191954,10153],[337363,191790,1081],[337424,191320,9883],[336787,191058,8205],[336251,190843,1191],[336119,190767,13686],[336209,190505,1231],[338213,190281,15733],[338155,190574,1117],[337163,190858,13787],[337230,190707,1242],[338524,190197,1094],[338533,190336,13562],[337732,191006,1116],[337184,190388,1200],[337683,190627,1136],[337541,191298,11557],[337703,190600,8021],[337891,190244,11310],[337388,191420,15867],[338427,191499,9914],[348226,180772,1130],[348482,180704,4908],[348176,180397,1138],[347627,179797,1155],[348038,179348,1161],[337774,191349,1059],[337820,191698,1057],[338989,191169,982],[339401,190852,12193],[320703,201104,12170],[320762,201386,12471],[320602,201128,1348],[320393,202284,1233],[321435,202522,10045],[335308,191431,1195],[335821,191275,13264],[336299,191219,1172],[362047,165655,1056],[362093,165996,1063],[345713,181839,10289],[345500,182185,1112],[336737,190734,1421],[336682,190451,1185],[337023,190431,12635],[338657,191248,997],[338566,190530,1066],[338627,188339,1164],[348208,181655,5847],[348431,181965,14870],[348199,181933,11682],[348951,181363,10274],[349083,181286,1035],[349129,181652,991],[348992,181711,10211],[348789,182072,994],[345151,185929,963],[348635,180553,7333],[349036,180418,13240],[347570,179834,6789],[336245,193003,11320],[335978,193505,9682],[348142,181627,11463],[347320,181731,10336],[347478,182337,6776],[347539,182686,1034],[347416,182701,14384],[320492,201080,9396],[320645,201483,1297],[320022,201383,7068],[320301,201011,11480],[320929,201064,10592],[320976,201416,1257],[321370,202021,1246],[321178,202080,12139],[321021,201759,1240],[321143,201171,8524],[336976,190153,5819],[335075,191677,12072],[334382,192365,1160],[335404,192169,1181],[335118,192530,1189],[335421,192759,9946],[336966,190748,4574],[336304,190418,8277],[336622,190774,6450],[347867,181500,1337],[347991,181769,9088],[347726,181802,11245],[347800,182521,10944],[347824,180368,9359],[347918,180488,10447],[348319,180604,9380],[319913,201268,1270],[320224,200755,1677],[320346,200659,3484],[320562,200771,1447],[321272,201277,1253],[321344,201252,11072],[321320,201639,1258],[322360,202869,1270],[322490,202316,1242],[336730,192274,10753],[336690,192227,14470],[336088,192708,9687],[336049,192316,9860],[347084,182426,1100],[346767,182538,1080],[346738,182340,9853],[347488,182029,12137],[347130,182789,1067],[346654,183656,10445],[346898,183219,10466],[347167,183329,9706],[346702,182880,12580],[347583,183043,981],[347136,182908,10057],[346487,182775,9745],[346552,183341,1037],[346277,183635,9379],[345970,183510,1066],[344926,184177,1067],[346017,183871,1044],[345820,184656,995],[346465,182663,1091],[347181,182110,12188],[346723,182185,1119],[346458,182385,10065],[336350,191356,7180],[336694,190963,7095],[349332,180538,1059],[349429,180818,12371],[349464,181579,969],[349174,182041,922],[349366,181684,9874],[349879,180751,970],[349973,181485,933],[349655,180820,988],[337253,191560,13731],[336538,191598,9347],[336347,191582,1165],[336626,191973,14059],[336596,191846,9693],[338903,190476,1053],[318815,201911,1237],[320960,200956,6462],[321757,201899,1252],[322263,202149,1261],[321856,202637,1265],[347806,181170,1109],[334864,193363,1090],[335886,193495,1013],[333818,195062,1053],[335166,192917,1131],[348117,183262,14002],[349700,181167,972],[349118,182214,11024],[346418,182285,1127],[349438,181918,10446],[319542,201023,1245],[319730,200938,9429],[349607,180616,9716],[350220,181074,944],[347039,182080,1107],[346181,182387,10362],[319025,201451,10759],[319927,202208,9828],[319680,202075,1241],[320481,200567,5458],[320502,200452,1201],[320596,200493,7142],[320275,200533,7437],[320469,200611,9907],[321834,201837,7769],[346696,184026,10344],[346949,183961,988],[346148,184913,942],[346392,184500,947],[344972,184533,1055],[345594,182882,1126],[345667,183168,7134],[349652,181464,8763],[349743,181505,948],[337580,192268,10299],[336957,192597,1031],[337861,192041,1002],[336833,192357,12018],[334817,192999,1117],[334588,193379,8165],[362287,168704,982],[359584,171751,932],[358875,168599,1102],[335753,192411,1153],[335772,192666,10019],[349994,181426,8759],[348067,181808,16009],[319868,200936,1267],[320158,200516,1211],[319818,200562,1248],[320113,200185,1202],[320184,200412,6437],[362528,167295,1276],[362235,166994,1204],[362247,165281,1065],[362428,166670,1045],[361864,167043,1085],[362385,166325,1064],[364015,165772,1022],[322330,202948,7072],[362561,167692,1005],[362054,165422,6710],[361726,165994,1102],[360906,166704,1101],[345495,185146,987],[344484,184288,1090],[344526,184621,1073],[344844,184272,6198],[346071,184632,10082],[345642,183265,1087],[319431,203295,1218],[336554,190895,10856],[319519,200884,6700],[313729,207097,1242],[314145,207108,2118],[314382,206850,1292],[314063,206972,1281],[335978,193505,1012],[347816,183572,972],[324535,201237,2066],[326025,200001,2111],[323719,202321,1983],[336133,189602,7396],[336282,189421,9795],[336350,189622,10357],[345881,180097,1966],[346071,180294,8519],[345927,180436,1987],[326850,199020,2128],[326305,198932,1504],[326800,198650,2116],[335812,190597,1144],[336456,189959,15407],[341359,185211,2045],[335767,190204,1233],[335534,190600,1463],[335049,190631,8697],[335203,190419,6250],[335213,190725,1191],[336496,189030,1238],[336541,189403,1158],[336097,190071,10222],[336083,189800,14975],[336148,189639,1985],[338570,187460,2008],[338522,187110,1985],[338727,187243,1108],[336992,188950,1181],[337074,189141,1963],[335703,190030,9266],[335391,190011,9615],[335462,189794,1941],[339240,186130,1049],[339673,185875,1964],[339722,186202,2037],[336348,189974,13894],[336169,190081,1466],[331054,194259,2086],[331288,193986,1098],[331380,194134,2091],[350019,176825,1116],[339426,187008,2017],[339739,186662,1431],[335995,190015,8920],[358525,168102,2075],[358161,168642,1141],[358154,168129,2005],[339021,186707,1989],[339337,186819,1119],[334991,190312,8477],[336626,189602,1979],[335751,189732,1885],[338153,187412,1073],[338436,186961,1057],[362065,163931,1027],[362372,163737,2060],[335506,190171,1860],[335392,190573,8587],[334564,190789,1670],[334588,191220,1208],[334276,191129,1958],[335181,190306,1512],[326716,198529,1196],[327236,198531,2121],[338788,187535,1433],[359482,166612,2112],[359038,167037,2105],[358683,167202,1006],[333822,191448,1077],[334837,190462,1092],[335294,190909,1976],[346225,180391,1948],[346182,180042,1985],[363051,164037,2151],[362765,164422,2126],[345594,180192,1963],[355642,170240,2099],[355734,170942,2079],[355285,170503,1013],[336098,189308,1913],[341312,184859,2039],[340762,184818,1047],[341265,184516,2025],[349669,176328,2070],[349378,176420,2020],[349578,176191,1054],[352421,173849,2071],[352639,173493,2066],[352656,173941,1481],[345405,180988,2014],[360379,165897,6536],[360056,166458,1054],[360719,165335,1025],[360422,165564,2111],[361238,165145,2094],[361332,165829,2139],[360781,165659,1288],[361648,165296,1296],[362251,164744,2107],[334922,190621,1977],[359479,167155,1082],[359736,166807,1059],[359832,166976,2079],[350265,175690,1155],[349877,175807,1030],[350586,175288,1044],[362163,164082,2110],[360465,165896,2094],[360867,165883,2063],[360510,166231,2109],[363242,163486,1058],[363007,163712,2133],[362956,163391,2014],[361963,164450,2095],[361862,164253,1050],[323252,202068,1968],[323300,202410,2011],[322791,202357,1260],[324405,200731,1211],[326396,198523,1102],[331869,193590,1965],[330961,194112,1079],[334005,192292,2054],[330795,195420,2114],[356334,169760,2118],[356721,170086,2077],[356380,170136,2067],[358783,167370,2091],[359028,167537,1052],[358824,167727,2009],[349007,177597,1995],[348711,177961,2018],[359350,167340,2127],[359254,167152,1149],[358382,167589,1015],[350356,175895,2040],[349971,175958,2060],[327856,198265,2161],[327760,197568,2113],[327973,197347,1147],[328062,197482,2117],[362571,163560,1037],[356128,170552,1932],[355851,170221,2104],[357805,168907,2011],[357709,168188,2018],[349204,177275,1256],[348962,177215,2074],[349194,176780,2048],[356929,168973,2090],[357251,168782,1021],[354941,170925,1018],[355036,171063,2091],[347439,178397,1127],[347851,177986,1075],[347910,178292,1343],[354233,172014,1321],[353379,172524,1074],[358065,167965,1062],[346134,179695,1972],[346484,179922,1977],[354603,171639,1136],[355034,171577,1101],[354689,171847,1947],[352464,174175,2076],[352153,173872,2047],[350399,176216,2043],[352779,172950,1014],[351813,174117,1069],[357855,169235,2106],[357348,168922,2095],[351540,175146,1366],[353052,172895,1046],[353147,173053,2078],[352872,173108,2024],[353954,173007,2068],[353473,172695,2072],[355755,170085,1025],[356041,169826,2056],[347527,178570,2041],[347572,178936,1984],[349101,176625,1039],[336977,188459,1891],[348534,177147,1056],[348190,177524,1053],[346654,178869,1694],[341866,183508,1040],[341175,184360,1052],[339588,185731,1048],[358483,167776,2090],[358873,168071,2053],[359090,167816,1393],[359394,167682,2110],[354271,172394,1148],[348282,177717,1995],[340365,185165,1343],[340854,184991,2019],[341621,184609,1116],[339966,185608,1112],[343011,182404,1618],[343472,182585,2025],[343071,182663,1973],[342286,183579,1997],[341951,183650,1963],[342203,183438,1077],[342535,183215,1978],[342444,183030,1052],[346044,179500,1056],[346350,179402,1066],[342336,183949,2003],[342050,184367,2016],[342003,184013,2018],[342579,183536,2000],[342796,183614,1153],[339331,186308,1989],[342698,182937,1037],[343076,183183,1079],[342748,183263,1127],[344896,180596,1053],[345271,180467,1088],[345359,180643,2004],[329030,196206,1099],[329457,195740,1088],[329545,195845,2094],[361592,164989,1085],[361546,164640,1086],[356237,169623,1009],[345074,181449,1978],[349719,176696,2076],[350642,175606,1233],[348668,177628,2045],[349393,176880,1378],[349467,177082,2046],[352970,173815,2080],[350726,175792,2074],[343518,182927,2020],[331616,194021,2106],[331534,193855,1281],[330747,195057,2118],[331061,194824,1150],[334669,191395,2002],[330700,194717,2085],[334288,191660,1159],[334370,191827,1986],[333103,192852,2049],[332670,193483,1272],[332661,192974,2081],[362860,163195,1048],[338933,186541,1069],[338679,186901,1087],[333880,191756,1313],[346439,179599,1942],[346729,179602,1372],[346710,179144,1956],[347122,179035,1994],[340055,185795,2011],[340437,185361,1985],[344988,181258,1125],[344953,180863,1352],[343780,181813,1639],[343843,182111,1983],[343415,182275,1808],[330329,195213,2097],[337356,188196,1088],[337404,188548,1108],[338234,187558,1950],[337911,188279,1980],[327806,197912,2127],[327508,198032,2124],[328445,197657,2139],[323175,201923,1191],[352727,174155,2081],[352325,173666,1055],[352245,174563,2064],[351947,174608,2031],[351903,174264,2060],[351138,175396,2079],[351091,175060,2054],[352546,173360,1020],[340104,186145,2037],[332258,193437,2095],[332168,193296,1108],[333533,192379,2025],[333925,192145,1220],[330614,194610,1089],[333491,192043,2055],[333054,192477,2044],[329993,195711,2139],[329947,195379,2108],[330244,195076,1159],[328350,196958,2102],[328259,196834,1092],[330355,195686,1581],[329123,196341,2137],[328663,196508,2044],[329596,196208,2137],[327672,197470,1095],[328712,196820,2144],[328757,197169,2137],[327422,197901,1185],[327191,198207,2096],[327100,198057,1110],[353904,172639,2055],[353859,172318,2027],[351527,174664,2087],[351001,174917,1051],[347072,178696,1918],[343887,182436,1990],[344207,182174,1138],[345800,179925,1157],[348595,177403,1427],[348328,178035,2037],[326382,199158,2144],[329640,196555,2104],[328085,197951,1581],[348878,177011,1259],[344114,181520,1054],[344169,181798,1310],[344603,181719,1122],[344569,181309,1411],[344507,181031,1055],[332302,193792,2048],[331660,194354,2097],[331424,194464,2112],[324774,200449,1879],[325176,200456,1510],[324829,200725,2126],[323904,201322,1202],[323622,201578,1996],[324230,201009,2017],[323982,201487,1963],[325114,200141,1235],[324486,200853,2090],[323651,202049,1546],[325632,200133,2127],[325921,199384,1813],[325574,199844,1867],[337867,187951,1972],[330037,196067,2096],[338276,187919,1859],[325976,199655,2081],[359539,167415,1433],[321565,101452,7022],[316136,108781,7022],[318329,98955,7022],[318266,97697,7022],[318913,98197,7022],[312086,105772,7022],[317461,98548,7022],[318173,97626,7022],[321565,101452,482],[316136,108781,482],[321565,101452,3622],[316136,108781,3622],[318329,98955,482],[318913,98197,482],[318266,97697,482],[318173,97626,482],[317461,98548,482],[312086,105772,482],[326728,103507,3622],[320407,112038,3622],[320158,111769,3622],[324474,101768,3622],[324026,98263,3622],[324885,98926,3622],[320119,111821,3622],[326728,103507,482],[320407,112038,482],[326728,103507,3612],[320407,112038,3612],[324474,101768,482],[324885,98926,482],[324026,98263,482],[320158,111769,482],[320119,111821,482],[326772,103541,3612],[332412,103931,3612],[328622,101071,3612],[332412,103931,472],[328622,101071,472],[326772,103541,472],[326728,103507,472],[320407,112038,472],[324212,70905,3332],[315416,63807,3332],[325717,75056,3332],[322904,72789,3332],[322787,72695,3332],[315416,63807,392],[315416,63807,422],[324212,70905,392],[324212,70905,422],[322787,72695,392],[322787,72695,422],[322904,72789,392],[242641,106650,3712],[250615,112571,3712],[242651,106667,3712],[248667,115309,3712],[242584,106710,3712],[239452,108734,3712],[242641,106650,422],[242641,106650,3532],[250615,112571,3532],[242651,106667,422],[242584,106710,422],[239452,108734,422],[239452,108734,3722],[248667,115309,3722],[248099,116108,3722],[250284,117662,3722],[248559,120087,3722],[235960,110991,422],[245458,117882,422],[296708,117959,3212],[292089,119783,3212],[300072,109133,3212],[292365,119989,3212],[292588,123477,3212],[290772,122121,3212],[303927,112023,582],[298495,119282,582],[300072,109133,582],[300072,109133,3142],[292089,119783,582],[292089,119783,3142],[292365,119989,582],[290772,122121,582],[292588,123477,582],[296708,117959,582],[314171,94666,4352],[308080,102796,4352],[314101,94612,4352],[305788,100976,4352],[311270,92427,4352],[311966,89166,4352],[313107,90047,4352],[304038,99752,4352],[304323,99873,4352],[304239,99985,4352],[303999,99804,4352],[305704,101088,4352],[308041,102848,4352],[314171,94666,532],[308080,102796,532],[314101,94612,532],[311270,92427,532],[313107,90047,532],[311966,89166,532],[304038,99752,532],[303999,99804,532],[304239,99985,532],[304323,99873,532],[305788,100976,532],[305704,101088,532],[308041,102848,532],[275487,95750,4292],[277386,97204,4292],[275086,96274,4292],[266754,90749,4292],[266653,90599,4292],[266928,90632,4292],[267576,90197,4292],[267530,90011,4292],[268184,90988,4292],[267476,90048,4292],[273922,98160,4292],[266828,90482,4292],[266106,91183,4292],[272802,99660,4292],[272509,99441,4292],[265914,91095,4292],[266006,91033,4292],[263469,92458,4292],[265675,90738,4292],[263358,92292,4292],[263442,92476,4292],[275565,99388,4292],[275687,99479,4292],[275487,95750,452],[277386,97204,452],[275487,95750,462],[277386,97204,462],[275086,96274,452],[275086,96274,462],[268184,90988,452],[268184,90988,462],[267530,90011,452],[263442,92476,4012],[272509,99441,452],[272509,99441,4012],[272802,99660,452],[273922,98160,452],[275565,99388,452],[275565,99388,662],[275565,99388,2862],[275687,99479,452],[275687,99479,662],[275687,99479,2862],[261311,95816,4012],[268781,99073,4012],[260000,94772,4012],[262643,92771,4012],[262755,92937,4012],[259894,94614,4012],[260810,95435,4012],[259967,94794,4012],[260592,95722,4012],[261093,96103,4012],[271351,100992,4012],[267628,100616,4012],[263442,92476,432],[272509,99441,432],[259894,94614,432],[260000,94772,432],[259967,94794,432],[259967,94794,4002],[260810,95435,432],[260810,95435,4002],[260592,95722,432],[260592,95722,4002],[261093,96103,432],[261093,96103,4002],[261311,95816,432],[261311,95816,4002],[267628,100616,432],[267628,100616,4002],[268781,99073,432],[271351,100992,432],[317461,98548,7642],[312086,105772,7642],[314380,96170,7642],[314171,94666,7642],[315030,95329,7642],[308080,102796,7642],[314380,96170,482],[315030,95329,482],[314171,94666,482],[308080,102796,482],[266612,101977,4002],[267927,105623,4002],[256054,97221,4002],[259286,95251,4002],[257982,95896,4002],[259180,95093,4002],[269207,103914,4002],[261311,95816,422],[267628,100616,422],[261093,96103,422],[260592,95722,422],[260810,95435,422],[259967,94794,422],[259286,95251,422],[259180,95093,422],[257982,95896,422],[256054,97221,422],[267927,105623,422],[269207,103914,422],[266612,101977,422],[284629,97909,2902],[284611,97797,2902],[284676,97845,2902],[278575,106760,2902],[277332,103623,2902],[277273,108504,2902],[276816,109378,2902],[275127,106624,2902],[284489,97659,2902],[284664,97725,2902],[284518,97618,2902],[277167,100588,2902],[283785,97147,2902],[283815,97106,2902],[281203,95205,2902],[281077,95373,2902],[275762,102462,2902],[273524,105447,2902],[271299,108414,2902],[275386,111292,2902],[277399,108598,2902],[284629,97909,622],[278575,106760,622],[284676,97845,622],[284611,97797,622],[284664,97725,622],[284518,97618,622],[284489,97659,622],[283785,97147,622],[283815,97106,622],[281203,95205,622],[281077,95373,622],[277167,100588,622],[277167,100588,662],[277167,100588,2862],[275762,102462,622],[275762,102462,662],[275762,102462,2862],[277332,103623,622],[275127,106624,622],[273524,105447,622],[273524,105447,662],[273524,105447,2862],[271299,108414,622],[271299,108414,662],[271299,108414,2862],[275386,111292,622],[276816,109378,622],[277399,108598,622],[277273,108504,622],[288352,100511,3332],[282894,107738,3332],[281183,106472,3332],[285324,98415,3332],[285371,98351,3332],[278575,106760,3332],[284629,97909,3332],[280111,107907,3332],[288352,100511,592],[282894,107738,592],[288352,100511,642],[282894,107738,642],[288352,100511,3312],[282894,107738,3312],[285371,98351,592],[285324,98415,592],[284629,97909,592],[278575,106760,592],[280111,107907,592],[281183,106472,592],[253797,98830,2692],[260846,103843,2692],[252978,99386,2692],[252813,99500,2692],[252756,99539,2692],[252584,99659,2692],[251832,100239,2692],[251803,100198,2692],[256694,109681,2692],[251635,100376,2692],[247639,103079,2692],[251606,100335,2692],[247339,103347,2692],[247459,103204,2692],[247418,103232,2692],[247311,103306,2692],[253797,98830,412],[252978,99386,412],[252813,99500,412],[252756,99539,412],[252584,99659,412],[251803,100198,412],[251832,100239,412],[251635,100376,412],[251606,100335,412],[247639,103079,412],[247459,103204,412],[247418,103232,412],[247311,103306,412],[247339,103347,412],[247339,103347,422],[256694,109681,412],[284886,109212,3312],[282523,116259,3312],[280662,114869,3312],[292252,103337,3312],[292241,103329,3312],[292252,103337,642],[282523,116259,642],[292241,103329,642],[284886,109212,642],[280662,114869,642],[296202,106265,3312],[290725,113533,3312],[289095,112327,3312],[284857,118002,3312],[296202,106265,602],[290725,113533,602],[296202,106265,3142],[290725,113533,3142],[292252,103337,602],[282523,116259,602],[284857,118002,602],[289095,112327,602],[247339,103347,3532],[256694,109681,3532],[247190,103432,3532],[247202,103448,3532],[255514,116056,3532],[258922,111265,3532],[247202,103448,422],[247190,103432,422],[291454,116686,3142],[291668,116846,3142],[290197,118370,3142],[292926,115161,3142],[300072,109133,572],[292089,119783,572],[296202,106265,572],[290725,113533,572],[292926,115161,572],[291668,116846,572],[291454,116686,572],[290197,118370,572],[278796,93349,4552],[279734,94059,4552],[278748,93413,4552],[271242,88061,4552],[271358,87914,4552],[278151,92962,4552],[271448,87794,4552],[278200,92899,4552],[279609,94227,4552],[271245,87911,4552],[275487,95750,4552],[277386,97204,4552],[270215,87885,4552],[270317,87888,4552],[270314,88038,4552],[268158,89072,4552],[270126,87752,4552],[268398,89429,4552],[268418,89657,4552],[268306,89491,4552],[268184,90988,4552],[267770,90091,4552],[267530,90011,4552],[267658,89925,4552],[275086,96274,4552],[278796,93349,462],[279734,94059,462],[278748,93413,462],[278151,92962,462],[278200,92899,462],[279609,94227,462],[269878,107003,2862],[271217,108003,2862],[271044,108235,2862],[269878,107003,662],[271217,108003,662],[271044,108235,662],[285255,79041,7572],[285101,79074,7572],[285230,78998,7572],[282017,83298,7572],[283768,79886,7572],[284660,85282,7572],[284805,79257,7572],[285061,79004,7572],[284763,79189,7572],[284029,79736,7572],[284946,85484,7572],[293415,85075,7572],[283987,79668,7572],[283731,79826,7572],[281832,81082,7572],[281565,81549,7572],[281696,82796,7572],[281489,81212,7572],[281796,81022,7572],[281449,81216,7572],[281485,81557,7572],[281616,82804,7572],[281703,83150,7572],[281653,83155,7572],[281975,83354,7572],[284618,85338,7572],[284898,85548,7572],[290183,89408,7572],[285255,79041,442],[293415,85075,442],[293415,85075,522],[293415,85075,3782],[285230,78998,442],[285101,79074,442],[285061,79004,442],[284763,79189,442],[284805,79257,442],[284029,79736,442],[283987,79668,442],[283731,79826,442],[283768,79886,442],[281832,81082,442],[281796,81022,442],[281489,81212,442],[281449,81216,442],[281485,81557,442],[281565,81549,442],[281696,82796,442],[281616,82804,442],[281653,83155,442],[281703,83150,442],[281975,83354,442],[282017,83298,442],[284660,85282,442],[284618,85338,442],[284898,85548,442],[284946,85484,442],[290183,89408,442],[290183,89408,522],[290183,89408,3782],[289448,76581,7572],[296144,81421,7572],[286005,78543,7572],[288665,76982,7572],[288691,77026,7572],[286030,78586,7572],[293456,85105,7572],[289448,76581,422],[296144,81421,422],[289448,76581,432],[289448,76581,3612],[296144,81421,3612],[288691,77026,422],[288665,76982,422],[286005,78543,422],[286030,78586,422],[285255,79041,422],[293415,85075,422],[293456,85105,422],[293456,85105,3782],[299707,85805,3782],[294575,92699,3782],[295979,86971,3782],[297830,84435,3782],[293444,85121,3782],[294375,92474,3782],[291143,90052,3782],[291107,90100,3782],[293647,91929,3782],[292519,91084,3782],[293611,91977,3782],[292483,91132,3782],[294339,92522,3782],[294575,92699,522],[299707,85805,3482],[294575,92699,3482],[291107,90100,522],[291143,90052,522],[292519,91084,522],[292483,91132,522],[293611,91977,522],[293647,91929,522],[294375,92474,522],[294339,92522,522],[296317,81184,3612],[293011,74542,3612],[298591,82844,3612],[290849,75673,3612],[290977,75595,3612],[291060,75731,3612],[290745,75829,3612],[290704,75761,3612],[289995,76287,3612],[289953,76218,3612],[289423,76538,3612],[307471,85698,3612],[300675,84679,3612],[298442,83049,3612],[303152,86371,3612],[305534,88209,3612],[303094,86446,3612],[300666,84691,3612],[293011,74542,432],[307471,85698,432],[291060,75731,432],[290977,75595,432],[290849,75673,432],[290704,75761,432],[290745,75829,432],[289995,76287,432],[289953,76218,432],[289423,76538,432],[300666,84691,432],[300666,84691,3482],[303094,86446,432],[303094,86446,512],[303094,86446,3482],[303152,86371,432],[305534,88209,432],[297421,71719,3632],[293167,74447,3632],[293211,74232,3632],[293083,74310,3632],[308700,83175,3632],[307471,85698,3632],[293011,74542,3632],[309150,83523,3632],[307585,85551,3632],[310121,81333,3632],[297421,71719,432],[310121,81333,432],[297421,71719,3212],[310121,81333,3212],[293211,74232,432],[293083,74310,432],[293167,74447,432],[307585,85551,432],[309150,83523,432],[308700,83175,432],[301931,87954,3482],[301057,87279,3482],[299350,89491,3482],[299803,85875,3482],[294815,92804,3482],[295527,93338,3482],[298894,95920,3482],[301998,91535,3482],[294779,92852,3482],[295491,93386,3482],[299350,89491,512],[301998,91535,512],[301998,91535,522],[301057,87279,512],[301931,87954,512],[299707,85805,512],[294575,92699,512],[294779,92852,512],[294815,92804,512],[295527,93338,512],[295491,93386,512],[298894,95920,512],[298894,95920,522],[309662,74799,3212],[305046,72056,3212],[306096,72012,3212],[301740,70990,3212],[303297,70652,3212],[302106,69696,3212],[301213,69791,3212],[301961,69411,3212],[301318,70108,3212],[301115,69841,3212],[301265,70135,3212],[300849,71465,3212],[300485,71174,3212],[300020,70398,3212],[312896,77738,3212],[313106,77491,3212],[309662,74799,422],[313106,77491,422],[306096,72012,422],[305046,72056,422],[303297,70652,422],[302106,69696,422],[301961,69411,422],[297421,71719,422],[310121,81333,422],[312896,77738,422],[308637,91517,6312],[304038,99752,6312],[301998,91535,6312],[311966,89166,6312],[309245,90729,6312],[310164,87775,6312],[308392,90071,6312],[304485,88313,6312],[298894,95920,6312],[311966,89166,522],[304038,99752,522],[310164,87775,522],[308392,90071,522],[309245,90729,522],[308637,91517,522],[304485,88313,522],[324212,70905,6592],[322787,72695,6592],[315416,63807,6592],[318955,77641,6592],[309811,66170,6592],[307588,68879,6592],[318753,77889,6592],[322904,72789,6592],[309811,66170,422],[307588,68879,422],[318753,77889,422],[331953,177538,6512],[332072,177660,6512],[328396,181227,6512],[321097,173980,6512],[325634,169480,6512],[332644,176868,6512],[332956,176802,6512],[332762,176990,6512],[325634,169480,592],[332956,176802,592],[321097,173980,592],[321097,173980,602],[321097,173980,4962],[328396,181227,592],[328396,181227,602],[328396,181227,4962],[332072,177660,592],[331953,177538,592],[332644,176868,592],[332762,176990,592],[316455,176669,4962],[320140,173015,4962],[317163,177483,4962],[316405,176719,4962],[325542,183891,4962],[324657,184882,4962],[324774,184631,4962],[324843,184703,4962],[325611,183963,4962],[328424,181255,4962],[320140,173015,602],[316455,176669,602],[316405,176719,602],[317163,177483,602],[317163,177483,612],[317163,177483,3442],[324657,184882,602],[324657,184882,612],[324657,184882,3442],[324843,184703,602],[324774,184631,602],[325542,183891,602],[325611,183963,602],[328424,181255,602],[288911,148046,3492],[282802,156786,3492],[287275,146884,3492],[288786,144779,3492],[290394,145896,3492],[279627,154543,3492],[285741,145795,3492],[288911,148046,852],[282802,156786,852],[288911,148046,872],[290394,145896,852],[288786,144779,852],[288786,144779,3392],[287275,146884,852],[287275,146884,1022],[287275,146884,3392],[285741,145795,852],[285741,145795,1022],[285741,145795,3392],[288907,151557,3692],[288911,148046,3692],[291397,147971,3692],[290602,147418,3692],[290394,145896,3692],[291247,146489,3692],[282802,156786,3692],[290368,152572,3692],[285895,158972,3692],[290368,152572,872],[290368,152572,3482],[285895,158972,872],[285895,158972,3482],[292764,174709,3382],[286234,183959,3382],[287795,175352,3382],[289759,172580,3382],[283137,181760,3382],[287725,175302,3382],[286234,183959,752],[283137,181760,752],[289172,161287,3482],[291133,158482,3482],[292285,149829,3482],[295561,152147,3482],[293402,155236,3482],[294120,179648,3392],[289449,186241,3392],[292613,178581,3392],[293735,174008,3392],[295145,175007,3392],[294849,175425,3392],[292764,174709,3392],[286234,183959,3392],[293142,174176,3392],[293419,173784,3392],[294120,179648,752],[289449,186241,752],[289449,186241,762],[299743,178853,3472],[292838,188647,3472],[294120,179648,3472],[296375,176466,3472],[289449,186241,3472],[299743,178853,762],[292838,188647,762],[292838,188647,772],[299768,178870,3482],[303258,177423,3482],[301283,180136,3482],[299036,183223,3482],[301641,176246,3482],[299743,178853,3482],[292838,188647,3482],[300669,184528,3482],[295734,190703,3482],[299036,183223,772],[300669,184528,772],[301283,180136,772],[295734,190703,772],[297606,163114,3692],[297010,162788,3692],[297055,162724,3692],[306304,169098,3692],[297419,167823,3692],[294771,165948,3692],[303966,172337,3692],[297606,163114,3642],[306304,169098,3642],[297419,167823,3542],[303966,172337,3542],[295659,171292,3542],[295170,170939,3542],[301616,175592,3542],[297419,167823,902],[303966,172337,902],[313672,195421,3402],[312750,196309,3402],[307093,187853,3402],[300705,194189,3402],[297256,191823,3402],[300572,192262,3402],[298508,190251,3402],[298658,190397,3402],[301782,193120,3402],[309869,199084,3402],[309946,199163,3402],[309485,199607,3402],[307403,200439,3402],[307829,200837,3402],[308461,200517,3402],[308041,201075,3402],[307816,200852,3402],[308537,200596,3402],[309408,199528,3402],[311310,197697,3402],[314159,194917,3402],[310813,198175,3402],[310889,198254,3402],[311386,197776,3402],[312246,196795,3402],[312826,196388,3402],[312322,196874,3402],[314253,195014,3402],[313748,195500,3402],[307093,187853,762],[314159,194917,762],[301782,193120,762],[300572,192262,762],[298658,190397,762],[298508,190251,762],[297256,191823,762],[300705,194189,762],[307403,200439,762],[307829,200837,762],[307816,200852,762],[308041,201075,762],[308537,200596,762],[308461,200517,762],[309408,199528,762],[309485,199607,762],[309946,199163,762],[309869,199084,762],[310813,198175,762],[310889,198254,762],[311386,197776,762],[311310,197697,762],[312246,196795,762],[312322,196874,762],[312826,196388,762],[312750,196309,762],[313672,195421,762],[313748,195500,762],[314253,195014,762],[299111,159430,3642],[308584,165940,3642],[299236,160814,3642],[298500,160292,3642],[299111,159430,912],[308584,165940,912],[299111,159430,3452],[308584,165940,3452],[313000,159823,3452],[311127,162417,3452],[308988,156802,3452],[313059,159741,3452],[310952,162660,3452],[304385,157918,3452],[306492,155000,3452],[301498,155806,3452],[308744,165718,3452],[299036,159377,3452],[298942,159308,3452],[313000,159823,3352],[311127,162417,3352],[310485,184487,4512],[317462,191694,4512],[317294,191858,4512],[307093,187853,4512],[314159,194917,4512],[310485,184487,662],[317462,191694,662],[310485,184487,3412],[317462,191694,3412],[307093,187853,662],[314159,194917,662],[317294,191858,662],[314327,182023,3412],[320784,188453,3412],[312691,180394,3412],[309519,183489,3412],[314327,182023,642],[320784,188453,642],[312691,180394,642],[309519,183489,642],[310485,184487,642],[317462,191694,642],[324384,184979,3442],[316408,179960,3442],[315544,179089,3442],[320784,188453,3442],[314327,182023,3442],[323662,185680,3442],[320878,188549,3442],[323746,185766,3442],[324468,185065,3442],[315544,179089,612],[316408,179960,612],[314327,182023,612],[320784,188453,612],[320878,188549,612],[323746,185766,612],[323662,185680,612],[324384,184979,612],[324468,185065,612],[255553,149470,6002],[249682,157867,6002],[250776,148722,6002],[252027,146963,6002],[246297,155387,6002],[255553,149470,632],[249682,157867,632],[249682,157867,642],[255553,149470,5062],[249682,157867,5062],[250776,148722,3492],[246297,155387,632],[246297,155387,3492],[259601,152388,5062],[261957,148485,5062],[262285,148725,5062],[253525,160683,5062],[258146,145761,5062],[259601,152388,642],[253525,160683,642],[259601,152388,732],[259601,152388,3212],[253525,160683,3212],[262285,148725,642],[262285,148725,732],[262285,148725,3212],[261957,148485,642],[261957,148485,3212],[261558,155572,3212],[262506,154431,3212],[259635,157930,3212],[256062,162600,3212],[261558,155572,642],[259635,157930,642],[262506,154431,642],[262506,154431,732],[256062,162600,642],[267792,156450,3202],[260949,166074,3202],[263965,158748,3202],[266311,155371,3202],[257683,163769,3202],[262287,157536,3202],[262204,157476,3202],[267792,156450,672],[260949,166074,672],[260949,166074,682],[257683,163769,672],[263821,152709,3212],[265460,150560,3212],[265672,150282,3212],[263454,146531,3212],[266773,148837,3212],[262531,154401,3212],[265460,150560,732],[263821,152709,732],[265672,150282,732],[266773,148837,732],[266773,148837,742],[263454,146531,732],[262531,154401,732],[270365,159537,3382],[264082,168286,3382],[268788,158399,3382],[267792,156450,3382],[269351,157584,3382],[260949,166074,3382],[270365,159537,682],[264082,168286,682],[264082,168286,712],[270365,159537,3372],[264082,168286,3372],[274059,160802,3372],[267277,170541,3372],[272044,160688,3372],[272689,159744,3372],[270580,159692,3372],[270638,159611,3372],[270451,159599,3372],[274059,160802,712],[267277,170541,712],[267277,170541,732],[274059,160802,3312],[267277,170541,3312],[276535,160850,3312],[275055,162889,3312],[273287,165325,3312],[274359,160424,3312],[274992,159626,3312],[274887,166422,3312],[270371,172725,3312],[274887,166422,3302],[270371,172725,732],[270371,172725,3302],[280410,165385,3302],[273617,175016,3302],[278215,165241,3302],[278937,164294,3302],[276699,164113,3302],[273617,175016,732],[283719,167628,3302],[276879,177318,3302],[282042,166469,3302],[281125,165914,3302],[281185,165834,3302],[276879,177318,732],[286221,170789,3482],[279959,179504,3482],[284627,169698,3482],[284645,169673,3482],[276879,177318,3482],[283584,168997,3482],[283719,167628,3482],[284266,168007,3482],[286221,170789,722],[279959,179504,722],[279959,179504,742],[283719,167628,722],[276879,177318,722],[287725,175302,3572],[283137,181760,3572],[286184,174211,3572],[286221,170789,3572],[288447,171017,3572],[279959,179504,3572],[286858,169891,3572],[287725,175302,742],[283137,181760,742],[243206,140143,3472],[241698,137373,3472],[244041,139015,3472],[237003,148528,3472],[240434,139151,3472],[233982,146308,3472],[243206,140143,542],[237003,148528,542],[237003,148528,562],[233982,146308,542],[246198,142342,3472],[240105,150808,3472],[246198,142342,562],[240105,150808,562],[240105,150808,572],[249189,144540,3482],[243208,153088,3482],[243152,153047,3482],[240105,150808,3482],[246198,142342,3482],[249189,144540,572],[243208,153088,572],[243208,153088,602],[243152,153047,572],[249067,147507,3492],[243208,153088,3492],[251722,144918,3492],[251072,145832,3492],[250531,145447,3492],[249854,143589,3492],[249189,144540,3492],[250776,148722,602],[246297,155387,602],[271791,135405,4442],[272838,133968,4442],[273004,136289,4442],[274068,134829,4442],[267552,130267,4442],[269871,138042,4442],[264198,134874,4442],[269483,138574,4442],[269777,138171,4442],[269836,138090,4442],[271791,135405,1062],[269871,138042,1062],[273004,136289,1062],[269777,138171,1062],[269836,138090,1062],[288327,137900,3582],[283106,139141,3582],[288245,137842,3582],[285377,135915,3582],[285423,135849,3582],[290251,142670,3582],[293331,141434,3582],[292843,144470,3582],[289536,143700,3582],[294409,142215,3582],[293424,141500,3582],[293343,141443,3582],[288327,137900,952],[293331,141434,952],[288245,137842,952],[285423,135849,952],[285377,135915,952],[283106,139141,952],[283106,139141,1022],[283106,139141,3392],[289536,143700,952],[289536,143700,3392],[293424,141500,952],[293343,141443,952],[279265,141197,3772],[273239,150030,3772],[278332,140535,3772],[269953,147709,3772],[276086,138940,3772],[269921,147686,3772],[279265,141197,852],[273239,150030,852],[279265,141197,902],[279265,141197,1022],[279265,141197,3392],[279265,141197,3662],[273239,150030,3662],[278332,140535,852],[278332,140535,1022],[278332,140535,3392],[276086,138940,852],[269921,147686,852],[282413,143432,3392],[278842,139800,3392],[281394,141573,3392],[281394,141573,1022],[278842,139800,1022],[282413,143432,1022],[266866,148715,4602],[263454,146531,4602],[267637,147718,4602],[266773,148837,4602],[271984,141966,4602],[268012,140591,4602],[268771,139552,4602],[266866,148715,742],[267637,147718,742],[271984,141966,742],[268771,139552,742],[268012,140591,742],[282413,143432,3662],[276392,152258,3662],[282413,143432,902],[282429,146923,3692],[279627,154543,3692],[276392,152258,3692],[282413,143432,3692],[283157,145876,3692],[283168,147437,3692],[285741,145795,3692],[283896,146390,3692],[285741,145795,842],[279627,154543,842],[282413,143432,842],[276392,152258,842],[283157,145876,842],[282429,146923,842],[283896,146390,842],[283168,147437,842],[405917,99519,9022],[408923,102395,9022],[408845,102478,9022],[405841,106035,9022],[405800,99642,9022],[404087,98098,9022],[400383,95053,9022],[400456,94957,9022],[397473,98888,9022],[409113,102730,9022],[400456,94957,732],[397473,98888,732],[397473,98888,3372],[405841,106035,732],[405841,106035,752],[405841,106035,3372],[409113,102730,732],[408845,102478,732],[413870,97872,4142],[413559,98178,4142],[410291,94649,4142],[407900,97382,4142],[407871,97410,4142],[407754,97287,4142],[411088,100076,4142],[411000,100173,4142],[411371,100331,4142],[413870,97872,652],[413559,98178,652],[411088,100076,652],[411371,100331,652],[418954,79038,4122],[426367,84251,4122],[419920,84639,4122],[416639,82337,4122],[424238,87669,4122],[426552,85392,4122],[427122,84831,4122],[424238,87669,652],[426552,85392,652],[427122,84831,652],[406914,70571,4302],[404590,73882,4302],[401530,71735,4302],[403855,68420,4302],[403855,68420,4292],[401530,71735,4292],[409973,72722,4332],[407652,76031,4332],[404590,73882,4332],[406914,70571,4332],[409973,72722,4232],[407652,76031,4232],[413033,74874,4232],[410714,78179,4232],[413033,74874,4222],[410714,78179,4222],[409973,72722,632],[407652,76031,632],[412302,92558,4262],[415940,95834,4262],[413870,97872,4262],[410291,94649,4262],[415940,95834,642],[410291,94649,642],[413870,97872,642],[416091,77025,4222],[413774,80327,4222],[416091,77025,4132],[413774,80327,4132],[414314,90467,4272],[418011,93796,4272],[415940,95834,4272],[412302,92558,4272],[418011,93796,642],[418954,79038,4132],[416639,82337,4132],[418954,79038,632],[416639,82337,632],[384643,76680,4262],[382678,79467,4262],[379970,74992,4262],[380006,74941,4262],[380722,73916,4262],[378838,76596,4262],[378738,76596,4262],[384643,76680,682],[382678,79467,4182],[380722,73916,682],[378738,76596,4182],[386659,73820,4282],[384643,76680,4282],[382497,71375,4282],[382727,71047,4282],[380722,73916,4282],[386659,73820,4262],[382727,71047,4262],[388676,70959,4262],[384732,68178,4262],[386659,73820,682],[388676,70959,4212],[384732,68178,4212],[382727,71047,682],[390692,68098,4212],[384784,68103,4212],[386736,65309,4212],[388676,70959,672],[384732,68178,672],[400796,66269,4302],[398468,69586,4302],[395406,67438,4302],[397736,64117,4302],[400796,66269,4292],[398468,69586,4292],[397736,64117,642],[397736,64117,3942],[395406,67438,642],[395406,67438,3942],[392563,65443,3942],[394565,62132,3942],[394680,61968,3942],[392348,65292,3942],[394565,62132,652],[392348,65292,652],[362805,59688,3182],[365314,59725,3182],[364394,61047,3182],[354119,51666,3182],[349519,53341,3182],[349436,53073,3182],[359019,59913,3182],[360434,58039,3182],[362686,59859,3182],[354119,51666,342],[365314,59725,342],[354119,51666,3172],[365314,59725,3172],[349436,53073,342],[349519,53341,342],[359019,59913,342],[360434,58039,342],[362805,59688,342],[362686,59859,342],[364394,61047,342],[372515,62210,3172],[371615,63504,3172],[369304,62501,3172],[359675,49981,3172],[367241,55868,3172],[365988,57669,3172],[371331,63912,3172],[371615,63504,332],[371615,63504,3102],[359675,49981,332],[354119,51666,332],[365314,59725,332],[369304,62501,332],[369304,62501,522],[369304,62501,3102],[371331,63912,332],[371331,63912,522],[371331,63912,3102],[359792,64490,2902],[359744,64561,2902],[359559,64329,2902],[356619,62423,2902],[360748,62613,2902],[357075,60038,2902],[355806,61882,2902],[355988,61617,2902],[356045,61535,2902],[359688,64644,2902],[359610,64760,2902],[356518,62628,2902],[359792,64490,452],[359744,64561,452],[359559,64329,452],[360748,62613,452],[357075,60038,452],[356045,61535,452],[369100,57162,3182],[367241,55868,3182],[369207,57009,3182],[371945,56696,3182],[374095,60410,3182],[373456,54525,3182],[375135,58915,3182],[365076,48582,3182],[359675,49981,3182],[365016,48381,3182],[397818,99643,3372],[397380,99175,3372],[397311,99102,3372],[405045,105946,3372],[395332,100813,3372],[395909,101430,3372],[394810,101263,3372],[392851,102605,3372],[391890,98542,3372],[393822,103259,3372],[390214,100111,3372],[390141,100179,3372],[401648,109135,3372],[401074,109690,3372],[404305,106662,3372],[401940,109437,3372],[404583,106949,3372],[402128,109631,3372],[404736,107108,3372],[405764,106113,3372],[405323,106234,3372],[405476,106392,3372],[393822,103259,752],[404736,107108,752],[404583,106949,752],[404305,106662,752],[405045,105946,752],[405323,106234,752],[405476,106392,752],[405764,106113,752],[383888,110994,6982],[382717,109743,6982],[392269,119285,6982],[391801,119611,6982],[388341,122997,6982],[388411,123069,6982],[389224,122147,6982],[390918,120460,6982],[389293,122219,6982],[391015,120561,6982],[391898,119711,6982],[392303,119321,6982],[392269,119285,692],[383888,110994,6112],[392269,119285,6112],[388411,123069,692],[388341,122997,692],[389224,122147,692],[389293,122219,692],[391015,120561,692],[390918,120460,692],[391801,119611,692],[391898,119711,692],[392303,119321,692],[395035,116259,6112],[395202,116431,6112],[394437,115644,6112],[394882,116102,6112],[394735,115951,6112],[388179,106978,6112],[395979,114144,6112],[395753,114364,6112],[388179,106978,5732],[395979,114144,5732],[383888,110994,312],[392269,119285,312],[416325,88376,4302],[420082,91759,4302],[418011,93796,4302],[414314,90467,4302],[416325,88376,642],[420082,91759,642],[420082,91759,652],[416325,88376,4272],[420082,91759,4272],[418337,86285,4272],[422153,89721,4272],[422153,89721,652],[419920,84639,4332],[424238,87669,4332],[422153,89721,4332],[418337,86285,4332],[432960,45174,4292],[433299,45560,4292],[433224,45625,4292],[431114,42618,4292],[431596,42966,4292],[431177,43337,4292],[431211,42531,4292],[426108,36938,4292],[426615,37167,4292],[428745,39942,4292],[428609,39425,4292],[429015,39704,4292],[428699,39346,4292],[423096,34193,4292],[423016,34104,4292],[423443,33725,4292],[418073,38651,4292],[426370,36707,4292],[426679,37057,4292],[426590,37136,4292],[421732,50614,4292],[421861,50501,4292],[422432,51415,4292],[420131,36824,4292],[426066,36891,4292],[423820,34152,4292],[423723,34238,4292],[422782,34472,4292],[427142,50939,4292],[424720,49416,4292],[422929,34341,4292],[414465,41853,4292],[421365,49971,4292],[415139,49105,4292],[417993,38561,4292],[420052,36734,4292],[413959,42142,4292],[414385,41763,4292],[410458,38548,4292],[413284,48515,4292],[410165,38247,4292],[410332,38419,4292],[403840,38847,4292],[408747,36792,4292],[403722,38422,4292],[403661,38201,4292],[414011,49259,4292],[415014,49223,4292],[419208,52341,4292],[432863,45259,4292],[426131,51031,4292],[433141,45698,4292],[432960,45174,742],[433299,45560,742],[432863,45259,742],[431177,43337,742],[431596,42966,742],[431211,42531,742],[431114,42618,742],[428745,39942,742],[429015,39704,742],[428699,39346,742],[428609,39425,742],[426615,37167,742],[426590,37136,742],[426679,37057,742],[426370,36707,742],[426108,36938,742],[426066,36891,742],[423723,34238,742],[423820,34152,742],[423443,33725,742],[423016,34104,742],[423096,34193,742],[422929,34341,742],[422782,34472,742],[420131,36824,742],[420052,36734,742],[417993,38561,742],[418073,38651,742],[414465,41853,742],[414385,41763,742],[413959,42142,742],[410458,38548,742],[410332,38419,742],[410165,38247,742],[408747,36792,742],[403661,38201,742],[403722,38422,742],[403840,38847,742],[413284,48515,742],[414011,49259,742],[415014,49223,742],[415139,49105,742],[433224,45625,742],[377821,86359,4182],[378153,77385,4182],[374242,83471,4182],[373810,83134,4182],[377706,86522,4182],[377802,87185,4182],[377918,87064,4182],[378076,86899,4182],[382678,79467,572],[378738,76596,572],[373810,83134,572],[374242,83471,572],[377802,87185,572],[377918,87064,572],[378076,86899,572],[377706,86522,572],[374379,67423,3102],[377489,67592,3102],[376554,68936,3102],[371346,68158,3102],[373034,69360,3102],[370850,68928,3102],[367278,65413,3102],[371160,68032,3102],[372674,70180,3102],[373163,69450,3102],[367278,65413,522],[393822,103259,5732],[388358,106810,5732],[392851,102605,5732],[397371,112791,5732],[396090,114036,5732],[401074,109690,5732],[400872,109886,5732],[397669,113097,5732],[401107,110618,5732],[397816,113248,5732],[397969,113406,5732],[398136,113578,5732],[401142,110654,5732],[401164,110188,5732],[401352,110382,5732],[393822,103259,112],[401074,109690,112],[392851,102605,112],[388179,106978,112],[395979,114144,112],[401142,110654,112],[401107,110618,112],[346747,54021,3432],[340090,55962,3432],[346717,53925,3432],[355613,61186,3432],[355550,61263,3432],[349045,63188,3432],[347666,65026,3432],[347783,65119,3432],[350608,67366,3432],[346747,54021,342],[355613,61186,342],[346717,53925,342],[340090,55962,342],[340090,55962,3402],[349045,63188,342],[349045,63188,3402],[347666,65026,342],[347666,65026,3402],[347783,65119,3402],[344407,69328,3402],[333863,57877,342],[342837,65118,342],[341467,66952,342],[341584,67046,342],[364046,132734,6282],[362567,131821,6282],[362744,131655,6282],[360261,136588,6282],[358911,135242,6282],[358808,135339,6282],[369753,140964,6282],[367121,143737,6282],[370664,140067,6282],[370970,139949,6282],[369844,141057,6282],[370756,140160,6282],[358808,135339,6222],[360261,136588,612],[360261,136588,6222],[367121,143737,612],[367121,143737,6222],[369844,141057,612],[369753,140964,612],[370664,140067,612],[370756,140160,612],[356244,139956,6222],[354999,138904,6222],[366632,144077,6222],[356001,140183,6222],[362645,147421,6222],[355935,140244,6222],[364411,146078,6222],[362891,147702,6222],[362623,147441,6222],[363442,147024,6222],[363525,147110,6222],[364495,146164,6222],[366702,144149,6222],[360261,136588,602],[367121,143737,602],[358808,135339,602],[356244,139956,602],[356001,140183,602],[355935,140244,602],[362645,147421,602],[362623,147441,602],[362891,147702,602],[363525,147110,602],[363442,147024,602],[364411,146078,602],[364495,146164,602],[366632,144077,602],[366702,144149,602],[355523,154395,3222],[355770,154650,3222],[355502,154416,3222],[346432,149661,3222],[348542,147614,3222],[349018,147818,3222],[348614,147544,3222],[348735,147426,3222],[349085,147744,3222],[353510,152431,3222],[351253,158864,3222],[351158,159081,3222],[340115,148068,3222],[342906,146074,3222],[338204,144300,3222],[339590,143054,3222],[336948,145258,3222],[334052,142688,3222],[337018,143282,3222],[334785,141677,3222],[337657,137679,3222],[340153,139820,3222],[340086,139894,3222],[340220,139746,3222],[337689,137635,3222],[352030,158119,3222],[337044,145343,3222],[352092,158184,3222],[351315,158929,3222],[355523,154395,622],[355770,154650,622],[355502,154416,622],[353510,152431,622],[349018,147818,622],[349085,147744,622],[348735,147426,622],[348614,147544,622],[340153,139820,622],[340220,139746,622],[337689,137635,622],[337657,137679,622],[334785,141677,622],[334052,142688,622],[334052,142688,782],[334052,142688,3212],[336948,145258,622],[336948,145258,782],[336948,145258,3212],[337044,145343,622],[340115,148068,622],[351158,159081,622],[351315,158929,622],[351253,158864,622],[352030,158119,622],[352092,158184,622],[340115,148068,3502],[351158,159081,3502],[339585,153166,3502],[337466,150650,3502],[339535,156468,3502],[337907,154831,3502],[350169,159917,3502],[346572,163545,3502],[350231,159982,3502],[350865,159240,3502],[350927,159304,3502],[340115,148068,602],[351158,159081,602],[337466,150650,602],[339585,153166,602],[337907,154831,602],[350231,159982,602],[350169,159917,602],[350865,159240,602],[350927,159304,602],[354349,124634,2882],[350845,128796,2882],[348667,126740,2882],[352016,122762,2882],[348499,126936,2882],[354349,124634,2852],[350845,128796,2872],[352016,122762,2852],[348499,126936,2872],[349839,134818,2872],[355390,132400,2872],[351481,136206,2872],[345569,131211,2872],[345492,131302,2872],[345057,130934,2872],[347708,133018,2872],[349350,134405,2872],[347211,132598,2872],[347630,133109,2872],[347134,132690,2872],[352028,136394,2872],[349761,134910,2872],[349272,134497,2872],[351816,136646,2872],[351403,136297,2872],[350845,128796,572],[348499,126936,572],[345492,131302,572],[345569,131211,572],[347211,132598,572],[347134,132690,572],[347630,133109,572],[347708,133018,572],[349350,134405,572],[349272,134497,572],[349761,134910,572],[349839,134818,572],[351481,136206,572],[351403,136297,572],[351816,136646,572],[333642,143254,3212],[332970,144157,3212],[332842,144682,3212],[332686,144539,3212],[335419,147065,3212],[333642,143254,782],[332842,144682,782],[335419,147065,782],[332474,80086,1202],[332506,80192,1202],[329843,80899,1202],[329303,77535,1202],[327823,79309,1202],[329898,81081,1202],[332534,80287,1202],[332534,80287,472],[271703,111477,2852],[267674,117148,2852],[265175,115372,2852],[269204,109701,2852],[271703,111477,662],[321668,143068,3392],[324014,140186,3392],[322956,144116,3392],[325333,141195,3392],[324110,140068,3392],[325397,141116,3392],[321668,143068,792],[324014,140186,792],[322956,144116,792],[325333,141195,792],[325397,141116,792],[324110,140068,792],[315042,138254,3292],[312962,140962,3292],[307736,136947,3292],[309817,134239,3292],[315042,138254,802],[312962,140962,802],[309817,134239,802],[307736,136947,802],[321641,143318,2862],[319557,146030,2862],[314308,141997,2862],[316391,139285,2862],[321641,143318,802],[319557,146030,802],[316391,139285,802],[314308,141997,802],[308391,152407,3302],[306517,155006,3302],[305957,150663,3302],[304084,153261,3302],[305957,150663,862],[304084,153261,862],[310874,154186,3322],[309000,156786,3322],[308391,152407,3322],[306517,155006,3322],[313382,155983,3322],[311507,158584,3322],[313382,155983,3302],[311507,158584,3302],[310874,154186,852],[309000,156786,852],[316456,162306,3352],[314585,164902,3352],[313958,160511,3352],[313000,159823,902],[311127,162417,902],[315918,157799,3302],[314038,160399,3302],[315918,157799,842],[314038,160399,842],[315918,157799,3282],[314038,160399,3282],[313382,155983,842],[311507,158584,842],[316538,162192,3282],[318415,159588,3282],[321270,165056,2052],[319012,162680,2052],[323406,163057,2052],[320712,160257,2052],[321270,165056,852],[319012,162680,852],[323406,163057,852],[320712,160257,852],[308468,133209,1482],[306390,135913,1482],[302361,130439,1482],[303290,129230,1482],[301212,131934,1482],[308468,133209,722],[306390,135913,722],[303290,129230,722],[302361,130439,722],[301212,131934,722],[295706,146236,2942],[297170,144217,2942],[298723,145503,2942],[297335,147417,2942],[298873,145451,2942],[298796,145557,2942],[303344,148791,3302],[301480,151393,3302],[353700,120762,2852],[355811,122897,2852],[352016,122762,692],[354349,124634,692],[375228,99410,2862],[377518,97182,2862],[376448,100665,2862],[378859,98320,2862],[381492,92353,2762],[382808,93685,2762],[378571,95238,2762],[379888,96571,2762],[368879,109251,3242],[367078,107418,3242],[371045,107122,3242],[369243,105289,3242],[351070,74331,2242],[351105,74446,2242],[348445,75162,2242],[347875,71756,2242],[346441,73557,2242],[348501,75344,2242],[351134,74542,2242],[351134,74542,462],[357289,72370,1662],[357326,72485,1662],[354673,73230,1662],[354113,69804,1662],[352683,71618,1662],[354730,73411,1662],[357356,72580,1662],[357356,72580,462],[362932,67101,2812],[366113,69659,2812],[362870,67179,2812],[363485,70491,2812],[361480,68902,2812],[365943,69940,2812],[363541,70673,2812],[366177,69869,2812],[362932,67101,482],[366113,69659,482],[365943,69940,482],[366177,69869,482],[344871,76247,1202],[344903,76352,1202],[342235,77067,1202],[341696,73660,1202],[340263,75472,1202],[342290,77249,1202],[344932,76448,1202],[344932,76448,462],[338623,78167,2802],[338658,78281,2802],[335996,79005,2802],[335454,75588,2802],[334015,77396,2802],[336052,79187,2802],[338688,78377,2802],[338688,78377,462],[400851,48956,795],[422845,56627,812],[417141,55824,732],[413765,53326,722],[411122,50812,712],[414032,52965,722],[406173,51786,682],[403136,44100,606],[403246,38774,341],[402442,38756,852],[402058,39567,844],[401837,38858,858],[402874,38877,508],[402718,39204,840],[401331,38833,820],[401437,39163,493],[401271,39062,882],[416744,60964,765],[415438,60041,773],[399700,43288,638],[397819,39967,507],[401010,39250,445],[396619,41430,767],[396555,41708,1005],[396271,40843,590],[397407,43231,664],[397780,42766,701],[398814,43511,647],[397448,41724,1002],[396736,42153,1076],[397906,46967,717],[407166,52470,702],[398564,42256,1188],[400943,41094,671],[402014,40512,848],[402523,50433,692],[405077,52427,668],[402401,50610,702],[408219,54243,759],[400937,49612,779],[414474,57888,750],[426446,58174,1078],[425051,57097,739],[423400,61943,852],[424212,57641,872],[425155,57810,886],[423410,57818,880],[428437,59953,942],[425971,58252,942],[426855,58739,906],[425880,63651,912],[420952,64059,865],[423835,66079,851],[423351,57461,721],[401521,40111,712],[410084,56299,776],[414577,58603,882],[401549,39804,496],[396461,40370,513],[396238,40374,792],[396304,40629,792],[396508,40720,530],[427312,59000,1073],[399000,41325,674],[399407,41995,858],[400576,40905,751],[398876,40521,658],[397603,41419,718],[399830,40197,413],[398398,41619,938],[401213,38839,942],[425890,57994,1109],[426206,58241,1112],[400106,41330,669],[396715,40608,505],[397755,42455,928],[402384,38534,862],[400026,40774,688],[423756,57393,959],[320633,160196,1052],[320274,159942,902],[321787,158333,1072],[321870,158389,1082],[321906,158160,1192],[322619,157296,942],[321989,158216,1082],[323108,156404,902],[323191,156461,902],[323221,156239,902],[324314,154821,932],[323304,156296,932],[324232,154764,932],[324344,154599,932],[325778,152506,922],[324427,154656,932],[326849,150652,872],[325861,152562,862],[325475,153356,862],[326068,152454,862],[326018,153699,902],[327292,152115,902],[325897,152333,872],[326606,151620,872],[327116,150840,892],[298144,128200,861],[296646,129588,746],[297195,127057,810],[287618,137284,1314],[291864,124088,789],[290068,125689,697],[290398,122401,791],[271691,120646,922],[274099,122334,942],[286388,122155,741],[284632,126039,912],[282190,124364,862],[284086,117734,907],[279862,116417,757],[278758,113666,782],[271295,109058,807],[270784,108282,832],[274815,111492,846],[276181,112283,852],[269422,106851,782],[267137,105353,664],[268091,105896,676],[255711,97465,452],[255769,97546,452],[255776,97677,452],[255712,97587,452],[254514,98639,580],[254312,98708,482],[259918,102701,542],[253988,98760,569],[254205,98662,482],[254254,98627,482],[254147,98580,472],[254885,98835,469],[262030,104423,640],[273649,110907,710],[271811,111321,712],[272091,111865,622],[271900,111383,712],[269650,117340,874],[266817,121386,882],[272668,112910,862],[277289,113920,734],[265583,120534,982],[264654,121880,1002],[266759,122957,897],[280631,115511,987],[270911,125654,1182],[271219,125476,983],[271263,125801,989],[271006,125711,1182],[295445,125706,807],[285503,135734,1082],[299309,128864,892],[301754,130500,998],[300917,130434,833],[292618,134918,1002],[291979,137348,1052],[289671,135698,1022],[292983,139190,1075],[293216,138266,1022],[294185,140231,972],[317092,146582,832],[321558,157176,862],[319205,157746,862],[317548,163169,922],[315992,166063,942],[317784,163337,922],[312560,152955,872],[321792,157344,872],[323411,151454,832],[326329,150897,862],[326084,150723,862],[334684,135723,775],[329776,142382,778],[329435,142789,799],[336901,137082,772],[332750,142506,812],[334314,136477,798],[328578,143680,812],[324113,149493,842],[302079,147382,1038],[304104,134615,845],[300865,144522,892],[309573,138665,909],[290252,133223,982],[294161,132763,952],[280691,126549,942],[283133,128224,942],[291794,131069,932],[278224,113490,1073],[281976,116500,788],[282691,119743,637],[273682,117804,862],[276090,119492,882],[271972,125683,959],[270409,116811,811],[271009,116364,804],[284454,134676,1288],[284303,133698,1031],[281083,130803,1009],[278089,129933,1170],[280959,131913,1346],[277334,130001,1183],[284594,118247,751],[287381,120295,884],[282066,132595,1092],[277012,129856,1114],[287978,136822,1053],[288453,137347,1138],[282617,116945,935],[277120,112560,929],[272415,114207,729],[273477,112470,699],[292741,124246,811],[280717,116193,930],[282589,133466,1230],[280897,131566,1137],[282114,132928,1127],[271701,126221,1125],[271987,114093,969],[270660,115902,1032],[269790,118320,977],[271197,115774,779],[272191,112510,788],[271434,112058,1092],[302027,147063,910],[292831,139126,1252],[270920,115686,830],[320219,160332,912],[320135,159965,902],[320453,160191,1032],[320553,159271,1055],[318238,163157,922],[319903,160783,912],[316263,165973,952],[316131,166161,942],[315761,168808,942],[316919,168580,887],[317415,169133,1166],[317911,163623,922],[316353,166036,952],[318001,163687,942],[318328,163220,932],[319993,160846,912],[321380,158295,1088],[320309,160395,942],[320192,159884,902],[321459,166112,1057],[324930,158180,929],[322708,157380,1052],[324056,155427,932],[328235,163846,815],[329397,165678,722],[326101,154928,923],[326091,157427,956],[326302,156259,1272],[327288,156643,934],[321182,160501,1038],[316456,166290,942],[317203,166854,942],[312706,178940,798],[313434,179142,635],[313264,180198,1000],[320970,165561,1031],[320528,165735,864],[320925,165224,1015],[314446,178845,861],[314337,178169,606],[315642,178238,710],[310014,176506,1083],[307491,179396,932],[312693,172965,912],[311092,175785,1091],[311675,177139,645],[305242,181844,912],[306383,180602,902],[309161,183065,855],[304791,184134,906],[303384,184165,872],[304641,182595,902],[309308,184125,934],[306519,185808,853],[304317,187075,1092],[303803,185737,1296],[304654,186221,1457],[305461,185663,1376],[299151,190582,1065],[304547,185537,1239],[307326,186925,1085],[307136,187731,1122],[306711,187188,984],[310369,181870,962],[310459,177479,850],[311080,179073,913],[314775,181263,972],[313637,180420,1083],[323295,164439,1008],[318674,171300,1191],[319011,170509,1085],[320206,171227,825],[315738,178887,833],[315693,178540,851],[315928,177088,741],[315284,175411,916],[321052,166275,849],[320610,172147,992],[323455,167972,1087],[318359,172872,904],[319704,172440,1145],[319312,172985,737],[327580,161903,792],[325398,161598,1144],[327864,161127,684],[324652,163237,1070],[323831,163492,978],[325983,163202,676],[326123,164260,658],[325594,163342,647],[329947,159200,695],[328635,163403,757],[328587,163028,773],[329238,160774,674],[330798,157562,976],[328668,160179,744],[326549,154005,1017],[329671,160326,798],[327788,160397,964],[329364,157887,1027],[337118,150896,837],[336722,150981,879],[337467,150482,879],[329825,158117,991],[330519,157959,1006],[330622,156194,1060],[331301,156732,991],[327211,155955,1125],[326740,155390,1121],[328042,155365,920],[326635,154707,913],[330661,151964,909],[332257,157282,1016],[331115,155361,928],[332756,157188,1030],[332529,155472,1052],[333214,157135,928],[333641,156704,962],[334398,156603,931],[334677,156916,755],[334880,156198,739],[335278,156508,721],[334442,156942,918],[335373,157150,863],[335754,157105,694],[336273,158057,707],[337074,153722,695],[337662,155023,751],[332567,145408,1001],[330564,147826,952],[338440,148503,789],[338748,147680,922],[338888,148725,939],[336831,145721,832],[334851,150253,824],[331762,149686,1083],[301347,191806,1037],[300988,192141,1275],[299676,189329,1117],[320890,171694,796],[320109,172708,1041],[304416,187749,1234],[301745,188778,1054],[301489,192795,1169],[301025,192544,1064],[334307,155879,1010],[333461,155360,941],[334425,154833,1087],[337247,151934,707],[324940,161750,963],[322999,159873,972],[325466,155859,930],[326437,155479,1112],[315193,181137,838],[315355,179296,890],[313313,180528,1060],[312898,180308,939],[326695,165107,987],[325262,164127,1055],[326371,155194,721],[329968,153854,920],[321996,166666,1000],[321382,168640,1076],[320401,167894,1000],[319653,169280,995],[319435,170376,1189],[318443,169635,1059],[327176,163169,693],[326634,164802,687],[324694,163566,1033],[323406,162949,985],[308372,186570,975],[304871,187997,1200],[304498,188494,1010],[321951,169966,798],[322453,170132,967],[322039,170633,797],[318923,173479,664],[316521,170496,934],[316496,172998,888],[315078,170476,1066],[304166,188551,1141],[303548,184296,922],[301253,187789,1273],[321597,170420,786],[304738,186926,1331],[304786,187263,1363],[304048,184929,1307],[305000,185404,1455],[306326,186898,1138],[305082,186152,1213],[338927,149088,812],[312209,175098,953],[313110,176711,607],[311902,175936,746],[303708,190149,1012],[303286,191337,1142],[302607,192188,1033],[305181,186858,1298],[323212,158669,1226],[310599,181057,843],[319146,168381,848],[319936,169167,842],[322782,168976,909],[317263,168151,863],[314230,180297,862],[336345,155258,749],[335353,147719,906],[309782,184681,938],[304821,187669,1115],[304959,188765,1008],[305094,189767,1042],[318007,170053,1167],[317874,169064,1148],[317330,171676,900],[311725,180678,888],[314244,177483,565],[319993,169506,1007],[320125,170500,1022],[317063,174654,830],[313018,178539,637],[302563,191857,1034],[305217,187242,1096],[305257,187592,1003],[333126,147068,839],[334458,147196,991],[336346,151788,730],[335041,151602,954],[322538,158599,1204],[336173,153861,930],[336524,153132,729],[335495,155010,970],[333739,154265,939],[320572,169274,845],[323894,168875,1158],[317325,168476,1119],[311399,181504,871],[329888,153174,1062],[329574,153603,910],[322572,158945,1036],[325032,162441,965],[316831,172950,746],[317349,174223,837],[317386,174605,664],[316882,173256,886],[337443,156468,748],[309446,177494,889],[337434,153300,774],[325078,162758,1021],[325948,162855,826],[313990,178618,627],[334872,147459,845],[332399,150940,1048],[330938,153977,1030],[304068,190385,1190],[334163,150744,840],[303122,181483,862],[299407,183252,894],[304139,179284,808],[302819,178512,968],[296436,124758,842],[295015,124758,984],[296935,119069,909],[293839,123318,937],[294713,124840,912],[299298,121107,849],[293517,124095,798],[295798,123188,771],[295762,122819,940],[262874,72930,412],[262387,74028,352],[262102,74096,352],[261471,72385,402],[261079,72615,402],[261592,71841,382],[261971,72092,382],[261779,72205,382],[261648,72118,392],[260876,73284,402],[261987,74260,352],[260599,73340,402],[262158,74373,342],[263151,72873,412],[411720,38460,1792],[411464,37614,2252],[415386,40998,1974],[416921,39386,1856],[412314,37126,1986],[410976,36624,1072],[412338,36701,1920],[417939,38711,2215],[417249,39134,2111],[421139,34340,1916],[421959,35045,1943],[421711,35297,1943],[417966,38387,2021],[420098,36705,2092],[419763,36447,2035],[422261,34369,1976],[422695,34374,1962],[422639,34312,1962],[422579,34254,1962],[422516,34200,1962],[422449,34150,1952],[422378,34105,1952],[422305,34065,1952],[422230,34029,1942],[421998,34133,1955],[422152,33999,2282],[422073,33974,2172],[421992,33954,2172],[421827,33930,2172],[421910,33939,2172],[421743,33927,2142],[421470,34128,1894],[421660,33929,2142],[421577,33936,2142],[421495,33949,2092],[418244,38285,1997],[413025,38300,1805],[415524,38476,1749],[414402,39242,1802],[414758,41270,1963],[414806,40405,1822],[413597,39873,1769],[411283,39275,1900],[410967,38987,1885],[419438,36212,1885],[418378,35608,1751],[418957,35147,1978],[419421,34763,1838],[413520,39210,1923],[413204,39666,1779],[412709,40624,1896],[417992,38033,1851],[419748,36946,1928],[421255,34020,2062],[421333,33991,2092],[415473,39083,1933],[412765,36286,1890],[417648,38085,1971],[413903,40802,1962],[413512,36003,1864],[418353,35969,1881],[412214,37913,1811],[416743,37211,1882],[415433,40140,1825],[421413,33967,2092],[406718,52822,708],[309240,61679,372],[308821,60565,332],[309534,61549,362],[309130,60459,332],[275503,130529,1171],[274129,132827,1278],[274271,138393,1154],[276815,134931,1082],[272872,140416,962],[278039,132857,1087],[279186,131634,1312],[277374,132544,1131],[275083,133695,1263],[275042,133376,1289],[273397,136096,1254],[272784,136949,1221],[274085,135072,1267],[270272,137886,1327],[271789,136403,1286],[273627,135560,1264],[276216,129750,1099],[319963,204206,1244],[319496,203624,7337],[319475,203629,1224],[368520,155696,1002],[369459,155484,992],[369005,155749,992],[427949,102137,1047],[427893,102343,15039],[427343,102324,1078],[429020,100059,10771],[429159,100300,17232],[429017,100150,1066],[369103,154055,1002],[372235,153193,942],[370916,154179,952],[377847,145283,942],[376838,150276,962],[374552,151709,942],[391445,133479,960],[395688,134796,962],[393164,137588,952],[379030,149061,962],[379537,145007,1061],[382108,147380,952],[384666,145799,942],[383412,146601,942],[386241,144564,922],[386491,139741,1172],[389527,138015,1071],[389826,137931,1061],[389862,138264,5360],[390322,140700,922],[388317,142722,922],[390272,134227,1015],[391085,133618,991],[389984,135012,999],[392204,132829,998],[399520,127385,10424],[400015,127416,11647],[399633,127592,11648],[400632,128695,1048],[400289,128448,9219],[400705,128623,14778],[411238,116098,1033],[411545,118449,968],[412816,116853,997],[413506,118551,892],[400928,127894,6701],[401603,127588,1038],[400869,128229,1050],[412946,116337,3815],[412557,116696,5051],[421727,110285,882],[420306,111723,882],[416992,115098,862],[418412,113610,862],[422502,107464,1054],[422707,109211,892],[434599,94621,1039],[434944,94079,1052],[434351,95088,1022],[434229,92940,12169],[434059,93022,15684],[434265,92844,7362],[435248,92173,1143],[435745,92280,1102],[435529,92338,14509],[434824,91666,1101],[434779,91322,1121],[435058,91437,9486],[435692,90860,1102],[435261,90947,8665],[435067,90819,1103],[434601,90006,1052],[434557,89669,1056],[434618,89697,14372],[434000,89673,15052],[433339,90209,1042],[434586,88908,992],[434643,90322,1063],[435267,89969,1062],[432823,90748,962],[433161,90714,1061],[432801,90782,962],[433207,91033,1115],[425962,105435,6231],[426321,105031,932],[424379,107333,892],[432782,90818,962],[432773,91008,12688],[432765,90855,962],[432750,90893,962],[432739,90931,962],[428034,102822,977],[429130,101681,992],[432729,90971,962],[432723,91011,962],[432719,91051,952],[432718,91092,952],[432719,91132,952],[429192,98318,11568],[428847,98416,11407],[429126,97972,11287],[432724,91173,952],[433149,91226,12156],[432731,91213,952],[432740,91252,952],[432753,91291,952],[432767,91328,952],[434281,94276,10394],[434268,94095,1094],[434513,93946,1076],[432785,91365,952],[433514,93176,13703],[433109,93536,1091],[433135,93291,13571],[432805,91401,952],[433818,95724,1015],[433806,95916,1012],[433526,90570,1054],[433421,90433,11425],[433479,90237,1024],[434782,93837,1080],[434823,94094,13013],[423588,102546,1087],[423633,102890,1091],[433414,95877,1040],[434059,94608,1068],[431767,98100,14054],[431950,98288,1012],[431756,98465,999],[405782,124896,992],[411618,120187,902],[404358,126027,1002],[428625,99569,1118],[428726,99416,12704],[424614,103496,8721],[424499,103146,13029],[424680,103403,15141],[413184,116412,982],[414802,117311,892],[412261,116625,1016],[401061,126733,1099],[399362,125785,1094],[399464,125826,6796],[399407,126127,1098],[398141,128161,7908],[398484,127999,1036],[398666,128930,8223],[390189,137680,6670],[390088,137860,1060],[389836,137865,5748],[367365,155690,992],[429345,99583,16315],[429809,99661,1035],[429851,99977,1029],[428299,101607,11091],[428174,101387,1083],[428513,101345,1086],[431109,97613,1072],[431468,98195,1048],[430943,98720,1039],[428887,99136,1119],[429313,99373,1085],[431512,98556,1003],[431525,98444,15321],[429802,99493,13495],[428840,98778,1130],[428533,98869,1132],[428632,98727,17298],[426227,100544,1088],[426715,100644,13984],[426249,100796,13294],[435179,89796,1052],[434946,89544,15505],[434751,89227,13319],[424898,102734,1110],[425175,102881,13107],[424938,103053,1088],[426783,101653,13046],[426844,101751,1110],[426406,101858,1155],[428897,98749,11490],[429187,98400,1123],[429725,99009,1056],[429937,100649,990],[429634,100192,14348],[430105,98222,1086],[430062,97888,1115],[430407,97454,1141],[430148,98562,1063],[430114,98418,14329],[400854,128108,9586],[399627,127598,5800],[399291,128064,12313],[399205,127399,12344],[431492,98805,14162],[430662,99446,1008],[430204,99411,13728],[429967,99073,16634],[430234,99233,1027],[428955,99068,11707],[430282,99140,8775],[430192,98891,1076],[424435,103630,1086],[424730,103514,1088],[426917,99567,12820],[427773,99402,7704],[426987,99649,1064],[427721,102549,989],[429445,100404,1030],[430167,99750,12563],[431672,97816,1032],[433212,96731,1002],[430052,98778,12748],[429636,98309,1111],[431026,96969,1101],[431247,97228,8236],[431069,97301,1089],[430323,99907,1014],[430280,99594,1011],[427389,102682,1065],[427361,103175,12311],[427023,103128,1046],[426187,100159,7348],[428565,98146,7873],[430359,97096,1117],[430680,96698,1093],[431342,97237,1069],[435187,92835,12778],[435519,92954,1082],[434884,89477,1026],[434934,89835,1055],[434524,89327,1231],[434492,89379,13176],[434204,89474,1019],[428375,99156,12799],[428583,99228,1155],[428291,99633,1141],[428552,101663,1038],[428214,101702,1055],[429060,100479,1053],[428301,101950,10464],[426934,102426,1110],[426800,102668,11354],[426451,102215,1126],[428258,102062,1012],[426913,103314,11744],[426572,103217,951],[430928,97297,14669],[430984,96653,1101],[431209,96198,1105],[429469,100608,11200],[425157,104728,1036],[425372,104182,13463],[425441,104254,1050],[425268,102927,1087],[424683,103154,1096],[425997,103285,10802],[425660,102800,1113],[426081,102655,1113],[400909,128553,1019],[399224,124753,1073],[398607,125493,1061],[428096,98570,13931],[429519,98226,11846],[429592,97973,1114],[429675,97528,9739],[429656,97521,15122],[429976,97235,1112],[434677,93675,7750],[434520,93807,9219],[434473,93633,1095],[435047,93275,13796],[434611,93033,8012],[433126,92966,14066],[433810,92324,7362],[434430,93300,1114],[434524,93559,15238],[434394,93239,13979],[433881,93239,1098],[434912,92343,1096],[435335,92848,1122],[434354,94777,1050],[434315,94608,10257],[434602,93462,11039],[433736,90083,1030],[433796,90004,11517],[427993,102484,1009],[428177,102633,12477],[426357,103169,10351],[426168,103339,1069],[425487,104612,1028],[426075,104628,9374],[425793,103832,1066],[400226,129786,982],[402623,127530,1002],[426663,103886,985],[426574,103758,12337],[427104,103778,981],[398667,129386,1026],[398281,129895,1023],[397861,129758,1000],[398349,131742,952],[397906,130089,1014],[430315,96776,1097],[430810,96646,14210],[429713,97865,9647],[430103,97468,9381],[430155,97114,10790],[429433,97915,11204],[427910,99361,1145],[427797,99717,7452],[427561,101108,12614],[427814,101110,1047],[428068,101659,12769],[426623,100082,1107],[426526,102729,13586],[428044,100663,9210],[428093,100271,10658],[428129,100646,6453],[426505,102127,8180],[428071,99952,10941],[427997,100033,1105],[427863,99029,1091],[427641,99778,1105],[428675,100127,10626],[428668,99899,1107],[428523,99815,13678],[427217,101360,1092],[428544,101496,10777],[428839,101227,1045],[434310,94434,1061],[434372,92594,1603],[434409,92389,6319],[434748,92683,10631],[433252,91391,1098],[432851,91467,952],[435447,93016,12080],[435376,93174,1084],[434248,89794,1050],[433982,89927,1047],[434428,91137,1097],[434710,91319,12650],[434413,91164,12682],[434220,92193,7952],[434213,92533,7199],[435110,91151,1103],[434804,91215,10353],[435783,91422,1102],[425801,104006,11574],[426300,104369,998],[434381,90795,1081],[433494,90780,11820],[434738,93491,1093],[435044,93352,1078],[426557,104447,10788],[426708,104221,985],[425615,102454,1124],[426254,104015,1010],[426742,101322,13095],[425069,104053,1054],[426717,100786,1106],[427162,102251,11234],[426589,101020,11470],[426967,100911,10991],[426362,101540,1119],[425530,101805,1137],[425300,101108,9913],[426193,101168,11796],[425944,101905,12639],[425610,102020,12610],[425279,101863,12081],[426020,102213,13144],[427246,100198,9816],[426985,100581,11854],[427251,102555,11929],[433855,92714,13337],[433425,92715,1059],[432827,91435,952],[434121,90962,1095],[434209,91606,1140],[433893,91669,9746],[433721,91734,13281],[433659,91554,1113],[433507,91445,10733],[433707,91913,1115],[425573,102122,1142],[425136,101911,1121],[424641,102835,1104],[424598,102505,1125],[425814,100638,1114],[423888,102045,1077],[425093,101580,1121],[432322,93778,1031],[432693,93653,1069],[425963,105159,974],[427065,103460,1022],[426444,104177,9703],[399391,126807,9700],[399529,126983,11319],[399211,126963,1099],[398597,127853,9256],[398096,127834,7882],[400867,126931,11952],[400690,126848,1105],[400491,127222,10190],[400735,127190,1099],[400460,127357,1106],[400841,127248,6658],[401101,127053,1065],[401123,127225,10663],[399821,126504,10600],[399728,126308,1121],[400039,126483,1132],[400827,127356,10598],[401144,127385,1049],[399826,126898,9925],[399494,126787,1086],[399826,126976,1249],[399872,127063,5922],[424905,104866,1039],[424289,104675,7116],[424524,104304,1066],[428486,101190,10538],[427137,100943,6853],[427775,100748,10290],[427737,100407,10396],[428883,101571,1022],[428190,101303,10095],[428352,100212,10475],[428821,100482,7117],[427766,99704,12158],[400325,126336,1122],[400149,126277,11312],[399994,126151,1122],[400084,126829,1127],[400147,126907,5926],[435522,91001,1101],[435157,91493,1128],[401534,127250,6758],[401129,127040,6895],[434652,92820,1129],[434058,92294,10950],[434003,92079,1102],[428593,101997,1001],[424348,102952,1113],[424525,102835,8715],[424793,103056,12123],[433743,95798,12035],[399052,127987,9083],[398650,125809,1070],[398220,125989,1072],[398906,127034,8803],[398694,126144,1059],[399171,126291,7544],[398723,127254,12164],[399313,125423,1081],[399295,125736,10343],[400509,127044,6703],[399773,126657,1106],[399078,125964,1076],[400008,127824,10776],[400430,126898,9929],[400415,127012,1116],[399325,126480,9375],[399453,126464,1109],[400372,126681,1138],[400521,127549,9995],[428129,101051,1071],[428106,100966,9516],[425059,101236,10110],[425049,101264,1114],[428465,100988,1072],[429103,100802,1059],[428711,100212,1126],[400043,128411,5830],[399720,128499,1079],[399679,125948,1100],[399548,124954,1106],[433569,90882,1084],[433296,91134,8304],[434579,91693,10059],[400646,126514,1109],[400508,126669,7382],[431409,95795,1065],[433887,92382,14424],[398002,129979,8456],[397162,127610,1063],[397594,127711,1052],[397206,127957,1026],[397773,129078,1020],[395641,128169,1055],[396768,127452,1029],[396484,127596,1029],[396441,127282,989],[398012,127551,7236],[398402,127345,1094],[434518,91813,1113],[397640,128115,6833],[399033,125627,1073],[398663,125787,7707],[399637,125977,8970],[423981,102718,1119],[426125,100479,12127],[427010,99905,13511],[427446,100181,6643],[400035,128675,1035],[394753,130461,986],[397792,126188,1042],[398103,126193,5398],[425202,105075,1012],[425135,105374,7793],[424947,105177,1048],[425908,105099,6102],[434255,91924,1184],[434664,92234,6433],[423734,102782,8284],[394252,129929,1270],[394302,130264,1350],[393523,130270,1645],[424988,105515,1001],[424245,104744,1053],[424157,104067,1082],[424580,104197,6918],[424818,104194,1065],[424479,103971,1072],[396814,127788,1060],[396723,127109,1047],[397929,127203,1065],[399505,124619,1124],[399378,124779,7537],[396369,127441,7500],[434356,94915,10260],[400822,127870,1064],[400806,127805,9467],[398152,128900,1047],[398358,127027,1086],[398591,127074,10628],[398335,127015,7138],[400144,127067,9758],[401561,127266,1052],[398309,126670,1053],[389482,137683,1059],[389996,137173,1050],[390810,138290,1009],[390722,137602,1039],[391285,138485,989],[390436,138417,1007],[390400,138088,5053],[390393,138081,1019],[425328,106063,944],[425284,105730,958],[425544,105243,5585],[399272,125108,1088],[397019,127652,8469],[434585,92144,1447],[388698,137894,1077],[389103,137797,1069],[390629,136921,1022],[390257,137049,1047],[390488,137028,4327],[390255,137130,4803],[389914,138615,1015],[390128,138182,1023],[389054,137436,1042],[388978,137765,5295],[390016,137163,5199],[411712,116353,992],[412373,116144,3482],[412723,116148,999],[390347,137728,1034],[390856,138636,996],[429188,101479,996],[390609,139759,949],[412170,115948,991],[411672,116035,1010],[391124,138545,4961],[424241,104339,7053],[411492,116247,4314],[391428,133124,1384],[393590,130982,1259],[393547,130633,1311],[393907,130813,963],[391797,132985,960],[393236,130836,1331],[393214,130467,1709],[392895,130683,979],[393281,131184,1315],[392966,131007,1372],[391663,131969,980],[392400,131324,997],[392071,131842,977],[394192,129620,1001],[393311,131573,1004],[390679,133708,1369],[390638,133385,1403],[390610,132992,1746],[391378,132767,1347],[391354,132386,1731],[391776,132611,1377],[391733,132262,1425],[392676,131168,991],[390180,133550,988],[433810,92324,1112],[367650,158541,1032],[367458,158917,1032],[365788,157197,1012],[367797,157613,1022],[367809,158208,1022],[367091,156892,1012],[367484,157103,1022],[366280,156728,1002],[364746,159143,1032],[364397,158523,1012],[366801,160205,1032],[365191,160302,1052],[366614,160567,1032],[365453,160670,1052],[366246,160828,1042],[365762,160903,1052],[366743,61321,521],[366715,61012,684],[367178,61033,596],[360146,60654,505],[362406,60014,526],[359783,59648,530],[363327,60736,584],[365060,61939,567],[364548,60883,525],[367939,63755,694],[363950,60818,564],[368579,62108,676],[367883,63414,545],[359872,60335,520],[362444,60353,425],[276619,138066,992],[276701,138123,992],[271333,143816,911],[271299,143461,1107],[271806,142333,958],[276896,134990,1082],[278139,135883,1042],[272893,140558,1052],[278179,135825,1042],[270504,144491,899],[270075,138451,1171],[269966,140380,1118],[269404,139274,1136],[272067,141754,946],[270667,140950,1073],[272888,141296,943],[275114,140275,984],[267332,148338,856],[282476,162547,1026],[281520,161268,823],[276496,156973,1079],[270105,153871,944],[268391,147198,881],[310521,145779,966],[271102,101478,740],[271485,100944,790],[273542,102071,795],[273800,98326,838],[272670,99741,811],[274593,100515,832],[272398,99596,790],[268053,105577,738],[268697,99199,785],[268903,103113,585],[269329,103908,755],[267460,101187,741],[268235,100677,820],[269338,102006,728],[269056,104145,768],[268589,103360,723],[267071,101755,681],[271017,100834,758],[271058,101149,752],[274364,98824,818],[274455,99497,825],[272911,99562,829],[266693,101993,791],[268141,100004,785],[268434,104954,764],[270059,102895,860],[270467,102969,713],[267844,100581,789],[275350,99475,826],[221743,136457,648],[222631,134036,634],[226841,134405,743],[226406,134591,593],[223827,133315,672],[222347,134950,680],[383073,43503,592],[386250,42666,592],[425929,58322,1045],[366134,100539,622],[365082,101593,632],[360010,105604,642],[370368,95603,592],[360779,105741,642],[361857,104697,642],[365561,103453,694],[364971,104124,696],[361901,107539,792],[361822,106815,712],[362898,105757,692],[372246,97494,752],[370467,96364,612],[367196,101608,642],[370457,98470,652],[371488,97446,682],[369383,97413,612],[366131,102645,662],[368972,98867,738],[365618,103790,860],[312807,134360,1079],[312314,133791,850],[313654,133483,1029],[305367,129285,1010],[305314,128950,879],[307665,130718,801],[301981,125849,804],[305269,125776,794],[299515,128094,984],[302336,128572,726],[302726,129122,879],[307563,134619,833],[308681,131876,990],[307764,131358,1001],[310868,133110,822],[311054,134487,877],[310190,133672,812],[315174,138287,973],[313445,135650,1082],[314504,133229,951],[325938,146423,1041],[325457,145886,815],[322418,146540,798],[321522,146095,918],[321427,145443,809],[324922,141775,945],[321254,144066,921],[317572,139980,910],[319015,140631,747],[316962,138758,971],[316125,138311,861],[313567,136635,975],[304621,130196,1104],[304850,128758,893],[312647,136123,1176],[313627,136981,1169],[300730,129077,731],[307946,132747,974],[311400,134366,1045],[309152,132477,820],[308768,132532,997],[312426,131698,694],[324281,146988,804],[300236,128203,805],[300272,128531,716],[306753,130995,921],[312894,135072,977],[311836,134979,1080],[312178,132782,816],[312988,132258,982],[312579,132700,972],[324053,148484,964],[322563,147522,996],[323521,147616,811],[309061,131794,807],[302426,129247,742],[313031,136042,1099],[312546,135462,987],[321960,146649,819],[275475,103353,863],[275368,106193,947],[275223,105228,751],[274344,105579,870],[274790,105715,736],[391587,60427,897],[391318,58414,860],[392796,60099,832],[388995,59933,810],[387242,62076,857],[388863,58919,828],[388439,58768,843],[388355,58122,848],[389204,58045,849],[387338,65627,827],[386935,62591,826],[391031,60743,751],[386142,62332,822],[386572,62787,799],[386500,65020,835],[392896,60958,882],[389424,59737,808],[389380,59399,810],[390026,57684,830],[385688,62180,817],[395439,33798,622],[396591,33463,632],[396716,33896,642],[395564,34230,632],[405450,106376,940],[235199,132876,712],[235342,133869,806],[226281,130328,733],[229817,132981,986],[228914,132270,999],[229234,131801,726],[232296,134563,1017],[228138,131533,966],[230175,132189,852],[230277,132832,1043],[231230,133254,703],[233239,134229,723],[232244,134205,984],[235735,134406,789],[226188,129680,681],[226235,129991,758],[228073,131188,725],[230634,132024,700],[227946,128058,645],[350141,122886,742],[347205,126302,752],[344822,121668,715],[360369,110915,652],[354926,108852,642],[359563,106065,642],[361890,108444,732],[361606,109866,632],[379954,89164,712],[379632,90679,730],[379572,90939,922],[379383,91080,677],[377012,90096,622],[379386,88579,722],[379670,88872,722],[353638,118214,719],[354684,116451,682],[353909,118490,852],[368462,70410,542],[303617,70561,560],[306618,69288,522],[305887,71683,562],[304437,71387,621],[317569,80196,623],[320909,82425,562],[316531,79673,872],[309289,74476,607],[311243,75969,641],[314293,78125,624],[315972,78655,607],[315642,78751,620],[316061,79305,643],[316637,79434,746],[336807,95173,673],[338208,96250,552],[320553,82941,572],[325695,84711,522],[334893,93514,549],[336440,93341,552],[336474,93380,552],[352789,118551,697],[353153,119210,842],[375222,87220,607],[373735,84574,602],[375340,85504,781],[346341,119762,670],[350182,114993,652],[346028,120160,731],[345800,120530,702],[343678,123486,746],[346993,126549,752],[350357,122646,752],[353309,119358,842],[347282,126370,762],[350233,122953,822],[349294,119682,659],[350436,122705,822],[337030,93622,552],[337082,93620,552],[336978,93620,552],[336926,93615,552],[336875,93606,552],[336825,93594,552],[336775,93578,552],[336727,93559,552],[336680,93537,552],[336635,93511,552],[336550,93451,552],[336591,93483,552],[336511,93417,552],[336408,93300,552],[336380,93256,552],[336354,93211,552],[336332,93164,552],[336297,93066,552],[336313,93116,552],[336285,93016,552],[336276,92965,552],[336271,92913,552],[336269,92861,552],[336271,92809,552],[336276,92757,552],[336285,92706,552],[336297,92656,562],[336313,92606,562],[336332,92558,562],[336354,92511,562],[336380,92466,562],[337178,87197,542],[337194,87247,542],[336408,92422,562],[337855,87748,542],[337907,87750,542],[337235,92128,552],[336440,92381,562],[336474,92342,562],[337235,87341,542],[336511,92305,562],[337260,87386,542],[336550,92271,562],[338945,80700,532],[351242,80381,544],[338993,80719,532],[336591,92239,562],[337289,87430,542],[337320,87471,542],[336635,92211,562],[337354,87510,542],[336680,92185,552],[337390,87546,542],[336727,92163,562],[336775,92144,562],[337470,87611,542],[336825,92128,562],[337429,87580,542],[337514,87640,542],[336875,92116,562],[337559,87665,542],[336926,92107,562],[337605,87687,542],[336978,92102,562],[337653,87706,542],[337030,92100,552],[337703,87722,542],[337082,92102,552],[337753,87734,542],[337134,92107,552],[337804,87743,542],[337185,92116,552],[337959,87748,542],[338010,87743,542],[337333,92163,552],[338061,87734,542],[338111,87722,542],[337425,92211,552],[338161,87706,542],[338209,87688,542],[337510,92271,552],[338255,87665,542],[338300,87640,542],[342488,90818,546],[338385,87580,542],[338424,87546,542],[337959,86238,532],[337907,86236,532],[338492,82129,522],[338161,86280,532],[338111,86264,532],[338694,82157,532],[343414,94496,559],[343556,94047,952],[343855,94856,952],[346944,84398,533],[339442,81356,542],[339437,81305,542],[337134,93615,552],[342940,89804,552],[338554,87386,542],[338579,87341,532],[337789,92913,562],[342670,92193,548],[337784,92965,562],[337775,93016,562],[342937,94199,545],[337763,93066,562],[337747,93116,562],[337728,93164,562],[337706,93211,562],[337680,93256,562],[337652,93300,562],[337620,93341,562],[337586,93380,562],[337549,93417,552],[337510,93451,562],[337469,93483,562],[337425,93511,552],[337380,93537,552],[337333,93559,552],[337285,93578,552],[337235,93594,552],[337185,93606,552],[338847,82141,542],[338255,86321,532],[338796,82150,542],[338221,81989,522],[337605,86299,532],[338182,81955,522],[327152,82909,492],[337972,81609,512],[337987,81658,512],[337960,81560,512],[337951,81509,512],[337946,81458,512],[337944,81407,512],[337946,81356,512],[337951,81305,512],[337960,81254,502],[337972,81205,502],[337987,81156,502],[338006,81108,502],[338028,81062,502],[338053,81017,502],[338081,80974,502],[338112,80934,502],[338146,80895,502],[338182,80859,502],[338221,80825,512],[338261,80794,512],[338304,80766,512],[338349,80741,512],[338395,80719,512],[342944,90666,732],[338443,80700,502],[366246,70840,482],[338541,80673,512],[338492,80685,502],[338592,80664,512],[338643,80659,512],[338694,80657,512],[338745,80659,522],[338796,80664,522],[338847,80673,522],[354860,79368,513],[359198,79639,520],[357071,79250,524],[339084,80766,532],[339039,80741,532],[339127,80794,532],[347798,83892,962],[347355,84507,962],[339167,80825,532],[350781,80763,542],[339206,80859,532],[346957,85151,952],[346604,85822,962],[345875,86545,536],[339276,80934,532],[339242,80895,532],[348533,82562,544],[346299,86515,962],[345422,88361,555],[345924,86889,586],[345836,87957,942],[339360,81062,532],[339382,81108,532],[346042,87228,952],[345271,89390,559],[345680,88698,942],[345577,89449,932],[345526,90204,952],[345169,90443,551],[343427,91086,569],[345527,90962,952],[343188,91120,962],[343132,92378,972],[343315,93220,942],[338061,86252,532],[338643,82155,532],[338010,86243,532],[338541,82141,522],[337855,86238,532],[337804,86243,532],[338395,82095,522],[339334,81796,542],[339306,81839,542],[339275,81880,542],[338579,86645,532],[339206,81955,542],[339242,81919,542],[338554,86600,532],[339167,81988,542],[338525,86556,532],[339126,82019,542],[338494,86515,532],[339083,82047,542],[338460,86476,532],[339039,82073,542],[338424,86440,532],[338993,82095,542],[337285,92144,552],[337289,86556,532],[337152,87045,532],[338385,86406,532],[338945,82113,542],[338344,86375,532],[338896,82129,542],[338300,86346,532],[338209,86299,532],[338745,82155,532],[338592,82150,522],[338443,82114,522],[337178,86789,532],[337166,86839,532],[337213,87295,542],[337703,86264,532],[338261,82020,522],[338304,82048,522],[337653,86280,522],[337559,86321,532],[338146,81919,522],[337166,87147,542],[337514,86346,532],[338112,81880,522],[337157,87096,532],[338081,81840,512],[337470,86375,532],[337390,86440,532],[338028,81752,512],[338053,81797,512],[337150,86993,532],[338006,81706,512],[337354,86476,532],[337152,86941,532],[337320,86515,532],[337157,86890,532],[337429,86406,532],[338349,82073,522],[337753,86252,532],[337194,86739,532],[337213,86691,532],[337235,86645,532],[337260,86600,532],[339360,81752,542],[339382,81706,542],[339400,81658,532],[339416,81609,542],[337620,92381,562],[337586,92342,562],[338601,86691,532],[343008,91525,962],[338620,86739,532],[338636,86789,532],[337706,92511,562],[337680,92466,562],[338648,86839,532],[337728,92558,562],[343549,95515,555],[337747,92606,562],[337763,92656,562],[337549,92305,562],[338344,87612,542],[338657,87096,532],[338662,87045,532],[338602,87295,532],[338620,87247,532],[338526,87430,542],[338494,87471,542],[338460,87510,542],[337469,92239,552],[337380,92185,552],[376640,76733,737],[376820,78088,754],[372943,82294,573],[374054,83893,778],[373612,83577,721],[372669,90403,589],[377365,92773,614],[380852,92275,822],[378086,94716,754],[376427,91506,750],[361712,110534,893],[374122,98431,783],[376719,95882,909],[373803,98802,931],[373170,97523,722],[370830,95170,592],[374727,94299,612],[367640,91095,547],[367718,89456,533],[352854,102675,611],[353621,102409,992],[353677,102614,624],[373699,93197,622],[367234,93082,572],[367408,91735,559],[375825,93298,612],[377215,94808,663],[375932,95276,629],[369513,102895,898],[368925,103178,694],[368533,102804,821],[357121,114258,690],[357313,102636,626],[357879,102206,1032],[358415,102200,669],[356066,102787,612],[352772,102264,982],[344661,97071,564],[345078,97129,952],[345587,97824,972],[351496,102078,679],[351934,102059,982],[352342,102331,636],[338664,86993,532],[351113,101797,982],[337775,92706,562],[346332,99203,576],[349177,101201,605],[337789,92809,562],[337784,92757,562],[350599,102076,589],[350313,101478,982],[337791,92861,562],[349536,101104,982],[348071,100199,972],[348788,100677,982],[338648,87147,532],[338636,87197,532],[346746,99098,952],[346573,99153,652],[346296,98891,641],[346145,98481,952],[338662,86941,532],[344621,96737,622],[339428,81560,542],[339437,81509,542],[344209,95641,982],[338657,86890,532],[339442,81458,542],[339444,81407,542],[343175,90933,962],[343165,90746,952],[343378,90730,558],[343158,89811,552],[344247,90608,539],[343153,89998,552],[343152,90185,562],[343158,90559,952],[339428,81254,542],[339416,81205,542],[339401,81156,532],[339335,81017,532],[339307,80974,532],[348282,83309,962],[349959,81780,952],[349365,82251,952],[338896,80685,522],[353335,80103,942],[351855,80363,563],[350584,81352,962],[351916,80632,952],[351237,80969,952],[352616,80343,952],[352216,80345,831],[356322,79655,952],[355566,79689,942],[354813,79775,942],[357834,79746,952],[357080,79674,952],[358037,79575,592],[359910,79971,536],[359254,80038,962],[358549,79868,962],[360623,80514,952],[359946,80253,952],[363565,81970,527],[363669,82451,952],[363114,81985,952],[360937,80295,528],[361281,80819,952],[361901,80920,540],[361917,81167,952],[362626,81241,539],[362908,81591,569],[362529,81556,952],[364459,82968,553],[364682,83489,942],[364193,82953,942],[365017,83629,561],[365614,84313,541],[365134,84056,942],[365548,84651,952],[366211,85333,546],[366702,86377,541],[366254,85917,932],[366950,94430,570],[366744,86692,560],[366542,86583,962],[367154,87407,522],[366984,87963,952],[366786,87266,952],[367377,89092,552],[367240,89390,962],[367136,88672,962],[367423,89440,558],[367466,89770,546],[367297,90113,962],[367367,91403,593],[367267,91562,952],[367306,90838,962],[367192,92743,604],[367046,92995,962],[367180,92282,962],[366905,94071,589],[366557,94636,972],[366830,93824,972],[366571,95395,577],[366530,95079,598],[365895,96761,565],[365853,96414,628],[365405,96929,972],[365842,96192,972],[364254,98741,587],[362230,100487,608],[365036,97744,592],[364379,98300,972],[363797,98928,972],[363171,99514,972],[360922,101422,605],[361197,101111,620],[359622,102141,609],[358785,102210,619],[359517,101709,1012],[357037,102367,1042],[356186,102468,1032],[354518,102928,609],[355331,102509,992],[354483,102589,739],[354474,102489,992],[343153,90372,732],[345217,90801,563],[354068,79913,942],[348805,82761,952],[351034,80731,556],[358707,101987,1022],[344053,95796,582],[366227,95427,972],[364971,83295,536],[350561,101742,653],[343309,93487,965],[343371,94162,589],[364916,97633,972],[362506,100054,992],[361805,100546,972],[359586,101792,749],[360493,101456,627],[361070,100987,972],[365922,85273,932],[347389,99672,972],[309197,73799,577],[311928,76441,654],[374822,92177,702],[374991,90957,848],[344617,96400,952],[370322,101696,825],[370707,101388,996],[360875,111554,726],[357729,114680,912],[372688,99752,773],[376672,95563,843],[376344,95610,816],[368662,103819,748],[368565,103147,623],[368171,103476,947],[367269,104143,775],[368444,102156,761],[364608,107864,922],[364138,108221,792],[364516,107187,881],[369653,101596,945],[371306,99388,869],[363317,108567,900],[363491,106897,881],[368488,102487,767],[369427,102246,887],[356842,115310,757],[355146,116432,829],[306365,71921,588],[373481,82576,738],[373732,81547,605],[373981,97455,620],[374855,96731,642],[360307,101376,982],[337652,92422,562],[365671,106457,915],[377152,87666,725],[375181,89576,631],[374586,90966,706],[373734,92023,753],[366073,105455,902],[313227,77388,636],[317047,79645,725],[362092,110186,774],[365875,105798,759],[360837,111202,820],[362260,109148,660],[376027,95977,665],[376076,96310,736],[377265,95155,719],[374962,97378,935],[279881,113604,776],[281222,113252,757],[280922,114088,989],[280828,110254,884],[281617,111662,764],[279582,111252,1013],[280457,107579,742],[282181,109610,820],[280090,108003,820],[278725,108031,657],[278312,107810,782],[281822,113009,1091],[282519,111962,1102],[281091,112286,756],[278446,113384,1065],[283464,109843,716],[282273,110313,778],[275951,110587,843],[277760,110174,834],[276091,111579,923],[278138,112845,1090],[279092,113528,900],[280489,114495,927],[279476,110607,758],[277071,112249,833],[278722,110849,784],[278874,109027,860],[280314,109718,725],[277418,112100,826],[283830,109333,813],[241584,106947,530],[242064,105938,462],[242111,105909,462],[235216,110269,492],[241408,107311,769],[282378,137833,1066],[284722,136719,1192],[279527,133298,1093],[279268,131691,1312],[284905,135919,1204],[284238,135510,1076],[278221,135940,1042],[282083,140355,1181],[276684,139317,1111],[281591,138471,1200],[280022,140598,1157],[280440,140065,1100],[281257,140405,1247],[281205,140082,1120],[281667,137322,1077],[280934,138032,1191],[282531,135985,1202],[281593,134527,1114],[281873,134064,1119],[279462,140092,1223],[280867,133022,1316],[280652,133521,1280],[280916,133383,1325],[280684,133853,1104],[344179,129988,742],[343653,129587,642],[343754,129442,642],[347070,126618,752],[343332,129120,812],[343243,128745,637],[341400,127793,662],[341525,127704,672],[344268,124457,729],[341102,127374,672],[341003,127501,672],[343250,129214,812],[342422,124742,725],[343346,123899,737],[418037,53089,761],[417462,53645,746],[418089,53413,905],[337384,106413,971],[336527,105599,930],[337526,103999,927],[314133,80318,925],[310494,81479,752],[313160,77834,612],[320209,83061,857],[334642,93936,588],[333652,93190,778],[333605,92875,708],[317593,83688,853],[317828,85388,975],[314509,83953,942],[314930,83395,922],[314696,84168,932],[315082,83489,922],[316685,79792,746],[316382,79886,872],[317863,82235,948],[318928,86817,844],[319232,87223,1392],[314560,96306,673],[305979,88408,569],[304977,88662,645],[310252,81432,752],[310173,81543,752],[309923,82377,701],[309884,82046,755],[312205,83057,965],[312834,83183,892],[312637,83958,894],[313367,84719,637],[315199,84877,779],[319078,87389,912],[309377,87454,530],[308254,86090,770],[310759,85601,558],[302738,87101,822],[304037,87165,831],[303735,88258,742],[300989,87549,657],[299617,89354,691],[301024,90669,719],[307854,86526,569],[308711,84202,892],[309245,83624,937],[312117,85223,559],[313095,85198,754],[313171,85873,573],[312046,88063,659],[321656,88650,1015],[320910,88121,1274],[321891,88239,708],[315859,93414,745],[316707,93165,777],[317313,94370,918],[322292,98856,677],[319132,98281,679],[319813,97044,691],[314099,90111,866],[313086,89801,815],[314070,92618,670],[312024,91525,719],[314810,92683,935],[314861,93007,1054],[314458,92816,893],[314219,91127,680],[314626,91361,828],[315147,95358,694],[314350,94623,858],[321916,95860,977],[324532,95355,1054],[324329,97780,889],[321696,96943,865],[318728,95257,649],[317965,93448,1059],[319870,93874,893],[332402,103225,623],[330977,101837,538],[331473,100699,568],[323562,98581,837],[318017,96592,767],[322944,98396,953],[344551,106324,593],[343799,105390,838],[345392,105863,580],[328175,97171,769],[325044,99393,712],[324958,98714,763],[327194,102487,679],[325446,102431,682],[326903,102892,805],[326052,96499,777],[330679,102600,613],[330358,106812,650],[333899,108059,686],[331925,108889,690],[342904,110602,561],[341003,111900,612],[341591,110769,606],[349651,111739,628],[349642,114785,795],[348142,114393,686],[335609,107963,701],[343701,110817,775],[343611,110162,739],[345379,119539,610],[344813,119239,725],[346298,112607,738],[346163,111562,786],[345983,119822,737],[317579,93214,906],[316585,92125,998],[319418,86740,835],[319530,87396,1186],[319940,86954,926],[320803,87436,1046],[332379,96637,689],[330202,98876,857],[330829,95674,881],[317895,88862,839],[318734,88625,1238],[318839,89626,849],[321031,89122,1103],[320982,88793,1036],[322050,94093,1079],[326611,96047,934],[310250,84732,890],[319791,85934,722],[319866,86284,1123],[321754,100737,696],[321162,96030,1158],[337901,110484,611],[340023,110726,528],[337954,110811,750],[336164,105383,616],[333401,104368,594],[321458,89720,926],[320430,90646,929],[314725,92007,1002],[315230,92214,1128],[314770,92323,1044],[304478,87395,808],[344372,109763,719],[304931,88311,658],[317829,95239,646],[316660,95969,645],[319617,91842,1124],[318311,91904,1012],[318944,90330,1020],[316461,91164,1038],[315962,90611,826],[317089,89535,860],[314817,89192,955],[319755,89092,1182],[305899,87738,696],[307111,88141,534],[306907,86476,763],[316132,95444,794],[317744,97722,724],[317377,98214,793],[318022,89871,761],[312890,88437,585],[317760,87842,844],[317531,88307,1020],[316462,87950,919],[314997,87029,549],[316220,86274,636],[335453,99996,675],[332398,100107,652],[336865,102724,595],[336328,104278,602],[334551,103059,591],[336298,106402,591],[320232,96548,995],[318067,90187,803],[317750,89987,981],[323742,89627,678],[321885,90334,1096],[322038,89238,903],[321298,91154,1081],[322101,92032,963],[320521,91323,929],[337940,103556,929],[337456,103648,598],[338801,104055,760],[337047,104078,604],[337876,103218,662],[339879,105569,758],[336227,101140,572],[314356,92144,709],[313166,90472,707],[316953,88503,875],[320719,86763,1137],[319890,86612,844],[322081,87498,714],[322467,87412,807],[320553,82974,783],[322620,85032,708],[328281,100926,731],[324757,93597,855],[344412,118640,606],[343100,115697,690],[345503,113391,781],[316963,95161,662],[307373,86344,533],[306948,86797,733],[341592,104235,906],[338179,102464,620],[317796,90304,1051],[317242,90534,1149],[317664,91092,1223],[316866,90988,946],[333324,103693,773],[332851,103461,761],[336419,104954,622],[333920,95220,756],[342339,106228,798],[341486,99853,714],[342395,106584,918],[341940,106921,769],[317802,94922,860],[337510,107426,849],[337085,107568,591],[337008,106853,847],[337585,108138,579],[317239,88086,841],[301999,87962,684],[340415,109592,787],[340884,110894,823],[340219,109964,575],[341572,113563,645],[331083,108716,652],[343518,107441,670],[343074,104083,694],[346913,103602,557],[350760,110231,758],[338591,108603,621],[338995,108495,817],[338681,109307,576],[340496,111994,702],[318801,98072,704],[332192,92147,596],[331413,92723,632],[339505,109446,567],[336595,106285,603],[342407,116826,763],[320258,100396,686],[318843,98398,678],[299661,89671,708],[301667,88012,673],[334340,101369,786],[330595,101923,702],[322634,88764,637],[323561,88298,614],[323973,87845,594],[344064,107421,753],[343380,108461,656],[338139,108713,723],[345842,112651,780],[318694,99155,674],[322843,86674,773],[321161,87359,1142],[317322,97870,659],[341670,108326,865],[321946,88562,875],[321985,88891,798],[329795,95881,729],[323445,91075,1016],[336245,98016,675],[311616,84687,901],[314868,86023,601],[314840,79023,895],[320635,88859,1013],[325553,90056,809],[326951,88075,563],[335423,95098,563],[335799,94658,695],[335889,95334,692],[324796,87084,708],[325568,88300,719],[318049,87069,945],[312402,84751,600],[340443,99256,573],[337727,99080,584],[337949,97677,691],[336347,98715,811],[342478,107235,865],[324835,87440,584],[337814,96669,689],[314712,84671,936],[340902,99218,574],[351950,112169,779],[351585,111534,630],[335083,94861,700],[325177,87345,586],[309803,88014,623],[315229,149210,949],[274474,89653,712],[275080,90106,712],[274901,90328,712],[274302,89873,712],[291704,116483,806],[292036,116072,857],[290621,114646,1021],[290250,114705,819],[290216,114378,937],[287064,115093,803],[289870,118348,976],[286746,115584,816],[291288,116586,828],[290664,117744,933],[290182,118251,980],[291154,115593,808],[288769,113071,785],[253466,195340,1082],[253422,195341,1082],[253511,195335,1082],[254072,194691,1062],[253640,195304,1082],[253554,195328,1082],[253598,195317,1082],[253681,195288,1082],[253797,195222,1072],[253760,195247,1072],[253721,195269,1072],[253897,195135,1072],[253866,195166,1072],[253833,195196,1072],[254066,194780,1062],[254019,194950,1072],[253927,195102,1072],[253978,195029,1072],[253953,195066,1072],[254000,194990,1072],[254059,194823,1072],[254035,194909,1072],[254048,194867,1072],[254071,194735,1062],[253378,195339,1082],[254070,194647,1062],[254018,194432,1062],[254066,194602,1062],[254048,194516,1062],[254058,194559,1062],[254034,194473,1062],[253760,194136,1052],[253977,194353,1062],[253999,194392,1062],[253953,194316,1062],[253926,194281,1062],[253897,194247,1062],[253797,194160,1052],[253866,194216,1062],[253832,194187,1062],[253681,194095,1052],[253721,194114,1052],[253640,194079,1052],[253554,194055,1042],[253597,194065,1052],[253466,194043,1042],[253511,194047,1042],[253378,194043,1042],[253422,194041,1042],[253204,194079,1032],[253333,194047,1042],[253290,194055,1042],[253247,194065,1032],[253084,194136,1032],[253163,194095,1032],[253123,194114,1032],[252947,194247,1042],[253047,194160,1032],[252978,194216,1032],[253012,194187,1032],[252891,194316,1042],[252918,194281,1042],[252796,194866,1052],[252826,194432,1042],[252867,194353,1042],[252845,194392,1042],[252796,194516,1042],[252810,194473,1042],[252778,194602,1052],[252786,194559,1042],[252774,194647,1042],[252772,194691,1042],[252774,194735,1042],[252786,194823,1052],[252778,194780,1052],[253333,195335,1082],[252845,194990,1062],[252810,194909,1052],[252826,194950,1052],[252867,195029,1062],[252918,195101,1062],[252891,195066,1062],[252978,195166,1072],[252947,195135,1072],[253123,195268,1072],[253012,195195,1072],[253084,195246,1072],[253047,195222,1072],[253163,195287,1072],[253247,195317,1072],[253204,195303,1072],[253290,195327,1082],[234223,111538,476],[230290,113731,592],[235230,110511,502],[235043,110913,464],[234819,111231,641],[472036,6052,32],[472073,5790,32],[521245,8267,32],[471981,6311,32],[511547,29311,32],[471816,6815,32],[471907,6566,32],[471708,7057,32],[471583,7290,32],[471442,7514,32],[471285,7728,32],[470929,8120,32],[471114,7931,32],[509635,33904,32],[269998,298272,32],[268785,299473,32],[239297,291307,32],[459783,26663,32],[462934,8074,32],[468286,9168,32],[272430,295877,32],[271213,297073,32],[276094,292300,32],[274871,293490,32],[273650,294682,32],[345366,228398,32],[344812,228926,32],[334996,235648,32],[354456,217238,32],[348226,225589,32],[348688,225129,32],[327540,242921,32],[286335,245958,32],[278547,289925,32],[375001,160796,32],[383532,152521,32],[400790,171272,32],[397001,178401,32],[387037,188308,32],[386741,188445,32],[384655,189411,32],[380229,191675,32],[397109,178201,32],[456905,10065,32],[457014,9820,32],[367413,204506,32],[464686,32274,32],[470522,8459,32],[470731,8297,32],[465043,33092,32],[267574,300676,32],[465298,33736,32],[266365,301881,32],[510603,31683,32],[265158,303088,32],[263953,304297,32],[262750,305508,32],[261550,306722,32],[259693,308621,32],[456590,10497,32],[456763,10292,32],[511560,29458,32],[471815,3972,32],[471707,3730,32],[521510,8125,32],[521293,8289,32],[521721,7955,32],[521928,7779,32],[522129,7597,32],[523558,5333,32],[522325,7409,32],[522515,7215,32],[522699,7016,32],[522877,6812,32],[523050,6602,32],[523215,6387,32],[523375,6168,32],[523528,5943,32],[523674,5715,32],[523813,5482,32],[524371,3938,32],[471582,3496,32],[463099,0,32],[469332,1758,32],[469074,1696,32],[466368,43344,32],[500429,53663,32],[499352,55832,32],[469584,1838,32],[471284,3058,32],[471113,2856,32],[469831,1936,32],[470928,2666,32],[470730,2490,32],[470069,2050,32],[470520,2328,32],[470300,2181,32],[508656,36119,32],[507666,38330,32],[465687,34855,32],[466287,37148,32],[506665,40535,32],[505653,42736,32],[466017,35994,32],[504630,44932,32],[503596,47123,32],[466621,39311,32],[501496,51488,32],[466542,42349,32],[471440,3272,32],[471906,4220,32],[471980,4475,32],[472035,4734,32],[472073,4996,32],[472091,5261,32],[472091,5526,32],[438754,16498,32],[438239,15329,32],[438239,15328,32],[464297,31472,32],[470301,8606,32],[464020,30946,32],[470071,8737,32],[463578,30171,32],[469832,8852,32],[463176,29527,32],[469586,8949,32],[462986,29257,32],[469333,9029,32],[462677,28871,32],[469076,9091,32],[462456,28626,32],[468815,9135,32],[462224,28392,32],[468551,9161,32],[461854,28064,32],[277320,291111,32],[456493,10590,32],[456576,10510,32],[456405,10664,32],[457104,25370,32],[456390,10676,32],[456167,10825,32],[455926,10941,32],[455670,11022,32],[456228,25069,32],[455406,11066,32],[454812,24729,32],[455138,11073,32],[454872,11041,32],[453048,11160,32],[454741,11012,32],[453213,11106,32],[454612,10973,32],[453254,11092,32],[454365,10869,32],[453448,10997,32],[454135,10732,32],[453628,10875,32],[453927,10563,32],[453788,10729,32],[453780,10736,32],[453721,10790,32],[453540,10939,32],[453411,11015,32],[453323,11058,32],[452870,11192,32],[452835,11198,32],[452782,11200,32],[452642,11206,32],[452618,11207,32],[452510,11200,32],[452421,11188,32],[452402,11185,32],[445258,22056,32],[452332,11168,32],[452192,11134,32],[452121,11106,32],[451990,11054,32],[440846,21249,32],[440283,19971,32],[440283,19970,32],[466657,41136,32],[502551,49308,32],[466497,38315,32],[466670,40223,32],[461726,27960,32],[498264,57996,32],[466038,44917,32],[461980,28170,32],[463086,54722,32],[497165,60155,32],[488136,77001,32],[462103,28280,32],[465560,46867,32],[462341,28508,32],[462568,28747,32],[462783,28997,32],[462886,29126,32],[463082,29391,32],[463266,29665,32],[463424,29917,32],[463729,30427,32],[463876,30686,32],[464160,31208,32],[464430,31738,32],[464560,32005,32],[486655,79502,32],[460461,61701,32],[464809,32545,32],[464928,32818,32],[457614,68589,32],[485127,81976,32],[483553,84420,32],[457824,68110,32],[465155,33367,32],[465564,34480,32],[465434,34107,32],[481935,86835,32],[456906,69987,32],[465804,35233,32],[465914,35613,32],[454930,72988,32],[480271,89219,32],[478564,91572,32],[456229,71105,32],[466114,36377,32],[466204,36762,32],[466363,37536,32],[476813,93893,32],[453729,74620,32],[466433,37925,32],[448732,81686,32],[475019,96181,32],[473183,98435,32],[452482,76216,32],[466553,38706,32],[466590,39008,32],[466644,39615,32],[471305,100655,32],[469386,102839,32],[467427,104987,32],[466660,39919,32],[466672,40528,32],[466668,40832,32],[465429,107098,32],[441602,91378,32],[417974,118701,32],[463391,109172,32],[414047,158268,32],[466638,41440,32],[466613,41744,32],[466581,42047,32],[466497,42650,32],[466444,42950,32],[466290,43738,32],[466209,44132,32],[466125,44525,32],[465948,45308,32],[465855,45699,32],[465760,46089,32],[465661,46478,32],[465456,47255,32],[465348,47642,32],[465238,48028,32],[465125,48413,32],[457721,68350,32],[457504,68826,32],[457275,69295,32],[457391,69061,32],[457155,69527,32],[457032,69758,32],[456777,70214,32],[456644,70440,32],[456509,70663,32],[456371,70885,32],[456085,71323,32],[455801,71742,32],[455514,72160,32],[455223,72575,32],[454634,73399,32],[454336,73808,32],[454034,74215,32],[453422,75022,32],[453112,75422,32],[452798,75820,32],[452164,76610,32],[451842,77001,32],[441072,92059,32],[440541,92738,32],[440007,93416,32],[439471,94092,32],[438932,94766,32],[438392,95438,32],[437849,96109,32],[437304,96778,32],[436757,97445,32],[436208,98110,32],[435657,98774,32],[435103,99435,32],[434548,100095,32],[433990,100753,32],[425137,110912,32],[404623,132355,32],[346380,48953,232],[347288,48677,232],[347434,49155,242],[346525,49432,242],[423682,32197,1922],[422605,33729,1952],[423647,32174,1922],[216745,315746,762],[218534,312598,762],[460461,61701,692],[231625,298703,762],[239297,291307,762],[286335,245958,762],[428276,106956,580],[425311,110712,210],[444037,87707,260],[446542,84311,243],[435103,99435,812],[434654,99311,746],[435124,98993,345],[435657,98774,822],[435646,98380,252],[436208,98110,852],[436327,97369,618],[436757,97445,822],[437396,96540,145],[437304,96778,632],[437956,95577,240],[438956,94624,159],[438932,94766,572],[439471,94092,722],[439631,93664,166],[440007,93416,702],[440040,93164,188],[440541,92738,572],[453264,74498,788],[455514,72160,692],[451842,77001,552],[452164,76610,552],[452798,75820,722],[452932,75631,557],[452482,76216,722],[453422,75022,702],[453729,74620,692],[453112,75422,782],[454336,73808,692],[454034,74215,782],[454634,73399,692],[454930,72988,692],[455223,72575,692],[455801,71742,692],[456085,71323,692],[456229,71105,692],[456371,70885,692],[456509,70663,692],[456644,70440,692],[456777,70214,692],[456906,69987,692],[457032,69758,692],[457155,69527,692],[457275,69295,692],[457391,69061,692],[457504,68826,692],[457614,68589,692],[457721,68350,692],[457824,68110,692],[220224,310364,762],[463086,54722,692],[441370,91281,253],[450979,78223,871],[447481,83293,172],[422871,113340,395],[424691,111309,272],[425137,110912,642],[448277,82302,356],[437073,96695,226],[433952,100245,510],[433990,100753,812],[438941,94286,581],[432535,102080,346],[433282,101530,141],[434548,100095,812],[424998,110832,323],[413962,122503,584],[416435,119951,569],[330858,203191,393],[319873,213555,667],[406530,130040,622],[402046,134540,412],[397414,139241,146],[356336,178551,771],[353319,181395,632],[369945,165171,830],[379691,155933,625],[391007,145020,673],[394352,141909,565],[215069,319948,762],[213100,327637,762],[433606,101038,204],[440025,92843,574],[404299,132337,468],[404013,132854,164],[382347,153563,413],[380287,155624,405],[404721,131730,639],[404736,132121,139],[404623,132355,682],[404492,132247,234],[408122,128764,171],[405377,131531,131],[440444,92745,182],[400920,135857,140],[318444,215098,311],[315129,217971,728],[383532,152521,712],[450113,79500,297],[422841,112964,670],[419826,116466,485],[423169,112881,344],[375001,160796,762],[345933,188714,468],[387943,148266,256],[407867,128514,700],[375160,160395,765],[372327,163163,612],[407611,128942,564],[443036,89378,209],[428794,106430,395],[429385,105605,563],[430835,103943,711],[421912,114401,137],[421682,114534,243],[431771,103011,363],[376016,159750,498],[370463,164902,798],[365007,170394,520],[436461,22314,352],[435777,22464,1332],[437964,21922,1702],[436139,22586,1837],[436073,22446,139],[437176,22242,1709],[438089,22218,1792],[438142,22342,2622],[435845,22910,2212],[435811,22495,450],[437964,21923,1702],[435777,22464,582],[437964,21922,582],[455572,25215,92],[455303,25294,247],[454793,25027,195],[440852,21711,1340],[441052,21532,1342],[445151,22054,280],[440846,21249,1052],[440712,21774,1372],[443011,67668,1232],[443359,67391,1392],[443089,67731,1232],[443281,67328,1392],[444746,65227,4212],[444667,64973,4212],[444839,65263,4212],[445006,64828,4212],[445179,62071,4282],[445357,62274,4282],[444912,64793,4212],[445457,62272,4282],[445447,61798,4302],[444999,59173,4132],[444920,59235,4222],[444693,59148,4262],[445347,61800,4282],[444718,58813,4132],[443116,56845,4522],[443200,56771,4512],[444635,58869,4132],[443282,56715,4512],[442976,56372,4612],[442901,56439,4532],[441208,54548,4792],[441283,54481,4792],[440902,54205,4792],[440976,54138,4772],[439283,52247,4692],[439209,52314,4682],[438896,51964,4682],[438970,51897,4682],[437284,50013,12682],[437210,50080,12422],[436903,49737,12422],[436978,49670,12772],[435298,47794,14282],[435224,47860,14212],[434985,47444,15092],[434910,47510,14472],[443011,67668,1202],[443089,67731,1192],[443359,67391,1202],[443281,67328,1212],[444746,65227,1262],[444839,65263,1262],[445006,64828,1282],[444912,64793,1292],[445357,62274,1422],[445457,62272,1422],[445447,61798,1452],[445347,61800,1462],[444920,59235,1612],[444999,59173,1612],[444718,58813,1662],[444635,58869,1662],[443200,56771,1822],[443282,56715,1812],[442976,56372,1852],[442901,56439,1872],[441208,54548,2002],[441283,54481,2002],[440976,54138,2012],[440902,54205,2002],[439209,52314,2072],[439283,52247,2072],[438970,51897,2082],[438896,51964,2082],[437210,50080,2192],[437284,50013,2192],[436978,49670,2212],[436903,49737,2212],[435224,47860,2242],[435298,47794,2242],[434985,47444,2252],[434910,47510,2252],[397989,92847,2772],[397821,92862,2652],[397899,92770,2622],[397989,92847,1002],[221793,119101,642],[225523,116542,512],[225624,116703,542],[221531,119040,572],[221633,119204,602],[221793,119101,482],[225624,116703,482],[225523,116542,472],[221531,119040,482],[221633,119204,492],[230175,113556,542],[230175,113556,472],[312834,83183,4512],[314696,84168,3022],[319078,87389,1412],[314509,83953,3412],[315082,83489,3022],[314930,83395,3012],[380581,86368,1448],[380965,86254,1424],[380569,86679,718],[381624,84713,685],[378528,87461,846],[377963,86496,1180],[378162,87187,2680],[378697,87794,2603],[379122,88095,2543],[379278,87979,755],[379342,88317,1016],[378944,87721,739],[381304,85829,763],[381257,85507,702],[379888,87169,690],[380922,85925,1420],[382344,84388,762],[380251,86728,1101],[406073,94308,1426],[406497,94521,803],[406117,94548,772],[408107,92254,1447],[407877,93033,1417],[408044,92342,5044],[410159,90800,642],[407334,93545,1403],[407530,92817,1435],[407248,92869,1446],[405777,94324,802],[409457,91318,1403],[407081,93985,816],[406457,94772,692],[406870,94079,1446],[407834,92693,1445],[409417,91001,1432],[409734,90549,675],[409782,90882,745],[357141,94149,1865],[356587,96824,1592],[356446,96819,1592],[356728,96819,1592],[356869,96805,1592],[357009,96781,1602],[357146,96747,1592],[357281,96704,1602],[357412,96652,1602],[357540,96592,1602],[357663,96522,1602],[357782,96445,1612],[357894,96359,1612],[358001,96266,1612],[358101,96166,1622],[358194,96059,1642],[358280,95947,1652],[358357,95828,1642],[358427,95705,1652],[358487,95577,1652],[358539,95446,1682],[358582,95311,1682],[358616,95174,1682],[358640,95034,1692],[358654,94893,1722],[358659,94752,1722],[358654,94611,1732],[358640,94470,1732],[358616,94330,1732],[358582,94193,1732],[358539,94058,1742],[358487,93927,1742],[358427,93799,1742],[358357,93675,1752],[358280,93557,1752],[358194,93444,1772],[358101,93338,1772],[358001,93238,1772],[357895,93145,1782],[357782,93059,1782],[357664,92982,1772],[357540,92912,1782],[357412,92852,1782],[357281,92800,1782],[357146,92757,1782],[357009,92723,1782],[356869,92699,1782],[356728,92685,1782],[356587,92680,1782],[356305,92699,1782],[356446,92685,1782],[356165,92723,1782],[356028,92757,1782],[355893,92800,1782],[355762,92852,1782],[355634,92912,1782],[355510,92982,1782],[355392,93059,1792],[355279,93145,1772],[355173,93238,1772],[355073,93338,1772],[354980,93444,1762],[354894,93557,1752],[354817,93675,1742],[354747,93799,1742],[354687,93927,1732],[354635,94058,1722],[354592,94193,1712],[354558,94330,1712],[354534,94470,1702],[354520,94611,1692],[354515,94752,1692],[354520,94893,1682],[354534,95034,1682],[354558,95174,1672],[354592,95311,1672],[354635,95446,1662],[354687,95577,1662],[354747,95705,1662],[354817,95829,1662],[354894,95947,1652],[354980,96060,1652],[355073,96166,1642],[355173,96266,1642],[355279,96359,1642],[355392,96445,1622],[355510,96522,1622],[355634,96592,1622],[355762,96652,1602],[355893,96704,1602],[356028,96747,1602],[356165,96781,1602],[356305,96805,1592],[276578,65311,484],[277506,65264,352],[276236,65983,332],[276535,64978,500],[276520,65098,5037],[276181,65126,465],[276732,63964,372],[275479,64710,372],[222828,114271,642],[223074,114299,5308],[223200,114419,412],[221600,114351,506],[221899,114944,549],[221192,114020,362],[222117,113525,7388],[222164,113773,523],[221716,113951,524],[222697,114161,5184],[222707,114122,612],[222251,113384,438],[221398,113928,432],[222237,114179,7785],[222011,114169,626],[222282,113709,5066],[222394,113935,1438],[222288,114870,568],[221989,115237,402],[222653,113792,481],[222287,113653,508],[222481,114002,7262],[222511,114034,588],[222331,114407,704],[222466,114715,5706],[221521,113988,5575],[222415,113219,362],[222427,114639,564],[401966,79855,1304],[401882,79501,789],[402238,79381,1254],[403351,82639,802],[401687,81443,792],[402358,80509,772],[403220,80109,772],[404547,80975,802],[401739,79957,1155],[402290,80047,765],[401868,79050,802],[401343,79780,812],[393061,83483,1307],[393484,83814,892],[389725,81166,822],[392893,82477,817],[392986,83156,869],[392503,82974,820],[393323,82595,857],[394078,82973,852],[393458,83626,838],[391575,82348,979],[393404,82962,1315],[391438,81367,871],[391085,81885,842],[393687,82784,1303],[391986,82494,828],[392373,81982,823],[391888,81515,1259],[391553,82018,1275],[391945,82180,828],[390319,80324,802],[391477,81695,799],[358916,33479,684],[359821,33303,592],[358289,33668,652],[358322,32795,740],[358363,33117,729],[357944,32179,692],[358195,32436,7567],[358275,32449,728],[359345,33148,723],[359511,32841,7920],[359566,32878,7146],[358349,32822,8992],[358494,32470,7265],[358668,32855,779],[358354,32922,779],[359652,32801,651],[359469,32642,3818],[359334,32224,766],[358839,32836,787],[358913,32960,1170],[358771,32873,7977],[358642,33325,780],[358877,33150,734],[358421,33097,7811],[359164,33088,7642],[358722,33011,8560],[359209,32105,732],[359400,31843,642],[358381,32477,750],[359285,33167,743],[359479,33250,8061],[359253,32742,6689],[358952,32719,811],[359254,32454,726],[359667,33148,735],[359201,32857,7315],[359153,32824,2797],[358229,32121,679],[358785,32461,732],[358858,32555,7040],[358636,32199,5536],[358576,32071,6456],[358738,32111,728],[359300,32797,749],[359310,32699,755],[358696,32372,761],[359413,32604,4624],[331793,54550,405],[332738,54284,272],[331318,54711,282],[331256,53602,360],[330904,53352,232],[331657,53530,399],[332050,53453,406],[331657,53768,5723],[331713,53883,540],[332017,53052,6396],[332004,53106,396],[332395,53374,365],[332323,52920,4672],[332323,52920,252],[404406,31622,921],[404620,31530,5163],[404725,31724,2401],[404591,31412,937],[404683,31190,914],[404699,31360,6593],[404842,31229,950],[405089,31112,1623],[404821,31660,961],[404427,31165,920],[405070,32441,968],[405601,32325,862],[404168,32743,812],[404732,31554,909],[404959,31073,5037],[405313,31882,1608],[404774,31880,907],[403757,31323,832],[404362,32528,956],[405190,30907,1652],[405363,31844,1659],[405302,32161,924],[404773,31727,1667],[405190,30907,872],[392622,24984,746],[392956,25106,662],[392538,25049,5101],[391361,24344,5696],[391415,24657,817],[391148,23986,682],[392290,24648,834],[392580,24650,778],[392475,24885,6148],[391727,25243,751],[391779,24997,3579],[391952,25297,800],[391447,24794,4111],[391634,25180,5586],[391484,25470,1192],[391976,24804,802],[391811,24734,3300],[392035,24775,4504],[392332,25085,3732],[392014,25262,4454],[392604,23657,712],[392072,24437,767],[391440,24192,780],[391592,25349,6084],[391685,24519,791],[392160,25103,770],[392142,24805,1073],[392269,25090,812],[391636,24554,765],[391663,24941,804],[392628,24755,3990],[392891,24906,4330],[392563,24617,5052],[392556,24541,816],[392401,24472,3157],[392533,24290,767],[392687,24125,3572],[392840,24856,782],[391685,24910,784],[392377,24954,3165],[392535,24992,782],[392580,24047,825],[392134,24686,3106],[392086,24739,3778],[391484,25470,652],[284462,74566,2446],[285172,74327,382],[283876,75077,1622],[284014,73348,3061],[284030,73401,8379],[283548,73531,3052],[284408,74241,2304],[284445,74233,7263],[284596,74375,657],[283587,73615,2392],[283998,73682,7425],[283681,74122,2389],[284268,74163,10202],[284259,74445,4379],[284532,73440,1454],[284422,73030,2732],[284035,73687,2738],[284802,73994,637],[284837,74307,551],[284308,73562,2181],[284309,73259,2738],[284137,74685,2329],[284338,73872,2029],[284575,74067,911],[284544,73745,1076],[283175,73865,5242],[283242,73888,2088],[283763,74774,2323],[284422,73030,352],[283876,75077,392],[283175,73865,342],[338571,81703,563],[339054,81664,540],[338745,81449,3472],[339012,81332,556],[338480,81023,553],[338241,81170,3434],[338069,81435,526],[301147,65257,953],[302005,65296,382],[300673,65955,372],[301353,63982,5852],[301161,64503,8408],[301199,64061,5912],[300972,64197,485],[300891,64220,6292],[301045,64140,5912],[301010,64970,5551],[300634,64518,7270],[300639,64963,577],[301115,64943,1076],[300584,64380,6292],[300737,64300,6292],[300277,64541,6282],[300430,64460,6292],[301216,64863,8516],[301523,64962,6535],[301515,65120,584],[301472,64775,615],[301843,65026,559],[299977,64688,342],[300144,64686,399],[301353,63982,382],[371964,30297,406],[373210,29990,452],[371725,30357,432],[372777,29639,3540],[372974,29413,537],[372997,29537,564],[372658,29465,5292],[372746,29184,577],[372885,29230,6325],[373059,29357,7447],[373015,29735,512],[373001,29276,8298],[371903,28994,6599],[371794,28944,8136],[371794,28934,536],[372349,29055,6137],[372294,29090,6877],[372344,28947,596],[372154,29106,6222],[372204,29181,535],[371759,29136,561],[372869,28520,492],[372578,28828,593],[372058,29032,575],[371423,28881,482],[372927,29052,545],[372601,29427,6108],[372557,29602,6599],[372439,29540,4547],[372424,29777,2032],[372292,29862,503],[372319,29401,595],[372821,29866,6750],[372254,30146,6652],[372627,29587,5742],[372630,29467,546],[372670,29784,525],[372560,29736,2747],[372612,29688,2062],[372554,29287,589],[372522,29646,775],[372471,29701,1436],[372721,29648,585],[372505,29711,7227],[372585,29126,552],[372871,29794,6113],[372978,29795,4636],[203238,113068,1401],[203383,112990,4932],[202163,113846,4622],[202311,113227,5919],[202126,113106,5576],[202433,113162,1457],[201865,112353,1345],[202063,112269,5242],[202163,112575,1414],[203096,113052,5231],[203233,112831,1351],[202676,112721,5436],[202534,112533,1419],[202663,112546,1346],[202563,111863,1294],[202521,111762,1232],[202864,112331,4982],[202732,113063,6849],[202826,112753,6810],[202974,112783,5308],[203119,112749,5191],[202949,112424,1279],[202759,112472,5254],[202820,112511,1468],[203002,112751,1381],[203048,113091,1356],[202760,113217,1399],[202883,113120,1417],[202586,112979,6400],[202375,113329,1404],[202532,113376,6216],[202184,112270,1377],[202318,113503,1432],[202047,112861,1582],[202526,112293,1376],[202351,112478,5371],[202433,112224,5260],[202280,112655,1409],[201968,113236,1453],[201302,112618,1332],[202505,113069,3899],[202002,113408,5648],[202614,112201,1333],[202266,112301,1908],[202214,112062,1298],[202469,112024,5108],[203316,112992,1277],[201935,113387,1423],[202546,112937,4626],[203383,112990,1272],[202163,113846,1412],[258306,188700,1002],[258262,188701,1002],[258391,188133,1163],[258351,188695,1012],[258394,188688,1012],[258438,188677,1012],[258480,188664,1012],[258521,188648,1002],[258561,188629,1002],[258600,188607,1002],[258637,188582,1002],[258673,188556,1012],[258706,188526,1012],[258737,188495,1012],[258767,188462,1002],[258793,188426,1012],[258818,188389,1002],[258840,188350,1002],[258859,188310,1002],[258875,188269,1002],[258888,188227,1002],[258899,188183,1002],[258906,188140,1002],[258911,188095,1002],[258216,188699,1002],[258912,188051,1002],[258910,188005,1002],[258906,187960,1002],[258898,187915,1002],[258886,187871,1002],[258872,187827,1002],[258855,187785,1002],[258835,187744,1002],[258812,187704,1002],[258786,187666,1002],[258758,187631,992],[258727,187597,992],[258694,187565,992],[258659,187536,992],[258622,187509,982],[258583,187486,982],[258542,187464,982],[258500,187446,982],[258457,187431,982],[258413,187419,972],[258368,187410,972],[258171,188695,1002],[258323,187404,972],[258277,187401,972],[258232,187402,972],[258186,187405,972],[258141,187412,972],[258096,187422,972],[258052,187436,972],[258010,187452,972],[257968,187471,972],[257928,187493,972],[257890,187518,972],[257853,187546,972],[257819,187576,972],[257787,187608,972],[257757,187642,982],[257729,187679,982],[257704,187717,982],[257811,188239,1158],[257682,187757,982],[257663,187799,982],[257647,187841,982],[257633,187885,982],[257623,187930,982],[257616,187975,982],[257613,188021,982],[257612,188066,982],[257615,188112,982],[257621,188157,982],[257630,188202,982],[257996,188644,1012],[257657,188289,1002],[257675,188331,1002],[257697,188372,1002],[257720,188411,1002],[257747,188448,1002],[257776,188483,1002],[257808,188516,1002],[257842,188547,1002],[257877,188575,1002],[257915,188601,1012],[257955,188624,1012],[258038,188661,1012],[258082,188675,1012],[258126,188687,1012],[257642,188246,982],[372016,77661,3246],[372173,78021,4751],[371902,78252,579],[371770,77244,585],[371862,78102,6654],[406323,79159,764],[414749,85128,772],[412640,83511,1377],[412589,83152,1330],[413062,83393,1426],[410196,81840,798],[411217,89217,1416],[411175,88886,1430],[411541,89165,772],[410693,89660,1404],[410949,89624,1411],[410944,89954,716],[410905,89306,1385],[410970,89340,5938],[414698,86145,710],[414732,86275,5718],[414414,86555,688],[409250,81165,5860],[407381,79674,1335],[406809,79421,935],[407339,79345,1367],[414953,85698,709],[415973,85008,662],[411541,88833,1394],[411500,88516,1407],[413823,87026,721],[409870,81554,1268],[414093,86266,1382],[415289,85305,748],[415286,84953,1360],[409537,80939,1390],[409498,80630,1403],[409745,80865,791],[411050,82063,1323],[411088,82395,1228],[410609,82107,831],[409579,81298,1307],[409251,81049,1314],[404985,78171,758],[405662,78578,5731],[406232,78486,741],[405914,78281,1303],[405524,78009,798],[405609,78384,1306],[402259,76252,1249],[402222,75915,1364],[411100,88946,4808],[411226,89560,908],[411492,82310,1273],[414435,84147,716],[414094,86608,742],[411849,82694,5607],[412064,82910,1329],[415327,85623,688],[403260,76968,809],[403797,77191,1326],[404721,77958,1218],[403164,76288,719],[413548,87092,1386],[413769,86335,1253],[413824,86678,1394],[411931,88774,1202],[412296,88332,1366],[414226,85953,3859],[414374,85909,1327],[407977,80234,1267],[406318,78837,1297],[405292,78135,1348],[404684,77632,1326],[414527,84470,1412],[414193,84533,1324],[414159,84220,1431],[412020,82552,1380],[405959,78603,1338],[414659,85473,1414],[414663,85783,883],[414963,85388,1428],[414539,84795,964],[410531,81459,933],[411403,81948,709],[409118,80337,762],[408879,80764,1348],[408840,80429,1427],[407850,79572,722],[410603,81800,1322],[409829,81230,1299],[412502,82801,746],[412251,87972,1394],[410166,81488,1032],[403753,76849,1344],[402731,76105,1366],[403254,76646,1335],[411892,88435,1273],[418886,92999,1034],[420200,92831,1055],[419169,93205,1028],[425511,88240,1521],[424658,88474,1503],[424550,87779,1277],[424524,87465,1505],[424903,87017,1235],[426073,87698,1505],[426679,87865,932],[426607,88009,922],[425833,88144,1203],[426437,88281,922],[426339,88409,922],[426526,88148,922],[426741,87717,932],[426156,85954,1412],[425616,86455,1293],[426305,85638,4122],[426898,86466,1169],[426625,86902,1392],[426523,86230,1204],[423917,88045,4116],[423077,88962,1136],[422826,89071,1190],[420463,92023,1145],[420516,92357,1279],[420062,91805,1025],[422109,89778,4125],[421175,90758,1025],[416811,94978,4117],[415019,96748,4117],[413770,97981,4100],[418769,93090,4124],[420821,91564,1079],[420584,91355,4132],[420773,91206,1077],[417866,94683,1044],[418692,94122,1068],[417924,95020,1226],[416013,95878,1042],[415894,95903,4108],[422735,89183,4110],[422250,89666,1061],[426445,85557,1360],[426663,87260,1250],[426795,87565,932],[414207,97590,4121],[424146,87930,1341],[414054,97959,1249],[414087,98322,1041],[416482,95402,4123],[416312,95769,1020],[415729,96286,1027],[422337,90310,1093],[422669,90216,1204],[422410,90653,1476],[422045,90799,1268],[422506,91326,1582],[421939,90124,1032],[422293,89982,1072],[416642,95347,1034],[417009,94929,1046],[417543,95489,1118],[415538,97348,1060],[415188,97068,1223],[414645,97187,4114],[414538,97910,1233],[421382,92102,1436],[421783,91586,1589],[421639,90628,1332],[422868,89427,1125],[423965,89743,1582],[424752,89121,1622],[424784,89456,1446],[422572,89539,1082],[423240,89972,1549],[423770,88367,1415],[423800,88709,1199],[415135,96745,1067],[414491,97599,1148],[426823,85819,1336],[426483,85886,1276],[425977,87022,1410],[426280,86966,1257],[426974,86864,972],[425659,86795,1275],[425472,86584,4125],[425936,86702,1429],[421226,91070,1157],[420426,91701,1226],[414863,97158,1123],[424190,88261,1334],[424398,89921,1161],[424033,90393,1328],[414957,97827,1186],[427020,85840,1002],[414435,98555,932],[422790,90865,1699],[418601,93447,1041],[418934,93357,1045],[425887,88478,1347],[425322,86914,1330],[425816,87823,1567],[425362,87272,1232],[425699,87122,1210],[425423,87590,1494],[424943,87347,1183],[419574,93755,1278],[421013,92883,1326],[425130,88698,1296],[423598,90164,1373],[423652,90522,1457],[423104,91094,1335],[417777,94036,991],[423080,90774,1597],[423029,90439,1504],[419216,93549,1055],[426838,87410,932],[423338,90986,1017],[426166,88669,922],[422145,91477,1417],[421841,92269,1113],[421810,91946,1274],[423310,90648,1263],[419603,94100,1041],[425536,88598,1212],[425168,89041,1187],[420973,92550,1384],[419083,94312,1360],[417969,95363,1223],[415222,97388,1097],[415277,97743,1208],[419290,93908,1433],[419309,94227,1106],[418228,93883,1023],[421688,90941,1436],[425196,89372,958],[421723,91273,1314],[420914,92237,1134],[420869,91905,1126],[245768,99484,471],[246666,99141,392],[245447,99958,412],[245131,98838,497],[244621,98695,362],[245763,98820,747],[246160,98696,603],[246154,98819,7036],[246328,99088,462],[246036,98955,598],[246069,99274,471],[245849,97892,352],[245493,98628,534],[245530,98743,4575],[245469,99090,597],[245768,99173,1050],[389900,81946,1235],[392120,83508,818],[388959,81299,822],[389391,81115,840],[390186,79558,802],[394297,83156,981],[389434,81446,834],[391143,82231,1010],[391208,82569,1289],[390792,82401,888],[394844,82840,822],[393617,84581,862],[390215,82097,954],[390743,82059,841],[392077,83176,824],[392030,82828,818],[393083,83810,1011],[389051,81287,1179],[391653,83024,814],[391609,82689,824],[389825,81603,816],[403124,88900,759],[403090,90362,815],[401859,89775,812],[403751,90915,5816],[403644,91026,7373],[403588,90562,4176],[404718,91806,782],[405450,89958,767],[405527,90290,1245],[405040,90404,793],[404228,91358,783],[404180,91102,6717],[404187,91021,824],[404155,90705,974],[404647,90869,785],[404719,91229,1118],[404015,90794,4971],[403681,90469,909],[405903,89821,1222],[406137,89809,792],[405154,91074,1144],[403881,88678,908],[403912,89000,732],[405112,90746,1178],[404050,90002,807],[403582,89793,768],[404012,89673,883],[403278,87778,822],[405404,89615,764],[405537,90609,779],[344126,36413,1504],[343680,36349,1506],[344054,36035,1342],[343277,36537,1522],[342773,37263,1502],[342597,36361,1402],[343161,36243,1426],[343491,36283,4942],[343439,36471,3874],[343676,36491,1475],[344100,36831,1549],[344304,36909,1362],[384794,37380,362],[384972,37459,511],[384540,38549,292],[384109,37139,252],[385000,37093,375],[384899,37227,2120],[384712,37213,366],[385912,38128,322],[385131,37203,375],[385483,36720,262],[393207,84820,856],[391746,83725,822],[394708,81825,841],[395118,82028,828],[394783,82152,1286],[394064,81467,831],[394011,85457,868],[393624,84621,1318],[394321,85303,1355],[388417,79509,788],[387532,79522,791],[387925,79038,849],[383284,84555,766],[384083,84302,784],[382998,84850,782],[388279,78477,780],[388518,78269,4539],[388623,78285,759],[391268,83259,848],[390920,90681,862],[384474,83840,815],[389153,79097,1248],[389077,78768,785],[389459,78594,1258],[386255,80580,818],[384701,82693,758],[390019,78872,790],[389516,79260,812],[387877,78680,836],[387838,79014,6070],[395195,82368,1282],[394799,82503,859],[394507,84842,798],[392268,80958,1249],[388595,80838,815],[388673,81189,1280],[386034,81083,816],[386085,81410,914],[386287,80829,4858],[386292,80899,769],[386078,80999,5900],[386526,80438,766],[387712,80876,796],[385139,82852,758],[389523,82126,824],[386082,81304,5380],[384320,83381,5838],[384700,83267,5075],[384535,83545,2229],[384364,83710,5843],[384041,83967,801],[383893,84148,4693],[388580,77953,768],[389377,78225,792],[384743,83011,768],[388684,81516,822],[389537,77070,774],[394708,83991,944],[394787,84667,792],[394057,85801,874],[390647,78556,866],[388850,79953,835],[388551,80509,814],[388541,80203,1237],[392169,83852,851],[392669,83987,1249],[391698,83367,820],[389104,81644,1267],[388054,80028,811],[394469,81994,1281],[392584,80120,840],[392719,81132,847],[392197,80631,855],[395620,82559,794],[395058,84503,796],[394567,85178,1011],[389508,81772,1257],[393196,84489,1328],[390869,82764,1287],[389938,82263,1175],[389971,78514,779],[390251,78369,780],[391707,80159,1234],[392182,80309,1249],[391718,80472,807],[394177,82148,1157],[393844,81968,833],[391540,79145,781],[392092,79632,1249],[391251,79987,811],[392538,79775,838],[389666,78033,799],[389842,77551,770],[390195,77702,1233],[390598,78193,849],[391061,78331,1228],[389964,78209,1253],[391495,78802,782],[391997,78951,1164],[392107,79979,813],[390215,78053,856],[390579,77862,1213],[392020,79280,897],[392493,79443,831],[391483,78482,1223],[388178,80714,1272],[389758,78713,829],[388757,79273,786],[388834,79620,1235],[389174,79423,933],[393520,81769,830],[393189,81595,830],[393798,81611,837],[394478,82325,809],[389797,77193,786],[336935,93050,726],[337321,92968,663],[337085,92697,3503],[337270,92609,617],[337033,92381,3362],[337227,92291,605],[336632,92478,3248],[336487,92812,582],[395527,71699,725],[393356,70164,882],[394143,71445,753],[393497,72730,763],[393277,71053,786],[392586,74716,822],[392571,74394,1213],[393079,74050,783],[396377,78079,789],[397525,79046,1152],[397790,79262,782],[393391,76415,773],[393313,74978,782],[394354,76300,764],[396033,72240,734],[395871,72203,4654],[396708,72984,938],[396512,73121,5873],[396491,73114,773],[391691,73411,790],[391612,73446,6032],[399565,77247,1028],[399030,76719,1220],[399205,76440,782],[397919,78250,772],[396873,78293,1281],[397701,78588,780],[399040,77022,777],[398662,77493,909],[397294,73082,753],[396940,72843,767],[396820,72637,6335],[393419,70515,3783],[393321,70772,6031],[392119,73535,784],[397377,73395,5861],[397336,73399,738],[394599,73168,762],[395616,72375,725],[396741,73335,745],[397744,73606,723],[396777,72943,5153],[392029,72862,771],[391935,73214,4601],[391888,72857,4615],[391891,72566,5207],[393637,70955,6011],[393640,70911,761],[396724,72696,1702],[397703,73278,756],[391980,72501,754],[392227,72030,751],[400110,74900,834],[395037,71517,734],[392723,71370,764],[393979,73276,1132],[392992,73403,766],[392074,73177,813],[392774,73880,842],[393573,73104,1135],[393324,73608,804],[394000,73618,793],[394928,77182,1098],[399999,77094,782],[392493,74038,775],[392253,74532,813],[391481,75276,770],[391598,75937,1187],[392894,77062,777],[392114,76431,1111],[392538,76566,1034],[394431,76658,1188],[391978,75421,1080],[392005,75769,816],[393720,76604,795],[393437,76755,776],[392855,76744,828],[399083,77354,778],[399596,77558,873],[397475,78725,1036],[393589,73404,789],[394450,77003,808],[393792,76953,1157],[393856,77620,818],[394954,77535,814],[392323,74879,1155],[393304,73264,1161],[393558,77448,1204],[393814,77289,834],[393484,77091,824],[392484,76241,870],[392342,75212,802],[393248,77273,1188],[397229,78484,1170],[397411,78389,755],[393067,73751,1177],[399647,77890,974],[399130,77699,796],[383557,83744,724],[385701,80568,1352],[385938,80379,753],[388102,77151,752],[388444,76926,767],[387737,77681,728],[387636,77981,5151],[388375,76260,1036],[383542,83419,1114],[383499,83076,1146],[384285,82184,1230],[387348,78170,720],[387305,77512,1358],[386995,78726,909],[386694,79224,748],[382760,84433,1159],[382671,84619,782],[384204,81810,798],[384564,81378,1281],[386694,78899,1350],[386366,79092,1045],[386651,78570,1362],[386436,79446,1373],[385610,79870,1365],[385661,80230,1415],[386204,79920,1331],[388053,76488,1313],[386986,78406,1383],[387682,77044,1142],[387732,77361,1256],[388093,76822,1246],[213699,104548,650],[213478,104504,622],[213858,104221,8065],[213395,104563,9221],[213521,104820,601],[213164,104677,562],[214577,105436,9640],[215127,105110,3122],[213929,105898,532],[214663,105296,5684],[214863,105188,4691],[214329,105355,2479],[214076,105339,8476],[214326,105263,9349],[213855,104584,786],[214356,103886,532],[213568,105150,612],[213633,104937,644],[214005,105220,641],[214792,104887,636],[213322,104752,8707],[214337,105473,627],[214107,105652,8524],[214031,105563,630],[214260,105010,681],[214337,105027,739],[214464,105375,3836],[213527,104890,9001],[214486,105186,7260],[214444,105174,7769],[214432,105082,8309],[214641,105087,3574],[214481,105340,4653],[214530,105332,5412],[214699,105082,753],[214716,105103,4242],[214553,105301,6208],[214647,105253,898],[215127,105110,492],[282059,85531,922],[281109,86780,602],[282073,85467,752],[282162,86241,1026],[281929,86339,980],[281908,86261,5187],[282278,87215,828],[282143,86971,7080],[282243,86890,948],[282009,87015,846],[281854,86569,3910],[282436,87760,622],[283370,86470,762],[281876,86016,859],[282107,85891,916],[281981,85964,6716],[281974,86674,991],[282244,86586,1503],[282493,86434,1033],[269192,177392,894],[268952,177841,892],[268906,177839,892],[268996,177840,892],[269041,177835,892],[269084,177828,892],[269128,177817,892],[269170,177804,882],[269211,177788,882],[269251,177769,882],[269290,177747,872],[268988,177071,3897],[269146,177049,908],[269363,177696,862],[269327,177722,872],[269396,177666,872],[269427,177635,872],[269457,177602,872],[269483,177566,862],[269508,177529,852],[269530,177490,862],[269549,177450,862],[269565,177409,852],[269578,177367,852],[269589,177323,852],[269596,177280,852],[268861,177835,892],[269602,177191,842],[269601,177235,852],[269600,177145,852],[269596,177100,852],[269588,177055,852],[269097,176699,879],[268741,176882,901],[269562,176967,852],[269545,176925,852],[269525,176884,852],[269502,176844,802],[269476,176806,802],[269448,176771,802],[269417,176737,802],[269384,176705,802],[269349,176676,812],[269312,176649,812],[269273,176626,812],[269232,176604,802],[269190,176586,802],[269147,176571,802],[269103,176559,792],[269058,176550,802],[269013,176544,802],[268876,176545,832],[268967,176541,812],[268922,176542,832],[268816,177827,892],[268786,176562,822],[268831,176552,822],[268742,176576,812],[268700,176592,812],[268658,176611,822],[268618,176633,822],[268580,176658,832],[268646,177302,3266],[268509,176716,832],[268477,176748,822],[268447,176782,832],[268419,176819,832],[268436,177056,873],[268394,176857,842],[268372,176897,842],[268353,176939,842],[268323,177025,842],[268337,176981,842],[268313,177070,842],[268306,177115,852],[268303,177161,872],[268483,177374,941],[268302,177206,872],[268305,177252,872],[268311,177297,872],[268320,177342,872],[268332,177386,892],[268387,177512,892],[268410,177551,892],[268437,177588,892],[268466,177623,892],[268498,177656,892],[268532,177687,892],[268567,177715,892],[268605,177741,892],[268645,177764,892],[268686,177784,892],[268728,177801,892],[268772,177815,892],[269576,177011,852],[268543,176686,832],[268365,177471,892],[268347,177429,892],[399065,84478,832],[401982,86427,822],[401064,86596,772],[398128,85214,1304],[397490,84708,842],[398428,85375,832],[397119,86969,1229],[399014,88338,1107],[396245,86461,842],[399295,88189,750],[400042,89159,812],[400119,88573,753],[401287,86846,736],[400930,87639,870],[397151,86307,842],[397854,85695,1311],[397644,85614,842],[399229,85369,802],[398582,86281,792],[401371,87166,1327],[398140,85539,860],[398177,85853,809],[397730,85012,838],[397579,87145,811],[399888,88253,772],[401700,86667,1283],[400540,88139,1171],[400077,88250,767],[398453,87885,899],[360745,106830,914],[370767,95342,798],[371960,97073,1014],[363397,106192,861],[365848,103777,839],[363828,105856,826],[369468,100279,780],[369515,100607,838],[369785,100262,1126],[363140,107192,953],[364301,105518,965],[369810,100627,837],[368385,101448,1250],[368397,101815,731],[367956,101806,1033],[369272,100886,1227],[368963,100842,1096],[362309,107151,966],[362394,107827,909],[362064,107469,1026],[369558,100927,853],[365678,104122,1086],[365896,104137,845],[367104,102805,936],[367136,103147,762],[366441,103491,1056],[368665,101151,787],[368992,101210,822],[365460,104784,1039],[365936,104480,779],[365111,105141,775],[368032,102461,887],[370167,100310,1196],[372713,97751,1067],[372137,98429,988],[371699,98731,805],[372438,97741,989],[372469,98063,812],[371910,96731,951],[371384,96371,768],[371209,98714,768],[370868,99366,809],[370496,99703,1134],[366190,104131,972],[366470,103829,831],[368719,101459,967],[363092,106874,874],[360786,107151,883],[367974,102130,691],[367541,102455,1112],[364685,105128,841],[366143,103773,988],[370110,99998,982],[362853,107189,818],[363058,106532,1025],[210199,122073,5755],[210118,122142,5683],[210094,122011,822],[210302,121824,1252],[210332,121958,4626],[210264,121948,3955],[210623,120937,402],[210101,121391,6934],[209869,121533,645],[210451,122563,864],[211422,122158,452],[210200,122974,492],[210462,121183,6373],[211296,122109,512],[210402,122205,6114],[210310,122150,1215],[210415,121984,5234],[211335,122111,5339],[210851,121699,4802],[210888,121358,525],[210204,121436,694],[210491,121233,648],[210665,121314,678],[210652,121633,3022],[210465,121569,5654],[210810,121379,4854],[210937,122029,5369],[210855,121922,831],[210475,121629,906],[210354,121764,2871],[210250,121727,2204],[210470,121913,5060],[210360,122468,6224],[210628,122192,6723],[210073,121884,2627],[209951,121902,5490],[210145,122341,696],[210171,122352,5775],[210196,122686,588],[210145,122180,3352],[209478,121842,597],[210194,122174,4050],[209811,121802,707],[210043,121822,5259],[210142,121731,786],[210142,121891,3367],[209394,121742,452],[210779,122044,3566],[210614,121652,2251],[210558,122008,6599],[210469,121982,5943],[210414,121768,3541],[401742,78282,792],[401565,80726,903],[400919,81569,812],[401590,80635,802],[402662,79286,1265],[403695,80027,1229],[404765,81454,787],[405315,80849,792],[403477,83407,832],[404708,80784,1237],[405122,80984,1233],[401791,80294,1264],[401178,80160,819],[401468,80045,795],[400575,79906,812],[401551,80415,1292],[402159,79039,796],[404211,80559,856],[402118,78722,805],[398222,86213,771],[397484,86169,1292],[397859,86004,807],[367571,74496,596],[367724,73938,3732],[367952,74137,564],[367742,74244,3412],[216549,118545,502],[216624,118345,551],[217042,118167,630],[216112,118437,530],[216271,118087,8264],[216244,118431,562],[215895,118165,561],[216332,117629,614],[216089,117800,6307],[216006,117511,5712],[216475,117515,7306],[216466,117858,681],[216517,117875,7196],[216701,117910,606],[216340,117878,4694],[216881,117646,516],[217370,118275,422],[216259,118063,627],[216348,117990,2963],[216824,118004,5344],[216159,118799,495],[216486,118597,848],[216126,119072,442],[215934,117820,567],[216456,117195,537],[216411,117534,538],[216808,117462,538],[215331,117856,382],[215817,118419,6261],[215975,117450,532],[216567,117047,372],[215931,118546,551],[216099,118552,5013],[402764,87662,1245],[401092,89905,832],[403148,87011,822],[402020,89363,767],[401676,89522,1230],[403316,91148,6179],[403695,91365,7450],[403469,91460,7767],[404247,87846,787],[405784,89149,789],[403652,91695,6238],[404848,92573,772],[406904,89679,782],[402437,90688,4175],[402846,90486,784],[402628,90912,1211],[403879,91581,6368],[404285,91671,998],[404196,91772,5694],[403864,91225,6816],[402972,90588,6693],[403087,91226,7133],[404263,92125,5980],[403805,91477,770],[401271,89998,1262],[403142,90823,4325],[404344,92030,1155],[402512,90261,786],[402159,90360,855],[401753,90166,1106],[406235,89384,1245],[406499,89602,801],[402984,87584,1241],[402992,87898,780],[402568,88131,1252],[403253,87095,1167],[403274,87452,798],[402581,88487,764],[401685,89837,760],[402799,88007,1094],[313061,45423,662],[313690,46863,632],[313067,47103,722],[311994,46696,706],[312248,47460,582],[311687,46024,612],[271247,68827,1167],[271725,68603,322],[270328,69414,312],[270242,68456,453],[269612,68124,382],[270159,67810,512],[270269,68180,1319],[271537,68627,372],[270732,68305,595],[270811,68951,487],[271096,68100,436],[271203,68505,1143],[270679,67958,520],[270628,67611,450],[270962,67321,372],[293999,55898,480],[295381,55550,342],[294017,56283,332],[293305,54920,392],[294624,54209,422],[300527,52414,554],[300866,52327,550],[300012,53061,442],[299761,51879,560],[300144,52142,612],[300390,51371,579],[300123,52001,5213],[300485,52058,619],[300845,51718,1346],[299312,51705,462],[300829,51998,642],[300489,52253,5062],[301369,52331,422],[300590,51024,492],[367050,91544,962],[366965,92249,962],[366339,86663,962],[366578,87332,952],[364959,84186,942],[365365,84770,952],[362979,82156,952],[363524,82614,952],[360538,80715,952],[361183,81014,952],[357804,79962,952],[358505,80082,962],[354839,79992,942],[355578,79907,952],[351997,80834,962],[352684,80550,952],[349495,82426,952],[350078,81963,952],[348849,98514,994],[351234,101610,982],[346028,93837,952],[346072,93977,952],[343852,94242,952],[345986,93697,962],[345946,93556,952],[345907,93415,962],[345870,93273,962],[345835,93131,962],[343601,93452,872],[345801,92988,932],[346284,93925,962],[344919,96485,952],[344156,95014,962],[344512,95763,952],[345374,97178,952],[345876,97839,952],[346421,98463,962],[357004,102151,1042],[348295,100094,982],[348989,100547,982],[349713,100953,982],[350462,101307,982],[352025,101859,992],[352831,102054,992],[353649,102193,992],[354487,102271,1002],[355328,102291,1032],[356168,102251,1052],[345746,90981,952],[345743,90238,952],[345881,92259,962],[345820,91835,962],[347634,99593,972],[346160,93515,962],[346051,93100,962],[345958,92681,962],[345775,91409,952],[345791,89496,952],[345891,88759,952],[346042,88031,962],[346243,87315,962],[346493,86615,962],[346792,85934,962],[347137,85276,962],[347527,84643,962],[347960,84038,962],[348434,83466,962],[348946,82927,952],[350691,81543,962],[351331,81166,962],[353389,80314,942],[354108,80128,942],[356321,79874,952],[357064,79892,952],[359196,80248,962],[359874,80459,962],[361806,81355,962],[362406,81736,962],[364036,83106,942],[364516,83631,952],[365731,85379,932],[366056,86011,962],[366772,88016,952],[366921,88711,962],[367024,89415,962],[367079,90123,962],[367088,90834,962],[366833,92948,962],[366621,93762,982],[366353,94560,982],[366029,95336,982],[365651,96088,992],[365221,96811,992],[364741,97502,982],[364214,98158,982],[363642,98775,992],[363028,99350,992],[362374,99880,992],[361686,100363,992],[360964,100797,982],[360214,101178,1012],[359440,101506,1022],[358643,101778,1042],[357830,101994,1042],[347008,99049,962],[380704,89760,1836],[380973,89692,770],[381034,90037,989],[383485,88050,841],[382694,86537,788],[383002,86453,802],[383004,86233,5753],[387775,89848,829],[388171,90319,835],[387853,90164,1336],[388771,92152,836],[393310,89028,873],[392922,89232,1415],[392852,88913,1034],[391537,90288,887],[391930,90452,1883],[391579,90625,848],[396959,91642,2711],[397445,91799,2873],[397815,92343,1001],[402725,96911,8852],[398305,92520,1002],[398443,92855,2321],[398060,92763,1242],[395722,90724,2670],[393914,89211,2102],[399088,93743,3686],[400650,94844,7398],[400800,95158,8916],[400506,94938,9801],[403847,97515,1795],[404104,97727,1382],[403685,97596,8911],[404554,97197,653],[405311,95926,680],[400322,94622,7809],[398563,90707,1959],[398453,90390,985],[398937,90243,3330],[394715,89823,2657],[394664,89482,2584],[395629,90077,2551],[401759,93099,9080],[401306,92896,9385],[401595,92797,7327],[402181,93969,6697],[402087,93642,5967],[402340,93523,3124],[405272,95215,1459],[405355,95549,2012],[404765,95402,777],[403000,92988,7860],[403157,92830,785],[403210,93185,877],[403063,97075,1086],[402179,96393,8847],[403222,95613,818],[402890,95807,6628],[402839,95471,6536],[403250,93505,836],[403002,93659,6634],[403243,93235,5571],[402107,96059,8458],[402384,96300,5188],[403131,95004,5931],[403182,95293,840],[402919,95123,8318],[405178,94890,741],[403711,95063,790],[403803,93944,912],[402592,96560,994],[403259,96342,5238],[403028,96760,1170],[403487,97311,1400],[402428,92166,6903],[403378,92888,8147],[403210,95327,6445],[402848,92687,6261],[402676,93381,2523],[403427,94831,866],[403094,94619,865],[403340,94158,903],[403471,95188,826],[403661,96509,1043],[403368,96617,1016],[403323,96285,999],[399689,92796,6030],[399148,92915,1319],[399384,92485,2315],[402722,93824,7969],[403491,93383,830],[403886,96419,756],[404424,96179,716],[404160,96642,916],[404020,95632,830],[403559,95863,822],[403515,95528,801],[405706,95098,1419],[403269,95945,877],[403336,95648,7624],[402277,95663,4878],[402130,96028,2120],[402082,95728,8724],[402622,93135,7839],[402281,93309,9325],[402202,92962,8868],[399464,90692,3049],[399213,90804,3029],[399194,90471,3377],[399402,93566,3698],[399791,93439,6269],[399841,93780,6347],[400562,91272,1943],[400515,90924,1943],[401110,91457,2999],[402530,92827,7116],[403444,93035,806],[402405,92481,5981],[401994,92311,7150],[402927,96066,1036],[406072,94659,761],[405664,94761,1450],[382572,86358,5060],[383829,88606,875],[384191,88449,853],[384235,88791,847],[401792,93425,8936],[401631,93763,6050],[401409,93555,9602],[402150,92627,8759],[403050,94257,921],[402982,94366,5008],[402713,94164,7205],[400857,93369,7651],[400179,93230,3777],[400911,93049,8995],[403047,94011,6614],[401983,95094,8513],[401425,95224,6704],[401533,94892,8851],[402359,94263,8647],[401856,94411,7990],[401913,94085,9415],[402888,94788,8501],[403096,94683,6029],[402031,95420,8573],[401663,95861,8863],[401475,95553,6809],[382705,89636,797],[380539,89085,768],[383317,88797,870],[383256,86343,809],[403550,93744,986],[403321,93903,5445],[403275,93549,5440],[402551,96239,1031],[402425,94611,8916],[400959,94055,7803],[401322,94250,7084],[401012,94380,7941],[402880,94456,9022],[383870,88920,867],[382954,86095,790],[382867,85445,783],[382309,86648,797],[398014,91653,5090],[397769,92001,997],[398316,91507,3047],[398754,91402,3341],[398625,91738,890],[403718,93268,968],[403758,93600,918],[403609,93799,5360],[384633,88332,976],[403424,94916,4995],[397967,89175,2488],[403660,92932,791],[404538,93696,768],[405050,93905,786],[404984,96354,2100],[404512,96853,703],[399829,90888,3224],[400075,91077,940],[399716,91256,955],[399882,91899,2084],[400170,91773,975],[400350,92082,2920],[400043,90746,1100],[400706,91942,2724],[400704,91597,3333],[401259,91792,4459],[397823,91312,3030],[400130,91417,1072],[399300,92251,4704],[399547,92333,1167],[400157,92871,4130],[400392,92411,2905],[400845,92698,8731],[399356,92146,2546],[399527,93898,4858],[399814,94109,5359],[399706,92683,2746],[386400,89117,820],[386844,89260,1226],[386520,89789,1266],[400032,92561,2962],[401203,95004,9461],[403409,96958,970],[403730,97191,742],[398575,93205,3526],[398825,93065,1243],[398864,93407,1150],[399863,93015,4328],[400015,93334,5883],[404021,97406,817],[404265,96962,1791],[401381,93881,8604],[400977,93715,8681],[401176,93226,6935],[404084,93476,970],[399064,91224,3300],[398720,91061,3500],[399915,91561,3185],[397987,92690,2777],[398130,91196,1004],[398880,89913,3147],[399406,90336,2898],[401369,92117,5403],[401892,91971,6334],[401623,92440,8402],[400609,94510,7447],[402401,95295,7303],[399569,93131,3709],[399171,92579,2278],[399916,92209,1986],[401118,92273,7885],[401167,92581,8012],[400044,93979,5083],[399337,93241,3385],[398256,92190,931],[398811,92382,2319],[405702,95448,689],[397743,90667,3111],[397710,90338,3267],[398195,90521,3197],[398255,90858,3401],[397088,90138,946],[397188,89809,2969],[399564,91339,3253],[399504,92018,1147],[399542,91654,2346],[399503,91009,3005],[399073,91583,2759],[403972,97064,758],[382384,90440,689],[382943,90313,2913],[382797,89994,1426],[383182,90205,809],[399071,90553,4653],[401402,94582,7580],[401197,95353,8733],[399133,90149,3116],[398559,90031,3159],[398464,89716,2413],[398094,89849,3013],[397946,89490,1597],[398912,92719,3116],[398766,92052,2295],[400099,93643,6491],[391627,91824,2709],[390375,93260,2726],[390611,92385,2445],[390315,92929,2487],[398321,91844,2497],[399163,91919,3397],[396880,90943,2891],[397325,90792,3063],[397372,91130,3091],[381469,90278,1012],[389716,92466,986],[390156,92593,862],[390111,92259,853],[396727,89937,2627],[397595,89646,2935],[396777,90271,2707],[390814,91843,849],[389196,91962,983],[383163,89887,1121],[383689,89380,1246],[383608,88371,1980],[396186,90080,849],[396342,90415,2409],[397212,90459,2088],[403598,96180,775],[383400,89472,792],[383614,89021,860],[387690,91004,1619],[388435,91670,2040],[399254,91118,3014],[401907,94762,8059],[402430,94930,8405],[397498,88974,2819],[383781,88246,872],[400469,93879,6653],[400594,94178,7845],[400212,94305,6842],[400404,93549,6361],[404940,96036,2078],[404824,95718,1032],[404050,95944,658],[380187,89173,1167],[396811,90611,2534],[399303,91786,2455],[397054,89110,2385],[387590,90665,826],[387284,90491,873],[387570,90307,1222],[387404,90821,1947],[396560,89622,862],[399622,90549,957],[392764,90426,2630],[392022,90786,2550],[392310,90309,2343],[391623,90959,847],[391407,91177,822],[391573,91487,2576],[391120,91344,857],[392711,90067,2558],[392934,89557,976],[393481,89388,2605],[392793,88555,860],[392487,89075,1249],[392068,89288,849],[388261,90998,841],[388685,91482,880],[392190,89966,1292],[393740,88854,842],[382346,90098,794],[381886,90211,789],[380587,89429,799],[391273,91652,2445],[393911,89188,2635],[394340,89322,2643],[393222,88354,891],[387912,90839,911],[391844,90138,1264],[404292,97628,951],[384058,89268,2857],[389233,92282,904],[388026,91193,1847],[386949,89969,1384],[387173,89469,1217],[386352,88758,819],[399317,91475,3251],[395937,90226,2481],[387531,89991,1265],[396441,91113,2501],[396399,90755,2575],[392590,89748,1455],[385097,88543,804],[386079,89584,1427],[385994,89267,812],[385950,88934,814],[386620,90109,2080],[381988,90864,1018],[387872,90522,937],[388765,91799,1409],[386976,90298,1139],[392141,89609,1274],[385574,89063,1160],[391794,89805,1172],[403851,96084,877],[406723,82661,792],[409308,84519,802],[408170,86102,792],[405585,84244,792],[366230,102122,634],[366199,101802,798],[365854,101782,620],[251774,80564,339],[251938,80455,352],[250654,81315,962],[251042,80377,509],[251173,80430,9281],[251135,80468,499],[251350,80299,5637],[251105,80129,5358],[251572,79994,6791],[251391,80016,439],[251531,79909,7665],[251396,80652,462],[251137,80652,5249],[251205,80558,7612],[251057,80630,4619],[250466,80638,5055],[250349,80479,6184],[250617,80520,8823],[251036,79763,452],[251102,79304,382],[251341,79653,425],[251070,79886,8845],[251423,79841,473],[250976,80299,8961],[251087,80124,472],[250649,80571,490],[250780,80245,485],[251531,80413,6041],[251730,80203,381],[250469,80358,463],[251027,79962,493],[251004,80686,3048],[251011,80664,2869],[251481,80695,421],[250558,81038,421],[250651,81063,473],[251359,80205,7289],[251374,80115,8909],[251399,80250,451],[250309,80309,507],[249917,80063,422],[251435,80337,438],[250596,80913,8845],[250866,80898,442],[250514,80705,430],[250024,80196,459],[250717,81263,8888],[250998,80833,576],[250949,80971,5665],[251590,80066,5858],[251045,80672,3784],[250988,80719,2292],[251179,80803,481],[250654,81315,382],[379540,27979,8235],[379502,27935,5560],[379549,27856,552],[378235,28031,569],[378352,28719,482],[378034,27287,512],[379078,27697,5089],[379232,27653,569],[379218,27671,9783],[379399,27636,612],[379334,27872,7995],[379167,27725,7756],[379062,27772,599],[378575,28612,6888],[378700,28487,582],[378970,28487,6044],[379545,27750,5087],[379566,27560,8174],[379666,27913,576],[378916,27444,569],[378693,27142,6277],[378874,27122,588],[379336,27894,5245],[379480,27880,9168],[378774,27096,541],[379228,27030,7398],[379187,27311,574],[379461,27172,590],[379507,27533,560],[378318,27575,6666],[378492,27801,607],[378275,27758,7144],[379025,28043,915],[378967,27992,1773],[379076,27922,8895],[379590,28190,514],[379814,28285,7473],[379834,28352,2572],[379319,28338,524],[379160,28424,7345],[379471,26881,502],[379455,28085,6124],[379376,28103,583],[378910,28004,2579],[378725,27986,603],[378964,27811,558],[379136,27803,4190],[378220,27718,6216],[378470,28239,598],[378723,28321,548],[378622,28502,6301],[379054,28212,1088],[379272,27973,547],[378588,27280,583],[378631,27607,572],[378749,27511,610],[378259,27795,583],[378258,27518,612],[378610,27468,7211],[379022,27709,5878],[379011,28303,5605],[379050,28496,504],[379655,28074,6547],[379711,28085,5724],[379421,27153,638],[379035,27707,6137],[379834,28352,452],[385920,26843,7195],[385970,26831,6463],[384791,27125,442],[385547,26596,6670],[385505,26841,521],[385453,26767,7912],[385685,25806,7627],[385787,25628,9994],[385809,25730,604],[385972,26554,568],[386037,26307,5877],[386102,26518,9085],[385239,26393,589],[385385,26478,9099],[385382,26549,6148],[385896,25286,522],[385885,25699,4801],[384883,26698,5478],[384897,26478,9501],[384993,26534,566],[385761,25606,563],[385571,25428,545],[385547,25849,593],[384838,26797,6043],[385027,26680,533],[384943,26357,8932],[385352,26958,6279],[385308,26843,9945],[384981,26332,548],[385083,26888,6520],[385217,26863,563],[385068,27012,489],[385139,26840,9447],[385126,26757,5988],[385168,26617,5492],[384451,25666,482],[384650,26374,9066],[384706,26208,583],[384936,25990,543],[385436,26606,5324],[385493,26555,890],[385259,25951,609],[385809,26821,8817],[385489,26471,7593],[385626,26578,7928],[385879,26379,6692],[385764,26671,583],[385741,26297,4087],[385663,26291,7600],[385785,26206,599],[385897,26656,527],[385314,26345,5220],[385477,26427,1188],[385368,25825,485],[385173,25838,5982],[385809,25972,559],[385576,26571,8653],[385571,26098,6687],[385692,26311,4789],[385634,26361,2651],[384666,26421,5344],[385855,26322,551],[386107,26564,4671],[385794,26301,3325],[384586,26062,6751],[385866,26228,4696],[385583,26342,3404],[385996,26040,600],[386184,26486,510],[386273,26759,3322],[385818,26289,5349],[385523,26308,610],[385501,25903,4900],[385433,26204,703],[385470,26245,5106],[384730,25719,580],[384969,27040,546],[385640,26316,5534],[386273,26759,462],[292494,140704,1213],[292674,140826,3396],[292291,140586,3789],[292941,138870,1084],[288368,137846,4447],[289690,138741,3584],[289988,139061,7001],[289498,138623,1236],[289400,138432,4403],[289421,138581,7710],[288561,137975,1442],[288840,137866,1171],[288790,138047,4393],[289115,138363,8209],[288743,138117,9015],[289170,138402,1384],[288886,138186,1222],[289469,138251,1516],[289080,138297,3629],[290671,139206,1306],[290352,139323,6511],[290296,139009,1184],[289860,138436,1523],[291084,139392,1298],[290956,139581,4443],[290732,139497,1606],[291831,140363,3851],[289122,138069,1345],[288499,137663,1164],[289364,137590,1285],[290779,137009,1465],[290743,136661,1624],[291168,136919,1133],[289766,137764,1473],[289020,137374,1218],[289332,137207,1558],[291125,139744,1218],[291556,139571,1580],[293490,140769,1142],[292876,140617,1415],[293446,140394,1222],[290275,138650,1544],[291051,139038,1470],[291302,139872,3351],[291578,139945,1211],[290591,139404,4431],[291963,139495,1354],[292047,140156,1293],[292330,139321,1484],[292192,138323,1410],[292594,138586,1253],[291318,137913,1356],[291753,137762,1634],[292104,140470,1486],[292453,140384,1223],[293526,141103,1019],[290199,139173,4744],[292905,140975,1160],[289888,138834,1187],[290217,138306,1380],[290053,138996,3120],[293081,139827,1255],[293142,140163,1473],[293412,140063,1359],[293358,139740,1219],[293691,139963,1737],[294082,140220,1641],[293789,140605,1911],[292582,138221,1759],[292867,138133,1400],[292904,138492,1248],[293753,140255,2058],[291221,137240,1262],[292139,137998,1279],[293260,141228,1136],[290401,137164,1336],[290320,136471,1503],[290354,136831,1312],[289988,136635,1330],[289673,137118,1388],[290045,136968,1483],[289809,138132,1395],[219974,101587,478],[219928,101253,489],[220257,101418,491],[220068,100867,4868],[219885,100936,496],[220093,100741,508],[220303,100924,6888],[220163,100742,491],[220218,100692,9675],[221049,101212,372],[219784,102047,402],[219713,100862,508],[219837,100600,470],[220093,100685,8205],[220113,100386,474],[220321,100531,6849],[219408,100633,447],[219348,100626,6629],[219491,100598,8902],[219750,100479,503],[220216,100032,432],[220441,100626,502],[220412,100665,5775],[220453,100809,3921],[219383,101025,477],[219597,101283,6911],[219015,100832,432],[220053,101118,532],[220060,101062,8380],[219723,101283,511],[219639,101117,473],[220205,101096,2803],[220315,101303,774],[220257,101088,3589],[219756,101375,7392],[220211,101086,492],[219584,100892,5235],[219316,100653,458],[219687,101468,465],[219857,101415,8002],[220519,100833,466],[220428,100996,495],[220488,100783,4772],[219593,100786,469],[220179,100354,8002],[220567,101193,443],[393162,69052,682],[400939,74218,573],[396713,71167,679],[393815,69067,565],[282914,61868,475],[283665,61879,402],[282286,62626,312],[282881,60563,402],[282824,61190,468],[282220,61365,476],[282656,61973,769],[281583,61285,362],[282760,61772,2512],[334028,142058,4546],[333630,142133,4412],[333987,141688,4653],[336824,137479,11285],[336668,137678,846],[333083,142544,976],[333032,142190,918],[336947,137282,784],[334776,141189,4973],[335188,140773,5049],[334789,141556,4468],[336791,137971,5721],[337035,137952,9190],[337390,137527,818],[336353,138592,7469],[336637,138627,6491],[336740,138890,3286],[335047,140187,4156],[334772,139872,884],[335318,139618,2401],[336722,138029,946],[335798,139382,3806],[335940,138928,994],[336038,139567,1189],[337386,137758,6045],[337220,138012,7950],[336784,138344,1232],[334888,140146,8482],[335125,140475,4721],[334341,141227,5003],[334257,140966,4319],[334649,141006,3541],[335723,138682,4059],[336183,138165,949],[336197,139675,3229],[334418,141927,4772],[335857,139665,4108],[335357,139107,3906],[335752,139020,3831],[337445,137845,1003],[333697,142861,3987],[335257,139398,8571],[334580,140258,3960],[335545,140448,4036],[333854,141080,3938],[335428,139850,3512],[335854,140123,3218],[333541,141481,4377],[336051,138291,3763],[334043,142428,4065],[335511,140111,4187],[333915,141386,4223],[334203,140663,4131],[317929,58519,484],[318539,58038,523],[319191,58428,362],[318119,57787,540],[318490,57689,495],[318515,57866,5871],[318354,57478,8301],[318563,57398,11348],[319004,57978,502],[317921,57420,6694],[318422,57189,5830],[318442,57351,441],[317789,57491,429],[317589,57456,6656],[318786,57396,5124],[318161,58107,525],[317577,58233,429],[317651,58411,5749],[317776,58913,362],[317531,57911,382],[317481,57547,358],[317882,58156,502],[318782,57059,5822],[317337,57516,1652],[317571,58021,5363],[318782,57059,332],[317337,57516,362],[411354,81604,665],[409407,80259,825],[406135,77833,598],[408266,79469,684],[258235,193341,1092],[258421,192757,1153],[258280,193345,1092],[258192,193333,1092],[258368,193346,1092],[258324,193347,1092],[258413,193341,1092],[258500,193323,1102],[258456,193334,1102],[258542,193310,1102],[258583,193294,1102],[258847,193019,2205],[258921,192956,1092],[258902,192996,1092],[258662,193253,1092],[258699,193228,1092],[258735,193202,1092],[258768,193172,1092],[258799,193141,1092],[258829,193108,1092],[258855,193072,1092],[258880,193035,1092],[258968,192786,1092],[258782,192737,1841],[258973,192741,1092],[258937,192915,1092],[258961,192829,1092],[258950,192873,1092],[258974,192697,1092],[258972,192653,1092],[258968,192608,1092],[258960,192565,1092],[258950,192522,1092],[258699,192562,1035],[258936,192479,1092],[258920,192438,1092],[258901,192398,1092],[258879,192359,1092],[258855,192322,1092],[258828,192287,1092],[258799,192253,1092],[258768,192222,1092],[258734,192193,1092],[258699,192166,1092],[258662,192142,1092],[258623,192120,1092],[258623,193275,1092],[258542,192085,1092],[258499,192071,1092],[258456,192061,1092],[258413,192053,1092],[258368,192049,1092],[258324,192047,1092],[258280,192049,1092],[258235,192053,1092],[257922,192329,1049],[258192,192061,1092],[258149,192071,1092],[258106,192085,1092],[258065,192101,1092],[258025,192120,1092],[257986,192142,1092],[257949,192166,1092],[257914,192193,1092],[257849,192253,1092],[257880,192222,1092],[257820,192287,1092],[257793,192322,1092],[257769,192359,1092],[257747,192398,1092],[257728,192438,1092],[257712,192479,1092],[257987,192644,1348],[257698,192522,1092],[257688,192565,1092],[257680,192608,1092],[257674,192697,1092],[257676,192741,1092],[257680,192786,1092],[257688,192829,1092],[257698,192872,1092],[257712,192915,1092],[257728,192956,1092],[257747,192996,1092],[257769,193035,1092],[257793,193072,1092],[257820,193107,1092],[257849,193141,1092],[257880,193172,1092],[257914,193201,1092],[257949,193228,1092],[257986,193252,1092],[258025,193274,1092],[258065,193293,1092],[258106,193309,1092],[258149,193323,1092],[258583,192101,1092],[257676,192653,1092],[364887,43722,486],[364521,43802,1745],[364626,43389,3965],[364733,43237,5728],[364837,43369,423],[365077,42944,252],[364361,43333,384],[364457,44002,487],[365501,44336,282],[365058,43077,4046],[365203,43528,5240],[364097,44761,292],[363915,43641,375],[363674,43372,1742],[365268,43678,365],[364003,44322,354],[363674,43372,242],[295902,67709,5024],[295893,67663,561],[296271,67519,450],[295485,67085,545],[295800,66979,530],[295847,67315,563],[295961,67239,11227],[296320,67861,489],[296636,68026,382],[295989,68034,1208],[295206,67582,522],[295351,67128,7734],[295724,67654,7323],[295663,68448,523],[295482,68409,7215],[295628,67809,1161],[295332,68550,507],[295293,68236,536],[295291,67684,5956],[294609,67470,5142],[294885,67672,545],[295325,68735,392],[295249,67902,537],[295953,66770,6532],[296061,67224,8003],[294816,67401,8535],[295047,67254,7709],[295953,66770,362],[294609,67470,432],[256722,91600,5482],[256652,91557,1206],[256652,91509,1981],[256359,92319,872],[256543,92482,6225],[256496,92563,608],[256345,91334,1024],[256499,91488,7458],[256285,91700,1203],[256986,92272,580],[256302,92834,442],[256446,91133,7383],[256534,91097,566],[256981,91947,1116],[257208,91605,702],[257554,92024,402],[255851,91909,1239],[256176,92078,1956],[256385,91769,5377],[256646,91755,705],[256198,91251,516],[256330,91207,844],[256829,91315,714],[255867,91423,491],[255913,91412,1267],[256738,90774,362],[256964,91499,5506],[256008,91609,6320],[256480,92209,1054],[256713,92078,1031],[255489,91591,442],[256490,91837,1542],[256554,91914,2612],[256995,91641,1858],[361820,105822,640],[361864,106152,652],[361073,105833,645],[361596,106475,703],[361731,106050,3341],[364565,78666,3366],[364480,78308,2835],[364390,78913,491],[364815,78265,539],[396568,76274,745],[397435,76584,772],[397765,77344,782],[398167,76638,1015],[398299,76594,772],[397820,76793,1220],[395530,75206,796],[394220,74824,762],[394753,74074,762],[395574,75525,813],[396522,75919,759],[396093,75746,1147],[270976,113378,2156],[271173,113537,1132],[270956,113760,1198],[271759,112382,1007],[271434,112058,2792],[271806,112741,995],[271345,112306,1075],[271438,112980,1101],[270861,113079,1138],[271014,114085,1378],[270715,113990,1153],[269468,114916,2842],[265583,120534,1612],[270765,113593,2563],[270488,114542,1187],[270548,114871,1402],[270123,114450,1244],[271907,113413,1128],[271500,113319,1316],[271871,113048,1315],[271294,113141,3482],[270850,114300,2414],[270230,115116,1476],[269780,114687,1214],[271580,113972,1210],[266882,120711,891],[266486,120930,884],[270394,113891,1109],[270072,114117,1161],[270484,113484,3079],[269830,115026,1280],[271090,114796,1114],[271133,115111,1119],[270850,114996,1147],[266677,119000,1245],[267022,118459,1284],[272254,112811,1082],[269398,115297,1202],[270596,115210,1440],[270620,115555,1129],[267493,119239,1235],[267530,119558,1164],[267174,119806,880],[271985,113740,1586],[266387,119932,1370],[265986,120149,883],[266307,119597,896],[266057,120450,1284],[266078,120825,892],[266491,120573,1613],[271620,114307,1143],[271318,114538,1268],[268317,118899,1219],[268587,118384,1115],[266791,120035,889],[266886,120360,1591],[266403,120267,969],[271056,114431,1329],[270816,114659,1300],[266744,119693,889],[267267,120103,1591],[268542,118018,1174],[268498,117677,1204],[268845,117407,1768],[269105,116545,1198],[267265,120483,869],[269153,116885,1237],[269199,117217,1253],[269571,116627,1115],[269882,115387,1313],[338073,87306,542],[338454,87225,550],[338178,86981,2605],[338406,86865,539],[337984,86633,542],[306464,49630,586],[307421,49556,492],[306041,50155,462],[305925,49088,602],[306012,49748,591],[305405,48703,512],[306097,49333,8178],[306929,49472,588],[306769,48104,542],[306374,48922,631],[306387,49333,6429],[306604,49488,2745],[262536,88746,437],[263387,88197,442],[262174,89009,442],[262031,88626,4922],[261355,87756,4992],[261947,87610,5638],[262296,87422,5382],[262337,88054,4778],[262920,88195,1007],[262582,87830,8524],[262461,88071,661],[262800,87555,6218],[262919,87893,7215],[262102,88629,525],[262567,88463,7145],[263225,87987,5550],[262577,86958,392],[262533,88401,1030],[262082,88301,6219],[262797,87512,592],[261684,87878,1578],[261587,87871,6209],[261355,87756,352],[398281,34000,805],[398864,33963,741],[397903,34575,672],[398561,33387,792],[398771,33273,716],[398653,33571,6083],[398776,33114,6639],[398913,32727,672],[399323,34142,712],[398576,33627,3989],[398475,33660,1901],[398625,33629,3237],[398816,33598,746],[397923,33171,726],[398303,33548,796],[398121,33239,780],[398258,33088,5616],[398325,33121,772],[398350,33034,742],[398582,32967,766],[397487,33141,652],[398723,32908,728],[398525,33685,1130],[398781,33743,809],[392180,71673,758],[390736,72786,1335],[391124,72233,1434],[391166,72589,1351],[390777,73106,1315],[401339,75149,1246],[396352,72095,716],[396893,72211,1282],[398118,73150,1355],[394538,70987,757],[392535,70009,643],[391852,71197,1392],[392922,70255,1388],[392411,71169,763],[393554,69955,1340],[393968,69784,1370],[394006,70137,1245],[398541,73321,671],[398496,72984,666],[399047,73518,683],[401127,75258,1289],[400846,75040,1356],[401089,74946,1340],[400107,74600,1359],[400059,74238,1354],[400462,74473,1330],[400771,74694,948],[396267,71419,773],[396528,71649,883],[396347,71760,1274],[399673,74401,1221],[398074,72805,1381],[397660,72625,1369],[399539,73705,638],[399089,73851,660],[398587,73663,682],[396605,72001,1313],[397175,72076,948],[392873,69895,1366],[393145,69753,1351],[393143,70047,761],[393512,69612,1384],[399625,74068,1175],[394536,70669,1320],[394993,70838,1369],[392407,70861,1284],[394012,70457,741],[396853,71895,1307],[395976,71578,1162],[395935,71224,1254],[395519,71364,1248],[401253,74791,722],[393057,69390,791],[391548,72048,1328],[392370,70548,1354],[392178,71353,1348],[394995,71176,767],[391899,71553,1376],[391915,71858,1041],[344584,50090,396],[344906,50147,4733],[345031,50367,410],[344263,50434,359],[344333,50782,282],[343910,49392,4312],[344323,49970,6095],[344707,49764,7726],[345435,50352,386],[345744,50343,282],[345313,50417,4229],[344241,49303,6182],[344491,49404,355],[344125,49402,345],[344917,49341,6354],[345297,49320,375],[345355,49603,6300],[344169,49724,365],[345345,49671,396],[345228,49764,4249],[345323,48962,4662],[344513,49270,5945],[345205,49137,5082],[345281,50096,4371],[345397,50036,440],[345323,48962,242],[343910,49392,242],[368583,81578,1674],[368549,81912,591],[352158,34843,942],[352773,34833,919],[351652,35205,902],[352367,33777,5813],[352650,33771,6098],[352639,33820,913],[352344,33805,898],[352020,33812,917],[352983,34599,942],[353109,34868,812],[353042,34859,849],[352726,34545,948],[353004,34547,889],[352780,33623,920],[351325,33781,912],[351526,33811,6150],[351663,34070,974],[352759,33440,822],[352524,33552,903],[352834,34764,6017],[352444,34491,4829],[352420,34535,1582],[352361,34513,2387],[352073,34309,985],[351885,34162,5813],[351726,34088,5855],[351861,34637,995],[351870,34864,5487],[352470,34388,1010],[351911,33741,977],[351887,34183,986],[352254,34569,3819],[352402,34668,4663],[352319,34802,3256],[352189,34606,1335],[352143,34541,5340],[352501,34517,4040],[351994,34440,5531],[352308,34534,3103],[352228,34355,993],[352460,34527,1191],[408268,86397,1262],[408685,85607,1206],[409701,84724,790],[409687,84371,1255],[409943,84307,808],[404677,84393,802],[405192,84451,1231],[405577,84679,759],[409321,84416,754],[408853,83820,828],[406483,82620,1204],[406574,81754,802],[406760,82213,1211],[406221,83078,1154],[405731,83557,1234],[405949,83163,1227],[408319,87009,802],[409074,85508,794],[409062,85178,1259],[409403,84779,1250],[407245,82795,762],[408373,83250,1202],[409238,83742,847],[410215,84370,802],[405524,84041,1193],[405124,84131,849],[406169,82718,1084],[405739,83881,742],[406771,82538,762],[409299,84104,1034],[408834,83506,1147],[405652,83207,779],[409640,84050,1193],[398252,23053,837],[398263,23168,8837],[398149,23176,7549],[398032,23420,799],[398116,23817,4742],[397780,22346,752],[398219,23506,6269],[398316,23670,850],[398302,23593,11725],[398296,23393,824],[398370,23484,4013],[399246,22432,873],[399016,22494,8534],[399081,22248,908],[398881,22987,5403],[398880,22893,975],[399110,22995,9724],[399374,23459,767],[399599,23429,4772],[399245,23509,11667],[398052,22884,878],[398377,22845,4364],[398323,23593,4651],[398639,23638,783],[398338,23735,766],[399181,23537,5291],[398688,23359,6062],[398582,23303,7707],[398741,23345,5265],[398578,23499,858],[398471,23310,5592],[398954,23535,811],[399038,23227,868],[399220,23365,4812],[399478,23383,888],[399110,23196,6592],[399066,23135,10295],[398338,23199,865],[398259,23356,5775],[398857,22825,3890],[398863,22909,7329],[398913,23210,838],[398823,22450,889],[398822,22520,847],[399335,23120,850],[399287,22755,861],[399060,22758,864],[399005,22782,5264],[398206,22702,833],[398523,22968,4810],[398558,22963,904],[398655,23600,6389],[398815,22999,7989],[398074,22414,881],[398379,22309,888],[398370,22576,7648],[398799,22668,4872],[398746,22611,5726],[398595,22835,4058],[398586,22882,1185],[398741,22776,1898],[398645,22827,3310],[398620,22612,878],[398712,22968,3065],[398794,22792,1078],[398550,22950,4650],[398907,22801,3166],[398096,22723,4852],[397934,22786,841],[398078,23206,4768],[398065,22982,6136],[397949,22733,7045],[397889,22442,835],[398359,22755,856],[399280,22719,4358],[399282,23046,885],[398773,22249,5255],[399301,22603,911],[397977,23130,797],[397977,23105,4642],[398774,22155,869],[399227,21986,1802],[398601,22847,6134],[399413,23053,5079],[399227,21986,802],[399599,23429,782],[398116,23817,712],[358688,146545,911],[358731,145682,732],[359177,146855,892],[358817,147598,757],[359882,146809,752],[358923,146914,3493],[358760,147980,692],[358766,146790,1555],[357583,146827,672],[358263,146915,812],[353878,149392,731],[354545,149938,732],[353617,150909,752],[353251,149497,725],[352672,149999,752],[353590,149029,1632],[353590,149029,722],[378162,39687,716],[379040,40227,272],[377620,40670,262],[377657,39440,340],[377187,39250,242],[378610,38816,252],[371046,41647,417],[371484,41603,465],[370921,42697,272],[370552,41385,313],[370493,41292,4262],[371322,41467,4625],[371440,41279,456],[370873,41507,4584],[371003,41328,411],[371909,41157,367],[372310,42264,262],[371884,40867,232],[370493,41292,312],[208520,109410,9285],[209550,108771,3452],[208333,109567,802],[208223,107973,832],[208672,108111,811],[208596,108179,9973],[208847,108796,8397],[208953,108839,9009],[208783,108971,8639],[209122,108544,789],[209126,108376,6244],[209387,108566,6404],[208573,108599,8215],[208494,108223,842],[208717,108424,834],[208677,107555,732],[209164,108866,749],[209174,108889,10977],[209070,108378,5515],[208840,108509,7618],[208811,108461,871],[209169,108735,838],[207921,108885,861],[207526,108330,822],[208682,108930,8075],[208702,109141,843],[208811,109129,779],[208273,108333,820],[208219,108332,8180],[207913,108101,8143],[209434,108623,761],[208754,108694,3461],[208414,109326,859],[208642,109167,9022],[208308,109016,7300],[208372,109120,964],[208191,109271,7453],[208380,108568,862],[208866,108690,4939],[208771,108781,891],[208186,108723,1286],[208365,108743,7150],[208857,108580,6638],[209073,108187,807],[208324,108674,875],[208041,108307,898],[208641,108752,1078],[208517,108829,7643],[208371,109010,876],[207830,108230,857],[208052,108880,894],[208711,108709,2672],[209550,108771,712],[400522,77964,922],[399993,80589,819],[403353,77673,807],[403305,77314,801],[404316,78072,777],[407871,87493,812],[407795,86796,1048],[402399,77562,784],[403221,77266,6086],[403054,77505,3291],[404330,85054,796],[405791,86037,1241],[403336,84625,799],[404095,83033,1241],[404810,81771,828],[400579,81439,835],[400536,81121,819],[400989,81295,1278],[401225,80516,813],[401305,80869,1273],[400346,79449,1275],[400599,78605,806],[400675,78935,1259],[405648,81129,779],[406416,79861,770],[412725,84470,776],[413691,86000,776],[413417,86437,750],[412031,86652,765],[411275,87167,767],[406947,86342,814],[404520,82917,811],[404508,82564,1300],[404897,82442,798],[405746,79696,777],[406072,79482,5756],[406056,79627,778],[412637,83824,748],[405380,79100,783],[407429,80342,769],[407522,81041,774],[408242,80958,3669],[408496,81142,789],[411144,83057,783],[411777,83311,3439],[411185,83373,772],[413921,85282,787],[414176,85639,3744],[414286,85562,730],[411233,83732,771],[412150,83867,764],[412110,83550,783],[401157,77699,788],[412597,87244,759],[411849,83672,3788],[408922,81398,760],[411813,88073,840],[402268,76596,749],[401207,78047,849],[400946,78169,1256],[400997,78529,1303],[400691,79282,844],[410339,87318,792],[411334,87484,1000],[405162,81339,1127],[405430,81522,791],[405209,81683,1153],[405423,81216,1253],[406387,86509,1170],[406050,86223,763],[407916,87829,806],[400656,81806,1239],[400911,80951,830],[406310,86149,764],[405304,85478,888],[400223,82266,914],[400744,82466,1258],[401581,83219,781],[402380,83195,918],[403208,83649,801],[402433,83527,1034],[401947,83433,1244],[402168,83311,957],[403749,83834,1260],[403761,84169,795],[401869,83084,783],[403324,84302,1225],[403256,83982,866],[401169,82673,1244],[412195,87655,1205],[407416,87239,1087],[411682,87089,835],[404883,82109,1242],[404134,83346,1204],[401090,82308,814],[400671,82145,816],[405226,82005,793],[404855,85262,1164],[404813,84919,1214],[400361,79797,838],[399979,80244,1263],[401004,78829,839],[404151,83696,808],[402472,83869,942],[402110,82959,788],[411753,87405,1251],[412106,87012,1146],[411798,87764,1215],[411366,87842,778],[399935,79925,1239],[399445,80059,820],[411421,88181,924],[400174,81946,828],[407372,86910,1081],[365872,31658,7083],[365922,31594,6442],[366212,31580,7133],[366216,31397,557],[366060,31508,611],[365948,31134,6427],[366052,30868,9807],[366083,31062,626],[366260,31405,6612],[366354,31686,452],[365349,31171,5874],[365361,31369,987],[365310,31399,6243],[366111,30935,8955],[365570,31752,7078],[365607,31485,6767],[365703,31598,9397],[365715,31555,634],[364670,30806,6614],[364620,30918,7226],[364501,30603,552],[365737,31095,678],[365629,30744,624],[364597,30951,609],[364845,31108,610],[365580,30375,612],[365942,30216,522],[365764,30612,657],[365305,31775,587],[365424,31434,4664],[364872,30835,641],[364801,30788,601],[365792,31318,8404],[365065,31680,625],[365266,31454,629],[365022,30559,6192],[364869,30744,8133],[365288,31845,6212],[365718,31430,605],[365157,30489,6060],[365165,30847,8591],[365223,31118,641],[365089,31192,655],[365515,30988,4927],[365399,31124,674],[365175,30760,622],[365116,30707,646],[365424,30671,657],[364929,30793,7278],[365649,31269,6353],[365479,31434,3918],[365529,31302,3343],[365014,31232,5811],[365584,31222,2660],[364889,31449,600],[366165,31028,523],[365758,31770,532],[365673,31069,641],[364842,32061,502],[405848,92968,765],[405803,92632,760],[406316,93195,739],[397226,84471,828],[397597,84002,838],[401568,85663,1308],[401893,85562,828],[401970,85898,1298],[396633,86764,841],[401776,91647,5308],[401468,88166,828],[401001,87972,1238],[401421,87809,826],[402261,88238,1028],[402204,87921,815],[405181,87934,763],[404710,87730,1150],[405137,87616,747],[408809,90763,735],[406992,89100,793],[406714,89179,793],[404028,93145,797],[403940,92494,765],[404359,92347,774],[400566,84937,781],[400051,84410,1252],[400526,84623,808],[400431,90277,1954],[400856,90480,1251],[400422,90591,1246],[397658,87492,1275],[395287,86201,838],[399095,83698,922],[399164,84018,1285],[398798,84196,1208],[395688,86059,1345],[395282,85888,1353],[398053,84893,842],[398460,84285,848],[398415,83965,820],[402487,91834,8361],[402888,92345,7463],[404962,93223,832],[405420,93103,1115],[402150,90832,5478],[401786,90508,924],[402597,91024,5821],[403118,91562,6940],[402713,91346,6858],[402254,91528,5632],[402248,91169,6226],[403398,92705,784],[403619,92599,833],[402749,92041,6059],[402674,91686,5658],[403311,92578,7771],[403638,92448,8302],[403950,92254,6120],[403276,92225,7921],[403671,92337,5313],[400129,90401,2950],[400072,90068,2774],[401638,91334,3941],[401703,91002,5490],[400992,91126,1956],[398449,89383,2813],[399362,89993,2909],[401465,90669,2746],[403873,91921,5654],[403667,92007,5870],[401275,90313,733],[400917,90812,1502],[398942,89122,2347],[398396,89071,2656],[403473,92128,6576],[403216,91889,7702],[397421,88651,2351],[398694,88891,2421],[398662,88562,2593],[398789,88780,823],[398354,88713,2728],[398175,88366,846],[397714,88162,819],[399077,88984,786],[399053,88670,1030],[397899,88531,2726],[397938,88844,2701],[398755,88447,967],[399844,89415,792],[399483,89543,868],[399435,89226,787],[400332,89943,1183],[399887,89749,771],[400259,89608,804],[399700,90217,2654],[399248,89320,2571],[399291,89663,2529],[399641,89872,2480],[400777,90136,779],[399832,89074,1254],[400213,89248,803],[400600,88791,795],[399009,89453,2674],[397180,87636,839],[398522,88215,1252],[398145,88035,1043],[398800,89594,2613],[395562,85380,839],[396069,85916,873],[396449,85112,1325],[396823,84940,845],[395603,85714,796],[396056,85573,1327],[405660,88175,862],[401101,85138,1304],[400203,88933,1258],[400590,88456,1285],[396730,84266,797],[397217,84143,1312],[403185,86776,807],[402559,86342,818],[402775,86228,823],[398547,84960,837],[398535,84622,1278],[399581,84237,1271],[399502,83870,834],[403427,91792,6548],[397670,87821,830],[401015,88309,806],[401888,88335,826],[399588,84540,813],[404724,88047,752],[404224,87492,1136],[402012,86215,1288],[406455,89284,778],[406441,88927,1243],[406169,89053,947],[405727,88497,1220],[405234,88268,877],[402275,86130,855],[403676,86974,1192],[404165,87172,899],[397145,83822,898],[397583,83669,1267],[398333,85097,1267],[396814,84629,1309],[395972,85235,779],[408011,91941,670],[396110,86246,827],[399179,84372,829],[401378,87492,816],[409310,90643,580],[408871,91094,977],[405903,93282,960],[397156,87302,1126],[257660,76766,474],[258320,76390,382],[256272,77590,5082],[257463,75582,8736],[257533,75828,489],[257368,75687,9317],[258098,76512,10150],[257929,76304,452],[256827,77082,5075],[256897,76894,503],[256989,76978,8798],[257143,76487,5011],[256856,76576,518],[256835,76510,753],[256986,76820,4629],[256816,76766,10072],[257717,76034,513],[257883,75959,463],[256618,76789,511],[257170,75717,494],[257524,75098,422],[257484,75481,474],[256805,76216,486],[256237,76497,502],[255525,76325,402],[257849,76483,7500],[257836,75626,438],[256836,76840,2427],[256781,76988,5083],[255944,76620,437],[255571,76400,450],[256274,76845,10386],[256280,76944,470],[256224,77417,501],[256363,76973,9417],[256456,77106,446],[256494,77437,345],[256984,77074,452],[257055,76936,10281],[257151,76869,5909],[256933,76874,3092],[256952,76843,3831],[257574,76383,507],[257620,76500,446],[257331,76456,7888],[257503,75915,7296],[257435,76066,524],[257374,75770,525],[257302,76696,504],[257298,76184,5468],[257092,76286,7668],[257182,76081,523],[257360,75734,8460],[257073,75787,529],[257087,76861,5244],[257654,75806,7493],[257858,75801,6046],[257686,75597,7218],[257785,76337,492],[257258,76377,475],[257464,76235,6741],[257259,76456,511],[257201,76486,5759],[257669,75660,497],[257606,75624,5809],[257601,76305,7298],[257495,76009,5655],[257579,76184,470],[257260,76488,6467],[256928,77126,5621],[256643,77222,460],[257132,76753,7565],[256619,77364,6288],[256272,77590,352],[319504,44408,974],[318764,44853,874],[319117,44138,1103],[317833,43577,832],[319570,44456,6877],[319792,44507,922],[318349,45064,852],[319228,43038,922],[319414,43727,991],[319459,44066,992],[319441,44005,5918],[290189,71039,831],[290865,71171,412],[289513,71907,392],[289324,71513,433],[288857,70586,6222],[289345,70694,7806],[289900,70918,3070],[289743,71111,625],[289672,70265,7285],[290119,70660,575],[290469,70563,586],[290292,70586,8899],[290316,70296,9736],[290167,69875,7282],[289909,71017,9104],[290095,70767,5951],[290069,70308,546],[289362,70410,8536],[289242,70842,528],[290167,69875,452],[288857,70586,342],[351664,48517,370],[351943,48471,292],[350543,48895,292],[351016,48572,412],[351440,48468,6437],[350708,47930,458],[350439,47532,6244],[350711,47722,4867],[351266,48205,467],[351392,48129,6393],[350663,47571,491],[351606,48306,4966],[351724,48165,6849],[351595,47745,5835],[351288,47168,6703],[350119,47501,252],[351227,47646,4994],[351580,47858,425],[351367,47532,7134],[351483,47167,350],[351518,47075,5202],[350748,48245,436],[350743,48025,4758],[350512,48618,454],[350975,48215,492],[351518,47075,252],[444200,50096,2060],[444255,50187,2012],[444132,50068,2022],[444166,49786,2149],[444009,49948,2032],[444557,49698,2113],[444520,49369,2187],[445112,49326,1982],[444839,49120,7107],[444867,49086,2012],[444989,49206,2002],[444745,48965,2042],[444502,48723,2052],[444623,48844,2042],[444121,49260,6741],[444040,48775,2233],[444381,48601,2062],[443832,49544,2175],[443502,49337,2201],[443793,49230,2208],[443524,49463,2052],[443644,49585,2052],[444455,49499,6700],[443887,49828,2052],[444534,49857,7169],[443766,49707,2052],[444261,48479,2062],[443404,49341,2062],[357691,46075,534],[358651,46461,292],[357235,46901,292],[357200,45379,340],[357902,45385,473],[357643,45712,532],[358217,45035,4112],[358119,45084,838],[357874,45159,4752],[357960,45723,679],[358179,45729,485],[356798,45467,252],[358498,46091,386],[357870,45720,3668],[358154,45142,4424],[358183,45463,1022],[358217,45035,262],[313265,59661,2739],[313687,59589,501],[313132,59823,604],[313359,59004,472],[313213,58862,5692],[313421,58788,5882],[313067,59112,6831],[313036,59158,496],[313005,58936,5692],[313408,59353,497],[312798,59010,5692],[312597,59470,5693],[312675,59592,544],[312590,59085,5512],[313550,58755,8333],[313551,59044,7822],[312694,59861,6315],[312176,59236,5672],[312670,60586,402],[312723,59940,565],[313629,58715,5962],[314093,60074,382],[313640,59244,472],[313074,59683,5891],[312383,59160,5692],[313629,58715,382],[312176,59236,382],[236456,90010,494],[236695,89927,458],[237065,90217,459],[236305,90148,426],[236637,90778,352],[235851,89585,382],[236873,89472,483],[236602,89252,431],[236997,89421,435],[236956,89807,5800],[236794,89848,7361],[236652,89611,450],[236237,89756,8024],[236249,89511,6080],[236346,89667,481],[237127,90410,377],[237866,89947,1292],[236592,89567,498],[236566,89500,5958],[237662,90023,403],[237719,89769,6138],[237727,90023,7183],[236262,89807,476],[236476,89925,8250],[237122,88899,432],[237126,88902,6557],[237061,88797,392],[236211,89449,438],[237293,89542,428],[237620,89699,438],[237562,89731,4816],[237369,89807,6280],[237089,90095,437],[237258,89232,516],[236344,89954,6137],[237227,89741,487],[237238,89799,3047],[236955,89846,490],[237338,89877,414],[237613,89728,5489],[237605,90034,432],[237374,89914,4571],[237379,90192,402],[237324,89918,3889],[237150,89971,876],[237866,89947,382],[225695,98016,430],[226647,97516,302],[225485,98283,332],[226023,97389,446],[226245,97170,6824],[226140,97489,7083],[225868,96287,362],[225579,96510,9356],[224683,97092,382],[225905,97742,7554],[226330,97546,390],[225717,97984,8901],[225622,97952,8230],[225709,97661,6411],[225437,97814,396],[225677,97537,484],[225306,96832,438],[225590,96729,473],[225648,97091,7485],[225950,96510,5366],[226070,96664,442],[225483,98158,381],[225863,96981,5164],[225777,96668,424],[225737,96415,380],[225906,96526,4544],[226280,97184,383],[225351,97165,440],[225680,97125,477],[225740,97639,7170],[225965,96754,4757],[225833,96720,443],[225918,97702,411],[226168,96977,422],[226155,96825,5966],[225997,97050,5707],[225932,96990,451],[225971,97045,2381],[225889,96635,5767],[228175,111005,485],[229068,110607,422],[227821,111425,412],[228040,110228,3056],[228040,110127,4744],[228110,110061,1139],[228087,109985,1182],[228381,110198,575],[228643,110160,641],[228871,110312,1007],[228688,110422,512],[228444,110531,829],[228566,110178,7451],[228723,110517,1310],[228486,110682,1132],[228017,110007,6140],[227974,109966,6590],[228253,109566,642],[228638,110064,510],[228077,110010,7178],[228037,109678,7046],[228270,109388,372],[227995,109682,487],[227022,110204,362],[228035,110069,5655],[228469,110538,5418],[227679,110102,575],[227983,110388,4948],[227736,110556,1180],[227580,110466,713],[227972,110267,1526],[227874,109899,838],[227717,110804,502],[325225,55903,507],[325584,55967,5469],[325550,56156,476],[325690,54950,8859],[325653,55055,414],[325418,55181,431],[325914,54843,4902],[324467,55302,342],[325835,55895,4963],[326102,55993,410],[325753,55227,5056],[325209,55148,6735],[324779,55269,414],[325133,55216,492],[325248,55473,6669],[325703,55404,461],[326005,55307,334],[325754,55772,506],[324891,56638,332],[325510,55839,505],[326350,56217,322],[325914,54843,302],[242648,86558,2798],[242386,86615,6442],[242323,86504,7487],[241696,85772,7795],[241814,85858,461],[241411,85851,372],[242625,85015,402],[242634,86079,504],[242542,85773,4851],[242646,85726,5019],[241861,86206,457],[242174,86154,7504],[242545,85402,529],[242295,86318,476],[243068,86153,430],[242934,85856,5019],[243028,85833,476],[242251,85953,549],[242246,86539,5920],[242396,86173,5936],[242905,86532,6417],[243330,86254,4912],[242225,87001,332],[242670,86387,423],[242336,86662,398],[242750,86367,2366],[242996,86331,6016],[243268,86184,5294],[242949,86340,5288],[242926,86369,4549],[242936,86457,8022],[243330,86254,322],[273500,118972,1245],[273993,119433,991],[273575,119659,1027],[273710,120657,1029],[273477,120423,3742],[273670,120307,1119],[274183,120750,1170],[273135,119225,1292],[274041,119774,1026],[273639,119958,1342],[273253,120233,1062],[273335,120912,942],[275325,119264,1200],[274313,118524,964],[273088,118888,1273],[273437,118628,1016],[274217,121104,972],[273816,118072,1078],[274893,119967,1028],[274850,119644,1032],[272708,119457,929],[275609,119408,1167],[275142,119743,1246],[275356,119593,1020],[233905,107214,610],[234087,106989,1148],[234313,107192,521],[233156,106697,5394],[233707,107601,402],[232895,106360,372],[233571,106312,545],[233833,106241,548],[233833,106501,724],[233962,106319,673],[233894,106505,1427],[233959,106462,2954],[233876,106546,5702],[233857,106575,4964],[233945,106749,5589],[234137,106464,695],[233509,106004,409],[233669,106192,7996],[233611,105891,542],[234079,105586,362],[234060,105859,499],[233745,105977,474],[234012,106052,7812],[233952,106463,8013],[234011,106169,644],[234430,106139,528],[234450,106534,493],[234922,106799,392],[234534,106772,605],[234036,106367,7538],[234387,106601,5984],[233826,106806,767],[233232,106340,7097],[233499,106559,739],[233526,106581,5317],[233245,106380,498],[233227,106704,506],[234493,106857,483],[380062,88166,1276],[380404,87761,1332],[380066,88494,718],[380610,87008,666],[380669,87334,892],[380358,87400,1354],[380023,87847,1324],[380706,87692,739],[381425,86506,1201],[381811,86065,776],[381349,86159,779],[381001,86596,1288],[381041,86953,1186],[381807,85741,1330],[382496,84855,1118],[382774,84772,738],[382512,85183,746],[382113,84937,1236],[379700,88572,825],[394438,73491,1086],[393725,74439,785],[397557,77247,1245],[396610,76590,755],[397695,76105,758],[398137,76299,1222],[396459,75282,1064],[398563,76818,772],[398547,76500,1144],[395164,75699,791],[395692,76240,1154],[395204,76033,745],[397609,77912,738],[397339,77695,1036],[397051,75682,737],[397296,75548,735],[397648,75763,729],[397249,75205,718],[396802,75479,750],[395940,74730,888],[396422,74963,1140],[395906,74417,1004],[396755,75120,746],[396705,77297,775],[397023,77127,793],[397074,77486,839],[397311,77381,1237],[396659,76952,760],[396201,76756,769],[394907,73674,958],[394945,74002,877],[398489,76175,926],[395423,74214,1142],[395438,74534,762],[395350,73883,740],[394455,73794,764],[396155,76409,783],[370864,97644,3885],[370590,97369,617],[370682,98048,641],[371063,97689,614],[231576,94181,8287],[232240,93746,832],[231033,94561,322],[231157,94423,6740],[231535,93174,7241],[231642,93118,9482],[231732,93158,444],[231828,93547,4820],[231835,93582,8406],[231546,93732,2335],[231431,93771,6090],[231484,93715,7663],[231866,93845,421],[231845,93797,5035],[231135,93284,478],[230974,93301,466],[231204,93163,7388],[231829,94004,349],[231062,93981,407],[230603,93485,427],[230935,93735,469],[231519,92884,7130],[231464,92556,362],[231700,93031,402],[231225,93077,9048],[231344,93162,448],[231351,92868,454],[231388,93478,452],[231341,93634,7183],[231232,93605,498],[231297,92827,421],[230911,93362,477],[231017,93623,457],[231079,92960,457],[231145,92870,7348],[230239,93341,352],[231476,94162,387],[231672,93537,7102],[231503,93563,501],[231744,93355,400],[231575,93709,3070],[231440,93743,840],[231805,93092,7298],[231788,93689,380],[231681,93698,4594],[231107,94324,387],[231392,93887,3693],[231277,93997,449],[231794,93507,433],[231209,94056,5767],[231481,93868,5128],[231782,93933,7812],[231445,93841,565],[230801,93579,8465],[230800,93032,429],[231416,93214,487],[232240,93746,322],[283009,126420,977],[282753,126376,3377],[282823,125930,5136],[282961,126063,987],[282507,125884,964],[282916,125717,1000],[282639,126848,993],[338251,52214,414],[339037,52418,282],[337621,52826,272],[338200,51864,6871],[338261,51932,1082],[337747,51942,388],[337699,51596,351],[338543,51695,5486],[338638,51832,371],[337633,51466,5759],[338158,51528,383],[338433,51287,4697],[338592,51500,362],[337577,51686,4564],[337197,51436,4792],[337270,51638,362],[338607,51007,4242],[338545,51149,343],[338607,51007,262],[337197,51436,352],[288545,58816,582],[289453,58746,332],[288102,59478,362],[288021,58231,512],[287391,58140,382],[288702,57428,392],[288005,57900,875],[392344,35797,531],[392303,35443,617],[392660,35311,555],[392354,35175,565],[392218,35423,2381],[392252,35108,517],[392616,34986,548],[392290,34890,5972],[392548,34705,5428],[392697,34545,542],[393122,35960,572],[392903,35309,636],[392299,35112,5752],[391894,34857,456],[391908,34803,4409],[392074,34864,523],[392669,34891,4380],[392704,34651,7725],[392205,34769,493],[392377,34701,554],[392693,35207,6545],[392052,35293,539],[392654,35016,584],[391301,34964,332],[392679,34560,551],[392027,35723,593],[392294,35807,998],[391730,36393,462],[392040,35919,528],[292490,133321,1050],[292699,132922,1042],[292123,132749,1067],[292469,132952,1436],[265281,72011,475],[265006,71739,5084],[264955,71566,483],[264365,72035,704],[264678,71804,499],[264894,72340,508],[264304,71695,510],[264679,71682,5642],[265921,71975,382],[264641,72718,372],[263905,71427,422],[264134,71442,5638],[265141,70702,432],[264589,71123,527],[264942,71906,524],[265136,72010,2138],[265072,71974,1051],[265158,71951,2528],[251222,95632,506],[252129,95198,616],[251308,96135,402],[251175,95277,530],[251604,95154,612],[251218,95470,5881],[251300,94637,6610],[251422,94657,620],[251434,94673,5153],[251696,94855,814],[251982,94681,495],[252191,94820,521],[251369,95049,707],[251406,95037,1400],[251783,94503,602],[251710,94061,392],[251907,94530,5913],[251167,95154,5776],[251220,94612,6027],[251474,94277,426],[251416,94991,2266],[251307,94339,4053],[252527,95311,432],[251653,94845,1865],[251611,95018,6930],[250479,94866,362],[250763,94997,499],[250824,94654,356],[251084,95239,543],[251154,94467,383],[239753,102927,588],[239400,102811,514],[239717,102734,593],[239112,103010,390],[239596,103766,402],[238778,102514,382],[239531,102632,5288],[239589,102636,5933],[239869,103355,655],[240818,102967,382],[239391,102490,525],[239709,102610,559],[240073,102732,550],[239332,103204,484],[239071,102664,459],[239802,102763,1186],[239351,102452,502],[239075,102582,478],[239322,102309,4591],[239472,102115,391],[238873,102610,425],[239030,102531,3997],[239105,102886,4379],[239199,102852,522],[239999,101716,402],[239794,103288,482],[324671,41698,1344],[325396,41173,6284],[325424,41497,6082],[324686,41788,7049],[324918,42610,1262],[324496,41121,1282],[325523,41528,1506],[325476,41182,1484],[325871,40704,1481],[325344,41925,4137],[325154,41941,1445],[325454,41812,5908],[325581,41885,1665],[326381,42114,1432],[325123,42030,7079],[325200,42286,1437],[325933,40666,1412],[273761,87688,801],[273784,87082,622],[274051,87469,5119],[274561,88447,868],[275093,88074,702],[274284,89107,712],[274109,87542,761],[272990,88131,682],[274173,87904,949],[285686,72305,312],[428971,39053,2362],[427003,36824,2342],[358541,145027,672],[357373,146244,622],[352038,140357,592],[352888,139512,652],[352016,140379,592],[351993,140399,582],[351969,140418,582],[351944,140435,582],[351917,140450,582],[351890,140463,582],[351862,140475,572],[351833,140485,572],[351803,140493,572],[351773,140499,572],[351743,140503,572],[351712,140505,572],[351682,140505,572],[351651,140503,572],[351621,140499,572],[351591,140493,572],[351561,140485,572],[351533,140475,572],[351504,140463,572],[351477,140449,572],[351451,140434,572],[351425,140417,572],[351401,140398,572],[290282,74913,442],[290265,74912,442],[346457,52959,372],[314609,63050,442],[314861,62950,442],[315114,62852,432],[315368,62757,432],[315623,62664,432],[316135,62486,432],[315878,62574,422],[317094,62131,422],[318056,61786,412],[319021,61450,412],[319989,61123,392],[320961,60805,392],[322913,60198,392],[321936,60497,392],[314358,63153,442],[303245,67825,452],[292721,73439,442],[278719,82366,542],[272842,80283,372],[276235,78078,352],[278316,76815,332],[278901,77989,392],[279315,81540,532],[278509,82943,552],[278467,83143,552],[275794,84701,562],[278636,82553,552],[278566,82746,552],[278814,82185,542],[278922,82011,542],[284555,78244,452],[289063,75588,432],[279042,81845,532],[279174,81688,532],[279467,81403,532],[279628,81276,552],[280727,80639,482],[290134,74947,442],[290149,74939,442],[296979,70992,432],[290165,74932,442],[290181,74925,442],[290197,74920,442],[290214,74917,442],[290231,74914,442],[290248,74912,442],[290299,74915,442],[290316,74918,442],[290333,74922,442],[290349,74928,442],[290365,74934,442],[290380,74942,442],[290395,74950,442],[290409,74960,442],[290423,74971,442],[290436,74982,442],[290448,74994,442],[290459,75008,442],[292875,74437,442],[290469,75021,442],[290478,75036,442],[300126,69279,442],[299619,69548,442],[300636,69017,442],[301151,68763,452],[301669,68517,442],[302191,68278,452],[302716,68048,452],[328220,33512,1192],[329258,35019,1192],[327735,33855,1192],[325919,35856,1372],[322980,33799,1192],[322002,34091,1142],[322529,33470,1162],[325458,35906,1372],[323484,35346,1342],[323681,35468,1352],[323886,35577,1352],[324098,35670,1362],[324316,35749,1372],[324539,35812,1372],[324766,35860,1372],[324995,35891,1372],[325227,35907,1372],[325690,35889,1372],[325701,118424,542],[325020,119427,472],[303462,103352,562],[304202,102375,592],[325003,119451,472],[303156,103519,562],[303186,103515,562],[324939,119763,472],[303127,103521,562],[324945,119792,472],[303097,103521,562],[324953,119820,472],[303067,103519,562],[324962,119848,472],[303037,103516,562],[324974,119875,472],[303008,103510,562],[324987,119902,482],[302979,103503,562],[325002,119927,482],[302951,103493,562],[325018,119952,482],[302924,103482,562],[325037,119975,482],[302897,103469,562],[325056,119997,482],[302871,103454,562],[325078,120018,482],[325100,120037,482],[302846,103438,562],[303215,103509,562],[324935,119733,472],[303244,103501,562],[324933,119704,472],[303272,103491,562],[324934,119674,472],[303299,103479,562],[324936,119645,472],[303326,103466,562],[324940,119616,472],[303351,103451,562],[324946,119587,472],[303376,103434,562],[324953,119558,472],[303399,103416,562],[324963,119530,472],[303422,103396,562],[324975,119503,472],[303443,103375,562],[324988,119477,472],[336023,132068,582],[316392,118777,632],[302573,108472,602],[279566,91344,652],[341494,138499,682],[342280,136987,562],[280037,90687,582],[279973,90038,582],[280055,90658,582],[280071,90629,582],[280055,90144,582],[280085,90598,582],[280097,90567,582],[280107,90535,582],[280120,90469,582],[280114,90502,582],[280123,90435,582],[280123,90368,582],[280124,90401,582],[280120,90334,582],[280115,90301,582],[280085,90205,582],[280107,90268,582],[280097,90236,582],[280071,90174,582],[280037,90116,582],[280018,90088,582],[279996,90062,582],[273781,85874,512],[275180,86390,552],[275387,86521,552],[274966,86271,542],[274522,86066,532],[274747,86163,542],[274292,85982,522],[274058,85910,522],[273821,85850,512],[300711,107635,622],[302308,108830,632],[300971,107292,582],[323571,124218,812],[322551,123433,762],[321529,122651,622],[320506,121871,672],[319480,121094,672],[318453,120319,692],[317423,119547,682],[341543,140975,782],[341607,140898,772],[341797,141184,782],[341862,141109,782],[343910,143003,752],[343975,142927,732],[344225,143110,712],[346260,145069,772],[344158,143185,752],[346327,144995,792],[346486,145258,792],[346557,145188,792],[342294,137591,562],[352832,149007,742],[358175,152698,662],[358133,152620,672],[358088,152545,672],[355678,152200,732],[358040,152471,682],[357989,152399,682],[357935,152330,672],[357878,152263,672],[357818,152198,672],[356028,151843,712],[357303,151693,662],[353645,148105,652],[354393,150940,752],[342314,137566,562],[342348,137514,562],[342332,137541,562],[342362,137485,562],[342399,137365,562],[342393,137396,562],[342375,137456,562],[342385,137426,562],[342403,137271,562],[342404,137302,562],[342403,137334,562],[342367,137118,562],[342388,137177,562],[342400,137239,562],[342395,137208,562],[342378,137147,562],[342338,137062,562],[342353,137089,562],[342320,137036,562],[342301,137011,562],[334795,132945,692],[335928,132015,592],[335993,132048,582],[335961,132031,582],[335538,132010,592],[335715,131974,592],[335894,132002,592],[335824,131984,592],[335859,131992,592],[335788,131978,592],[335752,131975,592],[335679,131976,592],[335607,131988,592],[335643,131981,592],[335572,131998,592],[335412,132081,602],[335473,132041,592],[335505,132024,592],[335442,132060,602],[335384,132104,592],[354743,150583,742],[356800,151199,652],[345740,92702,932],[343514,93125,802],[345687,92414,922],[343436,92795,742],[345640,92126,912],[343368,92463,682],[345601,91836,842],[343309,92129,632],[345569,91545,762],[345545,91254,712],[343259,91794,572],[343219,91457,552],[412228,30439,1252],[412047,30512,1232],[411212,29149,1182],[412402,30353,1282],[412571,30255,1282],[412732,30146,1312],[412885,30025,1342],[413028,29894,1352],[413163,29753,1382],[413287,29602,1402],[412347,27795,1562],[413400,29444,1422],[413501,29277,1452],[413590,29104,1492],[413667,28926,1522],[413731,28742,1552],[413782,28554,1552],[413820,28362,1582],[413843,28169,1602],[413853,27975,1612],[413850,27780,1622],[413832,27586,1632],[411271,30676,1172],[409779,31130,1102],[409363,29697,1092],[212250,125415,522],[216008,123105,532],[215919,122972,522],[208914,127547,542],[225516,96009,362],[207303,107998,812],[213557,99049,552],[194689,116743,1672],[194459,116620,1672],[194237,116482,1682],[255079,71701,462],[258704,74009,412],[254948,76213,392],[240277,81120,462],[256013,69861,482],[254478,70789,502],[245773,77637,472],[235157,84327,472],[226693,90152,452],[222647,92917,462],[226655,90093,462],[222400,93091,472],[218644,95645,492],[214423,98303,542],[209722,101664,642],[205079,104871,842],[209643,101561,642],[201657,107197,1032],[200203,115686,1522],[198606,116602,1542],[200264,115178,1502],[198740,116640,1532],[200167,115804,1532],[193635,115984,1702],[197932,108709,1222],[198210,116701,1552],[199715,108516,1162],[199601,108584,1162],[199483,108645,1162],[199361,108697,1172],[199236,108742,1172],[199108,108778,1182],[198847,108824,1192],[198978,108805,1182],[198581,108835,1212],[198714,108834,1212],[198449,108827,1212],[198317,108810,1222],[198187,108785,1222],[198058,108751,1222],[197810,108658,1222],[197690,108600,1212],[197575,108533,1212],[197465,108459,1202],[197360,108378,1202],[197028,108138,1192],[190242,111895,1192],[190220,111681,1192],[190255,112109,1192],[190258,112324,1192],[190251,112539,1192],[190235,112753,1192],[190209,112966,1192],[190173,113178,1192],[193060,116484,1752],[190080,113259,1192],[193824,116163,1702],[194025,116330,1702],[197732,116911,1552],[195171,116942,1672],[194927,116851,1672],[195934,117114,1642],[195421,117016,1662],[195676,117074,1652],[196194,117137,1632],[196715,117131,1612],[196454,117143,1612],[197231,117055,1582],[196974,117102,1592],[197484,116991,1572],[197975,116814,1552],[198429,116827,1552],[198522,116952,1552],[198336,117042,1552],[198242,116788,1552],[198459,117079,1552],[198357,117098,1552],[198469,116672,1542],[198628,116978,1552],[203798,112699,1222],[200352,115606,1522],[200461,115548,1522],[198459,117079,302],[198357,117098,302],[198628,116978,302],[365971,30040,512],[396563,22359,732],[406950,21506,1102],[409647,20421,1492],[411031,22219,1772],[411728,21558,1772],[412195,21926,1812],[411237,21223,1722],[410725,20920,1652],[410194,20653,1572],[406152,19831,1072],[409085,20226,1422],[408511,20070,1352],[407929,19951,1282],[407340,19872,1192],[406747,19832,1122],[351265,33468,902],[342527,36201,1392],[341927,36449,1402],[342081,37423,1502],[375782,28324,462],[374035,28756,482],[375902,28810,462],[394079,24825,652],[374155,29241,452],[278898,62413,382],[301937,49982,472],[302789,51567,402],[312350,45452,632],[322532,41520,1142],[320098,43188,992],[320259,43662,1002],[323181,43199,1142],[321992,42546,1112],[265178,70324,402],[279740,64003,332],[285454,60342,362],[287073,59467,362],[286835,59027,372],[285216,59903,372],[322153,43020,1082],[247005,102678,452],[247054,102644,452],[246886,102505,442],[326955,54973,262],[327912,54682,242],[327101,55451,282],[328057,55160,262],[299595,98925,622],[298891,99901,522],[282957,87976,562],[283687,87015,672],[282938,87999,562],[298874,99929,522],[282619,88154,562],[282649,88151,562],[298818,100245,532],[282589,88155,562],[298825,100277,532],[282559,88153,562],[298834,100308,532],[282529,88150,562],[298846,100339,532],[282499,88145,572],[298859,100369,542],[282470,88138,572],[298874,100397,542],[282441,88129,572],[298892,100425,532],[282412,88118,572],[298911,100452,532],[282385,88105,572],[298932,100477,542],[282359,88090,572],[298955,100500,542],[298979,100522,542],[282333,88074,572],[282679,88146,562],[298814,100212,532],[282709,88140,562],[298812,100180,532],[282738,88131,562],[298812,100147,532],[282766,88121,562],[282794,88108,562],[298814,100114,522],[282821,88094,562],[298818,100082,522],[282847,88079,562],[298825,100050,532],[282871,88061,562],[298834,100018,532],[282895,88042,562],[298845,99988,532],[282917,88021,562],[298858,99958,522],[395891,40226,612],[395949,40449,602],[379566,43291,332],[396360,38553,622],[397535,37371,642],[405142,35236,812],[410361,36326,1032],[364770,47557,362],[410949,37519,1052],[406904,35593,872],[421073,31517,1722],[421120,33600,1812],[421232,33562,1822],[421347,33531,1822],[421463,33508,1822],[421319,31495,1742],[421581,33494,1862],[421648,31492,1772],[421700,33488,1872],[421908,31511,1802],[421818,33490,1872],[422165,31548,1812],[421936,33500,1892],[422419,31603,1842],[422053,33519,1902],[422545,31637,1852],[422169,33545,1922],[422877,31752,1882],[422283,33580,1942],[423352,31983,1912],[422501,33672,1952],[422393,33622,1952],[423502,32075,1922],[423039,31821,1892],[423197,31898,1902],[422713,31690,1862],[422293,31573,1822],[422037,31527,1802],[421778,31499,1782],[421566,31490,1762],[421483,31490,1752],[421401,31491,1742],[421237,31500,1742],[421155,31508,1722],[348983,52182,362],[348144,53446,442],[220984,140590,492],[220973,140621,492],[212913,135136,492],[216578,137773,552],[256179,166943,682],[249523,162070,682],[220983,140295,492],[220972,140264,492],[246405,159812,642],[243156,157445,632],[239842,155080,612],[232736,149658,572],[229373,147250,552],[220656,141135,632],[209424,128500,542],[210550,133409,482],[211646,134210,482],[209330,128369,542],[209859,132903,482],[206270,130279,552],[209806,132976,482],[210497,133481,482],[252854,164461,672],[212865,135200,492],[211599,134274,492],[217093,137638,512],[216891,137779,542],[216776,137918,562],[216728,137883,572],[216915,137753,542],[216941,137729,532],[216969,137706,532],[216998,137686,532],[217028,137668,532],[217060,137652,512],[220818,140051,502],[217127,137627,502],[217474,137650,502],[217161,137618,502],[217196,137611,502],[217231,137607,502],[217267,137606,502],[217303,137607,502],[217338,137611,502],[217407,137626,502],[217373,137617,502],[217441,137637,502],[217506,137666,502],[217537,137684,502],[217566,137704,502],[235877,151953,602],[220843,140073,502],[220867,140096,502],[220889,140121,502],[220909,140147,502],[220928,140175,492],[220945,140203,492],[220960,140233,492],[220992,140327,492],[220999,140360,492],[221003,140393,492],[259396,169320,722],[221005,140426,492],[221005,140459,492],[221003,140492,492],[220999,140525,492],[220992,140558,492],[220960,140652,492],[220945,140682,492],[220929,140710,492],[220910,140738,502],[229344,147290,552],[232724,149674,572],[252842,164477,672],[262542,171646,732],[265991,174194,752],[266506,174628,752],[266473,174598,752],[266567,174694,752],[266538,174660,752],[266594,174730,752],[266618,174767,752],[266640,174806,752],[266660,174847,752],[266676,174889,752],[266690,174931,752],[266701,174975,752],[266709,175019,752],[260858,183141,922],[260913,183097,922],[264493,187881,1022],[260801,183182,922],[260740,183218,922],[260678,183251,922],[260613,183279,932],[260371,179736,832],[259460,182988,892],[257961,182977,832],[256522,186946,982],[260199,183348,922],[260269,183348,922],[260129,183343,922],[258929,183685,892],[259990,183318,922],[260059,183333,922],[259922,183298,922],[259856,183274,902],[259792,183245,902],[259730,183212,892],[259670,183175,892],[259613,183134,892],[259558,183089,892],[259507,183040,892],[261334,180452,962],[260547,183302,932],[249385,196614,1112],[250198,197652,1112],[249165,196912,1112],[257426,197444,1102],[255043,200668,1172],[254823,200966,1172],[265000,182896,982],[265037,182926,992],[267041,184434,1112],[264965,182864,982],[264932,182829,982],[264902,182792,972],[264874,182753,972],[264849,182712,972],[264827,182670,972],[264808,182626,972],[264792,182581,972],[264779,182536,962],[264769,182489,962],[264762,182442,962],[264759,182394,952],[264758,182346,952],[264761,182299,952],[264768,182251,952],[264898,181947,952],[266580,175527,762],[267309,178734,882],[264777,182205,942],[264790,182158,942],[264806,182113,942],[264824,182070,952],[264846,182027,942],[264871,181986,942],[266714,175063,762],[267339,178697,882],[267372,178661,892],[267407,178629,892],[267444,178598,892],[267483,178570,892],[267524,178545,892],[267566,178523,892],[266606,175490,762],[266683,175329,762],[266668,175371,762],[266696,175286,762],[266705,175242,762],[267892,178455,892],[267844,178455,892],[267796,178458,892],[267940,178458,892],[267988,178464,892],[268035,178474,892],[268081,178487,892],[268126,178503,892],[268170,178522,892],[268254,178569,892],[268213,178544,892],[268293,178597,892],[270253,180087,832],[271547,178335,762],[271710,178182,732],[271580,178359,772],[272535,179066,772],[272666,178889,762],[274839,180771,742],[277156,182212,712],[277025,182388,712],[283431,186868,742],[295247,195643,742],[278872,183756,792],[279003,183579,732],[281071,185383,742],[283306,187036,742],[278064,182884,762],[287812,190371,802],[285362,188558,752],[285487,188389,752],[284328,187532,752],[290300,191913,752],[290157,192106,762],[292085,193231,752],[291942,193424,762],[295126,195805,832],[295958,196427,832],[296079,196265,732],[296660,196952,892],[299623,198624,732],[299367,198969,732],[301147,199759,732],[304746,202976,962],[300890,200104,832],[305257,203357,1002],[306981,202087,942],[305449,203549,1002],[316409,166357,942],[254067,190271,1012],[260340,183344,922],[260410,183335,922],[260479,183321,922],[262091,191131,1042],[267749,178465,892],[266716,175153,762],[266716,175108,752],[266712,175198,762],[267702,178475,892],[267656,178488,892],[266650,175412,762],[266629,175452,762],[267610,178504,892],[259762,194284,1122],[251800,193342,1032],[299507,64918,332],[223334,99266,352],[223042,98877,372],[224503,97913,362],[224778,98330,352],[366155,65749,512],[359264,61139,492],[365845,66151,512],[367650,67356,522],[252428,98951,452],[252378,98985,452],[252482,98659,452],[255596,96481,432],[263460,86380,392],[257498,95150,442],[270215,86535,542],[267332,88559,482],[270460,86380,512],[270715,86241,522],[270978,86117,522],[271248,86011,522],[271805,85850,522],[271524,85922,532],[272090,85796,512],[272378,85759,502],[272668,85741,502],[272958,85741,502],[273248,85759,502],[273536,85796,512],[219752,120445,532],[151306,157800,452],[151226,157827,452],[150041,154264,452],[195848,135129,562],[200118,128661,532],[206474,125293,602],[171790,147208,452],[167587,149220,452],[169022,144673,452],[151147,157859,452],[151098,157882,452],[193853,131871,442],[198805,129361,522],[151050,157908,452],[151003,157936,452],[192521,132574,452],[180781,142770,452],[175639,141261,452],[180548,138726,452],[184873,140849,582],[181886,138045,452],[186763,135532,452],[150958,157965,452],[150914,157997,452],[154931,155724,452],[154872,155777,452],[152626,153089,452],[163996,147235,452],[154637,156095,452],[151365,153663,452],[151557,157754,452],[143624,157171,452],[144974,156568,452],[145217,160382,452],[150830,158066,452],[144993,160478,452],[163703,151281,452],[162677,147908,452],[150871,158031,452],[170322,143972,452],[174348,141937,452],[183469,141484,452],[188053,134856,452],[192335,137111,582],[151389,157779,452],[151472,157763,452],[151642,157750,452],[151727,157752,452],[151812,157760,452],[151896,157774,452],[154574,156241,452],[151978,157793,452],[154551,156317,452],[152060,157818,452],[154532,156394,452],[152139,157849,452],[154519,156472,452],[152216,157885,452],[154511,156551,452],[152290,157927,452],[154509,156631,452],[152362,157973,452],[154511,156710,452],[152430,158024,452],[154520,156789,452],[152494,158080,452],[154533,156867,452],[152554,158140,452],[154551,156945,452],[152610,158204,452],[154575,157020,452],[152661,158272,452],[154604,157095,452],[152708,158343,452],[154638,157166,452],[154676,157236,452],[156440,151121,452],[155059,155630,452],[154603,156167,452],[161766,152236,452],[157729,150482,452],[154675,156025,452],[154718,155958,452],[154765,155894,452],[154816,155834,452],[154993,155675,452],[167633,149309,452],[183909,142337,452],[185313,141702,452],[184091,142477,452],[185396,141862,452],[259207,94954,462],[259756,94587,492],[316441,195369,712],[319146,198121,862],[318791,198466,912],[318585,198668,922],[315921,195876,772],[309955,60558,342],[310884,60199,342],[310137,61024,352],[311063,60666,352],[423570,26101,1872],[424807,26973,1892],[329938,122108,542],[329634,122505,532],[326579,120163,532],[326883,119766,582],[359046,159364,782],[322026,195323,842],[356367,156500,622],[318866,193009,672],[363678,149155,632],[366223,152404,832],[363152,149652,652],[365999,152622,842],[366540,152098,802],[329586,54172,242],[330542,53880,242],[330688,54359,262],[329731,54650,262],[206755,123828,512],[207029,124246,552],[208303,122815,472],[208577,123233,502],[444290,46040,1992],[443536,45499,2002],[449333,53632,1692],[449067,52743,1702],[448743,51874,1742],[448363,51027,1762],[447928,50208,1782],[447440,49418,1792],[446902,48663,1832],[446315,47944,1862],[445682,47266,1892],[445006,46630,1962],[424931,33035,1952],[449540,54536,1672],[449774,56376,1572],[449687,55453,1612],[449800,57304,1542],[449669,59154,1392],[449765,58231,1452],[449513,60068,1412],[449022,61857,1282],[449297,60971,1312],[448690,62723,1252],[447858,64381,1212],[448301,63566,1222],[447363,65166,1172],[446817,65916,1162],[435106,80948,882],[434882,81223,872],[434657,81497,872],[434430,81769,872],[434202,82041,862],[433972,82311,862],[433741,82579,902],[433508,82847,912],[325532,83333,522],[326449,82121,502],[343424,30584,1152],[344465,31412,1092],[344179,31591,1102],[339575,31588,1312],[338812,30725,1302],[339045,31105,1312],[338893,30920,1302],[339210,31279,1302],[339387,31440,1312],[339773,31723,1302],[339980,31843,1302],[340196,31949,1292],[340418,32039,1292],[340646,32112,1272],[340878,32170,1272],[341114,32210,1262],[341353,32234,1262],[341592,32241,1252],[341930,32240,1242],[342267,32216,1212],[342601,32168,1192],[342931,32098,1162],[343255,32004,1152],[343573,31888,1122],[343881,31750,1112],[247227,102525,452],[252197,99110,452],[222150,100066,372],[221357,100589,382],[221874,99649,392],[221081,100172,412],[422965,34043,1962],[424313,32620,1942],[422671,33774,1952],[422735,33822,1962],[422796,33873,1962],[422855,33927,1962],[422911,33984,1962],[426973,36090,2142],[429671,39176,2272],[430643,86045,902],[432818,83617,922],[302436,101751,652],[302853,102692,612],[278498,83124,552],[278426,83524,552],[278440,83333,552],[278424,83716,552],[278434,83907,562],[278457,84098,562],[278493,84286,562],[278540,84472,562],[278600,84654,562],[278671,84832,562],[278754,85005,562],[278848,85172,562],[278952,85333,562],[279067,85487,562],[279192,85632,562],[279325,85770,562],[279468,85898,572],[279618,86017,572],[279776,86126,572],[303154,102293,622],[350856,138826,632],[337791,129711,502],[329659,123529,472],[329634,123513,472],[329686,123543,472],[329713,123556,472],[329799,123582,472],[329741,123567,472],[329769,123575,472],[330166,123495,472],[329828,123587,472],[329858,123590,472],[329888,123591,472],[329918,123590,472],[329948,123587,472],[330006,123575,472],[329977,123582,472],[330035,123566,472],[330063,123556,472],[330090,123543,472],[330116,123529,472],[330142,123513,472],[330249,123409,482],[330189,123475,472],[330210,123455,472],[330230,123432,482],[337704,129082,492],[338422,128116,552],[337687,129110,492],[337671,129139,492],[337658,129170,492],[337767,129689,502],[337647,129201,492],[337631,129265,492],[337638,129232,492],[337626,129298,492],[337624,129331,492],[337626,129397,492],[337624,129364,492],[337631,129429,502],[337637,129462,502],[337646,129494,502],[337658,129525,502],[337686,129584,502],[337671,129555,502],[337723,129639,502],[337704,129612,502],[337744,129665,502],[351794,138926,652],[352862,137530,692],[353702,138240,702],[351485,139320,642],[359376,149595,712],[358884,149070,692],[359486,149727,712],[359605,149850,712],[359732,149965,712],[359867,150070,712],[360334,150303,712],[360010,150166,712],[360159,150251,712],[360313,150326,712],[355848,140053,702],[354030,138517,702],[355919,139969,702],[354101,138433,722],[351165,138432,642],[353773,138156,722],[352933,137446,692],[352541,137259,682],[343425,129873,632],[343001,129549,632],[344126,130214,632],[343521,129760,632],[353399,119443,822],[340791,127816,612],[341194,128125,612],[340868,127673,652],[330990,122460,532],[356717,146927,632],[279941,86224,572],[302165,102163,622],[362793,149991,652],[362670,150085,662],[362541,150170,662],[362406,150247,662],[363603,154945,872],[362267,150315,662],[362124,150374,662],[361978,150424,662],[361828,150464,662],[361677,150495,672],[361523,150515,672],[361369,150526,682],[361214,150527,682],[361059,150518,682],[359738,150964,702],[360906,150499,692],[360754,150470,692],[360604,150432,692],[360457,150383,712],[294055,68338,422],[291697,69046,442],[294293,68778,412],[292209,69338,432],[292447,69777,402],[428669,88250,802],[418059,103217,922],[411165,103390,762],[429116,87750,842],[432632,90982,962],[403849,116096,892],[406737,107414,842],[406656,113482,912],[409480,110886,922],[407983,106244,792],[412322,108310,922],[415182,105754,922],[410521,103952,762],[401060,118730,892],[398290,121383,862],[409881,104519,772],[409245,105090,792],[408612,105665,772],[407358,106827,812],[364250,148615,632],[429819,86966,882],[289151,75734,432],[290221,75093,442],[290331,75121,442],[290241,75084,442],[290328,75116,442],[290321,75108,442],[290325,75112,442],[290309,75097,442],[290317,75104,442],[290313,75100,442],[290300,75091,442],[290304,75094,442],[290290,75086,442],[290295,75088,442],[290268,75082,442],[290279,75083,442],[290285,75085,442],[290274,75082,442],[290257,75082,442],[290263,75082,442],[290252,75082,442],[290246,75083,442],[290226,75090,442],[290236,75086,442],[290231,75088,442],[253950,93075,402],[254871,92473,432],[255144,92891,442],[254223,93493,412],[306706,61398,322],[307005,61271,322],[311692,59414,352],[311210,59594,332],[310728,59777,332],[310246,59962,332],[309287,60338,332],[309766,60149,332],[308507,60650,332],[308206,60773,332],[307905,60896,332],[307605,61020,332],[307305,61145,322],[305934,61751,302],[304396,62473,292],[305164,62109,292],[303632,62842,302],[302869,63217,282],[302110,63597,312],[308808,60529,332],[206172,130208,552],[200466,133622,622],[196296,135922,612],[196357,135946,612],[196321,135967,612],[196375,135981,612],[394186,25234,682],[394336,25809,662],[393853,25935,682],[393700,25354,1012],[394186,25234,582],[394336,25809,582],[393853,25935,302],[393700,25354,302],[292875,74437,4272],[376887,96647,4082],[380852,92275,2962],[353399,119443,852],[393947,89661,2682],[393914,89211,2632],[398060,92763,2772],[397763,92930,2622],[109839,170332,1462],[84315,182093,4622],[56356,193967,1462],[80933,183588,4622],[79290,184314,4622],[90847,179206,4622],[85658,181499,4622],[92227,178597,4622],[97198,176400,4622],[98554,175801,4622],[105022,172942,4622],[110018,170734,4622],[110124,170687,4622],[103661,173544,4622],[116519,167817,4622],[111466,170084,4622],[117862,167214,4622],[118387,166497,1462],[118568,166898,4622],[122966,164908,4622],[122940,164437,1462],[123121,164838,4622],[124311,164300,4622],[129417,161992,4622],[130773,161379,4622],[136520,158781,4622],[137840,158184,4622],[150645,151912,1462],[143023,155841,4622],[149442,152939,4622],[144370,155232,4622],[150767,152340,4622],[151603,151960,4622],[151411,151564,1462],[155771,149819,4622],[157051,149162,4622],[162012,146614,4622],[170859,141575,1462],[163330,145937,4622],[168347,143360,4622],[169661,142685,4622],[171061,141966,4622],[173670,140621,4622],[202997,125016,1462],[187383,133556,4622],[174966,139954,4622],[179877,137423,4622],[181212,136736,4622],[186088,134223,4622],[199440,127344,4262],[203013,125062,1462],[191843,131258,4622],[193182,130568,3432],[198117,128025,542],[203223,125341,1442],[203289,125360,1442],[203051,125040,1512],[45057,199557,1462],[41760,201133,1462],[41570,200736,1462],[51565,196585,1462],[47449,197938,1462],[45237,199473,1462],[44868,199160,1462],[37528,200891,1462],[37801,201385,1462],[37291,200905,1462],[37577,201848,1462],[37063,200919,1462],[47633,198338,1462],[50215,197187,1462],[56500,194385,1462],[62904,191555,1462],[57874,193778,1462],[64241,190964,1462],[69423,188674,1462],[70776,188076,1462],[77937,184911,1462],[199440,127344,462],[203013,125062,302],[202997,125016,302],[170859,141575,302],[151411,151564,302],[150645,151912,302],[122940,164437,302],[118387,166497,302],[109839,170332,302],[56356,193967,302],[47449,197938,302],[44868,199160,302],[41570,200736,302],[37801,201385,302],[37528,200891,302],[37291,200905,302],[37063,200919,302],[324056,155427,3832],[324427,154656,3582],[325475,153356,3422],[325861,152562,2962],[326068,152454,2962],[322708,157380,4352],[323304,156296,3782],[323191,156461,3822],[322619,157296,4352],[324232,154764,3702],[324344,154599,3582],[324314,154821,3812],[321870,158389,3532],[320633,160196,3812],[323108,156404,3742],[323221,156239,3782],[321989,158216,4222],[321906,158160,4222],[321787,158333,3522],[343001,129549,812],[343521,129760,1122],[343425,129873,1122],[343754,129442,2822],[350233,122953,2682],[344126,130214,652],[350436,122705,2682],[350357,122646,2682],[350141,122886,2682],[347282,126370,2702],[346993,126549,2702],[347205,126302,2722],[347070,126618,2722],[343653,129587,2822],[397364,24448,8652],[394079,24825,682],[398116,23817,7612],[400560,23612,8912],[399599,23429,7692],[401643,23328,6662],[410684,22585,1972],[411031,22219,1902],[406967,21935,1302],[406950,21506,1262],[392956,25106,4452],[391484,25470,4102],[386273,26759,7522],[384791,27125,7912],[373210,29990,6682],[358579,34042,722],[371725,30357,7242],[366354,31686,6762],[364842,32061,6862],[358289,33668,772],[359821,33303,7232],[353109,34868,1332],[351652,35205,1022],[344304,36909,1502],[342060,37870,1582],[342773,37263,1542],[342081,37423,1572],[337158,38508,1922],[336865,38611,1962],[336733,38425,1962],[337058,38087,1892],[336606,38246,1932],[341984,37446,1572],[379834,28352,7602],[378352,28719,7852],[397364,24448,582],[400560,23612,582],[401643,23328,582],[406967,21935,582],[410684,22585,582],[341984,37446,1502],[337058,38087,1812],[336606,38246,1852],[337158,38508,302],[336865,38611,302],[342060,37870,302],[358579,34042,302],[346486,145258,1022],[346327,144995,982],[346557,145188,972],[346260,145069,992],[344158,143185,1022],[343975,142927,982],[344225,143110,922],[343910,143003,982],[341797,141184,862],[341607,140898,822],[341862,141109,832],[341543,140975,832],[252428,98951,492],[252482,98659,472],[252378,98985,492],[252197,99110,492],[247227,102525,502],[246886,102505,472],[247054,102644,492],[247005,102678,492],[278221,135940,4842],[276701,138123,5122],[278139,135883,4842],[276619,138066,5122],[318001,163687,3052],[316456,166290,3052],[316353,166036,3012],[320453,160191,3812],[320135,159965,3812],[320274,159942,3812],[320192,159884,3812],[319993,160846,3532],[319903,160783,3502],[320219,160332,3812],[320309,160395,3542],[318328,163220,3052],[318238,163157,3072],[317911,163623,3012],[316131,166161,3012],[316263,165973,3012],[316409,166357,3052],[279268,131691,3432],[276896,134990,2602],[279186,131634,3232],[276815,134931,2602],[272872,140416,2542],[196359,117543,1772],[196064,117531,1742],[196194,117137,1722],[195771,117500,1852],[195934,117114,1722],[195480,117450,1852],[195676,117074,1722],[195194,117381,1882],[195421,117016,1772],[194912,117293,1852],[195171,116942,1772],[194637,117187,1912],[194927,116851,1852],[194369,117064,1922],[194689,116743,1852],[193621,116593,1922],[193060,116484,2032],[193635,115984,1802],[194237,116482,1882],[194109,116923,1952],[193860,116766,1952],[194025,116330,1842],[193824,116163,1822],[194459,116620,1852],[193226,116664,2032],[193366,116816,2432],[196454,117143,1722],[196715,117131,1722],[196654,117536,1772],[196974,117102,1692],[196948,117510,1772],[197231,117055,1692],[197239,117465,1772],[197484,116991,1682],[197527,117401,1942],[197732,116911,1682],[197810,117318,1942],[197975,116814,1612],[198087,117217,1942],[198336,117042,1622],[198357,117098,1622],[198242,116788,1602],[198210,116701,1602],[193621,116593,302],[193366,116816,302],[193860,116766,302],[194109,116923,302],[194369,117064,302],[194637,117187,302],[194912,117293,302],[195194,117381,302],[195480,117450,302],[195771,117500,302],[196064,117531,302],[196359,117543,302],[196654,117536,302],[196948,117510,302],[197239,117465,302],[197527,117401,302],[197810,117318,302],[198087,117217,302],[303548,184296,3732],[303384,184165,3732],[330564,147826,3302],[330394,147703,2992],[403757,31323,4542],[398913,32727,5392],[396028,33106,1302],[411897,27720,1962],[411755,27133,2082],[411963,27081,2302],[412347,27795,1932],[412163,27032,2302],[411212,29149,1332],[410963,28775,1382],[409363,29697,1812],[405190,30907,5162],[385483,36720,4082],[384109,37139,4082],[387110,35764,1172],[351518,47075,6702],[350119,47501,4952],[359329,44237,5552],[327384,53964,6282],[327057,54480,4972],[326946,54054,6522],[300430,64460,7352],[300277,64541,7262],[300405,64000,7482],[307653,60546,332],[307305,61145,342],[306542,61011,332],[305934,61751,1762],[305508,61485,1762],[299507,64918,6422],[295953,66770,8512],[299399,64531,6632],[294609,67470,7702],[294269,67219,6382],[303453,62463,6912],[302869,63217,6962],[302432,62966,7332],[302110,63597,7212],[301416,63478,7482],[301045,64140,7352],[290167,69875,9532],[288857,70586,7802],[285501,71995,6632],[272842,80283,412],[263460,86380,5572],[263220,86012,6322],[261355,87756,6212],[256738,90774,5452],[228270,109388,4532],[227022,110204,1522],[233370,105523,5972],[209394,121742,3952],[205365,124379,1312],[205339,124120,1462],[205225,123793,1502],[205296,123898,1312],[205140,123842,1522],[221192,114020,522],[205312,124246,1462],[205282,124282,1502],[210623,120937,2842],[215331,117856,5172],[216567,117047,5392],[222415,113219,5062],[250479,94866,5132],[232895,106360,4572],[233611,105891,5582],[234079,105586,5042],[238778,102514,3372],[239999,101716,4512],[244621,98695,4132],[245849,97892,4692],[251710,94061,5462],[255489,91591,4242],[276003,77699,492],[262577,86958,6112],[283548,73531,6542],[283175,73865,7042],[278316,76815,362],[276235,78078,392],[283587,73615,6542],[284422,73030,6942],[285686,72305,6632],[291697,69046,7772],[299977,64688,6632],[304478,61969,1792],[304396,62473,1792],[305164,62109,1782],[308769,60092,8472],[308507,60650,352],[300584,64380,7352],[300737,64300,7482],[300891,64220,7482],[301199,64061,7482],[301353,63982,7392],[310728,59777,7482],[309889,59650,8252],[311014,59219,7652],[309287,60338,7142],[303632,62842,6962],[312143,58801,8192],[311692,59414,7582],[313629,58715,7672],[313277,58394,8322],[314415,57999,8212],[312798,59010,7822],[307005,61271,342],[306706,61398,352],[307605,61020,342],[307905,60896,342],[308206,60773,342],[308808,60529,352],[309766,60149,7872],[310246,59962,7752],[311210,59594,7322],[312176,59236,7582],[312383,59160,7582],[312590,59085,6822],[313005,58936,7582],[313213,58862,7822],[313421,58788,7482],[343910,49392,5832],[326210,54287,7422],[318782,57059,8292],[317337,57516,6562],[324467,55302,6682],[325914,54843,6832],[326343,54707,6742],[327492,54391,4112],[330904,53352,5882],[332323,52920,5952],[337197,51436,5762],[338607,51007,6172],[345323,48962,5942],[371884,40867,4622],[356798,45467,5332],[358217,45035,4862],[359458,44658,5082],[363674,43372,5072],[365077,42944,5072],[370493,41292,6282],[377187,39250,4272],[378610,38816,4362],[394030,33685,5042],[391301,34964,4582],[387237,36185,1222],[395538,33248,1252],[394154,34107,1152],[392697,34545,4972],[396151,33529,1252],[397487,33141,5242],[411963,27081,582],[411897,27720,582],[410963,28775,582],[396028,33106,582],[394030,33685,302],[395538,33248,302],[387110,35764,302],[359329,44237,302],[327384,53964,302],[326946,54054,302],[326210,54287,302],[314415,57999,302],[313277,58394,302],[312143,58801,302],[311014,59219,302],[309889,59650,302],[308769,60092,302],[307653,60546,302],[306542,61011,302],[305508,61485,302],[304478,61969,302],[303453,62463,302],[302432,62966,302],[301416,63478,302],[300405,64000,302],[299399,64531,302],[294269,67219,302],[285501,71995,302],[276003,77699,302],[263220,86012,302],[233370,105523,302],[205296,123898,302],[205225,123793,302],[326343,54707,272],[327057,54480,252],[327492,54391,242],[359458,44658,222],[387237,36185,202],[394154,34107,622],[396151,33529,622],[285503,135734,2002],[345801,92988,962],[345545,91254,952],[345569,91545,952],[345687,92414,952],[343601,93452,952],[343436,92795,972],[343259,91794,962],[343514,93125,962],[343368,92463,972],[343309,92129,972],[343219,91457,962],[345640,92126,952],[345601,91836,952],[345740,92702,952],[421120,33600,2062],[410976,36624,2092],[410949,37519,2242],[422393,33622,2772],[422501,33672,2782],[422230,34029,2772],[421232,33562,2052],[422605,33729,2782],[422305,34065,2782],[422671,33774,2782],[422735,33822,11882],[422449,34150,2782],[422796,33873,11882],[422516,34200,11882],[422855,33927,11882],[422911,33984,11882],[422965,34043,11882],[422639,34312,11882],[422169,33545,2282],[422283,33580,2772],[422378,34105,2782],[422579,34254,11882],[422695,34374,11882],[422053,33519,2142],[421936,33500,2122],[421818,33490,2092],[421700,33488,2082],[421581,33494,2082],[421463,33508,2052],[421347,33531,2052],[410361,36326,1962],[393003,60152,2692],[392796,60099,1862],[393084,60846,2692],[392896,60958,2692],[340868,127673,662],[341194,128125,652],[340791,127816,752],[362409,71034,2532],[362380,70939,2532],[352933,137446,932],[352541,137259,842],[352862,137530,842],[354030,138517,872],[353702,138240,842],[354101,138433,3062],[395891,40226,792],[395949,40449,792],[219752,120445,562],[215919,122972,562],[216008,123105,582],[395875,32578,5362],[395385,32720,992],[395875,32578,582],[395385,32720,302],[289151,75734,452],[289063,75588,442],[290252,75082,452],[290246,75083,452],[290257,75082,452],[290263,75082,452],[290268,75082,452],[290274,75082,452],[290279,75083,452],[290285,75085,452],[290290,75086,452],[290295,75088,452],[290300,75091,452],[290304,75094,452],[290309,75097,452],[290313,75100,452],[290317,75104,452],[290325,75112,452],[290321,75108,452],[290328,75116,452],[290331,75121,452],[290241,75084,452],[290236,75086,452],[409557,102259,4242],[409292,102133,4242],[409354,102068,4242],[409227,102072,4242],[326449,82121,3372],[325532,83333,1492],[325515,83193,2962],[320326,78742,1472],[320188,78913,1472],[326387,82038,3372],[250654,81315,6982],[249072,82856,322],[243330,86254,7102],[218726,103261,1482],[210468,108685,9322],[213929,105898,8392],[253209,80121,7272],[251938,80455,7022],[292383,57648,1112],[279969,64367,342],[288102,59478,472],[295216,56078,452],[294017,56283,362],[301340,52800,552],[300012,53061,562],[302349,52290,1482],[301369,52331,1582],[305410,50826,512],[304384,51303,462],[306041,50155,582],[327778,42095,1482],[323319,43606,1152],[324918,42610,4132],[332366,40194,1482],[332604,39878,1482],[332733,40065,1482],[327833,41607,1482],[332212,39792,1482],[332480,39698,1482],[327627,41692,1482],[326381,42114,1502],[313297,47467,702],[318349,45064,942],[308517,49464,2062],[312248,47460,702],[323181,43199,1172],[307476,49907,602],[307421,49556,2062],[319792,44507,1102],[306440,50361,582],[313690,46863,662],[303364,51791,612],[302789,51567,1532],[276535,66305,432],[277506,65264,452],[295381,55550,452],[289453,58746,472],[262158,74373,1232],[256699,77840,8672],[259721,75576,412],[283665,61879,492],[282286,62626,452],[279740,64003,432],[276236,65983,452],[271725,68603,442],[270328,69414,442],[265921,71975,1002],[253177,80070,7272],[256272,77590,7882],[264641,72718,1042],[262387,74028,1362],[261987,74260,1302],[252980,79757,7362],[258320,76390,8642],[252943,79698,7272],[237103,90981,492],[227216,97644,402],[232240,93746,7662],[221049,101212,6412],[242225,87001,7102],[237866,89947,7272],[236637,90778,872],[231033,94561,7882],[226647,97516,6212],[225485,98283,462],[219784,102047,482],[215127,105110,7172],[209550,108771,8632],[208333,109567,8212],[207562,110595,872],[204051,113059,7092],[203798,112699,6512],[203383,112990,6572],[202163,113846,5912],[200517,115538,1652],[200264,115178,1572],[200461,115548,1622],[200510,115909,1662],[200352,115606,1622],[200203,115686,1622],[200167,115804,1622],[198606,116602,1602],[198740,116640,1602],[198628,116978,1632],[198522,116952,1622],[198469,116672,1612],[198429,116827,1622],[200641,115834,2422],[218726,103261,302],[210468,108685,302],[227216,97644,302],[237103,90981,302],[249072,82856,302],[253209,80121,302],[253177,80070,302],[256699,77840,302],[276535,66305,302],[279969,64367,302],[292383,57648,302],[295216,56078,302],[301340,52800,302],[302349,52290,302],[303364,51791,302],[304384,51303,302],[305410,50826,302],[306440,50361,302],[307476,49907,302],[308517,49464,302],[313297,47467,302],[323319,43606,302],[327778,42095,302],[332366,40194,302],[332733,40065,302],[259721,75576,372],[252943,79698,312],[252980,79757,312],[200510,115909,302],[200641,115834,302],[200517,115538,302],[204051,113059,302],[207562,110595,302],[402437,32695,762],[403162,31964,802],[402297,32215,762],[403301,32444,802],[356881,156000,642],[359586,158840,812],[359397,159023,792],[312514,39997,752],[307052,42634,562],[327452,40504,1482],[332020,39030,1482],[317316,36796,932],[317344,36669,932],[317280,36920,922],[317236,37043,922],[317185,37162,932],[317126,37277,922],[316510,37939,902],[317060,37389,922],[316988,37497,922],[316908,37599,902],[316823,37697,902],[316731,37789,902],[316634,37875,902],[291910,50575,522],[291869,50536,522],[295450,48711,522],[300882,45763,562],[285806,53958,482],[280066,57336,432],[276855,58770,452],[276900,58206,452],[276885,58144,452],[276912,58269,452],[276919,58332,452],[276922,58396,452],[276921,58459,452],[276916,58523,452],[276907,58586,452],[276893,58648,452],[276876,58710,452],[276829,58828,452],[276800,58885,452],[276768,58940,452],[276731,58992,452],[276692,59043,452],[276504,59214,452],[269565,63254,452],[276649,59090,452],[276604,59134,452],[276555,59176,452],[259151,69528,452],[258847,69711,452],[257536,68940,472],[311281,205817,1042],[308337,203259,952],[333384,30892,1522],[333347,32278,1692],[332412,32340,1832],[331860,30939,1732],[331565,31147,1792],[333333,32422,1702],[333120,33112,1792],[333051,33240,1802],[333181,32981,1772],[333232,32845,1752],[333275,32707,1732],[333309,32565,1712],[421829,19506,1692],[358400,153532,652],[358236,152829,662],[358288,152965,662],[358331,153103,652],[358364,153244,652],[358387,153387,652],[358403,153677,652],[358396,153821,652],[358379,153965,652],[358352,154108,652],[358315,154248,662],[358269,154385,662],[358213,154519,662],[358148,154648,662],[358074,154773,662],[357992,154893,672],[357902,155006,662],[393098,34882,582],[394683,34423,632],[394822,34903,632],[393237,35363,592],[348341,48356,232],[349824,47905,252],[349969,48383,272],[348486,48835,242],[230260,108503,382],[228838,109434,372],[229112,109852,402],[230534,108921,402],[213933,97525,532],[213804,97510,532],[213888,97456,532],[213577,97525,532],[213744,97418,532],[213086,97997,532],[213015,97887,532],[212935,98117,532],[212925,98100,532],[212911,98134,532],[374942,40458,252],[375088,40936,252],[375803,40195,242],[375948,40673,252],[380002,21941,612],[398932,17371,902],[404592,15331,1102],[421828,13966,1252],[430725,11517,802],[431619,14278,722],[421452,18085,1562],[419912,12177,1262],[421440,17888,1532],[421445,18053,1552],[421439,18020,1542],[421436,17987,1542],[421436,17954,1542],[421437,17921,1532],[421446,17855,1522],[421454,17823,1522],[421464,17792,1522],[421476,17761,1522],[421271,13747,1262],[421490,17731,1522],[421290,13775,1262],[421506,17702,1522],[421310,13802,1262],[421524,17674,1512],[421333,13827,1262],[421544,17647,1512],[421357,13851,1262],[421565,17622,1512],[421382,13873,1262],[421588,17598,1512],[421409,13893,1262],[421613,17576,1512],[421438,13912,1262],[421639,17556,1512],[421467,13928,1262],[421666,17537,1512],[421498,13943,1262],[421695,17520,1512],[421529,13955,1262],[421724,17505,1512],[421561,13965,1262],[421755,17492,1502],[421594,13973,1262],[421786,17481,1502],[431652,14381,722],[421795,13974,1252],[421762,13979,1252],[421728,13983,1252],[421694,13984,1262],[421661,13982,1262],[421627,13979,1262],[420438,12403,1262],[420401,12351,1262],[420420,12376,1262],[420380,12326,1262],[420357,12304,1262],[420008,12166,1272],[420282,12244,1262],[420333,12282,1262],[420308,12262,1262],[420225,12213,1262],[420254,12228,1262],[420103,12174,1272],[420196,12201,1262],[420166,12190,1272],[420135,12181,1272],[420040,12167,1272],[420072,12170,1272],[419944,12171,1262],[419976,12168,1272],[392042,18841,792],[360992,27051,682],[389862,19381,752],[384952,20541,702],[389822,19251,752],[354082,28711,832],[349983,29878,942],[336523,37578,1772],[336204,37681,1802],[361864,160305,1002],[361436,160726,1002],[451507,24162,319],[451276,24197,364],[451207,23798,115],[450480,23984,240],[445669,22538,203],[446415,22805,235],[446652,22913,417],[446213,22650,111],[448925,23487,364],[449970,23529,52],[453115,24653,89],[448466,23163,220],[451780,24087,172],[450167,23579,168],[452901,24633,163],[451080,23814,0],[430321,23631,8722],[430365,23803,8722],[429996,23895,9072],[429943,23728,8902],[430321,23631,582],[430365,23803,582],[429943,23728,582],[429996,23895,582],[428710,24676,8372],[435777,22464,2202],[428593,24242,8462],[427104,25150,8612],[425008,25732,1932],[428593,24242,582],[336733,38425,1082],[336204,37681,1632],[331565,31147,1082],[332412,32340,1102],[328220,33512,1002],[333051,33240,1112],[332020,39030,622],[331300,30774,1082],[331444,30977,1082],[327975,33156,1002],[329258,35019,972],[328101,33339,1002],[332480,39698,452],[332604,39878,382],[200470,115660,1102],[200548,115783,702],[205033,123903,312],[189816,119916,302],[184492,123415,302],[189294,120784,302],[130253,151529,302],[154810,138806,302],[189620,120352,302],[189750,119973,302],[47154,189841,302],[189519,120588,302],[189542,120552,302],[37358,194109,302],[189563,120514,302],[189597,120435,302],[117795,157892,302],[189610,120394,302],[189582,120475,302],[189493,120622,302],[189465,120654,302],[180927,125410,302],[189434,120685,302],[189402,120713,302],[189367,120739,302],[189332,120763,302],[110457,161471,302],[61038,183597,302],[178390,126782,302],[178358,126719,302],[102613,165129,302],[35137,196624,302],[35370,197035,302],[35133,197048,302],[34109,201094,302],[34902,197061,302],[31427,197258,302],[5140,198748,302],[16726,198091,302],[7604,202664,302],[3818,198823,302],[5816,202770,302],[454,199013,302],[2339,202976,302],[0,199039,302],[1893,203016,302],[2116,202996,302],[27862,197460,302],[18284,202031,302],[29109,197389,302],[30429,201312,302],[31374,201256,302],[428717,18508,582],[428329,18606,582],[423565,19536,582],[431330,17560,582],[437539,20918,582],[436053,17404,582],[433494,16900,582],[433831,16797,582],[435571,16266,582],[433830,16797,582],[432702,17142,582],[428649,18241,582],[428262,18340,582],[319540,199944,1102],[312772,206610,1132],[312422,206253,1112],[319190,199587,1022],[361264,160068,992],[360916,159709,972],[361598,159048,982],[361946,159407,992],[361224,161579,972],[359400,159725,802],[359374,159052,792],[359335,159113,792],[359354,159082,792],[359319,159145,792],[359293,159213,792],[359305,159179,792],[359283,159248,792],[359269,159393,792],[359276,159284,792],[359272,159320,792],[359269,159356,792],[359272,159429,792],[359284,159501,792],[359277,159465,792],[359294,159536,792],[359377,159697,802],[359338,159636,792],[359306,159570,792],[359321,159603,792],[359356,159667,792],[366248,152385,822],[366273,152369,822],[366300,152354,822],[366328,152341,822],[366357,152330,822],[366387,152321,822],[366417,152314,822],[366447,152310,812],[366478,152307,812],[366509,152307,812],[366540,152309,812],[366570,152313,812],[366600,152320,812],[366630,152328,812],[366659,152339,812],[366687,152351,812],[366714,152366,812],[366740,152382,812],[366765,152400,812],[366789,152420,812],[366811,152442,812],[366831,152465,812],[366850,152489,822],[367402,153019,892],[367421,153042,892],[367463,153084,892],[367441,153064,892],[367535,153136,892],[367485,153103,892],[367510,153121,892],[367673,153188,892],[367588,153163,892],[367561,153150,892],[367616,153173,892],[367644,153182,892],[367762,153196,892],[367703,153193,892],[367732,153196,892],[368101,153037,892],[367851,153187,892],[367792,153195,892],[367821,153192,892],[367908,153171,892],[367879,153180,892],[368013,153117,892],[367935,153160,892],[367962,153147,892],[367988,153133,892],[368060,153080,892],[368037,153099,892],[368081,153059,892],[368119,153014,892],[324524,199652,1122],[326002,198234,1092],[362088,162457,982],[362183,162694,982],[362108,162488,972],[362126,162520,972],[362142,162553,972],[362155,162587,982],[362167,162622,982],[362176,162658,982],[362187,162731,982],[362189,162768,982],[362188,162804,982],[362185,162841,982],[362180,162877,982],[362172,162913,982],[362162,162949,982],[362150,162984,972],[362135,163017,972],[362118,163050,972],[362099,163082,982],[362079,163112,982],[362056,163141,972],[362031,163168,972],[322313,201396,1152],[324314,199437,1052],[319480,198502,902],[319457,198478,892],[319432,198456,892],[319350,198400,892],[319406,198435,892],[319378,198417,892],[319193,198347,892],[319320,198385,892],[319257,198362,892],[319289,198372,892],[319225,198353,892],[318872,198407,902],[319160,198343,892],[319093,198342,892],[319126,198341,892],[319027,198350,892],[319060,198345,892],[318963,198366,882],[318994,198357,882],[318931,198378,892],[318901,198392,892],[318843,198425,912],[318817,198445,912],[311356,205881,1062],[425415,27382,1912],[426537,28136,1952],[453028,44443,2022],[427092,28509,1962],[366936,154569,982],[365942,154836,962],[366290,155195,982],[366588,154210,962],[317114,210987,1172],[316786,210574,1182],[316696,210515,1182],[316742,210543,1182],[316829,210607,1182],[316980,210760,1182],[317019,210813,1182],[316870,210642,1182],[317183,211242,1152],[316909,210679,1182],[316945,210719,1182],[317055,210869,1172],[317086,210927,1172],[317138,211049,1162],[317157,211112,1162],[317173,211177,1162],[317190,211308,1152],[423228,19154,1682]],"transform":{"scale":[0.001,0.001,0.001],"translate":[84616.468,447422.999,-0.452]}} \ No newline at end of file +{ + "CityObjects": { + "b0a8da4cc-2d2a-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "dek", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoortbijtypeoverbrugging": "waardeOnbekend", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f09d7049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "overbruggingisbeweegbaar": "0", + "plus_status": "geenWaarde", + "relatievehoogteligging": "1", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 0, + 1, + 2 + ]], + [[ + 0, + 3, + 1 + ]], + [[ + 4, + 5, + 6 + ]], + [[ + 4, + 7, + 5 + ]], + [[ + 8, + 3, + 0 + ]], + [[ + 4, + 9, + 7 + ]], + [[ + 7, + 10, + 11 + ]], + [[ + 11, + 12, + 13 + ]], + [[ + 13, + 14, + 15 + ]], + [[ + 13, + 12, + 14 + ]], + [[ + 11, + 10, + 12 + ]], + [[ + 7, + 9, + 10 + ]], + [[ + 16, + 4, + 3 + ]], + [[ + 9, + 16, + 17 + ]], + [[ + 9, + 4, + 16 + ]], + [[ + 18, + 8, + 0 + ]], + [[ + 16, + 3, + 8 + ]], + [[ + 0, + 19, + 18 + ]], + [[ + 0, + 20, + 19 + ]], + [[ + 21, + 1, + 3 + ]], + [[ + 22, + 1, + 21 + ]], + [[ + 23, + 3, + 4 + ]], + [[ + 21, + 3, + 23 + ]], + [[ + 24, + 4, + 6 + ]], + [[ + 23, + 4, + 24 + ]], + [[ + 25, + 6, + 5 + ]], + [[ + 24, + 6, + 25 + ]], + [[ + 26, + 5, + 7 + ]], + [[ + 25, + 5, + 26 + ]], + [[ + 27, + 7, + 11 + ]], + [[ + 26, + 7, + 27 + ]], + [[ + 28, + 11, + 13 + ]], + [[ + 27, + 11, + 28 + ]], + [[ + 29, + 27, + 28 + ]], + [[ + 30, + 13, + 15 + ]], + [[ + 28, + 13, + 30 + ]], + [[ + 31, + 10, + 9 + ]], + [[ + 32, + 10, + 31 + ]], + [[ + 33, + 9, + 17 + ]], + [[ + 31, + 9, + 33 + ]], + [[ + 34, + 17, + 16 + ]], + [[ + 33, + 17, + 34 + ]], + [[ + 35, + 16, + 8 + ]], + [[ + 34, + 16, + 35 + ]], + [[ + 36, + 8, + 18 + ]], + [[ + 35, + 8, + 36 + ]], + [[ + 37, + 18, + 19 + ]], + [[ + 36, + 18, + 37 + ]], + [[ + 38, + 36, + 37 + ]], + [[ + 39, + 19, + 20 + ]], + [[ + 37, + 19, + 39 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Bridge" + }, + "b1105d28c-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-52.4)", + "identificatiebagpnd": "503100000000035", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027121)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff7ec49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6, + "min-height-surface": -0.100000001490116, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85012.966 447473.243)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:6)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 40, + 41, + 42 + ]], + [[ + 43, + 44, + 40 + ]], + [[ + 45, + 46, + 47 + ]], + [[ + 48, + 49, + 50 + ]], + [[ + 48, + 51, + 52 + ]], + [[ + 48, + 53, + 49 + ]], + [[ + 45, + 47, + 54 + ]], + [[ + 53, + 55, + 56 + ]], + [[ + 57, + 53, + 52 + ]], + [[ + 52, + 53, + 48 + ]], + [[ + 58, + 55, + 59 + ]], + [[ + 59, + 55, + 57 + ]], + [[ + 59, + 57, + 60 + ]], + [[ + 55, + 53, + 57 + ]], + [[ + 46, + 61, + 62 + ]], + [[ + 63, + 64, + 62 + ]], + [[ + 64, + 65, + 66 + ]], + [[ + 65, + 64, + 67 + ]], + [[ + 68, + 65, + 67 + ]], + [[ + 67, + 64, + 63 + ]], + [[ + 69, + 67, + 63 + ]], + [[ + 70, + 71, + 63 + ]], + [[ + 63, + 62, + 61 + ]], + [[ + 72, + 71, + 73 + ]], + [[ + 74, + 72, + 75 + ]], + [[ + 76, + 74, + 77 + ]], + [[ + 77, + 74, + 75 + ]], + [[ + 78, + 77, + 75 + ]], + [[ + 75, + 72, + 79 + ]], + [[ + 80, + 75, + 79 + ]], + [[ + 81, + 80, + 79 + ]], + [[ + 82, + 81, + 79 + ]], + [[ + 79, + 72, + 73 + ]], + [[ + 83, + 79, + 84 + ]], + [[ + 84, + 79, + 85 + ]], + [[ + 86, + 84, + 85 + ]], + [[ + 87, + 86, + 88 + ]], + [[ + 88, + 86, + 85 + ]], + [[ + 85, + 79, + 89 + ]], + [[ + 89, + 79, + 73 + ]], + [[ + 73, + 71, + 90 + ]], + [[ + 91, + 73, + 92 + ]], + [[ + 92, + 73, + 90 + ]], + [[ + 90, + 71, + 93 + ]], + [[ + 93, + 71, + 70 + ]], + [[ + 46, + 62, + 52 + ]], + [[ + 43, + 40, + 54 + ]], + [[ + 94, + 95, + 96 + ]], + [[ + 94, + 70, + 61 + ]], + [[ + 94, + 61, + 95 + ]], + [[ + 70, + 63, + 61 + ]], + [[ + 51, + 46, + 52 + ]], + [[ + 51, + 47, + 46 + ]], + [[ + 44, + 41, + 40 + ]], + [[ + 45, + 54, + 40 + ]], + [[ + 97, + 42, + 98 + ]], + [[ + 99, + 42, + 97 + ]], + [[ + 100, + 99, + 97 + ]], + [[ + 100, + 97, + 101 + ]], + [[ + 98, + 42, + 102 + ]], + [[ + 103, + 98, + 104 + ]], + [[ + 104, + 98, + 105 + ]], + [[ + 106, + 104, + 105 + ]], + [[ + 107, + 108, + 109 + ]], + [[ + 105, + 107, + 110 + ]], + [[ + 110, + 107, + 109 + ]], + [[ + 109, + 108, + 111 + ]], + [[ + 98, + 102, + 105 + ]], + [[ + 105, + 112, + 107 + ]], + [[ + 113, + 112, + 102 + ]], + [[ + 112, + 113, + 114 + ]], + [[ + 114, + 113, + 115 + ]], + [[ + 112, + 105, + 102 + ]], + [[ + 113, + 102, + 116 + ]], + [[ + 42, + 41, + 102 + ]], + [[ + 117, + 118, + 44 + ]], + [[ + 44, + 118, + 41 + ]], + [[ + 119, + 117, + 43 + ]], + [[ + 43, + 117, + 44 + ]], + [[ + 120, + 119, + 54 + ]], + [[ + 54, + 119, + 43 + ]], + [[ + 121, + 120, + 47 + ]], + [[ + 47, + 120, + 54 + ]], + [[ + 122, + 121, + 51 + ]], + [[ + 51, + 121, + 47 + ]], + [[ + 123, + 122, + 48 + ]], + [[ + 48, + 122, + 51 + ]], + [[ + 124, + 123, + 50 + ]], + [[ + 50, + 123, + 48 + ]], + [[ + 125, + 124, + 49 + ]], + [[ + 49, + 124, + 50 + ]], + [[ + 126, + 125, + 53 + ]], + [[ + 53, + 125, + 49 + ]], + [[ + 127, + 126, + 56 + ]], + [[ + 56, + 126, + 53 + ]], + [[ + 128, + 127, + 55 + ]], + [[ + 55, + 127, + 56 + ]], + [[ + 129, + 128, + 58 + ]], + [[ + 58, + 128, + 55 + ]], + [[ + 130, + 129, + 59 + ]], + [[ + 59, + 129, + 58 + ]], + [[ + 131, + 130, + 60 + ]], + [[ + 60, + 130, + 59 + ]], + [[ + 132, + 131, + 57 + ]], + [[ + 57, + 131, + 60 + ]], + [[ + 133, + 132, + 52 + ]], + [[ + 52, + 132, + 57 + ]], + [[ + 134, + 133, + 62 + ]], + [[ + 62, + 133, + 52 + ]], + [[ + 135, + 134, + 64 + ]], + [[ + 64, + 134, + 62 + ]], + [[ + 136, + 135, + 66 + ]], + [[ + 66, + 135, + 64 + ]], + [[ + 137, + 136, + 65 + ]], + [[ + 65, + 136, + 66 + ]], + [[ + 138, + 137, + 68 + ]], + [[ + 68, + 137, + 65 + ]], + [[ + 139, + 138, + 67 + ]], + [[ + 67, + 138, + 68 + ]], + [[ + 140, + 139, + 69 + ]], + [[ + 69, + 139, + 67 + ]], + [[ + 141, + 140, + 63 + ]], + [[ + 63, + 140, + 69 + ]], + [[ + 142, + 141, + 71 + ]], + [[ + 71, + 141, + 63 + ]], + [[ + 143, + 142, + 72 + ]], + [[ + 72, + 142, + 71 + ]], + [[ + 144, + 143, + 74 + ]], + [[ + 74, + 143, + 72 + ]], + [[ + 145, + 144, + 76 + ]], + [[ + 76, + 144, + 74 + ]], + [[ + 146, + 145, + 77 + ]], + [[ + 77, + 145, + 76 + ]], + [[ + 147, + 146, + 78 + ]], + [[ + 78, + 146, + 77 + ]], + [[ + 148, + 147, + 75 + ]], + [[ + 75, + 147, + 78 + ]], + [[ + 149, + 148, + 80 + ]], + [[ + 80, + 148, + 75 + ]], + [[ + 150, + 149, + 81 + ]], + [[ + 81, + 149, + 80 + ]], + [[ + 151, + 150, + 82 + ]], + [[ + 82, + 150, + 81 + ]], + [[ + 152, + 151, + 79 + ]], + [[ + 79, + 151, + 82 + ]], + [[ + 153, + 152, + 83 + ]], + [[ + 83, + 152, + 79 + ]], + [[ + 154, + 153, + 84 + ]], + [[ + 84, + 153, + 83 + ]], + [[ + 155, + 154, + 86 + ]], + [[ + 86, + 154, + 84 + ]], + [[ + 156, + 155, + 87 + ]], + [[ + 87, + 155, + 86 + ]], + [[ + 157, + 156, + 88 + ]], + [[ + 88, + 156, + 87 + ]], + [[ + 158, + 157, + 85 + ]], + [[ + 85, + 157, + 88 + ]], + [[ + 159, + 158, + 89 + ]], + [[ + 89, + 158, + 85 + ]], + [[ + 160, + 159, + 73 + ]], + [[ + 73, + 159, + 89 + ]], + [[ + 161, + 160, + 91 + ]], + [[ + 91, + 160, + 73 + ]], + [[ + 162, + 161, + 92 + ]], + [[ + 92, + 161, + 91 + ]], + [[ + 163, + 162, + 90 + ]], + [[ + 90, + 162, + 92 + ]], + [[ + 164, + 163, + 93 + ]], + [[ + 93, + 163, + 90 + ]], + [[ + 165, + 164, + 70 + ]], + [[ + 70, + 164, + 93 + ]], + [[ + 166, + 165, + 94 + ]], + [[ + 94, + 165, + 70 + ]], + [[ + 167, + 166, + 96 + ]], + [[ + 96, + 166, + 94 + ]], + [[ + 168, + 167, + 95 + ]], + [[ + 95, + 167, + 96 + ]], + [[ + 169, + 168, + 61 + ]], + [[ + 61, + 168, + 95 + ]], + [[ + 170, + 169, + 46 + ]], + [[ + 46, + 169, + 61 + ]], + [[ + 171, + 170, + 45 + ]], + [[ + 45, + 170, + 46 + ]], + [[ + 172, + 171, + 40 + ]], + [[ + 40, + 171, + 45 + ]], + [[ + 173, + 172, + 42 + ]], + [[ + 42, + 172, + 40 + ]], + [[ + 174, + 173, + 99 + ]], + [[ + 99, + 173, + 42 + ]], + [[ + 175, + 174, + 100 + ]], + [[ + 100, + 174, + 99 + ]], + [[ + 176, + 175, + 101 + ]], + [[ + 101, + 175, + 100 + ]], + [[ + 177, + 176, + 97 + ]], + [[ + 97, + 176, + 101 + ]], + [[ + 178, + 177, + 98 + ]], + [[ + 98, + 177, + 97 + ]], + [[ + 179, + 178, + 103 + ]], + [[ + 103, + 178, + 98 + ]], + [[ + 180, + 179, + 104 + ]], + [[ + 104, + 179, + 103 + ]], + [[ + 181, + 180, + 106 + ]], + [[ + 106, + 180, + 104 + ]], + [[ + 182, + 181, + 105 + ]], + [[ + 105, + 181, + 106 + ]], + [[ + 183, + 182, + 110 + ]], + [[ + 110, + 182, + 105 + ]], + [[ + 184, + 183, + 109 + ]], + [[ + 109, + 183, + 110 + ]], + [[ + 185, + 184, + 111 + ]], + [[ + 111, + 184, + 109 + ]], + [[ + 186, + 185, + 108 + ]], + [[ + 108, + 185, + 111 + ]], + [[ + 187, + 186, + 107 + ]], + [[ + 107, + 186, + 108 + ]], + [[ + 188, + 187, + 112 + ]], + [[ + 112, + 187, + 107 + ]], + [[ + 189, + 188, + 114 + ]], + [[ + 114, + 188, + 112 + ]], + [[ + 190, + 189, + 115 + ]], + [[ + 115, + 189, + 114 + ]], + [[ + 191, + 190, + 113 + ]], + [[ + 113, + 190, + 115 + ]], + [[ + 192, + 191, + 116 + ]], + [[ + 116, + 191, + 113 + ]], + [[ + 193, + 192, + 102 + ]], + [[ + 102, + 192, + 116 + ]], + [[ + 118, + 193, + 41 + ]], + [[ + 41, + 193, + 102 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b11267a1d-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000004048", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027095)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0085849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.89000010490417, + "min-height-surface": -0.0199999995529652, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84841.951 447542.723)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:168)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 194, + 195, + 196 + ]], + [[ + 195, + 197, + 196 + ]], + [[ + 197, + 198, + 199 + ]], + [[ + 197, + 195, + 198 + ]], + [[ + 195, + 200, + 198 + ]], + [[ + 198, + 200, + 201 + ]], + [[ + 202, + 203, + 204 + ]], + [[ + 204, + 203, + 205 + ]], + [[ + 204, + 205, + 194 + ]], + [[ + 194, + 205, + 206 + ]], + [[ + 194, + 206, + 207 + ]], + [[ + 194, + 207, + 195 + ]], + [[ + 208, + 202, + 209 + ]], + [[ + 209, + 202, + 204 + ]], + [[ + 209, + 204, + 196 + ]], + [[ + 196, + 204, + 194 + ]], + [[ + 210, + 208, + 197 + ]], + [[ + 197, + 208, + 209 + ]], + [[ + 197, + 209, + 196 + ]], + [[ + 211, + 210, + 199 + ]], + [[ + 199, + 210, + 197 + ]], + [[ + 212, + 211, + 198 + ]], + [[ + 198, + 211, + 199 + ]], + [[ + 213, + 212, + 201 + ]], + [[ + 201, + 212, + 198 + ]], + [[ + 214, + 213, + 215 + ]], + [[ + 215, + 213, + 216 + ]], + [[ + 216, + 213, + 200 + ]], + [[ + 200, + 213, + 201 + ]], + [[ + 203, + 214, + 205 + ]], + [[ + 205, + 214, + 206 + ]], + [[ + 206, + 214, + 215 + ]], + [[ + 206, + 215, + 207 + ]], + [[ + 207, + 215, + 216 + ]], + [[ + 207, + 216, + 195 + ]], + [[ + 195, + 216, + 200 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1126a169-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000032718", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027096)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0086549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.86999988555908, + "min-height-surface": 0, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84835.527 447547.038)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:170)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 217, + 207, + 218 + ]], + [[ + 218, + 207, + 219 + ]], + [[ + 217, + 216, + 207 + ]], + [[ + 217, + 220, + 221 + ]], + [[ + 216, + 217, + 221 + ]], + [[ + 222, + 223, + 220 + ]], + [[ + 221, + 220, + 223 + ]], + [[ + 224, + 223, + 225 + ]], + [[ + 226, + 222, + 220 + ]], + [[ + 225, + 223, + 222 + ]], + [[ + 227, + 226, + 220 + ]], + [[ + 228, + 226, + 227 + ]], + [[ + 229, + 228, + 227 + ]], + [[ + 230, + 231, + 217 + ]], + [[ + 217, + 231, + 232 + ]], + [[ + 217, + 232, + 233 + ]], + [[ + 217, + 233, + 220 + ]], + [[ + 234, + 230, + 235 + ]], + [[ + 235, + 230, + 218 + ]], + [[ + 218, + 230, + 217 + ]], + [[ + 236, + 234, + 237 + ]], + [[ + 237, + 234, + 235 + ]], + [[ + 237, + 235, + 219 + ]], + [[ + 219, + 235, + 218 + ]], + [[ + 206, + 236, + 207 + ]], + [[ + 207, + 236, + 237 + ]], + [[ + 207, + 237, + 219 + ]], + [[ + 215, + 206, + 216 + ]], + [[ + 216, + 206, + 207 + ]], + [[ + 238, + 215, + 221 + ]], + [[ + 221, + 215, + 216 + ]], + [[ + 239, + 238, + 223 + ]], + [[ + 223, + 238, + 221 + ]], + [[ + 240, + 239, + 224 + ]], + [[ + 224, + 239, + 223 + ]], + [[ + 241, + 240, + 225 + ]], + [[ + 225, + 240, + 224 + ]], + [[ + 242, + 241, + 222 + ]], + [[ + 222, + 241, + 225 + ]], + [[ + 243, + 242, + 226 + ]], + [[ + 226, + 242, + 222 + ]], + [[ + 244, + 243, + 228 + ]], + [[ + 228, + 243, + 226 + ]], + [[ + 245, + 244, + 229 + ]], + [[ + 229, + 244, + 228 + ]], + [[ + 246, + 245, + 247 + ]], + [[ + 247, + 245, + 248 + ]], + [[ + 248, + 245, + 227 + ]], + [[ + 227, + 245, + 229 + ]], + [[ + 231, + 246, + 232 + ]], + [[ + 232, + 246, + 247 + ]], + [[ + 232, + 247, + 233 + ]], + [[ + 233, + 247, + 248 + ]], + [[ + 233, + 248, + 220 + ]], + [[ + 220, + 248, + 227 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1126c87e-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000026153", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027097)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0086649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.49000000953674, + "min-height-surface": 0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84830.424 447550.641)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:172)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 233, + 249, + 248 + ]], + [[ + 248, + 249, + 250 + ]], + [[ + 250, + 251, + 252 + ]], + [[ + 250, + 253, + 251 + ]], + [[ + 254, + 255, + 253 + ]], + [[ + 249, + 254, + 253 + ]], + [[ + 249, + 233, + 256 + ]], + [[ + 250, + 249, + 253 + ]], + [[ + 233, + 257, + 256 + ]], + [[ + 232, + 258, + 233 + ]], + [[ + 233, + 258, + 259 + ]], + [[ + 233, + 259, + 260 + ]], + [[ + 233, + 260, + 257 + ]], + [[ + 247, + 232, + 248 + ]], + [[ + 248, + 232, + 233 + ]], + [[ + 261, + 247, + 250 + ]], + [[ + 250, + 247, + 248 + ]], + [[ + 262, + 261, + 252 + ]], + [[ + 252, + 261, + 250 + ]], + [[ + 263, + 262, + 251 + ]], + [[ + 251, + 262, + 252 + ]], + [[ + 264, + 263, + 253 + ]], + [[ + 253, + 263, + 251 + ]], + [[ + 265, + 264, + 255 + ]], + [[ + 255, + 264, + 253 + ]], + [[ + 266, + 265, + 254 + ]], + [[ + 254, + 265, + 255 + ]], + [[ + 267, + 266, + 249 + ]], + [[ + 249, + 266, + 254 + ]], + [[ + 268, + 267, + 269 + ]], + [[ + 269, + 267, + 270 + ]], + [[ + 270, + 267, + 256 + ]], + [[ + 256, + 267, + 249 + ]], + [[ + 258, + 268, + 259 + ]], + [[ + 259, + 268, + 269 + ]], + [[ + 259, + 269, + 260 + ]], + [[ + 260, + 269, + 270 + ]], + [[ + 260, + 270, + 257 + ]], + [[ + 257, + 270, + 256 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1126c883-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.6)", + "identificatiebagpnd": "503100000026154", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027023)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0086749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.48000001907349, + "min-height-surface": 0.0599999986588955, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84843.704 447561.474)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:1)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 271, + 272, + 270 + ]], + [[ + 271, + 270, + 260 + ]], + [[ + 272, + 273, + 270 + ]], + [[ + 272, + 274, + 273 + ]], + [[ + 275, + 276, + 277 + ]], + [[ + 277, + 276, + 278 + ]], + [[ + 277, + 278, + 271 + ]], + [[ + 271, + 278, + 272 + ]], + [[ + 259, + 275, + 260 + ]], + [[ + 260, + 275, + 277 + ]], + [[ + 260, + 277, + 271 + ]], + [[ + 269, + 259, + 270 + ]], + [[ + 270, + 259, + 260 + ]], + [[ + 279, + 269, + 273 + ]], + [[ + 273, + 269, + 270 + ]], + [[ + 280, + 279, + 274 + ]], + [[ + 274, + 279, + 273 + ]], + [[ + 276, + 280, + 278 + ]], + [[ + 278, + 280, + 272 + ]], + [[ + 272, + 280, + 274 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b112715ef-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000026151", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000061493)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0087749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.29999995231628, + "min-height-surface": -0.00999999977648258, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84850.858 447537.122)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:164)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 281, + 282, + 283 + ]], + [[ + 281, + 284, + 282 + ]], + [[ + 281, + 285, + 284 + ]], + [[ + 281, + 286, + 285 + ]], + [[ + 281, + 287, + 288 + ]], + [[ + 286, + 281, + 289 + ]], + [[ + 289, + 281, + 288 + ]], + [[ + 288, + 287, + 290 + ]], + [[ + 291, + 292, + 281 + ]], + [[ + 281, + 292, + 287 + ]], + [[ + 293, + 291, + 294 + ]], + [[ + 294, + 291, + 283 + ]], + [[ + 283, + 291, + 281 + ]], + [[ + 295, + 293, + 296 + ]], + [[ + 296, + 293, + 294 + ]], + [[ + 296, + 294, + 282 + ]], + [[ + 282, + 294, + 283 + ]], + [[ + 297, + 295, + 284 + ]], + [[ + 284, + 295, + 296 + ]], + [[ + 284, + 296, + 282 + ]], + [[ + 298, + 297, + 285 + ]], + [[ + 285, + 297, + 284 + ]], + [[ + 299, + 298, + 286 + ]], + [[ + 286, + 298, + 285 + ]], + [[ + 300, + 299, + 301 + ]], + [[ + 301, + 299, + 289 + ]], + [[ + 289, + 299, + 286 + ]], + [[ + 302, + 300, + 303 + ]], + [[ + 303, + 300, + 301 + ]], + [[ + 303, + 301, + 288 + ]], + [[ + 288, + 301, + 289 + ]], + [[ + 304, + 302, + 290 + ]], + [[ + 290, + 302, + 303 + ]], + [[ + 290, + 303, + 288 + ]], + [[ + 292, + 304, + 287 + ]], + [[ + 287, + 304, + 290 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b112715f4-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000026152", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027094)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0087849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.04999995231628, + "min-height-surface": -0.00999999977648258, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84845.575 447540.308)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:166)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 301, + 303, + 305 + ]], + [[ + 301, + 306, + 307 + ]], + [[ + 301, + 305, + 306 + ]], + [[ + 305, + 308, + 309 + ]], + [[ + 305, + 310, + 308 + ]], + [[ + 308, + 310, + 311 + ]], + [[ + 311, + 310, + 312 + ]], + [[ + 305, + 303, + 310 + ]], + [[ + 300, + 302, + 301 + ]], + [[ + 301, + 302, + 303 + ]], + [[ + 313, + 300, + 307 + ]], + [[ + 307, + 300, + 301 + ]], + [[ + 209, + 313, + 196 + ]], + [[ + 196, + 313, + 306 + ]], + [[ + 306, + 313, + 307 + ]], + [[ + 204, + 209, + 194 + ]], + [[ + 194, + 209, + 196 + ]], + [[ + 194, + 196, + 305 + ]], + [[ + 305, + 196, + 306 + ]], + [[ + 205, + 204, + 206 + ]], + [[ + 206, + 204, + 207 + ]], + [[ + 207, + 204, + 195 + ]], + [[ + 195, + 204, + 194 + ]], + [[ + 195, + 194, + 309 + ]], + [[ + 309, + 194, + 305 + ]], + [[ + 314, + 205, + 236 + ]], + [[ + 236, + 205, + 206 + ]], + [[ + 236, + 206, + 237 + ]], + [[ + 237, + 206, + 219 + ]], + [[ + 219, + 206, + 207 + ]], + [[ + 219, + 207, + 315 + ]], + [[ + 315, + 207, + 308 + ]], + [[ + 308, + 207, + 195 + ]], + [[ + 308, + 195, + 309 + ]], + [[ + 316, + 314, + 317 + ]], + [[ + 317, + 314, + 236 + ]], + [[ + 317, + 236, + 237 + ]], + [[ + 317, + 237, + 318 + ]], + [[ + 318, + 237, + 219 + ]], + [[ + 318, + 219, + 315 + ]], + [[ + 318, + 315, + 311 + ]], + [[ + 311, + 315, + 308 + ]], + [[ + 319, + 316, + 312 + ]], + [[ + 312, + 316, + 317 + ]], + [[ + 312, + 317, + 318 + ]], + [[ + 312, + 318, + 311 + ]], + [[ + 320, + 319, + 310 + ]], + [[ + 310, + 319, + 312 + ]], + [[ + 302, + 320, + 303 + ]], + [[ + 303, + 320, + 310 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b112715fe-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:56.3)", + "identificatiebagpnd": "503100000026156", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027033)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0087a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.0699999332428, + "min-height-surface": 0.439999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84883.885 447560.978)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:19A)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 321, + 322, + 323 + ]], + [[ + 323, + 324, + 325 + ]], + [[ + 323, + 326, + 321 + ]], + [[ + 325, + 327, + 328 + ]], + [[ + 326, + 325, + 328 + ]], + [[ + 323, + 325, + 326 + ]], + [[ + 323, + 329, + 324 + ]], + [[ + 329, + 330, + 331 + ]], + [[ + 324, + 329, + 332 + ]], + [[ + 332, + 329, + 331 + ]], + [[ + 331, + 330, + 333 + ]], + [[ + 334, + 331, + 333 + ]], + [[ + 335, + 336, + 337 + ]], + [[ + 337, + 336, + 338 + ]], + [[ + 337, + 338, + 329 + ]], + [[ + 329, + 338, + 330 + ]], + [[ + 339, + 335, + 340 + ]], + [[ + 340, + 335, + 341 + ]], + [[ + 341, + 335, + 337 + ]], + [[ + 341, + 337, + 323 + ]], + [[ + 323, + 337, + 329 + ]], + [[ + 342, + 339, + 343 + ]], + [[ + 343, + 339, + 340 + ]], + [[ + 343, + 340, + 322 + ]], + [[ + 322, + 340, + 341 + ]], + [[ + 322, + 341, + 323 + ]], + [[ + 344, + 342, + 321 + ]], + [[ + 321, + 342, + 343 + ]], + [[ + 321, + 343, + 322 + ]], + [[ + 345, + 344, + 326 + ]], + [[ + 326, + 344, + 321 + ]], + [[ + 346, + 345, + 328 + ]], + [[ + 328, + 345, + 326 + ]], + [[ + 347, + 346, + 327 + ]], + [[ + 327, + 346, + 328 + ]], + [[ + 348, + 347, + 325 + ]], + [[ + 325, + 347, + 327 + ]], + [[ + 349, + 348, + 324 + ]], + [[ + 324, + 348, + 325 + ]], + [[ + 350, + 349, + 332 + ]], + [[ + 332, + 349, + 324 + ]], + [[ + 351, + 350, + 331 + ]], + [[ + 331, + 350, + 332 + ]], + [[ + 352, + 351, + 334 + ]], + [[ + 334, + 351, + 331 + ]], + [[ + 353, + 352, + 333 + ]], + [[ + 333, + 352, + 334 + ]], + [[ + 336, + 353, + 338 + ]], + [[ + 338, + 353, + 330 + ]], + [[ + 330, + 353, + 333 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b11271601-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000005344", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0087b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.97000002861023, + "min-height-surface": 0.490000009536743, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 354, + 355, + 356 + ]], + [[ + 357, + 356, + 358 + ]], + [[ + 357, + 358, + 359 + ]], + [[ + 359, + 358, + 360 + ]], + [[ + 356, + 361, + 358 + ]], + [[ + 358, + 361, + 362 + ]], + [[ + 356, + 363, + 361 + ]], + [[ + 356, + 355, + 363 + ]], + [[ + 364, + 365, + 357 + ]], + [[ + 357, + 365, + 356 + ]], + [[ + 366, + 364, + 359 + ]], + [[ + 359, + 364, + 357 + ]], + [[ + 367, + 366, + 360 + ]], + [[ + 360, + 366, + 359 + ]], + [[ + 368, + 367, + 358 + ]], + [[ + 358, + 367, + 360 + ]], + [[ + 343, + 368, + 322 + ]], + [[ + 322, + 368, + 362 + ]], + [[ + 362, + 368, + 358 + ]], + [[ + 340, + 343, + 341 + ]], + [[ + 341, + 343, + 323 + ]], + [[ + 323, + 343, + 322 + ]], + [[ + 323, + 322, + 361 + ]], + [[ + 361, + 322, + 362 + ]], + [[ + 369, + 340, + 370 + ]], + [[ + 370, + 340, + 341 + ]], + [[ + 370, + 341, + 363 + ]], + [[ + 363, + 341, + 323 + ]], + [[ + 363, + 323, + 361 + ]], + [[ + 371, + 369, + 372 + ]], + [[ + 372, + 369, + 370 + ]], + [[ + 372, + 370, + 355 + ]], + [[ + 355, + 370, + 363 + ]], + [[ + 373, + 371, + 354 + ]], + [[ + 354, + 371, + 372 + ]], + [[ + 354, + 372, + 355 + ]], + [[ + 365, + 373, + 356 + ]], + [[ + 356, + 373, + 354 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1127160e-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000026155", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0087e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.01999998092651, + "min-height-surface": 0.0799999982118607, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 374, + 375, + 376 + ]], + [[ + 318, + 377, + 376 + ]], + [[ + 375, + 378, + 376 + ]], + [[ + 376, + 379, + 318 + ]], + [[ + 318, + 379, + 315 + ]], + [[ + 376, + 378, + 379 + ]], + [[ + 375, + 380, + 378 + ]], + [[ + 381, + 382, + 383 + ]], + [[ + 383, + 382, + 384 + ]], + [[ + 383, + 384, + 374 + ]], + [[ + 374, + 384, + 375 + ]], + [[ + 385, + 381, + 376 + ]], + [[ + 376, + 381, + 383 + ]], + [[ + 376, + 383, + 374 + ]], + [[ + 386, + 385, + 377 + ]], + [[ + 377, + 385, + 376 + ]], + [[ + 317, + 386, + 318 + ]], + [[ + 318, + 386, + 377 + ]], + [[ + 237, + 317, + 219 + ]], + [[ + 219, + 317, + 315 + ]], + [[ + 315, + 317, + 318 + ]], + [[ + 235, + 237, + 218 + ]], + [[ + 218, + 237, + 219 + ]], + [[ + 218, + 219, + 379 + ]], + [[ + 379, + 219, + 315 + ]], + [[ + 277, + 235, + 271 + ]], + [[ + 271, + 235, + 378 + ]], + [[ + 378, + 235, + 218 + ]], + [[ + 378, + 218, + 379 + ]], + [[ + 278, + 277, + 272 + ]], + [[ + 272, + 277, + 271 + ]], + [[ + 272, + 271, + 380 + ]], + [[ + 380, + 271, + 378 + ]], + [[ + 382, + 278, + 384 + ]], + [[ + 384, + 278, + 375 + ]], + [[ + 375, + 278, + 272 + ]], + [[ + 375, + 272, + 380 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1127b2f3-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:17.1)", + "identificatiebagpnd": "503100000004630", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027131)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0093c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.07999992370605, + "min-height-surface": -0.0799999982118607, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84941.813 447486.436)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:76)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 387, + 388, + 389 + ]], + [[ + 387, + 389, + 390 + ]], + [[ + 390, + 389, + 391 + ]], + [[ + 389, + 388, + 392 + ]], + [[ + 389, + 393, + 394 + ]], + [[ + 389, + 392, + 393 + ]], + [[ + 388, + 395, + 392 + ]], + [[ + 396, + 397, + 398 + ]], + [[ + 398, + 397, + 399 + ]], + [[ + 398, + 399, + 387 + ]], + [[ + 387, + 399, + 388 + ]], + [[ + 400, + 396, + 401 + ]], + [[ + 401, + 396, + 398 + ]], + [[ + 401, + 398, + 390 + ]], + [[ + 390, + 398, + 387 + ]], + [[ + 402, + 400, + 403 + ]], + [[ + 403, + 400, + 404 + ]], + [[ + 404, + 400, + 391 + ]], + [[ + 391, + 400, + 401 + ]], + [[ + 391, + 401, + 390 + ]], + [[ + 405, + 402, + 406 + ]], + [[ + 406, + 402, + 403 + ]], + [[ + 406, + 403, + 407 + ]], + [[ + 407, + 403, + 404 + ]], + [[ + 407, + 404, + 389 + ]], + [[ + 389, + 404, + 391 + ]], + [[ + 408, + 405, + 409 + ]], + [[ + 409, + 405, + 406 + ]], + [[ + 409, + 406, + 410 + ]], + [[ + 410, + 406, + 407 + ]], + [[ + 410, + 407, + 394 + ]], + [[ + 394, + 407, + 389 + ]], + [[ + 411, + 408, + 412 + ]], + [[ + 412, + 408, + 409 + ]], + [[ + 412, + 409, + 413 + ]], + [[ + 413, + 409, + 410 + ]], + [[ + 413, + 410, + 393 + ]], + [[ + 393, + 410, + 394 + ]], + [[ + 414, + 411, + 392 + ]], + [[ + 392, + 411, + 412 + ]], + [[ + 392, + 412, + 413 + ]], + [[ + 392, + 413, + 393 + ]], + [[ + 415, + 414, + 416 + ]], + [[ + 416, + 414, + 395 + ]], + [[ + 395, + 414, + 392 + ]], + [[ + 397, + 415, + 399 + ]], + [[ + 399, + 415, + 416 + ]], + [[ + 399, + 416, + 388 + ]], + [[ + 388, + 416, + 395 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1128005c-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:17.1)", + "identificatiebagpnd": "503100000004571", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027130)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0094c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.97000002861023, + "min-height-surface": -0.100000001490116, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84948.166 447484.337)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:74)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 417, + 418, + 398 + ]], + [[ + 417, + 398, + 419 + ]], + [[ + 419, + 398, + 401 + ]], + [[ + 398, + 418, + 420 + ]], + [[ + 398, + 416, + 399 + ]], + [[ + 398, + 420, + 416 + ]], + [[ + 418, + 421, + 420 + ]], + [[ + 422, + 423, + 424 + ]], + [[ + 424, + 423, + 425 + ]], + [[ + 424, + 425, + 417 + ]], + [[ + 417, + 425, + 418 + ]], + [[ + 426, + 422, + 427 + ]], + [[ + 427, + 422, + 424 + ]], + [[ + 427, + 424, + 419 + ]], + [[ + 419, + 424, + 417 + ]], + [[ + 428, + 426, + 400 + ]], + [[ + 400, + 426, + 401 + ]], + [[ + 401, + 426, + 427 + ]], + [[ + 401, + 427, + 419 + ]], + [[ + 429, + 428, + 396 + ]], + [[ + 396, + 428, + 400 + ]], + [[ + 396, + 400, + 398 + ]], + [[ + 398, + 400, + 401 + ]], + [[ + 430, + 429, + 397 + ]], + [[ + 397, + 429, + 396 + ]], + [[ + 397, + 396, + 399 + ]], + [[ + 399, + 396, + 398 + ]], + [[ + 431, + 430, + 415 + ]], + [[ + 415, + 430, + 397 + ]], + [[ + 415, + 397, + 416 + ]], + [[ + 416, + 397, + 399 + ]], + [[ + 432, + 431, + 420 + ]], + [[ + 420, + 431, + 415 + ]], + [[ + 420, + 415, + 416 + ]], + [[ + 433, + 432, + 434 + ]], + [[ + 434, + 432, + 421 + ]], + [[ + 421, + 432, + 420 + ]], + [[ + 423, + 433, + 425 + ]], + [[ + 425, + 433, + 434 + ]], + [[ + 425, + 434, + 418 + ]], + [[ + 418, + 434, + 421 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b11280066-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.6)", + "identificatiebagpnd": "503100000027887", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027074)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027073)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0094e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.78999996185303, + "min-height-surface": 0.140000000596046, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84920.286 447536.887)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:24-26)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 435, + 436, + 437 + ]], + [[ + 438, + 439, + 440 + ]], + [[ + 438, + 440, + 441 + ]], + [[ + 437, + 442, + 443 + ]], + [[ + 443, + 438, + 441 + ]], + [[ + 436, + 442, + 437 + ]], + [[ + 443, + 444, + 445 + ]], + [[ + 438, + 443, + 445 + ]], + [[ + 441, + 437, + 443 + ]], + [[ + 436, + 446, + 442 + ]], + [[ + 447, + 448, + 449 + ]], + [[ + 449, + 448, + 450 + ]], + [[ + 449, + 450, + 435 + ]], + [[ + 435, + 450, + 436 + ]], + [[ + 451, + 447, + 452 + ]], + [[ + 452, + 447, + 449 + ]], + [[ + 452, + 449, + 437 + ]], + [[ + 437, + 449, + 435 + ]], + [[ + 453, + 451, + 454 + ]], + [[ + 454, + 451, + 452 + ]], + [[ + 454, + 452, + 441 + ]], + [[ + 441, + 452, + 437 + ]], + [[ + 455, + 453, + 456 + ]], + [[ + 456, + 453, + 454 + ]], + [[ + 456, + 454, + 440 + ]], + [[ + 440, + 454, + 441 + ]], + [[ + 457, + 455, + 458 + ]], + [[ + 458, + 455, + 456 + ]], + [[ + 458, + 456, + 439 + ]], + [[ + 439, + 456, + 440 + ]], + [[ + 459, + 457, + 438 + ]], + [[ + 438, + 457, + 458 + ]], + [[ + 438, + 458, + 439 + ]], + [[ + 460, + 459, + 461 + ]], + [[ + 461, + 459, + 445 + ]], + [[ + 445, + 459, + 438 + ]], + [[ + 462, + 460, + 463 + ]], + [[ + 463, + 460, + 461 + ]], + [[ + 463, + 461, + 444 + ]], + [[ + 444, + 461, + 445 + ]], + [[ + 464, + 462, + 443 + ]], + [[ + 443, + 462, + 463 + ]], + [[ + 443, + 463, + 444 + ]], + [[ + 465, + 464, + 442 + ]], + [[ + 442, + 464, + 443 + ]], + [[ + 466, + 465, + 446 + ]], + [[ + 446, + 465, + 442 + ]], + [[ + 448, + 466, + 450 + ]], + [[ + 450, + 466, + 436 + ]], + [[ + 436, + 466, + 446 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1128006b-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.6)", + "identificatiebagpnd": "503100000004642", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027075)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0094f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.78999996185303, + "min-height-surface": 0.150000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84924.277 447540.160)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:28)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 467, + 468, + 469 + ]], + [[ + 468, + 467, + 470 + ]], + [[ + 467, + 439, + 470 + ]], + [[ + 435, + 440, + 471 + ]], + [[ + 439, + 467, + 471 + ]], + [[ + 441, + 440, + 435 + ]], + [[ + 437, + 441, + 435 + ]], + [[ + 435, + 471, + 472 + ]], + [[ + 436, + 435, + 472 + ]], + [[ + 439, + 471, + 440 + ]], + [[ + 467, + 473, + 471 + ]], + [[ + 474, + 475, + 467 + ]], + [[ + 467, + 475, + 473 + ]], + [[ + 476, + 474, + 469 + ]], + [[ + 469, + 474, + 467 + ]], + [[ + 477, + 476, + 468 + ]], + [[ + 468, + 476, + 469 + ]], + [[ + 478, + 477, + 470 + ]], + [[ + 470, + 477, + 468 + ]], + [[ + 458, + 478, + 439 + ]], + [[ + 439, + 478, + 470 + ]], + [[ + 456, + 458, + 440 + ]], + [[ + 440, + 458, + 439 + ]], + [[ + 454, + 456, + 441 + ]], + [[ + 441, + 456, + 440 + ]], + [[ + 452, + 454, + 437 + ]], + [[ + 437, + 454, + 441 + ]], + [[ + 449, + 452, + 435 + ]], + [[ + 435, + 452, + 437 + ]], + [[ + 450, + 449, + 436 + ]], + [[ + 436, + 449, + 435 + ]], + [[ + 479, + 450, + 472 + ]], + [[ + 472, + 450, + 436 + ]], + [[ + 480, + 479, + 471 + ]], + [[ + 471, + 479, + 472 + ]], + [[ + 475, + 480, + 473 + ]], + [[ + 473, + 480, + 471 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b11280070-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000026299", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027112)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027111)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.16000008583069, + "min-height-surface": 0.0199999995529652, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84945.216 447536.460)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:33-35)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 481, + 482, + 483 + ]], + [[ + 481, + 484, + 485 + ]], + [[ + 482, + 481, + 485 + ]], + [[ + 486, + 482, + 485 + ]], + [[ + 485, + 484, + 487 + ]], + [[ + 488, + 485, + 487 + ]], + [[ + 487, + 484, + 489 + ]], + [[ + 490, + 491, + 492 + ]], + [[ + 492, + 491, + 493 + ]], + [[ + 492, + 493, + 494 + ]], + [[ + 494, + 493, + 495 + ]], + [[ + 494, + 495, + 481 + ]], + [[ + 481, + 495, + 484 + ]], + [[ + 496, + 490, + 497 + ]], + [[ + 497, + 490, + 492 + ]], + [[ + 497, + 492, + 498 + ]], + [[ + 498, + 492, + 494 + ]], + [[ + 498, + 494, + 483 + ]], + [[ + 483, + 494, + 481 + ]], + [[ + 499, + 496, + 500 + ]], + [[ + 500, + 496, + 497 + ]], + [[ + 500, + 497, + 501 + ]], + [[ + 501, + 497, + 498 + ]], + [[ + 501, + 498, + 482 + ]], + [[ + 482, + 498, + 483 + ]], + [[ + 502, + 499, + 486 + ]], + [[ + 486, + 499, + 500 + ]], + [[ + 486, + 500, + 501 + ]], + [[ + 486, + 501, + 482 + ]], + [[ + 503, + 502, + 485 + ]], + [[ + 485, + 502, + 486 + ]], + [[ + 504, + 503, + 488 + ]], + [[ + 488, + 503, + 485 + ]], + [[ + 505, + 504, + 487 + ]], + [[ + 487, + 504, + 488 + ]], + [[ + 506, + 505, + 489 + ]], + [[ + 489, + 505, + 487 + ]], + [[ + 491, + 506, + 493 + ]], + [[ + 493, + 506, + 495 + ]], + [[ + 495, + 506, + 484 + ]], + [[ + 484, + 506, + 489 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b11280075-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000026298", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000060272)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.09999990463257, + "min-height-surface": 0.0799999982118607, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84949.097 447541.631)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:37)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 498, + 507, + 494 + ]], + [[ + 507, + 498, + 508 + ]], + [[ + 508, + 498, + 501 + ]], + [[ + 507, + 509, + 494 + ]], + [[ + 509, + 510, + 494 + ]], + [[ + 494, + 510, + 495 + ]], + [[ + 510, + 509, + 511 + ]], + [[ + 509, + 512, + 511 + ]], + [[ + 513, + 514, + 515 + ]], + [[ + 515, + 514, + 516 + ]], + [[ + 515, + 516, + 507 + ]], + [[ + 507, + 516, + 509 + ]], + [[ + 517, + 513, + 508 + ]], + [[ + 508, + 513, + 515 + ]], + [[ + 508, + 515, + 507 + ]], + [[ + 500, + 517, + 501 + ]], + [[ + 501, + 517, + 508 + ]], + [[ + 497, + 500, + 498 + ]], + [[ + 498, + 500, + 501 + ]], + [[ + 492, + 497, + 494 + ]], + [[ + 494, + 497, + 498 + ]], + [[ + 493, + 492, + 495 + ]], + [[ + 495, + 492, + 494 + ]], + [[ + 518, + 493, + 510 + ]], + [[ + 510, + 493, + 495 + ]], + [[ + 519, + 518, + 511 + ]], + [[ + 511, + 518, + 510 + ]], + [[ + 520, + 519, + 512 + ]], + [[ + 512, + 519, + 511 + ]], + [[ + 514, + 520, + 516 + ]], + [[ + 516, + 520, + 509 + ]], + [[ + 509, + 520, + 512 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1128007a-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000004647", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003297)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.10999989509583, + "min-height-surface": 0.159999996423721, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84949.891 447597.257)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:37)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 521, + 522, + 523 + ]], + [[ + 523, + 524, + 525 + ]], + [[ + 524, + 526, + 527 + ]], + [[ + 524, + 523, + 528 + ]], + [[ + 524, + 528, + 526 + ]], + [[ + 529, + 530, + 531 + ]], + [[ + 528, + 529, + 531 + ]], + [[ + 523, + 532, + 528 + ]], + [[ + 528, + 532, + 529 + ]], + [[ + 523, + 522, + 532 + ]], + [[ + 532, + 522, + 533 + ]], + [[ + 534, + 535, + 536 + ]], + [[ + 536, + 535, + 537 + ]], + [[ + 536, + 537, + 521 + ]], + [[ + 521, + 537, + 522 + ]], + [[ + 538, + 534, + 523 + ]], + [[ + 523, + 534, + 536 + ]], + [[ + 523, + 536, + 521 + ]], + [[ + 539, + 538, + 525 + ]], + [[ + 525, + 538, + 523 + ]], + [[ + 540, + 539, + 524 + ]], + [[ + 524, + 539, + 525 + ]], + [[ + 541, + 540, + 527 + ]], + [[ + 527, + 540, + 524 + ]], + [[ + 542, + 541, + 526 + ]], + [[ + 526, + 541, + 527 + ]], + [[ + 543, + 542, + 528 + ]], + [[ + 528, + 542, + 526 + ]], + [[ + 544, + 543, + 531 + ]], + [[ + 531, + 543, + 528 + ]], + [[ + 545, + 544, + 530 + ]], + [[ + 530, + 544, + 531 + ]], + [[ + 546, + 545, + 529 + ]], + [[ + 529, + 545, + 530 + ]], + [[ + 547, + 546, + 532 + ]], + [[ + 532, + 546, + 529 + ]], + [[ + 548, + 547, + 533 + ]], + [[ + 533, + 547, + 532 + ]], + [[ + 535, + 548, + 537 + ]], + [[ + 537, + 548, + 522 + ]], + [[ + 522, + 548, + 533 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1128007f-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37.4)", + "identificatiebagpnd": "503100000004637", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027084)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027076)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6.1100001335144, + "min-height-surface": 0.200000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84940.274 447558.360)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:30-46)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 549, + 550, + 551 + ]], + [[ + 550, + 552, + 551 + ]], + [[ + 550, + 553, + 552 + ]], + [[ + 552, + 553, + 554 + ]], + [[ + 555, + 556, + 549 + ]], + [[ + 549, + 556, + 550 + ]], + [[ + 557, + 555, + 551 + ]], + [[ + 551, + 555, + 549 + ]], + [[ + 558, + 557, + 552 + ]], + [[ + 552, + 557, + 551 + ]], + [[ + 559, + 558, + 554 + ]], + [[ + 554, + 558, + 552 + ]], + [[ + 560, + 559, + 553 + ]], + [[ + 553, + 559, + 554 + ]], + [[ + 556, + 560, + 550 + ]], + [[ + 550, + 560, + 553 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b11282794-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000004645", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003305)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6.15999984741211, + "min-height-surface": 0.209999993443489, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84996.140 447550.544)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:45)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 561, + 562, + 563 + ]], + [[ + 564, + 565, + 566 + ]], + [[ + 566, + 565, + 567 + ]], + [[ + 564, + 562, + 561 + ]], + [[ + 565, + 564, + 561 + ]], + [[ + 561, + 568, + 569 + ]], + [[ + 561, + 570, + 568 + ]], + [[ + 570, + 561, + 571 + ]], + [[ + 572, + 561, + 569 + ]], + [[ + 572, + 565, + 561 + ]], + [[ + 573, + 574, + 575 + ]], + [[ + 575, + 574, + 576 + ]], + [[ + 575, + 576, + 564 + ]], + [[ + 564, + 576, + 562 + ]], + [[ + 577, + 573, + 578 + ]], + [[ + 578, + 573, + 566 + ]], + [[ + 566, + 573, + 575 + ]], + [[ + 566, + 575, + 564 + ]], + [[ + 579, + 577, + 580 + ]], + [[ + 580, + 577, + 578 + ]], + [[ + 580, + 578, + 567 + ]], + [[ + 567, + 578, + 566 + ]], + [[ + 581, + 579, + 565 + ]], + [[ + 565, + 579, + 580 + ]], + [[ + 565, + 580, + 567 + ]], + [[ + 582, + 581, + 572 + ]], + [[ + 572, + 581, + 565 + ]], + [[ + 583, + 582, + 569 + ]], + [[ + 569, + 582, + 572 + ]], + [[ + 584, + 583, + 568 + ]], + [[ + 568, + 583, + 569 + ]], + [[ + 585, + 584, + 570 + ]], + [[ + 570, + 584, + 568 + ]], + [[ + 586, + 585, + 571 + ]], + [[ + 571, + 585, + 570 + ]], + [[ + 587, + 586, + 561 + ]], + [[ + 561, + 586, + 571 + ]], + [[ + 588, + 587, + 563 + ]], + [[ + 563, + 587, + 561 + ]], + [[ + 574, + 588, + 576 + ]], + [[ + 576, + 588, + 562 + ]], + [[ + 562, + 588, + 563 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b11282799-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000025336", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003307)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6.67000007629395, + "min-height-surface": 0.219999998807907, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85001.101 447546.689)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:47)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 589, + 590, + 591 + ]], + [[ + 592, + 591, + 590 + ]], + [[ + 590, + 589, + 593 + ]], + [[ + 593, + 589, + 594 + ]], + [[ + 595, + 596, + 594 + ]], + [[ + 589, + 595, + 594 + ]], + [[ + 589, + 597, + 595 + ]], + [[ + 589, + 598, + 597 + ]], + [[ + 597, + 598, + 599 + ]], + [[ + 600, + 601, + 602 + ]], + [[ + 602, + 601, + 603 + ]], + [[ + 602, + 603, + 604 + ]], + [[ + 604, + 603, + 605 + ]], + [[ + 604, + 605, + 589 + ]], + [[ + 589, + 605, + 598 + ]], + [[ + 606, + 600, + 607 + ]], + [[ + 607, + 600, + 602 + ]], + [[ + 607, + 602, + 608 + ]], + [[ + 608, + 602, + 604 + ]], + [[ + 608, + 604, + 591 + ]], + [[ + 591, + 604, + 589 + ]], + [[ + 609, + 606, + 592 + ]], + [[ + 592, + 606, + 607 + ]], + [[ + 592, + 607, + 608 + ]], + [[ + 592, + 608, + 591 + ]], + [[ + 610, + 609, + 590 + ]], + [[ + 590, + 609, + 592 + ]], + [[ + 575, + 610, + 564 + ]], + [[ + 564, + 610, + 593 + ]], + [[ + 593, + 610, + 590 + ]], + [[ + 576, + 575, + 562 + ]], + [[ + 562, + 575, + 564 + ]], + [[ + 562, + 564, + 594 + ]], + [[ + 594, + 564, + 593 + ]], + [[ + 611, + 576, + 596 + ]], + [[ + 596, + 576, + 562 + ]], + [[ + 596, + 562, + 594 + ]], + [[ + 612, + 611, + 595 + ]], + [[ + 595, + 611, + 596 + ]], + [[ + 613, + 612, + 597 + ]], + [[ + 597, + 612, + 595 + ]], + [[ + 614, + 613, + 599 + ]], + [[ + 599, + 613, + 597 + ]], + [[ + 601, + 614, + 603 + ]], + [[ + 603, + 614, + 605 + ]], + [[ + 605, + 614, + 598 + ]], + [[ + 598, + 614, + 599 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b1128279e-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000004646", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027115)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.95000004768372, + "min-height-surface": 0.0700000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84953.045 447544.630)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:39)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 615, + 616, + 617 + ]], + [[ + 617, + 616, + 618 + ]], + [[ + 616, + 615, + 515 + ]], + [[ + 615, + 516, + 515 + ]], + [[ + 615, + 619, + 516 + ]], + [[ + 615, + 620, + 619 + ]], + [[ + 621, + 622, + 623 + ]], + [[ + 623, + 622, + 624 + ]], + [[ + 623, + 624, + 615 + ]], + [[ + 615, + 624, + 620 + ]], + [[ + 625, + 621, + 617 + ]], + [[ + 617, + 621, + 623 + ]], + [[ + 617, + 623, + 615 + ]], + [[ + 626, + 625, + 618 + ]], + [[ + 618, + 625, + 617 + ]], + [[ + 627, + 626, + 616 + ]], + [[ + 616, + 626, + 618 + ]], + [[ + 628, + 627, + 513 + ]], + [[ + 513, + 627, + 515 + ]], + [[ + 515, + 627, + 616 + ]], + [[ + 629, + 628, + 514 + ]], + [[ + 514, + 628, + 513 + ]], + [[ + 514, + 513, + 516 + ]], + [[ + 516, + 513, + 515 + ]], + [[ + 630, + 629, + 619 + ]], + [[ + 619, + 629, + 514 + ]], + [[ + 619, + 514, + 516 + ]], + [[ + 622, + 630, + 624 + ]], + [[ + 624, + 630, + 620 + ]], + [[ + 620, + 630, + 619 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b112827a3-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000004644", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027117)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.46000003814697, + "min-height-surface": 0.0799999982118607, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84957.402 447548.205)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:45)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 631, + 632, + 633 + ]], + [[ + 631, + 634, + 632 + ]], + [[ + 631, + 635, + 636 + ]], + [[ + 634, + 631, + 636 + ]], + [[ + 636, + 635, + 637 + ]], + [[ + 637, + 635, + 638 + ]], + [[ + 639, + 637, + 640 + ]], + [[ + 640, + 637, + 638 + ]], + [[ + 641, + 640, + 642 + ]], + [[ + 642, + 640, + 638 + ]], + [[ + 643, + 644, + 631 + ]], + [[ + 631, + 644, + 635 + ]], + [[ + 645, + 643, + 633 + ]], + [[ + 633, + 643, + 631 + ]], + [[ + 646, + 645, + 632 + ]], + [[ + 632, + 645, + 633 + ]], + [[ + 647, + 646, + 634 + ]], + [[ + 634, + 646, + 632 + ]], + [[ + 623, + 647, + 615 + ]], + [[ + 615, + 647, + 636 + ]], + [[ + 636, + 647, + 634 + ]], + [[ + 624, + 623, + 620 + ]], + [[ + 620, + 623, + 615 + ]], + [[ + 620, + 615, + 637 + ]], + [[ + 637, + 615, + 636 + ]], + [[ + 648, + 624, + 639 + ]], + [[ + 639, + 624, + 620 + ]], + [[ + 639, + 620, + 637 + ]], + [[ + 649, + 648, + 640 + ]], + [[ + 640, + 648, + 639 + ]], + [[ + 650, + 649, + 641 + ]], + [[ + 641, + 649, + 640 + ]], + [[ + 651, + 650, + 642 + ]], + [[ + 642, + 650, + 641 + ]], + [[ + 652, + 651, + 638 + ]], + [[ + 638, + 651, + 642 + ]], + [[ + 644, + 652, + 635 + ]], + [[ + 635, + 652, + 638 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b112827a8-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000004636", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003304)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.95000004768372, + "min-height-surface": 0.159999996423721, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84988.378 447559.512)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:44)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 653, + 654, + 655 + ]], + [[ + 656, + 657, + 658 + ]], + [[ + 656, + 659, + 657 + ]], + [[ + 659, + 660, + 661 + ]], + [[ + 662, + 663, + 664 + ]], + [[ + 660, + 662, + 664 + ]], + [[ + 665, + 662, + 660 + ]], + [[ + 659, + 653, + 660 + ]], + [[ + 662, + 665, + 666 + ]], + [[ + 659, + 656, + 653 + ]], + [[ + 660, + 653, + 665 + ]], + [[ + 656, + 654, + 653 + ]], + [[ + 667, + 668, + 669 + ]], + [[ + 669, + 668, + 670 + ]], + [[ + 669, + 670, + 656 + ]], + [[ + 656, + 670, + 654 + ]], + [[ + 671, + 667, + 672 + ]], + [[ + 672, + 667, + 669 + ]], + [[ + 672, + 669, + 658 + ]], + [[ + 658, + 669, + 656 + ]], + [[ + 673, + 671, + 657 + ]], + [[ + 657, + 671, + 672 + ]], + [[ + 657, + 672, + 658 + ]], + [[ + 674, + 673, + 659 + ]], + [[ + 659, + 673, + 657 + ]], + [[ + 675, + 674, + 661 + ]], + [[ + 661, + 674, + 659 + ]], + [[ + 676, + 675, + 660 + ]], + [[ + 660, + 675, + 661 + ]], + [[ + 677, + 676, + 664 + ]], + [[ + 664, + 676, + 660 + ]], + [[ + 678, + 677, + 663 + ]], + [[ + 663, + 677, + 664 + ]], + [[ + 679, + 678, + 662 + ]], + [[ + 662, + 678, + 663 + ]], + [[ + 680, + 679, + 666 + ]], + [[ + 666, + 679, + 662 + ]], + [[ + 681, + 680, + 665 + ]], + [[ + 665, + 680, + 666 + ]], + [[ + 682, + 681, + 653 + ]], + [[ + 653, + 681, + 665 + ]], + [[ + 683, + 682, + 655 + ]], + [[ + 655, + 682, + 653 + ]], + [[ + 668, + 683, + 670 + ]], + [[ + 670, + 683, + 654 + ]], + [[ + 654, + 683, + 655 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b112827ad-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000004640", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003305)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6.05999994277954, + "min-height-surface": 0.170000001788139, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84991.913 447554.453)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:45)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 684, + 685, + 686 + ]], + [[ + 687, + 688, + 689 + ]], + [[ + 686, + 690, + 684 + ]], + [[ + 686, + 691, + 690 + ]], + [[ + 690, + 689, + 692 + ]], + [[ + 689, + 693, + 694 + ]], + [[ + 689, + 688, + 693 + ]], + [[ + 689, + 690, + 691 + ]], + [[ + 695, + 687, + 689 + ]], + [[ + 696, + 695, + 689 + ]], + [[ + 691, + 696, + 689 + ]], + [[ + 578, + 691, + 686 + ]], + [[ + 578, + 580, + 691 + ]], + [[ + 697, + 698, + 577 + ]], + [[ + 577, + 698, + 579 + ]], + [[ + 577, + 579, + 578 + ]], + [[ + 578, + 579, + 580 + ]], + [[ + 699, + 697, + 686 + ]], + [[ + 686, + 697, + 577 + ]], + [[ + 686, + 577, + 578 + ]], + [[ + 700, + 699, + 685 + ]], + [[ + 685, + 699, + 686 + ]], + [[ + 672, + 700, + 658 + ]], + [[ + 658, + 700, + 684 + ]], + [[ + 684, + 700, + 685 + ]], + [[ + 669, + 672, + 656 + ]], + [[ + 656, + 672, + 658 + ]], + [[ + 656, + 658, + 690 + ]], + [[ + 690, + 658, + 684 + ]], + [[ + 670, + 669, + 654 + ]], + [[ + 654, + 669, + 656 + ]], + [[ + 654, + 656, + 692 + ]], + [[ + 692, + 656, + 690 + ]], + [[ + 701, + 670, + 689 + ]], + [[ + 689, + 670, + 654 + ]], + [[ + 689, + 654, + 692 + ]], + [[ + 702, + 701, + 694 + ]], + [[ + 694, + 701, + 689 + ]], + [[ + 703, + 702, + 693 + ]], + [[ + 693, + 702, + 694 + ]], + [[ + 704, + 703, + 688 + ]], + [[ + 688, + 703, + 693 + ]], + [[ + 705, + 704, + 687 + ]], + [[ + 687, + 704, + 688 + ]], + [[ + 706, + 705, + 695 + ]], + [[ + 695, + 705, + 687 + ]], + [[ + 707, + 706, + 696 + ]], + [[ + 696, + 706, + 695 + ]], + [[ + 708, + 707, + 691 + ]], + [[ + 691, + 707, + 696 + ]], + [[ + 698, + 708, + 579 + ]], + [[ + 579, + 708, + 580 + ]], + [[ + 580, + 708, + 691 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b112827b2-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000028346", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003299)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.00999999046326, + "min-height-surface": 0.129999995231628, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84958.769 447588.042)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:39)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 709, + 710, + 711 + ]], + [[ + 712, + 713, + 714 + ]], + [[ + 711, + 712, + 714 + ]], + [[ + 712, + 715, + 713 + ]], + [[ + 712, + 716, + 715 + ]], + [[ + 712, + 717, + 716 + ]], + [[ + 712, + 718, + 717 + ]], + [[ + 712, + 719, + 718 + ]], + [[ + 712, + 720, + 719 + ]], + [[ + 712, + 721, + 720 + ]], + [[ + 712, + 722, + 721 + ]], + [[ + 712, + 723, + 722 + ]], + [[ + 712, + 724, + 723 + ]], + [[ + 712, + 725, + 724 + ]], + [[ + 712, + 726, + 725 + ]], + [[ + 712, + 727, + 726 + ]], + [[ + 712, + 728, + 727 + ]], + [[ + 712, + 729, + 728 + ]], + [[ + 729, + 712, + 730 + ]], + [[ + 730, + 712, + 731 + ]], + [[ + 731, + 712, + 732 + ]], + [[ + 732, + 712, + 733 + ]], + [[ + 733, + 712, + 734 + ]], + [[ + 734, + 712, + 735 + ]], + [[ + 735, + 712, + 736 + ]], + [[ + 736, + 712, + 737 + ]], + [[ + 711, + 738, + 712 + ]], + [[ + 739, + 740, + 738 + ]], + [[ + 711, + 739, + 738 + ]], + [[ + 711, + 710, + 741 + ]], + [[ + 711, + 741, + 739 + ]], + [[ + 710, + 742, + 741 + ]], + [[ + 710, + 743, + 742 + ]], + [[ + 744, + 745, + 746 + ]], + [[ + 746, + 745, + 747 + ]], + [[ + 746, + 747, + 709 + ]], + [[ + 709, + 747, + 710 + ]], + [[ + 748, + 744, + 711 + ]], + [[ + 711, + 744, + 746 + ]], + [[ + 711, + 746, + 709 + ]], + [[ + 749, + 748, + 714 + ]], + [[ + 714, + 748, + 711 + ]], + [[ + 750, + 749, + 713 + ]], + [[ + 713, + 749, + 714 + ]], + [[ + 751, + 750, + 715 + ]], + [[ + 715, + 750, + 713 + ]], + [[ + 752, + 751, + 716 + ]], + [[ + 716, + 751, + 715 + ]], + [[ + 753, + 752, + 717 + ]], + [[ + 717, + 752, + 716 + ]], + [[ + 754, + 753, + 718 + ]], + [[ + 718, + 753, + 717 + ]], + [[ + 755, + 754, + 719 + ]], + [[ + 719, + 754, + 718 + ]], + [[ + 756, + 755, + 720 + ]], + [[ + 720, + 755, + 719 + ]], + [[ + 757, + 756, + 721 + ]], + [[ + 721, + 756, + 720 + ]], + [[ + 758, + 757, + 722 + ]], + [[ + 722, + 757, + 721 + ]], + [[ + 759, + 758, + 723 + ]], + [[ + 723, + 758, + 722 + ]], + [[ + 760, + 759, + 724 + ]], + [[ + 724, + 759, + 723 + ]], + [[ + 761, + 760, + 725 + ]], + [[ + 725, + 760, + 724 + ]], + [[ + 762, + 761, + 726 + ]], + [[ + 726, + 761, + 725 + ]], + [[ + 763, + 762, + 727 + ]], + [[ + 727, + 762, + 726 + ]], + [[ + 764, + 763, + 728 + ]], + [[ + 728, + 763, + 727 + ]], + [[ + 765, + 764, + 729 + ]], + [[ + 729, + 764, + 728 + ]], + [[ + 766, + 765, + 730 + ]], + [[ + 730, + 765, + 729 + ]], + [[ + 767, + 766, + 731 + ]], + [[ + 731, + 766, + 730 + ]], + [[ + 768, + 767, + 732 + ]], + [[ + 732, + 767, + 731 + ]], + [[ + 769, + 768, + 733 + ]], + [[ + 733, + 768, + 732 + ]], + [[ + 770, + 769, + 734 + ]], + [[ + 734, + 769, + 733 + ]], + [[ + 771, + 770, + 735 + ]], + [[ + 735, + 770, + 734 + ]], + [[ + 772, + 771, + 736 + ]], + [[ + 736, + 771, + 735 + ]], + [[ + 773, + 772, + 774 + ]], + [[ + 774, + 772, + 737 + ]], + [[ + 737, + 772, + 736 + ]], + [[ + 775, + 773, + 776 + ]], + [[ + 776, + 773, + 774 + ]], + [[ + 776, + 774, + 712 + ]], + [[ + 712, + 774, + 737 + ]], + [[ + 777, + 775, + 778 + ]], + [[ + 778, + 775, + 776 + ]], + [[ + 778, + 776, + 738 + ]], + [[ + 738, + 776, + 712 + ]], + [[ + 779, + 777, + 740 + ]], + [[ + 740, + 777, + 778 + ]], + [[ + 740, + 778, + 738 + ]], + [[ + 780, + 779, + 739 + ]], + [[ + 739, + 779, + 740 + ]], + [[ + 781, + 780, + 741 + ]], + [[ + 741, + 780, + 739 + ]], + [[ + 782, + 781, + 742 + ]], + [[ + 742, + 781, + 741 + ]], + [[ + 783, + 782, + 743 + ]], + [[ + 743, + 782, + 742 + ]], + [[ + 745, + 783, + 747 + ]], + [[ + 747, + 783, + 710 + ]], + [[ + 710, + 783, + 743 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b112827b7-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000004643", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003298)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0095b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.00999999046326, + "min-height-surface": 0.140000000596046, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84955.890 447590.722)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:38)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 712, + 784, + 737 + ]], + [[ + 737, + 785, + 786 + ]], + [[ + 737, + 787, + 785 + ]], + [[ + 737, + 788, + 787 + ]], + [[ + 737, + 789, + 788 + ]], + [[ + 737, + 790, + 789 + ]], + [[ + 737, + 791, + 790 + ]], + [[ + 737, + 792, + 791 + ]], + [[ + 737, + 793, + 792 + ]], + [[ + 737, + 794, + 793 + ]], + [[ + 737, + 784, + 794 + ]], + [[ + 712, + 795, + 784 + ]], + [[ + 712, + 796, + 795 + ]], + [[ + 712, + 797, + 796 + ]], + [[ + 712, + 798, + 797 + ]], + [[ + 712, + 799, + 798 + ]], + [[ + 712, + 800, + 799 + ]], + [[ + 712, + 801, + 800 + ]], + [[ + 712, + 802, + 801 + ]], + [[ + 712, + 803, + 802 + ]], + [[ + 712, + 804, + 803 + ]], + [[ + 712, + 805, + 804 + ]], + [[ + 712, + 806, + 805 + ]], + [[ + 712, + 807, + 806 + ]], + [[ + 712, + 738, + 807 + ]], + [[ + 807, + 536, + 808 + ]], + [[ + 807, + 809, + 536 + ]], + [[ + 809, + 810, + 537 + ]], + [[ + 536, + 809, + 537 + ]], + [[ + 810, + 809, + 811 + ]], + [[ + 812, + 738, + 813 + ]], + [[ + 807, + 812, + 809 + ]], + [[ + 807, + 738, + 812 + ]], + [[ + 776, + 778, + 712 + ]], + [[ + 712, + 778, + 738 + ]], + [[ + 774, + 776, + 737 + ]], + [[ + 737, + 776, + 712 + ]], + [[ + 814, + 774, + 786 + ]], + [[ + 786, + 774, + 737 + ]], + [[ + 815, + 814, + 785 + ]], + [[ + 785, + 814, + 786 + ]], + [[ + 816, + 815, + 787 + ]], + [[ + 787, + 815, + 785 + ]], + [[ + 817, + 816, + 788 + ]], + [[ + 788, + 816, + 787 + ]], + [[ + 818, + 817, + 789 + ]], + [[ + 789, + 817, + 788 + ]], + [[ + 819, + 818, + 790 + ]], + [[ + 790, + 818, + 789 + ]], + [[ + 820, + 819, + 791 + ]], + [[ + 791, + 819, + 790 + ]], + [[ + 821, + 820, + 792 + ]], + [[ + 792, + 820, + 791 + ]], + [[ + 822, + 821, + 793 + ]], + [[ + 793, + 821, + 792 + ]], + [[ + 823, + 822, + 794 + ]], + [[ + 794, + 822, + 793 + ]], + [[ + 824, + 823, + 784 + ]], + [[ + 784, + 823, + 794 + ]], + [[ + 825, + 824, + 795 + ]], + [[ + 795, + 824, + 784 + ]], + [[ + 826, + 825, + 796 + ]], + [[ + 796, + 825, + 795 + ]], + [[ + 827, + 826, + 797 + ]], + [[ + 797, + 826, + 796 + ]], + [[ + 828, + 827, + 798 + ]], + [[ + 798, + 827, + 797 + ]], + [[ + 829, + 828, + 799 + ]], + [[ + 799, + 828, + 798 + ]], + [[ + 830, + 829, + 800 + ]], + [[ + 800, + 829, + 799 + ]], + [[ + 831, + 830, + 801 + ]], + [[ + 801, + 830, + 800 + ]], + [[ + 832, + 831, + 802 + ]], + [[ + 802, + 831, + 801 + ]], + [[ + 833, + 832, + 803 + ]], + [[ + 803, + 832, + 802 + ]], + [[ + 834, + 833, + 804 + ]], + [[ + 804, + 833, + 803 + ]], + [[ + 835, + 834, + 805 + ]], + [[ + 805, + 834, + 804 + ]], + [[ + 836, + 835, + 806 + ]], + [[ + 806, + 835, + 805 + ]], + [[ + 837, + 836, + 807 + ]], + [[ + 807, + 836, + 806 + ]], + [[ + 838, + 837, + 808 + ]], + [[ + 808, + 837, + 807 + ]], + [[ + 839, + 838, + 534 + ]], + [[ + 534, + 838, + 536 + ]], + [[ + 536, + 838, + 808 + ]], + [[ + 840, + 839, + 535 + ]], + [[ + 535, + 839, + 534 + ]], + [[ + 535, + 534, + 537 + ]], + [[ + 537, + 534, + 536 + ]], + [[ + 841, + 840, + 810 + ]], + [[ + 810, + 840, + 535 + ]], + [[ + 810, + 535, + 537 + ]], + [[ + 842, + 841, + 811 + ]], + [[ + 811, + 841, + 810 + ]], + [[ + 843, + 842, + 809 + ]], + [[ + 809, + 842, + 811 + ]], + [[ + 844, + 843, + 812 + ]], + [[ + 812, + 843, + 809 + ]], + [[ + 845, + 844, + 813 + ]], + [[ + 813, + 844, + 812 + ]], + [[ + 778, + 845, + 738 + ]], + [[ + 738, + 845, + 813 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b22139d30-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cfd49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 846, + 847, + 848 + ]], + [[ + 849, + 850, + 851 + ]], + [[ + 852, + 853, + 164 + ]], + [[ + 164, + 853, + 854 + ]], + [[ + 855, + 856, + 164 + ]], + [[ + 857, + 858, + 859 + ]], + [[ + 860, + 861, + 862 + ]], + [[ + 857, + 852, + 863 + ]], + [[ + 864, + 865, + 866 + ]], + [[ + 867, + 868, + 869 + ]], + [[ + 870, + 871, + 872 + ]], + [[ + 870, + 865, + 873 + ]], + [[ + 874, + 875, + 876 + ]], + [[ + 871, + 875, + 872 + ]], + [[ + 877, + 878, + 864 + ]], + [[ + 879, + 880, + 881 + ]], + [[ + 882, + 883, + 884 + ]], + [[ + 885, + 886, + 887 + ]], + [[ + 888, + 889, + 890 + ]], + [[ + 891, + 892, + 893 + ]], + [[ + 894, + 895, + 896 + ]], + [[ + 890, + 889, + 897 + ]], + [[ + 898, + 899, + 900 + ]], + [[ + 901, + 902, + 899 + ]], + [[ + 903, + 896, + 904 + ]], + [[ + 896, + 901, + 898 + ]], + [[ + 905, + 894, + 906 + ]], + [[ + 848, + 847, + 907 + ]], + [[ + 908, + 909, + 847 + ]], + [[ + 910, + 911, + 912 + ]], + [[ + 913, + 846, + 911 + ]], + [[ + 911, + 914, + 912 + ]], + [[ + 915, + 916, + 917 + ]], + [[ + 918, + 915, + 917 + ]], + [[ + 919, + 885, + 920 + ]], + [[ + 921, + 887, + 886 + ]], + [[ + 922, + 923, + 895 + ]], + [[ + 924, + 902, + 901 + ]], + [[ + 897, + 850, + 882 + ]], + [[ + 916, + 914, + 925 + ]], + [[ + 846, + 908, + 847 + ]], + [[ + 913, + 909, + 908 + ]], + [[ + 926, + 849, + 851 + ]], + [[ + 884, + 927, + 928 + ]], + [[ + 929, + 869, + 868 + ]], + [[ + 883, + 930, + 919 + ]], + [[ + 878, + 873, + 865 + ]], + [[ + 931, + 932, + 873 + ]], + [[ + 869, + 877, + 864 + ]], + [[ + 878, + 865, + 864 + ]], + [[ + 933, + 905, + 934 + ]], + [[ + 906, + 891, + 893 + ]], + [[ + 935, + 936, + 937 + ]], + [[ + 938, + 846, + 939 + ]], + [[ + 876, + 932, + 880 + ]], + [[ + 876, + 875, + 871 + ]], + [[ + 881, + 931, + 877 + ]], + [[ + 881, + 932, + 931 + ]], + [[ + 849, + 930, + 883 + ]], + [[ + 885, + 915, + 920 + ]], + [[ + 940, + 864, + 866 + ]], + [[ + 941, + 942, + 943 + ]], + [[ + 879, + 881, + 877 + ]], + [[ + 880, + 932, + 881 + ]], + [[ + 927, + 944, + 916 + ]], + [[ + 916, + 925, + 927 + ]], + [[ + 945, + 946, + 947 + ]], + [[ + 929, + 948, + 949 + ]], + [[ + 950, + 951, + 877 + ]], + [[ + 951, + 880, + 879 + ]], + [[ + 871, + 870, + 873 + ]], + [[ + 872, + 865, + 870 + ]], + [[ + 952, + 928, + 925 + ]], + [[ + 925, + 914, + 952 + ]], + [[ + 953, + 897, + 889 + ]], + [[ + 850, + 883, + 882 + ]], + [[ + 938, + 954, + 846 + ]], + [[ + 955, + 884, + 928 + ]], + [[ + 956, + 910, + 912 + ]], + [[ + 954, + 928, + 952 + ]], + [[ + 888, + 936, + 934 + ]], + [[ + 954, + 911, + 846 + ]], + [[ + 848, + 939, + 846 + ]], + [[ + 895, + 904, + 896 + ]], + [[ + 933, + 922, + 895 + ]], + [[ + 957, + 958, + 923 + ]], + [[ + 959, + 863, + 852 + ]], + [[ + 856, + 960, + 858 + ]], + [[ + 959, + 852, + 856 + ]], + [[ + 961, + 864, + 962 + ]], + [[ + 947, + 963, + 953 + ]], + [[ + 851, + 850, + 897 + ]], + [[ + 906, + 893, + 964 + ]], + [[ + 892, + 889, + 893 + ]], + [[ + 939, + 848, + 907 + ]], + [[ + 939, + 965, + 938 + ]], + [[ + 894, + 905, + 966 + ]], + [[ + 906, + 964, + 905 + ]], + [[ + 967, + 968, + 941 + ]], + [[ + 969, + 943, + 942 + ]], + [[ + 955, + 970, + 971 + ]], + [[ + 888, + 964, + 893 + ]], + [[ + 972, + 958, + 957 + ]], + [[ + 973, + 904, + 958 + ]], + [[ + 849, + 883, + 850 + ]], + [[ + 919, + 918, + 883 + ]], + [[ + 954, + 955, + 928 + ]], + [[ + 883, + 917, + 944 + ]], + [[ + 928, + 927, + 925 + ]], + [[ + 944, + 917, + 916 + ]], + [[ + 858, + 857, + 863 + ]], + [[ + 859, + 852, + 857 + ]], + [[ + 950, + 945, + 947 + ]], + [[ + 974, + 877, + 945 + ]], + [[ + 932, + 871, + 873 + ]], + [[ + 932, + 876, + 871 + ]], + [[ + 931, + 878, + 877 + ]], + [[ + 931, + 873, + 878 + ]], + [[ + 968, + 868, + 975 + ]], + [[ + 862, + 941, + 976 + ]], + [[ + 926, + 977, + 849 + ]], + [[ + 867, + 978, + 868 + ]], + [[ + 919, + 886, + 885 + ]], + [[ + 862, + 976, + 921 + ]], + [[ + 911, + 952, + 914 + ]], + [[ + 911, + 954, + 952 + ]], + [[ + 883, + 918, + 917 + ]], + [[ + 920, + 915, + 918 + ]], + [[ + 905, + 933, + 966 + ]], + [[ + 905, + 964, + 934 + ]], + [[ + 858, + 940, + 866 + ]], + [[ + 962, + 864, + 940 + ]], + [[ + 898, + 901, + 899 + ]], + [[ + 895, + 894, + 966 + ]], + [[ + 973, + 924, + 903 + ]], + [[ + 924, + 901, + 903 + ]], + [[ + 901, + 896, + 903 + ]], + [[ + 898, + 894, + 896 + ]], + [[ + 904, + 973, + 903 + ]], + [[ + 979, + 902, + 924 + ]], + [[ + 856, + 858, + 863 + ]], + [[ + 866, + 859, + 858 + ]], + [[ + 980, + 981, + 982 + ]], + [[ + 165, + 943, + 969 + ]], + [[ + 918, + 919, + 920 + ]], + [[ + 930, + 886, + 919 + ]], + [[ + 846, + 913, + 908 + ]], + [[ + 956, + 909, + 913 + ]], + [[ + 164, + 856, + 852 + ]], + [[ + 960, + 962, + 940 + ]], + [[ + 983, + 973, + 972 + ]], + [[ + 979, + 924, + 973 + ]], + [[ + 984, + 985, + 961 + ]], + [[ + 986, + 867, + 987 + ]], + [[ + 165, + 855, + 164 + ]], + [[ + 988, + 980, + 942 + ]], + [[ + 986, + 978, + 867 + ]], + [[ + 982, + 165, + 969 + ]], + [[ + 989, + 948, + 929 + ]], + [[ + 978, + 981, + 975 + ]], + [[ + 855, + 981, + 978 + ]], + [[ + 855, + 165, + 981 + ]], + [[ + 980, + 975, + 981 + ]], + [[ + 868, + 978, + 975 + ]], + [[ + 947, + 851, + 963 + ]], + [[ + 947, + 926, + 851 + ]], + [[ + 990, + 938, + 965 + ]], + [[ + 922, + 933, + 934 + ]], + [[ + 991, + 992, + 937 + ]], + [[ + 882, + 884, + 955 + ]], + [[ + 877, + 951, + 879 + ]], + [[ + 950, + 880, + 951 + ]], + [[ + 890, + 897, + 882 + ]], + [[ + 963, + 851, + 897 + ]], + [[ + 993, + 984, + 961 + ]], + [[ + 987, + 867, + 961 + ]], + [[ + 946, + 926, + 947 + ]], + [[ + 946, + 977, + 926 + ]], + [[ + 994, + 939, + 907 + ]], + [[ + 983, + 972, + 935 + ]], + [[ + 967, + 929, + 868 + ]], + [[ + 869, + 864, + 961 + ]], + [[ + 977, + 948, + 989 + ]], + [[ + 945, + 877, + 869 + ]], + [[ + 849, + 989, + 930 + ]], + [[ + 849, + 977, + 989 + ]], + [[ + 867, + 869, + 961 + ]], + [[ + 949, + 977, + 945 + ]], + [[ + 945, + 977, + 946 + ]], + [[ + 945, + 869, + 949 + ]], + [[ + 941, + 988, + 942 + ]], + [[ + 968, + 975, + 988 + ]], + [[ + 884, + 944, + 927 + ]], + [[ + 884, + 883, + 944 + ]], + [[ + 959, + 856, + 863 + ]], + [[ + 985, + 987, + 961 + ]], + [[ + 942, + 980, + 969 + ]], + [[ + 988, + 975, + 980 + ]], + [[ + 935, + 937, + 992 + ]], + [[ + 888, + 934, + 964 + ]], + [[ + 972, + 957, + 935 + ]], + [[ + 922, + 934, + 936 + ]], + [[ + 971, + 970, + 937 + ]], + [[ + 935, + 957, + 936 + ]], + [[ + 889, + 888, + 893 + ]], + [[ + 890, + 936, + 888 + ]], + [[ + 890, + 937, + 936 + ]], + [[ + 991, + 954, + 938 + ]], + [[ + 890, + 971, + 937 + ]], + [[ + 955, + 954, + 970 + ]], + [[ + 947, + 953, + 889 + ]], + [[ + 963, + 897, + 953 + ]], + [[ + 930, + 861, + 886 + ]], + [[ + 930, + 967, + 861 + ]], + [[ + 886, + 860, + 921 + ]], + [[ + 861, + 941, + 862 + ]], + [[ + 976, + 941, + 943 + ]], + [[ + 861, + 967, + 941 + ]], + [[ + 936, + 957, + 922 + ]], + [[ + 935, + 992, + 990 + ]], + [[ + 962, + 993, + 961 + ]], + [[ + 985, + 855, + 987 + ]], + [[ + 856, + 985, + 984 + ]], + [[ + 856, + 855, + 985 + ]], + [[ + 994, + 979, + 973 + ]], + [[ + 994, + 902, + 979 + ]], + [[ + 957, + 923, + 922 + ]], + [[ + 958, + 904, + 923 + ]], + [[ + 933, + 895, + 966 + ]], + [[ + 923, + 904, + 895 + ]], + [[ + 855, + 986, + 987 + ]], + [[ + 855, + 978, + 986 + ]], + [[ + 990, + 992, + 938 + ]], + [[ + 937, + 970, + 991 + ]], + [[ + 913, + 910, + 956 + ]], + [[ + 913, + 911, + 910 + ]], + [[ + 950, + 974, + 945 + ]], + [[ + 950, + 877, + 974 + ]], + [[ + 939, + 983, + 965 + ]], + [[ + 973, + 958, + 972 + ]], + [[ + 983, + 990, + 965 + ]], + [[ + 983, + 935, + 990 + ]], + [[ + 994, + 983, + 939 + ]], + [[ + 994, + 973, + 983 + ]], + [[ + 858, + 960, + 940 + ]], + [[ + 856, + 984, + 993 + ]], + [[ + 929, + 949, + 869 + ]], + [[ + 948, + 977, + 949 + ]], + [[ + 882, + 971, + 890 + ]], + [[ + 882, + 955, + 971 + ]], + [[ + 989, + 967, + 930 + ]], + [[ + 989, + 929, + 967 + ]], + [[ + 941, + 968, + 988 + ]], + [[ + 967, + 868, + 968 + ]], + [[ + 954, + 991, + 970 + ]], + [[ + 938, + 992, + 991 + ]], + [[ + 921, + 860, + 862 + ]], + [[ + 886, + 861, + 860 + ]], + [[ + 960, + 993, + 962 + ]], + [[ + 960, + 856, + 993 + ]], + [[ + 980, + 982, + 969 + ]], + [[ + 981, + 165, + 982 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2214d56a-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef8a4149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 995, + 176, + 177 + ]], + [[ + 995, + 177, + 178 + ]], + [[ + 179, + 995, + 178 + ]], + [[ + 179, + 176, + 995 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b22183104-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef608549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 996, + 997, + 998 + ]], + [[ + 999, + 1000, + 1001 + ]], + [[ + 999, + 996, + 1000 + ]], + [[ + 1000, + 996, + 1002 + ]], + [[ + 999, + 997, + 996 + ]], + [[ + 998, + 997, + 1003 + ]], + [[ + 998, + 1004, + 1005 + ]], + [[ + 998, + 1003, + 1004 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b221a544c-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef8a4349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1006, + 1007, + 1008 + ]], + [[ + 1009, + 1010, + 1011 + ]], + [[ + 1012, + 1013, + 1014 + ]], + [[ + 1015, + 1008, + 1010 + ]], + [[ + 1016, + 1017, + 1011 + ]], + [[ + 1016, + 1018, + 1017 + ]], + [[ + 1016, + 1008, + 1019 + ]], + [[ + 1018, + 1016, + 1020 + ]], + [[ + 1013, + 1020, + 1021 + ]], + [[ + 1022, + 1009, + 1011 + ]], + [[ + 1014, + 1021, + 1023 + ]], + [[ + 1012, + 1022, + 1011 + ]], + [[ + 1017, + 1012, + 1011 + ]], + [[ + 1017, + 1013, + 1012 + ]], + [[ + 1015, + 1023, + 1006 + ]], + [[ + 1014, + 1013, + 1021 + ]], + [[ + 1020, + 1019, + 1021 + ]], + [[ + 1020, + 1016, + 1019 + ]], + [[ + 1019, + 1008, + 1007 + ]], + [[ + 1015, + 1006, + 1008 + ]], + [[ + 1024, + 1025, + 1010 + ]], + [[ + 1023, + 1021, + 1006 + ]], + [[ + 1009, + 1024, + 1010 + ]], + [[ + 1009, + 1014, + 1023 + ]], + [[ + 1024, + 1009, + 1023 + ]], + [[ + 1025, + 1015, + 1010 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b221b16fc-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "onverhard", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef947849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1026, + 1027, + 1028 + ]], + [[ + 1029, + 1030, + 1031 + ]], + [[ + 1032, + 1027, + 1033 + ]], + [[ + 1032, + 1028, + 1027 + ]], + [[ + 1032, + 1034, + 1028 + ]], + [[ + 1032, + 1035, + 1034 + ]], + [[ + 1032, + 1036, + 1035 + ]], + [[ + 1031, + 1037, + 1038 + ]], + [[ + 1039, + 1040, + 1041 + ]], + [[ + 1042, + 1043, + 1044 + ]], + [[ + 1045, + 1042, + 1044 + ]], + [[ + 1045, + 1046, + 1042 + ]], + [[ + 1047, + 1045, + 1044 + ]], + [[ + 1048, + 1049, + 1050 + ]], + [[ + 1029, + 1031, + 1051 + ]], + [[ + 1052, + 1053, + 1054 + ]], + [[ + 1052, + 1038, + 1053 + ]], + [[ + 1052, + 1031, + 1038 + ]], + [[ + 1039, + 1041, + 1032 + ]], + [[ + 1032, + 1041, + 1036 + ]], + [[ + 1030, + 1029, + 1055 + ]], + [[ + 1056, + 1030, + 1055 + ]], + [[ + 1055, + 1029, + 1047 + ]], + [[ + 1057, + 1055, + 1058 + ]], + [[ + 1058, + 1055, + 1059 + ]], + [[ + 1059, + 1055, + 1060 + ]], + [[ + 1060, + 1055, + 1032 + ]], + [[ + 1060, + 1033, + 1061 + ]], + [[ + 1045, + 1029, + 1051 + ]], + [[ + 1047, + 1048, + 1050 + ]], + [[ + 1062, + 1055, + 1057 + ]], + [[ + 1055, + 1047, + 1050 + ]], + [[ + 1048, + 1047, + 1044 + ]], + [[ + 1029, + 1045, + 1047 + ]], + [[ + 1049, + 1039, + 1050 + ]], + [[ + 1049, + 1040, + 1039 + ]], + [[ + 1051, + 1052, + 1054 + ]], + [[ + 1051, + 1031, + 1052 + ]], + [[ + 1032, + 1055, + 1050 + ]], + [[ + 1062, + 1056, + 1055 + ]], + [[ + 1060, + 1032, + 1033 + ]], + [[ + 1050, + 1039, + 1032 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b221b8c65-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cb149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1063, + 1064, + 1065 + ]], + [[ + 1064, + 1066, + 1065 + ]], + [[ + 1064, + 1067, + 1066 + ]], + [[ + 1068, + 1065, + 1066 + ]], + [[ + 1066, + 1069, + 1070 + ]], + [[ + 1071, + 1066, + 1072 + ]], + [[ + 1072, + 1066, + 1073 + ]], + [[ + 1073, + 1066, + 1074 + ]], + [[ + 1074, + 1066, + 1075 + ]], + [[ + 1075, + 1066, + 1076 + ]], + [[ + 1076, + 1066, + 1077 + ]], + [[ + 1077, + 1066, + 1078 + ]], + [[ + 1078, + 1066, + 1079 + ]], + [[ + 1079, + 1066, + 1080 + ]], + [[ + 1080, + 1066, + 1081 + ]], + [[ + 1081, + 1066, + 1082 + ]], + [[ + 1082, + 1083, + 1084 + ]], + [[ + 1084, + 1083, + 1085 + ]], + [[ + 1085, + 1083, + 1086 + ]], + [[ + 1086, + 1083, + 1087 + ]], + [[ + 1087, + 1083, + 1088 + ]], + [[ + 1088, + 1083, + 1089 + ]], + [[ + 1089, + 1083, + 1090 + ]], + [[ + 1090, + 1083, + 1091 + ]], + [[ + 1091, + 1083, + 1092 + ]], + [[ + 1092, + 1083, + 1093 + ]], + [[ + 1083, + 1082, + 1066 + ]], + [[ + 1083, + 1066, + 1070 + ]], + [[ + 1094, + 1066, + 1071 + ]], + [[ + 1094, + 1068, + 1066 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b221d3a47-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2015-04-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.22217ab858564a8fa4707f2a0b468ec2", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1095, + 1096, + 1097 + ]], + [[ + 1098, + 1099, + 1100 + ]], + [[ + 1099, + 1095, + 1100 + ]], + [[ + 1101, + 1100, + 1102 + ]], + [[ + 1103, + 1104, + 1099 + ]], + [[ + 1096, + 1095, + 1104 + ]], + [[ + 1105, + 1106, + 1104 + ]], + [[ + 1106, + 1097, + 1096 + ]], + [[ + 1101, + 1098, + 1100 + ]], + [[ + 1104, + 1095, + 1099 + ]], + [[ + 1103, + 1098, + 1101 + ]], + [[ + 1103, + 1099, + 1098 + ]], + [[ + 1105, + 1103, + 1101 + ]], + [[ + 1105, + 1104, + 1103 + ]], + [[ + 1104, + 1106, + 1096 + ]], + [[ + 1105, + 1097, + 1106 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b221dafb6-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef4b0449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1107, + 1108, + 1109 + ]], + [[ + 1110, + 1111, + 1112 + ]], + [[ + 1113, + 1114, + 1115 + ]], + [[ + 1116, + 1117, + 1118 + ]], + [[ + 1119, + 1120, + 1121 + ]], + [[ + 1121, + 1122, + 1119 + ]], + [[ + 1123, + 1120, + 1124 + ]], + [[ + 1124, + 1120, + 1125 + ]], + [[ + 1125, + 1120, + 1126 + ]], + [[ + 1117, + 1127, + 1118 + ]], + [[ + 1128, + 1126, + 1119 + ]], + [[ + 1129, + 1130, + 1131 + ]], + [[ + 1132, + 1133, + 1115 + ]], + [[ + 1134, + 1135, + 1136 + ]], + [[ + 1137, + 1107, + 1138 + ]], + [[ + 1138, + 1139, + 1137 + ]], + [[ + 1140, + 1109, + 1141 + ]], + [[ + 1142, + 1143, + 1144 + ]], + [[ + 1145, + 1146, + 1147 + ]], + [[ + 1148, + 433, + 1149 + ]], + [[ + 1147, + 1150, + 1151 + ]], + [[ + 1152, + 415, + 432 + ]], + [[ + 1153, + 412, + 414 + ]], + [[ + 1154, + 1155, + 1156 + ]], + [[ + 1157, + 1158, + 1159 + ]], + [[ + 1160, + 1161, + 1162 + ]], + [[ + 1163, + 1164, + 1165 + ]], + [[ + 1166, + 1167, + 1168 + ]], + [[ + 1169, + 1154, + 1156 + ]], + [[ + 1170, + 1171, + 1167 + ]], + [[ + 1172, + 1160, + 1162 + ]], + [[ + 1162, + 1161, + 1173 + ]], + [[ + 1174, + 1172, + 1162 + ]], + [[ + 1175, + 1176, + 1177 + ]], + [[ + 1175, + 1178, + 1172 + ]], + [[ + 1179, + 1180, + 1181 + ]], + [[ + 1182, + 1183, + 1149 + ]], + [[ + 1184, + 1185, + 1177 + ]], + [[ + 1186, + 1187, + 1145 + ]], + [[ + 1145, + 1187, + 1188 + ]], + [[ + 1189, + 432, + 1190 + ]], + [[ + 1151, + 1191, + 1192 + ]], + [[ + 1193, + 1194, + 1195 + ]], + [[ + 1186, + 1192, + 1196 + ]], + [[ + 1197, + 1198, + 1199 + ]], + [[ + 1200, + 1201, + 1199 + ]], + [[ + 1202, + 1203, + 1197 + ]], + [[ + 1201, + 1204, + 1197 + ]], + [[ + 1197, + 1204, + 1202 + ]], + [[ + 1205, + 1206, + 1207 + ]], + [[ + 1199, + 1201, + 1197 + ]], + [[ + 1208, + 1209, + 1210 + ]], + [[ + 1189, + 1195, + 432 + ]], + [[ + 1211, + 1212, + 1213 + ]], + [[ + 1214, + 1215, + 1207 + ]], + [[ + 1206, + 1216, + 1211 + ]], + [[ + 1211, + 1217, + 1218 + ]], + [[ + 1217, + 1211, + 1216 + ]], + [[ + 1213, + 1206, + 1211 + ]], + [[ + 1219, + 1149, + 1220 + ]], + [[ + 1221, + 1222, + 1223 + ]], + [[ + 1224, + 1225, + 1226 + ]], + [[ + 1227, + 1111, + 1115 + ]], + [[ + 1228, + 1110, + 1225 + ]], + [[ + 1225, + 1110, + 1229 + ]], + [[ + 1111, + 1230, + 1112 + ]], + [[ + 1231, + 1232, + 1163 + ]], + [[ + 1163, + 1233, + 1158 + ]], + [[ + 1234, + 1235, + 1236 + ]], + [[ + 1222, + 1228, + 1223 + ]], + [[ + 1237, + 1238, + 1134 + ]], + [[ + 1128, + 1130, + 1129 + ]], + [[ + 1189, + 1214, + 1201 + ]], + [[ + 1239, + 433, + 1148 + ]], + [[ + 1235, + 1240, + 1144 + ]], + [[ + 1240, + 1241, + 1142 + ]], + [[ + 1180, + 1242, + 414 + ]], + [[ + 1243, + 1244, + 1153 + ]], + [[ + 1245, + 1138, + 1109 + ]], + [[ + 1245, + 1139, + 1138 + ]], + [[ + 1137, + 1246, + 1107 + ]], + [[ + 1141, + 1247, + 1140 + ]], + [[ + 1131, + 1248, + 1139 + ]], + [[ + 1249, + 1238, + 1248 + ]], + [[ + 1165, + 1164, + 1157 + ]], + [[ + 1165, + 1231, + 1163 + ]], + [[ + 1220, + 1250, + 1219 + ]], + [[ + 1251, + 1215, + 1252 + ]], + [[ + 1253, + 1254, + 1144 + ]], + [[ + 1221, + 1223, + 1224 + ]], + [[ + 1255, + 1113, + 1221 + ]], + [[ + 1132, + 1256, + 1133 + ]], + [[ + 1195, + 1194, + 1257 + ]], + [[ + 1258, + 1259, + 1260 + ]], + [[ + 1157, + 1261, + 1166 + ]], + [[ + 1262, + 1263, + 1233 + ]], + [[ + 1168, + 1171, + 1231 + ]], + [[ + 1171, + 1264, + 1231 + ]], + [[ + 1164, + 1163, + 1158 + ]], + [[ + 1233, + 1263, + 1158 + ]], + [[ + 1174, + 1154, + 1265 + ]], + [[ + 1266, + 1232, + 1231 + ]], + [[ + 1267, + 1184, + 1243 + ]], + [[ + 1268, + 415, + 1152 + ]], + [[ + 1115, + 1222, + 1113 + ]], + [[ + 1115, + 1110, + 1228 + ]], + [[ + 1237, + 1269, + 1246 + ]], + [[ + 1270, + 1247, + 1141 + ]], + [[ + 1189, + 1271, + 1272 + ]], + [[ + 1210, + 433, + 1273 + ]], + [[ + 1234, + 1250, + 1274 + ]], + [[ + 1275, + 1143, + 1142 + ]], + [[ + 1131, + 1249, + 1248 + ]], + [[ + 1276, + 1277, + 1249 + ]], + [[ + 1249, + 1277, + 1238 + ]], + [[ + 1278, + 1122, + 1133 + ]], + [[ + 1238, + 1277, + 1279 + ]], + [[ + 1131, + 1280, + 1129 + ]], + [[ + 1281, + 1282, + 1283 + ]], + [[ + 1284, + 412, + 1244 + ]], + [[ + 1242, + 1285, + 414 + ]], + [[ + 1286, + 1243, + 1153 + ]], + [[ + 1193, + 1195, + 1189 + ]], + [[ + 1194, + 1258, + 1260 + ]], + [[ + 1147, + 1151, + 1192 + ]], + [[ + 1185, + 1178, + 1177 + ]], + [[ + 1132, + 1287, + 1256 + ]], + [[ + 1127, + 1288, + 1118 + ]], + [[ + 1289, + 1136, + 1290 + ]], + [[ + 1237, + 1248, + 1238 + ]], + [[ + 1185, + 1184, + 1291 + ]], + [[ + 1242, + 1180, + 1292 + ]], + [[ + 1248, + 1137, + 1139 + ]], + [[ + 1248, + 1237, + 1137 + ]], + [[ + 1186, + 1293, + 1294 + ]], + [[ + 1186, + 1196, + 1292 + ]], + [[ + 1242, + 1267, + 1286 + ]], + [[ + 1282, + 1176, + 1283 + ]], + [[ + 1221, + 1224, + 1226 + ]], + [[ + 1223, + 1225, + 1224 + ]], + [[ + 1149, + 1183, + 1148 + ]], + [[ + 1271, + 1190, + 1210 + ]], + [[ + 1295, + 1140, + 1247 + ]], + [[ + 1295, + 1109, + 1140 + ]], + [[ + 1264, + 1296, + 1266 + ]], + [[ + 1296, + 1232, + 1266 + ]], + [[ + 1296, + 1169, + 1233 + ]], + [[ + 1169, + 1263, + 1262 + ]], + [[ + 1289, + 1269, + 1136 + ]], + [[ + 1108, + 1246, + 1269 + ]], + [[ + 1170, + 1175, + 1265 + ]], + [[ + 1172, + 1174, + 1265 + ]], + [[ + 1236, + 1235, + 1144 + ]], + [[ + 1297, + 1113, + 1255 + ]], + [[ + 1288, + 1279, + 1118 + ]], + [[ + 1279, + 1130, + 1118 + ]], + [[ + 1287, + 1117, + 1116 + ]], + [[ + 1279, + 1277, + 1130 + ]], + [[ + 1255, + 1221, + 1226 + ]], + [[ + 1113, + 1222, + 1221 + ]], + [[ + 1240, + 1142, + 1144 + ]], + [[ + 1250, + 1226, + 1298 + ]], + [[ + 1276, + 1130, + 1277 + ]], + [[ + 1129, + 1126, + 1128 + ]], + [[ + 1149, + 1274, + 1220 + ]], + [[ + 1149, + 1143, + 1274 + ]], + [[ + 1253, + 1270, + 1290 + ]], + [[ + 1141, + 1108, + 1289 + ]], + [[ + 1285, + 1153, + 414 + ]], + [[ + 1285, + 1286, + 1153 + ]], + [[ + 1254, + 1290, + 1299 + ]], + [[ + 1136, + 1135, + 1117 + ]], + [[ + 1144, + 1300, + 1236 + ]], + [[ + 1290, + 1117, + 1299 + ]], + [[ + 1283, + 1176, + 1159 + ]], + [[ + 1176, + 1170, + 1261 + ]], + [[ + 1117, + 1135, + 1127 + ]], + [[ + 1134, + 1238, + 1301 + ]], + [[ + 1299, + 1117, + 1287 + ]], + [[ + 1290, + 1136, + 1117 + ]], + [[ + 1191, + 1185, + 1291 + ]], + [[ + 1191, + 1178, + 1185 + ]], + [[ + 1270, + 1253, + 1144 + ]], + [[ + 1270, + 1289, + 1290 + ]], + [[ + 1181, + 1259, + 1258 + ]], + [[ + 414, + 415, + 1259 + ]], + [[ + 1302, + 1258, + 1194 + ]], + [[ + 1179, + 1181, + 1258 + ]], + [[ + 1189, + 1190, + 1271 + ]], + [[ + 432, + 433, + 1190 + ]], + [[ + 1142, + 1234, + 1274 + ]], + [[ + 1241, + 1235, + 1234 + ]], + [[ + 1250, + 1255, + 1226 + ]], + [[ + 1234, + 1236, + 1297 + ]], + [[ + 1257, + 1152, + 432 + ]], + [[ + 1260, + 1259, + 1152 + ]], + [[ + 1274, + 1275, + 1142 + ]], + [[ + 1274, + 1143, + 1275 + ]], + [[ + 1159, + 1176, + 1303 + ]], + [[ + 1282, + 1243, + 1177 + ]], + [[ + 1223, + 1228, + 1225 + ]], + [[ + 1222, + 1115, + 1228 + ]], + [[ + 1231, + 1264, + 1266 + ]], + [[ + 1169, + 1262, + 1233 + ]], + [[ + 1300, + 1299, + 1114 + ]], + [[ + 1287, + 1304, + 1256 + ]], + [[ + 1132, + 1299, + 1287 + ]], + [[ + 1300, + 1254, + 1299 + ]], + [[ + 1297, + 1114, + 1113 + ]], + [[ + 1236, + 1300, + 1114 + ]], + [[ + 1305, + 1306, + 1252 + ]], + [[ + 1252, + 1215, + 1272 + ]], + [[ + 1278, + 1128, + 1122 + ]], + [[ + 1126, + 1120, + 1119 + ]], + [[ + 1128, + 1116, + 1118 + ]], + [[ + 1304, + 1287, + 1116 + ]], + [[ + 1232, + 1233, + 1163 + ]], + [[ + 1232, + 1296, + 1233 + ]], + [[ + 1210, + 1307, + 1271 + ]], + [[ + 1209, + 1308, + 1307 + ]], + [[ + 1309, + 1200, + 1199 + ]], + [[ + 1310, + 1193, + 1200 + ]], + [[ + 1234, + 1297, + 1255 + ]], + [[ + 1236, + 1114, + 1297 + ]], + [[ + 1172, + 1265, + 1175 + ]], + [[ + 1311, + 1296, + 1264 + ]], + [[ + 1142, + 1241, + 1234 + ]], + [[ + 1240, + 1235, + 1241 + ]], + [[ + 1289, + 1108, + 1269 + ]], + [[ + 1141, + 1109, + 1108 + ]], + [[ + 1138, + 1107, + 1109 + ]], + [[ + 1246, + 1108, + 1107 + ]], + [[ + 1308, + 1208, + 1148 + ]], + [[ + 1273, + 433, + 1239 + ]], + [[ + 1208, + 1210, + 1239 + ]], + [[ + 1239, + 1210, + 1273 + ]], + [[ + 1130, + 1128, + 1118 + ]], + [[ + 1119, + 1122, + 1128 + ]], + [[ + 1293, + 1312, + 1294 + ]], + [[ + 1293, + 1186, + 1292 + ]], + [[ + 1259, + 1268, + 1152 + ]], + [[ + 1259, + 415, + 1268 + ]], + [[ + 1131, + 1276, + 1249 + ]], + [[ + 1131, + 1130, + 1276 + ]], + [[ + 1302, + 1179, + 1258 + ]], + [[ + 1312, + 1293, + 1292 + ]], + [[ + 1179, + 1292, + 1180 + ]], + [[ + 1179, + 1312, + 1292 + ]], + [[ + 1184, + 1242, + 1292 + ]], + [[ + 1286, + 1285, + 1242 + ]], + [[ + 1184, + 1177, + 1243 + ]], + [[ + 1178, + 1175, + 1177 + ]], + [[ + 1146, + 1145, + 1188 + ]], + [[ + 1147, + 1186, + 1145 + ]], + [[ + 1200, + 1193, + 1201 + ]], + [[ + 1294, + 1312, + 1302 + ]], + [[ + 1257, + 1194, + 1260 + ]], + [[ + 1302, + 1312, + 1179 + ]], + [[ + 1247, + 1270, + 1144 + ]], + [[ + 1141, + 1289, + 1270 + ]], + [[ + 1274, + 1250, + 1220 + ]], + [[ + 1234, + 1255, + 1250 + ]], + [[ + 1307, + 1210, + 1209 + ]], + [[ + 1190, + 433, + 1210 + ]], + [[ + 1307, + 1272, + 1271 + ]], + [[ + 1307, + 1183, + 1252 + ]], + [[ + 1307, + 1252, + 1272 + ]], + [[ + 1207, + 1206, + 1213 + ]], + [[ + 1306, + 1251, + 1252 + ]], + [[ + 1215, + 1214, + 1272 + ]], + [[ + 1207, + 1215, + 1251 + ]], + [[ + 1207, + 1213, + 1214 + ]], + [[ + 1305, + 1182, + 1313 + ]], + [[ + 1313, + 1314, + 1306 + ]], + [[ + 1171, + 1170, + 1265 + ]], + [[ + 1176, + 1175, + 1170 + ]], + [[ + 1303, + 1261, + 1159 + ]], + [[ + 1303, + 1176, + 1261 + ]], + [[ + 1165, + 1166, + 1231 + ]], + [[ + 1261, + 1170, + 1167 + ]], + [[ + 1157, + 1166, + 1165 + ]], + [[ + 1261, + 1167, + 1166 + ]], + [[ + 1176, + 1282, + 1177 + ]], + [[ + 1243, + 1284, + 1244 + ]], + [[ + 1153, + 1244, + 412 + ]], + [[ + 1243, + 1282, + 1281 + ]], + [[ + 1214, + 1189, + 1272 + ]], + [[ + 1201, + 1193, + 1189 + ]], + [[ + 1265, + 1311, + 1171 + ]], + [[ + 1265, + 1154, + 1311 + ]], + [[ + 1193, + 1302, + 1194 + ]], + [[ + 1193, + 1310, + 1302 + ]], + [[ + 1115, + 1111, + 1110 + ]], + [[ + 1227, + 1230, + 1111 + ]], + [[ + 1166, + 1168, + 1231 + ]], + [[ + 1167, + 1171, + 1168 + ]], + [[ + 1192, + 1191, + 1291 + ]], + [[ + 1151, + 1178, + 1191 + ]], + [[ + 1196, + 1192, + 1291 + ]], + [[ + 1186, + 1147, + 1192 + ]], + [[ + 1184, + 1196, + 1291 + ]], + [[ + 1184, + 1292, + 1196 + ]], + [[ + 1114, + 1132, + 1115 + ]], + [[ + 1114, + 1299, + 1132 + ]], + [[ + 1304, + 1278, + 1133 + ]], + [[ + 1116, + 1128, + 1278 + ]], + [[ + 414, + 1181, + 1180 + ]], + [[ + 414, + 1259, + 1181 + ]], + [[ + 1306, + 1314, + 1251 + ]], + [[ + 1205, + 1250, + 1298 + ]], + [[ + 1205, + 1298, + 1206 + ]], + [[ + 1226, + 1206, + 1298 + ]], + [[ + 1313, + 1219, + 1314 + ]], + [[ + 1314, + 1219, + 1205 + ]], + [[ + 1296, + 1311, + 1169 + ]], + [[ + 1174, + 1155, + 1154 + ]], + [[ + 1315, + 1129, + 1280 + ]], + [[ + 1315, + 1126, + 1129 + ]], + [[ + 1313, + 1182, + 1149 + ]], + [[ + 1313, + 1306, + 1305 + ]], + [[ + 1183, + 1305, + 1252 + ]], + [[ + 1183, + 1182, + 1305 + ]], + [[ + 1261, + 1157, + 1159 + ]], + [[ + 1164, + 1158, + 1157 + ]], + [[ + 1183, + 1308, + 1148 + ]], + [[ + 1183, + 1307, + 1308 + ]], + [[ + 1148, + 1208, + 1239 + ]], + [[ + 1308, + 1209, + 1208 + ]], + [[ + 1294, + 1309, + 1199 + ]], + [[ + 1294, + 1302, + 1309 + ]], + [[ + 1309, + 1310, + 1200 + ]], + [[ + 1309, + 1302, + 1310 + ]], + [[ + 1286, + 1267, + 1243 + ]], + [[ + 1242, + 1184, + 1267 + ]], + [[ + 1135, + 1301, + 1127 + ]], + [[ + 1238, + 1279, + 1288 + ]], + [[ + 1288, + 1301, + 1238 + ]], + [[ + 1288, + 1127, + 1301 + ]], + [[ + 1135, + 1134, + 1301 + ]], + [[ + 1136, + 1269, + 1237 + ]], + [[ + 1137, + 1237, + 1246 + ]], + [[ + 1134, + 1136, + 1237 + ]], + [[ + 1195, + 1257, + 432 + ]], + [[ + 1260, + 1152, + 1257 + ]], + [[ + 1171, + 1311, + 1264 + ]], + [[ + 1154, + 1169, + 1311 + ]], + [[ + 1159, + 1281, + 1283 + ]], + [[ + 1284, + 1243, + 1281 + ]], + [[ + 1159, + 1284, + 1281 + ]], + [[ + 1159, + 412, + 1284 + ]], + [[ + 1278, + 1304, + 1116 + ]], + [[ + 1133, + 1256, + 1304 + ]], + [[ + 1205, + 1219, + 1250 + ]], + [[ + 1313, + 1149, + 1219 + ]], + [[ + 1207, + 1314, + 1205 + ]], + [[ + 1207, + 1251, + 1314 + ]], + [[ + 1144, + 1254, + 1300 + ]], + [[ + 1253, + 1290, + 1254 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b221e7287-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef505549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1316, + 1317, + 1318 + ]], + [[ + 1319, + 1320, + 1321 + ]], + [[ + 1322, + 1323, + 1324 + ]], + [[ + 1325, + 1326, + 1327 + ]], + [[ + 1328, + 1329, + 1330 + ]], + [[ + 1331, + 1332, + 1333 + ]], + [[ + 1334, + 1335, + 1336 + ]], + [[ + 1337, + 1338, + 1339 + ]], + [[ + 1340, + 1341, + 1342 + ]], + [[ + 1343, + 1337, + 1344 + ]], + [[ + 1340, + 1345, + 1341 + ]], + [[ + 1345, + 1346, + 1341 + ]], + [[ + 1345, + 1347, + 1346 + ]], + [[ + 1348, + 1347, + 1343 + ]], + [[ + 1349, + 1350, + 1351 + ]], + [[ + 1335, + 1352, + 1353 + ]], + [[ + 1354, + 1355, + 1356 + ]], + [[ + 1357, + 1358, + 1359 + ]], + [[ + 1360, + 1361, + 1362 + ]], + [[ + 1363, + 1364, + 1365 + ]], + [[ + 1359, + 1358, + 1366 + ]], + [[ + 1336, + 1335, + 1367 + ]], + [[ + 1368, + 1369, + 1370 + ]], + [[ + 1371, + 1372, + 1373 + ]], + [[ + 1374, + 1375, + 1376 + ]], + [[ + 1375, + 1377, + 1376 + ]], + [[ + 1368, + 1378, + 1379 + ]], + [[ + 1380, + 1381, + 1382 + ]], + [[ + 1383, + 1384, + 1385 + ]], + [[ + 1386, + 1387, + 1388 + ]], + [[ + 1386, + 1388, + 1389 + ]], + [[ + 1390, + 1391, + 1392 + ]], + [[ + 1387, + 1393, + 1388 + ]], + [[ + 1394, + 1395, + 1396 + ]], + [[ + 1397, + 1398, + 1393 + ]], + [[ + 1399, + 1381, + 1400 + ]], + [[ + 1392, + 1401, + 1398 + ]], + [[ + 1402, + 1403, + 1323 + ]], + [[ + 1404, + 1405, + 1406 + ]], + [[ + 1407, + 1408, + 1409 + ]], + [[ + 1410, + 1411, + 1409 + ]], + [[ + 1412, + 1404, + 1413 + ]], + [[ + 1414, + 1415, + 1416 + ]], + [[ + 1415, + 1417, + 1416 + ]], + [[ + 1418, + 1419, + 1420 + ]], + [[ + 1421, + 1422, + 1423 + ]], + [[ + 1424, + 673, + 674 + ]], + [[ + 1425, + 1426, + 1427 + ]], + [[ + 1428, + 1318, + 1429 + ]], + [[ + 1430, + 1431, + 1432 + ]], + [[ + 1433, + 1434, + 1435 + ]], + [[ + 1436, + 699, + 700 + ]], + [[ + 1437, + 1438, + 1439 + ]], + [[ + 610, + 575, + 1440 + ]], + [[ + 1441, + 1438, + 1442 + ]], + [[ + 1443, + 1375, + 1444 + ]], + [[ + 1445, + 1446, + 1447 + ]], + [[ + 1448, + 1449, + 1450 + ]], + [[ + 1377, + 1324, + 1323 + ]], + [[ + 1377, + 1451, + 1324 + ]], + [[ + 1377, + 1375, + 1451 + ]], + [[ + 1402, + 1452, + 1403 + ]], + [[ + 1453, + 575, + 577 + ]], + [[ + 1454, + 1455, + 1456 + ]], + [[ + 1457, + 1458, + 1459 + ]], + [[ + 1460, + 1461, + 1425 + ]], + [[ + 1462, + 1463, + 1457 + ]], + [[ + 1464, + 1465, + 1466 + ]], + [[ + 1467, + 1468, + 1402 + ]], + [[ + 1469, + 1470, + 1471 + ]], + [[ + 1472, + 1473, + 1474 + ]], + [[ + 1362, + 1475, + 1476 + ]], + [[ + 1477, + 1478, + 1455 + ]], + [[ + 1479, + 1465, + 1478 + ]], + [[ + 1454, + 1480, + 1467 + ]], + [[ + 1481, + 1482, + 1483 + ]], + [[ + 1484, + 1485, + 1486 + ]], + [[ + 1487, + 1488, + 1489 + ]], + [[ + 1485, + 1490, + 1486 + ]], + [[ + 1491, + 1492, + 1493 + ]], + [[ + 1373, + 1494, + 1495 + ]], + [[ + 1495, + 1353, + 1372 + ]], + [[ + 1371, + 1373, + 1495 + ]], + [[ + 1367, + 1353, + 1496 + ]], + [[ + 1371, + 1495, + 1372 + ]], + [[ + 1496, + 1353, + 1495 + ]], + [[ + 1495, + 1494, + 1497 + ]], + [[ + 1484, + 1486, + 1498 + ]], + [[ + 1499, + 1411, + 1413 + ]], + [[ + 1410, + 1500, + 1501 + ]], + [[ + 1502, + 1373, + 1372 + ]], + [[ + 1502, + 1503, + 1329 + ]], + [[ + 1504, + 1505, + 1506 + ]], + [[ + 1481, + 1507, + 607 + ]], + [[ + 1508, + 1509, + 1510 + ]], + [[ + 1511, + 1455, + 1512 + ]], + [[ + 1513, + 1514, + 1515 + ]], + [[ + 1516, + 1491, + 1488 + ]], + [[ + 1440, + 1517, + 1518 + ]], + [[ + 1510, + 1509, + 1519 + ]], + [[ + 1520, + 1433, + 1521 + ]], + [[ + 1522, + 1523, + 1400 + ]], + [[ + 1449, + 1524, + 1471 + ]], + [[ + 1370, + 1369, + 1525 + ]], + [[ + 1526, + 1498, + 1486 + ]], + [[ + 1527, + 1469, + 1370 + ]], + [[ + 1528, + 1529, + 1463 + ]], + [[ + 1468, + 1467, + 1530 + ]], + [[ + 1468, + 1529, + 1438 + ]], + [[ + 1468, + 1463, + 1529 + ]], + [[ + 1444, + 1531, + 1532 + ]], + [[ + 1533, + 1534, + 1535 + ]], + [[ + 1329, + 1536, + 1330 + ]], + [[ + 1537, + 1538, + 1539 + ]], + [[ + 1503, + 1540, + 1325 + ]], + [[ + 1541, + 1542, + 1320 + ]], + [[ + 1543, + 1336, + 1329 + ]], + [[ + 1543, + 1329, + 1328 + ]], + [[ + 1330, + 1503, + 1485 + ]], + [[ + 1320, + 1319, + 1544 + ]], + [[ + 1506, + 1545, + 1509 + ]], + [[ + 1519, + 1360, + 1362 + ]], + [[ + 1459, + 1454, + 1504 + ]], + [[ + 1546, + 1547, + 1456 + ]], + [[ + 1504, + 1547, + 1505 + ]], + [[ + 1547, + 1454, + 1456 + ]], + [[ + 1494, + 1336, + 1548 + ]], + [[ + 1549, + 1550, + 1334 + ]], + [[ + 1551, + 1552, + 1518 + ]], + [[ + 1553, + 1529, + 1528 + ]], + [[ + 1554, + 1555, + 1436 + ]], + [[ + 577, + 699, + 1555 + ]], + [[ + 1556, + 1347, + 1350 + ]], + [[ + 1556, + 1346, + 1347 + ]], + [[ + 1557, + 1546, + 1456 + ]], + [[ + 1456, + 1455, + 1558 + ]], + [[ + 1559, + 1560, + 1407 + ]], + [[ + 1561, + 1562, + 1563 + ]], + [[ + 1446, + 1464, + 1322 + ]], + [[ + 1512, + 1465, + 1464 + ]], + [[ + 1564, + 1558, + 1565 + ]], + [[ + 1511, + 1512, + 1566 + ]], + [[ + 1567, + 1568, + 1569 + ]], + [[ + 1570, + 1506, + 1509 + ]], + [[ + 1358, + 1344, + 1339 + ]], + [[ + 1358, + 1357, + 1344 + ]], + [[ + 1329, + 1503, + 1536 + ]], + [[ + 1571, + 1538, + 1572 + ]], + [[ + 1447, + 1487, + 1445 + ]], + [[ + 1512, + 1445, + 1566 + ]], + [[ + 1573, + 1504, + 1506 + ]], + [[ + 1459, + 1574, + 1454 + ]], + [[ + 1548, + 1336, + 1367 + ]], + [[ + 1494, + 1329, + 1336 + ]], + [[ + 1373, + 1329, + 1494 + ]], + [[ + 1373, + 1502, + 1329 + ]], + [[ + 1575, + 1576, + 1317 + ]], + [[ + 1577, + 1424, + 674 + ]], + [[ + 1501, + 1413, + 1411 + ]], + [[ + 1578, + 1579, + 1580 + ]], + [[ + 1411, + 1581, + 1409 + ]], + [[ + 1417, + 1420, + 1416 + ]], + [[ + 1582, + 1362, + 1476 + ]], + [[ + 1519, + 1583, + 1360 + ]], + [[ + 1584, + 1585, + 1586 + ]], + [[ + 1515, + 1583, + 1519 + ]], + [[ + 1585, + 1483, + 1586 + ]], + [[ + 1508, + 1587, + 1570 + ]], + [[ + 1470, + 1469, + 1588 + ]], + [[ + 1353, + 1367, + 1335 + ]], + [[ + 1428, + 1429, + 1589 + ]], + [[ + 1385, + 1590, + 1591 + ]], + [[ + 1382, + 1384, + 1429 + ]], + [[ + 1385, + 1591, + 1592 + ]], + [[ + 1446, + 1322, + 1324 + ]], + [[ + 1466, + 1323, + 1322 + ]], + [[ + 1593, + 1594, + 1595 + ]], + [[ + 1578, + 1596, + 1579 + ]], + [[ + 672, + 1595, + 700 + ]], + [[ + 672, + 673, + 1597 + ]], + [[ + 1598, + 1394, + 1396 + ]], + [[ + 1318, + 1428, + 1433 + ]], + [[ + 1520, + 1434, + 1433 + ]], + [[ + 1599, + 1578, + 1404 + ]], + [[ + 1600, + 1430, + 1426 + ]], + [[ + 1437, + 1403, + 1452 + ]], + [[ + 1601, + 1602, + 1430 + ]], + [[ + 1427, + 1437, + 1603 + ]], + [[ + 1554, + 1436, + 700 + ]], + [[ + 1555, + 699, + 1436 + ]], + [[ + 1446, + 1445, + 1464 + ]], + [[ + 1512, + 1464, + 1445 + ]], + [[ + 1604, + 1350, + 1348 + ]], + [[ + 1605, + 1349, + 1606 + ]], + [[ + 1607, + 1608, + 1609 + ]], + [[ + 1609, + 1608, + 1472 + ]], + [[ + 1332, + 1610, + 1611 + ]], + [[ + 1442, + 1438, + 1529 + ]], + [[ + 1612, + 1613, + 1527 + ]], + [[ + 1348, + 1344, + 1357 + ]], + [[ + 1509, + 1515, + 1519 + ]], + [[ + 1509, + 1545, + 1513 + ]], + [[ + 1614, + 1615, + 1453 + ]], + [[ + 1616, + 1617, + 1472 + ]], + [[ + 1524, + 1448, + 1618 + ]], + [[ + 1531, + 1619, + 1620 + ]], + [[ + 1353, + 1352, + 1621 + ]], + [[ + 1358, + 1622, + 1366 + ]], + [[ + 1623, + 1345, + 1340 + ]], + [[ + 1623, + 1624, + 1345 + ]], + [[ + 1625, + 1626, + 1627 + ]], + [[ + 1532, + 1628, + 1629 + ]], + [[ + 1507, + 1544, + 1630 + ]], + [[ + 1631, + 1326, + 1540 + ]], + [[ + 1630, + 1544, + 1319 + ]], + [[ + 1542, + 1541, + 1632 + ]], + [[ + 1555, + 1554, + 577 + ]], + [[ + 1431, + 1633, + 1634 + ]], + [[ + 1635, + 1636, + 1637 + ]], + [[ + 1584, + 1510, + 1519 + ]], + [[ + 607, + 1638, + 1474 + ]], + [[ + 1639, + 1637, + 1640 + ]], + [[ + 1380, + 1400, + 1381 + ]], + [[ + 1591, + 1403, + 1592 + ]], + [[ + 1477, + 1467, + 1402 + ]], + [[ + 1477, + 1454, + 1467 + ]], + [[ + 1476, + 1475, + 1641 + ]], + [[ + 1362, + 1361, + 1475 + ]], + [[ + 1361, + 1360, + 1642 + ]], + [[ + 1558, + 1511, + 1489 + ]], + [[ + 1643, + 1479, + 1478 + ]], + [[ + 1323, + 1465, + 1479 + ]], + [[ + 1564, + 1456, + 1558 + ]], + [[ + 1454, + 1574, + 1480 + ]], + [[ + 577, + 1644, + 1614 + ]], + [[ + 1645, + 1461, + 1617 + ]], + [[ + 1646, + 1482, + 1647 + ]], + [[ + 1648, + 1649, + 1482 + ]], + [[ + 1338, + 1623, + 1650 + ]], + [[ + 1338, + 1624, + 1623 + ]], + [[ + 1361, + 1641, + 1475 + ]], + [[ + 1491, + 1565, + 1488 + ]], + [[ + 1429, + 1522, + 1382 + ]], + [[ + 1399, + 1391, + 1381 + ]], + [[ + 1651, + 1652, + 1653 + ]], + [[ + 1654, + 1563, + 1655 + ]], + [[ + 1415, + 1560, + 1559 + ]], + [[ + 1407, + 1581, + 1417 + ]], + [[ + 1581, + 1411, + 1499 + ]], + [[ + 1656, + 1657, + 1658 + ]], + [[ + 1328, + 1330, + 1485 + ]], + [[ + 1536, + 1503, + 1330 + ]], + [[ + 1413, + 1404, + 1578 + ]], + [[ + 1412, + 1501, + 1656 + ]], + [[ + 1406, + 1405, + 1659 + ]], + [[ + 1576, + 1395, + 1317 + ]], + [[ + 1474, + 1647, + 607 + ]], + [[ + 1482, + 1649, + 1483 + ]], + [[ + 1660, + 1592, + 1403 + ]], + [[ + 1385, + 1384, + 1590 + ]], + [[ + 1661, + 1662, + 1602 + ]], + [[ + 1521, + 1589, + 1662 + ]], + [[ + 1663, + 1442, + 1664 + ]], + [[ + 1638, + 1472, + 1474 + ]], + [[ + 1327, + 1476, + 1665 + ]], + [[ + 1493, + 1564, + 1565 + ]], + [[ + 1666, + 1447, + 1667 + ]], + [[ + 1668, + 1669, + 1670 + ]], + [[ + 1671, + 1572, + 1631 + ]], + [[ + 1321, + 1630, + 1319 + ]], + [[ + 1540, + 1671, + 1631 + ]], + [[ + 1538, + 1502, + 1539 + ]], + [[ + 1507, + 1672, + 1541 + ]], + [[ + 1537, + 1539, + 1321 + ]], + [[ + 1538, + 1537, + 1572 + ]], + [[ + 1673, + 1674, + 1675 + ]], + [[ + 1327, + 1326, + 1582 + ]], + [[ + 1673, + 1676, + 1537 + ]], + [[ + 1674, + 1673, + 1321 + ]], + [[ + 1631, + 1572, + 1537 + ]], + [[ + 1632, + 1674, + 1542 + ]], + [[ + 1539, + 1630, + 1321 + ]], + [[ + 1344, + 1337, + 1339 + ]], + [[ + 1343, + 1347, + 1345 + ]], + [[ + 1468, + 1677, + 1463 + ]], + [[ + 1678, + 1574, + 1677 + ]], + [[ + 1427, + 1602, + 1679 + ]], + [[ + 1662, + 1385, + 1679 + ]], + [[ + 1625, + 1666, + 1667 + ]], + [[ + 1626, + 1444, + 1627 + ]], + [[ + 1497, + 1496, + 1495 + ]], + [[ + 1497, + 1548, + 1496 + ]], + [[ + 1635, + 1680, + 1636 + ]], + [[ + 1611, + 1664, + 1462 + ]], + [[ + 1542, + 1674, + 1321 + ]], + [[ + 1676, + 1326, + 1631 + ]], + [[ + 1647, + 1481, + 607 + ]], + [[ + 1647, + 1482, + 1481 + ]], + [[ + 1681, + 1660, + 1403 + ]], + [[ + 1681, + 1682, + 1660 + ]], + [[ + 1509, + 1513, + 1515 + ]], + [[ + 1545, + 1557, + 1514 + ]], + [[ + 1407, + 1560, + 1408 + ]], + [[ + 1651, + 1416, + 1683 + ]], + [[ + 1684, + 1575, + 1317 + ]], + [[ + 1404, + 1406, + 1576 + ]], + [[ + 1468, + 1530, + 1677 + ]], + [[ + 1467, + 1480, + 1530 + ]], + [[ + 1581, + 1407, + 1409 + ]], + [[ + 1581, + 1685, + 1417 + ]], + [[ + 1490, + 1327, + 1526 + ]], + [[ + 1326, + 1675, + 1582 + ]], + [[ + 1486, + 1490, + 1526 + ]], + [[ + 1485, + 1503, + 1325 + ]], + [[ + 1582, + 1476, + 1327 + ]], + [[ + 1641, + 1493, + 1476 + ]], + [[ + 1667, + 1446, + 1324 + ]], + [[ + 1667, + 1447, + 1446 + ]], + [[ + 1686, + 1607, + 1609 + ]], + [[ + 1440, + 575, + 1517 + ]], + [[ + 675, + 1577, + 674 + ]], + [[ + 1419, + 1687, + 1420 + ]], + [[ + 1530, + 1678, + 1677 + ]], + [[ + 1530, + 1480, + 1678 + ]], + [[ + 1351, + 1355, + 1354 + ]], + [[ + 1356, + 1688, + 1354 + ]], + [[ + 1640, + 1474, + 1689 + ]], + [[ + 1638, + 607, + 609 + ]], + [[ + 1411, + 1410, + 1501 + ]], + [[ + 1408, + 1560, + 1690 + ]], + [[ + 1691, + 1661, + 1692 + ]], + [[ + 1693, + 1634, + 1633 + ]], + [[ + 1570, + 1573, + 1506 + ]], + [[ + 1333, + 1694, + 1573 + ]], + [[ + 1570, + 1587, + 1695 + ]], + [[ + 1611, + 1696, + 1664 + ]], + [[ + 1697, + 1370, + 1469 + ]], + [[ + 1370, + 1525, + 1612 + ]], + [[ + 1550, + 1698, + 1699 + ]], + [[ + 1700, + 1701, + 1702 + ]], + [[ + 1352, + 1335, + 1703 + ]], + [[ + 1704, + 1526, + 1665 + ]], + [[ + 1705, + 1706, + 1702 + ]], + [[ + 1669, + 1668, + 1625 + ]], + [[ + 1699, + 1703, + 1550 + ]], + [[ + 1471, + 1524, + 1697 + ]], + [[ + 1707, + 1708, + 1699 + ]], + [[ + 1708, + 1588, + 1621 + ]], + [[ + 1328, + 1709, + 1543 + ]], + [[ + 1703, + 1335, + 1334 + ]], + [[ + 1709, + 1549, + 1543 + ]], + [[ + 1334, + 1336, + 1543 + ]], + [[ + 1470, + 1710, + 1471 + ]], + [[ + 1697, + 1711, + 1370 + ]], + [[ + 1621, + 1527, + 1359 + ]], + [[ + 1588, + 1469, + 1527 + ]], + [[ + 1359, + 1527, + 1357 + ]], + [[ + 1359, + 1366, + 1621 + ]], + [[ + 1435, + 1693, + 1712 + ]], + [[ + 673, + 1424, + 1577 + ]], + [[ + 1481, + 1483, + 1507 + ]], + [[ + 1567, + 1636, + 1568 + ]], + [[ + 1713, + 1444, + 1626 + ]], + [[ + 1629, + 1714, + 1524 + ]], + [[ + 1507, + 1541, + 1544 + ]], + [[ + 1542, + 1321, + 1320 + ]], + [[ + 1462, + 1528, + 1463 + ]], + [[ + 1664, + 1442, + 1553 + ]], + [[ + 1664, + 1553, + 1528 + ]], + [[ + 1442, + 1529, + 1553 + ]], + [[ + 1679, + 1385, + 1592 + ]], + [[ + 1383, + 1429, + 1384 + ]], + [[ + 1589, + 1383, + 1385 + ]], + [[ + 1589, + 1429, + 1383 + ]], + [[ + 1627, + 1444, + 1715 + ]], + [[ + 1713, + 1443, + 1444 + ]], + [[ + 1438, + 1441, + 1439 + ]], + [[ + 1461, + 1552, + 1425 + ]], + [[ + 1483, + 1716, + 1507 + ]], + [[ + 1717, + 1718, + 1582 + ]], + [[ + 1544, + 1541, + 1320 + ]], + [[ + 1672, + 1632, + 1541 + ]], + [[ + 1323, + 1477, + 1402 + ]], + [[ + 1643, + 1478, + 1477 + ]], + [[ + 1621, + 1352, + 1708 + ]], + [[ + 1621, + 1622, + 1353 + ]], + [[ + 1451, + 1443, + 1713 + ]], + [[ + 1451, + 1375, + 1443 + ]], + [[ + 1407, + 1417, + 1559 + ]], + [[ + 1580, + 1719, + 1720 + ]], + [[ + 1655, + 1562, + 1690 + ]], + [[ + 1561, + 1500, + 1721 + ]], + [[ + 1450, + 1627, + 1448 + ]], + [[ + 1618, + 1629, + 1524 + ]], + [[ + 1722, + 1441, + 1442 + ]], + [[ + 1439, + 1603, + 1437 + ]], + [[ + 1659, + 1658, + 1657 + ]], + [[ + 1723, + 1404, + 1656 + ]], + [[ + 1723, + 1656, + 1658 + ]], + [[ + 1501, + 1657, + 1656 + ]], + [[ + 1345, + 1624, + 1343 + ]], + [[ + 1338, + 1337, + 1624 + ]], + [[ + 1431, + 1634, + 1724 + ]], + [[ + 1691, + 1521, + 1662 + ]], + [[ + 1689, + 1474, + 1473 + ]], + [[ + 1646, + 1647, + 1474 + ]], + [[ + 1564, + 1725, + 1726 + ]], + [[ + 1642, + 1641, + 1361 + ]], + [[ + 1725, + 1642, + 1360 + ]], + [[ + 1493, + 1641, + 1642 + ]], + [[ + 1714, + 1697, + 1524 + ]], + [[ + 1711, + 1368, + 1370 + ]], + [[ + 1671, + 1571, + 1572 + ]], + [[ + 1671, + 1540, + 1571 + ]], + [[ + 1649, + 1586, + 1483 + ]], + [[ + 1727, + 1510, + 1584 + ]], + [[ + 1628, + 1728, + 1714 + ]], + [[ + 1620, + 1619, + 1369 + ]], + [[ + 1410, + 1721, + 1500 + ]], + [[ + 1410, + 1409, + 1408 + ]], + [[ + 1729, + 1597, + 673 + ]], + [[ + 1594, + 1693, + 1730 + ]], + [[ + 1597, + 1593, + 672 + ]], + [[ + 1594, + 1712, + 1693 + ]], + [[ + 1435, + 1731, + 1316 + ]], + [[ + 1432, + 1692, + 1601 + ]], + [[ + 1577, + 1732, + 673 + ]], + [[ + 1595, + 1733, + 700 + ]], + [[ + 1597, + 1729, + 1712 + ]], + [[ + 1316, + 1684, + 1317 + ]], + [[ + 1731, + 1734, + 1316 + ]], + [[ + 1735, + 1421, + 1423 + ]], + [[ + 1575, + 1599, + 1404 + ]], + [[ + 1596, + 1422, + 1421 + ]], + [[ + 1520, + 1724, + 1634 + ]], + [[ + 1520, + 1521, + 1691 + ]], + [[ + 1378, + 1728, + 1379 + ]], + [[ + 1531, + 1375, + 1619 + ]], + [[ + 1736, + 1435, + 1712 + ]], + [[ + 1434, + 1520, + 1634 + ]], + [[ + 1633, + 1733, + 1730 + ]], + [[ + 1693, + 1434, + 1634 + ]], + [[ + 1368, + 1379, + 1369 + ]], + [[ + 1728, + 1628, + 1379 + ]], + [[ + 1558, + 1737, + 1511 + ]], + [[ + 1558, + 1455, + 1737 + ]], + [[ + 1425, + 1439, + 1738 + ]], + [[ + 1722, + 1609, + 1472 + ]], + [[ + 1460, + 1617, + 1461 + ]], + [[ + 1460, + 1722, + 1617 + ]], + [[ + 1645, + 1616, + 1518 + ]], + [[ + 1739, + 610, + 1440 + ]], + [[ + 1323, + 1643, + 1477 + ]], + [[ + 1323, + 1479, + 1643 + ]], + [[ + 1365, + 1604, + 1740 + ]], + [[ + 1350, + 1347, + 1348 + ]], + [[ + 1357, + 1740, + 1348 + ]], + [[ + 1365, + 1364, + 1351 + ]], + [[ + 1741, + 1740, + 1357 + ]], + [[ + 1604, + 1348, + 1740 + ]], + [[ + 1534, + 1364, + 1363 + ]], + [[ + 1364, + 1356, + 1351 + ]], + [[ + 1632, + 1675, + 1674 + ]], + [[ + 1632, + 1672, + 1742 + ]], + [[ + 1604, + 1351, + 1350 + ]], + [[ + 1604, + 1365, + 1351 + ]], + [[ + 1743, + 1744, + 1615 + ]], + [[ + 1426, + 1425, + 1552 + ]], + [[ + 1659, + 1723, + 1658 + ]], + [[ + 1405, + 1404, + 1723 + ]], + [[ + 1707, + 1745, + 1470 + ]], + [[ + 1707, + 1701, + 1745 + ]], + [[ + 1654, + 1655, + 1652 + ]], + [[ + 1563, + 1562, + 1655 + ]], + [[ + 1651, + 1654, + 1652 + ]], + [[ + 1683, + 1563, + 1654 + ]], + [[ + 1390, + 1392, + 1398 + ]], + [[ + 1746, + 1401, + 1392 + ]], + [[ + 1638, + 1739, + 1440 + ]], + [[ + 609, + 610, + 1739 + ]], + [[ + 1382, + 1590, + 1384 + ]], + [[ + 1382, + 1381, + 1591 + ]], + [[ + 1382, + 1591, + 1590 + ]], + [[ + 1381, + 1403, + 1591 + ]], + [[ + 1633, + 1554, + 700 + ]], + [[ + 1747, + 1644, + 1554 + ]], + [[ + 1334, + 1550, + 1703 + ]], + [[ + 1550, + 1549, + 1748 + ]], + [[ + 1458, + 1677, + 1574 + ]], + [[ + 1678, + 1480, + 1574 + ]], + [[ + 1749, + 1459, + 1504 + ]], + [[ + 1458, + 1463, + 1677 + ]], + [[ + 1749, + 1457, + 1459 + ]], + [[ + 1611, + 1610, + 1750 + ]], + [[ + 1694, + 1749, + 1504 + ]], + [[ + 1332, + 1457, + 1749 + ]], + [[ + 1568, + 1750, + 1695 + ]], + [[ + 1695, + 1573, + 1570 + ]], + [[ + 1742, + 1582, + 1675 + ]], + [[ + 1672, + 1507, + 1716 + ]], + [[ + 1687, + 1419, + 1751 + ]], + [[ + 1751, + 1752, + 1577 + ]], + [[ + 1711, + 1378, + 1368 + ]], + [[ + 1714, + 1728, + 1378 + ]], + [[ + 1449, + 1448, + 1524 + ]], + [[ + 1627, + 1715, + 1618 + ]], + [[ + 1492, + 1665, + 1476 + ]], + [[ + 1753, + 1669, + 1450 + ]], + [[ + 1449, + 1754, + 1755 + ]], + [[ + 1487, + 1489, + 1445 + ]], + [[ + 1702, + 1706, + 1704 + ]], + [[ + 1526, + 1327, + 1665 + ]], + [[ + 1707, + 1705, + 1701 + ]], + [[ + 1498, + 1526, + 1706 + ]], + [[ + 1698, + 1748, + 1705 + ]], + [[ + 1498, + 1706, + 1705 + ]], + [[ + 1702, + 1704, + 1756 + ]], + [[ + 1706, + 1526, + 1704 + ]], + [[ + 1705, + 1748, + 1498 + ]], + [[ + 1705, + 1707, + 1698 + ]], + [[ + 1627, + 1618, + 1448 + ]], + [[ + 1629, + 1628, + 1714 + ]], + [[ + 1459, + 1458, + 1574 + ]], + [[ + 1457, + 1463, + 1458 + ]], + [[ + 1332, + 1611, + 1457 + ]], + [[ + 1664, + 1528, + 1462 + ]], + [[ + 1663, + 1609, + 1442 + ]], + [[ + 1439, + 1425, + 1603 + ]], + [[ + 1650, + 1340, + 1342 + ]], + [[ + 1650, + 1623, + 1340 + ]], + [[ + 1499, + 1578, + 1685 + ]], + [[ + 1757, + 1734, + 1596 + ]], + [[ + 1757, + 1596, + 1578 + ]], + [[ + 1734, + 1732, + 1596 + ]], + [[ + 1607, + 1686, + 1696 + ]], + [[ + 1686, + 1663, + 1696 + ]], + [[ + 1432, + 1601, + 1430 + ]], + [[ + 1692, + 1724, + 1691 + ]], + [[ + 1427, + 1681, + 1437 + ]], + [[ + 1682, + 1592, + 1660 + ]], + [[ + 1715, + 1532, + 1618 + ]], + [[ + 1531, + 1444, + 1375 + ]], + [[ + 1731, + 1435, + 1736 + ]], + [[ + 1434, + 1693, + 1435 + ]], + [[ + 1689, + 1607, + 1639 + ]], + [[ + 1689, + 1608, + 1607 + ]], + [[ + 1720, + 1719, + 1418 + ]], + [[ + 1758, + 1735, + 1423 + ]], + [[ + 1719, + 1579, + 1418 + ]], + [[ + 1596, + 1421, + 1579 + ]], + [[ + 1321, + 1673, + 1537 + ]], + [[ + 1675, + 1326, + 1676 + ]], + [[ + 1537, + 1676, + 1631 + ]], + [[ + 1673, + 1675, + 1676 + ]], + [[ + 1655, + 1690, + 1652 + ]], + [[ + 1562, + 1408, + 1690 + ]], + [[ + 1560, + 1415, + 1690 + ]], + [[ + 1559, + 1417, + 1415 + ]], + [[ + 1714, + 1711, + 1697 + ]], + [[ + 1714, + 1378, + 1711 + ]], + [[ + 1725, + 1564, + 1493 + ]], + [[ + 1726, + 1456, + 1564 + ]], + [[ + 1642, + 1725, + 1493 + ]], + [[ + 1726, + 1583, + 1456 + ]], + [[ + 1360, + 1726, + 1725 + ]], + [[ + 1360, + 1583, + 1726 + ]], + [[ + 1357, + 1527, + 1613 + ]], + [[ + 1527, + 1370, + 1612 + ]], + [[ + 1740, + 1741, + 1363 + ]], + [[ + 1613, + 1525, + 1741 + ]], + [[ + 1740, + 1363, + 1365 + ]], + [[ + 1741, + 1525, + 1363 + ]], + [[ + 1745, + 1754, + 1470 + ]], + [[ + 1745, + 1701, + 1754 + ]], + [[ + 1710, + 1754, + 1449 + ]], + [[ + 1710, + 1470, + 1754 + ]], + [[ + 1640, + 1689, + 1639 + ]], + [[ + 1473, + 1608, + 1689 + ]], + [[ + 1713, + 1625, + 1667 + ]], + [[ + 1713, + 1626, + 1625 + ]], + [[ + 1351, + 1356, + 1355 + ]], + [[ + 1364, + 1688, + 1356 + ]], + [[ + 1759, + 1331, + 1573 + ]], + [[ + 1332, + 1749, + 1694 + ]], + [[ + 1573, + 1694, + 1504 + ]], + [[ + 1333, + 1332, + 1694 + ]], + [[ + 1573, + 1331, + 1333 + ]], + [[ + 1759, + 1610, + 1760 + ]], + [[ + 1598, + 1522, + 1429 + ]], + [[ + 1523, + 1401, + 1399 + ]], + [[ + 1598, + 1523, + 1522 + ]], + [[ + 1598, + 1401, + 1523 + ]], + [[ + 1500, + 1561, + 1563 + ]], + [[ + 1721, + 1562, + 1561 + ]], + [[ + 1583, + 1557, + 1456 + ]], + [[ + 1557, + 1545, + 1505 + ]], + [[ + 1460, + 1738, + 1722 + ]], + [[ + 1460, + 1425, + 1738 + ]], + [[ + 1751, + 1577, + 675 + ]], + [[ + 1752, + 1422, + 1596 + ]], + [[ + 1729, + 1732, + 1731 + ]], + [[ + 1752, + 1596, + 1732 + ]], + [[ + 1516, + 1756, + 1491 + ]], + [[ + 1489, + 1566, + 1445 + ]], + [[ + 1670, + 1761, + 1516 + ]], + [[ + 1492, + 1476, + 1493 + ]], + [[ + 1762, + 1743, + 1615 + ]], + [[ + 1633, + 700, + 1733 + ]], + [[ + 1615, + 1744, + 1552 + ]], + [[ + 1743, + 1633, + 1431 + ]], + [[ + 1747, + 1633, + 1743 + ]], + [[ + 1747, + 1554, + 1633 + ]], + [[ + 1406, + 1659, + 1657 + ]], + [[ + 1405, + 1723, + 1659 + ]], + [[ + 1470, + 1708, + 1707 + ]], + [[ + 1352, + 1703, + 1699 + ]], + [[ + 1739, + 1638, + 609 + ]], + [[ + 1440, + 1472, + 1638 + ]], + [[ + 1632, + 1742, + 1675 + ]], + [[ + 1585, + 1716, + 1483 + ]], + [[ + 1763, + 1717, + 1742 + ]], + [[ + 1718, + 1362, + 1582 + ]], + [[ + 1722, + 1472, + 1617 + ]], + [[ + 1608, + 1473, + 1472 + ]], + [[ + 1523, + 1399, + 1400 + ]], + [[ + 1401, + 1746, + 1399 + ]], + [[ + 1597, + 1594, + 1593 + ]], + [[ + 1693, + 1633, + 1730 + ]], + [[ + 1595, + 1594, + 1730 + ]], + [[ + 1597, + 1712, + 1594 + ]], + [[ + 1607, + 1696, + 1680 + ]], + [[ + 1686, + 1764, + 1663 + ]], + [[ + 1760, + 1610, + 1332 + ]], + [[ + 1508, + 1570, + 1509 + ]], + [[ + 1759, + 1695, + 1610 + ]], + [[ + 1759, + 1573, + 1695 + ]], + [[ + 1331, + 1760, + 1332 + ]], + [[ + 1331, + 1759, + 1760 + ]], + [[ + 1695, + 1750, + 1610 + ]], + [[ + 1680, + 1696, + 1611 + ]], + [[ + 1457, + 1611, + 1462 + ]], + [[ + 1750, + 1680, + 1611 + ]], + [[ + 1601, + 1661, + 1602 + ]], + [[ + 1601, + 1692, + 1661 + ]], + [[ + 1644, + 1762, + 1615 + ]], + [[ + 1615, + 1551, + 1453 + ]], + [[ + 1600, + 1431, + 1430 + ]], + [[ + 1724, + 1692, + 1432 + ]], + [[ + 1690, + 1653, + 1652 + ]], + [[ + 1690, + 1415, + 1414 + ]], + [[ + 1654, + 1651, + 1683 + ]], + [[ + 1653, + 1414, + 1651 + ]], + [[ + 1651, + 1414, + 1416 + ]], + [[ + 1653, + 1690, + 1414 + ]], + [[ + 1661, + 1691, + 1662 + ]], + [[ + 1724, + 1520, + 1691 + ]], + [[ + 1455, + 1454, + 1477 + ]], + [[ + 1547, + 1504, + 1454 + ]], + [[ + 1722, + 1439, + 1441 + ]], + [[ + 1722, + 1738, + 1439 + ]], + [[ + 1753, + 1761, + 1670 + ]], + [[ + 1701, + 1705, + 1702 + ]], + [[ + 1668, + 1516, + 1488 + ]], + [[ + 1761, + 1702, + 1516 + ]], + [[ + 1516, + 1702, + 1756 + ]], + [[ + 1761, + 1755, + 1702 + ]], + [[ + 1669, + 1753, + 1670 + ]], + [[ + 1755, + 1754, + 1700 + ]], + [[ + 1579, + 1765, + 1418 + ]], + [[ + 1579, + 1421, + 1735 + ]], + [[ + 1599, + 1757, + 1578 + ]], + [[ + 1599, + 1684, + 1757 + ]], + [[ + 1751, + 1758, + 1423 + ]], + [[ + 1765, + 1579, + 1735 + ]], + [[ + 1687, + 1751, + 675 + ]], + [[ + 1752, + 1732, + 1577 + ]], + [[ + 1640, + 1646, + 1474 + ]], + [[ + 1640, + 1648, + 1646 + ]], + [[ + 1357, + 1613, + 1741 + ]], + [[ + 1612, + 1525, + 1613 + ]], + [[ + 1516, + 1668, + 1670 + ]], + [[ + 1625, + 1627, + 1669 + ]], + [[ + 1487, + 1668, + 1488 + ]], + [[ + 1666, + 1625, + 1668 + ]], + [[ + 1755, + 1700, + 1702 + ]], + [[ + 1754, + 1701, + 1700 + ]], + [[ + 1593, + 1595, + 672 + ]], + [[ + 1730, + 1733, + 1595 + ]], + [[ + 1442, + 1609, + 1722 + ]], + [[ + 1764, + 1686, + 1609 + ]], + [[ + 575, + 1453, + 1517 + ]], + [[ + 1615, + 1552, + 1551 + ]], + [[ + 1614, + 1453, + 577 + ]], + [[ + 1551, + 1517, + 1453 + ]], + [[ + 1325, + 1540, + 1326 + ]], + [[ + 1503, + 1571, + 1540 + ]], + [[ + 1519, + 1718, + 1717 + ]], + [[ + 1519, + 1362, + 1718 + ]], + [[ + 1527, + 1621, + 1588 + ]], + [[ + 1366, + 1622, + 1621 + ]], + [[ + 1727, + 1584, + 1586 + ]], + [[ + 1519, + 1717, + 1584 + ]], + [[ + 1649, + 1567, + 1586 + ]], + [[ + 1569, + 1508, + 1727 + ]], + [[ + 1489, + 1511, + 1566 + ]], + [[ + 1737, + 1455, + 1511 + ]], + [[ + 1696, + 1663, + 1664 + ]], + [[ + 1764, + 1609, + 1663 + ]], + [[ + 1618, + 1532, + 1629 + ]], + [[ + 1715, + 1444, + 1532 + ]], + [[ + 1549, + 1709, + 1498 + ]], + [[ + 1328, + 1485, + 1484 + ]], + [[ + 1748, + 1549, + 1498 + ]], + [[ + 1334, + 1543, + 1549 + ]], + [[ + 1484, + 1709, + 1328 + ]], + [[ + 1484, + 1498, + 1709 + ]], + [[ + 1396, + 1406, + 1657 + ]], + [[ + 1766, + 1395, + 1576 + ]], + [[ + 1666, + 1487, + 1447 + ]], + [[ + 1666, + 1668, + 1487 + ]], + [[ + 1464, + 1466, + 1322 + ]], + [[ + 1465, + 1323, + 1466 + ]], + [[ + 1387, + 1390, + 1398 + ]], + [[ + 1387, + 1391, + 1390 + ]], + [[ + 1765, + 1419, + 1418 + ]], + [[ + 1765, + 1735, + 1758 + ]], + [[ + 1419, + 1758, + 1751 + ]], + [[ + 1419, + 1765, + 1758 + ]], + [[ + 1614, + 1644, + 1615 + ]], + [[ + 1747, + 1743, + 1762 + ]], + [[ + 1554, + 1644, + 577 + ]], + [[ + 1747, + 1762, + 1644 + ]], + [[ + 1712, + 1729, + 1736 + ]], + [[ + 673, + 1732, + 1729 + ]], + [[ + 1379, + 1620, + 1369 + ]], + [[ + 1379, + 1628, + 1620 + ]], + [[ + 1628, + 1531, + 1620 + ]], + [[ + 1628, + 1532, + 1531 + ]], + [[ + 1522, + 1380, + 1382 + ]], + [[ + 1522, + 1400, + 1380 + ]], + [[ + 1503, + 1538, + 1571 + ]], + [[ + 1503, + 1502, + 1538 + ]], + [[ + 1506, + 1505, + 1545 + ]], + [[ + 1547, + 1546, + 1505 + ]], + [[ + 1546, + 1557, + 1505 + ]], + [[ + 1514, + 1513, + 1545 + ]], + [[ + 1583, + 1514, + 1557 + ]], + [[ + 1583, + 1515, + 1514 + ]], + [[ + 1551, + 1518, + 1517 + ]], + [[ + 1552, + 1461, + 1518 + ]], + [[ + 1616, + 1645, + 1617 + ]], + [[ + 1518, + 1461, + 1645 + ]], + [[ + 1440, + 1616, + 1472 + ]], + [[ + 1440, + 1518, + 1616 + ]], + [[ + 1432, + 1431, + 1724 + ]], + [[ + 1744, + 1743, + 1431 + ]], + [[ + 1767, + 1755, + 1761 + ]], + [[ + 1767, + 1449, + 1755 + ]], + [[ + 1704, + 1492, + 1756 + ]], + [[ + 1493, + 1565, + 1491 + ]], + [[ + 1756, + 1492, + 1491 + ]], + [[ + 1704, + 1665, + 1492 + ]], + [[ + 1699, + 1708, + 1352 + ]], + [[ + 1470, + 1588, + 1708 + ]], + [[ + 1404, + 1412, + 1656 + ]], + [[ + 1413, + 1501, + 1412 + ]], + [[ + 1420, + 1720, + 1418 + ]], + [[ + 1580, + 1579, + 1719 + ]], + [[ + 1417, + 1720, + 1420 + ]], + [[ + 1417, + 1685, + 1720 + ]], + [[ + 1685, + 1580, + 1720 + ]], + [[ + 1685, + 1578, + 1580 + ]], + [[ + 1391, + 1746, + 1392 + ]], + [[ + 1391, + 1399, + 1746 + ]], + [[ + 1423, + 1752, + 1751 + ]], + [[ + 1423, + 1422, + 1752 + ]], + [[ + 1565, + 1489, + 1488 + ]], + [[ + 1565, + 1558, + 1489 + ]], + [[ + 1490, + 1325, + 1327 + ]], + [[ + 1490, + 1485, + 1325 + ]], + [[ + 1581, + 1499, + 1685 + ]], + [[ + 1413, + 1578, + 1499 + ]], + [[ + 1727, + 1567, + 1569 + ]], + [[ + 1680, + 1750, + 1568 + ]], + [[ + 1568, + 1587, + 1569 + ]], + [[ + 1568, + 1695, + 1587 + ]], + [[ + 1727, + 1508, + 1510 + ]], + [[ + 1569, + 1587, + 1508 + ]], + [[ + 1637, + 1636, + 1649 + ]], + [[ + 1680, + 1568, + 1636 + ]], + [[ + 1586, + 1567, + 1727 + ]], + [[ + 1649, + 1636, + 1567 + ]], + [[ + 1767, + 1450, + 1449 + ]], + [[ + 1669, + 1627, + 1450 + ]], + [[ + 1767, + 1753, + 1450 + ]], + [[ + 1767, + 1761, + 1753 + ]], + [[ + 1435, + 1316, + 1433 + ]], + [[ + 1684, + 1599, + 1575 + ]], + [[ + 1734, + 1684, + 1316 + ]], + [[ + 1734, + 1757, + 1684 + ]], + [[ + 1662, + 1589, + 1385 + ]], + [[ + 1521, + 1433, + 1428 + ]], + [[ + 1521, + 1428, + 1589 + ]], + [[ + 1433, + 1316, + 1318 + ]], + [[ + 1598, + 1318, + 1317 + ]], + [[ + 1598, + 1429, + 1318 + ]], + [[ + 1469, + 1471, + 1697 + ]], + [[ + 1710, + 1449, + 1471 + ]], + [[ + 1349, + 1605, + 1556 + ]], + [[ + 1606, + 1346, + 1605 + ]], + [[ + 1349, + 1556, + 1350 + ]], + [[ + 1605, + 1346, + 1556 + ]], + [[ + 1425, + 1427, + 1603 + ]], + [[ + 1430, + 1602, + 1427 + ]], + [[ + 1427, + 1679, + 1681 + ]], + [[ + 1602, + 1662, + 1679 + ]], + [[ + 1679, + 1682, + 1681 + ]], + [[ + 1679, + 1592, + 1682 + ]], + [[ + 1496, + 1548, + 1367 + ]], + [[ + 1497, + 1494, + 1548 + ]], + [[ + 1729, + 1731, + 1736 + ]], + [[ + 1732, + 1734, + 1731 + ]], + [[ + 1534, + 1533, + 1364 + ]], + [[ + 1535, + 1364, + 1533 + ]], + [[ + 1525, + 1534, + 1363 + ]], + [[ + 1525, + 1535, + 1534 + ]], + [[ + 1387, + 1397, + 1393 + ]], + [[ + 1387, + 1398, + 1397 + ]], + [[ + 1744, + 1600, + 1552 + ]], + [[ + 1430, + 1427, + 1426 + ]], + [[ + 1337, + 1343, + 1624 + ]], + [[ + 1344, + 1348, + 1343 + ]], + [[ + 1699, + 1698, + 1707 + ]], + [[ + 1550, + 1748, + 1698 + ]], + [[ + 1404, + 1576, + 1575 + ]], + [[ + 1766, + 1396, + 1395 + ]], + [[ + 1406, + 1766, + 1576 + ]], + [[ + 1406, + 1396, + 1766 + ]], + [[ + 1354, + 1349, + 1351 + ]], + [[ + 1354, + 1606, + 1349 + ]], + [[ + 1721, + 1408, + 1562 + ]], + [[ + 1721, + 1410, + 1408 + ]], + [[ + 1648, + 1637, + 1649 + ]], + [[ + 1639, + 1607, + 1635 + ]], + [[ + 1639, + 1635, + 1637 + ]], + [[ + 1607, + 1680, + 1635 + ]], + [[ + 1317, + 1394, + 1598 + ]], + [[ + 1317, + 1395, + 1394 + ]], + [[ + 1716, + 1585, + 1672 + ]], + [[ + 1717, + 1582, + 1742 + ]], + [[ + 1763, + 1585, + 1584 + ]], + [[ + 1742, + 1672, + 1585 + ]], + [[ + 1585, + 1763, + 1742 + ]], + [[ + 1584, + 1717, + 1763 + ]], + [[ + 1552, + 1600, + 1426 + ]], + [[ + 1744, + 1431, + 1600 + ]], + [[ + 1646, + 1648, + 1482 + ]], + [[ + 1640, + 1637, + 1648 + ]], + [[ + 1438, + 1437, + 1452 + ]], + [[ + 1681, + 1403, + 1437 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b22204791-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef814749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1768, + 1769, + 1770 + ]], + [[ + 1771, + 1772, + 1773 + ]], + [[ + 1774, + 1775, + 1776 + ]], + [[ + 1777, + 1778, + 1779 + ]], + [[ + 1780, + 1781, + 1782 + ]], + [[ + 1783, + 1784, + 1778 + ]], + [[ + 1785, + 1783, + 1778 + ]], + [[ + 1786, + 1787, + 1783 + ]], + [[ + 1788, + 1789, + 1790 + ]], + [[ + 1791, + 1786, + 1783 + ]], + [[ + 1792, + 1793, + 1786 + ]], + [[ + 1794, + 1792, + 1786 + ]], + [[ + 1795, + 1796, + 1792 + ]], + [[ + 1794, + 1797, + 1792 + ]], + [[ + 1795, + 1792, + 1797 + ]], + [[ + 1798, + 1799, + 1800 + ]], + [[ + 1791, + 1794, + 1786 + ]], + [[ + 1801, + 1797, + 1794 + ]], + [[ + 1802, + 1794, + 1791 + ]], + [[ + 1785, + 1791, + 1783 + ]], + [[ + 1803, + 1802, + 1791 + ]], + [[ + 1804, + 1785, + 1805 + ]], + [[ + 1798, + 1800, + 1806 + ]], + [[ + 1807, + 1808, + 1799 + ]], + [[ + 1799, + 1808, + 1800 + ]], + [[ + 1809, + 1810, + 1774 + ]], + [[ + 1811, + 1809, + 1812 + ]], + [[ + 1813, + 1814, + 1815 + ]], + [[ + 1812, + 1816, + 1811 + ]], + [[ + 1812, + 1815, + 1816 + ]], + [[ + 1812, + 1813, + 1815 + ]], + [[ + 1813, + 1817, + 1814 + ]], + [[ + 1818, + 1772, + 1817 + ]], + [[ + 1771, + 1770, + 1772 + ]], + [[ + 1771, + 1768, + 1770 + ]], + [[ + 1768, + 1819, + 1769 + ]], + [[ + 1820, + 1821, + 1822 + ]], + [[ + 1820, + 1782, + 1823 + ]], + [[ + 1821, + 1820, + 1823 + ]], + [[ + 1823, + 1782, + 1781 + ]], + [[ + 1788, + 1780, + 1782 + ]], + [[ + 1788, + 1790, + 1780 + ]], + [[ + 1824, + 1825, + 1789 + ]], + [[ + 1826, + 1825, + 1824 + ]], + [[ + 1827, + 1789, + 1788 + ]], + [[ + 1776, + 1775, + 1828 + ]], + [[ + 1810, + 1828, + 1775 + ]], + [[ + 1776, + 1829, + 1808 + ]], + [[ + 1776, + 1828, + 1829 + ]], + [[ + 1812, + 1774, + 1830 + ]], + [[ + 1830, + 1774, + 1776 + ]], + [[ + 1820, + 1819, + 1771 + ]], + [[ + 1819, + 1822, + 1769 + ]], + [[ + 1827, + 1824, + 1789 + ]], + [[ + 1827, + 1831, + 1824 + ]], + [[ + 1807, + 1799, + 1779 + ]], + [[ + 1800, + 1808, + 1828 + ]], + [[ + 1832, + 1804, + 1777 + ]], + [[ + 1785, + 1778, + 1777 + ]], + [[ + 1798, + 1832, + 1779 + ]], + [[ + 1805, + 1785, + 1777 + ]], + [[ + 1773, + 1818, + 1817 + ]], + [[ + 1773, + 1772, + 1818 + ]], + [[ + 1809, + 1774, + 1812 + ]], + [[ + 1810, + 1775, + 1774 + ]], + [[ + 1777, + 1804, + 1805 + ]], + [[ + 1806, + 1785, + 1804 + ]], + [[ + 1830, + 1807, + 1779 + ]], + [[ + 1808, + 1829, + 1828 + ]], + [[ + 1830, + 1808, + 1807 + ]], + [[ + 1830, + 1776, + 1808 + ]], + [[ + 1771, + 1819, + 1768 + ]], + [[ + 1820, + 1822, + 1819 + ]], + [[ + 1773, + 1813, + 1812 + ]], + [[ + 1773, + 1817, + 1813 + ]], + [[ + 1831, + 1826, + 1824 + ]], + [[ + 1831, + 1825, + 1826 + ]], + [[ + 1832, + 1798, + 1806 + ]], + [[ + 1779, + 1799, + 1798 + ]], + [[ + 1804, + 1832, + 1806 + ]], + [[ + 1777, + 1779, + 1832 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b22206eb6-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cfa49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1833, + 1834, + 1835 + ]], + [[ + 1836, + 1837, + 1838 + ]], + [[ + 1839, + 174, + 1840 + ]], + [[ + 1841, + 1842, + 172 + ]], + [[ + 1837, + 172, + 1843 + ]], + [[ + 1844, + 1845, + 1843 + ]], + [[ + 1846, + 172, + 173 + ]], + [[ + 1847, + 1848, + 1846 + ]], + [[ + 1849, + 1850, + 1851 + ]], + [[ + 1846, + 1843, + 172 + ]], + [[ + 1834, + 173, + 1835 + ]], + [[ + 1852, + 1853, + 1835 + ]], + [[ + 1835, + 173, + 1840 + ]], + [[ + 173, + 1839, + 1840 + ]], + [[ + 173, + 174, + 1839 + ]], + [[ + 1845, + 1837, + 1843 + ]], + [[ + 1845, + 1838, + 1837 + ]], + [[ + 1854, + 1853, + 1852 + ]], + [[ + 1855, + 1856, + 1857 + ]], + [[ + 1848, + 1858, + 1846 + ]], + [[ + 1846, + 1858, + 1843 + ]], + [[ + 1835, + 1853, + 1833 + ]], + [[ + 1849, + 1851, + 1846 + ]], + [[ + 1855, + 1857, + 1849 + ]], + [[ + 1851, + 1847, + 1846 + ]], + [[ + 1833, + 1846, + 173 + ]], + [[ + 1849, + 1857, + 1850 + ]], + [[ + 172, + 1836, + 1841 + ]], + [[ + 172, + 1837, + 1836 + ]], + [[ + 1859, + 1850, + 1857 + ]], + [[ + 1859, + 1851, + 1850 + ]], + [[ + 1834, + 1833, + 173 + ]], + [[ + 1853, + 1846, + 1833 + ]], + [[ + 1853, + 1849, + 1846 + ]], + [[ + 1856, + 1860, + 1859 + ]], + [[ + 1860, + 1854, + 1852 + ]], + [[ + 1860, + 1853, + 1854 + ]], + [[ + 1853, + 1855, + 1849 + ]], + [[ + 1853, + 1860, + 1855 + ]], + [[ + 1857, + 1856, + 1859 + ]], + [[ + 1855, + 1860, + 1856 + ]], + [[ + 1858, + 1844, + 1843 + ]], + [[ + 1858, + 1845, + 1844 + ]], + [[ + 1838, + 1841, + 1836 + ]], + [[ + 1838, + 1842, + 1841 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222095f0-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cb249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1861, + 1862, + 1863 + ]], + [[ + 1864, + 1865, + 1866 + ]], + [[ + 1867, + 1868, + 1865 + ]], + [[ + 1869, + 1870, + 1871 + ]], + [[ + 1872, + 1873, + 1870 + ]], + [[ + 1874, + 1875, + 1876 + ]], + [[ + 1877, + 1869, + 1871 + ]], + [[ + 1863, + 1873, + 1867 + ]], + [[ + 1863, + 1878, + 1873 + ]], + [[ + 1862, + 1879, + 1878 + ]], + [[ + 1868, + 1875, + 1874 + ]], + [[ + 1867, + 1873, + 1876 + ]], + [[ + 1876, + 1869, + 1877 + ]], + [[ + 1872, + 1870, + 1869 + ]], + [[ + 1867, + 1864, + 1863 + ]], + [[ + 1866, + 1863, + 1864 + ]], + [[ + 1874, + 1876, + 1877 + ]], + [[ + 1875, + 1867, + 1876 + ]], + [[ + 1861, + 1863, + 1866 + ]], + [[ + 1862, + 1878, + 1863 + ]], + [[ + 1876, + 1872, + 1869 + ]], + [[ + 1876, + 1873, + 1872 + ]], + [[ + 1864, + 1867, + 1865 + ]], + [[ + 1875, + 1868, + 1867 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2221a6f3-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef660449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1880, + 1881, + 1882 + ]], + [[ + 1880, + 1882, + 1883 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2221ce24-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2015-01-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.35f5257403d44b2da79b759adfef6652", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1884, + 1885, + 1886 + ]], + [[ + 1884, + 1886, + 1887 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2222df3c-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef8a4249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1888, + 1889, + 1890 + ]], + [[ + 1888, + 1891, + 1892 + ]], + [[ + 1888, + 1893, + 1891 + ]], + [[ + 1888, + 1894, + 1893 + ]], + [[ + 1888, + 1890, + 1894 + ]], + [[ + 1889, + 1895, + 1890 + ]], + [[ + 1889, + 1896, + 1895 + ]], + [[ + 1889, + 1897, + 1896 + ]], + [[ + 1898, + 1899, + 1889 + ]], + [[ + 1900, + 1898, + 1889 + ]], + [[ + 1901, + 1900, + 1889 + ]], + [[ + 1902, + 1901, + 1889 + ]], + [[ + 1902, + 1903, + 1901 + ]], + [[ + 1902, + 1904, + 1903 + ]], + [[ + 1902, + 1905, + 1904 + ]], + [[ + 1902, + 1906, + 1905 + ]], + [[ + 1907, + 1908, + 1902 + ]], + [[ + 1902, + 1908, + 1909 + ]], + [[ + 1910, + 1907, + 1911 + ]], + [[ + 1911, + 1907, + 1912 + ]], + [[ + 1912, + 1907, + 1902 + ]], + [[ + 1913, + 1914, + 1912 + ]], + [[ + 1915, + 1913, + 1912 + ]], + [[ + 1912, + 1916, + 1917 + ]], + [[ + 1918, + 1919, + 1912 + ]], + [[ + 1920, + 1918, + 1912 + ]], + [[ + 1921, + 1920, + 1912 + ]], + [[ + 1922, + 1921, + 1917 + ]], + [[ + 1917, + 1916, + 1923 + ]], + [[ + 1924, + 1917, + 1923 + ]], + [[ + 1925, + 1926, + 1917 + ]], + [[ + 1927, + 1925, + 1917 + ]], + [[ + 1928, + 1927, + 1917 + ]], + [[ + 1923, + 122, + 123 + ]], + [[ + 1916, + 121, + 122 + ]], + [[ + 1888, + 1892, + 120 + ]], + [[ + 121, + 1888, + 120 + ]], + [[ + 1924, + 1923, + 123 + ]], + [[ + 1924, + 1928, + 1917 + ]], + [[ + 1923, + 1916, + 122 + ]], + [[ + 1907, + 1929, + 1908 + ]], + [[ + 1912, + 1914, + 1911 + ]], + [[ + 1910, + 1929, + 1907 + ]], + [[ + 1902, + 1889, + 1916 + ]], + [[ + 1899, + 1897, + 1889 + ]], + [[ + 1912, + 1902, + 1916 + ]], + [[ + 1909, + 1906, + 1902 + ]], + [[ + 1916, + 1888, + 121 + ]], + [[ + 1916, + 1889, + 1888 + ]], + [[ + 1930, + 1917, + 1926 + ]], + [[ + 1930, + 1922, + 1917 + ]], + [[ + 1921, + 1912, + 1917 + ]], + [[ + 1919, + 1915, + 1912 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2223065e-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef501749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1931, + 1932, + 1933 + ]], + [[ + 1934, + 350, + 351 + ]], + [[ + 1935, + 347, + 348 + ]], + [[ + 347, + 1936, + 346 + ]], + [[ + 1937, + 1938, + 1939 + ]], + [[ + 1940, + 1941, + 1942 + ]], + [[ + 1943, + 1941, + 1940 + ]], + [[ + 1944, + 1945, + 1946 + ]], + [[ + 1947, + 1948, + 1949 + ]], + [[ + 1950, + 1951, + 1952 + ]], + [[ + 1953, + 1954, + 1955 + ]], + [[ + 1956, + 1957, + 1958 + ]], + [[ + 1959, + 1960, + 1961 + ]], + [[ + 1962, + 1963, + 1959 + ]], + [[ + 1964, + 1962, + 1959 + ]], + [[ + 1965, + 1961, + 1966 + ]], + [[ + 1967, + 1968, + 1969 + ]], + [[ + 1970, + 1971, + 1972 + ]], + [[ + 1973, + 1974, + 1975 + ]], + [[ + 1976, + 292, + 291 + ]], + [[ + 1959, + 1961, + 1977 + ]], + [[ + 1978, + 1979, + 1980 + ]], + [[ + 1981, + 1982, + 1983 + ]], + [[ + 1984, + 319, + 320 + ]], + [[ + 1985, + 304, + 1986 + ]], + [[ + 1987, + 1988, + 1989 + ]], + [[ + 1990, + 386, + 1989 + ]], + [[ + 386, + 1991, + 385 + ]], + [[ + 385, + 1991, + 383 + ]], + [[ + 383, + 1991, + 1992 + ]], + [[ + 1993, + 1994, + 1995 + ]], + [[ + 1996, + 1997, + 1998 + ]], + [[ + 1999, + 2000, + 2001 + ]], + [[ + 2002, + 2003, + 2000 + ]], + [[ + 2004, + 2005, + 2006 + ]], + [[ + 2007, + 2008, + 2009 + ]], + [[ + 2010, + 2011, + 2012 + ]], + [[ + 2013, + 2014, + 2015 + ]], + [[ + 1933, + 1932, + 2016 + ]], + [[ + 2011, + 2017, + 2018 + ]], + [[ + 2018, + 2019, + 2011 + ]], + [[ + 2019, + 2018, + 2020 + ]], + [[ + 2021, + 2022, + 2023 + ]], + [[ + 2024, + 2025, + 2026 + ]], + [[ + 2027, + 2028, + 352 + ]], + [[ + 2029, + 2030, + 2031 + ]], + [[ + 2032, + 2002, + 2033 + ]], + [[ + 1989, + 386, + 317 + ]], + [[ + 1980, + 2034, + 2035 + ]], + [[ + 2035, + 350, + 1980 + ]], + [[ + 2013, + 2036, + 2037 + ]], + [[ + 1985, + 1982, + 304 + ]], + [[ + 1963, + 2038, + 2039 + ]], + [[ + 2040, + 2041, + 2042 + ]], + [[ + 2043, + 2044, + 1983 + ]], + [[ + 2045, + 2046, + 2047 + ]], + [[ + 2007, + 2048, + 2008 + ]], + [[ + 2049, + 2050, + 2051 + ]], + [[ + 2052, + 2053, + 2054 + ]], + [[ + 2055, + 2056, + 2057 + ]], + [[ + 2020, + 2009, + 2058 + ]], + [[ + 2059, + 2060, + 350 + ]], + [[ + 2061, + 1974, + 2062 + ]], + [[ + 2063, + 2064, + 1960 + ]], + [[ + 2065, + 1975, + 2066 + ]], + [[ + 2067, + 292, + 1976 + ]], + [[ + 347, + 1947, + 2068 + ]], + [[ + 2069, + 2070, + 2071 + ]], + [[ + 2045, + 1994, + 1993 + ]], + [[ + 2072, + 2073, + 1982 + ]], + [[ + 2074, + 2071, + 2075 + ]], + [[ + 2076, + 2077, + 2078 + ]], + [[ + 2046, + 1984, + 320 + ]], + [[ + 2046, + 2045, + 1984 + ]], + [[ + 2079, + 2080, + 2081 + ]], + [[ + 2082, + 2081, + 2083 + ]], + [[ + 292, + 1986, + 304 + ]], + [[ + 2084, + 2052, + 2054 + ]], + [[ + 349, + 2085, + 2086 + ]], + [[ + 2057, + 1947, + 347 + ]], + [[ + 2087, + 2067, + 1976 + ]], + [[ + 2088, + 2052, + 2067 + ]], + [[ + 2060, + 2089, + 1978 + ]], + [[ + 2090, + 2091, + 2092 + ]], + [[ + 2093, + 2094, + 2001 + ]], + [[ + 2008, + 2095, + 2096 + ]], + [[ + 2097, + 2098, + 2099 + ]], + [[ + 2037, + 2100, + 2101 + ]], + [[ + 2102, + 2033, + 2103 + ]], + [[ + 2104, + 2097, + 2001 + ]], + [[ + 2105, + 2106, + 2107 + ]], + [[ + 2108, + 2109, + 2110 + ]], + [[ + 2111, + 2078, + 2112 + ]], + [[ + 2074, + 1945, + 1943 + ]], + [[ + 2113, + 2114, + 2075 + ]], + [[ + 1953, + 1950, + 1954 + ]], + [[ + 2028, + 2115, + 2116 + ]], + [[ + 1997, + 2117, + 2118 + ]], + [[ + 2088, + 2061, + 2062 + ]], + [[ + 2119, + 2062, + 1974 + ]], + [[ + 2067, + 2052, + 292 + ]], + [[ + 2088, + 2120, + 2052 + ]], + [[ + 2087, + 2061, + 2088 + ]], + [[ + 2121, + 1961, + 1969 + ]], + [[ + 293, + 2065, + 291 + ]], + [[ + 2065, + 1973, + 1975 + ]], + [[ + 2122, + 2123, + 1963 + ]], + [[ + 2124, + 2120, + 2088 + ]], + [[ + 2125, + 2041, + 2126 + ]], + [[ + 2040, + 2127, + 2120 + ]], + [[ + 1961, + 1960, + 1967 + ]], + [[ + 2042, + 2041, + 2125 + ]], + [[ + 2128, + 2129, + 352 + ]], + [[ + 2116, + 2130, + 2080 + ]], + [[ + 1935, + 2057, + 347 + ]], + [[ + 1958, + 1936, + 1956 + ]], + [[ + 2057, + 2056, + 2131 + ]], + [[ + 2132, + 2127, + 1948 + ]], + [[ + 2037, + 2110, + 2100 + ]], + [[ + 2133, + 2093, + 2109 + ]], + [[ + 2032, + 2033, + 2048 + ]], + [[ + 2134, + 2015, + 2135 + ]], + [[ + 2004, + 2136, + 2000 + ]], + [[ + 2032, + 2048, + 2007 + ]], + [[ + 2137, + 2138, + 2038 + ]], + [[ + 2139, + 2140, + 2042 + ]], + [[ + 1986, + 2054, + 1985 + ]], + [[ + 2084, + 292, + 2052 + ]], + [[ + 2141, + 1981, + 2142 + ]], + [[ + 2143, + 2053, + 2144 + ]], + [[ + 1979, + 2145, + 2034 + ]], + [[ + 349, + 350, + 2146 + ]], + [[ + 1991, + 2109, + 2093 + ]], + [[ + 1991, + 386, + 2109 + ]], + [[ + 2147, + 2137, + 2038 + ]], + [[ + 2148, + 2138, + 2137 + ]], + [[ + 2124, + 2149, + 2120 + ]], + [[ + 2039, + 2122, + 1963 + ]], + [[ + 2052, + 2120, + 2053 + ]], + [[ + 2088, + 2062, + 2124 + ]], + [[ + 2106, + 2150, + 2151 + ]], + [[ + 2097, + 1999, + 2001 + ]], + [[ + 2152, + 2153, + 2154 + ]], + [[ + 2006, + 2136, + 2004 + ]], + [[ + 320, + 2155, + 2047 + ]], + [[ + 2156, + 304, + 1982 + ]], + [[ + 2157, + 2156, + 2073 + ]], + [[ + 2158, + 304, + 2156 + ]], + [[ + 2086, + 2085, + 2057 + ]], + [[ + 2159, + 2146, + 1937 + ]], + [[ + 2160, + 2155, + 320 + ]], + [[ + 2161, + 2158, + 2162 + ]], + [[ + 2163, + 2164, + 2165 + ]], + [[ + 2166, + 1941, + 2165 + ]], + [[ + 2167, + 2168, + 2157 + ]], + [[ + 2158, + 302, + 304 + ]], + [[ + 2169, + 2170, + 2161 + ]], + [[ + 2169, + 2160, + 2170 + ]], + [[ + 2103, + 2033, + 2171 + ]], + [[ + 2103, + 2150, + 2134 + ]], + [[ + 2172, + 2144, + 2053 + ]], + [[ + 2173, + 1983, + 1982 + ]], + [[ + 1994, + 2073, + 2072 + ]], + [[ + 2110, + 2109, + 1990 + ]], + [[ + 2060, + 1978, + 350 + ]], + [[ + 2089, + 1979, + 1978 + ]], + [[ + 2174, + 2175, + 2051 + ]], + [[ + 2176, + 2011, + 2019 + ]], + [[ + 2177, + 2178, + 1952 + ]], + [[ + 2112, + 1954, + 1950 + ]], + [[ + 2153, + 2179, + 2154 + ]], + [[ + 2005, + 2004, + 1999 + ]], + [[ + 2139, + 2180, + 2069 + ]], + [[ + 2070, + 1951, + 2071 + ]], + [[ + 2181, + 1940, + 1942 + ]], + [[ + 2182, + 1948, + 2127 + ]], + [[ + 1968, + 2040, + 2120 + ]], + [[ + 1958, + 1943, + 1940 + ]], + [[ + 2183, + 2184, + 2154 + ]], + [[ + 2179, + 2153, + 2098 + ]], + [[ + 2010, + 2012, + 2016 + ]], + [[ + 2011, + 2176, + 2185 + ]], + [[ + 2147, + 1962, + 1964 + ]], + [[ + 2147, + 2038, + 1963 + ]], + [[ + 1998, + 2118, + 2020 + ]], + [[ + 2009, + 2017, + 2007 + ]], + [[ + 1996, + 2029, + 2031 + ]], + [[ + 2020, + 2186, + 2009 + ]], + [[ + 2009, + 2008, + 2058 + ]], + [[ + 2048, + 2102, + 2008 + ]], + [[ + 2013, + 2187, + 2014 + ]], + [[ + 2014, + 2135, + 2015 + ]], + [[ + 2003, + 2032, + 2007 + ]], + [[ + 2003, + 2002, + 2032 + ]], + [[ + 2066, + 1975, + 2061 + ]], + [[ + 2065, + 2188, + 1973 + ]], + [[ + 2189, + 1950, + 1952 + ]], + [[ + 2189, + 2112, + 1950 + ]], + [[ + 2129, + 2027, + 352 + ]], + [[ + 2129, + 2115, + 2027 + ]], + [[ + 1968, + 1967, + 2040 + ]], + [[ + 1960, + 2123, + 2063 + ]], + [[ + 2190, + 1995, + 1994 + ]], + [[ + 319, + 1984, + 1993 + ]], + [[ + 291, + 2191, + 1976 + ]], + [[ + 2192, + 2065, + 2191 + ]], + [[ + 2108, + 2133, + 2109 + ]], + [[ + 2104, + 2193, + 2179 + ]], + [[ + 2036, + 2108, + 2110 + ]], + [[ + 2036, + 2015, + 2107 + ]], + [[ + 1960, + 1959, + 2123 + ]], + [[ + 1962, + 2147, + 1963 + ]], + [[ + 2049, + 2194, + 2118 + ]], + [[ + 2175, + 2174, + 2176 + ]], + [[ + 2155, + 2169, + 2162 + ]], + [[ + 2170, + 302, + 2158 + ]], + [[ + 1987, + 1989, + 317 + ]], + [[ + 1988, + 1990, + 1989 + ]], + [[ + 2195, + 2118, + 2117 + ]], + [[ + 2186, + 2017, + 2009 + ]], + [[ + 320, + 2047, + 2046 + ]], + [[ + 2155, + 2196, + 2047 + ]], + [[ + 2026, + 2197, + 1934 + ]], + [[ + 2198, + 2030, + 2199 + ]], + [[ + 2200, + 2128, + 2023 + ]], + [[ + 2117, + 2021, + 2195 + ]], + [[ + 2199, + 2030, + 2029 + ]], + [[ + 2083, + 2201, + 2117 + ]], + [[ + 2028, + 2116, + 2202 + ]], + [[ + 2203, + 2197, + 2204 + ]], + [[ + 2119, + 2205, + 2062 + ]], + [[ + 2119, + 1961, + 2121 + ]], + [[ + 1964, + 1959, + 1977 + ]], + [[ + 1963, + 2123, + 1959 + ]], + [[ + 1999, + 2004, + 2000 + ]], + [[ + 1999, + 2097, + 2005 + ]], + [[ + 2086, + 2057, + 2206 + ]], + [[ + 2085, + 349, + 2055 + ]], + [[ + 2193, + 2207, + 2183 + ]], + [[ + 2154, + 2208, + 2152 + ]], + [[ + 2058, + 2096, + 2014 + ]], + [[ + 2058, + 2008, + 2096 + ]], + [[ + 2167, + 2073, + 1994 + ]], + [[ + 2156, + 1982, + 2073 + ]], + [[ + 2195, + 2050, + 2118 + ]], + [[ + 2051, + 2175, + 2049 + ]], + [[ + 2095, + 2102, + 2134 + ]], + [[ + 2102, + 2103, + 2134 + ]], + [[ + 2135, + 2095, + 2134 + ]], + [[ + 2048, + 2033, + 2102 + ]], + [[ + 2034, + 1938, + 2209 + ]], + [[ + 2085, + 2055, + 2057 + ]], + [[ + 2209, + 1938, + 1937 + ]], + [[ + 2210, + 2053, + 1971 + ]], + [[ + 2131, + 2056, + 1970 + ]], + [[ + 2127, + 2053, + 2120 + ]], + [[ + 2131, + 1970, + 2132 + ]], + [[ + 2172, + 1939, + 1938 + ]], + [[ + 2025, + 2116, + 2204 + ]], + [[ + 2130, + 2129, + 2211 + ]], + [[ + 2025, + 2202, + 2116 + ]], + [[ + 351, + 2028, + 2202 + ]], + [[ + 2136, + 2002, + 2000 + ]], + [[ + 2171, + 2033, + 2002 + ]], + [[ + 1947, + 2131, + 1948 + ]], + [[ + 1947, + 2057, + 2131 + ]], + [[ + 2146, + 2212, + 2213 + ]], + [[ + 2146, + 2034, + 2212 + ]], + [[ + 2175, + 2176, + 2194 + ]], + [[ + 2174, + 2185, + 2176 + ]], + [[ + 2162, + 2158, + 2156 + ]], + [[ + 2161, + 2170, + 2158 + ]], + [[ + 2164, + 2166, + 2165 + ]], + [[ + 2214, + 1941, + 2166 + ]], + [[ + 319, + 1987, + 317 + ]], + [[ + 319, + 1988, + 1987 + ]], + [[ + 2215, + 1983, + 2044 + ]], + [[ + 2072, + 2190, + 1994 + ]], + [[ + 2216, + 2044, + 2217 + ]], + [[ + 2092, + 2215, + 2044 + ]], + [[ + 2053, + 2143, + 2054 + ]], + [[ + 2217, + 2044, + 2043 + ]], + [[ + 2143, + 1985, + 2054 + ]], + [[ + 2143, + 2173, + 1985 + ]], + [[ + 2218, + 2215, + 2092 + ]], + [[ + 2141, + 2110, + 1981 + ]], + [[ + 2219, + 2220, + 2221 + ]], + [[ + 2220, + 2222, + 2164 + ]], + [[ + 2223, + 2196, + 2167 + ]], + [[ + 2155, + 2162, + 2168 + ]], + [[ + 2223, + 2167, + 1994 + ]], + [[ + 2157, + 2162, + 2156 + ]], + [[ + 2201, + 2022, + 2117 + ]], + [[ + 2200, + 2023, + 2022 + ]], + [[ + 2082, + 2083, + 2224 + ]], + [[ + 2130, + 2116, + 2115 + ]], + [[ + 2094, + 2104, + 2001 + ]], + [[ + 2133, + 2108, + 2193 + ]], + [[ + 2133, + 2193, + 2104 + ]], + [[ + 2108, + 2107, + 2207 + ]], + [[ + 2056, + 2225, + 1970 + ]], + [[ + 2172, + 1938, + 2145 + ]], + [[ + 351, + 2024, + 1934 + ]], + [[ + 2204, + 2197, + 2026 + ]], + [[ + 2113, + 2163, + 2165 + ]], + [[ + 2222, + 2214, + 2166 + ]], + [[ + 2226, + 2199, + 2029 + ]], + [[ + 2100, + 2218, + 2091 + ]], + [[ + 2183, + 2154, + 2179 + ]], + [[ + 2184, + 2208, + 2154 + ]], + [[ + 2122, + 2063, + 2123 + ]], + [[ + 2122, + 2125, + 2126 + ]], + [[ + 2199, + 2090, + 2089 + ]], + [[ + 2227, + 2228, + 2145 + ]], + [[ + 2146, + 2035, + 2034 + ]], + [[ + 2146, + 350, + 2035 + ]], + [[ + 2142, + 1981, + 1983 + ]], + [[ + 1995, + 1988, + 319 + ]], + [[ + 302, + 2160, + 320 + ]], + [[ + 302, + 2170, + 2160 + ]], + [[ + 2185, + 1931, + 2229 + ]], + [[ + 2174, + 1932, + 1931 + ]], + [[ + 2069, + 2074, + 2230 + ]], + [[ + 1945, + 1941, + 1943 + ]], + [[ + 2231, + 2068, + 2232 + ]], + [[ + 1956, + 347, + 2068 + ]], + [[ + 2233, + 2230, + 2234 + ]], + [[ + 2068, + 1947, + 1949 + ]], + [[ + 2232, + 1949, + 2231 + ]], + [[ + 2230, + 2074, + 1943 + ]], + [[ + 2235, + 2076, + 2236 + ]], + [[ + 2237, + 2164, + 2163 + ]], + [[ + 2159, + 2055, + 349 + ]], + [[ + 2159, + 1939, + 2055 + ]], + [[ + 2191, + 2066, + 1976 + ]], + [[ + 2191, + 2065, + 2066 + ]], + [[ + 293, + 2188, + 2065 + ]], + [[ + 293, + 2119, + 1973 + ]], + [[ + 2205, + 2121, + 2149 + ]], + [[ + 2205, + 2119, + 2121 + ]], + [[ + 2205, + 2124, + 2062 + ]], + [[ + 2205, + 2149, + 2124 + ]], + [[ + 2096, + 2095, + 2135 + ]], + [[ + 2008, + 2102, + 2095 + ]], + [[ + 2116, + 2203, + 2204 + ]], + [[ + 2081, + 2082, + 2203 + ]], + [[ + 2058, + 2014, + 2187 + ]], + [[ + 2096, + 2135, + 2014 + ]], + [[ + 2148, + 2139, + 2138 + ]], + [[ + 2148, + 2180, + 2139 + ]], + [[ + 291, + 2192, + 2191 + ]], + [[ + 291, + 2065, + 2192 + ]], + [[ + 2113, + 2075, + 2163 + ]], + [[ + 1955, + 1954, + 2078 + ]], + [[ + 2071, + 2077, + 2075 + ]], + [[ + 2076, + 2237, + 2163 + ]], + [[ + 2197, + 2030, + 2059 + ]], + [[ + 2199, + 2089, + 2198 + ]], + [[ + 2238, + 2030, + 2198 + ]], + [[ + 2197, + 2203, + 2082 + ]], + [[ + 2227, + 2239, + 2228 + ]], + [[ + 2092, + 2044, + 2216 + ]], + [[ + 2034, + 2145, + 1938 + ]], + [[ + 2228, + 2144, + 2145 + ]], + [[ + 2104, + 2098, + 2097 + ]], + [[ + 2104, + 2179, + 2098 + ]], + [[ + 2133, + 2094, + 2093 + ]], + [[ + 2133, + 2104, + 2094 + ]], + [[ + 1998, + 2020, + 2058 + ]], + [[ + 2118, + 2019, + 2020 + ]], + [[ + 2018, + 2186, + 2020 + ]], + [[ + 2018, + 2017, + 2186 + ]], + [[ + 2081, + 2080, + 2083 + ]], + [[ + 2211, + 2128, + 2240 + ]], + [[ + 2201, + 2200, + 2022 + ]], + [[ + 2240, + 2128, + 2200 + ]], + [[ + 2200, + 2241, + 2240 + ]], + [[ + 2081, + 2203, + 2079 + ]], + [[ + 1941, + 1946, + 2165 + ]], + [[ + 1945, + 2074, + 1946 + ]], + [[ + 1978, + 1980, + 350 + ]], + [[ + 1979, + 2034, + 1980 + ]], + [[ + 2242, + 2190, + 2072 + ]], + [[ + 1995, + 319, + 1993 + ]], + [[ + 1981, + 2072, + 1982 + ]], + [[ + 1981, + 2110, + 2242 + ]], + [[ + 1981, + 2242, + 2072 + ]], + [[ + 2110, + 1988, + 2242 + ]], + [[ + 2242, + 1995, + 2190 + ]], + [[ + 2242, + 1988, + 1995 + ]], + [[ + 2110, + 1990, + 1988 + ]], + [[ + 2109, + 386, + 1990 + ]], + [[ + 2036, + 2107, + 2108 + ]], + [[ + 2015, + 2105, + 2107 + ]], + [[ + 2080, + 2130, + 2240 + ]], + [[ + 2129, + 2128, + 2211 + ]], + [[ + 2080, + 2241, + 2083 + ]], + [[ + 2080, + 2240, + 2241 + ]], + [[ + 2149, + 1969, + 2120 + ]], + [[ + 2149, + 2121, + 1969 + ]], + [[ + 1969, + 1968, + 2120 + ]], + [[ + 1969, + 1961, + 1967 + ]], + [[ + 2056, + 1939, + 2225 + ]], + [[ + 2056, + 2055, + 1939 + ]], + [[ + 2162, + 2169, + 2161 + ]], + [[ + 2155, + 2160, + 2169 + ]], + [[ + 2030, + 2238, + 2059 + ]], + [[ + 2198, + 2089, + 2060 + ]], + [[ + 1934, + 2059, + 350 + ]], + [[ + 2238, + 2198, + 2060 + ]], + [[ + 1994, + 2045, + 2047 + ]], + [[ + 1993, + 1984, + 2045 + ]], + [[ + 2213, + 2209, + 1937 + ]], + [[ + 2212, + 2034, + 2209 + ]], + [[ + 2067, + 2087, + 2088 + ]], + [[ + 2243, + 2066, + 2061 + ]], + [[ + 2178, + 2189, + 1952 + ]], + [[ + 2178, + 2112, + 2189 + ]], + [[ + 1949, + 2182, + 2231 + ]], + [[ + 1957, + 1956, + 2068 + ]], + [[ + 293, + 1973, + 2188 + ]], + [[ + 2119, + 1974, + 1973 + ]], + [[ + 1946, + 2114, + 2165 + ]], + [[ + 2114, + 2074, + 2075 + ]], + [[ + 2064, + 2244, + 1960 + ]], + [[ + 2040, + 2042, + 2127 + ]], + [[ + 1939, + 2159, + 1937 + ]], + [[ + 349, + 2146, + 2159 + ]], + [[ + 2012, + 2229, + 2016 + ]], + [[ + 2229, + 1931, + 1933 + ]], + [[ + 2016, + 2229, + 1933 + ]], + [[ + 2185, + 2174, + 1931 + ]], + [[ + 2245, + 2111, + 2112 + ]], + [[ + 2077, + 2076, + 2163 + ]], + [[ + 2178, + 2245, + 2112 + ]], + [[ + 2236, + 2076, + 2111 + ]], + [[ + 2244, + 2040, + 1967 + ]], + [[ + 2126, + 2063, + 2122 + ]], + [[ + 2091, + 2218, + 2092 + ]], + [[ + 2100, + 2110, + 2218 + ]], + [[ + 2239, + 2090, + 2092 + ]], + [[ + 2199, + 2226, + 2091 + ]], + [[ + 2196, + 2168, + 2167 + ]], + [[ + 2196, + 2155, + 2168 + ]], + [[ + 2215, + 2142, + 1983 + ]], + [[ + 2215, + 2218, + 2141 + ]], + [[ + 2215, + 2141, + 2142 + ]], + [[ + 2218, + 2110, + 2141 + ]], + [[ + 2241, + 2201, + 2083 + ]], + [[ + 2241, + 2200, + 2201 + ]], + [[ + 2184, + 2107, + 2106 + ]], + [[ + 2153, + 2099, + 2098 + ]], + [[ + 2208, + 2106, + 2152 + ]], + [[ + 2006, + 2099, + 2153 + ]], + [[ + 2151, + 2153, + 2152 + ]], + [[ + 2151, + 2006, + 2153 + ]], + [[ + 2134, + 2105, + 2015 + ]], + [[ + 2106, + 2151, + 2152 + ]], + [[ + 2134, + 2150, + 2105 + ]], + [[ + 2103, + 2151, + 2150 + ]], + [[ + 2237, + 2221, + 2164 + ]], + [[ + 2219, + 2177, + 2214 + ]], + [[ + 2164, + 2221, + 2220 + ]], + [[ + 2246, + 2235, + 2219 + ]], + [[ + 2164, + 2222, + 2166 + ]], + [[ + 2220, + 2214, + 2222 + ]], + [[ + 2247, + 2230, + 2233 + ]], + [[ + 2234, + 2231, + 2182 + ]], + [[ + 1976, + 2243, + 2087 + ]], + [[ + 1975, + 1974, + 2061 + ]], + [[ + 2139, + 2042, + 2125 + ]], + [[ + 2040, + 2064, + 2041 + ]], + [[ + 2138, + 2125, + 2038 + ]], + [[ + 2138, + 2139, + 2125 + ]], + [[ + 1985, + 2173, + 1982 + ]], + [[ + 2143, + 2144, + 2217 + ]], + [[ + 2184, + 2106, + 2208 + ]], + [[ + 2105, + 2150, + 2106 + ]], + [[ + 2144, + 2172, + 2145 + ]], + [[ + 2225, + 1939, + 2172 + ]], + [[ + 352, + 2028, + 351 + ]], + [[ + 2027, + 2115, + 2028 + ]], + [[ + 2225, + 2210, + 1970 + ]], + [[ + 2210, + 2172, + 2053 + ]], + [[ + 2132, + 1972, + 2127 + ]], + [[ + 1971, + 2053, + 1972 + ]], + [[ + 2247, + 2127, + 2042 + ]], + [[ + 1972, + 2053, + 2127 + ]], + [[ + 1998, + 1997, + 2118 + ]], + [[ + 2224, + 2083, + 2117 + ]], + [[ + 2224, + 2117, + 1997 + ]], + [[ + 2022, + 2021, + 2117 + ]], + [[ + 2100, + 2226, + 2029 + ]], + [[ + 2100, + 2091, + 2226 + ]], + [[ + 2187, + 1998, + 2058 + ]], + [[ + 2187, + 2248, + 1998 + ]], + [[ + 2051, + 2195, + 2021 + ]], + [[ + 2051, + 2050, + 2195 + ]], + [[ + 2112, + 2078, + 1954 + ]], + [[ + 2111, + 2076, + 2078 + ]], + [[ + 1936, + 2181, + 1942 + ]], + [[ + 1936, + 1940, + 2181 + ]], + [[ + 2068, + 1949, + 2232 + ]], + [[ + 1948, + 2182, + 1949 + ]], + [[ + 1970, + 2210, + 1971 + ]], + [[ + 2225, + 2172, + 2210 + ]], + [[ + 2173, + 2043, + 1983 + ]], + [[ + 2173, + 2143, + 2043 + ]], + [[ + 2143, + 2217, + 2043 + ]], + [[ + 2144, + 2228, + 2216 + ]], + [[ + 2131, + 2132, + 1948 + ]], + [[ + 1970, + 1972, + 2132 + ]], + [[ + 2245, + 2236, + 2111 + ]], + [[ + 2177, + 2219, + 2235 + ]], + [[ + 2029, + 2248, + 2100 + ]], + [[ + 2029, + 1996, + 2248 + ]], + [[ + 1997, + 1996, + 2224 + ]], + [[ + 2030, + 2197, + 2031 + ]], + [[ + 2224, + 1996, + 2031 + ]], + [[ + 1998, + 2248, + 1996 + ]], + [[ + 2031, + 2082, + 2224 + ]], + [[ + 2031, + 2197, + 2082 + ]], + [[ + 347, + 1956, + 1936 + ]], + [[ + 2068, + 2231, + 1957 + ]], + [[ + 2234, + 1957, + 2231 + ]], + [[ + 1958, + 1940, + 1936 + ]], + [[ + 2177, + 2235, + 2236 + ]], + [[ + 2237, + 2076, + 2235 + ]], + [[ + 2089, + 2090, + 1979 + ]], + [[ + 2092, + 2228, + 2239 + ]], + [[ + 2227, + 2090, + 2239 + ]], + [[ + 2199, + 2091, + 2090 + ]], + [[ + 1979, + 2227, + 2145 + ]], + [[ + 1979, + 2090, + 2227 + ]], + [[ + 2220, + 2219, + 2214 + ]], + [[ + 2246, + 2237, + 2235 + ]], + [[ + 2221, + 2246, + 2219 + ]], + [[ + 2221, + 2237, + 2246 + ]], + [[ + 2108, + 2207, + 2193 + ]], + [[ + 2107, + 2184, + 2207 + ]], + [[ + 2193, + 2183, + 2179 + ]], + [[ + 2207, + 2184, + 2183 + ]], + [[ + 2026, + 2025, + 2204 + ]], + [[ + 2026, + 1934, + 2024 + ]], + [[ + 2202, + 2024, + 351 + ]], + [[ + 2202, + 2025, + 2024 + ]], + [[ + 2167, + 2157, + 2073 + ]], + [[ + 2168, + 2162, + 2157 + ]], + [[ + 2234, + 1958, + 1957 + ]], + [[ + 2234, + 1943, + 1958 + ]], + [[ + 2099, + 2005, + 2097 + ]], + [[ + 2099, + 2006, + 2005 + ]], + [[ + 2177, + 2245, + 2178 + ]], + [[ + 2177, + 2236, + 2245 + ]], + [[ + 1986, + 2084, + 2054 + ]], + [[ + 1986, + 292, + 2084 + ]], + [[ + 2136, + 2171, + 2002 + ]], + [[ + 2136, + 2006, + 2171 + ]], + [[ + 2148, + 2147, + 1964 + ]], + [[ + 2148, + 2137, + 2147 + ]], + [[ + 348, + 2086, + 2206 + ]], + [[ + 348, + 349, + 2086 + ]], + [[ + 2248, + 2101, + 2100 + ]], + [[ + 2248, + 2187, + 2101 + ]], + [[ + 2110, + 2037, + 2036 + ]], + [[ + 2101, + 2187, + 2037 + ]], + [[ + 2187, + 2013, + 2037 + ]], + [[ + 2015, + 2036, + 2013 + ]], + [[ + 2087, + 2243, + 2061 + ]], + [[ + 1976, + 2066, + 2243 + ]], + [[ + 2047, + 2223, + 1994 + ]], + [[ + 2047, + 2196, + 2223 + ]], + [[ + 1941, + 1944, + 1946 + ]], + [[ + 1941, + 1945, + 1944 + ]], + [[ + 2234, + 2230, + 1943 + ]], + [[ + 2069, + 2071, + 2074 + ]], + [[ + 2165, + 2114, + 2113 + ]], + [[ + 1946, + 2074, + 2114 + ]], + [[ + 2182, + 2233, + 2234 + ]], + [[ + 2140, + 2139, + 2069 + ]], + [[ + 2127, + 2247, + 2182 + ]], + [[ + 2247, + 2140, + 2230 + ]], + [[ + 2140, + 2069, + 2230 + ]], + [[ + 2180, + 2070, + 2069 + ]], + [[ + 2182, + 2247, + 2233 + ]], + [[ + 2042, + 2140, + 2247 + ]], + [[ + 2071, + 1953, + 2077 + ]], + [[ + 2071, + 1951, + 1953 + ]], + [[ + 2077, + 1953, + 1955 + ]], + [[ + 1951, + 1950, + 1953 + ]], + [[ + 2075, + 2077, + 2163 + ]], + [[ + 1955, + 2078, + 2077 + ]], + [[ + 2197, + 2059, + 1934 + ]], + [[ + 2238, + 2060, + 2059 + ]], + [[ + 1977, + 1965, + 1966 + ]], + [[ + 1977, + 1961, + 1965 + ]], + [[ + 2116, + 2079, + 2203 + ]], + [[ + 2116, + 2080, + 2079 + ]], + [[ + 2012, + 2185, + 2229 + ]], + [[ + 2012, + 2011, + 2185 + ]], + [[ + 2144, + 2216, + 2217 + ]], + [[ + 2228, + 2092, + 2216 + ]], + [[ + 2103, + 2006, + 2151 + ]], + [[ + 2103, + 2171, + 2006 + ]], + [[ + 2206, + 1935, + 348 + ]], + [[ + 2206, + 2057, + 1935 + ]], + [[ + 2125, + 2039, + 2038 + ]], + [[ + 2125, + 2122, + 2039 + ]], + [[ + 1960, + 2244, + 1967 + ]], + [[ + 2064, + 2040, + 2244 + ]], + [[ + 2194, + 2019, + 2118 + ]], + [[ + 2194, + 2176, + 2019 + ]], + [[ + 2064, + 2126, + 2041 + ]], + [[ + 2064, + 2063, + 2126 + ]], + [[ + 2129, + 2130, + 2115 + ]], + [[ + 2211, + 2240, + 2130 + ]], + [[ + 2148, + 2070, + 2180 + ]], + [[ + 2148, + 1951, + 2070 + ]], + [[ + 2194, + 2049, + 2175 + ]], + [[ + 2118, + 2050, + 2049 + ]], + [[ + 2146, + 2213, + 1937 + ]], + [[ + 2212, + 2209, + 2213 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222354ba-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef8a0e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2249, + 2250, + 2251 + ]], + [[ + 2249, + 2251, + 2252 + ]], + [[ + 2252, + 2251, + 2253 + ]], + [[ + 2251, + 344, + 345 + ]], + [[ + 2253, + 2251, + 345 + ]], + [[ + 2250, + 344, + 2251 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222465d8-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef68e649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2254, + 2255, + 2256 + ]], + [[ + 2257, + 2254, + 2256 + ]], + [[ + 2258, + 2254, + 2257 + ]], + [[ + 2258, + 2259, + 2254 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b22250278-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cb349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2260, + 2261, + 2262 + ]], + [[ + 2263, + 2264, + 2265 + ]], + [[ + 2266, + 2267, + 2268 + ]], + [[ + 2269, + 2270, + 2271 + ]], + [[ + 2272, + 2273, + 2274 + ]], + [[ + 2272, + 2274, + 2275 + ]], + [[ + 2276, + 2277, + 2270 + ]], + [[ + 2277, + 2273, + 2270 + ]], + [[ + 2278, + 2279, + 2280 + ]], + [[ + 2281, + 2274, + 2282 + ]], + [[ + 2283, + 2284, + 2285 + ]], + [[ + 2286, + 2287, + 2288 + ]], + [[ + 2289, + 2281, + 2284 + ]], + [[ + 2290, + 2291, + 2292 + ]], + [[ + 2293, + 2294, + 2295 + ]], + [[ + 2296, + 2290, + 2297 + ]], + [[ + 2298, + 2296, + 2297 + ]], + [[ + 2299, + 2292, + 2300 + ]], + [[ + 2301, + 2302, + 2303 + ]], + [[ + 2304, + 2305, + 2306 + ]], + [[ + 2307, + 2308, + 2309 + ]], + [[ + 2310, + 2311, + 2312 + ]], + [[ + 2313, + 2314, + 2312 + ]], + [[ + 2315, + 2316, + 2317 + ]], + [[ + 2318, + 2319, + 2320 + ]], + [[ + 2321, + 2322, + 2323 + ]], + [[ + 2318, + 2324, + 2319 + ]], + [[ + 2319, + 2324, + 2325 + ]], + [[ + 2326, + 2327, + 2328 + ]], + [[ + 2328, + 2329, + 2330 + ]], + [[ + 2331, + 2311, + 2310 + ]], + [[ + 2314, + 2313, + 2332 + ]], + [[ + 2333, + 2334, + 2335 + ]], + [[ + 2336, + 2308, + 2322 + ]], + [[ + 2337, + 2338, + 2339 + ]], + [[ + 2340, + 2341, + 2342 + ]], + [[ + 2343, + 2344, + 2345 + ]], + [[ + 2346, + 2347, + 2348 + ]], + [[ + 2349, + 2350, + 2351 + ]], + [[ + 2352, + 2353, + 2354 + ]], + [[ + 2353, + 2352, + 2355 + ]], + [[ + 2356, + 2357, + 2358 + ]], + [[ + 2359, + 2360, + 2358 + ]], + [[ + 2361, + 2362, + 2363 + ]], + [[ + 2360, + 2348, + 2364 + ]], + [[ + 2365, + 2366, + 2367 + ]], + [[ + 2365, + 2368, + 2366 + ]], + [[ + 2365, + 2369, + 2370 + ]], + [[ + 2345, + 2371, + 2343 + ]], + [[ + 2345, + 2344, + 2372 + ]], + [[ + 2373, + 2374, + 2375 + ]], + [[ + 2363, + 2362, + 2376 + ]], + [[ + 2377, + 2378, + 2379 + ]], + [[ + 2380, + 2381, + 2382 + ]], + [[ + 2375, + 2374, + 2377 + ]], + [[ + 2377, + 2380, + 2378 + ]], + [[ + 2341, + 2383, + 2342 + ]], + [[ + 2384, + 2385, + 2386 + ]], + [[ + 2385, + 2387, + 2388 + ]], + [[ + 2384, + 2373, + 2389 + ]], + [[ + 2390, + 2385, + 2391 + ]], + [[ + 2383, + 2392, + 2393 + ]], + [[ + 2394, + 2387, + 2395 + ]], + [[ + 2396, + 2335, + 2397 + ]], + [[ + 2398, + 2399, + 2400 + ]], + [[ + 2401, + 2402, + 2403 + ]], + [[ + 2401, + 2404, + 2402 + ]], + [[ + 2405, + 2400, + 2335 + ]], + [[ + 2406, + 2405, + 2335 + ]], + [[ + 2407, + 2408, + 2409 + ]], + [[ + 2410, + 2411, + 2412 + ]], + [[ + 2412, + 2411, + 2413 + ]], + [[ + 2339, + 2338, + 2414 + ]], + [[ + 2411, + 2415, + 2416 + ]], + [[ + 2417, + 2418, + 2419 + ]], + [[ + 2420, + 2421, + 2422 + ]], + [[ + 2423, + 2424, + 2425 + ]], + [[ + 2423, + 2426, + 2424 + ]], + [[ + 2427, + 2424, + 2428 + ]], + [[ + 2429, + 2430, + 2431 + ]], + [[ + 2432, + 2433, + 2434 + ]], + [[ + 2435, + 2436, + 2437 + ]], + [[ + 2306, + 2438, + 2439 + ]], + [[ + 2440, + 2441, + 2442 + ]], + [[ + 2443, + 2444, + 2445 + ]], + [[ + 2443, + 2446, + 2447 + ]], + [[ + 2448, + 2445, + 2449 + ]], + [[ + 2450, + 2451, + 2438 + ]], + [[ + 2452, + 2453, + 2454 + ]], + [[ + 2455, + 2456, + 2457 + ]], + [[ + 2458, + 2444, + 2459 + ]], + [[ + 2460, + 2461, + 2462 + ]], + [[ + 2463, + 2464, + 2465 + ]], + [[ + 2466, + 2467, + 2468 + ]], + [[ + 2452, + 2440, + 2453 + ]], + [[ + 2469, + 2470, + 2471 + ]], + [[ + 2472, + 2264, + 2473 + ]], + [[ + 2266, + 2474, + 2267 + ]], + [[ + 2475, + 2268, + 2267 + ]], + [[ + 2475, + 2476, + 2268 + ]], + [[ + 2475, + 2477, + 2476 + ]], + [[ + 2466, + 2478, + 2475 + ]], + [[ + 2475, + 2478, + 2477 + ]], + [[ + 2466, + 2468, + 2478 + ]], + [[ + 2466, + 2479, + 2467 + ]], + [[ + 2480, + 2481, + 2479 + ]], + [[ + 2479, + 2481, + 2467 + ]], + [[ + 2480, + 2482, + 2483 + ]], + [[ + 2481, + 2480, + 2483 + ]], + [[ + 2484, + 2482, + 2485 + ]], + [[ + 2486, + 2487, + 2303 + ]], + [[ + 2488, + 2489, + 2490 + ]], + [[ + 2491, + 2492, + 2488 + ]], + [[ + 2493, + 2494, + 2495 + ]], + [[ + 2496, + 2497, + 2489 + ]], + [[ + 2498, + 2499, + 2496 + ]], + [[ + 2500, + 2501, + 2502 + ]], + [[ + 2503, + 2504, + 2500 + ]], + [[ + 2505, + 2506, + 2507 + ]], + [[ + 2419, + 2418, + 2508 + ]], + [[ + 2469, + 2487, + 2486 + ]], + [[ + 2509, + 2260, + 2510 + ]], + [[ + 2511, + 2469, + 2486 + ]], + [[ + 2510, + 2302, + 2301 + ]], + [[ + 2302, + 2486, + 2303 + ]], + [[ + 2261, + 2260, + 2509 + ]], + [[ + 2260, + 2302, + 2510 + ]], + [[ + 2509, + 2483, + 2261 + ]], + [[ + 2483, + 2484, + 2261 + ]], + [[ + 2483, + 2482, + 2484 + ]], + [[ + 2512, + 2513, + 2514 + ]], + [[ + 2465, + 2515, + 2516 + ]], + [[ + 2517, + 2485, + 2518 + ]], + [[ + 2516, + 2485, + 2482 + ]], + [[ + 2516, + 2518, + 2485 + ]], + [[ + 2519, + 2520, + 2521 + ]], + [[ + 2522, + 2523, + 2524 + ]], + [[ + 2455, + 2457, + 2441 + ]], + [[ + 2525, + 2526, + 2527 + ]], + [[ + 2528, + 2451, + 2450 + ]], + [[ + 2450, + 2438, + 2306 + ]], + [[ + 2529, + 2530, + 2531 + ]], + [[ + 2532, + 2533, + 2534 + ]], + [[ + 2535, + 2536, + 2537 + ]], + [[ + 2538, + 2419, + 2539 + ]], + [[ + 2540, + 2541, + 2542 + ]], + [[ + 2534, + 2430, + 2543 + ]], + [[ + 2544, + 2545, + 2501 + ]], + [[ + 2546, + 2507, + 2502 + ]], + [[ + 2547, + 2536, + 2530 + ]], + [[ + 2548, + 2549, + 2420 + ]], + [[ + 2415, + 2541, + 2550 + ]], + [[ + 2551, + 2552, + 2553 + ]], + [[ + 2287, + 2286, + 2295 + ]], + [[ + 2295, + 2554, + 2293 + ]], + [[ + 2293, + 2554, + 2555 + ]], + [[ + 2282, + 2274, + 2556 + ]], + [[ + 2294, + 2557, + 2290 + ]], + [[ + 2555, + 2554, + 2557 + ]], + [[ + 2300, + 2558, + 2556 + ]], + [[ + 2282, + 2554, + 2288 + ]], + [[ + 2352, + 2356, + 2358 + ]], + [[ + 2348, + 2360, + 2359 + ]], + [[ + 2528, + 2459, + 2451 + ]], + [[ + 2459, + 2444, + 2451 + ]], + [[ + 2559, + 2560, + 2561 + ]], + [[ + 2501, + 2546, + 2502 + ]], + [[ + 2561, + 2544, + 2501 + ]], + [[ + 2562, + 2545, + 2544 + ]], + [[ + 2563, + 2564, + 2565 + ]], + [[ + 2566, + 2567, + 2568 + ]], + [[ + 2569, + 2570, + 2571 + ]], + [[ + 2436, + 2542, + 2572 + ]], + [[ + 2264, + 2573, + 2265 + ]], + [[ + 2501, + 2545, + 2546 + ]], + [[ + 2574, + 2434, + 2306 + ]], + [[ + 2420, + 2575, + 2548 + ]], + [[ + 2417, + 2419, + 2576 + ]], + [[ + 2493, + 2495, + 2562 + ]], + [[ + 2577, + 2578, + 2579 + ]], + [[ + 2580, + 2316, + 2324 + ]], + [[ + 2333, + 2581, + 2572 + ]], + [[ + 2582, + 2583, + 2584 + ]], + [[ + 2402, + 2398, + 2405 + ]], + [[ + 2399, + 2404, + 2585 + ]], + [[ + 2586, + 2587, + 2588 + ]], + [[ + 2589, + 2495, + 2494 + ]], + [[ + 2590, + 2591, + 2592 + ]], + [[ + 2588, + 2593, + 2594 + ]], + [[ + 2553, + 2537, + 2536 + ]], + [[ + 2595, + 2508, + 2596 + ]], + [[ + 2535, + 2597, + 2582 + ]], + [[ + 2338, + 2322, + 2414 + ]], + [[ + 2598, + 2599, + 2349 + ]], + [[ + 2599, + 2600, + 2601 + ]], + [[ + 2602, + 2381, + 2603 + ]], + [[ + 2602, + 2362, + 2382 + ]], + [[ + 2474, + 2604, + 2605 + ]], + [[ + 2474, + 2269, + 2267 + ]], + [[ + 2471, + 2473, + 2469 + ]], + [[ + 2264, + 2487, + 2473 + ]], + [[ + 2606, + 2607, + 2608 + ]], + [[ + 2609, + 2610, + 2489 + ]], + [[ + 2611, + 2612, + 2613 + ]], + [[ + 2614, + 2615, + 2338 + ]], + [[ + 2616, + 2442, + 2525 + ]], + [[ + 2617, + 2618, + 2619 + ]], + [[ + 2620, + 2266, + 2263 + ]], + [[ + 2268, + 2264, + 2263 + ]], + [[ + 2557, + 2554, + 2282 + ]], + [[ + 2288, + 2281, + 2282 + ]], + [[ + 2357, + 2359, + 2358 + ]], + [[ + 2357, + 2348, + 2359 + ]], + [[ + 2356, + 2346, + 2357 + ]], + [[ + 2367, + 2621, + 2622 + ]], + [[ + 2598, + 2349, + 2351 + ]], + [[ + 2601, + 2350, + 2349 + ]], + [[ + 2305, + 2543, + 2429 + ]], + [[ + 2623, + 2534, + 2543 + ]], + [[ + 2557, + 2291, + 2290 + ]], + [[ + 2557, + 2558, + 2291 + ]], + [[ + 2381, + 2380, + 2603 + ]], + [[ + 2382, + 2362, + 2361 + ]], + [[ + 2624, + 2574, + 2439 + ]], + [[ + 2304, + 2623, + 2543 + ]], + [[ + 2379, + 2622, + 2621 + ]], + [[ + 2361, + 2363, + 2622 + ]], + [[ + 2625, + 2626, + 2279 + ]], + [[ + 2626, + 2627, + 2283 + ]], + [[ + 2628, + 2629, + 2524 + ]], + [[ + 2630, + 2440, + 2442 + ]], + [[ + 2294, + 2555, + 2557 + ]], + [[ + 2294, + 2293, + 2555 + ]], + [[ + 2398, + 2402, + 2399 + ]], + [[ + 2392, + 2631, + 2395 + ]], + [[ + 2632, + 2512, + 2633 + ]], + [[ + 2634, + 2516, + 2482 + ]], + [[ + 2521, + 2635, + 2464 + ]], + [[ + 2617, + 2619, + 2515 + ]], + [[ + 2290, + 2636, + 2505 + ]], + [[ + 2299, + 2300, + 2637 + ]], + [[ + 2507, + 2506, + 2502 + ]], + [[ + 2607, + 2638, + 2639 + ]], + [[ + 2471, + 2640, + 2472 + ]], + [[ + 2640, + 2641, + 2620 + ]], + [[ + 2642, + 2643, + 2644 + ]], + [[ + 2500, + 2502, + 2643 + ]], + [[ + 2515, + 2465, + 2635 + ]], + [[ + 2521, + 2464, + 2632 + ]], + [[ + 2561, + 2645, + 2493 + ]], + [[ + 2594, + 2494, + 2645 + ]], + [[ + 2444, + 2458, + 2445 + ]], + [[ + 2456, + 2646, + 2458 + ]], + [[ + 2379, + 2378, + 2622 + ]], + [[ + 2377, + 2647, + 2380 + ]], + [[ + 2648, + 2534, + 2623 + ]], + [[ + 2533, + 2649, + 2430 + ]], + [[ + 2650, + 2651, + 2623 + ]], + [[ + 2596, + 2649, + 2648 + ]], + [[ + 2369, + 2652, + 2371 + ]], + [[ + 2371, + 2652, + 2343 + ]], + [[ + 2344, + 2363, + 2376 + ]], + [[ + 2344, + 2652, + 2363 + ]], + [[ + 2635, + 2653, + 2464 + ]], + [[ + 2654, + 2655, + 2656 + ]], + [[ + 2464, + 2513, + 2632 + ]], + [[ + 2512, + 2628, + 2657 + ]], + [[ + 2434, + 2304, + 2306 + ]], + [[ + 2433, + 2432, + 2658 + ]], + [[ + 2433, + 2658, + 2304 + ]], + [[ + 2432, + 2426, + 2658 + ]], + [[ + 2428, + 2426, + 2432 + ]], + [[ + 2423, + 2659, + 2575 + ]], + [[ + 2610, + 2660, + 2496 + ]], + [[ + 2499, + 2497, + 2496 + ]], + [[ + 2416, + 2415, + 2661 + ]], + [[ + 2411, + 2410, + 2334 + ]], + [[ + 2319, + 2325, + 2328 + ]], + [[ + 2662, + 2316, + 2663 + ]], + [[ + 2603, + 2647, + 2374 + ]], + [[ + 2603, + 2380, + 2647 + ]], + [[ + 2664, + 2307, + 2309 + ]], + [[ + 2307, + 2312, + 2308 + ]], + [[ + 2647, + 2377, + 2374 + ]], + [[ + 2377, + 2379, + 2375 + ]], + [[ + 2498, + 2665, + 2666 + ]], + [[ + 2498, + 2660, + 2665 + ]], + [[ + 2667, + 2565, + 2331 + ]], + [[ + 2564, + 2566, + 2668 + ]], + [[ + 2493, + 2562, + 2544 + ]], + [[ + 2669, + 2545, + 2562 + ]], + [[ + 2655, + 2616, + 2527 + ]], + [[ + 2657, + 2670, + 2671 + ]], + [[ + 2340, + 2375, + 2672 + ]], + [[ + 2340, + 2373, + 2375 + ]], + [[ + 2290, + 2292, + 2636 + ]], + [[ + 2673, + 2558, + 2300 + ]], + [[ + 2445, + 2674, + 2454 + ]], + [[ + 2445, + 2646, + 2674 + ]], + [[ + 2263, + 2266, + 2268 + ]], + [[ + 2263, + 2265, + 2620 + ]], + [[ + 2392, + 2585, + 2675 + ]], + [[ + 2390, + 2387, + 2385 + ]], + [[ + 2676, + 2396, + 2397 + ]], + [[ + 2677, + 2406, + 2335 + ]], + [[ + 2678, + 2611, + 2583 + ]], + [[ + 2591, + 2588, + 2576 + ]], + [[ + 2586, + 2679, + 2680 + ]], + [[ + 2418, + 2681, + 2682 + ]], + [[ + 2645, + 2683, + 2594 + ]], + [[ + 2660, + 2498, + 2496 + ]], + [[ + 2684, + 2683, + 2645 + ]], + [[ + 2587, + 2685, + 2576 + ]], + [[ + 2684, + 2560, + 2559 + ]], + [[ + 2684, + 2645, + 2560 + ]], + [[ + 2380, + 2382, + 2378 + ]], + [[ + 2381, + 2602, + 2382 + ]], + [[ + 2437, + 2436, + 2572 + ]], + [[ + 2334, + 2677, + 2335 + ]], + [[ + 2552, + 2686, + 2437 + ]], + [[ + 2435, + 2687, + 2436 + ]], + [[ + 2651, + 2650, + 2540 + ]], + [[ + 2548, + 2575, + 2661 + ]], + [[ + 2542, + 2688, + 2540 + ]], + [[ + 2569, + 2689, + 2690 + ]], + [[ + 2687, + 2691, + 2688 + ]], + [[ + 2623, + 2304, + 2692 + ]], + [[ + 2540, + 2691, + 2651 + ]], + [[ + 2686, + 2552, + 2693 + ]], + [[ + 2572, + 2542, + 2541 + ]], + [[ + 2436, + 2687, + 2542 + ]], + [[ + 2694, + 2570, + 2695 + ]], + [[ + 2571, + 2693, + 2569 + ]], + [[ + 2354, + 2353, + 2351 + ]], + [[ + 2352, + 2358, + 2355 + ]], + [[ + 2677, + 2410, + 2412 + ]], + [[ + 2677, + 2334, + 2410 + ]], + [[ + 2594, + 2696, + 2589 + ]], + [[ + 2414, + 2669, + 2696 + ]], + [[ + 2697, + 2563, + 2565 + ]], + [[ + 2698, + 2564, + 2563 + ]], + [[ + 2699, + 2583, + 2611 + ]], + [[ + 2613, + 2337, + 2591 + ]], + [[ + 2415, + 2334, + 2541 + ]], + [[ + 2415, + 2411, + 2334 + ]], + [[ + 2294, + 2296, + 2298 + ]], + [[ + 2294, + 2290, + 2296 + ]], + [[ + 2593, + 2339, + 2696 + ]], + [[ + 2593, + 2696, + 2594 + ]], + [[ + 2696, + 2339, + 2414 + ]], + [[ + 2588, + 2591, + 2337 + ]], + [[ + 2504, + 2559, + 2501 + ]], + [[ + 2606, + 2608, + 2700 + ]], + [[ + 2323, + 2701, + 2437 + ]], + [[ + 2702, + 2547, + 2689 + ]], + [[ + 2628, + 2524, + 2523 + ]], + [[ + 2525, + 2441, + 2461 + ]], + [[ + 2557, + 2556, + 2558 + ]], + [[ + 2274, + 2273, + 2556 + ]], + [[ + 2400, + 2585, + 2397 + ]], + [[ + 2404, + 2675, + 2585 + ]], + [[ + 2635, + 2465, + 2653 + ]], + [[ + 2516, + 2634, + 2463 + ]], + [[ + 2666, + 2638, + 2607 + ]], + [[ + 2665, + 2639, + 2638 + ]], + [[ + 2541, + 2333, + 2572 + ]], + [[ + 2541, + 2334, + 2333 + ]], + [[ + 2703, + 2704, + 2470 + ]], + [[ + 2705, + 2666, + 2607 + ]], + [[ + 2639, + 2660, + 2706 + ]], + [[ + 2639, + 2665, + 2660 + ]], + [[ + 2540, + 2549, + 2550 + ]], + [[ + 2707, + 2692, + 2421 + ]], + [[ + 2520, + 2519, + 2708 + ]], + [[ + 2632, + 2513, + 2512 + ]], + [[ + 2709, + 2629, + 2634 + ]], + [[ + 2657, + 2523, + 2670 + ]], + [[ + 2710, + 2369, + 2371 + ]], + [[ + 2370, + 2368, + 2365 + ]], + [[ + 2648, + 2695, + 2596 + ]], + [[ + 2648, + 2694, + 2695 + ]], + [[ + 2415, + 2550, + 2661 + ]], + [[ + 2541, + 2540, + 2550 + ]], + [[ + 2582, + 2678, + 2583 + ]], + [[ + 2597, + 2612, + 2678 + ]], + [[ + 2539, + 2611, + 2711 + ]], + [[ + 2678, + 2612, + 2611 + ]], + [[ + 2333, + 2712, + 2581 + ]], + [[ + 2407, + 2664, + 2309 + ]], + [[ + 2572, + 2581, + 2437 + ]], + [[ + 2321, + 2336, + 2322 + ]], + [[ + 2581, + 2323, + 2437 + ]], + [[ + 2321, + 2713, + 2407 + ]], + [[ + 2279, + 2626, + 2285 + ]], + [[ + 2279, + 2278, + 2625 + ]], + [[ + 2514, + 2629, + 2628 + ]], + [[ + 2514, + 2634, + 2629 + ]], + [[ + 2714, + 2520, + 2708 + ]], + [[ + 2714, + 2618, + 2520 + ]], + [[ + 2715, + 2698, + 2697 + ]], + [[ + 2715, + 2564, + 2698 + ]], + [[ + 2460, + 2671, + 2670 + ]], + [[ + 2716, + 2708, + 2633 + ]], + [[ + 2460, + 2462, + 2671 + ]], + [[ + 2714, + 2708, + 2671 + ]], + [[ + 2716, + 2512, + 2657 + ]], + [[ + 2628, + 2523, + 2657 + ]], + [[ + 2470, + 2469, + 2511 + ]], + [[ + 2473, + 2487, + 2469 + ]], + [[ + 2623, + 2651, + 2570 + ]], + [[ + 2691, + 2686, + 2717 + ]], + [[ + 2571, + 2651, + 2691 + ]], + [[ + 2571, + 2570, + 2651 + ]], + [[ + 2571, + 2717, + 2693 + ]], + [[ + 2571, + 2691, + 2717 + ]], + [[ + 2718, + 2319, + 2328 + ]], + [[ + 2718, + 2578, + 2719 + ]], + [[ + 2669, + 2546, + 2545 + ]], + [[ + 2669, + 2507, + 2546 + ]], + [[ + 2706, + 2608, + 2639 + ]], + [[ + 2720, + 2705, + 2607 + ]], + [[ + 2639, + 2608, + 2607 + ]], + [[ + 2700, + 2683, + 2684 + ]], + [[ + 2437, + 2721, + 2552 + ]], + [[ + 2701, + 2615, + 2722 + ]], + [[ + 2721, + 2701, + 2722 + ]], + [[ + 2323, + 2322, + 2723 + ]], + [[ + 2537, + 2721, + 2722 + ]], + [[ + 2437, + 2701, + 2721 + ]], + [[ + 2724, + 2427, + 2428 + ]], + [[ + 2725, + 2659, + 2425 + ]], + [[ + 2331, + 2726, + 2311 + ]], + [[ + 2317, + 2311, + 2727 + ]], + [[ + 2728, + 2567, + 2564 + ]], + [[ + 2568, + 2315, + 2317 + ]], + [[ + 2564, + 2668, + 2565 + ]], + [[ + 2726, + 2727, + 2311 + ]], + [[ + 2430, + 2429, + 2543 + ]], + [[ + 2528, + 2729, + 2459 + ]], + [[ + 2554, + 2286, + 2288 + ]], + [[ + 2554, + 2295, + 2286 + ]], + [[ + 2521, + 2617, + 2635 + ]], + [[ + 2619, + 2518, + 2515 + ]], + [[ + 2644, + 2730, + 2642 + ]], + [[ + 2620, + 2265, + 2573 + ]], + [[ + 2502, + 2506, + 2643 + ]], + [[ + 2507, + 2290, + 2505 + ]], + [[ + 2731, + 2505, + 2636 + ]], + [[ + 2732, + 2506, + 2505 + ]], + [[ + 2674, + 2733, + 2734 + ]], + [[ + 2456, + 2458, + 2457 + ]], + [[ + 2695, + 2569, + 2596 + ]], + [[ + 2695, + 2570, + 2569 + ]], + [[ + 2691, + 2540, + 2688 + ]], + [[ + 2650, + 2707, + 2540 + ]], + [[ + 2542, + 2687, + 2688 + ]], + [[ + 2686, + 2691, + 2687 + ]], + [[ + 2703, + 2641, + 2704 + ]], + [[ + 2573, + 2264, + 2472 + ]], + [[ + 2471, + 2472, + 2473 + ]], + [[ + 2471, + 2470, + 2704 + ]], + [[ + 2471, + 2704, + 2640 + ]], + [[ + 2735, + 2500, + 2642 + ]], + [[ + 2643, + 2642, + 2500 + ]], + [[ + 2730, + 2736, + 2737 + ]], + [[ + 2650, + 2692, + 2707 + ]], + [[ + 2658, + 2426, + 2423 + ]], + [[ + 2633, + 2519, + 2632 + ]], + [[ + 2520, + 2618, + 2521 + ]], + [[ + 2428, + 2424, + 2426 + ]], + [[ + 2427, + 2724, + 2725 + ]], + [[ + 2648, + 2532, + 2534 + ]], + [[ + 2648, + 2649, + 2532 + ]], + [[ + 2660, + 2610, + 2706 + ]], + [[ + 2489, + 2488, + 2609 + ]], + [[ + 2738, + 2735, + 2641 + ]], + [[ + 2642, + 2730, + 2735 + ]], + [[ + 2566, + 2726, + 2668 + ]], + [[ + 2566, + 2568, + 2726 + ]], + [[ + 2285, + 2626, + 2283 + ]], + [[ + 2625, + 2280, + 2627 + ]], + [[ + 2283, + 2289, + 2284 + ]], + [[ + 2283, + 2627, + 2289 + ]], + [[ + 2623, + 2692, + 2650 + ]], + [[ + 2421, + 2658, + 2422 + ]], + [[ + 2739, + 2394, + 2631 + ]], + [[ + 2739, + 2387, + 2394 + ]], + [[ + 2623, + 2694, + 2648 + ]], + [[ + 2623, + 2570, + 2694 + ]], + [[ + 2559, + 2561, + 2501 + ]], + [[ + 2560, + 2645, + 2561 + ]], + [[ + 2397, + 2341, + 2340 + ]], + [[ + 2397, + 2585, + 2341 + ]], + [[ + 2600, + 2355, + 2350 + ]], + [[ + 2358, + 2350, + 2355 + ]], + [[ + 2386, + 2385, + 2388 + ]], + [[ + 2384, + 2389, + 2391 + ]], + [[ + 2329, + 2715, + 2740 + ]], + [[ + 2728, + 2564, + 2715 + ]], + [[ + 2439, + 2574, + 2306 + ]], + [[ + 2434, + 2433, + 2304 + ]], + [[ + 2564, + 2567, + 2566 + ]], + [[ + 2327, + 2326, + 2316 + ]], + [[ + 2349, + 2599, + 2601 + ]], + [[ + 2353, + 2355, + 2599 + ]], + [[ + 2400, + 2399, + 2585 + ]], + [[ + 2402, + 2404, + 2399 + ]], + [[ + 2584, + 2531, + 2530 + ]], + [[ + 2690, + 2689, + 2547 + ]], + [[ + 2690, + 2547, + 2529 + ]], + [[ + 2551, + 2693, + 2552 + ]], + [[ + 2584, + 2530, + 2536 + ]], + [[ + 2529, + 2547, + 2530 + ]], + [[ + 2392, + 2395, + 2390 + ]], + [[ + 2631, + 2394, + 2395 + ]], + [[ + 2401, + 2675, + 2404 + ]], + [[ + 2401, + 2631, + 2675 + ]], + [[ + 2550, + 2548, + 2661 + ]], + [[ + 2550, + 2549, + 2548 + ]], + [[ + 2741, + 2697, + 2667 + ]], + [[ + 2698, + 2563, + 2697 + ]], + [[ + 2557, + 2282, + 2556 + ]], + [[ + 2288, + 2287, + 2281 + ]], + [[ + 2635, + 2617, + 2515 + ]], + [[ + 2521, + 2618, + 2617 + ]], + [[ + 2680, + 2679, + 2706 + ]], + [[ + 2682, + 2742, + 2609 + ]], + [[ + 2561, + 2493, + 2544 + ]], + [[ + 2645, + 2494, + 2493 + ]], + [[ + 2743, + 2370, + 2369 + ]], + [[ + 2710, + 2368, + 2370 + ]], + [[ + 2630, + 2656, + 2709 + ]], + [[ + 2630, + 2442, + 2654 + ]], + [[ + 2606, + 2700, + 2559 + ]], + [[ + 2700, + 2608, + 2679 + ]], + [[ + 2559, + 2700, + 2684 + ]], + [[ + 2608, + 2706, + 2679 + ]], + [[ + 2491, + 2488, + 2490 + ]], + [[ + 2609, + 2742, + 2610 + ]], + [[ + 2537, + 2553, + 2552 + ]], + [[ + 2536, + 2547, + 2553 + ]], + [[ + 2721, + 2537, + 2552 + ]], + [[ + 2722, + 2597, + 2535 + ]], + [[ + 2624, + 2434, + 2574 + ]], + [[ + 2624, + 2432, + 2434 + ]], + [[ + 2580, + 2318, + 2579 + ]], + [[ + 2320, + 2718, + 2719 + ]], + [[ + 2273, + 2637, + 2556 + ]], + [[ + 2292, + 2291, + 2673 + ]], + [[ + 2636, + 2299, + 2277 + ]], + [[ + 2300, + 2556, + 2637 + ]], + [[ + 2277, + 2299, + 2637 + ]], + [[ + 2636, + 2292, + 2299 + ]], + [[ + 2685, + 2417, + 2576 + ]], + [[ + 2685, + 2681, + 2418 + ]], + [[ + 2335, + 2400, + 2397 + ]], + [[ + 2405, + 2398, + 2400 + ]], + [[ + 2445, + 2458, + 2646 + ]], + [[ + 2455, + 2441, + 2440 + ]], + [[ + 2700, + 2679, + 2683 + ]], + [[ + 2586, + 2680, + 2587 + ]], + [[ + 2588, + 2587, + 2576 + ]], + [[ + 2588, + 2594, + 2586 + ]], + [[ + 2273, + 2277, + 2637 + ]], + [[ + 2636, + 2276, + 2731 + ]], + [[ + 2306, + 2305, + 2450 + ]], + [[ + 2304, + 2543, + 2305 + ]], + [[ + 2277, + 2276, + 2636 + ]], + [[ + 2732, + 2505, + 2731 + ]], + [[ + 2422, + 2423, + 2575 + ]], + [[ + 2424, + 2427, + 2725 + ]], + [[ + 2659, + 2423, + 2425 + ]], + [[ + 2422, + 2658, + 2423 + ]], + [[ + 2514, + 2464, + 2634 + ]], + [[ + 2464, + 2653, + 2465 + ]], + [[ + 2634, + 2464, + 2463 + ]], + [[ + 2514, + 2513, + 2464 + ]], + [[ + 2534, + 2533, + 2430 + ]], + [[ + 2532, + 2649, + 2533 + ]], + [[ + 2744, + 2745, + 2352 + ]], + [[ + 2746, + 2621, + 2367 + ]], + [[ + 2357, + 2346, + 2348 + ]], + [[ + 2745, + 2744, + 2747 + ]], + [[ + 2366, + 2364, + 2367 + ]], + [[ + 2348, + 2347, + 2364 + ]], + [[ + 2747, + 2347, + 2346 + ]], + [[ + 2744, + 2621, + 2347 + ]], + [[ + 2652, + 2367, + 2622 + ]], + [[ + 2364, + 2746, + 2367 + ]], + [[ + 2363, + 2652, + 2622 + ]], + [[ + 2344, + 2343, + 2652 + ]], + [[ + 2307, + 2313, + 2312 + ]], + [[ + 2332, + 2740, + 2314 + ]], + [[ + 2748, + 2314, + 2740 + ]], + [[ + 2565, + 2668, + 2331 + ]], + [[ + 2314, + 2310, + 2312 + ]], + [[ + 2314, + 2667, + 2331 + ]], + [[ + 2314, + 2331, + 2310 + ]], + [[ + 2668, + 2726, + 2331 + ]], + [[ + 2336, + 2407, + 2309 + ]], + [[ + 2332, + 2313, + 2307 + ]], + [[ + 2332, + 2664, + 2409 + ]], + [[ + 2332, + 2307, + 2664 + ]], + [[ + 2465, + 2516, + 2463 + ]], + [[ + 2515, + 2518, + 2516 + ]], + [[ + 2672, + 2379, + 2621 + ]], + [[ + 2672, + 2375, + 2379 + ]], + [[ + 2459, + 2729, + 2458 + ]], + [[ + 2431, + 2441, + 2457 + ]], + [[ + 2338, + 2723, + 2322 + ]], + [[ + 2701, + 2323, + 2723 + ]], + [[ + 2722, + 2615, + 2597 + ]], + [[ + 2701, + 2723, + 2615 + ]], + [[ + 2726, + 2568, + 2727 + ]], + [[ + 2315, + 2327, + 2316 + ]], + [[ + 2749, + 2272, + 2275 + ]], + [[ + 2749, + 2273, + 2272 + ]], + [[ + 2347, + 2746, + 2364 + ]], + [[ + 2347, + 2621, + 2746 + ]], + [[ + 2292, + 2673, + 2300 + ]], + [[ + 2291, + 2558, + 2673 + ]], + [[ + 2732, + 2276, + 2736 + ]], + [[ + 2750, + 2605, + 2604 + ]], + [[ + 2640, + 2620, + 2573 + ]], + [[ + 2737, + 2604, + 2620 + ]], + [[ + 2447, + 2446, + 2448 + ]], + [[ + 2443, + 2445, + 2446 + ]], + [[ + 2652, + 2365, + 2367 + ]], + [[ + 2652, + 2369, + 2365 + ]], + [[ + 2498, + 2666, + 2470 + ]], + [[ + 2665, + 2638, + 2666 + ]], + [[ + 2590, + 2613, + 2591 + ]], + [[ + 2612, + 2597, + 2614 + ]], + [[ + 2613, + 2338, + 2337 + ]], + [[ + 2615, + 2723, + 2338 + ]], + [[ + 2613, + 2614, + 2338 + ]], + [[ + 2597, + 2615, + 2614 + ]], + [[ + 2611, + 2613, + 2711 + ]], + [[ + 2612, + 2614, + 2613 + ]], + [[ + 2594, + 2589, + 2494 + ]], + [[ + 2495, + 2669, + 2562 + ]], + [[ + 2611, + 2539, + 2699 + ]], + [[ + 2751, + 2531, + 2584 + ]], + [[ + 2583, + 2751, + 2584 + ]], + [[ + 2419, + 2508, + 2595 + ]], + [[ + 2678, + 2582, + 2597 + ]], + [[ + 2584, + 2536, + 2535 + ]], + [[ + 2722, + 2535, + 2537 + ]], + [[ + 2582, + 2584, + 2535 + ]], + [[ + 2407, + 2336, + 2321 + ]], + [[ + 2309, + 2308, + 2336 + ]], + [[ + 2408, + 2407, + 2713 + ]], + [[ + 2409, + 2664, + 2407 + ]], + [[ + 2581, + 2321, + 2323 + ]], + [[ + 2581, + 2713, + 2321 + ]], + [[ + 2738, + 2641, + 2705 + ]], + [[ + 2735, + 2730, + 2737 + ]], + [[ + 2735, + 2752, + 2500 + ]], + [[ + 2720, + 2606, + 2503 + ]], + [[ + 2568, + 2317, + 2727 + ]], + [[ + 2316, + 2311, + 2317 + ]], + [[ + 2304, + 2421, + 2692 + ]], + [[ + 2304, + 2658, + 2421 + ]], + [[ + 2753, + 2448, + 2449 + ]], + [[ + 2446, + 2445, + 2448 + ]], + [[ + 2683, + 2586, + 2594 + ]], + [[ + 2683, + 2679, + 2586 + ]], + [[ + 2686, + 2435, + 2437 + ]], + [[ + 2686, + 2687, + 2435 + ]], + [[ + 2284, + 2281, + 2287 + ]], + [[ + 2289, + 2627, + 2281 + ]], + [[ + 2409, + 2408, + 2397 + ]], + [[ + 2712, + 2333, + 2396 + ]], + [[ + 2676, + 2408, + 2713 + ]], + [[ + 2676, + 2397, + 2408 + ]], + [[ + 2713, + 2712, + 2676 + ]], + [[ + 2333, + 2335, + 2396 + ]], + [[ + 2754, + 2531, + 2755 + ]], + [[ + 2699, + 2539, + 2419 + ]], + [[ + 2595, + 2755, + 2419 + ]], + [[ + 2531, + 2751, + 2755 + ]], + [[ + 2601, + 2600, + 2350 + ]], + [[ + 2599, + 2355, + 2600 + ]], + [[ + 2714, + 2462, + 2461 + ]], + [[ + 2714, + 2671, + 2462 + ]], + [[ + 2342, + 2383, + 2393 + ]], + [[ + 2341, + 2585, + 2392 + ]], + [[ + 2391, + 2342, + 2393 + ]], + [[ + 2389, + 2340, + 2342 + ]], + [[ + 2305, + 2528, + 2450 + ]], + [[ + 2729, + 2431, + 2457 + ]], + [[ + 2429, + 2528, + 2305 + ]], + [[ + 2429, + 2431, + 2528 + ]], + [[ + 2745, + 2356, + 2352 + ]], + [[ + 2745, + 2346, + 2356 + ]], + [[ + 2353, + 2598, + 2351 + ]], + [[ + 2353, + 2599, + 2598 + ]], + [[ + 2741, + 2748, + 2740 + ]], + [[ + 2697, + 2565, + 2667 + ]], + [[ + 2748, + 2667, + 2314 + ]], + [[ + 2748, + 2741, + 2667 + ]], + [[ + 2750, + 2276, + 2270 + ]], + [[ + 2604, + 2736, + 2276 + ]], + [[ + 2337, + 2593, + 2588 + ]], + [[ + 2337, + 2339, + 2593 + ]], + [[ + 2666, + 2705, + 2470 + ]], + [[ + 2752, + 2503, + 2500 + ]], + [[ + 2752, + 2738, + 2705 + ]], + [[ + 2752, + 2735, + 2738 + ]], + [[ + 2720, + 2752, + 2705 + ]], + [[ + 2720, + 2503, + 2752 + ]], + [[ + 2705, + 2703, + 2470 + ]], + [[ + 2705, + 2641, + 2703 + ]], + [[ + 2504, + 2606, + 2559 + ]], + [[ + 2720, + 2607, + 2606 + ]], + [[ + 2715, + 2741, + 2740 + ]], + [[ + 2715, + 2697, + 2741 + ]], + [[ + 2734, + 2733, + 2456 + ]], + [[ + 2674, + 2646, + 2733 + ]], + [[ + 2500, + 2504, + 2501 + ]], + [[ + 2503, + 2606, + 2504 + ]], + [[ + 2576, + 2592, + 2591 + ]], + [[ + 2576, + 2419, + 2592 + ]], + [[ + 2590, + 2538, + 2539 + ]], + [[ + 2592, + 2419, + 2538 + ]], + [[ + 2644, + 2732, + 2730 + ]], + [[ + 2731, + 2276, + 2732 + ]], + [[ + 2452, + 2455, + 2440 + ]], + [[ + 2455, + 2734, + 2456 + ]], + [[ + 2452, + 2734, + 2455 + ]], + [[ + 2733, + 2646, + 2456 + ]], + [[ + 2424, + 2725, + 2425 + ]], + [[ + 2724, + 2659, + 2725 + ]], + [[ + 2506, + 2644, + 2643 + ]], + [[ + 2506, + 2732, + 2644 + ]], + [[ + 2274, + 2627, + 2280 + ]], + [[ + 2274, + 2281, + 2627 + ]], + [[ + 2626, + 2625, + 2627 + ]], + [[ + 2278, + 2280, + 2625 + ]], + [[ + 2756, + 2718, + 2328 + ]], + [[ + 2756, + 2578, + 2718 + ]], + [[ + 2529, + 2754, + 2596 + ]], + [[ + 2529, + 2531, + 2754 + ]], + [[ + 2569, + 2693, + 2689 + ]], + [[ + 2553, + 2547, + 2702 + ]], + [[ + 2689, + 2693, + 2551 + ]], + [[ + 2717, + 2686, + 2693 + ]], + [[ + 2702, + 2551, + 2553 + ]], + [[ + 2702, + 2689, + 2551 + ]], + [[ + 2676, + 2712, + 2396 + ]], + [[ + 2713, + 2581, + 2712 + ]], + [[ + 2632, + 2519, + 2521 + ]], + [[ + 2633, + 2708, + 2519 + ]], + [[ + 2590, + 2539, + 2711 + ]], + [[ + 2419, + 2755, + 2699 + ]], + [[ + 2751, + 2699, + 2755 + ]], + [[ + 2751, + 2583, + 2699 + ]], + [[ + 2696, + 2495, + 2589 + ]], + [[ + 2696, + 2669, + 2495 + ]], + [[ + 2472, + 2640, + 2573 + ]], + [[ + 2704, + 2641, + 2640 + ]], + [[ + 2737, + 2736, + 2604 + ]], + [[ + 2730, + 2732, + 2736 + ]], + [[ + 2276, + 2750, + 2604 + ]], + [[ + 2270, + 2269, + 2757 + ]], + [[ + 2620, + 2604, + 2474 + ]], + [[ + 2750, + 2270, + 2757 + ]], + [[ + 2605, + 2757, + 2474 + ]], + [[ + 2605, + 2750, + 2757 + ]], + [[ + 2620, + 2474, + 2266 + ]], + [[ + 2757, + 2269, + 2474 + ]], + [[ + 2707, + 2420, + 2549 + ]], + [[ + 2422, + 2575, + 2420 + ]], + [[ + 2420, + 2707, + 2421 + ]], + [[ + 2549, + 2540, + 2707 + ]], + [[ + 2587, + 2681, + 2685 + ]], + [[ + 2706, + 2742, + 2682 + ]], + [[ + 2508, + 2418, + 2492 + ]], + [[ + 2417, + 2685, + 2418 + ]], + [[ + 2492, + 2609, + 2488 + ]], + [[ + 2492, + 2682, + 2609 + ]], + [[ + 2671, + 2716, + 2657 + ]], + [[ + 2514, + 2628, + 2512 + ]], + [[ + 2708, + 2716, + 2671 + ]], + [[ + 2633, + 2512, + 2716 + ]], + [[ + 2418, + 2682, + 2492 + ]], + [[ + 2681, + 2706, + 2682 + ]], + [[ + 2523, + 2522, + 2670 + ]], + [[ + 2654, + 2656, + 2630 + ]], + [[ + 2522, + 2460, + 2670 + ]], + [[ + 2522, + 2526, + 2460 + ]], + [[ + 2524, + 2527, + 2522 + ]], + [[ + 2442, + 2441, + 2525 + ]], + [[ + 2526, + 2525, + 2461 + ]], + [[ + 2527, + 2616, + 2525 + ]], + [[ + 2460, + 2526, + 2461 + ]], + [[ + 2522, + 2527, + 2526 + ]], + [[ + 2524, + 2655, + 2527 + ]], + [[ + 2524, + 2629, + 2655 + ]], + [[ + 2709, + 2655, + 2629 + ]], + [[ + 2709, + 2656, + 2655 + ]], + [[ + 2616, + 2654, + 2442 + ]], + [[ + 2616, + 2655, + 2654 + ]], + [[ + 2641, + 2737, + 2620 + ]], + [[ + 2641, + 2735, + 2737 + ]], + [[ + 2489, + 2610, + 2496 + ]], + [[ + 2742, + 2706, + 2610 + ]], + [[ + 2613, + 2590, + 2711 + ]], + [[ + 2592, + 2538, + 2590 + ]], + [[ + 2378, + 2361, + 2622 + ]], + [[ + 2378, + 2382, + 2361 + ]], + [[ + 2663, + 2326, + 2328 + ]], + [[ + 2663, + 2316, + 2326 + ]], + [[ + 2728, + 2327, + 2567 + ]], + [[ + 2329, + 2328, + 2327 + ]], + [[ + 2567, + 2315, + 2568 + ]], + [[ + 2567, + 2327, + 2315 + ]], + [[ + 2325, + 2663, + 2328 + ]], + [[ + 2662, + 2324, + 2316 + ]], + [[ + 2325, + 2662, + 2663 + ]], + [[ + 2325, + 2324, + 2662 + ]], + [[ + 2447, + 2753, + 2449 + ]], + [[ + 2447, + 2448, + 2753 + ]], + [[ + 2454, + 2734, + 2452 + ]], + [[ + 2454, + 2674, + 2734 + ]], + [[ + 2329, + 2728, + 2715 + ]], + [[ + 2329, + 2327, + 2728 + ]], + [[ + 2754, + 2595, + 2596 + ]], + [[ + 2754, + 2755, + 2595 + ]], + [[ + 2391, + 2389, + 2342 + ]], + [[ + 2373, + 2340, + 2389 + ]], + [[ + 2392, + 2390, + 2393 + ]], + [[ + 2385, + 2384, + 2391 + ]], + [[ + 2393, + 2390, + 2391 + ]], + [[ + 2395, + 2387, + 2390 + ]], + [[ + 2458, + 2729, + 2457 + ]], + [[ + 2528, + 2431, + 2729 + ]], + [[ + 2745, + 2747, + 2346 + ]], + [[ + 2744, + 2347, + 2747 + ]], + [[ + 2579, + 2320, + 2719 + ]], + [[ + 2319, + 2718, + 2320 + ]], + [[ + 2579, + 2318, + 2320 + ]], + [[ + 2580, + 2324, + 2318 + ]], + [[ + 2710, + 2743, + 2369 + ]], + [[ + 2710, + 2370, + 2743 + ]], + [[ + 2596, + 2690, + 2529 + ]], + [[ + 2596, + 2569, + 2690 + ]], + [[ + 2341, + 2392, + 2383 + ]], + [[ + 2675, + 2631, + 2392 + ]], + [[ + 2719, + 2577, + 2579 + ]], + [[ + 2719, + 2578, + 2577 + ]], + [[ + 2360, + 2366, + 2368 + ]], + [[ + 2360, + 2364, + 2366 + ]], + [[ + 2681, + 2680, + 2706 + ]], + [[ + 2681, + 2587, + 2680 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222836f6-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cff49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2758, + 2759, + 2760 + ]], + [[ + 2761, + 2762, + 2763 + ]], + [[ + 2764, + 2765, + 2766 + ]], + [[ + 2767, + 2768, + 2769 + ]], + [[ + 2766, + 2770, + 2771 + ]], + [[ + 2772, + 2761, + 2763 + ]], + [[ + 2773, + 2774, + 2775 + ]], + [[ + 2776, + 2773, + 2777 + ]], + [[ + 2775, + 2774, + 2778 + ]], + [[ + 2770, + 2772, + 2776 + ]], + [[ + 2779, + 2780, + 2781 + ]], + [[ + 2779, + 2782, + 2783 + ]], + [[ + 2774, + 2784, + 2785 + ]], + [[ + 2786, + 2787, + 2788 + ]], + [[ + 2789, + 2790, + 2786 + ]], + [[ + 2776, + 2774, + 2773 + ]], + [[ + 2791, + 2792, + 2758 + ]], + [[ + 2791, + 2793, + 2794 + ]], + [[ + 2795, + 2794, + 2793 + ]], + [[ + 2784, + 2796, + 2763 + ]], + [[ + 2774, + 2797, + 2782 + ]], + [[ + 2796, + 2776, + 2772 + ]], + [[ + 2762, + 2794, + 2763 + ]], + [[ + 2758, + 2795, + 2793 + ]], + [[ + 2798, + 2794, + 2795 + ]], + [[ + 2767, + 2759, + 2758 + ]], + [[ + 2798, + 2795, + 2760 + ]], + [[ + 2799, + 2800, + 2789 + ]], + [[ + 2780, + 2779, + 2800 + ]], + [[ + 2759, + 2798, + 2760 + ]], + [[ + 2760, + 2795, + 2758 + ]], + [[ + 2762, + 2791, + 2794 + ]], + [[ + 2758, + 2793, + 2791 + ]], + [[ + 2774, + 2785, + 2797 + ]], + [[ + 2797, + 2783, + 2782 + ]], + [[ + 2801, + 2802, + 2803 + ]], + [[ + 2802, + 2768, + 2767 + ]], + [[ + 2800, + 2790, + 2789 + ]], + [[ + 2800, + 2783, + 2790 + ]], + [[ + 2771, + 2770, + 2777 + ]], + [[ + 2801, + 2803, + 2761 + ]], + [[ + 2796, + 2772, + 2763 + ]], + [[ + 2801, + 2765, + 2802 + ]], + [[ + 2803, + 2762, + 2761 + ]], + [[ + 2803, + 2792, + 2762 + ]], + [[ + 2762, + 2792, + 2791 + ]], + [[ + 2803, + 2802, + 2767 + ]], + [[ + 2792, + 2767, + 2758 + ]], + [[ + 2792, + 2803, + 2767 + ]], + [[ + 2769, + 2759, + 2767 + ]], + [[ + 2769, + 2798, + 2759 + ]], + [[ + 2784, + 2804, + 2785 + ]], + [[ + 2783, + 2800, + 2779 + ]], + [[ + 2804, + 2797, + 2785 + ]], + [[ + 2805, + 2787, + 2783 + ]], + [[ + 2765, + 2764, + 2802 + ]], + [[ + 2764, + 2768, + 2802 + ]], + [[ + 2772, + 2801, + 2761 + ]], + [[ + 2772, + 2770, + 2801 + ]], + [[ + 2770, + 2765, + 2801 + ]], + [[ + 2770, + 2766, + 2765 + ]], + [[ + 2805, + 2783, + 2797 + ]], + [[ + 2787, + 2790, + 2783 + ]], + [[ + 2799, + 2780, + 2800 + ]], + [[ + 2799, + 2781, + 2780 + ]], + [[ + 2789, + 2786, + 2788 + ]], + [[ + 2790, + 2787, + 2786 + ]], + [[ + 2787, + 2784, + 2763 + ]], + [[ + 2787, + 2804, + 2784 + ]], + [[ + 2770, + 2776, + 2777 + ]], + [[ + 2796, + 2784, + 2774 + ]], + [[ + 2778, + 2774, + 2782 + ]], + [[ + 2776, + 2796, + 2774 + ]], + [[ + 2804, + 2805, + 2797 + ]], + [[ + 2804, + 2787, + 2805 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2228f9ca-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef607d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2806, + 242, + 243 + ]], + [[ + 244, + 2807, + 2806 + ]], + [[ + 2807, + 241, + 2806 + ]], + [[ + 245, + 2808, + 244 + ]], + [[ + 2809, + 2810, + 2811 + ]], + [[ + 2812, + 215, + 238 + ]], + [[ + 2810, + 2813, + 238 + ]], + [[ + 2814, + 213, + 215 + ]], + [[ + 241, + 2807, + 2809 + ]], + [[ + 2812, + 2813, + 2815 + ]], + [[ + 2809, + 2807, + 2813 + ]], + [[ + 245, + 247, + 261 + ]], + [[ + 2807, + 244, + 2808 + ]], + [[ + 2808, + 245, + 261 + ]], + [[ + 2811, + 2810, + 238 + ]], + [[ + 239, + 240, + 2809 + ]], + [[ + 2814, + 2812, + 2815 + ]], + [[ + 238, + 2813, + 2812 + ]], + [[ + 213, + 2814, + 2815 + ]], + [[ + 215, + 2812, + 2814 + ]], + [[ + 244, + 2806, + 243 + ]], + [[ + 241, + 242, + 2806 + ]], + [[ + 2810, + 2809, + 2813 + ]], + [[ + 240, + 241, + 2809 + ]], + [[ + 239, + 2811, + 238 + ]], + [[ + 239, + 2809, + 2811 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222920fb-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2015-01-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.2a5997ebc5054d16864de6fe20493984", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2816, + 2817, + 2818 + ]], + [[ + 2819, + 2818, + 2820 + ]], + [[ + 2821, + 2822, + 2820 + ]], + [[ + 2817, + 2822, + 2818 + ]], + [[ + 2819, + 2817, + 2823 + ]], + [[ + 2822, + 2824, + 2818 + ]], + [[ + 2819, + 2816, + 2818 + ]], + [[ + 2823, + 2817, + 2816 + ]], + [[ + 2822, + 2819, + 2820 + ]], + [[ + 2823, + 2816, + 2819 + ]], + [[ + 2819, + 2822, + 2817 + ]], + [[ + 2821, + 2824, + 2822 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222b6a92-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5d1a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2825, + 2826, + 2827 + ]], + [[ + 2827, + 2828, + 183 + ]], + [[ + 2829, + 2828, + 2830 + ]], + [[ + 2829, + 2831, + 2828 + ]], + [[ + 2832, + 2827, + 183 + ]], + [[ + 2828, + 182, + 183 + ]], + [[ + 2826, + 2830, + 2828 + ]], + [[ + 2833, + 2829, + 2834 + ]], + [[ + 2835, + 2832, + 183 + ]], + [[ + 2835, + 2827, + 2832 + ]], + [[ + 182, + 2836, + 2834 + ]], + [[ + 182, + 2831, + 2836 + ]], + [[ + 2826, + 2828, + 2827 + ]], + [[ + 2831, + 182, + 2828 + ]], + [[ + 2825, + 2835, + 183 + ]], + [[ + 2825, + 2827, + 2835 + ]], + [[ + 2836, + 2833, + 2834 + ]], + [[ + 2836, + 2831, + 2829 + ]], + [[ + 2834, + 2829, + 2830 + ]], + [[ + 2833, + 2836, + 2829 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222c557f-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cb049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2837, + 2838, + 2839 + ]], + [[ + 2840, + 2841, + 2839 + ]], + [[ + 2838, + 2842, + 2839 + ]], + [[ + 2839, + 2843, + 2840 + ]], + [[ + 2843, + 2839, + 2842 + ]], + [[ + 2844, + 2845, + 2846 + ]], + [[ + 2844, + 2843, + 2842 + ]], + [[ + 2844, + 2847, + 2845 + ]], + [[ + 2844, + 2848, + 2847 + ]], + [[ + 2849, + 2847, + 2848 + ]], + [[ + 2850, + 2851, + 2852 + ]], + [[ + 2852, + 2851, + 2853 + ]], + [[ + 2850, + 2849, + 2848 + ]], + [[ + 2851, + 2850, + 2848 + ]], + [[ + 2851, + 2854, + 2855 + ]], + [[ + 2851, + 2848, + 2854 + ]], + [[ + 2854, + 2848, + 2856 + ]], + [[ + 2844, + 2842, + 2848 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222ddc12-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef505149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2857, + 184, + 185 + ]], + [[ + 2857, + 185, + 2858 + ]], + [[ + 185, + 186, + 2859 + ]], + [[ + 2859, + 2860, + 185 + ]], + [[ + 2861, + 2862, + 2863 + ]], + [[ + 2864, + 2865, + 2866 + ]], + [[ + 2867, + 2868, + 191 + ]], + [[ + 2869, + 2870, + 2871 + ]], + [[ + 2872, + 2873, + 2874 + ]], + [[ + 2875, + 2876, + 2877 + ]], + [[ + 2878, + 2879, + 2880 + ]], + [[ + 2879, + 2881, + 2882 + ]], + [[ + 2883, + 2873, + 2884 + ]], + [[ + 2885, + 2886, + 2887 + ]], + [[ + 2887, + 2886, + 2888 + ]], + [[ + 2889, + 2890, + 2891 + ]], + [[ + 2892, + 2893, + 2894 + ]], + [[ + 2895, + 192, + 2894 + ]], + [[ + 2896, + 2897, + 2898 + ]], + [[ + 192, + 2867, + 191 + ]], + [[ + 2870, + 2869, + 2899 + ]], + [[ + 2900, + 2901, + 2902 + ]], + [[ + 2903, + 2904, + 2905 + ]], + [[ + 2906, + 189, + 2907 + ]], + [[ + 2898, + 186, + 187 + ]], + [[ + 2908, + 2909, + 2910 + ]], + [[ + 2858, + 185, + 2860 + ]], + [[ + 2911, + 2912, + 2913 + ]], + [[ + 2914, + 2915, + 2916 + ]], + [[ + 2917, + 2918, + 188 + ]], + [[ + 188, + 189, + 2906 + ]], + [[ + 2919, + 2920, + 2874 + ]], + [[ + 2921, + 2922, + 2923 + ]], + [[ + 2924, + 2925, + 2867 + ]], + [[ + 2926, + 2927, + 2928 + ]], + [[ + 2929, + 2930, + 2907 + ]], + [[ + 2931, + 190, + 2932 + ]], + [[ + 2933, + 2934, + 2928 + ]], + [[ + 2935, + 2936, + 2937 + ]], + [[ + 2893, + 2923, + 2938 + ]], + [[ + 2939, + 2913, + 2912 + ]], + [[ + 2940, + 2941, + 2942 + ]], + [[ + 2942, + 2872, + 2920 + ]], + [[ + 190, + 2943, + 189 + ]], + [[ + 2929, + 2907, + 189 + ]], + [[ + 2944, + 2945, + 2946 + ]], + [[ + 2908, + 2910, + 2947 + ]], + [[ + 2920, + 2872, + 2874 + ]], + [[ + 2942, + 2921, + 2923 + ]], + [[ + 2938, + 2875, + 2948 + ]], + [[ + 2876, + 2913, + 2877 + ]], + [[ + 2880, + 2882, + 2887 + ]], + [[ + 2884, + 2941, + 2940 + ]], + [[ + 2862, + 2906, + 2907 + ]], + [[ + 2949, + 188, + 2906 + ]], + [[ + 2876, + 2950, + 2874 + ]], + [[ + 2951, + 2922, + 2950 + ]], + [[ + 2881, + 2884, + 2952 + ]], + [[ + 2940, + 2942, + 2923 + ]], + [[ + 2911, + 2953, + 2954 + ]], + [[ + 2911, + 2955, + 2953 + ]], + [[ + 2938, + 2923, + 2875 + ]], + [[ + 2877, + 2913, + 2948 + ]], + [[ + 2896, + 2861, + 2956 + ]], + [[ + 2957, + 2909, + 2908 + ]], + [[ + 2876, + 2951, + 2950 + ]], + [[ + 2876, + 2875, + 2951 + ]], + [[ + 190, + 2931, + 2943 + ]], + [[ + 2924, + 2867, + 192 + ]], + [[ + 2950, + 2919, + 2874 + ]], + [[ + 2950, + 2921, + 2919 + ]], + [[ + 2958, + 2944, + 2959 + ]], + [[ + 2958, + 2945, + 2944 + ]], + [[ + 2921, + 2942, + 2920 + ]], + [[ + 2960, + 2872, + 2942 + ]], + [[ + 186, + 2898, + 2859 + ]], + [[ + 2917, + 188, + 2862 + ]], + [[ + 2895, + 2961, + 2962 + ]], + [[ + 2892, + 2963, + 2964 + ]], + [[ + 2945, + 2965, + 2909 + ]], + [[ + 2958, + 2910, + 2965 + ]], + [[ + 2885, + 2889, + 2886 + ]], + [[ + 2885, + 2881, + 2952 + ]], + [[ + 2895, + 2966, + 192 + ]], + [[ + 2967, + 2968, + 2969 + ]], + [[ + 2943, + 2929, + 189 + ]], + [[ + 2943, + 2930, + 2929 + ]], + [[ + 2862, + 2949, + 2906 + ]], + [[ + 2862, + 188, + 2949 + ]], + [[ + 2944, + 2903, + 2959 + ]], + [[ + 2970, + 2900, + 2971 + ]], + [[ + 2972, + 2973, + 2964 + ]], + [[ + 2871, + 2948, + 2974 + ]], + [[ + 2882, + 2881, + 2885 + ]], + [[ + 2883, + 2884, + 2881 + ]], + [[ + 2941, + 2960, + 2942 + ]], + [[ + 2873, + 2872, + 2960 + ]], + [[ + 2933, + 2869, + 2912 + ]], + [[ + 2925, + 2868, + 2867 + ]], + [[ + 2969, + 2865, + 2975 + ]], + [[ + 2948, + 2913, + 2974 + ]], + [[ + 187, + 2918, + 2898 + ]], + [[ + 187, + 188, + 2918 + ]], + [[ + 2879, + 2883, + 2881 + ]], + [[ + 2879, + 2873, + 2883 + ]], + [[ + 2961, + 2895, + 2894 + ]], + [[ + 2976, + 2966, + 2895 + ]], + [[ + 2954, + 2933, + 2912 + ]], + [[ + 2934, + 2955, + 2928 + ]], + [[ + 2945, + 2909, + 2977 + ]], + [[ + 2965, + 2910, + 2909 + ]], + [[ + 2858, + 2860, + 2947 + ]], + [[ + 2860, + 2900, + 2902 + ]], + [[ + 2946, + 2945, + 2977 + ]], + [[ + 2958, + 2965, + 2945 + ]], + [[ + 2971, + 2978, + 2979 + ]], + [[ + 2946, + 2903, + 2944 + ]], + [[ + 2930, + 2932, + 2980 + ]], + [[ + 2905, + 2959, + 2903 + ]], + [[ + 2936, + 2905, + 2981 + ]], + [[ + 2936, + 2959, + 2905 + ]], + [[ + 2869, + 2939, + 2912 + ]], + [[ + 2974, + 2913, + 2939 + ]], + [[ + 2873, + 2941, + 2884 + ]], + [[ + 2873, + 2960, + 2941 + ]], + [[ + 2937, + 2982, + 2935 + ]], + [[ + 2983, + 2915, + 2914 + ]], + [[ + 2984, + 2916, + 2864 + ]], + [[ + 2985, + 2981, + 2904 + ]], + [[ + 2865, + 2864, + 2975 + ]], + [[ + 2915, + 2983, + 2986 + ]], + [[ + 2987, + 2932, + 2975 + ]], + [[ + 190, + 191, + 2868 + ]], + [[ + 2930, + 2931, + 2932 + ]], + [[ + 2930, + 2943, + 2931 + ]], + [[ + 2940, + 2923, + 2964 + ]], + [[ + 2922, + 2951, + 2875 + ]], + [[ + 2948, + 2875, + 2877 + ]], + [[ + 2923, + 2922, + 2875 + ]], + [[ + 2988, + 2967, + 2969 + ]], + [[ + 2864, + 2987, + 2975 + ]], + [[ + 2916, + 2915, + 2864 + ]], + [[ + 2986, + 2932, + 2987 + ]], + [[ + 2864, + 2915, + 2987 + ]], + [[ + 2914, + 2984, + 2989 + ]], + [[ + 2933, + 2928, + 2990 + ]], + [[ + 2991, + 2982, + 2985 + ]], + [[ + 2992, + 2978, + 2993 + ]], + [[ + 2992, + 2979, + 2978 + ]], + [[ + 2868, + 2925, + 2994 + ]], + [[ + 2871, + 2870, + 2938 + ]], + [[ + 2907, + 2863, + 2862 + ]], + [[ + 2896, + 2898, + 2918 + ]], + [[ + 2995, + 2996, + 2927 + ]], + [[ + 2955, + 2911, + 2928 + ]], + [[ + 2990, + 2928, + 2996 + ]], + [[ + 2911, + 2936, + 2926 + ]], + [[ + 2997, + 2908, + 2947 + ]], + [[ + 2997, + 2957, + 2908 + ]], + [[ + 2899, + 2990, + 2995 + ]], + [[ + 2869, + 2933, + 2990 + ]], + [[ + 2893, + 2892, + 2964 + ]], + [[ + 2894, + 2963, + 2892 + ]], + [[ + 2919, + 2921, + 2920 + ]], + [[ + 2950, + 2922, + 2921 + ]], + [[ + 2973, + 2890, + 2952 + ]], + [[ + 2889, + 2885, + 2952 + ]], + [[ + 2886, + 2891, + 2963 + ]], + [[ + 2886, + 2889, + 2891 + ]], + [[ + 2995, + 2998, + 2926 + ]], + [[ + 2999, + 2926, + 2991 + ]], + [[ + 2971, + 2986, + 2978 + ]], + [[ + 3000, + 3001, + 2999 + ]], + [[ + 3001, + 3000, + 2989 + ]], + [[ + 3002, + 2978, + 2983 + ]], + [[ + 2904, + 2901, + 2985 + ]], + [[ + 2980, + 2907, + 2930 + ]], + [[ + 2985, + 2901, + 2992 + ]], + [[ + 2863, + 2907, + 2980 + ]], + [[ + 2995, + 2926, + 3001 + ]], + [[ + 2989, + 2995, + 3001 + ]], + [[ + 2891, + 2890, + 2973 + ]], + [[ + 2952, + 2884, + 2940 + ]], + [[ + 2991, + 2926, + 2982 + ]], + [[ + 2928, + 2911, + 2926 + ]], + [[ + 2984, + 2995, + 2989 + ]], + [[ + 2927, + 2926, + 2998 + ]], + [[ + 2899, + 2995, + 2984 + ]], + [[ + 2990, + 2996, + 2995 + ]], + [[ + 2981, + 2937, + 2936 + ]], + [[ + 2981, + 2985, + 2937 + ]], + [[ + 2900, + 2970, + 2901 + ]], + [[ + 2904, + 2903, + 2946 + ]], + [[ + 2901, + 2970, + 2992 + ]], + [[ + 2981, + 2905, + 2904 + ]], + [[ + 2992, + 2970, + 2979 + ]], + [[ + 3003, + 2946, + 2977 + ]], + [[ + 2977, + 2902, + 3003 + ]], + [[ + 2902, + 2957, + 2860 + ]], + [[ + 2904, + 3003, + 2901 + ]], + [[ + 2860, + 2997, + 2947 + ]], + [[ + 2977, + 2957, + 2902 + ]], + [[ + 2977, + 2909, + 2957 + ]], + [[ + 2997, + 2860, + 2957 + ]], + [[ + 2859, + 2897, + 2860 + ]], + [[ + 2954, + 2934, + 2933 + ]], + [[ + 2953, + 2955, + 2934 + ]], + [[ + 2983, + 2978, + 2986 + ]], + [[ + 2863, + 2971, + 2861 + ]], + [[ + 2986, + 2863, + 2980 + ]], + [[ + 2897, + 2900, + 2860 + ]], + [[ + 2986, + 2971, + 2863 + ]], + [[ + 2979, + 2970, + 2971 + ]], + [[ + 2932, + 2986, + 2980 + ]], + [[ + 2987, + 2915, + 2986 + ]], + [[ + 2911, + 2954, + 2912 + ]], + [[ + 2953, + 2934, + 2954 + ]], + [[ + 2983, + 3000, + 3002 + ]], + [[ + 3001, + 2926, + 2999 + ]], + [[ + 2973, + 2952, + 2940 + ]], + [[ + 2890, + 2889, + 2952 + ]], + [[ + 2964, + 2973, + 2940 + ]], + [[ + 2964, + 2963, + 2972 + ]], + [[ + 2891, + 2972, + 2963 + ]], + [[ + 2891, + 2973, + 2972 + ]], + [[ + 2899, + 2866, + 2968 + ]], + [[ + 2984, + 2864, + 2866 + ]], + [[ + 2865, + 2968, + 2866 + ]], + [[ + 2962, + 2961, + 2938 + ]], + [[ + 2926, + 2935, + 2982 + ]], + [[ + 2926, + 2936, + 2935 + ]], + [[ + 2932, + 2868, + 2994 + ]], + [[ + 2932, + 190, + 2868 + ]], + [[ + 2966, + 2988, + 3004 + ]], + [[ + 2994, + 2975, + 2932 + ]], + [[ + 2966, + 3004, + 192 + ]], + [[ + 2967, + 2976, + 2962 + ]], + [[ + 3004, + 2988, + 2925 + ]], + [[ + 2968, + 2865, + 2969 + ]], + [[ + 2994, + 2988, + 2969 + ]], + [[ + 2966, + 2976, + 2988 + ]], + [[ + 2901, + 3003, + 2902 + ]], + [[ + 2904, + 2946, + 3003 + ]], + [[ + 2984, + 2914, + 2916 + ]], + [[ + 2989, + 2983, + 2914 + ]], + [[ + 3002, + 2993, + 2978 + ]], + [[ + 2982, + 2937, + 2985 + ]], + [[ + 2993, + 2985, + 2992 + ]], + [[ + 2993, + 2991, + 2985 + ]], + [[ + 3002, + 2991, + 2993 + ]], + [[ + 3002, + 2999, + 2991 + ]], + [[ + 2887, + 2882, + 2885 + ]], + [[ + 2880, + 2879, + 2882 + ]], + [[ + 2988, + 2994, + 2925 + ]], + [[ + 2969, + 2975, + 2994 + ]], + [[ + 3002, + 3000, + 2999 + ]], + [[ + 2983, + 2989, + 3000 + ]], + [[ + 2971, + 2956, + 2861 + ]], + [[ + 2971, + 2900, + 2956 + ]], + [[ + 2990, + 2899, + 2869 + ]], + [[ + 2984, + 2866, + 2899 + ]], + [[ + 2948, + 2871, + 2938 + ]], + [[ + 2899, + 2968, + 2962 + ]], + [[ + 2962, + 2938, + 2870 + ]], + [[ + 2961, + 2893, + 2938 + ]], + [[ + 2895, + 2962, + 2976 + ]], + [[ + 2870, + 2899, + 2962 + ]], + [[ + 2976, + 2967, + 2988 + ]], + [[ + 2962, + 2968, + 2967 + ]], + [[ + 2939, + 2871, + 2974 + ]], + [[ + 2939, + 2869, + 2871 + ]], + [[ + 2900, + 2897, + 2956 + ]], + [[ + 2918, + 2861, + 2896 + ]], + [[ + 2898, + 2897, + 2859 + ]], + [[ + 2896, + 2956, + 2897 + ]], + [[ + 2861, + 2917, + 2862 + ]], + [[ + 2861, + 2918, + 2917 + ]], + [[ + 3004, + 2924, + 192 + ]], + [[ + 3004, + 2925, + 2924 + ]], + [[ + 2923, + 2893, + 2964 + ]], + [[ + 2961, + 2894, + 2893 + ]], + [[ + 2995, + 2927, + 2998 + ]], + [[ + 2996, + 2928, + 2927 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222e2a53-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cae49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3005, + 3006, + 3007 + ]], + [[ + 3005, + 3007, + 3008 + ]], + [[ + 3008, + 3009, + 3010 + ]], + [[ + 3008, + 3011, + 3009 + ]], + [[ + 3008, + 3007, + 3011 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b222ec5e4-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef660549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3012, + 3013, + 3014 + ]], + [[ + 3013, + 3015, + 3014 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2230c204-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cf949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3016, + 3017, + 3018 + ]], + [[ + 3016, + 3019, + 3020 + ]], + [[ + 3020, + 3019, + 3021 + ]], + [[ + 3021, + 3019, + 3022 + ]], + [[ + 3022, + 3019, + 3023 + ]], + [[ + 3016, + 3018, + 3019 + ]], + [[ + 3017, + 3024, + 3018 + ]], + [[ + 3025, + 3026, + 3024 + ]], + [[ + 3024, + 3026, + 3027 + ]], + [[ + 3028, + 3025, + 3024 + ]], + [[ + 3017, + 3028, + 3024 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2231105d-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cf849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3029, + 3030, + 3031 + ]], + [[ + 3030, + 3032, + 3031 + ]], + [[ + 3031, + 3033, + 3034 + ]], + [[ + 3031, + 3032, + 3033 + ]], + [[ + 3033, + 3032, + 3035 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2231d343-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2015-01-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.21ab1c490f1540238f61717fe02159de", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3036, + 3037, + 3038 + ]], + [[ + 3036, + 3038, + 3039 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2232218d-00b5-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef749949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3040, + 3041, + 3042 + ]], + [[ + 3043, + 3044, + 3045 + ]], + [[ + 3045, + 3046, + 3047 + ]], + [[ + 2257, + 3043, + 2258 + ]], + [[ + 2256, + 3048, + 3049 + ]], + [[ + 3048, + 2256, + 3050 + ]], + [[ + 3051, + 2256, + 2255 + ]], + [[ + 3052, + 2256, + 3053 + ]], + [[ + 3052, + 3050, + 2256 + ]], + [[ + 3054, + 2256, + 3055 + ]], + [[ + 2259, + 3056, + 3057 + ]], + [[ + 3058, + 3059, + 3060 + ]], + [[ + 3061, + 2256, + 3062 + ]], + [[ + 3059, + 1788, + 1782 + ]], + [[ + 3063, + 2256, + 3064 + ]], + [[ + 3063, + 3062, + 2256 + ]], + [[ + 3065, + 2256, + 3051 + ]], + [[ + 3065, + 3064, + 2256 + ]], + [[ + 3066, + 3051, + 2255 + ]], + [[ + 3067, + 3066, + 2255 + ]], + [[ + 3068, + 2255, + 3069 + ]], + [[ + 3069, + 3070, + 3071 + ]], + [[ + 3071, + 3072, + 3073 + ]], + [[ + 3073, + 3072, + 3074 + ]], + [[ + 3074, + 3075, + 3076 + ]], + [[ + 3058, + 3060, + 3077 + ]], + [[ + 3059, + 1782, + 3060 + ]], + [[ + 3076, + 3078, + 3077 + ]], + [[ + 3061, + 3079, + 2256 + ]], + [[ + 2256, + 3079, + 3080 + ]], + [[ + 3078, + 3058, + 3077 + ]], + [[ + 3080, + 3055, + 2256 + ]], + [[ + 3078, + 3076, + 3075 + ]], + [[ + 3075, + 3074, + 3072 + ]], + [[ + 3072, + 3071, + 3070 + ]], + [[ + 3070, + 3069, + 3081 + ]], + [[ + 3081, + 3069, + 2255 + ]], + [[ + 2255, + 3082, + 3083 + ]], + [[ + 3083, + 3081, + 2255 + ]], + [[ + 2259, + 3084, + 3082 + ]], + [[ + 2259, + 3085, + 3084 + ]], + [[ + 2259, + 3086, + 3085 + ]], + [[ + 2259, + 3087, + 3086 + ]], + [[ + 2259, + 3088, + 3087 + ]], + [[ + 2259, + 3089, + 3088 + ]], + [[ + 2259, + 3057, + 3089 + ]], + [[ + 3090, + 3056, + 2259 + ]], + [[ + 3091, + 3090, + 2259 + ]], + [[ + 3092, + 3091, + 2259 + ]], + [[ + 3047, + 3093, + 3043 + ]], + [[ + 2259, + 3094, + 3092 + ]], + [[ + 2259, + 3095, + 3094 + ]], + [[ + 2259, + 3096, + 3095 + ]], + [[ + 2259, + 3097, + 3096 + ]], + [[ + 2259, + 3098, + 3097 + ]], + [[ + 2259, + 2258, + 3098 + ]], + [[ + 3043, + 3093, + 3099 + ]], + [[ + 3045, + 3047, + 3043 + ]], + [[ + 3045, + 3042, + 3046 + ]], + [[ + 3100, + 3101, + 3102 + ]], + [[ + 3100, + 3041, + 3101 + ]], + [[ + 3046, + 3103, + 3104 + ]], + [[ + 3105, + 3106, + 3107 + ]], + [[ + 3108, + 3103, + 3046 + ]], + [[ + 3105, + 3109, + 3106 + ]], + [[ + 3103, + 3110, + 3111 + ]], + [[ + 3103, + 3112, + 3110 + ]], + [[ + 3041, + 3100, + 3042 + ]], + [[ + 3112, + 3113, + 3114 + ]], + [[ + 3115, + 3116, + 3117 + ]], + [[ + 3115, + 3118, + 3116 + ]], + [[ + 3119, + 3120, + 3121 + ]], + [[ + 3122, + 3123, + 3124 + ]], + [[ + 3125, + 3126, + 3127 + ]], + [[ + 3128, + 3129, + 3126 + ]], + [[ + 3130, + 3131, + 3129 + ]], + [[ + 3132, + 3133, + 3134 + ]], + [[ + 3135, + 1830, + 1779 + ]], + [[ + 3136, + 3137, + 3138 + ]], + [[ + 3138, + 3139, + 3140 + ]], + [[ + 3140, + 3141, + 3142 + ]], + [[ + 3142, + 3143, + 3144 + ]], + [[ + 3144, + 3145, + 3146 + ]], + [[ + 3146, + 3122, + 3147 + ]], + [[ + 3147, + 3122, + 3124 + ]], + [[ + 3124, + 3123, + 3148 + ]], + [[ + 3135, + 1779, + 3149 + ]], + [[ + 3148, + 3150, + 3149 + ]], + [[ + 3151, + 3152, + 3136 + ]], + [[ + 3151, + 3132, + 3153 + ]], + [[ + 3149, + 3150, + 3135 + ]], + [[ + 3133, + 3131, + 3154 + ]], + [[ + 3155, + 3156, + 3127 + ]], + [[ + 3150, + 3148, + 3123 + ]], + [[ + 3157, + 3156, + 3155 + ]], + [[ + 3157, + 3119, + 3158 + ]], + [[ + 3146, + 3145, + 3122 + ]], + [[ + 3120, + 3118, + 3115 + ]], + [[ + 3145, + 3144, + 3143 + ]], + [[ + 3139, + 3141, + 3140 + ]], + [[ + 3143, + 3142, + 3141 + ]], + [[ + 3137, + 3139, + 3138 + ]], + [[ + 3152, + 3137, + 3136 + ]], + [[ + 3159, + 3160, + 3161 + ]], + [[ + 3162, + 3163, + 3117 + ]], + [[ + 3162, + 3160, + 3163 + ]], + [[ + 3152, + 3151, + 3153 + ]], + [[ + 3153, + 3132, + 3134 + ]], + [[ + 3130, + 3154, + 3131 + ]], + [[ + 3134, + 3133, + 3154 + ]], + [[ + 3128, + 3130, + 3129 + ]], + [[ + 3125, + 3128, + 3126 + ]], + [[ + 3156, + 3125, + 3127 + ]], + [[ + 3158, + 3156, + 3157 + ]], + [[ + 3121, + 3158, + 3119 + ]], + [[ + 3115, + 3121, + 3120 + ]], + [[ + 3163, + 3115, + 3117 + ]], + [[ + 3113, + 3164, + 3161 + ]], + [[ + 3160, + 3159, + 3163 + ]], + [[ + 3164, + 3113, + 3102 + ]], + [[ + 3161, + 3164, + 3159 + ]], + [[ + 3108, + 3165, + 3103 + ]], + [[ + 3101, + 3041, + 3166 + ]], + [[ + 3164, + 3101, + 3167 + ]], + [[ + 3168, + 3169, + 3170 + ]], + [[ + 3171, + 3172, + 3173 + ]], + [[ + 3174, + 3175, + 3176 + ]], + [[ + 3177, + 3178, + 3179 + ]], + [[ + 3175, + 3180, + 3179 + ]], + [[ + 3181, + 3182, + 3183 + ]], + [[ + 3184, + 3185, + 3186 + ]], + [[ + 3187, + 3188, + 3189 + ]], + [[ + 3190, + 1771, + 1773 + ]], + [[ + 3191, + 3192, + 3193 + ]], + [[ + 3188, + 3194, + 3193 + ]], + [[ + 3192, + 3195, + 3196 + ]], + [[ + 3196, + 3171, + 3173 + ]], + [[ + 3173, + 3172, + 3197 + ]], + [[ + 3198, + 3199, + 3200 + ]], + [[ + 3190, + 1773, + 3199 + ]], + [[ + 3197, + 3201, + 3200 + ]], + [[ + 3202, + 3203, + 3189 + ]], + [[ + 3202, + 3183, + 3204 + ]], + [[ + 3199, + 3198, + 3190 + ]], + [[ + 3181, + 3185, + 3205 + ]], + [[ + 3200, + 3201, + 3198 + ]], + [[ + 3186, + 3178, + 3206 + ]], + [[ + 3207, + 3208, + 3176 + ]], + [[ + 3201, + 3197, + 3172 + ]], + [[ + 3209, + 3210, + 3207 + ]], + [[ + 3209, + 3211, + 3212 + ]], + [[ + 3196, + 3195, + 3171 + ]], + [[ + 3211, + 3169, + 3213 + ]], + [[ + 3195, + 3192, + 3191 + ]], + [[ + 3191, + 3193, + 3194 + ]], + [[ + 3194, + 3188, + 3187 + ]], + [[ + 3204, + 3203, + 3202 + ]], + [[ + 3187, + 3189, + 3203 + ]], + [[ + 3182, + 3204, + 3183 + ]], + [[ + 3205, + 3182, + 3181 + ]], + [[ + 3166, + 3214, + 3170 + ]], + [[ + 3185, + 3184, + 3205 + ]], + [[ + 3186, + 3206, + 3184 + ]], + [[ + 3178, + 3177, + 3206 + ]], + [[ + 3179, + 3180, + 3177 + ]], + [[ + 3175, + 3174, + 3180 + ]], + [[ + 3176, + 3208, + 3174 + ]], + [[ + 3207, + 3210, + 3208 + ]], + [[ + 3209, + 3212, + 3210 + ]], + [[ + 3211, + 3213, + 3212 + ]], + [[ + 3169, + 3168, + 3213 + ]], + [[ + 3170, + 3214, + 3168 + ]], + [[ + 3166, + 3041, + 3214 + ]], + [[ + 3054, + 3053, + 2256 + ]], + [[ + 2258, + 3099, + 3098 + ]], + [[ + 3215, + 3216, + 2257 + ]], + [[ + 2255, + 3068, + 3067 + ]], + [[ + 2259, + 2255, + 2254 + ]], + [[ + 2259, + 3082, + 2255 + ]], + [[ + 3215, + 2257, + 3049 + ]], + [[ + 3049, + 2257, + 2256 + ]], + [[ + 3216, + 3043, + 2257 + ]], + [[ + 3043, + 3099, + 2258 + ]], + [[ + 3164, + 3102, + 3101 + ]], + [[ + 3113, + 3112, + 3165 + ]], + [[ + 3113, + 3165, + 3102 + ]], + [[ + 3112, + 3103, + 3165 + ]], + [[ + 3042, + 3100, + 3046 + ]], + [[ + 3108, + 3046, + 3100 + ]], + [[ + 3109, + 3217, + 3107 + ]], + [[ + 3109, + 3110, + 3106 + ]], + [[ + 3111, + 3109, + 3107 + ]], + [[ + 3111, + 3110, + 3109 + ]], + [[ + 3217, + 3105, + 3107 + ]], + [[ + 3217, + 3109, + 3105 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b2c15e416-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efc86849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3218, + 3219, + 3220 + ]], + [[ + 3221, + 3222, + 3223 + ]], + [[ + 3224, + 3225, + 3226 + ]], + [[ + 3227, + 3228, + 3221 + ]], + [[ + 3229, + 3230, + 3231 + ]], + [[ + 3232, + 3233, + 3234 + ]], + [[ + 3235, + 3236, + 3237 + ]], + [[ + 3238, + 3239, + 3240 + ]], + [[ + 3241, + 3242, + 3243 + ]], + [[ + 3243, + 3244, + 3241 + ]], + [[ + 3241, + 3244, + 3245 + ]], + [[ + 3246, + 3247, + 3248 + ]], + [[ + 3249, + 3245, + 3250 + ]], + [[ + 3251, + 3247, + 3252 + ]], + [[ + 3253, + 3254, + 3255 + ]], + [[ + 3256, + 3252, + 3257 + ]], + [[ + 3256, + 3251, + 3252 + ]], + [[ + 3245, + 3258, + 3259 + ]], + [[ + 3260, + 3261, + 3218 + ]], + [[ + 3262, + 3225, + 3263 + ]], + [[ + 3264, + 3220, + 3265 + ]], + [[ + 3266, + 3265, + 3220 + ]], + [[ + 3267, + 3268, + 3266 + ]], + [[ + 3269, + 3267, + 3270 + ]], + [[ + 3271, + 3269, + 3270 + ]], + [[ + 3272, + 3271, + 3273 + ]], + [[ + 3274, + 3272, + 3275 + ]], + [[ + 3276, + 3277, + 3278 + ]], + [[ + 3279, + 3280, + 3281 + ]], + [[ + 3282, + 3283, + 3284 + ]], + [[ + 3285, + 3286, + 3287 + ]], + [[ + 3288, + 3289, + 3290 + ]], + [[ + 3291, + 3292, + 3293 + ]], + [[ + 3294, + 3295, + 3296 + ]], + [[ + 3297, + 3298, + 3299 + ]], + [[ + 3297, + 3294, + 3300 + ]], + [[ + 3297, + 3301, + 3298 + ]], + [[ + 3297, + 3302, + 3301 + ]], + [[ + 3296, + 3295, + 3303 + ]], + [[ + 3297, + 3304, + 3302 + ]], + [[ + 3297, + 3300, + 3304 + ]], + [[ + 3294, + 3305, + 3300 + ]], + [[ + 3306, + 3289, + 3307 + ]], + [[ + 3295, + 3308, + 3303 + ]], + [[ + 3308, + 3309, + 3310 + ]], + [[ + 3291, + 3311, + 3309 + ]], + [[ + 3293, + 3312, + 3311 + ]], + [[ + 3313, + 3314, + 3315 + ]], + [[ + 3306, + 3292, + 3289 + ]], + [[ + 3289, + 3288, + 3307 + ]], + [[ + 3316, + 3317, + 3288 + ]], + [[ + 3318, + 3319, + 3320 + ]], + [[ + 3321, + 3287, + 3317 + ]], + [[ + 3319, + 3322, + 3323 + ]], + [[ + 3324, + 3318, + 3320 + ]], + [[ + 3325, + 3326, + 3327 + ]], + [[ + 3319, + 3323, + 3320 + ]], + [[ + 3328, + 3329, + 3330 + ]], + [[ + 3322, + 3331, + 3332 + ]], + [[ + 3329, + 3333, + 3330 + ]], + [[ + 3334, + 3282, + 3335 + ]], + [[ + 3336, + 3337, + 3338 + ]], + [[ + 3284, + 3339, + 3335 + ]], + [[ + 3340, + 3276, + 3341 + ]], + [[ + 3330, + 3342, + 3343 + ]], + [[ + 3278, + 3344, + 3274 + ]], + [[ + 3345, + 3341, + 3346 + ]], + [[ + 3278, + 3347, + 3341 + ]], + [[ + 3274, + 3275, + 3347 + ]], + [[ + 3272, + 3273, + 3275 + ]], + [[ + 3271, + 3348, + 3273 + ]], + [[ + 3271, + 3270, + 3348 + ]], + [[ + 3267, + 3349, + 3270 + ]], + [[ + 3267, + 3266, + 3349 + ]], + [[ + 3268, + 3265, + 3266 + ]], + [[ + 3350, + 3220, + 3264 + ]], + [[ + 3218, + 3351, + 3219 + ]], + [[ + 3352, + 3242, + 3241 + ]], + [[ + 3352, + 3353, + 3354 + ]], + [[ + 3355, + 3234, + 3242 + ]], + [[ + 3356, + 3357, + 3358 + ]], + [[ + 3359, + 3238, + 3240 + ]], + [[ + 3227, + 3360, + 3361 + ]], + [[ + 3244, + 3258, + 3245 + ]], + [[ + 3333, + 3362, + 3330 + ]], + [[ + 3363, + 3337, + 3336 + ]], + [[ + 3343, + 3364, + 3346 + ]], + [[ + 3365, + 3366, + 3340 + ]], + [[ + 3346, + 3364, + 3367 + ]], + [[ + 3368, + 3333, + 3363 + ]], + [[ + 3282, + 3284, + 3335 + ]], + [[ + 3369, + 3329, + 3339 + ]], + [[ + 3335, + 3339, + 3370 + ]], + [[ + 3284, + 3369, + 3339 + ]], + [[ + 3327, + 3334, + 3335 + ]], + [[ + 3283, + 3369, + 3284 + ]], + [[ + 3343, + 3363, + 3364 + ]], + [[ + 3333, + 3337, + 3363 + ]], + [[ + 3371, + 3338, + 3346 + ]], + [[ + 3366, + 3276, + 3340 + ]], + [[ + 3372, + 3338, + 3373 + ]], + [[ + 3371, + 3336, + 3338 + ]], + [[ + 3287, + 3324, + 3320 + ]], + [[ + 3324, + 3319, + 3318 + ]], + [[ + 3316, + 3314, + 3317 + ]], + [[ + 3315, + 3285, + 3374 + ]], + [[ + 3337, + 3280, + 3373 + ]], + [[ + 3337, + 3366, + 3280 + ]], + [[ + 3313, + 3321, + 3317 + ]], + [[ + 3374, + 3287, + 3321 + ]], + [[ + 3367, + 3371, + 3346 + ]], + [[ + 3367, + 3336, + 3371 + ]], + [[ + 3375, + 3246, + 3376 + ]], + [[ + 3359, + 3259, + 3238 + ]], + [[ + 3328, + 3330, + 3370 + ]], + [[ + 3343, + 3346, + 3370 + ]], + [[ + 3364, + 3336, + 3367 + ]], + [[ + 3364, + 3363, + 3336 + ]], + [[ + 3253, + 3377, + 3254 + ]], + [[ + 3375, + 3378, + 3379 + ]], + [[ + 3365, + 3281, + 3366 + ]], + [[ + 3280, + 3366, + 3281 + ]], + [[ + 3380, + 3331, + 3322 + ]], + [[ + 3322, + 3381, + 3380 + ]], + [[ + 3382, + 3334, + 3327 + ]], + [[ + 3381, + 3369, + 3334 + ]], + [[ + 3345, + 3340, + 3341 + ]], + [[ + 3383, + 3365, + 3340 + ]], + [[ + 3384, + 3279, + 3281 + ]], + [[ + 3373, + 3280, + 3279 + ]], + [[ + 3372, + 3373, + 3279 + ]], + [[ + 3338, + 3337, + 3373 + ]], + [[ + 3253, + 3255, + 3385 + ]], + [[ + 3248, + 3247, + 3386 + ]], + [[ + 3253, + 3387, + 3251 + ]], + [[ + 3386, + 3247, + 3251 + ]], + [[ + 3376, + 3388, + 3389 + ]], + [[ + 3376, + 3246, + 3254 + ]], + [[ + 3389, + 3253, + 3251 + ]], + [[ + 3254, + 3246, + 3248 + ]], + [[ + 3290, + 3316, + 3288 + ]], + [[ + 3290, + 3314, + 3316 + ]], + [[ + 3286, + 3324, + 3287 + ]], + [[ + 3286, + 3319, + 3324 + ]], + [[ + 3390, + 3384, + 3365 + ]], + [[ + 3346, + 3338, + 3384 + ]], + [[ + 3314, + 3313, + 3317 + ]], + [[ + 3314, + 3290, + 3315 + ]], + [[ + 3362, + 3342, + 3330 + ]], + [[ + 3362, + 3363, + 3343 + ]], + [[ + 3389, + 3251, + 3256 + ]], + [[ + 3387, + 3386, + 3251 + ]], + [[ + 3362, + 3368, + 3363 + ]], + [[ + 3362, + 3333, + 3368 + ]], + [[ + 3389, + 3377, + 3253 + ]], + [[ + 3388, + 3376, + 3377 + ]], + [[ + 3255, + 3254, + 3248 + ]], + [[ + 3377, + 3376, + 3254 + ]], + [[ + 3334, + 3283, + 3282 + ]], + [[ + 3334, + 3369, + 3283 + ]], + [[ + 3390, + 3345, + 3346 + ]], + [[ + 3383, + 3340, + 3345 + ]], + [[ + 3323, + 3332, + 3327 + ]], + [[ + 3332, + 3331, + 3325 + ]], + [[ + 3330, + 3343, + 3370 + ]], + [[ + 3342, + 3362, + 3343 + ]], + [[ + 3390, + 3365, + 3383 + ]], + [[ + 3384, + 3281, + 3365 + ]], + [[ + 3361, + 3360, + 3224 + ]], + [[ + 3361, + 3224, + 3227 + ]], + [[ + 3391, + 3392, + 3393 + ]], + [[ + 3394, + 3395, + 3396 + ]], + [[ + 3397, + 3398, + 3399 + ]], + [[ + 3228, + 3400, + 3221 + ]], + [[ + 3382, + 3380, + 3381 + ]], + [[ + 3326, + 3331, + 3380 + ]], + [[ + 3227, + 3401, + 3360 + ]], + [[ + 3401, + 3227, + 3223 + ]], + [[ + 3384, + 3372, + 3279 + ]], + [[ + 3384, + 3338, + 3372 + ]], + [[ + 3250, + 3379, + 3402 + ]], + [[ + 3224, + 3401, + 3225 + ]], + [[ + 3354, + 3355, + 3242 + ]], + [[ + 3354, + 3234, + 3355 + ]], + [[ + 3250, + 3245, + 3259 + ]], + [[ + 3378, + 3402, + 3379 + ]], + [[ + 3244, + 3259, + 3258 + ]], + [[ + 3375, + 3379, + 3246 + ]], + [[ + 3403, + 3238, + 3244 + ]], + [[ + 3243, + 3403, + 3244 + ]], + [[ + 3352, + 3354, + 3242 + ]], + [[ + 3353, + 3234, + 3354 + ]], + [[ + 3345, + 3390, + 3383 + ]], + [[ + 3346, + 3384, + 3390 + ]], + [[ + 3313, + 3315, + 3321 + ]], + [[ + 3290, + 3285, + 3315 + ]], + [[ + 3404, + 3245, + 3249 + ]], + [[ + 3404, + 3241, + 3245 + ]], + [[ + 3315, + 3374, + 3321 + ]], + [[ + 3285, + 3287, + 3374 + ]], + [[ + 3385, + 3386, + 3387 + ]], + [[ + 3255, + 3248, + 3386 + ]], + [[ + 3224, + 3228, + 3227 + ]], + [[ + 3405, + 3406, + 3407 + ]], + [[ + 3393, + 3392, + 3408 + ]], + [[ + 3399, + 3398, + 3234 + ]], + [[ + 3231, + 3237, + 3229 + ]], + [[ + 3393, + 3358, + 3391 + ]], + [[ + 3222, + 3221, + 3357 + ]], + [[ + 3223, + 3227, + 3221 + ]], + [[ + 3351, + 3223, + 3407 + ]], + [[ + 3223, + 3263, + 3401 + ]], + [[ + 3409, + 3405, + 3410 + ]], + [[ + 3411, + 3261, + 3260 + ]], + [[ + 3350, + 3262, + 3218 + ]], + [[ + 3218, + 3262, + 3260 + ]], + [[ + 3400, + 3228, + 3230 + ]], + [[ + 3412, + 3232, + 3413 + ]], + [[ + 3233, + 3232, + 3230 + ]], + [[ + 3234, + 3353, + 3232 + ]], + [[ + 3253, + 3385, + 3387 + ]], + [[ + 3255, + 3386, + 3385 + ]], + [[ + 3350, + 3218, + 3220 + ]], + [[ + 3261, + 3411, + 3218 + ]], + [[ + 3230, + 3232, + 3231 + ]], + [[ + 3353, + 3413, + 3232 + ]], + [[ + 3263, + 3260, + 3262 + ]], + [[ + 3223, + 3351, + 3260 + ]], + [[ + 3351, + 3411, + 3260 + ]], + [[ + 3351, + 3218, + 3411 + ]], + [[ + 3391, + 3358, + 3357 + ]], + [[ + 3414, + 3415, + 3406 + ]], + [[ + 3416, + 3237, + 3412 + ]], + [[ + 3231, + 3232, + 3237 + ]], + [[ + 3357, + 3356, + 3222 + ]], + [[ + 3417, + 3406, + 3405 + ]], + [[ + 3410, + 3405, + 3407 + ]], + [[ + 3223, + 3222, + 3409 + ]], + [[ + 3406, + 3417, + 3418 + ]], + [[ + 3419, + 3420, + 3229 + ]], + [[ + 3236, + 3229, + 3237 + ]], + [[ + 3236, + 3421, + 3419 + ]], + [[ + 3358, + 3396, + 3356 + ]], + [[ + 3422, + 3393, + 3421 + ]], + [[ + 3327, + 3332, + 3325 + ]], + [[ + 3323, + 3322, + 3332 + ]], + [[ + 3382, + 3326, + 3380 + ]], + [[ + 3325, + 3331, + 3326 + ]], + [[ + 3356, + 3409, + 3222 + ]], + [[ + 3395, + 3394, + 3409 + ]], + [[ + 3244, + 3238, + 3259 + ]], + [[ + 3240, + 3225, + 3247 + ]], + [[ + 3416, + 3412, + 3413 + ]], + [[ + 3237, + 3232, + 3412 + ]], + [[ + 3415, + 3235, + 3413 + ]], + [[ + 3415, + 3423, + 3235 + ]], + [[ + 3419, + 3421, + 3393 + ]], + [[ + 3423, + 3415, + 3414 + ]], + [[ + 3418, + 3414, + 3406 + ]], + [[ + 3421, + 3424, + 3414 + ]], + [[ + 3405, + 3394, + 3417 + ]], + [[ + 3405, + 3409, + 3394 + ]], + [[ + 3420, + 3419, + 3408 + ]], + [[ + 3229, + 3236, + 3419 + ]], + [[ + 3416, + 3235, + 3237 + ]], + [[ + 3424, + 3421, + 3236 + ]], + [[ + 3394, + 3396, + 3417 + ]], + [[ + 3358, + 3393, + 3422 + ]], + [[ + 3356, + 3395, + 3409 + ]], + [[ + 3356, + 3396, + 3395 + ]], + [[ + 3398, + 3397, + 3243 + ]], + [[ + 3243, + 3397, + 3425 + ]], + [[ + 3221, + 3391, + 3357 + ]], + [[ + 3221, + 3392, + 3391 + ]], + [[ + 3233, + 3399, + 3234 + ]], + [[ + 3233, + 3230, + 3228 + ]], + [[ + 3228, + 3397, + 3233 + ]], + [[ + 3426, + 3427, + 3425 + ]], + [[ + 3276, + 3278, + 3341 + ]], + [[ + 3277, + 3344, + 3278 + ]], + [[ + 3326, + 3382, + 3327 + ]], + [[ + 3381, + 3334, + 3382 + ]], + [[ + 3413, + 3235, + 3416 + ]], + [[ + 3423, + 3236, + 3235 + ]], + [[ + 3291, + 3293, + 3311 + ]], + [[ + 3292, + 3312, + 3293 + ]], + [[ + 3312, + 3306, + 3307 + ]], + [[ + 3312, + 3292, + 3306 + ]], + [[ + 3419, + 3393, + 3408 + ]], + [[ + 3421, + 3414, + 3422 + ]], + [[ + 3396, + 3418, + 3417 + ]], + [[ + 3396, + 3358, + 3422 + ]], + [[ + 3418, + 3422, + 3414 + ]], + [[ + 3418, + 3396, + 3422 + ]], + [[ + 3339, + 3328, + 3370 + ]], + [[ + 3339, + 3329, + 3328 + ]], + [[ + 3308, + 3291, + 3309 + ]], + [[ + 3295, + 3292, + 3291 + ]], + [[ + 3223, + 3410, + 3407 + ]], + [[ + 3223, + 3409, + 3410 + ]], + [[ + 3278, + 3274, + 3347 + ]], + [[ + 3344, + 3272, + 3274 + ]], + [[ + 3239, + 3427, + 3240 + ]], + [[ + 3226, + 3225, + 3240 + ]], + [[ + 3246, + 3379, + 3247 + ]], + [[ + 3427, + 3226, + 3240 + ]], + [[ + 3233, + 3397, + 3399 + ]], + [[ + 3425, + 3403, + 3243 + ]], + [[ + 3426, + 3425, + 3397 + ]], + [[ + 3427, + 3239, + 3425 + ]], + [[ + 3376, + 3389, + 3256 + ]], + [[ + 3388, + 3377, + 3389 + ]], + [[ + 3305, + 3296, + 3303 + ]], + [[ + 3305, + 3294, + 3296 + ]], + [[ + 3426, + 3226, + 3427 + ]], + [[ + 3428, + 3228, + 3224 + ]], + [[ + 3428, + 3224, + 3226 + ]], + [[ + 3360, + 3401, + 3224 + ]], + [[ + 3429, + 3250, + 3402 + ]], + [[ + 3429, + 3249, + 3250 + ]], + [[ + 3397, + 3228, + 3428 + ]], + [[ + 3230, + 3420, + 3400 + ]], + [[ + 3303, + 3308, + 3310 + ]], + [[ + 3295, + 3291, + 3308 + ]], + [[ + 3423, + 3424, + 3236 + ]], + [[ + 3423, + 3414, + 3424 + ]], + [[ + 3401, + 3263, + 3225 + ]], + [[ + 3223, + 3260, + 3263 + ]], + [[ + 3428, + 3426, + 3397 + ]], + [[ + 3428, + 3226, + 3426 + ]], + [[ + 3403, + 3239, + 3238 + ]], + [[ + 3403, + 3425, + 3239 + ]], + [[ + 3392, + 3420, + 3408 + ]], + [[ + 3230, + 3229, + 3420 + ]], + [[ + 3392, + 3400, + 3420 + ]], + [[ + 3392, + 3221, + 3400 + ]], + [[ + 3379, + 3240, + 3247 + ]], + [[ + 3379, + 3250, + 3359 + ]], + [[ + 3379, + 3359, + 3240 + ]], + [[ + 3250, + 3259, + 3359 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b2c160b4a-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efebf249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3430, + 3431, + 3432 + ]], + [[ + 3433, + 3434, + 3435 + ]], + [[ + 3436, + 3437, + 3438 + ]], + [[ + 3439, + 3440, + 3441 + ]], + [[ + 3442, + 3443, + 3444 + ]], + [[ + 3445, + 3446, + 3447 + ]], + [[ + 3448, + 3449, + 3450 + ]], + [[ + 3451, + 3452, + 3453 + ]], + [[ + 3454, + 3455, + 3456 + ]], + [[ + 3457, + 3456, + 3458 + ]], + [[ + 3459, + 3458, + 3460 + ]], + [[ + 3461, + 3462, + 3463 + ]], + [[ + 3464, + 3465, + 3466 + ]], + [[ + 3467, + 3468, + 3469 + ]], + [[ + 3470, + 3471, + 3472 + ]], + [[ + 3473, + 3474, + 3475 + ]], + [[ + 3476, + 3477, + 3478 + ]], + [[ + 3479, + 3437, + 3452 + ]], + [[ + 3480, + 3481, + 3482 + ]], + [[ + 3483, + 3484, + 3485 + ]], + [[ + 3486, + 3487, + 3488 + ]], + [[ + 3489, + 3490, + 3491 + ]], + [[ + 3492, + 3493, + 3494 + ]], + [[ + 3495, + 3496, + 3497 + ]], + [[ + 3498, + 3499, + 3500 + ]], + [[ + 3437, + 3501, + 3502 + ]], + [[ + 3503, + 3504, + 3505 + ]], + [[ + 3506, + 3507, + 3508 + ]], + [[ + 3509, + 3510, + 3511 + ]], + [[ + 3472, + 3471, + 3512 + ]], + [[ + 3513, + 3431, + 3514 + ]], + [[ + 3515, + 3512, + 3471 + ]], + [[ + 3516, + 3517, + 3518 + ]], + [[ + 3519, + 3520, + 3521 + ]], + [[ + 3522, + 3520, + 3519 + ]], + [[ + 3478, + 3440, + 3523 + ]], + [[ + 3466, + 3524, + 3525 + ]], + [[ + 3526, + 3478, + 3477 + ]], + [[ + 3527, + 3519, + 3528 + ]], + [[ + 3529, + 3530, + 3531 + ]], + [[ + 3532, + 3469, + 3533 + ]], + [[ + 3534, + 3476, + 3535 + ]], + [[ + 3536, + 3517, + 3516 + ]], + [[ + 3537, + 3538, + 3539 + ]], + [[ + 3540, + 3541, + 3542 + ]], + [[ + 3541, + 3543, + 3544 + ]], + [[ + 3545, + 3546, + 3547 + ]], + [[ + 3533, + 3548, + 3532 + ]], + [[ + 3542, + 3541, + 3549 + ]], + [[ + 3550, + 3544, + 3551 + ]], + [[ + 3543, + 3552, + 3467 + ]], + [[ + 3553, + 3525, + 3554 + ]], + [[ + 3534, + 3522, + 3519 + ]], + [[ + 3555, + 3517, + 3556 + ]], + [[ + 3543, + 3557, + 3544 + ]], + [[ + 3467, + 3469, + 3557 + ]], + [[ + 3557, + 3543, + 3467 + ]], + [[ + 3548, + 3468, + 3554 + ]], + [[ + 3552, + 3543, + 3541 + ]], + [[ + 3552, + 3558, + 3467 + ]], + [[ + 3559, + 3560, + 3523 + ]], + [[ + 3520, + 3478, + 3530 + ]], + [[ + 3561, + 3562, + 3530 + ]], + [[ + 3529, + 3520, + 3530 + ]], + [[ + 3562, + 3521, + 3531 + ]], + [[ + 3521, + 3520, + 3529 + ]], + [[ + 3545, + 3547, + 3563 + ]], + [[ + 3538, + 3478, + 3539 + ]], + [[ + 3564, + 3526, + 3477 + ]], + [[ + 3539, + 3478, + 3526 + ]], + [[ + 3541, + 3544, + 3550 + ]], + [[ + 3557, + 3469, + 3565 + ]], + [[ + 3541, + 3550, + 3549 + ]], + [[ + 3544, + 3557, + 3551 + ]], + [[ + 3527, + 3546, + 3566 + ]], + [[ + 3547, + 3567, + 3563 + ]], + [[ + 3568, + 3549, + 3550 + ]], + [[ + 3539, + 3542, + 3549 + ]], + [[ + 3565, + 3537, + 3569 + ]], + [[ + 3539, + 3549, + 3568 + ]], + [[ + 3536, + 3525, + 3570 + ]], + [[ + 3525, + 3553, + 3466 + ]], + [[ + 3555, + 3571, + 3537 + ]], + [[ + 3568, + 3550, + 3551 + ]], + [[ + 3534, + 3535, + 3522 + ]], + [[ + 3468, + 3553, + 3554 + ]], + [[ + 3561, + 3572, + 3562 + ]], + [[ + 3562, + 3531, + 3530 + ]], + [[ + 3541, + 3540, + 3552 + ]], + [[ + 3527, + 3468, + 3558 + ]], + [[ + 3468, + 3467, + 3558 + ]], + [[ + 3468, + 3533, + 3469 + ]], + [[ + 3468, + 3548, + 3533 + ]], + [[ + 3518, + 3517, + 3532 + ]], + [[ + 3563, + 3567, + 3542 + ]], + [[ + 3547, + 3558, + 3540 + ]], + [[ + 3573, + 3574, + 3575 + ]], + [[ + 3576, + 3577, + 3431 + ]], + [[ + 3439, + 3560, + 3559 + ]], + [[ + 3523, + 3530, + 3478 + ]], + [[ + 3527, + 3534, + 3519 + ]], + [[ + 3478, + 3520, + 3522 + ]], + [[ + 3578, + 3466, + 3553 + ]], + [[ + 3578, + 3464, + 3466 + ]], + [[ + 3566, + 3476, + 3534 + ]], + [[ + 3478, + 3522, + 3535 + ]], + [[ + 3579, + 3580, + 3553 + ]], + [[ + 3581, + 3582, + 3583 + ]], + [[ + 3584, + 3582, + 3581 + ]], + [[ + 3585, + 3586, + 3570 + ]], + [[ + 3555, + 3537, + 3565 + ]], + [[ + 3551, + 3557, + 3565 + ]], + [[ + 3528, + 3587, + 3441 + ]], + [[ + 3521, + 3529, + 3531 + ]], + [[ + 3588, + 3577, + 3576 + ]], + [[ + 3589, + 3431, + 3577 + ]], + [[ + 3575, + 3590, + 3573 + ]], + [[ + 3432, + 3574, + 3430 + ]], + [[ + 3591, + 3592, + 3593 + ]], + [[ + 3591, + 3594, + 3575 + ]], + [[ + 3595, + 3596, + 3597 + ]], + [[ + 3598, + 3590, + 3594 + ]], + [[ + 3515, + 3471, + 3599 + ]], + [[ + 3600, + 3601, + 3602 + ]], + [[ + 3575, + 3594, + 3590 + ]], + [[ + 3603, + 3434, + 3433 + ]], + [[ + 3472, + 3604, + 3470 + ]], + [[ + 3605, + 3513, + 3604 + ]], + [[ + 3606, + 3596, + 3607 + ]], + [[ + 3470, + 3608, + 3434 + ]], + [[ + 3553, + 3464, + 3578 + ]], + [[ + 3609, + 3584, + 3581 + ]], + [[ + 3553, + 3609, + 3464 + ]], + [[ + 3584, + 3610, + 3582 + ]], + [[ + 3611, + 3610, + 3584 + ]], + [[ + 3538, + 3583, + 3610 + ]], + [[ + 3580, + 3611, + 3584 + ]], + [[ + 3611, + 3538, + 3610 + ]], + [[ + 3526, + 3563, + 3539 + ]], + [[ + 3526, + 3564, + 3563 + ]], + [[ + 3546, + 3612, + 3566 + ]], + [[ + 3546, + 3564, + 3477 + ]], + [[ + 3465, + 3581, + 3583 + ]], + [[ + 3465, + 3609, + 3581 + ]], + [[ + 3609, + 3580, + 3584 + ]], + [[ + 3613, + 3579, + 3614 + ]], + [[ + 3553, + 3580, + 3609 + ]], + [[ + 3613, + 3611, + 3580 + ]], + [[ + 3563, + 3542, + 3539 + ]], + [[ + 3540, + 3558, + 3552 + ]], + [[ + 3567, + 3540, + 3542 + ]], + [[ + 3567, + 3547, + 3540 + ]], + [[ + 3579, + 3613, + 3580 + ]], + [[ + 3579, + 3615, + 3614 + ]], + [[ + 3616, + 3617, + 3618 + ]], + [[ + 3561, + 3530, + 3619 + ]], + [[ + 3620, + 3621, + 3622 + ]], + [[ + 3623, + 3624, + 3625 + ]], + [[ + 3554, + 3518, + 3548 + ]], + [[ + 3554, + 3516, + 3518 + ]], + [[ + 3439, + 3559, + 3440 + ]], + [[ + 3560, + 3618, + 3523 + ]], + [[ + 3532, + 3565, + 3469 + ]], + [[ + 3465, + 3464, + 3609 + ]], + [[ + 3537, + 3571, + 3586 + ]], + [[ + 3556, + 3536, + 3571 + ]], + [[ + 3570, + 3586, + 3536 + ]], + [[ + 3556, + 3517, + 3536 + ]], + [[ + 3569, + 3551, + 3565 + ]], + [[ + 3571, + 3536, + 3586 + ]], + [[ + 3568, + 3537, + 3539 + ]], + [[ + 3586, + 3538, + 3537 + ]], + [[ + 3565, + 3532, + 3555 + ]], + [[ + 3548, + 3518, + 3532 + ]], + [[ + 3610, + 3583, + 3582 + ]], + [[ + 3538, + 3586, + 3583 + ]], + [[ + 3587, + 3562, + 3572 + ]], + [[ + 3587, + 3521, + 3562 + ]], + [[ + 3593, + 3515, + 3626 + ]], + [[ + 3470, + 3599, + 3471 + ]], + [[ + 3612, + 3546, + 3477 + ]], + [[ + 3545, + 3563, + 3564 + ]], + [[ + 3525, + 3516, + 3554 + ]], + [[ + 3525, + 3536, + 3516 + ]], + [[ + 3432, + 3591, + 3575 + ]], + [[ + 3605, + 3512, + 3515 + ]], + [[ + 3524, + 3570, + 3525 + ]], + [[ + 3524, + 3585, + 3570 + ]], + [[ + 3441, + 3468, + 3528 + ]], + [[ + 3441, + 3553, + 3468 + ]], + [[ + 3593, + 3592, + 3515 + ]], + [[ + 3592, + 3605, + 3515 + ]], + [[ + 3595, + 3513, + 3514 + ]], + [[ + 3605, + 3591, + 3513 + ]], + [[ + 3616, + 3627, + 3441 + ]], + [[ + 3618, + 3560, + 3627 + ]], + [[ + 3528, + 3521, + 3587 + ]], + [[ + 3528, + 3519, + 3521 + ]], + [[ + 3628, + 3465, + 3583 + ]], + [[ + 3524, + 3466, + 3465 + ]], + [[ + 3589, + 3629, + 3431 + ]], + [[ + 3630, + 3431, + 3629 + ]], + [[ + 3591, + 3432, + 3431 + ]], + [[ + 3575, + 3574, + 3432 + ]], + [[ + 3517, + 3555, + 3532 + ]], + [[ + 3556, + 3571, + 3555 + ]], + [[ + 3461, + 3463, + 3460 + ]], + [[ + 3631, + 3632, + 3484 + ]], + [[ + 3483, + 3633, + 3634 + ]], + [[ + 3635, + 3485, + 3636 + ]], + [[ + 3637, + 3480, + 3638 + ]], + [[ + 3639, + 3579, + 3632 + ]], + [[ + 3640, + 3600, + 3641 + ]], + [[ + 3642, + 3434, + 3603 + ]], + [[ + 3643, + 3501, + 3644 + ]], + [[ + 3502, + 3434, + 3437 + ]], + [[ + 3645, + 3646, + 3438 + ]], + [[ + 3647, + 3648, + 3436 + ]], + [[ + 3649, + 3650, + 3651 + ]], + [[ + 3652, + 3653, + 3654 + ]], + [[ + 3546, + 3527, + 3558 + ]], + [[ + 3528, + 3468, + 3527 + ]], + [[ + 3547, + 3546, + 3558 + ]], + [[ + 3545, + 3564, + 3546 + ]], + [[ + 3655, + 3656, + 3657 + ]], + [[ + 3658, + 3637, + 3638 + ]], + [[ + 3659, + 3660, + 3661 + ]], + [[ + 3625, + 3629, + 3589 + ]], + [[ + 3662, + 3663, + 3648 + ]], + [[ + 3644, + 3437, + 3664 + ]], + [[ + 3665, + 3666, + 3667 + ]], + [[ + 3661, + 3660, + 3603 + ]], + [[ + 3668, + 3669, + 3670 + ]], + [[ + 3671, + 3606, + 3607 + ]], + [[ + 3577, + 3588, + 3672 + ]], + [[ + 3621, + 3660, + 3659 + ]], + [[ + 3673, + 3446, + 3674 + ]], + [[ + 3675, + 3444, + 3676 + ]], + [[ + 3445, + 3677, + 3446 + ]], + [[ + 3678, + 3679, + 3673 + ]], + [[ + 3461, + 3460, + 3458 + ]], + [[ + 3680, + 3484, + 3483 + ]], + [[ + 3674, + 3681, + 3452 + ]], + [[ + 3682, + 3683, + 3684 + ]], + [[ + 3674, + 3449, + 3685 + ]], + [[ + 3686, + 3681, + 3687 + ]], + [[ + 3688, + 3453, + 3452 + ]], + [[ + 3689, + 3690, + 3691 + ]], + [[ + 3451, + 3683, + 3692 + ]], + [[ + 3495, + 3688, + 3496 + ]], + [[ + 3693, + 3645, + 3694 + ]], + [[ + 3695, + 3497, + 3496 + ]], + [[ + 3445, + 3450, + 3677 + ]], + [[ + 3674, + 3446, + 3677 + ]], + [[ + 3696, + 3448, + 3450 + ]], + [[ + 3674, + 3677, + 3450 + ]], + [[ + 3446, + 3697, + 3447 + ]], + [[ + 3698, + 3699, + 3700 + ]], + [[ + 3701, + 3448, + 3696 + ]], + [[ + 3702, + 3703, + 3704 + ]], + [[ + 3705, + 3706, + 3445 + ]], + [[ + 3448, + 3701, + 3707 + ]], + [[ + 3447, + 3697, + 3493 + ]], + [[ + 3446, + 3673, + 3679 + ]], + [[ + 3628, + 3585, + 3524 + ]], + [[ + 3583, + 3586, + 3585 + ]], + [[ + 3505, + 3708, + 3709 + ]], + [[ + 3710, + 3504, + 3711 + ]], + [[ + 3712, + 3713, + 3714 + ]], + [[ + 3715, + 3716, + 3717 + ]], + [[ + 3718, + 3719, + 3720 + ]], + [[ + 3721, + 3722, + 3650 + ]], + [[ + 3723, + 3724, + 3725 + ]], + [[ + 3726, + 3727, + 3717 + ]], + [[ + 3718, + 3503, + 3719 + ]], + [[ + 3711, + 3728, + 3729 + ]], + [[ + 3725, + 3724, + 3730 + ]], + [[ + 3503, + 3731, + 3504 + ]], + [[ + 3732, + 3733, + 3734 + ]], + [[ + 3587, + 3572, + 3733 + ]], + [[ + 3735, + 3736, + 3737 + ]], + [[ + 3737, + 3510, + 3738 + ]], + [[ + 3739, + 3740, + 3698 + ]], + [[ + 3741, + 3446, + 3679 + ]], + [[ + 3699, + 3704, + 3700 + ]], + [[ + 3703, + 3697, + 3741 + ]], + [[ + 3465, + 3628, + 3524 + ]], + [[ + 3583, + 3585, + 3628 + ]], + [[ + 3742, + 3449, + 3448 + ]], + [[ + 3674, + 3450, + 3449 + ]], + [[ + 3742, + 3743, + 3685 + ]], + [[ + 3744, + 3496, + 3688 + ]], + [[ + 3745, + 3690, + 3746 + ]], + [[ + 3689, + 3747, + 3748 + ]], + [[ + 3749, + 3750, + 3751 + ]], + [[ + 3752, + 3753, + 3754 + ]], + [[ + 3740, + 3442, + 3444 + ]], + [[ + 3443, + 3755, + 3444 + ]], + [[ + 3739, + 3756, + 3757 + ]], + [[ + 3700, + 3679, + 3756 + ]], + [[ + 3493, + 3492, + 3447 + ]], + [[ + 3758, + 3696, + 3705 + ]], + [[ + 3759, + 3760, + 3761 + ]], + [[ + 3718, + 3720, + 3762 + ]], + [[ + 3763, + 3704, + 3699 + ]], + [[ + 3700, + 3756, + 3698 + ]], + [[ + 3686, + 3764, + 3765 + ]], + [[ + 3689, + 3748, + 3695 + ]], + [[ + 3597, + 3596, + 3766 + ]], + [[ + 3767, + 3768, + 3769 + ]], + [[ + 3770, + 3771, + 3772 + ]], + [[ + 3773, + 3774, + 3713 + ]], + [[ + 3775, + 3776, + 3777 + ]], + [[ + 3778, + 3779, + 3780 + ]], + [[ + 3781, + 3514, + 3776 + ]], + [[ + 3641, + 3600, + 3782 + ]], + [[ + 3783, + 3784, + 3785 + ]], + [[ + 3786, + 3752, + 3751 + ]], + [[ + 3787, + 3784, + 3776 + ]], + [[ + 3788, + 3775, + 3789 + ]], + [[ + 3790, + 3791, + 3714 + ]], + [[ + 3709, + 3708, + 3710 + ]], + [[ + 3790, + 3792, + 3793 + ]], + [[ + 3794, + 3795, + 3761 + ]], + [[ + 3796, + 3431, + 3430 + ]], + [[ + 3797, + 3798, + 3796 + ]], + [[ + 3799, + 3573, + 3590 + ]], + [[ + 3430, + 3574, + 3573 + ]], + [[ + 3800, + 3707, + 3676 + ]], + [[ + 3707, + 3800, + 3742 + ]], + [[ + 3636, + 3801, + 3802 + ]], + [[ + 3803, + 3456, + 3457 + ]], + [[ + 3804, + 3635, + 3486 + ]], + [[ + 3805, + 3801, + 3806 + ]], + [[ + 3807, + 3483, + 3804 + ]], + [[ + 3802, + 3801, + 3808 + ]], + [[ + 3633, + 3807, + 3487 + ]], + [[ + 3488, + 3804, + 3486 + ]], + [[ + 3635, + 3802, + 3486 + ]], + [[ + 3809, + 3810, + 3811 + ]], + [[ + 3487, + 3457, + 3458 + ]], + [[ + 3812, + 3802, + 3808 + ]], + [[ + 3803, + 3813, + 3456 + ]], + [[ + 3809, + 3811, + 3806 + ]], + [[ + 3706, + 3696, + 3450 + ]], + [[ + 3742, + 3800, + 3743 + ]], + [[ + 3641, + 3814, + 3815 + ]], + [[ + 3816, + 3817, + 3818 + ]], + [[ + 3819, + 3820, + 3814 + ]], + [[ + 3816, + 3818, + 3821 + ]], + [[ + 3779, + 3822, + 3823 + ]], + [[ + 3819, + 3814, + 3641 + ]], + [[ + 3823, + 3824, + 3820 + ]], + [[ + 3825, + 3814, + 3826 + ]], + [[ + 3705, + 3696, + 3706 + ]], + [[ + 3701, + 3676, + 3707 + ]], + [[ + 3605, + 3604, + 3472 + ]], + [[ + 3513, + 3827, + 3604 + ]], + [[ + 3605, + 3472, + 3512 + ]], + [[ + 3604, + 3827, + 3470 + ]], + [[ + 3828, + 3829, + 3631 + ]], + [[ + 3830, + 3831, + 3632 + ]], + [[ + 3692, + 3683, + 3832 + ]], + [[ + 3684, + 3497, + 3833 + ]], + [[ + 3834, + 3835, + 3682 + ]], + [[ + 3682, + 3832, + 3683 + ]], + [[ + 3495, + 3451, + 3453 + ]], + [[ + 3684, + 3683, + 3451 + ]], + [[ + 3836, + 3835, + 3498 + ]], + [[ + 3646, + 3436, + 3438 + ]], + [[ + 3442, + 3739, + 3837 + ]], + [[ + 3756, + 3679, + 3757 + ]], + [[ + 3456, + 3838, + 3673 + ]], + [[ + 3839, + 3811, + 3840 + ]], + [[ + 3841, + 3842, + 3455 + ]], + [[ + 3843, + 3844, + 3845 + ]], + [[ + 3846, + 3489, + 3491 + ]], + [[ + 3847, + 3842, + 3841 + ]], + [[ + 3848, + 3845, + 3844 + ]], + [[ + 3848, + 3849, + 3845 + ]], + [[ + 3850, + 3841, + 3851 + ]], + [[ + 3852, + 3845, + 3849 + ]], + [[ + 3839, + 3850, + 3853 + ]], + [[ + 3847, + 3854, + 3852 + ]], + [[ + 3850, + 3855, + 3841 + ]], + [[ + 3856, + 3490, + 3844 + ]], + [[ + 3786, + 3789, + 3753 + ]], + [[ + 3775, + 3857, + 3776 + ]], + [[ + 3858, + 3816, + 3859 + ]], + [[ + 3774, + 3792, + 3790 + ]], + [[ + 3859, + 3816, + 3821 + ]], + [[ + 3858, + 3817, + 3816 + ]], + [[ + 3860, + 3629, + 3625 + ]], + [[ + 3430, + 3573, + 3799 + ]], + [[ + 3861, + 3862, + 3863 + ]], + [[ + 3796, + 3576, + 3431 + ]], + [[ + 3457, + 3812, + 3808 + ]], + [[ + 3635, + 3636, + 3802 + ]], + [[ + 3662, + 3644, + 3663 + ]], + [[ + 3501, + 3437, + 3644 + ]], + [[ + 3808, + 3805, + 3457 + ]], + [[ + 3808, + 3801, + 3805 + ]], + [[ + 3783, + 3864, + 3865 + ]], + [[ + 3865, + 3866, + 3867 + ]], + [[ + 3608, + 3771, + 3867 + ]], + [[ + 3868, + 3514, + 3781 + ]], + [[ + 3865, + 3864, + 3866 + ]], + [[ + 3713, + 3716, + 3715 + ]], + [[ + 3594, + 3593, + 3598 + ]], + [[ + 3470, + 3434, + 3799 + ]], + [[ + 3513, + 3597, + 3827 + ]], + [[ + 3626, + 3515, + 3599 + ]], + [[ + 3867, + 3866, + 3434 + ]], + [[ + 3864, + 3869, + 3866 + ]], + [[ + 3788, + 3789, + 3786 + ]], + [[ + 3870, + 3778, + 3780 + ]], + [[ + 3869, + 3871, + 3866 + ]], + [[ + 3869, + 3857, + 3871 + ]], + [[ + 3686, + 3765, + 3745 + ]], + [[ + 3687, + 3681, + 3685 + ]], + [[ + 3616, + 3618, + 3627 + ]], + [[ + 3872, + 3523, + 3618 + ]], + [[ + 3566, + 3534, + 3527 + ]], + [[ + 3566, + 3612, + 3476 + ]], + [[ + 3635, + 3483, + 3485 + ]], + [[ + 3634, + 3873, + 3680 + ]], + [[ + 3498, + 3874, + 3499 + ]], + [[ + 3438, + 3479, + 3694 + ]], + [[ + 3875, + 3876, + 3661 + ]], + [[ + 3877, + 3621, + 3863 + ]], + [[ + 3433, + 3875, + 3661 + ]], + [[ + 3661, + 3876, + 3659 + ]], + [[ + 3878, + 3879, + 3880 + ]], + [[ + 3666, + 3876, + 3875 + ]], + [[ + 3667, + 3666, + 3875 + ]], + [[ + 3622, + 3630, + 3620 + ]], + [[ + 3700, + 3741, + 3679 + ]], + [[ + 3697, + 3446, + 3741 + ]], + [[ + 3881, + 3763, + 3699 + ]], + [[ + 3704, + 3741, + 3700 + ]], + [[ + 3568, + 3569, + 3537 + ]], + [[ + 3568, + 3551, + 3569 + ]], + [[ + 3737, + 3654, + 3759 + ]], + [[ + 3882, + 3883, + 3509 + ]], + [[ + 3650, + 3649, + 3884 + ]], + [[ + 3883, + 3735, + 3738 + ]], + [[ + 3650, + 3884, + 3736 + ]], + [[ + 3649, + 3736, + 3884 + ]], + [[ + 3496, + 3744, + 3690 + ]], + [[ + 3744, + 3681, + 3746 + ]], + [[ + 3811, + 3853, + 3456 + ]], + [[ + 3455, + 3838, + 3456 + ]], + [[ + 3806, + 3811, + 3456 + ]], + [[ + 3810, + 3840, + 3811 + ]], + [[ + 3451, + 3495, + 3497 + ]], + [[ + 3453, + 3688, + 3495 + ]], + [[ + 3601, + 3826, + 3602 + ]], + [[ + 3885, + 3886, + 3887 + ]], + [[ + 3653, + 3888, + 3711 + ]], + [[ + 3721, + 3650, + 3888 + ]], + [[ + 3874, + 3693, + 3694 + ]], + [[ + 3647, + 3646, + 3645 + ]], + [[ + 3599, + 3470, + 3626 + ]], + [[ + 3766, + 3608, + 3470 + ]], + [[ + 3889, + 3890, + 3502 + ]], + [[ + 3435, + 3434, + 3502 + ]], + [[ + 3891, + 3892, + 3893 + ]], + [[ + 3880, + 3666, + 3665 + ]], + [[ + 3435, + 3665, + 3667 + ]], + [[ + 3880, + 3894, + 3666 + ]], + [[ + 3895, + 3673, + 3896 + ]], + [[ + 3846, + 3896, + 3489 + ]], + [[ + 3837, + 3897, + 3442 + ]], + [[ + 3491, + 3755, + 3443 + ]], + [[ + 3898, + 3782, + 3859 + ]], + [[ + 3899, + 3774, + 3773 + ]], + [[ + 3714, + 3900, + 3790 + ]], + [[ + 3901, + 3885, + 3887 + ]], + [[ + 3902, + 3759, + 3761 + ]], + [[ + 3762, + 3720, + 3710 + ]], + [[ + 3653, + 3711, + 3729 + ]], + [[ + 3888, + 3903, + 3711 + ]], + [[ + 3720, + 3719, + 3709 + ]], + [[ + 3904, + 3710, + 3708 + ]], + [[ + 3723, + 3710, + 3794 + ]], + [[ + 3761, + 3723, + 3794 + ]], + [[ + 3434, + 3773, + 3903 + ]], + [[ + 3714, + 3791, + 3712 + ]], + [[ + 3794, + 3710, + 3711 + ]], + [[ + 3711, + 3903, + 3713 + ]], + [[ + 3641, + 3782, + 3866 + ]], + [[ + 3600, + 3885, + 3901 + ]], + [[ + 3903, + 3773, + 3713 + ]], + [[ + 3905, + 3906, + 3898 + ]], + [[ + 3866, + 3773, + 3434 + ]], + [[ + 3866, + 3782, + 3773 + ]], + [[ + 3907, + 3899, + 3906 + ]], + [[ + 3773, + 3782, + 3898 + ]], + [[ + 3792, + 3899, + 3907 + ]], + [[ + 3908, + 3905, + 3821 + ]], + [[ + 3858, + 3901, + 3887 + ]], + [[ + 3782, + 3600, + 3901 + ]], + [[ + 3793, + 3792, + 3909 + ]], + [[ + 3774, + 3899, + 3792 + ]], + [[ + 3827, + 3766, + 3470 + ]], + [[ + 3608, + 3867, + 3434 + ]], + [[ + 3910, + 3615, + 3579 + ]], + [[ + 3614, + 3611, + 3613 + ]], + [[ + 3911, + 3481, + 3480 + ]], + [[ + 3911, + 3615, + 3481 + ]], + [[ + 3910, + 3482, + 3481 + ]], + [[ + 3481, + 3615, + 3910 + ]], + [[ + 3912, + 3913, + 3658 + ]], + [[ + 3480, + 3482, + 3638 + ]], + [[ + 3914, + 3912, + 3658 + ]], + [[ + 3473, + 3637, + 3913 + ]], + [[ + 3915, + 3914, + 3639 + ]], + [[ + 3638, + 3482, + 3639 + ]], + [[ + 3631, + 3830, + 3632 + ]], + [[ + 3916, + 3473, + 3913 + ]], + [[ + 3758, + 3675, + 3676 + ]], + [[ + 3758, + 3705, + 3675 + ]], + [[ + 3764, + 3800, + 3676 + ]], + [[ + 3745, + 3691, + 3690 + ]], + [[ + 3800, + 3917, + 3743 + ]], + [[ + 3800, + 3764, + 3917 + ]], + [[ + 3904, + 3504, + 3710 + ]], + [[ + 3505, + 3719, + 3503 + ]], + [[ + 3794, + 3711, + 3713 + ]], + [[ + 3728, + 3731, + 3729 + ]], + [[ + 3784, + 3783, + 3670 + ]], + [[ + 3781, + 3918, + 3868 + ]], + [[ + 3770, + 3772, + 3919 + ]], + [[ + 3920, + 3606, + 3671 + ]], + [[ + 3771, + 3918, + 3772 + ]], + [[ + 3769, + 3768, + 3868 + ]], + [[ + 3771, + 3921, + 3918 + ]], + [[ + 3769, + 3608, + 3767 + ]], + [[ + 3781, + 3669, + 3919 + ]], + [[ + 3669, + 3922, + 3770 + ]], + [[ + 3771, + 3770, + 3867 + ]], + [[ + 3919, + 3669, + 3770 + ]], + [[ + 3787, + 3869, + 3785 + ]], + [[ + 3865, + 3668, + 3670 + ]], + [[ + 3868, + 3768, + 3514 + ]], + [[ + 3769, + 3921, + 3608 + ]], + [[ + 3772, + 3918, + 3781 + ]], + [[ + 3918, + 3921, + 3868 + ]], + [[ + 3625, + 3589, + 3623 + ]], + [[ + 3923, + 3623, + 3672 + ]], + [[ + 3923, + 3588, + 3798 + ]], + [[ + 3923, + 3672, + 3588 + ]], + [[ + 3430, + 3799, + 3797 + ]], + [[ + 3626, + 3470, + 3799 + ]], + [[ + 3799, + 3624, + 3797 + ]], + [[ + 3624, + 3623, + 3923 + ]], + [[ + 3873, + 3924, + 3484 + ]], + [[ + 3462, + 3461, + 3655 + ]], + [[ + 3639, + 3658, + 3638 + ]], + [[ + 3913, + 3637, + 3658 + ]], + [[ + 3838, + 3896, + 3673 + ]], + [[ + 3838, + 3848, + 3489 + ]], + [[ + 3443, + 3925, + 3491 + ]], + [[ + 3443, + 3897, + 3925 + ]], + [[ + 3704, + 3703, + 3741 + ]], + [[ + 3493, + 3697, + 3703 + ]], + [[ + 3731, + 3654, + 3653 + ]], + [[ + 3654, + 3722, + 3721 + ]], + [[ + 3898, + 3859, + 3821 + ]], + [[ + 3782, + 3858, + 3859 + ]], + [[ + 3926, + 3734, + 3619 + ]], + [[ + 3733, + 3572, + 3561 + ]], + [[ + 3734, + 3561, + 3619 + ]], + [[ + 3734, + 3733, + 3561 + ]], + [[ + 3459, + 3460, + 3634 + ]], + [[ + 3463, + 3924, + 3460 + ]], + [[ + 3893, + 3892, + 3643 + ]], + [[ + 3890, + 3927, + 3879 + ]], + [[ + 3501, + 3889, + 3502 + ]], + [[ + 3501, + 3892, + 3891 + ]], + [[ + 3747, + 3764, + 3676 + ]], + [[ + 3747, + 3691, + 3765 + ]], + [[ + 3460, + 3873, + 3634 + ]], + [[ + 3460, + 3924, + 3873 + ]], + [[ + 3745, + 3765, + 3691 + ]], + [[ + 3764, + 3747, + 3765 + ]], + [[ + 3698, + 3740, + 3444 + ]], + [[ + 3698, + 3756, + 3739 + ]], + [[ + 3853, + 3851, + 3454 + ]], + [[ + 3849, + 3838, + 3455 + ]], + [[ + 3538, + 3637, + 3475 + ]], + [[ + 3911, + 3480, + 3637 + ]], + [[ + 3928, + 3736, + 3649 + ]], + [[ + 3654, + 3737, + 3736 + ]], + [[ + 3489, + 3848, + 3844 + ]], + [[ + 3838, + 3849, + 3848 + ]], + [[ + 3715, + 3717, + 3929 + ]], + [[ + 3716, + 3713, + 3726 + ]], + [[ + 3930, + 3759, + 3931 + ]], + [[ + 3909, + 3737, + 3759 + ]], + [[ + 3723, + 3760, + 3724 + ]], + [[ + 3759, + 3724, + 3760 + ]], + [[ + 3730, + 3724, + 3503 + ]], + [[ + 3503, + 3654, + 3731 + ]], + [[ + 3698, + 3881, + 3699 + ]], + [[ + 3763, + 3702, + 3704 + ]], + [[ + 3826, + 3814, + 3824 + ]], + [[ + 3908, + 3909, + 3907 + ]], + [[ + 3780, + 3823, + 3820 + ]], + [[ + 3886, + 3817, + 3887 + ]], + [[ + 3820, + 3824, + 3814 + ]], + [[ + 3776, + 3909, + 3818 + ]], + [[ + 3870, + 3932, + 3778 + ]], + [[ + 3779, + 3932, + 3822 + ]], + [[ + 3933, + 3750, + 3822 + ]], + [[ + 3823, + 3780, + 3779 + ]], + [[ + 3933, + 3932, + 3870 + ]], + [[ + 3779, + 3778, + 3932 + ]], + [[ + 3917, + 3686, + 3687 + ]], + [[ + 3917, + 3764, + 3686 + ]], + [[ + 3837, + 3739, + 3757 + ]], + [[ + 3442, + 3740, + 3739 + ]], + [[ + 3678, + 3837, + 3757 + ]], + [[ + 3897, + 3443, + 3442 + ]], + [[ + 3678, + 3897, + 3837 + ]], + [[ + 3895, + 3896, + 3846 + ]], + [[ + 3805, + 3803, + 3457 + ]], + [[ + 3813, + 3806, + 3456 + ]], + [[ + 3801, + 3809, + 3806 + ]], + [[ + 3801, + 3810, + 3809 + ]], + [[ + 3732, + 3616, + 3441 + ]], + [[ + 3732, + 3734, + 3926 + ]], + [[ + 3618, + 3617, + 3872 + ]], + [[ + 3617, + 3732, + 3926 + ]], + [[ + 3872, + 3619, + 3523 + ]], + [[ + 3872, + 3926, + 3619 + ]], + [[ + 3825, + 3826, + 3601 + ]], + [[ + 3824, + 3776, + 3818 + ]], + [[ + 3934, + 3647, + 3693 + ]], + [[ + 3648, + 3663, + 3436 + ]], + [[ + 3875, + 3433, + 3667 + ]], + [[ + 3661, + 3603, + 3433 + ]], + [[ + 3883, + 3935, + 3735 + ]], + [[ + 3936, + 3650, + 3736 + ]], + [[ + 3738, + 3735, + 3737 + ]], + [[ + 3937, + 3507, + 3936 + ]], + [[ + 3882, + 3508, + 3935 + ]], + [[ + 3650, + 3722, + 3651 + ]], + [[ + 3735, + 3936, + 3736 + ]], + [[ + 3937, + 3935, + 3507 + ]], + [[ + 3832, + 3835, + 3836 + ]], + [[ + 3834, + 3498, + 3835 + ]], + [[ + 3938, + 3682, + 3833 + ]], + [[ + 3747, + 3834, + 3682 + ]], + [[ + 3923, + 3798, + 3797 + ]], + [[ + 3588, + 3576, + 3798 + ]], + [[ + 3797, + 3796, + 3430 + ]], + [[ + 3798, + 3576, + 3796 + ]], + [[ + 3894, + 3876, + 3666 + ]], + [[ + 3894, + 3630, + 3876 + ]], + [[ + 3715, + 3939, + 3713 + ]], + [[ + 3939, + 3929, + 3930 + ]], + [[ + 3939, + 3795, + 3794 + ]], + [[ + 3931, + 3759, + 3902 + ]], + [[ + 3713, + 3939, + 3794 + ]], + [[ + 3715, + 3929, + 3939 + ]], + [[ + 3922, + 3668, + 3865 + ]], + [[ + 3922, + 3669, + 3668 + ]], + [[ + 3851, + 3853, + 3850 + ]], + [[ + 3454, + 3456, + 3853 + ]], + [[ + 3827, + 3597, + 3766 + ]], + [[ + 3513, + 3595, + 3597 + ]], + [[ + 3637, + 3473, + 3475 + ]], + [[ + 3913, + 3831, + 3916 + ]], + [[ + 3893, + 3643, + 3662 + ]], + [[ + 3892, + 3501, + 3643 + ]], + [[ + 3893, + 3662, + 3934 + ]], + [[ + 3643, + 3644, + 3662 + ]], + [[ + 3707, + 3742, + 3448 + ]], + [[ + 3685, + 3449, + 3742 + ]], + [[ + 3500, + 3479, + 3452 + ]], + [[ + 3438, + 3437, + 3479 + ]], + [[ + 3940, + 3498, + 3834 + ]], + [[ + 3499, + 3479, + 3500 + ]], + [[ + 3915, + 3639, + 3632 + ]], + [[ + 3914, + 3658, + 3639 + ]], + [[ + 3940, + 3874, + 3498 + ]], + [[ + 3694, + 3479, + 3499 + ]], + [[ + 3925, + 3846, + 3491 + ]], + [[ + 3925, + 3897, + 3895 + ]], + [[ + 3807, + 3804, + 3488 + ]], + [[ + 3483, + 3635, + 3804 + ]], + [[ + 3487, + 3807, + 3488 + ]], + [[ + 3633, + 3483, + 3807 + ]], + [[ + 3871, + 3788, + 3866 + ]], + [[ + 3871, + 3857, + 3775 + ]], + [[ + 3828, + 3631, + 3484 + ]], + [[ + 3657, + 3474, + 3830 + ]], + [[ + 3475, + 3461, + 3458 + ]], + [[ + 3656, + 3474, + 3657 + ]], + [[ + 3829, + 3941, + 3462 + ]], + [[ + 3461, + 3475, + 3655 + ]], + [[ + 3652, + 3721, + 3888 + ]], + [[ + 3652, + 3654, + 3721 + ]], + [[ + 3433, + 3435, + 3667 + ]], + [[ + 3502, + 3879, + 3878 + ]], + [[ + 3587, + 3732, + 3441 + ]], + [[ + 3587, + 3733, + 3732 + ]], + [[ + 3878, + 3880, + 3665 + ]], + [[ + 3879, + 3927, + 3880 + ]], + [[ + 3600, + 3640, + 3601 + ]], + [[ + 3815, + 3814, + 3825 + ]], + [[ + 3886, + 3602, + 3817 + ]], + [[ + 3602, + 3824, + 3818 + ]], + [[ + 3654, + 3928, + 3722 + ]], + [[ + 3722, + 3928, + 3651 + ]], + [[ + 3868, + 3921, + 3769 + ]], + [[ + 3771, + 3608, + 3921 + ]], + [[ + 3600, + 3886, + 3885 + ]], + [[ + 3600, + 3602, + 3886 + ]], + [[ + 3857, + 3869, + 3787 + ]], + [[ + 3670, + 3669, + 3781 + ]], + [[ + 3864, + 3785, + 3869 + ]], + [[ + 3864, + 3783, + 3785 + ]], + [[ + 3486, + 3812, + 3457 + ]], + [[ + 3486, + 3802, + 3812 + ]], + [[ + 3620, + 3861, + 3863 + ]], + [[ + 3630, + 3629, + 3861 + ]], + [[ + 3817, + 3858, + 3887 + ]], + [[ + 3782, + 3901, + 3858 + ]], + [[ + 3839, + 3855, + 3850 + ]], + [[ + 3854, + 3843, + 3852 + ]], + [[ + 3508, + 3650, + 3506 + ]], + [[ + 3508, + 3888, + 3650 + ]], + [[ + 3451, + 3692, + 3452 + ]], + [[ + 3836, + 3498, + 3500 + ]], + [[ + 3500, + 3692, + 3836 + ]], + [[ + 3500, + 3452, + 3692 + ]], + [[ + 3795, + 3902, + 3761 + ]], + [[ + 3795, + 3931, + 3902 + ]], + [[ + 3681, + 3744, + 3688 + ]], + [[ + 3746, + 3690, + 3744 + ]], + [[ + 3872, + 3617, + 3926 + ]], + [[ + 3616, + 3732, + 3617 + ]], + [[ + 3903, + 3882, + 3511 + ]], + [[ + 3903, + 3508, + 3882 + ]], + [[ + 3855, + 3847, + 3841 + ]], + [[ + 3843, + 3845, + 3852 + ]], + [[ + 3842, + 3847, + 3852 + ]], + [[ + 3854, + 3856, + 3843 + ]], + [[ + 3805, + 3813, + 3803 + ]], + [[ + 3805, + 3806, + 3813 + ]], + [[ + 3867, + 3922, + 3865 + ]], + [[ + 3867, + 3770, + 3922 + ]], + [[ + 3490, + 3489, + 3844 + ]], + [[ + 3896, + 3838, + 3489 + ]], + [[ + 3843, + 3856, + 3844 + ]], + [[ + 3755, + 3491, + 3490 + ]], + [[ + 3598, + 3593, + 3626 + ]], + [[ + 3594, + 3591, + 3593 + ]], + [[ + 3504, + 3728, + 3711 + ]], + [[ + 3504, + 3731, + 3728 + ]], + [[ + 3786, + 3780, + 3866 + ]], + [[ + 3751, + 3750, + 3870 + ]], + [[ + 3751, + 3870, + 3780 + ]], + [[ + 3750, + 3933, + 3870 + ]], + [[ + 3820, + 3819, + 3780 + ]], + [[ + 3815, + 3825, + 3640 + ]], + [[ + 3780, + 3641, + 3866 + ]], + [[ + 3780, + 3819, + 3641 + ]], + [[ + 3815, + 3640, + 3641 + ]], + [[ + 3825, + 3601, + 3640 + ]], + [[ + 3510, + 3509, + 3738 + ]], + [[ + 3882, + 3935, + 3883 + ]], + [[ + 3717, + 3727, + 3929 + ]], + [[ + 3942, + 3759, + 3727 + ]], + [[ + 3726, + 3712, + 3727 + ]], + [[ + 3909, + 3759, + 3942 + ]], + [[ + 3943, + 3944, + 3791 + ]], + [[ + 3945, + 3727, + 3712 + ]], + [[ + 3716, + 3726, + 3717 + ]], + [[ + 3713, + 3712, + 3726 + ]], + [[ + 3944, + 3712, + 3791 + ]], + [[ + 3944, + 3945, + 3712 + ]], + [[ + 3934, + 3648, + 3647 + ]], + [[ + 3934, + 3662, + 3648 + ]], + [[ + 3831, + 3915, + 3632 + ]], + [[ + 3831, + 3913, + 3912 + ]], + [[ + 3538, + 3911, + 3637 + ]], + [[ + 3614, + 3615, + 3911 + ]], + [[ + 3790, + 3943, + 3791 + ]], + [[ + 3942, + 3944, + 3943 + ]], + [[ + 3842, + 3849, + 3455 + ]], + [[ + 3842, + 3852, + 3849 + ]], + [[ + 3497, + 3938, + 3833 + ]], + [[ + 3748, + 3682, + 3938 + ]], + [[ + 3497, + 3695, + 3938 + ]], + [[ + 3747, + 3682, + 3748 + ]], + [[ + 3634, + 3680, + 3483 + ]], + [[ + 3873, + 3484, + 3680 + ]], + [[ + 3788, + 3786, + 3866 + ]], + [[ + 3751, + 3780, + 3786 + ]], + [[ + 3672, + 3589, + 3577 + ]], + [[ + 3672, + 3623, + 3589 + ]], + [[ + 3939, + 3930, + 3795 + ]], + [[ + 3795, + 3930, + 3931 + ]], + [[ + 3904, + 3505, + 3504 + ]], + [[ + 3904, + 3708, + 3505 + ]], + [[ + 3789, + 3777, + 3753 + ]], + [[ + 3822, + 3824, + 3823 + ]], + [[ + 3789, + 3775, + 3777 + ]], + [[ + 3788, + 3871, + 3775 + ]], + [[ + 3777, + 3754, + 3753 + ]], + [[ + 3822, + 3750, + 3749 + ]], + [[ + 3751, + 3754, + 3749 + ]], + [[ + 3933, + 3822, + 3932 + ]], + [[ + 3749, + 3754, + 3822 + ]], + [[ + 3777, + 3776, + 3822 + ]], + [[ + 3894, + 3893, + 3934 + ]], + [[ + 3894, + 3891, + 3893 + ]], + [[ + 3773, + 3906, + 3899 + ]], + [[ + 3773, + 3898, + 3906 + ]], + [[ + 3663, + 3664, + 3436 + ]], + [[ + 3663, + 3644, + 3664 + ]], + [[ + 3694, + 3645, + 3438 + ]], + [[ + 3693, + 3647, + 3645 + ]], + [[ + 3444, + 3946, + 3881 + ]], + [[ + 3702, + 3493, + 3703 + ]], + [[ + 3862, + 3877, + 3863 + ]], + [[ + 3862, + 3624, + 3877 + ]], + [[ + 3877, + 3947, + 3621 + ]], + [[ + 3660, + 3642, + 3603 + ]], + [[ + 3622, + 3621, + 3659 + ]], + [[ + 3947, + 3660, + 3621 + ]], + [[ + 3942, + 3945, + 3944 + ]], + [[ + 3942, + 3727, + 3945 + ]], + [[ + 3690, + 3689, + 3496 + ]], + [[ + 3748, + 3938, + 3695 + ]], + [[ + 3496, + 3689, + 3695 + ]], + [[ + 3691, + 3747, + 3689 + ]], + [[ + 3627, + 3439, + 3441 + ]], + [[ + 3627, + 3560, + 3439 + ]], + [[ + 3878, + 3435, + 3502 + ]], + [[ + 3878, + 3665, + 3435 + ]], + [[ + 3818, + 3908, + 3821 + ]], + [[ + 3909, + 3792, + 3907 + ]], + [[ + 3784, + 3781, + 3776 + ]], + [[ + 3919, + 3772, + 3781 + ]], + [[ + 3784, + 3670, + 3781 + ]], + [[ + 3783, + 3865, + 3670 + ]], + [[ + 3861, + 3860, + 3862 + ]], + [[ + 3861, + 3629, + 3860 + ]], + [[ + 3671, + 3595, + 3514 + ]], + [[ + 3607, + 3596, + 3595 + ]], + [[ + 3915, + 3912, + 3914 + ]], + [[ + 3915, + 3831, + 3912 + ]], + [[ + 3727, + 3930, + 3929 + ]], + [[ + 3727, + 3759, + 3930 + ]], + [[ + 3830, + 3916, + 3831 + ]], + [[ + 3474, + 3473, + 3916 + ]], + [[ + 3924, + 3828, + 3484 + ]], + [[ + 3924, + 3463, + 3941 + ]], + [[ + 3657, + 3829, + 3655 + ]], + [[ + 3828, + 3924, + 3941 + ]], + [[ + 3829, + 3462, + 3655 + ]], + [[ + 3941, + 3463, + 3462 + ]], + [[ + 3631, + 3829, + 3657 + ]], + [[ + 3828, + 3941, + 3829 + ]], + [[ + 3840, + 3856, + 3855 + ]], + [[ + 3755, + 3490, + 3856 + ]], + [[ + 3855, + 3854, + 3847 + ]], + [[ + 3855, + 3856, + 3854 + ]], + [[ + 3759, + 3503, + 3724 + ]], + [[ + 3759, + 3654, + 3503 + ]], + [[ + 3651, + 3928, + 3649 + ]], + [[ + 3654, + 3736, + 3928 + ]], + [[ + 3497, + 3684, + 3451 + ]], + [[ + 3833, + 3682, + 3684 + ]], + [[ + 3595, + 3671, + 3607 + ]], + [[ + 3514, + 3768, + 3920 + ]], + [[ + 3514, + 3920, + 3671 + ]], + [[ + 3768, + 3606, + 3920 + ]], + [[ + 3927, + 3891, + 3894 + ]], + [[ + 3889, + 3501, + 3891 + ]], + [[ + 3880, + 3927, + 3894 + ]], + [[ + 3879, + 3502, + 3890 + ]], + [[ + 3891, + 3890, + 3889 + ]], + [[ + 3891, + 3927, + 3890 + ]], + [[ + 3810, + 3636, + 3485 + ]], + [[ + 3810, + 3801, + 3636 + ]], + [[ + 3861, + 3620, + 3630 + ]], + [[ + 3863, + 3621, + 3620 + ]], + [[ + 3777, + 3822, + 3754 + ]], + [[ + 3776, + 3824, + 3822 + ]], + [[ + 3647, + 3436, + 3646 + ]], + [[ + 3664, + 3437, + 3436 + ]], + [[ + 3947, + 3642, + 3660 + ]], + [[ + 3947, + 3877, + 3642 + ]], + [[ + 3718, + 3730, + 3503 + ]], + [[ + 3718, + 3762, + 3730 + ]], + [[ + 3657, + 3830, + 3631 + ]], + [[ + 3474, + 3916, + 3830 + ]], + [[ + 3452, + 3681, + 3688 + ]], + [[ + 3674, + 3685, + 3681 + ]], + [[ + 3743, + 3687, + 3685 + ]], + [[ + 3743, + 3917, + 3687 + ]], + [[ + 3681, + 3745, + 3746 + ]], + [[ + 3681, + 3686, + 3745 + ]], + [[ + 3633, + 3459, + 3634 + ]], + [[ + 3633, + 3458, + 3459 + ]], + [[ + 3935, + 3508, + 3507 + ]], + [[ + 3903, + 3888, + 3508 + ]], + [[ + 3639, + 3910, + 3579 + ]], + [[ + 3639, + 3482, + 3910 + ]], + [[ + 3596, + 3608, + 3766 + ]], + [[ + 3596, + 3606, + 3767 + ]], + [[ + 3596, + 3767, + 3608 + ]], + [[ + 3606, + 3768, + 3767 + ]], + [[ + 3942, + 3793, + 3909 + ]], + [[ + 3942, + 3943, + 3793 + ]], + [[ + 3774, + 3790, + 3900 + ]], + [[ + 3793, + 3943, + 3790 + ]], + [[ + 3817, + 3602, + 3818 + ]], + [[ + 3826, + 3824, + 3602 + ]], + [[ + 3559, + 3523, + 3440 + ]], + [[ + 3619, + 3530, + 3523 + ]], + [[ + 3720, + 3709, + 3710 + ]], + [[ + 3719, + 3505, + 3709 + ]], + [[ + 3758, + 3701, + 3696 + ]], + [[ + 3758, + 3676, + 3701 + ]], + [[ + 3725, + 3762, + 3723 + ]], + [[ + 3725, + 3730, + 3762 + ]], + [[ + 3731, + 3653, + 3729 + ]], + [[ + 3652, + 3888, + 3653 + ]], + [[ + 3444, + 3881, + 3698 + ]], + [[ + 3946, + 3675, + 3494 + ]], + [[ + 3475, + 3656, + 3655 + ]], + [[ + 3475, + 3474, + 3656 + ]], + [[ + 3946, + 3702, + 3763 + ]], + [[ + 3494, + 3493, + 3702 + ]], + [[ + 3881, + 3946, + 3763 + ]], + [[ + 3675, + 3705, + 3492 + ]], + [[ + 3851, + 3455, + 3454 + ]], + [[ + 3851, + 3841, + 3455 + ]], + [[ + 3774, + 3714, + 3713 + ]], + [[ + 3774, + 3900, + 3714 + ]], + [[ + 3797, + 3624, + 3923 + ]], + [[ + 3799, + 3434, + 3624 + ]], + [[ + 3624, + 3642, + 3877 + ]], + [[ + 3624, + 3434, + 3642 + ]], + [[ + 3538, + 3614, + 3911 + ]], + [[ + 3538, + 3611, + 3614 + ]], + [[ + 3513, + 3591, + 3431 + ]], + [[ + 3605, + 3592, + 3591 + ]], + [[ + 3936, + 3506, + 3650 + ]], + [[ + 3936, + 3507, + 3506 + ]], + [[ + 3906, + 3905, + 3907 + ]], + [[ + 3818, + 3909, + 3908 + ]], + [[ + 3821, + 3905, + 3898 + ]], + [[ + 3908, + 3907, + 3905 + ]], + [[ + 3705, + 3445, + 3447 + ]], + [[ + 3706, + 3450, + 3445 + ]], + [[ + 3934, + 3940, + 3834 + ]], + [[ + 3934, + 3693, + 3940 + ]], + [[ + 3499, + 3874, + 3694 + ]], + [[ + 3940, + 3693, + 3874 + ]], + [[ + 3633, + 3487, + 3458 + ]], + [[ + 3486, + 3457, + 3487 + ]], + [[ + 3799, + 3598, + 3626 + ]], + [[ + 3799, + 3590, + 3598 + ]], + [[ + 3876, + 3622, + 3659 + ]], + [[ + 3876, + 3630, + 3622 + ]], + [[ + 3751, + 3752, + 3754 + ]], + [[ + 3786, + 3753, + 3752 + ]], + [[ + 3755, + 3840, + 3810 + ]], + [[ + 3755, + 3856, + 3840 + ]], + [[ + 3811, + 3839, + 3853 + ]], + [[ + 3840, + 3855, + 3839 + ]], + [[ + 3760, + 3723, + 3761 + ]], + [[ + 3762, + 3710, + 3723 + ]], + [[ + 3862, + 3625, + 3624 + ]], + [[ + 3862, + 3860, + 3625 + ]], + [[ + 3535, + 3476, + 3478 + ]], + [[ + 3612, + 3477, + 3476 + ]], + [[ + 3675, + 3492, + 3494 + ]], + [[ + 3705, + 3447, + 3492 + ]], + [[ + 3882, + 3509, + 3511 + ]], + [[ + 3883, + 3738, + 3509 + ]], + [[ + 3735, + 3937, + 3936 + ]], + [[ + 3735, + 3935, + 3937 + ]], + [[ + 3925, + 3895, + 3846 + ]], + [[ + 3897, + 3673, + 3895 + ]], + [[ + 3702, + 3946, + 3494 + ]], + [[ + 3444, + 3675, + 3946 + ]], + [[ + 3679, + 3678, + 3757 + ]], + [[ + 3673, + 3897, + 3678 + ]], + [[ + 3692, + 3832, + 3836 + ]], + [[ + 3682, + 3835, + 3832 + ]], + [[ + 3857, + 3787, + 3776 + ]], + [[ + 3785, + 3784, + 3787 + ]], + [[ + 3948, + 3458, + 3456 + ]], + [[ + 3949, + 3948, + 3673 + ]], + [[ + 3673, + 3948, + 3456 + ]], + [[ + 3950, + 3949, + 3674 + ]], + [[ + 3674, + 3949, + 3673 + ]], + [[ + 3951, + 3950, + 3452 + ]], + [[ + 3452, + 3950, + 3674 + ]], + [[ + 3437, + 3951, + 3452 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b2c160b4d-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efc5ef49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:55:21.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3952, + 3953, + 3954 + ]], + [[ + 3955, + 3956, + 3957 + ]], + [[ + 3957, + 3958, + 3955 + ]], + [[ + 3959, + 3960, + 3954 + ]], + [[ + 3960, + 3956, + 3954 + ]], + [[ + 3961, + 3962, + 3963 + ]], + [[ + 3961, + 3963, + 3964 + ]], + [[ + 3965, + 3966, + 3967 + ]], + [[ + 3968, + 3969, + 3970 + ]], + [[ + 3971, + 3972, + 3973 + ]], + [[ + 3971, + 3974, + 3972 + ]], + [[ + 3975, + 3976, + 3977 + ]], + [[ + 3978, + 3979, + 3974 + ]], + [[ + 3980, + 3981, + 3982 + ]], + [[ + 3971, + 3973, + 3983 + ]], + [[ + 3972, + 3984, + 3973 + ]], + [[ + 3985, + 3986, + 3987 + ]], + [[ + 3988, + 3989, + 3990 + ]], + [[ + 3991, + 3992, + 3993 + ]], + [[ + 3994, + 3995, + 3996 + ]], + [[ + 3997, + 3998, + 3999 + ]], + [[ + 3994, + 4000, + 4001 + ]], + [[ + 4002, + 4003, + 4004 + ]], + [[ + 4005, + 4006, + 4007 + ]], + [[ + 3967, + 3981, + 3965 + ]], + [[ + 3967, + 4008, + 3990 + ]], + [[ + 4009, + 3990, + 4008 + ]], + [[ + 4010, + 4011, + 3982 + ]], + [[ + 4012, + 3965, + 3981 + ]], + [[ + 4013, + 4014, + 3981 + ]], + [[ + 4015, + 4016, + 4010 + ]], + [[ + 4013, + 3981, + 3980 + ]], + [[ + 3980, + 3982, + 4017 + ]], + [[ + 4017, + 3982, + 4018 + ]], + [[ + 4018, + 3982, + 4011 + ]], + [[ + 4011, + 4010, + 4016 + ]], + [[ + 4019, + 4015, + 4010 + ]], + [[ + 4020, + 4019, + 4010 + ]], + [[ + 4021, + 4020, + 4010 + ]], + [[ + 4022, + 4021, + 4010 + ]], + [[ + 4023, + 4024, + 4025 + ]], + [[ + 4010, + 4026, + 4022 + ]], + [[ + 4010, + 4027, + 4026 + ]], + [[ + 4024, + 4028, + 4029 + ]], + [[ + 4030, + 4031, + 4032 + ]], + [[ + 4033, + 4034, + 4035 + ]], + [[ + 4036, + 4037, + 4038 + ]], + [[ + 4039, + 4040, + 4041 + ]], + [[ + 4042, + 4043, + 4044 + ]], + [[ + 4044, + 4045, + 4046 + ]], + [[ + 4047, + 4048, + 4049 + ]], + [[ + 4050, + 4051, + 4052 + ]], + [[ + 4035, + 4053, + 4054 + ]], + [[ + 4055, + 4056, + 4057 + ]], + [[ + 4035, + 4054, + 4058 + ]], + [[ + 4056, + 4059, + 4024 + ]], + [[ + 4060, + 4024, + 4029 + ]], + [[ + 4061, + 4058, + 4027 + ]], + [[ + 4062, + 4024, + 4023 + ]], + [[ + 4026, + 4027, + 4058 + ]], + [[ + 4061, + 4063, + 4064 + ]], + [[ + 4027, + 4065, + 4061 + ]], + [[ + 4066, + 4027, + 4010 + ]], + [[ + 4067, + 4066, + 4010 + ]], + [[ + 4068, + 4067, + 4010 + ]], + [[ + 4068, + 4069, + 4067 + ]], + [[ + 4070, + 4071, + 4072 + ]], + [[ + 4073, + 4074, + 4075 + ]], + [[ + 4076, + 4077, + 4074 + ]], + [[ + 4078, + 4079, + 4080 + ]], + [[ + 4081, + 4082, + 4083 + ]], + [[ + 4084, + 3962, + 4085 + ]], + [[ + 3963, + 3962, + 4084 + ]], + [[ + 4085, + 3962, + 4086 + ]], + [[ + 4086, + 3962, + 4087 + ]], + [[ + 4088, + 4089, + 4078 + ]], + [[ + 4080, + 4088, + 4078 + ]], + [[ + 4090, + 4091, + 4079 + ]], + [[ + 4079, + 4092, + 4080 + ]], + [[ + 4079, + 4093, + 4092 + ]], + [[ + 4079, + 4094, + 4093 + ]], + [[ + 4095, + 4096, + 4097 + ]], + [[ + 4079, + 4098, + 4094 + ]], + [[ + 4079, + 4091, + 4098 + ]], + [[ + 4090, + 4099, + 4091 + ]], + [[ + 4090, + 4100, + 4099 + ]], + [[ + 4090, + 4101, + 4100 + ]], + [[ + 4101, + 4090, + 4102 + ]], + [[ + 4102, + 4090, + 4103 + ]], + [[ + 4090, + 4104, + 4103 + ]], + [[ + 4090, + 4105, + 4104 + ]], + [[ + 4090, + 4106, + 4105 + ]], + [[ + 4090, + 4107, + 4106 + ]], + [[ + 4090, + 4108, + 4107 + ]], + [[ + 4090, + 4097, + 4096 + ]], + [[ + 4108, + 4090, + 4109 + ]], + [[ + 4109, + 4090, + 4110 + ]], + [[ + 4110, + 4090, + 4111 + ]], + [[ + 4111, + 4090, + 4096 + ]], + [[ + 4095, + 4112, + 4096 + ]], + [[ + 4113, + 4114, + 4112 + ]], + [[ + 4115, + 4116, + 4114 + ]], + [[ + 4115, + 4114, + 4117 + ]], + [[ + 4117, + 4114, + 4118 + ]], + [[ + 4118, + 4114, + 4113 + ]], + [[ + 4119, + 4118, + 4120 + ]], + [[ + 4120, + 4118, + 4121 + ]], + [[ + 4095, + 4113, + 4112 + ]], + [[ + 4121, + 4118, + 4113 + ]], + [[ + 4122, + 4095, + 4097 + ]], + [[ + 4123, + 4124, + 4097 + ]], + [[ + 4097, + 4125, + 4122 + ]], + [[ + 4097, + 4126, + 4125 + ]], + [[ + 4097, + 4127, + 4126 + ]], + [[ + 4097, + 4128, + 4127 + ]], + [[ + 4128, + 4097, + 4129 + ]], + [[ + 4129, + 4097, + 4130 + ]], + [[ + 4097, + 4131, + 4130 + ]], + [[ + 4097, + 4124, + 4131 + ]], + [[ + 4132, + 4123, + 4097 + ]], + [[ + 4133, + 4134, + 4097 + ]], + [[ + 4097, + 4134, + 4132 + ]], + [[ + 4133, + 4135, + 4136 + ]], + [[ + 4133, + 4136, + 4134 + ]], + [[ + 4135, + 4137, + 4136 + ]], + [[ + 4137, + 4138, + 4136 + ]], + [[ + 4137, + 3954, + 4138 + ]], + [[ + 3954, + 3953, + 4138 + ]], + [[ + 3954, + 3956, + 3952 + ]], + [[ + 3955, + 3952, + 3956 + ]], + [[ + 4139, + 4140, + 3958 + ]], + [[ + 4141, + 4142, + 4143 + ]], + [[ + 3958, + 4140, + 3955 + ]], + [[ + 4139, + 4142, + 4141 + ]], + [[ + 4140, + 4139, + 4144 + ]], + [[ + 4144, + 4139, + 4141 + ]], + [[ + 4145, + 4146, + 4147 + ]], + [[ + 4148, + 4149, + 4150 + ]], + [[ + 4001, + 4151, + 3994 + ]], + [[ + 4152, + 4003, + 3995 + ]], + [[ + 4153, + 3972, + 4154 + ]], + [[ + 4155, + 4003, + 4002 + ]], + [[ + 4073, + 4156, + 4071 + ]], + [[ + 4157, + 4158, + 4159 + ]], + [[ + 4009, + 4160, + 3988 + ]], + [[ + 4009, + 4161, + 4160 + ]], + [[ + 4145, + 4162, + 4163 + ]], + [[ + 4164, + 4165, + 4166 + ]], + [[ + 4167, + 4168, + 4169 + ]], + [[ + 4170, + 4171, + 4172 + ]], + [[ + 4147, + 4171, + 4164 + ]], + [[ + 4163, + 4006, + 4005 + ]], + [[ + 4173, + 4174, + 4175 + ]], + [[ + 4176, + 4177, + 4178 + ]], + [[ + 3997, + 4179, + 3998 + ]], + [[ + 4180, + 4181, + 4182 + ]], + [[ + 4183, + 4184, + 4185 + ]], + [[ + 4154, + 4003, + 4186 + ]], + [[ + 4187, + 4002, + 4000 + ]], + [[ + 4000, + 4004, + 4001 + ]], + [[ + 4185, + 4184, + 4188 + ]], + [[ + 4189, + 4190, + 4191 + ]], + [[ + 4152, + 3994, + 4151 + ]], + [[ + 3996, + 4000, + 3994 + ]], + [[ + 4192, + 4193, + 4194 + ]], + [[ + 4195, + 4196, + 4197 + ]], + [[ + 4150, + 4198, + 4199 + ]], + [[ + 4200, + 4168, + 4201 + ]], + [[ + 4202, + 4200, + 4201 + ]], + [[ + 4168, + 4166, + 4169 + ]], + [[ + 4164, + 4203, + 4165 + ]], + [[ + 4204, + 3996, + 3989 + ]], + [[ + 4165, + 4169, + 4166 + ]], + [[ + 4150, + 3996, + 4148 + ]], + [[ + 4175, + 4205, + 4173 + ]], + [[ + 4161, + 4009, + 4173 + ]], + [[ + 4164, + 4168, + 4200 + ]], + [[ + 4164, + 4166, + 4168 + ]], + [[ + 4183, + 4185, + 4206 + ]], + [[ + 4188, + 4154, + 4185 + ]], + [[ + 3968, + 3970, + 4186 + ]], + [[ + 4186, + 4003, + 3968 + ]], + [[ + 4207, + 4203, + 4171 + ]], + [[ + 4208, + 4162, + 4161 + ]], + [[ + 4203, + 4209, + 4165 + ]], + [[ + 4172, + 4171, + 4147 + ]], + [[ + 4179, + 4210, + 3969 + ]], + [[ + 4211, + 4179, + 3969 + ]], + [[ + 4001, + 4004, + 4151 + ]], + [[ + 4003, + 3989, + 3995 + ]], + [[ + 3988, + 4147, + 3989 + ]], + [[ + 4005, + 4007, + 4147 + ]], + [[ + 4147, + 4212, + 3989 + ]], + [[ + 4147, + 4200, + 4212 + ]], + [[ + 4213, + 4214, + 4215 + ]], + [[ + 4215, + 4214, + 4149 + ]], + [[ + 4216, + 4217, + 4218 + ]], + [[ + 4167, + 4198, + 4202 + ]], + [[ + 4187, + 4219, + 4002 + ]], + [[ + 4220, + 4221, + 4211 + ]], + [[ + 4222, + 4158, + 4071 + ]], + [[ + 4223, + 4224, + 4077 + ]], + [[ + 4073, + 4072, + 4225 + ]], + [[ + 4070, + 4073, + 4071 + ]], + [[ + 4197, + 4226, + 4074 + ]], + [[ + 4227, + 4228, + 4229 + ]], + [[ + 4207, + 4171, + 4170 + ]], + [[ + 4176, + 4007, + 4006 + ]], + [[ + 4230, + 4177, + 4176 + ]], + [[ + 4230, + 4231, + 4177 + ]], + [[ + 4232, + 4233, + 4170 + ]], + [[ + 4207, + 4175, + 4174 + ]], + [[ + 4175, + 4233, + 4205 + ]], + [[ + 4232, + 4234, + 4231 + ]], + [[ + 4216, + 4235, + 4236 + ]], + [[ + 4237, + 4236, + 4212 + ]], + [[ + 4150, + 4238, + 4198 + ]], + [[ + 4238, + 4214, + 4237 + ]], + [[ + 4239, + 4076, + 4074 + ]], + [[ + 4229, + 4240, + 4227 + ]], + [[ + 4241, + 3991, + 3999 + ]], + [[ + 4185, + 4210, + 4242 + ]], + [[ + 4242, + 3997, + 4206 + ]], + [[ + 4190, + 4243, + 4181 + ]], + [[ + 4244, + 4245, + 4220 + ]], + [[ + 4179, + 4245, + 4244 + ]], + [[ + 4246, + 3968, + 4155 + ]], + [[ + 4211, + 3969, + 3968 + ]], + [[ + 4247, + 4248, + 4249 + ]], + [[ + 4158, + 4072, + 4071 + ]], + [[ + 3985, + 4250, + 4182 + ]], + [[ + 3992, + 3991, + 4241 + ]], + [[ + 4184, + 4251, + 4188 + ]], + [[ + 3984, + 3986, + 3985 + ]], + [[ + 4160, + 4145, + 3988 + ]], + [[ + 4162, + 4208, + 4163 + ]], + [[ + 4249, + 4222, + 4193 + ]], + [[ + 4249, + 4158, + 4222 + ]], + [[ + 4068, + 4249, + 4248 + ]], + [[ + 4252, + 4253, + 4254 + ]], + [[ + 4255, + 4244, + 4220 + ]], + [[ + 3998, + 4255, + 3999 + ]], + [[ + 4255, + 3998, + 4244 + ]], + [[ + 4243, + 4241, + 3999 + ]], + [[ + 4256, + 4248, + 4247 + ]], + [[ + 4257, + 4258, + 4259 + ]], + [[ + 4220, + 4245, + 4221 + ]], + [[ + 4244, + 3998, + 4179 + ]], + [[ + 4072, + 4157, + 4225 + ]], + [[ + 4197, + 4074, + 4225 + ]], + [[ + 4194, + 4193, + 4260 + ]], + [[ + 4222, + 4260, + 4193 + ]], + [[ + 4161, + 4176, + 4208 + ]], + [[ + 4176, + 4178, + 4007 + ]], + [[ + 4261, + 4032, + 4262 + ]], + [[ + 4229, + 4263, + 4264 + ]], + [[ + 4265, + 4082, + 4081 + ]], + [[ + 4083, + 4082, + 4266 + ]], + [[ + 4267, + 4030, + 4032 + ]], + [[ + 4268, + 4269, + 4270 + ]], + [[ + 4074, + 4226, + 4239 + ]], + [[ + 4076, + 4271, + 4224 + ]], + [[ + 4263, + 4272, + 4273 + ]], + [[ + 4253, + 4274, + 4082 + ]], + [[ + 3964, + 4274, + 4253 + ]], + [[ + 3964, + 3963, + 4269 + ]], + [[ + 4275, + 4276, + 4082 + ]], + [[ + 4274, + 3964, + 4269 + ]], + [[ + 4259, + 4277, + 4257 + ]], + [[ + 4256, + 4278, + 4248 + ]], + [[ + 4279, + 4280, + 4249 + ]], + [[ + 4281, + 4256, + 4247 + ]], + [[ + 4158, + 4226, + 4159 + ]], + [[ + 4077, + 4076, + 4223 + ]], + [[ + 4159, + 4226, + 4196 + ]], + [[ + 4239, + 4249, + 4076 + ]], + [[ + 4202, + 4198, + 4282 + ]], + [[ + 4238, + 4149, + 4214 + ]], + [[ + 4237, + 4214, + 4213 + ]], + [[ + 4215, + 4217, + 4236 + ]], + [[ + 4273, + 4264, + 4263 + ]], + [[ + 4283, + 4253, + 4276 + ]], + [[ + 4284, + 4283, + 4276 + ]], + [[ + 4253, + 4082, + 4276 + ]], + [[ + 4217, + 4216, + 4236 + ]], + [[ + 4285, + 4286, + 4287 + ]], + [[ + 4198, + 4238, + 4237 + ]], + [[ + 4236, + 3989, + 4212 + ]], + [[ + 4229, + 4030, + 4240 + ]], + [[ + 4261, + 4288, + 4289 + ]], + [[ + 4264, + 4031, + 4229 + ]], + [[ + 4290, + 4270, + 4077 + ]], + [[ + 4030, + 4229, + 4031 + ]], + [[ + 4264, + 4273, + 4270 + ]], + [[ + 4270, + 4290, + 4262 + ]], + [[ + 4290, + 4077, + 4271 + ]], + [[ + 4204, + 4285, + 4291 + ]], + [[ + 4292, + 4216, + 4293 + ]], + [[ + 4204, + 4236, + 4285 + ]], + [[ + 4286, + 4293, + 4294 + ]], + [[ + 4152, + 3995, + 3994 + ]], + [[ + 3989, + 3996, + 3995 + ]], + [[ + 4295, + 3993, + 4189 + ]], + [[ + 4180, + 4182, + 4250 + ]], + [[ + 4296, + 3985, + 4182 + ]], + [[ + 3984, + 4153, + 3987 + ]], + [[ + 4000, + 4002, + 4004 + ]], + [[ + 4219, + 4155, + 4002 + ]], + [[ + 3964, + 4068, + 4010 + ]], + [[ + 3964, + 4271, + 4068 + ]], + [[ + 4278, + 4256, + 4277 + ]], + [[ + 4278, + 4068, + 4248 + ]], + [[ + 4263, + 4228, + 4297 + ]], + [[ + 4284, + 4276, + 4275 + ]], + [[ + 4220, + 4298, + 4000 + ]], + [[ + 4298, + 4211, + 3968 + ]], + [[ + 4246, + 4298, + 3968 + ]], + [[ + 4221, + 4245, + 4211 + ]], + [[ + 4191, + 4180, + 4250 + ]], + [[ + 4191, + 4181, + 4180 + ]], + [[ + 4251, + 4153, + 4154 + ]], + [[ + 3993, + 4184, + 4183 + ]], + [[ + 4222, + 4156, + 4260 + ]], + [[ + 4222, + 4071, + 4156 + ]], + [[ + 4215, + 4236, + 4213 + ]], + [[ + 4235, + 4285, + 4236 + ]], + [[ + 4225, + 4157, + 4159 + ]], + [[ + 4072, + 4158, + 4157 + ]], + [[ + 4251, + 4154, + 4188 + ]], + [[ + 3972, + 4003, + 4154 + ]], + [[ + 4147, + 4232, + 4172 + ]], + [[ + 4233, + 4175, + 4170 + ]], + [[ + 4053, + 4035, + 4034 + ]], + [[ + 4024, + 4064, + 4025 + ]], + [[ + 3973, + 3984, + 4296 + ]], + [[ + 4296, + 3984, + 3985 + ]], + [[ + 4281, + 4247, + 4249 + ]], + [[ + 4281, + 4277, + 4256 + ]], + [[ + 4280, + 4281, + 4249 + ]], + [[ + 4258, + 4257, + 4281 + ]], + [[ + 4299, + 4055, + 4045 + ]], + [[ + 4055, + 4047, + 4049 + ]], + [[ + 4168, + 4167, + 4201 + ]], + [[ + 4199, + 4198, + 4167 + ]], + [[ + 4255, + 4243, + 3999 + ]], + [[ + 4190, + 4300, + 3992 + ]], + [[ + 4272, + 4283, + 4301 + ]], + [[ + 4297, + 4228, + 4254 + ]], + [[ + 4280, + 4258, + 4281 + ]], + [[ + 4280, + 4279, + 4259 + ]], + [[ + 4281, + 4257, + 4277 + ]], + [[ + 4258, + 4280, + 4259 + ]], + [[ + 4282, + 4237, + 4212 + ]], + [[ + 4213, + 4236, + 4237 + ]], + [[ + 4295, + 4302, + 4153 + ]], + [[ + 4302, + 3985, + 3987 + ]], + [[ + 4251, + 3993, + 4295 + ]], + [[ + 4250, + 3985, + 4303 + ]], + [[ + 4246, + 4155, + 4219 + ]], + [[ + 3968, + 4003, + 4155 + ]], + [[ + 3991, + 4206, + 3997 + ]], + [[ + 4206, + 4185, + 4242 + ]], + [[ + 3991, + 3997, + 3999 + ]], + [[ + 4242, + 4210, + 4179 + ]], + [[ + 4304, + 4037, + 4050 + ]], + [[ + 4305, + 4052, + 4306 + ]], + [[ + 4189, + 4300, + 4190 + ]], + [[ + 4189, + 4303, + 4295 + ]], + [[ + 3993, + 3992, + 4300 + ]], + [[ + 4241, + 4243, + 3992 + ]], + [[ + 4189, + 3993, + 4300 + ]], + [[ + 4251, + 4184, + 3993 + ]], + [[ + 4250, + 4189, + 4191 + ]], + [[ + 4250, + 4303, + 4189 + ]], + [[ + 4050, + 4037, + 4051 + ]], + [[ + 4041, + 4307, + 4033 + ]], + [[ + 4062, + 4308, + 4024 + ]], + [[ + 4051, + 4061, + 4052 + ]], + [[ + 4227, + 4254, + 4228 + ]], + [[ + 4272, + 4254, + 4283 + ]], + [[ + 4051, + 4037, + 4309 + ]], + [[ + 4050, + 4052, + 4310 + ]], + [[ + 4311, + 4312, + 4046 + ]], + [[ + 4313, + 4038, + 4304 + ]], + [[ + 4061, + 4035, + 4058 + ]], + [[ + 4314, + 4309, + 4315 + ]], + [[ + 4192, + 4279, + 4249 + ]], + [[ + 4075, + 4259, + 4279 + ]], + [[ + 4284, + 4301, + 4283 + ]], + [[ + 4272, + 4297, + 4254 + ]], + [[ + 4316, + 4040, + 4317 + ]], + [[ + 4318, + 4317, + 4319 + ]], + [[ + 4320, + 4056, + 4049 + ]], + [[ + 4056, + 4060, + 4057 + ]], + [[ + 4044, + 4306, + 4045 + ]], + [[ + 4305, + 4042, + 4310 + ]], + [[ + 4148, + 4293, + 4218 + ]], + [[ + 4217, + 4215, + 4149 + ]], + [[ + 4148, + 4218, + 4149 + ]], + [[ + 4293, + 4216, + 4218 + ]], + [[ + 4150, + 4149, + 4238 + ]], + [[ + 4218, + 4217, + 4149 + ]], + [[ + 4235, + 4292, + 4285 + ]], + [[ + 4235, + 4216, + 4292 + ]], + [[ + 4287, + 4294, + 3996 + ]], + [[ + 4286, + 4292, + 4293 + ]], + [[ + 4287, + 4286, + 4294 + ]], + [[ + 4285, + 4292, + 4286 + ]], + [[ + 4261, + 4262, + 4288 + ]], + [[ + 4321, + 4267, + 4261 + ]], + [[ + 4288, + 4262, + 4322 + ]], + [[ + 4032, + 4270, + 4262 + ]], + [[ + 4290, + 4271, + 4322 + ]], + [[ + 4323, + 4030, + 4267 + ]], + [[ + 4322, + 4271, + 4288 + ]], + [[ + 4254, + 4253, + 4283 + ]], + [[ + 4042, + 4044, + 4046 + ]], + [[ + 4324, + 4306, + 4044 + ]], + [[ + 4294, + 4148, + 3996 + ]], + [[ + 4294, + 4293, + 4148 + ]], + [[ + 4081, + 4272, + 4301 + ]], + [[ + 4081, + 4325, + 4272 + ]], + [[ + 4055, + 4049, + 4056 + ]], + [[ + 4048, + 4320, + 4049 + ]], + [[ + 4299, + 4326, + 4055 + ]], + [[ + 4327, + 4047, + 4055 + ]], + [[ + 4048, + 4328, + 4320 + ]], + [[ + 4056, + 4024, + 4060 + ]], + [[ + 4251, + 4295, + 4153 + ]], + [[ + 4302, + 3987, + 4153 + ]], + [[ + 4317, + 4329, + 4319 + ]], + [[ + 4318, + 4319, + 4041 + ]], + [[ + 4330, + 4316, + 4318 + ]], + [[ + 4319, + 4307, + 4041 + ]], + [[ + 4316, + 4317, + 4318 + ]], + [[ + 4331, + 4039, + 4035 + ]], + [[ + 4073, + 4070, + 4072 + ]], + [[ + 4073, + 4260, + 4156 + ]], + [[ + 4262, + 4290, + 4322 + ]], + [[ + 4077, + 4224, + 4271 + ]], + [[ + 4052, + 4047, + 4306 + ]], + [[ + 4052, + 4061, + 4047 + ]], + [[ + 4325, + 4081, + 4268 + ]], + [[ + 4082, + 4274, + 4266 + ]], + [[ + 4273, + 4325, + 4270 + ]], + [[ + 4269, + 3963, + 4270 + ]], + [[ + 4270, + 4325, + 4268 + ]], + [[ + 4273, + 4272, + 4325 + ]], + [[ + 4268, + 4083, + 4266 + ]], + [[ + 4268, + 4081, + 4083 + ]], + [[ + 4202, + 4282, + 4212 + ]], + [[ + 4198, + 4237, + 4282 + ]], + [[ + 4200, + 4202, + 4212 + ]], + [[ + 4201, + 4167, + 4202 + ]], + [[ + 3991, + 4183, + 4206 + ]], + [[ + 3991, + 3993, + 4183 + ]], + [[ + 4035, + 4041, + 4033 + ]], + [[ + 4330, + 4318, + 4041 + ]], + [[ + 4236, + 4204, + 3989 + ]], + [[ + 4291, + 4287, + 4204 + ]], + [[ + 4288, + 4271, + 4289 + ]], + [[ + 4289, + 4321, + 4332 + ]], + [[ + 4311, + 4333, + 4312 + ]], + [[ + 4329, + 4317, + 4333 + ]], + [[ + 4209, + 4203, + 4207 + ]], + [[ + 4230, + 4161, + 4173 + ]], + [[ + 4082, + 4265, + 4275 + ]], + [[ + 4265, + 4301, + 4284 + ]], + [[ + 4301, + 4265, + 4081 + ]], + [[ + 4284, + 4275, + 4265 + ]], + [[ + 4172, + 4232, + 4170 + ]], + [[ + 4231, + 4205, + 4233 + ]], + [[ + 4234, + 4232, + 4147 + ]], + [[ + 4231, + 4233, + 4232 + ]], + [[ + 4007, + 4234, + 4147 + ]], + [[ + 4007, + 4178, + 4234 + ]], + [[ + 4181, + 4255, + 4220 + ]], + [[ + 4181, + 4243, + 4255 + ]], + [[ + 4045, + 4055, + 4057 + ]], + [[ + 4326, + 4327, + 4055 + ]], + [[ + 4328, + 4059, + 4334 + ]], + [[ + 4024, + 4308, + 4028 + ]], + [[ + 4047, + 4328, + 4048 + ]], + [[ + 4334, + 4056, + 4320 + ]], + [[ + 4328, + 4024, + 4059 + ]], + [[ + 4061, + 4064, + 4024 + ]], + [[ + 4311, + 4319, + 4329 + ]], + [[ + 4046, + 4307, + 4319 + ]], + [[ + 4252, + 4030, + 4323 + ]], + [[ + 4252, + 4240, + 4030 + ]], + [[ + 4279, + 4192, + 4075 + ]], + [[ + 4249, + 4193, + 4192 + ]], + [[ + 4046, + 4312, + 4042 + ]], + [[ + 4315, + 4309, + 4037 + ]], + [[ + 4036, + 4315, + 4037 + ]], + [[ + 4335, + 4314, + 4315 + ]], + [[ + 4040, + 4316, + 4041 + ]], + [[ + 4335, + 4315, + 4036 + ]], + [[ + 4223, + 4076, + 4224 + ]], + [[ + 4271, + 3964, + 4321 + ]], + [[ + 4336, + 4313, + 4042 + ]], + [[ + 4336, + 4036, + 4038 + ]], + [[ + 4204, + 4287, + 3996 + ]], + [[ + 4291, + 4285, + 4287 + ]], + [[ + 4231, + 4178, + 4177 + ]], + [[ + 4231, + 4234, + 4178 + ]], + [[ + 4306, + 4327, + 4045 + ]], + [[ + 4306, + 4047, + 4327 + ]], + [[ + 4041, + 4316, + 4330 + ]], + [[ + 4312, + 4036, + 4336 + ]], + [[ + 4035, + 4039, + 4041 + ]], + [[ + 4331, + 4335, + 4312 + ]], + [[ + 4063, + 4061, + 4065 + ]], + [[ + 4314, + 4035, + 4061 + ]], + [[ + 4324, + 4043, + 4306 + ]], + [[ + 4324, + 4044, + 4043 + ]], + [[ + 4073, + 4194, + 4260 + ]], + [[ + 4075, + 4192, + 4194 + ]], + [[ + 4042, + 4312, + 4336 + ]], + [[ + 4333, + 4317, + 4312 + ]], + [[ + 4205, + 4230, + 4173 + ]], + [[ + 4205, + 4231, + 4230 + ]], + [[ + 4174, + 4173, + 4150 + ]], + [[ + 4009, + 3996, + 4173 + ]], + [[ + 4165, + 4174, + 4169 + ]], + [[ + 4165, + 4209, + 4174 + ]], + [[ + 4175, + 4207, + 4170 + ]], + [[ + 4174, + 4209, + 4207 + ]], + [[ + 4331, + 4040, + 4039 + ]], + [[ + 4312, + 4317, + 4040 + ]], + [[ + 4271, + 4321, + 4289 + ]], + [[ + 3964, + 4253, + 4321 + ]], + [[ + 4252, + 4323, + 4253 + ]], + [[ + 4321, + 4253, + 4323 + ]], + [[ + 4261, + 4267, + 4032 + ]], + [[ + 4321, + 4323, + 4267 + ]], + [[ + 4327, + 4299, + 4045 + ]], + [[ + 4327, + 4326, + 4299 + ]], + [[ + 4228, + 4263, + 4229 + ]], + [[ + 4297, + 4272, + 4263 + ]], + [[ + 4169, + 4199, + 4167 + ]], + [[ + 4169, + 4150, + 4199 + ]], + [[ + 4194, + 4073, + 4075 + ]], + [[ + 4225, + 4074, + 4073 + ]], + [[ + 4335, + 4331, + 4035 + ]], + [[ + 4312, + 4040, + 4331 + ]], + [[ + 4145, + 4163, + 4146 + ]], + [[ + 4208, + 4006, + 4163 + ]], + [[ + 4158, + 4239, + 4226 + ]], + [[ + 4158, + 4249, + 4239 + ]], + [[ + 4160, + 4162, + 4145 + ]], + [[ + 4160, + 4161, + 4162 + ]], + [[ + 4312, + 4335, + 4036 + ]], + [[ + 4035, + 4314, + 4335 + ]], + [[ + 4009, + 3988, + 3990 + ]], + [[ + 4145, + 4147, + 3988 + ]], + [[ + 4051, + 4314, + 4061 + ]], + [[ + 4051, + 4309, + 4314 + ]], + [[ + 4319, + 4311, + 4046 + ]], + [[ + 4329, + 4333, + 4311 + ]], + [[ + 4249, + 4271, + 4076 + ]], + [[ + 4249, + 4068, + 4271 + ]], + [[ + 4061, + 4328, + 4047 + ]], + [[ + 4061, + 4024, + 4328 + ]], + [[ + 4147, + 4164, + 4200 + ]], + [[ + 4171, + 4203, + 4164 + ]], + [[ + 4174, + 4150, + 4169 + ]], + [[ + 4173, + 3996, + 4150 + ]], + [[ + 3969, + 4210, + 4186 + ]], + [[ + 4185, + 4154, + 4210 + ]], + [[ + 4245, + 4179, + 4211 + ]], + [[ + 3997, + 4242, + 4179 + ]], + [[ + 4304, + 4038, + 4037 + ]], + [[ + 4313, + 4336, + 4038 + ]], + [[ + 4310, + 4337, + 4050 + ]], + [[ + 4337, + 4313, + 4304 + ]], + [[ + 4328, + 4334, + 4320 + ]], + [[ + 4059, + 4056, + 4334 + ]], + [[ + 4159, + 4195, + 4225 + ]], + [[ + 4159, + 4196, + 4195 + ]], + [[ + 4004, + 4152, + 4151 + ]], + [[ + 4004, + 4003, + 4152 + ]], + [[ + 4032, + 4264, + 4270 + ]], + [[ + 4032, + 4031, + 4264 + ]], + [[ + 4305, + 4310, + 4052 + ]], + [[ + 4337, + 4304, + 4050 + ]], + [[ + 4153, + 3984, + 3972 + ]], + [[ + 3987, + 3986, + 3984 + ]], + [[ + 4043, + 4305, + 4306 + ]], + [[ + 4043, + 4042, + 4305 + ]], + [[ + 4243, + 4190, + 3992 + ]], + [[ + 4181, + 4191, + 4190 + ]], + [[ + 4042, + 4337, + 4310 + ]], + [[ + 4042, + 4313, + 4337 + ]], + [[ + 4187, + 4246, + 4219 + ]], + [[ + 4187, + 4000, + 4298 + ]], + [[ + 4187, + 4298, + 4246 + ]], + [[ + 4220, + 4211, + 4298 + ]], + [[ + 4266, + 4269, + 4268 + ]], + [[ + 4266, + 4274, + 4269 + ]], + [[ + 3969, + 4186, + 3970 + ]], + [[ + 4210, + 4154, + 4186 + ]], + [[ + 4303, + 4302, + 4295 + ]], + [[ + 4303, + 3985, + 4302 + ]], + [[ + 4195, + 4197, + 4225 + ]], + [[ + 4196, + 4226, + 4197 + ]], + [[ + 4208, + 4176, + 4006 + ]], + [[ + 4161, + 4230, + 4176 + ]], + [[ + 4227, + 4252, + 4254 + ]], + [[ + 4227, + 4240, + 4252 + ]], + [[ + 4332, + 4261, + 4289 + ]], + [[ + 4332, + 4321, + 4261 + ]], + [[ + 4069, + 4278, + 4277 + ]], + [[ + 4069, + 4068, + 4278 + ]], + [[ + 4069, + 4259, + 4075 + ]], + [[ + 4069, + 4277, + 4259 + ]], + [[ + 4146, + 4005, + 4147 + ]], + [[ + 4146, + 4163, + 4005 + ]], + [[ + 4078, + 4087, + 3962 + ]], + [[ + 3964, + 4079, + 3962 + ]], + [[ + 4338, + 4087, + 4078 + ]], + [[ + 4339, + 3964, + 3962 + ]], + [[ + 4340, + 3978, + 3983 + ]], + [[ + 3978, + 3974, + 3971 + ]], + [[ + 4339, + 3961, + 3964 + ]], + [[ + 4339, + 3962, + 3961 + ]], + [[ + 3979, + 3977, + 4341 + ]], + [[ + 3976, + 3974, + 4341 + ]], + [[ + 3975, + 3977, + 4340 + ]], + [[ + 3976, + 4341, + 3977 + ]], + [[ + 3983, + 3978, + 3971 + ]], + [[ + 4340, + 3977, + 3979 + ]], + [[ + 3974, + 3979, + 4341 + ]], + [[ + 3978, + 4340, + 3979 + ]], + [[ + 4338, + 4078, + 4089 + ]], + [[ + 3962, + 4079, + 4078 + ]], + [[ + 4014, + 4012, + 3981 + ]], + [[ + 4014, + 3965, + 4012 + ]], + [[ + 4008, + 3967, + 3966 + ]], + [[ + 3990, + 3981, + 3967 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b2c1659af-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efe75149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:55:22.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 4342, + 4343, + 4344 + ]], + [[ + 4345, + 4346, + 4342 + ]], + [[ + 4345, + 4342, + 4344 + ]], + [[ + 4344, + 4343, + 4347 + ]], + [[ + 4347, + 4343, + 4348 + ]], + [[ + 4349, + 4350, + 4346 + ]], + [[ + 4346, + 4351, + 4342 + ]], + [[ + 4346, + 4352, + 4351 + ]], + [[ + 4346, + 4353, + 4352 + ]], + [[ + 4346, + 4354, + 4353 + ]], + [[ + 4346, + 4355, + 4354 + ]], + [[ + 4346, + 4350, + 4355 + ]], + [[ + 4349, + 4356, + 4350 + ]], + [[ + 4357, + 4358, + 4359 + ]], + [[ + 4349, + 4360, + 4356 + ]], + [[ + 4361, + 4362, + 4363 + ]], + [[ + 4364, + 4365, + 4360 + ]], + [[ + 4366, + 4367, + 4368 + ]], + [[ + 4369, + 4370, + 4365 + ]], + [[ + 4371, + 4372, + 4373 + ]], + [[ + 4374, + 4375, + 4376 + ]], + [[ + 4376, + 4377, + 4378 + ]], + [[ + 4379, + 4380, + 4362 + ]], + [[ + 4381, + 4382, + 4383 + ]], + [[ + 4384, + 4385, + 4386 + ]], + [[ + 4387, + 4388, + 4389 + ]], + [[ + 4390, + 4391, + 4392 + ]], + [[ + 4393, + 4394, + 4395 + ]], + [[ + 4396, + 4397, + 4398 + ]], + [[ + 4396, + 4399, + 4400 + ]], + [[ + 4401, + 4402, + 4403 + ]], + [[ + 4400, + 4404, + 4370 + ]], + [[ + 4368, + 4405, + 4406 + ]], + [[ + 4399, + 4396, + 4406 + ]], + [[ + 4407, + 4408, + 4382 + ]], + [[ + 4409, + 4410, + 4411 + ]], + [[ + 4412, + 4413, + 4414 + ]], + [[ + 4369, + 4349, + 4413 + ]], + [[ + 4415, + 4416, + 4417 + ]], + [[ + 4367, + 4416, + 4368 + ]], + [[ + 4415, + 4418, + 4414 + ]], + [[ + 4416, + 4349, + 4368 + ]], + [[ + 4419, + 4372, + 4420 + ]], + [[ + 4421, + 4422, + 4423 + ]], + [[ + 4424, + 4372, + 4371 + ]], + [[ + 4425, + 4426, + 4427 + ]], + [[ + 4428, + 4429, + 4430 + ]], + [[ + 4431, + 4426, + 4403 + ]], + [[ + 4432, + 4433, + 4434 + ]], + [[ + 4426, + 4435, + 4427 + ]], + [[ + 4374, + 4436, + 4375 + ]], + [[ + 4436, + 4437, + 4438 + ]], + [[ + 4427, + 4435, + 4439 + ]], + [[ + 4435, + 4426, + 4431 + ]], + [[ + 4414, + 4418, + 4370 + ]], + [[ + 4415, + 4413, + 4416 + ]], + [[ + 4440, + 4401, + 4374 + ]], + [[ + 4437, + 4426, + 4425 + ]], + [[ + 4377, + 4376, + 4375 + ]], + [[ + 4375, + 4436, + 4438 + ]], + [[ + 4397, + 4396, + 4400 + ]], + [[ + 4373, + 4441, + 4442 + ]], + [[ + 4418, + 4443, + 4370 + ]], + [[ + 4398, + 4366, + 4396 + ]], + [[ + 4349, + 4444, + 4445 + ]], + [[ + 4430, + 4411, + 4403 + ]], + [[ + 4438, + 4446, + 4434 + ]], + [[ + 4435, + 4431, + 4439 + ]], + [[ + 4447, + 4448, + 4387 + ]], + [[ + 4449, + 4358, + 4450 + ]], + [[ + 4451, + 4440, + 4374 + ]], + [[ + 4375, + 4438, + 4433 + ]], + [[ + 4433, + 4452, + 4377 + ]], + [[ + 4375, + 4433, + 4377 + ]], + [[ + 4442, + 4371, + 4373 + ]], + [[ + 4420, + 4429, + 4428 + ]], + [[ + 4453, + 4451, + 4376 + ]], + [[ + 4454, + 4455, + 4456 + ]], + [[ + 4428, + 4430, + 4403 + ]], + [[ + 4457, + 4349, + 4458 + ]], + [[ + 4459, + 4460, + 4429 + ]], + [[ + 4461, + 4462, + 4349 + ]], + [[ + 4463, + 4389, + 4388 + ]], + [[ + 4464, + 4465, + 4466 + ]], + [[ + 4368, + 4371, + 4405 + ]], + [[ + 4371, + 4445, + 4424 + ]], + [[ + 4409, + 4460, + 4467 + ]], + [[ + 4468, + 4469, + 4390 + ]], + [[ + 4406, + 4396, + 4366 + ]], + [[ + 4405, + 4371, + 4399 + ]], + [[ + 4374, + 4401, + 4436 + ]], + [[ + 4403, + 4426, + 4437 + ]], + [[ + 4357, + 4447, + 4470 + ]], + [[ + 4471, + 4472, + 4340 + ]], + [[ + 4401, + 4440, + 4402 + ]], + [[ + 4473, + 4474, + 4444 + ]], + [[ + 4372, + 4473, + 4420 + ]], + [[ + 4372, + 4424, + 4473 + ]], + [[ + 4376, + 4451, + 4374 + ]], + [[ + 4402, + 4428, + 4403 + ]], + [[ + 4455, + 4451, + 4453 + ]], + [[ + 4428, + 4454, + 4420 + ]], + [[ + 4404, + 4456, + 4453 + ]], + [[ + 4404, + 4441, + 4475 + ]], + [[ + 4445, + 4444, + 4474 + ]], + [[ + 4349, + 4460, + 4461 + ]], + [[ + 4359, + 4449, + 4388 + ]], + [[ + 4476, + 4477, + 4478 + ]], + [[ + 4479, + 4450, + 4480 + ]], + [[ + 4481, + 4482, + 4463 + ]], + [[ + 4438, + 4425, + 4446 + ]], + [[ + 4438, + 4437, + 4425 + ]], + [[ + 4366, + 4398, + 4367 + ]], + [[ + 4443, + 4418, + 4415 + ]], + [[ + 4483, + 4484, + 4485 + ]], + [[ + 4486, + 4480, + 4358 + ]], + [[ + 4388, + 4387, + 4448 + ]], + [[ + 4389, + 4487, + 4387 + ]], + [[ + 4486, + 4479, + 4480 + ]], + [[ + 4488, + 4489, + 4490 + ]], + [[ + 4491, + 4449, + 4450 + ]], + [[ + 4479, + 4486, + 4492 + ]], + [[ + 4357, + 4486, + 4358 + ]], + [[ + 4493, + 4494, + 4495 + ]], + [[ + 4496, + 4497, + 4498 + ]], + [[ + 4499, + 4500, + 4498 + ]], + [[ + 4417, + 4416, + 4367 + ]], + [[ + 4413, + 4349, + 4416 + ]], + [[ + 4442, + 4441, + 4404 + ]], + [[ + 4373, + 4372, + 4475 + ]], + [[ + 4370, + 4369, + 4414 + ]], + [[ + 4414, + 4369, + 4412 + ]], + [[ + 4501, + 4502, + 4503 + ]], + [[ + 4504, + 4505, + 4506 + ]], + [[ + 4448, + 4359, + 4388 + ]], + [[ + 4480, + 4450, + 4358 + ]], + [[ + 4507, + 4432, + 4434 + ]], + [[ + 4508, + 4509, + 4510 + ]], + [[ + 4463, + 4511, + 4481 + ]], + [[ + 4472, + 3975, + 4340 + ]], + [[ + 4512, + 4340, + 4482 + ]], + [[ + 4513, + 4495, + 4494 + ]], + [[ + 4481, + 4511, + 4449 + ]], + [[ + 4463, + 4388, + 4449 + ]], + [[ + 4491, + 4481, + 4449 + ]], + [[ + 4511, + 4463, + 4449 + ]], + [[ + 4437, + 4401, + 4403 + ]], + [[ + 4437, + 4436, + 4401 + ]], + [[ + 4427, + 4446, + 4425 + ]], + [[ + 4431, + 4403, + 4411 + ]], + [[ + 4479, + 4493, + 4450 + ]], + [[ + 4514, + 4515, + 3975 + ]], + [[ + 4450, + 4493, + 4495 + ]], + [[ + 4516, + 4500, + 4517 + ]], + [[ + 4489, + 4495, + 4513 + ]], + [[ + 4493, + 4479, + 4492 + ]], + [[ + 4368, + 4445, + 4371 + ]], + [[ + 4474, + 4473, + 4424 + ]], + [[ + 4368, + 4406, + 4366 + ]], + [[ + 4405, + 4399, + 4406 + ]], + [[ + 4463, + 4487, + 4389 + ]], + [[ + 4340, + 4477, + 4487 + ]], + [[ + 4512, + 4471, + 4340 + ]], + [[ + 4518, + 4519, + 4471 + ]], + [[ + 4518, + 4512, + 4519 + ]], + [[ + 4482, + 4487, + 4463 + ]], + [[ + 4471, + 4512, + 4518 + ]], + [[ + 4482, + 4481, + 4491 + ]], + [[ + 4442, + 4399, + 4371 + ]], + [[ + 4442, + 4400, + 4399 + ]], + [[ + 4451, + 4402, + 4440 + ]], + [[ + 4451, + 4455, + 4402 + ]], + [[ + 4454, + 4419, + 4420 + ]], + [[ + 4520, + 4462, + 4461 + ]], + [[ + 4424, + 4445, + 4474 + ]], + [[ + 4368, + 4349, + 4445 + ]], + [[ + 4413, + 4415, + 4414 + ]], + [[ + 4417, + 4443, + 4415 + ]], + [[ + 4449, + 4359, + 4358 + ]], + [[ + 4448, + 4447, + 4357 + ]], + [[ + 4446, + 4521, + 4434 + ]], + [[ + 4522, + 4439, + 4431 + ]], + [[ + 4523, + 4524, + 4525 + ]], + [[ + 4526, + 4527, + 4528 + ]], + [[ + 4443, + 4397, + 4370 + ]], + [[ + 4442, + 4404, + 4400 + ]], + [[ + 4370, + 4397, + 4400 + ]], + [[ + 4443, + 4417, + 4397 + ]], + [[ + 4529, + 4530, + 4531 + ]], + [[ + 4496, + 4499, + 4497 + ]], + [[ + 4532, + 4533, + 4534 + ]], + [[ + 4535, + 4536, + 4537 + ]], + [[ + 4538, + 4539, + 4540 + ]], + [[ + 4541, + 4542, + 4543 + ]], + [[ + 4544, + 4545, + 4546 + ]], + [[ + 4547, + 4548, + 4549 + ]], + [[ + 4550, + 4551, + 4552 + ]], + [[ + 4553, + 4554, + 4395 + ]], + [[ + 4555, + 4510, + 4556 + ]], + [[ + 4557, + 4558, + 4559 + ]], + [[ + 4560, + 4550, + 4561 + ]], + [[ + 4408, + 4562, + 4361 + ]], + [[ + 4523, + 4361, + 4363 + ]], + [[ + 4563, + 4548, + 4547 + ]], + [[ + 4509, + 4564, + 4565 + ]], + [[ + 4392, + 4391, + 4566 + ]], + [[ + 4567, + 4509, + 4565 + ]], + [[ + 4411, + 4522, + 4431 + ]], + [[ + 4568, + 4569, + 4570 + ]], + [[ + 4468, + 4392, + 4571 + ]], + [[ + 4363, + 4572, + 4523 + ]], + [[ + 4523, + 4572, + 4524 + ]], + [[ + 4573, + 4574, + 4565 + ]], + [[ + 4575, + 4521, + 4446 + ]], + [[ + 4556, + 4510, + 4567 + ]], + [[ + 4576, + 4577, + 4421 + ]], + [[ + 4510, + 4509, + 4567 + ]], + [[ + 4508, + 4578, + 4577 + ]], + [[ + 4421, + 4423, + 4564 + ]], + [[ + 4579, + 4580, + 4581 + ]], + [[ + 4582, + 4583, + 4584 + ]], + [[ + 4585, + 4586, + 4386 + ]], + [[ + 4531, + 4587, + 4588 + ]], + [[ + 4386, + 4586, + 4589 + ]], + [[ + 4590, + 4591, + 4543 + ]], + [[ + 4534, + 4592, + 4532 + ]], + [[ + 4593, + 4594, + 4595 + ]], + [[ + 4596, + 4589, + 4586 + ]], + [[ + 4564, + 4423, + 4597 + ]], + [[ + 4566, + 4598, + 4362 + ]], + [[ + 4580, + 4423, + 4581 + ]], + [[ + 4599, + 4600, + 4580 + ]], + [[ + 4380, + 4566, + 4362 + ]], + [[ + 4391, + 4601, + 4602 + ]], + [[ + 4574, + 4469, + 4603 + ]], + [[ + 4565, + 4564, + 4597 + ]], + [[ + 4604, + 4597, + 4600 + ]], + [[ + 4521, + 4605, + 4507 + ]], + [[ + 4605, + 4422, + 4507 + ]], + [[ + 4601, + 4606, + 4607 + ]], + [[ + 4429, + 4460, + 4409 + ]], + [[ + 4522, + 4608, + 4439 + ]], + [[ + 4598, + 4609, + 4363 + ]], + [[ + 4610, + 4590, + 4611 + ]], + [[ + 4609, + 4602, + 4612 + ]], + [[ + 4613, + 4614, + 4615 + ]], + [[ + 4525, + 4524, + 4614 + ]], + [[ + 4616, + 4586, + 4585 + ]], + [[ + 4608, + 4617, + 4618 + ]], + [[ + 4363, + 4612, + 4572 + ]], + [[ + 4612, + 4524, + 4572 + ]], + [[ + 4619, + 4620, + 4534 + ]], + [[ + 4541, + 4621, + 4622 + ]], + [[ + 4623, + 4624, + 4625 + ]], + [[ + 4362, + 4598, + 4363 + ]], + [[ + 4626, + 4391, + 4602 + ]], + [[ + 4627, + 4628, + 4623 + ]], + [[ + 4629, + 4630, + 4631 + ]], + [[ + 4632, + 4559, + 4525 + ]], + [[ + 4523, + 4558, + 4361 + ]], + [[ + 4621, + 4594, + 4620 + ]], + [[ + 4536, + 4484, + 4633 + ]], + [[ + 4634, + 4635, + 4636 + ]], + [[ + 4385, + 4585, + 4386 + ]], + [[ + 4637, + 4638, + 4639 + ]], + [[ + 4385, + 4640, + 4641 + ]], + [[ + 4362, + 4562, + 4379 + ]], + [[ + 4642, + 4643, + 4644 + ]], + [[ + 4601, + 4645, + 4606 + ]], + [[ + 4469, + 4574, + 4573 + ]], + [[ + 4377, + 4452, + 4378 + ]], + [[ + 4646, + 4507, + 4422 + ]], + [[ + 4612, + 4614, + 4524 + ]], + [[ + 4584, + 4647, + 4582 + ]], + [[ + 4648, + 4594, + 4591 + ]], + [[ + 4649, + 4650, + 4651 + ]], + [[ + 4652, + 4653, + 4579 + ]], + [[ + 4654, + 4655, + 4606 + ]], + [[ + 4656, + 4384, + 4386 + ]], + [[ + 4628, + 4627, + 4532 + ]], + [[ + 4640, + 4657, + 4588 + ]], + [[ + 4386, + 4589, + 4656 + ]], + [[ + 4658, + 4464, + 4384 + ]], + [[ + 4659, + 4529, + 4660 + ]], + [[ + 4466, + 4661, + 4464 + ]], + [[ + 4637, + 4662, + 4660 + ]], + [[ + 4663, + 4664, + 4656 + ]], + [[ + 4665, + 4657, + 4385 + ]], + [[ + 4648, + 4591, + 4590 + ]], + [[ + 4594, + 4621, + 4591 + ]], + [[ + 4609, + 4612, + 4363 + ]], + [[ + 4648, + 4614, + 4612 + ]], + [[ + 4666, + 4667, + 4668 + ]], + [[ + 4669, + 4648, + 4610 + ]], + [[ + 4670, + 4671, + 4672 + ]], + [[ + 4548, + 4673, + 4549 + ]], + [[ + 4674, + 4675, + 4526 + ]], + [[ + 4676, + 4610, + 4611 + ]], + [[ + 4540, + 4677, + 4678 + ]], + [[ + 4679, + 4680, + 4681 + ]], + [[ + 4682, + 4539, + 4683 + ]], + [[ + 4684, + 4685, + 4686 + ]], + [[ + 4667, + 4526, + 4668 + ]], + [[ + 4528, + 4683, + 4687 + ]], + [[ + 4688, + 4675, + 4674 + ]], + [[ + 4526, + 4528, + 4674 + ]], + [[ + 4561, + 4689, + 4560 + ]], + [[ + 4668, + 4526, + 4689 + ]], + [[ + 4690, + 4560, + 4688 + ]], + [[ + 4688, + 4674, + 4691 + ]], + [[ + 4527, + 4682, + 4683 + ]], + [[ + 4538, + 4634, + 4686 + ]], + [[ + 4686, + 4685, + 4538 + ]], + [[ + 4687, + 4674, + 4528 + ]], + [[ + 4539, + 4538, + 4685 + ]], + [[ + 4635, + 4659, + 4636 + ]], + [[ + 4527, + 4683, + 4528 + ]], + [[ + 4539, + 4685, + 4683 + ]], + [[ + 4529, + 4531, + 4660 + ]], + [[ + 4692, + 4532, + 4531 + ]], + [[ + 4693, + 4694, + 4530 + ]], + [[ + 4624, + 4592, + 4593 + ]], + [[ + 4693, + 4677, + 4694 + ]], + [[ + 4695, + 4611, + 4696 + ]], + [[ + 4538, + 4540, + 4678 + ]], + [[ + 4697, + 4540, + 4539 + ]], + [[ + 4574, + 4556, + 4567 + ]], + [[ + 4698, + 4452, + 4432 + ]], + [[ + 4699, + 4676, + 4611 + ]], + [[ + 4668, + 4689, + 4700 + ]], + [[ + 4701, + 4702, + 4703 + ]], + [[ + 4537, + 4633, + 4663 + ]], + [[ + 4651, + 4704, + 4484 + ]], + [[ + 4705, + 4706, + 4476 + ]], + [[ + 4650, + 4707, + 4708 + ]], + [[ + 4709, + 4499, + 4496 + ]], + [[ + 4704, + 4485, + 4484 + ]], + [[ + 4702, + 4483, + 4485 + ]], + [[ + 4710, + 4711, + 4702 + ]], + [[ + 4663, + 4589, + 4537 + ]], + [[ + 4514, + 4506, + 4505 + ]], + [[ + 4712, + 4713, + 4492 + ]], + [[ + 4657, + 4660, + 4588 + ]], + [[ + 4660, + 4531, + 4588 + ]], + [[ + 4384, + 4665, + 4385 + ]], + [[ + 4588, + 4587, + 4640 + ]], + [[ + 4552, + 4714, + 4382 + ]], + [[ + 4552, + 4715, + 4716 + ]], + [[ + 4656, + 4658, + 4384 + ]], + [[ + 4478, + 4717, + 4476 + ]], + [[ + 4656, + 4664, + 4658 + ]], + [[ + 4710, + 4702, + 4718 + ]], + [[ + 4665, + 4464, + 4661 + ]], + [[ + 4658, + 4664, + 4719 + ]], + [[ + 4720, + 4721, + 4722 + ]], + [[ + 4702, + 4485, + 4703 + ]], + [[ + 4723, + 4503, + 4701 + ]], + [[ + 4724, + 4722, + 4721 + ]], + [[ + 4387, + 4720, + 4447 + ]], + [[ + 4701, + 4703, + 4723 + ]], + [[ + 4357, + 4496, + 4486 + ]], + [[ + 4704, + 4723, + 4703 + ]], + [[ + 4704, + 4725, + 4723 + ]], + [[ + 4726, + 4727, + 4728 + ]], + [[ + 4725, + 4729, + 4726 + ]], + [[ + 4728, + 4730, + 4731 + ]], + [[ + 4516, + 4732, + 4500 + ]], + [[ + 4731, + 4709, + 4733 + ]], + [[ + 4734, + 4735, + 4556 + ]], + [[ + 4644, + 4736, + 4642 + ]], + [[ + 4603, + 4734, + 4556 + ]], + [[ + 4735, + 4644, + 4555 + ]], + [[ + 4556, + 4735, + 4555 + ]], + [[ + 4546, + 4545, + 4736 + ]], + [[ + 4731, + 4737, + 4728 + ]], + [[ + 4627, + 4623, + 4585 + ]], + [[ + 4728, + 4737, + 4726 + ]], + [[ + 4470, + 4709, + 4496 + ]], + [[ + 4707, + 4727, + 4729 + ]], + [[ + 4727, + 4738, + 4739 + ]], + [[ + 4729, + 4708, + 4707 + ]], + [[ + 4596, + 4535, + 4537 + ]], + [[ + 4658, + 4719, + 4465 + ]], + [[ + 4705, + 4710, + 4718 + ]], + [[ + 4740, + 4741, + 4618 + ]], + [[ + 4581, + 4423, + 4422 + ]], + [[ + 4741, + 4575, + 4618 + ]], + [[ + 4521, + 4507, + 4434 + ]], + [[ + 4740, + 4605, + 4741 + ]], + [[ + 4581, + 4422, + 4605 + ]], + [[ + 4740, + 4581, + 4605 + ]], + [[ + 4579, + 4653, + 4599 + ]], + [[ + 4742, + 4634, + 4636 + ]], + [[ + 4538, + 4678, + 4634 + ]], + [[ + 4678, + 4635, + 4634 + ]], + [[ + 4678, + 4693, + 4529 + ]], + [[ + 4510, + 4743, + 4508 + ]], + [[ + 4393, + 4453, + 4378 + ]], + [[ + 4378, + 4698, + 4577 + ]], + [[ + 4432, + 4507, + 4698 + ]], + [[ + 4618, + 4617, + 4744 + ]], + [[ + 4604, + 4654, + 4645 + ]], + [[ + 4745, + 4522, + 4410 + ]], + [[ + 4655, + 4607, + 4606 + ]], + [[ + 4740, + 4579, + 4581 + ]], + [[ + 4740, + 4652, + 4579 + ]], + [[ + 4590, + 4543, + 4542 + ]], + [[ + 4591, + 4621, + 4543 + ]], + [[ + 4635, + 4529, + 4659 + ]], + [[ + 4635, + 4678, + 4529 + ]], + [[ + 4685, + 4684, + 4683 + ]], + [[ + 4691, + 4674, + 4687 + ]], + [[ + 4746, + 4491, + 4450 + ]], + [[ + 4519, + 4512, + 4491 + ]], + [[ + 4618, + 4744, + 4740 + ]], + [[ + 4744, + 4458, + 4652 + ]], + [[ + 4592, + 4534, + 4620 + ]], + [[ + 4694, + 4695, + 4747 + ]], + [[ + 4529, + 4693, + 4530 + ]], + [[ + 4678, + 4677, + 4693 + ]], + [[ + 4434, + 4433, + 4438 + ]], + [[ + 4432, + 4452, + 4433 + ]], + [[ + 4394, + 4577, + 4578 + ]], + [[ + 4646, + 4422, + 4421 + ]], + [[ + 4689, + 4675, + 4560 + ]], + [[ + 4689, + 4526, + 4675 + ]], + [[ + 4655, + 4599, + 4653 + ]], + [[ + 4580, + 4597, + 4423 + ]], + [[ + 4748, + 4749, + 4631 + ]], + [[ + 4750, + 4751, + 4707 + ]], + [[ + 4623, + 4625, + 4752 + ]], + [[ + 4536, + 4753, + 4649 + ]], + [[ + 4641, + 4627, + 4585 + ]], + [[ + 4592, + 4620, + 4593 + ]], + [[ + 4743, + 4644, + 4554 + ]], + [[ + 4570, + 4545, + 4754 + ]], + [[ + 4735, + 4736, + 4644 + ]], + [[ + 4735, + 4734, + 4546 + ]], + [[ + 4545, + 4755, + 4736 + ]], + [[ + 4756, + 4757, + 4643 + ]], + [[ + 4756, + 4755, + 4545 + ]], + [[ + 4642, + 4736, + 4755 + ]], + [[ + 4570, + 4756, + 4545 + ]], + [[ + 4642, + 4755, + 4756 + ]], + [[ + 4735, + 4546, + 4736 + ]], + [[ + 4571, + 4380, + 4544 + ]], + [[ + 4599, + 4654, + 4600 + ]], + [[ + 4604, + 4573, + 4597 + ]], + [[ + 4599, + 4655, + 4654 + ]], + [[ + 4573, + 4565, + 4597 + ]], + [[ + 4503, + 4724, + 4701 + ]], + [[ + 4758, + 4487, + 4477 + ]], + [[ + 4759, + 4720, + 4722 + ]], + [[ + 4760, + 4487, + 4758 + ]], + [[ + 4701, + 4718, + 4702 + ]], + [[ + 4701, + 4724, + 4718 + ]], + [[ + 4720, + 4759, + 4447 + ]], + [[ + 4733, + 4737, + 4731 + ]], + [[ + 4739, + 4761, + 4730 + ]], + [[ + 4762, + 4515, + 4732 + ]], + [[ + 4542, + 4696, + 4611 + ]], + [[ + 4694, + 4677, + 4695 + ]], + [[ + 4763, + 4764, + 4765 + ]], + [[ + 4766, + 4712, + 4492 + ]], + [[ + 4517, + 4730, + 4516 + ]], + [[ + 4761, + 4762, + 4732 + ]], + [[ + 4662, + 4639, + 4767 + ]], + [[ + 4768, + 4742, + 4636 + ]], + [[ + 4470, + 4733, + 4709 + ]], + [[ + 4731, + 4517, + 4709 + ]], + [[ + 4749, + 4750, + 4650 + ]], + [[ + 4650, + 4750, + 4707 + ]], + [[ + 4456, + 4419, + 4454 + ]], + [[ + 4475, + 4372, + 4419 + ]], + [[ + 4402, + 4454, + 4428 + ]], + [[ + 4402, + 4455, + 4454 + ]], + [[ + 4483, + 4633, + 4484 + ]], + [[ + 4483, + 4711, + 4769 + ]], + [[ + 4658, + 4465, + 4464 + ]], + [[ + 4466, + 4465, + 4478 + ]], + [[ + 4770, + 4407, + 4714 + ]], + [[ + 4568, + 4570, + 4754 + ]], + [[ + 4771, + 4700, + 4563 + ]], + [[ + 4557, + 4383, + 4558 + ]], + [[ + 4679, + 4551, + 4772 + ]], + [[ + 4552, + 4382, + 4381 + ]], + [[ + 4715, + 4551, + 4679 + ]], + [[ + 4772, + 4550, + 4773 + ]], + [[ + 4694, + 4533, + 4530 + ]], + [[ + 4694, + 4747, + 4533 + ]], + [[ + 4530, + 4692, + 4531 + ]], + [[ + 4530, + 4533, + 4692 + ]], + [[ + 4531, + 4532, + 4587 + ]], + [[ + 4692, + 4533, + 4532 + ]], + [[ + 4690, + 4688, + 4691 + ]], + [[ + 4560, + 4675, + 4688 + ]], + [[ + 4549, + 4673, + 4583 + ]], + [[ + 4548, + 4559, + 4632 + ]], + [[ + 4774, + 4775, + 4472 + ]], + [[ + 4519, + 4746, + 4488 + ]], + [[ + 4556, + 4574, + 4603 + ]], + [[ + 4567, + 4565, + 4574 + ]], + [[ + 4652, + 4458, + 4653 + ]], + [[ + 4653, + 4458, + 4655 + ]], + [[ + 4770, + 4568, + 4754 + ]], + [[ + 4714, + 4552, + 4716 + ]], + [[ + 4776, + 4647, + 4669 + ]], + [[ + 4583, + 4673, + 4615 + ]], + [[ + 4719, + 4717, + 4465 + ]], + [[ + 4719, + 4664, + 4777 + ]], + [[ + 4719, + 4777, + 4778 + ]], + [[ + 4769, + 4663, + 4633 + ]], + [[ + 4385, + 4657, + 4640 + ]], + [[ + 4661, + 4779, + 4639 + ]], + [[ + 4575, + 4608, + 4618 + ]], + [[ + 4575, + 4427, + 4608 + ]], + [[ + 4716, + 4715, + 4681 + ]], + [[ + 4552, + 4551, + 4715 + ]], + [[ + 4569, + 4716, + 4681 + ]], + [[ + 4568, + 4714, + 4716 + ]], + [[ + 4478, + 4779, + 4466 + ]], + [[ + 4660, + 4662, + 4659 + ]], + [[ + 4768, + 4639, + 4779 + ]], + [[ + 4662, + 4636, + 4659 + ]], + [[ + 4657, + 4637, + 4660 + ]], + [[ + 4638, + 4661, + 4639 + ]], + [[ + 4661, + 4466, + 4779 + ]], + [[ + 4465, + 4717, + 4478 + ]], + [[ + 4381, + 4383, + 4780 + ]], + [[ + 4408, + 4361, + 4558 + ]], + [[ + 4563, + 4557, + 4548 + ]], + [[ + 4383, + 4408, + 4558 + ]], + [[ + 4781, + 4557, + 4563 + ]], + [[ + 4780, + 4383, + 4557 + ]], + [[ + 4768, + 4478, + 4477 + ]], + [[ + 4768, + 4779, + 4478 + ]], + [[ + 4629, + 4631, + 4535 + ]], + [[ + 4749, + 4650, + 4649 + ]], + [[ + 4680, + 4686, + 4742 + ]], + [[ + 4782, + 4691, + 4687 + ]], + [[ + 4676, + 4671, + 4776 + ]], + [[ + 4783, + 4549, + 4582 + ]], + [[ + 4468, + 4390, + 4392 + ]], + [[ + 4469, + 4645, + 4601 + ]], + [[ + 4762, + 4648, + 4458 + ]], + [[ + 4762, + 4594, + 4648 + ]], + [[ + 4607, + 4602, + 4601 + ]], + [[ + 4648, + 4612, + 4602 + ]], + [[ + 4762, + 4458, + 4349 + ]], + [[ + 4648, + 4602, + 4458 + ]], + [[ + 4740, + 4744, + 4652 + ]], + [[ + 4617, + 4458, + 4744 + ]], + [[ + 4617, + 4522, + 4745 + ]], + [[ + 4460, + 4349, + 4467 + ]], + [[ + 4385, + 4641, + 4585 + ]], + [[ + 4640, + 4587, + 4641 + ]], + [[ + 4491, + 4746, + 4519 + ]], + [[ + 4450, + 4495, + 4746 + ]], + [[ + 4508, + 4553, + 4578 + ]], + [[ + 4554, + 4453, + 4393 + ]], + [[ + 4444, + 4462, + 4473 + ]], + [[ + 4444, + 4349, + 4462 + ]], + [[ + 4420, + 4459, + 4429 + ]], + [[ + 4520, + 4473, + 4462 + ]], + [[ + 4420, + 4520, + 4459 + ]], + [[ + 4420, + 4473, + 4520 + ]], + [[ + 4515, + 4784, + 4732 + ]], + [[ + 4498, + 4497, + 4499 + ]], + [[ + 4492, + 4498, + 4766 + ]], + [[ + 4486, + 4496, + 4498 + ]], + [[ + 4698, + 4646, + 4577 + ]], + [[ + 4698, + 4507, + 4646 + ]], + [[ + 4464, + 4665, + 4384 + ]], + [[ + 4661, + 4638, + 4665 + ]], + [[ + 4472, + 4785, + 4786 + ]], + [[ + 4787, + 4774, + 4488 + ]], + [[ + 4788, + 4774, + 4787 + ]], + [[ + 4746, + 4495, + 4489 + ]], + [[ + 4620, + 4622, + 4621 + ]], + [[ + 4696, + 4542, + 4541 + ]], + [[ + 4490, + 4489, + 4506 + ]], + [[ + 4488, + 4746, + 4489 + ]], + [[ + 4789, + 4490, + 4506 + ]], + [[ + 4789, + 4787, + 4490 + ]], + [[ + 4781, + 4700, + 4561 + ]], + [[ + 4563, + 4547, + 4771 + ]], + [[ + 4666, + 4771, + 4547 + ]], + [[ + 4668, + 4700, + 4771 + ]], + [[ + 4608, + 4427, + 4439 + ]], + [[ + 4575, + 4446, + 4427 + ]], + [[ + 4456, + 4475, + 4419 + ]], + [[ + 4441, + 4373, + 4475 + ]], + [[ + 4768, + 4767, + 4639 + ]], + [[ + 4768, + 4636, + 4767 + ]], + [[ + 4724, + 4721, + 4790 + ]], + [[ + 4720, + 4387, + 4760 + ]], + [[ + 4645, + 4573, + 4604 + ]], + [[ + 4645, + 4469, + 4573 + ]], + [[ + 4722, + 4502, + 4759 + ]], + [[ + 4503, + 4723, + 4501 + ]], + [[ + 4748, + 4631, + 4630 + ]], + [[ + 4749, + 4753, + 4631 + ]], + [[ + 4506, + 4713, + 4504 + ]], + [[ + 4492, + 4494, + 4493 + ]], + [[ + 4468, + 4734, + 4603 + ]], + [[ + 4571, + 4546, + 4734 + ]], + [[ + 4615, + 4584, + 4583 + ]], + [[ + 4648, + 4669, + 4584 + ]], + [[ + 4376, + 4378, + 4453 + ]], + [[ + 4452, + 4698, + 4378 + ]], + [[ + 4394, + 4393, + 4378 + ]], + [[ + 4395, + 4554, + 4393 + ]], + [[ + 4791, + 4504, + 4712 + ]], + [[ + 4513, + 4494, + 4713 + ]], + [[ + 4390, + 4601, + 4391 + ]], + [[ + 4390, + 4469, + 4601 + ]], + [[ + 4684, + 4782, + 4687 + ]], + [[ + 4680, + 4690, + 4691 + ]], + [[ + 4765, + 4789, + 4506 + ]], + [[ + 4788, + 4775, + 4774 + ]], + [[ + 4514, + 4763, + 4765 + ]], + [[ + 4764, + 4785, + 4788 + ]], + [[ + 4786, + 4792, + 4763 + ]], + [[ + 4786, + 4785, + 4792 + ]], + [[ + 4509, + 4576, + 4564 + ]], + [[ + 4577, + 4646, + 4421 + ]], + [[ + 4561, + 4550, + 4780 + ]], + [[ + 4560, + 4773, + 4550 + ]], + [[ + 4550, + 4381, + 4780 + ]], + [[ + 4550, + 4552, + 4381 + ]], + [[ + 4519, + 4774, + 4471 + ]], + [[ + 4519, + 4488, + 4774 + ]], + [[ + 4599, + 4580, + 4579 + ]], + [[ + 4600, + 4597, + 4580 + ]], + [[ + 4514, + 4765, + 4506 + ]], + [[ + 4763, + 4792, + 4764 + ]], + [[ + 4726, + 4501, + 4725 + ]], + [[ + 4737, + 4502, + 4501 + ]], + [[ + 4723, + 4725, + 4501 + ]], + [[ + 4708, + 4729, + 4725 + ]], + [[ + 4727, + 4726, + 4729 + ]], + [[ + 4737, + 4501, + 4726 + ]], + [[ + 4502, + 4733, + 4759 + ]], + [[ + 4502, + 4737, + 4733 + ]], + [[ + 4382, + 4408, + 4383 + ]], + [[ + 4382, + 4714, + 4407 + ]], + [[ + 4747, + 4619, + 4533 + ]], + [[ + 4619, + 4622, + 4620 + ]], + [[ + 4776, + 4669, + 4610 + ]], + [[ + 4647, + 4584, + 4669 + ]], + [[ + 4484, + 4536, + 4651 + ]], + [[ + 4753, + 4749, + 4649 + ]], + [[ + 4554, + 4643, + 4681 + ]], + [[ + 4643, + 4642, + 4756 + ]], + [[ + 4716, + 4569, + 4568 + ]], + [[ + 4757, + 4756, + 4570 + ]], + [[ + 4506, + 4513, + 4713 + ]], + [[ + 4506, + 4489, + 4513 + ]], + [[ + 4757, + 4569, + 4681 + ]], + [[ + 4757, + 4570, + 4569 + ]], + [[ + 4762, + 4748, + 4594 + ]], + [[ + 4750, + 4749, + 4748 + ]], + [[ + 4762, + 4738, + 4748 + ]], + [[ + 4751, + 4727, + 4707 + ]], + [[ + 4759, + 4470, + 4447 + ]], + [[ + 4759, + 4733, + 4470 + ]], + [[ + 4448, + 4357, + 4359 + ]], + [[ + 4470, + 4496, + 4357 + ]], + [[ + 4793, + 4705, + 4476 + ]], + [[ + 4790, + 4721, + 4758 + ]], + [[ + 4718, + 4706, + 4705 + ]], + [[ + 4721, + 4720, + 4760 + ]], + [[ + 4616, + 4629, + 4596 + ]], + [[ + 4631, + 4753, + 4535 + ]], + [[ + 4636, + 4662, + 4767 + ]], + [[ + 4637, + 4639, + 4662 + ]], + [[ + 4576, + 4508, + 4577 + ]], + [[ + 4510, + 4555, + 4743 + ]], + [[ + 4673, + 4613, + 4615 + ]], + [[ + 4525, + 4614, + 4613 + ]], + [[ + 4763, + 4514, + 3975 + ]], + [[ + 4515, + 4762, + 3975 + ]], + [[ + 4621, + 4541, + 4543 + ]], + [[ + 4622, + 4696, + 4541 + ]], + [[ + 4577, + 4394, + 4378 + ]], + [[ + 4578, + 4395, + 4394 + ]], + [[ + 4794, + 4758, + 4477 + ]], + [[ + 4706, + 4790, + 4758 + ]], + [[ + 4721, + 4760, + 4758 + ]], + [[ + 4387, + 4487, + 4760 + ]], + [[ + 4722, + 4503, + 4502 + ]], + [[ + 4722, + 4724, + 4503 + ]], + [[ + 4719, + 4778, + 4717 + ]], + [[ + 4711, + 4483, + 4702 + ]], + [[ + 4613, + 4632, + 4525 + ]], + [[ + 4548, + 4557, + 4559 + ]], + [[ + 4673, + 4632, + 4613 + ]], + [[ + 4673, + 4548, + 4632 + ]], + [[ + 4667, + 4672, + 4527 + ]], + [[ + 4540, + 4697, + 4677 + ]], + [[ + 4526, + 4667, + 4527 + ]], + [[ + 4666, + 4547, + 4783 + ]], + [[ + 4533, + 4619, + 4534 + ]], + [[ + 4747, + 4622, + 4619 + ]], + [[ + 4566, + 4626, + 4598 + ]], + [[ + 4566, + 4391, + 4626 + ]], + [[ + 4453, + 4456, + 4455 + ]], + [[ + 4404, + 4475, + 4456 + ]], + [[ + 4512, + 4482, + 4491 + ]], + [[ + 4340, + 4487, + 4482 + ]], + [[ + 4680, + 4742, + 4768 + ]], + [[ + 4686, + 4634, + 4742 + ]], + [[ + 4747, + 4696, + 4622 + ]], + [[ + 4747, + 4695, + 4696 + ]], + [[ + 4793, + 4476, + 4717 + ]], + [[ + 4706, + 4794, + 4476 + ]], + [[ + 4611, + 4590, + 4542 + ]], + [[ + 4610, + 4648, + 4590 + ]], + [[ + 4784, + 4515, + 4791 + ]], + [[ + 4712, + 4784, + 4791 + ]], + [[ + 4568, + 4770, + 4714 + ]], + [[ + 4380, + 4571, + 4392 + ]], + [[ + 4417, + 4398, + 4397 + ]], + [[ + 4417, + 4367, + 4398 + ]], + [[ + 4505, + 4515, + 4514 + ]], + [[ + 4505, + 4791, + 4515 + ]], + [[ + 4766, + 4784, + 4712 + ]], + [[ + 4766, + 4498, + 4500 + ]], + [[ + 4583, + 4582, + 4549 + ]], + [[ + 4647, + 4776, + 4582 + ]], + [[ + 4498, + 4492, + 4486 + ]], + [[ + 4713, + 4494, + 4492 + ]], + [[ + 3975, + 4786, + 4763 + ]], + [[ + 3975, + 4472, + 4786 + ]], + [[ + 4695, + 4697, + 4699 + ]], + [[ + 4682, + 4527, + 4672 + ]], + [[ + 4670, + 4672, + 4667 + ]], + [[ + 4795, + 4682, + 4672 + ]], + [[ + 4704, + 4708, + 4725 + ]], + [[ + 4651, + 4650, + 4708 + ]], + [[ + 4784, + 4500, + 4732 + ]], + [[ + 4784, + 4766, + 4500 + ]], + [[ + 4748, + 4595, + 4594 + ]], + [[ + 4625, + 4630, + 4752 + ]], + [[ + 4748, + 4625, + 4595 + ]], + [[ + 4748, + 4630, + 4625 + ]], + [[ + 4727, + 4739, + 4728 + ]], + [[ + 4761, + 4732, + 4516 + ]], + [[ + 4499, + 4517, + 4500 + ]], + [[ + 4730, + 4761, + 4516 + ]], + [[ + 4709, + 4517, + 4499 + ]], + [[ + 4731, + 4730, + 4517 + ]], + [[ + 4683, + 4684, + 4687 + ]], + [[ + 4782, + 4680, + 4691 + ]], + [[ + 4686, + 4782, + 4684 + ]], + [[ + 4686, + 4680, + 4782 + ]], + [[ + 4361, + 4562, + 4362 + ]], + [[ + 4408, + 4407, + 4562 + ]], + [[ + 4778, + 4793, + 4717 + ]], + [[ + 4778, + 4710, + 4793 + ]], + [[ + 4715, + 4679, + 4681 + ]], + [[ + 4773, + 4680, + 4679 + ]], + [[ + 4379, + 4796, + 4380 + ]], + [[ + 4754, + 4545, + 4544 + ]], + [[ + 4571, + 4544, + 4546 + ]], + [[ + 4796, + 4754, + 4544 + ]], + [[ + 4549, + 4783, + 4547 + ]], + [[ + 4783, + 4776, + 4671 + ]], + [[ + 4667, + 4666, + 4670 + ]], + [[ + 4668, + 4771, + 4666 + ]], + [[ + 4793, + 4710, + 4705 + ]], + [[ + 4778, + 4777, + 4711 + ]], + [[ + 4778, + 4711, + 4710 + ]], + [[ + 4777, + 4664, + 4769 + ]], + [[ + 4682, + 4697, + 4539 + ]], + [[ + 4682, + 4795, + 4697 + ]], + [[ + 4490, + 4787, + 4488 + ]], + [[ + 4788, + 4785, + 4775 + ]], + [[ + 4789, + 4788, + 4787 + ]], + [[ + 4789, + 4764, + 4788 + ]], + [[ + 4679, + 4772, + 4773 + ]], + [[ + 4551, + 4550, + 4772 + ]], + [[ + 4485, + 4704, + 4703 + ]], + [[ + 4651, + 4708, + 4704 + ]], + [[ + 4559, + 4523, + 4525 + ]], + [[ + 4559, + 4558, + 4523 + ]], + [[ + 4738, + 4751, + 4750 + ]], + [[ + 4738, + 4761, + 4739 + ]], + [[ + 4753, + 4536, + 4535 + ]], + [[ + 4649, + 4651, + 4536 + ]], + [[ + 4645, + 4654, + 4606 + ]], + [[ + 4604, + 4600, + 4654 + ]], + [[ + 4564, + 4576, + 4421 + ]], + [[ + 4509, + 4508, + 4576 + ]], + [[ + 4566, + 4380, + 4392 + ]], + [[ + 4796, + 4544, + 4380 + ]], + [[ + 4508, + 4743, + 4553 + ]], + [[ + 4555, + 4644, + 4743 + ]], + [[ + 4578, + 4553, + 4395 + ]], + [[ + 4743, + 4554, + 4553 + ]], + [[ + 4699, + 4697, + 4795 + ]], + [[ + 4695, + 4677, + 4697 + ]], + [[ + 4734, + 4468, + 4571 + ]], + [[ + 4603, + 4469, + 4468 + ]], + [[ + 4728, + 4739, + 4730 + ]], + [[ + 4727, + 4751, + 4738 + ]], + [[ + 4648, + 4615, + 4614 + ]], + [[ + 4648, + 4584, + 4615 + ]], + [[ + 4672, + 4671, + 4795 + ]], + [[ + 4670, + 4783, + 4671 + ]], + [[ + 4781, + 4561, + 4780 + ]], + [[ + 4700, + 4689, + 4561 + ]], + [[ + 4774, + 4472, + 4471 + ]], + [[ + 4775, + 4785, + 4472 + ]], + [[ + 4349, + 4369, + 4360 + ]], + [[ + 4413, + 4412, + 4369 + ]], + [[ + 4718, + 4790, + 4706 + ]], + [[ + 4718, + 4724, + 4790 + ]], + [[ + 4741, + 4521, + 4575 + ]], + [[ + 4741, + 4605, + 4521 + ]], + [[ + 4557, + 4781, + 4780 + ]], + [[ + 4563, + 4700, + 4781 + ]], + [[ + 4586, + 4616, + 4596 + ]], + [[ + 4752, + 4630, + 4616 + ]], + [[ + 4596, + 4629, + 4535 + ]], + [[ + 4616, + 4630, + 4629 + ]], + [[ + 4712, + 4504, + 4713 + ]], + [[ + 4791, + 4505, + 4504 + ]], + [[ + 4624, + 4628, + 4592 + ]], + [[ + 4532, + 4592, + 4628 + ]], + [[ + 4587, + 4627, + 4641 + ]], + [[ + 4587, + 4532, + 4627 + ]], + [[ + 4616, + 4623, + 4752 + ]], + [[ + 4616, + 4585, + 4623 + ]], + [[ + 4626, + 4609, + 4598 + ]], + [[ + 4626, + 4602, + 4609 + ]], + [[ + 4409, + 4457, + 4410 + ]], + [[ + 4617, + 4608, + 4522 + ]], + [[ + 4797, + 4745, + 4457 + ]], + [[ + 4409, + 4411, + 4430 + ]], + [[ + 4773, + 4690, + 4680 + ]], + [[ + 4773, + 4560, + 4690 + ]], + [[ + 4695, + 4699, + 4611 + ]], + [[ + 4795, + 4671, + 4676 + ]], + [[ + 4797, + 4457, + 4458 + ]], + [[ + 4467, + 4349, + 4457 + ]], + [[ + 4476, + 4794, + 4477 + ]], + [[ + 4706, + 4758, + 4794 + ]], + [[ + 4748, + 4738, + 4750 + ]], + [[ + 4762, + 4761, + 4738 + ]], + [[ + 4407, + 4379, + 4562 + ]], + [[ + 4407, + 4770, + 4379 + ]], + [[ + 4458, + 4607, + 4655 + ]], + [[ + 4458, + 4602, + 4607 + ]], + [[ + 4369, + 4364, + 4360 + ]], + [[ + 4369, + 4365, + 4364 + ]], + [[ + 4596, + 4537, + 4589 + ]], + [[ + 4536, + 4633, + 4537 + ]], + [[ + 4625, + 4624, + 4595 + ]], + [[ + 4623, + 4628, + 4624 + ]], + [[ + 4745, + 4410, + 4457 + ]], + [[ + 4522, + 4411, + 4410 + ]], + [[ + 4429, + 4409, + 4430 + ]], + [[ + 4467, + 4457, + 4409 + ]], + [[ + 4459, + 4461, + 4460 + ]], + [[ + 4459, + 4520, + 4461 + ]], + [[ + 4681, + 4643, + 4757 + ]], + [[ + 4554, + 4644, + 4643 + ]], + [[ + 4624, + 4593, + 4595 + ]], + [[ + 4620, + 4594, + 4593 + ]], + [[ + 4617, + 4797, + 4458 + ]], + [[ + 4617, + 4745, + 4797 + ]], + [[ + 4610, + 4676, + 4776 + ]], + [[ + 4699, + 4795, + 4676 + ]], + [[ + 4483, + 4769, + 4633 + ]], + [[ + 4656, + 4589, + 4663 + ]], + [[ + 4777, + 4769, + 4711 + ]], + [[ + 4664, + 4663, + 4769 + ]], + [[ + 4657, + 4638, + 4637 + ]], + [[ + 4657, + 4665, + 4638 + ]], + [[ + 4765, + 4764, + 4789 + ]], + [[ + 4792, + 4785, + 4764 + ]], + [[ + 4776, + 4783, + 4582 + ]], + [[ + 4670, + 4666, + 4783 + ]], + [[ + 4796, + 4770, + 4754 + ]], + [[ + 4796, + 4379, + 4770 + ]], + [[ + 4798, + 4345, + 4344 + ]], + [[ + 4347, + 4798, + 4344 + ]], + [[ + 4799, + 4347, + 4348 + ]], + [[ + 4800, + 4365, + 4370 + ]], + [[ + 4404, + 4800, + 4370 + ]], + [[ + 4801, + 4453, + 4554 + ]], + [[ + 4681, + 4801, + 4554 + ]], + [[ + 4802, + 4681, + 4680 + ]], + [[ + 4768, + 4802, + 4680 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b2c16cf36-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efebf149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:55:22.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 4803, + 4804, + 4805 + ]], + [[ + 4806, + 4807, + 4808 + ]], + [[ + 4809, + 4810, + 4811 + ]], + [[ + 4812, + 4813, + 4810 + ]], + [[ + 4810, + 4814, + 4815 + ]], + [[ + 4816, + 4817, + 4814 + ]], + [[ + 4818, + 4819, + 4816 + ]], + [[ + 4820, + 4821, + 4818 + ]], + [[ + 4822, + 4823, + 4824 + ]], + [[ + 4825, + 4826, + 4820 + ]], + [[ + 4827, + 4828, + 4829 + ]], + [[ + 4830, + 4831, + 4832 + ]], + [[ + 4828, + 4833, + 4834 + ]], + [[ + 4831, + 4835, + 4836 + ]], + [[ + 4837, + 4831, + 4838 + ]], + [[ + 4836, + 4825, + 4831 + ]], + [[ + 4839, + 4840, + 4841 + ]], + [[ + 4839, + 4842, + 4840 + ]], + [[ + 4839, + 4843, + 4842 + ]], + [[ + 4844, + 4845, + 4839 + ]], + [[ + 4846, + 4847, + 4848 + ]], + [[ + 4839, + 4849, + 4844 + ]], + [[ + 4850, + 4849, + 4839 + ]], + [[ + 4851, + 4852, + 4849 + ]], + [[ + 4853, + 4854, + 4850 + ]], + [[ + 4855, + 4853, + 4850 + ]], + [[ + 4848, + 4855, + 4850 + ]], + [[ + 4848, + 4856, + 4855 + ]], + [[ + 4857, + 4858, + 4848 + ]], + [[ + 4846, + 4859, + 4860 + ]], + [[ + 4861, + 4862, + 4848 + ]], + [[ + 4863, + 4846, + 4860 + ]], + [[ + 4864, + 4865, + 4847 + ]], + [[ + 4866, + 4864, + 4847 + ]], + [[ + 4848, + 4867, + 4846 + ]], + [[ + 4868, + 4869, + 4866 + ]], + [[ + 4870, + 4871, + 4868 + ]], + [[ + 4872, + 4870, + 4868 + ]], + [[ + 4872, + 4873, + 4870 + ]], + [[ + 4874, + 4875, + 4872 + ]], + [[ + 4874, + 4876, + 4875 + ]], + [[ + 4877, + 4878, + 4879 + ]], + [[ + 4879, + 4878, + 4880 + ]], + [[ + 4880, + 4878, + 4881 + ]], + [[ + 4882, + 4880, + 4881 + ]], + [[ + 4866, + 4883, + 4864 + ]], + [[ + 4884, + 4885, + 4886 + ]], + [[ + 4887, + 4888, + 4889 + ]], + [[ + 4890, + 4891, + 4892 + ]], + [[ + 4893, + 4894, + 4895 + ]], + [[ + 4896, + 4885, + 4884 + ]], + [[ + 4884, + 4897, + 4898 + ]], + [[ + 4899, + 4900, + 4901 + ]], + [[ + 4902, + 4903, + 4904 + ]], + [[ + 4905, + 4906, + 4907 + ]], + [[ + 4908, + 4909, + 4910 + ]], + [[ + 4911, + 4912, + 4904 + ]], + [[ + 4907, + 4913, + 4914 + ]], + [[ + 4908, + 4915, + 4916 + ]], + [[ + 4917, + 4918, + 4919 + ]], + [[ + 4920, + 4921, + 4922 + ]], + [[ + 4923, + 4924, + 4919 + ]], + [[ + 4913, + 4903, + 4902 + ]], + [[ + 4925, + 4890, + 4926 + ]], + [[ + 4927, + 4928, + 4889 + ]], + [[ + 4902, + 4929, + 4913 + ]], + [[ + 4930, + 4931, + 4932 + ]], + [[ + 4933, + 4934, + 4935 + ]], + [[ + 4936, + 4937, + 4938 + ]], + [[ + 4923, + 4919, + 4939 + ]], + [[ + 4940, + 4941, + 4942 + ]], + [[ + 4936, + 4943, + 4937 + ]], + [[ + 4878, + 4944, + 4945 + ]], + [[ + 4946, + 4947, + 4941 + ]], + [[ + 4948, + 4949, + 4881 + ]], + [[ + 4950, + 4874, + 4878 + ]], + [[ + 4881, + 4945, + 4948 + ]], + [[ + 4944, + 4874, + 4872 + ]], + [[ + 4868, + 4951, + 4872 + ]], + [[ + 4952, + 4944, + 4951 + ]], + [[ + 4953, + 4951, + 4954 + ]], + [[ + 4868, + 4871, + 4869 + ]], + [[ + 4846, + 4863, + 4847 + ]], + [[ + 4862, + 4857, + 4848 + ]], + [[ + 4847, + 4861, + 4848 + ]], + [[ + 4955, + 4956, + 4957 + ]], + [[ + 4958, + 4959, + 4841 + ]], + [[ + 4960, + 4961, + 4962 + ]], + [[ + 4963, + 4964, + 4965 + ]], + [[ + 4966, + 4967, + 4968 + ]], + [[ + 4820, + 4969, + 4827 + ]], + [[ + 4970, + 4971, + 4972 + ]], + [[ + 4973, + 4974, + 4975 + ]], + [[ + 4820, + 4976, + 4821 + ]], + [[ + 4977, + 4837, + 4978 + ]], + [[ + 4979, + 4980, + 4981 + ]], + [[ + 4982, + 4983, + 4984 + ]], + [[ + 4985, + 4986, + 4827 + ]], + [[ + 4987, + 4988, + 4989 + ]], + [[ + 4990, + 4991, + 4830 + ]], + [[ + 4992, + 4838, + 4833 + ]], + [[ + 4993, + 4994, + 4995 + ]], + [[ + 4994, + 4996, + 4997 + ]], + [[ + 4998, + 4999, + 5000 + ]], + [[ + 4836, + 5001, + 4825 + ]], + [[ + 4824, + 5002, + 5003 + ]], + [[ + 4822, + 4824, + 5003 + ]], + [[ + 5004, + 4979, + 5005 + ]], + [[ + 5005, + 5006, + 5004 + ]], + [[ + 5007, + 5008, + 4972 + ]], + [[ + 4969, + 5009, + 4827 + ]], + [[ + 5010, + 5011, + 5012 + ]], + [[ + 5013, + 5014, + 4980 + ]], + [[ + 5005, + 5015, + 5006 + ]], + [[ + 4824, + 5016, + 5017 + ]], + [[ + 5018, + 5019, + 5020 + ]], + [[ + 5021, + 5022, + 5023 + ]], + [[ + 5024, + 5025, + 5026 + ]], + [[ + 4831, + 4830, + 4835 + ]], + [[ + 5027, + 5010, + 5028 + ]], + [[ + 5029, + 5030, + 5031 + ]], + [[ + 4830, + 5032, + 5033 + ]], + [[ + 4838, + 4978, + 4837 + ]], + [[ + 5034, + 5016, + 4824 + ]], + [[ + 5035, + 5016, + 5034 + ]], + [[ + 5036, + 5037, + 5029 + ]], + [[ + 5038, + 4978, + 5039 + ]], + [[ + 5000, + 4972, + 5030 + ]], + [[ + 5040, + 4983, + 4989 + ]], + [[ + 5041, + 4837, + 4977 + ]], + [[ + 5030, + 5037, + 4998 + ]], + [[ + 4998, + 5000, + 5030 + ]], + [[ + 5042, + 4984, + 5031 + ]], + [[ + 5038, + 5041, + 4977 + ]], + [[ + 4984, + 4983, + 5029 + ]], + [[ + 4988, + 4957, + 4990 + ]], + [[ + 5043, + 5044, + 5045 + ]], + [[ + 5046, + 5008, + 5026 + ]], + [[ + 5047, + 5048, + 5049 + ]], + [[ + 5050, + 5051, + 5052 + ]], + [[ + 4999, + 5053, + 5054 + ]], + [[ + 5055, + 5035, + 5056 + ]], + [[ + 4823, + 5034, + 4824 + ]], + [[ + 5054, + 5053, + 5035 + ]], + [[ + 5015, + 5057, + 5058 + ]], + [[ + 5046, + 5059, + 5008 + ]], + [[ + 5041, + 4832, + 4837 + ]], + [[ + 4830, + 4991, + 5060 + ]], + [[ + 5061, + 5008, + 5007 + ]], + [[ + 5006, + 5062, + 5063 + ]], + [[ + 4823, + 4822, + 5000 + ]], + [[ + 4972, + 5008, + 5030 + ]], + [[ + 4970, + 4822, + 5064 + ]], + [[ + 5065, + 5048, + 5019 + ]], + [[ + 5066, + 4822, + 5003 + ]], + [[ + 4970, + 5000, + 4822 + ]], + [[ + 5067, + 5068, + 4983 + ]], + [[ + 4998, + 5037, + 5068 + ]], + [[ + 5069, + 5070, + 5071 + ]], + [[ + 5052, + 5072, + 4804 + ]], + [[ + 5073, + 5074, + 5075 + ]], + [[ + 5076, + 5077, + 5078 + ]], + [[ + 5052, + 5051, + 5072 + ]], + [[ + 5079, + 5080, + 5081 + ]], + [[ + 5082, + 5083, + 5072 + ]], + [[ + 5084, + 5069, + 5077 + ]], + [[ + 5049, + 4994, + 5047 + ]], + [[ + 5072, + 5051, + 5082 + ]], + [[ + 5085, + 5086, + 5087 + ]], + [[ + 4810, + 4815, + 4811 + ]], + [[ + 5085, + 5087, + 4969 + ]], + [[ + 5088, + 4996, + 5089 + ]], + [[ + 4803, + 5075, + 4804 + ]], + [[ + 4803, + 5073, + 5075 + ]], + [[ + 4984, + 5029, + 5031 + ]], + [[ + 4983, + 5036, + 5029 + ]], + [[ + 4994, + 4993, + 5090 + ]], + [[ + 5078, + 5077, + 5091 + ]], + [[ + 5020, + 5092, + 5090 + ]], + [[ + 5019, + 5048, + 5092 + ]], + [[ + 5090, + 5047, + 4994 + ]], + [[ + 5092, + 5048, + 5047 + ]], + [[ + 5093, + 5094, + 5095 + ]], + [[ + 4811, + 4804, + 5072 + ]], + [[ + 5096, + 4929, + 5097 + ]], + [[ + 5098, + 4919, + 4918 + ]], + [[ + 5066, + 5064, + 4822 + ]], + [[ + 5099, + 4970, + 5064 + ]], + [[ + 5100, + 5028, + 5101 + ]], + [[ + 5053, + 4998, + 5068 + ]], + [[ + 5102, + 5027, + 5028 + ]], + [[ + 5017, + 5002, + 4824 + ]], + [[ + 5103, + 4820, + 4826 + ]], + [[ + 4986, + 4833, + 4828 + ]], + [[ + 5104, + 5090, + 4993 + ]], + [[ + 5092, + 5047, + 5090 + ]], + [[ + 5105, + 5106, + 5107 + ]], + [[ + 5108, + 4904, + 5109 + ]], + [[ + 5110, + 5111, + 5112 + ]], + [[ + 5113, + 5114, + 5115 + ]], + [[ + 5116, + 5117, + 5118 + ]], + [[ + 5119, + 5120, + 5121 + ]], + [[ + 4838, + 4992, + 5122 + ]], + [[ + 4833, + 4986, + 4992 + ]], + [[ + 5123, + 5124, + 5125 + ]], + [[ + 5126, + 4894, + 5127 + ]], + [[ + 4995, + 5128, + 4993 + ]], + [[ + 5129, + 5130, + 5131 + ]], + [[ + 4813, + 4812, + 5128 + ]], + [[ + 5076, + 5072, + 5083 + ]], + [[ + 5049, + 4996, + 4994 + ]], + [[ + 4813, + 5132, + 4810 + ]], + [[ + 5098, + 5133, + 4943 + ]], + [[ + 5134, + 5096, + 4886 + ]], + [[ + 5032, + 4974, + 5135 + ]], + [[ + 5136, + 4956, + 4974 + ]], + [[ + 5064, + 4806, + 5099 + ]], + [[ + 5137, + 5138, + 5139 + ]], + [[ + 4807, + 5137, + 5139 + ]], + [[ + 5019, + 5092, + 5020 + ]], + [[ + 5139, + 5138, + 5140 + ]], + [[ + 5137, + 5003, + 5138 + ]], + [[ + 4820, + 4818, + 4969 + ]], + [[ + 4819, + 4817, + 4816 + ]], + [[ + 5041, + 4989, + 4990 + ]], + [[ + 4988, + 4955, + 4957 + ]], + [[ + 4956, + 5060, + 4991 + ]], + [[ + 4956, + 5136, + 5060 + ]], + [[ + 5059, + 5042, + 5031 + ]], + [[ + 4982, + 4989, + 4983 + ]], + [[ + 5141, + 5134, + 5142 + ]], + [[ + 4895, + 4896, + 5143 + ]], + [[ + 5068, + 5036, + 4983 + ]], + [[ + 5068, + 5037, + 5036 + ]], + [[ + 5031, + 5030, + 5008 + ]], + [[ + 5029, + 5037, + 5030 + ]], + [[ + 4911, + 4904, + 4903 + ]], + [[ + 5144, + 4899, + 5145 + ]], + [[ + 4901, + 4900, + 4912 + ]], + [[ + 4898, + 5146, + 5147 + ]], + [[ + 5148, + 5149, + 5145 + ]], + [[ + 5109, + 4904, + 4900 + ]], + [[ + 5099, + 4971, + 4970 + ]], + [[ + 5099, + 5150, + 4971 + ]], + [[ + 4829, + 4820, + 4827 + ]], + [[ + 5103, + 4976, + 4820 + ]], + [[ + 5151, + 5152, + 5049 + ]], + [[ + 5153, + 5027, + 5102 + ]], + [[ + 5154, + 5049, + 5048 + ]], + [[ + 5101, + 5155, + 5156 + ]], + [[ + 5157, + 5100, + 5158 + ]], + [[ + 5154, + 5016, + 5158 + ]], + [[ + 5156, + 5089, + 5101 + ]], + [[ + 4997, + 5132, + 4813 + ]], + [[ + 4929, + 4914, + 4913 + ]], + [[ + 5117, + 5159, + 5118 + ]], + [[ + 5160, + 5161, + 5119 + ]], + [[ + 5162, + 4939, + 4919 + ]], + [[ + 5163, + 5164, + 5165 + ]], + [[ + 5165, + 5164, + 5166 + ]], + [[ + 5141, + 5167, + 5134 + ]], + [[ + 5160, + 4929, + 5167 + ]], + [[ + 5168, + 5169, + 5170 + ]], + [[ + 5171, + 5045, + 5172 + ]], + [[ + 5026, + 5170, + 5173 + ]], + [[ + 5169, + 5174, + 5024 + ]], + [[ + 5080, + 5079, + 5018 + ]], + [[ + 5019, + 5138, + 5003 + ]], + [[ + 5091, + 5080, + 5175 + ]], + [[ + 5020, + 5090, + 5131 + ]], + [[ + 5018, + 5140, + 5019 + ]], + [[ + 5176, + 5177, + 5139 + ]], + [[ + 5138, + 5019, + 5140 + ]], + [[ + 5003, + 5002, + 5065 + ]], + [[ + 5090, + 5104, + 5129 + ]], + [[ + 4993, + 5128, + 4812 + ]], + [[ + 4993, + 5094, + 5104 + ]], + [[ + 5178, + 4809, + 5095 + ]], + [[ + 4886, + 5097, + 5179 + ]], + [[ + 4886, + 5180, + 5142 + ]], + [[ + 5143, + 4893, + 4895 + ]], + [[ + 5112, + 5117, + 5180 + ]], + [[ + 4990, + 4989, + 4988 + ]], + [[ + 5040, + 5067, + 4983 + ]], + [[ + 5181, + 5182, + 5183 + ]], + [[ + 5184, + 5142, + 5185 + ]], + [[ + 5131, + 5175, + 5080 + ]], + [[ + 5177, + 4808, + 5139 + ]], + [[ + 5078, + 5091, + 5175 + ]], + [[ + 5081, + 4805, + 5079 + ]], + [[ + 5186, + 5187, + 4893 + ]], + [[ + 5159, + 5188, + 5189 + ]], + [[ + 4896, + 4895, + 4885 + ]], + [[ + 4894, + 5126, + 5190 + ]], + [[ + 5080, + 5018, + 5020 + ]], + [[ + 5139, + 4808, + 4807 + ]], + [[ + 5045, + 5044, + 5172 + ]], + [[ + 4987, + 4989, + 4982 + ]], + [[ + 5097, + 4929, + 4902 + ]], + [[ + 4914, + 5191, + 4907 + ]], + [[ + 5077, + 5081, + 5091 + ]], + [[ + 5077, + 5069, + 5081 + ]], + [[ + 5192, + 5193, + 5120 + ]], + [[ + 5192, + 5194, + 5193 + ]], + [[ + 5195, + 5196, + 5197 + ]], + [[ + 5198, + 5164, + 5163 + ]], + [[ + 5078, + 5093, + 5076 + ]], + [[ + 4809, + 4811, + 5072 + ]], + [[ + 5173, + 5169, + 5024 + ]], + [[ + 5199, + 5062, + 5200 + ]], + [[ + 4806, + 4808, + 5099 + ]], + [[ + 5201, + 4964, + 4963 + ]], + [[ + 5099, + 4808, + 5150 + ]], + [[ + 5202, + 4964, + 5203 + ]], + [[ + 5079, + 5177, + 5176 + ]], + [[ + 5079, + 4805, + 5177 + ]], + [[ + 5023, + 5022, + 5204 + ]], + [[ + 5168, + 5061, + 5205 + ]], + [[ + 5026, + 5173, + 5024 + ]], + [[ + 5170, + 5169, + 5173 + ]], + [[ + 5200, + 5062, + 5206 + ]], + [[ + 5170, + 5026, + 5061 + ]], + [[ + 5017, + 5154, + 5048 + ]], + [[ + 5100, + 5157, + 5102 + ]], + [[ + 5155, + 5101, + 5028 + ]], + [[ + 5089, + 5152, + 5151 + ]], + [[ + 5207, + 5208, + 5192 + ]], + [[ + 5207, + 5167, + 5141 + ]], + [[ + 5123, + 5209, + 5124 + ]], + [[ + 5125, + 5210, + 5211 + ]], + [[ + 5212, + 5213, + 5214 + ]], + [[ + 5214, + 5184, + 5185 + ]], + [[ + 5215, + 5216, + 5217 + ]], + [[ + 5218, + 5219, + 5220 + ]], + [[ + 5075, + 5052, + 4804 + ]], + [[ + 5075, + 5074, + 5050 + ]], + [[ + 5075, + 5050, + 5052 + ]], + [[ + 5074, + 5070, + 5082 + ]], + [[ + 5097, + 4886, + 5096 + ]], + [[ + 5112, + 5111, + 5159 + ]], + [[ + 5085, + 4816, + 5086 + ]], + [[ + 4819, + 4821, + 5221 + ]], + [[ + 4901, + 4912, + 5222 + ]], + [[ + 4900, + 4904, + 4912 + ]], + [[ + 5223, + 5222, + 5224 + ]], + [[ + 5223, + 4901, + 5222 + ]], + [[ + 4995, + 4813, + 5128 + ]], + [[ + 5086, + 4816, + 4810 + ]], + [[ + 4809, + 4812, + 4810 + ]], + [[ + 5094, + 4993, + 4812 + ]], + [[ + 4994, + 4997, + 4995 + ]], + [[ + 5049, + 5152, + 4996 + ]], + [[ + 5112, + 5159, + 5117 + ]], + [[ + 5213, + 5212, + 5225 + ]], + [[ + 5042, + 5059, + 5171 + ]], + [[ + 5031, + 5008, + 5059 + ]], + [[ + 5149, + 5179, + 5108 + ]], + [[ + 5097, + 4902, + 5108 + ]], + [[ + 5145, + 5109, + 5144 + ]], + [[ + 5108, + 4902, + 4904 + ]], + [[ + 5032, + 5136, + 4974 + ]], + [[ + 5032, + 5060, + 5136 + ]], + [[ + 5226, + 5124, + 5209 + ]], + [[ + 5220, + 5227, + 5228 + ]], + [[ + 5229, + 5106, + 5230 + ]], + [[ + 5105, + 5124, + 5226 + ]], + [[ + 5225, + 5231, + 5232 + ]], + [[ + 5233, + 5234, + 5232 + ]], + [[ + 5235, + 5236, + 5230 + ]], + [[ + 5114, + 4947, + 4946 + ]], + [[ + 5237, + 5238, + 5239 + ]], + [[ + 5240, + 5241, + 5209 + ]], + [[ + 5239, + 5242, + 5237 + ]], + [[ + 5241, + 5230, + 5226 + ]], + [[ + 5237, + 5243, + 5238 + ]], + [[ + 5244, + 5236, + 5235 + ]], + [[ + 5245, + 5246, + 5217 + ]], + [[ + 4942, + 5247, + 5238 + ]], + [[ + 5248, + 5245, + 5217 + ]], + [[ + 5249, + 5115, + 4946 + ]], + [[ + 5250, + 5107, + 5106 + ]], + [[ + 5251, + 5252, + 5210 + ]], + [[ + 5253, + 5254, + 5255 + ]], + [[ + 5207, + 5160, + 5167 + ]], + [[ + 5194, + 5256, + 5193 + ]], + [[ + 5257, + 5253, + 5258 + ]], + [[ + 5254, + 5253, + 5257 + ]], + [[ + 5259, + 5260, + 4920 + ]], + [[ + 5184, + 5261, + 5207 + ]], + [[ + 5183, + 5182, + 5194 + ]], + [[ + 5261, + 5262, + 5208 + ]], + [[ + 5183, + 5194, + 5263 + ]], + [[ + 5081, + 5069, + 5264 + ]], + [[ + 5077, + 5083, + 5084 + ]], + [[ + 5082, + 5070, + 5083 + ]], + [[ + 5070, + 5069, + 5084 + ]], + [[ + 5083, + 5070, + 5084 + ]], + [[ + 5074, + 5071, + 5070 + ]], + [[ + 5154, + 5151, + 5049 + ]], + [[ + 5089, + 5265, + 5088 + ]], + [[ + 5089, + 4996, + 5152 + ]], + [[ + 5088, + 5132, + 4997 + ]], + [[ + 5149, + 4886, + 5179 + ]], + [[ + 4885, + 5110, + 5112 + ]], + [[ + 5140, + 5176, + 5139 + ]], + [[ + 4805, + 4808, + 5177 + ]], + [[ + 5266, + 4940, + 5243 + ]], + [[ + 5267, + 5248, + 5268 + ]], + [[ + 5122, + 5269, + 4978 + ]], + [[ + 5056, + 5068, + 5067 + ]], + [[ + 5038, + 5067, + 5040 + ]], + [[ + 5039, + 5055, + 5056 + ]], + [[ + 5041, + 5040, + 4989 + ]], + [[ + 5041, + 5038, + 5040 + ]], + [[ + 5046, + 5026, + 5025 + ]], + [[ + 5008, + 5061, + 5026 + ]], + [[ + 4942, + 5244, + 5247 + ]], + [[ + 5270, + 5271, + 5272 + ]], + [[ + 5111, + 5188, + 5159 + ]], + [[ + 5211, + 5210, + 5252 + ]], + [[ + 5118, + 5273, + 5212 + ]], + [[ + 5231, + 5233, + 5232 + ]], + [[ + 5118, + 5212, + 5116 + ]], + [[ + 5214, + 5234, + 5261 + ]], + [[ + 5273, + 5225, + 5212 + ]], + [[ + 5232, + 5234, + 5213 + ]], + [[ + 4970, + 4972, + 5000 + ]], + [[ + 4971, + 5007, + 4972 + ]], + [[ + 5274, + 5275, + 5276 + ]], + [[ + 5160, + 5119, + 4914 + ]], + [[ + 5142, + 5134, + 4886 + ]], + [[ + 5167, + 5096, + 5134 + ]], + [[ + 5124, + 5105, + 5210 + ]], + [[ + 5277, + 5278, + 5252 + ]], + [[ + 5187, + 5216, + 5218 + ]], + [[ + 5219, + 5240, + 5220 + ]], + [[ + 5279, + 5242, + 5239 + ]], + [[ + 5242, + 5216, + 5243 + ]], + [[ + 5147, + 5143, + 4884 + ]], + [[ + 5280, + 5281, + 5282 + ]], + [[ + 5283, + 4916, + 5284 + ]], + [[ + 5285, + 5224, + 5286 + ]], + [[ + 5287, + 5283, + 5284 + ]], + [[ + 5288, + 5289, + 5253 + ]], + [[ + 5282, + 5187, + 5186 + ]], + [[ + 5127, + 4894, + 4893 + ]], + [[ + 5290, + 5145, + 4899 + ]], + [[ + 5290, + 5146, + 5291 + ]], + [[ + 5034, + 5054, + 5035 + ]], + [[ + 5034, + 4823, + 4999 + ]], + [[ + 5190, + 5228, + 5188 + ]], + [[ + 5227, + 5125, + 5211 + ]], + [[ + 4915, + 4908, + 5292 + ]], + [[ + 4916, + 5283, + 5293 + ]], + [[ + 4916, + 4909, + 4908 + ]], + [[ + 5294, + 5191, + 5295 + ]], + [[ + 5296, + 5297, + 5197 + ]], + [[ + 5298, + 5256, + 5194 + ]], + [[ + 5299, + 5300, + 5301 + ]], + [[ + 5298, + 5254, + 5256 + ]], + [[ + 4887, + 5302, + 5301 + ]], + [[ + 5255, + 5288, + 5253 + ]], + [[ + 5303, + 5165, + 5166 + ]], + [[ + 5304, + 4935, + 4934 + ]], + [[ + 5305, + 5306, + 5307 + ]], + [[ + 5308, + 5304, + 4934 + ]], + [[ + 5307, + 5233, + 5231 + ]], + [[ + 5278, + 5231, + 5225 + ]], + [[ + 5309, + 5277, + 5251 + ]], + [[ + 5233, + 5306, + 5182 + ]], + [[ + 5181, + 5233, + 5182 + ]], + [[ + 5306, + 5298, + 5182 + ]], + [[ + 5263, + 5194, + 5310 + ]], + [[ + 5182, + 5298, + 5194 + ]], + [[ + 5255, + 5311, + 5288 + ]], + [[ + 5312, + 4934, + 5313 + ]], + [[ + 5250, + 5307, + 5314 + ]], + [[ + 5250, + 5229, + 5113 + ]], + [[ + 5305, + 5315, + 5311 + ]], + [[ + 4934, + 5312, + 5308 + ]], + [[ + 5255, + 5298, + 5306 + ]], + [[ + 5255, + 5254, + 5298 + ]], + [[ + 5311, + 5289, + 5288 + ]], + [[ + 5316, + 5317, + 5318 + ]], + [[ + 5258, + 5121, + 5193 + ]], + [[ + 5295, + 5191, + 5119 + ]], + [[ + 5319, + 4931, + 4907 + ]], + [[ + 5312, + 5289, + 5311 + ]], + [[ + 5094, + 5178, + 5095 + ]], + [[ + 5094, + 4812, + 5178 + ]], + [[ + 5110, + 5188, + 5111 + ]], + [[ + 5110, + 5190, + 5188 + ]], + [[ + 4886, + 5112, + 5180 + ]], + [[ + 4886, + 4885, + 5112 + ]], + [[ + 4978, + 5038, + 4977 + ]], + [[ + 5039, + 5067, + 5038 + ]], + [[ + 5041, + 4990, + 4832 + ]], + [[ + 4830, + 5060, + 5032 + ]], + [[ + 4957, + 4991, + 4990 + ]], + [[ + 4957, + 4956, + 4991 + ]], + [[ + 5181, + 5262, + 5261 + ]], + [[ + 5208, + 5263, + 5310 + ]], + [[ + 5320, + 4931, + 5319 + ]], + [[ + 4903, + 4913, + 4907 + ]], + [[ + 5131, + 5080, + 5020 + ]], + [[ + 5091, + 5081, + 5080 + ]], + [[ + 4920, + 5319, + 5295 + ]], + [[ + 4907, + 5191, + 5294 + ]], + [[ + 5292, + 4943, + 5321 + ]], + [[ + 4933, + 5162, + 5322 + ]], + [[ + 5095, + 4809, + 5072 + ]], + [[ + 5178, + 4812, + 4809 + ]], + [[ + 5018, + 5176, + 5140 + ]], + [[ + 5018, + 5079, + 5176 + ]], + [[ + 5133, + 5323, + 5321 + ]], + [[ + 5284, + 4916, + 4915 + ]], + [[ + 4887, + 4889, + 5302 + ]], + [[ + 5255, + 5306, + 5311 + ]], + [[ + 5305, + 5311, + 5306 + ]], + [[ + 5308, + 5324, + 5304 + ]], + [[ + 5325, + 4926, + 4890 + ]], + [[ + 5326, + 5327, + 5328 + ]], + [[ + 5024, + 5046, + 5025 + ]], + [[ + 5024, + 5174, + 5046 + ]], + [[ + 5109, + 5145, + 5149 + ]], + [[ + 5329, + 5146, + 4897 + ]], + [[ + 4886, + 5149, + 4884 + ]], + [[ + 5329, + 5330, + 5291 + ]], + [[ + 5189, + 5211, + 5118 + ]], + [[ + 5278, + 5314, + 5231 + ]], + [[ + 5331, + 5332, + 5224 + ]], + [[ + 5286, + 4912, + 4911 + ]], + [[ + 5113, + 5307, + 5250 + ]], + [[ + 5306, + 5233, + 5307 + ]], + [[ + 5088, + 4810, + 5132 + ]], + [[ + 4816, + 4814, + 4810 + ]], + [[ + 5010, + 4985, + 5009 + ]], + [[ + 5087, + 5086, + 5265 + ]], + [[ + 5153, + 5011, + 5027 + ]], + [[ + 4992, + 4986, + 4985 + ]], + [[ + 4985, + 5010, + 4992 + ]], + [[ + 5155, + 5028, + 5010 + ]], + [[ + 5016, + 5055, + 5102 + ]], + [[ + 5011, + 5010, + 5027 + ]], + [[ + 4838, + 5122, + 4978 + ]], + [[ + 5012, + 5011, + 5153 + ]], + [[ + 4992, + 5012, + 5122 + ]], + [[ + 4992, + 5010, + 5012 + ]], + [[ + 5172, + 5333, + 4987 + ]], + [[ + 4982, + 4984, + 5042 + ]], + [[ + 5292, + 4937, + 4943 + ]], + [[ + 5334, + 5335, + 5317 + ]], + [[ + 5336, + 5334, + 5317 + ]], + [[ + 4910, + 4930, + 5337 + ]], + [[ + 5338, + 5318, + 5335 + ]], + [[ + 4910, + 4909, + 5339 + ]], + [[ + 5063, + 5340, + 5004 + ]], + [[ + 4808, + 4805, + 5341 + ]], + [[ + 5086, + 5088, + 5265 + ]], + [[ + 5086, + 4810, + 5088 + ]], + [[ + 5342, + 5331, + 5274 + ]], + [[ + 5133, + 5321, + 4943 + ]], + [[ + 5098, + 4918, + 5287 + ]], + [[ + 4918, + 4917, + 5343 + ]], + [[ + 5210, + 5105, + 5309 + ]], + [[ + 5250, + 5314, + 5309 + ]], + [[ + 5309, + 5314, + 5277 + ]], + [[ + 5307, + 5231, + 5314 + ]], + [[ + 5252, + 5278, + 5273 + ]], + [[ + 5277, + 5314, + 5278 + ]], + [[ + 4942, + 4941, + 5244 + ]], + [[ + 5344, + 5271, + 4941 + ]], + [[ + 5117, + 5116, + 5185 + ]], + [[ + 5184, + 5141, + 5142 + ]], + [[ + 5234, + 5181, + 5261 + ]], + [[ + 5183, + 5263, + 5262 + ]], + [[ + 5233, + 5181, + 5234 + ]], + [[ + 5183, + 5262, + 5181 + ]], + [[ + 5259, + 5289, + 5260 + ]], + [[ + 5311, + 5315, + 5312 + ]], + [[ + 5289, + 5345, + 4921 + ]], + [[ + 5345, + 5313, + 5338 + ]], + [[ + 4920, + 4922, + 5346 + ]], + [[ + 4922, + 5347, + 5348 + ]], + [[ + 5294, + 5295, + 5319 + ]], + [[ + 5348, + 5347, + 5338 + ]], + [[ + 4922, + 4921, + 5347 + ]], + [[ + 5260, + 5289, + 4921 + ]], + [[ + 5056, + 5053, + 5068 + ]], + [[ + 5054, + 5034, + 4999 + ]], + [[ + 5294, + 5319, + 4907 + ]], + [[ + 5339, + 5349, + 4910 + ]], + [[ + 5350, + 5316, + 5318 + ]], + [[ + 5351, + 4921, + 5345 + ]], + [[ + 5352, + 5353, + 5354 + ]], + [[ + 5355, + 5196, + 5163 + ]], + [[ + 5123, + 5125, + 5227 + ]], + [[ + 5124, + 5210, + 5125 + ]], + [[ + 5035, + 5055, + 5016 + ]], + [[ + 5153, + 5122, + 5012 + ]], + [[ + 5344, + 5267, + 5268 + ]], + [[ + 5248, + 5271, + 5268 + ]], + [[ + 5042, + 5172, + 4982 + ]], + [[ + 4955, + 4988, + 4987 + ]], + [[ + 4890, + 5305, + 4891 + ]], + [[ + 5324, + 4935, + 5304 + ]], + [[ + 5350, + 4938, + 5316 + ]], + [[ + 4937, + 5292, + 5336 + ]], + [[ + 5196, + 5165, + 5354 + ]], + [[ + 5356, + 4939, + 5162 + ]], + [[ + 5246, + 5357, + 5217 + ]], + [[ + 5246, + 5245, + 5266 + ]], + [[ + 5357, + 5215, + 5217 + ]], + [[ + 5243, + 4942, + 5238 + ]], + [[ + 4834, + 4838, + 4831 + ]], + [[ + 5001, + 4826, + 4825 + ]], + [[ + 5326, + 5163, + 5195 + ]], + [[ + 5296, + 5196, + 5358 + ]], + [[ + 4971, + 5150, + 5007 + ]], + [[ + 4808, + 5341, + 5061 + ]], + [[ + 4995, + 4997, + 4813 + ]], + [[ + 4996, + 5088, + 4997 + ]], + [[ + 5118, + 5211, + 5273 + ]], + [[ + 5359, + 5228, + 5211 + ]], + [[ + 5209, + 5241, + 5226 + ]], + [[ + 5230, + 5106, + 5226 + ]], + [[ + 5346, + 4932, + 5319 + ]], + [[ + 5348, + 5338, + 5337 + ]], + [[ + 5247, + 5360, + 5241 + ]], + [[ + 5236, + 5229, + 5230 + ]], + [[ + 5163, + 5165, + 5355 + ]], + [[ + 5303, + 5356, + 5353 + ]], + [[ + 5258, + 5361, + 5121 + ]], + [[ + 5260, + 4921, + 4920 + ]], + [[ + 5319, + 4920, + 5346 + ]], + [[ + 5361, + 5259, + 4920 + ]], + [[ + 5361, + 5295, + 5121 + ]], + [[ + 5361, + 4920, + 5295 + ]], + [[ + 5126, + 5218, + 5220 + ]], + [[ + 5219, + 5238, + 5241 + ]], + [[ + 5239, + 5219, + 5218 + ]], + [[ + 5239, + 5238, + 5219 + ]], + [[ + 4937, + 5316, + 4938 + ]], + [[ + 5312, + 5345, + 5289 + ]], + [[ + 4937, + 5317, + 5316 + ]], + [[ + 5335, + 5337, + 5338 + ]], + [[ + 5214, + 5116, + 5212 + ]], + [[ + 5185, + 5180, + 5117 + ]], + [[ + 5362, + 5323, + 5098 + ]], + [[ + 4917, + 4924, + 5275 + ]], + [[ + 5287, + 5362, + 5098 + ]], + [[ + 5323, + 4915, + 5321 + ]], + [[ + 5098, + 5323, + 5133 + ]], + [[ + 5362, + 4915, + 5323 + ]], + [[ + 4884, + 5143, + 4896 + ]], + [[ + 5363, + 5281, + 5280 + ]], + [[ + 5064, + 5066, + 4806 + ]], + [[ + 5003, + 5137, + 4807 + ]], + [[ + 5184, + 5207, + 5141 + ]], + [[ + 5208, + 5310, + 5192 + ]], + [[ + 5213, + 5225, + 5232 + ]], + [[ + 5273, + 5278, + 5225 + ]], + [[ + 5322, + 5350, + 5313 + ]], + [[ + 5317, + 5335, + 5318 + ]], + [[ + 4907, + 4931, + 4905 + ]], + [[ + 4906, + 4903, + 4907 + ]], + [[ + 4930, + 5364, + 4931 + ]], + [[ + 4911, + 4906, + 5364 + ]], + [[ + 5364, + 4906, + 4905 + ]], + [[ + 4911, + 4903, + 4906 + ]], + [[ + 5234, + 5214, + 5213 + ]], + [[ + 5261, + 5184, + 5214 + ]], + [[ + 4900, + 5144, + 5109 + ]], + [[ + 4900, + 4899, + 5144 + ]], + [[ + 5218, + 5216, + 5242 + ]], + [[ + 5215, + 5243, + 5216 + ]], + [[ + 5333, + 4975, + 4987 + ]], + [[ + 4974, + 4956, + 4975 + ]], + [[ + 5357, + 5243, + 5215 + ]], + [[ + 5357, + 5246, + 5266 + ]], + [[ + 5016, + 5157, + 5158 + ]], + [[ + 5102, + 5028, + 5100 + ]], + [[ + 5365, + 5282, + 5281 + ]], + [[ + 5366, + 5216, + 5282 + ]], + [[ + 4893, + 5187, + 5127 + ]], + [[ + 5282, + 5216, + 5187 + ]], + [[ + 5149, + 5108, + 5109 + ]], + [[ + 5179, + 5097, + 5108 + ]], + [[ + 4933, + 5322, + 4934 + ]], + [[ + 5162, + 4936, + 5322 + ]], + [[ + 5338, + 5313, + 5318 + ]], + [[ + 5322, + 4938, + 5350 + ]], + [[ + 4915, + 5292, + 5321 + ]], + [[ + 4908, + 4910, + 5336 + ]], + [[ + 4937, + 5336, + 5317 + ]], + [[ + 5292, + 4908, + 5336 + ]], + [[ + 5187, + 5218, + 5127 + ]], + [[ + 5279, + 5239, + 5218 + ]], + [[ + 4807, + 5066, + 5003 + ]], + [[ + 4807, + 4806, + 5066 + ]], + [[ + 4932, + 5348, + 5337 + ]], + [[ + 5347, + 5351, + 5338 + ]], + [[ + 5346, + 5348, + 4932 + ]], + [[ + 5346, + 4922, + 5348 + ]], + [[ + 5154, + 5017, + 5016 + ]], + [[ + 5048, + 5065, + 5017 + ]], + [[ + 5359, + 5188, + 5228 + ]], + [[ + 5189, + 5118, + 5159 + ]], + [[ + 5333, + 4973, + 4975 + ]], + [[ + 5135, + 4974, + 4973 + ]], + [[ + 5217, + 5366, + 5281 + ]], + [[ + 5217, + 5216, + 5366 + ]], + [[ + 5366, + 5365, + 5281 + ]], + [[ + 5366, + 5282, + 5365 + ]], + [[ + 5073, + 5071, + 5074 + ]], + [[ + 5264, + 5069, + 5071 + ]], + [[ + 4805, + 5073, + 4803 + ]], + [[ + 4805, + 5071, + 5073 + ]], + [[ + 5211, + 5252, + 5273 + ]], + [[ + 5251, + 5277, + 5252 + ]], + [[ + 4932, + 5320, + 5319 + ]], + [[ + 4932, + 5337, + 4930 + ]], + [[ + 5106, + 5229, + 5250 + ]], + [[ + 5236, + 5244, + 5114 + ]], + [[ + 5236, + 5114, + 5113 + ]], + [[ + 5244, + 4941, + 4947 + ]], + [[ + 5207, + 5161, + 5160 + ]], + [[ + 5119, + 5121, + 5295 + ]], + [[ + 5207, + 5192, + 5367 + ]], + [[ + 5193, + 5121, + 5120 + ]], + [[ + 5367, + 5192, + 5120 + ]], + [[ + 5310, + 5194, + 5192 + ]], + [[ + 5210, + 5309, + 5251 + ]], + [[ + 5107, + 5250, + 5309 + ]], + [[ + 5368, + 5342, + 5276 + ]], + [[ + 5293, + 4909, + 4916 + ]], + [[ + 5274, + 5283, + 5287 + ]], + [[ + 5369, + 5368, + 5224 + ]], + [[ + 5119, + 5367, + 5120 + ]], + [[ + 5161, + 5207, + 5367 + ]], + [[ + 5085, + 4818, + 4816 + ]], + [[ + 5085, + 4969, + 4818 + ]], + [[ + 4895, + 5190, + 4885 + ]], + [[ + 5190, + 5126, + 5220 + ]], + [[ + 5322, + 5313, + 4934 + ]], + [[ + 5350, + 5318, + 5313 + ]], + [[ + 5257, + 5258, + 5193 + ]], + [[ + 5253, + 5259, + 5258 + ]], + [[ + 5357, + 5266, + 5243 + ]], + [[ + 5245, + 5248, + 5267 + ]], + [[ + 4914, + 5119, + 5191 + ]], + [[ + 5161, + 5367, + 5119 + ]], + [[ + 5150, + 5061, + 5007 + ]], + [[ + 5150, + 4808, + 5061 + ]], + [[ + 5244, + 4947, + 5114 + ]], + [[ + 4941, + 5271, + 5270 + ]], + [[ + 5261, + 5208, + 5207 + ]], + [[ + 5262, + 5263, + 5208 + ]], + [[ + 5218, + 5126, + 5127 + ]], + [[ + 5220, + 5228, + 5190 + ]], + [[ + 5305, + 5308, + 5315 + ]], + [[ + 5305, + 5324, + 5308 + ]], + [[ + 5342, + 5274, + 5276 + ]], + [[ + 5287, + 4918, + 5274 + ]], + [[ + 5325, + 5327, + 5370 + ]], + [[ + 5326, + 5328, + 5371 + ]], + [[ + 5370, + 5195, + 5197 + ]], + [[ + 5355, + 5165, + 5196 + ]], + [[ + 5106, + 5105, + 5226 + ]], + [[ + 5107, + 5309, + 5105 + ]], + [[ + 5322, + 4936, + 4938 + ]], + [[ + 5162, + 4919, + 4936 + ]], + [[ + 5372, + 5058, + 5057 + ]], + [[ + 5373, + 5374, + 5206 + ]], + [[ + 5169, + 5168, + 5204 + ]], + [[ + 4980, + 5341, + 5013 + ]], + [[ + 5000, + 4999, + 4823 + ]], + [[ + 4998, + 5053, + 4999 + ]], + [[ + 4905, + 4931, + 5364 + ]], + [[ + 5320, + 4932, + 4931 + ]], + [[ + 4890, + 5324, + 5305 + ]], + [[ + 4890, + 4925, + 5324 + ]], + [[ + 5274, + 5343, + 5275 + ]], + [[ + 5274, + 4918, + 5343 + ]], + [[ + 5375, + 5372, + 5057 + ]], + [[ + 5058, + 5376, + 5373 + ]], + [[ + 5274, + 5293, + 5283 + ]], + [[ + 5349, + 4911, + 5364 + ]], + [[ + 5050, + 5082, + 5051 + ]], + [[ + 5050, + 5074, + 5082 + ]], + [[ + 5214, + 5185, + 5116 + ]], + [[ + 5142, + 5180, + 5185 + ]], + [[ + 5147, + 5363, + 5143 + ]], + [[ + 5147, + 5281, + 5363 + ]], + [[ + 5016, + 5102, + 5157 + ]], + [[ + 5055, + 5269, + 5153 + ]], + [[ + 5130, + 5078, + 5175 + ]], + [[ + 5076, + 5083, + 5077 + ]], + [[ + 5256, + 5257, + 5193 + ]], + [[ + 5256, + 5254, + 5257 + ]], + [[ + 4832, + 4831, + 4837 + ]], + [[ + 4834, + 4833, + 4838 + ]], + [[ + 5090, + 5129, + 5131 + ]], + [[ + 5104, + 5094, + 5129 + ]], + [[ + 5299, + 5327, + 5300 + ]], + [[ + 5299, + 5328, + 5327 + ]], + [[ + 5151, + 5100, + 5101 + ]], + [[ + 5154, + 5158, + 5100 + ]], + [[ + 5006, + 5063, + 5004 + ]], + [[ + 5021, + 5205, + 5063 + ]], + [[ + 5205, + 5021, + 5023 + ]], + [[ + 5063, + 5062, + 5021 + ]], + [[ + 5204, + 5022, + 5169 + ]], + [[ + 5021, + 5062, + 5022 + ]], + [[ + 5327, + 5195, + 5370 + ]], + [[ + 5377, + 5358, + 5378 + ]], + [[ + 5039, + 5269, + 5055 + ]], + [[ + 5039, + 4978, + 5269 + ]], + [[ + 5342, + 5332, + 5331 + ]], + [[ + 5368, + 5223, + 5224 + ]], + [[ + 5293, + 5379, + 4909 + ]], + [[ + 5286, + 5222, + 4912 + ]], + [[ + 5331, + 5224, + 5285 + ]], + [[ + 5332, + 5369, + 5224 + ]], + [[ + 5380, + 5372, + 5375 + ]], + [[ + 5135, + 5376, + 5372 + ]], + [[ + 5003, + 5065, + 5019 + ]], + [[ + 5002, + 5017, + 5065 + ]], + [[ + 5378, + 4925, + 4926 + ]], + [[ + 5354, + 5165, + 5352 + ]], + [[ + 5271, + 5344, + 5268 + ]], + [[ + 5266, + 5245, + 5267 + ]], + [[ + 4975, + 4955, + 4987 + ]], + [[ + 4975, + 4956, + 4955 + ]], + [[ + 5372, + 5376, + 5058 + ]], + [[ + 5381, + 5382, + 5333 + ]], + [[ + 5241, + 5360, + 5235 + ]], + [[ + 5247, + 5244, + 5360 + ]], + [[ + 5143, + 5186, + 4893 + ]], + [[ + 5280, + 5282, + 5186 + ]], + [[ + 5379, + 5331, + 5285 + ]], + [[ + 5293, + 5274, + 5331 + ]], + [[ + 4954, + 5383, + 4860 + ]], + [[ + 4954, + 4951, + 5383 + ]], + [[ + 5148, + 5384, + 4897 + ]], + [[ + 5330, + 5145, + 5290 + ]], + [[ + 5174, + 5199, + 5043 + ]], + [[ + 5043, + 5381, + 5044 + ]], + [[ + 5204, + 5168, + 5023 + ]], + [[ + 5061, + 5341, + 5205 + ]], + [[ + 5023, + 5168, + 5205 + ]], + [[ + 5170, + 5061, + 5168 + ]], + [[ + 5006, + 5015, + 5062 + ]], + [[ + 5333, + 5382, + 4973 + ]], + [[ + 5062, + 5015, + 5206 + ]], + [[ + 5005, + 5057, + 5015 + ]], + [[ + 5022, + 5062, + 5199 + ]], + [[ + 5382, + 5376, + 5135 + ]], + [[ + 5385, + 5303, + 5166 + ]], + [[ + 5385, + 4939, + 5356 + ]], + [[ + 4878, + 4874, + 4944 + ]], + [[ + 4950, + 4876, + 4874 + ]], + [[ + 5143, + 5280, + 5186 + ]], + [[ + 5143, + 5363, + 5280 + ]], + [[ + 5199, + 5381, + 5043 + ]], + [[ + 5382, + 5374, + 5376 + ]], + [[ + 5338, + 5351, + 5345 + ]], + [[ + 5347, + 4921, + 5351 + ]], + [[ + 5148, + 5145, + 5329 + ]], + [[ + 5330, + 5290, + 5291 + ]], + [[ + 4982, + 5172, + 4987 + ]], + [[ + 5044, + 5381, + 5333 + ]], + [[ + 5386, + 5387, + 5201 + ]], + [[ + 4961, + 5388, + 4867 + ]], + [[ + 4817, + 4819, + 5221 + ]], + [[ + 4818, + 4821, + 4819 + ]], + [[ + 4909, + 5379, + 5285 + ]], + [[ + 5293, + 5331, + 5379 + ]], + [[ + 5258, + 5259, + 5361 + ]], + [[ + 5253, + 5289, + 5259 + ]], + [[ + 5046, + 5171, + 5059 + ]], + [[ + 5046, + 5045, + 5171 + ]], + [[ + 5378, + 4933, + 4925 + ]], + [[ + 4935, + 5324, + 4925 + ]], + [[ + 5228, + 5227, + 5211 + ]], + [[ + 5220, + 5240, + 5123 + ]], + [[ + 5220, + 5123, + 5227 + ]], + [[ + 5240, + 5209, + 5123 + ]], + [[ + 5146, + 5329, + 5291 + ]], + [[ + 5329, + 5145, + 5330 + ]], + [[ + 5384, + 5329, + 4897 + ]], + [[ + 5384, + 5148, + 5329 + ]], + [[ + 4943, + 4919, + 5098 + ]], + [[ + 4943, + 4936, + 4919 + ]], + [[ + 5343, + 4917, + 5275 + ]], + [[ + 4919, + 4924, + 4917 + ]], + [[ + 4884, + 4898, + 5147 + ]], + [[ + 4897, + 5146, + 4898 + ]], + [[ + 5378, + 5354, + 4933 + ]], + [[ + 5353, + 5162, + 5354 + ]], + [[ + 5389, + 5149, + 5148 + ]], + [[ + 5389, + 4884, + 5149 + ]], + [[ + 4897, + 5389, + 5148 + ]], + [[ + 4897, + 4884, + 5389 + ]], + [[ + 5055, + 5153, + 5102 + ]], + [[ + 5269, + 5122, + 5153 + ]], + [[ + 5131, + 5130, + 5175 + ]], + [[ + 5093, + 5095, + 5076 + ]], + [[ + 5241, + 5235, + 5230 + ]], + [[ + 5360, + 5244, + 5235 + ]], + [[ + 5100, + 5151, + 5154 + ]], + [[ + 5101, + 5089, + 5151 + ]], + [[ + 5045, + 5174, + 5043 + ]], + [[ + 5200, + 5206, + 5374 + ]], + [[ + 5339, + 5286, + 4911 + ]], + [[ + 5224, + 5222, + 5286 + ]], + [[ + 4891, + 5249, + 5272 + ]], + [[ + 4946, + 4941, + 5270 + ]], + [[ + 4885, + 5190, + 5110 + ]], + [[ + 4895, + 4894, + 5190 + ]], + [[ + 4944, + 4872, + 4951 + ]], + [[ + 4875, + 4873, + 4872 + ]], + [[ + 5290, + 4901, + 5223 + ]], + [[ + 5290, + 4899, + 4901 + ]], + [[ + 5010, + 5156, + 5155 + ]], + [[ + 5265, + 5089, + 5156 + ]], + [[ + 5305, + 5115, + 4891 + ]], + [[ + 5305, + 5307, + 5115 + ]], + [[ + 5236, + 5113, + 5229 + ]], + [[ + 5115, + 5307, + 5113 + ]], + [[ + 5087, + 5009, + 4969 + ]], + [[ + 4986, + 4828, + 4827 + ]], + [[ + 5285, + 5339, + 4909 + ]], + [[ + 5285, + 5286, + 5339 + ]], + [[ + 5335, + 4910, + 5337 + ]], + [[ + 5349, + 5364, + 4930 + ]], + [[ + 5284, + 5362, + 5287 + ]], + [[ + 5284, + 4915, + 5362 + ]], + [[ + 4963, + 5390, + 5391 + ]], + [[ + 4841, + 5392, + 4839 + ]], + [[ + 5393, + 5394, + 5395 + ]], + [[ + 5396, + 5397, + 5388 + ]], + [[ + 5398, + 5399, + 5386 + ]], + [[ + 5400, + 4840, + 5401 + ]], + [[ + 4850, + 4851, + 4849 + ]], + [[ + 4854, + 4852, + 4851 + ]], + [[ + 5167, + 4929, + 5096 + ]], + [[ + 5160, + 4914, + 4929 + ]], + [[ + 5199, + 5374, + 5381 + ]], + [[ + 5206, + 5015, + 5373 + ]], + [[ + 5058, + 5373, + 5015 + ]], + [[ + 5376, + 5374, + 5373 + ]], + [[ + 4825, + 4829, + 4828 + ]], + [[ + 4825, + 4820, + 4829 + ]], + [[ + 5342, + 5369, + 5332 + ]], + [[ + 5342, + 5368, + 5369 + ]], + [[ + 4973, + 5382, + 5135 + ]], + [[ + 5381, + 5374, + 5382 + ]], + [[ + 5303, + 5352, + 5165 + ]], + [[ + 5303, + 5353, + 5352 + ]], + [[ + 4863, + 4866, + 4847 + ]], + [[ + 4869, + 4883, + 4866 + ]], + [[ + 5396, + 5388, + 5394 + ]], + [[ + 5402, + 4867, + 5388 + ]], + [[ + 5249, + 4946, + 5270 + ]], + [[ + 5115, + 5114, + 4946 + ]], + [[ + 5205, + 5340, + 5063 + ]], + [[ + 5403, + 5341, + 4979 + ]], + [[ + 5009, + 4985, + 4827 + ]], + [[ + 5009, + 5156, + 5010 + ]], + [[ + 5404, + 5405, + 4967 + ]], + [[ + 5406, + 5380, + 5014 + ]], + [[ + 5265, + 5009, + 5087 + ]], + [[ + 5265, + 5156, + 5009 + ]], + [[ + 5359, + 5189, + 5188 + ]], + [[ + 5359, + 5211, + 5189 + ]], + [[ + 5340, + 4979, + 5004 + ]], + [[ + 5340, + 5205, + 5403 + ]], + [[ + 4892, + 5300, + 4890 + ]], + [[ + 5300, + 5327, + 5325 + ]], + [[ + 4850, + 4839, + 4962 + ]], + [[ + 4843, + 5407, + 4842 + ]], + [[ + 5408, + 5201, + 5387 + ]], + [[ + 4958, + 4841, + 5400 + ]], + [[ + 5386, + 5409, + 5387 + ]], + [[ + 5410, + 5411, + 5412 + ]], + [[ + 5039, + 5056, + 5067 + ]], + [[ + 5035, + 5053, + 5056 + ]], + [[ + 4910, + 5349, + 4930 + ]], + [[ + 5339, + 4911, + 5349 + ]], + [[ + 5413, + 4980, + 5014 + ]], + [[ + 5414, + 5415, + 5416 + ]], + [[ + 5417, + 5401, + 5418 + ]], + [[ + 5013, + 5341, + 5419 + ]], + [[ + 5334, + 4910, + 5335 + ]], + [[ + 5334, + 5336, + 4910 + ]], + [[ + 4881, + 4878, + 4945 + ]], + [[ + 4877, + 4950, + 4878 + ]], + [[ + 5325, + 5377, + 4926 + ]], + [[ + 5196, + 5354, + 5420 + ]], + [[ + 5397, + 5402, + 5388 + ]], + [[ + 5397, + 4867, + 5402 + ]], + [[ + 5421, + 4959, + 4958 + ]], + [[ + 5422, + 5394, + 5388 + ]], + [[ + 5392, + 4959, + 5423 + ]], + [[ + 5395, + 5394, + 5424 + ]], + [[ + 5425, + 5421, + 4958 + ]], + [[ + 5423, + 5424, + 5426 + ]], + [[ + 5400, + 4841, + 4840 + ]], + [[ + 5426, + 5424, + 5422 + ]], + [[ + 5427, + 5391, + 5421 + ]], + [[ + 5391, + 5423, + 5421 + ]], + [[ + 4839, + 5392, + 4962 + ]], + [[ + 5424, + 5394, + 5422 + ]], + [[ + 4960, + 5392, + 5426 + ]], + [[ + 4841, + 4959, + 5392 + ]], + [[ + 4863, + 5428, + 4866 + ]], + [[ + 5383, + 4951, + 4868 + ]], + [[ + 5022, + 5199, + 5169 + ]], + [[ + 5200, + 5374, + 5199 + ]], + [[ + 5046, + 5174, + 5045 + ]], + [[ + 5169, + 5199, + 5174 + ]], + [[ + 5404, + 5013, + 5419 + ]], + [[ + 5404, + 5406, + 5013 + ]], + [[ + 4890, + 5300, + 5325 + ]], + [[ + 4892, + 4927, + 4888 + ]], + [[ + 5409, + 5410, + 5387 + ]], + [[ + 5202, + 5429, + 5430 + ]], + [[ + 5386, + 5201, + 5398 + ]], + [[ + 5203, + 4964, + 5201 + ]], + [[ + 4851, + 4850, + 4854 + ]], + [[ + 4962, + 4867, + 4850 + ]], + [[ + 5421, + 5423, + 4959 + ]], + [[ + 5390, + 5395, + 5423 + ]], + [[ + 4960, + 5426, + 5422 + ]], + [[ + 5392, + 5423, + 5426 + ]], + [[ + 5431, + 5432, + 5415 + ]], + [[ + 5202, + 5203, + 5408 + ]], + [[ + 5387, + 5410, + 5408 + ]], + [[ + 5416, + 5432, + 5430 + ]], + [[ + 5171, + 5172, + 5042 + ]], + [[ + 5044, + 5333, + 5172 + ]], + [[ + 5433, + 4847, + 4865 + ]], + [[ + 5433, + 4861, + 4847 + ]], + [[ + 5404, + 4966, + 5406 + ]], + [[ + 5380, + 5135, + 5372 + ]], + [[ + 5406, + 4966, + 5434 + ]], + [[ + 5404, + 5419, + 5405 + ]], + [[ + 5418, + 4967, + 5415 + ]], + [[ + 4966, + 5404, + 4967 + ]], + [[ + 4968, + 5418, + 5401 + ]], + [[ + 4968, + 4967, + 5418 + ]], + [[ + 5393, + 4963, + 4965 + ]], + [[ + 5393, + 5395, + 5390 + ]], + [[ + 5340, + 5403, + 4979 + ]], + [[ + 5205, + 5341, + 5403 + ]], + [[ + 5413, + 4981, + 4980 + ]], + [[ + 4979, + 5341, + 4980 + ]], + [[ + 5005, + 4981, + 5375 + ]], + [[ + 5005, + 4979, + 4981 + ]], + [[ + 4805, + 5264, + 5071 + ]], + [[ + 4805, + 5081, + 5264 + ]], + [[ + 4856, + 4848, + 4858 + ]], + [[ + 4850, + 4867, + 4848 + ]], + [[ + 5392, + 4960, + 4962 + ]], + [[ + 5422, + 5388, + 4961 + ]], + [[ + 5408, + 5203, + 5201 + ]], + [[ + 5408, + 5435, + 5202 + ]], + [[ + 5380, + 5406, + 5434 + ]], + [[ + 5014, + 5013, + 5406 + ]], + [[ + 5353, + 5356, + 5162 + ]], + [[ + 5303, + 5385, + 5356 + ]], + [[ + 5408, + 5410, + 5435 + ]], + [[ + 5436, + 5401, + 5417 + ]], + [[ + 5418, + 5412, + 5417 + ]], + [[ + 5410, + 5409, + 5436 + ]], + [[ + 5415, + 5412, + 5418 + ]], + [[ + 5436, + 5409, + 5401 + ]], + [[ + 5380, + 5375, + 5014 + ]], + [[ + 5375, + 4981, + 5413 + ]], + [[ + 4966, + 4968, + 5434 + ]], + [[ + 5401, + 5135, + 4968 + ]], + [[ + 5430, + 5419, + 5341 + ]], + [[ + 5430, + 5432, + 5405 + ]], + [[ + 5130, + 5093, + 5078 + ]], + [[ + 5095, + 5072, + 5076 + ]], + [[ + 5326, + 5195, + 5327 + ]], + [[ + 5163, + 5196, + 5195 + ]], + [[ + 5383, + 5428, + 4860 + ]], + [[ + 5428, + 4868, + 4866 + ]], + [[ + 4925, + 4933, + 4935 + ]], + [[ + 5354, + 5162, + 4933 + ]], + [[ + 5425, + 5386, + 5399 + ]], + [[ + 4958, + 5409, + 5386 + ]], + [[ + 5129, + 5093, + 5130 + ]], + [[ + 5129, + 5094, + 5093 + ]], + [[ + 4860, + 5428, + 4863 + ]], + [[ + 5383, + 4868, + 5428 + ]], + [[ + 5377, + 5296, + 5358 + ]], + [[ + 5197, + 5196, + 5296 + ]], + [[ + 5410, + 5429, + 5435 + ]], + [[ + 5415, + 5432, + 5416 + ]], + [[ + 5429, + 5414, + 5430 + ]], + [[ + 5414, + 5412, + 5415 + ]], + [[ + 4963, + 5398, + 5201 + ]], + [[ + 5427, + 5421, + 5399 + ]], + [[ + 5219, + 5241, + 5240 + ]], + [[ + 5238, + 5247, + 5241 + ]], + [[ + 4892, + 4888, + 5300 + ]], + [[ + 4927, + 4889, + 4888 + ]], + [[ + 5423, + 5395, + 5424 + ]], + [[ + 5390, + 4963, + 5393 + ]], + [[ + 4805, + 5430, + 5341 + ]], + [[ + 4805, + 4964, + 5430 + ]], + [[ + 4968, + 5380, + 5434 + ]], + [[ + 4968, + 5135, + 5380 + ]], + [[ + 4882, + 4881, + 4949 + ]], + [[ + 4945, + 5272, + 4948 + ]], + [[ + 5378, + 5420, + 5354 + ]], + [[ + 5358, + 5196, + 5420 + ]], + [[ + 5377, + 5378, + 4926 + ]], + [[ + 5358, + 5420, + 5378 + ]], + [[ + 4963, + 5391, + 5427 + ]], + [[ + 5390, + 5423, + 5391 + ]], + [[ + 5396, + 5393, + 4965 + ]], + [[ + 5396, + 5394, + 5393 + ]], + [[ + 5272, + 5249, + 5270 + ]], + [[ + 4891, + 5115, + 5249 + ]], + [[ + 5271, + 4948, + 5272 + ]], + [[ + 5271, + 4949, + 4948 + ]], + [[ + 5243, + 4940, + 4942 + ]], + [[ + 5266, + 5267, + 4940 + ]], + [[ + 5005, + 5375, + 5057 + ]], + [[ + 5413, + 5014, + 5375 + ]], + [[ + 5421, + 5425, + 5399 + ]], + [[ + 4958, + 5386, + 5425 + ]], + [[ + 5431, + 5405, + 5432 + ]], + [[ + 5419, + 5430, + 5405 + ]], + [[ + 5409, + 5400, + 5401 + ]], + [[ + 5409, + 4958, + 5400 + ]], + [[ + 4940, + 5344, + 4941 + ]], + [[ + 4940, + 5267, + 5344 + ]], + [[ + 5429, + 5202, + 5435 + ]], + [[ + 5430, + 4964, + 5202 + ]], + [[ + 4835, + 4830, + 5033 + ]], + [[ + 4832, + 4990, + 4830 + ]], + [[ + 4828, + 4831, + 4825 + ]], + [[ + 4828, + 4834, + 4831 + ]], + [[ + 5297, + 5377, + 5325 + ]], + [[ + 5297, + 5296, + 5377 + ]], + [[ + 5370, + 5297, + 5325 + ]], + [[ + 5370, + 5197, + 5297 + ]], + [[ + 5410, + 5412, + 5414 + ]], + [[ + 5411, + 5417, + 5412 + ]], + [[ + 5430, + 5414, + 5416 + ]], + [[ + 5429, + 5410, + 5414 + ]], + [[ + 5398, + 5427, + 5399 + ]], + [[ + 5398, + 4963, + 5427 + ]], + [[ + 4967, + 5431, + 5415 + ]], + [[ + 4967, + 5405, + 5431 + ]], + [[ + 5198, + 5326, + 5371 + ]], + [[ + 5198, + 5163, + 5326 + ]], + [[ + 4962, + 4961, + 4867 + ]], + [[ + 4960, + 5422, + 4961 + ]], + [[ + 4845, + 4843, + 4839 + ]], + [[ + 4845, + 5407, + 4843 + ]], + [[ + 5308, + 5312, + 5315 + ]], + [[ + 5313, + 5345, + 5312 + ]], + [[ + 5237, + 5242, + 5243 + ]], + [[ + 5279, + 5218, + 5242 + ]], + [[ + 5411, + 5436, + 5417 + ]], + [[ + 5411, + 5410, + 5436 + ]], + [[ + 5300, + 4887, + 5301 + ]], + [[ + 5300, + 4888, + 4887 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b2c1743cc-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efcc0b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:56:35.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 4879, + 4880, + 5437 + ]], + [[ + 5438, + 5439, + 5385 + ]], + [[ + 5440, + 5441, + 5442 + ]], + [[ + 5440, + 5443, + 5444 + ]], + [[ + 5445, + 5446, + 5447 + ]], + [[ + 5448, + 5449, + 5446 + ]], + [[ + 5450, + 5451, + 5452 + ]], + [[ + 5450, + 5453, + 5454 + ]], + [[ + 5455, + 5456, + 5457 + ]], + [[ + 5455, + 5457, + 5458 + ]], + [[ + 5459, + 5460, + 5461 + ]], + [[ + 5460, + 5462, + 5461 + ]], + [[ + 5463, + 5464, + 5465 + ]], + [[ + 5466, + 5467, + 5468 + ]], + [[ + 5467, + 5469, + 5468 + ]], + [[ + 5470, + 5471, + 5472 + ]], + [[ + 5473, + 5474, + 5475 + ]], + [[ + 5476, + 5459, + 5461 + ]], + [[ + 5466, + 5468, + 5465 + ]], + [[ + 5469, + 4343, + 5468 + ]], + [[ + 5461, + 5463, + 5465 + ]], + [[ + 5477, + 5478, + 5479 + ]], + [[ + 5464, + 5466, + 5465 + ]], + [[ + 5480, + 5481, + 5482 + ]], + [[ + 5462, + 5463, + 5461 + ]], + [[ + 5483, + 5482, + 5484 + ]], + [[ + 5485, + 5486, + 5487 + ]], + [[ + 5459, + 5458, + 5460 + ]], + [[ + 5455, + 5454, + 5456 + ]], + [[ + 5450, + 5452, + 5453 + ]], + [[ + 5488, + 5475, + 5489 + ]], + [[ + 5446, + 5490, + 5448 + ]], + [[ + 5490, + 5446, + 5491 + ]], + [[ + 5491, + 5446, + 5445 + ]], + [[ + 5447, + 5440, + 5492 + ]], + [[ + 5440, + 5442, + 5443 + ]], + [[ + 5488, + 5493, + 5441 + ]], + [[ + 5493, + 5488, + 5494 + ]], + [[ + 5488, + 5489, + 5495 + ]], + [[ + 5475, + 5496, + 5489 + ]], + [[ + 5497, + 5498, + 5499 + ]], + [[ + 5496, + 5475, + 5500 + ]], + [[ + 5500, + 5475, + 5474 + ]], + [[ + 5475, + 5501, + 5473 + ]], + [[ + 5475, + 5502, + 5501 + ]], + [[ + 5503, + 5504, + 5505 + ]], + [[ + 5506, + 5503, + 5505 + ]], + [[ + 5507, + 5506, + 5505 + ]], + [[ + 5508, + 5507, + 5505 + ]], + [[ + 5509, + 5508, + 5505 + ]], + [[ + 5510, + 5511, + 5512 + ]], + [[ + 5513, + 5505, + 5514 + ]], + [[ + 5514, + 5505, + 5515 + ]], + [[ + 5515, + 5505, + 5516 + ]], + [[ + 5517, + 5515, + 5516 + ]], + [[ + 5518, + 5517, + 5516 + ]], + [[ + 5519, + 5518, + 5516 + ]], + [[ + 5517, + 5518, + 5520 + ]], + [[ + 5520, + 5518, + 5521 + ]], + [[ + 5521, + 5518, + 5522 + ]], + [[ + 5522, + 5518, + 5523 + ]], + [[ + 5518, + 5487, + 5524 + ]], + [[ + 5525, + 5523, + 5518 + ]], + [[ + 5526, + 5525, + 5518 + ]], + [[ + 5527, + 5526, + 5518 + ]], + [[ + 5528, + 5529, + 5483 + ]], + [[ + 5530, + 5531, + 5532 + ]], + [[ + 5485, + 5533, + 5486 + ]], + [[ + 4927, + 5486, + 5534 + ]], + [[ + 5535, + 5536, + 5537 + ]], + [[ + 5538, + 5539, + 5540 + ]], + [[ + 5541, + 5485, + 5487 + ]], + [[ + 5542, + 5543, + 5544 + ]], + [[ + 5302, + 5533, + 5545 + ]], + [[ + 5546, + 5547, + 5548 + ]], + [[ + 5549, + 5550, + 5551 + ]], + [[ + 5299, + 5519, + 5552 + ]], + [[ + 5553, + 5554, + 5555 + ]], + [[ + 5556, + 5557, + 5542 + ]], + [[ + 5552, + 5558, + 5299 + ]], + [[ + 4855, + 5559, + 4853 + ]], + [[ + 4842, + 5560, + 5561 + ]], + [[ + 5562, + 5563, + 4869 + ]], + [[ + 5558, + 5371, + 5328 + ]], + [[ + 5556, + 5198, + 5564 + ]], + [[ + 5565, + 5566, + 5567 + ]], + [[ + 5166, + 5438, + 5385 + ]], + [[ + 5565, + 5567, + 5568 + ]], + [[ + 5569, + 4939, + 5570 + ]], + [[ + 5571, + 5572, + 5573 + ]], + [[ + 5570, + 4939, + 5385 + ]], + [[ + 5574, + 5575, + 5576 + ]], + [[ + 5577, + 5223, + 5368 + ]], + [[ + 5578, + 5579, + 5580 + ]], + [[ + 5581, + 5582, + 5583 + ]], + [[ + 5584, + 5585, + 5586 + ]], + [[ + 5587, + 5588, + 5551 + ]], + [[ + 5589, + 5590, + 5591 + ]], + [[ + 5592, + 5593, + 5594 + ]], + [[ + 5581, + 5583, + 5595 + ]], + [[ + 5563, + 4949, + 5596 + ]], + [[ + 5563, + 4882, + 4949 + ]], + [[ + 5563, + 5437, + 4882 + ]], + [[ + 5437, + 4880, + 4882 + ]], + [[ + 4879, + 5437, + 4877 + ]], + [[ + 5437, + 4876, + 4950 + ]], + [[ + 4873, + 4875, + 5562 + ]], + [[ + 4873, + 5562, + 4870 + ]], + [[ + 4870, + 5562, + 4871 + ]], + [[ + 4871, + 5562, + 4869 + ]], + [[ + 4864, + 4883, + 5597 + ]], + [[ + 5597, + 4883, + 4869 + ]], + [[ + 5563, + 5598, + 5597 + ]], + [[ + 5597, + 4865, + 4864 + ]], + [[ + 5599, + 5600, + 5576 + ]], + [[ + 5601, + 5539, + 5602 + ]], + [[ + 5603, + 4861, + 5433 + ]], + [[ + 5604, + 5605, + 5606 + ]], + [[ + 5598, + 5607, + 4858 + ]], + [[ + 5608, + 5609, + 5610 + ]], + [[ + 5559, + 5598, + 5611 + ]], + [[ + 5607, + 5559, + 4855 + ]], + [[ + 5612, + 5611, + 5613 + ]], + [[ + 5614, + 5615, + 5616 + ]], + [[ + 4853, + 5559, + 4854 + ]], + [[ + 5617, + 5618, + 5619 + ]], + [[ + 4852, + 4854, + 5620 + ]], + [[ + 4852, + 5620, + 4849 + ]], + [[ + 5621, + 5622, + 5623 + ]], + [[ + 4844, + 4849, + 5620 + ]], + [[ + 5620, + 5611, + 5624 + ]], + [[ + 4845, + 4844, + 5624 + ]], + [[ + 5561, + 5407, + 4845 + ]], + [[ + 5625, + 5626, + 5627 + ]], + [[ + 5539, + 5601, + 5540 + ]], + [[ + 5539, + 5538, + 5608 + ]], + [[ + 4836, + 5628, + 5001 + ]], + [[ + 5629, + 5033, + 5032 + ]], + [[ + 5629, + 5630, + 5033 + ]], + [[ + 5617, + 5631, + 5618 + ]], + [[ + 5033, + 5630, + 4835 + ]], + [[ + 5632, + 5633, + 4814 + ]], + [[ + 5634, + 5628, + 5635 + ]], + [[ + 5628, + 4826, + 5001 + ]], + [[ + 5628, + 4836, + 4835 + ]], + [[ + 5636, + 5637, + 4804 + ]], + [[ + 5638, + 5639, + 5622 + ]], + [[ + 5640, + 4976, + 5103 + ]], + [[ + 5639, + 5641, + 5622 + ]], + [[ + 4976, + 5632, + 4821 + ]], + [[ + 4821, + 5632, + 5221 + ]], + [[ + 5221, + 5632, + 4817 + ]], + [[ + 4817, + 5632, + 4814 + ]], + [[ + 4814, + 5633, + 4815 + ]], + [[ + 4815, + 5633, + 4811 + ]], + [[ + 5642, + 5643, + 5623 + ]], + [[ + 5623, + 5643, + 5621 + ]], + [[ + 5510, + 5644, + 5645 + ]], + [[ + 5646, + 5505, + 5513 + ]], + [[ + 5646, + 5509, + 5505 + ]], + [[ + 5511, + 5510, + 5647 + ]], + [[ + 5504, + 5502, + 5505 + ]], + [[ + 5494, + 5488, + 5495 + ]], + [[ + 5648, + 5516, + 5505 + ]], + [[ + 5492, + 5440, + 5444 + ]], + [[ + 5505, + 5502, + 5475 + ]], + [[ + 5451, + 5450, + 5449 + ]], + [[ + 5488, + 5441, + 5440 + ]], + [[ + 5440, + 5447, + 5446 + ]], + [[ + 5455, + 5450, + 5454 + ]], + [[ + 5446, + 5449, + 5450 + ]], + [[ + 5649, + 5459, + 5476 + ]], + [[ + 5650, + 5651, + 5645 + ]], + [[ + 5458, + 5459, + 5455 + ]], + [[ + 5649, + 5651, + 5652 + ]], + [[ + 5459, + 5649, + 5652 + ]], + [[ + 5651, + 5653, + 5652 + ]], + [[ + 5651, + 5650, + 5653 + ]], + [[ + 5645, + 5644, + 5650 + ]], + [[ + 5510, + 5645, + 5654 + ]], + [[ + 5645, + 5655, + 5654 + ]], + [[ + 5655, + 5656, + 5654 + ]], + [[ + 5657, + 5629, + 5658 + ]], + [[ + 5659, + 5660, + 5661 + ]], + [[ + 5662, + 5661, + 5660 + ]], + [[ + 5663, + 5135, + 5616 + ]], + [[ + 5606, + 5659, + 5661 + ]], + [[ + 5659, + 5664, + 5660 + ]], + [[ + 5665, + 5666, + 5617 + ]], + [[ + 5665, + 4811, + 5631 + ]], + [[ + 5667, + 5668, + 5669 + ]], + [[ + 5606, + 5629, + 5032 + ]], + [[ + 5616, + 5662, + 5664 + ]], + [[ + 5614, + 5670, + 5615 + ]], + [[ + 5615, + 5671, + 5605 + ]], + [[ + 5657, + 5635, + 5629 + ]], + [[ + 5616, + 5664, + 5663 + ]], + [[ + 5662, + 5660, + 5664 + ]], + [[ + 5608, + 5672, + 5616 + ]], + [[ + 5673, + 5668, + 5614 + ]], + [[ + 5638, + 5674, + 5675 + ]], + [[ + 5676, + 5677, + 5678 + ]], + [[ + 5679, + 5680, + 5628 + ]], + [[ + 5628, + 4835, + 5630 + ]], + [[ + 5681, + 5682, + 5683 + ]], + [[ + 5634, + 5679, + 5628 + ]], + [[ + 5631, + 5617, + 5666 + ]], + [[ + 5684, + 5677, + 5685 + ]], + [[ + 5673, + 5614, + 5616 + ]], + [[ + 5686, + 5687, + 5688 + ]], + [[ + 4811, + 5665, + 5636 + ]], + [[ + 4811, + 5633, + 5631 + ]], + [[ + 5539, + 5608, + 5616 + ]], + [[ + 5672, + 5673, + 5616 + ]], + [[ + 5604, + 5606, + 5661 + ]], + [[ + 5032, + 5135, + 5663 + ]], + [[ + 5032, + 5689, + 5606 + ]], + [[ + 5032, + 5659, + 5689 + ]], + [[ + 5627, + 5677, + 5690 + ]], + [[ + 5691, + 5641, + 5639 + ]], + [[ + 5627, + 5692, + 5685 + ]], + [[ + 5627, + 5685, + 5677 + ]], + [[ + 5693, + 5694, + 5609 + ]], + [[ + 5671, + 5695, + 5605 + ]], + [[ + 5668, + 5696, + 5614 + ]], + [[ + 5687, + 5694, + 5688 + ]], + [[ + 5696, + 5697, + 5670 + ]], + [[ + 5668, + 5667, + 5698 + ]], + [[ + 5610, + 5669, + 5672 + ]], + [[ + 5610, + 5667, + 5669 + ]], + [[ + 5632, + 5640, + 5693 + ]], + [[ + 5640, + 5103, + 4826 + ]], + [[ + 5681, + 5683, + 5657 + ]], + [[ + 5699, + 5679, + 5634 + ]], + [[ + 5693, + 5682, + 5694 + ]], + [[ + 5695, + 5657, + 5658 + ]], + [[ + 5691, + 5639, + 5700 + ]], + [[ + 5691, + 5678, + 5641 + ]], + [[ + 4811, + 5636, + 4804 + ]], + [[ + 5636, + 5619, + 5678 + ]], + [[ + 5636, + 5684, + 5637 + ]], + [[ + 5636, + 5678, + 5684 + ]], + [[ + 5637, + 5685, + 5692 + ]], + [[ + 5637, + 5684, + 5685 + ]], + [[ + 5625, + 5701, + 5626 + ]], + [[ + 4804, + 5637, + 5692 + ]], + [[ + 5675, + 5701, + 5702 + ]], + [[ + 5626, + 5703, + 5627 + ]], + [[ + 5625, + 5702, + 5701 + ]], + [[ + 5703, + 4804, + 5692 + ]], + [[ + 5704, + 5702, + 5705 + ]], + [[ + 5700, + 5675, + 5702 + ]], + [[ + 5690, + 5705, + 5627 + ]], + [[ + 5690, + 5704, + 5705 + ]], + [[ + 5638, + 5675, + 5700 + ]], + [[ + 5638, + 5621, + 5674 + ]], + [[ + 5694, + 5682, + 5688 + ]], + [[ + 5683, + 5634, + 5657 + ]], + [[ + 5706, + 5707, + 5536 + ]], + [[ + 5708, + 5590, + 5709 + ]], + [[ + 5710, + 5711, + 5712 + ]], + [[ + 5713, + 5714, + 5715 + ]], + [[ + 5586, + 5716, + 5717 + ]], + [[ + 5712, + 5711, + 5718 + ]], + [[ + 5662, + 5604, + 5661 + ]], + [[ + 5658, + 5629, + 5605 + ]], + [[ + 5616, + 5615, + 5604 + ]], + [[ + 5670, + 5697, + 5687 + ]], + [[ + 5670, + 5687, + 5615 + ]], + [[ + 5686, + 5681, + 5695 + ]], + [[ + 5615, + 5687, + 5671 + ]], + [[ + 5697, + 5694, + 5687 + ]], + [[ + 5705, + 5625, + 5627 + ]], + [[ + 5705, + 5702, + 5625 + ]], + [[ + 5693, + 5640, + 5679 + ]], + [[ + 5632, + 4976, + 5640 + ]], + [[ + 5719, + 5710, + 5720 + ]], + [[ + 5547, + 5546, + 5721 + ]], + [[ + 5617, + 5636, + 5665 + ]], + [[ + 5617, + 5619, + 5636 + ]], + [[ + 5684, + 5678, + 5677 + ]], + [[ + 5619, + 5641, + 5678 + ]], + [[ + 5675, + 5674, + 5701 + ]], + [[ + 5621, + 4804, + 5674 + ]], + [[ + 5702, + 5704, + 5700 + ]], + [[ + 5690, + 5676, + 5704 + ]], + [[ + 5722, + 5600, + 5723 + ]], + [[ + 5722, + 5574, + 5576 + ]], + [[ + 5724, + 5725, + 5726 + ]], + [[ + 5727, + 5588, + 5728 + ]], + [[ + 5554, + 5723, + 5729 + ]], + [[ + 5730, + 5731, + 5732 + ]], + [[ + 5708, + 5733, + 5555 + ]], + [[ + 5734, + 5735, + 5714 + ]], + [[ + 5736, + 5580, + 5728 + ]], + [[ + 5550, + 5549, + 5737 + ]], + [[ + 5736, + 5728, + 5738 + ]], + [[ + 5739, + 5740, + 5583 + ]], + [[ + 5551, + 5741, + 5587 + ]], + [[ + 5742, + 5743, + 5248 + ]], + [[ + 5744, + 5667, + 5609 + ]], + [[ + 5698, + 5744, + 5696 + ]], + [[ + 5744, + 5698, + 5667 + ]], + [[ + 5744, + 5697, + 5696 + ]], + [[ + 5745, + 5746, + 5747 + ]], + [[ + 5748, + 5531, + 5749 + ]], + [[ + 5693, + 5683, + 5682 + ]], + [[ + 5693, + 5679, + 5699 + ]], + [[ + 5683, + 5699, + 5634 + ]], + [[ + 5683, + 5693, + 5699 + ]], + [[ + 5750, + 5716, + 5751 + ]], + [[ + 5728, + 5588, + 5587 + ]], + [[ + 5752, + 5751, + 5732 + ]], + [[ + 5584, + 5717, + 5753 + ]], + [[ + 5731, + 5752, + 5732 + ]], + [[ + 5753, + 5754, + 5755 + ]], + [[ + 5751, + 5716, + 5756 + ]], + [[ + 5720, + 5757, + 5719 + ]], + [[ + 5758, + 5717, + 5716 + ]], + [[ + 5759, + 5147, + 5760 + ]], + [[ + 5761, + 5578, + 5580 + ]], + [[ + 5579, + 5595, + 5762 + ]], + [[ + 5758, + 5763, + 5717 + ]], + [[ + 5754, + 5281, + 5755 + ]], + [[ + 5587, + 5738, + 5728 + ]], + [[ + 5732, + 5736, + 5738 + ]], + [[ + 5669, + 5673, + 5672 + ]], + [[ + 5669, + 5668, + 5673 + ]], + [[ + 5640, + 5680, + 5679 + ]], + [[ + 5640, + 4826, + 5628 + ]], + [[ + 5764, + 5765, + 5567 + ]], + [[ + 5766, + 5571, + 5767 + ]], + [[ + 5768, + 5769, + 5770 + ]], + [[ + 5498, + 5771, + 5499 + ]], + [[ + 5674, + 5626, + 5701 + ]], + [[ + 5674, + 4804, + 5626 + ]], + [[ + 5627, + 5703, + 5692 + ]], + [[ + 5626, + 4804, + 5703 + ]], + [[ + 5608, + 5610, + 5672 + ]], + [[ + 5609, + 5667, + 5610 + ]], + [[ + 5772, + 5709, + 5773 + ]], + [[ + 5774, + 5588, + 5727 + ]], + [[ + 5761, + 5580, + 5736 + ]], + [[ + 5736, + 5751, + 5756 + ]], + [[ + 5749, + 5721, + 5775 + ]], + [[ + 5290, + 5223, + 5775 + ]], + [[ + 5710, + 5548, + 5711 + ]], + [[ + 5546, + 5776, + 5290 + ]], + [[ + 5695, + 5681, + 5657 + ]], + [[ + 5688, + 5682, + 5681 + ]], + [[ + 5777, + 5778, + 5779 + ]], + [[ + 5747, + 5746, + 5780 + ]], + [[ + 5738, + 5730, + 5732 + ]], + [[ + 5781, + 5248, + 5217 + ]], + [[ + 5773, + 5739, + 5583 + ]], + [[ + 5782, + 5783, + 5727 + ]], + [[ + 5135, + 5539, + 5616 + ]], + [[ + 5538, + 5609, + 5608 + ]], + [[ + 5547, + 5721, + 5749 + ]], + [[ + 5721, + 5290, + 5775 + ]], + [[ + 5547, + 5749, + 5531 + ]], + [[ + 5775, + 5223, + 5577 + ]], + [[ + 5532, + 5784, + 5530 + ]], + [[ + 5749, + 5775, + 5577 + ]], + [[ + 5767, + 5785, + 5766 + ]], + [[ + 5786, + 5787, + 5788 + ]], + [[ + 5572, + 5766, + 5789 + ]], + [[ + 5790, + 5748, + 5791 + ]], + [[ + 5605, + 5695, + 5658 + ]], + [[ + 5671, + 5687, + 5686 + ]], + [[ + 5681, + 5686, + 5688 + ]], + [[ + 5695, + 5671, + 5686 + ]], + [[ + 5694, + 5744, + 5609 + ]], + [[ + 5694, + 5697, + 5744 + ]], + [[ + 5792, + 5793, + 5794 + ]], + [[ + 5766, + 5785, + 5795 + ]], + [[ + 5536, + 5707, + 5796 + ]], + [[ + 5706, + 5797, + 5707 + ]], + [[ + 5787, + 5795, + 5532 + ]], + [[ + 5748, + 5749, + 5791 + ]], + [[ + 5766, + 5795, + 5787 + ]], + [[ + 5798, + 5799, + 5800 + ]], + [[ + 5659, + 5663, + 5664 + ]], + [[ + 5659, + 5032, + 5663 + ]], + [[ + 5732, + 5751, + 5736 + ]], + [[ + 5752, + 5750, + 5751 + ]], + [[ + 5801, + 5802, + 5750 + ]], + [[ + 5752, + 5731, + 5750 + ]], + [[ + 5725, + 5803, + 5804 + ]], + [[ + 5805, + 5750, + 5804 + ]], + [[ + 5806, + 5763, + 5803 + ]], + [[ + 5758, + 5750, + 5805 + ]], + [[ + 5757, + 5720, + 5807 + ]], + [[ + 5581, + 5595, + 5579 + ]], + [[ + 5712, + 5720, + 5710 + ]], + [[ + 5712, + 5718, + 5808 + ]], + [[ + 5809, + 5810, + 5742 + ]], + [[ + 5743, + 5271, + 5248 + ]], + [[ + 5742, + 5724, + 5809 + ]], + [[ + 5801, + 5750, + 5731 + ]], + [[ + 5811, + 5566, + 5812 + ]], + [[ + 5813, + 5814, + 5707 + ]], + [[ + 5815, + 5765, + 5764 + ]], + [[ + 4924, + 4923, + 5569 + ]], + [[ + 5166, + 5816, + 5817 + ]], + [[ + 5818, + 5569, + 5570 + ]], + [[ + 5819, + 5815, + 5764 + ]], + [[ + 5814, + 5536, + 5796 + ]], + [[ + 5820, + 5818, + 5570 + ]], + [[ + 5821, + 5822, + 5820 + ]], + [[ + 5707, + 5770, + 5813 + ]], + [[ + 5484, + 5482, + 5821 + ]], + [[ + 5439, + 5570, + 5385 + ]], + [[ + 5569, + 5765, + 4924 + ]], + [[ + 5724, + 5823, + 5725 + ]], + [[ + 5803, + 5805, + 5804 + ]], + [[ + 5802, + 5801, + 5809 + ]], + [[ + 5802, + 5804, + 5750 + ]], + [[ + 5809, + 5730, + 5592 + ]], + [[ + 5801, + 5731, + 5730 + ]], + [[ + 5792, + 5794, + 5824 + ]], + [[ + 5793, + 5825, + 5794 + ]], + [[ + 5788, + 5787, + 5532 + ]], + [[ + 5720, + 5808, + 5826 + ]], + [[ + 5827, + 5788, + 5790 + ]], + [[ + 5532, + 5531, + 5828 + ]], + [[ + 5635, + 5628, + 5630 + ]], + [[ + 5680, + 5640, + 5628 + ]], + [[ + 5629, + 5635, + 5630 + ]], + [[ + 5657, + 5634, + 5635 + ]], + [[ + 5829, + 5729, + 5590 + ]], + [[ + 5729, + 5591, + 5590 + ]], + [[ + 5704, + 5691, + 5700 + ]], + [[ + 5704, + 5678, + 5691 + ]], + [[ + 5592, + 5830, + 5809 + ]], + [[ + 4949, + 5271, + 5830 + ]], + [[ + 5730, + 5809, + 5801 + ]], + [[ + 5830, + 5810, + 5809 + ]], + [[ + 5603, + 4857, + 4862 + ]], + [[ + 5596, + 5723, + 5613 + ]], + [[ + 5743, + 5742, + 5810 + ]], + [[ + 5831, + 5823, + 5724 + ]], + [[ + 5832, + 5811, + 5812 + ]], + [[ + 5764, + 5567, + 5566 + ]], + [[ + 5833, + 5812, + 5834 + ]], + [[ + 5835, + 5735, + 5832 + ]], + [[ + 5715, + 5836, + 5713 + ]], + [[ + 5819, + 5275, + 5815 + ]], + [[ + 5835, + 5832, + 5812 + ]], + [[ + 5735, + 5837, + 5811 + ]], + [[ + 5614, + 5696, + 5670 + ]], + [[ + 5668, + 5698, + 5696 + ]], + [[ + 5542, + 5544, + 5838 + ]], + [[ + 5834, + 5839, + 5537 + ]], + [[ + 5519, + 5516, + 5470 + ]], + [[ + 5817, + 5528, + 5438 + ]], + [[ + 5518, + 5840, + 5527 + ]], + [[ + 5516, + 5841, + 5511 + ]], + [[ + 5572, + 5571, + 5766 + ]], + [[ + 5767, + 5799, + 5785 + ]], + [[ + 5842, + 5544, + 5843 + ]], + [[ + 5438, + 5844, + 5439 + ]], + [[ + 5845, + 5846, + 5842 + ]], + [[ + 5847, + 5779, + 5848 + ]], + [[ + 5849, + 5756, + 5716 + ]], + [[ + 5761, + 5736, + 5756 + ]], + [[ + 5281, + 5850, + 5217 + ]], + [[ + 5763, + 5758, + 5803 + ]], + [[ + 5795, + 5784, + 5532 + ]], + [[ + 5795, + 5785, + 5851 + ]], + [[ + 5543, + 5542, + 5845 + ]], + [[ + 5852, + 5853, + 5558 + ]], + [[ + 5659, + 5606, + 5689 + ]], + [[ + 5605, + 5629, + 5606 + ]], + [[ + 5850, + 5806, + 5781 + ]], + [[ + 5831, + 5742, + 5248 + ]], + [[ + 5248, + 5781, + 5823 + ]], + [[ + 5806, + 5803, + 5725 + ]], + [[ + 5854, + 5806, + 5855 + ]], + [[ + 5856, + 5754, + 5763 + ]], + [[ + 5855, + 5725, + 5823 + ]], + [[ + 5726, + 5809, + 5724 + ]], + [[ + 5580, + 5857, + 5858 + ]], + [[ + 5580, + 5579, + 5857 + ]], + [[ + 5812, + 5833, + 5835 + ]], + [[ + 5834, + 5814, + 5833 + ]], + [[ + 5594, + 5593, + 5859 + ]], + [[ + 5730, + 5738, + 5593 + ]], + [[ + 5576, + 5600, + 5722 + ]], + [[ + 5601, + 5611, + 5612 + ]], + [[ + 5860, + 5816, + 5838 + ]], + [[ + 5557, + 5861, + 5542 + ]], + [[ + 5555, + 5780, + 5746 + ]], + [[ + 5555, + 5573, + 5780 + ]], + [[ + 5551, + 5862, + 5741 + ]], + [[ + 5863, + 5830, + 5592 + ]], + [[ + 5864, + 5865, + 5866 + ]], + [[ + 5867, + 5868, + 5869 + ]], + [[ + 5755, + 5864, + 5584 + ]], + [[ + 5760, + 5870, + 5719 + ]], + [[ + 5800, + 5871, + 5733 + ]], + [[ + 5772, + 5773, + 5583 + ]], + [[ + 5872, + 5873, + 5772 + ]], + [[ + 5873, + 5708, + 5709 + ]], + [[ + 5874, + 5771, + 5827 + ]], + [[ + 5875, + 5794, + 5825 + ]], + [[ + 5830, + 5863, + 4949 + ]], + [[ + 5741, + 5859, + 5587 + ]], + [[ + 5864, + 5866, + 5585 + ]], + [[ + 5876, + 5877, + 5866 + ]], + [[ + 5704, + 5676, + 5678 + ]], + [[ + 5690, + 5677, + 5676 + ]], + [[ + 5726, + 5725, + 5804 + ]], + [[ + 5855, + 5806, + 5725 + ]], + [[ + 5537, + 5839, + 5565 + ]], + [[ + 5878, + 5779, + 5778 + ]], + [[ + 5879, + 5565, + 5568 + ]], + [[ + 5567, + 5765, + 5568 + ]], + [[ + 5553, + 5722, + 5554 + ]], + [[ + 5553, + 5574, + 5722 + ]], + [[ + 5597, + 5433, + 4865 + ]], + [[ + 5596, + 5729, + 5723 + ]], + [[ + 5880, + 5439, + 5844 + ]], + [[ + 5880, + 5820, + 5439 + ]], + [[ + 5853, + 5861, + 5564 + ]], + [[ + 5881, + 5542, + 5861 + ]], + [[ + 5557, + 5564, + 5861 + ]], + [[ + 5198, + 5371, + 5853 + ]], + [[ + 5558, + 5882, + 5852 + ]], + [[ + 5552, + 5542, + 5881 + ]], + [[ + 5861, + 5852, + 5881 + ]], + [[ + 5853, + 5371, + 5558 + ]], + [[ + 5480, + 5883, + 5481 + ]], + [[ + 5848, + 5779, + 5878 + ]], + [[ + 5833, + 5715, + 5835 + ]], + [[ + 5833, + 5814, + 5836 + ]], + [[ + 5884, + 5885, + 5886 + ]], + [[ + 5516, + 5648, + 5841 + ]], + [[ + 5875, + 5825, + 5787 + ]], + [[ + 5793, + 5789, + 5825 + ]], + [[ + 5861, + 5853, + 5852 + ]], + [[ + 5564, + 5198, + 5853 + ]], + [[ + 5551, + 5550, + 5862 + ]], + [[ + 5551, + 5774, + 5549 + ]], + [[ + 5470, + 5478, + 5878 + ]], + [[ + 5552, + 5846, + 5845 + ]], + [[ + 5843, + 5543, + 5845 + ]], + [[ + 5843, + 5544, + 5543 + ]], + [[ + 5778, + 5886, + 5887 + ]], + [[ + 5884, + 5822, + 5885 + ]], + [[ + 5888, + 5578, + 5877 + ]], + [[ + 5581, + 5579, + 5578 + ]], + [[ + 5739, + 5589, + 5889 + ]], + [[ + 5862, + 5596, + 5741 + ]], + [[ + 5890, + 5576, + 5575 + ]], + [[ + 5890, + 5612, + 5613 + ]], + [[ + 5589, + 5709, + 5590 + ]], + [[ + 5873, + 5733, + 5708 + ]], + [[ + 5870, + 5891, + 5719 + ]], + [[ + 5892, + 5548, + 5710 + ]], + [[ + 5871, + 5800, + 5799 + ]], + [[ + 5798, + 5808, + 5893 + ]], + [[ + 5871, + 5799, + 5767 + ]], + [[ + 5808, + 5894, + 5826 + ]], + [[ + 5795, + 5851, + 5784 + ]], + [[ + 5785, + 5799, + 5851 + ]], + [[ + 5865, + 5757, + 5868 + ]], + [[ + 5869, + 5826, + 5872 + ]], + [[ + 5535, + 5745, + 5824 + ]], + [[ + 5895, + 5896, + 5553 + ]], + [[ + 5707, + 5814, + 5796 + ]], + [[ + 5834, + 5537, + 5814 + ]], + [[ + 5824, + 5745, + 5897 + ]], + [[ + 5535, + 5895, + 5745 + ]], + [[ + 5711, + 5548, + 5547 + ]], + [[ + 5892, + 5898, + 5776 + ]], + [[ + 5755, + 5759, + 5760 + ]], + [[ + 5281, + 5147, + 5759 + ]], + [[ + 5888, + 5581, + 5578 + ]], + [[ + 5867, + 5582, + 5581 + ]], + [[ + 5899, + 5714, + 5713 + ]], + [[ + 5715, + 5833, + 5836 + ]], + [[ + 5875, + 5768, + 5770 + ]], + [[ + 5836, + 5814, + 5813 + ]], + [[ + 5299, + 5558, + 5328 + ]], + [[ + 5299, + 5301, + 5519 + ]], + [[ + 5549, + 5774, + 5889 + ]], + [[ + 5740, + 5595, + 5583 + ]], + [[ + 5580, + 5858, + 5728 + ]], + [[ + 5774, + 5551, + 5588 + ]], + [[ + 5858, + 5782, + 5727 + ]], + [[ + 5739, + 5889, + 5783 + ]], + [[ + 5665, + 5631, + 5666 + ]], + [[ + 5633, + 5618, + 5631 + ]], + [[ + 5849, + 5877, + 5761 + ]], + [[ + 5876, + 5888, + 5877 + ]], + [[ + 5789, + 5792, + 5897 + ]], + [[ + 5706, + 5536, + 5535 + ]], + [[ + 5529, + 5528, + 5817 + ]], + [[ + 5880, + 5844, + 5528 + ]], + [[ + 5838, + 5544, + 5900 + ]], + [[ + 5544, + 5842, + 5900 + ]], + [[ + 5860, + 5480, + 5901 + ]], + [[ + 5860, + 5900, + 5480 + ]], + [[ + 4924, + 5815, + 5275 + ]], + [[ + 4924, + 5765, + 5815 + ]], + [[ + 5735, + 5734, + 5902 + ]], + [[ + 5903, + 5275, + 5904 + ]], + [[ + 5275, + 5819, + 5904 + ]], + [[ + 5764, + 5566, + 5837 + ]], + [[ + 5905, + 5837, + 5735 + ]], + [[ + 5905, + 5819, + 5837 + ]], + [[ + 5900, + 5860, + 5838 + ]], + [[ + 5556, + 5164, + 5198 + ]], + [[ + 5786, + 5768, + 5787 + ]], + [[ + 5797, + 5706, + 5794 + ]], + [[ + 5745, + 5789, + 5897 + ]], + [[ + 5766, + 5825, + 5789 + ]], + [[ + 5639, + 5638, + 5700 + ]], + [[ + 5622, + 5621, + 5638 + ]], + [[ + 5794, + 5706, + 5824 + ]], + [[ + 5794, + 5875, + 5797 + ]], + [[ + 5593, + 5592, + 5730 + ]], + [[ + 5594, + 5863, + 5592 + ]], + [[ + 5763, + 5754, + 5753 + ]], + [[ + 5856, + 5281, + 5754 + ]], + [[ + 5586, + 5849, + 5716 + ]], + [[ + 5866, + 5877, + 5849 + ]], + [[ + 5164, + 5816, + 5166 + ]], + [[ + 5901, + 5480, + 5529 + ]], + [[ + 5799, + 5798, + 5851 + ]], + [[ + 5800, + 5733, + 5798 + ]], + [[ + 5728, + 5858, + 5727 + ]], + [[ + 5762, + 5595, + 5740 + ]], + [[ + 5783, + 5782, + 5739 + ]], + [[ + 5858, + 5857, + 5740 + ]], + [[ + 5887, + 5885, + 5778 + ]], + [[ + 5887, + 5886, + 5885 + ]], + [[ + 5735, + 5811, + 5832 + ]], + [[ + 5837, + 5566, + 5811 + ]], + [[ + 5573, + 5767, + 5571 + ]], + [[ + 5573, + 5871, + 5767 + ]], + [[ + 5753, + 5755, + 5584 + ]], + [[ + 5281, + 5759, + 5755 + ]], + [[ + 5791, + 5874, + 5827 + ]], + [[ + 5734, + 5498, + 5906 + ]], + [[ + 5749, + 5577, + 5791 + ]], + [[ + 5907, + 5499, + 5874 + ]], + [[ + 5497, + 5907, + 5368 + ]], + [[ + 5874, + 5791, + 5907 + ]], + [[ + 5907, + 5577, + 5368 + ]], + [[ + 5907, + 5791, + 5577 + ]], + [[ + 5497, + 5499, + 5907 + ]], + [[ + 5771, + 5874, + 5499 + ]], + [[ + 5531, + 5718, + 5711 + ]], + [[ + 5893, + 5851, + 5798 + ]], + [[ + 5770, + 5797, + 5875 + ]], + [[ + 5770, + 5707, + 5797 + ]], + [[ + 5828, + 5788, + 5532 + ]], + [[ + 5825, + 5766, + 5787 + ]], + [[ + 5616, + 5604, + 5662 + ]], + [[ + 5615, + 5605, + 5604 + ]], + [[ + 5908, + 5708, + 5555 + ]], + [[ + 5554, + 5829, + 5708 + ]], + [[ + 5746, + 5553, + 5555 + ]], + [[ + 5722, + 5723, + 5554 + ]], + [[ + 5817, + 5438, + 5166 + ]], + [[ + 5528, + 5844, + 5438 + ]], + [[ + 5146, + 5870, + 5147 + ]], + [[ + 5146, + 5891, + 5870 + ]], + [[ + 5876, + 5868, + 5867 + ]], + [[ + 5826, + 5894, + 5872 + ]], + [[ + 5582, + 5869, + 5872 + ]], + [[ + 5807, + 5720, + 5826 + ]], + [[ + 5868, + 5826, + 5869 + ]], + [[ + 5720, + 5712, + 5808 + ]], + [[ + 5729, + 5737, + 5591 + ]], + [[ + 5729, + 5596, + 5862 + ]], + [[ + 5737, + 5862, + 5550 + ]], + [[ + 5737, + 5729, + 5862 + ]], + [[ + 5857, + 5762, + 5740 + ]], + [[ + 5857, + 5579, + 5762 + ]], + [[ + 5530, + 5893, + 5808 + ]], + [[ + 5909, + 5894, + 5808 + ]], + [[ + 5739, + 5773, + 5589 + ]], + [[ + 5583, + 5910, + 5772 + ]], + [[ + 5549, + 5589, + 5591 + ]], + [[ + 5773, + 5709, + 5589 + ]], + [[ + 5789, + 5747, + 5572 + ]], + [[ + 5789, + 5745, + 5747 + ]], + [[ + 5780, + 5572, + 5747 + ]], + [[ + 5780, + 5573, + 5572 + ]], + [[ + 5897, + 5792, + 5824 + ]], + [[ + 5789, + 5793, + 5792 + ]], + [[ + 5589, + 5549, + 5889 + ]], + [[ + 5591, + 5737, + 5549 + ]], + [[ + 5830, + 5911, + 5810 + ]], + [[ + 5830, + 5271, + 5743 + ]], + [[ + 5868, + 5807, + 5826 + ]], + [[ + 5868, + 5876, + 5865 + ]], + [[ + 5868, + 5757, + 5807 + ]], + [[ + 5898, + 5891, + 5776 + ]], + [[ + 5554, + 5908, + 5555 + ]], + [[ + 5554, + 5708, + 5908 + ]], + [[ + 5835, + 5714, + 5735 + ]], + [[ + 5835, + 5715, + 5714 + ]], + [[ + 5583, + 5582, + 5910 + ]], + [[ + 5867, + 5869, + 5582 + ]], + [[ + 5902, + 5903, + 5904 + ]], + [[ + 5276, + 5275, + 5903 + ]], + [[ + 5790, + 5788, + 5828 + ]], + [[ + 5827, + 5786, + 5788 + ]], + [[ + 5718, + 5530, + 5808 + ]], + [[ + 5784, + 5851, + 5893 + ]], + [[ + 5771, + 5786, + 5827 + ]], + [[ + 5899, + 5713, + 5769 + ]], + [[ + 5901, + 5529, + 5817 + ]], + [[ + 5480, + 5483, + 5529 + ]], + [[ + 5146, + 5776, + 5891 + ]], + [[ + 5146, + 5290, + 5776 + ]], + [[ + 5719, + 5898, + 5710 + ]], + [[ + 5776, + 5548, + 5892 + ]], + [[ + 5863, + 5741, + 5596 + ]], + [[ + 5594, + 5859, + 5741 + ]], + [[ + 5582, + 5872, + 5910 + ]], + [[ + 5894, + 5909, + 5733 + ]], + [[ + 4857, + 5603, + 4858 + ]], + [[ + 5613, + 5576, + 5890 + ]], + [[ + 4844, + 5620, + 5624 + ]], + [[ + 5601, + 5612, + 5912 + ]], + [[ + 5559, + 5611, + 5620 + ]], + [[ + 5598, + 5613, + 5611 + ]], + [[ + 5866, + 5865, + 5876 + ]], + [[ + 5760, + 5147, + 5870 + ]], + [[ + 5837, + 5819, + 5764 + ]], + [[ + 5905, + 5904, + 5819 + ]], + [[ + 5750, + 5758, + 5716 + ]], + [[ + 5805, + 5803, + 5758 + ]], + [[ + 5845, + 5842, + 5843 + ]], + [[ + 5846, + 5900, + 5842 + ]], + [[ + 5867, + 5888, + 5876 + ]], + [[ + 5867, + 5581, + 5888 + ]], + [[ + 5827, + 5790, + 5791 + ]], + [[ + 5828, + 5748, + 5790 + ]], + [[ + 5812, + 5839, + 5834 + ]], + [[ + 5812, + 5566, + 5565 + ]], + [[ + 5555, + 5871, + 5573 + ]], + [[ + 5733, + 5872, + 5894 + ]], + [[ + 5555, + 5733, + 5871 + ]], + [[ + 5873, + 5872, + 5733 + ]], + [[ + 5776, + 5546, + 5548 + ]], + [[ + 5290, + 5721, + 5546 + ]], + [[ + 5823, + 5831, + 5248 + ]], + [[ + 5724, + 5742, + 5831 + ]], + [[ + 5906, + 5498, + 5368 + ]], + [[ + 5498, + 5714, + 5771 + ]], + [[ + 5368, + 5498, + 5497 + ]], + [[ + 5276, + 5903, + 5902 + ]], + [[ + 5902, + 5734, + 5276 + ]], + [[ + 5714, + 5498, + 5734 + ]], + [[ + 5276, + 5906, + 5368 + ]], + [[ + 5276, + 5734, + 5906 + ]], + [[ + 5813, + 5769, + 5836 + ]], + [[ + 5899, + 5786, + 5771 + ]], + [[ + 5836, + 5769, + 5713 + ]], + [[ + 5813, + 5770, + 5769 + ]], + [[ + 5854, + 5781, + 5806 + ]], + [[ + 5217, + 5850, + 5781 + ]], + [[ + 4856, + 5607, + 4855 + ]], + [[ + 4856, + 4858, + 5607 + ]], + [[ + 5528, + 5483, + 5880 + ]], + [[ + 5480, + 5482, + 5483 + ]], + [[ + 5740, + 5782, + 5858 + ]], + [[ + 5740, + 5739, + 5782 + ]], + [[ + 5872, + 5772, + 5910 + ]], + [[ + 5873, + 5709, + 5772 + ]], + [[ + 5798, + 5909, + 5808 + ]], + [[ + 5798, + 5733, + 5909 + ]], + [[ + 5865, + 5719, + 5757 + ]], + [[ + 5865, + 5864, + 5760 + ]], + [[ + 5710, + 5898, + 5892 + ]], + [[ + 5719, + 5891, + 5898 + ]], + [[ + 5865, + 5760, + 5719 + ]], + [[ + 5864, + 5755, + 5760 + ]], + [[ + 5547, + 5531, + 5711 + ]], + [[ + 5748, + 5828, + 5531 + ]], + [[ + 5407, + 5560, + 4842 + ]], + [[ + 5561, + 4845, + 5624 + ]], + [[ + 5613, + 5599, + 5576 + ]], + [[ + 5723, + 5600, + 5599 + ]], + [[ + 5900, + 5883, + 5480 + ]], + [[ + 5481, + 5913, + 5482 + ]], + [[ + 5726, + 5802, + 5809 + ]], + [[ + 5726, + 5804, + 5802 + ]], + [[ + 4858, + 5603, + 5598 + ]], + [[ + 4862, + 4861, + 5603 + ]], + [[ + 5901, + 5816, + 5860 + ]], + [[ + 5901, + 5817, + 5816 + ]], + [[ + 5557, + 5556, + 5564 + ]], + [[ + 5816, + 5164, + 5556 + ]], + [[ + 5823, + 5854, + 5855 + ]], + [[ + 5823, + 5781, + 5854 + ]], + [[ + 5765, + 5569, + 5568 + ]], + [[ + 4923, + 4939, + 5569 + ]], + [[ + 5849, + 5761, + 5756 + ]], + [[ + 5877, + 5578, + 5761 + ]], + [[ + 5864, + 5585, + 5584 + ]], + [[ + 5866, + 5849, + 5585 + ]], + [[ + 5584, + 5586, + 5717 + ]], + [[ + 5585, + 5849, + 5586 + ]], + [[ + 5905, + 5902, + 5904 + ]], + [[ + 5905, + 5735, + 5902 + ]], + [[ + 5556, + 5838, + 5816 + ]], + [[ + 5556, + 5542, + 5838 + ]], + [[ + 5900, + 5481, + 5883 + ]], + [[ + 5885, + 5913, + 5481 + ]], + [[ + 5531, + 5530, + 5718 + ]], + [[ + 5784, + 5893, + 5530 + ]], + [[ + 5850, + 5856, + 5806 + ]], + [[ + 5753, + 5717, + 5763 + ]], + [[ + 5806, + 5856, + 5763 + ]], + [[ + 5850, + 5281, + 5856 + ]], + [[ + 5783, + 5774, + 5727 + ]], + [[ + 5783, + 5889, + 5774 + ]], + [[ + 5569, + 5818, + 5568 + ]], + [[ + 5839, + 5812, + 5565 + ]], + [[ + 5478, + 5477, + 5878 + ]], + [[ + 5647, + 5516, + 5511 + ]], + [[ + 5647, + 5510, + 5914 + ]], + [[ + 5512, + 5644, + 5510 + ]], + [[ + 5654, + 5647, + 5914 + ]], + [[ + 5470, + 5516, + 5647 + ]], + [[ + 5563, + 5613, + 5598 + ]], + [[ + 5723, + 5599, + 5613 + ]], + [[ + 5777, + 5779, + 5535 + ]], + [[ + 5536, + 5814, + 5537 + ]], + [[ + 5778, + 5777, + 5884 + ]], + [[ + 5777, + 5565, + 5879 + ]], + [[ + 5439, + 5820, + 5570 + ]], + [[ + 5879, + 5568, + 5818 + ]], + [[ + 5741, + 5863, + 5594 + ]], + [[ + 5596, + 4949, + 5863 + ]], + [[ + 5603, + 5433, + 5597 + ]], + [[ + 4875, + 4876, + 5437 + ]], + [[ + 5593, + 5587, + 5859 + ]], + [[ + 5593, + 5738, + 5587 + ]], + [[ + 5545, + 5533, + 5485 + ]], + [[ + 5533, + 5534, + 5486 + ]], + [[ + 4889, + 5533, + 5302 + ]], + [[ + 4889, + 5534, + 5533 + ]], + [[ + 5510, + 5654, + 5914 + ]], + [[ + 5656, + 5471, + 5470 + ]], + [[ + 5786, + 5899, + 5769 + ]], + [[ + 5771, + 5714, + 5899 + ]], + [[ + 5537, + 5565, + 5777 + ]], + [[ + 5847, + 5896, + 5779 + ]], + [[ + 5895, + 5535, + 5779 + ]], + [[ + 5824, + 5706, + 5535 + ]], + [[ + 5787, + 5768, + 5875 + ]], + [[ + 5786, + 5769, + 5768 + ]], + [[ + 5484, + 5820, + 5880 + ]], + [[ + 5879, + 5818, + 5820 + ]], + [[ + 5483, + 5484, + 5880 + ]], + [[ + 5482, + 5913, + 5821 + ]], + [[ + 5484, + 5821, + 5820 + ]], + [[ + 5913, + 5885, + 5822 + ]], + [[ + 5911, + 5743, + 5810 + ]], + [[ + 5911, + 5830, + 5743 + ]], + [[ + 4840, + 5915, + 5401 + ]], + [[ + 5561, + 5560, + 5407 + ]], + [[ + 5848, + 5878, + 5479 + ]], + [[ + 5656, + 5470, + 5654 + ]], + [[ + 5885, + 5519, + 5778 + ]], + [[ + 5885, + 5846, + 5519 + ]], + [[ + 5552, + 5519, + 5846 + ]], + [[ + 5301, + 5302, + 5518 + ]], + [[ + 5542, + 5552, + 5845 + ]], + [[ + 5882, + 5558, + 5552 + ]], + [[ + 5881, + 5882, + 5552 + ]], + [[ + 5881, + 5852, + 5882 + ]], + [[ + 5301, + 5518, + 5519 + ]], + [[ + 5524, + 5840, + 5518 + ]], + [[ + 5518, + 5545, + 5487 + ]], + [[ + 5518, + 5302, + 5545 + ]], + [[ + 5601, + 5624, + 5611 + ]], + [[ + 5915, + 4840, + 5561 + ]], + [[ + 5915, + 5561, + 5624 + ]], + [[ + 4840, + 4842, + 5561 + ]], + [[ + 5537, + 5777, + 5535 + ]], + [[ + 5879, + 5884, + 5777 + ]], + [[ + 5778, + 5884, + 5886 + ]], + [[ + 5822, + 5821, + 5913 + ]], + [[ + 5879, + 5822, + 5884 + ]], + [[ + 5879, + 5820, + 5822 + ]], + [[ + 5745, + 5553, + 5746 + ]], + [[ + 5896, + 5574, + 5553 + ]], + [[ + 5540, + 5601, + 5912 + ]], + [[ + 5915, + 5624, + 5601 + ]], + [[ + 5896, + 5895, + 5779 + ]], + [[ + 5553, + 5745, + 5895 + ]], + [[ + 4854, + 5559, + 5620 + ]], + [[ + 5607, + 5598, + 5559 + ]], + [[ + 5603, + 5597, + 5598 + ]], + [[ + 5437, + 4950, + 4877 + ]], + [[ + 5613, + 5563, + 5596 + ]], + [[ + 5597, + 4869, + 5563 + ]], + [[ + 5562, + 5437, + 5563 + ]], + [[ + 5562, + 4875, + 5437 + ]], + [[ + 5472, + 5478, + 5470 + ]], + [[ + 5472, + 5479, + 5478 + ]], + [[ + 5885, + 5900, + 5846 + ]], + [[ + 5885, + 5481, + 5900 + ]], + [[ + 5915, + 5602, + 5401 + ]], + [[ + 5915, + 5601, + 5602 + ]], + [[ + 5479, + 5878, + 5477 + ]], + [[ + 5470, + 5647, + 5654 + ]], + [[ + 5401, + 5539, + 5135 + ]], + [[ + 5401, + 5602, + 5539 + ]], + [[ + 5708, + 5829, + 5590 + ]], + [[ + 5554, + 5729, + 5829 + ]], + [[ + 5545, + 5541, + 5487 + ]], + [[ + 5545, + 5485, + 5541 + ]], + [[ + 5778, + 5470, + 5878 + ]], + [[ + 5778, + 5519, + 5470 + ]], + [[ + 4348, + 4343, + 5469 + ]], + [[ + 5467, + 4799, + 4348 + ]], + [[ + 5467, + 4348, + 5469 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b2c176ae8-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2015-01-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.407ee0b5c4684c8baa3e2a326ead6088", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 5916, + 5917, + 5918 + ]], + [[ + 5919, + 5920, + 5921 + ]], + [[ + 5922, + 5919, + 5921 + ]], + [[ + 5923, + 5922, + 5924 + ]], + [[ + 5925, + 5926, + 5927 + ]], + [[ + 5928, + 5927, + 5926 + ]], + [[ + 5929, + 5928, + 5926 + ]], + [[ + 5930, + 5931, + 5926 + ]], + [[ + 5932, + 5933, + 5934 + ]], + [[ + 5935, + 5933, + 5932 + ]], + [[ + 5936, + 5932, + 5937 + ]], + [[ + 5938, + 5939, + 5940 + ]], + [[ + 5941, + 5942, + 5927 + ]], + [[ + 5943, + 5944, + 5945 + ]], + [[ + 5946, + 5947, + 5948 + ]], + [[ + 5948, + 5943, + 5949 + ]], + [[ + 5949, + 5950, + 5951 + ]], + [[ + 5951, + 5950, + 5952 + ]], + [[ + 5949, + 5943, + 5950 + ]], + [[ + 5950, + 5943, + 5945 + ]], + [[ + 5947, + 5953, + 5943 + ]], + [[ + 5954, + 5955, + 5956 + ]], + [[ + 5948, + 5947, + 5943 + ]], + [[ + 5957, + 5958, + 5959 + ]], + [[ + 5960, + 5947, + 5946 + ]], + [[ + 5961, + 5962, + 5963 + ]], + [[ + 5964, + 5965, + 5966 + ]], + [[ + 5931, + 5929, + 5926 + ]], + [[ + 5967, + 5968, + 5969 + ]], + [[ + 5970, + 5971, + 5972 + ]], + [[ + 5973, + 5974, + 5975 + ]], + [[ + 5971, + 5970, + 5976 + ]], + [[ + 5977, + 5978, + 5979 + ]], + [[ + 5980, + 5981, + 5982 + ]], + [[ + 5983, + 5976, + 5984 + ]], + [[ + 5985, + 5986, + 5987 + ]], + [[ + 5963, + 5988, + 5989 + ]], + [[ + 5990, + 5955, + 5991 + ]], + [[ + 5992, + 5993, + 5956 + ]], + [[ + 5935, + 5994, + 5933 + ]], + [[ + 5995, + 5996, + 5997 + ]], + [[ + 5942, + 5996, + 5925 + ]], + [[ + 5927, + 5942, + 5925 + ]], + [[ + 5941, + 5924, + 5942 + ]], + [[ + 5941, + 5923, + 5924 + ]], + [[ + 5922, + 5921, + 5924 + ]], + [[ + 5920, + 5918, + 5917 + ]], + [[ + 5920, + 5917, + 5921 + ]], + [[ + 5916, + 5994, + 5935 + ]], + [[ + 5998, + 5999, + 5917 + ]], + [[ + 6000, + 6001, + 6002 + ]], + [[ + 6003, + 6004, + 6005 + ]], + [[ + 6006, + 5971, + 5976 + ]], + [[ + 5986, + 5974, + 5987 + ]], + [[ + 5983, + 6007, + 6006 + ]], + [[ + 5970, + 6008, + 6009 + ]], + [[ + 6010, + 6011, + 6012 + ]], + [[ + 6013, + 6014, + 6010 + ]], + [[ + 5987, + 5974, + 6004 + ]], + [[ + 5970, + 5972, + 6008 + ]], + [[ + 6015, + 6016, + 6017 + ]], + [[ + 6010, + 6014, + 6018 + ]], + [[ + 6019, + 6020, + 6021 + ]], + [[ + 6022, + 5926, + 5947 + ]], + [[ + 5972, + 6012, + 6008 + ]], + [[ + 5984, + 6023, + 6024 + ]], + [[ + 6010, + 5971, + 6013 + ]], + [[ + 6006, + 6007, + 6025 + ]], + [[ + 6026, + 6027, + 6028 + ]], + [[ + 6022, + 6029, + 6030 + ]], + [[ + 5983, + 5984, + 6031 + ]], + [[ + 6032, + 5981, + 6033 + ]], + [[ + 6034, + 5978, + 6035 + ]], + [[ + 6036, + 6037, + 6038 + ]], + [[ + 6039, + 6040, + 6034 + ]], + [[ + 6005, + 6004, + 5974 + ]], + [[ + 6036, + 6041, + 6042 + ]], + [[ + 6043, + 6044, + 6045 + ]], + [[ + 6046, + 6047, + 6048 + ]], + [[ + 6049, + 6050, + 6051 + ]], + [[ + 6012, + 6011, + 6052 + ]], + [[ + 6053, + 6054, + 6055 + ]], + [[ + 6056, + 6057, + 6058 + ]], + [[ + 6059, + 6030, + 6060 + ]], + [[ + 6052, + 6061, + 6012 + ]], + [[ + 6017, + 6016, + 6029 + ]], + [[ + 6062, + 6063, + 6064 + ]], + [[ + 6065, + 6066, + 6067 + ]], + [[ + 6068, + 6069, + 6070 + ]], + [[ + 6071, + 6072, + 6073 + ]], + [[ + 6074, + 6058, + 6070 + ]], + [[ + 6075, + 6021, + 6076 + ]], + [[ + 6068, + 6070, + 6057 + ]], + [[ + 6063, + 6077, + 6064 + ]], + [[ + 6062, + 6078, + 6063 + ]], + [[ + 6079, + 6080, + 6081 + ]], + [[ + 6069, + 6082, + 6083 + ]], + [[ + 6084, + 6085, + 6063 + ]], + [[ + 6086, + 6087, + 6082 + ]], + [[ + 6088, + 6063, + 6085 + ]], + [[ + 6089, + 6074, + 6090 + ]], + [[ + 6091, + 6063, + 6088 + ]], + [[ + 6092, + 6074, + 6093 + ]], + [[ + 6069, + 6068, + 6086 + ]], + [[ + 6077, + 6091, + 6094 + ]], + [[ + 6071, + 6073, + 6095 + ]], + [[ + 6040, + 6037, + 5979 + ]], + [[ + 5976, + 5970, + 6009 + ]], + [[ + 6096, + 6097, + 6040 + ]], + [[ + 6098, + 6099, + 6100 + ]], + [[ + 6088, + 6072, + 6101 + ]], + [[ + 6102, + 6094, + 6101 + ]], + [[ + 6103, + 6104, + 6060 + ]], + [[ + 6072, + 6088, + 6083 + ]], + [[ + 6105, + 6106, + 6107 + ]], + [[ + 6108, + 6109, + 5997 + ]], + [[ + 6000, + 6002, + 6110 + ]], + [[ + 6054, + 6111, + 6112 + ]], + [[ + 6113, + 5961, + 6114 + ]], + [[ + 6015, + 6115, + 6116 + ]], + [[ + 6117, + 6118, + 6119 + ]], + [[ + 6093, + 6069, + 6083 + ]], + [[ + 6103, + 6120, + 6121 + ]], + [[ + 6121, + 6083, + 6087 + ]], + [[ + 6069, + 6086, + 6082 + ]], + [[ + 6122, + 6030, + 6086 + ]], + [[ + 6082, + 6087, + 6083 + ]], + [[ + 6048, + 6059, + 6060 + ]], + [[ + 6083, + 6121, + 6073 + ]], + [[ + 6047, + 6086, + 6030 + ]], + [[ + 6123, + 6124, + 6125 + ]], + [[ + 6126, + 6127, + 6128 + ]], + [[ + 6035, + 6126, + 6129 + ]], + [[ + 6124, + 6130, + 5981 + ]], + [[ + 6013, + 6025, + 6014 + ]], + [[ + 6131, + 5975, + 6029 + ]], + [[ + 6041, + 6132, + 6133 + ]], + [[ + 6099, + 6024, + 6134 + ]], + [[ + 6119, + 6089, + 6085 + ]], + [[ + 6070, + 6069, + 6093 + ]], + [[ + 5987, + 6017, + 6022 + ]], + [[ + 6081, + 6110, + 6051 + ]], + [[ + 6083, + 6073, + 6072 + ]], + [[ + 6067, + 6135, + 6136 + ]], + [[ + 6137, + 6039, + 6034 + ]], + [[ + 6037, + 5977, + 5979 + ]], + [[ + 6138, + 6018, + 6014 + ]], + [[ + 6139, + 6140, + 6141 + ]], + [[ + 6142, + 6143, + 6144 + ]], + [[ + 5958, + 5998, + 5959 + ]], + [[ + 6144, + 6145, + 6142 + ]], + [[ + 6146, + 6106, + 6105 + ]], + [[ + 6106, + 6147, + 6143 + ]], + [[ + 6148, + 6109, + 6149 + ]], + [[ + 6108, + 6150, + 6149 + ]], + [[ + 6151, + 6147, + 6146 + ]], + [[ + 6152, + 6058, + 6089 + ]], + [[ + 6080, + 6079, + 6111 + ]], + [[ + 6051, + 6153, + 6154 + ]], + [[ + 6155, + 6002, + 6054 + ]], + [[ + 6051, + 6154, + 6049 + ]], + [[ + 6156, + 6155, + 6157 + ]], + [[ + 6081, + 6080, + 6001 + ]], + [[ + 6158, + 6119, + 6085 + ]], + [[ + 6159, + 6118, + 6160 + ]], + [[ + 6074, + 6070, + 6093 + ]], + [[ + 6158, + 6117, + 6119 + ]], + [[ + 6058, + 6057, + 6070 + ]], + [[ + 6092, + 6090, + 6074 + ]], + [[ + 6119, + 6152, + 6089 + ]], + [[ + 6118, + 6056, + 6152 + ]], + [[ + 6118, + 6159, + 6056 + ]], + [[ + 6161, + 6162, + 6163 + ]], + [[ + 5980, + 6124, + 5981 + ]], + [[ + 6163, + 6125, + 6164 + ]], + [[ + 6164, + 5982, + 6032 + ]], + [[ + 6165, + 6166, + 6031 + ]], + [[ + 6038, + 6041, + 6036 + ]], + [[ + 6035, + 5978, + 6126 + ]], + [[ + 5978, + 5977, + 6126 + ]], + [[ + 6098, + 6167, + 6096 + ]], + [[ + 6007, + 6161, + 6025 + ]], + [[ + 6144, + 6168, + 6145 + ]], + [[ + 6107, + 6106, + 6143 + ]], + [[ + 6169, + 6170, + 6171 + ]], + [[ + 6172, + 6173, + 6174 + ]], + [[ + 6142, + 6171, + 6105 + ]], + [[ + 6175, + 6176, + 5925 + ]], + [[ + 6177, + 6178, + 6021 + ]], + [[ + 6076, + 6021, + 6020 + ]], + [[ + 6110, + 6002, + 6155 + ]], + [[ + 6179, + 6180, + 6178 + ]], + [[ + 6181, + 6182, + 6183 + ]], + [[ + 6184, + 6163, + 6164 + ]], + [[ + 6185, + 6182, + 6181 + ]], + [[ + 6186, + 6187, + 6188 + ]], + [[ + 6182, + 6185, + 6189 + ]], + [[ + 6141, + 6190, + 6191 + ]], + [[ + 6192, + 6189, + 5968 + ]], + [[ + 6188, + 6190, + 5975 + ]], + [[ + 6193, + 6194, + 6195 + ]], + [[ + 6196, + 6197, + 6198 + ]], + [[ + 6199, + 6182, + 6192 + ]], + [[ + 6181, + 6200, + 6139 + ]], + [[ + 6140, + 6190, + 6141 + ]], + [[ + 6032, + 5982, + 5981 + ]], + [[ + 6201, + 6183, + 6202 + ]], + [[ + 5968, + 6193, + 5969 + ]], + [[ + 6112, + 6203, + 6055 + ]], + [[ + 6078, + 6204, + 6158 + ]], + [[ + 6010, + 6018, + 6011 + ]], + [[ + 6014, + 6025, + 6138 + ]], + [[ + 5977, + 6127, + 6126 + ]], + [[ + 6041, + 6133, + 6205 + ]], + [[ + 6124, + 6035, + 6130 + ]], + [[ + 6206, + 6044, + 6042 + ]], + [[ + 6130, + 6035, + 6129 + ]], + [[ + 6124, + 6123, + 6034 + ]], + [[ + 5981, + 6130, + 6033 + ]], + [[ + 6128, + 6127, + 6207 + ]], + [[ + 6208, + 6129, + 6128 + ]], + [[ + 6209, + 6208, + 6128 + ]], + [[ + 6206, + 6042, + 6205 + ]], + [[ + 6133, + 6003, + 6205 + ]], + [[ + 6127, + 6036, + 6043 + ]], + [[ + 6210, + 6005, + 5974 + ]], + [[ + 6127, + 6043, + 6207 + ]], + [[ + 6211, + 5974, + 5973 + ]], + [[ + 6212, + 6045, + 6206 + ]], + [[ + 6042, + 6041, + 6205 + ]], + [[ + 6043, + 6042, + 6044 + ]], + [[ + 6127, + 5977, + 6036 + ]], + [[ + 6094, + 6076, + 6213 + ]], + [[ + 6214, + 6215, + 6203 + ]], + [[ + 6216, + 6217, + 6020 + ]], + [[ + 6213, + 6064, + 6094 + ]], + [[ + 6121, + 6218, + 6103 + ]], + [[ + 6121, + 6087, + 6218 + ]], + [[ + 5936, + 5959, + 5932 + ]], + [[ + 6219, + 5964, + 5966 + ]], + [[ + 6151, + 6220, + 6173 + ]], + [[ + 5937, + 6176, + 6173 + ]], + [[ + 6150, + 6174, + 6148 + ]], + [[ + 6221, + 6222, + 6223 + ]], + [[ + 6150, + 6147, + 6174 + ]], + [[ + 6147, + 6106, + 6146 + ]], + [[ + 6034, + 6123, + 6137 + ]], + [[ + 6034, + 6035, + 6124 + ]], + [[ + 6224, + 6007, + 5983 + ]], + [[ + 6006, + 5976, + 5983 + ]], + [[ + 6137, + 6161, + 6039 + ]], + [[ + 6163, + 6184, + 6025 + ]], + [[ + 6166, + 5983, + 6031 + ]], + [[ + 6166, + 6098, + 6096 + ]], + [[ + 6225, + 6226, + 6227 + ]], + [[ + 6227, + 5931, + 5930 + ]], + [[ + 6157, + 6065, + 6228 + ]], + [[ + 6177, + 6179, + 6178 + ]], + [[ + 6190, + 6164, + 6229 + ]], + [[ + 6230, + 6043, + 6045 + ]], + [[ + 6231, + 6208, + 5973 + ]], + [[ + 6208, + 6130, + 6129 + ]], + [[ + 6232, + 6027, + 6026 + ]], + [[ + 5967, + 6199, + 6192 + ]], + [[ + 5984, + 6024, + 6031 + ]], + [[ + 5984, + 5976, + 6023 + ]], + [[ + 6061, + 6052, + 6115 + ]], + [[ + 6061, + 6008, + 6012 + ]], + [[ + 6026, + 6115, + 6052 + ]], + [[ + 6195, + 6194, + 6197 + ]], + [[ + 6233, + 6208, + 6209 + ]], + [[ + 6129, + 6126, + 6128 + ]], + [[ + 6234, + 6235, + 6168 + ]], + [[ + 6169, + 6171, + 6145 + ]], + [[ + 6044, + 6206, + 6045 + ]], + [[ + 6206, + 6205, + 6236 + ]], + [[ + 6206, + 6236, + 6212 + ]], + [[ + 6205, + 6003, + 6005 + ]], + [[ + 6210, + 6045, + 6212 + ]], + [[ + 6237, + 5974, + 6211 + ]], + [[ + 6209, + 6207, + 5973 + ]], + [[ + 6209, + 6128, + 6207 + ]], + [[ + 6237, + 6210, + 5974 + ]], + [[ + 6236, + 6205, + 6005 + ]], + [[ + 6184, + 6138, + 6025 + ]], + [[ + 6184, + 6200, + 6138 + ]], + [[ + 6081, + 6001, + 6110 + ]], + [[ + 6001, + 6111, + 6002 + ]], + [[ + 6202, + 6183, + 6182 + ]], + [[ + 6200, + 6184, + 6139 + ]], + [[ + 6185, + 6181, + 6141 + ]], + [[ + 6238, + 6018, + 6200 + ]], + [[ + 6027, + 6232, + 6239 + ]], + [[ + 6011, + 6018, + 6201 + ]], + [[ + 6183, + 6238, + 6181 + ]], + [[ + 6018, + 6138, + 6200 + ]], + [[ + 6181, + 6238, + 6200 + ]], + [[ + 6183, + 6201, + 6238 + ]], + [[ + 5936, + 5964, + 6240 + ]], + [[ + 5938, + 6241, + 6108 + ]], + [[ + 6242, + 5965, + 5964 + ]], + [[ + 6143, + 6150, + 6108 + ]], + [[ + 5938, + 6108, + 5939 + ]], + [[ + 6149, + 6109, + 6108 + ]], + [[ + 6107, + 6142, + 6105 + ]], + [[ + 6243, + 6244, + 6245 + ]], + [[ + 6246, + 6244, + 6243 + ]], + [[ + 6247, + 6245, + 6171 + ]], + [[ + 6150, + 6148, + 6149 + ]], + [[ + 6174, + 6248, + 6221 + ]], + [[ + 5939, + 6108, + 5997 + ]], + [[ + 6109, + 6221, + 6223 + ]], + [[ + 5939, + 5997, + 5996 + ]], + [[ + 6223, + 6176, + 6175 + ]], + [[ + 6197, + 6194, + 6249 + ]], + [[ + 5968, + 6189, + 6187 + ]], + [[ + 6185, + 6191, + 6189 + ]], + [[ + 6188, + 5975, + 6250 + ]], + [[ + 5968, + 6187, + 6193 + ]], + [[ + 6191, + 6190, + 6188 + ]], + [[ + 6251, + 6250, + 5975 + ]], + [[ + 6186, + 6193, + 6187 + ]], + [[ + 6252, + 6197, + 6249 + ]], + [[ + 6194, + 6193, + 6186 + ]], + [[ + 6198, + 6253, + 6196 + ]], + [[ + 6028, + 6115, + 6026 + ]], + [[ + 6254, + 6015, + 6116 + ]], + [[ + 6254, + 5969, + 6255 + ]], + [[ + 6207, + 6256, + 6257 + ]], + [[ + 6207, + 6043, + 6256 + ]], + [[ + 6210, + 6230, + 6045 + ]], + [[ + 6256, + 6043, + 6230 + ]], + [[ + 6207, + 6257, + 5973 + ]], + [[ + 6256, + 6230, + 6257 + ]], + [[ + 6120, + 6095, + 6073 + ]], + [[ + 6021, + 6258, + 6259 + ]], + [[ + 6019, + 6021, + 6178 + ]], + [[ + 6075, + 6102, + 6260 + ]], + [[ + 6261, + 6021, + 6259 + ]], + [[ + 6020, + 6062, + 6213 + ]], + [[ + 6072, + 6102, + 6101 + ]], + [[ + 6102, + 6071, + 6260 + ]], + [[ + 6102, + 6076, + 6094 + ]], + [[ + 6075, + 6258, + 6021 + ]], + [[ + 6020, + 6213, + 6076 + ]], + [[ + 6062, + 6064, + 6213 + ]], + [[ + 6102, + 6075, + 6076 + ]], + [[ + 6102, + 6072, + 6071 + ]], + [[ + 6104, + 6046, + 6048 + ]], + [[ + 6030, + 6029, + 6060 + ]], + [[ + 6103, + 6218, + 6046 + ]], + [[ + 6087, + 6086, + 6218 + ]], + [[ + 6056, + 6159, + 6081 + ]], + [[ + 6110, + 6153, + 6051 + ]], + [[ + 6262, + 6263, + 6049 + ]], + [[ + 6225, + 6227, + 6050 + ]], + [[ + 6156, + 6157, + 6228 + ]], + [[ + 6065, + 6226, + 6228 + ]], + [[ + 6189, + 6191, + 6187 + ]], + [[ + 6185, + 6141, + 6191 + ]], + [[ + 5993, + 5954, + 5956 + ]], + [[ + 6264, + 6265, + 6266 + ]], + [[ + 6262, + 6156, + 6228 + ]], + [[ + 6267, + 6268, + 6157 + ]], + [[ + 6153, + 6156, + 6154 + ]], + [[ + 6155, + 6267, + 6157 + ]], + [[ + 5930, + 6050, + 6227 + ]], + [[ + 6263, + 6225, + 6050 + ]], + [[ + 6043, + 6036, + 6042 + ]], + [[ + 5977, + 6037, + 6036 + ]], + [[ + 6229, + 5973, + 5975 + ]], + [[ + 6233, + 6209, + 5973 + ]], + [[ + 6033, + 6231, + 6229 + ]], + [[ + 6033, + 6130, + 6231 + ]], + [[ + 5973, + 6208, + 6233 + ]], + [[ + 6231, + 6130, + 6208 + ]], + [[ + 6257, + 6269, + 6211 + ]], + [[ + 6257, + 6230, + 6269 + ]], + [[ + 6232, + 6202, + 6239 + ]], + [[ + 6182, + 6189, + 6192 + ]], + [[ + 6199, + 6202, + 6182 + ]], + [[ + 6232, + 6201, + 6202 + ]], + [[ + 5968, + 5967, + 6192 + ]], + [[ + 6239, + 6202, + 6199 + ]], + [[ + 6125, + 5980, + 5982 + ]], + [[ + 6125, + 6124, + 5980 + ]], + [[ + 6061, + 6015, + 6017 + ]], + [[ + 6061, + 6115, + 6015 + ]], + [[ + 6122, + 6086, + 6068 + ]], + [[ + 6068, + 6057, + 6056 + ]], + [[ + 6203, + 6112, + 6078 + ]], + [[ + 6062, + 6020, + 6214 + ]], + [[ + 6083, + 6092, + 6093 + ]], + [[ + 6089, + 6058, + 6074 + ]], + [[ + 6088, + 6092, + 6083 + ]], + [[ + 6090, + 6085, + 6089 + ]], + [[ + 6022, + 6081, + 6051 + ]], + [[ + 6159, + 6160, + 6081 + ]], + [[ + 5966, + 5940, + 5957 + ]], + [[ + 5939, + 5958, + 5957 + ]], + [[ + 6219, + 5966, + 5959 + ]], + [[ + 5965, + 6242, + 5938 + ]], + [[ + 6047, + 6030, + 6059 + ]], + [[ + 6122, + 6022, + 6030 + ]], + [[ + 6270, + 6137, + 6123 + ]], + [[ + 6270, + 6162, + 6137 + ]], + [[ + 6168, + 6235, + 6271 + ]], + [[ + 6272, + 6246, + 6169 + ]], + [[ + 5936, + 6234, + 5964 + ]], + [[ + 6273, + 6274, + 6275 + ]], + [[ + 6234, + 6168, + 5964 + ]], + [[ + 6144, + 6108, + 6241 + ]], + [[ + 6242, + 6241, + 5938 + ]], + [[ + 6242, + 6168, + 6144 + ]], + [[ + 5966, + 5938, + 5940 + ]], + [[ + 5966, + 5965, + 5938 + ]], + [[ + 6249, + 6186, + 6250 + ]], + [[ + 6249, + 6194, + 6186 + ]], + [[ + 6088, + 6090, + 6092 + ]], + [[ + 6088, + 6085, + 6090 + ]], + [[ + 6041, + 6038, + 6132 + ]], + [[ + 6166, + 6165, + 6098 + ]], + [[ + 6097, + 6167, + 6132 + ]], + [[ + 6132, + 6003, + 6133 + ]], + [[ + 6103, + 6071, + 6095 + ]], + [[ + 6258, + 6136, + 6259 + ]], + [[ + 6140, + 6164, + 6190 + ]], + [[ + 6140, + 6139, + 6164 + ]], + [[ + 5955, + 6276, + 6277 + ]], + [[ + 5962, + 5961, + 6278 + ]], + [[ + 6279, + 6280, + 6281 + ]], + [[ + 6100, + 6004, + 6003 + ]], + [[ + 5956, + 5963, + 6282 + ]], + [[ + 5956, + 5955, + 5990 + ]], + [[ + 6109, + 6223, + 5997 + ]], + [[ + 5925, + 5996, + 5995 + ]], + [[ + 5995, + 6223, + 6283 + ]], + [[ + 6221, + 6148, + 6174 + ]], + [[ + 6279, + 6277, + 6280 + ]], + [[ + 6266, + 5985, + 5987 + ]], + [[ + 6284, + 6276, + 5993 + ]], + [[ + 6276, + 6280, + 6277 + ]], + [[ + 5962, + 6266, + 5947 + ]], + [[ + 6099, + 6098, + 6024 + ]], + [[ + 6061, + 6009, + 6008 + ]], + [[ + 6023, + 5976, + 6009 + ]], + [[ + 6278, + 6285, + 5962 + ]], + [[ + 6266, + 6265, + 5985 + ]], + [[ + 6278, + 5961, + 6113 + ]], + [[ + 6281, + 6280, + 6286 + ]], + [[ + 5972, + 6010, + 6012 + ]], + [[ + 5972, + 5971, + 6010 + ]], + [[ + 6100, + 5987, + 6004 + ]], + [[ + 6266, + 6287, + 6264 + ]], + [[ + 6214, + 6203, + 6078 + ]], + [[ + 6079, + 6081, + 6160 + ]], + [[ + 6063, + 6078, + 6084 + ]], + [[ + 6160, + 6118, + 6117 + ]], + [[ + 6155, + 6053, + 6180 + ]], + [[ + 6215, + 6214, + 6217 + ]], + [[ + 6053, + 6216, + 6019 + ]], + [[ + 6217, + 6214, + 6020 + ]], + [[ + 6174, + 6147, + 6172 + ]], + [[ + 6150, + 6143, + 6147 + ]], + [[ + 6260, + 6258, + 6075 + ]], + [[ + 6060, + 6136, + 6258 + ]], + [[ + 6103, + 6260, + 6071 + ]], + [[ + 6060, + 6258, + 6260 + ]], + [[ + 6100, + 6099, + 6134 + ]], + [[ + 6100, + 6003, + 6098 + ]], + [[ + 6262, + 6225, + 6263 + ]], + [[ + 6228, + 6226, + 6225 + ]], + [[ + 6121, + 6120, + 6073 + ]], + [[ + 6046, + 6104, + 6103 + ]], + [[ + 6288, + 6253, + 6198 + ]], + [[ + 6289, + 6015, + 6196 + ]], + [[ + 6250, + 6252, + 6249 + ]], + [[ + 6253, + 6290, + 6291 + ]], + [[ + 6251, + 6292, + 6252 + ]], + [[ + 6198, + 6197, + 6292 + ]], + [[ + 6288, + 6198, + 6251 + ]], + [[ + 6292, + 6197, + 6252 + ]], + [[ + 6254, + 6027, + 5967 + ]], + [[ + 6027, + 6239, + 5967 + ]], + [[ + 6193, + 6195, + 5969 + ]], + [[ + 6293, + 6015, + 6254 + ]], + [[ + 6015, + 6293, + 6196 + ]], + [[ + 6255, + 5969, + 6293 + ]], + [[ + 5966, + 5957, + 5959 + ]], + [[ + 6294, + 5939, + 5957 + ]], + [[ + 6230, + 6237, + 6269 + ]], + [[ + 6212, + 6236, + 6210 + ]], + [[ + 5960, + 6282, + 5962 + ]], + [[ + 5962, + 6282, + 5963 + ]], + [[ + 6283, + 6175, + 5925 + ]], + [[ + 6283, + 6223, + 6175 + ]], + [[ + 6055, + 6203, + 6215 + ]], + [[ + 6112, + 6295, + 6204 + ]], + [[ + 6170, + 6246, + 6243 + ]], + [[ + 6151, + 6173, + 6172 + ]], + [[ + 6218, + 6047, + 6046 + ]], + [[ + 6218, + 6086, + 6047 + ]], + [[ + 6271, + 6169, + 6145 + ]], + [[ + 6271, + 6235, + 6273 + ]], + [[ + 6271, + 6273, + 6169 + ]], + [[ + 6275, + 6244, + 6246 + ]], + [[ + 6273, + 6275, + 6272 + ]], + [[ + 6275, + 6246, + 6272 + ]], + [[ + 5983, + 6096, + 6040 + ]], + [[ + 5983, + 6166, + 6096 + ]], + [[ + 6079, + 6112, + 6111 + ]], + [[ + 6079, + 6295, + 6112 + ]], + [[ + 6278, + 6113, + 6285 + ]], + [[ + 5989, + 5988, + 6281 + ]], + [[ + 6289, + 6196, + 6291 + ]], + [[ + 6293, + 6197, + 6196 + ]], + [[ + 6011, + 6201, + 6232 + ]], + [[ + 6018, + 6238, + 6201 + ]], + [[ + 6061, + 6100, + 6134 + ]], + [[ + 6017, + 5987, + 6100 + ]], + [[ + 6264, + 6287, + 6280 + ]], + [[ + 6285, + 6113, + 6286 + ]], + [[ + 6114, + 5989, + 6281 + ]], + [[ + 6279, + 5988, + 5990 + ]], + [[ + 6155, + 6180, + 6267 + ]], + [[ + 6053, + 6178, + 6180 + ]], + [[ + 6143, + 6142, + 6107 + ]], + [[ + 6145, + 6171, + 6142 + ]], + [[ + 6190, + 6229, + 5975 + ]], + [[ + 6231, + 5973, + 6229 + ]], + [[ + 6011, + 6026, + 6052 + ]], + [[ + 6011, + 6232, + 6026 + ]], + [[ + 6027, + 6254, + 6116 + ]], + [[ + 6255, + 6293, + 6254 + ]], + [[ + 6100, + 6061, + 6017 + ]], + [[ + 6023, + 6009, + 6061 + ]], + [[ + 6097, + 6038, + 6037 + ]], + [[ + 6167, + 6098, + 6132 + ]], + [[ + 6097, + 6132, + 6038 + ]], + [[ + 6098, + 6003, + 6132 + ]], + [[ + 6173, + 6248, + 6174 + ]], + [[ + 6222, + 6176, + 6223 + ]], + [[ + 6222, + 6221, + 6248 + ]], + [[ + 6109, + 6148, + 6221 + ]], + [[ + 6137, + 6162, + 6161 + ]], + [[ + 6270, + 6125, + 6163 + ]], + [[ + 6016, + 6290, + 6029 + ]], + [[ + 6289, + 6291, + 6290 + ]], + [[ + 6110, + 6001, + 6000 + ]], + [[ + 6080, + 6111, + 6001 + ]], + [[ + 6053, + 6019, + 6178 + ]], + [[ + 6216, + 6020, + 6019 + ]], + [[ + 6116, + 6028, + 6027 + ]], + [[ + 6116, + 6115, + 6028 + ]], + [[ + 6153, + 6155, + 6156 + ]], + [[ + 6153, + 6110, + 6155 + ]], + [[ + 6181, + 6139, + 6141 + ]], + [[ + 6184, + 6164, + 6139 + ]], + [[ + 6136, + 6135, + 6259 + ]], + [[ + 6136, + 6226, + 6067 + ]], + [[ + 6254, + 5967, + 5969 + ]], + [[ + 6239, + 6199, + 5967 + ]], + [[ + 6040, + 6097, + 6037 + ]], + [[ + 6096, + 6167, + 6097 + ]], + [[ + 6016, + 6289, + 6290 + ]], + [[ + 6016, + 6015, + 6289 + ]], + [[ + 6293, + 6195, + 6197 + ]], + [[ + 6293, + 5969, + 6195 + ]], + [[ + 6290, + 6288, + 6131 + ]], + [[ + 6198, + 6292, + 6251 + ]], + [[ + 6235, + 6296, + 6273 + ]], + [[ + 6274, + 6244, + 6275 + ]], + [[ + 6157, + 6268, + 6065 + ]], + [[ + 6267, + 6180, + 6179 + ]], + [[ + 6161, + 6163, + 6025 + ]], + [[ + 6162, + 6270, + 6163 + ]], + [[ + 6257, + 6211, + 5973 + ]], + [[ + 6269, + 6237, + 6211 + ]], + [[ + 6286, + 6114, + 6281 + ]], + [[ + 5961, + 5963, + 5989 + ]], + [[ + 5947, + 6266, + 5987 + ]], + [[ + 6287, + 6286, + 6280 + ]], + [[ + 5937, + 6245, + 6244 + ]], + [[ + 5937, + 6173, + 6245 + ]], + [[ + 6196, + 6253, + 6291 + ]], + [[ + 6288, + 6290, + 6253 + ]], + [[ + 6290, + 6131, + 6029 + ]], + [[ + 6251, + 5975, + 6131 + ]], + [[ + 6229, + 6032, + 6033 + ]], + [[ + 6229, + 6164, + 6032 + ]], + [[ + 5940, + 6294, + 5957 + ]], + [[ + 5940, + 5939, + 6294 + ]], + [[ + 6134, + 6023, + 6061 + ]], + [[ + 6134, + 6024, + 6023 + ]], + [[ + 6135, + 6261, + 6259 + ]], + [[ + 6177, + 6021, + 6261 + ]], + [[ + 6135, + 6179, + 6261 + ]], + [[ + 6261, + 6179, + 6177 + ]], + [[ + 6223, + 5995, + 5997 + ]], + [[ + 6283, + 5925, + 5995 + ]], + [[ + 6007, + 6224, + 6161 + ]], + [[ + 6224, + 6040, + 6039 + ]], + [[ + 6040, + 6224, + 5983 + ]], + [[ + 6039, + 6161, + 6224 + ]], + [[ + 6171, + 6170, + 6247 + ]], + [[ + 6169, + 6246, + 6170 + ]], + [[ + 6053, + 6217, + 6216 + ]], + [[ + 6053, + 6215, + 6217 + ]], + [[ + 6156, + 6262, + 6049 + ]], + [[ + 6228, + 6225, + 6262 + ]], + [[ + 6024, + 6165, + 6031 + ]], + [[ + 6024, + 6098, + 6165 + ]], + [[ + 6120, + 6103, + 6095 + ]], + [[ + 6060, + 6260, + 6103 + ]], + [[ + 6155, + 6054, + 6053 + ]], + [[ + 6002, + 6111, + 6054 + ]], + [[ + 6234, + 6296, + 6235 + ]], + [[ + 5937, + 6244, + 6274 + ]], + [[ + 5964, + 6168, + 6242 + ]], + [[ + 6271, + 6145, + 6168 + ]], + [[ + 6108, + 6144, + 6143 + ]], + [[ + 6241, + 6242, + 6144 + ]], + [[ + 6173, + 6222, + 6248 + ]], + [[ + 6173, + 6176, + 6222 + ]], + [[ + 5936, + 6296, + 6234 + ]], + [[ + 5937, + 6274, + 6273 + ]], + [[ + 6169, + 6273, + 6272 + ]], + [[ + 6296, + 5937, + 6273 + ]], + [[ + 6171, + 6220, + 6105 + ]], + [[ + 6171, + 6245, + 6220 + ]], + [[ + 6105, + 6220, + 6146 + ]], + [[ + 6245, + 6173, + 6220 + ]], + [[ + 6147, + 6151, + 6172 + ]], + [[ + 6146, + 6220, + 6151 + ]], + [[ + 6247, + 6243, + 6245 + ]], + [[ + 6247, + 6170, + 6243 + ]], + [[ + 6091, + 6077, + 6063 + ]], + [[ + 6094, + 6064, + 6077 + ]], + [[ + 6101, + 6091, + 6088 + ]], + [[ + 6101, + 6094, + 6091 + ]], + [[ + 6288, + 6251, + 6131 + ]], + [[ + 6252, + 6250, + 6251 + ]], + [[ + 5960, + 5962, + 5947 + ]], + [[ + 6285, + 6266, + 5962 + ]], + [[ + 6118, + 6152, + 6119 + ]], + [[ + 6056, + 6058, + 6152 + ]], + [[ + 6214, + 6078, + 6062 + ]], + [[ + 6204, + 6117, + 6158 + ]], + [[ + 6112, + 6204, + 6078 + ]], + [[ + 6295, + 6160, + 6204 + ]], + [[ + 6296, + 5936, + 5937 + ]], + [[ + 6240, + 5959, + 5936 + ]], + [[ + 6268, + 6066, + 6065 + ]], + [[ + 6268, + 6267, + 6179 + ]], + [[ + 6067, + 6179, + 6135 + ]], + [[ + 6066, + 6268, + 6179 + ]], + [[ + 6006, + 6013, + 5971 + ]], + [[ + 6006, + 6025, + 6013 + ]], + [[ + 6230, + 6210, + 6237 + ]], + [[ + 6236, + 6005, + 6210 + ]], + [[ + 5988, + 5963, + 5990 + ]], + [[ + 5955, + 5954, + 6276 + ]], + [[ + 5955, + 6277, + 5991 + ]], + [[ + 5954, + 5993, + 6276 + ]], + [[ + 6136, + 6227, + 6226 + ]], + [[ + 6136, + 5931, + 6227 + ]], + [[ + 6084, + 6158, + 6085 + ]], + [[ + 6084, + 6078, + 6158 + ]], + [[ + 6053, + 6055, + 6215 + ]], + [[ + 6054, + 6112, + 6055 + ]], + [[ + 6297, + 6298, + 5935 + ]], + [[ + 6299, + 5917, + 5916 + ]], + [[ + 6285, + 6287, + 6266 + ]], + [[ + 6285, + 6286, + 6287 + ]], + [[ + 5994, + 5916, + 5918 + ]], + [[ + 6298, + 6299, + 5916 + ]], + [[ + 6240, + 6219, + 5959 + ]], + [[ + 6240, + 5964, + 6219 + ]], + [[ + 5988, + 6279, + 6281 + ]], + [[ + 5991, + 6277, + 6279 + ]], + [[ + 6164, + 6125, + 5982 + ]], + [[ + 6270, + 6123, + 6125 + ]], + [[ + 6300, + 6299, + 6298 + ]], + [[ + 5998, + 5917, + 6299 + ]], + [[ + 6065, + 6067, + 6226 + ]], + [[ + 6066, + 6179, + 6067 + ]], + [[ + 6186, + 6188, + 6250 + ]], + [[ + 6187, + 6191, + 6188 + ]], + [[ + 6297, + 5935, + 5932 + ]], + [[ + 6298, + 5916, + 5935 + ]], + [[ + 6113, + 6114, + 6286 + ]], + [[ + 5961, + 5989, + 6114 + ]], + [[ + 5998, + 6297, + 5932 + ]], + [[ + 6300, + 6298, + 6297 + ]], + [[ + 6204, + 6160, + 6117 + ]], + [[ + 6295, + 6079, + 6160 + ]], + [[ + 6104, + 6048, + 6060 + ]], + [[ + 6047, + 6059, + 6048 + ]], + [[ + 5992, + 6284, + 5993 + ]], + [[ + 6284, + 6280, + 6276 + ]], + [[ + 6156, + 6049, + 6154 + ]], + [[ + 6263, + 6050, + 6049 + ]], + [[ + 6264, + 6284, + 5992 + ]], + [[ + 6264, + 6280, + 6284 + ]], + [[ + 6279, + 5990, + 5991 + ]], + [[ + 5963, + 5956, + 5990 + ]], + [[ + 5959, + 5998, + 5932 + ]], + [[ + 5958, + 5999, + 5998 + ]], + [[ + 5998, + 6300, + 6297 + ]], + [[ + 5998, + 6299, + 6300 + ]], + [[ + 5979, + 6034, + 6040 + ]], + [[ + 5979, + 5978, + 6034 + ]], + [[ + 6022, + 6051, + 5926 + ]], + [[ + 6022, + 6056, + 6081 + ]], + [[ + 6051, + 5930, + 5926 + ]], + [[ + 6051, + 6050, + 5930 + ]], + [[ + 5987, + 6022, + 5947 + ]], + [[ + 6017, + 6029, + 6022 + ]], + [[ + 6022, + 6068, + 6056 + ]], + [[ + 6022, + 6122, + 6068 + ]], + [[ + 6301, + 5931, + 6136 + ]], + [[ + 6060, + 6301, + 6136 + ]], + [[ + 6302, + 6029, + 5975 + ]], + [[ + 5974, + 6302, + 5975 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b2c179213-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efebf449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 6303, + 6304, + 6305 + ]], + [[ + 6306, + 6307, + 6308 + ]], + [[ + 6309, + 6310, + 6311 + ]], + [[ + 6312, + 6313, + 6314 + ]], + [[ + 6315, + 6316, + 6317 + ]], + [[ + 6318, + 6315, + 6319 + ]], + [[ + 5926, + 6315, + 6317 + ]], + [[ + 6320, + 6321, + 6322 + ]], + [[ + 6307, + 6323, + 6324 + ]], + [[ + 6325, + 6315, + 6318 + ]], + [[ + 6308, + 6326, + 6327 + ]], + [[ + 6328, + 6329, + 6330 + ]], + [[ + 6331, + 6332, + 6323 + ]], + [[ + 6308, + 6327, + 6306 + ]], + [[ + 6333, + 6334, + 6335 + ]], + [[ + 6336, + 6337, + 6338 + ]], + [[ + 6339, + 6340, + 6326 + ]], + [[ + 6341, + 6342, + 6343 + ]], + [[ + 5926, + 6317, + 6344 + ]], + [[ + 6345, + 6346, + 6317 + ]], + [[ + 6347, + 6325, + 6318 + ]], + [[ + 6348, + 6349, + 6350 + ]], + [[ + 6325, + 6340, + 6315 + ]], + [[ + 6316, + 6315, + 6340 + ]], + [[ + 6351, + 6352, + 6345 + ]], + [[ + 6334, + 6353, + 6335 + ]], + [[ + 6354, + 6308, + 6324 + ]], + [[ + 6306, + 6326, + 6355 + ]], + [[ + 6333, + 6347, + 6318 + ]], + [[ + 6326, + 6340, + 6325 + ]], + [[ + 6356, + 6357, + 6329 + ]], + [[ + 6358, + 5953, + 6359 + ]], + [[ + 6360, + 6361, + 6321 + ]], + [[ + 6362, + 6363, + 6364 + ]], + [[ + 6334, + 6360, + 6365 + ]], + [[ + 6366, + 6367, + 6314 + ]], + [[ + 6328, + 6330, + 6368 + ]], + [[ + 6316, + 6339, + 6308 + ]], + [[ + 6324, + 6308, + 6307 + ]], + [[ + 6354, + 6316, + 6308 + ]], + [[ + 6365, + 6353, + 6334 + ]], + [[ + 6369, + 6370, + 6371 + ]], + [[ + 6372, + 6373, + 6362 + ]], + [[ + 6321, + 6365, + 6360 + ]], + [[ + 6353, + 6365, + 6321 + ]], + [[ + 6319, + 6315, + 6374 + ]], + [[ + 6353, + 6320, + 6373 + ]], + [[ + 6312, + 5926, + 6304 + ]], + [[ + 6375, + 6310, + 6376 + ]], + [[ + 6377, + 6378, + 6359 + ]], + [[ + 6311, + 6379, + 6309 + ]], + [[ + 6380, + 6381, + 6382 + ]], + [[ + 6335, + 6355, + 6333 + ]], + [[ + 6383, + 6307, + 6306 + ]], + [[ + 6326, + 6347, + 6355 + ]], + [[ + 6318, + 6360, + 6333 + ]], + [[ + 6384, + 6385, + 6386 + ]], + [[ + 6387, + 6388, + 6389 + ]], + [[ + 6390, + 6391, + 6392 + ]], + [[ + 6311, + 6375, + 6393 + ]], + [[ + 6351, + 6345, + 6330 + ]], + [[ + 6353, + 6373, + 6335 + ]], + [[ + 6369, + 6394, + 6395 + ]], + [[ + 6396, + 6397, + 6358 + ]], + [[ + 6333, + 6360, + 6334 + ]], + [[ + 6318, + 6319, + 6360 + ]], + [[ + 6398, + 6399, + 6400 + ]], + [[ + 6401, + 6402, + 6399 + ]], + [[ + 6320, + 6374, + 6403 + ]], + [[ + 6322, + 6361, + 6374 + ]], + [[ + 6326, + 6306, + 6327 + ]], + [[ + 6355, + 6383, + 6306 + ]], + [[ + 6404, + 6405, + 6406 + ]], + [[ + 6407, + 6408, + 6409 + ]], + [[ + 6361, + 6319, + 6374 + ]], + [[ + 6361, + 6360, + 6319 + ]], + [[ + 6320, + 6403, + 6373 + ]], + [[ + 6320, + 6322, + 6374 + ]], + [[ + 6307, + 6383, + 6323 + ]], + [[ + 6355, + 6335, + 6383 + ]], + [[ + 6316, + 6345, + 6317 + ]], + [[ + 6332, + 6354, + 6324 + ]], + [[ + 6308, + 6339, + 6326 + ]], + [[ + 6316, + 6340, + 6339 + ]], + [[ + 6322, + 6321, + 6361 + ]], + [[ + 6320, + 6353, + 6321 + ]], + [[ + 6359, + 6378, + 6410 + ]], + [[ + 6400, + 6411, + 6397 + ]], + [[ + 6355, + 6347, + 6333 + ]], + [[ + 6326, + 6325, + 6347 + ]], + [[ + 6397, + 6411, + 6394 + ]], + [[ + 6412, + 6399, + 6413 + ]], + [[ + 6414, + 6415, + 6416 + ]], + [[ + 5947, + 6377, + 6415 + ]], + [[ + 6378, + 6377, + 5947 + ]], + [[ + 6410, + 6417, + 6418 + ]], + [[ + 6419, + 6420, + 6421 + ]], + [[ + 6422, + 6176, + 6423 + ]], + [[ + 6424, + 6342, + 6425 + ]], + [[ + 6426, + 6315, + 6427 + ]], + [[ + 6428, + 6429, + 6430 + ]], + [[ + 6431, + 6432, + 6433 + ]], + [[ + 5947, + 6399, + 6378 + ]], + [[ + 6434, + 6344, + 6435 + ]], + [[ + 6404, + 6436, + 6437 + ]], + [[ + 6431, + 6433, + 6438 + ]], + [[ + 6437, + 6432, + 6370 + ]], + [[ + 6407, + 6439, + 6440 + ]], + [[ + 6367, + 6441, + 5926 + ]], + [[ + 6442, + 6443, + 6444 + ]], + [[ + 6445, + 6359, + 5953 + ]], + [[ + 6415, + 6377, + 6359 + ]], + [[ + 6430, + 6446, + 6447 + ]], + [[ + 6448, + 6449, + 6349 + ]], + [[ + 6431, + 6438, + 6371 + ]], + [[ + 6450, + 6451, + 6452 + ]], + [[ + 6453, + 6449, + 6454 + ]], + [[ + 6448, + 6454, + 6449 + ]], + [[ + 6455, + 6382, + 6456 + ]], + [[ + 6457, + 6458, + 6459 + ]], + [[ + 6455, + 6460, + 6461 + ]], + [[ + 6462, + 6449, + 6438 + ]], + [[ + 6370, + 6431, + 6371 + ]], + [[ + 6370, + 6432, + 6431 + ]], + [[ + 6408, + 6407, + 6440 + ]], + [[ + 6463, + 6464, + 6376 + ]], + [[ + 6465, + 6466, + 6467 + ]], + [[ + 6390, + 6468, + 6469 + ]], + [[ + 6387, + 6440, + 6470 + ]], + [[ + 6471, + 6472, + 6408 + ]], + [[ + 6389, + 6408, + 6440 + ]], + [[ + 6466, + 6465, + 6456 + ]], + [[ + 6473, + 6399, + 5947 + ]], + [[ + 6429, + 6453, + 6474 + ]], + [[ + 6381, + 6466, + 6456 + ]], + [[ + 6470, + 6475, + 6344 + ]], + [[ + 6476, + 6477, + 6478 + ]], + [[ + 6479, + 6477, + 6480 + ]], + [[ + 6382, + 6381, + 6456 + ]], + [[ + 6447, + 6481, + 6482 + ]], + [[ + 6476, + 6480, + 6477 + ]], + [[ + 6483, + 6459, + 6484 + ]], + [[ + 6485, + 6389, + 6388 + ]], + [[ + 6465, + 6455, + 6456 + ]], + [[ + 6486, + 6335, + 6357 + ]], + [[ + 6487, + 6488, + 6489 + ]], + [[ + 6490, + 6491, + 6492 + ]], + [[ + 6490, + 6423, + 5953 + ]], + [[ + 6493, + 6433, + 6348 + ]], + [[ + 6494, + 6495, + 6496 + ]], + [[ + 6479, + 6497, + 6466 + ]], + [[ + 6479, + 6466, + 6381 + ]], + [[ + 6432, + 6436, + 6496 + ]], + [[ + 6474, + 6473, + 6429 + ]], + [[ + 6429, + 6479, + 6381 + ]], + [[ + 6484, + 6375, + 6464 + ]], + [[ + 6494, + 6433, + 6495 + ]], + [[ + 6432, + 6437, + 6436 + ]], + [[ + 6411, + 6413, + 6394 + ]], + [[ + 6496, + 6399, + 6473 + ]], + [[ + 6498, + 6458, + 6488 + ]], + [[ + 6499, + 6385, + 6500 + ]], + [[ + 6491, + 6501, + 6386 + ]], + [[ + 6492, + 6502, + 6337 + ]], + [[ + 6503, + 6504, + 6505 + ]], + [[ + 6506, + 6507, + 6508 + ]], + [[ + 6509, + 6508, + 6510 + ]], + [[ + 6463, + 6511, + 6512 + ]], + [[ + 6513, + 6514, + 6515 + ]], + [[ + 6384, + 6317, + 6500 + ]], + [[ + 6516, + 6517, + 6513 + ]], + [[ + 6507, + 6513, + 6515 + ]], + [[ + 6317, + 6384, + 6501 + ]], + [[ + 6336, + 6338, + 6518 + ]], + [[ + 6503, + 6505, + 6519 + ]], + [[ + 6508, + 6507, + 6490 + ]], + [[ + 6490, + 6510, + 6508 + ]], + [[ + 6507, + 6491, + 6490 + ]], + [[ + 6520, + 6521, + 6519 + ]], + [[ + 6521, + 6517, + 6516 + ]], + [[ + 6497, + 6467, + 6466 + ]], + [[ + 6461, + 6476, + 6471 + ]], + [[ + 6522, + 6523, + 6524 + ]], + [[ + 6520, + 6519, + 6505 + ]], + [[ + 6525, + 6526, + 6527 + ]], + [[ + 6315, + 5926, + 6427 + ]], + [[ + 6397, + 6396, + 6400 + ]], + [[ + 6402, + 6378, + 6399 + ]], + [[ + 6398, + 6528, + 6401 + ]], + [[ + 6398, + 6529, + 6528 + ]], + [[ + 6529, + 6396, + 6358 + ]], + [[ + 6398, + 6400, + 6396 + ]], + [[ + 6529, + 6417, + 6528 + ]], + [[ + 6418, + 6358, + 6410 + ]], + [[ + 6429, + 6428, + 6453 + ]], + [[ + 6449, + 6350, + 6349 + ]], + [[ + 6448, + 6474, + 6454 + ]], + [[ + 6428, + 6482, + 6530 + ]], + [[ + 5926, + 6344, + 5947 + ]], + [[ + 6375, + 6531, + 6393 + ]], + [[ + 6440, + 6387, + 6389 + ]], + [[ + 6344, + 6532, + 6387 + ]], + [[ + 6440, + 6439, + 6470 + ]], + [[ + 6407, + 6409, + 6533 + ]], + [[ + 6498, + 6534, + 6435 + ]], + [[ + 6535, + 6536, + 6450 + ]], + [[ + 6479, + 6537, + 6477 + ]], + [[ + 6538, + 6439, + 6533 + ]], + [[ + 6539, + 6517, + 6520 + ]], + [[ + 6514, + 6501, + 6515 + ]], + [[ + 6481, + 6382, + 6530 + ]], + [[ + 6408, + 6489, + 6471 + ]], + [[ + 6474, + 6453, + 6454 + ]], + [[ + 6530, + 6449, + 6453 + ]], + [[ + 6540, + 6343, + 6541 + ]], + [[ + 6363, + 6403, + 6374 + ]], + [[ + 6542, + 6543, + 6427 + ]], + [[ + 6544, + 6363, + 6374 + ]], + [[ + 6545, + 6341, + 6543 + ]], + [[ + 6546, + 6363, + 6544 + ]], + [[ + 6315, + 6547, + 6374 + ]], + [[ + 6548, + 6549, + 6550 + ]], + [[ + 6438, + 6449, + 6371 + ]], + [[ + 6530, + 6482, + 6481 + ]], + [[ + 6551, + 6445, + 5953 + ]], + [[ + 6415, + 6359, + 6445 + ]], + [[ + 6338, + 6346, + 6518 + ]], + [[ + 6346, + 6345, + 6352 + ]], + [[ + 6518, + 6352, + 6351 + ]], + [[ + 6518, + 6346, + 6352 + ]], + [[ + 6552, + 6351, + 6553 + ]], + [[ + 6552, + 6518, + 6351 + ]], + [[ + 6309, + 6376, + 6310 + ]], + [[ + 6464, + 6375, + 6376 + ]], + [[ + 6426, + 6547, + 6315 + ]], + [[ + 6554, + 6372, + 6546 + ]], + [[ + 6555, + 6512, + 6556 + ]], + [[ + 6557, + 6489, + 6558 + ]], + [[ + 6386, + 6385, + 6491 + ]], + [[ + 6336, + 6552, + 6357 + ]], + [[ + 6337, + 6502, + 6559 + ]], + [[ + 6500, + 6317, + 6560 + ]], + [[ + 6515, + 6501, + 6491 + ]], + [[ + 6501, + 6384, + 6386 + ]], + [[ + 6393, + 6561, + 6562 + ]], + [[ + 6563, + 6564, + 6565 + ]], + [[ + 6566, + 6542, + 6427 + ]], + [[ + 6545, + 6543, + 6542 + ]], + [[ + 6553, + 6329, + 6357 + ]], + [[ + 6323, + 6332, + 6324 + ]], + [[ + 6553, + 6330, + 6329 + ]], + [[ + 6332, + 6316, + 6354 + ]], + [[ + 6486, + 6567, + 6568 + ]], + [[ + 6330, + 6345, + 6368 + ]], + [[ + 6331, + 6568, + 6332 + ]], + [[ + 6569, + 6356, + 6328 + ]], + [[ + 6570, + 6332, + 6568 + ]], + [[ + 6570, + 6316, + 6332 + ]], + [[ + 6492, + 6337, + 6336 + ]], + [[ + 6518, + 6552, + 6336 + ]], + [[ + 6571, + 6441, + 6572 + ]], + [[ + 6573, + 5926, + 6441 + ]], + [[ + 6574, + 6419, + 6421 + ]], + [[ + 6421, + 6176, + 6574 + ]], + [[ + 6344, + 6479, + 5947 + ]], + [[ + 6575, + 6537, + 6479 + ]], + [[ + 6407, + 6533, + 6439 + ]], + [[ + 6469, + 6576, + 6390 + ]], + [[ + 6387, + 6470, + 6344 + ]], + [[ + 6577, + 6578, + 6579 + ]], + [[ + 6538, + 6475, + 6470 + ]], + [[ + 6580, + 6409, + 6581 + ]], + [[ + 6580, + 6581, + 6475 + ]], + [[ + 6472, + 6471, + 6582 + ]], + [[ + 6538, + 6580, + 6475 + ]], + [[ + 6533, + 6409, + 6580 + ]], + [[ + 6482, + 6428, + 6430 + ]], + [[ + 6530, + 6453, + 6428 + ]], + [[ + 6369, + 6404, + 6437 + ]], + [[ + 6405, + 6395, + 6406 + ]], + [[ + 6560, + 6502, + 6499 + ]], + [[ + 6559, + 6583, + 6337 + ]], + [[ + 6362, + 6364, + 6372 + ]], + [[ + 6550, + 6584, + 6585 + ]], + [[ + 6541, + 6342, + 6424 + ]], + [[ + 6586, + 6587, + 6426 + ]], + [[ + 6526, + 6425, + 6588 + ]], + [[ + 6546, + 6364, + 6363 + ]], + [[ + 6372, + 6589, + 6590 + ]], + [[ + 6590, + 6548, + 6550 + ]], + [[ + 6425, + 6372, + 6585 + ]], + [[ + 6335, + 6373, + 6372 + ]], + [[ + 6591, + 6526, + 6592 + ]], + [[ + 6592, + 6526, + 6593 + ]], + [[ + 6444, + 6443, + 6594 + ]], + [[ + 6341, + 6425, + 6342 + ]], + [[ + 6595, + 6425, + 6526 + ]], + [[ + 6588, + 6341, + 6545 + ]], + [[ + 6566, + 6592, + 6593 + ]], + [[ + 6566, + 6596, + 6592 + ]], + [[ + 6587, + 6554, + 6547 + ]], + [[ + 6372, + 6364, + 6546 + ]], + [[ + 6591, + 6527, + 6526 + ]], + [[ + 6597, + 6598, + 6525 + ]], + [[ + 6599, + 6525, + 6527 + ]], + [[ + 6598, + 6526, + 6525 + ]], + [[ + 6600, + 6443, + 6442 + ]], + [[ + 6594, + 6601, + 6602 + ]], + [[ + 6571, + 6442, + 6444 + ]], + [[ + 6603, + 6600, + 6442 + ]], + [[ + 6604, + 6603, + 6572 + ]], + [[ + 6605, + 6600, + 6603 + ]], + [[ + 6590, + 6589, + 6586 + ]], + [[ + 6372, + 6554, + 6589 + ]], + [[ + 6537, + 6478, + 6477 + ]], + [[ + 6576, + 6469, + 6472 + ]], + [[ + 6391, + 6582, + 6478 + ]], + [[ + 6478, + 6471, + 6476 + ]], + [[ + 6497, + 6606, + 6607 + ]], + [[ + 6606, + 6479, + 6480 + ]], + [[ + 6582, + 6576, + 6472 + ]], + [[ + 6390, + 6392, + 6468 + ]], + [[ + 6608, + 6609, + 6472 + ]], + [[ + 6609, + 6409, + 6408 + ]], + [[ + 6473, + 6448, + 6349 + ]], + [[ + 6473, + 6474, + 6448 + ]], + [[ + 6366, + 6604, + 6367 + ]], + [[ + 6603, + 6442, + 6571 + ]], + [[ + 6558, + 6610, + 6484 + ]], + [[ + 6531, + 6317, + 6539 + ]], + [[ + 6335, + 6492, + 6357 + ]], + [[ + 6492, + 6425, + 6490 + ]], + [[ + 6510, + 6490, + 6503 + ]], + [[ + 6507, + 6515, + 6491 + ]], + [[ + 6393, + 6531, + 6561 + ]], + [[ + 6539, + 6520, + 6505 + ]], + [[ + 6504, + 6611, + 6539 + ]], + [[ + 6612, + 6539, + 6611 + ]], + [[ + 6371, + 6382, + 5953 + ]], + [[ + 6336, + 6357, + 6492 + ]], + [[ + 6463, + 6512, + 6555 + ]], + [[ + 6489, + 6557, + 6512 + ]], + [[ + 6523, + 6522, + 6379 + ]], + [[ + 6379, + 6522, + 6613 + ]], + [[ + 6613, + 6309, + 6379 + ]], + [[ + 6613, + 6376, + 6309 + ]], + [[ + 6613, + 6463, + 6376 + ]], + [[ + 6613, + 6511, + 6463 + ]], + [[ + 6489, + 6488, + 6458 + ]], + [[ + 6487, + 6408, + 6485 + ]], + [[ + 6614, + 6498, + 6488 + ]], + [[ + 6615, + 6459, + 6458 + ]], + [[ + 6312, + 6304, + 6616 + ]], + [[ + 5926, + 5925, + 6305 + ]], + [[ + 6493, + 6462, + 6438 + ]], + [[ + 6350, + 6449, + 6462 + ]], + [[ + 6499, + 6500, + 6560 + ]], + [[ + 6385, + 6384, + 6500 + ]], + [[ + 6344, + 6375, + 6435 + ]], + [[ + 6506, + 6513, + 6507 + ]], + [[ + 6317, + 6517, + 6539 + ]], + [[ + 6514, + 6513, + 6517 + ]], + [[ + 6509, + 6516, + 6508 + ]], + [[ + 6509, + 6521, + 6516 + ]], + [[ + 6594, + 6573, + 6444 + ]], + [[ + 6602, + 6617, + 6573 + ]], + [[ + 6602, + 6573, + 6594 + ]], + [[ + 6618, + 6571, + 6444 + ]], + [[ + 6536, + 6532, + 6344 + ]], + [[ + 6388, + 6387, + 6532 + ]], + [[ + 6451, + 6619, + 6452 + ]], + [[ + 6388, + 6532, + 6535 + ]], + [[ + 6434, + 6536, + 6344 + ]], + [[ + 6535, + 6532, + 6536 + ]], + [[ + 6534, + 6614, + 6434 + ]], + [[ + 6614, + 6488, + 6487 + ]], + [[ + 6434, + 6451, + 6450 + ]], + [[ + 6452, + 6388, + 6535 + ]], + [[ + 6516, + 6506, + 6508 + ]], + [[ + 6516, + 6513, + 6506 + ]], + [[ + 6552, + 6553, + 6357 + ]], + [[ + 6351, + 6330, + 6553 + ]], + [[ + 6560, + 6559, + 6502 + ]], + [[ + 6560, + 6317, + 6583 + ]], + [[ + 6542, + 6566, + 6593 + ]], + [[ + 6427, + 6596, + 6566 + ]], + [[ + 6524, + 6393, + 6562 + ]], + [[ + 6620, + 6621, + 6563 + ]], + [[ + 6622, + 6623, + 6531 + ]], + [[ + 6564, + 6612, + 6611 + ]], + [[ + 6512, + 6511, + 6489 + ]], + [[ + 6565, + 6504, + 6503 + ]], + [[ + 6385, + 6499, + 6491 + ]], + [[ + 6623, + 6624, + 6561 + ]], + [[ + 6617, + 6602, + 6601 + ]], + [[ + 6599, + 6597, + 6525 + ]], + [[ + 6464, + 6555, + 6556 + ]], + [[ + 6464, + 6463, + 6555 + ]], + [[ + 6576, + 6391, + 6390 + ]], + [[ + 6609, + 6608, + 6581 + ]], + [[ + 6537, + 6575, + 6392 + ]], + [[ + 6392, + 6575, + 6468 + ]], + [[ + 6446, + 6429, + 6381 + ]], + [[ + 6494, + 6348, + 6433 + ]], + [[ + 6598, + 6595, + 6526 + ]], + [[ + 6425, + 6585, + 6424 + ]], + [[ + 6584, + 6625, + 6424 + ]], + [[ + 6626, + 6627, + 6343 + ]], + [[ + 6584, + 6424, + 6585 + ]], + [[ + 6625, + 6549, + 6427 + ]], + [[ + 6590, + 6586, + 6548 + ]], + [[ + 6589, + 6587, + 6586 + ]], + [[ + 6503, + 6522, + 6624 + ]], + [[ + 6624, + 6562, + 6561 + ]], + [[ + 6503, + 6563, + 6565 + ]], + [[ + 6425, + 6423, + 6490 + ]], + [[ + 6628, + 6629, + 6630 + ]], + [[ + 6305, + 5925, + 6420 + ]], + [[ + 6422, + 6631, + 6632 + ]], + [[ + 6633, + 6303, + 6634 + ]], + [[ + 6422, + 6632, + 6176 + ]], + [[ + 6634, + 6303, + 6305 + ]], + [[ + 6635, + 6628, + 6422 + ]], + [[ + 6633, + 6631, + 6422 + ]], + [[ + 6422, + 6636, + 6633 + ]], + [[ + 6304, + 5926, + 6305 + ]], + [[ + 6632, + 6574, + 6176 + ]], + [[ + 6637, + 6305, + 6420 + ]], + [[ + 6632, + 6637, + 6574 + ]], + [[ + 6637, + 6420, + 6419 + ]], + [[ + 6497, + 6460, + 6467 + ]], + [[ + 6461, + 6471, + 6455 + ]], + [[ + 6423, + 6635, + 6422 + ]], + [[ + 6638, + 6304, + 6629 + ]], + [[ + 6639, + 6640, + 6635 + ]], + [[ + 6640, + 6304, + 6638 + ]], + [[ + 6422, + 6628, + 6630 + ]], + [[ + 6628, + 6635, + 6629 + ]], + [[ + 6537, + 6391, + 6478 + ]], + [[ + 6537, + 6392, + 6391 + ]], + [[ + 6434, + 6614, + 6451 + ]], + [[ + 6451, + 6487, + 6619 + ]], + [[ + 6450, + 6452, + 6535 + ]], + [[ + 6619, + 6485, + 6452 + ]], + [[ + 6313, + 6312, + 6616 + ]], + [[ + 6314, + 5926, + 6312 + ]], + [[ + 6462, + 6493, + 6350 + ]], + [[ + 6438, + 6433, + 6493 + ]], + [[ + 6423, + 6366, + 6314 + ]], + [[ + 6366, + 6605, + 6604 + ]], + [[ + 6547, + 6426, + 6587 + ]], + [[ + 6549, + 6584, + 6550 + ]], + [[ + 6626, + 6625, + 6427 + ]], + [[ + 6548, + 6586, + 6426 + ]], + [[ + 6543, + 6626, + 6427 + ]], + [[ + 6627, + 6341, + 6343 + ]], + [[ + 6549, + 6426, + 6427 + ]], + [[ + 6549, + 6548, + 6426 + ]], + [[ + 6540, + 6625, + 6626 + ]], + [[ + 6584, + 6549, + 6625 + ]], + [[ + 6600, + 6595, + 6443 + ]], + [[ + 6595, + 6601, + 6594 + ]], + [[ + 6441, + 6367, + 6572 + ]], + [[ + 6366, + 6423, + 6605 + ]], + [[ + 6636, + 6630, + 6303 + ]], + [[ + 6634, + 6305, + 6637 + ]], + [[ + 6383, + 6486, + 6323 + ]], + [[ + 6383, + 6335, + 6486 + ]], + [[ + 6570, + 6567, + 6641 + ]], + [[ + 6486, + 6357, + 6567 + ]], + [[ + 6486, + 6331, + 6323 + ]], + [[ + 6486, + 6568, + 6331 + ]], + [[ + 6574, + 6637, + 6419 + ]], + [[ + 6632, + 6631, + 6634 + ]], + [[ + 6519, + 6521, + 6509 + ]], + [[ + 6520, + 6517, + 6521 + ]], + [[ + 6398, + 6401, + 6399 + ]], + [[ + 6528, + 6417, + 6402 + ]], + [[ + 6598, + 6597, + 6601 + ]], + [[ + 6642, + 6427, + 6617 + ]], + [[ + 6591, + 6642, + 6527 + ]], + [[ + 6617, + 6601, + 6597 + ]], + [[ + 6310, + 6375, + 6311 + ]], + [[ + 6464, + 6556, + 6484 + ]], + [[ + 6414, + 6416, + 5953 + ]], + [[ + 6415, + 6445, + 6416 + ]], + [[ + 6641, + 6356, + 6569 + ]], + [[ + 6345, + 6316, + 6368 + ]], + [[ + 6641, + 6643, + 6570 + ]], + [[ + 6368, + 6316, + 6570 + ]], + [[ + 6395, + 6413, + 6406 + ]], + [[ + 6411, + 6400, + 6412 + ]], + [[ + 6404, + 6369, + 6405 + ]], + [[ + 6394, + 6413, + 6395 + ]], + [[ + 6493, + 6348, + 6350 + ]], + [[ + 6433, + 6432, + 6495 + ]], + [[ + 6607, + 6606, + 6480 + ]], + [[ + 6497, + 6479, + 6606 + ]], + [[ + 6610, + 6457, + 6483 + ]], + [[ + 6459, + 6615, + 6484 + ]], + [[ + 6457, + 6459, + 6483 + ]], + [[ + 6458, + 6498, + 6615 + ]], + [[ + 6484, + 6610, + 6483 + ]], + [[ + 6489, + 6458, + 6457 + ]], + [[ + 6489, + 6610, + 6558 + ]], + [[ + 6489, + 6457, + 6610 + ]], + [[ + 6556, + 6557, + 6558 + ]], + [[ + 6556, + 6512, + 6557 + ]], + [[ + 6314, + 6367, + 5926 + ]], + [[ + 6604, + 6572, + 6367 + ]], + [[ + 6635, + 6638, + 6629 + ]], + [[ + 6640, + 6639, + 6644 + ]], + [[ + 6625, + 6540, + 6424 + ]], + [[ + 6343, + 6342, + 6541 + ]], + [[ + 6343, + 6540, + 6626 + ]], + [[ + 6541, + 6424, + 6540 + ]], + [[ + 6567, + 6356, + 6641 + ]], + [[ + 6567, + 6357, + 6356 + ]], + [[ + 6643, + 6328, + 6368 + ]], + [[ + 6356, + 6329, + 6328 + ]], + [[ + 6643, + 6569, + 6328 + ]], + [[ + 6643, + 6641, + 6569 + ]], + [[ + 6529, + 6358, + 6418 + ]], + [[ + 6397, + 6371, + 6358 + ]], + [[ + 6359, + 6410, + 6358 + ]], + [[ + 6378, + 6402, + 6410 + ]], + [[ + 6593, + 6545, + 6542 + ]], + [[ + 6588, + 6425, + 6341 + ]], + [[ + 6604, + 6605, + 6603 + ]], + [[ + 6443, + 6595, + 6594 + ]], + [[ + 6423, + 6600, + 6605 + ]], + [[ + 6423, + 6595, + 6600 + ]], + [[ + 6560, + 6583, + 6559 + ]], + [[ + 6317, + 6346, + 6583 + ]], + [[ + 6581, + 6608, + 6475 + ]], + [[ + 6468, + 6575, + 6577 + ]], + [[ + 6531, + 6375, + 6317 + ]], + [[ + 6344, + 6317, + 6375 + ]], + [[ + 6489, + 6490, + 5953 + ]], + [[ + 6624, + 6522, + 6562 + ]], + [[ + 6489, + 6503, + 6490 + ]], + [[ + 6522, + 6511, + 6613 + ]], + [[ + 6596, + 6591, + 6592 + ]], + [[ + 6596, + 6642, + 6591 + ]], + [[ + 6528, + 6402, + 6401 + ]], + [[ + 6417, + 6410, + 6402 + ]], + [[ + 6547, + 6544, + 6374 + ]], + [[ + 6547, + 6546, + 6544 + ]], + [[ + 6382, + 6471, + 6489 + ]], + [[ + 6382, + 6455, + 6471 + ]], + [[ + 6468, + 6579, + 6469 + ]], + [[ + 6609, + 6408, + 6472 + ]], + [[ + 6469, + 6579, + 6472 + ]], + [[ + 6468, + 6577, + 6579 + ]], + [[ + 6460, + 6607, + 6461 + ]], + [[ + 6480, + 6476, + 6461 + ]], + [[ + 6465, + 6460, + 6455 + ]], + [[ + 6607, + 6480, + 6461 + ]], + [[ + 6358, + 6371, + 5953 + ]], + [[ + 6449, + 6530, + 6382 + ]], + [[ + 6437, + 6370, + 6369 + ]], + [[ + 6371, + 6397, + 6369 + ]], + [[ + 6492, + 6499, + 6502 + ]], + [[ + 6492, + 6491, + 6499 + ]], + [[ + 6583, + 6338, + 6337 + ]], + [[ + 6583, + 6346, + 6338 + ]], + [[ + 6531, + 6623, + 6561 + ]], + [[ + 6620, + 6624, + 6623 + ]], + [[ + 6435, + 6615, + 6498 + ]], + [[ + 6435, + 6484, + 6615 + ]], + [[ + 6558, + 6484, + 6556 + ]], + [[ + 6435, + 6375, + 6484 + ]], + [[ + 6411, + 6412, + 6413 + ]], + [[ + 6400, + 6399, + 6412 + ]], + [[ + 6489, + 6522, + 6503 + ]], + [[ + 6489, + 6511, + 6522 + ]], + [[ + 6311, + 6524, + 6379 + ]], + [[ + 6524, + 6562, + 6522 + ]], + [[ + 6379, + 6524, + 6523 + ]], + [[ + 6311, + 6393, + 6524 + ]], + [[ + 6417, + 6529, + 6418 + ]], + [[ + 6398, + 6396, + 6529 + ]], + [[ + 6389, + 6485, + 6408 + ]], + [[ + 6388, + 6452, + 6485 + ]], + [[ + 6543, + 6627, + 6626 + ]], + [[ + 6543, + 6341, + 6627 + ]], + [[ + 5925, + 6421, + 6420 + ]], + [[ + 5925, + 6176, + 6421 + ]], + [[ + 6642, + 6599, + 6527 + ]], + [[ + 6617, + 6597, + 6599 + ]], + [[ + 6441, + 6571, + 6618 + ]], + [[ + 6572, + 6603, + 6571 + ]], + [[ + 6344, + 6575, + 6479 + ]], + [[ + 6577, + 6475, + 6578 + ]], + [[ + 6344, + 6577, + 6575 + ]], + [[ + 6344, + 6475, + 6577 + ]], + [[ + 6629, + 6303, + 6630 + ]], + [[ + 6629, + 6304, + 6303 + ]], + [[ + 6633, + 6636, + 6303 + ]], + [[ + 6422, + 6630, + 6636 + ]], + [[ + 6632, + 6634, + 6637 + ]], + [[ + 6631, + 6633, + 6634 + ]], + [[ + 6467, + 6460, + 6465 + ]], + [[ + 6497, + 6607, + 6460 + ]], + [[ + 6335, + 6425, + 6492 + ]], + [[ + 6335, + 6372, + 6425 + ]], + [[ + 6601, + 6595, + 6598 + ]], + [[ + 6423, + 6425, + 6595 + ]], + [[ + 6635, + 6640, + 6638 + ]], + [[ + 6635, + 6423, + 6639 + ]], + [[ + 6585, + 6590, + 6550 + ]], + [[ + 6585, + 6372, + 6590 + ]], + [[ + 6479, + 6473, + 5947 + ]], + [[ + 6479, + 6429, + 6473 + ]], + [[ + 6349, + 6348, + 6494 + ]], + [[ + 6406, + 6413, + 6399 + ]], + [[ + 6349, + 6494, + 6473 + ]], + [[ + 6495, + 6432, + 6496 + ]], + [[ + 6436, + 6404, + 6645 + ]], + [[ + 6645, + 6404, + 6406 + ]], + [[ + 6564, + 6621, + 6612 + ]], + [[ + 6620, + 6623, + 6622 + ]], + [[ + 6565, + 6564, + 6611 + ]], + [[ + 6563, + 6621, + 6564 + ]], + [[ + 6547, + 6554, + 6546 + ]], + [[ + 6587, + 6589, + 6554 + ]], + [[ + 6439, + 6538, + 6470 + ]], + [[ + 6533, + 6580, + 6538 + ]], + [[ + 6612, + 6531, + 6539 + ]], + [[ + 6622, + 6621, + 6620 + ]], + [[ + 6612, + 6622, + 6531 + ]], + [[ + 6612, + 6621, + 6622 + ]], + [[ + 5947, + 6414, + 5953 + ]], + [[ + 5947, + 6415, + 6414 + ]], + [[ + 6317, + 6514, + 6517 + ]], + [[ + 6317, + 6501, + 6514 + ]], + [[ + 6478, + 6582, + 6471 + ]], + [[ + 6391, + 6576, + 6582 + ]], + [[ + 6593, + 6588, + 6545 + ]], + [[ + 6593, + 6526, + 6588 + ]], + [[ + 6403, + 6362, + 6373 + ]], + [[ + 6403, + 6363, + 6362 + ]], + [[ + 6380, + 6446, + 6381 + ]], + [[ + 6430, + 6429, + 6446 + ]], + [[ + 6416, + 6551, + 5953 + ]], + [[ + 6416, + 6445, + 6551 + ]], + [[ + 6563, + 6624, + 6620 + ]], + [[ + 6563, + 6503, + 6624 + ]], + [[ + 6519, + 6510, + 6503 + ]], + [[ + 6519, + 6509, + 6510 + ]], + [[ + 6408, + 6487, + 6489 + ]], + [[ + 6485, + 6619, + 6487 + ]], + [[ + 6451, + 6614, + 6487 + ]], + [[ + 6534, + 6498, + 6614 + ]], + [[ + 6567, + 6570, + 6568 + ]], + [[ + 6643, + 6368, + 6570 + ]], + [[ + 6314, + 6313, + 6423 + ]], + [[ + 6644, + 6304, + 6640 + ]], + [[ + 6313, + 6639, + 6423 + ]], + [[ + 6313, + 6616, + 6639 + ]], + [[ + 6616, + 6644, + 6639 + ]], + [[ + 6616, + 6304, + 6644 + ]], + [[ + 6436, + 6645, + 6496 + ]], + [[ + 6406, + 6399, + 6645 + ]], + [[ + 6494, + 6496, + 6473 + ]], + [[ + 6645, + 6399, + 6496 + ]], + [[ + 6505, + 6504, + 6539 + ]], + [[ + 6565, + 6611, + 6504 + ]], + [[ + 5953, + 6382, + 6489 + ]], + [[ + 6371, + 6449, + 6382 + ]], + [[ + 6430, + 6447, + 6482 + ]], + [[ + 6380, + 6382, + 6481 + ]], + [[ + 6380, + 6447, + 6446 + ]], + [[ + 6380, + 6481, + 6447 + ]], + [[ + 6394, + 6369, + 6397 + ]], + [[ + 6395, + 6405, + 6369 + ]], + [[ + 6534, + 6434, + 6435 + ]], + [[ + 6450, + 6536, + 6434 + ]], + [[ + 6573, + 6617, + 5926 + ]], + [[ + 6427, + 5926, + 6617 + ]], + [[ + 6427, + 6642, + 6596 + ]], + [[ + 6617, + 6599, + 6642 + ]], + [[ + 6618, + 6573, + 6441 + ]], + [[ + 6618, + 6444, + 6573 + ]], + [[ + 6579, + 6608, + 6472 + ]], + [[ + 6581, + 6409, + 6609 + ]], + [[ + 6578, + 6608, + 6579 + ]], + [[ + 6578, + 6475, + 6608 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b31bb8aab-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000022858", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027108)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0452049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6.57000017166138, + "min-height-surface": 0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84931.822 447528.541)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:23)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6646, + 6647, + 6648 + ]], + [[ + 6649, + 6650, + 6648 + ]], + [[ + 6647, + 6651, + 6648 + ]], + [[ + 6648, + 6652, + 6649 + ]], + [[ + 6649, + 6652, + 6653 + ]], + [[ + 6648, + 6651, + 6652 + ]], + [[ + 6654, + 6655, + 6656 + ]], + [[ + 6656, + 6655, + 6657 + ]], + [[ + 6656, + 6657, + 6646 + ]], + [[ + 6646, + 6657, + 6647 + ]], + [[ + 6658, + 6654, + 6648 + ]], + [[ + 6648, + 6654, + 6656 + ]], + [[ + 6648, + 6656, + 6646 + ]], + [[ + 6659, + 6658, + 6650 + ]], + [[ + 6650, + 6658, + 6648 + ]], + [[ + 6660, + 6659, + 6649 + ]], + [[ + 6649, + 6659, + 6650 + ]], + [[ + 6661, + 6660, + 6653 + ]], + [[ + 6653, + 6660, + 6649 + ]], + [[ + 6662, + 6661, + 6652 + ]], + [[ + 6652, + 6661, + 6653 + ]], + [[ + 6663, + 6662, + 6651 + ]], + [[ + 6651, + 6662, + 6652 + ]], + [[ + 6655, + 6663, + 6657 + ]], + [[ + 6657, + 6663, + 6647 + ]], + [[ + 6647, + 6663, + 6651 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bb8ab0-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000022856", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027109)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0452149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.17000007629395, + "min-height-surface": 0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84936.025 447531.543)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:27)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6664, + 6665, + 6666 + ]], + [[ + 6664, + 6656, + 6667 + ]], + [[ + 6667, + 6668, + 6669 + ]], + [[ + 6667, + 6656, + 6668 + ]], + [[ + 6666, + 6657, + 6656 + ]], + [[ + 6664, + 6666, + 6656 + ]], + [[ + 6665, + 6670, + 6666 + ]], + [[ + 6671, + 6672, + 6673 + ]], + [[ + 6673, + 6672, + 6674 + ]], + [[ + 6673, + 6674, + 6664 + ]], + [[ + 6664, + 6674, + 6665 + ]], + [[ + 6675, + 6671, + 6667 + ]], + [[ + 6667, + 6671, + 6673 + ]], + [[ + 6667, + 6673, + 6664 + ]], + [[ + 6676, + 6675, + 6669 + ]], + [[ + 6669, + 6675, + 6667 + ]], + [[ + 6677, + 6676, + 6668 + ]], + [[ + 6668, + 6676, + 6669 + ]], + [[ + 6654, + 6677, + 6656 + ]], + [[ + 6656, + 6677, + 6668 + ]], + [[ + 6655, + 6654, + 6657 + ]], + [[ + 6657, + 6654, + 6656 + ]], + [[ + 6678, + 6655, + 6666 + ]], + [[ + 6666, + 6655, + 6657 + ]], + [[ + 6679, + 6678, + 6670 + ]], + [[ + 6670, + 6678, + 6666 + ]], + [[ + 6672, + 6679, + 6674 + ]], + [[ + 6674, + 6679, + 6665 + ]], + [[ + 6665, + 6679, + 6670 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bb8ab5-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000022786", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027110)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0452249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.16000008583069, + "min-height-surface": 0.0199999995529652, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84939.413 447534.185)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:31)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 488, + 487, + 6674 + ]], + [[ + 488, + 6680, + 6681 + ]], + [[ + 6681, + 6680, + 6682 + ]], + [[ + 6680, + 488, + 6674 + ]], + [[ + 6680, + 6674, + 6673 + ]], + [[ + 504, + 505, + 488 + ]], + [[ + 488, + 505, + 487 + ]], + [[ + 6683, + 504, + 6681 + ]], + [[ + 6681, + 504, + 488 + ]], + [[ + 6684, + 6683, + 6682 + ]], + [[ + 6682, + 6683, + 6681 + ]], + [[ + 6685, + 6684, + 6680 + ]], + [[ + 6680, + 6684, + 6682 + ]], + [[ + 6686, + 6685, + 6671 + ]], + [[ + 6671, + 6685, + 6673 + ]], + [[ + 6673, + 6685, + 6680 + ]], + [[ + 6687, + 6686, + 6672 + ]], + [[ + 6672, + 6686, + 6671 + ]], + [[ + 6672, + 6671, + 6674 + ]], + [[ + 6674, + 6671, + 6673 + ]], + [[ + 505, + 6687, + 487 + ]], + [[ + 487, + 6687, + 6672 + ]], + [[ + 487, + 6672, + 6674 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbb1ca-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:17.1)", + "identificatiebagpnd": "503100000017304", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027132)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0452349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.88000011444092, + "min-height-surface": -0.0599999986588955, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84935.378 447488.560)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:78)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 407, + 410, + 6688 + ]], + [[ + 407, + 6688, + 404 + ]], + [[ + 404, + 6688, + 6689 + ]], + [[ + 6688, + 410, + 6690 + ]], + [[ + 6688, + 6691, + 6692 + ]], + [[ + 6688, + 6690, + 6691 + ]], + [[ + 6690, + 410, + 413 + ]], + [[ + 406, + 409, + 407 + ]], + [[ + 407, + 409, + 410 + ]], + [[ + 403, + 406, + 404 + ]], + [[ + 404, + 406, + 407 + ]], + [[ + 6693, + 403, + 6694 + ]], + [[ + 6694, + 403, + 6689 + ]], + [[ + 6689, + 403, + 404 + ]], + [[ + 6695, + 6693, + 6696 + ]], + [[ + 6696, + 6693, + 6694 + ]], + [[ + 6696, + 6694, + 6688 + ]], + [[ + 6688, + 6694, + 6689 + ]], + [[ + 6697, + 6695, + 6698 + ]], + [[ + 6698, + 6695, + 6696 + ]], + [[ + 6698, + 6696, + 6692 + ]], + [[ + 6692, + 6696, + 6688 + ]], + [[ + 6699, + 6697, + 1158 + ]], + [[ + 1158, + 6697, + 6698 + ]], + [[ + 1158, + 6698, + 6691 + ]], + [[ + 6691, + 6698, + 6692 + ]], + [[ + 1159, + 6699, + 6690 + ]], + [[ + 6690, + 6699, + 1158 + ]], + [[ + 6690, + 1158, + 6691 + ]], + [[ + 412, + 1159, + 413 + ]], + [[ + 413, + 1159, + 6690 + ]], + [[ + 409, + 412, + 410 + ]], + [[ + 410, + 412, + 413 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbd90d-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000026158", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0452e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.25999999046326, + "min-height-surface": -0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6700, + 6701, + 6702 + ]], + [[ + 6701, + 6703, + 6702 + ]], + [[ + 6704, + 6702, + 6703 + ]], + [[ + 6704, + 6703, + 6705 + ]], + [[ + 6706, + 1964, + 6707 + ]], + [[ + 6707, + 1964, + 6708 + ]], + [[ + 6707, + 6708, + 6700 + ]], + [[ + 6700, + 6708, + 6701 + ]], + [[ + 6709, + 6706, + 6702 + ]], + [[ + 6702, + 6706, + 6707 + ]], + [[ + 6702, + 6707, + 6700 + ]], + [[ + 6710, + 6709, + 6704 + ]], + [[ + 6704, + 6709, + 6702 + ]], + [[ + 6711, + 6710, + 6705 + ]], + [[ + 6705, + 6710, + 6704 + ]], + [[ + 1977, + 6711, + 6703 + ]], + [[ + 6703, + 6711, + 6705 + ]], + [[ + 1964, + 1977, + 6708 + ]], + [[ + 6708, + 1977, + 6701 + ]], + [[ + 6701, + 1977, + 6703 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbd912-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000032719", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003246)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0452f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.26999998092651, + "min-height-surface": -0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84855.056 447534.320)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:160)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6712, + 6713, + 6714 + ]], + [[ + 6712, + 294, + 296 + ]], + [[ + 6714, + 6715, + 6716 + ]], + [[ + 294, + 6714, + 6716 + ]], + [[ + 6712, + 6714, + 294 + ]], + [[ + 6711, + 1977, + 6705 + ]], + [[ + 6705, + 1977, + 6703 + ]], + [[ + 6705, + 6703, + 6712 + ]], + [[ + 6712, + 6703, + 6713 + ]], + [[ + 6717, + 6711, + 295 + ]], + [[ + 295, + 6711, + 296 + ]], + [[ + 296, + 6711, + 6705 + ]], + [[ + 296, + 6705, + 6712 + ]], + [[ + 6718, + 6717, + 293 + ]], + [[ + 293, + 6717, + 295 + ]], + [[ + 293, + 295, + 294 + ]], + [[ + 294, + 295, + 296 + ]], + [[ + 2119, + 6718, + 6716 + ]], + [[ + 6716, + 6718, + 293 + ]], + [[ + 6716, + 293, + 294 + ]], + [[ + 1961, + 2119, + 6715 + ]], + [[ + 6715, + 2119, + 6716 + ]], + [[ + 1966, + 1961, + 6714 + ]], + [[ + 6714, + 1961, + 6715 + ]], + [[ + 1977, + 1966, + 6703 + ]], + [[ + 6703, + 1966, + 6713 + ]], + [[ + 6713, + 1966, + 6714 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbd917-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.6)", + "identificatiebagpnd": "503100000017309", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027072)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027071)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.75999999046326, + "min-height-surface": 0.129999995231628, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84916.182 447533.963)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:20-22)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 461, + 463, + 6719 + ]], + [[ + 6719, + 6720, + 6721 + ]], + [[ + 6719, + 6722, + 6720 + ]], + [[ + 6722, + 6723, + 6724 + ]], + [[ + 461, + 6719, + 6721 + ]], + [[ + 6719, + 6723, + 6722 + ]], + [[ + 6725, + 6726, + 460 + ]], + [[ + 460, + 6726, + 462 + ]], + [[ + 460, + 462, + 461 + ]], + [[ + 461, + 462, + 463 + ]], + [[ + 6727, + 6725, + 6728 + ]], + [[ + 6728, + 6725, + 6721 + ]], + [[ + 6721, + 6725, + 460 + ]], + [[ + 6721, + 460, + 461 + ]], + [[ + 6729, + 6727, + 6730 + ]], + [[ + 6730, + 6727, + 6728 + ]], + [[ + 6730, + 6728, + 6720 + ]], + [[ + 6720, + 6728, + 6721 + ]], + [[ + 6731, + 6729, + 6722 + ]], + [[ + 6722, + 6729, + 6730 + ]], + [[ + 6722, + 6730, + 6720 + ]], + [[ + 6732, + 6731, + 6724 + ]], + [[ + 6724, + 6731, + 6722 + ]], + [[ + 6733, + 6732, + 6723 + ]], + [[ + 6723, + 6732, + 6724 + ]], + [[ + 6734, + 6733, + 6719 + ]], + [[ + 6719, + 6733, + 6723 + ]], + [[ + 6726, + 6734, + 462 + ]], + [[ + 462, + 6734, + 463 + ]], + [[ + 463, + 6734, + 6719 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbd91c-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000017315", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000060239)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.90000009536743, + "min-height-surface": 0.0799999982118607, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84923.713 447522.485)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:15)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6735, + 6736, + 6737 + ]], + [[ + 6736, + 6738, + 6737 + ]], + [[ + 6739, + 6740, + 6741 + ]], + [[ + 6739, + 6742, + 6740 + ]], + [[ + 6743, + 6744, + 6742 + ]], + [[ + 6742, + 6744, + 6745 + ]], + [[ + 6739, + 6743, + 6742 + ]], + [[ + 6738, + 6736, + 6746 + ]], + [[ + 6739, + 6738, + 6743 + ]], + [[ + 6739, + 6737, + 6738 + ]], + [[ + 6736, + 6747, + 6746 + ]], + [[ + 6748, + 6749, + 6735 + ]], + [[ + 6735, + 6749, + 6736 + ]], + [[ + 6750, + 6748, + 6737 + ]], + [[ + 6737, + 6748, + 6735 + ]], + [[ + 6751, + 6750, + 6739 + ]], + [[ + 6739, + 6750, + 6737 + ]], + [[ + 6752, + 6751, + 6741 + ]], + [[ + 6741, + 6751, + 6739 + ]], + [[ + 6753, + 6752, + 6740 + ]], + [[ + 6740, + 6752, + 6741 + ]], + [[ + 6754, + 6753, + 6742 + ]], + [[ + 6742, + 6753, + 6740 + ]], + [[ + 6755, + 6754, + 6745 + ]], + [[ + 6745, + 6754, + 6742 + ]], + [[ + 6756, + 6755, + 6744 + ]], + [[ + 6744, + 6755, + 6745 + ]], + [[ + 6757, + 6756, + 6743 + ]], + [[ + 6743, + 6756, + 6744 + ]], + [[ + 6758, + 6757, + 6738 + ]], + [[ + 6738, + 6757, + 6743 + ]], + [[ + 6759, + 6758, + 6746 + ]], + [[ + 6746, + 6758, + 6738 + ]], + [[ + 6760, + 6759, + 6747 + ]], + [[ + 6747, + 6759, + 6746 + ]], + [[ + 6749, + 6760, + 6736 + ]], + [[ + 6736, + 6760, + 6747 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbd921-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000026312", + "identificatiebagvbohoogstehuisnummer": "(1:503010000003235)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003234)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.83999991416931, + "min-height-surface": 0, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84882.592 447515.552)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:146-146A)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6761, + 6762, + 6763 + ]], + [[ + 6764, + 6765, + 6766 + ]], + [[ + 6767, + 6768, + 6769 + ]], + [[ + 6767, + 6770, + 6768 + ]], + [[ + 6763, + 6771, + 6769 + ]], + [[ + 6769, + 6766, + 6767 + ]], + [[ + 6765, + 6772, + 6766 + ]], + [[ + 6769, + 6764, + 6766 + ]], + [[ + 6773, + 6764, + 6769 + ]], + [[ + 6771, + 6774, + 6775 + ]], + [[ + 6776, + 6777, + 6773 + ]], + [[ + 6769, + 6775, + 6773 + ]], + [[ + 6778, + 6779, + 6776 + ]], + [[ + 6773, + 6778, + 6776 + ]], + [[ + 6779, + 6778, + 6780 + ]], + [[ + 6778, + 6773, + 6775 + ]], + [[ + 6778, + 6775, + 6781 + ]], + [[ + 6769, + 6771, + 6775 + ]], + [[ + 6762, + 6782, + 6763 + ]], + [[ + 6763, + 6782, + 6771 + ]], + [[ + 6762, + 6783, + 6782 + ]], + [[ + 6784, + 6785, + 6786 + ]], + [[ + 6786, + 6785, + 6787 + ]], + [[ + 6786, + 6787, + 6761 + ]], + [[ + 6761, + 6787, + 6762 + ]], + [[ + 6788, + 6784, + 6789 + ]], + [[ + 6789, + 6784, + 6786 + ]], + [[ + 6789, + 6786, + 6763 + ]], + [[ + 6763, + 6786, + 6761 + ]], + [[ + 6790, + 6788, + 6791 + ]], + [[ + 6791, + 6788, + 6789 + ]], + [[ + 6791, + 6789, + 6769 + ]], + [[ + 6769, + 6789, + 6763 + ]], + [[ + 6792, + 6790, + 2849 + ]], + [[ + 2849, + 6790, + 6791 + ]], + [[ + 2849, + 6791, + 6768 + ]], + [[ + 6768, + 6791, + 6769 + ]], + [[ + 2847, + 6792, + 6770 + ]], + [[ + 6770, + 6792, + 2849 + ]], + [[ + 6770, + 2849, + 6768 + ]], + [[ + 2845, + 2847, + 6767 + ]], + [[ + 6767, + 2847, + 6770 + ]], + [[ + 2846, + 2845, + 6766 + ]], + [[ + 6766, + 2845, + 6767 + ]], + [[ + 2844, + 2846, + 6772 + ]], + [[ + 6772, + 2846, + 6766 + ]], + [[ + 2843, + 2844, + 6765 + ]], + [[ + 6765, + 2844, + 6772 + ]], + [[ + 2840, + 2843, + 6764 + ]], + [[ + 6764, + 2843, + 6765 + ]], + [[ + 2841, + 2840, + 6773 + ]], + [[ + 6773, + 2840, + 6764 + ]], + [[ + 2839, + 2841, + 6777 + ]], + [[ + 6777, + 2841, + 6773 + ]], + [[ + 2837, + 2839, + 6776 + ]], + [[ + 6776, + 2839, + 6777 + ]], + [[ + 2838, + 2837, + 6779 + ]], + [[ + 6779, + 2837, + 6776 + ]], + [[ + 3009, + 2838, + 6780 + ]], + [[ + 6780, + 2838, + 6779 + ]], + [[ + 3010, + 3009, + 6778 + ]], + [[ + 6778, + 3009, + 6780 + ]], + [[ + 3008, + 3010, + 6793 + ]], + [[ + 6793, + 3010, + 6781 + ]], + [[ + 6781, + 3010, + 6778 + ]], + [[ + 6794, + 3008, + 6795 + ]], + [[ + 6795, + 3008, + 6793 + ]], + [[ + 6795, + 6793, + 6775 + ]], + [[ + 6775, + 6793, + 6781 + ]], + [[ + 6796, + 6794, + 6774 + ]], + [[ + 6774, + 6794, + 6795 + ]], + [[ + 6774, + 6795, + 6775 + ]], + [[ + 6797, + 6796, + 6771 + ]], + [[ + 6771, + 6796, + 6774 + ]], + [[ + 6798, + 6797, + 6799 + ]], + [[ + 6799, + 6797, + 6800 + ]], + [[ + 6800, + 6797, + 6782 + ]], + [[ + 6782, + 6797, + 6771 + ]], + [[ + 6801, + 6798, + 6802 + ]], + [[ + 6802, + 6798, + 6799 + ]], + [[ + 6802, + 6799, + 6803 + ]], + [[ + 6803, + 6799, + 6800 + ]], + [[ + 6803, + 6800, + 6783 + ]], + [[ + 6783, + 6800, + 6782 + ]], + [[ + 6785, + 6801, + 6787 + ]], + [[ + 6787, + 6801, + 6762 + ]], + [[ + 6762, + 6801, + 6802 + ]], + [[ + 6762, + 6802, + 6803 + ]], + [[ + 6762, + 6803, + 6783 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbd926-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000026311", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003236)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.55999994277954, + "min-height-surface": -0.0199999995529652, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84879.113 447518.066)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:148)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6804, + 6793, + 6805 + ]], + [[ + 6806, + 6807, + 6808 + ]], + [[ + 6793, + 6804, + 6808 + ]], + [[ + 6807, + 6806, + 6809 + ]], + [[ + 6806, + 6808, + 6810 + ]], + [[ + 6806, + 6810, + 6811 + ]], + [[ + 6810, + 6808, + 6804 + ]], + [[ + 6810, + 6804, + 6812 + ]], + [[ + 6812, + 6804, + 6813 + ]], + [[ + 6805, + 6795, + 6814 + ]], + [[ + 6804, + 6805, + 6815 + ]], + [[ + 6793, + 6795, + 6805 + ]], + [[ + 6816, + 6817, + 3008 + ]], + [[ + 3008, + 6817, + 6794 + ]], + [[ + 3008, + 6794, + 6793 + ]], + [[ + 6793, + 6794, + 6795 + ]], + [[ + 3005, + 6816, + 6808 + ]], + [[ + 6808, + 6816, + 3008 + ]], + [[ + 6808, + 3008, + 6793 + ]], + [[ + 3006, + 3005, + 6807 + ]], + [[ + 6807, + 3005, + 6808 + ]], + [[ + 6818, + 3006, + 6809 + ]], + [[ + 6809, + 3006, + 6807 + ]], + [[ + 6819, + 6818, + 6806 + ]], + [[ + 6806, + 6818, + 6809 + ]], + [[ + 6820, + 6819, + 6821 + ]], + [[ + 6821, + 6819, + 6811 + ]], + [[ + 6811, + 6819, + 6806 + ]], + [[ + 6822, + 6820, + 6823 + ]], + [[ + 6823, + 6820, + 6821 + ]], + [[ + 6823, + 6821, + 6810 + ]], + [[ + 6810, + 6821, + 6811 + ]], + [[ + 6824, + 6822, + 6825 + ]], + [[ + 6825, + 6822, + 6823 + ]], + [[ + 6825, + 6823, + 6812 + ]], + [[ + 6812, + 6823, + 6810 + ]], + [[ + 6826, + 6824, + 6827 + ]], + [[ + 6827, + 6824, + 6825 + ]], + [[ + 6827, + 6825, + 6813 + ]], + [[ + 6813, + 6825, + 6812 + ]], + [[ + 6828, + 6826, + 6829 + ]], + [[ + 6829, + 6826, + 6827 + ]], + [[ + 6829, + 6827, + 6804 + ]], + [[ + 6804, + 6827, + 6813 + ]], + [[ + 6830, + 6828, + 6831 + ]], + [[ + 6831, + 6828, + 6829 + ]], + [[ + 6831, + 6829, + 6815 + ]], + [[ + 6815, + 6829, + 6804 + ]], + [[ + 6832, + 6830, + 6805 + ]], + [[ + 6805, + 6830, + 6831 + ]], + [[ + 6805, + 6831, + 6815 + ]], + [[ + 6833, + 6832, + 6814 + ]], + [[ + 6814, + 6832, + 6805 + ]], + [[ + 6817, + 6833, + 6794 + ]], + [[ + 6794, + 6833, + 6795 + ]], + [[ + 6795, + 6833, + 6814 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbd92b-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000022857", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027107)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027106)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 7.19000005722046, + "min-height-surface": 0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84928.642 447523.921)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:17-19)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6834, + 6835, + 6836 + ]], + [[ + 6837, + 6838, + 6836 + ]], + [[ + 6835, + 6839, + 6836 + ]], + [[ + 6836, + 6839, + 6837 + ]], + [[ + 6662, + 6663, + 6652 + ]], + [[ + 6652, + 6663, + 6651 + ]], + [[ + 6652, + 6651, + 6834 + ]], + [[ + 6834, + 6651, + 6835 + ]], + [[ + 6840, + 6662, + 6836 + ]], + [[ + 6836, + 6662, + 6652 + ]], + [[ + 6836, + 6652, + 6834 + ]], + [[ + 6841, + 6840, + 6838 + ]], + [[ + 6838, + 6840, + 6836 + ]], + [[ + 6842, + 6841, + 6748 + ]], + [[ + 6748, + 6841, + 6735 + ]], + [[ + 6735, + 6841, + 6837 + ]], + [[ + 6837, + 6841, + 6838 + ]], + [[ + 6843, + 6842, + 6749 + ]], + [[ + 6749, + 6842, + 6748 + ]], + [[ + 6749, + 6748, + 6736 + ]], + [[ + 6736, + 6748, + 6735 + ]], + [[ + 6736, + 6735, + 6839 + ]], + [[ + 6839, + 6735, + 6837 + ]], + [[ + 6663, + 6843, + 6651 + ]], + [[ + 6651, + 6843, + 6835 + ]], + [[ + 6835, + 6843, + 6749 + ]], + [[ + 6835, + 6749, + 6736 + ]], + [[ + 6835, + 6736, + 6839 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbff40-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000017219", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003238)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.54999995231628, + "min-height-surface": -0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84875.569 447520.559)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:150)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6829, + 6831, + 6827 + ]], + [[ + 6844, + 6845, + 6846 + ]], + [[ + 6821, + 6823, + 6825 + ]], + [[ + 6847, + 6821, + 6825 + ]], + [[ + 6827, + 6848, + 6825 + ]], + [[ + 6848, + 6849, + 6847 + ]], + [[ + 6825, + 6848, + 6847 + ]], + [[ + 6827, + 6846, + 6848 + ]], + [[ + 6827, + 6844, + 6846 + ]], + [[ + 6844, + 6850, + 6845 + ]], + [[ + 6831, + 6844, + 6827 + ]], + [[ + 6851, + 6852, + 6828 + ]], + [[ + 6828, + 6852, + 6830 + ]], + [[ + 6828, + 6830, + 6829 + ]], + [[ + 6829, + 6830, + 6831 + ]], + [[ + 6853, + 6851, + 6826 + ]], + [[ + 6826, + 6851, + 6828 + ]], + [[ + 6826, + 6828, + 6827 + ]], + [[ + 6827, + 6828, + 6829 + ]], + [[ + 6854, + 6853, + 6824 + ]], + [[ + 6824, + 6853, + 6826 + ]], + [[ + 6824, + 6826, + 6825 + ]], + [[ + 6825, + 6826, + 6827 + ]], + [[ + 6855, + 6854, + 6822 + ]], + [[ + 6822, + 6854, + 6824 + ]], + [[ + 6822, + 6824, + 6823 + ]], + [[ + 6823, + 6824, + 6825 + ]], + [[ + 6856, + 6855, + 6820 + ]], + [[ + 6820, + 6855, + 6822 + ]], + [[ + 6820, + 6822, + 6821 + ]], + [[ + 6821, + 6822, + 6823 + ]], + [[ + 6857, + 6856, + 6847 + ]], + [[ + 6847, + 6856, + 6820 + ]], + [[ + 6847, + 6820, + 6821 + ]], + [[ + 6858, + 6857, + 6849 + ]], + [[ + 6849, + 6857, + 6847 + ]], + [[ + 6859, + 6858, + 6848 + ]], + [[ + 6848, + 6858, + 6849 + ]], + [[ + 6860, + 6859, + 6846 + ]], + [[ + 6846, + 6859, + 6848 + ]], + [[ + 6861, + 6860, + 6845 + ]], + [[ + 6845, + 6860, + 6846 + ]], + [[ + 6862, + 6861, + 6850 + ]], + [[ + 6850, + 6861, + 6845 + ]], + [[ + 6863, + 6862, + 6844 + ]], + [[ + 6844, + 6862, + 6850 + ]], + [[ + 6852, + 6863, + 6830 + ]], + [[ + 6830, + 6863, + 6831 + ]], + [[ + 6831, + 6863, + 6844 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbff45-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.6)", + "identificatiebagpnd": "503100000026313", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027061)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.45000004768372, + "min-height-surface": 0.170000001788139, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84898.718 447521.039)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:2)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6864, + 6865, + 6866 + ]], + [[ + 6864, + 6867, + 6868 + ]], + [[ + 6869, + 6870, + 6871 + ]], + [[ + 6872, + 6865, + 6864 + ]], + [[ + 6873, + 6865, + 6872 + ]], + [[ + 6874, + 6873, + 6872 + ]], + [[ + 6875, + 6876, + 6864 + ]], + [[ + 6872, + 6864, + 6876 + ]], + [[ + 6877, + 6876, + 6878 + ]], + [[ + 6878, + 6876, + 6879 + ]], + [[ + 6879, + 6876, + 6875 + ]], + [[ + 6868, + 6867, + 6871 + ]], + [[ + 6875, + 6868, + 6880 + ]], + [[ + 6875, + 6864, + 6868 + ]], + [[ + 6881, + 6871, + 6882 + ]], + [[ + 6882, + 6871, + 6883 + ]], + [[ + 6883, + 6871, + 6870 + ]], + [[ + 6867, + 6869, + 6871 + ]], + [[ + 6884, + 6870, + 6869 + ]], + [[ + 6885, + 6886, + 6864 + ]], + [[ + 6864, + 6886, + 6867 + ]], + [[ + 6887, + 6885, + 6866 + ]], + [[ + 6866, + 6885, + 6864 + ]], + [[ + 6888, + 6887, + 6865 + ]], + [[ + 6865, + 6887, + 6866 + ]], + [[ + 6889, + 6888, + 6873 + ]], + [[ + 6873, + 6888, + 6865 + ]], + [[ + 6890, + 6889, + 6874 + ]], + [[ + 6874, + 6889, + 6873 + ]], + [[ + 6891, + 6890, + 6872 + ]], + [[ + 6872, + 6890, + 6874 + ]], + [[ + 6892, + 6891, + 6876 + ]], + [[ + 6876, + 6891, + 6872 + ]], + [[ + 6893, + 6892, + 6877 + ]], + [[ + 6877, + 6892, + 6876 + ]], + [[ + 6894, + 6893, + 6878 + ]], + [[ + 6878, + 6893, + 6877 + ]], + [[ + 6895, + 6894, + 6879 + ]], + [[ + 6879, + 6894, + 6878 + ]], + [[ + 6896, + 6895, + 6897 + ]], + [[ + 6897, + 6895, + 6898 + ]], + [[ + 6898, + 6895, + 6875 + ]], + [[ + 6875, + 6895, + 6879 + ]], + [[ + 6899, + 6896, + 6900 + ]], + [[ + 6900, + 6896, + 6897 + ]], + [[ + 6900, + 6897, + 6901 + ]], + [[ + 6901, + 6897, + 6898 + ]], + [[ + 6901, + 6898, + 6880 + ]], + [[ + 6880, + 6898, + 6875 + ]], + [[ + 6902, + 6899, + 6868 + ]], + [[ + 6868, + 6899, + 6900 + ]], + [[ + 6868, + 6900, + 6901 + ]], + [[ + 6868, + 6901, + 6880 + ]], + [[ + 6903, + 6902, + 6871 + ]], + [[ + 6871, + 6902, + 6868 + ]], + [[ + 6904, + 6903, + 6905 + ]], + [[ + 6905, + 6903, + 6906 + ]], + [[ + 6906, + 6903, + 6881 + ]], + [[ + 6881, + 6903, + 6871 + ]], + [[ + 6907, + 6904, + 6908 + ]], + [[ + 6908, + 6904, + 6905 + ]], + [[ + 6908, + 6905, + 6909 + ]], + [[ + 6909, + 6905, + 6906 + ]], + [[ + 6909, + 6906, + 6882 + ]], + [[ + 6882, + 6906, + 6881 + ]], + [[ + 6910, + 6907, + 6883 + ]], + [[ + 6883, + 6907, + 6908 + ]], + [[ + 6883, + 6908, + 6909 + ]], + [[ + 6883, + 6909, + 6882 + ]], + [[ + 6911, + 6910, + 6870 + ]], + [[ + 6870, + 6910, + 6883 + ]], + [[ + 6912, + 6911, + 6884 + ]], + [[ + 6884, + 6911, + 6870 + ]], + [[ + 6913, + 6912, + 6869 + ]], + [[ + 6869, + 6912, + 6884 + ]], + [[ + 6886, + 6913, + 6867 + ]], + [[ + 6867, + 6913, + 6869 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbff4a-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.6)", + "identificatiebagpnd": "503100000032725", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027063)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027062)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.88000011444092, + "min-height-surface": 0.140000000596046, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84901.595 447523.022)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:4-6)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6914, + 6915, + 6916 + ]], + [[ + 6914, + 6917, + 6918 + ]], + [[ + 6917, + 6914, + 6916 + ]], + [[ + 6916, + 6919, + 6920 + ]], + [[ + 6916, + 6921, + 6919 + ]], + [[ + 6917, + 6916, + 6920 + ]], + [[ + 6922, + 6923, + 6924 + ]], + [[ + 6924, + 6923, + 6925 + ]], + [[ + 6924, + 6925, + 6926 + ]], + [[ + 6926, + 6925, + 6927 + ]], + [[ + 6926, + 6927, + 6914 + ]], + [[ + 6914, + 6927, + 6915 + ]], + [[ + 6928, + 6922, + 6918 + ]], + [[ + 6918, + 6922, + 6924 + ]], + [[ + 6918, + 6924, + 6926 + ]], + [[ + 6918, + 6926, + 6914 + ]], + [[ + 6929, + 6928, + 6917 + ]], + [[ + 6917, + 6928, + 6918 + ]], + [[ + 6930, + 6929, + 6885 + ]], + [[ + 6885, + 6929, + 6864 + ]], + [[ + 6864, + 6929, + 6920 + ]], + [[ + 6920, + 6929, + 6917 + ]], + [[ + 6931, + 6930, + 6886 + ]], + [[ + 6886, + 6930, + 6885 + ]], + [[ + 6886, + 6885, + 6867 + ]], + [[ + 6867, + 6885, + 6864 + ]], + [[ + 6867, + 6864, + 6919 + ]], + [[ + 6919, + 6864, + 6920 + ]], + [[ + 6932, + 6931, + 6921 + ]], + [[ + 6921, + 6931, + 6886 + ]], + [[ + 6921, + 6886, + 6867 + ]], + [[ + 6921, + 6867, + 6919 + ]], + [[ + 6933, + 6932, + 6916 + ]], + [[ + 6916, + 6932, + 6921 + ]], + [[ + 6923, + 6933, + 6925 + ]], + [[ + 6925, + 6933, + 6927 + ]], + [[ + 6927, + 6933, + 6915 + ]], + [[ + 6915, + 6933, + 6916 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbff4f-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000026157", + "identificatiebagvbohoogstehuisnummer": "(1:503010000003244)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003241)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.24000000953674, + "min-height-surface": -0.0399999991059303, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84867.943 447525.170)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:154-154C)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6934, + 6935, + 6936 + ]], + [[ + 6935, + 6937, + 6936 + ]], + [[ + 6935, + 6938, + 6937 + ]], + [[ + 6935, + 6939, + 6938 + ]], + [[ + 6935, + 6940, + 6939 + ]], + [[ + 6939, + 6940, + 6941 + ]], + [[ + 6940, + 6935, + 6942 + ]], + [[ + 6943, + 6944, + 6945 + ]], + [[ + 6943, + 6940, + 6942 + ]], + [[ + 6943, + 6942, + 6944 + ]], + [[ + 6944, + 6946, + 6947 + ]], + [[ + 6947, + 6946, + 6948 + ]], + [[ + 6948, + 6946, + 6949 + ]], + [[ + 6944, + 6942, + 6946 + ]], + [[ + 6950, + 2177, + 6934 + ]], + [[ + 6934, + 2177, + 6935 + ]], + [[ + 6951, + 6950, + 6936 + ]], + [[ + 6936, + 6950, + 6934 + ]], + [[ + 6952, + 6951, + 6937 + ]], + [[ + 6937, + 6951, + 6936 + ]], + [[ + 6953, + 6952, + 6938 + ]], + [[ + 6938, + 6952, + 6937 + ]], + [[ + 6954, + 6953, + 6939 + ]], + [[ + 6939, + 6953, + 6938 + ]], + [[ + 6955, + 6954, + 6941 + ]], + [[ + 6941, + 6954, + 6939 + ]], + [[ + 6956, + 6955, + 6940 + ]], + [[ + 6940, + 6955, + 6941 + ]], + [[ + 6957, + 6956, + 6943 + ]], + [[ + 6943, + 6956, + 6940 + ]], + [[ + 6958, + 6957, + 6945 + ]], + [[ + 6945, + 6957, + 6943 + ]], + [[ + 6959, + 6958, + 6944 + ]], + [[ + 6944, + 6958, + 6945 + ]], + [[ + 6960, + 6959, + 6947 + ]], + [[ + 6947, + 6959, + 6944 + ]], + [[ + 6961, + 6960, + 6948 + ]], + [[ + 6948, + 6960, + 6947 + ]], + [[ + 6962, + 6961, + 6949 + ]], + [[ + 6949, + 6961, + 6948 + ]], + [[ + 6963, + 6962, + 6964 + ]], + [[ + 6964, + 6962, + 6946 + ]], + [[ + 6946, + 6962, + 6949 + ]], + [[ + 6965, + 6963, + 1952 + ]], + [[ + 1952, + 6963, + 6964 + ]], + [[ + 1952, + 6964, + 6942 + ]], + [[ + 6942, + 6964, + 6946 + ]], + [[ + 2177, + 6965, + 6935 + ]], + [[ + 6935, + 6965, + 1952 + ]], + [[ + 6935, + 1952, + 6942 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbff54-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.6)", + "identificatiebagpnd": "503100000017307", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027065)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027064)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.85999989509583, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84904.818 447525.439)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:8-10)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6966, + 6967, + 6968 + ]], + [[ + 6969, + 6966, + 6970 + ]], + [[ + 6970, + 6966, + 6926 + ]], + [[ + 6926, + 6966, + 6927 + ]], + [[ + 6969, + 6967, + 6966 + ]], + [[ + 6971, + 6972, + 6969 + ]], + [[ + 6969, + 6972, + 6967 + ]], + [[ + 6973, + 6971, + 6970 + ]], + [[ + 6970, + 6971, + 6969 + ]], + [[ + 6924, + 6973, + 6926 + ]], + [[ + 6926, + 6973, + 6970 + ]], + [[ + 6925, + 6924, + 6927 + ]], + [[ + 6927, + 6924, + 6926 + ]], + [[ + 6974, + 6925, + 6966 + ]], + [[ + 6966, + 6925, + 6927 + ]], + [[ + 6975, + 6974, + 6968 + ]], + [[ + 6968, + 6974, + 6966 + ]], + [[ + 6972, + 6975, + 6967 + ]], + [[ + 6967, + 6975, + 6968 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbff59-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.6)", + "identificatiebagpnd": "503100000017215", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027067)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027066)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.85999989509583, + "min-height-surface": 0.150000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84908.607 447528.139)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:12-14)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6976, + 6977, + 6978 + ]], + [[ + 6978, + 6967, + 6969 + ]], + [[ + 6978, + 6979, + 6967 + ]], + [[ + 6976, + 6978, + 6969 + ]], + [[ + 6980, + 6981, + 6982 + ]], + [[ + 6982, + 6981, + 6983 + ]], + [[ + 6982, + 6983, + 6976 + ]], + [[ + 6976, + 6983, + 6977 + ]], + [[ + 6984, + 6980, + 6971 + ]], + [[ + 6971, + 6980, + 6969 + ]], + [[ + 6969, + 6980, + 6982 + ]], + [[ + 6969, + 6982, + 6976 + ]], + [[ + 6985, + 6984, + 6972 + ]], + [[ + 6972, + 6984, + 6971 + ]], + [[ + 6972, + 6971, + 6967 + ]], + [[ + 6967, + 6971, + 6969 + ]], + [[ + 6986, + 6985, + 6979 + ]], + [[ + 6979, + 6985, + 6972 + ]], + [[ + 6979, + 6972, + 6967 + ]], + [[ + 6987, + 6986, + 6978 + ]], + [[ + 6978, + 6986, + 6979 + ]], + [[ + 6981, + 6987, + 6983 + ]], + [[ + 6983, + 6987, + 6977 + ]], + [[ + 6977, + 6987, + 6978 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbff5e-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000026218", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027089)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.07999992370605, + "min-height-surface": -0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84861.651 447529.723)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:156)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6988, + 6989, + 6708 + ]], + [[ + 6707, + 6990, + 6991 + ]], + [[ + 6988, + 6708, + 6991 + ]], + [[ + 6991, + 6708, + 6707 + ]], + [[ + 6989, + 6992, + 6708 + ]], + [[ + 6989, + 6993, + 6992 + ]], + [[ + 6964, + 1952, + 6946 + ]], + [[ + 6946, + 1952, + 6942 + ]], + [[ + 6946, + 6942, + 6988 + ]], + [[ + 6988, + 6942, + 6989 + ]], + [[ + 6994, + 6964, + 6991 + ]], + [[ + 6991, + 6964, + 6946 + ]], + [[ + 6991, + 6946, + 6988 + ]], + [[ + 6995, + 6994, + 6990 + ]], + [[ + 6990, + 6994, + 6991 + ]], + [[ + 6706, + 6995, + 6707 + ]], + [[ + 6707, + 6995, + 6990 + ]], + [[ + 1964, + 6706, + 6708 + ]], + [[ + 6708, + 6706, + 6707 + ]], + [[ + 2148, + 1964, + 6992 + ]], + [[ + 6992, + 1964, + 6708 + ]], + [[ + 1951, + 2148, + 6993 + ]], + [[ + 6993, + 2148, + 6992 + ]], + [[ + 1952, + 1951, + 6942 + ]], + [[ + 6942, + 1951, + 6989 + ]], + [[ + 6989, + 1951, + 6993 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbff63-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.6)", + "identificatiebagpnd": "503100000017218", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027070)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027069)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.69000005722046, + "min-height-surface": 0.119999997317791, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84912.809 447531.432)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:16-18)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6996, + 6997, + 6998 + ]], + [[ + 6728, + 6999, + 6982 + ]], + [[ + 6982, + 6999, + 6983 + ]], + [[ + 6728, + 6730, + 6999 + ]], + [[ + 6999, + 6730, + 6997 + ]], + [[ + 6997, + 6730, + 6998 + ]], + [[ + 7000, + 7001, + 6727 + ]], + [[ + 6727, + 7001, + 6729 + ]], + [[ + 6727, + 6729, + 6728 + ]], + [[ + 6728, + 6729, + 6730 + ]], + [[ + 7002, + 7000, + 6980 + ]], + [[ + 6980, + 7000, + 6982 + ]], + [[ + 6982, + 7000, + 6727 + ]], + [[ + 6982, + 6727, + 6728 + ]], + [[ + 7003, + 7002, + 6981 + ]], + [[ + 6981, + 7002, + 6980 + ]], + [[ + 6981, + 6980, + 6983 + ]], + [[ + 6983, + 6980, + 6982 + ]], + [[ + 7004, + 7003, + 6999 + ]], + [[ + 6999, + 7003, + 6981 + ]], + [[ + 6999, + 6981, + 6983 + ]], + [[ + 7005, + 7004, + 6997 + ]], + [[ + 6997, + 7004, + 6999 + ]], + [[ + 7006, + 7005, + 6996 + ]], + [[ + 6996, + 7005, + 6997 + ]], + [[ + 7007, + 7006, + 6998 + ]], + [[ + 6998, + 7006, + 6996 + ]], + [[ + 7001, + 7007, + 6729 + ]], + [[ + 6729, + 7007, + 6730 + ]], + [[ + 6730, + 7007, + 6998 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bbff68-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:32.7)", + "identificatiebagpnd": "503100000017221", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003233)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 4.09999990463257, + "min-height-surface": 0.00999999977648258, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84886.280 447513.169)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:144)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7008, + 7009, + 7010 + ]], + [[ + 7011, + 7012, + 7013 + ]], + [[ + 7014, + 7015, + 7013 + ]], + [[ + 7012, + 7014, + 7013 + ]], + [[ + 7010, + 7009, + 7016 + ]], + [[ + 7011, + 7017, + 7012 + ]], + [[ + 7018, + 7011, + 7013 + ]], + [[ + 7010, + 7019, + 7018 + ]], + [[ + 7020, + 7021, + 7022 + ]], + [[ + 7023, + 7024, + 7020 + ]], + [[ + 7022, + 7025, + 7020 + ]], + [[ + 7011, + 7026, + 7022 + ]], + [[ + 7020, + 7025, + 7023 + ]], + [[ + 7025, + 7022, + 7026 + ]], + [[ + 7025, + 7026, + 7027 + ]], + [[ + 7026, + 7011, + 7028 + ]], + [[ + 7029, + 7030, + 7031 + ]], + [[ + 7029, + 7028, + 7030 + ]], + [[ + 7029, + 7026, + 7028 + ]], + [[ + 7011, + 7018, + 7028 + ]], + [[ + 7010, + 7018, + 7013 + ]], + [[ + 7032, + 7028, + 7018 + ]], + [[ + 7010, + 7016, + 7019 + ]], + [[ + 7033, + 7034, + 7008 + ]], + [[ + 7008, + 7034, + 7009 + ]], + [[ + 7035, + 7033, + 7010 + ]], + [[ + 7010, + 7033, + 7008 + ]], + [[ + 7036, + 7035, + 7013 + ]], + [[ + 7013, + 7035, + 7010 + ]], + [[ + 7037, + 7036, + 7015 + ]], + [[ + 7015, + 7036, + 7013 + ]], + [[ + 1064, + 7037, + 7014 + ]], + [[ + 7014, + 7037, + 7015 + ]], + [[ + 1067, + 1064, + 7012 + ]], + [[ + 7012, + 1064, + 7014 + ]], + [[ + 1066, + 1067, + 7017 + ]], + [[ + 7017, + 1067, + 7012 + ]], + [[ + 1069, + 1066, + 7011 + ]], + [[ + 7011, + 1066, + 7017 + ]], + [[ + 1070, + 1069, + 7022 + ]], + [[ + 7022, + 1069, + 7011 + ]], + [[ + 1083, + 1070, + 7021 + ]], + [[ + 7021, + 1070, + 7022 + ]], + [[ + 1093, + 1083, + 7020 + ]], + [[ + 7020, + 1083, + 7021 + ]], + [[ + 1092, + 1093, + 7024 + ]], + [[ + 7024, + 1093, + 7020 + ]], + [[ + 2854, + 1092, + 7023 + ]], + [[ + 7023, + 1092, + 7024 + ]], + [[ + 2855, + 2854, + 7025 + ]], + [[ + 7025, + 2854, + 7023 + ]], + [[ + 2851, + 2855, + 7027 + ]], + [[ + 7027, + 2855, + 7025 + ]], + [[ + 2853, + 2851, + 7026 + ]], + [[ + 7026, + 2851, + 7027 + ]], + [[ + 2852, + 2853, + 7029 + ]], + [[ + 7029, + 2853, + 7026 + ]], + [[ + 2850, + 2852, + 7031 + ]], + [[ + 7031, + 2852, + 7029 + ]], + [[ + 2849, + 2850, + 6768 + ]], + [[ + 6768, + 2850, + 7030 + ]], + [[ + 7030, + 2850, + 7031 + ]], + [[ + 6791, + 2849, + 6769 + ]], + [[ + 6769, + 2849, + 6768 + ]], + [[ + 6769, + 6768, + 7028 + ]], + [[ + 7028, + 6768, + 7030 + ]], + [[ + 6789, + 6791, + 6763 + ]], + [[ + 6763, + 6791, + 6769 + ]], + [[ + 6763, + 6769, + 7032 + ]], + [[ + 7032, + 6769, + 7028 + ]], + [[ + 6786, + 6789, + 6761 + ]], + [[ + 6761, + 6789, + 6763 + ]], + [[ + 6761, + 6763, + 7018 + ]], + [[ + 7018, + 6763, + 7032 + ]], + [[ + 6787, + 6786, + 6762 + ]], + [[ + 6762, + 6786, + 6761 + ]], + [[ + 6762, + 6761, + 7019 + ]], + [[ + 7019, + 6761, + 7018 + ]], + [[ + 7038, + 6787, + 7016 + ]], + [[ + 7016, + 6787, + 6762 + ]], + [[ + 7016, + 6762, + 7019 + ]], + [[ + 7034, + 7038, + 7009 + ]], + [[ + 7009, + 7038, + 7016 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc267b-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000027889", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0453f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.41000008583069, + "min-height-surface": 0.209999993443489, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 6901, + 6906, + 6800 + ]], + [[ + 6901, + 6803, + 6898 + ]], + [[ + 6901, + 6800, + 6803 + ]], + [[ + 6906, + 7039, + 6800 + ]], + [[ + 6906, + 7040, + 7039 + ]], + [[ + 6906, + 6909, + 7040 + ]], + [[ + 7040, + 6909, + 7041 + ]], + [[ + 6900, + 6905, + 6901 + ]], + [[ + 6901, + 6905, + 6906 + ]], + [[ + 6897, + 6900, + 6898 + ]], + [[ + 6898, + 6900, + 6901 + ]], + [[ + 6802, + 6897, + 6803 + ]], + [[ + 6803, + 6897, + 6898 + ]], + [[ + 6799, + 6802, + 6800 + ]], + [[ + 6800, + 6802, + 6803 + ]], + [[ + 7042, + 6799, + 7039 + ]], + [[ + 7039, + 6799, + 6800 + ]], + [[ + 7043, + 7042, + 7040 + ]], + [[ + 7040, + 7042, + 7039 + ]], + [[ + 7044, + 7043, + 7041 + ]], + [[ + 7041, + 7043, + 7040 + ]], + [[ + 6908, + 7044, + 6909 + ]], + [[ + 6909, + 7044, + 7041 + ]], + [[ + 6905, + 6908, + 6906 + ]], + [[ + 6906, + 6908, + 6909 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc2680-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:29.9)", + "identificatiebagpnd": "503100000017308", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027144)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027143)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 7.11999988555908, + "min-height-surface": -0.00999999977648258, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84901.723 447506.067)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:140-142)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7045, + 7046, + 7047 + ]], + [[ + 7048, + 7049, + 7050 + ]], + [[ + 7051, + 7046, + 7045 + ]], + [[ + 7052, + 7046, + 7053 + ]], + [[ + 7053, + 7046, + 7051 + ]], + [[ + 7050, + 7054, + 7051 + ]], + [[ + 7055, + 7045, + 7056 + ]], + [[ + 7057, + 7054, + 7049 + ]], + [[ + 7058, + 7057, + 7049 + ]], + [[ + 7048, + 7059, + 7049 + ]], + [[ + 7060, + 7059, + 7061 + ]], + [[ + 7060, + 7062, + 7059 + ]], + [[ + 7063, + 7059, + 7062 + ]], + [[ + 7064, + 7062, + 7065 + ]], + [[ + 7062, + 7060, + 7065 + ]], + [[ + 7049, + 7054, + 7050 + ]], + [[ + 7048, + 7061, + 7059 + ]], + [[ + 7066, + 7061, + 7067 + ]], + [[ + 7048, + 7067, + 7061 + ]], + [[ + 7068, + 7066, + 7067 + ]], + [[ + 7067, + 7048, + 7069 + ]], + [[ + 7051, + 7045, + 7050 + ]], + [[ + 7055, + 7050, + 7045 + ]], + [[ + 7070, + 7050, + 7071 + ]], + [[ + 7072, + 7055, + 7056 + ]], + [[ + 7071, + 7050, + 7055 + ]], + [[ + 7073, + 7074, + 7045 + ]], + [[ + 7045, + 7074, + 7075 + ]], + [[ + 7045, + 7075, + 7076 + ]], + [[ + 7045, + 7076, + 7056 + ]], + [[ + 7077, + 7073, + 7047 + ]], + [[ + 7047, + 7073, + 7045 + ]], + [[ + 7078, + 7077, + 7046 + ]], + [[ + 7046, + 7077, + 7047 + ]], + [[ + 7079, + 7078, + 7052 + ]], + [[ + 7052, + 7078, + 7046 + ]], + [[ + 7080, + 7079, + 7053 + ]], + [[ + 7053, + 7079, + 7052 + ]], + [[ + 7081, + 7080, + 7051 + ]], + [[ + 7051, + 7080, + 7053 + ]], + [[ + 7082, + 7081, + 7054 + ]], + [[ + 7054, + 7081, + 7051 + ]], + [[ + 7083, + 7082, + 7057 + ]], + [[ + 7057, + 7082, + 7054 + ]], + [[ + 7084, + 7083, + 7058 + ]], + [[ + 7058, + 7083, + 7057 + ]], + [[ + 7085, + 7084, + 7049 + ]], + [[ + 7049, + 7084, + 7058 + ]], + [[ + 7086, + 7085, + 7059 + ]], + [[ + 7059, + 7085, + 7049 + ]], + [[ + 7087, + 7086, + 7063 + ]], + [[ + 7063, + 7086, + 7059 + ]], + [[ + 7088, + 7087, + 7062 + ]], + [[ + 7062, + 7087, + 7063 + ]], + [[ + 7089, + 7088, + 7064 + ]], + [[ + 7064, + 7088, + 7062 + ]], + [[ + 7090, + 7089, + 7065 + ]], + [[ + 7065, + 7089, + 7064 + ]], + [[ + 7091, + 7090, + 7060 + ]], + [[ + 7060, + 7090, + 7065 + ]], + [[ + 7092, + 7091, + 7061 + ]], + [[ + 7061, + 7091, + 7060 + ]], + [[ + 7093, + 7092, + 7066 + ]], + [[ + 7066, + 7092, + 7061 + ]], + [[ + 7094, + 7093, + 7068 + ]], + [[ + 7068, + 7093, + 7066 + ]], + [[ + 7095, + 7094, + 7067 + ]], + [[ + 7067, + 7094, + 7068 + ]], + [[ + 7096, + 7095, + 7069 + ]], + [[ + 7069, + 7095, + 7067 + ]], + [[ + 7097, + 7096, + 7048 + ]], + [[ + 7048, + 7096, + 7069 + ]], + [[ + 7098, + 7097, + 7050 + ]], + [[ + 7050, + 7097, + 7048 + ]], + [[ + 7099, + 7098, + 7070 + ]], + [[ + 7070, + 7098, + 7050 + ]], + [[ + 7100, + 7099, + 7071 + ]], + [[ + 7071, + 7099, + 7070 + ]], + [[ + 7101, + 7100, + 7055 + ]], + [[ + 7055, + 7100, + 7071 + ]], + [[ + 7102, + 7101, + 7103 + ]], + [[ + 7103, + 7101, + 7104 + ]], + [[ + 7104, + 7101, + 7072 + ]], + [[ + 7072, + 7101, + 7055 + ]], + [[ + 7074, + 7102, + 7075 + ]], + [[ + 7075, + 7102, + 7103 + ]], + [[ + 7075, + 7103, + 7076 + ]], + [[ + 7076, + 7103, + 7104 + ]], + [[ + 7076, + 7104, + 7056 + ]], + [[ + 7056, + 7104, + 7072 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc2685-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:29.9)", + "identificatiebagpnd": "503100000017313", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027141)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027140)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 7.11999988555908, + "min-height-surface": -0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84907.181 447503.812)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:136-138)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7105, + 7106, + 7056 + ]], + [[ + 7107, + 7108, + 7109 + ]], + [[ + 7105, + 7056, + 7109 + ]], + [[ + 7109, + 7110, + 7107 + ]], + [[ + 7109, + 7056, + 7110 + ]], + [[ + 7110, + 7056, + 7045 + ]], + [[ + 7106, + 7111, + 7056 + ]], + [[ + 7112, + 7113, + 7114 + ]], + [[ + 7114, + 7113, + 1874 + ]], + [[ + 7114, + 1874, + 7115 + ]], + [[ + 7115, + 1874, + 7116 + ]], + [[ + 7115, + 7116, + 7105 + ]], + [[ + 7105, + 7116, + 7106 + ]], + [[ + 7117, + 7112, + 7109 + ]], + [[ + 7109, + 7112, + 7114 + ]], + [[ + 7109, + 7114, + 7115 + ]], + [[ + 7109, + 7115, + 7105 + ]], + [[ + 7118, + 7117, + 7108 + ]], + [[ + 7108, + 7117, + 7109 + ]], + [[ + 7119, + 7118, + 7107 + ]], + [[ + 7107, + 7118, + 7108 + ]], + [[ + 7120, + 7119, + 7110 + ]], + [[ + 7110, + 7119, + 7107 + ]], + [[ + 7121, + 7120, + 7073 + ]], + [[ + 7073, + 7120, + 7045 + ]], + [[ + 7045, + 7120, + 7110 + ]], + [[ + 7122, + 7121, + 7074 + ]], + [[ + 7074, + 7121, + 7073 + ]], + [[ + 7074, + 7073, + 7075 + ]], + [[ + 7075, + 7073, + 7076 + ]], + [[ + 7076, + 7073, + 7056 + ]], + [[ + 7056, + 7073, + 7045 + ]], + [[ + 7123, + 7122, + 1877 + ]], + [[ + 1877, + 7122, + 7074 + ]], + [[ + 1877, + 7074, + 7075 + ]], + [[ + 1877, + 7075, + 7124 + ]], + [[ + 7124, + 7075, + 7076 + ]], + [[ + 7124, + 7076, + 7111 + ]], + [[ + 7111, + 7076, + 7056 + ]], + [[ + 7113, + 7123, + 1874 + ]], + [[ + 1874, + 7123, + 7116 + ]], + [[ + 7116, + 7123, + 7106 + ]], + [[ + 7106, + 7123, + 1877 + ]], + [[ + 7106, + 1877, + 7124 + ]], + [[ + 7106, + 7124, + 7111 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc268a-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000017314", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027099)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.32999992370605, + "min-height-surface": 0.0700000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84911.581 447513.461)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:3)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7125, + 7126, + 7127 + ]], + [[ + 7125, + 7127, + 7128 + ]], + [[ + 7129, + 7076, + 7124 + ]], + [[ + 7130, + 7127, + 7126 + ]], + [[ + 7129, + 7104, + 7076 + ]], + [[ + 7129, + 7131, + 7104 + ]], + [[ + 7104, + 7131, + 7132 + ]], + [[ + 7129, + 7127, + 7131 + ]], + [[ + 7133, + 7134, + 7127 + ]], + [[ + 7131, + 7127, + 7134 + ]], + [[ + 7134, + 7135, + 7136 + ]], + [[ + 7135, + 7134, + 7133 + ]], + [[ + 7137, + 7130, + 7126 + ]], + [[ + 7133, + 7127, + 7130 + ]], + [[ + 1878, + 7138, + 7139 + ]], + [[ + 7139, + 7138, + 7140 + ]], + [[ + 7139, + 7140, + 7125 + ]], + [[ + 7125, + 7140, + 7126 + ]], + [[ + 1873, + 1878, + 7128 + ]], + [[ + 7128, + 1878, + 7139 + ]], + [[ + 7128, + 7139, + 7125 + ]], + [[ + 1870, + 1873, + 7127 + ]], + [[ + 7127, + 1873, + 7128 + ]], + [[ + 1871, + 1870, + 7129 + ]], + [[ + 7129, + 1870, + 7127 + ]], + [[ + 1877, + 1871, + 7124 + ]], + [[ + 7124, + 1871, + 7129 + ]], + [[ + 7075, + 1877, + 7076 + ]], + [[ + 7076, + 1877, + 7124 + ]], + [[ + 7103, + 7075, + 7104 + ]], + [[ + 7104, + 7075, + 7076 + ]], + [[ + 7141, + 7103, + 7132 + ]], + [[ + 7132, + 7103, + 7104 + ]], + [[ + 7142, + 7141, + 7131 + ]], + [[ + 7131, + 7141, + 7132 + ]], + [[ + 7143, + 7142, + 7134 + ]], + [[ + 7134, + 7142, + 7131 + ]], + [[ + 7144, + 7143, + 7136 + ]], + [[ + 7136, + 7143, + 7134 + ]], + [[ + 7145, + 7144, + 7135 + ]], + [[ + 7135, + 7144, + 7136 + ]], + [[ + 7146, + 7145, + 7133 + ]], + [[ + 7133, + 7145, + 7135 + ]], + [[ + 7147, + 7146, + 7130 + ]], + [[ + 7130, + 7146, + 7133 + ]], + [[ + 7148, + 7147, + 7137 + ]], + [[ + 7137, + 7147, + 7130 + ]], + [[ + 7138, + 7148, + 7140 + ]], + [[ + 7140, + 7148, + 7126 + ]], + [[ + 7126, + 7148, + 7137 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc2699-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37.6)", + "identificatiebagpnd": "503100000032234", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027139)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027137)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.16000008583069, + "min-height-surface": -0.0199999995529652, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84911.526 447499.820)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:134-134A)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7149, + 7150, + 7151 + ]], + [[ + 7152, + 7153, + 7154 + ]], + [[ + 7150, + 7149, + 7154 + ]], + [[ + 7154, + 7155, + 7152 + ]], + [[ + 7152, + 7155, + 7156 + ]], + [[ + 7155, + 7154, + 7157 + ]], + [[ + 7157, + 7115, + 7158 + ]], + [[ + 7157, + 7154, + 7116 + ]], + [[ + 7158, + 7115, + 7159 + ]], + [[ + 7157, + 7116, + 7115 + ]], + [[ + 7154, + 7149, + 7116 + ]], + [[ + 7150, + 7160, + 7151 + ]], + [[ + 7151, + 7160, + 7161 + ]], + [[ + 7151, + 7161, + 7162 + ]], + [[ + 7163, + 7160, + 7164 + ]], + [[ + 7161, + 7165, + 7166 + ]], + [[ + 7161, + 7163, + 7165 + ]], + [[ + 7161, + 7160, + 7163 + ]], + [[ + 7167, + 7168, + 7150 + ]], + [[ + 7150, + 7168, + 7160 + ]], + [[ + 7169, + 7167, + 7154 + ]], + [[ + 7154, + 7167, + 7150 + ]], + [[ + 7170, + 7169, + 7153 + ]], + [[ + 7153, + 7169, + 7154 + ]], + [[ + 7171, + 7170, + 7152 + ]], + [[ + 7152, + 7170, + 7153 + ]], + [[ + 7172, + 7171, + 7156 + ]], + [[ + 7156, + 7171, + 7152 + ]], + [[ + 7173, + 7172, + 7155 + ]], + [[ + 7155, + 7172, + 7156 + ]], + [[ + 7174, + 7173, + 7157 + ]], + [[ + 7157, + 7173, + 7155 + ]], + [[ + 7175, + 7174, + 7158 + ]], + [[ + 7158, + 7174, + 7157 + ]], + [[ + 7176, + 7175, + 7159 + ]], + [[ + 7159, + 7175, + 7158 + ]], + [[ + 7114, + 7176, + 7115 + ]], + [[ + 7115, + 7176, + 7159 + ]], + [[ + 1874, + 7114, + 7116 + ]], + [[ + 7116, + 7114, + 7115 + ]], + [[ + 1868, + 1874, + 7149 + ]], + [[ + 7149, + 1874, + 7116 + ]], + [[ + 1865, + 1868, + 7151 + ]], + [[ + 7151, + 1868, + 7149 + ]], + [[ + 1866, + 1865, + 7162 + ]], + [[ + 7162, + 1865, + 7151 + ]], + [[ + 1861, + 1866, + 7161 + ]], + [[ + 7161, + 1866, + 7162 + ]], + [[ + 7177, + 1861, + 1862 + ]], + [[ + 1862, + 1861, + 7178 + ]], + [[ + 7178, + 1861, + 7166 + ]], + [[ + 7166, + 1861, + 7161 + ]], + [[ + 7179, + 7177, + 7180 + ]], + [[ + 7180, + 7177, + 1862 + ]], + [[ + 7180, + 1862, + 7181 + ]], + [[ + 7181, + 1862, + 7178 + ]], + [[ + 7181, + 7178, + 7165 + ]], + [[ + 7165, + 7178, + 7166 + ]], + [[ + 7182, + 7179, + 7163 + ]], + [[ + 7163, + 7179, + 7180 + ]], + [[ + 7163, + 7180, + 7181 + ]], + [[ + 7163, + 7181, + 7165 + ]], + [[ + 7183, + 7182, + 7164 + ]], + [[ + 7164, + 7182, + 7163 + ]], + [[ + 7168, + 7183, + 7160 + ]], + [[ + 7160, + 7183, + 7164 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc269e-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:30.9)", + "identificatiebagpnd": "503100000017310", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027136)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.1800000667572, + "min-height-surface": -0.0199999995529652, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84912.622 447497.659)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:132)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7184, + 7185, + 7186 + ]], + [[ + 7186, + 7185, + 7187 + ]], + [[ + 7185, + 7184, + 7188 + ]], + [[ + 7185, + 7189, + 7190 + ]], + [[ + 7185, + 7188, + 7189 + ]], + [[ + 7188, + 7191, + 7192 + ]], + [[ + 7189, + 7188, + 7192 + ]], + [[ + 7184, + 7193, + 7188 + ]], + [[ + 7194, + 7195, + 7196 + ]], + [[ + 7196, + 7195, + 7197 + ]], + [[ + 7196, + 7197, + 7184 + ]], + [[ + 7184, + 7197, + 7193 + ]], + [[ + 7198, + 7194, + 7186 + ]], + [[ + 7186, + 7194, + 7196 + ]], + [[ + 7186, + 7196, + 7184 + ]], + [[ + 7199, + 7198, + 7187 + ]], + [[ + 7187, + 7198, + 7186 + ]], + [[ + 7200, + 7199, + 7185 + ]], + [[ + 7185, + 7199, + 7187 + ]], + [[ + 7167, + 7200, + 7150 + ]], + [[ + 7150, + 7200, + 7190 + ]], + [[ + 7190, + 7200, + 7185 + ]], + [[ + 7168, + 7167, + 7160 + ]], + [[ + 7160, + 7167, + 7150 + ]], + [[ + 7160, + 7150, + 7189 + ]], + [[ + 7189, + 7150, + 7190 + ]], + [[ + 7201, + 7168, + 7192 + ]], + [[ + 7192, + 7168, + 7160 + ]], + [[ + 7192, + 7160, + 7189 + ]], + [[ + 7202, + 7201, + 7191 + ]], + [[ + 7191, + 7201, + 7192 + ]], + [[ + 7203, + 7202, + 7188 + ]], + [[ + 7188, + 7202, + 7191 + ]], + [[ + 7195, + 7203, + 7197 + ]], + [[ + 7197, + 7203, + 7193 + ]], + [[ + 7193, + 7203, + 7188 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc26a3-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000022787", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027101)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027100)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.02999997138977, + "min-height-surface": 0.0599999986588955, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84913.581 447515.061)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:5-7)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7181, + 7204, + 7205 + ]], + [[ + 7178, + 7181, + 7205 + ]], + [[ + 7206, + 7207, + 7205 + ]], + [[ + 7205, + 7207, + 7178 + ]], + [[ + 7206, + 7139, + 7207 + ]], + [[ + 7206, + 7140, + 7139 + ]], + [[ + 7208, + 7206, + 7209 + ]], + [[ + 7210, + 7206, + 7211 + ]], + [[ + 7140, + 7208, + 7212 + ]], + [[ + 7140, + 7206, + 7208 + ]], + [[ + 7209, + 7206, + 7210 + ]], + [[ + 7213, + 7209, + 7210 + ]], + [[ + 7214, + 7215, + 7206 + ]], + [[ + 7206, + 7215, + 7216 + ]], + [[ + 7206, + 7216, + 7211 + ]], + [[ + 7217, + 7214, + 7205 + ]], + [[ + 7205, + 7214, + 7206 + ]], + [[ + 7218, + 7217, + 7204 + ]], + [[ + 7204, + 7217, + 7205 + ]], + [[ + 7180, + 7218, + 7181 + ]], + [[ + 7181, + 7218, + 7204 + ]], + [[ + 1862, + 7180, + 7178 + ]], + [[ + 7178, + 7180, + 7181 + ]], + [[ + 1879, + 1862, + 7207 + ]], + [[ + 7207, + 1862, + 7178 + ]], + [[ + 7219, + 1879, + 1878 + ]], + [[ + 1878, + 1879, + 7139 + ]], + [[ + 7139, + 1879, + 7207 + ]], + [[ + 7220, + 7219, + 7138 + ]], + [[ + 7138, + 7219, + 1878 + ]], + [[ + 7138, + 1878, + 7140 + ]], + [[ + 7140, + 1878, + 7139 + ]], + [[ + 7221, + 7220, + 7212 + ]], + [[ + 7212, + 7220, + 7138 + ]], + [[ + 7212, + 7138, + 7140 + ]], + [[ + 7222, + 7221, + 7208 + ]], + [[ + 7208, + 7221, + 7212 + ]], + [[ + 7223, + 7222, + 7209 + ]], + [[ + 7209, + 7222, + 7208 + ]], + [[ + 7224, + 7223, + 7213 + ]], + [[ + 7213, + 7223, + 7209 + ]], + [[ + 7225, + 7224, + 7226 + ]], + [[ + 7226, + 7224, + 7210 + ]], + [[ + 7210, + 7224, + 7213 + ]], + [[ + 7215, + 7225, + 7216 + ]], + [[ + 7216, + 7225, + 7226 + ]], + [[ + 7216, + 7226, + 7211 + ]], + [[ + 7211, + 7226, + 7210 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc26a8-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:30.9)", + "identificatiebagpnd": "503100000017303", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027135)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027134)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.75999999046326, + "min-height-surface": -0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84918.038 447495.615)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:130-130A)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7227, + 7228, + 7229 + ]], + [[ + 7228, + 7230, + 7231 + ]], + [[ + 7228, + 7227, + 7197 + ]], + [[ + 7232, + 7233, + 7234 + ]], + [[ + 7235, + 7232, + 7230 + ]], + [[ + 7232, + 7235, + 7233 + ]], + [[ + 7233, + 7235, + 7236 + ]], + [[ + 7236, + 7235, + 7237 + ]], + [[ + 7232, + 7231, + 7230 + ]], + [[ + 7230, + 7228, + 7238 + ]], + [[ + 7238, + 7228, + 7197 + ]], + [[ + 7239, + 7238, + 7196 + ]], + [[ + 7240, + 7239, + 7196 + ]], + [[ + 7238, + 7197, + 7196 + ]], + [[ + 7227, + 7241, + 7197 + ]], + [[ + 7227, + 7242, + 7241 + ]], + [[ + 7243, + 7244, + 7227 + ]], + [[ + 7227, + 7244, + 7242 + ]], + [[ + 7245, + 7243, + 7229 + ]], + [[ + 7229, + 7243, + 7227 + ]], + [[ + 7246, + 7245, + 7228 + ]], + [[ + 7228, + 7245, + 7229 + ]], + [[ + 7247, + 7246, + 7231 + ]], + [[ + 7231, + 7246, + 7228 + ]], + [[ + 7248, + 7247, + 7232 + ]], + [[ + 7232, + 7247, + 7231 + ]], + [[ + 7249, + 7248, + 7234 + ]], + [[ + 7234, + 7248, + 7232 + ]], + [[ + 1005, + 7249, + 7233 + ]], + [[ + 7233, + 7249, + 7234 + ]], + [[ + 998, + 1005, + 7236 + ]], + [[ + 7236, + 1005, + 7233 + ]], + [[ + 996, + 998, + 7237 + ]], + [[ + 7237, + 998, + 7236 + ]], + [[ + 1002, + 996, + 7235 + ]], + [[ + 7235, + 996, + 7237 + ]], + [[ + 1000, + 1002, + 7230 + ]], + [[ + 7230, + 1002, + 7235 + ]], + [[ + 1001, + 1000, + 7238 + ]], + [[ + 7238, + 1000, + 7230 + ]], + [[ + 999, + 1001, + 7239 + ]], + [[ + 7239, + 1001, + 7238 + ]], + [[ + 997, + 999, + 7240 + ]], + [[ + 7240, + 999, + 7239 + ]], + [[ + 7250, + 997, + 7194 + ]], + [[ + 7194, + 997, + 7196 + ]], + [[ + 7196, + 997, + 7240 + ]], + [[ + 7251, + 7250, + 7195 + ]], + [[ + 7195, + 7250, + 7194 + ]], + [[ + 7195, + 7194, + 7197 + ]], + [[ + 7197, + 7194, + 7196 + ]], + [[ + 7252, + 7251, + 7241 + ]], + [[ + 7241, + 7251, + 7195 + ]], + [[ + 7241, + 7195, + 7197 + ]], + [[ + 7244, + 7252, + 7242 + ]], + [[ + 7242, + 7252, + 7241 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc4dbd-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.8)", + "identificatiebagpnd": "503100000022788", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027103)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027102)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 5.8600001335144, + "min-height-surface": 0.0700000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84917.758 447517.943)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:9-11)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7253, + 7254, + 7255 + ]], + [[ + 7256, + 7257, + 7258 + ]], + [[ + 7258, + 7257, + 7259 + ]], + [[ + 7256, + 7254, + 7253 + ]], + [[ + 7257, + 7256, + 7253 + ]], + [[ + 7253, + 7255, + 7260 + ]], + [[ + 7254, + 7261, + 7255 + ]], + [[ + 7262, + 7263, + 6753 + ]], + [[ + 6753, + 7263, + 6754 + ]], + [[ + 6753, + 6754, + 6740 + ]], + [[ + 6740, + 6754, + 6742 + ]], + [[ + 6740, + 6742, + 7256 + ]], + [[ + 7256, + 6742, + 7254 + ]], + [[ + 7264, + 7262, + 7258 + ]], + [[ + 7258, + 7262, + 6753 + ]], + [[ + 7258, + 6753, + 6740 + ]], + [[ + 7258, + 6740, + 7256 + ]], + [[ + 7265, + 7264, + 7259 + ]], + [[ + 7259, + 7264, + 7258 + ]], + [[ + 7266, + 7265, + 7257 + ]], + [[ + 7257, + 7265, + 7259 + ]], + [[ + 7267, + 7266, + 7253 + ]], + [[ + 7253, + 7266, + 7257 + ]], + [[ + 7268, + 7267, + 7260 + ]], + [[ + 7260, + 7267, + 7253 + ]], + [[ + 7216, + 7268, + 7211 + ]], + [[ + 7211, + 7268, + 7255 + ]], + [[ + 7255, + 7268, + 7260 + ]], + [[ + 7226, + 7216, + 7210 + ]], + [[ + 7210, + 7216, + 7211 + ]], + [[ + 7210, + 7211, + 7261 + ]], + [[ + 7261, + 7211, + 7255 + ]], + [[ + 7263, + 7226, + 6754 + ]], + [[ + 6754, + 7226, + 6742 + ]], + [[ + 6742, + 7226, + 7254 + ]], + [[ + 7254, + 7226, + 7210 + ]], + [[ + 7254, + 7210, + 7261 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc4dc2-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:22.9)", + "identificatiebagpnd": "503100000017311", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027133)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6.1399998664856, + "min-height-surface": -0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84928.992 447490.710)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:80)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7269, + 7270, + 7271 + ]], + [[ + 7270, + 7272, + 7271 + ]], + [[ + 7271, + 7272, + 7273 + ]], + [[ + 7273, + 7272, + 7274 + ]], + [[ + 7275, + 7274, + 7272 + ]], + [[ + 7272, + 7270, + 7276 + ]], + [[ + 6696, + 6698, + 6688 + ]], + [[ + 6688, + 6698, + 6692 + ]], + [[ + 6688, + 6692, + 7269 + ]], + [[ + 7269, + 6692, + 7270 + ]], + [[ + 6694, + 6696, + 6689 + ]], + [[ + 6689, + 6696, + 6688 + ]], + [[ + 6689, + 6688, + 7271 + ]], + [[ + 7271, + 6688, + 7269 + ]], + [[ + 7277, + 6694, + 7273 + ]], + [[ + 7273, + 6694, + 6689 + ]], + [[ + 7273, + 6689, + 7271 + ]], + [[ + 7278, + 7277, + 7274 + ]], + [[ + 7274, + 7277, + 7273 + ]], + [[ + 7279, + 7278, + 7275 + ]], + [[ + 7275, + 7278, + 7274 + ]], + [[ + 1263, + 7279, + 7272 + ]], + [[ + 7272, + 7279, + 7275 + ]], + [[ + 1158, + 1263, + 6691 + ]], + [[ + 6691, + 1263, + 7276 + ]], + [[ + 7276, + 1263, + 7272 + ]], + [[ + 6698, + 1158, + 6692 + ]], + [[ + 6692, + 1158, + 6691 + ]], + [[ + 6692, + 6691, + 7270 + ]], + [[ + 7270, + 6691, + 7276 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc4dc7-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000026304", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003296)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6.05999994277954, + "min-height-surface": 0.140000000596046, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84947.427 447599.451)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:36)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7280, + 7281, + 7282 + ]], + [[ + 7283, + 7280, + 7282 + ]], + [[ + 7284, + 7280, + 7283 + ]], + [[ + 7284, + 7285, + 7280 + ]], + [[ + 7284, + 7286, + 7285 + ]], + [[ + 7285, + 7286, + 7287 + ]], + [[ + 7288, + 7289, + 543 + ]], + [[ + 543, + 7289, + 544 + ]], + [[ + 543, + 544, + 528 + ]], + [[ + 528, + 544, + 531 + ]], + [[ + 528, + 531, + 7284 + ]], + [[ + 7284, + 531, + 7286 + ]], + [[ + 7290, + 7288, + 7291 + ]], + [[ + 7291, + 7288, + 7292 + ]], + [[ + 7292, + 7288, + 7283 + ]], + [[ + 7283, + 7288, + 543 + ]], + [[ + 7283, + 543, + 528 + ]], + [[ + 7283, + 528, + 7284 + ]], + [[ + 7293, + 7290, + 7294 + ]], + [[ + 7294, + 7290, + 7291 + ]], + [[ + 7294, + 7291, + 7295 + ]], + [[ + 7295, + 7291, + 7292 + ]], + [[ + 7295, + 7292, + 7282 + ]], + [[ + 7282, + 7292, + 7283 + ]], + [[ + 7296, + 7293, + 7281 + ]], + [[ + 7281, + 7293, + 7294 + ]], + [[ + 7281, + 7294, + 7295 + ]], + [[ + 7281, + 7295, + 7282 + ]], + [[ + 7297, + 7296, + 7280 + ]], + [[ + 7280, + 7296, + 7281 + ]], + [[ + 7298, + 7297, + 7285 + ]], + [[ + 7285, + 7297, + 7280 + ]], + [[ + 7299, + 7298, + 7287 + ]], + [[ + 7287, + 7298, + 7285 + ]], + [[ + 7289, + 7299, + 544 + ]], + [[ + 544, + 7299, + 531 + ]], + [[ + 531, + 7299, + 7286 + ]], + [[ + 7286, + 7299, + 7287 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc4dcc-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000026305", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003295)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0454c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 4.51000022888184, + "min-height-surface": 0.150000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84941.552 447605.645)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:35)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7292, + 7300, + 7301 + ]], + [[ + 7300, + 7292, + 7302 + ]], + [[ + 7303, + 7300, + 7302 + ]], + [[ + 7304, + 7292, + 7295 + ]], + [[ + 7305, + 7302, + 7306 + ]], + [[ + 7305, + 7306, + 7307 + ]], + [[ + 7302, + 7292, + 7304 + ]], + [[ + 7308, + 7304, + 7295 + ]], + [[ + 7306, + 7302, + 7304 + ]], + [[ + 7308, + 7295, + 7309 + ]], + [[ + 7291, + 7294, + 7292 + ]], + [[ + 7292, + 7294, + 7295 + ]], + [[ + 7310, + 7291, + 7301 + ]], + [[ + 7301, + 7291, + 7292 + ]], + [[ + 7311, + 7310, + 7300 + ]], + [[ + 7300, + 7310, + 7301 + ]], + [[ + 7312, + 7311, + 7303 + ]], + [[ + 7303, + 7311, + 7300 + ]], + [[ + 7313, + 7312, + 7314 + ]], + [[ + 7314, + 7312, + 7315 + ]], + [[ + 7315, + 7312, + 7302 + ]], + [[ + 7302, + 7312, + 7303 + ]], + [[ + 7316, + 7313, + 7317 + ]], + [[ + 7317, + 7313, + 7314 + ]], + [[ + 7317, + 7314, + 7318 + ]], + [[ + 7318, + 7314, + 7315 + ]], + [[ + 7318, + 7315, + 7305 + ]], + [[ + 7305, + 7315, + 7302 + ]], + [[ + 7319, + 7316, + 7307 + ]], + [[ + 7307, + 7316, + 7317 + ]], + [[ + 7307, + 7317, + 7318 + ]], + [[ + 7307, + 7318, + 7305 + ]], + [[ + 7320, + 7319, + 7306 + ]], + [[ + 7306, + 7319, + 7307 + ]], + [[ + 7321, + 7320, + 7304 + ]], + [[ + 7304, + 7320, + 7306 + ]], + [[ + 7322, + 7321, + 7308 + ]], + [[ + 7308, + 7321, + 7304 + ]], + [[ + 7323, + 7322, + 7309 + ]], + [[ + 7309, + 7322, + 7308 + ]], + [[ + 7294, + 7323, + 7295 + ]], + [[ + 7295, + 7323, + 7309 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc751d-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36)", + "identificatiebagpnd": "503100000026236", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027040)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0455949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.03999996185303, + "min-height-surface": 0.400000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84899.425 447577.136)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:35)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7324, + 7325, + 7326 + ]], + [[ + 7324, + 7327, + 7328 + ]], + [[ + 7324, + 7326, + 7327 + ]], + [[ + 7325, + 7329, + 7326 + ]], + [[ + 7326, + 7329, + 7330 + ]], + [[ + 7331, + 7332, + 7333 + ]], + [[ + 7333, + 7332, + 2312 + ]], + [[ + 7333, + 2312, + 7324 + ]], + [[ + 7324, + 2312, + 7325 + ]], + [[ + 7334, + 7331, + 2284 + ]], + [[ + 2284, + 7331, + 7333 + ]], + [[ + 2284, + 7333, + 7328 + ]], + [[ + 7328, + 7333, + 7324 + ]], + [[ + 7335, + 7334, + 2285 + ]], + [[ + 2285, + 7334, + 7336 + ]], + [[ + 7336, + 7334, + 7327 + ]], + [[ + 7327, + 7334, + 2284 + ]], + [[ + 7327, + 2284, + 7328 + ]], + [[ + 7337, + 7335, + 7338 + ]], + [[ + 7338, + 7335, + 2285 + ]], + [[ + 7338, + 2285, + 7339 + ]], + [[ + 7339, + 2285, + 7336 + ]], + [[ + 7339, + 7336, + 7326 + ]], + [[ + 7326, + 7336, + 7327 + ]], + [[ + 7340, + 7337, + 7341 + ]], + [[ + 7341, + 7337, + 7338 + ]], + [[ + 7341, + 7338, + 7342 + ]], + [[ + 7342, + 7338, + 7339 + ]], + [[ + 7342, + 7339, + 7330 + ]], + [[ + 7330, + 7339, + 7326 + ]], + [[ + 2311, + 7340, + 7329 + ]], + [[ + 7329, + 7340, + 7341 + ]], + [[ + 7329, + 7341, + 7342 + ]], + [[ + 7329, + 7342, + 7330 + ]], + [[ + 7332, + 2311, + 2312 + ]], + [[ + 2312, + 2311, + 7325 + ]], + [[ + 7325, + 2311, + 7329 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc7522-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36)", + "identificatiebagpnd": "503100000026232", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027041)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0455a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.24000000953674, + "min-height-surface": 0.419999986886978, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84902.334 447579.308)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:37)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7343, + 7344, + 7345 + ]], + [[ + 7346, + 7347, + 7348 + ]], + [[ + 7346, + 7345, + 7344 + ]], + [[ + 7346, + 7344, + 7347 + ]], + [[ + 7343, + 7349, + 7344 + ]], + [[ + 7343, + 7350, + 7351 + ]], + [[ + 7349, + 7343, + 7351 + ]], + [[ + 2298, + 7352, + 7343 + ]], + [[ + 7343, + 7352, + 2297 + ]], + [[ + 7343, + 2297, + 7353 + ]], + [[ + 7343, + 7353, + 7350 + ]], + [[ + 2294, + 2298, + 7345 + ]], + [[ + 7345, + 2298, + 7343 + ]], + [[ + 2295, + 2294, + 7346 + ]], + [[ + 7346, + 2294, + 7345 + ]], + [[ + 2287, + 2295, + 7348 + ]], + [[ + 7348, + 2295, + 7346 + ]], + [[ + 2284, + 2287, + 7328 + ]], + [[ + 7328, + 2287, + 7347 + ]], + [[ + 7347, + 2287, + 7348 + ]], + [[ + 7333, + 2284, + 7324 + ]], + [[ + 7324, + 2284, + 7328 + ]], + [[ + 7324, + 7328, + 7344 + ]], + [[ + 7344, + 7328, + 7347 + ]], + [[ + 2312, + 7333, + 7325 + ]], + [[ + 7325, + 7333, + 7324 + ]], + [[ + 7325, + 7324, + 7349 + ]], + [[ + 7349, + 7324, + 7344 + ]], + [[ + 7354, + 2312, + 2308 + ]], + [[ + 2308, + 2312, + 7355 + ]], + [[ + 7355, + 2312, + 7351 + ]], + [[ + 7351, + 2312, + 7325 + ]], + [[ + 7351, + 7325, + 7349 + ]], + [[ + 7352, + 7354, + 2297 + ]], + [[ + 2297, + 7354, + 2308 + ]], + [[ + 2297, + 2308, + 7353 + ]], + [[ + 7353, + 2308, + 7355 + ]], + [[ + 7353, + 7355, + 7350 + ]], + [[ + 7350, + 7355, + 7351 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c37-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000026230", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027051)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0455b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.9300000667572, + "min-height-surface": 0.300000011920929, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84902.625 447604.950)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:57)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7356, + 7357, + 7358 + ]], + [[ + 7356, + 7358, + 7359 + ]], + [[ + 7358, + 7357, + 7360 + ]], + [[ + 7358, + 7360, + 7361 + ]], + [[ + 2624, + 7362, + 7356 + ]], + [[ + 7356, + 7362, + 7357 + ]], + [[ + 2432, + 2624, + 7359 + ]], + [[ + 7359, + 2624, + 7356 + ]], + [[ + 2428, + 2432, + 7358 + ]], + [[ + 7358, + 2432, + 7359 + ]], + [[ + 2724, + 2428, + 7361 + ]], + [[ + 7361, + 2428, + 7358 + ]], + [[ + 7363, + 2724, + 7360 + ]], + [[ + 7360, + 2724, + 7361 + ]], + [[ + 7362, + 7363, + 7357 + ]], + [[ + 7357, + 7363, + 7360 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c3c-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36)", + "identificatiebagpnd": "503100000026224", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027042)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0455c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.02999997138977, + "min-height-surface": 0.479999989271164, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84905.401 447581.619)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:39)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7364, + 7355, + 7365 + ]], + [[ + 7355, + 7353, + 7365 + ]], + [[ + 7353, + 7366, + 7367 + ]], + [[ + 7368, + 7353, + 7367 + ]], + [[ + 7365, + 7353, + 7368 + ]], + [[ + 2322, + 2308, + 7364 + ]], + [[ + 7364, + 2308, + 7355 + ]], + [[ + 2414, + 2322, + 7365 + ]], + [[ + 7365, + 2322, + 7364 + ]], + [[ + 2669, + 2414, + 7368 + ]], + [[ + 7368, + 2414, + 7365 + ]], + [[ + 2507, + 2669, + 7367 + ]], + [[ + 7367, + 2669, + 7368 + ]], + [[ + 2290, + 2507, + 7366 + ]], + [[ + 7366, + 2507, + 7367 + ]], + [[ + 2297, + 2290, + 7353 + ]], + [[ + 7353, + 2290, + 7366 + ]], + [[ + 2308, + 2297, + 7355 + ]], + [[ + 7355, + 2297, + 7353 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c41-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000032721", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027052)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0455d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.94000005722046, + "min-height-surface": 0.300000011920929, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84905.591 447607.059)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:59)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7369, + 7370, + 7371 + ]], + [[ + 7372, + 7373, + 7374 + ]], + [[ + 7371, + 7375, + 7374 + ]], + [[ + 7370, + 7376, + 7371 + ]], + [[ + 7374, + 7375, + 7372 + ]], + [[ + 7372, + 7377, + 7378 + ]], + [[ + 7372, + 7375, + 7377 + ]], + [[ + 7371, + 7376, + 7375 + ]], + [[ + 7379, + 7380, + 2449 + ]], + [[ + 2449, + 7380, + 7381 + ]], + [[ + 2449, + 7381, + 7369 + ]], + [[ + 7369, + 7381, + 7370 + ]], + [[ + 2447, + 7379, + 7371 + ]], + [[ + 7371, + 7379, + 2449 + ]], + [[ + 7371, + 2449, + 7369 + ]], + [[ + 2443, + 2447, + 7374 + ]], + [[ + 7374, + 2447, + 7371 + ]], + [[ + 2444, + 2443, + 7373 + ]], + [[ + 7373, + 2443, + 7374 + ]], + [[ + 2451, + 2444, + 7372 + ]], + [[ + 7372, + 2444, + 7373 + ]], + [[ + 2438, + 2451, + 7378 + ]], + [[ + 7378, + 2451, + 7372 + ]], + [[ + 2439, + 2438, + 7377 + ]], + [[ + 7377, + 2438, + 7378 + ]], + [[ + 2624, + 2439, + 7356 + ]], + [[ + 7356, + 2439, + 7375 + ]], + [[ + 7375, + 2439, + 7377 + ]], + [[ + 7362, + 2624, + 7357 + ]], + [[ + 7357, + 2624, + 7356 + ]], + [[ + 7357, + 7356, + 7376 + ]], + [[ + 7376, + 7356, + 7375 + ]], + [[ + 7380, + 7362, + 7381 + ]], + [[ + 7381, + 7362, + 7370 + ]], + [[ + 7370, + 7362, + 7357 + ]], + [[ + 7370, + 7357, + 7376 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c46-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000026228", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027053)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0455e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.01999998092651, + "min-height-surface": 0.310000002384186, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84908.575 447609.097)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:61)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7382, + 7383, + 7384 + ]], + [[ + 7382, + 7384, + 7385 + ]], + [[ + 7383, + 7386, + 7384 + ]], + [[ + 7387, + 7388, + 2454 + ]], + [[ + 2454, + 7388, + 7389 + ]], + [[ + 2454, + 7389, + 7382 + ]], + [[ + 7382, + 7389, + 7383 + ]], + [[ + 2445, + 7387, + 7385 + ]], + [[ + 7385, + 7387, + 2454 + ]], + [[ + 7385, + 2454, + 7382 + ]], + [[ + 2449, + 2445, + 7369 + ]], + [[ + 7369, + 2445, + 7384 + ]], + [[ + 7384, + 2445, + 7385 + ]], + [[ + 7381, + 2449, + 7370 + ]], + [[ + 7370, + 2449, + 7369 + ]], + [[ + 7370, + 7369, + 7386 + ]], + [[ + 7386, + 7369, + 7384 + ]], + [[ + 7388, + 7381, + 7389 + ]], + [[ + 7389, + 7381, + 7383 + ]], + [[ + 7383, + 7381, + 7370 + ]], + [[ + 7383, + 7370, + 7386 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c4b-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000026229", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027054)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0455f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.02999997138977, + "min-height-surface": 0.319999992847443, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84912.042 447611.640)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:63)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7390, + 7391, + 7392 + ]], + [[ + 7393, + 7390, + 7392 + ]], + [[ + 7391, + 7390, + 7394 + ]], + [[ + 7390, + 7393, + 7395 + ]], + [[ + 7393, + 7396, + 7395 + ]], + [[ + 7393, + 7397, + 7398 + ]], + [[ + 7396, + 7393, + 7398 + ]], + [[ + 7399, + 7400, + 7393 + ]], + [[ + 7393, + 7400, + 7397 + ]], + [[ + 7401, + 7399, + 7392 + ]], + [[ + 7392, + 7399, + 7393 + ]], + [[ + 2630, + 7401, + 7391 + ]], + [[ + 7391, + 7401, + 7392 + ]], + [[ + 2440, + 2630, + 7394 + ]], + [[ + 7394, + 2630, + 7391 + ]], + [[ + 2453, + 2440, + 7390 + ]], + [[ + 7390, + 2440, + 7394 + ]], + [[ + 2454, + 2453, + 7382 + ]], + [[ + 7382, + 2453, + 7395 + ]], + [[ + 7395, + 2453, + 7390 + ]], + [[ + 7389, + 2454, + 7383 + ]], + [[ + 7383, + 2454, + 7382 + ]], + [[ + 7383, + 7382, + 7396 + ]], + [[ + 7396, + 7382, + 7395 + ]], + [[ + 7402, + 7389, + 7398 + ]], + [[ + 7398, + 7389, + 7383 + ]], + [[ + 7398, + 7383, + 7396 + ]], + [[ + 7400, + 7402, + 7397 + ]], + [[ + 7397, + 7402, + 7398 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c50-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.2)", + "identificatiebagpnd": "503100000026227", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027055)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.24000000953674, + "min-height-surface": 0.46000000834465, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84920.220 447592.293)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:67)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7403, + 7404, + 7405 + ]], + [[ + 7403, + 7406, + 7407 + ]], + [[ + 7404, + 7403, + 7408 + ]], + [[ + 7408, + 7403, + 7407 + ]], + [[ + 7407, + 7406, + 7409 + ]], + [[ + 2491, + 2714, + 7410 + ]], + [[ + 7410, + 2714, + 7411 + ]], + [[ + 7410, + 7411, + 7403 + ]], + [[ + 7403, + 7411, + 7406 + ]], + [[ + 2492, + 2491, + 7405 + ]], + [[ + 7405, + 2491, + 7410 + ]], + [[ + 7405, + 7410, + 7403 + ]], + [[ + 2508, + 2492, + 7404 + ]], + [[ + 7404, + 2492, + 7405 + ]], + [[ + 2596, + 2508, + 7408 + ]], + [[ + 7408, + 2508, + 7404 + ]], + [[ + 2649, + 2596, + 7412 + ]], + [[ + 7412, + 2596, + 7407 + ]], + [[ + 7407, + 2596, + 7408 + ]], + [[ + 2461, + 2649, + 7413 + ]], + [[ + 7413, + 2649, + 7412 + ]], + [[ + 7413, + 7412, + 7409 + ]], + [[ + 7409, + 7412, + 7407 + ]], + [[ + 2714, + 2461, + 7411 + ]], + [[ + 7411, + 2461, + 7406 + ]], + [[ + 7406, + 2461, + 7413 + ]], + [[ + 7406, + 7413, + 7409 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c53-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000026226", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.08999991416931, + "min-height-surface": 0.449999988079071, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7412, + 7413, + 7414 + ]], + [[ + 7412, + 7414, + 7415 + ]], + [[ + 7413, + 7416, + 7414 + ]], + [[ + 7417, + 7418, + 2649 + ]], + [[ + 2649, + 7418, + 2461 + ]], + [[ + 2649, + 2461, + 7412 + ]], + [[ + 7412, + 2461, + 7413 + ]], + [[ + 2430, + 7417, + 7415 + ]], + [[ + 7415, + 7417, + 2649 + ]], + [[ + 7415, + 2649, + 7412 + ]], + [[ + 2431, + 2430, + 7414 + ]], + [[ + 7414, + 2430, + 7415 + ]], + [[ + 2441, + 2431, + 7416 + ]], + [[ + 7416, + 2431, + 7414 + ]], + [[ + 7418, + 2441, + 2461 + ]], + [[ + 2461, + 2441, + 7413 + ]], + [[ + 7413, + 2441, + 7416 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c58-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000017319", + "identificatiebagvbohoogstehuisnummer": "(1:503010000003291)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003290)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.95000004768372, + "min-height-surface": 0.310000002384186, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84925.993 447620.937)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:30-31)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7419, + 7420, + 7421 + ]], + [[ + 7422, + 7423, + 7424 + ]], + [[ + 7423, + 7425, + 7426 + ]], + [[ + 7424, + 7423, + 7426 + ]], + [[ + 7427, + 7422, + 7424 + ]], + [[ + 7428, + 7429, + 7430 + ]], + [[ + 7427, + 7431, + 7422 + ]], + [[ + 7432, + 7431, + 7433 + ]], + [[ + 7432, + 7434, + 7435 + ]], + [[ + 7432, + 7433, + 7434 + ]], + [[ + 7434, + 7433, + 7436 + ]], + [[ + 7431, + 7437, + 7433 + ]], + [[ + 7431, + 7427, + 7428 + ]], + [[ + 7437, + 7431, + 7428 + ]], + [[ + 7430, + 7437, + 7428 + ]], + [[ + 7421, + 7438, + 7427 + ]], + [[ + 7419, + 7421, + 7439 + ]], + [[ + 7428, + 7427, + 7440 + ]], + [[ + 7441, + 7440, + 7438 + ]], + [[ + 7441, + 7438, + 7442 + ]], + [[ + 7440, + 7427, + 7438 + ]], + [[ + 7438, + 7421, + 7443 + ]], + [[ + 7443, + 7444, + 7445 + ]], + [[ + 7443, + 7420, + 7444 + ]], + [[ + 7443, + 7421, + 7420 + ]], + [[ + 7446, + 7419, + 7439 + ]], + [[ + 7447, + 7419, + 7446 + ]], + [[ + 7448, + 7449, + 7421 + ]], + [[ + 7421, + 7449, + 7439 + ]], + [[ + 7450, + 7448, + 7427 + ]], + [[ + 7427, + 7448, + 7421 + ]], + [[ + 7451, + 7450, + 7424 + ]], + [[ + 7424, + 7450, + 7427 + ]], + [[ + 7452, + 7451, + 7426 + ]], + [[ + 7426, + 7451, + 7424 + ]], + [[ + 7453, + 7452, + 7425 + ]], + [[ + 7425, + 7452, + 7426 + ]], + [[ + 7454, + 7453, + 7423 + ]], + [[ + 7423, + 7453, + 7425 + ]], + [[ + 7455, + 7454, + 7422 + ]], + [[ + 7422, + 7454, + 7423 + ]], + [[ + 7456, + 7455, + 7431 + ]], + [[ + 7431, + 7455, + 7422 + ]], + [[ + 7457, + 7456, + 7432 + ]], + [[ + 7432, + 7456, + 7431 + ]], + [[ + 7458, + 7457, + 7435 + ]], + [[ + 7435, + 7457, + 7432 + ]], + [[ + 7459, + 7458, + 7434 + ]], + [[ + 7434, + 7458, + 7435 + ]], + [[ + 7460, + 7459, + 7436 + ]], + [[ + 7436, + 7459, + 7434 + ]], + [[ + 7461, + 7460, + 7433 + ]], + [[ + 7433, + 7460, + 7436 + ]], + [[ + 7462, + 7461, + 7437 + ]], + [[ + 7437, + 7461, + 7433 + ]], + [[ + 7463, + 7462, + 7430 + ]], + [[ + 7430, + 7462, + 7437 + ]], + [[ + 7464, + 7463, + 7429 + ]], + [[ + 7429, + 7463, + 7430 + ]], + [[ + 7465, + 7464, + 7428 + ]], + [[ + 7428, + 7464, + 7429 + ]], + [[ + 7466, + 7465, + 7440 + ]], + [[ + 7440, + 7465, + 7428 + ]], + [[ + 7467, + 7466, + 7441 + ]], + [[ + 7441, + 7466, + 7440 + ]], + [[ + 7468, + 7467, + 7442 + ]], + [[ + 7442, + 7467, + 7441 + ]], + [[ + 7469, + 7468, + 7438 + ]], + [[ + 7438, + 7468, + 7442 + ]], + [[ + 7470, + 7469, + 7443 + ]], + [[ + 7443, + 7469, + 7438 + ]], + [[ + 7471, + 7470, + 7445 + ]], + [[ + 7445, + 7470, + 7443 + ]], + [[ + 7472, + 7471, + 7444 + ]], + [[ + 7444, + 7471, + 7445 + ]], + [[ + 7473, + 7472, + 7420 + ]], + [[ + 7420, + 7472, + 7444 + ]], + [[ + 7474, + 7473, + 7419 + ]], + [[ + 7419, + 7473, + 7420 + ]], + [[ + 7475, + 7474, + 7447 + ]], + [[ + 7447, + 7474, + 7419 + ]], + [[ + 7476, + 7475, + 7446 + ]], + [[ + 7446, + 7475, + 7447 + ]], + [[ + 7449, + 7476, + 7439 + ]], + [[ + 7439, + 7476, + 7446 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c5d-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.2)", + "identificatiebagpnd": "503100000026225", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027057)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.19000005722046, + "min-height-surface": 0.46000000834465, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84922.501 447589.020)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:69)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7477, + 7478, + 7479 + ]], + [[ + 7477, + 7479, + 7480 + ]], + [[ + 7479, + 7478, + 7411 + ]], + [[ + 7479, + 7411, + 7410 + ]], + [[ + 7481, + 7482, + 2497 + ]], + [[ + 2497, + 7482, + 2618 + ]], + [[ + 2497, + 2618, + 7483 + ]], + [[ + 7483, + 2618, + 7484 + ]], + [[ + 7483, + 7484, + 7477 + ]], + [[ + 7477, + 7484, + 7478 + ]], + [[ + 2489, + 7481, + 7480 + ]], + [[ + 7480, + 7481, + 2497 + ]], + [[ + 7480, + 2497, + 7483 + ]], + [[ + 7480, + 7483, + 7477 + ]], + [[ + 2490, + 2489, + 7479 + ]], + [[ + 7479, + 2489, + 7480 + ]], + [[ + 2491, + 2490, + 7410 + ]], + [[ + 7410, + 2490, + 7479 + ]], + [[ + 2714, + 2491, + 7411 + ]], + [[ + 7411, + 2491, + 7410 + ]], + [[ + 7482, + 2714, + 2618 + ]], + [[ + 2618, + 2714, + 7484 + ]], + [[ + 7484, + 2714, + 7478 + ]], + [[ + 7478, + 2714, + 7411 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bc9c62-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.2)", + "identificatiebagpnd": "503100000032720", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027059)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3, + "min-height-surface": 0.490000009536743, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84924.685 447585.981)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:71)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7485, + 7486, + 7487 + ]], + [[ + 7485, + 7487, + 7488 + ]], + [[ + 7486, + 7489, + 7487 + ]], + [[ + 7487, + 7490, + 7491 + ]], + [[ + 7490, + 7483, + 7492 + ]], + [[ + 7493, + 7490, + 7489 + ]], + [[ + 7492, + 7494, + 7495 + ]], + [[ + 7492, + 7483, + 7494 + ]], + [[ + 7490, + 7484, + 7483 + ]], + [[ + 7490, + 7493, + 7484 + ]], + [[ + 7490, + 7487, + 7489 + ]], + [[ + 2262, + 2517, + 7496 + ]], + [[ + 7496, + 2517, + 7497 + ]], + [[ + 7496, + 7497, + 7485 + ]], + [[ + 7485, + 7497, + 7486 + ]], + [[ + 2260, + 2262, + 7488 + ]], + [[ + 7488, + 2262, + 7496 + ]], + [[ + 7488, + 7496, + 7485 + ]], + [[ + 2302, + 2260, + 7487 + ]], + [[ + 7487, + 2260, + 7488 + ]], + [[ + 2486, + 2302, + 7491 + ]], + [[ + 7491, + 2302, + 7487 + ]], + [[ + 2511, + 2486, + 7490 + ]], + [[ + 7490, + 2486, + 7491 + ]], + [[ + 2470, + 2511, + 7492 + ]], + [[ + 7492, + 2511, + 7490 + ]], + [[ + 2498, + 2470, + 7495 + ]], + [[ + 7495, + 2470, + 7492 + ]], + [[ + 2499, + 2498, + 7494 + ]], + [[ + 7494, + 2498, + 7495 + ]], + [[ + 2497, + 2499, + 7483 + ]], + [[ + 7483, + 2499, + 7494 + ]], + [[ + 2618, + 2497, + 7484 + ]], + [[ + 7484, + 2497, + 7483 + ]], + [[ + 2619, + 2618, + 7493 + ]], + [[ + 7493, + 2618, + 7484 + ]], + [[ + 2518, + 2619, + 7489 + ]], + [[ + 7489, + 2619, + 7493 + ]], + [[ + 2517, + 2518, + 7497 + ]], + [[ + 7497, + 2518, + 7486 + ]], + [[ + 7486, + 2518, + 7489 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bcc275-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000026308", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 4.05999994277954, + "min-height-surface": 0.209999993443489, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7498, + 7499, + 7500 + ]], + [[ + 7498, + 7500, + 7501 + ]], + [[ + 7501, + 7500, + 7502 + ]], + [[ + 7503, + 7504, + 7505 + ]], + [[ + 7505, + 7504, + 7506 + ]], + [[ + 7505, + 7506, + 7498 + ]], + [[ + 7498, + 7506, + 7499 + ]], + [[ + 7507, + 7503, + 7448 + ]], + [[ + 7448, + 7503, + 7421 + ]], + [[ + 7421, + 7503, + 7501 + ]], + [[ + 7501, + 7503, + 7505 + ]], + [[ + 7501, + 7505, + 7498 + ]], + [[ + 7508, + 7507, + 7449 + ]], + [[ + 7449, + 7507, + 7448 + ]], + [[ + 7449, + 7448, + 7439 + ]], + [[ + 7439, + 7448, + 7421 + ]], + [[ + 7439, + 7421, + 7502 + ]], + [[ + 7502, + 7421, + 7501 + ]], + [[ + 7509, + 7508, + 7500 + ]], + [[ + 7500, + 7508, + 7449 + ]], + [[ + 7500, + 7449, + 7439 + ]], + [[ + 7500, + 7439, + 7502 + ]], + [[ + 7504, + 7509, + 7506 + ]], + [[ + 7506, + 7509, + 7499 + ]], + [[ + 7499, + 7509, + 7500 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bcc27a-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000026307", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000060887)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.96000003814697, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84933.650 447613.578)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:33)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7510, + 7511, + 7506 + ]], + [[ + 7510, + 7505, + 7512 + ]], + [[ + 7512, + 7505, + 7513 + ]], + [[ + 7510, + 7506, + 7505 + ]], + [[ + 7514, + 7515, + 7510 + ]], + [[ + 7510, + 7515, + 7511 + ]], + [[ + 7516, + 7514, + 7512 + ]], + [[ + 7512, + 7514, + 7510 + ]], + [[ + 7517, + 7516, + 7513 + ]], + [[ + 7513, + 7516, + 7512 + ]], + [[ + 7518, + 7517, + 7503 + ]], + [[ + 7503, + 7517, + 7505 + ]], + [[ + 7505, + 7517, + 7513 + ]], + [[ + 7519, + 7518, + 7504 + ]], + [[ + 7504, + 7518, + 7503 + ]], + [[ + 7504, + 7503, + 7506 + ]], + [[ + 7506, + 7503, + 7505 + ]], + [[ + 7515, + 7519, + 7511 + ]], + [[ + 7511, + 7519, + 7504 + ]], + [[ + 7511, + 7504, + 7506 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bcc27f-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000026306", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003294)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.99000000953674, + "min-height-surface": 0.159999996423721, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84939.538 447607.795)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:34)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7315, + 7318, + 7520 + ]], + [[ + 7315, + 7521, + 7522 + ]], + [[ + 7521, + 7523, + 7524 + ]], + [[ + 7525, + 7526, + 7523 + ]], + [[ + 7521, + 7525, + 7523 + ]], + [[ + 7526, + 7525, + 7527 + ]], + [[ + 7521, + 7520, + 7525 + ]], + [[ + 7521, + 7315, + 7520 + ]], + [[ + 7520, + 7318, + 7528 + ]], + [[ + 7314, + 7317, + 7315 + ]], + [[ + 7315, + 7317, + 7318 + ]], + [[ + 7529, + 7314, + 7522 + ]], + [[ + 7522, + 7314, + 7315 + ]], + [[ + 7530, + 7529, + 7521 + ]], + [[ + 7521, + 7529, + 7522 + ]], + [[ + 7531, + 7530, + 7514 + ]], + [[ + 7514, + 7530, + 7510 + ]], + [[ + 7510, + 7530, + 7524 + ]], + [[ + 7524, + 7530, + 7521 + ]], + [[ + 7532, + 7531, + 7515 + ]], + [[ + 7515, + 7531, + 7514 + ]], + [[ + 7515, + 7514, + 7511 + ]], + [[ + 7511, + 7514, + 7510 + ]], + [[ + 7511, + 7510, + 7523 + ]], + [[ + 7523, + 7510, + 7524 + ]], + [[ + 7533, + 7532, + 7526 + ]], + [[ + 7526, + 7532, + 7515 + ]], + [[ + 7526, + 7515, + 7511 + ]], + [[ + 7526, + 7511, + 7523 + ]], + [[ + 7534, + 7533, + 7527 + ]], + [[ + 7527, + 7533, + 7526 + ]], + [[ + 7535, + 7534, + 7525 + ]], + [[ + 7525, + 7534, + 7527 + ]], + [[ + 7536, + 7535, + 7520 + ]], + [[ + 7520, + 7535, + 7525 + ]], + [[ + 7537, + 7536, + 7528 + ]], + [[ + 7528, + 7536, + 7520 + ]], + [[ + 7317, + 7537, + 7318 + ]], + [[ + 7318, + 7537, + 7528 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bcc293-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.3)", + "identificatiebagpnd": "503100000026220", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027028)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 5.55000019073486, + "min-height-surface": 0.180000007152557, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84865.905 447577.729)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:11)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7538, + 7539, + 7540 + ]], + [[ + 7538, + 7540, + 7541 + ]], + [[ + 7539, + 7542, + 7540 + ]], + [[ + 7543, + 7544, + 2051 + ]], + [[ + 2051, + 7544, + 7545 + ]], + [[ + 2051, + 7545, + 7546 + ]], + [[ + 7546, + 7545, + 7547 + ]], + [[ + 7546, + 7547, + 7538 + ]], + [[ + 7538, + 7547, + 7539 + ]], + [[ + 2174, + 7543, + 7541 + ]], + [[ + 7541, + 7543, + 2051 + ]], + [[ + 7541, + 2051, + 7546 + ]], + [[ + 7541, + 7546, + 7538 + ]], + [[ + 1932, + 2174, + 7548 + ]], + [[ + 7548, + 2174, + 7540 + ]], + [[ + 7540, + 2174, + 7541 + ]], + [[ + 7549, + 1932, + 7550 + ]], + [[ + 7550, + 1932, + 7548 + ]], + [[ + 7550, + 7548, + 7542 + ]], + [[ + 7542, + 7548, + 7540 + ]], + [[ + 7544, + 7549, + 7545 + ]], + [[ + 7545, + 7549, + 7547 + ]], + [[ + 7547, + 7549, + 7539 + ]], + [[ + 7539, + 7549, + 7550 + ]], + [[ + 7539, + 7550, + 7542 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bcc29d-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.3)", + "identificatiebagpnd": "503100000026221", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027029)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 4.6100001335144, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84870.014 447581.083)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:13)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7551, + 7552, + 7553 + ]], + [[ + 7551, + 7554, + 7547 + ]], + [[ + 7552, + 7551, + 7546 + ]], + [[ + 7555, + 7552, + 7546 + ]], + [[ + 7546, + 7551, + 7547 + ]], + [[ + 7556, + 7557, + 7558 + ]], + [[ + 7558, + 7557, + 7559 + ]], + [[ + 7559, + 7557, + 7560 + ]], + [[ + 7559, + 7560, + 7551 + ]], + [[ + 7551, + 7560, + 7554 + ]], + [[ + 7561, + 7556, + 7562 + ]], + [[ + 7562, + 7556, + 7558 + ]], + [[ + 7562, + 7558, + 7563 + ]], + [[ + 7563, + 7558, + 7559 + ]], + [[ + 7563, + 7559, + 7553 + ]], + [[ + 7553, + 7559, + 7551 + ]], + [[ + 7564, + 7561, + 2023 + ]], + [[ + 2023, + 7561, + 7562 + ]], + [[ + 2023, + 7562, + 7565 + ]], + [[ + 7565, + 7562, + 7563 + ]], + [[ + 7565, + 7563, + 7552 + ]], + [[ + 7552, + 7563, + 7553 + ]], + [[ + 2021, + 7564, + 7555 + ]], + [[ + 7555, + 7564, + 2023 + ]], + [[ + 7555, + 2023, + 7565 + ]], + [[ + 7555, + 7565, + 7552 + ]], + [[ + 2051, + 2021, + 7546 + ]], + [[ + 7546, + 2021, + 7555 + ]], + [[ + 7545, + 2051, + 7547 + ]], + [[ + 7547, + 2051, + 7546 + ]], + [[ + 7557, + 7545, + 7560 + ]], + [[ + 7560, + 7545, + 7554 + ]], + [[ + 7554, + 7545, + 7547 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bce9b7-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.3)", + "identificatiebagpnd": "503100000017403", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027030)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0456f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.75999999046326, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84873.014 447583.083)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:15)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7566, + 7559, + 7567 + ]], + [[ + 7566, + 7568, + 7559 + ]], + [[ + 7559, + 7568, + 7560 + ]], + [[ + 7560, + 7568, + 7569 + ]], + [[ + 7570, + 7571, + 7566 + ]], + [[ + 7566, + 7571, + 7568 + ]], + [[ + 7572, + 7570, + 7573 + ]], + [[ + 7573, + 7570, + 7567 + ]], + [[ + 7567, + 7570, + 7566 + ]], + [[ + 7556, + 7572, + 7558 + ]], + [[ + 7558, + 7572, + 7573 + ]], + [[ + 7558, + 7573, + 7559 + ]], + [[ + 7559, + 7573, + 7567 + ]], + [[ + 7557, + 7556, + 7560 + ]], + [[ + 7560, + 7556, + 7558 + ]], + [[ + 7560, + 7558, + 7559 + ]], + [[ + 7574, + 7557, + 7569 + ]], + [[ + 7569, + 7557, + 7560 + ]], + [[ + 7571, + 7574, + 7568 + ]], + [[ + 7568, + 7574, + 7569 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bce9c1-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000017318", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027043)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0457149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.75, + "min-height-surface": 0.219999998807907, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84877.536 447586.302)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:41)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7575, + 7576, + 7577 + ]], + [[ + 7575, + 7577, + 7578 + ]], + [[ + 7577, + 7576, + 7579 + ]], + [[ + 7580, + 7577, + 7579 + ]], + [[ + 7580, + 7579, + 7581 + ]], + [[ + 7582, + 7583, + 2360 + ]], + [[ + 2360, + 7583, + 7584 + ]], + [[ + 2360, + 7584, + 7575 + ]], + [[ + 7575, + 7584, + 7576 + ]], + [[ + 2358, + 7582, + 7578 + ]], + [[ + 7578, + 7582, + 2360 + ]], + [[ + 7578, + 2360, + 7575 + ]], + [[ + 2350, + 2358, + 7577 + ]], + [[ + 7577, + 2358, + 7578 + ]], + [[ + 2351, + 2350, + 7580 + ]], + [[ + 7580, + 2350, + 7577 + ]], + [[ + 2354, + 2351, + 7581 + ]], + [[ + 7581, + 2351, + 7580 + ]], + [[ + 7585, + 2354, + 7579 + ]], + [[ + 7579, + 2354, + 7581 + ]], + [[ + 7583, + 7585, + 7584 + ]], + [[ + 7584, + 7585, + 7576 + ]], + [[ + 7576, + 7585, + 7579 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bce9c6-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:52.7)", + "identificatiebagpnd": "503100000017422", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027031)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0457249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.75999999046326, + "min-height-surface": 0.280000001192093, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84879.588 447573.483)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:17)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7563, + 7586, + 7559 + ]], + [[ + 7587, + 7563, + 7588 + ]], + [[ + 7588, + 7589, + 7590 + ]], + [[ + 7588, + 7563, + 7589 + ]], + [[ + 7589, + 7563, + 7565 + ]], + [[ + 7587, + 7586, + 7563 + ]], + [[ + 7586, + 7591, + 7559 + ]], + [[ + 7559, + 7591, + 7567 + ]], + [[ + 7592, + 7593, + 7587 + ]], + [[ + 7587, + 7593, + 7586 + ]], + [[ + 7594, + 7592, + 7588 + ]], + [[ + 7588, + 7592, + 7587 + ]], + [[ + 7595, + 7594, + 7596 + ]], + [[ + 7596, + 7594, + 7590 + ]], + [[ + 7590, + 7594, + 7588 + ]], + [[ + 7597, + 7595, + 2128 + ]], + [[ + 2128, + 7595, + 7596 + ]], + [[ + 2128, + 7596, + 7589 + ]], + [[ + 7589, + 7596, + 7590 + ]], + [[ + 2023, + 7597, + 7565 + ]], + [[ + 7565, + 7597, + 2128 + ]], + [[ + 7565, + 2128, + 7589 + ]], + [[ + 7562, + 2023, + 7563 + ]], + [[ + 7563, + 2023, + 7565 + ]], + [[ + 7558, + 7562, + 7559 + ]], + [[ + 7559, + 7562, + 7563 + ]], + [[ + 7573, + 7558, + 7567 + ]], + [[ + 7567, + 7558, + 7559 + ]], + [[ + 7598, + 7573, + 7591 + ]], + [[ + 7591, + 7573, + 7567 + ]], + [[ + 7593, + 7598, + 7586 + ]], + [[ + 7586, + 7598, + 7591 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bce9cb-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000017409", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027044)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0457349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.9300000667572, + "min-height-surface": 0.230000004172325, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84880.543 447588.458)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:43)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7599, + 7600, + 7601 + ]], + [[ + 7602, + 7603, + 7601 + ]], + [[ + 7600, + 7604, + 7601 + ]], + [[ + 7601, + 7604, + 7602 + ]], + [[ + 7605, + 7606, + 2371 + ]], + [[ + 2371, + 7606, + 7607 + ]], + [[ + 2371, + 7607, + 7608 + ]], + [[ + 7608, + 7607, + 7609 + ]], + [[ + 7608, + 7609, + 7599 + ]], + [[ + 7599, + 7609, + 7600 + ]], + [[ + 2710, + 7605, + 7601 + ]], + [[ + 7601, + 7605, + 2371 + ]], + [[ + 7601, + 2371, + 7608 + ]], + [[ + 7601, + 7608, + 7599 + ]], + [[ + 2368, + 2710, + 7603 + ]], + [[ + 7603, + 2710, + 7601 + ]], + [[ + 2360, + 2368, + 7575 + ]], + [[ + 7575, + 2368, + 7602 + ]], + [[ + 7602, + 2368, + 7603 + ]], + [[ + 7584, + 2360, + 7576 + ]], + [[ + 7576, + 2360, + 7575 + ]], + [[ + 7576, + 7575, + 7604 + ]], + [[ + 7604, + 7575, + 7602 + ]], + [[ + 7606, + 7584, + 7607 + ]], + [[ + 7607, + 7584, + 7609 + ]], + [[ + 7609, + 7584, + 7600 + ]], + [[ + 7600, + 7584, + 7576 + ]], + [[ + 7600, + 7576, + 7604 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bce9d5-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000026231", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027045)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0457549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.92000007629395, + "min-height-surface": 0.259999990463257, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84884.043 447591.158)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:45)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7610, + 7611, + 7612 + ]], + [[ + 7610, + 7612, + 7613 + ]], + [[ + 7612, + 7611, + 7609 + ]], + [[ + 7612, + 7614, + 7615 + ]], + [[ + 7614, + 7612, + 7609 + ]], + [[ + 7614, + 7609, + 7616 + ]], + [[ + 7616, + 7609, + 7608 + ]], + [[ + 7617, + 7618, + 2602 + ]], + [[ + 2602, + 7618, + 7619 + ]], + [[ + 2602, + 7619, + 7620 + ]], + [[ + 7620, + 7619, + 7621 + ]], + [[ + 7620, + 7621, + 7610 + ]], + [[ + 7610, + 7621, + 7611 + ]], + [[ + 2362, + 7617, + 7613 + ]], + [[ + 7613, + 7617, + 2602 + ]], + [[ + 7613, + 2602, + 7620 + ]], + [[ + 7613, + 7620, + 7610 + ]], + [[ + 2376, + 2362, + 7612 + ]], + [[ + 7612, + 2362, + 7613 + ]], + [[ + 2344, + 2376, + 7615 + ]], + [[ + 7615, + 2376, + 7612 + ]], + [[ + 2372, + 2344, + 7614 + ]], + [[ + 7614, + 2344, + 7615 + ]], + [[ + 2345, + 2372, + 7616 + ]], + [[ + 7616, + 2372, + 7614 + ]], + [[ + 2371, + 2345, + 7608 + ]], + [[ + 7608, + 2345, + 7616 + ]], + [[ + 7607, + 2371, + 7609 + ]], + [[ + 7609, + 2371, + 7608 + ]], + [[ + 7618, + 7607, + 7619 + ]], + [[ + 7619, + 7607, + 7621 + ]], + [[ + 7621, + 7607, + 7611 + ]], + [[ + 7611, + 7607, + 7609 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bce9df-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000029881", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027046)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0457749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.85999989509583, + "min-height-surface": 0.280000001192093, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84886.747 447592.960)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:47)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7620, + 7622, + 7623 + ]], + [[ + 7624, + 7620, + 7623 + ]], + [[ + 7622, + 7625, + 7626 + ]], + [[ + 7622, + 7620, + 7625 + ]], + [[ + 7624, + 7621, + 7620 + ]], + [[ + 7624, + 7627, + 7628 + ]], + [[ + 7621, + 7624, + 7628 + ]], + [[ + 2386, + 2388, + 7624 + ]], + [[ + 7624, + 2388, + 7629 + ]], + [[ + 7624, + 7629, + 7627 + ]], + [[ + 2384, + 2386, + 7623 + ]], + [[ + 7623, + 2386, + 7624 + ]], + [[ + 2373, + 2384, + 7622 + ]], + [[ + 7622, + 2384, + 7623 + ]], + [[ + 2374, + 2373, + 7626 + ]], + [[ + 7626, + 2373, + 7622 + ]], + [[ + 2603, + 2374, + 7625 + ]], + [[ + 7625, + 2374, + 7626 + ]], + [[ + 2602, + 2603, + 7620 + ]], + [[ + 7620, + 2603, + 7625 + ]], + [[ + 7619, + 2602, + 7621 + ]], + [[ + 7621, + 2602, + 7620 + ]], + [[ + 7630, + 7619, + 7631 + ]], + [[ + 7631, + 7619, + 7628 + ]], + [[ + 7628, + 7619, + 7621 + ]], + [[ + 2388, + 7630, + 7629 + ]], + [[ + 7629, + 7630, + 7631 + ]], + [[ + 7629, + 7631, + 7627 + ]], + [[ + 7627, + 7631, + 7628 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd10f5-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000029882", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0457949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.84999990463257, + "min-height-surface": 0.280000001192093, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7632, + 7633, + 7634 + ]], + [[ + 7632, + 7634, + 7635 + ]], + [[ + 7634, + 7633, + 7629 + ]], + [[ + 7634, + 7629, + 7636 + ]], + [[ + 7633, + 7631, + 7629 + ]], + [[ + 2401, + 7637, + 7632 + ]], + [[ + 7632, + 7637, + 7633 + ]], + [[ + 2631, + 2401, + 7635 + ]], + [[ + 7635, + 2401, + 7632 + ]], + [[ + 2739, + 2631, + 7634 + ]], + [[ + 7634, + 2631, + 7635 + ]], + [[ + 2387, + 2739, + 7636 + ]], + [[ + 7636, + 2739, + 7634 + ]], + [[ + 2388, + 2387, + 7629 + ]], + [[ + 7629, + 2387, + 7636 + ]], + [[ + 7630, + 2388, + 7631 + ]], + [[ + 7631, + 2388, + 7629 + ]], + [[ + 7637, + 7630, + 7633 + ]], + [[ + 7633, + 7630, + 7631 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd10ff-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000017424", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000054296)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0457b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.84999990463257, + "min-height-surface": 0.280000001192093, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84892.280 447597.016)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:51)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7638, + 7639, + 7640 + ]], + [[ + 7639, + 7633, + 7640 + ]], + [[ + 7640, + 7641, + 7642 + ]], + [[ + 7641, + 7640, + 7633 + ]], + [[ + 7641, + 7633, + 7632 + ]], + [[ + 2406, + 7643, + 7638 + ]], + [[ + 7638, + 7643, + 7639 + ]], + [[ + 2405, + 2406, + 7640 + ]], + [[ + 7640, + 2406, + 7638 + ]], + [[ + 2402, + 2405, + 7642 + ]], + [[ + 7642, + 2405, + 7640 + ]], + [[ + 2403, + 2402, + 7641 + ]], + [[ + 7641, + 2402, + 7642 + ]], + [[ + 2401, + 2403, + 7632 + ]], + [[ + 7632, + 2403, + 7641 + ]], + [[ + 7637, + 2401, + 7633 + ]], + [[ + 7633, + 2401, + 7632 + ]], + [[ + 7643, + 7637, + 7639 + ]], + [[ + 7639, + 7637, + 7633 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd110e-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-37)", + "identificatiebagpnd": "503100000017410", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000061316)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0457e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.02999997138977, + "min-height-surface": 0.270000010728836, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84896.941 447600.562)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:53)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7644, + 7645, + 7646 + ]], + [[ + 7644, + 7646, + 7647 + ]], + [[ + 7645, + 7648, + 7646 + ]], + [[ + 7649, + 7650, + 7651 + ]], + [[ + 7649, + 7646, + 7648 + ]], + [[ + 7649, + 7648, + 7650 + ]], + [[ + 7652, + 7653, + 2416 + ]], + [[ + 2416, + 7653, + 7654 + ]], + [[ + 2416, + 7654, + 7644 + ]], + [[ + 7644, + 7654, + 7645 + ]], + [[ + 2411, + 7652, + 7647 + ]], + [[ + 7647, + 7652, + 2416 + ]], + [[ + 7647, + 2416, + 7644 + ]], + [[ + 2413, + 2411, + 7646 + ]], + [[ + 7646, + 2411, + 7647 + ]], + [[ + 2412, + 2413, + 7649 + ]], + [[ + 7649, + 2413, + 7646 + ]], + [[ + 2677, + 2412, + 7651 + ]], + [[ + 7651, + 2412, + 7649 + ]], + [[ + 7655, + 2677, + 2406 + ]], + [[ + 2406, + 2677, + 7638 + ]], + [[ + 7638, + 2677, + 7650 + ]], + [[ + 7650, + 2677, + 7651 + ]], + [[ + 7656, + 7655, + 7643 + ]], + [[ + 7643, + 7655, + 2406 + ]], + [[ + 7643, + 2406, + 7639 + ]], + [[ + 7639, + 2406, + 7638 + ]], + [[ + 7639, + 7638, + 7648 + ]], + [[ + 7648, + 7638, + 7650 + ]], + [[ + 7653, + 7656, + 7654 + ]], + [[ + 7654, + 7656, + 7645 + ]], + [[ + 7645, + 7656, + 7643 + ]], + [[ + 7645, + 7643, + 7639 + ]], + [[ + 7645, + 7639, + 7648 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd1111-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000017407", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0457f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.11999988555908, + "min-height-surface": 0.28999999165535, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7657, + 7658, + 7659 + ]], + [[ + 7660, + 7661, + 7659 + ]], + [[ + 7658, + 7662, + 7659 + ]], + [[ + 7661, + 7660, + 7663 + ]], + [[ + 7659, + 7662, + 7660 + ]], + [[ + 7664, + 7665, + 2724 + ]], + [[ + 2724, + 7665, + 7363 + ]], + [[ + 2724, + 7363, + 7361 + ]], + [[ + 7361, + 7363, + 7360 + ]], + [[ + 7361, + 7360, + 7657 + ]], + [[ + 7657, + 7360, + 7658 + ]], + [[ + 2659, + 7664, + 7659 + ]], + [[ + 7659, + 7664, + 2724 + ]], + [[ + 7659, + 2724, + 7361 + ]], + [[ + 7659, + 7361, + 7657 + ]], + [[ + 2575, + 2659, + 7661 + ]], + [[ + 7661, + 2659, + 7659 + ]], + [[ + 2661, + 2575, + 7663 + ]], + [[ + 7663, + 2575, + 7661 + ]], + [[ + 2416, + 2661, + 7644 + ]], + [[ + 7644, + 2661, + 7660 + ]], + [[ + 7660, + 2661, + 7663 + ]], + [[ + 7654, + 2416, + 7645 + ]], + [[ + 7645, + 2416, + 7644 + ]], + [[ + 7645, + 7644, + 7662 + ]], + [[ + 7662, + 7644, + 7660 + ]], + [[ + 7665, + 7654, + 7363 + ]], + [[ + 7363, + 7654, + 7360 + ]], + [[ + 7360, + 7654, + 7658 + ]], + [[ + 7658, + 7654, + 7645 + ]], + [[ + 7658, + 7645, + 7662 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd1116-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.3)", + "identificatiebagpnd": "503100000017412", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027024)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.01999998092651, + "min-height-surface": 0.0900000035762787, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84852.482 447568.060)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:3)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7666, + 7667, + 7668 + ]], + [[ + 7666, + 7669, + 7670 + ]], + [[ + 7667, + 7666, + 7670 + ]], + [[ + 7670, + 7669, + 375 + ]], + [[ + 374, + 7670, + 375 + ]], + [[ + 375, + 7669, + 7671 + ]], + [[ + 7672, + 7673, + 2001 + ]], + [[ + 2001, + 7673, + 7674 + ]], + [[ + 2001, + 7674, + 7666 + ]], + [[ + 7666, + 7674, + 7669 + ]], + [[ + 2093, + 7672, + 7668 + ]], + [[ + 7668, + 7672, + 2001 + ]], + [[ + 7668, + 2001, + 7666 + ]], + [[ + 1991, + 2093, + 7667 + ]], + [[ + 7667, + 2093, + 7668 + ]], + [[ + 1992, + 1991, + 7670 + ]], + [[ + 7670, + 1991, + 7667 + ]], + [[ + 383, + 1992, + 374 + ]], + [[ + 374, + 1992, + 7670 + ]], + [[ + 384, + 383, + 375 + ]], + [[ + 375, + 383, + 374 + ]], + [[ + 7675, + 384, + 7671 + ]], + [[ + 7671, + 384, + 375 + ]], + [[ + 7673, + 7675, + 7674 + ]], + [[ + 7674, + 7675, + 7669 + ]], + [[ + 7669, + 7675, + 7671 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd111b-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.3)", + "identificatiebagpnd": "503100000017420", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000054295)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.01999998092651, + "min-height-surface": 0.109999999403954, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84855.482 447570.260)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:5)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7676, + 7677, + 7669 + ]], + [[ + 7676, + 7669, + 7666 + ]], + [[ + 7678, + 7679, + 2000 + ]], + [[ + 2000, + 7679, + 7680 + ]], + [[ + 2000, + 7680, + 7676 + ]], + [[ + 7676, + 7680, + 7677 + ]], + [[ + 2001, + 7678, + 7666 + ]], + [[ + 7666, + 7678, + 2000 + ]], + [[ + 7666, + 2000, + 7676 + ]], + [[ + 7674, + 2001, + 7669 + ]], + [[ + 7669, + 2001, + 7666 + ]], + [[ + 7679, + 7674, + 7680 + ]], + [[ + 7680, + 7674, + 7677 + ]], + [[ + 7677, + 7674, + 7669 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd382e-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000017408", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.02999997138977, + "min-height-surface": 0.119999997317791, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7681, + 7682, + 7683 + ]], + [[ + 7681, + 7684, + 7685 + ]], + [[ + 7681, + 7683, + 7684 + ]], + [[ + 7686, + 7687, + 2003 + ]], + [[ + 2003, + 7687, + 7688 + ]], + [[ + 2003, + 7688, + 7681 + ]], + [[ + 7681, + 7688, + 7682 + ]], + [[ + 2000, + 7686, + 7676 + ]], + [[ + 7676, + 7686, + 7685 + ]], + [[ + 7685, + 7686, + 2003 + ]], + [[ + 7685, + 2003, + 7681 + ]], + [[ + 7680, + 2000, + 7677 + ]], + [[ + 7677, + 2000, + 7676 + ]], + [[ + 7677, + 7676, + 7684 + ]], + [[ + 7684, + 7676, + 7685 + ]], + [[ + 7689, + 7680, + 7683 + ]], + [[ + 7683, + 7680, + 7677 + ]], + [[ + 7683, + 7677, + 7684 + ]], + [[ + 7687, + 7689, + 7688 + ]], + [[ + 7688, + 7689, + 7682 + ]], + [[ + 7682, + 7689, + 7683 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd3833-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36.3)", + "identificatiebagpnd": "503100000026219", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027027)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.03999996185303, + "min-height-surface": 0.150000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84862.159 447575.143)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:9)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7548, + 7550, + 7690 + ]], + [[ + 7550, + 7691, + 7690 + ]], + [[ + 7692, + 7693, + 7694 + ]], + [[ + 7695, + 7692, + 7694 + ]], + [[ + 7690, + 7696, + 7694 + ]], + [[ + 7694, + 7696, + 7695 + ]], + [[ + 7690, + 7691, + 7696 + ]], + [[ + 7697, + 7698, + 1932 + ]], + [[ + 1932, + 7698, + 7549 + ]], + [[ + 1932, + 7549, + 7548 + ]], + [[ + 7548, + 7549, + 7550 + ]], + [[ + 2016, + 7697, + 7690 + ]], + [[ + 7690, + 7697, + 1932 + ]], + [[ + 7690, + 1932, + 7548 + ]], + [[ + 2010, + 2016, + 7694 + ]], + [[ + 7694, + 2016, + 7690 + ]], + [[ + 2011, + 2010, + 7693 + ]], + [[ + 7693, + 2010, + 7694 + ]], + [[ + 2017, + 2011, + 7692 + ]], + [[ + 7692, + 2011, + 7693 + ]], + [[ + 2007, + 2017, + 7695 + ]], + [[ + 7695, + 2017, + 7692 + ]], + [[ + 2003, + 2007, + 7681 + ]], + [[ + 7681, + 2007, + 7696 + ]], + [[ + 7696, + 2007, + 7695 + ]], + [[ + 7688, + 2003, + 7682 + ]], + [[ + 7682, + 2003, + 7681 + ]], + [[ + 7682, + 7681, + 7691 + ]], + [[ + 7691, + 7681, + 7696 + ]], + [[ + 7698, + 7688, + 7549 + ]], + [[ + 7549, + 7688, + 7550 + ]], + [[ + 7550, + 7688, + 7682 + ]], + [[ + 7550, + 7682, + 7691 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd384d-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.1)", + "identificatiebagpnd": "503100000017317", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027034)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.99000000953674, + "min-height-surface": 0.610000014305115, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84886.782 447557.084)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:21)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7699, + 7700, + 7701 + ]], + [[ + 7701, + 7700, + 7702 + ]], + [[ + 7699, + 7703, + 7700 + ]], + [[ + 7699, + 7704, + 7705 + ]], + [[ + 7703, + 7699, + 7705 + ]], + [[ + 7706, + 7705, + 7707 + ]], + [[ + 7705, + 7708, + 7707 + ]], + [[ + 7705, + 7704, + 7708 + ]], + [[ + 7709, + 7710, + 7699 + ]], + [[ + 7699, + 7710, + 7704 + ]], + [[ + 7711, + 7709, + 7701 + ]], + [[ + 7701, + 7709, + 7699 + ]], + [[ + 372, + 7711, + 355 + ]], + [[ + 355, + 7711, + 7702 + ]], + [[ + 7702, + 7711, + 7701 + ]], + [[ + 370, + 372, + 363 + ]], + [[ + 363, + 372, + 355 + ]], + [[ + 363, + 355, + 7700 + ]], + [[ + 7700, + 355, + 7702 + ]], + [[ + 341, + 370, + 323 + ]], + [[ + 323, + 370, + 361 + ]], + [[ + 361, + 370, + 363 + ]], + [[ + 361, + 363, + 7703 + ]], + [[ + 7703, + 363, + 7700 + ]], + [[ + 337, + 341, + 329 + ]], + [[ + 329, + 341, + 323 + ]], + [[ + 329, + 323, + 7705 + ]], + [[ + 7705, + 323, + 361 + ]], + [[ + 7705, + 361, + 7703 + ]], + [[ + 338, + 337, + 330 + ]], + [[ + 330, + 337, + 329 + ]], + [[ + 330, + 329, + 7706 + ]], + [[ + 7706, + 329, + 7705 + ]], + [[ + 7712, + 338, + 7707 + ]], + [[ + 7707, + 338, + 330 + ]], + [[ + 7707, + 330, + 7706 + ]], + [[ + 7713, + 7712, + 7708 + ]], + [[ + 7708, + 7712, + 7707 + ]], + [[ + 7710, + 7713, + 7704 + ]], + [[ + 7704, + 7713, + 7708 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd3852-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.1)", + "identificatiebagpnd": "503100000026237", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027035)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.13000011444092, + "min-height-surface": 0.5, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84902.062 447561.843)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:25)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7714, + 7715, + 7716 + ]], + [[ + 7716, + 7717, + 7718 + ]], + [[ + 7719, + 7720, + 7721 + ]], + [[ + 7717, + 7716, + 7715 + ]], + [[ + 7715, + 7714, + 7722 + ]], + [[ + 7714, + 7719, + 7722 + ]], + [[ + 7714, + 7720, + 7719 + ]], + [[ + 7723, + 7721, + 7724 + ]], + [[ + 7721, + 7725, + 7724 + ]], + [[ + 7721, + 7720, + 7725 + ]], + [[ + 7726, + 7727, + 7714 + ]], + [[ + 7714, + 7727, + 7720 + ]], + [[ + 7728, + 7726, + 7716 + ]], + [[ + 7716, + 7726, + 7714 + ]], + [[ + 7729, + 7728, + 7718 + ]], + [[ + 7718, + 7728, + 7716 + ]], + [[ + 7730, + 7729, + 7717 + ]], + [[ + 7717, + 7729, + 7718 + ]], + [[ + 7731, + 7730, + 7732 + ]], + [[ + 7732, + 7730, + 7733 + ]], + [[ + 7733, + 7730, + 7715 + ]], + [[ + 7715, + 7730, + 7717 + ]], + [[ + 7734, + 7731, + 2279 + ]], + [[ + 2279, + 7731, + 7732 + ]], + [[ + 2279, + 7732, + 7735 + ]], + [[ + 7735, + 7732, + 7733 + ]], + [[ + 7735, + 7733, + 7722 + ]], + [[ + 7722, + 7733, + 7715 + ]], + [[ + 2280, + 7734, + 7719 + ]], + [[ + 7719, + 7734, + 2279 + ]], + [[ + 7719, + 2279, + 7735 + ]], + [[ + 7719, + 7735, + 7722 + ]], + [[ + 2274, + 2280, + 7721 + ]], + [[ + 7721, + 2280, + 7719 + ]], + [[ + 2275, + 2274, + 7723 + ]], + [[ + 7723, + 2274, + 7721 + ]], + [[ + 7736, + 2275, + 7724 + ]], + [[ + 7724, + 2275, + 7723 + ]], + [[ + 7737, + 7736, + 7725 + ]], + [[ + 7725, + 7736, + 7724 + ]], + [[ + 7727, + 7737, + 7720 + ]], + [[ + 7720, + 7737, + 7725 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd3857-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36)", + "identificatiebagpnd": "503100000026234", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027037)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.3199999332428, + "min-height-surface": 0.400000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84889.601 447570.319)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:29)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7738, + 7739, + 7740 + ]], + [[ + 7739, + 7741, + 7740 + ]], + [[ + 7740, + 7741, + 7742 + ]], + [[ + 7742, + 7741, + 7743 + ]], + [[ + 7744, + 7745, + 7746 + ]], + [[ + 7746, + 7745, + 2580 + ]], + [[ + 7746, + 2580, + 7747 + ]], + [[ + 7747, + 2580, + 7748 + ]], + [[ + 7748, + 2580, + 7749 + ]], + [[ + 7749, + 2580, + 7750 + ]], + [[ + 7749, + 7750, + 7738 + ]], + [[ + 7738, + 7750, + 7739 + ]], + [[ + 7751, + 7744, + 7752 + ]], + [[ + 7752, + 7744, + 7746 + ]], + [[ + 7752, + 7746, + 7747 + ]], + [[ + 7752, + 7747, + 7753 + ]], + [[ + 7753, + 7747, + 7748 + ]], + [[ + 7753, + 7748, + 7740 + ]], + [[ + 7740, + 7748, + 7749 + ]], + [[ + 7740, + 7749, + 7738 + ]], + [[ + 7754, + 7751, + 7742 + ]], + [[ + 7742, + 7751, + 7752 + ]], + [[ + 7742, + 7752, + 7753 + ]], + [[ + 7742, + 7753, + 7740 + ]], + [[ + 7755, + 7754, + 7743 + ]], + [[ + 7743, + 7754, + 7742 + ]], + [[ + 2579, + 7755, + 7741 + ]], + [[ + 7741, + 7755, + 7743 + ]], + [[ + 7745, + 2579, + 2580 + ]], + [[ + 2580, + 2579, + 7750 + ]], + [[ + 7750, + 2579, + 7739 + ]], + [[ + 7739, + 2579, + 7741 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd5f6c-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.1)", + "identificatiebagpnd": "503100000033625", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027036)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.94000005722046, + "min-height-surface": 0.569999992847443, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84899.662 447565.129)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:27)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7733, + 7735, + 7756 + ]], + [[ + 7748, + 7757, + 7758 + ]], + [[ + 7748, + 7753, + 7757 + ]], + [[ + 7733, + 7756, + 7758 + ]], + [[ + 7758, + 7756, + 7748 + ]], + [[ + 7756, + 7735, + 7342 + ]], + [[ + 7735, + 7336, + 7342 + ]], + [[ + 7342, + 7336, + 7339 + ]], + [[ + 7732, + 2279, + 7733 + ]], + [[ + 7733, + 2279, + 7735 + ]], + [[ + 7759, + 7732, + 7758 + ]], + [[ + 7758, + 7732, + 7733 + ]], + [[ + 7760, + 7759, + 7757 + ]], + [[ + 7757, + 7759, + 7758 + ]], + [[ + 7752, + 7760, + 7753 + ]], + [[ + 7753, + 7760, + 7757 + ]], + [[ + 7747, + 7752, + 7748 + ]], + [[ + 7748, + 7752, + 7753 + ]], + [[ + 7761, + 7747, + 7756 + ]], + [[ + 7756, + 7747, + 7748 + ]], + [[ + 7341, + 7761, + 7342 + ]], + [[ + 7342, + 7761, + 7756 + ]], + [[ + 7338, + 7341, + 7339 + ]], + [[ + 7339, + 7341, + 7342 + ]], + [[ + 2285, + 7338, + 7336 + ]], + [[ + 7336, + 7338, + 7339 + ]], + [[ + 2279, + 2285, + 7735 + ]], + [[ + 7735, + 2285, + 7336 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd5f71-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:52.7)", + "identificatiebagpnd": "503100000026222", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027032)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 4.15000009536743, + "min-height-surface": 0.28999999165535, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84883.868 447567.309)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:19)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7762, + 7763, + 7764 + ]], + [[ + 7762, + 7765, + 7763 + ]], + [[ + 7766, + 7764, + 7767 + ]], + [[ + 7768, + 7766, + 7767 + ]], + [[ + 7767, + 7764, + 7763 + ]], + [[ + 7769, + 7596, + 7762 + ]], + [[ + 7762, + 7596, + 7590 + ]], + [[ + 7762, + 7590, + 7765 + ]], + [[ + 7770, + 7769, + 7764 + ]], + [[ + 7764, + 7769, + 7762 + ]], + [[ + 7771, + 7770, + 7766 + ]], + [[ + 7766, + 7770, + 7764 + ]], + [[ + 7772, + 7771, + 353 + ]], + [[ + 353, + 7771, + 333 + ]], + [[ + 333, + 7771, + 7768 + ]], + [[ + 7768, + 7771, + 7766 + ]], + [[ + 7773, + 7772, + 352 + ]], + [[ + 352, + 7772, + 353 + ]], + [[ + 352, + 353, + 334 + ]], + [[ + 334, + 353, + 333 + ]], + [[ + 334, + 333, + 7767 + ]], + [[ + 7767, + 333, + 7768 + ]], + [[ + 2128, + 7773, + 7589 + ]], + [[ + 7589, + 7773, + 7763 + ]], + [[ + 7763, + 7773, + 352 + ]], + [[ + 7763, + 352, + 334 + ]], + [[ + 7763, + 334, + 7767 + ]], + [[ + 7596, + 2128, + 7590 + ]], + [[ + 7590, + 2128, + 7589 + ]], + [[ + 7590, + 7589, + 7765 + ]], + [[ + 7765, + 7589, + 7763 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd5f76-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36)", + "identificatiebagpnd": "503100000026233", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027038)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.21000003814697, + "min-height-surface": 0.449999988079071, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84893.214 447572.683)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:31)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7774, + 7775, + 7750 + ]], + [[ + 7774, + 7750, + 7749 + ]], + [[ + 7776, + 2316, + 7761 + ]], + [[ + 7761, + 2316, + 7756 + ]], + [[ + 7756, + 2316, + 7774 + ]], + [[ + 7774, + 2316, + 7775 + ]], + [[ + 7746, + 7776, + 7747 + ]], + [[ + 7747, + 7776, + 7761 + ]], + [[ + 7747, + 7761, + 7748 + ]], + [[ + 7748, + 7761, + 7756 + ]], + [[ + 7748, + 7756, + 7749 + ]], + [[ + 7749, + 7756, + 7774 + ]], + [[ + 2580, + 7746, + 7750 + ]], + [[ + 7750, + 7746, + 7747 + ]], + [[ + 7750, + 7747, + 7748 + ]], + [[ + 7750, + 7748, + 7749 + ]], + [[ + 2316, + 2580, + 7775 + ]], + [[ + 7775, + 2580, + 7750 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bd5f7b-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-36)", + "identificatiebagpnd": "503100000026235", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027039)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0458f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.24000000953674, + "min-height-surface": 0.389999985694885, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84895.825 447574.836)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:33)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7777, + 7778, + 7779 + ]], + [[ + 7777, + 7779, + 7780 + ]], + [[ + 7781, + 7777, + 7780 + ]], + [[ + 7782, + 7778, + 7777 + ]], + [[ + 7783, + 7781, + 7780 + ]], + [[ + 7783, + 7784, + 7781 + ]], + [[ + 7783, + 7778, + 7782 + ]], + [[ + 7784, + 7783, + 7782 + ]], + [[ + 7785, + 7786, + 7340 + ]], + [[ + 7340, + 7786, + 2311 + ]], + [[ + 7340, + 2311, + 7341 + ]], + [[ + 7341, + 2311, + 7342 + ]], + [[ + 7342, + 2311, + 7330 + ]], + [[ + 7330, + 2311, + 7329 + ]], + [[ + 7330, + 7329, + 7783 + ]], + [[ + 7783, + 7329, + 7778 + ]], + [[ + 7787, + 7785, + 7776 + ]], + [[ + 7776, + 7785, + 7761 + ]], + [[ + 7761, + 7785, + 7340 + ]], + [[ + 7761, + 7340, + 7341 + ]], + [[ + 7761, + 7341, + 7756 + ]], + [[ + 7756, + 7341, + 7342 + ]], + [[ + 7756, + 7342, + 7774 + ]], + [[ + 7774, + 7342, + 7780 + ]], + [[ + 7780, + 7342, + 7330 + ]], + [[ + 7780, + 7330, + 7783 + ]], + [[ + 7788, + 7787, + 2316 + ]], + [[ + 2316, + 7787, + 7776 + ]], + [[ + 2316, + 7776, + 7775 + ]], + [[ + 7775, + 7776, + 7761 + ]], + [[ + 7775, + 7761, + 7756 + ]], + [[ + 7775, + 7756, + 7774 + ]], + [[ + 7775, + 7774, + 7779 + ]], + [[ + 7779, + 7774, + 7780 + ]], + [[ + 7786, + 7788, + 2311 + ]], + [[ + 2311, + 7788, + 7329 + ]], + [[ + 7329, + 7788, + 7778 + ]], + [[ + 7778, + 7788, + 2316 + ]], + [[ + 7778, + 2316, + 7775 + ]], + [[ + 7778, + 7775, + 7779 + ]], + [[ + 7789, + 7790, + 7781 + ]], + [[ + 7781, + 7790, + 7777 + ]], + [[ + 7791, + 7789, + 7784 + ]], + [[ + 7784, + 7789, + 7781 + ]], + [[ + 7792, + 7791, + 7782 + ]], + [[ + 7782, + 7791, + 7784 + ]], + [[ + 7790, + 7792, + 7777 + ]], + [[ + 7777, + 7792, + 7782 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd428-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000026302", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003316)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046ba49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 8.56999969482422, + "min-height-surface": 0.280000001192093, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85021.496 447524.002)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:57)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7793, + 7794, + 7795 + ]], + [[ + 7795, + 7796, + 7797 + ]], + [[ + 7797, + 7796, + 7798 + ]], + [[ + 7798, + 7799, + 7800 + ]], + [[ + 7798, + 7801, + 7799 + ]], + [[ + 7798, + 7796, + 7801 + ]], + [[ + 7795, + 7802, + 7796 + ]], + [[ + 7793, + 7795, + 7797 + ]], + [[ + 1783, + 1787, + 7793 + ]], + [[ + 7793, + 1787, + 7794 + ]], + [[ + 1784, + 1783, + 7797 + ]], + [[ + 7797, + 1783, + 7793 + ]], + [[ + 1778, + 1784, + 7798 + ]], + [[ + 7798, + 1784, + 7797 + ]], + [[ + 7803, + 1778, + 7800 + ]], + [[ + 7800, + 1778, + 7798 + ]], + [[ + 1354, + 7803, + 7799 + ]], + [[ + 7799, + 7803, + 7800 + ]], + [[ + 7804, + 1354, + 1606 + ]], + [[ + 1606, + 1354, + 7805 + ]], + [[ + 7805, + 1354, + 7801 + ]], + [[ + 7801, + 1354, + 7799 + ]], + [[ + 7806, + 7804, + 7807 + ]], + [[ + 7807, + 7804, + 1606 + ]], + [[ + 7807, + 1606, + 7808 + ]], + [[ + 7808, + 1606, + 7805 + ]], + [[ + 7808, + 7805, + 7796 + ]], + [[ + 7796, + 7805, + 7801 + ]], + [[ + 7809, + 7806, + 7802 + ]], + [[ + 7802, + 7806, + 7807 + ]], + [[ + 7802, + 7807, + 7808 + ]], + [[ + 7802, + 7808, + 7796 + ]], + [[ + 7810, + 7809, + 7795 + ]], + [[ + 7795, + 7809, + 7802 + ]], + [[ + 1787, + 7810, + 7794 + ]], + [[ + 7794, + 7810, + 7795 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd42d-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:46.1)", + "identificatiebagpnd": "503100000018587", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000005337)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046bb49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.69000005722046, + "min-height-surface": 0.200000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85027.406 447519.861)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:77)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7811, + 7812, + 7813 + ]], + [[ + 7814, + 7815, + 7816 + ]], + [[ + 7813, + 7814, + 7816 + ]], + [[ + 7817, + 7818, + 7814 + ]], + [[ + 7813, + 7817, + 7814 + ]], + [[ + 7812, + 7817, + 7813 + ]], + [[ + 7812, + 7819, + 7817 + ]], + [[ + 7820, + 7821, + 7811 + ]], + [[ + 7811, + 7821, + 7812 + ]], + [[ + 1806, + 7820, + 7813 + ]], + [[ + 7813, + 7820, + 7811 + ]], + [[ + 1785, + 1806, + 7816 + ]], + [[ + 7816, + 1806, + 7813 + ]], + [[ + 1791, + 1785, + 7815 + ]], + [[ + 7815, + 1785, + 7816 + ]], + [[ + 1803, + 1791, + 7814 + ]], + [[ + 7814, + 1791, + 7815 + ]], + [[ + 1802, + 1803, + 7818 + ]], + [[ + 7818, + 1803, + 7814 + ]], + [[ + 7822, + 1802, + 7817 + ]], + [[ + 7817, + 1802, + 7818 + ]], + [[ + 7823, + 7822, + 7819 + ]], + [[ + 7819, + 7822, + 7817 + ]], + [[ + 7821, + 7823, + 7812 + ]], + [[ + 7812, + 7823, + 7819 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd432-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.1)", + "identificatiebagpnd": "503100000018602", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000005338)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046bc49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.67000007629395, + "min-height-surface": 0.200000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85036.711 447505.477)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:72)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7824, + 7825, + 7826 + ]], + [[ + 7824, + 7826, + 7827 + ]], + [[ + 7825, + 7828, + 7826 + ]], + [[ + 7825, + 7829, + 7828 + ]], + [[ + 7825, + 7830, + 7829 + ]], + [[ + 1835, + 1840, + 7824 + ]], + [[ + 7824, + 1840, + 7825 + ]], + [[ + 1816, + 1835, + 7827 + ]], + [[ + 7827, + 1835, + 7824 + ]], + [[ + 1811, + 1816, + 7826 + ]], + [[ + 7826, + 1816, + 7827 + ]], + [[ + 7831, + 1811, + 7828 + ]], + [[ + 7828, + 1811, + 7826 + ]], + [[ + 7832, + 7831, + 7829 + ]], + [[ + 7829, + 7831, + 7828 + ]], + [[ + 7833, + 7832, + 7830 + ]], + [[ + 7830, + 7832, + 7829 + ]], + [[ + 1840, + 7833, + 7825 + ]], + [[ + 7825, + 7833, + 7830 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd437-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.1)", + "identificatiebagpnd": "503100000018593", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000005332)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046bd49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.84999990463257, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85019.386 447493.264)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:67)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7834, + 7835, + 7836 + ]], + [[ + 7834, + 7836, + 7837 + ]], + [[ + 1851, + 1772, + 7834 + ]], + [[ + 7834, + 1772, + 7835 + ]], + [[ + 1847, + 1851, + 7838 + ]], + [[ + 7838, + 1851, + 7837 + ]], + [[ + 7837, + 1851, + 7834 + ]], + [[ + 1770, + 1847, + 7839 + ]], + [[ + 7839, + 1847, + 7838 + ]], + [[ + 7839, + 7838, + 7836 + ]], + [[ + 7836, + 7838, + 7837 + ]], + [[ + 1772, + 1770, + 7835 + ]], + [[ + 7835, + 1770, + 7839 + ]], + [[ + 7835, + 7839, + 7836 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd43a-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018608", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046be49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.88000011444092, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7840, + 7841, + 7842 + ]], + [[ + 7840, + 7842, + 7843 + ]], + [[ + 1859, + 1817, + 7844 + ]], + [[ + 7844, + 1817, + 7845 + ]], + [[ + 7844, + 7845, + 7840 + ]], + [[ + 7840, + 7845, + 7841 + ]], + [[ + 1851, + 1859, + 7834 + ]], + [[ + 7834, + 1859, + 7843 + ]], + [[ + 7843, + 1859, + 7844 + ]], + [[ + 7843, + 7844, + 7840 + ]], + [[ + 1772, + 1851, + 7835 + ]], + [[ + 7835, + 1851, + 7834 + ]], + [[ + 7835, + 7834, + 7842 + ]], + [[ + 7842, + 7834, + 7843 + ]], + [[ + 1817, + 1772, + 7845 + ]], + [[ + 7845, + 1772, + 7841 + ]], + [[ + 7841, + 1772, + 7835 + ]], + [[ + 7841, + 7835, + 7842 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd43f-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.1)", + "identificatiebagpnd": "503100000018611", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000005333)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046bf49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.77999997138977, + "min-height-surface": 0.180000007152557, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85025.433 447497.508)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:69)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7846, + 7847, + 7845 + ]], + [[ + 7846, + 7845, + 7844 + ]], + [[ + 1860, + 1814, + 7848 + ]], + [[ + 7848, + 1814, + 7849 + ]], + [[ + 7848, + 7849, + 7846 + ]], + [[ + 7846, + 7849, + 7847 + ]], + [[ + 7850, + 1860, + 1859 + ]], + [[ + 1859, + 1860, + 7844 + ]], + [[ + 7844, + 1860, + 7848 + ]], + [[ + 7844, + 7848, + 7846 + ]], + [[ + 7851, + 7850, + 1817 + ]], + [[ + 1817, + 7850, + 1859 + ]], + [[ + 1817, + 1859, + 7845 + ]], + [[ + 7845, + 1859, + 7844 + ]], + [[ + 1814, + 7851, + 7849 + ]], + [[ + 7849, + 7851, + 7847 + ]], + [[ + 7847, + 7851, + 1817 + ]], + [[ + 7847, + 1817, + 7845 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd442-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018590", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.80999994277954, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7852, + 7853, + 7854 + ]], + [[ + 7852, + 7854, + 7855 + ]], + [[ + 1800, + 7856, + 7852 + ]], + [[ + 7852, + 7856, + 7853 + ]], + [[ + 7857, + 1800, + 1806 + ]], + [[ + 1806, + 1800, + 7813 + ]], + [[ + 7813, + 1800, + 7855 + ]], + [[ + 7855, + 1800, + 7852 + ]], + [[ + 7858, + 7857, + 7820 + ]], + [[ + 7820, + 7857, + 1806 + ]], + [[ + 7820, + 1806, + 7811 + ]], + [[ + 7811, + 1806, + 7813 + ]], + [[ + 7811, + 7813, + 7854 + ]], + [[ + 7854, + 7813, + 7855 + ]], + [[ + 7856, + 7858, + 7853 + ]], + [[ + 7853, + 7858, + 7820 + ]], + [[ + 7853, + 7820, + 7811 + ]], + [[ + 7853, + 7811, + 7854 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd447-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.1)", + "identificatiebagpnd": "503100000027999", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000005334)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.76999998092651, + "min-height-surface": 0.180000007152557, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85031.345 447501.656)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:71)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7859, + 7860, + 7849 + ]], + [[ + 7859, + 7849, + 7848 + ]], + [[ + 1852, + 1815, + 7861 + ]], + [[ + 7861, + 1815, + 7862 + ]], + [[ + 7861, + 7862, + 7859 + ]], + [[ + 7859, + 7862, + 7860 + ]], + [[ + 1860, + 1852, + 7848 + ]], + [[ + 7848, + 1852, + 7861 + ]], + [[ + 7848, + 7861, + 7859 + ]], + [[ + 1814, + 1860, + 7849 + ]], + [[ + 7849, + 1860, + 7848 + ]], + [[ + 1815, + 1814, + 7862 + ]], + [[ + 7862, + 1814, + 7860 + ]], + [[ + 7860, + 1814, + 7849 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd44c-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:46.1)", + "identificatiebagpnd": "503100000027996", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000005336)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.8199999332428, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85031.465 447515.641)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:75)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7863, + 7864, + 7865 + ]], + [[ + 7863, + 7865, + 7866 + ]], + [[ + 1828, + 7867, + 7863 + ]], + [[ + 7863, + 7867, + 7864 + ]], + [[ + 1800, + 1828, + 7852 + ]], + [[ + 7852, + 1828, + 7866 + ]], + [[ + 7866, + 1828, + 7863 + ]], + [[ + 7856, + 1800, + 7853 + ]], + [[ + 7853, + 1800, + 7852 + ]], + [[ + 7853, + 7852, + 7865 + ]], + [[ + 7865, + 7852, + 7866 + ]], + [[ + 7867, + 7856, + 7864 + ]], + [[ + 7864, + 7856, + 7853 + ]], + [[ + 7864, + 7853, + 7865 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdd44f-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018605", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.6800000667572, + "min-height-surface": 0.180000007152557, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7868, + 7869, + 7862 + ]], + [[ + 7868, + 7862, + 7861 + ]], + [[ + 7870, + 7871, + 1835 + ]], + [[ + 1835, + 7871, + 1816 + ]], + [[ + 1835, + 1816, + 7824 + ]], + [[ + 7824, + 1816, + 7827 + ]], + [[ + 7824, + 7827, + 7868 + ]], + [[ + 7868, + 7827, + 7869 + ]], + [[ + 1852, + 7870, + 7861 + ]], + [[ + 7861, + 7870, + 1835 + ]], + [[ + 7861, + 1835, + 7824 + ]], + [[ + 7861, + 7824, + 7868 + ]], + [[ + 1815, + 1852, + 7862 + ]], + [[ + 7862, + 1852, + 7861 + ]], + [[ + 7871, + 1815, + 1816 + ]], + [[ + 1816, + 1815, + 7827 + ]], + [[ + 7827, + 1815, + 7869 + ]], + [[ + 7869, + 1815, + 7862 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb64-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.8)", + "identificatiebagpnd": "503100000018600", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000005329)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.80999994277954, + "min-height-surface": 0.230000004172325, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84999.155 447498.983)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:61)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7872, + 7873, + 7874 + ]], + [[ + 7872, + 7875, + 7876 + ]], + [[ + 7872, + 7874, + 7875 + ]], + [[ + 7873, + 7877, + 7874 + ]], + [[ + 7877, + 7873, + 7878 + ]], + [[ + 7879, + 1789, + 1790 + ]], + [[ + 1790, + 1789, + 7872 + ]], + [[ + 7872, + 1789, + 7880 + ]], + [[ + 7872, + 7880, + 7873 + ]], + [[ + 7881, + 7879, + 914 + ]], + [[ + 914, + 7879, + 1790 + ]], + [[ + 914, + 1790, + 7876 + ]], + [[ + 7876, + 1790, + 7872 + ]], + [[ + 912, + 7881, + 7875 + ]], + [[ + 7875, + 7881, + 914 + ]], + [[ + 7875, + 914, + 7876 + ]], + [[ + 956, + 912, + 7874 + ]], + [[ + 7874, + 912, + 7875 + ]], + [[ + 909, + 956, + 7877 + ]], + [[ + 7877, + 956, + 7874 + ]], + [[ + 847, + 909, + 7882 + ]], + [[ + 7882, + 909, + 7878 + ]], + [[ + 7878, + 909, + 7877 + ]], + [[ + 1789, + 847, + 7880 + ]], + [[ + 7880, + 847, + 7882 + ]], + [[ + 7880, + 7882, + 7873 + ]], + [[ + 7873, + 7882, + 7878 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb67-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018607", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.82999992370605, + "min-height-surface": 0.239999994635582, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7883, + 7884, + 7885 + ]], + [[ + 7883, + 7885, + 7886 + ]], + [[ + 7884, + 7887, + 7885 + ]], + [[ + 1780, + 1790, + 7888 + ]], + [[ + 7888, + 1790, + 7883 + ]], + [[ + 7883, + 1790, + 7872 + ]], + [[ + 7883, + 7872, + 7884 + ]], + [[ + 915, + 1780, + 7889 + ]], + [[ + 7889, + 1780, + 7888 + ]], + [[ + 7889, + 7888, + 7886 + ]], + [[ + 7886, + 7888, + 7883 + ]], + [[ + 916, + 915, + 7885 + ]], + [[ + 7885, + 915, + 7889 + ]], + [[ + 7885, + 7889, + 7886 + ]], + [[ + 914, + 916, + 7876 + ]], + [[ + 7876, + 916, + 7887 + ]], + [[ + 7887, + 916, + 7885 + ]], + [[ + 1790, + 914, + 7872 + ]], + [[ + 7872, + 914, + 7876 + ]], + [[ + 7872, + 7876, + 7884 + ]], + [[ + 7884, + 7876, + 7887 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb6a-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018610", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.80999994277954, + "min-height-surface": 0.230000004172325, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7890, + 7888, + 7889 + ]], + [[ + 7890, + 7889, + 7891 + ]], + [[ + 1781, + 7892, + 7893 + ]], + [[ + 7893, + 7892, + 7890 + ]], + [[ + 7890, + 7892, + 1780 + ]], + [[ + 7890, + 1780, + 7888 + ]], + [[ + 885, + 1781, + 7894 + ]], + [[ + 7894, + 1781, + 7893 + ]], + [[ + 7894, + 7893, + 7891 + ]], + [[ + 7891, + 7893, + 7890 + ]], + [[ + 7895, + 885, + 915 + ]], + [[ + 915, + 885, + 7889 + ]], + [[ + 7889, + 885, + 7894 + ]], + [[ + 7889, + 7894, + 7891 + ]], + [[ + 7892, + 7895, + 1780 + ]], + [[ + 1780, + 7895, + 915 + ]], + [[ + 1780, + 915, + 7888 + ]], + [[ + 7888, + 915, + 7889 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb6f-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.8)", + "identificatiebagpnd": "503100000018598", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000005330)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.75999999046326, + "min-height-surface": 0.219999998807907, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85003.595 447492.683)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:62)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7896, + 7893, + 7897 + ]], + [[ + 7896, + 7897, + 7898 + ]], + [[ + 7893, + 7894, + 7897 + ]], + [[ + 1823, + 7899, + 7896 + ]], + [[ + 7896, + 7899, + 1781 + ]], + [[ + 7896, + 1781, + 7893 + ]], + [[ + 921, + 1823, + 7898 + ]], + [[ + 7898, + 1823, + 7896 + ]], + [[ + 887, + 921, + 7897 + ]], + [[ + 7897, + 921, + 7898 + ]], + [[ + 7900, + 887, + 885 + ]], + [[ + 885, + 887, + 7894 + ]], + [[ + 7894, + 887, + 7897 + ]], + [[ + 7899, + 7900, + 1781 + ]], + [[ + 1781, + 7900, + 885 + ]], + [[ + 1781, + 885, + 7893 + ]], + [[ + 7893, + 885, + 7894 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb74-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.1)", + "identificatiebagpnd": "503100000018601", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000060856)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.84999990463257, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85013.307 447488.999)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:65)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7901, + 7902, + 7903 + ]], + [[ + 7901, + 7903, + 7904 + ]], + [[ + 1848, + 1769, + 7905 + ]], + [[ + 7905, + 1769, + 7906 + ]], + [[ + 7905, + 7906, + 7901 + ]], + [[ + 7901, + 7906, + 7902 + ]], + [[ + 7907, + 1848, + 1858 + ]], + [[ + 1858, + 1848, + 7908 + ]], + [[ + 7908, + 1848, + 7904 + ]], + [[ + 7904, + 1848, + 7905 + ]], + [[ + 7904, + 7905, + 7901 + ]], + [[ + 7909, + 7907, + 1822 + ]], + [[ + 1822, + 7907, + 1858 + ]], + [[ + 1822, + 1858, + 7910 + ]], + [[ + 7910, + 1858, + 7908 + ]], + [[ + 7910, + 7908, + 7903 + ]], + [[ + 7903, + 7908, + 7904 + ]], + [[ + 1769, + 7909, + 7906 + ]], + [[ + 7906, + 7909, + 7902 + ]], + [[ + 7902, + 7909, + 1822 + ]], + [[ + 7902, + 1822, + 7910 + ]], + [[ + 7902, + 7910, + 7903 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb77-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018589", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046c949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.83999991416931, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7838, + 7839, + 7906 + ]], + [[ + 7838, + 7906, + 7905 + ]], + [[ + 1847, + 1770, + 7838 + ]], + [[ + 7838, + 1770, + 7839 + ]], + [[ + 1848, + 1847, + 7905 + ]], + [[ + 7905, + 1847, + 7838 + ]], + [[ + 1769, + 1848, + 7906 + ]], + [[ + 7906, + 1848, + 7905 + ]], + [[ + 1770, + 1769, + 7839 + ]], + [[ + 7839, + 1769, + 7906 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb7a-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000032235", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046ca49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.49000000953674, + "min-height-surface": 0.200000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7908, + 7910, + 7911 + ]], + [[ + 7908, + 7912, + 7913 + ]], + [[ + 7908, + 7911, + 7912 + ]], + [[ + 7912, + 7911, + 7914 + ]], + [[ + 1858, + 1822, + 7908 + ]], + [[ + 7908, + 1822, + 7910 + ]], + [[ + 1845, + 1858, + 7913 + ]], + [[ + 7913, + 1858, + 7908 + ]], + [[ + 7915, + 1845, + 7912 + ]], + [[ + 7912, + 1845, + 7913 + ]], + [[ + 7916, + 7915, + 7914 + ]], + [[ + 7914, + 7915, + 7912 + ]], + [[ + 1821, + 7916, + 7911 + ]], + [[ + 7911, + 7916, + 7914 + ]], + [[ + 1822, + 1821, + 7910 + ]], + [[ + 7910, + 1821, + 7911 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb7f-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:16.7)", + "identificatiebagpnd": "503100000022860", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027125)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046cb49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.73000001907349, + "min-height-surface": -0.109999999403954, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84969.447 447476.735)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:62)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7917, + 7918, + 7919 + ]], + [[ + 7920, + 7921, + 7922 + ]], + [[ + 7920, + 7923, + 7921 + ]], + [[ + 7920, + 7924, + 7923 + ]], + [[ + 7920, + 7918, + 7924 + ]], + [[ + 7924, + 7918, + 7917 + ]], + [[ + 7917, + 7919, + 7925 + ]], + [[ + 7926, + 7927, + 7928 + ]], + [[ + 7928, + 7927, + 7929 + ]], + [[ + 7928, + 7929, + 7920 + ]], + [[ + 7920, + 7929, + 7918 + ]], + [[ + 7930, + 7926, + 7922 + ]], + [[ + 7922, + 7926, + 7928 + ]], + [[ + 7922, + 7928, + 7920 + ]], + [[ + 7931, + 7930, + 7921 + ]], + [[ + 7921, + 7930, + 7922 + ]], + [[ + 7932, + 7931, + 7923 + ]], + [[ + 7923, + 7931, + 7921 + ]], + [[ + 7933, + 7932, + 7924 + ]], + [[ + 7924, + 7932, + 7923 + ]], + [[ + 7934, + 7933, + 7917 + ]], + [[ + 7917, + 7933, + 7924 + ]], + [[ + 7935, + 7934, + 7925 + ]], + [[ + 7925, + 7934, + 7917 + ]], + [[ + 7936, + 7935, + 7919 + ]], + [[ + 7919, + 7935, + 7925 + ]], + [[ + 7927, + 7936, + 7929 + ]], + [[ + 7929, + 7936, + 7918 + ]], + [[ + 7918, + 7936, + 7919 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb84-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:16.7)", + "identificatiebagpnd": "503100000026301", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027124)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046cc49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.72000002861023, + "min-height-surface": -0.119999997317791, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84974.937 447475.330)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:60)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7937, + 7938, + 7939 + ]], + [[ + 7940, + 7941, + 7942 + ]], + [[ + 7929, + 7940, + 7942 + ]], + [[ + 7937, + 7939, + 7942 + ]], + [[ + 7940, + 7929, + 7928 + ]], + [[ + 7942, + 7939, + 7929 + ]], + [[ + 7938, + 7943, + 7939 + ]], + [[ + 880, + 7944, + 7937 + ]], + [[ + 7937, + 7944, + 950 + ]], + [[ + 7937, + 950, + 7945 + ]], + [[ + 7937, + 7945, + 7938 + ]], + [[ + 876, + 880, + 7942 + ]], + [[ + 7942, + 880, + 7937 + ]], + [[ + 874, + 876, + 7941 + ]], + [[ + 7941, + 876, + 7942 + ]], + [[ + 7946, + 874, + 7940 + ]], + [[ + 7940, + 874, + 7941 + ]], + [[ + 7947, + 7946, + 7926 + ]], + [[ + 7926, + 7946, + 7928 + ]], + [[ + 7928, + 7946, + 7940 + ]], + [[ + 7948, + 7947, + 7927 + ]], + [[ + 7927, + 7947, + 7926 + ]], + [[ + 7927, + 7926, + 7929 + ]], + [[ + 7929, + 7926, + 7928 + ]], + [[ + 7949, + 7948, + 7950 + ]], + [[ + 7950, + 7948, + 7951 + ]], + [[ + 7951, + 7948, + 7939 + ]], + [[ + 7939, + 7948, + 7927 + ]], + [[ + 7939, + 7927, + 7929 + ]], + [[ + 7952, + 7949, + 7953 + ]], + [[ + 7953, + 7949, + 7950 + ]], + [[ + 7953, + 7950, + 7954 + ]], + [[ + 7954, + 7950, + 7951 + ]], + [[ + 7954, + 7951, + 7943 + ]], + [[ + 7943, + 7951, + 7939 + ]], + [[ + 7944, + 7952, + 950 + ]], + [[ + 950, + 7952, + 7953 + ]], + [[ + 950, + 7953, + 7945 + ]], + [[ + 7945, + 7953, + 7954 + ]], + [[ + 7945, + 7954, + 7938 + ]], + [[ + 7938, + 7954, + 7943 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31bdfb89-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35)", + "identificatiebagpnd": "503100000018596", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027127)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046cd49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.45000004768372, + "min-height-surface": 0, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84974.524 447485.045)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:68)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7955, + 7956, + 7957 + ]], + [[ + 7958, + 7959, + 7957 + ]], + [[ + 7958, + 7960, + 7959 + ]], + [[ + 7958, + 7961, + 7962 + ]], + [[ + 7960, + 7958, + 7963 + ]], + [[ + 7963, + 7958, + 7962 + ]], + [[ + 7964, + 7965, + 7957 + ]], + [[ + 7957, + 7966, + 7958 + ]], + [[ + 7957, + 7965, + 7966 + ]], + [[ + 7956, + 7964, + 7957 + ]], + [[ + 7967, + 7968, + 7955 + ]], + [[ + 7955, + 7968, + 7956 + ]], + [[ + 7969, + 7967, + 7957 + ]], + [[ + 7957, + 7967, + 7955 + ]], + [[ + 7970, + 7969, + 7959 + ]], + [[ + 7959, + 7969, + 7957 + ]], + [[ + 7971, + 7970, + 7960 + ]], + [[ + 7960, + 7970, + 7959 + ]], + [[ + 7972, + 7971, + 7963 + ]], + [[ + 7963, + 7971, + 7960 + ]], + [[ + 1295, + 7972, + 7962 + ]], + [[ + 7962, + 7972, + 7963 + ]], + [[ + 1109, + 1295, + 7961 + ]], + [[ + 7961, + 1295, + 7962 + ]], + [[ + 1245, + 1109, + 7958 + ]], + [[ + 7958, + 1109, + 7961 + ]], + [[ + 1139, + 1245, + 7966 + ]], + [[ + 7966, + 1245, + 7958 + ]], + [[ + 1131, + 1139, + 7965 + ]], + [[ + 7965, + 1139, + 7966 + ]], + [[ + 1280, + 1131, + 7964 + ]], + [[ + 7964, + 1131, + 7965 + ]], + [[ + 7968, + 1280, + 7956 + ]], + [[ + 7956, + 1280, + 7964 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be229e-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:16.7)", + "identificatiebagpnd": "503100000026300", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027123)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027122)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046ce49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.73000001907349, + "min-height-surface": -0.119999997317791, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84979.787 447473.527)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:58-58A)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7973, + 7974, + 7975 + ]], + [[ + 7976, + 7977, + 7975 + ]], + [[ + 7974, + 7978, + 7975 + ]], + [[ + 7977, + 7976, + 7979 + ]], + [[ + 7976, + 7975, + 7978 + ]], + [[ + 7974, + 7980, + 7978 + ]], + [[ + 7974, + 7981, + 7980 + ]], + [[ + 7980, + 7981, + 7982 + ]], + [[ + 875, + 874, + 7973 + ]], + [[ + 7973, + 874, + 7941 + ]], + [[ + 7973, + 7941, + 7974 + ]], + [[ + 872, + 875, + 7975 + ]], + [[ + 7975, + 875, + 7973 + ]], + [[ + 865, + 872, + 7977 + ]], + [[ + 7977, + 872, + 7975 + ]], + [[ + 866, + 865, + 7979 + ]], + [[ + 7979, + 865, + 7977 + ]], + [[ + 859, + 866, + 7976 + ]], + [[ + 7976, + 866, + 7979 + ]], + [[ + 852, + 859, + 7978 + ]], + [[ + 7978, + 859, + 7976 + ]], + [[ + 853, + 852, + 7980 + ]], + [[ + 7980, + 852, + 7978 + ]], + [[ + 854, + 853, + 7982 + ]], + [[ + 7982, + 853, + 7980 + ]], + [[ + 7946, + 854, + 7940 + ]], + [[ + 7940, + 854, + 7981 + ]], + [[ + 7981, + 854, + 7982 + ]], + [[ + 874, + 7946, + 7941 + ]], + [[ + 7941, + 7946, + 7940 + ]], + [[ + 7941, + 7940, + 7974 + ]], + [[ + 7974, + 7940, + 7981 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22a3-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000022863", + "identificatiebagvbohoogstehuisnummer": "(1:503010000003314)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003313)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046cf49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.92000007629395, + "min-height-surface": 0.300000011920929, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85018.008 447530.384)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:54-55)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7805, + 7808, + 7983 + ]], + [[ + 7805, + 7984, + 7985 + ]], + [[ + 7805, + 7983, + 7984 + ]], + [[ + 7986, + 7983, + 7808 + ]], + [[ + 7987, + 7988, + 7989 + ]], + [[ + 7989, + 7990, + 7991 + ]], + [[ + 7989, + 7988, + 7992 + ]], + [[ + 7991, + 7990, + 7993 + ]], + [[ + 7993, + 7990, + 7994 + ]], + [[ + 7989, + 7992, + 7990 + ]], + [[ + 7988, + 7995, + 7992 + ]], + [[ + 7992, + 7995, + 7996 + ]], + [[ + 7995, + 7997, + 7998 + ]], + [[ + 7998, + 7999, + 8000 + ]], + [[ + 8000, + 7999, + 8001 + ]], + [[ + 7995, + 7988, + 7997 + ]], + [[ + 7998, + 7997, + 7999 + ]], + [[ + 7988, + 7983, + 7997 + ]], + [[ + 8002, + 7986, + 7808 + ]], + [[ + 7997, + 7983, + 7986 + ]], + [[ + 8002, + 8003, + 7986 + ]], + [[ + 8003, + 8002, + 8004 + ]], + [[ + 1606, + 7807, + 7805 + ]], + [[ + 7805, + 7807, + 7808 + ]], + [[ + 1346, + 1606, + 7985 + ]], + [[ + 7985, + 1606, + 7805 + ]], + [[ + 1341, + 1346, + 7984 + ]], + [[ + 7984, + 1346, + 7985 + ]], + [[ + 1342, + 1341, + 7983 + ]], + [[ + 7983, + 1341, + 7984 + ]], + [[ + 1650, + 1342, + 7988 + ]], + [[ + 7988, + 1342, + 7983 + ]], + [[ + 1338, + 1650, + 7987 + ]], + [[ + 7987, + 1650, + 7988 + ]], + [[ + 1339, + 1338, + 7989 + ]], + [[ + 7989, + 1338, + 7987 + ]], + [[ + 1358, + 1339, + 7991 + ]], + [[ + 7991, + 1339, + 7989 + ]], + [[ + 1622, + 1358, + 7993 + ]], + [[ + 7993, + 1358, + 7991 + ]], + [[ + 1353, + 1622, + 7994 + ]], + [[ + 7994, + 1622, + 7993 + ]], + [[ + 1372, + 1353, + 7990 + ]], + [[ + 7990, + 1353, + 7994 + ]], + [[ + 8005, + 1372, + 7992 + ]], + [[ + 7992, + 1372, + 7990 + ]], + [[ + 3033, + 8005, + 7996 + ]], + [[ + 7996, + 8005, + 7992 + ]], + [[ + 3034, + 3033, + 7995 + ]], + [[ + 7995, + 3033, + 7996 + ]], + [[ + 3031, + 3034, + 7998 + ]], + [[ + 7998, + 3034, + 7995 + ]], + [[ + 3029, + 3031, + 8000 + ]], + [[ + 8000, + 3031, + 7998 + ]], + [[ + 8006, + 3029, + 8001 + ]], + [[ + 8001, + 3029, + 8000 + ]], + [[ + 8007, + 8006, + 7999 + ]], + [[ + 7999, + 8006, + 8001 + ]], + [[ + 8008, + 8007, + 7997 + ]], + [[ + 7997, + 8007, + 7999 + ]], + [[ + 8009, + 8008, + 7986 + ]], + [[ + 7986, + 8008, + 7997 + ]], + [[ + 8010, + 8009, + 8003 + ]], + [[ + 8003, + 8009, + 7986 + ]], + [[ + 8011, + 8010, + 8004 + ]], + [[ + 8004, + 8010, + 8003 + ]], + [[ + 8012, + 8011, + 8002 + ]], + [[ + 8002, + 8011, + 8004 + ]], + [[ + 7807, + 8012, + 7808 + ]], + [[ + 7808, + 8012, + 8002 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22a8-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000029913", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003308)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6.53000020980835, + "min-height-surface": 0.239999994635582, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85006.313 447542.303)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:49)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8013, + 608, + 8014 + ]], + [[ + 8013, + 8015, + 8016 + ]], + [[ + 608, + 8013, + 604 + ]], + [[ + 605, + 604, + 8017 + ]], + [[ + 605, + 8017, + 8018 + ]], + [[ + 8019, + 604, + 8020 + ]], + [[ + 604, + 8019, + 8017 + ]], + [[ + 8021, + 8019, + 8022 + ]], + [[ + 8019, + 8020, + 8022 + ]], + [[ + 8016, + 8015, + 8023 + ]], + [[ + 604, + 8016, + 8020 + ]], + [[ + 604, + 8013, + 8016 + ]], + [[ + 8023, + 8015, + 8024 + ]], + [[ + 1630, + 8025, + 8026 + ]], + [[ + 8026, + 8025, + 8027 + ]], + [[ + 8026, + 8027, + 8013 + ]], + [[ + 8013, + 8027, + 8015 + ]], + [[ + 1507, + 1630, + 8014 + ]], + [[ + 8014, + 1630, + 8026 + ]], + [[ + 8014, + 8026, + 8013 + ]], + [[ + 607, + 1507, + 608 + ]], + [[ + 608, + 1507, + 8014 + ]], + [[ + 602, + 607, + 604 + ]], + [[ + 604, + 607, + 608 + ]], + [[ + 603, + 602, + 605 + ]], + [[ + 605, + 602, + 604 + ]], + [[ + 8028, + 603, + 8018 + ]], + [[ + 8018, + 603, + 605 + ]], + [[ + 8029, + 8028, + 8017 + ]], + [[ + 8017, + 8028, + 8018 + ]], + [[ + 8030, + 8029, + 8019 + ]], + [[ + 8019, + 8029, + 8017 + ]], + [[ + 8031, + 8030, + 8021 + ]], + [[ + 8021, + 8030, + 8019 + ]], + [[ + 8032, + 8031, + 8022 + ]], + [[ + 8022, + 8031, + 8021 + ]], + [[ + 8033, + 8032, + 8020 + ]], + [[ + 8020, + 8032, + 8022 + ]], + [[ + 8034, + 8033, + 8016 + ]], + [[ + 8016, + 8033, + 8020 + ]], + [[ + 8035, + 8034, + 8023 + ]], + [[ + 8023, + 8034, + 8016 + ]], + [[ + 8036, + 8035, + 8024 + ]], + [[ + 8024, + 8035, + 8023 + ]], + [[ + 8025, + 8036, + 8027 + ]], + [[ + 8027, + 8036, + 8015 + ]], + [[ + 8015, + 8036, + 8024 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22ad-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000029914", + "identificatiebagvbohoogstehuisnummer": "(1:503010000003310)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003309)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 5.65999984741211, + "min-height-surface": -0.140000000596046, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85009.378 447538.258)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:50-51)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8037, + 8038, + 8027 + ]], + [[ + 8026, + 8039, + 8027 + ]], + [[ + 8040, + 8037, + 8027 + ]], + [[ + 8041, + 8040, + 8027 + ]], + [[ + 8039, + 8041, + 8027 + ]], + [[ + 8042, + 8039, + 8026 + ]], + [[ + 8042, + 8043, + 8044 + ]], + [[ + 8039, + 8042, + 8044 + ]], + [[ + 1539, + 3018, + 8045 + ]], + [[ + 8045, + 3018, + 8046 + ]], + [[ + 8045, + 8046, + 8042 + ]], + [[ + 8042, + 8046, + 8043 + ]], + [[ + 8047, + 1539, + 1630 + ]], + [[ + 1630, + 1539, + 8026 + ]], + [[ + 8026, + 1539, + 8045 + ]], + [[ + 8026, + 8045, + 8042 + ]], + [[ + 8048, + 8047, + 8025 + ]], + [[ + 8025, + 8047, + 1630 + ]], + [[ + 8025, + 1630, + 8027 + ]], + [[ + 8027, + 1630, + 8026 + ]], + [[ + 3017, + 8048, + 8038 + ]], + [[ + 8038, + 8048, + 8025 + ]], + [[ + 8038, + 8025, + 8027 + ]], + [[ + 3028, + 3017, + 8037 + ]], + [[ + 8037, + 3017, + 8038 + ]], + [[ + 3025, + 3028, + 8040 + ]], + [[ + 8040, + 3028, + 8037 + ]], + [[ + 3026, + 3025, + 8041 + ]], + [[ + 8041, + 3025, + 8040 + ]], + [[ + 3027, + 3026, + 8039 + ]], + [[ + 8039, + 3026, + 8041 + ]], + [[ + 3024, + 3027, + 8044 + ]], + [[ + 8044, + 3027, + 8039 + ]], + [[ + 3018, + 3024, + 8046 + ]], + [[ + 8046, + 3024, + 8043 + ]], + [[ + 8043, + 3024, + 8044 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22b0-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000027998", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.84999990463257, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8049, + 8050, + 8051 + ]], + [[ + 8049, + 8051, + 8052 + ]], + [[ + 8053, + 8054, + 1810 + ]], + [[ + 1810, + 8054, + 8055 + ]], + [[ + 1810, + 8055, + 8056 + ]], + [[ + 8056, + 8055, + 8057 + ]], + [[ + 8056, + 8057, + 8049 + ]], + [[ + 8049, + 8057, + 8050 + ]], + [[ + 1828, + 8053, + 7863 + ]], + [[ + 7863, + 8053, + 8052 + ]], + [[ + 8052, + 8053, + 1810 + ]], + [[ + 8052, + 1810, + 8056 + ]], + [[ + 8052, + 8056, + 8049 + ]], + [[ + 7867, + 1828, + 7864 + ]], + [[ + 7864, + 1828, + 7863 + ]], + [[ + 7864, + 7863, + 8051 + ]], + [[ + 8051, + 7863, + 8052 + ]], + [[ + 8054, + 7867, + 8055 + ]], + [[ + 8055, + 7867, + 8057 + ]], + [[ + 8057, + 7867, + 8050 + ]], + [[ + 8050, + 7867, + 7864 + ]], + [[ + 8050, + 7864, + 8051 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22b5-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:46.1)", + "identificatiebagpnd": "503100000018594", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000005335)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.8199999332428, + "min-height-surface": 0.200000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85035.520 447511.425)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:73)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8058, + 8059, + 8057 + ]], + [[ + 8058, + 8057, + 8056 + ]], + [[ + 1809, + 8060, + 8058 + ]], + [[ + 8058, + 8060, + 8059 + ]], + [[ + 1810, + 1809, + 8056 + ]], + [[ + 8056, + 1809, + 8058 + ]], + [[ + 8055, + 1810, + 8057 + ]], + [[ + 8057, + 1810, + 8056 + ]], + [[ + 8060, + 8055, + 8059 + ]], + [[ + 8059, + 8055, + 8057 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22b8-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000027997", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.88000011444092, + "min-height-surface": 0.200000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8061, + 8062, + 8063 + ]], + [[ + 8061, + 8063, + 8064 + ]], + [[ + 1811, + 7831, + 7826 + ]], + [[ + 7826, + 7831, + 7828 + ]], + [[ + 7826, + 7828, + 8061 + ]], + [[ + 8061, + 7828, + 8062 + ]], + [[ + 1809, + 1811, + 8058 + ]], + [[ + 8058, + 1811, + 8064 + ]], + [[ + 8064, + 1811, + 7826 + ]], + [[ + 8064, + 7826, + 8061 + ]], + [[ + 8060, + 1809, + 8059 + ]], + [[ + 8059, + 1809, + 8058 + ]], + [[ + 8059, + 8058, + 8063 + ]], + [[ + 8063, + 8058, + 8064 + ]], + [[ + 7831, + 8060, + 7828 + ]], + [[ + 7828, + 8060, + 8062 + ]], + [[ + 8062, + 8060, + 8059 + ]], + [[ + 8062, + 8059, + 8063 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22bd-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-48.6)", + "identificatiebagpnd": "503100000022859", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003317)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.83999991416931, + "min-height-surface": 0.28999999165535, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85042.649 447462.716)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:79)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8065, + 8066, + 8067 + ]], + [[ + 8068, + 8069, + 8070 + ]], + [[ + 8068, + 8071, + 8069 + ]], + [[ + 8072, + 8073, + 8074 + ]], + [[ + 8070, + 8074, + 8068 + ]], + [[ + 8075, + 8076, + 8074 + ]], + [[ + 8075, + 8077, + 8076 + ]], + [[ + 8078, + 8079, + 8080 + ]], + [[ + 8074, + 8073, + 8075 + ]], + [[ + 8081, + 8072, + 8074 + ]], + [[ + 8082, + 8083, + 8084 + ]], + [[ + 8072, + 8082, + 8084 + ]], + [[ + 8073, + 8072, + 8084 + ]], + [[ + 8085, + 8086, + 8087 + ]], + [[ + 8072, + 8088, + 8089 + ]], + [[ + 8080, + 8090, + 8091 + ]], + [[ + 8078, + 8080, + 8091 + ]], + [[ + 8089, + 8092, + 8091 + ]], + [[ + 8093, + 8094, + 8070 + ]], + [[ + 8091, + 8095, + 8078 + ]], + [[ + 8092, + 8095, + 8091 + ]], + [[ + 8088, + 8092, + 8089 + ]], + [[ + 8096, + 8097, + 8098 + ]], + [[ + 8099, + 8100, + 8088 + ]], + [[ + 8072, + 8081, + 8088 + ]], + [[ + 8088, + 8081, + 8099 + ]], + [[ + 8094, + 8074, + 8070 + ]], + [[ + 8096, + 8101, + 8102 + ]], + [[ + 8096, + 8081, + 8097 + ]], + [[ + 8103, + 8101, + 8104 + ]], + [[ + 8105, + 8106, + 8107 + ]], + [[ + 8105, + 8107, + 8108 + ]], + [[ + 8106, + 8103, + 8107 + ]], + [[ + 8108, + 8109, + 8110 + ]], + [[ + 8108, + 8107, + 8109 + ]], + [[ + 8103, + 8104, + 8107 + ]], + [[ + 8101, + 8096, + 8098 + ]], + [[ + 8101, + 8098, + 8104 + ]], + [[ + 8104, + 8098, + 8111 + ]], + [[ + 8111, + 8098, + 8112 + ]], + [[ + 8081, + 8074, + 8094 + ]], + [[ + 8094, + 8087, + 8086 + ]], + [[ + 8113, + 8098, + 8097 + ]], + [[ + 8097, + 8081, + 8094 + ]], + [[ + 8086, + 8097, + 8094 + ]], + [[ + 8114, + 8093, + 8070 + ]], + [[ + 8115, + 8094, + 8093 + ]], + [[ + 8114, + 8116, + 8093 + ]], + [[ + 8114, + 8067, + 8116 + ]], + [[ + 8114, + 8065, + 8067 + ]], + [[ + 8117, + 8118, + 8065 + ]], + [[ + 8065, + 8118, + 8066 + ]], + [[ + 8119, + 8117, + 8114 + ]], + [[ + 8114, + 8117, + 8065 + ]], + [[ + 8120, + 8119, + 8070 + ]], + [[ + 8070, + 8119, + 8114 + ]], + [[ + 8121, + 8120, + 8069 + ]], + [[ + 8069, + 8120, + 8070 + ]], + [[ + 8122, + 8121, + 8071 + ]], + [[ + 8071, + 8121, + 8069 + ]], + [[ + 8123, + 8122, + 8068 + ]], + [[ + 8068, + 8122, + 8071 + ]], + [[ + 8124, + 8123, + 8074 + ]], + [[ + 8074, + 8123, + 8068 + ]], + [[ + 8125, + 8124, + 8076 + ]], + [[ + 8076, + 8124, + 8074 + ]], + [[ + 8126, + 8125, + 8077 + ]], + [[ + 8077, + 8125, + 8076 + ]], + [[ + 8127, + 8126, + 8075 + ]], + [[ + 8075, + 8126, + 8077 + ]], + [[ + 8128, + 8127, + 8073 + ]], + [[ + 8073, + 8127, + 8075 + ]], + [[ + 8129, + 8128, + 8084 + ]], + [[ + 8084, + 8128, + 8073 + ]], + [[ + 8130, + 8129, + 8083 + ]], + [[ + 8083, + 8129, + 8084 + ]], + [[ + 8131, + 8130, + 8082 + ]], + [[ + 8082, + 8130, + 8083 + ]], + [[ + 8132, + 8131, + 8072 + ]], + [[ + 8072, + 8131, + 8082 + ]], + [[ + 8133, + 8132, + 8089 + ]], + [[ + 8089, + 8132, + 8072 + ]], + [[ + 8134, + 8133, + 8091 + ]], + [[ + 8091, + 8133, + 8089 + ]], + [[ + 8135, + 8134, + 8090 + ]], + [[ + 8090, + 8134, + 8091 + ]], + [[ + 8136, + 8135, + 8080 + ]], + [[ + 8080, + 8135, + 8090 + ]], + [[ + 8137, + 8136, + 8079 + ]], + [[ + 8079, + 8136, + 8080 + ]], + [[ + 8138, + 8137, + 8078 + ]], + [[ + 8078, + 8137, + 8079 + ]], + [[ + 8139, + 8138, + 8095 + ]], + [[ + 8095, + 8138, + 8078 + ]], + [[ + 8140, + 8139, + 8092 + ]], + [[ + 8092, + 8139, + 8095 + ]], + [[ + 8141, + 8140, + 8088 + ]], + [[ + 8088, + 8140, + 8092 + ]], + [[ + 8142, + 8141, + 8100 + ]], + [[ + 8100, + 8141, + 8088 + ]], + [[ + 8143, + 8142, + 8099 + ]], + [[ + 8099, + 8142, + 8100 + ]], + [[ + 8144, + 8143, + 8081 + ]], + [[ + 8081, + 8143, + 8099 + ]], + [[ + 8145, + 8144, + 8096 + ]], + [[ + 8096, + 8144, + 8081 + ]], + [[ + 8146, + 8145, + 8102 + ]], + [[ + 8102, + 8145, + 8096 + ]], + [[ + 8147, + 8146, + 8101 + ]], + [[ + 8101, + 8146, + 8102 + ]], + [[ + 8148, + 8147, + 8103 + ]], + [[ + 8103, + 8147, + 8101 + ]], + [[ + 8149, + 8148, + 8106 + ]], + [[ + 8106, + 8148, + 8103 + ]], + [[ + 8150, + 8149, + 8105 + ]], + [[ + 8105, + 8149, + 8106 + ]], + [[ + 8151, + 8150, + 8108 + ]], + [[ + 8108, + 8150, + 8105 + ]], + [[ + 8152, + 8151, + 8110 + ]], + [[ + 8110, + 8151, + 8108 + ]], + [[ + 8153, + 8152, + 8109 + ]], + [[ + 8109, + 8152, + 8110 + ]], + [[ + 8154, + 8153, + 8107 + ]], + [[ + 8107, + 8153, + 8109 + ]], + [[ + 8155, + 8154, + 8104 + ]], + [[ + 8104, + 8154, + 8107 + ]], + [[ + 8156, + 8155, + 8111 + ]], + [[ + 8111, + 8155, + 8104 + ]], + [[ + 8157, + 8156, + 8112 + ]], + [[ + 8112, + 8156, + 8111 + ]], + [[ + 8158, + 8157, + 8098 + ]], + [[ + 8098, + 8157, + 8112 + ]], + [[ + 2887, + 8158, + 8113 + ]], + [[ + 8113, + 8158, + 8098 + ]], + [[ + 2880, + 2887, + 8097 + ]], + [[ + 8097, + 2887, + 8113 + ]], + [[ + 2878, + 2880, + 8086 + ]], + [[ + 8086, + 2880, + 8097 + ]], + [[ + 2879, + 2878, + 8085 + ]], + [[ + 8085, + 2878, + 8086 + ]], + [[ + 2873, + 2879, + 8087 + ]], + [[ + 8087, + 2879, + 8085 + ]], + [[ + 2874, + 2873, + 8094 + ]], + [[ + 8094, + 2873, + 8087 + ]], + [[ + 2876, + 2874, + 8115 + ]], + [[ + 8115, + 2874, + 8094 + ]], + [[ + 2913, + 2876, + 8093 + ]], + [[ + 8093, + 2876, + 8115 + ]], + [[ + 2911, + 2913, + 8116 + ]], + [[ + 8116, + 2913, + 8093 + ]], + [[ + 8159, + 2911, + 8067 + ]], + [[ + 8067, + 2911, + 8116 + ]], + [[ + 8118, + 8159, + 8066 + ]], + [[ + 8066, + 8159, + 8067 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22c2-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.8)", + "identificatiebagpnd": "503100000018519", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000002511)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.73000001907349, + "min-height-surface": 0.119999997317791, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84995.031 447504.834)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:58)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 7880, + 8160, + 8161 + ]], + [[ + 7880, + 8161, + 7882 + ]], + [[ + 8162, + 8163, + 8161 + ]], + [[ + 8160, + 8162, + 8161 + ]], + [[ + 8164, + 8165, + 8162 + ]], + [[ + 8165, + 8164, + 8166 + ]], + [[ + 8166, + 8164, + 8167 + ]], + [[ + 8160, + 8164, + 8162 + ]], + [[ + 8168, + 1825, + 1789 + ]], + [[ + 1789, + 1825, + 7880 + ]], + [[ + 7880, + 1825, + 8160 + ]], + [[ + 8169, + 8168, + 847 + ]], + [[ + 847, + 8168, + 1789 + ]], + [[ + 847, + 1789, + 7882 + ]], + [[ + 7882, + 1789, + 7880 + ]], + [[ + 907, + 8169, + 8161 + ]], + [[ + 8161, + 8169, + 847 + ]], + [[ + 8161, + 847, + 7882 + ]], + [[ + 8170, + 907, + 8163 + ]], + [[ + 8163, + 907, + 8161 + ]], + [[ + 8171, + 8170, + 8162 + ]], + [[ + 8162, + 8170, + 8163 + ]], + [[ + 8172, + 8171, + 8165 + ]], + [[ + 8165, + 8171, + 8162 + ]], + [[ + 8173, + 8172, + 8166 + ]], + [[ + 8166, + 8172, + 8165 + ]], + [[ + 8174, + 8173, + 8167 + ]], + [[ + 8167, + 8173, + 8166 + ]], + [[ + 8175, + 8174, + 8164 + ]], + [[ + 8164, + 8174, + 8167 + ]], + [[ + 1825, + 8175, + 8160 + ]], + [[ + 8160, + 8175, + 8164 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22c7-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-34)", + "identificatiebagpnd": "503100000032723", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027126)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.65000009536743, + "min-height-surface": 0.0700000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84988.193 447489.302)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:66)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8176, + 8177, + 8178 + ]], + [[ + 8176, + 7945, + 8177 + ]], + [[ + 8179, + 8180, + 8181 + ]], + [[ + 7945, + 8176, + 7954 + ]], + [[ + 7951, + 7954, + 8182 + ]], + [[ + 7954, + 8183, + 8182 + ]], + [[ + 7954, + 8176, + 8183 + ]], + [[ + 8176, + 8179, + 8183 + ]], + [[ + 8176, + 8180, + 8179 + ]], + [[ + 8181, + 8180, + 8184 + ]], + [[ + 8184, + 8180, + 8185 + ]], + [[ + 892, + 891, + 8176 + ]], + [[ + 8176, + 891, + 8180 + ]], + [[ + 889, + 892, + 8178 + ]], + [[ + 8178, + 892, + 8176 + ]], + [[ + 947, + 889, + 8177 + ]], + [[ + 8177, + 889, + 8178 + ]], + [[ + 950, + 947, + 7945 + ]], + [[ + 7945, + 947, + 8177 + ]], + [[ + 7953, + 950, + 7954 + ]], + [[ + 7954, + 950, + 7945 + ]], + [[ + 7950, + 7953, + 7951 + ]], + [[ + 7951, + 7953, + 7954 + ]], + [[ + 8186, + 7950, + 8182 + ]], + [[ + 8182, + 7950, + 7951 + ]], + [[ + 899, + 8186, + 8183 + ]], + [[ + 8183, + 8186, + 8182 + ]], + [[ + 900, + 899, + 8179 + ]], + [[ + 8179, + 899, + 8183 + ]], + [[ + 898, + 900, + 8181 + ]], + [[ + 8181, + 900, + 8179 + ]], + [[ + 894, + 898, + 8184 + ]], + [[ + 8184, + 898, + 8181 + ]], + [[ + 906, + 894, + 8185 + ]], + [[ + 8185, + 894, + 8184 + ]], + [[ + 891, + 906, + 8180 + ]], + [[ + 8180, + 906, + 8185 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be22cc-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000022862", + "identificatiebagvbohoogstehuisnummer": "(1:503010000003312)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003311)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 5.28000020980835, + "min-height-surface": -0.340000003576279, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85011.805 447532.804)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:52-53)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8187, + 8188, + 8189 + ]], + [[ + 8187, + 8190, + 8188 + ]], + [[ + 8188, + 8046, + 8045 + ]], + [[ + 8188, + 8191, + 8046 + ]], + [[ + 8188, + 8190, + 8191 + ]], + [[ + 8187, + 8192, + 8193 + ]], + [[ + 8194, + 8190, + 8195 + ]], + [[ + 8196, + 8194, + 8195 + ]], + [[ + 8197, + 8196, + 8195 + ]], + [[ + 8197, + 8195, + 8198 + ]], + [[ + 8198, + 8195, + 8199 + ]], + [[ + 8195, + 8200, + 8201 + ]], + [[ + 8195, + 8193, + 8200 + ]], + [[ + 8190, + 8193, + 8195 + ]], + [[ + 8190, + 8187, + 8193 + ]], + [[ + 8202, + 8203, + 8005 + ]], + [[ + 8005, + 8203, + 3033 + ]], + [[ + 8005, + 3033, + 7992 + ]], + [[ + 7992, + 3033, + 7996 + ]], + [[ + 7992, + 7996, + 8187 + ]], + [[ + 8187, + 7996, + 8192 + ]], + [[ + 8204, + 8202, + 1372 + ]], + [[ + 1372, + 8202, + 8005 + ]], + [[ + 1372, + 8005, + 7990 + ]], + [[ + 7990, + 8005, + 7992 + ]], + [[ + 7990, + 7992, + 8189 + ]], + [[ + 8189, + 7992, + 8187 + ]], + [[ + 1502, + 8204, + 8188 + ]], + [[ + 8188, + 8204, + 1372 + ]], + [[ + 8188, + 1372, + 7990 + ]], + [[ + 8188, + 7990, + 8189 + ]], + [[ + 8205, + 1502, + 1539 + ]], + [[ + 1539, + 1502, + 8045 + ]], + [[ + 8045, + 1502, + 8188 + ]], + [[ + 8206, + 8205, + 3018 + ]], + [[ + 3018, + 8205, + 1539 + ]], + [[ + 3018, + 1539, + 8046 + ]], + [[ + 8046, + 1539, + 8045 + ]], + [[ + 3019, + 8206, + 8191 + ]], + [[ + 8191, + 8206, + 3018 + ]], + [[ + 8191, + 3018, + 8046 + ]], + [[ + 3023, + 3019, + 8190 + ]], + [[ + 8190, + 3019, + 8191 + ]], + [[ + 3022, + 3023, + 8194 + ]], + [[ + 8194, + 3023, + 8190 + ]], + [[ + 3021, + 3022, + 8196 + ]], + [[ + 8196, + 3022, + 8194 + ]], + [[ + 3020, + 3021, + 8197 + ]], + [[ + 8197, + 3021, + 8196 + ]], + [[ + 3016, + 3020, + 8198 + ]], + [[ + 8198, + 3020, + 8197 + ]], + [[ + 8207, + 3016, + 8199 + ]], + [[ + 8199, + 3016, + 8198 + ]], + [[ + 8208, + 8207, + 8195 + ]], + [[ + 8195, + 8207, + 8199 + ]], + [[ + 3030, + 8208, + 8201 + ]], + [[ + 8201, + 8208, + 8195 + ]], + [[ + 3032, + 3030, + 8200 + ]], + [[ + 8200, + 3030, + 8201 + ]], + [[ + 3035, + 3032, + 8193 + ]], + [[ + 8193, + 3032, + 8200 + ]], + [[ + 8203, + 3035, + 3033 + ]], + [[ + 3033, + 3035, + 7996 + ]], + [[ + 7996, + 3035, + 8192 + ]], + [[ + 8192, + 3035, + 8193 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be49e1-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:17.1)", + "identificatiebagpnd": "503100000018595", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027128)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046d949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.98000001907349, + "min-height-surface": -0.109999999403954, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84961.012 447480.098)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:70)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8209, + 8210, + 8211 + ]], + [[ + 8209, + 8212, + 8213 + ]], + [[ + 8210, + 8209, + 8214 + ]], + [[ + 8215, + 8214, + 8216 + ]], + [[ + 8216, + 8214, + 8217 + ]], + [[ + 8214, + 8213, + 8217 + ]], + [[ + 8214, + 8209, + 8213 + ]], + [[ + 8218, + 8219, + 8209 + ]], + [[ + 8209, + 8219, + 8212 + ]], + [[ + 8220, + 8218, + 8211 + ]], + [[ + 8211, + 8218, + 8209 + ]], + [[ + 8221, + 8220, + 8222 + ]], + [[ + 8222, + 8220, + 8210 + ]], + [[ + 8210, + 8220, + 8211 + ]], + [[ + 8223, + 8221, + 8224 + ]], + [[ + 8224, + 8221, + 8222 + ]], + [[ + 8224, + 8222, + 8214 + ]], + [[ + 8214, + 8222, + 8210 + ]], + [[ + 8225, + 8223, + 8226 + ]], + [[ + 8226, + 8223, + 8224 + ]], + [[ + 8226, + 8224, + 8215 + ]], + [[ + 8215, + 8224, + 8214 + ]], + [[ + 1143, + 8225, + 8227 + ]], + [[ + 8227, + 8225, + 8226 + ]], + [[ + 8227, + 8226, + 8216 + ]], + [[ + 8216, + 8226, + 8215 + ]], + [[ + 1144, + 1143, + 8217 + ]], + [[ + 8217, + 1143, + 8227 + ]], + [[ + 8217, + 8227, + 8216 + ]], + [[ + 1247, + 1144, + 8213 + ]], + [[ + 8213, + 1144, + 8217 + ]], + [[ + 8219, + 1247, + 8212 + ]], + [[ + 8212, + 1247, + 8213 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be49e6-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:17.1)", + "identificatiebagpnd": "503100000018591", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027129)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046da49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.95000004768372, + "min-height-surface": -0.109999999403954, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84954.601 447482.214)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:72)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8224, + 8226, + 424 + ]], + [[ + 8224, + 424, + 8222 + ]], + [[ + 8222, + 424, + 427 + ]], + [[ + 424, + 8226, + 8228 + ]], + [[ + 424, + 434, + 425 + ]], + [[ + 424, + 8228, + 434 + ]], + [[ + 8226, + 8227, + 8228 + ]], + [[ + 8223, + 8225, + 8224 + ]], + [[ + 8224, + 8225, + 8226 + ]], + [[ + 8221, + 8223, + 8222 + ]], + [[ + 8222, + 8223, + 8224 + ]], + [[ + 8229, + 8221, + 426 + ]], + [[ + 426, + 8221, + 427 + ]], + [[ + 427, + 8221, + 8222 + ]], + [[ + 8230, + 8229, + 422 + ]], + [[ + 422, + 8229, + 426 + ]], + [[ + 422, + 426, + 424 + ]], + [[ + 424, + 426, + 427 + ]], + [[ + 8231, + 8230, + 423 + ]], + [[ + 423, + 8230, + 422 + ]], + [[ + 423, + 422, + 425 + ]], + [[ + 425, + 422, + 424 + ]], + [[ + 8232, + 8231, + 433 + ]], + [[ + 433, + 8231, + 423 + ]], + [[ + 433, + 423, + 434 + ]], + [[ + 434, + 423, + 425 + ]], + [[ + 1149, + 8232, + 8228 + ]], + [[ + 8228, + 8232, + 433 + ]], + [[ + 8228, + 433, + 434 + ]], + [[ + 1143, + 1149, + 8227 + ]], + [[ + 8227, + 1149, + 8228 + ]], + [[ + 8225, + 1143, + 8226 + ]], + [[ + 8226, + 1143, + 8227 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be49eb-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000028000", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003303)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046e249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 5.82999992370605, + "min-height-surface": 0.159999996423721, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84984.506 447563.460)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:43)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8233, + 8234, + 8235 + ]], + [[ + 8233, + 8236, + 8234 + ]], + [[ + 8234, + 8236, + 8237 + ]], + [[ + 8237, + 8236, + 8238 + ]], + [[ + 8236, + 8239, + 8240 + ]], + [[ + 8241, + 8233, + 8242 + ]], + [[ + 8240, + 8239, + 8243 + ]], + [[ + 8236, + 8233, + 8239 + ]], + [[ + 8244, + 8241, + 8242 + ]], + [[ + 8239, + 8233, + 8241 + ]], + [[ + 676, + 677, + 660 + ]], + [[ + 660, + 677, + 664 + ]], + [[ + 660, + 664, + 8233 + ]], + [[ + 8233, + 664, + 8242 + ]], + [[ + 675, + 676, + 661 + ]], + [[ + 661, + 676, + 660 + ]], + [[ + 661, + 660, + 8235 + ]], + [[ + 8235, + 660, + 8233 + ]], + [[ + 1687, + 675, + 8234 + ]], + [[ + 8234, + 675, + 661 + ]], + [[ + 8234, + 661, + 8235 + ]], + [[ + 1420, + 1687, + 8237 + ]], + [[ + 8237, + 1687, + 8234 + ]], + [[ + 1416, + 1420, + 8245 + ]], + [[ + 8245, + 1420, + 8238 + ]], + [[ + 8238, + 1420, + 8237 + ]], + [[ + 8246, + 1416, + 8247 + ]], + [[ + 8247, + 1416, + 8245 + ]], + [[ + 8247, + 8245, + 8236 + ]], + [[ + 8236, + 8245, + 8238 + ]], + [[ + 8248, + 8246, + 8249 + ]], + [[ + 8249, + 8246, + 8247 + ]], + [[ + 8249, + 8247, + 8240 + ]], + [[ + 8240, + 8247, + 8236 + ]], + [[ + 8250, + 8248, + 8243 + ]], + [[ + 8243, + 8248, + 8249 + ]], + [[ + 8243, + 8249, + 8240 + ]], + [[ + 8251, + 8250, + 8239 + ]], + [[ + 8239, + 8250, + 8243 + ]], + [[ + 8252, + 8251, + 8241 + ]], + [[ + 8241, + 8251, + 8239 + ]], + [[ + 8253, + 8252, + 8244 + ]], + [[ + 8244, + 8252, + 8241 + ]], + [[ + 677, + 8253, + 664 + ]], + [[ + 664, + 8253, + 8242 + ]], + [[ + 8242, + 8253, + 8244 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be49f0-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.9)", + "identificatiebagpnd": "503100000017045", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003302)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046e349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 5.76999998092651, + "min-height-surface": 0.150000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84980.310 447567.401)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:42)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8247, + 8254, + 8245 + ]], + [[ + 8245, + 8254, + 8255 + ]], + [[ + 8256, + 8247, + 8249 + ]], + [[ + 8257, + 8254, + 8258 + ]], + [[ + 8257, + 8258, + 8259 + ]], + [[ + 8258, + 8254, + 8260 + ]], + [[ + 8258, + 8261, + 8262 + ]], + [[ + 8258, + 8263, + 8261 + ]], + [[ + 8261, + 8263, + 8264 + ]], + [[ + 8254, + 8247, + 8260 + ]], + [[ + 8265, + 8260, + 8256 + ]], + [[ + 8263, + 8258, + 8260 + ]], + [[ + 8266, + 8256, + 8249 + ]], + [[ + 8260, + 8247, + 8256 + ]], + [[ + 8267, + 8268, + 8246 + ]], + [[ + 8246, + 8268, + 8248 + ]], + [[ + 8246, + 8248, + 8247 + ]], + [[ + 8247, + 8248, + 8249 + ]], + [[ + 8269, + 8267, + 1416 + ]], + [[ + 1416, + 8267, + 8246 + ]], + [[ + 1416, + 8246, + 8245 + ]], + [[ + 8245, + 8246, + 8247 + ]], + [[ + 1683, + 8269, + 8255 + ]], + [[ + 8255, + 8269, + 1416 + ]], + [[ + 8255, + 1416, + 8245 + ]], + [[ + 8270, + 1683, + 8254 + ]], + [[ + 8254, + 1683, + 8255 + ]], + [[ + 8271, + 8270, + 8257 + ]], + [[ + 8257, + 8270, + 8254 + ]], + [[ + 8272, + 8271, + 8259 + ]], + [[ + 8259, + 8271, + 8257 + ]], + [[ + 8273, + 8272, + 8258 + ]], + [[ + 8258, + 8272, + 8259 + ]], + [[ + 8274, + 8273, + 8262 + ]], + [[ + 8262, + 8273, + 8258 + ]], + [[ + 8275, + 8274, + 8261 + ]], + [[ + 8261, + 8274, + 8262 + ]], + [[ + 8276, + 8275, + 8264 + ]], + [[ + 8264, + 8275, + 8261 + ]], + [[ + 8277, + 8276, + 8263 + ]], + [[ + 8263, + 8276, + 8264 + ]], + [[ + 8278, + 8277, + 8260 + ]], + [[ + 8260, + 8277, + 8263 + ]], + [[ + 8279, + 8278, + 8265 + ]], + [[ + 8265, + 8278, + 8260 + ]], + [[ + 8280, + 8279, + 8256 + ]], + [[ + 8256, + 8279, + 8265 + ]], + [[ + 8281, + 8280, + 8266 + ]], + [[ + 8266, + 8280, + 8256 + ]], + [[ + 8268, + 8281, + 8248 + ]], + [[ + 8248, + 8281, + 8249 + ]], + [[ + 8249, + 8281, + 8266 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be49f5-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000026309", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003301)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046e549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.76999998092651, + "min-height-surface": 0.170000001788139, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84967.823 447579.382)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:41)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8282, + 8283, + 8284 + ]], + [[ + 8285, + 8286, + 8287 + ]], + [[ + 8286, + 8288, + 8287 + ]], + [[ + 8289, + 8290, + 8287 + ]], + [[ + 8288, + 8289, + 8287 + ]], + [[ + 8291, + 8285, + 8287 + ]], + [[ + 8292, + 8293, + 8285 + ]], + [[ + 8294, + 8295, + 8285 + ]], + [[ + 8296, + 8297, + 8295 + ]], + [[ + 8298, + 8299, + 8300 + ]], + [[ + 8299, + 8301, + 8300 + ]], + [[ + 8302, + 8303, + 8304 + ]], + [[ + 8300, + 8301, + 8304 + ]], + [[ + 8302, + 8305, + 8303 + ]], + [[ + 8302, + 8306, + 8305 + ]], + [[ + 8301, + 8302, + 8304 + ]], + [[ + 8296, + 8298, + 8300 + ]], + [[ + 8295, + 8294, + 8296 + ]], + [[ + 8291, + 8284, + 8307 + ]], + [[ + 8296, + 8308, + 8298 + ]], + [[ + 8296, + 8294, + 8308 + ]], + [[ + 8294, + 8285, + 8293 + ]], + [[ + 8284, + 8309, + 8307 + ]], + [[ + 8291, + 8307, + 8285 + ]], + [[ + 8310, + 8293, + 8292 + ]], + [[ + 8285, + 8307, + 8292 + ]], + [[ + 8284, + 8283, + 8309 + ]], + [[ + 8311, + 8312, + 8282 + ]], + [[ + 8282, + 8312, + 8283 + ]], + [[ + 8313, + 8311, + 8284 + ]], + [[ + 8284, + 8311, + 8282 + ]], + [[ + 8314, + 8313, + 8291 + ]], + [[ + 8291, + 8313, + 8284 + ]], + [[ + 8315, + 8314, + 8287 + ]], + [[ + 8287, + 8314, + 8291 + ]], + [[ + 8316, + 8315, + 8290 + ]], + [[ + 8290, + 8315, + 8287 + ]], + [[ + 8317, + 8316, + 8289 + ]], + [[ + 8289, + 8316, + 8290 + ]], + [[ + 8318, + 8317, + 8288 + ]], + [[ + 8288, + 8317, + 8289 + ]], + [[ + 2798, + 8318, + 8286 + ]], + [[ + 8286, + 8318, + 8288 + ]], + [[ + 2794, + 2798, + 8285 + ]], + [[ + 8285, + 2798, + 8286 + ]], + [[ + 2763, + 2794, + 8295 + ]], + [[ + 8295, + 2794, + 8285 + ]], + [[ + 2787, + 2763, + 8297 + ]], + [[ + 8297, + 2763, + 8295 + ]], + [[ + 2788, + 2787, + 8296 + ]], + [[ + 8296, + 2787, + 8297 + ]], + [[ + 2789, + 2788, + 8300 + ]], + [[ + 8300, + 2788, + 8296 + ]], + [[ + 2799, + 2789, + 8304 + ]], + [[ + 8304, + 2789, + 8300 + ]], + [[ + 8319, + 2799, + 8303 + ]], + [[ + 8303, + 2799, + 8304 + ]], + [[ + 8320, + 8319, + 8305 + ]], + [[ + 8305, + 8319, + 8303 + ]], + [[ + 8321, + 8320, + 8306 + ]], + [[ + 8306, + 8320, + 8305 + ]], + [[ + 8322, + 8321, + 8302 + ]], + [[ + 8302, + 8321, + 8306 + ]], + [[ + 8323, + 8322, + 8301 + ]], + [[ + 8301, + 8322, + 8302 + ]], + [[ + 8324, + 8323, + 8325 + ]], + [[ + 8325, + 8323, + 8326 + ]], + [[ + 8326, + 8323, + 8299 + ]], + [[ + 8299, + 8323, + 8301 + ]], + [[ + 8327, + 8324, + 8328 + ]], + [[ + 8328, + 8324, + 8325 + ]], + [[ + 8328, + 8325, + 8329 + ]], + [[ + 8329, + 8325, + 8326 + ]], + [[ + 8329, + 8326, + 8298 + ]], + [[ + 8298, + 8326, + 8299 + ]], + [[ + 8330, + 8327, + 8308 + ]], + [[ + 8308, + 8327, + 8328 + ]], + [[ + 8308, + 8328, + 8329 + ]], + [[ + 8308, + 8329, + 8298 + ]], + [[ + 8331, + 8330, + 8294 + ]], + [[ + 8294, + 8330, + 8308 + ]], + [[ + 8332, + 8331, + 8293 + ]], + [[ + 8293, + 8331, + 8294 + ]], + [[ + 8333, + 8332, + 8310 + ]], + [[ + 8310, + 8332, + 8293 + ]], + [[ + 8334, + 8333, + 8292 + ]], + [[ + 8292, + 8333, + 8310 + ]], + [[ + 8335, + 8334, + 8307 + ]], + [[ + 8307, + 8334, + 8292 + ]], + [[ + 8336, + 8335, + 8309 + ]], + [[ + 8309, + 8335, + 8307 + ]], + [[ + 8312, + 8336, + 8283 + ]], + [[ + 8283, + 8336, + 8309 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31be49fa-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:43.8)", + "identificatiebagpnd": "503100000026310", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000003300)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f046e649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 3.04999995231628, + "min-height-surface": 0.150000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84965.207 447582.006)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:40)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8337, + 8338, + 8339 + ]], + [[ + 8337, + 8339, + 8340 + ]], + [[ + 8339, + 8341, + 8342 + ]], + [[ + 8343, + 8344, + 8341 + ]], + [[ + 8339, + 8343, + 8341 + ]], + [[ + 8344, + 8343, + 8345 + ]], + [[ + 8339, + 8346, + 8343 + ]], + [[ + 8339, + 8338, + 8346 + ]], + [[ + 8346, + 8338, + 8347 + ]], + [[ + 8348, + 8349, + 8331 + ]], + [[ + 8331, + 8349, + 8332 + ]], + [[ + 8331, + 8332, + 8294 + ]], + [[ + 8294, + 8332, + 8293 + ]], + [[ + 8294, + 8293, + 8337 + ]], + [[ + 8337, + 8293, + 8338 + ]], + [[ + 8350, + 8348, + 8340 + ]], + [[ + 8340, + 8348, + 8331 + ]], + [[ + 8340, + 8331, + 8294 + ]], + [[ + 8340, + 8294, + 8337 + ]], + [[ + 8351, + 8350, + 8339 + ]], + [[ + 8339, + 8350, + 8340 + ]], + [[ + 8352, + 8351, + 8342 + ]], + [[ + 8342, + 8351, + 8339 + ]], + [[ + 746, + 8352, + 709 + ]], + [[ + 709, + 8352, + 8341 + ]], + [[ + 8341, + 8352, + 8342 + ]], + [[ + 747, + 746, + 710 + ]], + [[ + 710, + 746, + 709 + ]], + [[ + 710, + 709, + 8344 + ]], + [[ + 8344, + 709, + 8341 + ]], + [[ + 8353, + 747, + 8345 + ]], + [[ + 8345, + 747, + 710 + ]], + [[ + 8345, + 710, + 8344 + ]], + [[ + 8354, + 8353, + 8343 + ]], + [[ + 8343, + 8353, + 8345 + ]], + [[ + 8355, + 8354, + 8346 + ]], + [[ + 8346, + 8354, + 8343 + ]], + [[ + 8356, + 8355, + 8347 + ]], + [[ + 8347, + 8355, + 8346 + ]], + [[ + 8349, + 8356, + 8332 + ]], + [[ + 8332, + 8356, + 8293 + ]], + [[ + 8293, + 8356, + 8338 + ]], + [[ + 8338, + 8356, + 8347 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31c59cd7-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000022785", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0562849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.4300000667572, + "min-height-surface": 0.259999990463257, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8357, + 8358, + 8359 + ]], + [[ + 8357, + 8359, + 8360 + ]], + [[ + 8358, + 8361, + 8359 + ]], + [[ + 1396, + 1657, + 8362 + ]], + [[ + 8362, + 1657, + 8357 + ]], + [[ + 8357, + 1657, + 8363 + ]], + [[ + 8357, + 8363, + 8358 + ]], + [[ + 1398, + 1396, + 8364 + ]], + [[ + 8364, + 1396, + 8362 + ]], + [[ + 8364, + 8362, + 8360 + ]], + [[ + 8360, + 8362, + 8357 + ]], + [[ + 1393, + 1398, + 8359 + ]], + [[ + 8359, + 1398, + 8364 + ]], + [[ + 8359, + 8364, + 8360 + ]], + [[ + 1388, + 1393, + 8365 + ]], + [[ + 8365, + 1393, + 8361 + ]], + [[ + 8361, + 1393, + 8359 + ]], + [[ + 1657, + 1388, + 8363 + ]], + [[ + 8363, + 1388, + 8365 + ]], + [[ + 8363, + 8365, + 8358 + ]], + [[ + 8358, + 8365, + 8361 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31c59cdc-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-40.2)", + "identificatiebagpnd": "503100000022784", + "identificatiebagvbohoogstehuisnummer": "(1:503010000027120)", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027118)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0562949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.42000007629395, + "min-height-surface": 0.119999997317791, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84963.917 447554.114)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:51-55)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8366, + 8367, + 8368 + ]], + [[ + 8369, + 8370, + 8371 + ]], + [[ + 8365, + 8369, + 8371 + ]], + [[ + 8363, + 8369, + 8365 + ]], + [[ + 8372, + 8363, + 8373 + ]], + [[ + 8363, + 8374, + 8369 + ]], + [[ + 8363, + 8372, + 8374 + ]], + [[ + 8374, + 8375, + 8376 + ]], + [[ + 8374, + 8372, + 8375 + ]], + [[ + 8363, + 8367, + 8366 + ]], + [[ + 8368, + 8367, + 8377 + ]], + [[ + 8373, + 8378, + 8379 + ]], + [[ + 8373, + 8366, + 8378 + ]], + [[ + 8373, + 8363, + 8366 + ]], + [[ + 8368, + 8377, + 8380 + ]], + [[ + 8381, + 8368, + 8380 + ]], + [[ + 1501, + 1500, + 8367 + ]], + [[ + 8367, + 1500, + 8377 + ]], + [[ + 8382, + 1501, + 1657 + ]], + [[ + 1657, + 1501, + 8363 + ]], + [[ + 8363, + 1501, + 8367 + ]], + [[ + 8383, + 8382, + 1388 + ]], + [[ + 1388, + 8382, + 1657 + ]], + [[ + 1388, + 1657, + 8365 + ]], + [[ + 8365, + 1657, + 8363 + ]], + [[ + 1389, + 8383, + 8371 + ]], + [[ + 8371, + 8383, + 1388 + ]], + [[ + 8371, + 1388, + 8365 + ]], + [[ + 8384, + 1389, + 8370 + ]], + [[ + 8370, + 1389, + 8371 + ]], + [[ + 8385, + 8384, + 8369 + ]], + [[ + 8369, + 8384, + 8370 + ]], + [[ + 8386, + 8385, + 8374 + ]], + [[ + 8374, + 8385, + 8369 + ]], + [[ + 8387, + 8386, + 8376 + ]], + [[ + 8376, + 8386, + 8374 + ]], + [[ + 8388, + 8387, + 8375 + ]], + [[ + 8375, + 8387, + 8376 + ]], + [[ + 8389, + 8388, + 8372 + ]], + [[ + 8372, + 8388, + 8375 + ]], + [[ + 8390, + 8389, + 8373 + ]], + [[ + 8373, + 8389, + 8372 + ]], + [[ + 8391, + 8390, + 8379 + ]], + [[ + 8379, + 8390, + 8373 + ]], + [[ + 8392, + 8391, + 8378 + ]], + [[ + 8378, + 8391, + 8379 + ]], + [[ + 8393, + 8392, + 8366 + ]], + [[ + 8366, + 8392, + 8378 + ]], + [[ + 8394, + 8393, + 8368 + ]], + [[ + 8368, + 8393, + 8366 + ]], + [[ + 8395, + 8394, + 8381 + ]], + [[ + 8381, + 8394, + 8368 + ]], + [[ + 8396, + 8395, + 8380 + ]], + [[ + 8380, + 8395, + 8381 + ]], + [[ + 1500, + 8396, + 8377 + ]], + [[ + 8377, + 8396, + 8380 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31c59cdf-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000026303", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0562a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.75999999046326, + "min-height-surface": 0.330000013113022, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8326, + 8329, + 8397 + ]], + [[ + 8329, + 8398, + 8397 + ]], + [[ + 8398, + 8329, + 8399 + ]], + [[ + 8398, + 8399, + 8400 + ]], + [[ + 8329, + 8401, + 8399 + ]], + [[ + 8325, + 8328, + 8326 + ]], + [[ + 8326, + 8328, + 8329 + ]], + [[ + 8402, + 8325, + 8397 + ]], + [[ + 8397, + 8325, + 8326 + ]], + [[ + 1097, + 8402, + 8398 + ]], + [[ + 8398, + 8402, + 8397 + ]], + [[ + 1095, + 1097, + 8400 + ]], + [[ + 8400, + 1097, + 8398 + ]], + [[ + 8403, + 1095, + 8399 + ]], + [[ + 8399, + 1095, + 8400 + ]], + [[ + 8404, + 8403, + 8401 + ]], + [[ + 8401, + 8403, + 8399 + ]], + [[ + 8328, + 8404, + 8329 + ]], + [[ + 8329, + 8404, + 8401 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e18906-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000017316", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0751749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 0.75, + "min-height-surface": 0.0199999995529652, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8405, + 8406, + 8407 + ]], + [[ + 8405, + 8407, + 8408 + ]], + [[ + 8408, + 8407, + 8409 + ]], + [[ + 8406, + 8410, + 8407 + ]], + [[ + 8406, + 8411, + 8410 + ]], + [[ + 1151, + 1150, + 8405 + ]], + [[ + 8405, + 1150, + 8406 + ]], + [[ + 1178, + 1151, + 8408 + ]], + [[ + 8408, + 1151, + 8405 + ]], + [[ + 1172, + 1178, + 8409 + ]], + [[ + 8409, + 1178, + 8408 + ]], + [[ + 1160, + 1172, + 8407 + ]], + [[ + 8407, + 1172, + 8409 + ]], + [[ + 1161, + 1160, + 8410 + ]], + [[ + 8410, + 1160, + 8407 + ]], + [[ + 8412, + 1161, + 8411 + ]], + [[ + 8411, + 1161, + 8410 + ]], + [[ + 1150, + 8412, + 8406 + ]], + [[ + 8406, + 8412, + 8411 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1890f-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000017220", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0751a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.40000009536743, + "min-height-surface": 0.209999993443489, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8413, + 8414, + 8415 + ]], + [[ + 8413, + 8415, + 8416 + ]], + [[ + 8417, + 1942, + 8413 + ]], + [[ + 8413, + 1942, + 8414 + ]], + [[ + 2214, + 8417, + 8416 + ]], + [[ + 8416, + 8417, + 8413 + ]], + [[ + 1941, + 2214, + 8415 + ]], + [[ + 8415, + 2214, + 8416 + ]], + [[ + 1942, + 1941, + 8414 + ]], + [[ + 8414, + 1941, + 8415 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e18912-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000017502", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0751b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.94000005722046, + "min-height-surface": 0.340000003576279, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8418, + 8419, + 8420 + ]], + [[ + 8419, + 8421, + 8420 + ]], + [[ + 8419, + 8422, + 8421 + ]], + [[ + 8421, + 8422, + 8423 + ]], + [[ + 8424, + 8425, + 8418 + ]], + [[ + 8418, + 8425, + 8419 + ]], + [[ + 8426, + 8424, + 8420 + ]], + [[ + 8420, + 8424, + 8418 + ]], + [[ + 8427, + 8426, + 8421 + ]], + [[ + 8421, + 8426, + 8420 + ]], + [[ + 8428, + 8427, + 8423 + ]], + [[ + 8423, + 8427, + 8421 + ]], + [[ + 8429, + 8428, + 8422 + ]], + [[ + 8422, + 8428, + 8423 + ]], + [[ + 8425, + 8429, + 8419 + ]], + [[ + 8419, + 8429, + 8422 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e18915-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000026315", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0751c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.83999991416931, + "min-height-surface": 0.349999994039536, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8430, + 8431, + 8432 + ]], + [[ + 8430, + 8432, + 8433 + ]], + [[ + 8434, + 8435, + 8430 + ]], + [[ + 8430, + 8435, + 8431 + ]], + [[ + 8436, + 8434, + 8433 + ]], + [[ + 8433, + 8434, + 8430 + ]], + [[ + 8437, + 8436, + 8432 + ]], + [[ + 8432, + 8436, + 8433 + ]], + [[ + 8435, + 8437, + 8431 + ]], + [[ + 8431, + 8437, + 8432 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e18918-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000017416", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0751d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.41000008583069, + "min-height-surface": 0.349999994039536, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8438, + 8439, + 8440 + ]], + [[ + 8438, + 8440, + 8441 + ]], + [[ + 8442, + 8443, + 8438 + ]], + [[ + 8438, + 8443, + 8439 + ]], + [[ + 8444, + 8442, + 8441 + ]], + [[ + 8441, + 8442, + 8438 + ]], + [[ + 8445, + 8444, + 8440 + ]], + [[ + 8440, + 8444, + 8441 + ]], + [[ + 8443, + 8445, + 8439 + ]], + [[ + 8439, + 8445, + 8440 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1b041-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.6)", + "identificatiebagpnd": "503100000027890", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000050769)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.84999990463257, + "min-height-surface": 0.409999996423721, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84922.364 447574.977)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:48B)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8446, + 8447, + 8448 + ]], + [[ + 8447, + 8449, + 8448 + ]], + [[ + 2477, + 2303, + 8446 + ]], + [[ + 8446, + 2303, + 8447 + ]], + [[ + 8450, + 2477, + 2476 + ]], + [[ + 2476, + 2477, + 8448 + ]], + [[ + 8448, + 2477, + 8446 + ]], + [[ + 8451, + 8450, + 2487 + ]], + [[ + 2487, + 8450, + 2476 + ]], + [[ + 2487, + 2476, + 8449 + ]], + [[ + 8449, + 2476, + 8448 + ]], + [[ + 2303, + 8451, + 8447 + ]], + [[ + 8447, + 8451, + 2487 + ]], + [[ + 8447, + 2487, + 8449 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1b046-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.6)", + "identificatiebagpnd": "503100000027892", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000050770)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.86999988555908, + "min-height-surface": 0.409999996423721, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84923.983 447577.736)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:48C)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8452, + 8453, + 8454 + ]], + [[ + 8453, + 8455, + 8454 + ]], + [[ + 2478, + 2301, + 8452 + ]], + [[ + 8452, + 2301, + 8453 + ]], + [[ + 2477, + 2478, + 8446 + ]], + [[ + 8446, + 2478, + 8454 + ]], + [[ + 8454, + 2478, + 8452 + ]], + [[ + 2303, + 2477, + 8447 + ]], + [[ + 8447, + 2477, + 8446 + ]], + [[ + 8447, + 8446, + 8455 + ]], + [[ + 8455, + 8446, + 8454 + ]], + [[ + 2301, + 2303, + 8453 + ]], + [[ + 8453, + 2303, + 8447 + ]], + [[ + 8453, + 8447, + 8455 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1b04b-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.6)", + "identificatiebagpnd": "503100000017418", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000050771)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.86999988555908, + "min-height-surface": 0.400000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84927.347 447578.414)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:48D)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8456, + 8457, + 8452 + ]], + [[ + 8457, + 8453, + 8452 + ]], + [[ + 2468, + 2510, + 8458 + ]], + [[ + 8458, + 2510, + 8459 + ]], + [[ + 8458, + 8459, + 8456 + ]], + [[ + 8456, + 8459, + 8457 + ]], + [[ + 8460, + 2468, + 2478 + ]], + [[ + 2478, + 2468, + 8452 + ]], + [[ + 8452, + 2468, + 8458 + ]], + [[ + 8452, + 8458, + 8456 + ]], + [[ + 8461, + 8460, + 2301 + ]], + [[ + 2301, + 8460, + 2478 + ]], + [[ + 2301, + 2478, + 8453 + ]], + [[ + 8453, + 2478, + 8452 + ]], + [[ + 2510, + 8461, + 8459 + ]], + [[ + 8459, + 8461, + 8457 + ]], + [[ + 8457, + 8461, + 2301 + ]], + [[ + 8457, + 2301, + 8453 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1b050-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:54.4)", + "identificatiebagpnd": "503100000017415", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000050774)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.90000009536743, + "min-height-surface": 0.449999988079071, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84931.244 447585.027)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:48G)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8462, + 8463, + 8464 + ]], + [[ + 8463, + 7497, + 8464 + ]], + [[ + 8464, + 7497, + 7496 + ]], + [[ + 2484, + 2485, + 8462 + ]], + [[ + 8462, + 2485, + 8463 + ]], + [[ + 2261, + 2484, + 8464 + ]], + [[ + 8464, + 2484, + 8462 + ]], + [[ + 8465, + 2261, + 2262 + ]], + [[ + 2262, + 2261, + 7496 + ]], + [[ + 7496, + 2261, + 8464 + ]], + [[ + 8466, + 8465, + 2517 + ]], + [[ + 2517, + 8465, + 2262 + ]], + [[ + 2517, + 2262, + 7497 + ]], + [[ + 7497, + 2262, + 7496 + ]], + [[ + 2485, + 8466, + 8463 + ]], + [[ + 8463, + 8466, + 2517 + ]], + [[ + 8463, + 2517, + 7497 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1b055-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.6)", + "identificatiebagpnd": "503100000017501", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000050772)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.84999990463257, + "min-height-surface": 0.389999985694885, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84929.127 447581.439)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:48E)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8467, + 8468, + 8458 + ]], + [[ + 8468, + 8459, + 8458 + ]], + [[ + 8469, + 8470, + 2467 + ]], + [[ + 2467, + 8470, + 2509 + ]], + [[ + 2467, + 2509, + 8471 + ]], + [[ + 8471, + 2509, + 8472 + ]], + [[ + 8471, + 8472, + 8467 + ]], + [[ + 8467, + 8472, + 8468 + ]], + [[ + 8473, + 8469, + 2468 + ]], + [[ + 2468, + 8469, + 8458 + ]], + [[ + 8458, + 8469, + 2467 + ]], + [[ + 8458, + 2467, + 8471 + ]], + [[ + 8458, + 8471, + 8467 + ]], + [[ + 8474, + 8473, + 2510 + ]], + [[ + 2510, + 8473, + 2468 + ]], + [[ + 2510, + 2468, + 8459 + ]], + [[ + 8459, + 2468, + 8458 + ]], + [[ + 8470, + 8474, + 2509 + ]], + [[ + 2509, + 8474, + 8472 + ]], + [[ + 8472, + 8474, + 8468 + ]], + [[ + 8468, + 8474, + 2510 + ]], + [[ + 8468, + 2510, + 8459 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1b05a-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.6)", + "identificatiebagpnd": "503100000017320", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000050773)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.82999992370605, + "min-height-surface": 0.400000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84932.514 447581.966)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:48F)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8475, + 8472, + 8471 + ]], + [[ + 8475, + 8471, + 8476 + ]], + [[ + 2483, + 2509, + 8475 + ]], + [[ + 8475, + 2509, + 8472 + ]], + [[ + 2481, + 2483, + 8476 + ]], + [[ + 8476, + 2483, + 8475 + ]], + [[ + 2467, + 2481, + 8471 + ]], + [[ + 8471, + 2481, + 8476 + ]], + [[ + 2509, + 2467, + 8472 + ]], + [[ + 8472, + 2467, + 8471 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1b05d-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000017405", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 1.60000002384186, + "min-height-surface": 0.400000005960464, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8477, + 8478, + 8479 + ]], + [[ + 8478, + 8480, + 8479 + ]], + [[ + 8481, + 8482, + 8477 + ]], + [[ + 8477, + 8482, + 8478 + ]], + [[ + 8483, + 8481, + 8479 + ]], + [[ + 8479, + 8481, + 8477 + ]], + [[ + 8484, + 8483, + 8480 + ]], + [[ + 8480, + 8483, + 8479 + ]], + [[ + 8482, + 8484, + 8478 + ]], + [[ + 8478, + 8484, + 8480 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1d770-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000017417", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 1.02999997138977, + "min-height-surface": 0.270000010728836, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8485, + 8486, + 8487 + ]], + [[ + 8485, + 8487, + 8488 + ]], + [[ + 8486, + 8489, + 8487 + ]], + [[ + 8490, + 8491, + 8485 + ]], + [[ + 8485, + 8491, + 8486 + ]], + [[ + 8492, + 8490, + 8488 + ]], + [[ + 8488, + 8490, + 8485 + ]], + [[ + 8493, + 8492, + 8487 + ]], + [[ + 8487, + 8492, + 8488 + ]], + [[ + 8494, + 8493, + 8489 + ]], + [[ + 8489, + 8493, + 8487 + ]], + [[ + 8491, + 8494, + 8486 + ]], + [[ + 8486, + 8494, + 8489 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1d773-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000027891", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.49000000953674, + "min-height-surface": 0.430000007152557, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8495, + 8496, + 8497 + ]], + [[ + 8495, + 8497, + 8498 + ]], + [[ + 8497, + 8496, + 8499 + ]], + [[ + 8497, + 8499, + 8500 + ]], + [[ + 2273, + 2749, + 8495 + ]], + [[ + 8495, + 2749, + 8496 + ]], + [[ + 2270, + 2273, + 8498 + ]], + [[ + 8498, + 2273, + 8495 + ]], + [[ + 2271, + 2270, + 8497 + ]], + [[ + 8497, + 2270, + 8498 + ]], + [[ + 2269, + 2271, + 8500 + ]], + [[ + 8500, + 2271, + 8497 + ]], + [[ + 2267, + 2269, + 8499 + ]], + [[ + 8499, + 2269, + 8500 + ]], + [[ + 2749, + 2267, + 8496 + ]], + [[ + 8496, + 2267, + 8499 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1d778-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-35.6)", + "identificatiebagpnd": "503100000017414", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000050768)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0752e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.84999990463257, + "min-height-surface": 0.419999986886978, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:84919.038 447574.260)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:48A)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8448, + 8449, + 8501 + ]], + [[ + 8449, + 8502, + 8501 + ]], + [[ + 2476, + 2487, + 8448 + ]], + [[ + 8448, + 2487, + 8449 + ]], + [[ + 2268, + 2476, + 8501 + ]], + [[ + 8501, + 2476, + 8448 + ]], + [[ + 2264, + 2268, + 8502 + ]], + [[ + 8502, + 2268, + 8501 + ]], + [[ + 2487, + 2264, + 8449 + ]], + [[ + 8449, + 2264, + 8502 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1d795-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000022861", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f075e349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.40000009536743, + "min-height-surface": 0.239999994635582, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8503, + 8504, + 8364 + ]], + [[ + 8504, + 8362, + 8364 + ]], + [[ + 1401, + 1598, + 8503 + ]], + [[ + 8503, + 1598, + 8504 + ]], + [[ + 8505, + 1401, + 1398 + ]], + [[ + 1398, + 1401, + 8364 + ]], + [[ + 8364, + 1401, + 8503 + ]], + [[ + 8506, + 8505, + 1396 + ]], + [[ + 1396, + 8505, + 1398 + ]], + [[ + 1396, + 1398, + 8362 + ]], + [[ + 8362, + 1398, + 8364 + ]], + [[ + 1598, + 8506, + 8504 + ]], + [[ + 8504, + 8506, + 1396 + ]], + [[ + 8504, + 1396, + 8362 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1fea8-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018599", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f075e449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.41000008583069, + "min-height-surface": 0.189999997615814, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8507, + 8508, + 8509 + ]], + [[ + 8508, + 8510, + 8509 + ]], + [[ + 1478, + 1465, + 8507 + ]], + [[ + 8507, + 1465, + 8508 + ]], + [[ + 1455, + 1478, + 8509 + ]], + [[ + 8509, + 1478, + 8507 + ]], + [[ + 1512, + 1455, + 8510 + ]], + [[ + 8510, + 1455, + 8509 + ]], + [[ + 1465, + 1512, + 8508 + ]], + [[ + 8508, + 1512, + 8510 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1feab-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018606", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f075e549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.30999994277954, + "min-height-surface": 0.200000002980232, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8511, + 8512, + 8513 + ]], + [[ + 8512, + 8514, + 8513 + ]], + [[ + 1451, + 1713, + 8511 + ]], + [[ + 8511, + 1713, + 8512 + ]], + [[ + 1324, + 1451, + 8513 + ]], + [[ + 8513, + 1451, + 8511 + ]], + [[ + 1667, + 1324, + 8514 + ]], + [[ + 8514, + 1324, + 8513 + ]], + [[ + 1713, + 1667, + 8512 + ]], + [[ + 8512, + 1667, + 8514 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1feae-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018588", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f075e649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.78999996185303, + "min-height-surface": 0.349999994039536, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8515, + 8516, + 8517 + ]], + [[ + 8516, + 8518, + 8517 + ]], + [[ + 1438, + 1452, + 8515 + ]], + [[ + 8515, + 1452, + 8516 + ]], + [[ + 1468, + 1438, + 8517 + ]], + [[ + 8517, + 1438, + 8515 + ]], + [[ + 1402, + 1468, + 8518 + ]], + [[ + 8518, + 1468, + 8517 + ]], + [[ + 1452, + 1402, + 8516 + ]], + [[ + 8516, + 1402, + 8518 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1feb1-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018603", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f075e849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 1.78999996185303, + "min-height-surface": 0.00999999977648258, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8519, + 8520, + 8521 + ]], + [[ + 8519, + 8521, + 8522 + ]], + [[ + 8522, + 8521, + 8523 + ]], + [[ + 8520, + 8524, + 8521 + ]], + [[ + 8520, + 8525, + 8524 + ]], + [[ + 1225, + 1229, + 8519 + ]], + [[ + 8519, + 1229, + 8520 + ]], + [[ + 1226, + 1225, + 8522 + ]], + [[ + 8522, + 1225, + 8519 + ]], + [[ + 1206, + 1226, + 8523 + ]], + [[ + 8523, + 1226, + 8522 + ]], + [[ + 1216, + 1206, + 8521 + ]], + [[ + 8521, + 1206, + 8523 + ]], + [[ + 1217, + 1216, + 8524 + ]], + [[ + 8524, + 1216, + 8521 + ]], + [[ + 8526, + 1217, + 8525 + ]], + [[ + 8525, + 1217, + 8524 + ]], + [[ + 1229, + 8526, + 8520 + ]], + [[ + 8520, + 8526, + 8525 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1feb4-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018604", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f075e949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 1.21000003814697, + "min-height-surface": 0.00999999977648258, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8527, + 8528, + 8529 + ]], + [[ + 8527, + 8529, + 8530 + ]], + [[ + 8530, + 8529, + 8531 + ]], + [[ + 8528, + 8532, + 8529 + ]], + [[ + 8528, + 8533, + 8532 + ]], + [[ + 1122, + 1121, + 8527 + ]], + [[ + 8527, + 1121, + 8528 + ]], + [[ + 1133, + 1122, + 8530 + ]], + [[ + 8530, + 1122, + 8527 + ]], + [[ + 1115, + 1133, + 8531 + ]], + [[ + 8531, + 1133, + 8530 + ]], + [[ + 1227, + 1115, + 8529 + ]], + [[ + 8529, + 1115, + 8531 + ]], + [[ + 1230, + 1227, + 8532 + ]], + [[ + 8532, + 1227, + 8529 + ]], + [[ + 8534, + 1230, + 8533 + ]], + [[ + 8533, + 1230, + 8532 + ]], + [[ + 1121, + 8534, + 8528 + ]], + [[ + 8528, + 8534, + 8533 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1feb7-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018597", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f075ea49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.35999989509583, + "min-height-surface": 0.0299999993294477, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8535, + 8536, + 8537 + ]], + [[ + 8536, + 8538, + 8537 + ]], + [[ + 8537, + 8538, + 8539 + ]], + [[ + 8536, + 8540, + 8538 + ]], + [[ + 8538, + 8540, + 8541 + ]], + [[ + 8536, + 8542, + 8540 + ]], + [[ + 8543, + 8544, + 8535 + ]], + [[ + 8535, + 8544, + 8536 + ]], + [[ + 1315, + 8543, + 8537 + ]], + [[ + 8537, + 8543, + 8535 + ]], + [[ + 1126, + 1315, + 8539 + ]], + [[ + 8539, + 1315, + 8537 + ]], + [[ + 1125, + 1126, + 8538 + ]], + [[ + 8538, + 1126, + 8539 + ]], + [[ + 1124, + 1125, + 8541 + ]], + [[ + 8541, + 1125, + 8538 + ]], + [[ + 8545, + 1124, + 8540 + ]], + [[ + 8540, + 1124, + 8541 + ]], + [[ + 8546, + 8545, + 8542 + ]], + [[ + 8542, + 8545, + 8540 + ]], + [[ + 8544, + 8546, + 8536 + ]], + [[ + 8536, + 8546, + 8542 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1feba-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018517", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f075eb49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 0.75, + "min-height-surface": 0.00999999977648258, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8547, + 8548, + 8549 + ]], + [[ + 8547, + 8549, + 8550 + ]], + [[ + 8550, + 8549, + 8551 + ]], + [[ + 8548, + 8552, + 8549 + ]], + [[ + 8548, + 8553, + 8552 + ]], + [[ + 1213, + 1212, + 8547 + ]], + [[ + 8547, + 1212, + 8548 + ]], + [[ + 1214, + 1213, + 8550 + ]], + [[ + 8550, + 1213, + 8547 + ]], + [[ + 1201, + 1214, + 8551 + ]], + [[ + 8551, + 1214, + 8550 + ]], + [[ + 1204, + 1201, + 8549 + ]], + [[ + 8549, + 1201, + 8551 + ]], + [[ + 1202, + 1204, + 8552 + ]], + [[ + 8552, + 1204, + 8549 + ]], + [[ + 8554, + 1202, + 8553 + ]], + [[ + 8553, + 1202, + 8552 + ]], + [[ + 1212, + 8554, + 8548 + ]], + [[ + 8548, + 8554, + 8553 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b31e1febd-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "", + "identificatiebagpnd": "503100000018609", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f075ec49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 2.34999990463257, + "min-height-surface": 0.00999999977648258, + "namespace": "NL.IMGeo", + "plaatsingspunt": "", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 8555, + 8556, + 8557 + ]], + [[ + 8555, + 8557, + 8558 + ]], + [[ + 8558, + 8557, + 8559 + ]], + [[ + 8556, + 8560, + 8557 + ]], + [[ + 8556, + 8561, + 8560 + ]], + [[ + 1199, + 1198, + 8555 + ]], + [[ + 8555, + 1198, + 8556 + ]], + [[ + 1294, + 1199, + 8558 + ]], + [[ + 8558, + 1199, + 8555 + ]], + [[ + 1186, + 1294, + 8559 + ]], + [[ + 8559, + 1294, + 8558 + ]], + [[ + 1187, + 1186, + 8557 + ]], + [[ + 8557, + 1186, + 8559 + ]], + [[ + 1188, + 1187, + 8560 + ]], + [[ + 8560, + 1187, + 8557 + ]], + [[ + 8562, + 1188, + 8561 + ]], + [[ + 8561, + 1188, + 8560 + ]], + [[ + 1198, + 8562, + 8556 + ]], + [[ + 8556, + 8562, + 8561 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }, + "b41373904-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef814949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8563, + 1898, + 1900 + ]], + [[ + 2886, + 8564, + 8565 + ]], + [[ + 8566, + 8567, + 8568 + ]], + [[ + 8567, + 8569, + 8570 + ]], + [[ + 8571, + 8572, + 8153 + ]], + [[ + 8572, + 8573, + 8574 + ]], + [[ + 8575, + 8571, + 8576 + ]], + [[ + 8577, + 8578, + 8579 + ]], + [[ + 8580, + 8581, + 8565 + ]], + [[ + 8570, + 1915, + 8582 + ]], + [[ + 8583, + 8579, + 8584 + ]], + [[ + 8574, + 8573, + 8578 + ]], + [[ + 8585, + 8586, + 8587 + ]], + [[ + 8588, + 8589, + 8590 + ]], + [[ + 8591, + 8592, + 8586 + ]], + [[ + 1924, + 123, + 8593 + ]], + [[ + 1928, + 1924, + 8590 + ]], + [[ + 1927, + 1928, + 8590 + ]], + [[ + 1925, + 8590, + 1926 + ]], + [[ + 1926, + 8590, + 1930 + ]], + [[ + 1930, + 8582, + 1922 + ]], + [[ + 8594, + 8569, + 8567 + ]], + [[ + 1922, + 8582, + 1921 + ]], + [[ + 8570, + 8155, + 8567 + ]], + [[ + 1920, + 1921, + 8582 + ]], + [[ + 1918, + 1920, + 8582 + ]], + [[ + 1919, + 1918, + 8582 + ]], + [[ + 1915, + 1919, + 8582 + ]], + [[ + 1929, + 8570, + 1908 + ]], + [[ + 8582, + 8590, + 8595 + ]], + [[ + 1915, + 8570, + 1913 + ]], + [[ + 8570, + 1911, + 1914 + ]], + [[ + 1929, + 1910, + 8570 + ]], + [[ + 8570, + 8582, + 8596 + ]], + [[ + 1909, + 1908, + 8570 + ]], + [[ + 1906, + 1909, + 8570 + ]], + [[ + 8570, + 8597, + 8154 + ]], + [[ + 1904, + 1905, + 8570 + ]], + [[ + 1903, + 1904, + 8570 + ]], + [[ + 1901, + 1903, + 8570 + ]], + [[ + 1900, + 1901, + 8598 + ]], + [[ + 8563, + 1900, + 8598 + ]], + [[ + 8563, + 1899, + 1898 + ]], + [[ + 8563, + 1897, + 1899 + ]], + [[ + 8563, + 1896, + 1897 + ]], + [[ + 8563, + 1895, + 1896 + ]], + [[ + 1894, + 1890, + 8563 + ]], + [[ + 1893, + 1894, + 8563 + ]], + [[ + 1891, + 1893, + 8563 + ]], + [[ + 8599, + 8600, + 8598 + ]], + [[ + 8601, + 8567, + 8566 + ]], + [[ + 8602, + 8600, + 120 + ]], + [[ + 120, + 8600, + 119 + ]], + [[ + 8599, + 8569, + 119 + ]], + [[ + 8598, + 1901, + 8570 + ]], + [[ + 8601, + 8594, + 8567 + ]], + [[ + 8603, + 8566, + 8565 + ]], + [[ + 8604, + 8605, + 2894 + ]], + [[ + 8606, + 8607, + 8608 + ]], + [[ + 8580, + 8565, + 8564 + ]], + [[ + 8564, + 8609, + 8580 + ]], + [[ + 8564, + 2886, + 2963 + ]], + [[ + 8610, + 8611, + 8612 + ]], + [[ + 8607, + 2894, + 8605 + ]], + [[ + 193, + 8613, + 192 + ]], + [[ + 192, + 8613, + 8610 + ]], + [[ + 8614, + 118, + 8580 + ]], + [[ + 193, + 8615, + 8613 + ]], + [[ + 8609, + 8564, + 8616 + ]], + [[ + 8154, + 8571, + 8153 + ]], + [[ + 8597, + 8617, + 8573 + ]], + [[ + 8615, + 8614, + 8606 + ]], + [[ + 193, + 118, + 8614 + ]], + [[ + 8618, + 8619, + 8581 + ]], + [[ + 8618, + 8566, + 8603 + ]], + [[ + 8578, + 8620, + 8584 + ]], + [[ + 8621, + 8622, + 8583 + ]], + [[ + 1925, + 1927, + 8590 + ]], + [[ + 8623, + 8622, + 8621 + ]], + [[ + 8586, + 8592, + 123 + ]], + [[ + 8624, + 8623, + 8621 + ]], + [[ + 8613, + 8615, + 8606 + ]], + [[ + 193, + 8614, + 8615 + ]], + [[ + 8610, + 8625, + 192 + ]], + [[ + 8604, + 2894, + 192 + ]], + [[ + 1930, + 8590, + 8582 + ]], + [[ + 8595, + 8626, + 8627 + ]], + [[ + 8154, + 8576, + 8571 + ]], + [[ + 8617, + 8596, + 8628 + ]], + [[ + 8614, + 8580, + 8606 + ]], + [[ + 8581, + 8619, + 8565 + ]], + [[ + 1924, + 8593, + 8590 + ]], + [[ + 123, + 8592, + 8593 + ]], + [[ + 8629, + 8630, + 8583 + ]], + [[ + 8585, + 8591, + 8586 + ]], + [[ + 8631, + 8583, + 8584 + ]], + [[ + 8622, + 8579, + 8583 + ]], + [[ + 8618, + 8601, + 8566 + ]], + [[ + 117, + 8594, + 8601 + ]], + [[ + 8620, + 8617, + 8584 + ]], + [[ + 8632, + 8630, + 8629 + ]], + [[ + 8579, + 8578, + 8584 + ]], + [[ + 1911, + 8570, + 1910 + ]], + [[ + 8633, + 8577, + 8579 + ]], + [[ + 8572, + 8576, + 8573 + ]], + [[ + 8634, + 8605, + 8604 + ]], + [[ + 8608, + 8607, + 8605 + ]], + [[ + 8625, + 8604, + 192 + ]], + [[ + 8635, + 8611, + 8634 + ]], + [[ + 8593, + 8588, + 8590 + ]], + [[ + 8593, + 8592, + 8588 + ]], + [[ + 124, + 8586, + 123 + ]], + [[ + 8587, + 8623, + 8624 + ]], + [[ + 8636, + 8596, + 8582 + ]], + [[ + 8582, + 8595, + 8627 + ]], + [[ + 8637, + 8621, + 8583 + ]], + [[ + 8637, + 8624, + 8621 + ]], + [[ + 8573, + 8617, + 8620 + ]], + [[ + 8576, + 8154, + 8597 + ]], + [[ + 8590, + 8589, + 8595 + ]], + [[ + 8588, + 8592, + 8638 + ]], + [[ + 8578, + 8573, + 8620 + ]], + [[ + 8576, + 8597, + 8573 + ]], + [[ + 8635, + 8634, + 8604 + ]], + [[ + 8611, + 8606, + 8608 + ]], + [[ + 117, + 8618, + 118 + ]], + [[ + 117, + 8601, + 8618 + ]], + [[ + 1914, + 1913, + 8570 + ]], + [[ + 8596, + 8617, + 8597 + ]], + [[ + 8577, + 8574, + 8578 + ]], + [[ + 8639, + 8572, + 8574 + ]], + [[ + 8585, + 8624, + 8637 + ]], + [[ + 8587, + 124, + 8623 + ]], + [[ + 118, + 8581, + 8580 + ]], + [[ + 118, + 8618, + 8581 + ]], + [[ + 8600, + 8599, + 119 + ]], + [[ + 8598, + 8569, + 8599 + ]], + [[ + 8155, + 8570, + 8154 + ]], + [[ + 8582, + 8627, + 8636 + ]], + [[ + 8598, + 8570, + 8569 + ]], + [[ + 1905, + 1906, + 8570 + ]], + [[ + 8570, + 8596, + 8597 + ]], + [[ + 8640, + 8626, + 8629 + ]], + [[ + 8617, + 8631, + 8584 + ]], + [[ + 8629, + 8583, + 8631 + ]], + [[ + 8640, + 8628, + 8636 + ]], + [[ + 8631, + 8617, + 8628 + ]], + [[ + 1892, + 8602, + 120 + ]], + [[ + 1892, + 8600, + 8602 + ]], + [[ + 8625, + 8612, + 8604 + ]], + [[ + 8625, + 8610, + 8612 + ]], + [[ + 8583, + 8630, + 8637 + ]], + [[ + 8638, + 8589, + 8588 + ]], + [[ + 8632, + 8638, + 8591 + ]], + [[ + 8595, + 8589, + 8638 + ]], + [[ + 8632, + 8591, + 8630 + ]], + [[ + 8638, + 8592, + 8591 + ]], + [[ + 8596, + 8636, + 8628 + ]], + [[ + 8627, + 8626, + 8636 + ]], + [[ + 8626, + 8640, + 8636 + ]], + [[ + 8631, + 8628, + 8640 + ]], + [[ + 8640, + 8629, + 8631 + ]], + [[ + 8626, + 8632, + 8629 + ]], + [[ + 8585, + 8587, + 8624 + ]], + [[ + 8586, + 124, + 8587 + ]], + [[ + 8612, + 8635, + 8604 + ]], + [[ + 8612, + 8611, + 8635 + ]], + [[ + 8641, + 8616, + 8564 + ]], + [[ + 8609, + 8606, + 8580 + ]], + [[ + 8641, + 8609, + 8616 + ]], + [[ + 8607, + 8606, + 8609 + ]], + [[ + 8607, + 8641, + 8564 + ]], + [[ + 8607, + 8609, + 8641 + ]], + [[ + 1891, + 8563, + 8598 + ]], + [[ + 1890, + 1895, + 8563 + ]], + [[ + 8572, + 8575, + 8576 + ]], + [[ + 8572, + 8571, + 8575 + ]], + [[ + 8619, + 8603, + 8565 + ]], + [[ + 8619, + 8618, + 8603 + ]], + [[ + 8634, + 8608, + 8605 + ]], + [[ + 8634, + 8611, + 8608 + ]], + [[ + 8639, + 8577, + 8633 + ]], + [[ + 8639, + 8574, + 8577 + ]], + [[ + 8630, + 8585, + 8637 + ]], + [[ + 8630, + 8591, + 8585 + ]], + [[ + 8595, + 8632, + 8626 + ]], + [[ + 8595, + 8638, + 8632 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4137fbfc-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2015-04-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.a7f64e78a3f34c07a6005756fd037ca1", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8642, + 8643, + 8644 + ]], + [[ + 8642, + 8644, + 8645 + ]], + [[ + 8644, + 8643, + 8646 + ]], + [[ + 8646, + 8647, + 8648 + ]], + [[ + 8646, + 8643, + 8649 + ]], + [[ + 8646, + 8649, + 8647 + ]], + [[ + 8647, + 8649, + 8650 + ]], + [[ + 8649, + 8643, + 8651 + ]], + [[ + 8651, + 8652, + 8653 + ]], + [[ + 8651, + 8643, + 8654 + ]], + [[ + 8651, + 8654, + 8652 + ]], + [[ + 8643, + 8655, + 8654 + ]], + [[ + 8655, + 8656, + 8657 + ]], + [[ + 8655, + 8643, + 8658 + ]], + [[ + 8657, + 8656, + 8659 + ]], + [[ + 8656, + 8655, + 8658 + ]], + [[ + 8660, + 8661, + 8662 + ]], + [[ + 8661, + 8663, + 8662 + ]], + [[ + 8661, + 8664, + 8665 + ]], + [[ + 8661, + 8665, + 8663 + ]], + [[ + 8665, + 8664, + 8658 + ]], + [[ + 8665, + 8658, + 8666 + ]], + [[ + 8664, + 8656, + 8658 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4138231e-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef704049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8667, + 8668, + 8669 + ]], + [[ + 8670, + 7728, + 7729 + ]], + [[ + 8671, + 8672, + 8673 + ]], + [[ + 8674, + 8675, + 2249 + ]], + [[ + 8676, + 8677, + 8678 + ]], + [[ + 8679, + 6972, + 6986 + ]], + [[ + 8680, + 8681, + 6975 + ]], + [[ + 8682, + 8683, + 6908 + ]], + [[ + 8684, + 6910, + 8685 + ]], + [[ + 7043, + 7044, + 8683 + ]], + [[ + 8683, + 7044, + 6908 + ]], + [[ + 8686, + 7042, + 2214 + ]], + [[ + 8687, + 6861, + 8688 + ]], + [[ + 8689, + 6860, + 8690 + ]], + [[ + 8690, + 6860, + 8691 + ]], + [[ + 8692, + 8690, + 8691 + ]], + [[ + 8693, + 8694, + 8691 + ]], + [[ + 8695, + 6860, + 8687 + ]], + [[ + 8696, + 8697, + 8694 + ]], + [[ + 8698, + 8694, + 8697 + ]], + [[ + 8699, + 8697, + 8696 + ]], + [[ + 6950, + 8696, + 8700 + ]], + [[ + 8701, + 8687, + 2214 + ]], + [[ + 8702, + 6908, + 6910 + ]], + [[ + 2214, + 8703, + 8417 + ]], + [[ + 8702, + 6910, + 8684 + ]], + [[ + 8703, + 8682, + 8702 + ]], + [[ + 8704, + 8705, + 8702 + ]], + [[ + 8706, + 8707, + 8708 + ]], + [[ + 8681, + 8680, + 8709 + ]], + [[ + 8710, + 8707, + 8711 + ]], + [[ + 8712, + 8707, + 2252 + ]], + [[ + 8712, + 2252, + 2253 + ]], + [[ + 8713, + 8680, + 6975 + ]], + [[ + 2250, + 2249, + 8714 + ]], + [[ + 8714, + 2249, + 8715 + ]], + [[ + 8674, + 2249, + 2252 + ]], + [[ + 8716, + 8717, + 8715 + ]], + [[ + 8671, + 6732, + 6733 + ]], + [[ + 8718, + 6733, + 465 + ]], + [[ + 7729, + 8719, + 8670 + ]], + [[ + 8668, + 8667, + 8720 + ]], + [[ + 8721, + 8493, + 8494 + ]], + [[ + 8722, + 8720, + 8721 + ]], + [[ + 8723, + 8724, + 8725 + ]], + [[ + 8726, + 8727, + 8728 + ]], + [[ + 7727, + 8728, + 7737 + ]], + [[ + 7737, + 8728, + 7736 + ]], + [[ + 7736, + 8728, + 2275 + ]], + [[ + 2275, + 8728, + 2749 + ]], + [[ + 8443, + 8729, + 8445 + ]], + [[ + 8730, + 2480, + 8731 + ]], + [[ + 8731, + 2480, + 2479 + ]], + [[ + 2634, + 2482, + 8732 + ]], + [[ + 8733, + 2634, + 8734 + ]], + [[ + 2634, + 8732, + 8734 + ]], + [[ + 2482, + 2480, + 8732 + ]], + [[ + 8735, + 8731, + 2479 + ]], + [[ + 8730, + 8732, + 2480 + ]], + [[ + 8736, + 8730, + 8737 + ]], + [[ + 8738, + 8739, + 1101 + ]], + [[ + 8740, + 560, + 556 + ]], + [[ + 8741, + 1105, + 8742 + ]], + [[ + 8743, + 8744, + 8745 + ]], + [[ + 1101, + 8746, + 1105 + ]], + [[ + 1101, + 8739, + 8747 + ]], + [[ + 8742, + 8746, + 560 + ]], + [[ + 8748, + 2475, + 2267 + ]], + [[ + 1101, + 8747, + 8746 + ]], + [[ + 8739, + 8736, + 8737 + ]], + [[ + 8737, + 8730, + 8731 + ]], + [[ + 8735, + 2466, + 2475 + ]], + [[ + 2466, + 8735, + 2479 + ]], + [[ + 8747, + 8739, + 8737 + ]], + [[ + 2824, + 2749, + 8728 + ]], + [[ + 2821, + 8491, + 8437 + ]], + [[ + 8749, + 8494, + 8491 + ]], + [[ + 8728, + 8727, + 2818 + ]], + [[ + 2749, + 2824, + 8750 + ]], + [[ + 8443, + 8737, + 8729 + ]], + [[ + 2818, + 8724, + 8723 + ]], + [[ + 8727, + 8724, + 2818 + ]], + [[ + 8443, + 8747, + 8737 + ]], + [[ + 2818, + 2824, + 8728 + ]], + [[ + 8751, + 2821, + 8437 + ]], + [[ + 8749, + 2820, + 8494 + ]], + [[ + 8752, + 8723, + 8725 + ]], + [[ + 8729, + 8435, + 8445 + ]], + [[ + 8729, + 2821, + 8435 + ]], + [[ + 2818, + 8753, + 2820 + ]], + [[ + 2749, + 8750, + 2267 + ]], + [[ + 8753, + 2818, + 8723 + ]], + [[ + 8750, + 8735, + 2475 + ]], + [[ + 8719, + 8752, + 8725 + ]], + [[ + 8754, + 366, + 8675 + ]], + [[ + 465, + 8669, + 8718 + ]], + [[ + 8752, + 8755, + 8756 + ]], + [[ + 2252, + 8707, + 8674 + ]], + [[ + 8709, + 8757, + 8681 + ]], + [[ + 8758, + 8759, + 8680 + ]], + [[ + 8760, + 8709, + 8761 + ]], + [[ + 8762, + 8715, + 8675 + ]], + [[ + 8715, + 2249, + 8675 + ]], + [[ + 8763, + 8764, + 8760 + ]], + [[ + 8719, + 8765, + 8766 + ]], + [[ + 8678, + 8675, + 8761 + ]], + [[ + 8756, + 8755, + 8677 + ]], + [[ + 8767, + 8768, + 8754 + ]], + [[ + 8768, + 8769, + 8770 + ]], + [[ + 8675, + 8678, + 8754 + ]], + [[ + 8771, + 6986, + 8772 + ]], + [[ + 8755, + 8773, + 8767 + ]], + [[ + 8770, + 8774, + 8768 + ]], + [[ + 8775, + 8670, + 8719 + ]], + [[ + 8775, + 8776, + 8670 + ]], + [[ + 6972, + 8713, + 6975 + ]], + [[ + 6972, + 8777, + 8758 + ]], + [[ + 8685, + 8778, + 8709 + ]], + [[ + 8778, + 8681, + 8757 + ]], + [[ + 8779, + 8780, + 8709 + ]], + [[ + 8780, + 8684, + 8685 + ]], + [[ + 2820, + 8722, + 8494 + ]], + [[ + 8720, + 8493, + 8721 + ]], + [[ + 8772, + 8676, + 8771 + ]], + [[ + 8680, + 8761, + 8709 + ]], + [[ + 6732, + 8772, + 6986 + ]], + [[ + 6732, + 8673, + 8772 + ]], + [[ + 6986, + 8771, + 8679 + ]], + [[ + 8678, + 8761, + 8759 + ]], + [[ + 8679, + 8777, + 6972 + ]], + [[ + 8679, + 8759, + 8777 + ]], + [[ + 8755, + 8767, + 8754 + ]], + [[ + 8766, + 8752, + 8719 + ]], + [[ + 8695, + 8687, + 8701 + ]], + [[ + 6860, + 6861, + 8687 + ]], + [[ + 8687, + 8688, + 2214 + ]], + [[ + 6861, + 7042, + 8686 + ]], + [[ + 8669, + 8668, + 8718 + ]], + [[ + 8781, + 6733, + 8718 + ]], + [[ + 8720, + 8667, + 466 + ]], + [[ + 2820, + 8753, + 8668 + ]], + [[ + 8782, + 8680, + 8713 + ]], + [[ + 8759, + 8761, + 8680 + ]], + [[ + 8755, + 8766, + 8773 + ]], + [[ + 8783, + 8774, + 8770 + ]], + [[ + 8783, + 8766, + 8765 + ]], + [[ + 8755, + 8752, + 8766 + ]], + [[ + 8754, + 8768, + 366 + ]], + [[ + 8784, + 8769, + 8768 + ]], + [[ + 8704, + 8702, + 8780 + ]], + [[ + 8702, + 8682, + 6908 + ]], + [[ + 8781, + 8672, + 8671 + ]], + [[ + 8672, + 8676, + 8673 + ]], + [[ + 2177, + 8701, + 2214 + ]], + [[ + 2177, + 8695, + 8701 + ]], + [[ + 8756, + 8672, + 8718 + ]], + [[ + 8672, + 8677, + 8676 + ]], + [[ + 8785, + 8783, + 8769 + ]], + [[ + 8774, + 366, + 8768 + ]], + [[ + 366, + 8786, + 8762 + ]], + [[ + 8717, + 8714, + 8715 + ]], + [[ + 367, + 8786, + 366 + ]], + [[ + 367, + 8717, + 8716 + ]], + [[ + 8725, + 8775, + 8719 + ]], + [[ + 8776, + 7728, + 8670 + ]], + [[ + 8783, + 8773, + 8766 + ]], + [[ + 8769, + 8784, + 8773 + ]], + [[ + 8773, + 8785, + 8769 + ]], + [[ + 8765, + 8719, + 8783 + ]], + [[ + 7042, + 8683, + 2214 + ]], + [[ + 7042, + 7043, + 8683 + ]], + [[ + 8779, + 8787, + 8708 + ]], + [[ + 6910, + 8778, + 8685 + ]], + [[ + 8787, + 8788, + 8708 + ]], + [[ + 8789, + 8674, + 8707 + ]], + [[ + 8779, + 8790, + 8787 + ]], + [[ + 8760, + 8764, + 8790 + ]], + [[ + 8790, + 8764, + 8788 + ]], + [[ + 8760, + 8674, + 8789 + ]], + [[ + 8718, + 8672, + 8781 + ]], + [[ + 8756, + 8677, + 8672 + ]], + [[ + 6732, + 8671, + 8673 + ]], + [[ + 6733, + 8781, + 8671 + ]], + [[ + 8725, + 8776, + 8775 + ]], + [[ + 8725, + 7728, + 8776 + ]], + [[ + 6972, + 8758, + 8713 + ]], + [[ + 8777, + 8759, + 8758 + ]], + [[ + 8709, + 8780, + 8685 + ]], + [[ + 8708, + 8791, + 8780 + ]], + [[ + 8791, + 8704, + 8780 + ]], + [[ + 8792, + 8705, + 8704 + ]], + [[ + 8750, + 8793, + 2267 + ]], + [[ + 8793, + 2475, + 8748 + ]], + [[ + 8759, + 8676, + 8678 + ]], + [[ + 8772, + 8673, + 8676 + ]], + [[ + 8709, + 8778, + 8757 + ]], + [[ + 6910, + 8681, + 8778 + ]], + [[ + 8759, + 8771, + 8676 + ]], + [[ + 8759, + 8679, + 8771 + ]], + [[ + 8756, + 8668, + 8753 + ]], + [[ + 8756, + 8718, + 8668 + ]], + [[ + 466, + 8669, + 465 + ]], + [[ + 466, + 8667, + 8669 + ]], + [[ + 8769, + 8783, + 8770 + ]], + [[ + 8719, + 366, + 8774 + ]], + [[ + 8794, + 8726, + 8728 + ]], + [[ + 8794, + 8727, + 8726 + ]], + [[ + 8706, + 8763, + 8789 + ]], + [[ + 8763, + 8760, + 8789 + ]], + [[ + 8707, + 8706, + 8789 + ]], + [[ + 8788, + 8764, + 8763 + ]], + [[ + 8743, + 8745, + 8740 + ]], + [[ + 8741, + 560, + 8745 + ]], + [[ + 2214, + 8682, + 8703 + ]], + [[ + 2214, + 8683, + 8682 + ]], + [[ + 366, + 8762, + 8675 + ]], + [[ + 8786, + 8716, + 8762 + ]], + [[ + 8494, + 8722, + 8721 + ]], + [[ + 2820, + 8668, + 8720 + ]], + [[ + 8493, + 8720, + 466 + ]], + [[ + 8722, + 2820, + 8720 + ]], + [[ + 8787, + 8795, + 8788 + ]], + [[ + 8790, + 8788, + 8795 + ]], + [[ + 8780, + 8779, + 8708 + ]], + [[ + 8790, + 8795, + 8787 + ]], + [[ + 8760, + 8779, + 8709 + ]], + [[ + 8760, + 8790, + 8779 + ]], + [[ + 8741, + 8742, + 560 + ]], + [[ + 1105, + 8746, + 8742 + ]], + [[ + 8762, + 8716, + 8715 + ]], + [[ + 8786, + 367, + 8716 + ]], + [[ + 8700, + 8696, + 8694 + ]], + [[ + 6950, + 8699, + 8696 + ]], + [[ + 8792, + 8791, + 8708 + ]], + [[ + 8792, + 8704, + 8791 + ]], + [[ + 6950, + 8695, + 2177 + ]], + [[ + 8691, + 6860, + 8695 + ]], + [[ + 8773, + 8783, + 8785 + ]], + [[ + 8719, + 8774, + 8783 + ]], + [[ + 8767, + 8784, + 8768 + ]], + [[ + 8767, + 8773, + 8784 + ]], + [[ + 8688, + 8686, + 2214 + ]], + [[ + 8688, + 6861, + 8686 + ]], + [[ + 8743, + 8740, + 556 + ]], + [[ + 8745, + 560, + 8740 + ]], + [[ + 8788, + 8706, + 8708 + ]], + [[ + 8788, + 8763, + 8706 + ]], + [[ + 8780, + 8702, + 8684 + ]], + [[ + 8705, + 8703, + 8702 + ]], + [[ + 8744, + 8741, + 8745 + ]], + [[ + 8744, + 1105, + 8741 + ]], + [[ + 8435, + 8751, + 8437 + ]], + [[ + 8435, + 2821, + 8751 + ]], + [[ + 2821, + 8749, + 8491 + ]], + [[ + 2821, + 2820, + 8749 + ]], + [[ + 8711, + 8712, + 2253 + ]], + [[ + 8711, + 8707, + 8712 + ]], + [[ + 2267, + 8793, + 8748 + ]], + [[ + 8750, + 2475, + 8793 + ]], + [[ + 8700, + 8693, + 8691 + ]], + [[ + 8700, + 8694, + 8693 + ]], + [[ + 8695, + 8700, + 8691 + ]], + [[ + 8695, + 6950, + 8700 + ]], + [[ + 8758, + 8782, + 8713 + ]], + [[ + 8758, + 8680, + 8782 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4138bef7-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2015-04-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.967be64250624d208a88a6471c2bd3aa", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8738, + 8736, + 8739 + ]], + [[ + 8738, + 1101, + 8658 + ]], + [[ + 8658, + 8736, + 8738 + ]], + [[ + 8796, + 8797, + 8798 + ]], + [[ + 8799, + 8797, + 8730 + ]], + [[ + 8800, + 8732, + 8801 + ]], + [[ + 8733, + 8734, + 8802 + ]], + [[ + 8803, + 8733, + 8802 + ]], + [[ + 8804, + 8805, + 8806 + ]], + [[ + 8807, + 8734, + 8800 + ]], + [[ + 8808, + 8802, + 8809 + ]], + [[ + 8802, + 8807, + 8809 + ]], + [[ + 8802, + 8734, + 8807 + ]], + [[ + 8734, + 8732, + 8800 + ]], + [[ + 8810, + 8800, + 8801 + ]], + [[ + 8810, + 8801, + 8811 + ]], + [[ + 8812, + 8730, + 8736 + ]], + [[ + 8801, + 8797, + 8796 + ]], + [[ + 8813, + 8796, + 8798 + ]], + [[ + 8732, + 8797, + 8801 + ]], + [[ + 8732, + 8730, + 8797 + ]], + [[ + 8799, + 8814, + 8797 + ]], + [[ + 1102, + 8666, + 1101 + ]], + [[ + 8658, + 1101, + 8666 + ]], + [[ + 8799, + 8643, + 8814 + ]], + [[ + 542, + 8815, + 8481 + ]], + [[ + 8665, + 8666, + 8663 + ]], + [[ + 8816, + 8817, + 8818 + ]], + [[ + 8819, + 838, + 8820 + ]], + [[ + 8662, + 8821, + 8660 + ]], + [[ + 8822, + 8823, + 8824 + ]], + [[ + 8825, + 8483, + 8484 + ]], + [[ + 8826, + 8482, + 8827 + ]], + [[ + 8828, + 8829, + 8830 + ]], + [[ + 8831, + 8832, + 8833 + ]], + [[ + 8834, + 8835, + 8836 + ]], + [[ + 8837, + 8838, + 8839 + ]], + [[ + 8840, + 8841, + 8837 + ]], + [[ + 8842, + 8843, + 8844 + ]], + [[ + 8844, + 8845, + 8842 + ]], + [[ + 8846, + 8847, + 8845 + ]], + [[ + 8844, + 8848, + 8849 + ]], + [[ + 8850, + 8851, + 8852 + ]], + [[ + 8849, + 8853, + 8845 + ]], + [[ + 8854, + 7451, + 7452 + ]], + [[ + 8855, + 8852, + 8851 + ]], + [[ + 8856, + 8857, + 8858 + ]], + [[ + 8844, + 8838, + 8859 + ]], + [[ + 8860, + 8841, + 8861 + ]], + [[ + 8862, + 7514, + 8863 + ]], + [[ + 8864, + 541, + 542 + ]], + [[ + 8865, + 8866, + 8867 + ]], + [[ + 8868, + 7529, + 8869 + ]], + [[ + 8870, + 8871, + 7312 + ]], + [[ + 8815, + 8872, + 8831 + ]], + [[ + 8864, + 8481, + 8483 + ]], + [[ + 7291, + 7310, + 8873 + ]], + [[ + 8874, + 542, + 543 + ]], + [[ + 8875, + 8876, + 8877 + ]], + [[ + 8878, + 8879, + 8880 + ]], + [[ + 8881, + 541, + 8882 + ]], + [[ + 8883, + 8884, + 8885 + ]], + [[ + 8820, + 539, + 8819 + ]], + [[ + 829, + 8886, + 828 + ]], + [[ + 8887, + 8888, + 837 + ]], + [[ + 837, + 8888, + 8889 + ]], + [[ + 836, + 837, + 8889 + ]], + [[ + 817, + 8890, + 816 + ]], + [[ + 8889, + 8880, + 8891 + ]], + [[ + 8892, + 8662, + 8663 + ]], + [[ + 8893, + 834, + 835 + ]], + [[ + 8893, + 833, + 834 + ]], + [[ + 8893, + 832, + 833 + ]], + [[ + 8891, + 8894, + 8895 + ]], + [[ + 8893, + 831, + 832 + ]], + [[ + 830, + 8893, + 829 + ]], + [[ + 827, + 828, + 8886 + ]], + [[ + 8886, + 829, + 8893 + ]], + [[ + 8894, + 8822, + 8895 + ]], + [[ + 8896, + 8897, + 8898 + ]], + [[ + 8886, + 826, + 827 + ]], + [[ + 8886, + 8899, + 823 + ]], + [[ + 8824, + 8895, + 8822 + ]], + [[ + 8886, + 823, + 824 + ]], + [[ + 821, + 822, + 8899 + ]], + [[ + 820, + 821, + 8900 + ]], + [[ + 8890, + 8901, + 8902 + ]], + [[ + 8903, + 8904, + 8905 + ]], + [[ + 817, + 818, + 8900 + ]], + [[ + 8892, + 8906, + 8821 + ]], + [[ + 1102, + 8907, + 8666 + ]], + [[ + 774, + 814, + 8908 + ]], + [[ + 772, + 774, + 8908 + ]], + [[ + 8909, + 8902, + 8901 + ]], + [[ + 770, + 771, + 8908 + ]], + [[ + 769, + 770, + 8910 + ]], + [[ + 768, + 769, + 8910 + ]], + [[ + 8902, + 8908, + 814 + ]], + [[ + 8902, + 8911, + 8908 + ]], + [[ + 8912, + 766, + 767 + ]], + [[ + 8890, + 8902, + 815 + ]], + [[ + 766, + 8912, + 765 + ]], + [[ + 762, + 763, + 8913 + ]], + [[ + 761, + 762, + 8913 + ]], + [[ + 760, + 761, + 8913 + ]], + [[ + 8914, + 759, + 760 + ]], + [[ + 8915, + 8916, + 8917 + ]], + [[ + 8918, + 758, + 759 + ]], + [[ + 8914, + 8915, + 8918 + ]], + [[ + 8918, + 8915, + 757 + ]], + [[ + 8915, + 755, + 756 + ]], + [[ + 8917, + 754, + 755 + ]], + [[ + 8919, + 753, + 754 + ]], + [[ + 751, + 752, + 8919 + ]], + [[ + 8920, + 751, + 8919 + ]], + [[ + 8920, + 750, + 751 + ]], + [[ + 8921, + 749, + 8920 + ]], + [[ + 8920, + 749, + 750 + ]], + [[ + 8919, + 752, + 753 + ]], + [[ + 8922, + 8352, + 8923 + ]], + [[ + 8924, + 8925, + 8403 + ]], + [[ + 8898, + 8350, + 8896 + ]], + [[ + 8926, + 8927, + 8928 + ]], + [[ + 8330, + 8929, + 8328 + ]], + [[ + 8898, + 8897, + 8930 + ]], + [[ + 8907, + 1102, + 8931 + ]], + [[ + 8931, + 1102, + 8925 + ]], + [[ + 1100, + 8925, + 1102 + ]], + [[ + 8932, + 8933, + 7451 + ]], + [[ + 8854, + 7452, + 8934 + ]], + [[ + 8935, + 8873, + 8867 + ]], + [[ + 8867, + 8876, + 8865 + ]], + [[ + 8877, + 8876, + 8936 + ]], + [[ + 8833, + 8832, + 8482 + ]], + [[ + 8850, + 8937, + 8938 + ]], + [[ + 8939, + 8940, + 8933 + ]], + [[ + 8941, + 8942, + 8943 + ]], + [[ + 8351, + 8944, + 8350 + ]], + [[ + 8945, + 8946, + 8879 + ]], + [[ + 8822, + 8816, + 8947 + ]], + [[ + 8903, + 8823, + 8948 + ]], + [[ + 8821, + 8662, + 8892 + ]], + [[ + 7530, + 8949, + 8950 + ]], + [[ + 8951, + 7516, + 8952 + ]], + [[ + 767, + 8910, + 8912 + ]], + [[ + 767, + 768, + 8910 + ]], + [[ + 8953, + 8954, + 8884 + ]], + [[ + 540, + 541, + 8954 + ]], + [[ + 8906, + 8904, + 8955 + ]], + [[ + 8948, + 8947, + 8955 + ]], + [[ + 8890, + 817, + 8900 + ]], + [[ + 8948, + 8955, + 8904 + ]], + [[ + 8956, + 8901, + 8905 + ]], + [[ + 8908, + 8911, + 8910 + ]], + [[ + 8957, + 8958, + 8959 + ]], + [[ + 8960, + 8961, + 8962 + ]], + [[ + 8963, + 8819, + 8964 + ]], + [[ + 8965, + 541, + 8881 + ]], + [[ + 8966, + 8881, + 8882 + ]], + [[ + 8885, + 8954, + 8965 + ]], + [[ + 819, + 8900, + 818 + ]], + [[ + 819, + 820, + 8900 + ]], + [[ + 8481, + 8864, + 542 + ]], + [[ + 8882, + 541, + 8864 + ]], + [[ + 8848, + 8967, + 8849 + ]], + [[ + 8968, + 8969, + 8937 + ]], + [[ + 8970, + 8971, + 8972 + ]], + [[ + 8972, + 543, + 7291 + ]], + [[ + 7311, + 8973, + 7310 + ]], + [[ + 8974, + 8975, + 8976 + ]], + [[ + 8937, + 8969, + 8977 + ]], + [[ + 8934, + 8978, + 8979 + ]], + [[ + 8914, + 8918, + 759 + ]], + [[ + 757, + 758, + 8918 + ]], + [[ + 8970, + 8972, + 8980 + ]], + [[ + 8936, + 8876, + 8873 + ]], + [[ + 8844, + 8849, + 8845 + ]], + [[ + 8981, + 8982, + 8850 + ]], + [[ + 8983, + 8984, + 8855 + ]], + [[ + 8853, + 8985, + 8986 + ]], + [[ + 8926, + 8928, + 8987 + ]], + [[ + 8987, + 8350, + 8898 + ]], + [[ + 764, + 8913, + 763 + ]], + [[ + 764, + 765, + 8913 + ]], + [[ + 8913, + 8912, + 8910 + ]], + [[ + 8913, + 765, + 8912 + ]], + [[ + 8952, + 8830, + 8951 + ]], + [[ + 8863, + 8951, + 8830 + ]], + [[ + 8988, + 8989, + 8990 + ]], + [[ + 8834, + 7529, + 8950 + ]], + [[ + 8991, + 8992, + 8938 + ]], + [[ + 8993, + 8939, + 8932 + ]], + [[ + 8851, + 8850, + 8979 + ]], + [[ + 8856, + 8849, + 8967 + ]], + [[ + 8981, + 8994, + 8982 + ]], + [[ + 8977, + 8991, + 8938 + ]], + [[ + 8846, + 8845, + 8978 + ]], + [[ + 8847, + 8842, + 8845 + ]], + [[ + 8946, + 8995, + 8816 + ]], + [[ + 8816, + 8818, + 8947 + ]], + [[ + 8861, + 8996, + 8838 + ]], + [[ + 8844, + 8843, + 8838 + ]], + [[ + 8978, + 8851, + 8979 + ]], + [[ + 8983, + 8845, + 8984 + ]], + [[ + 8997, + 8959, + 8998 + ]], + [[ + 8867, + 8873, + 8876 + ]], + [[ + 8999, + 8971, + 8970 + ]], + [[ + 9000, + 8804, + 8827 + ]], + [[ + 9001, + 8949, + 8862 + ]], + [[ + 8949, + 7514, + 8862 + ]], + [[ + 8890, + 8895, + 8901 + ]], + [[ + 8900, + 821, + 8899 + ]], + [[ + 8905, + 8895, + 8824 + ]], + [[ + 8886, + 824, + 825 + ]], + [[ + 8917, + 8919, + 754 + ]], + [[ + 8917, + 9002, + 8920 + ]], + [[ + 8932, + 8939, + 8933 + ]], + [[ + 8940, + 7451, + 8933 + ]], + [[ + 8926, + 8898, + 9003 + ]], + [[ + 8926, + 8987, + 8898 + ]], + [[ + 7503, + 8848, + 7517 + ]], + [[ + 9004, + 8967, + 8848 + ]], + [[ + 9005, + 8968, + 8937 + ]], + [[ + 9006, + 9007, + 8977 + ]], + [[ + 8834, + 8869, + 7529 + ]], + [[ + 8836, + 7314, + 8869 + ]], + [[ + 770, + 8908, + 8910 + ]], + [[ + 771, + 772, + 8908 + ]], + [[ + 8875, + 8865, + 8876 + ]], + [[ + 9008, + 8806, + 9009 + ]], + [[ + 8960, + 8962, + 8997 + ]], + [[ + 9008, + 8865, + 9010 + ]], + [[ + 8988, + 8840, + 8839 + ]], + [[ + 9011, + 8828, + 7516 + ]], + [[ + 8990, + 8841, + 8840 + ]], + [[ + 8835, + 9012, + 8836 + ]], + [[ + 9013, + 9014, + 8961 + ]], + [[ + 8980, + 8935, + 8867 + ]], + [[ + 9015, + 8871, + 8975 + ]], + [[ + 8974, + 8804, + 8806 + ]], + [[ + 7310, + 8936, + 8873 + ]], + [[ + 7310, + 8877, + 8936 + ]], + [[ + 816, + 8890, + 815 + ]], + [[ + 8900, + 8899, + 8890 + ]], + [[ + 8830, + 8829, + 8863 + ]], + [[ + 7529, + 7530, + 8950 + ]], + [[ + 9016, + 8829, + 8828 + ]], + [[ + 8834, + 9001, + 8829 + ]], + [[ + 8938, + 8932, + 8934 + ]], + [[ + 9017, + 8993, + 8932 + ]], + [[ + 8932, + 8854, + 8934 + ]], + [[ + 8932, + 7451, + 8854 + ]], + [[ + 7314, + 8868, + 8869 + ]], + [[ + 7314, + 7529, + 8868 + ]], + [[ + 534, + 8820, + 838 + ]], + [[ + 8884, + 8954, + 8885 + ]], + [[ + 539, + 8953, + 8964 + ]], + [[ + 8953, + 540, + 8954 + ]], + [[ + 8964, + 8953, + 8884 + ]], + [[ + 539, + 540, + 8953 + ]], + [[ + 8975, + 8871, + 8839 + ]], + [[ + 7311, + 7312, + 8871 + ]], + [[ + 8985, + 9018, + 8994 + ]], + [[ + 8858, + 7448, + 9019 + ]], + [[ + 8963, + 8964, + 8884 + ]], + [[ + 8819, + 539, + 8964 + ]], + [[ + 8930, + 9020, + 9021 + ]], + [[ + 9022, + 9023, + 8897 + ]], + [[ + 8483, + 8882, + 8864 + ]], + [[ + 8483, + 8966, + 8882 + ]], + [[ + 8885, + 8965, + 8881 + ]], + [[ + 8954, + 541, + 8965 + ]], + [[ + 8658, + 8812, + 8736 + ]], + [[ + 8658, + 8643, + 8812 + ]], + [[ + 542, + 8957, + 8815 + ]], + [[ + 8959, + 8997, + 8832 + ]], + [[ + 7450, + 9007, + 7448 + ]], + [[ + 8993, + 8992, + 9007 + ]], + [[ + 8966, + 8825, + 8946 + ]], + [[ + 8484, + 8817, + 9024 + ]], + [[ + 7448, + 8967, + 7503 + ]], + [[ + 7448, + 8857, + 8967 + ]], + [[ + 8404, + 9021, + 8403 + ]], + [[ + 9020, + 8925, + 8924 + ]], + [[ + 8938, + 8934, + 8979 + ]], + [[ + 7452, + 8978, + 8934 + ]], + [[ + 7514, + 8951, + 8863 + ]], + [[ + 7514, + 7516, + 8951 + ]], + [[ + 9025, + 9026, + 8922 + ]], + [[ + 9027, + 9002, + 8917 + ]], + [[ + 8850, + 8938, + 8979 + ]], + [[ + 8992, + 9017, + 8938 + ]], + [[ + 8863, + 9001, + 8862 + ]], + [[ + 7530, + 7514, + 8949 + ]], + [[ + 9025, + 8943, + 9028 + ]], + [[ + 9025, + 9028, + 9023 + ]], + [[ + 8903, + 8948, + 8904 + ]], + [[ + 8821, + 8818, + 8660 + ]], + [[ + 8823, + 8947, + 8948 + ]], + [[ + 8823, + 8822, + 8947 + ]], + [[ + 9029, + 8958, + 8970 + ]], + [[ + 9030, + 543, + 8971 + ]], + [[ + 8959, + 8958, + 9029 + ]], + [[ + 8872, + 8815, + 8957 + ]], + [[ + 8874, + 8957, + 542 + ]], + [[ + 8874, + 8999, + 8958 + ]], + [[ + 8957, + 8874, + 8958 + ]], + [[ + 9030, + 8971, + 8999 + ]], + [[ + 8963, + 8884, + 8883 + ]], + [[ + 8879, + 8816, + 8894 + ]], + [[ + 8895, + 8886, + 8891 + ]], + [[ + 8880, + 8879, + 8894 + ]], + [[ + 8815, + 8831, + 8481 + ]], + [[ + 8832, + 8827, + 8482 + ]], + [[ + 8828, + 8952, + 7516 + ]], + [[ + 8828, + 8830, + 8952 + ]], + [[ + 8328, + 8929, + 8404 + ]], + [[ + 8927, + 8331, + 8928 + ]], + [[ + 8403, + 9021, + 8924 + ]], + [[ + 9003, + 8898, + 8930 + ]], + [[ + 8982, + 8937, + 8850 + ]], + [[ + 9005, + 8982, + 9019 + ]], + [[ + 8832, + 8997, + 8827 + ]], + [[ + 9031, + 8805, + 9000 + ]], + [[ + 7517, + 8844, + 8859 + ]], + [[ + 7517, + 8848, + 8844 + ]], + [[ + 7517, + 9032, + 7516 + ]], + [[ + 7517, + 8859, + 9032 + ]], + [[ + 543, + 8972, + 8971 + ]], + [[ + 7291, + 8873, + 8935 + ]], + [[ + 9019, + 8968, + 9005 + ]], + [[ + 7448, + 9007, + 9006 + ]], + [[ + 835, + 836, + 8893 + ]], + [[ + 838, + 8819, + 8888 + ]], + [[ + 8894, + 8891, + 8880 + ]], + [[ + 830, + 831, + 8893 + ]], + [[ + 7450, + 8940, + 8939 + ]], + [[ + 7450, + 7451, + 8940 + ]], + [[ + 8997, + 9031, + 9000 + ]], + [[ + 8805, + 8804, + 9000 + ]], + [[ + 9009, + 8806, + 9031 + ]], + [[ + 8806, + 9008, + 8974 + ]], + [[ + 8988, + 8990, + 8840 + ]], + [[ + 8989, + 8841, + 8990 + ]], + [[ + 9033, + 9034, + 8663 + ]], + [[ + 8901, + 8895, + 8905 + ]], + [[ + 9024, + 9035, + 8484 + ]], + [[ + 8966, + 8945, + 9036 + ]], + [[ + 9035, + 8946, + 8825 + ]], + [[ + 8816, + 8822, + 8894 + ]], + [[ + 9032, + 8996, + 9011 + ]], + [[ + 8841, + 8989, + 9016 + ]], + [[ + 8865, + 8875, + 9010 + ]], + [[ + 9015, + 7311, + 8871 + ]], + [[ + 8875, + 9037, + 9010 + ]], + [[ + 9038, + 8973, + 9039 + ]], + [[ + 9040, + 9015, + 8975 + ]], + [[ + 9039, + 7311, + 9015 + ]], + [[ + 8899, + 8886, + 8895 + ]], + [[ + 8893, + 8889, + 8891 + ]], + [[ + 8982, + 9005, + 8937 + ]], + [[ + 8982, + 9018, + 9019 + ]], + [[ + 8871, + 8988, + 8839 + ]], + [[ + 8871, + 8989, + 8988 + ]], + [[ + 8983, + 8855, + 8851 + ]], + [[ + 8984, + 8986, + 8855 + ]], + [[ + 8978, + 8983, + 8851 + ]], + [[ + 8978, + 8845, + 8983 + ]], + [[ + 746, + 9041, + 8923 + ]], + [[ + 746, + 748, + 9041 + ]], + [[ + 8957, + 8959, + 8872 + ]], + [[ + 8998, + 8960, + 8997 + ]], + [[ + 9031, + 8997, + 9009 + ]], + [[ + 9000, + 8827, + 8997 + ]], + [[ + 9031, + 8806, + 8805 + ]], + [[ + 9009, + 8962, + 9008 + ]], + [[ + 9030, + 8874, + 543 + ]], + [[ + 9030, + 8999, + 8874 + ]], + [[ + 8872, + 8832, + 8831 + ]], + [[ + 8872, + 8959, + 8832 + ]], + [[ + 8481, + 8833, + 8482 + ]], + [[ + 8481, + 8831, + 8833 + ]], + [[ + 8973, + 8877, + 7310 + ]], + [[ + 8973, + 8875, + 8877 + ]], + [[ + 8828, + 8861, + 8841 + ]], + [[ + 8996, + 8859, + 8838 + ]], + [[ + 8841, + 8860, + 8837 + ]], + [[ + 8861, + 8838, + 9042 + ]], + [[ + 8351, + 9043, + 8944 + ]], + [[ + 8944, + 8897, + 8896 + ]], + [[ + 8871, + 9012, + 8989 + ]], + [[ + 8836, + 8869, + 8834 + ]], + [[ + 8829, + 9001, + 8863 + ]], + [[ + 8950, + 8949, + 9001 + ]], + [[ + 9021, + 9020, + 8924 + ]], + [[ + 8930, + 8897, + 9023 + ]], + [[ + 8972, + 8935, + 8980 + ]], + [[ + 8972, + 7291, + 8935 + ]], + [[ + 7503, + 9004, + 8848 + ]], + [[ + 7503, + 8967, + 9004 + ]], + [[ + 9037, + 8975, + 9010 + ]], + [[ + 8839, + 8804, + 8976 + ]], + [[ + 838, + 8887, + 837 + ]], + [[ + 838, + 8888, + 8887 + ]], + [[ + 8888, + 8963, + 8878 + ]], + [[ + 9044, + 8881, + 9036 + ]], + [[ + 9045, + 9036, + 8879 + ]], + [[ + 9045, + 8885, + 9044 + ]], + [[ + 8916, + 9027, + 8917 + ]], + [[ + 8352, + 746, + 8923 + ]], + [[ + 8812, + 8799, + 8730 + ]], + [[ + 8812, + 8643, + 8799 + ]], + [[ + 9001, + 8834, + 8950 + ]], + [[ + 8829, + 9016, + 9046 + ]], + [[ + 8929, + 8927, + 8404 + ]], + [[ + 8929, + 8330, + 8927 + ]], + [[ + 8404, + 8927, + 8926 + ]], + [[ + 8330, + 8331, + 8927 + ]], + [[ + 8982, + 8994, + 9018 + ]], + [[ + 8853, + 8984, + 8845 + ]], + [[ + 8852, + 8986, + 8994 + ]], + [[ + 8852, + 8855, + 8986 + ]], + [[ + 8985, + 8853, + 8849 + ]], + [[ + 8986, + 8984, + 8853 + ]], + [[ + 9020, + 8930, + 8931 + ]], + [[ + 8942, + 8913, + 8911 + ]], + [[ + 9026, + 9025, + 9023 + ]], + [[ + 8907, + 9033, + 8663 + ]], + [[ + 8404, + 9003, + 9047 + ]], + [[ + 9048, + 9028, + 9049 + ]], + [[ + 8666, + 8907, + 8663 + ]], + [[ + 9049, + 8909, + 8956 + ]], + [[ + 9020, + 8931, + 8925 + ]], + [[ + 9048, + 9023, + 9028 + ]], + [[ + 9048, + 8907, + 8931 + ]], + [[ + 9048, + 9049, + 8907 + ]], + [[ + 9034, + 8956, + 8905 + ]], + [[ + 9033, + 8907, + 9049 + ]], + [[ + 8881, + 8966, + 9036 + ]], + [[ + 8483, + 8825, + 8966 + ]], + [[ + 9036, + 8945, + 8879 + ]], + [[ + 8966, + 8946, + 8945 + ]], + [[ + 8976, + 8975, + 8839 + ]], + [[ + 9037, + 9040, + 8975 + ]], + [[ + 8937, + 8977, + 8938 + ]], + [[ + 8969, + 9006, + 8977 + ]], + [[ + 9007, + 8991, + 8977 + ]], + [[ + 9050, + 8992, + 8991 + ]], + [[ + 9007, + 9050, + 8991 + ]], + [[ + 9007, + 8992, + 9050 + ]], + [[ + 8875, + 9040, + 9037 + ]], + [[ + 9038, + 9039, + 9015 + ]], + [[ + 9014, + 9029, + 8980 + ]], + [[ + 8958, + 8999, + 8970 + ]], + [[ + 8824, + 8903, + 8905 + ]], + [[ + 8824, + 8823, + 8903 + ]], + [[ + 8852, + 8981, + 8850 + ]], + [[ + 8852, + 8994, + 8981 + ]], + [[ + 8968, + 9006, + 8969 + ]], + [[ + 8968, + 9019, + 9006 + ]], + [[ + 748, + 8921, + 9041 + ]], + [[ + 748, + 749, + 8921 + ]], + [[ + 8878, + 8963, + 9045 + ]], + [[ + 8888, + 8819, + 8963 + ]], + [[ + 8860, + 9042, + 8837 + ]], + [[ + 8860, + 8861, + 9042 + ]], + [[ + 8840, + 8837, + 8839 + ]], + [[ + 9042, + 8838, + 8837 + ]], + [[ + 8892, + 9034, + 8905 + ]], + [[ + 9033, + 8956, + 9034 + ]], + [[ + 8944, + 9043, + 9026 + ]], + [[ + 8351, + 8352, + 9043 + ]], + [[ + 8352, + 8922, + 9043 + ]], + [[ + 9002, + 9041, + 8920 + ]], + [[ + 9027, + 8916, + 8941 + ]], + [[ + 8917, + 755, + 8915 + ]], + [[ + 8913, + 8914, + 760 + ]], + [[ + 8913, + 8942, + 8941 + ]], + [[ + 8331, + 8987, + 8928 + ]], + [[ + 8331, + 8350, + 8987 + ]], + [[ + 9047, + 9003, + 8930 + ]], + [[ + 8404, + 8926, + 9003 + ]], + [[ + 8871, + 8870, + 9012 + ]], + [[ + 7312, + 7314, + 8870 + ]], + [[ + 8947, + 8821, + 8955 + ]], + [[ + 8947, + 8818, + 8821 + ]], + [[ + 8484, + 9035, + 8825 + ]], + [[ + 9024, + 8817, + 8995 + ]], + [[ + 9035, + 8995, + 8946 + ]], + [[ + 9035, + 9024, + 8995 + ]], + [[ + 8946, + 8816, + 8879 + ]], + [[ + 8995, + 8817, + 8816 + ]], + [[ + 8890, + 8899, + 8895 + ]], + [[ + 822, + 823, + 8899 + ]], + [[ + 826, + 8886, + 825 + ]], + [[ + 8893, + 8891, + 8886 + ]], + [[ + 9034, + 8892, + 8663 + ]], + [[ + 8905, + 8904, + 8906 + ]], + [[ + 8821, + 8906, + 8955 + ]], + [[ + 8892, + 8905, + 8906 + ]], + [[ + 8938, + 9017, + 8932 + ]], + [[ + 8992, + 8993, + 9017 + ]], + [[ + 9040, + 9038, + 9015 + ]], + [[ + 8973, + 7311, + 9039 + ]], + [[ + 8875, + 9038, + 9040 + ]], + [[ + 8875, + 8973, + 9038 + ]], + [[ + 8930, + 9051, + 8931 + ]], + [[ + 8930, + 9023, + 9051 + ]], + [[ + 9051, + 9048, + 8931 + ]], + [[ + 9051, + 9023, + 9048 + ]], + [[ + 538, + 8820, + 534 + ]], + [[ + 538, + 539, + 8820 + ]], + [[ + 7450, + 8993, + 9007 + ]], + [[ + 7450, + 8939, + 8993 + ]], + [[ + 7448, + 8858, + 8857 + ]], + [[ + 8985, + 8849, + 8856 + ]], + [[ + 8857, + 8856, + 8967 + ]], + [[ + 8858, + 8985, + 8856 + ]], + [[ + 8841, + 9016, + 8828 + ]], + [[ + 8989, + 9012, + 9016 + ]], + [[ + 8829, + 9046, + 8834 + ]], + [[ + 9016, + 9012, + 9046 + ]], + [[ + 757, + 8915, + 756 + ]], + [[ + 8914, + 8916, + 8915 + ]], + [[ + 9045, + 8883, + 8885 + ]], + [[ + 9045, + 8963, + 8883 + ]], + [[ + 9021, + 9047, + 8930 + ]], + [[ + 9021, + 8404, + 9047 + ]], + [[ + 8870, + 8836, + 9012 + ]], + [[ + 8870, + 7314, + 8836 + ]], + [[ + 8959, + 9029, + 8998 + ]], + [[ + 9014, + 8867, + 8961 + ]], + [[ + 8980, + 9029, + 8970 + ]], + [[ + 9013, + 8998, + 9029 + ]], + [[ + 9029, + 9014, + 9013 + ]], + [[ + 8980, + 8867, + 9014 + ]], + [[ + 8997, + 8962, + 9009 + ]], + [[ + 8866, + 8865, + 9008 + ]], + [[ + 8961, + 8866, + 8962 + ]], + [[ + 8974, + 8976, + 8804 + ]], + [[ + 9010, + 8974, + 9008 + ]], + [[ + 9010, + 8975, + 8974 + ]], + [[ + 9022, + 9026, + 9023 + ]], + [[ + 8922, + 8923, + 9002 + ]], + [[ + 9025, + 9027, + 8943 + ]], + [[ + 9025, + 8922, + 9002 + ]], + [[ + 9025, + 9002, + 9027 + ]], + [[ + 8923, + 9041, + 9002 + ]], + [[ + 8944, + 9026, + 9022 + ]], + [[ + 9043, + 8922, + 9026 + ]], + [[ + 8917, + 8920, + 8919 + ]], + [[ + 9041, + 8921, + 8920 + ]], + [[ + 9046, + 8835, + 8834 + ]], + [[ + 9046, + 9012, + 8835 + ]], + [[ + 9033, + 9049, + 8956 + ]], + [[ + 8909, + 8901, + 8956 + ]], + [[ + 9028, + 8911, + 9049 + ]], + [[ + 8911, + 8913, + 8910 + ]], + [[ + 815, + 8902, + 814 + ]], + [[ + 8909, + 8911, + 8902 + ]], + [[ + 9049, + 8911, + 8909 + ]], + [[ + 9028, + 8943, + 8942 + ]], + [[ + 9028, + 8942, + 8911 + ]], + [[ + 8943, + 9027, + 8941 + ]], + [[ + 8914, + 8941, + 8916 + ]], + [[ + 8914, + 8913, + 8941 + ]], + [[ + 9011, + 8996, + 8861 + ]], + [[ + 9032, + 8859, + 8996 + ]], + [[ + 8828, + 9011, + 8861 + ]], + [[ + 7516, + 9032, + 9011 + ]], + [[ + 8985, + 9019, + 9018 + ]], + [[ + 7448, + 9006, + 9019 + ]], + [[ + 8879, + 8878, + 9045 + ]], + [[ + 8880, + 8888, + 8878 + ]], + [[ + 8897, + 8944, + 9022 + ]], + [[ + 8896, + 8350, + 8944 + ]], + [[ + 836, + 8889, + 8893 + ]], + [[ + 8888, + 8880, + 8889 + ]], + [[ + 9019, + 8985, + 8858 + ]], + [[ + 8994, + 8986, + 8985 + ]], + [[ + 9045, + 9044, + 9036 + ]], + [[ + 8885, + 8881, + 9044 + ]], + [[ + 8962, + 8866, + 9008 + ]], + [[ + 8961, + 8867, + 8866 + ]], + [[ + 9013, + 8960, + 8998 + ]], + [[ + 9013, + 8961, + 8960 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b413d2c2d-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cb549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9052, + 7400, + 9053 + ]], + [[ + 9054, + 9055, + 2630 + ]], + [[ + 9055, + 7401, + 2630 + ]], + [[ + 9053, + 7399, + 7401 + ]], + [[ + 2709, + 9054, + 2630 + ]], + [[ + 9052, + 7401, + 9055 + ]], + [[ + 9052, + 9053, + 7401 + ]], + [[ + 7400, + 7399, + 9053 + ]], + [[ + 9052, + 9054, + 2709 + ]], + [[ + 9052, + 9055, + 9054 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b413e64b2-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5ca749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9056, + 465, + 9057 + ]], + [[ + 9058, + 9059, + 6734 + ]], + [[ + 9059, + 9057, + 9060 + ]], + [[ + 464, + 9061, + 462 + ]], + [[ + 9060, + 9062, + 9059 + ]], + [[ + 462, + 9058, + 6734 + ]], + [[ + 462, + 9061, + 9058 + ]], + [[ + 9063, + 9064, + 9061 + ]], + [[ + 464, + 465, + 9061 + ]], + [[ + 6734, + 9059, + 6733 + ]], + [[ + 9063, + 9061, + 9056 + ]], + [[ + 465, + 9060, + 9057 + ]], + [[ + 9062, + 6733, + 9059 + ]], + [[ + 9059, + 9063, + 9057 + ]], + [[ + 9061, + 465, + 9056 + ]], + [[ + 465, + 9062, + 9060 + ]], + [[ + 465, + 6733, + 9062 + ]], + [[ + 9057, + 9063, + 9056 + ]], + [[ + 9064, + 9058, + 9061 + ]], + [[ + 9059, + 9064, + 9063 + ]], + [[ + 9059, + 9058, + 9064 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b413eb30b-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef812449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9065, + 9066, + 9067 + ]], + [[ + 9068, + 9069, + 9070 + ]], + [[ + 9071, + 9072, + 9073 + ]], + [[ + 9074, + 9075, + 9076 + ]], + [[ + 9074, + 9067, + 9075 + ]], + [[ + 9067, + 9077, + 9075 + ]], + [[ + 9078, + 9065, + 9071 + ]], + [[ + 9071, + 9065, + 9072 + ]], + [[ + 9078, + 9066, + 9065 + ]], + [[ + 9066, + 9077, + 9067 + ]], + [[ + 9069, + 9074, + 9076 + ]], + [[ + 9069, + 9068, + 9074 + ]], + [[ + 9073, + 9068, + 9070 + ]], + [[ + 9071, + 9073, + 9070 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b413feb75-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cfb49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9079, + 8148, + 9080 + ]], + [[ + 9081, + 9082, + 8144 + ]], + [[ + 9083, + 9084, + 9085 + ]], + [[ + 9086, + 8143, + 8144 + ]], + [[ + 9082, + 9087, + 8144 + ]], + [[ + 9088, + 9089, + 9090 + ]], + [[ + 9091, + 8143, + 9086 + ]], + [[ + 9090, + 9092, + 9093 + ]], + [[ + 8140, + 9094, + 9095 + ]], + [[ + 9095, + 9094, + 9096 + ]], + [[ + 9096, + 9094, + 9097 + ]], + [[ + 9097, + 9094, + 9098 + ]], + [[ + 9098, + 9094, + 9099 + ]], + [[ + 9099, + 9094, + 9100 + ]], + [[ + 9100, + 9094, + 9101 + ]], + [[ + 9101, + 9094, + 9102 + ]], + [[ + 9102, + 9094, + 9103 + ]], + [[ + 9104, + 9102, + 9103 + ]], + [[ + 9105, + 9104, + 9103 + ]], + [[ + 9106, + 9105, + 9103 + ]], + [[ + 9103, + 9094, + 9089 + ]], + [[ + 9107, + 9108, + 9103 + ]], + [[ + 9109, + 9107, + 9103 + ]], + [[ + 9110, + 9103, + 9089 + ]], + [[ + 9110, + 9111, + 9109 + ]], + [[ + 9110, + 9112, + 9111 + ]], + [[ + 9110, + 9113, + 9112 + ]], + [[ + 9114, + 8142, + 8143 + ]], + [[ + 9115, + 9116, + 9117 + ]], + [[ + 8145, + 9081, + 8144 + ]], + [[ + 8145, + 8146, + 9118 + ]], + [[ + 8142, + 9092, + 8141 + ]], + [[ + 8142, + 9093, + 9092 + ]], + [[ + 9117, + 9119, + 9120 + ]], + [[ + 9114, + 8143, + 9091 + ]], + [[ + 9079, + 9121, + 9122 + ]], + [[ + 8147, + 8148, + 9121 + ]], + [[ + 9123, + 9124, + 9125 + ]], + [[ + 9126, + 9090, + 9093 + ]], + [[ + 9117, + 9120, + 9127 + ]], + [[ + 9128, + 9129, + 9121 + ]], + [[ + 9130, + 9131, + 9114 + ]], + [[ + 9093, + 8142, + 9131 + ]], + [[ + 9089, + 9094, + 8140 + ]], + [[ + 9110, + 9132, + 9133 + ]], + [[ + 8141, + 9090, + 8140 + ]], + [[ + 8141, + 9092, + 9090 + ]], + [[ + 9130, + 9114, + 9091 + ]], + [[ + 9131, + 8142, + 9114 + ]], + [[ + 9118, + 9081, + 8145 + ]], + [[ + 9117, + 9116, + 9134 + ]], + [[ + 9135, + 9085, + 9084 + ]], + [[ + 9087, + 9136, + 9086 + ]], + [[ + 8147, + 9129, + 9137 + ]], + [[ + 8147, + 9121, + 9129 + ]], + [[ + 9132, + 9138, + 9084 + ]], + [[ + 9139, + 9123, + 9131 + ]], + [[ + 9079, + 9122, + 8148 + ]], + [[ + 9121, + 8148, + 9122 + ]], + [[ + 9140, + 9115, + 9079 + ]], + [[ + 9115, + 9128, + 9079 + ]], + [[ + 9125, + 9124, + 9138 + ]], + [[ + 9123, + 9126, + 9093 + ]], + [[ + 9134, + 9116, + 9082 + ]], + [[ + 9141, + 9124, + 9139 + ]], + [[ + 9142, + 9082, + 9081 + ]], + [[ + 9116, + 9136, + 9087 + ]], + [[ + 9090, + 9089, + 8140 + ]], + [[ + 9089, + 9088, + 9110 + ]], + [[ + 9143, + 9110, + 9133 + ]], + [[ + 9143, + 9113, + 9110 + ]], + [[ + 8144, + 9087, + 9086 + ]], + [[ + 9082, + 9116, + 9087 + ]], + [[ + 9138, + 9135, + 9084 + ]], + [[ + 9138, + 9116, + 9115 + ]], + [[ + 9123, + 9125, + 9126 + ]], + [[ + 9132, + 9110, + 9088 + ]], + [[ + 9086, + 9136, + 9091 + ]], + [[ + 9136, + 9141, + 9130 + ]], + [[ + 9091, + 9136, + 9130 + ]], + [[ + 9116, + 9141, + 9136 + ]], + [[ + 9138, + 9141, + 9116 + ]], + [[ + 9138, + 9124, + 9141 + ]], + [[ + 9118, + 9137, + 9119 + ]], + [[ + 9118, + 8146, + 9137 + ]], + [[ + 9115, + 9127, + 9128 + ]], + [[ + 9119, + 9081, + 9118 + ]], + [[ + 8147, + 9137, + 8146 + ]], + [[ + 9129, + 9120, + 9137 + ]], + [[ + 9120, + 9119, + 9137 + ]], + [[ + 9117, + 9142, + 9119 + ]], + [[ + 9119, + 9142, + 9081 + ]], + [[ + 9134, + 9082, + 9142 + ]], + [[ + 9129, + 9128, + 9120 + ]], + [[ + 9115, + 9135, + 9138 + ]], + [[ + 9079, + 9128, + 9121 + ]], + [[ + 9127, + 9120, + 9128 + ]], + [[ + 9126, + 9125, + 9138 + ]], + [[ + 9126, + 9088, + 9090 + ]], + [[ + 9132, + 9126, + 9138 + ]], + [[ + 9132, + 9088, + 9126 + ]], + [[ + 9115, + 9117, + 9127 + ]], + [[ + 9134, + 9142, + 9117 + ]], + [[ + 9130, + 9139, + 9131 + ]], + [[ + 9130, + 9141, + 9139 + ]], + [[ + 9131, + 9123, + 9093 + ]], + [[ + 9139, + 9124, + 9123 + ]], + [[ + 9080, + 9140, + 9079 + ]], + [[ + 9083, + 9135, + 9115 + ]], + [[ + 9084, + 9083, + 9080 + ]], + [[ + 9083, + 9115, + 9140 + ]], + [[ + 9109, + 9103, + 9110 + ]], + [[ + 9108, + 9106, + 9103 + ]], + [[ + 9080, + 9083, + 9140 + ]], + [[ + 9085, + 9135, + 9083 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b41414b16-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "onverhard", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef949249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9144, + 117, + 119 + ]], + [[ + 9144, + 119, + 8569 + ]], + [[ + 8594, + 9144, + 8569 + ]], + [[ + 8594, + 117, + 9144 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b414283a4-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5ca849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 6895, + 6897, + 6787 + ]], + [[ + 6895, + 6787, + 7038 + ]], + [[ + 6897, + 6802, + 6787 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4142aad2-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef660249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9145, + 9146, + 9147 + ]], + [[ + 9146, + 9148, + 9147 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b414394d7-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cba49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 7792, + 7790, + 7791 + ]], + [[ + 7790, + 7789, + 7791 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b414394ec-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cb849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9149, + 9150, + 365 + ]], + [[ + 9151, + 9152, + 9153 + ]], + [[ + 9154, + 9155, + 9152 + ]], + [[ + 9156, + 9157, + 9158 + ]], + [[ + 9159, + 9151, + 9160 + ]], + [[ + 9157, + 9152, + 9161 + ]], + [[ + 9162, + 9153, + 7713 + ]], + [[ + 9163, + 7711, + 9160 + ]], + [[ + 7710, + 9162, + 7713 + ]], + [[ + 9149, + 9156, + 9158 + ]], + [[ + 9149, + 365, + 364 + ]], + [[ + 373, + 9157, + 372 + ]], + [[ + 373, + 9158, + 9157 + ]], + [[ + 373, + 9150, + 9158 + ]], + [[ + 373, + 365, + 9150 + ]], + [[ + 7709, + 9162, + 7710 + ]], + [[ + 9160, + 9153, + 9162 + ]], + [[ + 9164, + 9161, + 9159 + ]], + [[ + 372, + 9157, + 9161 + ]], + [[ + 9164, + 9159, + 7711 + ]], + [[ + 9161, + 9152, + 9151 + ]], + [[ + 9157, + 9156, + 9152 + ]], + [[ + 9158, + 9150, + 9149 + ]], + [[ + 9163, + 9160, + 9162 + ]], + [[ + 7711, + 9159, + 9160 + ]], + [[ + 9160, + 9151, + 9153 + ]], + [[ + 9159, + 9161, + 9151 + ]], + [[ + 9155, + 9165, + 364 + ]], + [[ + 9155, + 9156, + 9165 + ]], + [[ + 9165, + 9149, + 364 + ]], + [[ + 9165, + 9156, + 9149 + ]], + [[ + 372, + 9164, + 7711 + ]], + [[ + 372, + 9161, + 9164 + ]], + [[ + 7709, + 9163, + 9162 + ]], + [[ + 7709, + 7711, + 9163 + ]], + [[ + 9156, + 9154, + 9152 + ]], + [[ + 9156, + 9155, + 9154 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b46c34501-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2015-01-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.29a2059927f84b779ccc323a4d72025a", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 5999, + 5958, + 5921 + ]], + [[ + 5999, + 5921, + 5917 + ]], + [[ + 5958, + 5924, + 5921 + ]], + [[ + 9166, + 5939, + 5996 + ]], + [[ + 9166, + 9167, + 5939 + ]], + [[ + 5942, + 9166, + 5996 + ]], + [[ + 9168, + 9167, + 9166 + ]], + [[ + 9168, + 5939, + 9167 + ]], + [[ + 5958, + 9168, + 9166 + ]], + [[ + 5958, + 5939, + 9168 + ]], + [[ + 5924, + 9166, + 5942 + ]], + [[ + 5924, + 5958, + 9166 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b46c36c2c-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efcc0d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9169, + 9170, + 9171 + ]], + [[ + 9172, + 9173, + 9174 + ]], + [[ + 9175, + 9176, + 9177 + ]], + [[ + 9178, + 9170, + 9169 + ]], + [[ + 9179, + 9180, + 3737 + ]], + [[ + 9181, + 9182, + 9183 + ]], + [[ + 9184, + 9185, + 9186 + ]], + [[ + 9181, + 9187, + 9182 + ]], + [[ + 9188, + 9187, + 9181 + ]], + [[ + 9188, + 9189, + 9187 + ]], + [[ + 9190, + 9191, + 3909 + ]], + [[ + 9192, + 9190, + 3909 + ]], + [[ + 9193, + 9192, + 3909 + ]], + [[ + 9194, + 9195, + 9196 + ]], + [[ + 9193, + 9197, + 9198 + ]], + [[ + 9199, + 9200, + 9201 + ]], + [[ + 9202, + 9185, + 9184 + ]], + [[ + 9203, + 9204, + 9205 + ]], + [[ + 9206, + 9207, + 9208 + ]], + [[ + 9209, + 9210, + 3747 + ]], + [[ + 9211, + 9212, + 9210 + ]], + [[ + 9213, + 9214, + 9215 + ]], + [[ + 9216, + 9211, + 9217 + ]], + [[ + 9218, + 9219, + 3485 + ]], + [[ + 9220, + 3755, + 9221 + ]], + [[ + 9222, + 9218, + 3484 + ]], + [[ + 9222, + 9223, + 9218 + ]], + [[ + 9224, + 9225, + 9226 + ]], + [[ + 9227, + 9228, + 9229 + ]], + [[ + 9230, + 9231, + 9232 + ]], + [[ + 9233, + 9234, + 9235 + ]], + [[ + 9236, + 9237, + 9238 + ]], + [[ + 9239, + 9240, + 9241 + ]], + [[ + 9242, + 9243, + 9244 + ]], + [[ + 9238, + 9245, + 9246 + ]], + [[ + 9247, + 9243, + 9248 + ]], + [[ + 9247, + 9248, + 9249 + ]], + [[ + 9221, + 3810, + 9219 + ]], + [[ + 9249, + 9248, + 9250 + ]], + [[ + 9251, + 9252, + 9253 + ]], + [[ + 9254, + 9255, + 9256 + ]], + [[ + 9256, + 9255, + 9257 + ]], + [[ + 9257, + 9255, + 9258 + ]], + [[ + 9255, + 9254, + 9250 + ]], + [[ + 9259, + 9260, + 9252 + ]], + [[ + 9261, + 9255, + 9262 + ]], + [[ + 9262, + 9255, + 9263 + ]], + [[ + 9263, + 9255, + 9264 + ]], + [[ + 9264, + 9255, + 9265 + ]], + [[ + 9266, + 9267, + 9268 + ]], + [[ + 9265, + 9255, + 9269 + ]], + [[ + 9269, + 9255, + 9270 + ]], + [[ + 9271, + 9269, + 9270 + ]], + [[ + 9272, + 9271, + 9270 + ]], + [[ + 9273, + 9272, + 9270 + ]], + [[ + 9274, + 9273, + 9270 + ]], + [[ + 9275, + 9276, + 9277 + ]], + [[ + 9278, + 9274, + 9270 + ]], + [[ + 9279, + 9280, + 9281 + ]], + [[ + 9282, + 9278, + 9270 + ]], + [[ + 9283, + 9226, + 9284 + ]], + [[ + 9285, + 9286, + 9287 + ]], + [[ + 9288, + 9225, + 9289 + ]], + [[ + 9290, + 9291, + 3579 + ]], + [[ + 9292, + 3441, + 9293 + ]], + [[ + 9294, + 9295, + 9296 + ]], + [[ + 9297, + 3834, + 9298 + ]], + [[ + 9297, + 9299, + 3894 + ]], + [[ + 9300, + 9301, + 9175 + ]], + [[ + 9302, + 9303, + 9304 + ]], + [[ + 3632, + 9222, + 3484 + ]], + [[ + 3484, + 9218, + 3485 + ]], + [[ + 3485, + 9219, + 3810 + ]], + [[ + 3810, + 9221, + 3755 + ]], + [[ + 9305, + 9220, + 9306 + ]], + [[ + 9210, + 9212, + 9298 + ]], + [[ + 9307, + 9217, + 9211 + ]], + [[ + 3747, + 9298, + 3834 + ]], + [[ + 3834, + 9297, + 3934 + ]], + [[ + 3934, + 9297, + 3894 + ]], + [[ + 3894, + 9299, + 9308 + ]], + [[ + 9309, + 9310, + 9311 + ]], + [[ + 9312, + 9313, + 9314 + ]], + [[ + 9181, + 9183, + 3737 + ]], + [[ + 9315, + 9316, + 9317 + ]], + [[ + 9183, + 9179, + 3737 + ]], + [[ + 9180, + 9178, + 3737 + ]], + [[ + 9180, + 9170, + 9178 + ]], + [[ + 9318, + 9178, + 9169 + ]], + [[ + 9319, + 9320, + 9321 + ]], + [[ + 9322, + 9323, + 9324 + ]], + [[ + 9325, + 9326, + 9327 + ]], + [[ + 9301, + 9328, + 9329 + ]], + [[ + 9330, + 9327, + 9331 + ]], + [[ + 9329, + 9332, + 9319 + ]], + [[ + 9333, + 9334, + 9335 + ]], + [[ + 9336, + 9337, + 9338 + ]], + [[ + 9339, + 9340, + 9341 + ]], + [[ + 9236, + 9238, + 9246 + ]], + [[ + 9342, + 9343, + 9344 + ]], + [[ + 9345, + 9346, + 9347 + ]], + [[ + 9348, + 9349, + 9350 + ]], + [[ + 9321, + 9351, + 9352 + ]], + [[ + 9353, + 9354, + 9355 + ]], + [[ + 9356, + 9357, + 9327 + ]], + [[ + 9215, + 9207, + 9358 + ]], + [[ + 9359, + 9360, + 9361 + ]], + [[ + 9176, + 9175, + 9352 + ]], + [[ + 9362, + 9363, + 9327 + ]], + [[ + 9364, + 9365, + 9366 + ]], + [[ + 9327, + 9357, + 9353 + ]], + [[ + 9175, + 9319, + 9352 + ]], + [[ + 9328, + 9367, + 9329 + ]], + [[ + 9368, + 9369, + 9327 + ]], + [[ + 9363, + 9366, + 9368 + ]], + [[ + 9370, + 9302, + 9371 + ]], + [[ + 9372, + 9373, + 9374 + ]], + [[ + 9375, + 9174, + 9173 + ]], + [[ + 9302, + 9304, + 9371 + ]], + [[ + 9376, + 9352, + 9351 + ]], + [[ + 9377, + 9332, + 9364 + ]], + [[ + 9296, + 9362, + 9330 + ]], + [[ + 9377, + 9320, + 9332 + ]], + [[ + 9327, + 9353, + 9325 + ]], + [[ + 9378, + 9379, + 9295 + ]], + [[ + 9380, + 9350, + 9381 + ]], + [[ + 9380, + 9357, + 9356 + ]], + [[ + 9382, + 9383, + 9384 + ]], + [[ + 9326, + 9331, + 9327 + ]], + [[ + 9260, + 9362, + 9295 + ]], + [[ + 9363, + 9385, + 9386 + ]], + [[ + 9326, + 9296, + 9331 + ]], + [[ + 9362, + 9327, + 9330 + ]], + [[ + 9384, + 9383, + 9325 + ]], + [[ + 9378, + 9295, + 9294 + ]], + [[ + 9387, + 9388, + 9389 + ]], + [[ + 9372, + 9390, + 9391 + ]], + [[ + 9392, + 9393, + 9382 + ]], + [[ + 9394, + 9379, + 9378 + ]], + [[ + 9230, + 9232, + 9395 + ]], + [[ + 9231, + 9396, + 9232 + ]], + [[ + 9340, + 9397, + 9341 + ]], + [[ + 9245, + 9239, + 9398 + ]], + [[ + 9399, + 9400, + 9401 + ]], + [[ + 9397, + 9340, + 9241 + ]], + [[ + 9402, + 9403, + 9404 + ]], + [[ + 9405, + 9406, + 9322 + ]], + [[ + 9177, + 9176, + 9407 + ]], + [[ + 9406, + 9405, + 9408 + ]], + [[ + 9409, + 9410, + 9411 + ]], + [[ + 9371, + 9304, + 9344 + ]], + [[ + 9172, + 9408, + 9412 + ]], + [[ + 9389, + 9413, + 9414 + ]], + [[ + 9392, + 9382, + 9415 + ]], + [[ + 9416, + 9417, + 9394 + ]], + [[ + 9418, + 9376, + 9351 + ]], + [[ + 9176, + 9352, + 9376 + ]], + [[ + 9419, + 9420, + 9421 + ]], + [[ + 9371, + 9344, + 9422 + ]], + [[ + 9423, + 9344, + 9304 + ]], + [[ + 9424, + 9425, + 9426 + ]], + [[ + 9427, + 9206, + 9208 + ]], + [[ + 9428, + 9429, + 3431 + ]], + [[ + 9335, + 9430, + 9391 + ]], + [[ + 9391, + 3553, + 3441 + ]], + [[ + 9381, + 9431, + 9432 + ]], + [[ + 9433, + 9434, + 9435 + ]], + [[ + 9339, + 9341, + 9244 + ]], + [[ + 9397, + 9240, + 9400 + ]], + [[ + 9436, + 9437, + 9438 + ]], + [[ + 9439, + 9440, + 9395 + ]], + [[ + 9293, + 9280, + 9276 + ]], + [[ + 9441, + 3440, + 9442 + ]], + [[ + 9438, + 9443, + 9444 + ]], + [[ + 9440, + 9443, + 9445 + ]], + [[ + 9438, + 9446, + 9443 + ]], + [[ + 9395, + 9447, + 9230 + ]], + [[ + 9446, + 9228, + 9445 + ]], + [[ + 9448, + 9232, + 9396 + ]], + [[ + 9224, + 9449, + 9450 + ]], + [[ + 9436, + 9444, + 9451 + ]], + [[ + 9258, + 9255, + 9261 + ]], + [[ + 9452, + 9243, + 9453 + ]], + [[ + 9329, + 9350, + 9332 + ]], + [[ + 9349, + 9431, + 9381 + ]], + [[ + 9341, + 9399, + 9244 + ]], + [[ + 9341, + 9397, + 9399 + ]], + [[ + 9388, + 9387, + 9259 + ]], + [[ + 9454, + 9173, + 9172 + ]], + [[ + 9259, + 9454, + 9455 + ]], + [[ + 9375, + 9173, + 9454 + ]], + [[ + 9456, + 9457, + 9424 + ]], + [[ + 9422, + 9344, + 9343 + ]], + [[ + 9319, + 9332, + 9320 + ]], + [[ + 9350, + 9365, + 9332 + ]], + [[ + 9458, + 9421, + 9459 + ]], + [[ + 9460, + 9371, + 9422 + ]], + [[ + 9461, + 9427, + 9462 + ]], + [[ + 9461, + 9206, + 9427 + ]], + [[ + 9454, + 9259, + 9375 + ]], + [[ + 9463, + 9464, + 9465 + ]], + [[ + 9466, + 9467, + 9468 + ]], + [[ + 9467, + 9469, + 9470 + ]], + [[ + 9471, + 9393, + 9392 + ]], + [[ + 9472, + 9382, + 9393 + ]], + [[ + 9473, + 9353, + 9381 + ]], + [[ + 9335, + 9334, + 9430 + ]], + [[ + 9435, + 9474, + 9433 + ]], + [[ + 9355, + 9415, + 9325 + ]], + [[ + 9417, + 9393, + 9471 + ]], + [[ + 9475, + 9392, + 9355 + ]], + [[ + 9471, + 9434, + 9391 + ]], + [[ + 9476, + 9434, + 9473 + ]], + [[ + 9477, + 9404, + 9478 + ]], + [[ + 9479, + 9480, + 9481 + ]], + [[ + 9482, + 9337, + 9336 + ]], + [[ + 9426, + 9483, + 9456 + ]], + [[ + 9484, + 9485, + 9486 + ]], + [[ + 9487, + 9409, + 9411 + ]], + [[ + 9334, + 9402, + 9430 + ]], + [[ + 9478, + 9488, + 9489 + ]], + [[ + 9430, + 9402, + 9490 + ]], + [[ + 9334, + 9328, + 9403 + ]], + [[ + 9478, + 9489, + 9491 + ]], + [[ + 9492, + 9493, + 9175 + ]], + [[ + 9494, + 9493, + 9492 + ]], + [[ + 9176, + 9376, + 9407 + ]], + [[ + 9174, + 9495, + 9172 + ]], + [[ + 9496, + 9324, + 9497 + ]], + [[ + 9379, + 9292, + 9284 + ]], + [[ + 9293, + 9275, + 9498 + ]], + [[ + 9378, + 9326, + 9325 + ]], + [[ + 9294, + 9296, + 9326 + ]], + [[ + 9499, + 9500, + 9501 + ]], + [[ + 9502, + 9503, + 9270 + ]], + [[ + 9504, + 9505, + 9448 + ]], + [[ + 9501, + 9447, + 9395 + ]], + [[ + 9334, + 9333, + 9328 + ]], + [[ + 9348, + 9350, + 9367 + ]], + [[ + 9175, + 9301, + 9319 + ]], + [[ + 9367, + 9350, + 9329 + ]], + [[ + 9328, + 9333, + 9367 + ]], + [[ + 9335, + 9391, + 9267 + ]], + [[ + 9401, + 9240, + 9506 + ]], + [[ + 9340, + 9339, + 9398 + ]], + [[ + 9239, + 9506, + 9240 + ]], + [[ + 9240, + 9397, + 9241 + ]], + [[ + 9401, + 9400, + 9240 + ]], + [[ + 9399, + 9397, + 9400 + ]], + [[ + 9244, + 9401, + 9242 + ]], + [[ + 9244, + 9399, + 9401 + ]], + [[ + 9242, + 9506, + 9507 + ]], + [[ + 9242, + 9401, + 9506 + ]], + [[ + 9508, + 9509, + 9510 + ]], + [[ + 9511, + 9500, + 9512 + ]], + [[ + 9398, + 9246, + 9245 + ]], + [[ + 9287, + 9286, + 9243 + ]], + [[ + 9513, + 9235, + 9514 + ]], + [[ + 9515, + 9231, + 9230 + ]], + [[ + 9459, + 9516, + 9517 + ]], + [[ + 9421, + 9420, + 9516 + ]], + [[ + 9242, + 9453, + 9243 + ]], + [[ + 9507, + 9245, + 9518 + ]], + [[ + 9285, + 9519, + 9248 + ]], + [[ + 9452, + 9507, + 9518 + ]], + [[ + 9451, + 9520, + 9436 + ]], + [[ + 9439, + 9521, + 9520 + ]], + [[ + 9448, + 9505, + 9395 + ]], + [[ + 9520, + 9451, + 9440 + ]], + [[ + 9395, + 9505, + 9439 + ]], + [[ + 9225, + 9288, + 9521 + ]], + [[ + 9505, + 9504, + 9396 + ]], + [[ + 9505, + 9521, + 9439 + ]], + [[ + 9321, + 9377, + 9385 + ]], + [[ + 9369, + 9365, + 9380 + ]], + [[ + 9351, + 9385, + 9362 + ]], + [[ + 9385, + 9377, + 9386 + ]], + [[ + 9319, + 9321, + 9352 + ]], + [[ + 9320, + 9377, + 9321 + ]], + [[ + 9285, + 9248, + 9286 + ]], + [[ + 9248, + 9243, + 9286 + ]], + [[ + 9507, + 9452, + 9453 + ]], + [[ + 9518, + 9285, + 9452 + ]], + [[ + 9522, + 9523, + 9252 + ]], + [[ + 9455, + 9260, + 9259 + ]], + [[ + 9524, + 9343, + 9342 + ]], + [[ + 9525, + 9457, + 9464 + ]], + [[ + 9345, + 9526, + 9495 + ]], + [[ + 9426, + 9456, + 9424 + ]], + [[ + 9420, + 9527, + 9460 + ]], + [[ + 9343, + 9524, + 9422 + ]], + [[ + 9528, + 9338, + 9337 + ]], + [[ + 9346, + 9495, + 9529 + ]], + [[ + 9426, + 9411, + 9483 + ]], + [[ + 9530, + 9528, + 9531 + ]], + [[ + 9347, + 9532, + 9345 + ]], + [[ + 9495, + 9481, + 9172 + ]], + [[ + 9422, + 9524, + 9425 + ]], + [[ + 9533, + 9534, + 9535 + ]], + [[ + 9536, + 9533, + 9535 + ]], + [[ + 9535, + 9530, + 9532 + ]], + [[ + 9533, + 9537, + 9538 + ]], + [[ + 9539, + 9426, + 9524 + ]], + [[ + 9530, + 9531, + 9526 + ]], + [[ + 9540, + 9541, + 9482 + ]], + [[ + 9174, + 9529, + 9495 + ]], + [[ + 9542, + 9387, + 9389 + ]], + [[ + 9174, + 9542, + 9529 + ]], + [[ + 9542, + 9389, + 9410 + ]], + [[ + 9543, + 9446, + 9279 + ]], + [[ + 9445, + 9443, + 9446 + ]], + [[ + 9543, + 9228, + 9446 + ]], + [[ + 9227, + 9440, + 9445 + ]], + [[ + 9543, + 9279, + 9544 + ]], + [[ + 9436, + 9438, + 9444 + ]], + [[ + 9326, + 9378, + 9294 + ]], + [[ + 9394, + 9417, + 9379 + ]], + [[ + 9495, + 9346, + 9345 + ]], + [[ + 9529, + 9409, + 9346 + ]], + [[ + 9545, + 9282, + 9270 + ]], + [[ + 9250, + 9254, + 9249 + ]], + [[ + 9546, + 9547, + 9548 + ]], + [[ + 9503, + 9545, + 9270 + ]], + [[ + 9548, + 9549, + 9550 + ]], + [[ + 9551, + 9552, + 9502 + ]], + [[ + 9487, + 9347, + 9346 + ]], + [[ + 9532, + 9526, + 9345 + ]], + [[ + 9553, + 9538, + 9537 + ]], + [[ + 9554, + 9524, + 9342 + ]], + [[ + 9555, + 9556, + 9342 + ]], + [[ + 9534, + 9557, + 9535 + ]], + [[ + 9558, + 9554, + 9556 + ]], + [[ + 9559, + 9538, + 9554 + ]], + [[ + 9471, + 9475, + 9435 + ]], + [[ + 9471, + 9392, + 9475 + ]], + [[ + 9446, + 9280, + 9279 + ]], + [[ + 3441, + 3440, + 9560 + ]], + [[ + 9279, + 9281, + 9441 + ]], + [[ + 9561, + 3441, + 9560 + ]], + [[ + 9410, + 9389, + 9414 + ]], + [[ + 9562, + 9252, + 9251 + ]], + [[ + 9529, + 9542, + 9409 + ]], + [[ + 9174, + 9375, + 9387 + ]], + [[ + 9388, + 9563, + 9389 + ]], + [[ + 9564, + 9522, + 9517 + ]], + [[ + 9389, + 9563, + 9413 + ]], + [[ + 9465, + 9259, + 9252 + ]], + [[ + 9565, + 9566, + 9567 + ]], + [[ + 9568, + 9313, + 9569 + ]], + [[ + 9308, + 9570, + 9571 + ]], + [[ + 9572, + 9573, + 9574 + ]], + [[ + 9567, + 9566, + 9203 + ]], + [[ + 9575, + 9576, + 9577 + ]], + [[ + 9578, + 9579, + 9580 + ]], + [[ + 9581, + 9577, + 9582 + ]], + [[ + 9583, + 9566, + 9584 + ]], + [[ + 9585, + 9586, + 9566 + ]], + [[ + 3894, + 9308, + 3630 + ]], + [[ + 9299, + 9462, + 9308 + ]], + [[ + 9333, + 9348, + 9367 + ]], + [[ + 9333, + 9335, + 9267 + ]], + [[ + 9587, + 9588, + 9589 + ]], + [[ + 9527, + 9420, + 9419 + ]], + [[ + 9460, + 9424, + 9457 + ]], + [[ + 9422, + 9425, + 9424 + ]], + [[ + 9420, + 9460, + 9516 + ]], + [[ + 9422, + 9424, + 9460 + ]], + [[ + 9525, + 9464, + 9463 + ]], + [[ + 9523, + 9465, + 9252 + ]], + [[ + 9495, + 9479, + 9481 + ]], + [[ + 9324, + 9590, + 9497 + ]], + [[ + 9531, + 9591, + 9495 + ]], + [[ + 9592, + 9541, + 9593 + ]], + [[ + 9405, + 9496, + 9594 + ]], + [[ + 9323, + 9595, + 9324 + ]], + [[ + 9486, + 9485, + 9596 + ]], + [[ + 9489, + 9488, + 9485 + ]], + [[ + 9494, + 9488, + 9404 + ]], + [[ + 9494, + 9492, + 9596 + ]], + [[ + 9283, + 9293, + 9226 + ]], + [[ + 9280, + 9446, + 9276 + ]], + [[ + 9407, + 9597, + 9177 + ]], + [[ + 9494, + 9300, + 9493 + ]], + [[ + 9477, + 9478, + 9373 + ]], + [[ + 9489, + 9485, + 9593 + ]], + [[ + 9373, + 9491, + 9374 + ]], + [[ + 9598, + 9478, + 9491 + ]], + [[ + 9564, + 9463, + 9523 + ]], + [[ + 9464, + 9563, + 9465 + ]], + [[ + 9414, + 9464, + 9457 + ]], + [[ + 9413, + 9563, + 9464 + ]], + [[ + 9599, + 9600, + 9601 + ]], + [[ + 9428, + 3431, + 3630 + ]], + [[ + 9565, + 9584, + 9566 + ]], + [[ + 9602, + 9603, + 9586 + ]], + [[ + 9604, + 9605, + 9513 + ]], + [[ + 9234, + 9509, + 9514 + ]], + [[ + 9386, + 9364, + 9363 + ]], + [[ + 9364, + 9332, + 9365 + ]], + [[ + 9363, + 9364, + 9366 + ]], + [[ + 9386, + 9377, + 9364 + ]], + [[ + 9308, + 9576, + 9570 + ]], + [[ + 9214, + 9582, + 9606 + ]], + [[ + 9607, + 9577, + 9576 + ]], + [[ + 9207, + 9215, + 9208 + ]], + [[ + 9292, + 9293, + 9283 + ]], + [[ + 3441, + 9561, + 9293 + ]], + [[ + 9608, + 9501, + 9395 + ]], + [[ + 9511, + 9609, + 9610 + ]], + [[ + 9460, + 9525, + 9516 + ]], + [[ + 9522, + 9252, + 9459 + ]], + [[ + 9611, + 9412, + 9408 + ]], + [[ + 9408, + 9172, + 9481 + ]], + [[ + 9612, + 9613, + 9303 + ]], + [[ + 9614, + 9344, + 9423 + ]], + [[ + 9303, + 9613, + 9555 + ]], + [[ + 9342, + 9344, + 9614 + ]], + [[ + 9615, + 9283, + 9284 + ]], + [[ + 9615, + 9292, + 9283 + ]], + [[ + 9314, + 9313, + 9616 + ]], + [[ + 9617, + 9618, + 9429 + ]], + [[ + 9619, + 9620, + 9621 + ]], + [[ + 9619, + 9361, + 9622 + ]], + [[ + 9623, + 9309, + 9624 + ]], + [[ + 9573, + 9571, + 9570 + ]], + [[ + 9601, + 9600, + 9580 + ]], + [[ + 9625, + 9571, + 9573 + ]], + [[ + 9626, + 9578, + 9580 + ]], + [[ + 9600, + 9599, + 9580 + ]], + [[ + 9311, + 9627, + 9309 + ]], + [[ + 9579, + 9601, + 9580 + ]], + [[ + 9205, + 9628, + 9359 + ]], + [[ + 9625, + 9629, + 9571 + ]], + [[ + 9630, + 9625, + 9572 + ]], + [[ + 9570, + 9576, + 9575 + ]], + [[ + 9357, + 9381, + 9353 + ]], + [[ + 9431, + 9266, + 9476 + ]], + [[ + 9381, + 9432, + 9473 + ]], + [[ + 9431, + 9349, + 9266 + ]], + [[ + 9516, + 9525, + 9517 + ]], + [[ + 9525, + 9463, + 9564 + ]], + [[ + 9404, + 9300, + 9494 + ]], + [[ + 9403, + 9328, + 9301 + ]], + [[ + 9319, + 9301, + 9329 + ]], + [[ + 9300, + 9404, + 9403 + ]], + [[ + 9300, + 9403, + 9301 + ]], + [[ + 9402, + 9334, + 9403 + ]], + [[ + 9347, + 9536, + 9532 + ]], + [[ + 9538, + 9559, + 9533 + ]], + [[ + 9524, + 9553, + 9539 + ]], + [[ + 9553, + 9554, + 9538 + ]], + [[ + 9631, + 9632, + 9565 + ]], + [[ + 9632, + 9311, + 9579 + ]], + [[ + 9628, + 9360, + 9359 + ]], + [[ + 9313, + 9568, + 9616 + ]], + [[ + 9267, + 9391, + 9268 + ]], + [[ + 9349, + 9267, + 9266 + ]], + [[ + 9380, + 9381, + 9357 + ]], + [[ + 9350, + 9349, + 9381 + ]], + [[ + 9580, + 9633, + 9602 + ]], + [[ + 9628, + 9204, + 9634 + ]], + [[ + 9481, + 9480, + 9323 + ]], + [[ + 9418, + 9407, + 9376 + ]], + [[ + 9323, + 9480, + 9595 + ]], + [[ + 9541, + 9531, + 9528 + ]], + [[ + 9322, + 9324, + 9496 + ]], + [[ + 9635, + 9480, + 9636 + ]], + [[ + 9558, + 9637, + 9638 + ]], + [[ + 9534, + 9533, + 9559 + ]], + [[ + 9558, + 9638, + 9559 + ]], + [[ + 9637, + 9534, + 9638 + ]], + [[ + 9516, + 9459, + 9421 + ]], + [[ + 9517, + 9522, + 9459 + ]], + [[ + 9370, + 9303, + 9302 + ]], + [[ + 9423, + 9304, + 9303 + ]], + [[ + 9595, + 9590, + 9324 + ]], + [[ + 9639, + 9597, + 9640 + ]], + [[ + 9595, + 9635, + 9590 + ]], + [[ + 9596, + 9492, + 9641 + ]], + [[ + 9225, + 9505, + 9396 + ]], + [[ + 9225, + 9521, + 9505 + ]], + [[ + 9475, + 9474, + 9435 + ]], + [[ + 9392, + 9415, + 9355 + ]], + [[ + 9174, + 9387, + 9542 + ]], + [[ + 9375, + 9259, + 9387 + ]], + [[ + 9642, + 9643, + 9628 + ]], + [[ + 9574, + 9573, + 9581 + ]], + [[ + 9606, + 9582, + 9577 + ]], + [[ + 9215, + 9427, + 9208 + ]], + [[ + 9353, + 9355, + 9325 + ]], + [[ + 9474, + 9475, + 9355 + ]], + [[ + 9644, + 9601, + 9579 + ]], + [[ + 9645, + 9599, + 9601 + ]], + [[ + 9546, + 9285, + 9518 + ]], + [[ + 9250, + 9270, + 9255 + ]], + [[ + 9546, + 9550, + 9646 + ]], + [[ + 9647, + 9270, + 9250 + ]], + [[ + 9519, + 9250, + 9248 + ]], + [[ + 9647, + 9646, + 9551 + ]], + [[ + 9648, + 9547, + 9510 + ]], + [[ + 9647, + 9502, + 9270 + ]], + [[ + 9548, + 9552, + 9549 + ]], + [[ + 9552, + 9503, + 9502 + ]], + [[ + 9646, + 9550, + 9551 + ]], + [[ + 9549, + 9552, + 9551 + ]], + [[ + 9548, + 9610, + 9552 + ]], + [[ + 9442, + 9503, + 9552 + ]], + [[ + 9519, + 9646, + 9250 + ]], + [[ + 9550, + 9549, + 9551 + ]], + [[ + 9285, + 9646, + 9519 + ]], + [[ + 9546, + 9510, + 9547 + ]], + [[ + 9508, + 9510, + 9546 + ]], + [[ + 9509, + 9648, + 9510 + ]], + [[ + 9514, + 9508, + 9518 + ]], + [[ + 9514, + 9509, + 9508 + ]], + [[ + 9308, + 9649, + 3630 + ]], + [[ + 9649, + 9571, + 9650 + ]], + [[ + 9379, + 9417, + 9651 + ]], + [[ + 9472, + 9393, + 9417 + ]], + [[ + 9492, + 9175, + 9177 + ]], + [[ + 9493, + 9300, + 9175 + ]], + [[ + 9564, + 9523, + 9522 + ]], + [[ + 9563, + 9388, + 9465 + ]], + [[ + 9594, + 9611, + 9405 + ]], + [[ + 9412, + 9454, + 9172 + ]], + [[ + 9481, + 9406, + 9408 + ]], + [[ + 9481, + 9323, + 9322 + ]], + [[ + 9405, + 9611, + 9408 + ]], + [[ + 9455, + 9454, + 9412 + ]], + [[ + 9641, + 9492, + 9177 + ]], + [[ + 9596, + 9488, + 9494 + ]], + [[ + 9597, + 9641, + 9177 + ]], + [[ + 9597, + 9486, + 9596 + ]], + [[ + 9363, + 9368, + 9327 + ]], + [[ + 9366, + 9365, + 9368 + ]], + [[ + 9233, + 9235, + 9605 + ]], + [[ + 9605, + 9515, + 9230 + ]], + [[ + 9233, + 9648, + 9509 + ]], + [[ + 9234, + 9514, + 9235 + ]], + [[ + 9544, + 9441, + 9442 + ]], + [[ + 9560, + 3440, + 9441 + ]], + [[ + 9652, + 9543, + 9442 + ]], + [[ + 9279, + 9441, + 9544 + ]], + [[ + 9291, + 9612, + 9370 + ]], + [[ + 9371, + 9460, + 9527 + ]], + [[ + 9539, + 9553, + 9537 + ]], + [[ + 9524, + 9554, + 9553 + ]], + [[ + 9224, + 9498, + 9289 + ]], + [[ + 9275, + 9289, + 9498 + ]], + [[ + 9293, + 9450, + 9449 + ]], + [[ + 9293, + 9498, + 9450 + ]], + [[ + 9470, + 9653, + 9467 + ]], + [[ + 9654, + 9655, + 9656 + ]], + [[ + 9643, + 9466, + 9314 + ]], + [[ + 9467, + 9653, + 9468 + ]], + [[ + 9656, + 9657, + 9658 + ]], + [[ + 9659, + 9660, + 9661 + ]], + [[ + 9569, + 9662, + 9663 + ]], + [[ + 9622, + 9568, + 9663 + ]], + [[ + 9524, + 9426, + 9425 + ]], + [[ + 9539, + 9411, + 9426 + ]], + [[ + 9552, + 9610, + 9442 + ]], + [[ + 9512, + 9229, + 9543 + ]], + [[ + 9608, + 9499, + 9501 + ]], + [[ + 9608, + 9440, + 9229 + ]], + [[ + 9648, + 9664, + 9547 + ]], + [[ + 9609, + 9442, + 9610 + ]], + [[ + 9405, + 9322, + 9496 + ]], + [[ + 9406, + 9481, + 9322 + ]], + [[ + 9635, + 9636, + 9639 + ]], + [[ + 9480, + 9592, + 9636 + ]], + [[ + 9590, + 9635, + 9639 + ]], + [[ + 9595, + 9480, + 9635 + ]], + [[ + 9470, + 9468, + 9653 + ]], + [[ + 9655, + 9665, + 9656 + ]], + [[ + 9504, + 9448, + 9396 + ]], + [[ + 9395, + 9232, + 9448 + ]], + [[ + 9284, + 9292, + 9615 + ]], + [[ + 9379, + 3441, + 9292 + ]], + [[ + 9410, + 9414, + 9483 + ]], + [[ + 9413, + 9464, + 9414 + ]], + [[ + 9645, + 9644, + 9623 + ]], + [[ + 9666, + 9627, + 9667 + ]], + [[ + 9293, + 9276, + 9275 + ]], + [[ + 9446, + 9438, + 9276 + ]], + [[ + 9579, + 9668, + 9644 + ]], + [[ + 9310, + 9623, + 9644 + ]], + [[ + 9626, + 9632, + 9578 + ]], + [[ + 9584, + 9565, + 9632 + ]], + [[ + 9566, + 9583, + 9585 + ]], + [[ + 9626, + 9580, + 9602 + ]], + [[ + 9584, + 9626, + 9583 + ]], + [[ + 9584, + 9632, + 9626 + ]], + [[ + 9574, + 9581, + 9634 + ]], + [[ + 9575, + 9577, + 9581 + ]], + [[ + 9325, + 9383, + 9394 + ]], + [[ + 9382, + 9416, + 9394 + ]], + [[ + 9415, + 9384, + 9325 + ]], + [[ + 9415, + 9382, + 9384 + ]], + [[ + 9669, + 9613, + 9612 + ]], + [[ + 9303, + 9555, + 9423 + ]], + [[ + 9555, + 9613, + 9556 + ]], + [[ + 9612, + 9291, + 9669 + ]], + [[ + 9670, + 9336, + 9338 + ]], + [[ + 9390, + 3553, + 9391 + ]], + [[ + 9491, + 9671, + 9374 + ]], + [[ + 9491, + 9489, + 9672 + ]], + [[ + 9490, + 9373, + 9372 + ]], + [[ + 9390, + 9336, + 9670 + ]], + [[ + 9390, + 9482, + 9336 + ]], + [[ + 9482, + 9671, + 9540 + ]], + [[ + 9557, + 9390, + 9670 + ]], + [[ + 9374, + 9671, + 9482 + ]], + [[ + 9338, + 9557, + 9670 + ]], + [[ + 9535, + 9532, + 9536 + ]], + [[ + 9338, + 9535, + 9557 + ]], + [[ + 9338, + 9528, + 9530 + ]], + [[ + 9526, + 9531, + 9495 + ]], + [[ + 9528, + 9337, + 9541 + ]], + [[ + 9673, + 9643, + 9642 + ]], + [[ + 9673, + 9466, + 9643 + ]], + [[ + 3553, + 9534, + 9637 + ]], + [[ + 3553, + 9557, + 9534 + ]], + [[ + 9674, + 9658, + 9468 + ]], + [[ + 9675, + 3431, + 9676 + ]], + [[ + 9521, + 9288, + 9520 + ]], + [[ + 9277, + 9276, + 9437 + ]], + [[ + 9289, + 9277, + 9288 + ]], + [[ + 9276, + 9438, + 9437 + ]], + [[ + 9677, + 9678, + 9679 + ]], + [[ + 9562, + 9680, + 9252 + ]], + [[ + 9548, + 9681, + 9610 + ]], + [[ + 9500, + 9499, + 9512 + ]], + [[ + 9447, + 9682, + 9233 + ]], + [[ + 9235, + 9513, + 9605 + ]], + [[ + 9476, + 9473, + 9432 + ]], + [[ + 9354, + 9353, + 9473 + ]], + [[ + 9290, + 9669, + 9683 + ]], + [[ + 9612, + 9303, + 9370 + ]], + [[ + 3579, + 9291, + 3632 + ]], + [[ + 9683, + 9669, + 9291 + ]], + [[ + 9288, + 9277, + 9437 + ]], + [[ + 9289, + 9275, + 9277 + ]], + [[ + 9684, + 9685, + 9686 + ]], + [[ + 9674, + 9468, + 9470 + ]], + [[ + 9679, + 9687, + 9688 + ]], + [[ + 9689, + 9291, + 9370 + ]], + [[ + 9589, + 9690, + 9691 + ]], + [[ + 9691, + 9692, + 9527 + ]], + [[ + 9290, + 9558, + 9669 + ]], + [[ + 9556, + 9613, + 9669 + ]], + [[ + 9693, + 9660, + 9659 + ]], + [[ + 9694, + 9675, + 9695 + ]], + [[ + 9569, + 9655, + 9662 + ]], + [[ + 9569, + 9663, + 9568 + ]], + [[ + 9325, + 9394, + 9378 + ]], + [[ + 9383, + 9382, + 9394 + ]], + [[ + 9414, + 9456, + 9483 + ]], + [[ + 9414, + 9457, + 9456 + ]], + [[ + 9696, + 9697, + 9428 + ]], + [[ + 9666, + 9624, + 9627 + ]], + [[ + 9660, + 9698, + 9661 + ]], + [[ + 9661, + 3431, + 9694 + ]], + [[ + 9293, + 9699, + 9226 + ]], + [[ + 9224, + 9289, + 9225 + ]], + [[ + 9293, + 9449, + 9699 + ]], + [[ + 9450, + 9498, + 9224 + ]], + [[ + 9518, + 9238, + 9514 + ]], + [[ + 9237, + 9604, + 9513 + ]], + [[ + 9604, + 9237, + 9236 + ]], + [[ + 9513, + 9514, + 9238 + ]], + [[ + 9281, + 9561, + 9441 + ]], + [[ + 9561, + 9280, + 9293 + ]], + [[ + 9700, + 9358, + 9207 + ]], + [[ + 9358, + 9213, + 9215 + ]], + [[ + 9701, + 9700, + 9634 + ]], + [[ + 9701, + 9582, + 9213 + ]], + [[ + 9581, + 9701, + 9634 + ]], + [[ + 9581, + 9582, + 9701 + ]], + [[ + 9643, + 9314, + 9360 + ]], + [[ + 9466, + 9468, + 9702 + ]], + [[ + 9651, + 9391, + 3441 + ]], + [[ + 9430, + 9372, + 9391 + ]], + [[ + 9517, + 9525, + 9564 + ]], + [[ + 9460, + 9457, + 9525 + ]], + [[ + 9242, + 9507, + 9453 + ]], + [[ + 9506, + 9239, + 9507 + ]], + [[ + 9309, + 9627, + 9624 + ]], + [[ + 9703, + 9704, + 9663 + ]], + [[ + 9666, + 9667, + 9429 + ]], + [[ + 9705, + 9703, + 9663 + ]], + [[ + 9627, + 9620, + 9617 + ]], + [[ + 9621, + 9311, + 9631 + ]], + [[ + 9431, + 9476, + 9432 + ]], + [[ + 9268, + 9434, + 9476 + ]], + [[ + 9599, + 9650, + 9633 + ]], + [[ + 9649, + 9308, + 9571 + ]], + [[ + 9574, + 9706, + 9572 + ]], + [[ + 9633, + 9580, + 9599 + ]], + [[ + 9583, + 9602, + 9585 + ]], + [[ + 9630, + 9572, + 9706 + ]], + [[ + 9214, + 9707, + 9462 + ]], + [[ + 9214, + 9427, + 9215 + ]], + [[ + 9614, + 9555, + 9342 + ]], + [[ + 9614, + 9423, + 9555 + ]], + [[ + 9571, + 9629, + 9650 + ]], + [[ + 9630, + 9706, + 9603 + ]], + [[ + 9369, + 9380, + 9356 + ]], + [[ + 9365, + 9350, + 9380 + ]], + [[ + 9327, + 9369, + 9356 + ]], + [[ + 9368, + 9365, + 9369 + ]], + [[ + 9627, + 9617, + 9667 + ]], + [[ + 9620, + 9676, + 9618 + ]], + [[ + 9688, + 9588, + 9587 + ]], + [[ + 9692, + 9689, + 9370 + ]], + [[ + 9253, + 9688, + 9687 + ]], + [[ + 9688, + 3632, + 9689 + ]], + [[ + 9677, + 9679, + 9587 + ]], + [[ + 9678, + 9687, + 9679 + ]], + [[ + 9662, + 9695, + 9663 + ]], + [[ + 9708, + 9620, + 9619 + ]], + [[ + 9708, + 9704, + 9703 + ]], + [[ + 9704, + 9622, + 9663 + ]], + [[ + 9705, + 9708, + 9703 + ]], + [[ + 9619, + 9622, + 9704 + ]], + [[ + 9443, + 9451, + 9444 + ]], + [[ + 9443, + 9440, + 9451 + ]], + [[ + 9640, + 9597, + 9407 + ]], + [[ + 9639, + 9486, + 9597 + ]], + [[ + 9461, + 9467, + 9466 + ]], + [[ + 9461, + 9469, + 9467 + ]], + [[ + 9398, + 9239, + 9241 + ]], + [[ + 9245, + 9507, + 9239 + ]], + [[ + 9308, + 9607, + 9576 + ]], + [[ + 9308, + 9462, + 9707 + ]], + [[ + 9607, + 9606, + 9577 + ]], + [[ + 9606, + 9308, + 9707 + ]], + [[ + 9222, + 9688, + 9253 + ]], + [[ + 3632, + 9291, + 9689 + ]], + [[ + 9361, + 9568, + 9622 + ]], + [[ + 9616, + 9360, + 9314 + ]], + [[ + 9709, + 9710, + 9317 + ]], + [[ + 9711, + 9712, + 9713 + ]], + [[ + 9395, + 9440, + 9608 + ]], + [[ + 9439, + 9520, + 9440 + ]], + [[ + 9411, + 9410, + 9483 + ]], + [[ + 9409, + 9542, + 9410 + ]], + [[ + 9572, + 9625, + 9573 + ]], + [[ + 9630, + 9629, + 9625 + ]], + [[ + 9203, + 9205, + 9359 + ]], + [[ + 9204, + 9574, + 9634 + ]], + [[ + 9205, + 9204, + 9628 + ]], + [[ + 9706, + 9574, + 9204 + ]], + [[ + 9361, + 9203, + 9359 + ]], + [[ + 9203, + 9586, + 9204 + ]], + [[ + 9513, + 9238, + 9237 + ]], + [[ + 9518, + 9245, + 9238 + ]], + [[ + 9711, + 9714, + 9715 + ]], + [[ + 9716, + 9712, + 9715 + ]], + [[ + 9541, + 9672, + 9593 + ]], + [[ + 9671, + 9491, + 9672 + ]], + [[ + 9479, + 9592, + 9480 + ]], + [[ + 9593, + 9485, + 9484 + ]], + [[ + 9214, + 9606, + 9707 + ]], + [[ + 9607, + 9308, + 9606 + ]], + [[ + 9490, + 9372, + 9430 + ]], + [[ + 9374, + 9482, + 9372 + ]], + [[ + 9409, + 9487, + 9346 + ]], + [[ + 9411, + 9539, + 9347 + ]], + [[ + 9629, + 9633, + 9650 + ]], + [[ + 9603, + 9706, + 9586 + ]], + [[ + 9717, + 9251, + 9253 + ]], + [[ + 9718, + 9678, + 9719 + ]], + [[ + 9719, + 9680, + 9562 + ]], + [[ + 9680, + 9459, + 9252 + ]], + [[ + 9472, + 9416, + 9382 + ]], + [[ + 9472, + 9417, + 9416 + ]], + [[ + 9626, + 9602, + 9583 + ]], + [[ + 9633, + 9629, + 9603 + ]], + [[ + 9311, + 9310, + 9668 + ]], + [[ + 9623, + 9720, + 9645 + ]], + [[ + 9668, + 9310, + 9644 + ]], + [[ + 9309, + 9623, + 9310 + ]], + [[ + 9665, + 9655, + 9569 + ]], + [[ + 9695, + 9708, + 9705 + ]], + [[ + 9354, + 9433, + 9474 + ]], + [[ + 9473, + 9434, + 9433 + ]], + [[ + 9721, + 9659, + 9654 + ]], + [[ + 9659, + 9661, + 9694 + ]], + [[ + 9502, + 9647, + 9551 + ]], + [[ + 9250, + 9646, + 9647 + ]], + [[ + 9251, + 9719, + 9562 + ]], + [[ + 9719, + 9458, + 9680 + ]], + [[ + 9194, + 9317, + 9195 + ]], + [[ + 9317, + 9710, + 9315 + ]], + [[ + 9234, + 9233, + 9509 + ]], + [[ + 9681, + 9511, + 9610 + ]], + [[ + 9233, + 9664, + 9648 + ]], + [[ + 9722, + 9511, + 9681 + ]], + [[ + 9230, + 9233, + 9605 + ]], + [[ + 9230, + 9447, + 9233 + ]], + [[ + 9194, + 9723, + 9724 + ]], + [[ + 9317, + 9316, + 9195 + ]], + [[ + 9725, + 9726, + 9201 + ]], + [[ + 9727, + 9712, + 9728 + ]], + [[ + 9532, + 9530, + 9526 + ]], + [[ + 9535, + 9338, + 9530 + ]], + [[ + 9314, + 9702, + 9312 + ]], + [[ + 9314, + 9466, + 9702 + ]], + [[ + 9479, + 9591, + 9592 + ]], + [[ + 9479, + 9495, + 9591 + ]], + [[ + 9720, + 9429, + 9428 + ]], + [[ + 9667, + 9617, + 9429 + ]], + [[ + 9720, + 9666, + 9429 + ]], + [[ + 9623, + 9624, + 9666 + ]], + [[ + 9402, + 9477, + 9490 + ]], + [[ + 9598, + 9491, + 9373 + ]], + [[ + 9490, + 9477, + 9373 + ]], + [[ + 9402, + 9404, + 9477 + ]], + [[ + 9373, + 9478, + 9598 + ]], + [[ + 9404, + 9488, + 9478 + ]], + [[ + 9285, + 9546, + 9646 + ]], + [[ + 9518, + 9508, + 9546 + ]], + [[ + 9193, + 9723, + 9729 + ]], + [[ + 9195, + 9316, + 9730 + ]], + [[ + 9649, + 9645, + 3630 + ]], + [[ + 9601, + 9644, + 9645 + ]], + [[ + 9348, + 9267, + 9349 + ]], + [[ + 9348, + 9333, + 9267 + ]], + [[ + 9433, + 9354, + 9473 + ]], + [[ + 9474, + 9355, + 9354 + ]], + [[ + 9656, + 9658, + 9693 + ]], + [[ + 9658, + 9698, + 9660 + ]], + [[ + 9663, + 9695, + 9705 + ]], + [[ + 9676, + 9620, + 9708 + ]], + [[ + 9695, + 9675, + 9708 + ]], + [[ + 9618, + 9617, + 9620 + ]], + [[ + 9194, + 9709, + 9317 + ]], + [[ + 9724, + 9731, + 9709 + ]], + [[ + 9723, + 9732, + 9724 + ]], + [[ + 9733, + 9726, + 9728 + ]], + [[ + 9734, + 9735, + 9307 + ]], + [[ + 3444, + 3755, + 9736 + ]], + [[ + 9728, + 9712, + 9737 + ]], + [[ + 9714, + 9738, + 9729 + ]], + [[ + 9594, + 9497, + 9739 + ]], + [[ + 9590, + 9639, + 9497 + ]], + [[ + 9411, + 9347, + 9487 + ]], + [[ + 9539, + 9537, + 9536 + ]], + [[ + 9539, + 9536, + 9347 + ]], + [[ + 9537, + 9533, + 9536 + ]], + [[ + 3776, + 9723, + 9193 + ]], + [[ + 3776, + 9201, + 9723 + ]], + [[ + 9186, + 9713, + 9712 + ]], + [[ + 9713, + 9186, + 9740 + ]], + [[ + 9316, + 9716, + 9730 + ]], + [[ + 9738, + 9740, + 9729 + ]], + [[ + 9730, + 9715, + 9714 + ]], + [[ + 9316, + 9315, + 9737 + ]], + [[ + 9729, + 9730, + 9714 + ]], + [[ + 9196, + 9195, + 9730 + ]], + [[ + 9716, + 9737, + 9712 + ]], + [[ + 9728, + 9726, + 9727 + ]], + [[ + 9730, + 9716, + 9715 + ]], + [[ + 9316, + 9737, + 9716 + ]], + [[ + 9723, + 9731, + 9732 + ]], + [[ + 9201, + 9726, + 9733 + ]], + [[ + 9710, + 9733, + 9315 + ]], + [[ + 9710, + 9731, + 9201 + ]], + [[ + 9731, + 9710, + 9709 + ]], + [[ + 9731, + 9723, + 9201 + ]], + [[ + 9578, + 9632, + 9579 + ]], + [[ + 9565, + 9567, + 9631 + ]], + [[ + 9619, + 9631, + 9567 + ]], + [[ + 9621, + 9627, + 9311 + ]], + [[ + 9729, + 9723, + 9194 + ]], + [[ + 9732, + 9731, + 9724 + ]], + [[ + 9210, + 9734, + 9307 + ]], + [[ + 9741, + 9742, + 3444 + ]], + [[ + 9458, + 9677, + 9419 + ]], + [[ + 9458, + 9719, + 9677 + ]], + [[ + 9611, + 9594, + 9260 + ]], + [[ + 9496, + 9497, + 9594 + ]], + [[ + 9738, + 9711, + 9743 + ]], + [[ + 9715, + 9712, + 9711 + ]], + [[ + 9730, + 9729, + 9196 + ]], + [[ + 9197, + 9193, + 9729 + ]], + [[ + 9711, + 9713, + 9743 + ]], + [[ + 9186, + 9197, + 9740 + ]], + [[ + 9307, + 9735, + 9217 + ]], + [[ + 3755, + 9220, + 9305 + ]], + [[ + 9371, + 9527, + 9692 + ]], + [[ + 9744, + 9688, + 9689 + ]], + [[ + 9691, + 9690, + 9692 + ]], + [[ + 9589, + 9744, + 9692 + ]], + [[ + 9587, + 9589, + 9691 + ]], + [[ + 9744, + 9689, + 9692 + ]], + [[ + 9588, + 9744, + 9589 + ]], + [[ + 9588, + 9688, + 9744 + ]], + [[ + 9736, + 9216, + 9217 + ]], + [[ + 9306, + 9212, + 9211 + ]], + [[ + 9233, + 9682, + 9722 + ]], + [[ + 9447, + 9501, + 9682 + ]], + [[ + 9233, + 9722, + 9664 + ]], + [[ + 9682, + 9501, + 9500 + ]], + [[ + 9722, + 9500, + 9511 + ]], + [[ + 9722, + 9682, + 9500 + ]], + [[ + 9260, + 9351, + 9362 + ]], + [[ + 9739, + 9497, + 9640 + ]], + [[ + 9260, + 9739, + 9351 + ]], + [[ + 9640, + 9407, + 9418 + ]], + [[ + 9664, + 9681, + 9547 + ]], + [[ + 9664, + 9722, + 9681 + ]], + [[ + 9558, + 9556, + 9669 + ]], + [[ + 9554, + 9342, + 9556 + ]], + [[ + 9725, + 9727, + 9726 + ]], + [[ + 9725, + 9712, + 9727 + ]], + [[ + 9315, + 9728, + 9737 + ]], + [[ + 9315, + 9733, + 9728 + ]], + [[ + 3676, + 9209, + 3747 + ]], + [[ + 9735, + 9741, + 9736 + ]], + [[ + 9515, + 9604, + 9236 + ]], + [[ + 9515, + 9605, + 9604 + ]], + [[ + 9658, + 9661, + 9698 + ]], + [[ + 3514, + 3431, + 9661 + ]], + [[ + 9645, + 9696, + 3630 + ]], + [[ + 9645, + 9697, + 9696 + ]], + [[ + 9331, + 9296, + 9330 + ]], + [[ + 9295, + 9362, + 9296 + ]], + [[ + 9645, + 9720, + 9697 + ]], + [[ + 9623, + 9666, + 9720 + ]], + [[ + 9700, + 9628, + 9634 + ]], + [[ + 9643, + 9360, + 9628 + ]], + [[ + 9700, + 9207, + 9628 + ]], + [[ + 9206, + 9461, + 9673 + ]], + [[ + 9206, + 9673, + 9207 + ]], + [[ + 9461, + 9466, + 9673 + ]], + [[ + 9739, + 9640, + 9418 + ]], + [[ + 9497, + 9639, + 9640 + ]], + [[ + 9419, + 9691, + 9527 + ]], + [[ + 9419, + 9587, + 9691 + ]], + [[ + 9702, + 9665, + 9312 + ]], + [[ + 9654, + 9695, + 9655 + ]], + [[ + 9657, + 9665, + 9702 + ]], + [[ + 9656, + 9721, + 9654 + ]], + [[ + 9371, + 9692, + 9370 + ]], + [[ + 9690, + 9589, + 9692 + ]], + [[ + 9452, + 9287, + 9243 + ]], + [[ + 9452, + 9285, + 9287 + ]], + [[ + 9200, + 9725, + 9201 + ]], + [[ + 9186, + 9712, + 9725 + ]], + [[ + 9579, + 9311, + 9668 + ]], + [[ + 9632, + 9631, + 9311 + ]], + [[ + 9687, + 9717, + 9253 + ]], + [[ + 9687, + 9678, + 9718 + ]], + [[ + 9717, + 9718, + 9251 + ]], + [[ + 9717, + 9687, + 9718 + ]], + [[ + 9636, + 9486, + 9639 + ]], + [[ + 9636, + 9592, + 9484 + ]], + [[ + 9210, + 9209, + 9745 + ]], + [[ + 3676, + 3444, + 9209 + ]], + [[ + 9654, + 9659, + 9694 + ]], + [[ + 9721, + 9693, + 9659 + ]], + [[ + 3755, + 9305, + 9736 + ]], + [[ + 9305, + 9211, + 9216 + ]], + [[ + 9693, + 9658, + 9660 + ]], + [[ + 3514, + 9661, + 9658 + ]], + [[ + 9708, + 9619, + 9704 + ]], + [[ + 9567, + 9361, + 9619 + ]], + [[ + 9721, + 9656, + 9693 + ]], + [[ + 9665, + 9657, + 9656 + ]], + [[ + 9680, + 9458, + 9459 + ]], + [[ + 9419, + 9421, + 9458 + ]], + [[ + 9699, + 9224, + 9226 + ]], + [[ + 9699, + 9449, + 9224 + ]], + [[ + 9211, + 9305, + 9306 + ]], + [[ + 9216, + 9736, + 9305 + ]], + [[ + 9711, + 9738, + 9714 + ]], + [[ + 9740, + 9197, + 9729 + ]], + [[ + 9602, + 9586, + 9585 + ]], + [[ + 9706, + 9204, + 9586 + ]], + [[ + 9211, + 9210, + 9307 + ]], + [[ + 9745, + 9742, + 9734 + ]], + [[ + 9468, + 9657, + 9702 + ]], + [[ + 9468, + 9658, + 9657 + ]], + [[ + 9217, + 9735, + 9736 + ]], + [[ + 9742, + 9209, + 3444 + ]], + [[ + 9362, + 9385, + 9363 + ]], + [[ + 9351, + 9321, + 9385 + ]], + [[ + 9340, + 9398, + 9241 + ]], + [[ + 9339, + 9246, + 9398 + ]], + [[ + 9361, + 9616, + 9568 + ]], + [[ + 9361, + 9360, + 9616 + ]], + [[ + 9655, + 9695, + 9662 + ]], + [[ + 9654, + 9694, + 9695 + ]], + [[ + 9417, + 9471, + 9651 + ]], + [[ + 9435, + 9434, + 9471 + ]], + [[ + 9546, + 9548, + 9550 + ]], + [[ + 9547, + 9681, + 9548 + ]], + [[ + 3431, + 9618, + 9676 + ]], + [[ + 3431, + 9429, + 9618 + ]], + [[ + 9736, + 9741, + 3444 + ]], + [[ + 9735, + 9734, + 9741 + ]], + [[ + 9708, + 9675, + 9676 + ]], + [[ + 9694, + 3431, + 9675 + ]], + [[ + 9696, + 9428, + 3630 + ]], + [[ + 9697, + 9720, + 9428 + ]], + [[ + 3553, + 9558, + 3579 + ]], + [[ + 3553, + 9637, + 9558 + ]], + [[ + 9291, + 9290, + 9683 + ]], + [[ + 3579, + 9558, + 9290 + ]], + [[ + 9729, + 9194, + 9196 + ]], + [[ + 9724, + 9709, + 9194 + ]], + [[ + 9636, + 9484, + 9486 + ]], + [[ + 9592, + 9593, + 9484 + ]], + [[ + 9351, + 9739, + 9418 + ]], + [[ + 9260, + 9594, + 9739 + ]], + [[ + 9455, + 9611, + 9260 + ]], + [[ + 9455, + 9412, + 9611 + ]], + [[ + 9710, + 9201, + 9733 + ]], + [[ + 9184, + 9200, + 9746 + ]], + [[ + 9619, + 9621, + 9631 + ]], + [[ + 9620, + 9627, + 9621 + ]], + [[ + 9543, + 9229, + 9228 + ]], + [[ + 9499, + 9608, + 9229 + ]], + [[ + 9440, + 9227, + 9229 + ]], + [[ + 9445, + 9228, + 9227 + ]], + [[ + 9591, + 9541, + 9592 + ]], + [[ + 9672, + 9489, + 9593 + ]], + [[ + 9442, + 9543, + 9544 + ]], + [[ + 9512, + 9499, + 9229 + ]], + [[ + 9652, + 9512, + 9543 + ]], + [[ + 9609, + 9511, + 9512 + ]], + [[ + 9718, + 9719, + 9251 + ]], + [[ + 9678, + 9677, + 9719 + ]], + [[ + 9288, + 9436, + 9520 + ]], + [[ + 9288, + 9437, + 9436 + ]], + [[ + 9677, + 9587, + 9419 + ]], + [[ + 9679, + 9688, + 9587 + ]], + [[ + 9567, + 9203, + 9361 + ]], + [[ + 9566, + 9586, + 9203 + ]], + [[ + 9734, + 9210, + 9745 + ]], + [[ + 9298, + 3747, + 9210 + ]], + [[ + 9633, + 9603, + 9602 + ]], + [[ + 9629, + 9630, + 9603 + ]], + [[ + 9531, + 9541, + 9591 + ]], + [[ + 9337, + 9482, + 9541 + ]], + [[ + 9266, + 9268, + 9476 + ]], + [[ + 9391, + 9434, + 9268 + ]], + [[ + 9379, + 9651, + 3441 + ]], + [[ + 9471, + 9391, + 9651 + ]], + [[ + 9463, + 9465, + 9523 + ]], + [[ + 9388, + 9259, + 9465 + ]], + [[ + 9312, + 9569, + 9313 + ]], + [[ + 9312, + 9665, + 9569 + ]], + [[ + 9573, + 9575, + 9581 + ]], + [[ + 9573, + 9570, + 9575 + ]], + [[ + 9747, + 9748, + 9749 + ]], + [[ + 9750, + 9202, + 9184 + ]], + [[ + 9743, + 9740, + 9738 + ]], + [[ + 9743, + 9713, + 9740 + ]], + [[ + 9725, + 9184, + 9186 + ]], + [[ + 9674, + 3514, + 9658 + ]], + [[ + 9441, + 9561, + 9560 + ]], + [[ + 9281, + 9280, + 9561 + ]], + [[ + 9748, + 9751, + 9752 + ]], + [[ + 9753, + 3776, + 3514 + ]], + [[ + 9751, + 9754, + 9755 + ]], + [[ + 9756, + 3776, + 9753 + ]], + [[ + 9686, + 9752, + 3514 + ]], + [[ + 9757, + 9758, + 9756 + ]], + [[ + 9759, + 9684, + 9686 + ]], + [[ + 9674, + 9185, + 9760 + ]], + [[ + 9482, + 9390, + 9372 + ]], + [[ + 9557, + 3553, + 9390 + ]], + [[ + 9672, + 9540, + 9671 + ]], + [[ + 9672, + 9541, + 9540 + ]], + [[ + 9200, + 9761, + 9762 + ]], + [[ + 9762, + 9763, + 9746 + ]], + [[ + 9207, + 9642, + 9628 + ]], + [[ + 9207, + 9673, + 9642 + ]], + [[ + 9764, + 9765, + 9766 + ]], + [[ + 9758, + 9757, + 9760 + ]], + [[ + 9469, + 9674, + 9470 + ]], + [[ + 9749, + 9686, + 9685 + ]], + [[ + 9597, + 9596, + 9641 + ]], + [[ + 9485, + 9488, + 9596 + ]], + [[ + 9767, + 9202, + 9766 + ]], + [[ + 9760, + 9185, + 9202 + ]], + [[ + 9674, + 9760, + 9749 + ]], + [[ + 9760, + 9757, + 9768 + ]], + [[ + 9185, + 9674, + 9469 + ]], + [[ + 9749, + 9685, + 9674 + ]], + [[ + 9750, + 9764, + 9766 + ]], + [[ + 9763, + 3776, + 9756 + ]], + [[ + 9758, + 9760, + 9202 + ]], + [[ + 9754, + 9747, + 9760 + ]], + [[ + 9765, + 9756, + 9767 + ]], + [[ + 9767, + 9756, + 9758 + ]], + [[ + 9202, + 9750, + 9766 + ]], + [[ + 9746, + 9200, + 9762 + ]], + [[ + 9746, + 9750, + 9184 + ]], + [[ + 9746, + 9764, + 9750 + ]], + [[ + 9763, + 9764, + 9746 + ]], + [[ + 9763, + 9765, + 9764 + ]], + [[ + 9700, + 9213, + 9358 + ]], + [[ + 9700, + 9701, + 9213 + ]], + [[ + 9427, + 9214, + 9462 + ]], + [[ + 9213, + 9582, + 9214 + ]], + [[ + 9748, + 9747, + 9751 + ]], + [[ + 9768, + 9757, + 9753 + ]], + [[ + 9752, + 9753, + 3514 + ]], + [[ + 9752, + 9751, + 9753 + ]], + [[ + 9757, + 9756, + 9753 + ]], + [[ + 9765, + 9763, + 9756 + ]], + [[ + 9202, + 9767, + 9758 + ]], + [[ + 9766, + 9765, + 9767 + ]], + [[ + 9751, + 9755, + 9753 + ]], + [[ + 9754, + 9760, + 9768 + ]], + [[ + 9755, + 9768, + 9753 + ]], + [[ + 9755, + 9754, + 9768 + ]], + [[ + 3776, + 9199, + 9201 + ]], + [[ + 9769, + 9761, + 9199 + ]], + [[ + 3776, + 9769, + 9199 + ]], + [[ + 3776, + 9763, + 9769 + ]], + [[ + 9599, + 9649, + 9650 + ]], + [[ + 9599, + 9645, + 9649 + ]], + [[ + 9769, + 9762, + 9761 + ]], + [[ + 9769, + 9763, + 9762 + ]], + [[ + 9652, + 9609, + 9512 + ]], + [[ + 9652, + 9442, + 9609 + ]], + [[ + 9192, + 9193, + 9198 + ]], + [[ + 3909, + 3776, + 9193 + ]], + [[ + 9734, + 9742, + 9741 + ]], + [[ + 9745, + 9209, + 9742 + ]], + [[ + 9760, + 9747, + 9749 + ]], + [[ + 9754, + 9751, + 9747 + ]], + [[ + 9686, + 9748, + 9752 + ]], + [[ + 9686, + 9749, + 9748 + ]], + [[ + 9725, + 9200, + 9184 + ]], + [[ + 9199, + 9761, + 9200 + ]], + [[ + 3514, + 9759, + 9686 + ]], + [[ + 3514, + 9674, + 9759 + ]], + [[ + 9674, + 9684, + 9759 + ]], + [[ + 9674, + 9685, + 9684 + ]], + [[ + 9688, + 9222, + 3632 + ]], + [[ + 9253, + 9223, + 9222 + ]], + [[ + 9558, + 9559, + 9554 + ]], + [[ + 9638, + 9534, + 9559 + ]], + [[ + 3909, + 9181, + 3737 + ]], + [[ + 9188, + 9191, + 9189 + ]], + [[ + 3909, + 9188, + 9181 + ]], + [[ + 3909, + 9191, + 9188 + ]], + [[ + 9770, + 9503, + 9442 + ]], + [[ + 3440, + 9770, + 9442 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b46c407db-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efe75349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 5644, + 5512, + 5841 + ]], + [[ + 5644, + 5440, + 5650 + ]], + [[ + 5650, + 5446, + 5653 + ]], + [[ + 5653, + 5455, + 5652 + ]], + [[ + 5652, + 5455, + 5459 + ]], + [[ + 5653, + 5450, + 5455 + ]], + [[ + 5653, + 5446, + 5450 + ]], + [[ + 5650, + 5440, + 5446 + ]], + [[ + 5644, + 5488, + 5440 + ]], + [[ + 5644, + 5648, + 5488 + ]], + [[ + 5488, + 5505, + 5475 + ]], + [[ + 5488, + 5648, + 5505 + ]], + [[ + 5644, + 5841, + 5648 + ]], + [[ + 5512, + 5511, + 5841 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b46c42f03-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9771, + 9772, + 9773 + ]], + [[ + 9771, + 9774, + 9775 + ]], + [[ + 9771, + 9776, + 9774 + ]], + [[ + 9774, + 9776, + 9777 + ]], + [[ + 9771, + 9773, + 9776 + ]], + [[ + 9776, + 9773, + 9778 + ]], + [[ + 9772, + 9779, + 9773 + ]], + [[ + 9773, + 9779, + 9780 + ]], + [[ + 9772, + 9781, + 9779 + ]], + [[ + 9779, + 9781, + 9782 + ]], + [[ + 9782, + 9783, + 9784 + ]], + [[ + 9784, + 9785, + 9786 + ]], + [[ + 9784, + 9783, + 9785 + ]], + [[ + 9782, + 9781, + 9783 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b491588b8-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cf749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9787, + 9788, + 9789 + ]], + [[ + 9790, + 8186, + 7932 + ]], + [[ + 9791, + 7934, + 7935 + ]], + [[ + 9791, + 7933, + 7934 + ]], + [[ + 7933, + 9791, + 9792 + ]], + [[ + 9793, + 9794, + 9790 + ]], + [[ + 9795, + 9788, + 9794 + ]], + [[ + 9796, + 7950, + 8186 + ]], + [[ + 9797, + 9793, + 7935 + ]], + [[ + 7936, + 9794, + 9793 + ]], + [[ + 9791, + 9790, + 9792 + ]], + [[ + 7932, + 7933, + 9792 + ]], + [[ + 7936, + 9797, + 7935 + ]], + [[ + 7936, + 9793, + 9797 + ]], + [[ + 7927, + 9795, + 7936 + ]], + [[ + 7927, + 9788, + 9795 + ]], + [[ + 9795, + 9794, + 7936 + ]], + [[ + 9787, + 9789, + 9798 + ]], + [[ + 7927, + 9789, + 9788 + ]], + [[ + 7927, + 7950, + 9789 + ]], + [[ + 9794, + 9799, + 8186 + ]], + [[ + 9799, + 7950, + 9796 + ]], + [[ + 9794, + 9787, + 9799 + ]], + [[ + 9794, + 9788, + 9787 + ]], + [[ + 9792, + 9800, + 7932 + ]], + [[ + 9794, + 8186, + 9790 + ]], + [[ + 9793, + 9801, + 7935 + ]], + [[ + 9801, + 9790, + 9791 + ]], + [[ + 8186, + 9799, + 9796 + ]], + [[ + 9798, + 7950, + 9799 + ]], + [[ + 9787, + 9798, + 9799 + ]], + [[ + 9789, + 7950, + 9798 + ]], + [[ + 9800, + 9790, + 7932 + ]], + [[ + 9800, + 9792, + 9790 + ]], + [[ + 7935, + 9801, + 9791 + ]], + [[ + 9793, + 9790, + 9801 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4915aff8-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef812649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9802, + 9803, + 7754 + ]], + [[ + 9804, + 9805, + 9806 + ]], + [[ + 9802, + 9807, + 9808 + ]], + [[ + 9802, + 7754, + 9809 + ]], + [[ + 9808, + 9807, + 9810 + ]], + [[ + 9802, + 9809, + 9807 + ]], + [[ + 9811, + 9804, + 7755 + ]], + [[ + 9812, + 9813, + 9814 + ]], + [[ + 9815, + 7771, + 9816 + ]], + [[ + 9816, + 7771, + 353 + ]], + [[ + 9817, + 9809, + 9818 + ]], + [[ + 9819, + 2579, + 2578 + ]], + [[ + 9819, + 7755, + 2579 + ]], + [[ + 9819, + 7770, + 7755 + ]], + [[ + 7596, + 7769, + 2578 + ]], + [[ + 7594, + 7596, + 2578 + ]], + [[ + 7592, + 7594, + 2744 + ]], + [[ + 2330, + 2672, + 2621 + ]], + [[ + 9820, + 2409, + 2397 + ]], + [[ + 9820, + 9821, + 2409 + ]], + [[ + 2672, + 9822, + 2340 + ]], + [[ + 2340, + 2740, + 2332 + ]], + [[ + 9822, + 2329, + 2740 + ]], + [[ + 2328, + 2330, + 2621 + ]], + [[ + 2329, + 9822, + 2330 + ]], + [[ + 9823, + 2756, + 2328 + ]], + [[ + 2621, + 9823, + 2328 + ]], + [[ + 2744, + 7594, + 2756 + ]], + [[ + 2756, + 7594, + 2578 + ]], + [[ + 9806, + 9805, + 9811 + ]], + [[ + 9806, + 9817, + 9804 + ]], + [[ + 9814, + 9813, + 353 + ]], + [[ + 338, + 7712, + 9812 + ]], + [[ + 2340, + 9822, + 2740 + ]], + [[ + 2672, + 2330, + 9822 + ]], + [[ + 9815, + 9817, + 7771 + ]], + [[ + 9809, + 7754, + 9818 + ]], + [[ + 9813, + 9816, + 353 + ]], + [[ + 9813, + 9812, + 9816 + ]], + [[ + 9809, + 9815, + 9816 + ]], + [[ + 9809, + 9817, + 9815 + ]], + [[ + 9818, + 9804, + 9817 + ]], + [[ + 9811, + 7770, + 7771 + ]], + [[ + 7771, + 9806, + 9811 + ]], + [[ + 7771, + 9817, + 9806 + ]], + [[ + 7755, + 9818, + 7754 + ]], + [[ + 7755, + 9804, + 9818 + ]], + [[ + 2340, + 9820, + 2397 + ]], + [[ + 9821, + 2332, + 2409 + ]], + [[ + 2340, + 9821, + 9820 + ]], + [[ + 2340, + 2332, + 9821 + ]], + [[ + 7769, + 9819, + 2578 + ]], + [[ + 7769, + 7770, + 9819 + ]], + [[ + 2744, + 9823, + 2621 + ]], + [[ + 2744, + 2756, + 9823 + ]], + [[ + 9809, + 9812, + 7712 + ]], + [[ + 9809, + 9816, + 9812 + ]], + [[ + 338, + 9814, + 353 + ]], + [[ + 338, + 9812, + 9814 + ]], + [[ + 7755, + 9824, + 9811 + ]], + [[ + 7755, + 7770, + 9824 + ]], + [[ + 7770, + 9811, + 9824 + ]], + [[ + 9805, + 9804, + 9811 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4916e86b-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2015-01-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.71178dd3a331470b86cb2586a764831b", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2821, + 8729, + 9825 + ]], + [[ + 9825, + 8735, + 8750 + ]], + [[ + 2824, + 9825, + 8750 + ]], + [[ + 2821, + 9825, + 2824 + ]], + [[ + 8729, + 8735, + 9825 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b491736be-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cfe49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 586, + 703, + 579 + ]], + [[ + 586, + 579, + 585 + ]], + [[ + 585, + 579, + 584 + ]], + [[ + 583, + 584, + 579 + ]], + [[ + 583, + 579, + 582 + ]], + [[ + 582, + 579, + 581 + ]], + [[ + 706, + 707, + 579 + ]], + [[ + 579, + 707, + 708 + ]], + [[ + 704, + 705, + 579 + ]], + [[ + 579, + 705, + 706 + ]], + [[ + 703, + 704, + 579 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4918966b-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5ca949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9826, + 9827, + 9828 + ]], + [[ + 9829, + 6796, + 6797 + ]], + [[ + 9830, + 6796, + 9831 + ]], + [[ + 9830, + 9827, + 9832 + ]], + [[ + 9833, + 7042, + 6861 + ]], + [[ + 9834, + 6830, + 6832 + ]], + [[ + 6862, + 9835, + 9836 + ]], + [[ + 9837, + 9838, + 9839 + ]], + [[ + 9836, + 7042, + 9840 + ]], + [[ + 9835, + 9841, + 9842 + ]], + [[ + 9828, + 9830, + 9831 + ]], + [[ + 9843, + 9838, + 9834 + ]], + [[ + 9843, + 9844, + 9839 + ]], + [[ + 9845, + 9846, + 9847 + ]], + [[ + 9847, + 6796, + 9829 + ]], + [[ + 6863, + 9848, + 9841 + ]], + [[ + 6863, + 6830, + 9837 + ]], + [[ + 6796, + 9830, + 6794 + ]], + [[ + 6796, + 9847, + 9831 + ]], + [[ + 9826, + 6833, + 9827 + ]], + [[ + 9832, + 6794, + 9830 + ]], + [[ + 6833, + 9843, + 6832 + ]], + [[ + 9849, + 6830, + 9834 + ]], + [[ + 6797, + 9845, + 9829 + ]], + [[ + 9846, + 9831, + 9847 + ]], + [[ + 9850, + 9840, + 7042 + ]], + [[ + 6862, + 9836, + 9840 + ]], + [[ + 6833, + 9832, + 9827 + ]], + [[ + 6833, + 6794, + 9832 + ]], + [[ + 9850, + 9833, + 6861 + ]], + [[ + 9850, + 7042, + 9833 + ]], + [[ + 6832, + 9843, + 9834 + ]], + [[ + 9839, + 9851, + 9835 + ]], + [[ + 9841, + 9835, + 6862 + ]], + [[ + 9851, + 9852, + 9836 + ]], + [[ + 6862, + 9850, + 6861 + ]], + [[ + 6862, + 9840, + 9850 + ]], + [[ + 9829, + 9845, + 9847 + ]], + [[ + 9852, + 7042, + 9836 + ]], + [[ + 9838, + 9853, + 9849 + ]], + [[ + 9838, + 9837, + 9853 + ]], + [[ + 6863, + 9841, + 6862 + ]], + [[ + 9842, + 9837, + 9839 + ]], + [[ + 6799, + 9845, + 6797 + ]], + [[ + 6799, + 9854, + 9845 + ]], + [[ + 9836, + 9835, + 9851 + ]], + [[ + 9841, + 9848, + 9842 + ]], + [[ + 9854, + 9831, + 9846 + ]], + [[ + 9828, + 7042, + 9852 + ]], + [[ + 6833, + 9844, + 9843 + ]], + [[ + 9828, + 9827, + 9830 + ]], + [[ + 9845, + 9854, + 9846 + ]], + [[ + 6799, + 9831, + 9854 + ]], + [[ + 9839, + 9826, + 9851 + ]], + [[ + 9826, + 9828, + 9852 + ]], + [[ + 9851, + 9826, + 9852 + ]], + [[ + 9844, + 6833, + 9826 + ]], + [[ + 9843, + 9839, + 9838 + ]], + [[ + 9844, + 9826, + 9839 + ]], + [[ + 9835, + 9842, + 9839 + ]], + [[ + 9848, + 6863, + 9842 + ]], + [[ + 6863, + 9837, + 9842 + ]], + [[ + 6830, + 9853, + 9837 + ]], + [[ + 6799, + 9828, + 9831 + ]], + [[ + 6799, + 7042, + 9828 + ]], + [[ + 9838, + 9849, + 9834 + ]], + [[ + 9853, + 6830, + 9849 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4918e3d0-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5c1f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9855, + 279, + 266 + ]], + [[ + 9856, + 266, + 267 + ]], + [[ + 269, + 9857, + 267 + ]], + [[ + 269, + 279, + 9858 + ]], + [[ + 9859, + 9858, + 9860 + ]], + [[ + 9858, + 279, + 9860 + ]], + [[ + 9857, + 9858, + 267 + ]], + [[ + 9860, + 266, + 9856 + ]], + [[ + 9856, + 9859, + 9860 + ]], + [[ + 9857, + 269, + 9858 + ]], + [[ + 9860, + 9855, + 266 + ]], + [[ + 9860, + 279, + 9855 + ]], + [[ + 267, + 9859, + 9856 + ]], + [[ + 267, + 9858, + 9859 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4919a79b-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cfc49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 139, + 9861, + 138 + ]], + [[ + 135, + 136, + 134 + ]], + [[ + 136, + 131, + 134 + ]], + [[ + 131, + 132, + 133 + ]], + [[ + 134, + 131, + 133 + ]], + [[ + 136, + 137, + 131 + ]], + [[ + 138, + 129, + 130 + ]], + [[ + 128, + 129, + 9862 + ]], + [[ + 9862, + 129, + 9861 + ]], + [[ + 9861, + 129, + 138 + ]], + [[ + 130, + 137, + 138 + ]], + [[ + 130, + 131, + 137 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b491d7828-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef814849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9863, + 8611, + 8610 + ]], + [[ + 9863, + 8610, + 8613 + ]], + [[ + 8606, + 9863, + 8613 + ]], + [[ + 8606, + 8611, + 9863 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4920103c-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef749a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9864, + 9865, + 9866 + ]], + [[ + 9867, + 9864, + 9866 + ]], + [[ + 9868, + 9866, + 9869 + ]], + [[ + 9865, + 9870, + 9871 + ]], + [[ + 9872, + 9873, + 9874 + ]], + [[ + 9872, + 9866, + 9868 + ]], + [[ + 9873, + 9872, + 9868 + ]], + [[ + 9875, + 9876, + 9867 + ]], + [[ + 9877, + 9878, + 9875 + ]], + [[ + 9875, + 9879, + 9876 + ]], + [[ + 9875, + 9878, + 9879 + ]], + [[ + 9871, + 9872, + 9874 + ]], + [[ + 9876, + 9880, + 9867 + ]], + [[ + 9870, + 9865, + 9881 + ]], + [[ + 9882, + 9878, + 9877 + ]], + [[ + 9875, + 9883, + 9877 + ]], + [[ + 9871, + 9874, + 9869 + ]], + [[ + 9866, + 9865, + 9869 + ]], + [[ + 9880, + 9864, + 9867 + ]], + [[ + 9880, + 9882, + 9864 + ]], + [[ + 9864, + 9882, + 9877 + ]], + [[ + 9880, + 9878, + 9882 + ]], + [[ + 9877, + 9883, + 9881 + ]], + [[ + 9875, + 9872, + 9883 + ]], + [[ + 9883, + 9870, + 9881 + ]], + [[ + 9883, + 9871, + 9870 + ]], + [[ + 9865, + 9871, + 9869 + ]], + [[ + 9883, + 9872, + 9871 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b492196f9-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef505449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 559, + 476, + 558 + ]], + [[ + 559, + 474, + 476 + ]], + [[ + 559, + 475, + 474 + ]], + [[ + 9884, + 9885, + 9886 + ]], + [[ + 9887, + 9888, + 9889 + ]], + [[ + 9890, + 479, + 480 + ]], + [[ + 9891, + 475, + 559 + ]], + [[ + 450, + 479, + 9892 + ]], + [[ + 9893, + 479, + 9890 + ]], + [[ + 9894, + 8492, + 8493 + ]], + [[ + 8427, + 8428, + 8746 + ]], + [[ + 9895, + 8490, + 8436 + ]], + [[ + 9895, + 8436, + 8437 + ]], + [[ + 9896, + 9897, + 9889 + ]], + [[ + 9898, + 9899, + 9900 + ]], + [[ + 8435, + 8434, + 9901 + ]], + [[ + 8435, + 9901, + 8445 + ]], + [[ + 9902, + 9886, + 9903 + ]], + [[ + 9904, + 9905, + 8746 + ]], + [[ + 9906, + 9907, + 9908 + ]], + [[ + 8426, + 8442, + 8424 + ]], + [[ + 9909, + 8426, + 8427 + ]], + [[ + 9910, + 8443, + 8442 + ]], + [[ + 9911, + 9912, + 8442 + ]], + [[ + 9911, + 9913, + 9912 + ]], + [[ + 9902, + 9914, + 9915 + ]], + [[ + 8428, + 560, + 8746 + ]], + [[ + 9912, + 9913, + 8429 + ]], + [[ + 9903, + 560, + 8429 + ]], + [[ + 8429, + 560, + 8428 + ]], + [[ + 8492, + 9916, + 8490 + ]], + [[ + 8492, + 9893, + 9917 + ]], + [[ + 8436, + 9918, + 9919 + ]], + [[ + 8436, + 8490, + 9900 + ]], + [[ + 466, + 9892, + 9920 + ]], + [[ + 466, + 450, + 9892 + ]], + [[ + 9921, + 9897, + 9896 + ]], + [[ + 9889, + 9888, + 559 + ]], + [[ + 9922, + 9899, + 9898 + ]], + [[ + 9903, + 559, + 560 + ]], + [[ + 9919, + 8434, + 8436 + ]], + [[ + 9923, + 8490, + 9924 + ]], + [[ + 9922, + 9898, + 9885 + ]], + [[ + 9889, + 559, + 9925 + ]], + [[ + 8747, + 9904, + 8746 + ]], + [[ + 9904, + 9926, + 9905 + ]], + [[ + 475, + 9891, + 480 + ]], + [[ + 8492, + 9894, + 9893 + ]], + [[ + 9893, + 9927, + 479 + ]], + [[ + 9928, + 479, + 9927 + ]], + [[ + 9916, + 9921, + 8490 + ]], + [[ + 9929, + 9897, + 9921 + ]], + [[ + 9930, + 9931, + 9884 + ]], + [[ + 9896, + 9924, + 9921 + ]], + [[ + 9914, + 9901, + 9915 + ]], + [[ + 9932, + 9898, + 9925 + ]], + [[ + 9903, + 9925, + 559 + ]], + [[ + 9932, + 9885, + 9898 + ]], + [[ + 9886, + 9933, + 9903 + ]], + [[ + 9886, + 9885, + 9934 + ]], + [[ + 8746, + 9905, + 9909 + ]], + [[ + 9935, + 8747, + 9936 + ]], + [[ + 9905, + 9926, + 8426 + ]], + [[ + 8747, + 8443, + 9936 + ]], + [[ + 9906, + 9926, + 9937 + ]], + [[ + 9904, + 8747, + 9935 + ]], + [[ + 9919, + 9915, + 8434 + ]], + [[ + 8444, + 8445, + 9901 + ]], + [[ + 9913, + 9903, + 8429 + ]], + [[ + 9933, + 9925, + 9903 + ]], + [[ + 9938, + 9889, + 9925 + ]], + [[ + 9897, + 9929, + 9889 + ]], + [[ + 9893, + 9891, + 9917 + ]], + [[ + 9890, + 480, + 9891 + ]], + [[ + 9884, + 9931, + 9885 + ]], + [[ + 9899, + 8436, + 9900 + ]], + [[ + 8425, + 9912, + 8429 + ]], + [[ + 8444, + 9901, + 9914 + ]], + [[ + 9920, + 9928, + 9927 + ]], + [[ + 9892, + 479, + 9928 + ]], + [[ + 9939, + 9893, + 9894 + ]], + [[ + 9920, + 9927, + 9893 + ]], + [[ + 9900, + 8490, + 9923 + ]], + [[ + 8490, + 9921, + 9924 + ]], + [[ + 8746, + 9909, + 8427 + ]], + [[ + 9905, + 8426, + 9909 + ]], + [[ + 9915, + 9919, + 9918 + ]], + [[ + 9918, + 9899, + 9931 + ]], + [[ + 8424, + 9912, + 8425 + ]], + [[ + 8424, + 8442, + 9912 + ]], + [[ + 9940, + 9915, + 9918 + ]], + [[ + 9915, + 9901, + 8434 + ]], + [[ + 9902, + 9903, + 9914 + ]], + [[ + 9940, + 9941, + 9902 + ]], + [[ + 9898, + 9923, + 9938 + ]], + [[ + 9898, + 9900, + 9923 + ]], + [[ + 9923, + 9896, + 9938 + ]], + [[ + 9923, + 9924, + 9896 + ]], + [[ + 9898, + 9938, + 9925 + ]], + [[ + 9896, + 9889, + 9938 + ]], + [[ + 9891, + 9893, + 9890 + ]], + [[ + 9939, + 8493, + 9920 + ]], + [[ + 9926, + 9906, + 8426 + ]], + [[ + 9942, + 8443, + 9907 + ]], + [[ + 8444, + 9911, + 8442 + ]], + [[ + 8444, + 9913, + 9911 + ]], + [[ + 9937, + 9935, + 9936 + ]], + [[ + 9926, + 9904, + 9935 + ]], + [[ + 466, + 9920, + 8493 + ]], + [[ + 9892, + 9928, + 9920 + ]], + [[ + 8426, + 9910, + 8442 + ]], + [[ + 9908, + 8443, + 9910 + ]], + [[ + 9933, + 9934, + 9925 + ]], + [[ + 9933, + 9886, + 9934 + ]], + [[ + 9934, + 9932, + 9925 + ]], + [[ + 9934, + 9885, + 9932 + ]], + [[ + 9906, + 9937, + 9936 + ]], + [[ + 9926, + 9935, + 9937 + ]], + [[ + 9916, + 9929, + 9921 + ]], + [[ + 9916, + 9917, + 9887 + ]], + [[ + 9913, + 9914, + 9903 + ]], + [[ + 9913, + 8444, + 9914 + ]], + [[ + 9941, + 9940, + 9918 + ]], + [[ + 9930, + 9884, + 9886 + ]], + [[ + 9931, + 9899, + 9922 + ]], + [[ + 9918, + 8436, + 9899 + ]], + [[ + 9885, + 9931, + 9922 + ]], + [[ + 9941, + 9918, + 9931 + ]], + [[ + 9941, + 9930, + 9902 + ]], + [[ + 9941, + 9931, + 9930 + ]], + [[ + 9940, + 9902, + 9915 + ]], + [[ + 9930, + 9886, + 9902 + ]], + [[ + 9888, + 9917, + 9891 + ]], + [[ + 9916, + 8492, + 9917 + ]], + [[ + 9929, + 9887, + 9889 + ]], + [[ + 9929, + 9916, + 9887 + ]], + [[ + 8491, + 9895, + 8437 + ]], + [[ + 8491, + 8490, + 9895 + ]], + [[ + 8426, + 9906, + 9908 + ]], + [[ + 9942, + 9936, + 8443 + ]], + [[ + 9906, + 9942, + 9907 + ]], + [[ + 9906, + 9936, + 9942 + ]], + [[ + 8426, + 9908, + 9910 + ]], + [[ + 9907, + 8443, + 9908 + ]], + [[ + 559, + 9888, + 9891 + ]], + [[ + 9887, + 9917, + 9888 + ]], + [[ + 9893, + 9939, + 9920 + ]], + [[ + 9894, + 8493, + 9939 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b49220b8c-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5caa49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9943, + 6905, + 6900 + ]], + [[ + 9944, + 9945, + 6902 + ]], + [[ + 6903, + 9944, + 6902 + ]], + [[ + 6903, + 6905, + 9946 + ]], + [[ + 6902, + 9943, + 6900 + ]], + [[ + 9945, + 9946, + 9943 + ]], + [[ + 6902, + 9945, + 9943 + ]], + [[ + 9946, + 6905, + 9943 + ]], + [[ + 9947, + 9946, + 9945 + ]], + [[ + 9947, + 6903, + 9946 + ]], + [[ + 9944, + 9947, + 9945 + ]], + [[ + 9944, + 6903, + 9947 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4922cf69-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cf649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9948, + 9949, + 9950 + ]], + [[ + 9951, + 9952, + 168 + ]], + [[ + 9953, + 168, + 9954 + ]], + [[ + 9955, + 170, + 9956 + ]], + [[ + 9952, + 9957, + 9958 + ]], + [[ + 9952, + 9959, + 7916 + ]], + [[ + 9960, + 167, + 9961 + ]], + [[ + 9961, + 167, + 9958 + ]], + [[ + 9958, + 167, + 9952 + ]], + [[ + 9957, + 921, + 9962 + ]], + [[ + 7915, + 7916, + 9963 + ]], + [[ + 1821, + 1823, + 7916 + ]], + [[ + 171, + 9949, + 170 + ]], + [[ + 171, + 9950, + 9949 + ]], + [[ + 9954, + 9955, + 9956 + ]], + [[ + 169, + 170, + 9955 + ]], + [[ + 168, + 9952, + 167 + ]], + [[ + 9964, + 9965, + 9949 + ]], + [[ + 9966, + 9956, + 170 + ]], + [[ + 9966, + 9965, + 9956 + ]], + [[ + 9967, + 9960, + 976 + ]], + [[ + 166, + 167, + 9960 + ]], + [[ + 9963, + 9959, + 9948 + ]], + [[ + 168, + 9953, + 9965 + ]], + [[ + 169, + 9954, + 168 + ]], + [[ + 169, + 9955, + 9954 + ]], + [[ + 9962, + 9961, + 9958 + ]], + [[ + 976, + 9960, + 9961 + ]], + [[ + 7916, + 9957, + 9952 + ]], + [[ + 9957, + 9962, + 9958 + ]], + [[ + 9956, + 9953, + 9954 + ]], + [[ + 9956, + 9965, + 9953 + ]], + [[ + 166, + 9967, + 976 + ]], + [[ + 166, + 9960, + 9967 + ]], + [[ + 9949, + 9966, + 170 + ]], + [[ + 9949, + 9965, + 9966 + ]], + [[ + 1823, + 9957, + 7916 + ]], + [[ + 1823, + 921, + 9957 + ]], + [[ + 976, + 9962, + 921 + ]], + [[ + 976, + 9961, + 9962 + ]], + [[ + 9949, + 9959, + 9964 + ]], + [[ + 9963, + 7916, + 9959 + ]], + [[ + 9965, + 9964, + 168 + ]], + [[ + 9959, + 9952, + 9951 + ]], + [[ + 9964, + 9951, + 168 + ]], + [[ + 9964, + 9959, + 9951 + ]], + [[ + 9963, + 9948, + 9950 + ]], + [[ + 9959, + 9949, + 9948 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4924564a-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef663949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9968, + 9969, + 9970 + ]], + [[ + 9968, + 9970, + 9971 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b492762e2-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cf549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9972, + 8006, + 8007 + ]], + [[ + 8007, + 8008, + 8009 + ]], + [[ + 8010, + 8007, + 8009 + ]], + [[ + 9972, + 8007, + 8010 + ]], + [[ + 8011, + 9972, + 8010 + ]], + [[ + 8011, + 8006, + 9972 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b492910e5-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef501549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9973, + 235, + 9974 + ]], + [[ + 9975, + 259, + 232 + ]], + [[ + 9976, + 277, + 259 + ]], + [[ + 9977, + 9978, + 259 + ]], + [[ + 9979, + 277, + 9976 + ]], + [[ + 9975, + 9980, + 259 + ]], + [[ + 259, + 9981, + 9976 + ]], + [[ + 9978, + 9981, + 259 + ]], + [[ + 9982, + 9983, + 9976 + ]], + [[ + 9976, + 9981, + 9982 + ]], + [[ + 9984, + 277, + 9979 + ]], + [[ + 9983, + 9985, + 9979 + ]], + [[ + 9984, + 9974, + 9986 + ]], + [[ + 9987, + 9988, + 232 + ]], + [[ + 9989, + 9978, + 9980 + ]], + [[ + 9980, + 9978, + 9977 + ]], + [[ + 9981, + 9990, + 9982 + ]], + [[ + 9984, + 9986, + 277 + ]], + [[ + 235, + 277, + 9986 + ]], + [[ + 9983, + 9984, + 9985 + ]], + [[ + 9974, + 235, + 9986 + ]], + [[ + 9983, + 9973, + 9984 + ]], + [[ + 9983, + 9982, + 9990 + ]], + [[ + 9983, + 9979, + 9976 + ]], + [[ + 9985, + 9984, + 9979 + ]], + [[ + 9991, + 9990, + 9978 + ]], + [[ + 9990, + 9973, + 9983 + ]], + [[ + 9984, + 9973, + 9974 + ]], + [[ + 230, + 235, + 9973 + ]], + [[ + 9987, + 9991, + 9988 + ]], + [[ + 230, + 9973, + 9991 + ]], + [[ + 9978, + 9990, + 9981 + ]], + [[ + 9991, + 9973, + 9990 + ]], + [[ + 9988, + 9975, + 232 + ]], + [[ + 9989, + 9991, + 9978 + ]], + [[ + 259, + 9980, + 9977 + ]], + [[ + 9975, + 9988, + 9989 + ]], + [[ + 9975, + 9989, + 9980 + ]], + [[ + 9988, + 9991, + 9989 + ]], + [[ + 230, + 9987, + 232 + ]], + [[ + 230, + 9991, + 9987 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4929fae4-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef8a1049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9074, + 9068, + 9067 + ]], + [[ + 9068, + 9065, + 9067 + ]], + [[ + 9068, + 9072, + 9065 + ]], + [[ + 9068, + 9073, + 9072 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b492abedc-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "onverhard", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef928049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 9992, + 9993, + 9994 + ]], + [[ + 9995, + 9996, + 9997 + ]], + [[ + 9995, + 9998, + 9999 + ]], + [[ + 1376, + 10000, + 1374 + ]], + [[ + 10001, + 10002, + 10003 + ]], + [[ + 1376, + 10001, + 10000 + ]], + [[ + 10001, + 10003, + 10004 + ]], + [[ + 10005, + 10006, + 10001 + ]], + [[ + 10005, + 8172, + 8173 + ]], + [[ + 10004, + 10005, + 10001 + ]], + [[ + 1010, + 1008, + 994 + ]], + [[ + 10007, + 10008, + 10009 + ]], + [[ + 994, + 10010, + 902 + ]], + [[ + 994, + 1008, + 10010 + ]], + [[ + 10011, + 7247, + 10012 + ]], + [[ + 10013, + 7246, + 10014 + ]], + [[ + 10015, + 10016, + 10017 + ]], + [[ + 10018, + 7243, + 7245 + ]], + [[ + 10019, + 7244, + 7243 + ]], + [[ + 10020, + 10021, + 10022 + ]], + [[ + 10023, + 10024, + 10017 + ]], + [[ + 10025, + 10026, + 10027 + ]], + [[ + 10016, + 10028, + 10027 + ]], + [[ + 10029, + 10030, + 10031 + ]], + [[ + 10032, + 10007, + 10033 + ]], + [[ + 10034, + 10035, + 10036 + ]], + [[ + 10037, + 646, + 10038 + ]], + [[ + 645, + 646, + 10039 + ]], + [[ + 10040, + 645, + 10039 + ]], + [[ + 10041, + 9994, + 9993 + ]], + [[ + 644, + 10041, + 10042 + ]], + [[ + 10043, + 10033, + 10044 + ]], + [[ + 10045, + 9993, + 9992 + ]], + [[ + 10045, + 9992, + 10046 + ]], + [[ + 9992, + 10040, + 10047 + ]], + [[ + 10047, + 10040, + 10039 + ]], + [[ + 10043, + 10044, + 10048 + ]], + [[ + 10049, + 10050, + 10025 + ]], + [[ + 10051, + 10049, + 10025 + ]], + [[ + 10052, + 10051, + 10025 + ]], + [[ + 10053, + 10052, + 10025 + ]], + [[ + 10054, + 10053, + 10025 + ]], + [[ + 10055, + 10054, + 10025 + ]], + [[ + 10056, + 10055, + 10025 + ]], + [[ + 10057, + 10056, + 10025 + ]], + [[ + 10058, + 10057, + 10025 + ]], + [[ + 10025, + 10059, + 10060 + ]], + [[ + 10060, + 10058, + 10025 + ]], + [[ + 10025, + 10029, + 10059 + ]], + [[ + 10061, + 10059, + 10029 + ]], + [[ + 10031, + 10061, + 10029 + ]], + [[ + 10030, + 10029, + 10062 + ]], + [[ + 10062, + 10029, + 10063 + ]], + [[ + 10063, + 10029, + 10064 + ]], + [[ + 10064, + 10029, + 10065 + ]], + [[ + 10029, + 10066, + 10067 + ]], + [[ + 10029, + 10068, + 10066 + ]], + [[ + 10029, + 10069, + 10068 + ]], + [[ + 10029, + 10070, + 10069 + ]], + [[ + 10029, + 10071, + 10070 + ]], + [[ + 10029, + 10072, + 10071 + ]], + [[ + 10029, + 10073, + 10072 + ]], + [[ + 10029, + 10074, + 10073 + ]], + [[ + 10029, + 10075, + 10074 + ]], + [[ + 10029, + 10076, + 10075 + ]], + [[ + 10029, + 10077, + 10076 + ]], + [[ + 10029, + 10078, + 10077 + ]], + [[ + 10029, + 10079, + 10078 + ]], + [[ + 10029, + 10080, + 10081 + ]], + [[ + 10079, + 10029, + 10082 + ]], + [[ + 10083, + 10084, + 10085 + ]], + [[ + 10086, + 10029, + 10087 + ]], + [[ + 10087, + 10088, + 10089 + ]], + [[ + 10089, + 10090, + 10091 + ]], + [[ + 10092, + 10093, + 10094 + ]], + [[ + 10095, + 10091, + 10096 + ]], + [[ + 10097, + 10098, + 10095 + ]], + [[ + 10099, + 10100, + 10098 + ]], + [[ + 10101, + 10102, + 10100 + ]], + [[ + 10103, + 10104, + 10105 + ]], + [[ + 10106, + 10103, + 10102 + ]], + [[ + 10105, + 10107, + 10108 + ]], + [[ + 10108, + 10109, + 10110 + ]], + [[ + 10110, + 10111, + 10112 + ]], + [[ + 10112, + 10113, + 10114 + ]], + [[ + 10114, + 10115, + 10116 + ]], + [[ + 10116, + 10117, + 10118 + ]], + [[ + 10118, + 10119, + 10120 + ]], + [[ + 10120, + 10083, + 10085 + ]], + [[ + 10121, + 10122, + 10123 + ]], + [[ + 10124, + 10125, + 10126 + ]], + [[ + 10127, + 10128, + 10129 + ]], + [[ + 10130, + 10131, + 10132 + ]], + [[ + 10132, + 10133, + 10134 + ]], + [[ + 10135, + 10136, + 10137 + ]], + [[ + 10138, + 10139, + 10140 + ]], + [[ + 10141, + 10142, + 10143 + ]], + [[ + 10144, + 10145, + 10146 + ]], + [[ + 10050, + 10147, + 10025 + ]], + [[ + 10148, + 10149, + 10150 + ]], + [[ + 10151, + 10152, + 10153 + ]], + [[ + 10153, + 10152, + 10154 + ]], + [[ + 10154, + 10152, + 10155 + ]], + [[ + 10156, + 10154, + 10155 + ]], + [[ + 10157, + 10156, + 10155 + ]], + [[ + 10158, + 10026, + 10159 + ]], + [[ + 10159, + 10026, + 10160 + ]], + [[ + 10160, + 10026, + 10161 + ]], + [[ + 10161, + 10026, + 10162 + ]], + [[ + 10162, + 10026, + 10163 + ]], + [[ + 10163, + 10026, + 10164 + ]], + [[ + 10164, + 10026, + 10165 + ]], + [[ + 10165, + 10026, + 10166 + ]], + [[ + 10166, + 10026, + 10167 + ]], + [[ + 10167, + 10026, + 10025 + ]], + [[ + 10168, + 10167, + 10025 + ]], + [[ + 10169, + 10168, + 10025 + ]], + [[ + 10170, + 10169, + 10025 + ]], + [[ + 10171, + 10170, + 10025 + ]], + [[ + 10172, + 10171, + 10025 + ]], + [[ + 10147, + 10172, + 10025 + ]], + [[ + 10173, + 10174, + 10175 + ]], + [[ + 10176, + 10177, + 10178 + ]], + [[ + 10179, + 10180, + 10181 + ]], + [[ + 10179, + 10182, + 10180 + ]], + [[ + 10179, + 10183, + 10182 + ]], + [[ + 10179, + 10184, + 10183 + ]], + [[ + 10179, + 10185, + 10184 + ]], + [[ + 10179, + 10186, + 10185 + ]], + [[ + 10179, + 10187, + 10186 + ]], + [[ + 10179, + 10188, + 10187 + ]], + [[ + 10179, + 10189, + 10188 + ]], + [[ + 10179, + 10190, + 10189 + ]], + [[ + 10179, + 10191, + 10190 + ]], + [[ + 10179, + 10192, + 10191 + ]], + [[ + 10179, + 10193, + 10192 + ]], + [[ + 10179, + 10194, + 10193 + ]], + [[ + 10179, + 10195, + 10194 + ]], + [[ + 10179, + 10196, + 10195 + ]], + [[ + 10179, + 10197, + 10196 + ]], + [[ + 10179, + 10198, + 10197 + ]], + [[ + 10179, + 10199, + 10198 + ]], + [[ + 10179, + 10200, + 10199 + ]], + [[ + 10179, + 10201, + 10200 + ]], + [[ + 10179, + 10202, + 10201 + ]], + [[ + 10148, + 10203, + 10132 + ]], + [[ + 10179, + 10204, + 10202 + ]], + [[ + 10179, + 10205, + 10206 + ]], + [[ + 10204, + 10179, + 10207 + ]], + [[ + 10207, + 10179, + 10206 + ]], + [[ + 10206, + 10205, + 10208 + ]], + [[ + 10208, + 10205, + 10209 + ]], + [[ + 10209, + 10205, + 10210 + ]], + [[ + 10210, + 10205, + 10211 + ]], + [[ + 10211, + 10205, + 10212 + ]], + [[ + 10212, + 10205, + 10213 + ]], + [[ + 10093, + 10205, + 10214 + ]], + [[ + 10093, + 10213, + 10205 + ]], + [[ + 10215, + 10216, + 1016 + ]], + [[ + 10093, + 10217, + 10218 + ]], + [[ + 10093, + 10219, + 10217 + ]], + [[ + 10220, + 10221, + 10144 + ]], + [[ + 10222, + 10223, + 10224 + ]], + [[ + 10144, + 10225, + 10226 + ]], + [[ + 10144, + 10226, + 10227 + ]], + [[ + 10228, + 10229, + 10230 + ]], + [[ + 10226, + 10231, + 10227 + ]], + [[ + 10232, + 10233, + 10234 + ]], + [[ + 10235, + 10230, + 10236 + ]], + [[ + 10233, + 10237, + 10234 + ]], + [[ + 10238, + 10239, + 10240 + ]], + [[ + 10238, + 10240, + 10241 + ]], + [[ + 10238, + 10241, + 10242 + ]], + [[ + 10243, + 10244, + 10245 + ]], + [[ + 10152, + 10246, + 10247 + ]], + [[ + 10139, + 10248, + 10249 + ]], + [[ + 10250, + 10135, + 10251 + ]], + [[ + 10252, + 10253, + 10254 + ]], + [[ + 10255, + 10227, + 10256 + ]], + [[ + 10256, + 10227, + 10257 + ]], + [[ + 10258, + 10259, + 10260 + ]], + [[ + 10261, + 10262, + 10259 + ]], + [[ + 10263, + 10264, + 10262 + ]], + [[ + 10265, + 10266, + 10264 + ]], + [[ + 10267, + 10268, + 10266 + ]], + [[ + 10269, + 10270, + 10268 + ]], + [[ + 10271, + 10085, + 10084 + ]], + [[ + 10119, + 10083, + 10120 + ]], + [[ + 10117, + 10119, + 10118 + ]], + [[ + 10115, + 10117, + 10116 + ]], + [[ + 10082, + 10029, + 10086 + ]], + [[ + 10114, + 10113, + 10115 + ]], + [[ + 10272, + 10179, + 10181 + ]], + [[ + 10112, + 10111, + 10113 + ]], + [[ + 10028, + 10179, + 10273 + ]], + [[ + 10270, + 10274, + 10275 + ]], + [[ + 10111, + 10110, + 10109 + ]], + [[ + 10276, + 10277, + 10275 + ]], + [[ + 10109, + 10108, + 10107 + ]], + [[ + 10173, + 10277, + 10278 + ]], + [[ + 10107, + 10105, + 10104 + ]], + [[ + 10175, + 10279, + 10280 + ]], + [[ + 10104, + 10103, + 10106 + ]], + [[ + 10138, + 10140, + 10280 + ]], + [[ + 10106, + 10102, + 10101 + ]], + [[ + 10249, + 10248, + 10281 + ]], + [[ + 10101, + 10100, + 10099 + ]], + [[ + 10250, + 10251, + 10281 + ]], + [[ + 10099, + 10098, + 10097 + ]], + [[ + 10137, + 10251, + 10135 + ]], + [[ + 10097, + 10095, + 10096 + ]], + [[ + 10137, + 10136, + 10282 + ]], + [[ + 10096, + 10091, + 10090 + ]], + [[ + 10252, + 10254, + 10282 + ]], + [[ + 10090, + 10089, + 10088 + ]], + [[ + 10283, + 10284, + 10179 + ]], + [[ + 10088, + 10087, + 10285 + ]], + [[ + 10286, + 10287, + 10288 + ]], + [[ + 10285, + 10087, + 10029 + ]], + [[ + 10176, + 10287, + 10289 + ]], + [[ + 10081, + 10285, + 10029 + ]], + [[ + 10178, + 10290, + 10291 + ]], + [[ + 10080, + 10029, + 10292 + ]], + [[ + 10293, + 10294, + 10291 + ]], + [[ + 10292, + 10028, + 10295 + ]], + [[ + 10296, + 10294, + 10297 + ]], + [[ + 10295, + 10028, + 10273 + ]], + [[ + 10298, + 10299, + 10300 + ]], + [[ + 10273, + 10179, + 10301 + ]], + [[ + 10302, + 10299, + 10303 + ]], + [[ + 10301, + 10179, + 10304 + ]], + [[ + 10302, + 10305, + 10181 + ]], + [[ + 10304, + 10179, + 10306 + ]], + [[ + 10296, + 10307, + 10300 + ]], + [[ + 10306, + 10179, + 10284 + ]], + [[ + 10308, + 10309, + 10288 + ]], + [[ + 10308, + 10254, + 10253 + ]], + [[ + 10179, + 10310, + 10283 + ]], + [[ + 10249, + 10140, + 10139 + ]], + [[ + 10310, + 10179, + 10311 + ]], + [[ + 10311, + 10179, + 10312 + ]], + [[ + 10312, + 10179, + 10313 + ]], + [[ + 10313, + 10179, + 10272 + ]], + [[ + 10272, + 10181, + 10305 + ]], + [[ + 10305, + 10302, + 10303 + ]], + [[ + 10303, + 10299, + 10298 + ]], + [[ + 10298, + 10300, + 10307 + ]], + [[ + 10307, + 10296, + 10297 + ]], + [[ + 10297, + 10294, + 10293 + ]], + [[ + 10293, + 10291, + 10290 + ]], + [[ + 10290, + 10178, + 10177 + ]], + [[ + 10177, + 10176, + 10289 + ]], + [[ + 10289, + 10287, + 10286 + ]], + [[ + 10286, + 10288, + 10309 + ]], + [[ + 10309, + 10308, + 10253 + ]], + [[ + 10136, + 10252, + 10282 + ]], + [[ + 10255, + 10314, + 10227 + ]], + [[ + 10314, + 10144, + 10227 + ]], + [[ + 10248, + 10250, + 10281 + ]], + [[ + 10315, + 10144, + 10314 + ]], + [[ + 10316, + 10317, + 10144 + ]], + [[ + 10279, + 10138, + 10280 + ]], + [[ + 10174, + 10279, + 10175 + ]], + [[ + 10278, + 10174, + 10173 + ]], + [[ + 10276, + 10278, + 10277 + ]], + [[ + 10274, + 10276, + 10275 + ]], + [[ + 10269, + 10274, + 10270 + ]], + [[ + 10267, + 10269, + 10268 + ]], + [[ + 10265, + 10267, + 10266 + ]], + [[ + 10263, + 10265, + 10264 + ]], + [[ + 10262, + 10261, + 10263 + ]], + [[ + 10259, + 10258, + 10261 + ]], + [[ + 10260, + 10257, + 10227 + ]], + [[ + 10258, + 10260, + 10227 + ]], + [[ + 10132, + 10318, + 10319 + ]], + [[ + 10320, + 10258, + 10227 + ]], + [[ + 10132, + 10203, + 10321 + ]], + [[ + 10322, + 10227, + 10323 + ]], + [[ + 10132, + 10324, + 10325 + ]], + [[ + 10323, + 10227, + 10326 + ]], + [[ + 10327, + 10324, + 10132 + ]], + [[ + 10155, + 10141, + 10328 + ]], + [[ + 10329, + 10152, + 10330 + ]], + [[ + 10132, + 10152, + 10329 + ]], + [[ + 10331, + 10132, + 10319 + ]], + [[ + 10332, + 10132, + 10131 + ]], + [[ + 10333, + 10334, + 10148 + ]], + [[ + 10335, + 10336, + 10148 + ]], + [[ + 10132, + 10331, + 10130 + ]], + [[ + 10148, + 10337, + 10149 + ]], + [[ + 10148, + 10338, + 10337 + ]], + [[ + 10148, + 10339, + 10338 + ]], + [[ + 10331, + 10129, + 10128 + ]], + [[ + 10148, + 10132, + 10339 + ]], + [[ + 10339, + 10132, + 10134 + ]], + [[ + 10129, + 10340, + 10127 + ]], + [[ + 10132, + 10332, + 10133 + ]], + [[ + 10126, + 10125, + 10340 + ]], + [[ + 10128, + 10130, + 10331 + ]], + [[ + 10341, + 10124, + 10126 + ]], + [[ + 10125, + 10127, + 10340 + ]], + [[ + 10123, + 10122, + 10341 + ]], + [[ + 10122, + 10124, + 10341 + ]], + [[ + 10271, + 10121, + 10123 + ]], + [[ + 10084, + 10121, + 10271 + ]], + [[ + 10010, + 1008, + 10205 + ]], + [[ + 10342, + 907, + 10343 + ]], + [[ + 10343, + 1010, + 10342 + ]], + [[ + 10344, + 1011, + 1010 + ]], + [[ + 8171, + 10345, + 10346 + ]], + [[ + 1008, + 1016, + 10205 + ]], + [[ + 10035, + 10034, + 10347 + ]], + [[ + 10348, + 10349, + 10350 + ]], + [[ + 10351, + 10004, + 10003 + ]], + [[ + 9995, + 9999, + 10352 + ]], + [[ + 10353, + 10354, + 10355 + ]], + [[ + 10356, + 10357, + 10358 + ]], + [[ + 10359, + 10360, + 10347 + ]], + [[ + 10361, + 10362, + 10363 + ]], + [[ + 10357, + 10364, + 10358 + ]], + [[ + 10365, + 10366, + 10357 + ]], + [[ + 10367, + 10368, + 10369 + ]], + [[ + 10370, + 10371, + 10372 + ]], + [[ + 9996, + 9995, + 10373 + ]], + [[ + 10374, + 10375, + 10376 + ]], + [[ + 10377, + 9997, + 9996 + ]], + [[ + 10361, + 10378, + 10362 + ]], + [[ + 10379, + 10380, + 10381 + ]], + [[ + 10382, + 10383, + 10384 + ]], + [[ + 10148, + 10334, + 10385 + ]], + [[ + 10382, + 10386, + 10383 + ]], + [[ + 10330, + 10152, + 10387 + ]], + [[ + 9996, + 10388, + 10389 + ]], + [[ + 10390, + 10391, + 10152 + ]], + [[ + 10392, + 10389, + 10393 + ]], + [[ + 10390, + 10152, + 10394 + ]], + [[ + 10393, + 10389, + 10395 + ]], + [[ + 10152, + 10151, + 10394 + ]], + [[ + 10389, + 10396, + 10397 + ]], + [[ + 10155, + 10158, + 10157 + ]], + [[ + 10398, + 10333, + 10148 + ]], + [[ + 10396, + 10389, + 10388 + ]], + [[ + 10398, + 10148, + 10399 + ]], + [[ + 10388, + 10026, + 10379 + ]], + [[ + 10148, + 10336, + 10399 + ]], + [[ + 10400, + 10401, + 10402 + ]], + [[ + 10150, + 10335, + 10148 + ]], + [[ + 10381, + 10388, + 10379 + ]], + [[ + 10403, + 10388, + 10381 + ]], + [[ + 10132, + 10329, + 10327 + ]], + [[ + 10404, + 10148, + 10385 + ]], + [[ + 10380, + 10379, + 10405 + ]], + [[ + 10406, + 10407, + 10144 + ]], + [[ + 10328, + 10143, + 10408 + ]], + [[ + 10404, + 10409, + 10148 + ]], + [[ + 10326, + 10148, + 10409 + ]], + [[ + 10315, + 10316, + 10144 + ]], + [[ + 10152, + 10247, + 10155 + ]], + [[ + 10407, + 10410, + 10144 + ]], + [[ + 10132, + 10321, + 10152 + ]], + [[ + 10410, + 10411, + 10144 + ]], + [[ + 10411, + 10145, + 10144 + ]], + [[ + 10326, + 10227, + 10148 + ]], + [[ + 10412, + 10413, + 10414 + ]], + [[ + 10415, + 10238, + 10416 + ]], + [[ + 10417, + 10415, + 10416 + ]], + [[ + 10418, + 10417, + 10416 + ]], + [[ + 10414, + 10418, + 10416 + ]], + [[ + 10414, + 10416, + 10243 + ]], + [[ + 10414, + 10413, + 10419 + ]], + [[ + 10148, + 10227, + 10232 + ]], + [[ + 10146, + 10420, + 10144 + ]], + [[ + 10420, + 10421, + 10230 + ]], + [[ + 10420, + 10230, + 10144 + ]], + [[ + 10422, + 10230, + 10421 + ]], + [[ + 10236, + 10230, + 10422 + ]], + [[ + 10423, + 10230, + 10235 + ]], + [[ + 10424, + 10228, + 10230 + ]], + [[ + 10229, + 10224, + 10223 + ]], + [[ + 10229, + 10223, + 10230 + ]], + [[ + 10219, + 10093, + 10222 + ]], + [[ + 10220, + 10144, + 10230 + ]], + [[ + 10425, + 10220, + 10230 + ]], + [[ + 10230, + 10423, + 10424 + ]], + [[ + 10230, + 10426, + 10427 + ]], + [[ + 10093, + 10092, + 10428 + ]], + [[ + 10230, + 10223, + 10426 + ]], + [[ + 10429, + 10430, + 10214 + ]], + [[ + 10431, + 10426, + 10223 + ]], + [[ + 10093, + 10218, + 10094 + ]], + [[ + 10432, + 10433, + 10093 + ]], + [[ + 10093, + 10223, + 10222 + ]], + [[ + 10429, + 10434, + 10435 + ]], + [[ + 10216, + 10436, + 10214 + ]], + [[ + 10214, + 10205, + 10216 + ]], + [[ + 10214, + 10437, + 10438 + ]], + [[ + 10214, + 10436, + 10437 + ]], + [[ + 10439, + 10440, + 10216 + ]], + [[ + 10441, + 10439, + 10216 + ]], + [[ + 10442, + 10443, + 10215 + ]], + [[ + 10215, + 10443, + 10444 + ]], + [[ + 10445, + 10446, + 10442 + ]], + [[ + 10447, + 10448, + 10449 + ]], + [[ + 10450, + 10451, + 10445 + ]], + [[ + 10452, + 10453, + 10451 + ]], + [[ + 10452, + 10454, + 10453 + ]], + [[ + 10455, + 10447, + 10449 + ]], + [[ + 10456, + 10454, + 10455 + ]], + [[ + 10447, + 10457, + 10448 + ]], + [[ + 10457, + 10458, + 10459 + ]], + [[ + 10460, + 10461, + 10462 + ]], + [[ + 10461, + 10463, + 10462 + ]], + [[ + 10461, + 10464, + 10463 + ]], + [[ + 10035, + 10346, + 10345 + ]], + [[ + 10465, + 10466, + 10464 + ]], + [[ + 10464, + 1011, + 10465 + ]], + [[ + 9867, + 10467, + 10365 + ]], + [[ + 10465, + 10468, + 10469 + ]], + [[ + 10470, + 10471, + 10472 + ]], + [[ + 10470, + 10360, + 10473 + ]], + [[ + 10473, + 10474, + 10475 + ]], + [[ + 10476, + 10477, + 10474 + ]], + [[ + 10477, + 10359, + 10478 + ]], + [[ + 10479, + 10480, + 10481 + ]], + [[ + 10479, + 10366, + 10480 + ]], + [[ + 10482, + 10483, + 10484 + ]], + [[ + 10485, + 10467, + 10486 + ]], + [[ + 10485, + 10486, + 10487 + ]], + [[ + 10467, + 10488, + 10489 + ]], + [[ + 10488, + 10490, + 10491 + ]], + [[ + 10374, + 9866, + 9997 + ]], + [[ + 10491, + 10492, + 10493 + ]], + [[ + 10494, + 9866, + 10495 + ]], + [[ + 10492, + 10490, + 10496 + ]], + [[ + 10496, + 9867, + 10494 + ]], + [[ + 10497, + 10496, + 10494 + ]], + [[ + 10498, + 10494, + 10499 + ]], + [[ + 10499, + 10494, + 10495 + ]], + [[ + 10495, + 9866, + 10500 + ]], + [[ + 10501, + 10495, + 10500 + ]], + [[ + 10500, + 9866, + 10502 + ]], + [[ + 10502, + 9866, + 10503 + ]], + [[ + 10504, + 10502, + 10503 + ]], + [[ + 10503, + 9866, + 10374 + ]], + [[ + 10377, + 10505, + 10374 + ]], + [[ + 10377, + 10506, + 10505 + ]], + [[ + 10507, + 10508, + 10377 + ]], + [[ + 10509, + 10510, + 10508 + ]], + [[ + 10511, + 10418, + 10414 + ]], + [[ + 10512, + 10244, + 10243 + ]], + [[ + 10471, + 10470, + 10475 + ]], + [[ + 10347, + 10364, + 10357 + ]], + [[ + 10406, + 10144, + 10317 + ]], + [[ + 10221, + 10225, + 10144 + ]], + [[ + 1016, + 10216, + 10205 + ]], + [[ + 10440, + 10436, + 10216 + ]], + [[ + 10320, + 10227, + 10322 + ]], + [[ + 10231, + 10237, + 10233 + ]], + [[ + 10513, + 10214, + 10438 + ]], + [[ + 10513, + 10429, + 10214 + ]], + [[ + 10507, + 10377, + 9996 + ]], + [[ + 10508, + 10506, + 10377 + ]], + [[ + 10478, + 10359, + 10481 + ]], + [[ + 10347, + 10357, + 10359 + ]], + [[ + 10514, + 10230, + 10427 + ]], + [[ + 10514, + 10425, + 10230 + ]], + [[ + 10470, + 10465, + 1011 + ]], + [[ + 10469, + 10466, + 10465 + ]], + [[ + 10387, + 10152, + 10391 + ]], + [[ + 10321, + 10246, + 10152 + ]], + [[ + 10377, + 10374, + 9997 + ]], + [[ + 10505, + 10375, + 10374 + ]], + [[ + 10468, + 10470, + 10472 + ]], + [[ + 1011, + 10344, + 10346 + ]], + [[ + 10515, + 10223, + 10093 + ]], + [[ + 10433, + 10431, + 10223 + ]], + [[ + 10376, + 10503, + 10374 + ]], + [[ + 10516, + 10504, + 10503 + ]], + [[ + 10517, + 10328, + 10408 + ]], + [[ + 10026, + 10155, + 10328 + ]], + [[ + 10450, + 10452, + 10451 + ]], + [[ + 1016, + 10454, + 10452 + ]], + [[ + 10412, + 10243, + 10245 + ]], + [[ + 10416, + 10512, + 10243 + ]], + [[ + 10483, + 10365, + 10487 + ]], + [[ + 10489, + 10518, + 10486 + ]], + [[ + 10460, + 10519, + 10461 + ]], + [[ + 1011, + 10464, + 10461 + ]], + [[ + 10366, + 10365, + 10482 + ]], + [[ + 10357, + 9867, + 10365 + ]], + [[ + 10450, + 10442, + 1016 + ]], + [[ + 10446, + 10443, + 10442 + ]], + [[ + 10518, + 10488, + 10493 + ]], + [[ + 9867, + 10496, + 10490 + ]], + [[ + 10442, + 10450, + 10445 + ]], + [[ + 1016, + 10452, + 10450 + ]], + [[ + 1011, + 10447, + 1016 + ]], + [[ + 1011, + 10519, + 10447 + ]], + [[ + 10328, + 10379, + 10026 + ]], + [[ + 10328, + 10517, + 10405 + ]], + [[ + 10520, + 10392, + 10393 + ]], + [[ + 9996, + 10389, + 10392 + ]], + [[ + 10158, + 10155, + 10026 + ]], + [[ + 10521, + 10142, + 10522 + ]], + [[ + 10442, + 10215, + 1016 + ]], + [[ + 10444, + 10439, + 10441 + ]], + [[ + 10523, + 10496, + 10497 + ]], + [[ + 10523, + 10492, + 10496 + ]], + [[ + 10524, + 10495, + 10525 + ]], + [[ + 10524, + 10499, + 10495 + ]], + [[ + 10526, + 10502, + 10504 + ]], + [[ + 10527, + 10528, + 10500 + ]], + [[ + 10361, + 10363, + 10507 + ]], + [[ + 10362, + 10510, + 10363 + ]], + [[ + 10529, + 10464, + 10466 + ]], + [[ + 10529, + 10463, + 10464 + ]], + [[ + 10361, + 10507, + 9996 + ]], + [[ + 10509, + 10508, + 10507 + ]], + [[ + 10395, + 10389, + 10397 + ]], + [[ + 9996, + 10026, + 10388 + ]], + [[ + 10457, + 10519, + 10458 + ]], + [[ + 1011, + 10461, + 10519 + ]], + [[ + 10497, + 10494, + 10498 + ]], + [[ + 9867, + 9866, + 10494 + ]], + [[ + 10402, + 10388, + 10403 + ]], + [[ + 10530, + 10396, + 10388 + ]], + [[ + 10392, + 10361, + 9996 + ]], + [[ + 10384, + 10378, + 10361 + ]], + [[ + 9867, + 10488, + 10467 + ]], + [[ + 9867, + 10490, + 10488 + ]], + [[ + 10148, + 10232, + 10415 + ]], + [[ + 10234, + 10239, + 10232 + ]], + [[ + 10527, + 10500, + 10502 + ]], + [[ + 10501, + 10525, + 10495 + ]], + [[ + 10453, + 10454, + 10456 + ]], + [[ + 1016, + 10447, + 10454 + ]], + [[ + 10232, + 10238, + 10415 + ]], + [[ + 10232, + 10239, + 10238 + ]], + [[ + 10242, + 10512, + 10416 + ]], + [[ + 10241, + 10244, + 10512 + ]], + [[ + 10359, + 10479, + 10481 + ]], + [[ + 10359, + 10366, + 10479 + ]], + [[ + 10470, + 10473, + 10475 + ]], + [[ + 10360, + 10476, + 10473 + ]], + [[ + 10473, + 10476, + 10474 + ]], + [[ + 10477, + 10478, + 10474 + ]], + [[ + 10531, + 10532, + 10019 + ]], + [[ + 10023, + 10017, + 7244 + ]], + [[ + 10533, + 10534, + 10351 + ]], + [[ + 10002, + 10349, + 10003 + ]], + [[ + 10141, + 10522, + 10142 + ]], + [[ + 10521, + 10247, + 10142 + ]], + [[ + 10412, + 10414, + 10243 + ]], + [[ + 10419, + 10511, + 10414 + ]], + [[ + 10531, + 10021, + 10532 + ]], + [[ + 10021, + 10028, + 10016 + ]], + [[ + 10535, + 10517, + 10408 + ]], + [[ + 10405, + 10379, + 10328 + ]], + [[ + 10238, + 10242, + 10416 + ]], + [[ + 10241, + 10512, + 10242 + ]], + [[ + 10470, + 1011, + 10035 + ]], + [[ + 8171, + 8172, + 10036 + ]], + [[ + 10042, + 10041, + 9993 + ]], + [[ + 10040, + 643, + 645 + ]], + [[ + 10047, + 10039, + 10037 + ]], + [[ + 10047, + 10043, + 9992 + ]], + [[ + 10360, + 10477, + 10476 + ]], + [[ + 10360, + 10359, + 10477 + ]], + [[ + 10488, + 10491, + 10493 + ]], + [[ + 10490, + 10492, + 10491 + ]], + [[ + 10386, + 10520, + 10393 + ]], + [[ + 10386, + 10392, + 10520 + ]], + [[ + 10013, + 10014, + 10012 + ]], + [[ + 7246, + 7247, + 10014 + ]], + [[ + 10536, + 10537, + 10370 + ]], + [[ + 10538, + 10349, + 10539 + ]], + [[ + 10355, + 10540, + 10356 + ]], + [[ + 10541, + 10542, + 10369 + ]], + [[ + 10543, + 10544, + 10371 + ]], + [[ + 10545, + 10546, + 10547 + ]], + [[ + 10548, + 10549, + 10550 + ]], + [[ + 10551, + 10552, + 10537 + ]], + [[ + 10553, + 9998, + 10554 + ]], + [[ + 10372, + 10555, + 10556 + ]], + [[ + 10549, + 10554, + 10550 + ]], + [[ + 10546, + 10545, + 10543 + ]], + [[ + 10557, + 10558, + 10373 + ]], + [[ + 10038, + 9996, + 10373 + ]], + [[ + 10545, + 10555, + 10372 + ]], + [[ + 10551, + 10537, + 10536 + ]], + [[ + 10467, + 10489, + 10486 + ]], + [[ + 10488, + 10518, + 10489 + ]], + [[ + 10559, + 10531, + 7245 + ]], + [[ + 7245, + 10531, + 10018 + ]], + [[ + 10392, + 10382, + 10361 + ]], + [[ + 10383, + 10378, + 10384 + ]], + [[ + 10480, + 10366, + 10484 + ]], + [[ + 10359, + 10357, + 10366 + ]], + [[ + 8170, + 10343, + 907 + ]], + [[ + 8170, + 10560, + 10561 + ]], + [[ + 10356, + 10562, + 10353 + ]], + [[ + 10356, + 10358, + 10563 + ]], + [[ + 10328, + 10141, + 10143 + ]], + [[ + 10155, + 10522, + 10141 + ]], + [[ + 10365, + 10485, + 10487 + ]], + [[ + 10365, + 10467, + 10485 + ]], + [[ + 10458, + 10460, + 10462 + ]], + [[ + 10458, + 10519, + 10460 + ]], + [[ + 10564, + 10527, + 10502 + ]], + [[ + 10564, + 10528, + 10527 + ]], + [[ + 10565, + 10132, + 10325 + ]], + [[ + 10565, + 10318, + 10132 + ]], + [[ + 10366, + 10482, + 10484 + ]], + [[ + 10365, + 10483, + 10482 + ]], + [[ + 644, + 9994, + 10041 + ]], + [[ + 644, + 643, + 9994 + ]], + [[ + 10561, + 10560, + 10344 + ]], + [[ + 10346, + 10035, + 1011 + ]], + [[ + 994, + 10342, + 1010 + ]], + [[ + 994, + 907, + 10342 + ]], + [[ + 10564, + 10526, + 10504 + ]], + [[ + 10564, + 10502, + 10526 + ]], + [[ + 10363, + 10509, + 10507 + ]], + [[ + 10363, + 10510, + 10509 + ]], + [[ + 10538, + 10548, + 10349 + ]], + [[ + 10540, + 10537, + 10552 + ]], + [[ + 10373, + 9995, + 10539 + ]], + [[ + 10548, + 10543, + 10349 + ]], + [[ + 10550, + 10566, + 10548 + ]], + [[ + 10550, + 10554, + 10566 + ]], + [[ + 10000, + 10001, + 10006 + ]], + [[ + 1376, + 10002, + 10001 + ]], + [[ + 10543, + 10370, + 10355 + ]], + [[ + 10370, + 10537, + 10540 + ]], + [[ + 10470, + 10035, + 10347 + ]], + [[ + 10004, + 10567, + 10005 + ]], + [[ + 10345, + 10036, + 10035 + ]], + [[ + 10345, + 8171, + 10036 + ]], + [[ + 10347, + 10034, + 10568 + ]], + [[ + 10036, + 8172, + 10567 + ]], + [[ + 10569, + 10347, + 10568 + ]], + [[ + 10567, + 8172, + 10005 + ]], + [[ + 10348, + 10351, + 10003 + ]], + [[ + 10568, + 10034, + 10567 + ]], + [[ + 10533, + 10570, + 10569 + ]], + [[ + 10360, + 10470, + 10347 + ]], + [[ + 10361, + 10382, + 10384 + ]], + [[ + 10392, + 10386, + 10382 + ]], + [[ + 10429, + 10435, + 10430 + ]], + [[ + 10434, + 10432, + 10435 + ]], + [[ + 10213, + 10093, + 10428 + ]], + [[ + 10430, + 10432, + 10093 + ]], + [[ + 10214, + 10430, + 10093 + ]], + [[ + 10435, + 10432, + 10430 + ]], + [[ + 10552, + 10547, + 10356 + ]], + [[ + 9998, + 10356, + 10554 + ]], + [[ + 10544, + 10543, + 10545 + ]], + [[ + 10571, + 10554, + 10546 + ]], + [[ + 10370, + 10372, + 10556 + ]], + [[ + 10546, + 10554, + 10547 + ]], + [[ + 9994, + 10040, + 9992 + ]], + [[ + 9994, + 643, + 10040 + ]], + [[ + 10013, + 10559, + 7245 + ]], + [[ + 10012, + 10531, + 10559 + ]], + [[ + 10448, + 10457, + 10459 + ]], + [[ + 10447, + 10519, + 10457 + ]], + [[ + 10020, + 10023, + 7244 + ]], + [[ + 10022, + 10021, + 10023 + ]], + [[ + 10528, + 10501, + 10500 + ]], + [[ + 10528, + 10525, + 10501 + ]], + [[ + 10551, + 10556, + 10547 + ]], + [[ + 10547, + 10556, + 10555 + ]], + [[ + 10568, + 10567, + 10004 + ]], + [[ + 10034, + 10036, + 10567 + ]], + [[ + 10020, + 10572, + 10021 + ]], + [[ + 10573, + 10016, + 10015 + ]], + [[ + 10574, + 10548, + 10538 + ]], + [[ + 10566, + 10575, + 10571 + ]], + [[ + 10576, + 10352, + 10538 + ]], + [[ + 9999, + 9998, + 10577 + ]], + [[ + 10530, + 10401, + 10400 + ]], + [[ + 10530, + 10388, + 10401 + ]], + [[ + 10516, + 10376, + 10375 + ]], + [[ + 10516, + 10503, + 10376 + ]], + [[ + 10369, + 10542, + 10578 + ]], + [[ + 10368, + 10367, + 10348 + ]], + [[ + 10563, + 10358, + 10369 + ]], + [[ + 10579, + 10563, + 10578 + ]], + [[ + 10369, + 10368, + 10541 + ]], + [[ + 10367, + 10351, + 10348 + ]], + [[ + 10563, + 10369, + 10578 + ]], + [[ + 10358, + 10367, + 10369 + ]], + [[ + 10580, + 10541, + 10368 + ]], + [[ + 10354, + 10542, + 10541 + ]], + [[ + 10356, + 10353, + 10355 + ]], + [[ + 10354, + 10541, + 10580 + ]], + [[ + 10562, + 10581, + 10353 + ]], + [[ + 10578, + 10542, + 10354 + ]], + [[ + 10562, + 10563, + 10581 + ]], + [[ + 10562, + 10356, + 10563 + ]], + [[ + 10349, + 10543, + 10355 + ]], + [[ + 10548, + 10566, + 10543 + ]], + [[ + 10556, + 10536, + 10370 + ]], + [[ + 10556, + 10551, + 10536 + ]], + [[ + 10561, + 10344, + 1010 + ]], + [[ + 10560, + 8170, + 10346 + ]], + [[ + 10560, + 10346, + 10344 + ]], + [[ + 8170, + 8171, + 10346 + ]], + [[ + 10024, + 10573, + 10017 + ]], + [[ + 10024, + 10021, + 10573 + ]], + [[ + 10155, + 10521, + 10522 + ]], + [[ + 10155, + 10247, + 10521 + ]], + [[ + 10533, + 10351, + 10367 + ]], + [[ + 10534, + 10004, + 10351 + ]], + [[ + 10014, + 10011, + 10012 + ]], + [[ + 10014, + 7247, + 10011 + ]], + [[ + 10032, + 10047, + 10038 + ]], + [[ + 10033, + 10043, + 10047 + ]], + [[ + 10544, + 10372, + 10371 + ]], + [[ + 10544, + 10545, + 10372 + ]], + [[ + 10352, + 10574, + 10538 + ]], + [[ + 10352, + 9999, + 10574 + ]], + [[ + 10540, + 10552, + 10356 + ]], + [[ + 10547, + 10554, + 10356 + ]], + [[ + 10018, + 10531, + 7243 + ]], + [[ + 10012, + 10021, + 10531 + ]], + [[ + 10029, + 10025, + 10027 + ]], + [[ + 10029, + 10067, + 10065 + ]], + [[ + 10534, + 10568, + 10004 + ]], + [[ + 10534, + 10569, + 10568 + ]], + [[ + 10047, + 10032, + 10033 + ]], + [[ + 10038, + 10008, + 10032 + ]], + [[ + 10033, + 10007, + 10009 + ]], + [[ + 10557, + 10373, + 10539 + ]], + [[ + 10008, + 10558, + 10009 + ]], + [[ + 10008, + 10373, + 10558 + ]], + [[ + 10009, + 10557, + 10539 + ]], + [[ + 10009, + 10558, + 10557 + ]], + [[ + 10032, + 10008, + 10007 + ]], + [[ + 10038, + 10373, + 10008 + ]], + [[ + 10456, + 10455, + 10449 + ]], + [[ + 10454, + 10447, + 10455 + ]], + [[ + 10227, + 10233, + 10232 + ]], + [[ + 10227, + 10231, + 10233 + ]], + [[ + 10364, + 10570, + 10533 + ]], + [[ + 10364, + 10347, + 10570 + ]], + [[ + 10350, + 10580, + 10368 + ]], + [[ + 10579, + 10581, + 10563 + ]], + [[ + 10350, + 10354, + 10580 + ]], + [[ + 10353, + 10581, + 10354 + ]], + [[ + 10355, + 10350, + 10349 + ]], + [[ + 10355, + 10354, + 10350 + ]], + [[ + 10349, + 10348, + 10003 + ]], + [[ + 10350, + 10368, + 10348 + ]], + [[ + 10354, + 10579, + 10578 + ]], + [[ + 10354, + 10581, + 10579 + ]], + [[ + 10047, + 10037, + 10038 + ]], + [[ + 10039, + 646, + 10037 + ]], + [[ + 10023, + 10021, + 10024 + ]], + [[ + 10012, + 10028, + 10021 + ]], + [[ + 10532, + 10572, + 7244 + ]], + [[ + 10532, + 10021, + 10572 + ]], + [[ + 10352, + 10576, + 9995 + ]], + [[ + 10538, + 10539, + 9995 + ]], + [[ + 9998, + 9995, + 9997 + ]], + [[ + 10576, + 10538, + 9995 + ]], + [[ + 10017, + 10573, + 10015 + ]], + [[ + 10021, + 10016, + 10573 + ]], + [[ + 10433, + 10515, + 10093 + ]], + [[ + 10433, + 10223, + 10515 + ]], + [[ + 10572, + 10020, + 7244 + ]], + [[ + 10022, + 10023, + 10020 + ]], + [[ + 10535, + 10405, + 10517 + ]], + [[ + 10535, + 10380, + 10405 + ]], + [[ + 10574, + 10577, + 10553 + ]], + [[ + 10574, + 9999, + 10577 + ]], + [[ + 10549, + 10553, + 10554 + ]], + [[ + 10577, + 9998, + 10553 + ]], + [[ + 10574, + 10549, + 10548 + ]], + [[ + 10574, + 10553, + 10549 + ]], + [[ + 10469, + 10468, + 10472 + ]], + [[ + 10465, + 10470, + 10468 + ]], + [[ + 10215, + 10441, + 10216 + ]], + [[ + 10215, + 10444, + 10441 + ]], + [[ + 10543, + 10566, + 10571 + ]], + [[ + 10566, + 10554, + 10575 + ]], + [[ + 10543, + 10571, + 10546 + ]], + [[ + 10575, + 10554, + 10571 + ]], + [[ + 10551, + 10547, + 10552 + ]], + [[ + 10555, + 10545, + 10547 + ]], + [[ + 10343, + 10561, + 1010 + ]], + [[ + 10343, + 8170, + 10561 + ]], + [[ + 10400, + 10402, + 10403 + ]], + [[ + 10401, + 10388, + 10402 + ]], + [[ + 10028, + 10029, + 10027 + ]], + [[ + 10028, + 10292, + 10029 + ]], + [[ + 10355, + 10370, + 10540 + ]], + [[ + 10543, + 10371, + 10370 + ]], + [[ + 10559, + 10013, + 10012 + ]], + [[ + 7245, + 7246, + 10013 + ]], + [[ + 10531, + 10019, + 7243 + ]], + [[ + 10532, + 7244, + 10019 + ]], + [[ + 10533, + 10569, + 10534 + ]], + [[ + 10570, + 10347, + 10569 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b492c6bd0-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef790749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8402, + 1097, + 1105 + ]], + [[ + 8402, + 1105, + 8744 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b492d56e7-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef68e549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3100, + 3102, + 3165 + ]], + [[ + 3100, + 3165, + 3108 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b492e19ca-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cab49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10582, + 10583, + 10584 + ]], + [[ + 10585, + 10586, + 10587 + ]], + [[ + 10588, + 6932, + 6933 + ]], + [[ + 10589, + 10590, + 10588 + ]], + [[ + 6932, + 10590, + 10591 + ]], + [[ + 6886, + 10592, + 6913 + ]], + [[ + 10593, + 10594, + 6974 + ]], + [[ + 10587, + 10586, + 10595 + ]], + [[ + 10596, + 8681, + 6910 + ]], + [[ + 10597, + 10594, + 10598 + ]], + [[ + 6974, + 6975, + 10593 + ]], + [[ + 10599, + 10600, + 10601 + ]], + [[ + 10591, + 6912, + 10592 + ]], + [[ + 10596, + 10602, + 10603 + ]], + [[ + 10592, + 6912, + 6913 + ]], + [[ + 10604, + 10584, + 6975 + ]], + [[ + 10583, + 10595, + 10593 + ]], + [[ + 10582, + 10587, + 10595 + ]], + [[ + 10600, + 10599, + 6911 + ]], + [[ + 10593, + 10586, + 10594 + ]], + [[ + 10587, + 10605, + 10585 + ]], + [[ + 10601, + 10606, + 6910 + ]], + [[ + 10602, + 10587, + 10603 + ]], + [[ + 6911, + 10599, + 6910 + ]], + [[ + 10607, + 10605, + 10587 + ]], + [[ + 10588, + 10590, + 6932 + ]], + [[ + 10591, + 10608, + 6912 + ]], + [[ + 10589, + 10585, + 10609 + ]], + [[ + 10607, + 10602, + 10610 + ]], + [[ + 10604, + 10603, + 10582 + ]], + [[ + 10595, + 10586, + 10593 + ]], + [[ + 10607, + 10610, + 10600 + ]], + [[ + 10606, + 10596, + 6910 + ]], + [[ + 10599, + 10601, + 6910 + ]], + [[ + 10610, + 10602, + 10606 + ]], + [[ + 8681, + 10604, + 6975 + ]], + [[ + 8681, + 10603, + 10604 + ]], + [[ + 10610, + 10606, + 10601 + ]], + [[ + 10602, + 10596, + 10606 + ]], + [[ + 6925, + 10588, + 6933 + ]], + [[ + 6925, + 10589, + 10588 + ]], + [[ + 10601, + 10600, + 10610 + ]], + [[ + 6911, + 6912, + 10600 + ]], + [[ + 10608, + 10607, + 10600 + ]], + [[ + 10587, + 10602, + 10607 + ]], + [[ + 10584, + 10593, + 6975 + ]], + [[ + 10584, + 10583, + 10593 + ]], + [[ + 6932, + 10591, + 6886 + ]], + [[ + 10608, + 10605, + 10607 + ]], + [[ + 6886, + 10591, + 10592 + ]], + [[ + 10609, + 10585, + 10605 + ]], + [[ + 6912, + 10608, + 10600 + ]], + [[ + 10591, + 10590, + 10608 + ]], + [[ + 10596, + 10603, + 8681 + ]], + [[ + 10595, + 10583, + 10582 + ]], + [[ + 10604, + 10582, + 10584 + ]], + [[ + 10603, + 10587, + 10582 + ]], + [[ + 10611, + 10589, + 6925 + ]], + [[ + 10609, + 10605, + 10608 + ]], + [[ + 10611, + 10597, + 10589 + ]], + [[ + 10594, + 10586, + 10598 + ]], + [[ + 6974, + 10611, + 6925 + ]], + [[ + 6974, + 10594, + 10597 + ]], + [[ + 10589, + 10597, + 10598 + ]], + [[ + 10611, + 6974, + 10597 + ]], + [[ + 10598, + 10585, + 10589 + ]], + [[ + 10598, + 10586, + 10585 + ]], + [[ + 10590, + 10609, + 10608 + ]], + [[ + 10590, + 10589, + 10609 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b492e6811-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef608949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 6710, + 6706, + 6709 + ]], + [[ + 10612, + 6711, + 10613 + ]], + [[ + 6706, + 6710, + 10613 + ]], + [[ + 10614, + 6706, + 10613 + ]], + [[ + 10613, + 6711, + 10615 + ]], + [[ + 10615, + 295, + 297 + ]], + [[ + 10615, + 6711, + 295 + ]], + [[ + 10612, + 10616, + 6711 + ]], + [[ + 6710, + 6711, + 10616 + ]], + [[ + 6710, + 10612, + 10613 + ]], + [[ + 6710, + 10616, + 10612 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b492f03ba-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5cb949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10617, + 10618, + 7732 + ]], + [[ + 10619, + 9807, + 10620 + ]], + [[ + 7730, + 10621, + 10622 + ]], + [[ + 10622, + 10621, + 10618 + ]], + [[ + 9810, + 10623, + 9808 + ]], + [[ + 10624, + 7732, + 7759 + ]], + [[ + 9803, + 10623, + 7760 + ]], + [[ + 9803, + 7760, + 10625 + ]], + [[ + 10625, + 7760, + 7752 + ]], + [[ + 10626, + 7732, + 10624 + ]], + [[ + 9810, + 9807, + 10619 + ]], + [[ + 10617, + 7732, + 10626 + ]], + [[ + 10627, + 10628, + 10629 + ]], + [[ + 10630, + 10626, + 10624 + ]], + [[ + 7754, + 10625, + 7752 + ]], + [[ + 7754, + 9803, + 10625 + ]], + [[ + 7730, + 10618, + 10621 + ]], + [[ + 7730, + 7732, + 10618 + ]], + [[ + 10623, + 10631, + 10632 + ]], + [[ + 10633, + 10634, + 10635 + ]], + [[ + 10627, + 10636, + 10628 + ]], + [[ + 7760, + 10632, + 10636 + ]], + [[ + 10633, + 10622, + 10618 + ]], + [[ + 10635, + 10637, + 10622 + ]], + [[ + 7759, + 10627, + 10629 + ]], + [[ + 10636, + 10632, + 10628 + ]], + [[ + 10629, + 10624, + 7759 + ]], + [[ + 10629, + 10630, + 10624 + ]], + [[ + 10638, + 10637, + 10639 + ]], + [[ + 10637, + 7730, + 10622 + ]], + [[ + 10623, + 10640, + 10634 + ]], + [[ + 10623, + 9810, + 10640 + ]], + [[ + 10631, + 10633, + 10617 + ]], + [[ + 10633, + 10618, + 10617 + ]], + [[ + 10626, + 10631, + 10617 + ]], + [[ + 10638, + 10639, + 10640 + ]], + [[ + 10631, + 10634, + 10633 + ]], + [[ + 10640, + 10639, + 10635 + ]], + [[ + 10633, + 10635, + 10622 + ]], + [[ + 10634, + 10640, + 10635 + ]], + [[ + 10639, + 10637, + 10635 + ]], + [[ + 10620, + 7730, + 10637 + ]], + [[ + 10632, + 10631, + 10626 + ]], + [[ + 10623, + 10634, + 10631 + ]], + [[ + 10628, + 10632, + 10626 + ]], + [[ + 7760, + 10623, + 10632 + ]], + [[ + 9810, + 10619, + 10640 + ]], + [[ + 10619, + 10637, + 10638 + ]], + [[ + 10637, + 10619, + 10620 + ]], + [[ + 10638, + 10640, + 10619 + ]], + [[ + 7760, + 10627, + 7759 + ]], + [[ + 7760, + 10636, + 10627 + ]], + [[ + 10628, + 10630, + 10629 + ]], + [[ + 10628, + 10626, + 10630 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b49310031-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef790849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10641, + 10642, + 10643 + ]], + [[ + 10644, + 10641, + 10643 + ]], + [[ + 10645, + 10646, + 10643 + ]], + [[ + 10643, + 10042, + 10644 + ]], + [[ + 10643, + 10646, + 10042 + ]], + [[ + 10647, + 10648, + 10646 + ]], + [[ + 10649, + 644, + 10042 + ]], + [[ + 652, + 10650, + 10651 + ]], + [[ + 10647, + 10646, + 10652 + ]], + [[ + 10653, + 10648, + 10650 + ]], + [[ + 10646, + 10645, + 10652 + ]], + [[ + 652, + 10653, + 10650 + ]], + [[ + 652, + 644, + 10653 + ]], + [[ + 10653, + 10654, + 10649 + ]], + [[ + 10653, + 644, + 10654 + ]], + [[ + 10653, + 10646, + 10648 + ]], + [[ + 10653, + 10649, + 10646 + ]], + [[ + 10646, + 10649, + 10042 + ]], + [[ + 10654, + 644, + 10649 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4931275f-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "onverhard", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef949349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10655, + 2887, + 2888 + ]], + [[ + 8158, + 2887, + 10655 + ]], + [[ + 8156, + 8567, + 8155 + ]], + [[ + 8156, + 8157, + 8568 + ]], + [[ + 8156, + 8568, + 8567 + ]], + [[ + 8568, + 10656, + 8566 + ]], + [[ + 10657, + 2886, + 8565 + ]], + [[ + 10657, + 2888, + 2886 + ]], + [[ + 10655, + 8157, + 8158 + ]], + [[ + 10656, + 10657, + 8565 + ]], + [[ + 8568, + 8157, + 10655 + ]], + [[ + 10657, + 10655, + 2888 + ]], + [[ + 10657, + 10656, + 10655 + ]], + [[ + 8566, + 10656, + 8565 + ]], + [[ + 8568, + 10655, + 10656 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4931c302-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef505349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10658, + 10659, + 10660 + ]], + [[ + 10661, + 10662, + 10663 + ]], + [[ + 10027, + 10664, + 10016 + ]], + [[ + 10665, + 10666, + 10667 + ]], + [[ + 10668, + 10664, + 10669 + ]], + [[ + 10661, + 10670, + 10662 + ]], + [[ + 10661, + 10671, + 10670 + ]], + [[ + 10668, + 10672, + 10673 + ]], + [[ + 10017, + 10674, + 10675 + ]], + [[ + 10675, + 10676, + 10671 + ]], + [[ + 10677, + 10678, + 10672 + ]], + [[ + 10679, + 6662, + 6840 + ]], + [[ + 10680, + 7265, + 10681 + ]], + [[ + 10682, + 7195, + 7252 + ]], + [[ + 10682, + 10683, + 7195 + ]], + [[ + 10683, + 10684, + 10685 + ]], + [[ + 10686, + 10687, + 10688 + ]], + [[ + 10685, + 10684, + 7203 + ]], + [[ + 10688, + 10687, + 10689 + ]], + [[ + 10690, + 10687, + 10691 + ]], + [[ + 10692, + 10693, + 10694 + ]], + [[ + 10695, + 10696, + 10697 + ]], + [[ + 7182, + 10696, + 7180 + ]], + [[ + 10693, + 7168, + 7201 + ]], + [[ + 10698, + 10699, + 7214 + ]], + [[ + 10681, + 7183, + 10680 + ]], + [[ + 10700, + 7216, + 7214 + ]], + [[ + 10697, + 7268, + 7216 + ]], + [[ + 10695, + 7180, + 10696 + ]], + [[ + 7267, + 7265, + 7266 + ]], + [[ + 10701, + 7168, + 10693 + ]], + [[ + 10702, + 7202, + 10703 + ]], + [[ + 10704, + 10705, + 10706 + ]], + [[ + 10707, + 10694, + 10704 + ]], + [[ + 10708, + 10709, + 10710 + ]], + [[ + 10711, + 10712, + 10713 + ]], + [[ + 10714, + 10715, + 10716 + ]], + [[ + 10717, + 6752, + 10718 + ]], + [[ + 10719, + 6751, + 10720 + ]], + [[ + 10721, + 10722, + 10723 + ]], + [[ + 10724, + 10717, + 10725 + ]], + [[ + 10726, + 6841, + 10727 + ]], + [[ + 10728, + 10729, + 10730 + ]], + [[ + 10731, + 10728, + 10730 + ]], + [[ + 10732, + 10733, + 10734 + ]], + [[ + 10735, + 10736, + 10737 + ]], + [[ + 10738, + 6677, + 6654 + ]], + [[ + 10739, + 6660, + 6661 + ]], + [[ + 10730, + 10740, + 10731 + ]], + [[ + 10741, + 10742, + 10743 + ]], + [[ + 10744, + 10745, + 10746 + ]], + [[ + 10747, + 10748, + 10745 + ]], + [[ + 6671, + 10749, + 6685 + ]], + [[ + 10746, + 10730, + 10750 + ]], + [[ + 10751, + 6683, + 6684 + ]], + [[ + 10752, + 10753, + 10754 + ]], + [[ + 10753, + 502, + 10754 + ]], + [[ + 10752, + 504, + 6683 + ]], + [[ + 500, + 502, + 517 + ]], + [[ + 10755, + 10756, + 10757 + ]], + [[ + 10758, + 10759, + 10760 + ]], + [[ + 10761, + 517, + 10753 + ]], + [[ + 10762, + 10755, + 10763 + ]], + [[ + 10764, + 647, + 10765 + ]], + [[ + 10766, + 625, + 10767 + ]], + [[ + 10768, + 646, + 647 + ]], + [[ + 10769, + 10712, + 10770 + ]], + [[ + 10771, + 10678, + 10677 + ]], + [[ + 10772, + 10773, + 10774 + ]], + [[ + 10775, + 10776, + 10777 + ]], + [[ + 10778, + 10779, + 10780 + ]], + [[ + 10708, + 10781, + 10782 + ]], + [[ + 10783, + 10729, + 10728 + ]], + [[ + 10750, + 10784, + 10744 + ]], + [[ + 10782, + 10709, + 10708 + ]], + [[ + 10772, + 10678, + 10771 + ]], + [[ + 10785, + 10702, + 10703 + ]], + [[ + 7202, + 7203, + 10684 + ]], + [[ + 10664, + 10786, + 10669 + ]], + [[ + 10786, + 10787, + 10771 + ]], + [[ + 10788, + 10714, + 10738 + ]], + [[ + 10731, + 10789, + 10728 + ]], + [[ + 10786, + 10771, + 10677 + ]], + [[ + 10773, + 10772, + 10771 + ]], + [[ + 10790, + 10791, + 10792 + ]], + [[ + 10793, + 10753, + 10794 + ]], + [[ + 10795, + 10796, + 10781 + ]], + [[ + 10797, + 10798, + 10799 + ]], + [[ + 10800, + 10696, + 7182 + ]], + [[ + 10800, + 7268, + 10697 + ]], + [[ + 10801, + 626, + 10762 + ]], + [[ + 10791, + 513, + 10792 + ]], + [[ + 7183, + 10800, + 7182 + ]], + [[ + 7183, + 10802, + 10800 + ]], + [[ + 10803, + 10739, + 10804 + ]], + [[ + 10727, + 6748, + 6750 + ]], + [[ + 10805, + 10806, + 10807 + ]], + [[ + 10808, + 10798, + 10809 + ]], + [[ + 10810, + 10809, + 10811 + ]], + [[ + 10691, + 10772, + 10779 + ]], + [[ + 10806, + 10805, + 10733 + ]], + [[ + 10812, + 10807, + 10780 + ]], + [[ + 10680, + 10813, + 10814 + ]], + [[ + 10813, + 7168, + 10815 + ]], + [[ + 6685, + 10749, + 10747 + ]], + [[ + 10748, + 6675, + 10745 + ]], + [[ + 10726, + 10727, + 10711 + ]], + [[ + 6841, + 6748, + 10727 + ]], + [[ + 10816, + 10804, + 10679 + ]], + [[ + 10817, + 6662, + 10818 + ]], + [[ + 10693, + 10692, + 10701 + ]], + [[ + 7201, + 10702, + 10693 + ]], + [[ + 10819, + 10778, + 10780 + ]], + [[ + 10820, + 6753, + 10707 + ]], + [[ + 10821, + 10778, + 10822 + ]], + [[ + 10820, + 10718, + 6753 + ]], + [[ + 10819, + 10810, + 10778 + ]], + [[ + 10823, + 10824, + 10825 + ]], + [[ + 10775, + 10826, + 10827 + ]], + [[ + 10737, + 6684, + 10776 + ]], + [[ + 10828, + 10829, + 10830 + ]], + [[ + 10793, + 10831, + 10753 + ]], + [[ + 10832, + 10732, + 10734 + ]], + [[ + 10819, + 10833, + 10834 + ]], + [[ + 10835, + 10836, + 10837 + ]], + [[ + 10838, + 10839, + 10840 + ]], + [[ + 6677, + 10730, + 10746 + ]], + [[ + 6677, + 10740, + 10730 + ]], + [[ + 10800, + 10697, + 10696 + ]], + [[ + 7218, + 7180, + 10695 + ]], + [[ + 10841, + 10660, + 10842 + ]], + [[ + 10841, + 10843, + 10660 + ]], + [[ + 10828, + 10842, + 10844 + ]], + [[ + 10844, + 10829, + 10828 + ]], + [[ + 10845, + 10841, + 10842 + ]], + [[ + 10843, + 10846, + 10658 + ]], + [[ + 10847, + 10828, + 10830 + ]], + [[ + 10845, + 10842, + 10828 + ]], + [[ + 10799, + 10848, + 10797 + ]], + [[ + 10849, + 6752, + 10717 + ]], + [[ + 10850, + 10810, + 10811 + ]], + [[ + 10770, + 10712, + 10711 + ]], + [[ + 10851, + 10787, + 10786 + ]], + [[ + 10851, + 10773, + 10852 + ]], + [[ + 10669, + 10786, + 10677 + ]], + [[ + 10853, + 10854, + 10710 + ]], + [[ + 10855, + 10856, + 10786 + ]], + [[ + 10786, + 10856, + 10851 + ]], + [[ + 10852, + 10773, + 10771 + ]], + [[ + 10774, + 10709, + 10772 + ]], + [[ + 10857, + 10776, + 6684 + ]], + [[ + 10784, + 10729, + 10858 + ]], + [[ + 10675, + 10674, + 10676 + ]], + [[ + 10027, + 10855, + 10664 + ]], + [[ + 10747, + 10857, + 6684 + ]], + [[ + 10745, + 6676, + 10746 + ]], + [[ + 10768, + 10764, + 10760 + ]], + [[ + 10859, + 10860, + 10861 + ]], + [[ + 10713, + 10862, + 10711 + ]], + [[ + 10726, + 10711, + 10816 + ]], + [[ + 10788, + 10738, + 6654 + ]], + [[ + 10740, + 6677, + 10738 + ]], + [[ + 10863, + 10864, + 10815 + ]], + [[ + 7183, + 7168, + 10813 + ]], + [[ + 10767, + 10801, + 10743 + ]], + [[ + 10865, + 10843, + 10866 + ]], + [[ + 10038, + 10759, + 10758 + ]], + [[ + 625, + 626, + 10767 + ]], + [[ + 10867, + 10868, + 10834 + ]], + [[ + 10869, + 10770, + 10870 + ]], + [[ + 10830, + 10871, + 10872 + ]], + [[ + 10873, + 10659, + 10793 + ]], + [[ + 10839, + 10734, + 10840 + ]], + [[ + 10874, + 10666, + 10665 + ]], + [[ + 10847, + 10866, + 10828 + ]], + [[ + 10846, + 10865, + 10875 + ]], + [[ + 10876, + 10865, + 10866 + ]], + [[ + 10875, + 10877, + 10878 + ]], + [[ + 10717, + 10718, + 10811 + ]], + [[ + 6752, + 6753, + 10718 + ]], + [[ + 10789, + 10832, + 10734 + ]], + [[ + 10879, + 10713, + 10733 + ]], + [[ + 10701, + 10863, + 7168 + ]], + [[ + 10815, + 7168, + 10863 + ]], + [[ + 10880, + 10881, + 10882 + ]], + [[ + 10883, + 517, + 10761 + ]], + [[ + 10823, + 10884, + 10850 + ]], + [[ + 10821, + 10779, + 10778 + ]], + [[ + 10700, + 10697, + 7216 + ]], + [[ + 10885, + 10695, + 10697 + ]], + [[ + 10886, + 10887, + 10888 + ]], + [[ + 10756, + 10755, + 10889 + ]], + [[ + 503, + 10754, + 502 + ]], + [[ + 10890, + 504, + 10752 + ]], + [[ + 10875, + 10742, + 10877 + ]], + [[ + 10741, + 10891, + 10742 + ]], + [[ + 10892, + 10893, + 10742 + ]], + [[ + 10893, + 10894, + 10743 + ]], + [[ + 10790, + 10792, + 517 + ]], + [[ + 513, + 517, + 10792 + ]], + [[ + 10895, + 10896, + 10897 + ]], + [[ + 10887, + 10756, + 10898 + ]], + [[ + 10715, + 10899, + 10716 + ]], + [[ + 6659, + 6660, + 10899 + ]], + [[ + 10900, + 10666, + 10901 + ]], + [[ + 10900, + 10667, + 10666 + ]], + [[ + 10747, + 10745, + 10857 + ]], + [[ + 6675, + 6676, + 10745 + ]], + [[ + 10785, + 10694, + 10693 + ]], + [[ + 7201, + 7202, + 10702 + ]], + [[ + 10846, + 10896, + 10880 + ]], + [[ + 10790, + 10902, + 10791 + ]], + [[ + 10880, + 10883, + 10881 + ]], + [[ + 10880, + 10658, + 10846 + ]], + [[ + 10857, + 10745, + 10744 + ]], + [[ + 10730, + 10729, + 10750 + ]], + [[ + 10744, + 10746, + 10750 + ]], + [[ + 6676, + 6677, + 10746 + ]], + [[ + 10844, + 10660, + 10873 + ]], + [[ + 10903, + 10882, + 10831 + ]], + [[ + 10829, + 10793, + 10794 + ]], + [[ + 10831, + 10881, + 10761 + ]], + [[ + 10859, + 10904, + 10860 + ]], + [[ + 10860, + 625, + 10861 + ]], + [[ + 10664, + 10855, + 10786 + ]], + [[ + 10027, + 10856, + 10855 + ]], + [[ + 10833, + 10807, + 10869 + ]], + [[ + 10840, + 10734, + 10805 + ]], + [[ + 10809, + 10717, + 10811 + ]], + [[ + 10725, + 10797, + 10848 + ]], + [[ + 6658, + 10905, + 6654 + ]], + [[ + 10906, + 6659, + 10715 + ]], + [[ + 10738, + 10714, + 10740 + ]], + [[ + 10715, + 6659, + 10899 + ]], + [[ + 10907, + 10700, + 7214 + ]], + [[ + 10908, + 10885, + 10700 + ]], + [[ + 10830, + 10872, + 10909 + ]], + [[ + 10871, + 6683, + 10872 + ]], + [[ + 10827, + 10737, + 10776 + ]], + [[ + 10909, + 10872, + 10735 + ]], + [[ + 10737, + 10910, + 6684 + ]], + [[ + 10751, + 10735, + 6683 + ]], + [[ + 10859, + 10760, + 10764 + ]], + [[ + 10038, + 646, + 10768 + ]], + [[ + 10911, + 10912, + 10835 + ]], + [[ + 10913, + 10912, + 10854 + ]], + [[ + 10794, + 10753, + 10752 + ]], + [[ + 517, + 502, + 10753 + ]], + [[ + 10763, + 10801, + 10762 + ]], + [[ + 626, + 627, + 10762 + ]], + [[ + 10914, + 10801, + 10915 + ]], + [[ + 10762, + 627, + 10889 + ]], + [[ + 10880, + 10896, + 10895 + ]], + [[ + 10888, + 10887, + 10791 + ]], + [[ + 10902, + 10888, + 10791 + ]], + [[ + 10889, + 10755, + 10762 + ]], + [[ + 10790, + 10916, + 10897 + ]], + [[ + 10896, + 10886, + 10902 + ]], + [[ + 10758, + 10766, + 10767 + ]], + [[ + 10917, + 625, + 10766 + ]], + [[ + 10918, + 10906, + 10715 + ]], + [[ + 6658, + 6659, + 10906 + ]], + [[ + 6841, + 10679, + 6840 + ]], + [[ + 10818, + 6662, + 10679 + ]], + [[ + 10919, + 10854, + 10853 + ]], + [[ + 10710, + 10709, + 10920 + ]], + [[ + 10911, + 10710, + 10854 + ]], + [[ + 10837, + 10795, + 10781 + ]], + [[ + 10774, + 10920, + 10709 + ]], + [[ + 10851, + 10919, + 10853 + ]], + [[ + 10731, + 10716, + 10832 + ]], + [[ + 10899, + 6660, + 10716 + ]], + [[ + 6660, + 10739, + 10716 + ]], + [[ + 10803, + 10804, + 10862 + ]], + [[ + 10716, + 10739, + 10732 + ]], + [[ + 10817, + 10818, + 10921 + ]], + [[ + 10723, + 10719, + 10848 + ]], + [[ + 6751, + 6752, + 10720 + ]], + [[ + 10905, + 10715, + 10714 + ]], + [[ + 10918, + 6658, + 10906 + ]], + [[ + 10724, + 10725, + 10848 + ]], + [[ + 10725, + 10798, + 10797 + ]], + [[ + 10787, + 10852, + 10771 + ]], + [[ + 10787, + 10851, + 10852 + ]], + [[ + 10660, + 10843, + 10658 + ]], + [[ + 10846, + 10875, + 10878 + ]], + [[ + 10714, + 10731, + 10740 + ]], + [[ + 10714, + 10716, + 10731 + ]], + [[ + 7217, + 10698, + 7214 + ]], + [[ + 10908, + 10700, + 10699 + ]], + [[ + 623, + 10765, + 647 + ]], + [[ + 623, + 10904, + 10859 + ]], + [[ + 10679, + 10726, + 10816 + ]], + [[ + 10679, + 6841, + 10726 + ]], + [[ + 10878, + 10922, + 10896 + ]], + [[ + 10922, + 10915, + 10755 + ]], + [[ + 10836, + 10795, + 10837 + ]], + [[ + 10836, + 10796, + 10795 + ]], + [[ + 10923, + 10924, + 10708 + ]], + [[ + 10837, + 10781, + 10708 + ]], + [[ + 10794, + 10752, + 6683 + ]], + [[ + 10754, + 10890, + 10752 + ]], + [[ + 10925, + 10858, + 10901 + ]], + [[ + 10911, + 10854, + 10912 + ]], + [[ + 10919, + 10913, + 10854 + ]], + [[ + 10835, + 10926, + 10836 + ]], + [[ + 10777, + 10925, + 10901 + ]], + [[ + 10750, + 10729, + 10784 + ]], + [[ + 10681, + 10802, + 7183 + ]], + [[ + 7268, + 10800, + 10802 + ]], + [[ + 10743, + 10801, + 10914 + ]], + [[ + 10767, + 626, + 10801 + ]], + [[ + 10735, + 10827, + 10909 + ]], + [[ + 10927, + 10775, + 10874 + ]], + [[ + 10660, + 10844, + 10842 + ]], + [[ + 10660, + 10659, + 10873 + ]], + [[ + 10694, + 10928, + 10704 + ]], + [[ + 10929, + 10690, + 10825 + ]], + [[ + 10706, + 10707, + 10704 + ]], + [[ + 10686, + 10683, + 10687 + ]], + [[ + 10692, + 10694, + 7264 + ]], + [[ + 10693, + 10702, + 10785 + ]], + [[ + 10930, + 10661, + 10663 + ]], + [[ + 10675, + 10671, + 10661 + ]], + [[ + 10812, + 10796, + 10807 + ]], + [[ + 10805, + 10734, + 10733 + ]], + [[ + 10812, + 10780, + 10779 + ]], + [[ + 10807, + 10833, + 10780 + ]], + [[ + 10796, + 10805, + 10807 + ]], + [[ + 10796, + 10836, + 10838 + ]], + [[ + 10796, + 10840, + 10805 + ]], + [[ + 10839, + 10926, + 10858 + ]], + [[ + 10700, + 10885, + 10697 + ]], + [[ + 7218, + 10695, + 10885 + ]], + [[ + 6671, + 10748, + 10749 + ]], + [[ + 6671, + 6675, + 10748 + ]], + [[ + 10871, + 10794, + 6683 + ]], + [[ + 10871, + 10830, + 10794 + ]], + [[ + 10866, + 10845, + 10828 + ]], + [[ + 10866, + 10843, + 10845 + ]], + [[ + 10905, + 10788, + 6654 + ]], + [[ + 10905, + 10714, + 10788 + ]], + [[ + 10931, + 10812, + 10709 + ]], + [[ + 10691, + 10678, + 10772 + ]], + [[ + 10778, + 10810, + 10850 + ]], + [[ + 10868, + 10809, + 10810 + ]], + [[ + 10851, + 10774, + 10773 + ]], + [[ + 10920, + 10853, + 10710 + ]], + [[ + 10851, + 10920, + 10774 + ]], + [[ + 10851, + 10853, + 10920 + ]], + [[ + 10867, + 10834, + 10833 + ]], + [[ + 10868, + 10810, + 10834 + ]], + [[ + 10833, + 10819, + 10780 + ]], + [[ + 10834, + 10810, + 10819 + ]], + [[ + 10734, + 10783, + 10789 + ]], + [[ + 10783, + 10839, + 10858 + ]], + [[ + 10808, + 10770, + 10798 + ]], + [[ + 10869, + 10806, + 10770 + ]], + [[ + 10814, + 10864, + 10701 + ]], + [[ + 10813, + 10815, + 10864 + ]], + [[ + 10692, + 10814, + 10701 + ]], + [[ + 10864, + 10863, + 10701 + ]], + [[ + 10932, + 10933, + 10901 + ]], + [[ + 10934, + 10935, + 10936 + ]], + [[ + 10856, + 10937, + 10919 + ]], + [[ + 10912, + 10938, + 10835 + ]], + [[ + 10851, + 10856, + 10919 + ]], + [[ + 10938, + 10932, + 10835 + ]], + [[ + 10684, + 10785, + 10703 + ]], + [[ + 10928, + 10694, + 10785 + ]], + [[ + 10821, + 10884, + 10939 + ]], + [[ + 10705, + 10704, + 10940 + ]], + [[ + 9996, + 10893, + 10026 + ]], + [[ + 10893, + 10743, + 10742 + ]], + [[ + 503, + 10890, + 10754 + ]], + [[ + 503, + 504, + 10890 + ]], + [[ + 10905, + 10918, + 10715 + ]], + [[ + 10905, + 6658, + 10918 + ]], + [[ + 10941, + 10942, + 10943 + ]], + [[ + 10942, + 10866, + 10847 + ]], + [[ + 10943, + 10942, + 10944 + ]], + [[ + 10941, + 10866, + 10942 + ]], + [[ + 10874, + 10934, + 10927 + ]], + [[ + 10775, + 10827, + 10776 + ]], + [[ + 7218, + 10908, + 7217 + ]], + [[ + 7218, + 10885, + 10908 + ]], + [[ + 10659, + 10831, + 10793 + ]], + [[ + 10881, + 10883, + 10761 + ]], + [[ + 10753, + 10831, + 10761 + ]], + [[ + 10882, + 10658, + 10880 + ]], + [[ + 10737, + 10736, + 10910 + ]], + [[ + 10737, + 10827, + 10735 + ]], + [[ + 10921, + 10804, + 10739 + ]], + [[ + 10921, + 10679, + 10804 + ]], + [[ + 10796, + 10812, + 10781 + ]], + [[ + 10812, + 10772, + 10709 + ]], + [[ + 10772, + 10812, + 10779 + ]], + [[ + 10931, + 10781, + 10812 + ]], + [[ + 10901, + 10933, + 10900 + ]], + [[ + 10027, + 10026, + 10667 + ]], + [[ + 10902, + 10790, + 10897 + ]], + [[ + 10883, + 10880, + 10895 + ]], + [[ + 10916, + 10895, + 10897 + ]], + [[ + 10916, + 10883, + 10895 + ]], + [[ + 10666, + 10874, + 10901 + ]], + [[ + 10925, + 10784, + 10858 + ]], + [[ + 10776, + 10925, + 10777 + ]], + [[ + 10744, + 10784, + 10925 + ]], + [[ + 10769, + 10806, + 10733 + ]], + [[ + 10869, + 10807, + 10806 + ]], + [[ + 10699, + 10907, + 7214 + ]], + [[ + 10699, + 10700, + 10907 + ]], + [[ + 10829, + 10873, + 10793 + ]], + [[ + 10829, + 10844, + 10873 + ]], + [[ + 10672, + 10669, + 10677 + ]], + [[ + 10668, + 10676, + 10664 + ]], + [[ + 10847, + 10830, + 10909 + ]], + [[ + 10829, + 10794, + 10830 + ]], + [[ + 10731, + 10832, + 10789 + ]], + [[ + 10716, + 10732, + 10832 + ]], + [[ + 10757, + 10922, + 10755 + ]], + [[ + 10891, + 10741, + 10914 + ]], + [[ + 10869, + 10867, + 10833 + ]], + [[ + 10869, + 10868, + 10867 + ]], + [[ + 10720, + 10849, + 10724 + ]], + [[ + 10720, + 6752, + 10849 + ]], + [[ + 10910, + 10751, + 6684 + ]], + [[ + 10910, + 10736, + 10751 + ]], + [[ + 10675, + 10930, + 10663 + ]], + [[ + 10675, + 10661, + 10930 + ]], + [[ + 10846, + 10878, + 10896 + ]], + [[ + 10877, + 10891, + 10945 + ]], + [[ + 10845, + 10843, + 10841 + ]], + [[ + 10865, + 10846, + 10843 + ]], + [[ + 10659, + 10903, + 10831 + ]], + [[ + 10659, + 10658, + 10903 + ]], + [[ + 10831, + 10882, + 10881 + ]], + [[ + 10903, + 10658, + 10882 + ]], + [[ + 10824, + 10823, + 10811 + ]], + [[ + 10822, + 10778, + 10850 + ]], + [[ + 10939, + 10823, + 10825 + ]], + [[ + 10850, + 10811, + 10823 + ]], + [[ + 10939, + 10884, + 10823 + ]], + [[ + 10822, + 10850, + 10884 + ]], + [[ + 10826, + 10847, + 10909 + ]], + [[ + 10944, + 10942, + 10847 + ]], + [[ + 10933, + 10856, + 10027 + ]], + [[ + 10946, + 10938, + 10913 + ]], + [[ + 10667, + 10933, + 10027 + ]], + [[ + 10667, + 10900, + 10933 + ]], + [[ + 10768, + 10759, + 10038 + ]], + [[ + 10760, + 10766, + 10758 + ]], + [[ + 10711, + 10722, + 10798 + ]], + [[ + 10719, + 6750, + 6751 + ]], + [[ + 10947, + 10927, + 10936 + ]], + [[ + 10927, + 10934, + 10936 + ]], + [[ + 10760, + 10859, + 10861 + ]], + [[ + 10765, + 623, + 10859 + ]], + [[ + 10932, + 10858, + 10926 + ]], + [[ + 10932, + 10901, + 10858 + ]], + [[ + 10729, + 10783, + 10858 + ]], + [[ + 10728, + 10789, + 10783 + ]], + [[ + 10824, + 10929, + 10825 + ]], + [[ + 10691, + 10779, + 10821 + ]], + [[ + 10884, + 10821, + 10822 + ]], + [[ + 10939, + 10691, + 10821 + ]], + [[ + 10939, + 10690, + 10691 + ]], + [[ + 10939, + 10825, + 10690 + ]], + [[ + 10929, + 10948, + 10690 + ]], + [[ + 10687, + 10690, + 10948 + ]], + [[ + 10940, + 10689, + 10705 + ]], + [[ + 10687, + 10948, + 10689 + ]], + [[ + 10948, + 10929, + 10689 + ]], + [[ + 10707, + 6753, + 7264 + ]], + [[ + 10928, + 10940, + 10704 + ]], + [[ + 10928, + 10686, + 10688 + ]], + [[ + 10940, + 10688, + 10689 + ]], + [[ + 10940, + 10928, + 10688 + ]], + [[ + 10689, + 10706, + 10705 + ]], + [[ + 10824, + 10811, + 10820 + ]], + [[ + 10891, + 10914, + 10915 + ]], + [[ + 10741, + 10743, + 10914 + ]], + [[ + 10776, + 10744, + 10925 + ]], + [[ + 10776, + 10857, + 10744 + ]], + [[ + 10861, + 10917, + 10766 + ]], + [[ + 10861, + 625, + 10917 + ]], + [[ + 10711, + 10862, + 10816 + ]], + [[ + 10804, + 10816, + 10862 + ]], + [[ + 10732, + 10879, + 10733 + ]], + [[ + 10732, + 10739, + 10803 + ]], + [[ + 10879, + 10803, + 10862 + ]], + [[ + 10879, + 10732, + 10803 + ]], + [[ + 10876, + 10892, + 10865 + ]], + [[ + 10876, + 10893, + 10892 + ]], + [[ + 10949, + 10893, + 10876 + ]], + [[ + 10894, + 10758, + 10767 + ]], + [[ + 10886, + 10757, + 10887 + ]], + [[ + 10886, + 10922, + 10757 + ]], + [[ + 10809, + 10725, + 10717 + ]], + [[ + 10809, + 10798, + 10725 + ]], + [[ + 10913, + 10938, + 10912 + ]], + [[ + 10932, + 10926, + 10835 + ]], + [[ + 10927, + 10943, + 10944 + ]], + [[ + 10949, + 10876, + 10941 + ]], + [[ + 10026, + 10941, + 10943 + ]], + [[ + 10876, + 10866, + 10941 + ]], + [[ + 10016, + 10674, + 10017 + ]], + [[ + 10016, + 10664, + 10676 + ]], + [[ + 10743, + 10894, + 10767 + ]], + [[ + 10950, + 10038, + 10758 + ]], + [[ + 10894, + 10951, + 10758 + ]], + [[ + 9996, + 10038, + 10950 + ]], + [[ + 9996, + 10894, + 10893 + ]], + [[ + 10951, + 10950, + 10758 + ]], + [[ + 9996, + 10951, + 10894 + ]], + [[ + 9996, + 10950, + 10951 + ]], + [[ + 10931, + 10782, + 10781 + ]], + [[ + 10931, + 10709, + 10782 + ]], + [[ + 10785, + 10684, + 10686 + ]], + [[ + 10703, + 7202, + 10684 + ]], + [[ + 7195, + 10685, + 7203 + ]], + [[ + 7195, + 10683, + 10685 + ]], + [[ + 10680, + 10814, + 7265 + ]], + [[ + 10813, + 10864, + 10814 + ]], + [[ + 7267, + 10681, + 7265 + ]], + [[ + 7183, + 10813, + 10680 + ]], + [[ + 10924, + 10837, + 10708 + ]], + [[ + 10911, + 10835, + 10837 + ]], + [[ + 10883, + 10790, + 517 + ]], + [[ + 10883, + 10916, + 10790 + ]], + [[ + 10694, + 10707, + 7264 + ]], + [[ + 10706, + 10824, + 10820 + ]], + [[ + 10706, + 10820, + 10707 + ]], + [[ + 10811, + 10718, + 10820 + ]], + [[ + 623, + 10860, + 10904 + ]], + [[ + 623, + 625, + 10860 + ]], + [[ + 10817, + 10921, + 10739 + ]], + [[ + 10818, + 10679, + 10921 + ]], + [[ + 6661, + 10817, + 10739 + ]], + [[ + 6661, + 6662, + 10817 + ]], + [[ + 10896, + 10922, + 10886 + ]], + [[ + 10945, + 10891, + 10915 + ]], + [[ + 10769, + 10713, + 10712 + ]], + [[ + 10879, + 10862, + 10713 + ]], + [[ + 10827, + 10826, + 10909 + ]], + [[ + 10944, + 10847, + 10826 + ]], + [[ + 10796, + 10838, + 10840 + ]], + [[ + 10836, + 10926, + 10839 + ]], + [[ + 10719, + 10724, + 10848 + ]], + [[ + 10849, + 10717, + 10724 + ]], + [[ + 10706, + 10929, + 10824 + ]], + [[ + 10706, + 10689, + 10929 + ]], + [[ + 10868, + 10870, + 10809 + ]], + [[ + 10868, + 10869, + 10870 + ]], + [[ + 10870, + 10808, + 10809 + ]], + [[ + 10870, + 10770, + 10808 + ]], + [[ + 10785, + 10686, + 10928 + ]], + [[ + 10684, + 10683, + 10686 + ]], + [[ + 10908, + 10698, + 7217 + ]], + [[ + 10908, + 10699, + 10698 + ]], + [[ + 7268, + 10681, + 7267 + ]], + [[ + 7268, + 10802, + 10681 + ]], + [[ + 10026, + 10949, + 10941 + ]], + [[ + 10026, + 10893, + 10949 + ]], + [[ + 10026, + 10947, + 10936 + ]], + [[ + 10944, + 10826, + 10927 + ]], + [[ + 10901, + 10874, + 10777 + ]], + [[ + 10927, + 10826, + 10775 + ]], + [[ + 10859, + 10764, + 10765 + ]], + [[ + 10768, + 647, + 10764 + ]], + [[ + 10892, + 10875, + 10865 + ]], + [[ + 10892, + 10742, + 10875 + ]], + [[ + 10934, + 10952, + 10935 + ]], + [[ + 10935, + 10026, + 10936 + ]], + [[ + 10777, + 10874, + 10775 + ]], + [[ + 10952, + 10934, + 10874 + ]], + [[ + 10667, + 10935, + 10665 + ]], + [[ + 10667, + 10026, + 10935 + ]], + [[ + 10665, + 10952, + 10874 + ]], + [[ + 10665, + 10935, + 10952 + ]], + [[ + 513, + 10889, + 627 + ]], + [[ + 10756, + 10887, + 10757 + ]], + [[ + 10898, + 10756, + 10889 + ]], + [[ + 10898, + 10791, + 10887 + ]], + [[ + 513, + 10898, + 10889 + ]], + [[ + 513, + 10791, + 10898 + ]], + [[ + 10896, + 10902, + 10897 + ]], + [[ + 10886, + 10888, + 10902 + ]], + [[ + 6685, + 10747, + 6684 + ]], + [[ + 10749, + 10748, + 10747 + ]], + [[ + 10671, + 10676, + 10673 + ]], + [[ + 10674, + 10016, + 10676 + ]], + [[ + 10943, + 10947, + 10026 + ]], + [[ + 10943, + 10927, + 10947 + ]], + [[ + 10722, + 10711, + 10727 + ]], + [[ + 10798, + 10770, + 10711 + ]], + [[ + 10919, + 10937, + 10913 + ]], + [[ + 10933, + 10932, + 10938 + ]], + [[ + 10937, + 10946, + 10913 + ]], + [[ + 10937, + 10953, + 10946 + ]], + [[ + 10672, + 10668, + 10669 + ]], + [[ + 10673, + 10676, + 10668 + ]], + [[ + 10933, + 10937, + 10856 + ]], + [[ + 10953, + 10938, + 10946 + ]], + [[ + 10710, + 10923, + 10708 + ]], + [[ + 10911, + 10837, + 10924 + ]], + [[ + 10911, + 10923, + 10710 + ]], + [[ + 10911, + 10924, + 10923 + ]], + [[ + 10933, + 10953, + 10937 + ]], + [[ + 10933, + 10938, + 10953 + ]], + [[ + 10806, + 10769, + 10770 + ]], + [[ + 10733, + 10713, + 10769 + ]], + [[ + 10922, + 10945, + 10915 + ]], + [[ + 10877, + 10742, + 10891 + ]], + [[ + 10878, + 10945, + 10922 + ]], + [[ + 10878, + 10877, + 10945 + ]], + [[ + 6683, + 10735, + 10872 + ]], + [[ + 10751, + 10736, + 10735 + ]], + [[ + 10915, + 10763, + 10755 + ]], + [[ + 10915, + 10801, + 10763 + ]], + [[ + 6750, + 10723, + 10727 + ]], + [[ + 10721, + 10798, + 10722 + ]], + [[ + 10799, + 10723, + 10848 + ]], + [[ + 10722, + 10727, + 10723 + ]], + [[ + 10724, + 10719, + 10720 + ]], + [[ + 10723, + 6750, + 10719 + ]], + [[ + 10799, + 10721, + 10723 + ]], + [[ + 10799, + 10798, + 10721 + ]], + [[ + 10766, + 10760, + 10861 + ]], + [[ + 10759, + 10768, + 10760 + ]], + [[ + 7265, + 10954, + 7264 + ]], + [[ + 7265, + 10814, + 10954 + ]], + [[ + 10954, + 10692, + 7264 + ]], + [[ + 10954, + 10814, + 10692 + ]], + [[ + 10734, + 10839, + 10783 + ]], + [[ + 10838, + 10836, + 10839 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b493349d4-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2015-01-14", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.9958a905655d4ef0bdce4cc3ddf59082", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10955, + 8735, + 8729 + ]], + [[ + 3038, + 8729, + 8737 + ]], + [[ + 8731, + 8735, + 1885 + ]], + [[ + 1887, + 1886, + 3037 + ]], + [[ + 1885, + 8735, + 1886 + ]], + [[ + 8731, + 1887, + 3036 + ]], + [[ + 8731, + 1884, + 1887 + ]], + [[ + 8731, + 1885, + 1884 + ]], + [[ + 1886, + 8735, + 10955 + ]], + [[ + 3039, + 3038, + 8737 + ]], + [[ + 3037, + 10955, + 3038 + ]], + [[ + 3036, + 3039, + 8737 + ]], + [[ + 8731, + 3036, + 8737 + ]], + [[ + 1887, + 3037, + 3036 + ]], + [[ + 3038, + 10955, + 8729 + ]], + [[ + 3037, + 1886, + 10955 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b49340dd5-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef660349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10956, + 10957, + 10958 + ]], + [[ + 10956, + 10958, + 10959 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4935bab7-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5ca649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 6732, + 6729, + 6731 + ]], + [[ + 10960, + 7005, + 7006 + ]], + [[ + 10961, + 7004, + 7005 + ]], + [[ + 10962, + 6981, + 7004 + ]], + [[ + 10962, + 10963, + 10964 + ]], + [[ + 10965, + 6986, + 6987 + ]], + [[ + 7007, + 6729, + 6732 + ]], + [[ + 10966, + 7007, + 6732 + ]], + [[ + 10965, + 10966, + 10967 + ]], + [[ + 10968, + 10969, + 10963 + ]], + [[ + 6986, + 10966, + 6732 + ]], + [[ + 6986, + 10967, + 10966 + ]], + [[ + 7007, + 10969, + 7006 + ]], + [[ + 10970, + 10966, + 10969 + ]], + [[ + 10968, + 10971, + 10960 + ]], + [[ + 10971, + 7004, + 10961 + ]], + [[ + 7007, + 10970, + 10969 + ]], + [[ + 7007, + 10966, + 10970 + ]], + [[ + 10972, + 10964, + 10965 + ]], + [[ + 10963, + 10969, + 10966 + ]], + [[ + 10965, + 10963, + 10966 + ]], + [[ + 10971, + 10961, + 10960 + ]], + [[ + 10962, + 10971, + 10963 + ]], + [[ + 7006, + 10969, + 10968 + ]], + [[ + 6981, + 10964, + 10972 + ]], + [[ + 6981, + 10962, + 10964 + ]], + [[ + 10968, + 10960, + 7006 + ]], + [[ + 10961, + 7005, + 10960 + ]], + [[ + 6981, + 10972, + 6987 + ]], + [[ + 10964, + 10963, + 10965 + ]], + [[ + 10963, + 10971, + 10968 + ]], + [[ + 10962, + 7004, + 10971 + ]], + [[ + 10972, + 10965, + 6987 + ]], + [[ + 10967, + 6986, + 10965 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b49387a1d-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "open verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef812549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10973, + 10974, + 10975 + ]], + [[ + 10974, + 10976, + 10975 + ]], + [[ + 10975, + 10977, + 10978 + ]], + [[ + 10978, + 10977, + 10979 + ]], + [[ + 10975, + 10980, + 10977 + ]], + [[ + 10975, + 10981, + 10980 + ]], + [[ + 10980, + 10982, + 10983 + ]], + [[ + 10980, + 10981, + 10982 + ]], + [[ + 10975, + 10984, + 10981 + ]], + [[ + 10981, + 10985, + 10986 + ]], + [[ + 10981, + 10984, + 10985 + ]], + [[ + 10975, + 10987, + 10984 + ]], + [[ + 10984, + 10988, + 10989 + ]], + [[ + 10989, + 10990, + 10991 + ]], + [[ + 10989, + 10988, + 10990 + ]], + [[ + 10990, + 10988, + 10992 + ]], + [[ + 10984, + 10993, + 10988 + ]], + [[ + 10988, + 10993, + 10994 + ]], + [[ + 10994, + 10993, + 10995 + ]], + [[ + 10984, + 10987, + 10993 + ]], + [[ + 10975, + 10976, + 10987 + ]], + [[ + 10987, + 10976, + 10996 + ]], + [[ + 10974, + 10997, + 10976 + ]], + [[ + 10976, + 10997, + 10998 + ]], + [[ + 10998, + 10999, + 11000 + ]], + [[ + 11000, + 11001, + 11002 + ]], + [[ + 11000, + 10999, + 11001 + ]], + [[ + 11001, + 10999, + 11003 + ]], + [[ + 10998, + 11004, + 10999 + ]], + [[ + 10999, + 11005, + 11006 + ]], + [[ + 10999, + 11007, + 11005 + ]], + [[ + 10999, + 11008, + 11007 + ]], + [[ + 10999, + 11004, + 11008 + ]], + [[ + 11008, + 11004, + 11009 + ]], + [[ + 11009, + 11010, + 11011 + ]], + [[ + 11011, + 11010, + 11012 + ]], + [[ + 11009, + 11004, + 11010 + ]], + [[ + 10998, + 10997, + 11004 + ]], + [[ + 11004, + 11013, + 11014 + ]], + [[ + 11004, + 11015, + 11013 + ]], + [[ + 11004, + 10997, + 11015 + ]], + [[ + 11015, + 11016, + 11017 + ]], + [[ + 11015, + 11018, + 11016 + ]], + [[ + 11016, + 11018, + 11019 + ]], + [[ + 11015, + 11020, + 11018 + ]], + [[ + 11018, + 11020, + 11021 + ]], + [[ + 11015, + 11022, + 11020 + ]], + [[ + 11020, + 11022, + 11023 + ]], + [[ + 11023, + 11022, + 11024 + ]], + [[ + 11024, + 11022, + 11025 + ]], + [[ + 11015, + 11026, + 11022 + ]], + [[ + 11022, + 11026, + 11027 + ]], + [[ + 11027, + 11026, + 11028 + ]], + [[ + 11015, + 10997, + 11026 + ]], + [[ + 11026, + 11029, + 11030 + ]], + [[ + 11030, + 11031, + 11032 + ]], + [[ + 11030, + 11029, + 11031 + ]], + [[ + 11026, + 11033, + 11029 + ]], + [[ + 11029, + 11033, + 11034 + ]], + [[ + 11026, + 11035, + 11033 + ]], + [[ + 11033, + 11036, + 11037 + ]], + [[ + 11037, + 11036, + 11038 + ]], + [[ + 11033, + 11039, + 11036 + ]], + [[ + 11036, + 11039, + 11040 + ]], + [[ + 11033, + 11035, + 11039 + ]], + [[ + 11039, + 11041, + 11042 + ]], + [[ + 11039, + 11043, + 11041 + ]], + [[ + 11039, + 11044, + 11043 + ]], + [[ + 11039, + 11035, + 11044 + ]], + [[ + 11044, + 11035, + 11045 + ]], + [[ + 11045, + 11046, + 11047 + ]], + [[ + 11045, + 11035, + 11046 + ]], + [[ + 11026, + 11048, + 11035 + ]], + [[ + 11035, + 11049, + 11050 + ]], + [[ + 11050, + 11049, + 11051 + ]], + [[ + 11035, + 11052, + 11049 + ]], + [[ + 11035, + 11048, + 11052 + ]], + [[ + 11052, + 11053, + 11054 + ]], + [[ + 11052, + 11048, + 11053 + ]], + [[ + 11053, + 11055, + 11056 + ]], + [[ + 11053, + 11048, + 11055 + ]], + [[ + 11055, + 11057, + 11058 + ]], + [[ + 11058, + 11059, + 11060 + ]], + [[ + 11058, + 11057, + 11059 + ]], + [[ + 11055, + 11048, + 11057 + ]], + [[ + 11057, + 11048, + 11061 + ]], + [[ + 11061, + 11062, + 11063 + ]], + [[ + 11061, + 11048, + 11062 + ]], + [[ + 11062, + 11048, + 11064 + ]], + [[ + 11026, + 10997, + 11048 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b4939b281-00b4-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_fysiekvoorkomen": "erf", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef5f4049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11065, + 299, + 11066 + ]], + [[ + 11065, + 11066, + 11067 + ]], + [[ + 11068, + 11069, + 11065 + ]], + [[ + 298, + 299, + 11065 + ]], + [[ + 11068, + 11065, + 11067 + ]], + [[ + 11069, + 298, + 11065 + ]], + [[ + 298, + 11068, + 11067 + ]], + [[ + 298, + 11069, + 11068 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b69a8d7bc-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "P0028", + "class": "waterloop", + "creationdate": "2014-07-10", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "P0028.3600507750384e9faeac329b0fffe720", + "lv_publicatiedatum": "2016-06-07T16:00:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:57:13.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11070, + 11071, + 11072 + ]], + [[ + 11073, + 11070, + 11074 + ]], + [[ + 11075, + 11076, + 11074 + ]], + [[ + 11077, + 11075, + 11074 + ]], + [[ + 11078, + 11077, + 11074 + ]], + [[ + 11079, + 11078, + 11074 + ]], + [[ + 11080, + 11079, + 11074 + ]], + [[ + 11081, + 11082, + 11083 + ]], + [[ + 11084, + 11085, + 11086 + ]], + [[ + 11087, + 11088, + 11089 + ]], + [[ + 11090, + 11091, + 11086 + ]], + [[ + 11086, + 11092, + 11093 + ]], + [[ + 11094, + 11090, + 11086 + ]], + [[ + 11095, + 11096, + 11097 + ]], + [[ + 11098, + 11095, + 11097 + ]], + [[ + 11098, + 11099, + 11095 + ]], + [[ + 11098, + 11100, + 11099 + ]], + [[ + 11097, + 11101, + 11102 + ]], + [[ + 11102, + 11101, + 11103 + ]], + [[ + 11104, + 11105, + 11106 + ]], + [[ + 11104, + 11107, + 11108 + ]], + [[ + 11104, + 11109, + 11110 + ]], + [[ + 11104, + 11108, + 11109 + ]], + [[ + 11111, + 11104, + 11110 + ]], + [[ + 11104, + 11112, + 11107 + ]], + [[ + 11113, + 11114, + 11088 + ]], + [[ + 11104, + 11115, + 11098 + ]], + [[ + 11091, + 11084, + 11086 + ]], + [[ + 11116, + 11117, + 11118 + ]], + [[ + 11119, + 11118, + 11081 + ]], + [[ + 11085, + 11120, + 11086 + ]], + [[ + 11121, + 11081, + 11083 + ]], + [[ + 11120, + 11122, + 11086 + ]], + [[ + 11082, + 11080, + 11123 + ]], + [[ + 11098, + 11102, + 11104 + ]], + [[ + 11124, + 11086, + 11122 + ]], + [[ + 11125, + 11086, + 11124 + ]], + [[ + 11126, + 11086, + 11125 + ]], + [[ + 11127, + 11086, + 11126 + ]], + [[ + 11128, + 11086, + 11127 + ]], + [[ + 11129, + 11130, + 11088 + ]], + [[ + 11131, + 11123, + 11074 + ]], + [[ + 11070, + 11072, + 11074 + ]], + [[ + 11132, + 11133, + 11072 + ]], + [[ + 11134, + 11135, + 11072 + ]], + [[ + 11134, + 11072, + 11136 + ]], + [[ + 11136, + 11072, + 11137 + ]], + [[ + 11137, + 11072, + 11138 + ]], + [[ + 11138, + 11072, + 11139 + ]], + [[ + 11140, + 11138, + 11139 + ]], + [[ + 11141, + 11140, + 11139 + ]], + [[ + 11142, + 11141, + 11139 + ]], + [[ + 11143, + 11142, + 11139 + ]], + [[ + 11144, + 11143, + 11139 + ]], + [[ + 11145, + 11144, + 11139 + ]], + [[ + 11146, + 11145, + 11139 + ]], + [[ + 11147, + 11146, + 11139 + ]], + [[ + 11148, + 11147, + 11139 + ]], + [[ + 11149, + 11148, + 11139 + ]], + [[ + 11139, + 11072, + 11150 + ]], + [[ + 11150, + 11072, + 11151 + ]], + [[ + 11152, + 11150, + 11153 + ]], + [[ + 11154, + 11152, + 11153 + ]], + [[ + 11155, + 11156, + 11157 + ]], + [[ + 11153, + 11150, + 11158 + ]], + [[ + 11159, + 11160, + 11150 + ]], + [[ + 11158, + 11150, + 11161 + ]], + [[ + 11162, + 11163, + 11150 + ]], + [[ + 11161, + 11150, + 11164 + ]], + [[ + 11165, + 11166, + 11150 + ]], + [[ + 11164, + 11150, + 11166 + ]], + [[ + 11123, + 11080, + 11074 + ]], + [[ + 11121, + 11083, + 11167 + ]], + [[ + 11150, + 11163, + 11165 + ]], + [[ + 11123, + 11083, + 11082 + ]], + [[ + 11168, + 11169, + 11167 + ]], + [[ + 11170, + 11171, + 11172 + ]], + [[ + 11150, + 11160, + 11162 + ]], + [[ + 11168, + 11171, + 11173 + ]], + [[ + 11174, + 11175, + 11176 + ]], + [[ + 11177, + 11156, + 11178 + ]], + [[ + 11151, + 11179, + 11150 + ]], + [[ + 11159, + 11150, + 11179 + ]], + [[ + 11151, + 11072, + 11133 + ]], + [[ + 11180, + 11132, + 11072 + ]], + [[ + 11181, + 11180, + 11072 + ]], + [[ + 11072, + 11182, + 11181 + ]], + [[ + 11072, + 11183, + 11182 + ]], + [[ + 11072, + 11184, + 11183 + ]], + [[ + 11072, + 11185, + 11184 + ]], + [[ + 11072, + 11071, + 11185 + ]], + [[ + 11076, + 11073, + 11074 + ]], + [[ + 11186, + 11187, + 11188 + ]], + [[ + 11189, + 11190, + 11117 + ]], + [[ + 11191, + 11192, + 11190 + ]], + [[ + 11193, + 11194, + 11192 + ]], + [[ + 11195, + 11196, + 11194 + ]], + [[ + 11197, + 11198, + 11196 + ]], + [[ + 11199, + 11200, + 11198 + ]], + [[ + 11201, + 11202, + 11200 + ]], + [[ + 11203, + 11204, + 11202 + ]], + [[ + 11205, + 11089, + 11204 + ]], + [[ + 11104, + 11111, + 11115 + ]], + [[ + 11094, + 11086, + 11093 + ]], + [[ + 11102, + 11098, + 11097 + ]], + [[ + 11088, + 11130, + 11113 + ]], + [[ + 11086, + 11103, + 11206 + ]], + [[ + 11207, + 11129, + 11088 + ]], + [[ + 11207, + 11208, + 11129 + ]], + [[ + 11087, + 11207, + 11088 + ]], + [[ + 11087, + 11209, + 11207 + ]], + [[ + 11210, + 11211, + 11209 + ]], + [[ + 11210, + 11212, + 11211 + ]], + [[ + 11210, + 11213, + 11212 + ]], + [[ + 11214, + 11213, + 11215 + ]], + [[ + 11216, + 11214, + 11217 + ]], + [[ + 11218, + 11216, + 11217 + ]], + [[ + 11219, + 11218, + 11220 + ]], + [[ + 11221, + 11219, + 11222 + ]], + [[ + 11223, + 11221, + 11224 + ]], + [[ + 11225, + 11223, + 11226 + ]], + [[ + 11227, + 11225, + 11228 + ]], + [[ + 11229, + 11227, + 11230 + ]], + [[ + 11230, + 11227, + 11231 + ]], + [[ + 11231, + 11227, + 11232 + ]], + [[ + 11232, + 11227, + 11228 + ]], + [[ + 11228, + 11225, + 11233 + ]], + [[ + 11233, + 11225, + 11226 + ]], + [[ + 11226, + 11223, + 11234 + ]], + [[ + 11234, + 11223, + 11235 + ]], + [[ + 11235, + 11223, + 11224 + ]], + [[ + 11224, + 11221, + 11222 + ]], + [[ + 11222, + 11219, + 11220 + ]], + [[ + 11220, + 11218, + 11217 + ]], + [[ + 11236, + 11220, + 11217 + ]], + [[ + 11237, + 11236, + 11217 + ]], + [[ + 11238, + 11237, + 11217 + ]], + [[ + 11239, + 11238, + 11217 + ]], + [[ + 11240, + 11239, + 11217 + ]], + [[ + 11241, + 11240, + 11217 + ]], + [[ + 11242, + 11241, + 11217 + ]], + [[ + 11243, + 11242, + 11244 + ]], + [[ + 11245, + 11243, + 11244 + ]], + [[ + 11246, + 11245, + 11244 + ]], + [[ + 11247, + 11246, + 11244 + ]], + [[ + 11248, + 11247, + 11244 + ]], + [[ + 11188, + 11248, + 11186 + ]], + [[ + 11244, + 11186, + 11248 + ]], + [[ + 11249, + 11250, + 11251 + ]], + [[ + 11251, + 11186, + 11244 + ]], + [[ + 11249, + 11251, + 11244 + ]], + [[ + 11244, + 11242, + 11217 + ]], + [[ + 11252, + 11253, + 11177 + ]], + [[ + 11217, + 11214, + 11215 + ]], + [[ + 11174, + 11254, + 11172 + ]], + [[ + 11215, + 11213, + 11210 + ]], + [[ + 11209, + 11087, + 11210 + ]], + [[ + 11175, + 11253, + 11255 + ]], + [[ + 11205, + 11256, + 11089 + ]], + [[ + 11087, + 11089, + 11256 + ]], + [[ + 11257, + 11258, + 11157 + ]], + [[ + 11204, + 11259, + 11205 + ]], + [[ + 11260, + 11261, + 11262 + ]], + [[ + 11204, + 11263, + 11259 + ]], + [[ + 11257, + 11261, + 11264 + ]], + [[ + 11263, + 11204, + 11203 + ]], + [[ + 11203, + 11202, + 11265 + ]], + [[ + 11265, + 11202, + 11201 + ]], + [[ + 11201, + 11200, + 11266 + ]], + [[ + 11266, + 11200, + 11199 + ]], + [[ + 11199, + 11198, + 11267 + ]], + [[ + 11267, + 11198, + 11268 + ]], + [[ + 11268, + 11198, + 11197 + ]], + [[ + 11197, + 11196, + 11269 + ]], + [[ + 11269, + 11196, + 11195 + ]], + [[ + 11195, + 11194, + 11270 + ]], + [[ + 11270, + 11194, + 11271 + ]], + [[ + 11271, + 11194, + 11193 + ]], + [[ + 11193, + 11192, + 11272 + ]], + [[ + 11272, + 11192, + 11273 + ]], + [[ + 11273, + 11192, + 11191 + ]], + [[ + 11189, + 11274, + 11190 + ]], + [[ + 11191, + 11190, + 11274 + ]], + [[ + 11275, + 11189, + 11117 + ]], + [[ + 11276, + 11275, + 11117 + ]], + [[ + 11116, + 11276, + 11117 + ]], + [[ + 11277, + 11278, + 11262 + ]], + [[ + 11118, + 11279, + 11116 + ]], + [[ + 11118, + 11280, + 11279 + ]], + [[ + 11281, + 11282, + 11283 + ]], + [[ + 11118, + 11119, + 11280 + ]], + [[ + 11277, + 11282, + 11284 + ]], + [[ + 11119, + 11081, + 11285 + ]], + [[ + 11285, + 11081, + 11121 + ]], + [[ + 11286, + 11287, + 11167 + ]], + [[ + 11121, + 11167, + 11287 + ]], + [[ + 11169, + 11286, + 11167 + ]], + [[ + 11288, + 11289, + 11283 + ]], + [[ + 11168, + 11290, + 11169 + ]], + [[ + 11168, + 11291, + 11290 + ]], + [[ + 11292, + 11293, + 11294 + ]], + [[ + 11168, + 11173, + 11291 + ]], + [[ + 11288, + 11293, + 11295 + ]], + [[ + 11173, + 11171, + 11296 + ]], + [[ + 11170, + 11297, + 11171 + ]], + [[ + 11296, + 11171, + 11297 + ]], + [[ + 11298, + 11170, + 11172 + ]], + [[ + 11299, + 11300, + 11294 + ]], + [[ + 11172, + 11301, + 11298 + ]], + [[ + 11302, + 11303, + 11304 + ]], + [[ + 11172, + 11254, + 11301 + ]], + [[ + 11299, + 11303, + 11305 + ]], + [[ + 11254, + 11174, + 11306 + ]], + [[ + 11176, + 11307, + 11174 + ]], + [[ + 11306, + 11174, + 11307 + ]], + [[ + 11308, + 11176, + 11175 + ]], + [[ + 11309, + 11302, + 11304 + ]], + [[ + 11302, + 11310, + 11311 + ]], + [[ + 11175, + 11312, + 11308 + ]], + [[ + 11309, + 11310, + 11302 + ]], + [[ + 11313, + 11255, + 11253 + ]], + [[ + 11312, + 11175, + 11255 + ]], + [[ + 11314, + 11313, + 11253 + ]], + [[ + 11315, + 11316, + 11311 + ]], + [[ + 11317, + 11318, + 11319 + ]], + [[ + 11253, + 11252, + 11314 + ]], + [[ + 11315, + 11318, + 11316 + ]], + [[ + 11252, + 11177, + 11320 + ]], + [[ + 11320, + 11177, + 11321 + ]], + [[ + 11321, + 11177, + 11322 + ]], + [[ + 11322, + 11177, + 11178 + ]], + [[ + 11178, + 11156, + 11323 + ]], + [[ + 11323, + 11156, + 11324 + ]], + [[ + 11324, + 11156, + 11155 + ]], + [[ + 11155, + 11157, + 11325 + ]], + [[ + 11325, + 11157, + 11326 + ]], + [[ + 11326, + 11157, + 11327 + ]], + [[ + 11327, + 11157, + 11258 + ]], + [[ + 11258, + 11257, + 11328 + ]], + [[ + 11328, + 11257, + 11329 + ]], + [[ + 11329, + 11257, + 11330 + ]], + [[ + 11330, + 11257, + 11331 + ]], + [[ + 11331, + 11257, + 11264 + ]], + [[ + 11264, + 11261, + 11332 + ]], + [[ + 11332, + 11261, + 11333 + ]], + [[ + 11333, + 11261, + 11334 + ]], + [[ + 11334, + 11261, + 11335 + ]], + [[ + 11335, + 11261, + 11260 + ]], + [[ + 11260, + 11262, + 11278 + ]], + [[ + 11278, + 11277, + 11284 + ]], + [[ + 11284, + 11282, + 11336 + ]], + [[ + 11336, + 11282, + 11281 + ]], + [[ + 11281, + 11283, + 11337 + ]], + [[ + 11338, + 11339, + 11283 + ]], + [[ + 11337, + 11283, + 11339 + ]], + [[ + 11340, + 11338, + 11283 + ]], + [[ + 11341, + 11340, + 11283 + ]], + [[ + 11289, + 11341, + 11283 + ]], + [[ + 11342, + 11289, + 11288 + ]], + [[ + 11343, + 11342, + 11288 + ]], + [[ + 11344, + 11343, + 11288 + ]], + [[ + 11345, + 11344, + 11288 + ]], + [[ + 11295, + 11345, + 11288 + ]], + [[ + 11346, + 11295, + 11293 + ]], + [[ + 11347, + 11346, + 11293 + ]], + [[ + 11348, + 11347, + 11293 + ]], + [[ + 11349, + 11348, + 11293 + ]], + [[ + 11292, + 11349, + 11293 + ]], + [[ + 11350, + 11292, + 11294 + ]], + [[ + 11351, + 11350, + 11294 + ]], + [[ + 11352, + 11351, + 11294 + ]], + [[ + 11300, + 11352, + 11294 + ]], + [[ + 11353, + 11300, + 11299 + ]], + [[ + 11354, + 11353, + 11299 + ]], + [[ + 11355, + 11354, + 11299 + ]], + [[ + 11305, + 11355, + 11299 + ]], + [[ + 11356, + 11305, + 11303 + ]], + [[ + 11357, + 11356, + 11303 + ]], + [[ + 11302, + 11357, + 11303 + ]], + [[ + 11316, + 11302, + 11311 + ]], + [[ + 11106, + 11105, + 11319 + ]], + [[ + 11318, + 11358, + 11316 + ]], + [[ + 11318, + 11359, + 11358 + ]], + [[ + 11318, + 11360, + 11359 + ]], + [[ + 11318, + 11361, + 11360 + ]], + [[ + 11318, + 11362, + 11361 + ]], + [[ + 11106, + 11112, + 11104 + ]], + [[ + 11362, + 11318, + 11363 + ]], + [[ + 11363, + 11318, + 11364 + ]], + [[ + 11364, + 11318, + 11365 + ]], + [[ + 11365, + 11318, + 11366 + ]], + [[ + 11366, + 11318, + 11367 + ]], + [[ + 11367, + 11318, + 11368 + ]], + [[ + 11368, + 11318, + 11369 + ]], + [[ + 11369, + 11318, + 11370 + ]], + [[ + 11370, + 11318, + 11371 + ]], + [[ + 11371, + 11318, + 11372 + ]], + [[ + 11372, + 11318, + 11317 + ]], + [[ + 11317, + 11319, + 11373 + ]], + [[ + 11373, + 11319, + 11105 + ]], + [[ + 11092, + 11086, + 11206 + ]], + [[ + 11102, + 11103, + 11086 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "WaterBody" + }, + "b80066d8d-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 11374, + 11375, + 11376 + ]], + [[ + 11374, + 11376, + 11377 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b8009a157-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef0bbe49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [[[ + 11378, + 11379, + 11380 + ]]], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b82575848-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "P0028", + "creationdate": "2014-07-10", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "P0028.a6c08b19180041c1972275ff0fc7c5ce", + "lv_publicatiedatum": "2016-06-07T16:00:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:55:21.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 4137, + 4135, + 11381 + ]], + [[ + 4135, + 4133, + 11382 + ]], + [[ + 4346, + 11383, + 4349 + ]], + [[ + 11384, + 4097, + 11385 + ]], + [[ + 11385, + 4090, + 11386 + ]], + [[ + 11386, + 4090, + 4079 + ]], + [[ + 11387, + 11388, + 3990 + ]], + [[ + 11389, + 3976, + 11390 + ]], + [[ + 11391, + 11392, + 11393 + ]], + [[ + 11394, + 11395, + 11396 + ]], + [[ + 11397, + 4003, + 11398 + ]], + [[ + 11399, + 11364, + 11400 + ]], + [[ + 11399, + 11401, + 11364 + ]], + [[ + 11402, + 11403, + 11363 + ]], + [[ + 11402, + 11404, + 11403 + ]], + [[ + 11405, + 11406, + 11404 + ]], + [[ + 11407, + 11408, + 11406 + ]], + [[ + 3972, + 11358, + 11408 + ]], + [[ + 11409, + 4349, + 11410 + ]], + [[ + 11411, + 11409, + 11412 + ]], + [[ + 11413, + 11409, + 11414 + ]], + [[ + 11415, + 11412, + 11409 + ]], + [[ + 11416, + 11409, + 11417 + ]], + [[ + 11418, + 11414, + 11409 + ]], + [[ + 11416, + 11418, + 11409 + ]], + [[ + 11409, + 11419, + 11420 + ]], + [[ + 11409, + 11421, + 11419 + ]], + [[ + 11409, + 11422, + 11421 + ]], + [[ + 11409, + 11423, + 11422 + ]], + [[ + 11409, + 11410, + 11423 + ]], + [[ + 4349, + 11424, + 11410 + ]], + [[ + 4349, + 11425, + 11424 + ]], + [[ + 4349, + 11426, + 11425 + ]], + [[ + 4349, + 11427, + 11426 + ]], + [[ + 4349, + 11428, + 11427 + ]], + [[ + 4349, + 11429, + 11428 + ]], + [[ + 4349, + 11430, + 11429 + ]], + [[ + 4349, + 11431, + 11430 + ]], + [[ + 4349, + 11432, + 11431 + ]], + [[ + 4349, + 11433, + 11432 + ]], + [[ + 4349, + 11434, + 11433 + ]], + [[ + 4349, + 11435, + 11434 + ]], + [[ + 4349, + 11436, + 11435 + ]], + [[ + 4349, + 11437, + 11436 + ]], + [[ + 4349, + 11438, + 11437 + ]], + [[ + 4349, + 11439, + 11438 + ]], + [[ + 11440, + 4097, + 11384 + ]], + [[ + 4346, + 11441, + 11383 + ]], + [[ + 11442, + 11316, + 11358 + ]], + [[ + 4798, + 11441, + 4345 + ]], + [[ + 11443, + 4762, + 11409 + ]], + [[ + 4345, + 11441, + 4346 + ]], + [[ + 11417, + 11409, + 11420 + ]], + [[ + 11383, + 11439, + 4349 + ]], + [[ + 11390, + 11444, + 11389 + ]], + [[ + 11445, + 11446, + 11447 + ]], + [[ + 4762, + 11302, + 11448 + ]], + [[ + 11398, + 4003, + 11449 + ]], + [[ + 11444, + 4762, + 11448 + ]], + [[ + 11450, + 3989, + 11392 + ]], + [[ + 11450, + 11451, + 3989 + ]], + [[ + 3974, + 11358, + 3972 + ]], + [[ + 11452, + 11402, + 11363 + ]], + [[ + 11453, + 3989, + 11454 + ]], + [[ + 11392, + 11391, + 11455 + ]], + [[ + 11456, + 3990, + 11388 + ]], + [[ + 11457, + 3982, + 3981 + ]], + [[ + 11458, + 11457, + 3981 + ]], + [[ + 11459, + 11460, + 3964 + ]], + [[ + 11461, + 4010, + 3982 + ]], + [[ + 11462, + 11463, + 4010 + ]], + [[ + 11464, + 11465, + 11466 + ]], + [[ + 11467, + 4010, + 11468 + ]], + [[ + 11468, + 4010, + 11469 + ]], + [[ + 11385, + 4097, + 4090 + ]], + [[ + 4133, + 4097, + 11440 + ]], + [[ + 11382, + 4133, + 11440 + ]], + [[ + 11381, + 4135, + 11382 + ]], + [[ + 11470, + 3954, + 11381 + ]], + [[ + 11381, + 3954, + 4137 + ]], + [[ + 11470, + 11471, + 3959 + ]], + [[ + 3954, + 11470, + 3959 + ]], + [[ + 11472, + 11454, + 3989 + ]], + [[ + 11388, + 11447, + 11456 + ]], + [[ + 11393, + 11395, + 11394 + ]], + [[ + 4003, + 11397, + 11395 + ]], + [[ + 11402, + 11452, + 11404 + ]], + [[ + 11473, + 11407, + 11405 + ]], + [[ + 11474, + 11475, + 4010 + ]], + [[ + 11467, + 11476, + 11477 + ]], + [[ + 11478, + 11479, + 4010 + ]], + [[ + 11480, + 11481, + 11479 + ]], + [[ + 11482, + 11483, + 11461 + ]], + [[ + 11480, + 11479, + 11483 + ]], + [[ + 11405, + 11407, + 11406 + ]], + [[ + 11484, + 11408, + 11407 + ]], + [[ + 11479, + 11481, + 4010 + ]], + [[ + 11462, + 11485, + 11463 + ]], + [[ + 11460, + 11486, + 11487 + ]], + [[ + 11487, + 4079, + 11460 + ]], + [[ + 11480, + 11463, + 11485 + ]], + [[ + 11480, + 11488, + 11463 + ]], + [[ + 11451, + 11388, + 11454 + ]], + [[ + 11451, + 11447, + 11388 + ]], + [[ + 11302, + 11443, + 11411 + ]], + [[ + 11489, + 4762, + 11443 + ]], + [[ + 11490, + 11491, + 3981 + ]], + [[ + 11492, + 11490, + 3990 + ]], + [[ + 11473, + 11484, + 11407 + ]], + [[ + 3972, + 11408, + 11484 + ]], + [[ + 11493, + 11477, + 11488 + ]], + [[ + 11465, + 11494, + 3964 + ]], + [[ + 11446, + 11456, + 11447 + ]], + [[ + 11446, + 3990, + 11456 + ]], + [[ + 11455, + 11450, + 11392 + ]], + [[ + 11455, + 11451, + 11450 + ]], + [[ + 3975, + 4762, + 11390 + ]], + [[ + 11302, + 11316, + 11448 + ]], + [[ + 11451, + 11472, + 3989 + ]], + [[ + 11451, + 11454, + 11472 + ]], + [[ + 11476, + 11495, + 11488 + ]], + [[ + 11463, + 11488, + 11495 + ]], + [[ + 11482, + 11457, + 11317 + ]], + [[ + 11496, + 3982, + 11457 + ]], + [[ + 11401, + 11452, + 11363 + ]], + [[ + 11452, + 11405, + 11404 + ]], + [[ + 11302, + 11489, + 11443 + ]], + [[ + 11302, + 4762, + 11489 + ]], + [[ + 11398, + 11449, + 11400 + ]], + [[ + 4003, + 11401, + 11449 + ]], + [[ + 11494, + 11459, + 3964 + ]], + [[ + 11386, + 11486, + 11459 + ]], + [[ + 11480, + 11475, + 11474 + ]], + [[ + 11480, + 11485, + 11475 + ]], + [[ + 11497, + 11493, + 11498 + ]], + [[ + 11466, + 4010, + 11467 + ]], + [[ + 11499, + 11461, + 3982 + ]], + [[ + 11478, + 4010, + 11461 + ]], + [[ + 11396, + 11397, + 11398 + ]], + [[ + 11396, + 11395, + 11397 + ]], + [[ + 3975, + 11390, + 3976 + ]], + [[ + 11500, + 11316, + 3974 + ]], + [[ + 11480, + 11482, + 11317 + ]], + [[ + 11480, + 11483, + 11482 + ]], + [[ + 11388, + 11501, + 11454 + ]], + [[ + 11502, + 3989, + 11503 + ]], + [[ + 3981, + 11491, + 11317 + ]], + [[ + 11492, + 3990, + 11446 + ]], + [[ + 11445, + 11504, + 11490 + ]], + [[ + 11504, + 11491, + 11505 + ]], + [[ + 11317, + 11504, + 11447 + ]], + [[ + 11317, + 11491, + 11504 + ]], + [[ + 11463, + 11469, + 4010 + ]], + [[ + 11463, + 11495, + 11469 + ]], + [[ + 11504, + 11445, + 11447 + ]], + [[ + 11504, + 11505, + 11490 + ]], + [[ + 11482, + 11496, + 11457 + ]], + [[ + 11482, + 11499, + 11496 + ]], + [[ + 11413, + 11414, + 11418 + ]], + [[ + 11413, + 11415, + 11409 + ]], + [[ + 3964, + 11460, + 4079 + ]], + [[ + 11459, + 11486, + 11460 + ]], + [[ + 11364, + 11401, + 11363 + ]], + [[ + 4003, + 3972, + 11452 + ]], + [[ + 4003, + 11452, + 11401 + ]], + [[ + 3972, + 11473, + 11452 + ]], + [[ + 11483, + 11478, + 11461 + ]], + [[ + 11483, + 11479, + 11478 + ]], + [[ + 11491, + 11490, + 11505 + ]], + [[ + 3981, + 3990, + 11490 + ]], + [[ + 11386, + 11494, + 11493 + ]], + [[ + 11386, + 11459, + 11494 + ]], + [[ + 11449, + 11399, + 11400 + ]], + [[ + 11449, + 11401, + 11399 + ]], + [[ + 11443, + 11409, + 11411 + ]], + [[ + 4762, + 4349, + 11409 + ]], + [[ + 11506, + 11453, + 11454 + ]], + [[ + 11503, + 3989, + 11453 + ]], + [[ + 11493, + 11507, + 11477 + ]], + [[ + 11498, + 11508, + 11466 + ]], + [[ + 11481, + 11474, + 4010 + ]], + [[ + 11481, + 11480, + 11474 + ]], + [[ + 11387, + 11501, + 11388 + ]], + [[ + 11503, + 11506, + 11501 + ]], + [[ + 11493, + 11509, + 11508 + ]], + [[ + 11493, + 11494, + 11509 + ]], + [[ + 11509, + 11464, + 11466 + ]], + [[ + 11509, + 11494, + 11464 + ]], + [[ + 11466, + 11465, + 3964 + ]], + [[ + 11464, + 11494, + 11465 + ]], + [[ + 4762, + 11444, + 11390 + ]], + [[ + 11448, + 11316, + 11500 + ]], + [[ + 11444, + 11500, + 11389 + ]], + [[ + 11444, + 11448, + 11500 + ]], + [[ + 3974, + 11389, + 11500 + ]], + [[ + 3974, + 3976, + 11389 + ]], + [[ + 11501, + 11506, + 11454 + ]], + [[ + 11503, + 11453, + 11506 + ]], + [[ + 11317, + 11458, + 3981 + ]], + [[ + 11317, + 11457, + 11458 + ]], + [[ + 11496, + 11499, + 3982 + ]], + [[ + 11482, + 11461, + 11499 + ]], + [[ + 11502, + 11387, + 3990 + ]], + [[ + 11502, + 11501, + 11387 + ]], + [[ + 11495, + 11468, + 11469 + ]], + [[ + 11477, + 11507, + 11467 + ]], + [[ + 11476, + 11467, + 11468 + ]], + [[ + 11508, + 11509, + 11466 + ]], + [[ + 11495, + 11476, + 11468 + ]], + [[ + 11488, + 11477, + 11476 + ]], + [[ + 11497, + 11466, + 11467 + ]], + [[ + 3964, + 4010, + 11466 + ]], + [[ + 11497, + 11498, + 11466 + ]], + [[ + 11493, + 11508, + 11498 + ]], + [[ + 11507, + 11497, + 11467 + ]], + [[ + 11507, + 11493, + 11497 + ]], + [[ + 11386, + 11487, + 11486 + ]], + [[ + 11386, + 4079, + 11487 + ]], + [[ + 4003, + 11392, + 3989 + ]], + [[ + 4003, + 11395, + 11392 + ]], + [[ + 11391, + 11393, + 11394 + ]], + [[ + 11392, + 11395, + 11393 + ]], + [[ + 11445, + 11492, + 11446 + ]], + [[ + 11445, + 11490, + 11492 + ]], + [[ + 11452, + 11473, + 11405 + ]], + [[ + 3972, + 11484, + 11473 + ]], + [[ + 3974, + 11442, + 11358 + ]], + [[ + 3974, + 11316, + 11442 + ]], + [[ + 3989, + 11502, + 3990 + ]], + [[ + 11503, + 11501, + 11502 + ]], + [[ + 11475, + 11462, + 4010 + ]], + [[ + 11475, + 11485, + 11462 + ]], + [[ + 11102, + 11086, + 11386 + ]], + [[ + 11386, + 11086, + 11385 + ]], + [[ + 11104, + 11102, + 11493 + ]], + [[ + 11493, + 11102, + 11386 + ]], + [[ + 11105, + 11104, + 11488 + ]], + [[ + 11488, + 11104, + 11493 + ]], + [[ + 11373, + 11105, + 11480 + ]], + [[ + 11480, + 11105, + 11488 + ]], + [[ + 11317, + 11373, + 11480 + ]], + [[ + 11372, + 11317, + 11447 + ]], + [[ + 11371, + 11372, + 11451 + ]], + [[ + 11451, + 11372, + 11447 + ]], + [[ + 11370, + 11371, + 11455 + ]], + [[ + 11455, + 11371, + 11451 + ]], + [[ + 11369, + 11370, + 11391 + ]], + [[ + 11391, + 11370, + 11455 + ]], + [[ + 11368, + 11369, + 11394 + ]], + [[ + 11394, + 11369, + 11391 + ]], + [[ + 11367, + 11368, + 11396 + ]], + [[ + 11396, + 11368, + 11394 + ]], + [[ + 11366, + 11367, + 11398 + ]], + [[ + 11398, + 11367, + 11396 + ]], + [[ + 11365, + 11366, + 11400 + ]], + [[ + 11400, + 11366, + 11398 + ]], + [[ + 11364, + 11365, + 11400 + ]], + [[ + 11362, + 11363, + 11403 + ]], + [[ + 11361, + 11362, + 11404 + ]], + [[ + 11404, + 11362, + 11403 + ]], + [[ + 11360, + 11361, + 11406 + ]], + [[ + 11406, + 11361, + 11404 + ]], + [[ + 11359, + 11360, + 11408 + ]], + [[ + 11408, + 11360, + 11406 + ]], + [[ + 11358, + 11359, + 11408 + ]], + [[ + 11357, + 11302, + 11411 + ]], + [[ + 11356, + 11357, + 11412 + ]], + [[ + 11412, + 11357, + 11411 + ]], + [[ + 11305, + 11356, + 11415 + ]], + [[ + 11415, + 11356, + 11412 + ]], + [[ + 11355, + 11305, + 11413 + ]], + [[ + 11413, + 11305, + 11415 + ]], + [[ + 11354, + 11355, + 11418 + ]], + [[ + 11418, + 11355, + 11413 + ]], + [[ + 11353, + 11354, + 11416 + ]], + [[ + 11416, + 11354, + 11418 + ]], + [[ + 11300, + 11353, + 11417 + ]], + [[ + 11417, + 11353, + 11416 + ]], + [[ + 11352, + 11300, + 11420 + ]], + [[ + 11420, + 11300, + 11417 + ]], + [[ + 11351, + 11352, + 11419 + ]], + [[ + 11419, + 11352, + 11420 + ]], + [[ + 11350, + 11351, + 11421 + ]], + [[ + 11421, + 11351, + 11419 + ]], + [[ + 11292, + 11350, + 11422 + ]], + [[ + 11422, + 11350, + 11421 + ]], + [[ + 11349, + 11292, + 11423 + ]], + [[ + 11423, + 11292, + 11422 + ]], + [[ + 11348, + 11349, + 11410 + ]], + [[ + 11410, + 11349, + 11423 + ]], + [[ + 11347, + 11348, + 11424 + ]], + [[ + 11424, + 11348, + 11410 + ]], + [[ + 11346, + 11347, + 11425 + ]], + [[ + 11425, + 11347, + 11424 + ]], + [[ + 11295, + 11346, + 11426 + ]], + [[ + 11426, + 11346, + 11425 + ]], + [[ + 11345, + 11295, + 11427 + ]], + [[ + 11427, + 11295, + 11426 + ]], + [[ + 11344, + 11345, + 11428 + ]], + [[ + 11428, + 11345, + 11427 + ]], + [[ + 11343, + 11344, + 11429 + ]], + [[ + 11429, + 11344, + 11428 + ]], + [[ + 11342, + 11343, + 11430 + ]], + [[ + 11430, + 11343, + 11429 + ]], + [[ + 11289, + 11342, + 11431 + ]], + [[ + 11431, + 11342, + 11430 + ]], + [[ + 11341, + 11289, + 11432 + ]], + [[ + 11432, + 11289, + 11431 + ]], + [[ + 11340, + 11341, + 11433 + ]], + [[ + 11433, + 11341, + 11432 + ]], + [[ + 11338, + 11340, + 11434 + ]], + [[ + 11434, + 11340, + 11433 + ]], + [[ + 11339, + 11338, + 11435 + ]], + [[ + 11435, + 11338, + 11434 + ]], + [[ + 11337, + 11339, + 11436 + ]], + [[ + 11436, + 11339, + 11435 + ]], + [[ + 11281, + 11337, + 11437 + ]], + [[ + 11437, + 11337, + 11436 + ]], + [[ + 11336, + 11281, + 11438 + ]], + [[ + 11438, + 11281, + 11437 + ]], + [[ + 11284, + 11336, + 11439 + ]], + [[ + 11439, + 11336, + 11438 + ]], + [[ + 11278, + 11284, + 11383 + ]], + [[ + 11383, + 11284, + 11439 + ]], + [[ + 11260, + 11278, + 11441 + ]], + [[ + 11441, + 11278, + 11383 + ]], + [[ + 4798, + 11260, + 11441 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b8257ccdc-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "P0028", + "creationdate": "2013-08-07", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "P0028.5b05c66e86d84678906e0e603c4ba008", + "lv_publicatiedatum": "2016-06-07T16:00:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:55:21.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11510, + 11511, + 11512 + ]], + [[ + 11513, + 11514, + 11510 + ]], + [[ + 11515, + 11513, + 11510 + ]], + [[ + 11515, + 11516, + 11517 + ]], + [[ + 11515, + 11517, + 11518 + ]], + [[ + 11513, + 11519, + 11514 + ]], + [[ + 11518, + 11513, + 11515 + ]], + [[ + 11519, + 11511, + 11514 + ]], + [[ + 11518, + 11519, + 11513 + ]], + [[ + 11518, + 11511, + 11519 + ]], + [[ + 11520, + 11515, + 11512 + ]], + [[ + 11514, + 11511, + 11510 + ]], + [[ + 11512, + 11515, + 11510 + ]], + [[ + 11520, + 11516, + 11515 + ]], + [[ + 11521, + 11522, + 11511 + ]], + [[ + 11511, + 11522, + 11512 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b82590617-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "P0028", + "creationdate": "2013-08-07", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "P0028.2b508589ce3a4bf5a6633db491f5383d", + "lv_publicatiedatum": "2016-06-07T16:00:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:55:21.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11523, + 11524, + 11217 + ]], + [[ + 11210, + 11087, + 5526 + ]], + [[ + 5524, + 11210, + 5840 + ]], + [[ + 5840, + 11210, + 5527 + ]], + [[ + 5527, + 11210, + 5526 + ]], + [[ + 5526, + 11087, + 5525 + ]], + [[ + 11205, + 11259, + 5646 + ]], + [[ + 11203, + 11265, + 5508 + ]], + [[ + 11266, + 11199, + 5507 + ]], + [[ + 11267, + 11268, + 5507 + ]], + [[ + 11197, + 11269, + 5506 + ]], + [[ + 11195, + 11270, + 5503 + ]], + [[ + 11270, + 11271, + 5503 + ]], + [[ + 11271, + 11193, + 5504 + ]], + [[ + 11273, + 11191, + 5501 + ]], + [[ + 11191, + 11274, + 5501 + ]], + [[ + 11274, + 11189, + 5473 + ]], + [[ + 11275, + 11276, + 5474 + ]], + [[ + 11116, + 11279, + 5496 + ]], + [[ + 11279, + 11280, + 5496 + ]], + [[ + 11119, + 11285, + 5495 + ]], + [[ + 11285, + 11121, + 5495 + ]], + [[ + 11287, + 11286, + 5493 + ]], + [[ + 11169, + 11290, + 5441 + ]], + [[ + 11290, + 11291, + 5442 + ]], + [[ + 11173, + 11296, + 5443 + ]], + [[ + 11297, + 11170, + 5492 + ]], + [[ + 11301, + 11254, + 5445 + ]], + [[ + 11254, + 11306, + 5445 + ]], + [[ + 11307, + 11176, + 5490 + ]], + [[ + 11308, + 11312, + 5448 + ]], + [[ + 11312, + 11255, + 5448 + ]], + [[ + 11313, + 11314, + 5449 + ]], + [[ + 11314, + 11252, + 5451 + ]], + [[ + 11320, + 11321, + 5452 + ]], + [[ + 11321, + 11322, + 5452 + ]], + [[ + 11178, + 11323, + 5453 + ]], + [[ + 11323, + 11324, + 5453 + ]], + [[ + 11324, + 11155, + 5453 + ]], + [[ + 11155, + 11325, + 5454 + ]], + [[ + 11325, + 11326, + 5454 + ]], + [[ + 11326, + 11327, + 5454 + ]], + [[ + 5449, + 11314, + 5451 + ]], + [[ + 11264, + 11332, + 5458 + ]], + [[ + 11333, + 11334, + 5460 + ]], + [[ + 11334, + 11335, + 5460 + ]], + [[ + 5454, + 11327, + 5456 + ]], + [[ + 5456, + 11328, + 5457 + ]], + [[ + 5457, + 11331, + 5458 + ]], + [[ + 5458, + 11333, + 5460 + ]], + [[ + 11335, + 11260, + 5464 + ]], + [[ + 5462, + 11335, + 5463 + ]], + [[ + 5463, + 11335, + 5464 + ]], + [[ + 5464, + 11260, + 5466 + ]], + [[ + 11260, + 4347, + 4799 + ]], + [[ + 5467, + 11260, + 4799 + ]], + [[ + 11260, + 4798, + 4347 + ]], + [[ + 5466, + 11260, + 5467 + ]], + [[ + 5460, + 11335, + 5462 + ]], + [[ + 5453, + 11155, + 5454 + ]], + [[ + 11332, + 11333, + 5458 + ]], + [[ + 5452, + 11322, + 5453 + ]], + [[ + 11331, + 11264, + 5458 + ]], + [[ + 11330, + 11331, + 5457 + ]], + [[ + 11329, + 11330, + 5457 + ]], + [[ + 11328, + 11329, + 5457 + ]], + [[ + 11258, + 11328, + 5456 + ]], + [[ + 11327, + 11258, + 5456 + ]], + [[ + 5451, + 11252, + 5452 + ]], + [[ + 5448, + 11255, + 5449 + ]], + [[ + 5490, + 11308, + 5448 + ]], + [[ + 5491, + 11307, + 5490 + ]], + [[ + 5445, + 11306, + 5491 + ]], + [[ + 5447, + 11301, + 5445 + ]], + [[ + 11322, + 11178, + 5453 + ]], + [[ + 5492, + 11298, + 5447 + ]], + [[ + 5444, + 11297, + 5492 + ]], + [[ + 11252, + 11320, + 5452 + ]], + [[ + 5443, + 11296, + 5444 + ]], + [[ + 5442, + 11291, + 5443 + ]], + [[ + 11255, + 11313, + 5449 + ]], + [[ + 5441, + 11290, + 5442 + ]], + [[ + 5493, + 11169, + 5441 + ]], + [[ + 11176, + 11308, + 5490 + ]], + [[ + 5494, + 11287, + 5493 + ]], + [[ + 11306, + 11307, + 5491 + ]], + [[ + 5495, + 11121, + 5494 + ]], + [[ + 5489, + 11119, + 5495 + ]], + [[ + 11298, + 11301, + 5447 + ]], + [[ + 11170, + 11298, + 5492 + ]], + [[ + 5496, + 11280, + 5489 + ]], + [[ + 11296, + 11297, + 5444 + ]], + [[ + 5500, + 11116, + 5496 + ]], + [[ + 11291, + 11173, + 5443 + ]], + [[ + 5474, + 11276, + 5500 + ]], + [[ + 5473, + 11189, + 5474 + ]], + [[ + 11286, + 11169, + 5493 + ]], + [[ + 5501, + 11274, + 5473 + ]], + [[ + 11121, + 11287, + 5494 + ]], + [[ + 5502, + 11273, + 5501 + ]], + [[ + 5504, + 11272, + 5502 + ]], + [[ + 11280, + 11119, + 5489 + ]], + [[ + 5503, + 11271, + 5504 + ]], + [[ + 5506, + 11195, + 5503 + ]], + [[ + 11276, + 11116, + 5500 + ]], + [[ + 5507, + 11268, + 5506 + ]], + [[ + 11189, + 11275, + 5474 + ]], + [[ + 5508, + 11266, + 5507 + ]], + [[ + 5509, + 11203, + 5508 + ]], + [[ + 5646, + 11259, + 5509 + ]], + [[ + 11272, + 11273, + 5502 + ]], + [[ + 11193, + 11272, + 5504 + ]], + [[ + 5513, + 11256, + 5646 + ]], + [[ + 5514, + 11256, + 5513 + ]], + [[ + 5515, + 11256, + 5514 + ]], + [[ + 11269, + 11195, + 5506 + ]], + [[ + 5517, + 11087, + 5515 + ]], + [[ + 11268, + 11197, + 5506 + ]], + [[ + 5520, + 11087, + 5517 + ]], + [[ + 11199, + 11267, + 5507 + ]], + [[ + 5521, + 11087, + 5520 + ]], + [[ + 11201, + 11266, + 5508 + ]], + [[ + 11265, + 11201, + 5508 + ]], + [[ + 5522, + 11087, + 5521 + ]], + [[ + 11263, + 11203, + 5509 + ]], + [[ + 11259, + 11263, + 5509 + ]], + [[ + 5523, + 11087, + 5522 + ]], + [[ + 11256, + 11205, + 5646 + ]], + [[ + 11087, + 11256, + 5515 + ]], + [[ + 5525, + 11087, + 5523 + ]], + [[ + 5487, + 11210, + 5524 + ]], + [[ + 11210, + 5487, + 11215 + ]], + [[ + 11215, + 11523, + 11217 + ]], + [[ + 5487, + 11523, + 11215 + ]], + [[ + 11525, + 5486, + 11217 + ]], + [[ + 5487, + 11524, + 11523 + ]], + [[ + 5487, + 5486, + 11524 + ]], + [[ + 11524, + 11525, + 11217 + ]], + [[ + 11524, + 5486, + 11525 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b825a1738-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "P0028", + "creationdate": "2013-08-07", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "P0028.53dd2a24d1a34833a084928458e10f8f", + "lv_publicatiedatum": "2016-06-07T16:00:23.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:55:21.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11526, + 11527, + 5272 + ]], + [[ + 11528, + 11529, + 11244 + ]], + [[ + 11528, + 11527, + 11529 + ]], + [[ + 4891, + 5272, + 11528 + ]], + [[ + 5272, + 11527, + 11528 + ]], + [[ + 4891, + 11528, + 11244 + ]], + [[ + 11530, + 11527, + 11526 + ]], + [[ + 4945, + 11526, + 5272 + ]], + [[ + 4945, + 11530, + 11526 + ]], + [[ + 11249, + 11244, + 11529 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "b86c25248-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f08dcb49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11531, + 11532, + 11533 + ]], + [[ + 11531, + 11534, + 11532 + ]], + [[ + 11531, + 2857, + 2858 + ]], + [[ + 11531, + 2858, + 2947 + ]], + [[ + 11535, + 11536, + 11537 + ]], + [[ + 11536, + 11535, + 2947 + ]], + [[ + 11538, + 11537, + 11536 + ]], + [[ + 11539, + 11540, + 11541 + ]], + [[ + 11541, + 11538, + 11536 + ]], + [[ + 11542, + 11540, + 11539 + ]], + [[ + 11543, + 11542, + 11539 + ]], + [[ + 11544, + 11545, + 11546 + ]], + [[ + 11545, + 11547, + 11546 + ]], + [[ + 11548, + 11544, + 11546 + ]], + [[ + 11549, + 11550, + 11551 + ]], + [[ + 11539, + 11547, + 11543 + ]], + [[ + 11552, + 11550, + 11553 + ]], + [[ + 11553, + 11550, + 11554 + ]], + [[ + 11531, + 2825, + 2857 + ]], + [[ + 11554, + 11549, + 11555 + ]], + [[ + 11556, + 11555, + 11557 + ]], + [[ + 11558, + 11556, + 11557 + ]], + [[ + 11535, + 11534, + 2947 + ]], + [[ + 11531, + 2947, + 11534 + ]], + [[ + 11559, + 11560, + 11561 + ]], + [[ + 11562, + 11559, + 11561 + ]], + [[ + 11546, + 11547, + 11539 + ]], + [[ + 11541, + 11536, + 11539 + ]], + [[ + 11563, + 11564, + 11565 + ]], + [[ + 11566, + 11563, + 11565 + ]], + [[ + 11551, + 11548, + 11546 + ]], + [[ + 11567, + 11568, + 11569 + ]], + [[ + 11551, + 11546, + 11549 + ]], + [[ + 11569, + 11568, + 11570 + ]], + [[ + 8159, + 11570, + 2911 + ]], + [[ + 11554, + 11550, + 11549 + ]], + [[ + 11549, + 11557, + 11555 + ]], + [[ + 11549, + 11560, + 11557 + ]], + [[ + 11549, + 11561, + 11560 + ]], + [[ + 11549, + 2911, + 11561 + ]], + [[ + 11561, + 2911, + 11564 + ]], + [[ + 11564, + 2911, + 11565 + ]], + [[ + 11565, + 2911, + 11568 + ]], + [[ + 11568, + 2911, + 11570 + ]], + [[ + 183, + 2857, + 2825 + ]], + [[ + 184, + 2857, + 183 + ]], + [[ + 11571, + 2825, + 11531 + ]], + [[ + 11572, + 11571, + 11533 + ]], + [[ + 11533, + 11571, + 11531 + ]], + [[ + 11573, + 11572, + 11532 + ]], + [[ + 11532, + 11572, + 11533 + ]], + [[ + 11574, + 11573, + 11534 + ]], + [[ + 11534, + 11573, + 11532 + ]], + [[ + 11575, + 11574, + 11535 + ]], + [[ + 11535, + 11574, + 11534 + ]], + [[ + 11576, + 11575, + 11537 + ]], + [[ + 11537, + 11575, + 11535 + ]], + [[ + 11577, + 11576, + 11538 + ]], + [[ + 11538, + 11576, + 11537 + ]], + [[ + 11578, + 11577, + 11541 + ]], + [[ + 11541, + 11577, + 11538 + ]], + [[ + 11579, + 11578, + 11540 + ]], + [[ + 11540, + 11578, + 11541 + ]], + [[ + 11580, + 11579, + 11542 + ]], + [[ + 11542, + 11579, + 11540 + ]], + [[ + 11581, + 11580, + 11543 + ]], + [[ + 11543, + 11580, + 11542 + ]], + [[ + 11582, + 11581, + 11547 + ]], + [[ + 11547, + 11581, + 11543 + ]], + [[ + 11583, + 11582, + 11545 + ]], + [[ + 11545, + 11582, + 11547 + ]], + [[ + 11584, + 11583, + 11544 + ]], + [[ + 11544, + 11583, + 11545 + ]], + [[ + 11585, + 11584, + 11548 + ]], + [[ + 11548, + 11584, + 11544 + ]], + [[ + 11586, + 11585, + 11551 + ]], + [[ + 11551, + 11585, + 11548 + ]], + [[ + 11587, + 11586, + 11550 + ]], + [[ + 11550, + 11586, + 11551 + ]], + [[ + 11588, + 11587, + 11552 + ]], + [[ + 11552, + 11587, + 11550 + ]], + [[ + 11589, + 11588, + 11553 + ]], + [[ + 11553, + 11588, + 11552 + ]], + [[ + 11590, + 11589, + 11554 + ]], + [[ + 11554, + 11589, + 11553 + ]], + [[ + 11591, + 11590, + 11555 + ]], + [[ + 11555, + 11590, + 11554 + ]], + [[ + 11592, + 11591, + 11556 + ]], + [[ + 11556, + 11591, + 11555 + ]], + [[ + 11593, + 11592, + 11558 + ]], + [[ + 11558, + 11592, + 11556 + ]], + [[ + 11594, + 11593, + 11557 + ]], + [[ + 11557, + 11593, + 11558 + ]], + [[ + 11595, + 11594, + 11560 + ]], + [[ + 11560, + 11594, + 11557 + ]], + [[ + 11596, + 11595, + 11559 + ]], + [[ + 11559, + 11595, + 11560 + ]], + [[ + 11597, + 11596, + 11562 + ]], + [[ + 11562, + 11596, + 11559 + ]], + [[ + 11598, + 11597, + 11561 + ]], + [[ + 11561, + 11597, + 11562 + ]], + [[ + 11599, + 11598, + 11564 + ]], + [[ + 11564, + 11598, + 11561 + ]], + [[ + 11600, + 11599, + 11563 + ]], + [[ + 11563, + 11599, + 11564 + ]], + [[ + 11601, + 11600, + 11566 + ]], + [[ + 11566, + 11600, + 11563 + ]], + [[ + 11602, + 11601, + 11565 + ]], + [[ + 11565, + 11601, + 11566 + ]], + [[ + 11603, + 11602, + 11568 + ]], + [[ + 11568, + 11602, + 11565 + ]], + [[ + 11604, + 11603, + 11567 + ]], + [[ + 11567, + 11603, + 11568 + ]], + [[ + 11605, + 11604, + 11569 + ]], + [[ + 11569, + 11604, + 11567 + ]], + [[ + 11606, + 11605, + 11570 + ]], + [[ + 11570, + 11605, + 11569 + ]], + [[ + 8159, + 11606, + 11570 + ]], + [[ + 2936, + 2911, + 11549 + ]], + [[ + 2959, + 2936, + 11546 + ]], + [[ + 11546, + 2936, + 11549 + ]], + [[ + 2958, + 2959, + 11539 + ]], + [[ + 11539, + 2959, + 11546 + ]], + [[ + 2910, + 2958, + 11536 + ]], + [[ + 11536, + 2958, + 11539 + ]], + [[ + 2947, + 2910, + 11536 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "b86c2a086-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 7968, + 8543, + 1280 + ]], + [[ + 8543, + 1315, + 1280 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "b86c538a4-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0948b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11607, + 11608, + 11609 + ]], + [[ + 11607, + 7803, + 1354 + ]], + [[ + 11608, + 11607, + 1354 + ]], + [[ + 11610, + 7803, + 11607 + ]], + [[ + 1354, + 1688, + 11608 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "b86c5adfd-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0875b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11611, + 11612, + 11613 + ]], + [[ + 11611, + 11614, + 11612 + ]], + [[ + 11611, + 212, + 2815 + ]], + [[ + 11614, + 11611, + 11615 + ]], + [[ + 11615, + 11611, + 2815 + ]], + [[ + 2815, + 212, + 213 + ]], + [[ + 11616, + 212, + 11611 + ]], + [[ + 11617, + 11616, + 11613 + ]], + [[ + 11613, + 11616, + 11611 + ]], + [[ + 11618, + 11617, + 11612 + ]], + [[ + 11612, + 11617, + 11613 + ]], + [[ + 11619, + 11618, + 11614 + ]], + [[ + 11614, + 11618, + 11612 + ]], + [[ + 11620, + 11619, + 11615 + ]], + [[ + 11615, + 11619, + 11614 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "b86c5ae06-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f08da749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11067, + 297, + 298 + ]], + [[ + 11067, + 10615, + 297 + ]], + [[ + 11067, + 11066, + 11621 + ]], + [[ + 10615, + 11067, + 11621 + ]], + [[ + 11622, + 10615, + 11621 + ]], + [[ + 11066, + 11622, + 11621 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "b86c5d51d-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 477, + 557, + 476 + ]], + [[ + 557, + 558, + 476 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "b86c89463-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10683, + 10682, + 10662 + ]], + [[ + 10683, + 10662, + 11623 + ]], + [[ + 11623, + 11624, + 11625 + ]], + [[ + 11625, + 11624, + 10678 + ]], + [[ + 11624, + 11626, + 11627 + ]], + [[ + 11627, + 11626, + 11628 + ]], + [[ + 11624, + 11623, + 11626 + ]], + [[ + 10662, + 10682, + 7252 + ]], + [[ + 10662, + 11626, + 11623 + ]], + [[ + 10675, + 10663, + 10017 + ]], + [[ + 10663, + 7244, + 10017 + ]], + [[ + 10663, + 10662, + 7252 + ]], + [[ + 10663, + 7252, + 7244 + ]], + [[ + 10687, + 10683, + 11623 + ]], + [[ + 10691, + 10687, + 11625 + ]], + [[ + 11625, + 10687, + 11623 + ]], + [[ + 10678, + 10691, + 11625 + ]], + [[ + 10672, + 10678, + 11624 + ]], + [[ + 10673, + 10672, + 11627 + ]], + [[ + 11627, + 10672, + 11624 + ]], + [[ + 10671, + 10673, + 11628 + ]], + [[ + 11628, + 10673, + 11627 + ]], + [[ + 10670, + 10671, + 11626 + ]], + [[ + 11626, + 10671, + 11628 + ]], + [[ + 10662, + 10670, + 11626 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "b8e220996-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11629, + 11630, + 11631 + ]], + [[ + 11632, + 1831, + 1827 + ]], + [[ + 8174, + 1831, + 11633 + ]], + [[ + 11634, + 8174, + 8175 + ]], + [[ + 1825, + 11634, + 8175 + ]], + [[ + 11635, + 11633, + 11636 + ]], + [[ + 8174, + 11635, + 8173 + ]], + [[ + 11636, + 10005, + 8173 + ]], + [[ + 11636, + 11637, + 10005 + ]], + [[ + 11638, + 11639, + 11637 + ]], + [[ + 8174, + 11633, + 11635 + ]], + [[ + 11640, + 11637, + 11636 + ]], + [[ + 11635, + 11636, + 8173 + ]], + [[ + 11640, + 1831, + 11638 + ]], + [[ + 11633, + 11640, + 11636 + ]], + [[ + 11633, + 1831, + 11640 + ]], + [[ + 11640, + 11638, + 11637 + ]], + [[ + 11639, + 10005, + 11637 + ]], + [[ + 11632, + 11641, + 11642 + ]], + [[ + 11643, + 10005, + 1831 + ]], + [[ + 1831, + 11634, + 1825 + ]], + [[ + 1831, + 8174, + 11634 + ]], + [[ + 11644, + 11630, + 11629 + ]], + [[ + 11641, + 10005, + 11630 + ]], + [[ + 11643, + 11631, + 10005 + ]], + [[ + 11630, + 10005, + 11631 + ]], + [[ + 11644, + 11642, + 11641 + ]], + [[ + 11632, + 11645, + 11641 + ]], + [[ + 11646, + 11644, + 11629 + ]], + [[ + 11632, + 11642, + 11644 + ]], + [[ + 1831, + 11639, + 11638 + ]], + [[ + 1831, + 10005, + 11639 + ]], + [[ + 11632, + 11643, + 1831 + ]], + [[ + 11646, + 11631, + 11643 + ]], + [[ + 11644, + 11641, + 11630 + ]], + [[ + 11645, + 10005, + 11641 + ]], + [[ + 11646, + 11632, + 11644 + ]], + [[ + 1827, + 11645, + 11632 + ]], + [[ + 11631, + 11646, + 11629 + ]], + [[ + 11643, + 11632, + 11646 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e220999-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1a749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11647, + 11648, + 11649 + ]], + [[ + 11650, + 11651, + 11652 + ]], + [[ + 11653, + 3117, + 11651 + ]], + [[ + 11651, + 11654, + 11655 + ]], + [[ + 11656, + 11652, + 11655 + ]], + [[ + 11653, + 3162, + 3117 + ]], + [[ + 11647, + 11649, + 11657 + ]], + [[ + 11656, + 11650, + 11652 + ]], + [[ + 11653, + 3160, + 3162 + ]], + [[ + 11650, + 11658, + 11651 + ]], + [[ + 11659, + 11660, + 11661 + ]], + [[ + 11656, + 11655, + 11654 + ]], + [[ + 11652, + 11662, + 11655 + ]], + [[ + 11656, + 11647, + 11657 + ]], + [[ + 11656, + 11661, + 11647 + ]], + [[ + 3161, + 11656, + 11657 + ]], + [[ + 3161, + 11650, + 11656 + ]], + [[ + 11648, + 11661, + 11660 + ]], + [[ + 11651, + 11662, + 11652 + ]], + [[ + 3161, + 11663, + 11650 + ]], + [[ + 11664, + 3160, + 11653 + ]], + [[ + 11663, + 11658, + 11650 + ]], + [[ + 3117, + 11660, + 11659 + ]], + [[ + 11663, + 11665, + 11658 + ]], + [[ + 11664, + 3161, + 3160 + ]], + [[ + 11656, + 11654, + 11661 + ]], + [[ + 11651, + 3117, + 11659 + ]], + [[ + 11661, + 11654, + 11659 + ]], + [[ + 11655, + 11662, + 11651 + ]], + [[ + 11653, + 11651, + 11658 + ]], + [[ + 11659, + 11654, + 11651 + ]], + [[ + 11649, + 11648, + 11660 + ]], + [[ + 11647, + 11661, + 11648 + ]], + [[ + 11665, + 11653, + 11658 + ]], + [[ + 11665, + 11664, + 11653 + ]], + [[ + 11663, + 11664, + 11665 + ]], + [[ + 11663, + 3161, + 11664 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e2209a5-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11666, + 11667, + 11668 + ]], + [[ + 11669, + 11667, + 11666 + ]], + [[ + 11670, + 11669, + 11666 + ]], + [[ + 11671, + 11670, + 11666 + ]], + [[ + 11672, + 11671, + 11666 + ]], + [[ + 11673, + 11672, + 11666 + ]], + [[ + 11674, + 11673, + 11666 + ]], + [[ + 11675, + 11674, + 11666 + ]], + [[ + 11676, + 11675, + 11666 + ]], + [[ + 11677, + 11676, + 11666 + ]], + [[ + 11678, + 11677, + 11666 + ]], + [[ + 11679, + 11678, + 11666 + ]], + [[ + 11680, + 11679, + 11666 + ]], + [[ + 11681, + 11666, + 11682 + ]], + [[ + 11682, + 11666, + 11683 + ]], + [[ + 11683, + 11666, + 11684 + ]], + [[ + 11684, + 11666, + 11685 + ]], + [[ + 11685, + 11666, + 11686 + ]], + [[ + 11686, + 11666, + 11687 + ]], + [[ + 11687, + 11666, + 11688 + ]], + [[ + 11688, + 11666, + 11689 + ]], + [[ + 11689, + 11666, + 11690 + ]], + [[ + 11690, + 11666, + 11691 + ]], + [[ + 11691, + 11666, + 11692 + ]], + [[ + 11692, + 11666, + 11693 + ]], + [[ + 11693, + 11666, + 11694 + ]], + [[ + 11694, + 11666, + 11695 + ]], + [[ + 11695, + 11666, + 11696 + ]], + [[ + 11696, + 11666, + 11697 + ]], + [[ + 11697, + 11666, + 11698 + ]], + [[ + 11698, + 11666, + 11699 + ]], + [[ + 11699, + 11666, + 11700 + ]], + [[ + 11700, + 11666, + 11701 + ]], + [[ + 11701, + 11666, + 11702 + ]], + [[ + 11702, + 11666, + 11703 + ]], + [[ + 11703, + 11666, + 11704 + ]], + [[ + 11704, + 11666, + 11705 + ]], + [[ + 11705, + 11666, + 11706 + ]], + [[ + 11706, + 11666, + 11707 + ]], + [[ + 11707, + 11666, + 11708 + ]], + [[ + 11708, + 11666, + 11709 + ]], + [[ + 11709, + 11666, + 11710 + ]], + [[ + 11710, + 11666, + 11711 + ]], + [[ + 11711, + 11666, + 11712 + ]], + [[ + 11712, + 11666, + 11713 + ]], + [[ + 11713, + 11666, + 11714 + ]], + [[ + 11666, + 11715, + 11716 + ]], + [[ + 11666, + 11717, + 11715 + ]], + [[ + 11666, + 11718, + 11717 + ]], + [[ + 11666, + 11719, + 11718 + ]], + [[ + 11666, + 11720, + 11719 + ]], + [[ + 11666, + 11721, + 11720 + ]], + [[ + 11666, + 11722, + 11721 + ]], + [[ + 11666, + 11723, + 11722 + ]], + [[ + 11666, + 11724, + 11723 + ]], + [[ + 11666, + 11725, + 11724 + ]], + [[ + 11666, + 11726, + 11725 + ]], + [[ + 11666, + 11727, + 11726 + ]], + [[ + 11666, + 11728, + 11727 + ]], + [[ + 11666, + 11729, + 11728 + ]], + [[ + 11666, + 11730, + 11729 + ]], + [[ + 11666, + 11731, + 11730 + ]], + [[ + 11666, + 11732, + 11731 + ]], + [[ + 11666, + 11733, + 11732 + ]], + [[ + 11666, + 11734, + 11733 + ]], + [[ + 11666, + 11735, + 11734 + ]], + [[ + 11666, + 11736, + 11735 + ]], + [[ + 11666, + 11737, + 11736 + ]], + [[ + 11666, + 11738, + 11737 + ]], + [[ + 11666, + 11739, + 11738 + ]], + [[ + 11666, + 11740, + 11739 + ]], + [[ + 11666, + 11741, + 11740 + ]], + [[ + 11666, + 11742, + 11741 + ]], + [[ + 11666, + 11743, + 11742 + ]], + [[ + 11666, + 11744, + 11743 + ]], + [[ + 11666, + 11745, + 11744 + ]], + [[ + 11666, + 11746, + 11745 + ]], + [[ + 11666, + 11747, + 11746 + ]], + [[ + 11666, + 11748, + 11747 + ]], + [[ + 11666, + 11749, + 11748 + ]], + [[ + 11666, + 11750, + 11749 + ]], + [[ + 11666, + 11751, + 11750 + ]], + [[ + 11666, + 11752, + 11751 + ]], + [[ + 11666, + 11753, + 11752 + ]], + [[ + 11666, + 11754, + 11753 + ]], + [[ + 11666, + 11755, + 11754 + ]], + [[ + 11666, + 11756, + 11755 + ]], + [[ + 11666, + 11757, + 11756 + ]], + [[ + 11666, + 11758, + 11757 + ]], + [[ + 11666, + 11668, + 11758 + ]], + [[ + 11714, + 11666, + 11716 + ]], + [[ + 11681, + 11680, + 11666 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e22f3bc-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11759, + 11760, + 11761 + ]], + [[ + 11762, + 11763, + 11764 + ]], + [[ + 11764, + 11763, + 11759 + ]], + [[ + 11762, + 11760, + 11759 + ]], + [[ + 11765, + 11762, + 11766 + ]], + [[ + 11765, + 11760, + 11762 + ]], + [[ + 11764, + 11759, + 11761 + ]], + [[ + 11763, + 11762, + 11759 + ]], + [[ + 11766, + 11764, + 11761 + ]], + [[ + 11766, + 11762, + 11764 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e23693d-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8d849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11767, + 11768, + 11769 + ]], + [[ + 11770, + 11771, + 11772 + ]], + [[ + 11773, + 11774, + 11775 + ]], + [[ + 11776, + 11777, + 11767 + ]], + [[ + 11778, + 11773, + 11779 + ]], + [[ + 11774, + 11780, + 11781 + ]], + [[ + 11782, + 11783, + 11774 + ]], + [[ + 11784, + 11769, + 11785 + ]], + [[ + 11774, + 11783, + 11780 + ]], + [[ + 11786, + 11782, + 11787 + ]], + [[ + 11788, + 11789, + 11780 + ]], + [[ + 11788, + 11783, + 11786 + ]], + [[ + 11771, + 11781, + 11790 + ]], + [[ + 11784, + 11791, + 11769 + ]], + [[ + 11779, + 11792, + 11772 + ]], + [[ + 11775, + 11781, + 11770 + ]], + [[ + 11777, + 11768, + 11767 + ]], + [[ + 11793, + 11769, + 11768 + ]], + [[ + 11794, + 11767, + 11791 + ]], + [[ + 11790, + 11789, + 11776 + ]], + [[ + 11784, + 11790, + 11794 + ]], + [[ + 11767, + 11769, + 11791 + ]], + [[ + 11780, + 11790, + 11781 + ]], + [[ + 11780, + 11789, + 11790 + ]], + [[ + 11790, + 11776, + 11767 + ]], + [[ + 11789, + 11788, + 11786 + ]], + [[ + 11789, + 11777, + 11776 + ]], + [[ + 11786, + 11768, + 11777 + ]], + [[ + 11780, + 11783, + 11788 + ]], + [[ + 11787, + 11773, + 11778 + ]], + [[ + 11771, + 11790, + 11784 + ]], + [[ + 11790, + 11767, + 11794 + ]], + [[ + 11793, + 11778, + 11779 + ]], + [[ + 11782, + 11786, + 11783 + ]], + [[ + 11773, + 11787, + 11774 + ]], + [[ + 11787, + 11793, + 11786 + ]], + [[ + 11774, + 11787, + 11782 + ]], + [[ + 11778, + 11793, + 11787 + ]], + [[ + 11779, + 11775, + 11792 + ]], + [[ + 11774, + 11781, + 11775 + ]], + [[ + 11792, + 11770, + 11772 + ]], + [[ + 11792, + 11775, + 11770 + ]], + [[ + 11793, + 11779, + 11772 + ]], + [[ + 11773, + 11775, + 11779 + ]], + [[ + 11771, + 11784, + 11785 + ]], + [[ + 11794, + 11791, + 11784 + ]], + [[ + 11789, + 11786, + 11777 + ]], + [[ + 11793, + 11768, + 11786 + ]], + [[ + 11772, + 11771, + 11785 + ]], + [[ + 11770, + 11781, + 11771 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e23ddc7-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1ad49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11795, + 11796, + 11797 + ]], + [[ + 11798, + 11799, + 11800 + ]], + [[ + 11801, + 11802, + 11798 + ]], + [[ + 11800, + 11801, + 11798 + ]], + [[ + 11803, + 11795, + 11804 + ]], + [[ + 11796, + 11805, + 11797 + ]], + [[ + 11804, + 11797, + 11801 + ]], + [[ + 11805, + 11802, + 11801 + ]], + [[ + 11804, + 11801, + 11800 + ]], + [[ + 11797, + 11805, + 11801 + ]], + [[ + 11803, + 11804, + 11800 + ]], + [[ + 11795, + 11797, + 11804 + ]], + [[ + 11803, + 11796, + 11795 + ]], + [[ + 11806, + 11805, + 11796 + ]], + [[ + 11806, + 11803, + 11800 + ]], + [[ + 11806, + 11796, + 11803 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e24c8ff-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1ab49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11807, + 11808, + 11809 + ]], + [[ + 11810, + 11811, + 11812 + ]], + [[ + 11810, + 11813, + 11811 + ]], + [[ + 11814, + 11808, + 11815 + ]], + [[ + 11816, + 11807, + 11809 + ]], + [[ + 11815, + 11808, + 11807 + ]], + [[ + 11812, + 11811, + 11807 + ]], + [[ + 11817, + 11807, + 11811 + ]], + [[ + 11809, + 11818, + 11819 + ]], + [[ + 11820, + 11814, + 11817 + ]], + [[ + 11816, + 11812, + 11807 + ]], + [[ + 11821, + 11822, + 11810 + ]], + [[ + 11811, + 11813, + 11817 + ]], + [[ + 11823, + 11814, + 11820 + ]], + [[ + 11824, + 11823, + 11825 + ]], + [[ + 11813, + 11820, + 11817 + ]], + [[ + 11821, + 11825, + 11822 + ]], + [[ + 11818, + 11826, + 11823 + ]], + [[ + 11822, + 11813, + 11810 + ]], + [[ + 11823, + 11820, + 11813 + ]], + [[ + 11822, + 11823, + 11813 + ]], + [[ + 11826, + 11814, + 11823 + ]], + [[ + 11824, + 11827, + 11823 + ]], + [[ + 11824, + 11819, + 11827 + ]], + [[ + 11812, + 11821, + 11810 + ]], + [[ + 11825, + 11823, + 11822 + ]], + [[ + 11826, + 11818, + 11809 + ]], + [[ + 11821, + 11812, + 11816 + ]], + [[ + 11824, + 11825, + 11816 + ]], + [[ + 11816, + 11825, + 11821 + ]], + [[ + 11819, + 11816, + 11809 + ]], + [[ + 11819, + 11824, + 11816 + ]], + [[ + 11817, + 11815, + 11807 + ]], + [[ + 11817, + 11814, + 11815 + ]], + [[ + 11827, + 11818, + 11823 + ]], + [[ + 11827, + 11819, + 11818 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e253d86-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11828, + 11829, + 11830 + ]], + [[ + 11831, + 11832, + 11833 + ]], + [[ + 11834, + 11835, + 11831 + ]], + [[ + 11836, + 11837, + 11838 + ]], + [[ + 11839, + 11840, + 11841 + ]], + [[ + 11839, + 11842, + 11831 + ]], + [[ + 11831, + 11842, + 11832 + ]], + [[ + 11843, + 11844, + 11845 + ]], + [[ + 11846, + 11847, + 11848 + ]], + [[ + 11842, + 11839, + 11841 + ]], + [[ + 11828, + 11849, + 11850 + ]], + [[ + 11839, + 11831, + 11840 + ]], + [[ + 11832, + 11851, + 11849 + ]], + [[ + 11842, + 11841, + 11851 + ]], + [[ + 11828, + 11850, + 11852 + ]], + [[ + 11853, + 11841, + 11848 + ]], + [[ + 11849, + 11853, + 11850 + ]], + [[ + 11851, + 11841, + 11853 + ]], + [[ + 11833, + 11834, + 11831 + ]], + [[ + 11845, + 11854, + 11855 + ]], + [[ + 11847, + 11853, + 11848 + ]], + [[ + 11856, + 11831, + 11835 + ]], + [[ + 11828, + 11857, + 11858 + ]], + [[ + 11859, + 11860, + 11861 + ]], + [[ + 11862, + 11836, + 11838 + ]], + [[ + 11847, + 11850, + 11853 + ]], + [[ + 11863, + 11852, + 11864 + ]], + [[ + 11848, + 11841, + 11846 + ]], + [[ + 11860, + 11864, + 11847 + ]], + [[ + 11857, + 11828, + 11852 + ]], + [[ + 11833, + 11865, + 11834 + ]], + [[ + 11840, + 11866, + 11841 + ]], + [[ + 11834, + 11865, + 11835 + ]], + [[ + 11866, + 11867, + 11841 + ]], + [[ + 11856, + 11865, + 11868 + ]], + [[ + 11865, + 11855, + 11869 + ]], + [[ + 11841, + 11867, + 11846 + ]], + [[ + 11866, + 11870, + 11854 + ]], + [[ + 11871, + 11859, + 11872 + ]], + [[ + 11843, + 11855, + 11829 + ]], + [[ + 11873, + 11870, + 11866 + ]], + [[ + 11870, + 11855, + 11854 + ]], + [[ + 11863, + 11859, + 11871 + ]], + [[ + 11872, + 11837, + 11871 + ]], + [[ + 11836, + 11871, + 11837 + ]], + [[ + 11836, + 11852, + 11863 + ]], + [[ + 11873, + 11868, + 11870 + ]], + [[ + 11869, + 11855, + 11870 + ]], + [[ + 11867, + 11860, + 11846 + ]], + [[ + 11867, + 11861, + 11860 + ]], + [[ + 11858, + 11862, + 11829 + ]], + [[ + 11858, + 11836, + 11862 + ]], + [[ + 11865, + 11856, + 11835 + ]], + [[ + 11840, + 11831, + 11856 + ]], + [[ + 11847, + 11864, + 11852 + ]], + [[ + 11860, + 11859, + 11864 + ]], + [[ + 11859, + 11863, + 11864 + ]], + [[ + 11871, + 11836, + 11863 + ]], + [[ + 11833, + 11832, + 11830 + ]], + [[ + 11842, + 11851, + 11832 + ]], + [[ + 11861, + 11854, + 11845 + ]], + [[ + 11861, + 11866, + 11854 + ]], + [[ + 11872, + 11844, + 11837 + ]], + [[ + 11874, + 11845, + 11844 + ]], + [[ + 11862, + 11838, + 11843 + ]], + [[ + 11837, + 11844, + 11843 + ]], + [[ + 11849, + 11828, + 11830 + ]], + [[ + 11858, + 11829, + 11828 + ]], + [[ + 11832, + 11849, + 11830 + ]], + [[ + 11851, + 11853, + 11849 + ]], + [[ + 11856, + 11868, + 11840 + ]], + [[ + 11869, + 11870, + 11868 + ]], + [[ + 11840, + 11873, + 11866 + ]], + [[ + 11840, + 11868, + 11873 + ]], + [[ + 11872, + 11874, + 11844 + ]], + [[ + 11872, + 11859, + 11861 + ]], + [[ + 11872, + 11861, + 11874 + ]], + [[ + 11867, + 11866, + 11861 + ]], + [[ + 11843, + 11845, + 11855 + ]], + [[ + 11874, + 11861, + 11845 + ]], + [[ + 11868, + 11865, + 11869 + ]], + [[ + 11833, + 11855, + 11865 + ]], + [[ + 11862, + 11843, + 11829 + ]], + [[ + 11838, + 11837, + 11843 + ]], + [[ + 11860, + 11847, + 11846 + ]], + [[ + 11852, + 11850, + 11847 + ]], + [[ + 11836, + 11857, + 11852 + ]], + [[ + 11836, + 11858, + 11857 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e26eb7a-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba4849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11875, + 11876, + 11877 + ]], + [[ + 11878, + 11877, + 11879 + ]], + [[ + 11880, + 11881, + 11882 + ]], + [[ + 11881, + 11876, + 11883 + ]], + [[ + 11879, + 11884, + 11885 + ]], + [[ + 11886, + 11876, + 11881 + ]], + [[ + 11878, + 11883, + 11877 + ]], + [[ + 11882, + 11881, + 11883 + ]], + [[ + 11887, + 11884, + 11879 + ]], + [[ + 11887, + 11886, + 11885 + ]], + [[ + 11880, + 11885, + 11881 + ]], + [[ + 11884, + 11887, + 11885 + ]], + [[ + 11878, + 11880, + 11882 + ]], + [[ + 11879, + 11885, + 11880 + ]], + [[ + 11885, + 11886, + 11881 + ]], + [[ + 11887, + 11876, + 11886 + ]], + [[ + 11880, + 11878, + 11879 + ]], + [[ + 11882, + 11883, + 11878 + ]], + [[ + 11883, + 11875, + 11877 + ]], + [[ + 11883, + 11876, + 11875 + ]], + [[ + 11888, + 11876, + 11887 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e2823ff-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11889, + 11890, + 11891 + ]], + [[ + 11892, + 11890, + 11889 + ]], + [[ + 11892, + 11893, + 11894 + ]], + [[ + 11895, + 11896, + 11897 + ]], + [[ + 11898, + 11892, + 11889 + ]], + [[ + 11899, + 11900, + 11901 + ]], + [[ + 11891, + 11890, + 11902 + ]], + [[ + 11892, + 11894, + 11890 + ]], + [[ + 11894, + 11902, + 11890 + ]], + [[ + 11895, + 11903, + 11896 + ]], + [[ + 11894, + 11895, + 11902 + ]], + [[ + 11893, + 11892, + 11898 + ]], + [[ + 11893, + 11903, + 11895 + ]], + [[ + 11897, + 11904, + 11905 + ]], + [[ + 11906, + 11889, + 11907 + ]], + [[ + 11906, + 11898, + 11889 + ]], + [[ + 11908, + 11896, + 11903 + ]], + [[ + 11909, + 11900, + 11910 + ]], + [[ + 11908, + 11898, + 11906 + ]], + [[ + 11908, + 11903, + 11898 + ]], + [[ + 11889, + 11891, + 11905 + ]], + [[ + 11902, + 11895, + 11897 + ]], + [[ + 11902, + 11897, + 11891 + ]], + [[ + 11910, + 11900, + 11899 + ]], + [[ + 11889, + 11905, + 11907 + ]], + [[ + 11911, + 11897, + 11905 + ]], + [[ + 11896, + 11909, + 11897 + ]], + [[ + 11896, + 11908, + 11909 + ]], + [[ + 11894, + 11893, + 11895 + ]], + [[ + 11898, + 11903, + 11893 + ]], + [[ + 11897, + 11909, + 11904 + ]], + [[ + 11908, + 11900, + 11909 + ]], + [[ + 11891, + 11911, + 11905 + ]], + [[ + 11891, + 11897, + 11911 + ]], + [[ + 11907, + 11899, + 11901 + ]], + [[ + 11905, + 11904, + 11910 + ]], + [[ + 11905, + 11910, + 11899 + ]], + [[ + 11904, + 11909, + 11910 + ]], + [[ + 11906, + 11907, + 11901 + ]], + [[ + 11905, + 11899, + 11907 + ]], + [[ + 11912, + 11900, + 11908 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e28998c-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11913, + 11914, + 11915 + ]], + [[ + 11916, + 11917, + 11918 + ]], + [[ + 11919, + 11920, + 11921 + ]], + [[ + 11922, + 11923, + 11924 + ]], + [[ + 11925, + 11926, + 11927 + ]], + [[ + 11924, + 11914, + 11927 + ]], + [[ + 11928, + 11929, + 11930 + ]], + [[ + 11931, + 11915, + 11932 + ]], + [[ + 11933, + 11934, + 11935 + ]], + [[ + 11926, + 11922, + 11936 + ]], + [[ + 11935, + 11934, + 11937 + ]], + [[ + 11938, + 11939, + 11940 + ]], + [[ + 11918, + 11917, + 11927 + ]], + [[ + 11916, + 11937, + 11941 + ]], + [[ + 11936, + 11922, + 11924 + ]], + [[ + 11923, + 11926, + 11942 + ]], + [[ + 11928, + 11930, + 11939 + ]], + [[ + 11915, + 11914, + 11932 + ]], + [[ + 11921, + 11920, + 11943 + ]], + [[ + 11933, + 11914, + 11944 + ]], + [[ + 11920, + 11919, + 11945 + ]], + [[ + 11945, + 11946, + 11920 + ]], + [[ + 11919, + 11947, + 11945 + ]], + [[ + 11913, + 11944, + 11914 + ]], + [[ + 11948, + 11949, + 11946 + ]], + [[ + 11949, + 11944, + 11950 + ]], + [[ + 11927, + 11926, + 11936 + ]], + [[ + 11951, + 11941, + 11929 + ]], + [[ + 11952, + 11953, + 11915 + ]], + [[ + 11913, + 11950, + 11944 + ]], + [[ + 11931, + 11952, + 11915 + ]], + [[ + 11943, + 11920, + 11950 + ]], + [[ + 11922, + 11926, + 11923 + ]], + [[ + 11926, + 11925, + 11942 + ]], + [[ + 11946, + 11950, + 11920 + ]], + [[ + 11949, + 11933, + 11944 + ]], + [[ + 11946, + 11949, + 11950 + ]], + [[ + 11954, + 11934, + 11933 + ]], + [[ + 11936, + 11924, + 11927 + ]], + [[ + 11932, + 11914, + 11924 + ]], + [[ + 11917, + 11925, + 11927 + ]], + [[ + 11941, + 11937, + 11929 + ]], + [[ + 11934, + 11919, + 11955 + ]], + [[ + 11938, + 11940, + 11932 + ]], + [[ + 11955, + 11919, + 11939 + ]], + [[ + 11952, + 11931, + 11940 + ]], + [[ + 11923, + 11928, + 11938 + ]], + [[ + 11929, + 11937, + 11934 + ]], + [[ + 11923, + 11929, + 11928 + ]], + [[ + 11951, + 11925, + 11941 + ]], + [[ + 11953, + 11913, + 11915 + ]], + [[ + 11953, + 11921, + 11913 + ]], + [[ + 11913, + 11943, + 11950 + ]], + [[ + 11913, + 11921, + 11943 + ]], + [[ + 11924, + 11923, + 11932 + ]], + [[ + 11942, + 11951, + 11923 + ]], + [[ + 11946, + 11947, + 11948 + ]], + [[ + 11946, + 11945, + 11947 + ]], + [[ + 11934, + 11948, + 11947 + ]], + [[ + 11954, + 11949, + 11948 + ]], + [[ + 11940, + 11931, + 11932 + ]], + [[ + 11940, + 11939, + 11952 + ]], + [[ + 11952, + 11919, + 11921 + ]], + [[ + 11956, + 11930, + 11929 + ]], + [[ + 11919, + 11952, + 11939 + ]], + [[ + 11921, + 11953, + 11952 + ]], + [[ + 11923, + 11938, + 11932 + ]], + [[ + 11928, + 11939, + 11938 + ]], + [[ + 11929, + 11934, + 11956 + ]], + [[ + 11956, + 11934, + 11955 + ]], + [[ + 11923, + 11951, + 11929 + ]], + [[ + 11942, + 11925, + 11951 + ]], + [[ + 11919, + 11934, + 11947 + ]], + [[ + 11937, + 11916, + 11935 + ]], + [[ + 11918, + 11935, + 11916 + ]], + [[ + 11918, + 11933, + 11935 + ]], + [[ + 11934, + 11954, + 11948 + ]], + [[ + 11933, + 11949, + 11954 + ]], + [[ + 11917, + 11941, + 11925 + ]], + [[ + 11917, + 11916, + 11941 + ]], + [[ + 11939, + 11956, + 11955 + ]], + [[ + 11939, + 11930, + 11956 + ]], + [[ + 11957, + 11918, + 11927 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e290e1c-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3056, + 11645, + 1788 + ]], + [[ + 3056, + 3089, + 3057 + ]], + [[ + 3056, + 3088, + 3089 + ]], + [[ + 3056, + 1788, + 3088 + ]], + [[ + 3088, + 3085, + 3087 + ]], + [[ + 3087, + 3085, + 3086 + ]], + [[ + 3088, + 3070, + 3085 + ]], + [[ + 3085, + 3070, + 3084 + ]], + [[ + 3084, + 3083, + 3082 + ]], + [[ + 3084, + 3070, + 3083 + ]], + [[ + 3083, + 3070, + 3081 + ]], + [[ + 3088, + 1788, + 3070 + ]], + [[ + 3070, + 3075, + 3072 + ]], + [[ + 3070, + 3078, + 3075 + ]], + [[ + 3070, + 1788, + 3078 + ]], + [[ + 3078, + 1788, + 3058 + ]], + [[ + 3058, + 1788, + 3059 + ]], + [[ + 11645, + 1827, + 1788 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e29d205-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11958, + 11959, + 11960 + ]], + [[ + 11961, + 11962, + 11963 + ]], + [[ + 11964, + 11965, + 11966 + ]], + [[ + 11967, + 11968, + 11969 + ]], + [[ + 11969, + 11970, + 11971 + ]], + [[ + 11972, + 11973, + 11959 + ]], + [[ + 11969, + 11968, + 11974 + ]], + [[ + 11975, + 11959, + 11976 + ]], + [[ + 11972, + 11977, + 11978 + ]], + [[ + 11967, + 11963, + 11962 + ]], + [[ + 11979, + 11971, + 11958 + ]], + [[ + 11970, + 11980, + 11981 + ]], + [[ + 11970, + 11965, + 11964 + ]], + [[ + 11981, + 11982, + 11975 + ]], + [[ + 11983, + 11984, + 11985 + ]], + [[ + 11984, + 11967, + 11969 + ]], + [[ + 11970, + 11969, + 11974 + ]], + [[ + 11967, + 11962, + 11968 + ]], + [[ + 11970, + 11974, + 11980 + ]], + [[ + 11968, + 11962, + 11974 + ]], + [[ + 11964, + 11966, + 11958 + ]], + [[ + 11976, + 11959, + 11958 + ]], + [[ + 11973, + 11961, + 11963 + ]], + [[ + 11973, + 11978, + 11961 + ]], + [[ + 11985, + 11984, + 11969 + ]], + [[ + 11983, + 11967, + 11984 + ]], + [[ + 11965, + 11981, + 11966 + ]], + [[ + 11981, + 11980, + 11982 + ]], + [[ + 11979, + 11958, + 11960 + ]], + [[ + 11966, + 11976, + 11958 + ]], + [[ + 11985, + 11979, + 11960 + ]], + [[ + 11971, + 11964, + 11958 + ]], + [[ + 11977, + 11962, + 11978 + ]], + [[ + 11962, + 11961, + 11978 + ]], + [[ + 11969, + 11971, + 11979 + ]], + [[ + 11970, + 11964, + 11971 + ]], + [[ + 11977, + 11972, + 11982 + ]], + [[ + 11978, + 11973, + 11972 + ]], + [[ + 11966, + 11981, + 11976 + ]], + [[ + 11965, + 11970, + 11981 + ]], + [[ + 11979, + 11985, + 11969 + ]], + [[ + 11960, + 11983, + 11985 + ]], + [[ + 11975, + 11972, + 11959 + ]], + [[ + 11982, + 11980, + 11977 + ]], + [[ + 11981, + 11975, + 11976 + ]], + [[ + 11982, + 11972, + 11975 + ]], + [[ + 11974, + 11977, + 11980 + ]], + [[ + 11974, + 11962, + 11977 + ]], + [[ + 11986, + 11959, + 11973 + ]], + [[ + 11987, + 11988, + 11960 + ]], + [[ + 11960, + 11988, + 11983 + ]], + [[ + 11959, + 11987, + 11960 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e2a94ee-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb7149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11989, + 10140, + 10249 + ]], + [[ + 10280, + 10140, + 11989 + ]], + [[ + 10175, + 10280, + 11989 + ]], + [[ + 10173, + 10175, + 11989 + ]], + [[ + 10277, + 10173, + 11989 + ]], + [[ + 11990, + 10277, + 11989 + ]], + [[ + 11990, + 10275, + 10277 + ]], + [[ + 11990, + 10270, + 10275 + ]], + [[ + 11990, + 10268, + 10270 + ]], + [[ + 11990, + 10266, + 10268 + ]], + [[ + 11990, + 10264, + 10266 + ]], + [[ + 11990, + 10262, + 10264 + ]], + [[ + 10260, + 10259, + 11990 + ]], + [[ + 11990, + 11991, + 11992 + ]], + [[ + 10256, + 10257, + 11990 + ]], + [[ + 10255, + 10256, + 11990 + ]], + [[ + 10314, + 10255, + 11990 + ]], + [[ + 10315, + 10314, + 11990 + ]], + [[ + 10316, + 10315, + 11990 + ]], + [[ + 10317, + 10316, + 11990 + ]], + [[ + 10406, + 10317, + 11990 + ]], + [[ + 10407, + 10406, + 11990 + ]], + [[ + 10410, + 10407, + 11992 + ]], + [[ + 10411, + 10410, + 11992 + ]], + [[ + 10145, + 10411, + 11992 + ]], + [[ + 10146, + 10145, + 11992 + ]], + [[ + 10420, + 10146, + 11992 + ]], + [[ + 11992, + 11991, + 11993 + ]], + [[ + 10422, + 11992, + 10236 + ]], + [[ + 10236, + 11992, + 10235 + ]], + [[ + 10235, + 11992, + 10423 + ]], + [[ + 10423, + 11992, + 10424 + ]], + [[ + 10424, + 11992, + 10228 + ]], + [[ + 10228, + 11992, + 10229 + ]], + [[ + 10229, + 11992, + 10224 + ]], + [[ + 10224, + 11992, + 10222 + ]], + [[ + 10222, + 11992, + 10219 + ]], + [[ + 10219, + 11992, + 10217 + ]], + [[ + 10217, + 11992, + 10218 + ]], + [[ + 10218, + 11992, + 10094 + ]], + [[ + 10094, + 11992, + 10092 + ]], + [[ + 10092, + 11992, + 11993 + ]], + [[ + 10428, + 10092, + 11993 + ]], + [[ + 10213, + 10428, + 11993 + ]], + [[ + 10212, + 10213, + 11993 + ]], + [[ + 10211, + 10212, + 11993 + ]], + [[ + 10210, + 10211, + 11993 + ]], + [[ + 10209, + 10210, + 11993 + ]], + [[ + 10208, + 10209, + 11993 + ]], + [[ + 11993, + 11991, + 11994 + ]], + [[ + 10207, + 10206, + 11993 + ]], + [[ + 10204, + 10207, + 11993 + ]], + [[ + 10202, + 10204, + 11993 + ]], + [[ + 10201, + 10202, + 11993 + ]], + [[ + 10200, + 10201, + 11993 + ]], + [[ + 10199, + 10200, + 11993 + ]], + [[ + 10198, + 11993, + 10197 + ]], + [[ + 10197, + 11994, + 10196 + ]], + [[ + 10196, + 11994, + 10195 + ]], + [[ + 10195, + 11994, + 10194 + ]], + [[ + 11994, + 10192, + 10193 + ]], + [[ + 11994, + 10191, + 10192 + ]], + [[ + 11994, + 10190, + 10191 + ]], + [[ + 11994, + 10189, + 10190 + ]], + [[ + 11994, + 10188, + 10189 + ]], + [[ + 11994, + 11995, + 10188 + ]], + [[ + 10188, + 11995, + 10187 + ]], + [[ + 10187, + 11995, + 10186 + ]], + [[ + 10186, + 11995, + 10185 + ]], + [[ + 10185, + 11995, + 10184 + ]], + [[ + 10184, + 11995, + 10183 + ]], + [[ + 11995, + 10180, + 10182 + ]], + [[ + 11995, + 11989, + 10299 + ]], + [[ + 10180, + 11995, + 10181 + ]], + [[ + 10181, + 11995, + 10302 + ]], + [[ + 10302, + 11995, + 10299 + ]], + [[ + 10299, + 11989, + 10300 + ]], + [[ + 10300, + 11989, + 10296 + ]], + [[ + 10296, + 11989, + 10294 + ]], + [[ + 10294, + 11989, + 10291 + ]], + [[ + 10291, + 11989, + 10178 + ]], + [[ + 10178, + 11989, + 10176 + ]], + [[ + 10176, + 11989, + 10287 + ]], + [[ + 11989, + 10308, + 10288 + ]], + [[ + 11989, + 10254, + 10308 + ]], + [[ + 11989, + 10282, + 10254 + ]], + [[ + 11989, + 10137, + 10282 + ]], + [[ + 11989, + 10251, + 10137 + ]], + [[ + 11989, + 10281, + 10251 + ]], + [[ + 11989, + 10249, + 10281 + ]], + [[ + 10198, + 10199, + 11993 + ]], + [[ + 11990, + 10259, + 10262 + ]], + [[ + 10194, + 11994, + 10193 + ]], + [[ + 11991, + 11989, + 11994 + ]], + [[ + 10421, + 11992, + 10422 + ]], + [[ + 10421, + 10420, + 11992 + ]], + [[ + 10287, + 11989, + 10288 + ]], + [[ + 11991, + 11990, + 11989 + ]], + [[ + 10197, + 11993, + 11994 + ]], + [[ + 10206, + 10208, + 11993 + ]], + [[ + 10183, + 11995, + 10182 + ]], + [[ + 11994, + 11989, + 11995 + ]], + [[ + 10407, + 11990, + 11992 + ]], + [[ + 10257, + 10260, + 11990 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e2dc9d5-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba4c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11996, + 11997, + 11998 + ]], + [[ + 11999, + 12000, + 12001 + ]], + [[ + 12002, + 12003, + 12004 + ]], + [[ + 12002, + 12000, + 12003 + ]], + [[ + 12005, + 12006, + 12000 + ]], + [[ + 12007, + 12006, + 12005 + ]], + [[ + 12005, + 12000, + 12008 + ]], + [[ + 12006, + 12009, + 12010 + ]], + [[ + 12011, + 12012, + 12006 + ]], + [[ + 12001, + 12000, + 12004 + ]], + [[ + 12000, + 12010, + 12003 + ]], + [[ + 12004, + 12000, + 12002 + ]], + [[ + 12013, + 12014, + 12015 + ]], + [[ + 11999, + 12016, + 12000 + ]], + [[ + 12017, + 11997, + 12015 + ]], + [[ + 12008, + 12013, + 12015 + ]], + [[ + 12016, + 12017, + 12014 + ]], + [[ + 11996, + 12008, + 12015 + ]], + [[ + 12013, + 12016, + 12014 + ]], + [[ + 12000, + 12013, + 12008 + ]], + [[ + 12000, + 12016, + 12013 + ]], + [[ + 11996, + 12015, + 11997 + ]], + [[ + 12014, + 12017, + 12015 + ]], + [[ + 12007, + 12005, + 11996 + ]], + [[ + 12006, + 12012, + 12009 + ]], + [[ + 12018, + 12007, + 11998 + ]], + [[ + 12019, + 12011, + 12007 + ]], + [[ + 12000, + 12006, + 12010 + ]], + [[ + 12007, + 12011, + 12006 + ]], + [[ + 12018, + 12019, + 12007 + ]], + [[ + 12018, + 12011, + 12019 + ]], + [[ + 12007, + 11996, + 11998 + ]], + [[ + 12005, + 12008, + 11996 + ]], + [[ + 11999, + 12017, + 12016 + ]], + [[ + 11999, + 11997, + 12017 + ]], + [[ + 12020, + 11997, + 11999 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e2e8cb2-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12021, + 12022, + 12023 + ]], + [[ + 12024, + 12025, + 12026 + ]], + [[ + 12027, + 12028, + 12029 + ]], + [[ + 12030, + 12022, + 12031 + ]], + [[ + 12026, + 12025, + 12030 + ]], + [[ + 12032, + 12030, + 12025 + ]], + [[ + 12033, + 12034, + 12035 + ]], + [[ + 12036, + 12037, + 12038 + ]], + [[ + 12039, + 12040, + 12041 + ]], + [[ + 12035, + 12042, + 12043 + ]], + [[ + 12039, + 12041, + 12044 + ]], + [[ + 12033, + 12035, + 12038 + ]], + [[ + 12045, + 12035, + 12034 + ]], + [[ + 12045, + 12042, + 12035 + ]], + [[ + 12040, + 12039, + 12037 + ]], + [[ + 12046, + 12042, + 12030 + ]], + [[ + 12047, + 12048, + 12049 + ]], + [[ + 12038, + 12035, + 12043 + ]], + [[ + 12025, + 12027, + 12029 + ]], + [[ + 12043, + 12042, + 12046 + ]], + [[ + 12046, + 12030, + 12032 + ]], + [[ + 12042, + 12022, + 12030 + ]], + [[ + 12045, + 12041, + 12023 + ]], + [[ + 12045, + 12034, + 12041 + ]], + [[ + 12050, + 12051, + 12049 + ]], + [[ + 12052, + 12041, + 12040 + ]], + [[ + 12041, + 12051, + 12023 + ]], + [[ + 12053, + 12022, + 12054 + ]], + [[ + 12051, + 12050, + 12054 + ]], + [[ + 12055, + 12056, + 12027 + ]], + [[ + 12057, + 12053, + 12054 + ]], + [[ + 12057, + 12058, + 12059 + ]], + [[ + 12027, + 12047, + 12028 + ]], + [[ + 12056, + 12055, + 12048 + ]], + [[ + 12024, + 12027, + 12025 + ]], + [[ + 12056, + 12047, + 12027 + ]], + [[ + 12047, + 12060, + 12028 + ]], + [[ + 12049, + 12048, + 12061 + ]], + [[ + 12029, + 12046, + 12032 + ]], + [[ + 12028, + 12043, + 12046 + ]], + [[ + 12059, + 12061, + 12048 + ]], + [[ + 12049, + 12062, + 12050 + ]], + [[ + 12057, + 12063, + 12024 + ]], + [[ + 12055, + 12027, + 12063 + ]], + [[ + 12038, + 12039, + 12044 + ]], + [[ + 12037, + 12060, + 12052 + ]], + [[ + 12047, + 12049, + 12052 + ]], + [[ + 12052, + 12051, + 12041 + ]], + [[ + 12064, + 12050, + 12062 + ]], + [[ + 12054, + 12021, + 12051 + ]], + [[ + 12060, + 12036, + 12065 + ]], + [[ + 12038, + 12044, + 12033 + ]], + [[ + 12056, + 12048, + 12047 + ]], + [[ + 12059, + 12063, + 12057 + ]], + [[ + 12055, + 12059, + 12048 + ]], + [[ + 12064, + 12062, + 12061 + ]], + [[ + 12060, + 12047, + 12052 + ]], + [[ + 12061, + 12062, + 12049 + ]], + [[ + 12061, + 12058, + 12064 + ]], + [[ + 12057, + 12054, + 12050 + ]], + [[ + 12041, + 12033, + 12044 + ]], + [[ + 12041, + 12034, + 12033 + ]], + [[ + 12057, + 12024, + 12066 + ]], + [[ + 12063, + 12027, + 12024 + ]], + [[ + 12058, + 12050, + 12064 + ]], + [[ + 12058, + 12057, + 12050 + ]], + [[ + 12037, + 12052, + 12040 + ]], + [[ + 12049, + 12051, + 12052 + ]], + [[ + 12067, + 12031, + 12022 + ]], + [[ + 12067, + 12066, + 12031 + ]], + [[ + 12053, + 12067, + 12022 + ]], + [[ + 12066, + 12024, + 12031 + ]], + [[ + 12025, + 12029, + 12032 + ]], + [[ + 12028, + 12046, + 12029 + ]], + [[ + 12065, + 12036, + 12038 + ]], + [[ + 12037, + 12039, + 12038 + ]], + [[ + 12043, + 12065, + 12038 + ]], + [[ + 12060, + 12037, + 12036 + ]], + [[ + 12028, + 12065, + 12043 + ]], + [[ + 12028, + 12060, + 12065 + ]], + [[ + 12053, + 12066, + 12067 + ]], + [[ + 12053, + 12057, + 12066 + ]], + [[ + 12061, + 12059, + 12058 + ]], + [[ + 12055, + 12063, + 12059 + ]], + [[ + 12031, + 12026, + 12030 + ]], + [[ + 12031, + 12024, + 12026 + ]], + [[ + 12051, + 12021, + 12023 + ]], + [[ + 12054, + 12022, + 12021 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e2f4faa-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8d749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12068, + 12069, + 12070 + ]], + [[ + 12071, + 12072, + 12073 + ]], + [[ + 12074, + 12075, + 12076 + ]], + [[ + 12077, + 12078, + 12068 + ]], + [[ + 12079, + 12080, + 12081 + ]], + [[ + 12082, + 12083, + 12084 + ]], + [[ + 12085, + 12086, + 12087 + ]], + [[ + 12078, + 12088, + 12089 + ]], + [[ + 12081, + 12090, + 12091 + ]], + [[ + 12086, + 12091, + 12092 + ]], + [[ + 12077, + 12093, + 12087 + ]], + [[ + 12087, + 12092, + 12088 + ]], + [[ + 12094, + 12085, + 12095 + ]], + [[ + 12096, + 12086, + 12085 + ]], + [[ + 12097, + 12073, + 12098 + ]], + [[ + 12076, + 12075, + 12099 + ]], + [[ + 12100, + 12071, + 12097 + ]], + [[ + 12101, + 12074, + 12076 + ]], + [[ + 12086, + 12079, + 12091 + ]], + [[ + 12102, + 12103, + 12104 + ]], + [[ + 12105, + 12076, + 12103 + ]], + [[ + 12101, + 12106, + 12107 + ]], + [[ + 12100, + 12098, + 12070 + ]], + [[ + 12073, + 12108, + 12094 + ]], + [[ + 12109, + 12071, + 12100 + ]], + [[ + 12071, + 12073, + 12097 + ]], + [[ + 12098, + 12068, + 12070 + ]], + [[ + 12094, + 12095, + 12093 + ]], + [[ + 12088, + 12077, + 12087 + ]], + [[ + 12093, + 12095, + 12087 + ]], + [[ + 12084, + 12091, + 12090 + ]], + [[ + 12090, + 12110, + 12084 + ]], + [[ + 12085, + 12087, + 12095 + ]], + [[ + 12086, + 12092, + 12087 + ]], + [[ + 12111, + 12099, + 12112 + ]], + [[ + 12104, + 12112, + 12113 + ]], + [[ + 12104, + 12111, + 12112 + ]], + [[ + 12075, + 12112, + 12099 + ]], + [[ + 12079, + 12105, + 12080 + ]], + [[ + 12076, + 12099, + 12111 + ]], + [[ + 12081, + 12102, + 12090 + ]], + [[ + 12113, + 12083, + 12082 + ]], + [[ + 12110, + 12104, + 12113 + ]], + [[ + 12102, + 12080, + 12103 + ]], + [[ + 12114, + 12078, + 12069 + ]], + [[ + 12088, + 12092, + 12089 + ]], + [[ + 12077, + 12088, + 12078 + ]], + [[ + 12092, + 12091, + 12089 + ]], + [[ + 12083, + 12112, + 12107 + ]], + [[ + 12112, + 12075, + 12074 + ]], + [[ + 12109, + 12106, + 12071 + ]], + [[ + 12107, + 12074, + 12101 + ]], + [[ + 12115, + 12109, + 12070 + ]], + [[ + 12115, + 12106, + 12109 + ]], + [[ + 12107, + 12115, + 12070 + ]], + [[ + 12107, + 12106, + 12115 + ]], + [[ + 12094, + 12108, + 12085 + ]], + [[ + 12108, + 12072, + 12116 + ]], + [[ + 12116, + 12072, + 12101 + ]], + [[ + 12071, + 12106, + 12072 + ]], + [[ + 12105, + 12101, + 12076 + ]], + [[ + 12072, + 12106, + 12101 + ]], + [[ + 12079, + 12081, + 12091 + ]], + [[ + 12080, + 12102, + 12081 + ]], + [[ + 12068, + 12114, + 12069 + ]], + [[ + 12068, + 12078, + 12114 + ]], + [[ + 12098, + 12094, + 12068 + ]], + [[ + 12098, + 12073, + 12094 + ]], + [[ + 12089, + 12084, + 12083 + ]], + [[ + 12089, + 12091, + 12084 + ]], + [[ + 12069, + 12089, + 12083 + ]], + [[ + 12069, + 12078, + 12089 + ]], + [[ + 12110, + 12102, + 12104 + ]], + [[ + 12110, + 12090, + 12102 + ]], + [[ + 12109, + 12100, + 12070 + ]], + [[ + 12097, + 12098, + 12100 + ]], + [[ + 12096, + 12079, + 12086 + ]], + [[ + 12096, + 12116, + 12079 + ]], + [[ + 12079, + 12116, + 12105 + ]], + [[ + 12108, + 12073, + 12072 + ]], + [[ + 12080, + 12105, + 12103 + ]], + [[ + 12116, + 12101, + 12105 + ]], + [[ + 12103, + 12111, + 12104 + ]], + [[ + 12103, + 12076, + 12111 + ]], + [[ + 12107, + 12112, + 12074 + ]], + [[ + 12083, + 12113, + 12112 + ]], + [[ + 12068, + 12093, + 12077 + ]], + [[ + 12068, + 12094, + 12093 + ]], + [[ + 12110, + 12082, + 12084 + ]], + [[ + 12110, + 12113, + 12082 + ]], + [[ + 12096, + 12108, + 12116 + ]], + [[ + 12096, + 12085, + 12108 + ]], + [[ + 12083, + 12117, + 12069 + ]], + [[ + 12118, + 12107, + 12070 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3061e0-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10364, + 10533, + 10358 + ]], + [[ + 10533, + 10367, + 10358 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3061ec-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12119, + 12120, + 12121 + ]], + [[ + 12119, + 12121, + 12122 + ]], + [[ + 12122, + 12121, + 12123 + ]], + [[ + 12123, + 12121, + 12124 + ]], + [[ + 12124, + 12121, + 12125 + ]], + [[ + 12125, + 12121, + 12126 + ]], + [[ + 12126, + 12121, + 12127 + ]], + [[ + 12127, + 12121, + 12128 + ]], + [[ + 12128, + 12121, + 12129 + ]], + [[ + 12129, + 12121, + 12130 + ]], + [[ + 12130, + 12121, + 12131 + ]], + [[ + 12131, + 12121, + 12132 + ]], + [[ + 12132, + 12121, + 12133 + ]], + [[ + 12133, + 12121, + 12134 + ]], + [[ + 12134, + 12121, + 12135 + ]], + [[ + 12135, + 12121, + 12136 + ]], + [[ + 12136, + 12121, + 12137 + ]], + [[ + 12137, + 12121, + 12138 + ]], + [[ + 12138, + 12121, + 12139 + ]], + [[ + 12139, + 12121, + 12140 + ]], + [[ + 12140, + 12121, + 12141 + ]], + [[ + 12141, + 12121, + 12142 + ]], + [[ + 12120, + 12143, + 12121 + ]], + [[ + 12144, + 12142, + 12121 + ]], + [[ + 12145, + 12121, + 12146 + ]], + [[ + 12146, + 12121, + 12147 + ]], + [[ + 12147, + 12121, + 12148 + ]], + [[ + 12148, + 12121, + 12149 + ]], + [[ + 12149, + 12121, + 12150 + ]], + [[ + 12150, + 12121, + 12151 + ]], + [[ + 12151, + 12121, + 12152 + ]], + [[ + 12152, + 12121, + 12153 + ]], + [[ + 12145, + 12144, + 12121 + ]], + [[ + 12154, + 12121, + 12155 + ]], + [[ + 12155, + 12121, + 12156 + ]], + [[ + 12156, + 12121, + 12157 + ]], + [[ + 12157, + 12121, + 12158 + ]], + [[ + 12158, + 12121, + 12159 + ]], + [[ + 12159, + 12121, + 12160 + ]], + [[ + 12160, + 12121, + 12161 + ]], + [[ + 12161, + 12121, + 12162 + ]], + [[ + 12162, + 12121, + 12163 + ]], + [[ + 12163, + 12121, + 12164 + ]], + [[ + 12121, + 12143, + 12165 + ]], + [[ + 12166, + 12121, + 12167 + ]], + [[ + 12167, + 12121, + 12168 + ]], + [[ + 12168, + 12121, + 12169 + ]], + [[ + 12169, + 12121, + 12170 + ]], + [[ + 12170, + 12121, + 12171 + ]], + [[ + 12171, + 12121, + 12172 + ]], + [[ + 12172, + 12121, + 12173 + ]], + [[ + 12173, + 12121, + 12174 + ]], + [[ + 12174, + 12121, + 12175 + ]], + [[ + 12175, + 12121, + 12176 + ]], + [[ + 12176, + 12121, + 12177 + ]], + [[ + 12177, + 12121, + 12178 + ]], + [[ + 12178, + 12121, + 12179 + ]], + [[ + 12179, + 12121, + 12180 + ]], + [[ + 12180, + 12121, + 12181 + ]], + [[ + 12181, + 12121, + 12182 + ]], + [[ + 12182, + 12121, + 12183 + ]], + [[ + 12184, + 12182, + 12183 + ]], + [[ + 12185, + 12184, + 12183 + ]], + [[ + 12186, + 12185, + 12183 + ]], + [[ + 12187, + 12186, + 12183 + ]], + [[ + 12188, + 12187, + 12183 + ]], + [[ + 12189, + 12188, + 12183 + ]], + [[ + 12190, + 12189, + 12183 + ]], + [[ + 12191, + 12190, + 12183 + ]], + [[ + 12192, + 12191, + 12183 + ]], + [[ + 12193, + 12192, + 12183 + ]], + [[ + 12194, + 12193, + 12183 + ]], + [[ + 12183, + 12121, + 12195 + ]], + [[ + 12196, + 12183, + 12197 + ]], + [[ + 12197, + 12183, + 12198 + ]], + [[ + 12198, + 12183, + 12199 + ]], + [[ + 12199, + 12183, + 12200 + ]], + [[ + 12200, + 12183, + 12201 + ]], + [[ + 12201, + 12183, + 12202 + ]], + [[ + 12202, + 12183, + 12203 + ]], + [[ + 12203, + 12183, + 12204 + ]], + [[ + 12204, + 12183, + 12205 + ]], + [[ + 12205, + 12183, + 12206 + ]], + [[ + 12206, + 12183, + 12195 + ]], + [[ + 12195, + 12121, + 12207 + ]], + [[ + 12207, + 12121, + 12208 + ]], + [[ + 12208, + 12121, + 12209 + ]], + [[ + 12209, + 12121, + 12165 + ]], + [[ + 12164, + 12121, + 12166 + ]], + [[ + 12154, + 12153, + 12121 + ]], + [[ + 12210, + 12183, + 12196 + ]], + [[ + 12210, + 12194, + 12183 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e319a5c-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12211, + 1025, + 12212 + ]], + [[ + 12213, + 1024, + 1023 + ]], + [[ + 12214, + 12211, + 1023 + ]], + [[ + 12212, + 1024, + 12213 + ]], + [[ + 1023, + 12211, + 12215 + ]], + [[ + 1025, + 1024, + 12212 + ]], + [[ + 12215, + 12213, + 1023 + ]], + [[ + 12215, + 12212, + 12213 + ]], + [[ + 1015, + 12214, + 1023 + ]], + [[ + 1015, + 1025, + 12211 + ]], + [[ + 12215, + 12211, + 12212 + ]], + [[ + 12214, + 1015, + 12211 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e328488-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1b249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12216, + 12217, + 3166 + ]], + [[ + 12218, + 12219, + 12220 + ]], + [[ + 12216, + 12221, + 12217 + ]], + [[ + 12222, + 12223, + 12224 + ]], + [[ + 12225, + 12226, + 12227 + ]], + [[ + 12227, + 3115, + 3163 + ]], + [[ + 12228, + 12229, + 12226 + ]], + [[ + 12230, + 12231, + 12232 + ]], + [[ + 12216, + 12233, + 12221 + ]], + [[ + 12234, + 12235, + 12236 + ]], + [[ + 12237, + 12231, + 12230 + ]], + [[ + 12238, + 3115, + 12231 + ]], + [[ + 12239, + 12223, + 12240 + ]], + [[ + 12232, + 3115, + 12241 + ]], + [[ + 12242, + 12221, + 12233 + ]], + [[ + 12218, + 12217, + 12221 + ]], + [[ + 12243, + 12230, + 12232 + ]], + [[ + 12244, + 12245, + 12238 + ]], + [[ + 12246, + 12247, + 12248 + ]], + [[ + 12249, + 12250, + 12251 + ]], + [[ + 12252, + 12233, + 12246 + ]], + [[ + 12246, + 12233, + 12253 + ]], + [[ + 12254, + 12255, + 12216 + ]], + [[ + 12256, + 12257, + 12258 + ]], + [[ + 12259, + 12255, + 12254 + ]], + [[ + 12260, + 3166, + 12261 + ]], + [[ + 12240, + 12262, + 3159 + ]], + [[ + 12263, + 12229, + 12222 + ]], + [[ + 12250, + 12249, + 12264 + ]], + [[ + 12265, + 12238, + 12245 + ]], + [[ + 12266, + 12243, + 12232 + ]], + [[ + 12231, + 3115, + 12232 + ]], + [[ + 12262, + 12228, + 3159 + ]], + [[ + 12262, + 12222, + 12228 + ]], + [[ + 12267, + 12268, + 12250 + ]], + [[ + 12244, + 12238, + 12269 + ]], + [[ + 12270, + 12271, + 12272 + ]], + [[ + 12273, + 3169, + 12258 + ]], + [[ + 12274, + 12275, + 12276 + ]], + [[ + 12277, + 12278, + 12241 + ]], + [[ + 12243, + 12279, + 12280 + ]], + [[ + 12280, + 12230, + 12243 + ]], + [[ + 12254, + 12216, + 3166 + ]], + [[ + 12281, + 12233, + 12216 + ]], + [[ + 3159, + 12225, + 3163 + ]], + [[ + 12222, + 12262, + 12223 + ]], + [[ + 12235, + 12216, + 12282 + ]], + [[ + 12258, + 12283, + 12284 + ]], + [[ + 12285, + 12286, + 12287 + ]], + [[ + 12288, + 12267, + 12264 + ]], + [[ + 12216, + 12235, + 12281 + ]], + [[ + 12216, + 12255, + 12289 + ]], + [[ + 12262, + 12240, + 12223 + ]], + [[ + 12217, + 12279, + 12275 + ]], + [[ + 12217, + 12290, + 12279 + ]], + [[ + 12291, + 12237, + 12230 + ]], + [[ + 12237, + 12292, + 12269 + ]], + [[ + 12238, + 12231, + 12269 + ]], + [[ + 12217, + 12240, + 3159 + ]], + [[ + 12217, + 12275, + 12240 + ]], + [[ + 12290, + 12292, + 12237 + ]], + [[ + 12217, + 12245, + 12292 + ]], + [[ + 12285, + 12265, + 12245 + ]], + [[ + 12217, + 12293, + 12245 + ]], + [[ + 12241, + 12276, + 12266 + ]], + [[ + 12275, + 12279, + 12243 + ]], + [[ + 3170, + 12261, + 3166 + ]], + [[ + 3170, + 3169, + 12261 + ]], + [[ + 12294, + 12247, + 12295 + ]], + [[ + 12296, + 12238, + 12295 + ]], + [[ + 12297, + 12298, + 12296 + ]], + [[ + 12297, + 12296, + 12247 + ]], + [[ + 12298, + 12299, + 12296 + ]], + [[ + 12256, + 3169, + 12296 + ]], + [[ + 12289, + 12256, + 12282 + ]], + [[ + 12236, + 12235, + 12282 + ]], + [[ + 12283, + 12259, + 12254 + ]], + [[ + 12257, + 12255, + 12259 + ]], + [[ + 12300, + 12221, + 12294 + ]], + [[ + 12301, + 12252, + 12246 + ]], + [[ + 12267, + 12288, + 12268 + ]], + [[ + 12264, + 12249, + 12295 + ]], + [[ + 12302, + 12295, + 12238 + ]], + [[ + 12247, + 12296, + 12295 + ]], + [[ + 12288, + 12264, + 12295 + ]], + [[ + 12267, + 12250, + 12264 + ]], + [[ + 12249, + 12300, + 12294 + ]], + [[ + 12294, + 12301, + 12248 + ]], + [[ + 12253, + 12297, + 12247 + ]], + [[ + 3169, + 12238, + 12296 + ]], + [[ + 3115, + 12224, + 12277 + ]], + [[ + 12278, + 12303, + 12274 + ]], + [[ + 12289, + 12257, + 12256 + ]], + [[ + 12299, + 12281, + 12234 + ]], + [[ + 12233, + 12297, + 12253 + ]], + [[ + 12281, + 12299, + 12298 + ]], + [[ + 12281, + 12297, + 12233 + ]], + [[ + 12281, + 12298, + 12297 + ]], + [[ + 12251, + 12218, + 12221 + ]], + [[ + 12268, + 12219, + 12218 + ]], + [[ + 12274, + 12276, + 12241 + ]], + [[ + 12275, + 12243, + 12266 + ]], + [[ + 12294, + 12304, + 12301 + ]], + [[ + 12304, + 12242, + 12301 + ]], + [[ + 12301, + 12246, + 12248 + ]], + [[ + 12253, + 12247, + 12246 + ]], + [[ + 12236, + 12282, + 12256 + ]], + [[ + 12258, + 3169, + 12256 + ]], + [[ + 12216, + 12289, + 12282 + ]], + [[ + 12255, + 12257, + 12289 + ]], + [[ + 12299, + 12256, + 12296 + ]], + [[ + 12299, + 12236, + 12256 + ]], + [[ + 12259, + 12258, + 12257 + ]], + [[ + 12284, + 12305, + 12258 + ]], + [[ + 12219, + 12268, + 12302 + ]], + [[ + 12302, + 12268, + 12288 + ]], + [[ + 12241, + 12266, + 12232 + ]], + [[ + 12276, + 12275, + 12266 + ]], + [[ + 12219, + 12302, + 12220 + ]], + [[ + 12302, + 12238, + 12265 + ]], + [[ + 12293, + 12285, + 12245 + ]], + [[ + 12287, + 12220, + 12265 + ]], + [[ + 12280, + 12291, + 12230 + ]], + [[ + 12290, + 12217, + 12292 + ]], + [[ + 12280, + 12290, + 12291 + ]], + [[ + 12280, + 12279, + 12290 + ]], + [[ + 12270, + 12254, + 3166 + ]], + [[ + 12272, + 12284, + 12283 + ]], + [[ + 12272, + 12283, + 12254 + ]], + [[ + 12258, + 12259, + 12283 + ]], + [[ + 12292, + 12244, + 12269 + ]], + [[ + 12292, + 12245, + 12244 + ]], + [[ + 12228, + 12225, + 3159 + ]], + [[ + 12228, + 12226, + 12225 + ]], + [[ + 3169, + 12306, + 12261 + ]], + [[ + 12270, + 3166, + 12260 + ]], + [[ + 12261, + 12306, + 12260 + ]], + [[ + 12272, + 12254, + 12270 + ]], + [[ + 12307, + 12306, + 12273 + ]], + [[ + 12307, + 12260, + 12306 + ]], + [[ + 12305, + 12273, + 12258 + ]], + [[ + 12306, + 3169, + 12273 + ]], + [[ + 12270, + 12307, + 12305 + ]], + [[ + 12270, + 12260, + 12307 + ]], + [[ + 12271, + 12305, + 12284 + ]], + [[ + 12307, + 12273, + 12305 + ]], + [[ + 12272, + 12271, + 12284 + ]], + [[ + 12270, + 12305, + 12271 + ]], + [[ + 12221, + 12304, + 12294 + ]], + [[ + 12221, + 12242, + 12304 + ]], + [[ + 12227, + 12263, + 3115 + ]], + [[ + 12278, + 12274, + 12241 + ]], + [[ + 12263, + 12222, + 12224 + ]], + [[ + 12229, + 12228, + 12222 + ]], + [[ + 3115, + 12277, + 12241 + ]], + [[ + 12239, + 12240, + 12277 + ]], + [[ + 12224, + 12239, + 12277 + ]], + [[ + 12224, + 12223, + 12239 + ]], + [[ + 12225, + 12227, + 3163 + ]], + [[ + 12263, + 12224, + 3115 + ]], + [[ + 12220, + 12302, + 12265 + ]], + [[ + 12288, + 12295, + 12302 + ]], + [[ + 12300, + 12249, + 12251 + ]], + [[ + 12268, + 12218, + 12250 + ]], + [[ + 12218, + 12286, + 12217 + ]], + [[ + 12218, + 12220, + 12287 + ]], + [[ + 12285, + 12287, + 12265 + ]], + [[ + 12286, + 12218, + 12287 + ]], + [[ + 12252, + 12242, + 12233 + ]], + [[ + 12252, + 12301, + 12242 + ]], + [[ + 12299, + 12234, + 12236 + ]], + [[ + 12281, + 12235, + 12234 + ]], + [[ + 12300, + 12251, + 12221 + ]], + [[ + 12250, + 12218, + 12251 + ]], + [[ + 12286, + 12293, + 12217 + ]], + [[ + 12286, + 12285, + 12293 + ]], + [[ + 12247, + 12294, + 12248 + ]], + [[ + 12295, + 12249, + 12294 + ]], + [[ + 12226, + 12263, + 12227 + ]], + [[ + 12226, + 12229, + 12263 + ]], + [[ + 12231, + 12237, + 12269 + ]], + [[ + 12291, + 12290, + 12237 + ]], + [[ + 12308, + 12278, + 12277 + ]], + [[ + 12308, + 12303, + 12278 + ]], + [[ + 12240, + 12308, + 12277 + ]], + [[ + 12303, + 12275, + 12274 + ]], + [[ + 12240, + 12303, + 12308 + ]], + [[ + 12240, + 12275, + 12303 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e33202e-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efe6f849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12309, + 12310, + 12311 + ]], + [[ + 12312, + 12313, + 12314 + ]], + [[ + 12315, + 7831, + 12316 + ]], + [[ + 12317, + 12318, + 12319 + ]], + [[ + 12320, + 12317, + 12321 + ]], + [[ + 12322, + 12320, + 12321 + ]], + [[ + 12321, + 12317, + 12323 + ]], + [[ + 12324, + 12318, + 12317 + ]], + [[ + 12316, + 7831, + 7832 + ]], + [[ + 12325, + 12326, + 12327 + ]], + [[ + 12328, + 12329, + 12330 + ]], + [[ + 12327, + 12316, + 7832 + ]], + [[ + 12331, + 12332, + 12333 + ]], + [[ + 12334, + 12335, + 12336 + ]], + [[ + 12337, + 12338, + 8060 + ]], + [[ + 12339, + 7856, + 7867 + ]], + [[ + 12340, + 7820, + 7856 + ]], + [[ + 12341, + 7821, + 7820 + ]], + [[ + 8055, + 12342, + 7867 + ]], + [[ + 12343, + 12344, + 12345 + ]], + [[ + 12346, + 12347, + 12348 + ]], + [[ + 12349, + 12350, + 7856 + ]], + [[ + 12351, + 12352, + 8060 + ]], + [[ + 12338, + 8055, + 8060 + ]], + [[ + 12353, + 12327, + 7832 + ]], + [[ + 12324, + 12354, + 12355 + ]], + [[ + 12350, + 12340, + 7856 + ]], + [[ + 12356, + 7820, + 12340 + ]], + [[ + 7831, + 12314, + 12357 + ]], + [[ + 12333, + 8060, + 7831 + ]], + [[ + 12358, + 12359, + 12341 + ]], + [[ + 12359, + 7821, + 12341 + ]], + [[ + 12360, + 12361, + 7856 + ]], + [[ + 12349, + 12361, + 12362 + ]], + [[ + 12338, + 12344, + 8055 + ]], + [[ + 12309, + 12342, + 8055 + ]], + [[ + 12363, + 12364, + 12365 + ]], + [[ + 12366, + 12365, + 12367 + ]], + [[ + 12363, + 12368, + 12369 + ]], + [[ + 12370, + 12371, + 12372 + ]], + [[ + 12361, + 12349, + 7856 + ]], + [[ + 12362, + 12373, + 12374 + ]], + [[ + 12375, + 12356, + 12340 + ]], + [[ + 12356, + 12376, + 12358 + ]], + [[ + 12377, + 12343, + 12378 + ]], + [[ + 12338, + 12368, + 12379 + ]], + [[ + 12332, + 12380, + 12333 + ]], + [[ + 12352, + 12369, + 8060 + ]], + [[ + 12381, + 12382, + 12383 + ]], + [[ + 12384, + 12385, + 12364 + ]], + [[ + 12386, + 12332, + 12331 + ]], + [[ + 12387, + 12382, + 12381 + ]], + [[ + 12388, + 12374, + 12340 + ]], + [[ + 12389, + 12356, + 12375 + ]], + [[ + 12353, + 12390, + 12391 + ]], + [[ + 12392, + 12393, + 12317 + ]], + [[ + 12354, + 12329, + 12394 + ]], + [[ + 12354, + 12324, + 12317 + ]], + [[ + 12326, + 12395, + 12396 + ]], + [[ + 12317, + 12319, + 12323 + ]], + [[ + 12327, + 12326, + 12396 + ]], + [[ + 12325, + 12330, + 12397 + ]], + [[ + 12338, + 12345, + 12344 + ]], + [[ + 12338, + 12398, + 12345 + ]], + [[ + 12336, + 8055, + 12399 + ]], + [[ + 12374, + 12400, + 12340 + ]], + [[ + 12357, + 12401, + 12331 + ]], + [[ + 12381, + 12402, + 12403 + ]], + [[ + 12339, + 12360, + 7856 + ]], + [[ + 12339, + 12370, + 12360 + ]], + [[ + 12350, + 12362, + 12340 + ]], + [[ + 12362, + 12361, + 12373 + ]], + [[ + 12404, + 12389, + 12400 + ]], + [[ + 12376, + 12359, + 12358 + ]], + [[ + 12405, + 12390, + 7832 + ]], + [[ + 12391, + 12330, + 12325 + ]], + [[ + 12401, + 12386, + 12331 + ]], + [[ + 12401, + 12313, + 12387 + ]], + [[ + 7820, + 12358, + 12341 + ]], + [[ + 12406, + 7821, + 12359 + ]], + [[ + 12365, + 12407, + 12367 + ]], + [[ + 12408, + 12409, + 12347 + ]], + [[ + 12337, + 12368, + 12338 + ]], + [[ + 12369, + 12352, + 12384 + ]], + [[ + 12351, + 12384, + 12352 + ]], + [[ + 12380, + 12332, + 12381 + ]], + [[ + 12410, + 12312, + 12320 + ]], + [[ + 12313, + 12382, + 12387 + ]], + [[ + 12331, + 12333, + 7831 + ]], + [[ + 12351, + 8060, + 12333 + ]], + [[ + 12400, + 12375, + 12340 + ]], + [[ + 12400, + 12389, + 12375 + ]], + [[ + 12356, + 12358, + 7820 + ]], + [[ + 12356, + 12389, + 12376 + ]], + [[ + 12395, + 12411, + 12396 + ]], + [[ + 12412, + 12317, + 12320 + ]], + [[ + 12413, + 12414, + 12415 + ]], + [[ + 12315, + 12416, + 12314 + ]], + [[ + 12396, + 12316, + 12327 + ]], + [[ + 12396, + 12411, + 12316 + ]], + [[ + 12417, + 12310, + 12418 + ]], + [[ + 12361, + 12360, + 12370 + ]], + [[ + 12313, + 12419, + 12382 + ]], + [[ + 12420, + 12403, + 12421 + ]], + [[ + 12344, + 12399, + 8055 + ]], + [[ + 12422, + 12367, + 12407 + ]], + [[ + 12423, + 12339, + 7867 + ]], + [[ + 12424, + 12407, + 12425 + ]], + [[ + 12426, + 12311, + 12417 + ]], + [[ + 12409, + 12309, + 12311 + ]], + [[ + 12309, + 12336, + 12310 + ]], + [[ + 12309, + 8055, + 12336 + ]], + [[ + 7831, + 12357, + 12331 + ]], + [[ + 12416, + 12315, + 12316 + ]], + [[ + 12326, + 12325, + 12397 + ]], + [[ + 12394, + 12427, + 12354 + ]], + [[ + 12428, + 12403, + 12429 + ]], + [[ + 12335, + 12310, + 12336 + ]], + [[ + 12430, + 12431, + 12432 + ]], + [[ + 12372, + 12361, + 12370 + ]], + [[ + 12346, + 12371, + 12423 + ]], + [[ + 12370, + 12339, + 12371 + ]], + [[ + 12347, + 12409, + 12426 + ]], + [[ + 12342, + 12309, + 12409 + ]], + [[ + 12342, + 12408, + 7867 + ]], + [[ + 12342, + 12409, + 12408 + ]], + [[ + 12380, + 12385, + 12384 + ]], + [[ + 12425, + 12407, + 12365 + ]], + [[ + 12351, + 12380, + 12384 + ]], + [[ + 12351, + 12333, + 12380 + ]], + [[ + 12412, + 12414, + 12317 + ]], + [[ + 12414, + 12392, + 12317 + ]], + [[ + 12432, + 12377, + 12378 + ]], + [[ + 12422, + 12424, + 12428 + ]], + [[ + 12420, + 12433, + 12425 + ]], + [[ + 12421, + 12428, + 12433 + ]], + [[ + 12431, + 12428, + 12429 + ]], + [[ + 12418, + 12434, + 12417 + ]], + [[ + 12410, + 12435, + 12312 + ]], + [[ + 12435, + 12436, + 12419 + ]], + [[ + 12431, + 12418, + 12437 + ]], + [[ + 12438, + 12439, + 12348 + ]], + [[ + 7832, + 12390, + 12353 + ]], + [[ + 12328, + 12394, + 12329 + ]], + [[ + 12440, + 12441, + 12404 + ]], + [[ + 12376, + 12389, + 12404 + ]], + [[ + 12348, + 12347, + 12438 + ]], + [[ + 12442, + 12434, + 12443 + ]], + [[ + 12408, + 12444, + 7867 + ]], + [[ + 12408, + 12347, + 12444 + ]], + [[ + 12384, + 12364, + 12369 + ]], + [[ + 12425, + 12433, + 12424 + ]], + [[ + 12337, + 12369, + 12368 + ]], + [[ + 12337, + 8060, + 12369 + ]], + [[ + 12385, + 12425, + 12364 + ]], + [[ + 12385, + 12420, + 12425 + ]], + [[ + 12426, + 12417, + 12442 + ]], + [[ + 12440, + 12404, + 12400 + ]], + [[ + 12439, + 12441, + 12373 + ]], + [[ + 12406, + 12404, + 12441 + ]], + [[ + 12445, + 12398, + 12338 + ]], + [[ + 12445, + 12338, + 12379 + ]], + [[ + 12383, + 12402, + 12381 + ]], + [[ + 12446, + 12403, + 12402 + ]], + [[ + 12380, + 12381, + 12385 + ]], + [[ + 12387, + 12386, + 12401 + ]], + [[ + 12332, + 12387, + 12381 + ]], + [[ + 12332, + 12386, + 12387 + ]], + [[ + 12431, + 12434, + 12418 + ]], + [[ + 12406, + 12441, + 12434 + ]], + [[ + 12442, + 12438, + 12347 + ]], + [[ + 12443, + 12439, + 12438 + ]], + [[ + 12442, + 12417, + 12434 + ]], + [[ + 12311, + 12310, + 12417 + ]], + [[ + 12378, + 12343, + 12398 + ]], + [[ + 12445, + 12379, + 12366 + ]], + [[ + 12377, + 12432, + 12431 + ]], + [[ + 12430, + 12367, + 12431 + ]], + [[ + 12430, + 12447, + 12366 + ]], + [[ + 12379, + 12368, + 12366 + ]], + [[ + 12367, + 12430, + 12366 + ]], + [[ + 12447, + 12398, + 12445 + ]], + [[ + 12366, + 12447, + 12445 + ]], + [[ + 12378, + 12398, + 12447 + ]], + [[ + 12431, + 12422, + 12428 + ]], + [[ + 12431, + 12367, + 12422 + ]], + [[ + 12357, + 12314, + 12401 + ]], + [[ + 12312, + 12419, + 12313 + ]], + [[ + 12401, + 12314, + 12313 + ]], + [[ + 7831, + 12315, + 12314 + ]], + [[ + 12429, + 12410, + 12322 + ]], + [[ + 12312, + 12415, + 12412 + ]], + [[ + 12419, + 12436, + 12382 + ]], + [[ + 12382, + 12446, + 12383 + ]], + [[ + 12436, + 12446, + 12382 + ]], + [[ + 12436, + 12435, + 12446 + ]], + [[ + 12327, + 12391, + 12325 + ]], + [[ + 12390, + 12405, + 12328 + ]], + [[ + 12353, + 12391, + 12327 + ]], + [[ + 12390, + 12330, + 12391 + ]], + [[ + 12322, + 12410, + 12320 + ]], + [[ + 12429, + 12446, + 12435 + ]], + [[ + 12347, + 12426, + 12442 + ]], + [[ + 12409, + 12311, + 12426 + ]], + [[ + 12444, + 12423, + 7867 + ]], + [[ + 12371, + 12339, + 12423 + ]], + [[ + 12420, + 12421, + 12433 + ]], + [[ + 12403, + 12428, + 12421 + ]], + [[ + 12335, + 12448, + 12437 + ]], + [[ + 12399, + 12344, + 12343 + ]], + [[ + 12398, + 12343, + 12345 + ]], + [[ + 12377, + 12449, + 12343 + ]], + [[ + 12310, + 12335, + 12418 + ]], + [[ + 12399, + 12343, + 12449 + ]], + [[ + 12449, + 12448, + 12334 + ]], + [[ + 12437, + 12377, + 12431 + ]], + [[ + 12334, + 12448, + 12335 + ]], + [[ + 12449, + 12377, + 12448 + ]], + [[ + 12395, + 12414, + 12411 + ]], + [[ + 12395, + 12397, + 12392 + ]], + [[ + 12326, + 12397, + 12395 + ]], + [[ + 12330, + 12329, + 12393 + ]], + [[ + 12378, + 12430, + 12432 + ]], + [[ + 12378, + 12447, + 12430 + ]], + [[ + 12428, + 12424, + 12433 + ]], + [[ + 12422, + 12407, + 12424 + ]], + [[ + 12335, + 12437, + 12418 + ]], + [[ + 12448, + 12377, + 12437 + ]], + [[ + 12390, + 12328, + 12330 + ]], + [[ + 12405, + 12394, + 12328 + ]], + [[ + 12406, + 12376, + 12404 + ]], + [[ + 12406, + 12359, + 12376 + ]], + [[ + 12381, + 12420, + 12385 + ]], + [[ + 12381, + 12403, + 12420 + ]], + [[ + 12314, + 12415, + 12312 + ]], + [[ + 12413, + 12411, + 12414 + ]], + [[ + 12411, + 12413, + 12316 + ]], + [[ + 12415, + 12314, + 12416 + ]], + [[ + 12416, + 12413, + 12415 + ]], + [[ + 12416, + 12316, + 12413 + ]], + [[ + 12312, + 12412, + 12320 + ]], + [[ + 12415, + 12414, + 12412 + ]], + [[ + 12395, + 12392, + 12414 + ]], + [[ + 12397, + 12330, + 12393 + ]], + [[ + 12355, + 12354, + 12427 + ]], + [[ + 12393, + 12329, + 12354 + ]], + [[ + 12317, + 12393, + 12354 + ]], + [[ + 12392, + 12397, + 12393 + ]], + [[ + 12371, + 12348, + 12372 + ]], + [[ + 12346, + 12444, + 12347 + ]], + [[ + 12406, + 12431, + 12429 + ]], + [[ + 12406, + 12434, + 12431 + ]], + [[ + 12348, + 12439, + 12372 + ]], + [[ + 12434, + 12441, + 12439 + ]], + [[ + 12372, + 12373, + 12361 + ]], + [[ + 12372, + 12439, + 12373 + ]], + [[ + 12340, + 12362, + 12388 + ]], + [[ + 12350, + 12349, + 12362 + ]], + [[ + 12362, + 12374, + 12388 + ]], + [[ + 12373, + 12441, + 12440 + ]], + [[ + 12374, + 12440, + 12400 + ]], + [[ + 12374, + 12373, + 12440 + ]], + [[ + 12368, + 12363, + 12366 + ]], + [[ + 12364, + 12425, + 12365 + ]], + [[ + 12364, + 12363, + 12369 + ]], + [[ + 12365, + 12366, + 12363 + ]], + [[ + 12312, + 12435, + 12419 + ]], + [[ + 12410, + 12429, + 12435 + ]], + [[ + 12442, + 12443, + 12438 + ]], + [[ + 12434, + 12439, + 12443 + ]], + [[ + 12383, + 12446, + 12402 + ]], + [[ + 12429, + 12403, + 12446 + ]], + [[ + 12399, + 12334, + 12336 + ]], + [[ + 12399, + 12449, + 12334 + ]], + [[ + 12444, + 12346, + 12423 + ]], + [[ + 12348, + 12371, + 12346 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e336e96-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12450, + 12451, + 12452 + ]], + [[ + 12453, + 12452, + 12454 + ]], + [[ + 12455, + 12456, + 12457 + ]], + [[ + 12456, + 12451, + 12458 + ]], + [[ + 12458, + 12459, + 12457 + ]], + [[ + 12458, + 12451, + 12460 + ]], + [[ + 12459, + 12455, + 12457 + ]], + [[ + 12461, + 12451, + 12456 + ]], + [[ + 12462, + 12463, + 12453 + ]], + [[ + 12462, + 12456, + 12455 + ]], + [[ + 12461, + 12462, + 12454 + ]], + [[ + 12461, + 12456, + 12462 + ]], + [[ + 12453, + 12464, + 12452 + ]], + [[ + 12463, + 12455, + 12464 + ]], + [[ + 12465, + 12455, + 12459 + ]], + [[ + 12463, + 12462, + 12455 + ]], + [[ + 12462, + 12453, + 12454 + ]], + [[ + 12463, + 12464, + 12453 + ]], + [[ + 12464, + 12465, + 12450 + ]], + [[ + 12464, + 12455, + 12465 + ]], + [[ + 12450, + 12460, + 12451 + ]], + [[ + 12465, + 12459, + 12460 + ]], + [[ + 12459, + 12458, + 12460 + ]], + [[ + 12457, + 12456, + 12458 + ]], + [[ + 12464, + 12450, + 12452 + ]], + [[ + 12465, + 12460, + 12450 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e33bd04-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1b349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12466, + 12467, + 12468 + ]], + [[ + 11826, + 12469, + 12470 + ]], + [[ + 11814, + 12471, + 11808 + ]], + [[ + 12469, + 11809, + 12472 + ]], + [[ + 12473, + 12474, + 12475 + ]], + [[ + 12476, + 11826, + 12470 + ]], + [[ + 12476, + 11814, + 11826 + ]], + [[ + 12471, + 12477, + 11808 + ]], + [[ + 12478, + 12479, + 12475 + ]], + [[ + 12480, + 12481, + 12482 + ]], + [[ + 12483, + 12472, + 12468 + ]], + [[ + 12467, + 12477, + 12468 + ]], + [[ + 12479, + 12473, + 12475 + ]], + [[ + 12484, + 12485, + 12481 + ]], + [[ + 12470, + 12469, + 12468 + ]], + [[ + 12472, + 12466, + 12468 + ]], + [[ + 12484, + 12480, + 12467 + ]], + [[ + 12482, + 12477, + 12467 + ]], + [[ + 12469, + 12472, + 12483 + ]], + [[ + 11809, + 12486, + 12472 + ]], + [[ + 12473, + 12485, + 12474 + ]], + [[ + 12481, + 12480, + 12484 + ]], + [[ + 12472, + 12486, + 12466 + ]], + [[ + 11809, + 12473, + 12479 + ]], + [[ + 12468, + 12469, + 12483 + ]], + [[ + 11826, + 11809, + 12469 + ]], + [[ + 12478, + 12467, + 12466 + ]], + [[ + 12475, + 12474, + 12484 + ]], + [[ + 12475, + 12484, + 12467 + ]], + [[ + 12474, + 12485, + 12484 + ]], + [[ + 12481, + 12473, + 11809 + ]], + [[ + 12481, + 12485, + 12473 + ]], + [[ + 12467, + 12478, + 12475 + ]], + [[ + 12466, + 12486, + 12478 + ]], + [[ + 12480, + 12482, + 12467 + ]], + [[ + 11808, + 12477, + 12482 + ]], + [[ + 11808, + 12481, + 11809 + ]], + [[ + 11808, + 12482, + 12481 + ]], + [[ + 12476, + 12471, + 11814 + ]], + [[ + 12476, + 12477, + 12471 + ]], + [[ + 12486, + 12479, + 12478 + ]], + [[ + 12486, + 11809, + 12479 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e34317c-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1aa49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12487, + 12488, + 12489 + ]], + [[ + 12490, + 12491, + 12492 + ]], + [[ + 12488, + 12491, + 12489 + ]], + [[ + 12493, + 12489, + 12491 + ]], + [[ + 12494, + 12495, + 12496 + ]], + [[ + 12497, + 12493, + 12491 + ]], + [[ + 12490, + 12498, + 12491 + ]], + [[ + 12499, + 12500, + 12501 + ]], + [[ + 12490, + 12499, + 12498 + ]], + [[ + 12502, + 12493, + 12497 + ]], + [[ + 12500, + 12503, + 12504 + ]], + [[ + 12500, + 12499, + 12503 + ]], + [[ + 12498, + 12497, + 12491 + ]], + [[ + 12498, + 12499, + 12501 + ]], + [[ + 12505, + 12506, + 12495 + ]], + [[ + 12502, + 12501, + 12507 + ]], + [[ + 12504, + 12492, + 12488 + ]], + [[ + 12504, + 12503, + 12490 + ]], + [[ + 12487, + 12508, + 12509 + ]], + [[ + 12492, + 12491, + 12488 + ]], + [[ + 12504, + 12490, + 12492 + ]], + [[ + 12503, + 12499, + 12490 + ]], + [[ + 12501, + 12496, + 12510 + ]], + [[ + 12507, + 12493, + 12502 + ]], + [[ + 12511, + 12512, + 12513 + ]], + [[ + 12508, + 12514, + 12515 + ]], + [[ + 12494, + 12505, + 12495 + ]], + [[ + 12515, + 12506, + 12505 + ]], + [[ + 12511, + 12504, + 12512 + ]], + [[ + 12514, + 12506, + 12515 + ]], + [[ + 12498, + 12502, + 12497 + ]], + [[ + 12510, + 12496, + 12516 + ]], + [[ + 12515, + 12494, + 12496 + ]], + [[ + 12515, + 12505, + 12494 + ]], + [[ + 12506, + 12516, + 12495 + ]], + [[ + 12516, + 12493, + 12507 + ]], + [[ + 12498, + 12501, + 12502 + ]], + [[ + 12500, + 12496, + 12501 + ]], + [[ + 12501, + 12510, + 12507 + ]], + [[ + 12496, + 12495, + 12516 + ]], + [[ + 12510, + 12516, + 12507 + ]], + [[ + 12506, + 12493, + 12516 + ]], + [[ + 12496, + 12500, + 12511 + ]], + [[ + 12504, + 12488, + 12512 + ]], + [[ + 12496, + 12511, + 12515 + ]], + [[ + 12512, + 12488, + 12487 + ]], + [[ + 12513, + 12509, + 12515 + ]], + [[ + 12513, + 12512, + 12509 + ]], + [[ + 12509, + 12508, + 12515 + ]], + [[ + 12509, + 12512, + 12487 + ]], + [[ + 12515, + 12511, + 12513 + ]], + [[ + 12500, + 12504, + 12511 + ]], + [[ + 12514, + 12487, + 12489 + ]], + [[ + 12514, + 12508, + 12487 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e347fd5-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12517, + 12518, + 12519 + ]], + [[ + 12520, + 12521, + 12522 + ]], + [[ + 12523, + 12524, + 12525 + ]], + [[ + 12520, + 12526, + 12527 + ]], + [[ + 12519, + 12518, + 12524 + ]], + [[ + 12517, + 12528, + 12527 + ]], + [[ + 12523, + 12520, + 12522 + ]], + [[ + 12524, + 12518, + 12525 + ]], + [[ + 12520, + 12525, + 12526 + ]], + [[ + 12520, + 12523, + 12525 + ]], + [[ + 12517, + 12526, + 12518 + ]], + [[ + 12525, + 12518, + 12526 + ]], + [[ + 12519, + 12523, + 12522 + ]], + [[ + 12519, + 12524, + 12523 + ]], + [[ + 12521, + 12527, + 12528 + ]], + [[ + 12521, + 12520, + 12527 + ]], + [[ + 12526, + 12517, + 12527 + ]], + [[ + 12519, + 12528, + 12517 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e34ce31-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12529, + 12530, + 12531 + ]], + [[ + 12529, + 12531, + 12532 + ]], + [[ + 12533, + 12534, + 12535 + ]], + [[ + 12530, + 12536, + 12531 + ]], + [[ + 12535, + 12529, + 12532 + ]], + [[ + 12534, + 12537, + 12530 + ]], + [[ + 12538, + 12533, + 12532 + ]], + [[ + 12534, + 12529, + 12535 + ]], + [[ + 12533, + 12537, + 12534 + ]], + [[ + 12538, + 12536, + 12537 + ]], + [[ + 12532, + 12533, + 12535 + ]], + [[ + 12538, + 12537, + 12533 + ]], + [[ + 12534, + 12530, + 12529 + ]], + [[ + 12537, + 12536, + 12530 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e362de1-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12539, + 3111, + 12540 + ]], + [[ + 12541, + 3046, + 3104 + ]], + [[ + 12542, + 12543, + 12541 + ]], + [[ + 3046, + 12544, + 3047 + ]], + [[ + 12545, + 12546, + 12547 + ]], + [[ + 12548, + 12549, + 12550 + ]], + [[ + 12551, + 12552, + 12553 + ]], + [[ + 12554, + 12555, + 12556 + ]], + [[ + 12557, + 12558, + 12559 + ]], + [[ + 12560, + 12561, + 12562 + ]], + [[ + 12563, + 12564, + 3099 + ]], + [[ + 12565, + 12470, + 12566 + ]], + [[ + 12567, + 12550, + 12568 + ]], + [[ + 12569, + 12476, + 12570 + ]], + [[ + 12571, + 12547, + 12546 + ]], + [[ + 12572, + 12476, + 12470 + ]], + [[ + 12573, + 12468, + 12574 + ]], + [[ + 12550, + 12549, + 12568 + ]], + [[ + 12575, + 12576, + 12564 + ]], + [[ + 12577, + 12578, + 12579 + ]], + [[ + 12578, + 12580, + 12581 + ]], + [[ + 12567, + 12549, + 12580 + ]], + [[ + 12563, + 12567, + 12580 + ]], + [[ + 12563, + 12577, + 12579 + ]], + [[ + 12564, + 12553, + 3099 + ]], + [[ + 12581, + 12576, + 12578 + ]], + [[ + 12582, + 12583, + 12559 + ]], + [[ + 12552, + 12559, + 12558 + ]], + [[ + 12576, + 12575, + 12584 + ]], + [[ + 12579, + 12584, + 12575 + ]], + [[ + 12585, + 12586, + 12587 + ]], + [[ + 12578, + 12576, + 12584 + ]], + [[ + 12587, + 12559, + 12588 + ]], + [[ + 12588, + 12589, + 12585 + ]], + [[ + 12588, + 12559, + 12589 + ]], + [[ + 12576, + 12582, + 12564 + ]], + [[ + 12589, + 12590, + 12551 + ]], + [[ + 12551, + 12590, + 12552 + ]], + [[ + 12589, + 12559, + 12552 + ]], + [[ + 12556, + 12555, + 12591 + ]], + [[ + 12556, + 12592, + 12561 + ]], + [[ + 12567, + 12554, + 12550 + ]], + [[ + 12567, + 12591, + 12554 + ]], + [[ + 12553, + 12552, + 12558 + ]], + [[ + 12590, + 12589, + 12552 + ]], + [[ + 12592, + 12556, + 12591 + ]], + [[ + 12556, + 12561, + 12554 + ]], + [[ + 12567, + 12563, + 3099 + ]], + [[ + 12579, + 12575, + 12563 + ]], + [[ + 12591, + 12567, + 3099 + ]], + [[ + 12568, + 12549, + 12567 + ]], + [[ + 12585, + 12593, + 12586 + ]], + [[ + 12585, + 12564, + 12593 + ]], + [[ + 12564, + 12582, + 12593 + ]], + [[ + 12582, + 12559, + 12586 + ]], + [[ + 12594, + 12582, + 12576 + ]], + [[ + 12586, + 12593, + 12582 + ]], + [[ + 12595, + 12591, + 3099 + ]], + [[ + 12555, + 12554, + 12591 + ]], + [[ + 12579, + 12578, + 12584 + ]], + [[ + 12580, + 12549, + 12581 + ]], + [[ + 12580, + 12577, + 12563 + ]], + [[ + 12580, + 12578, + 12577 + ]], + [[ + 12585, + 12587, + 12588 + ]], + [[ + 12586, + 12559, + 12587 + ]], + [[ + 12575, + 12564, + 12563 + ]], + [[ + 12585, + 12551, + 12564 + ]], + [[ + 12564, + 12551, + 12553 + ]], + [[ + 12585, + 12589, + 12551 + ]], + [[ + 12596, + 12597, + 12571 + ]], + [[ + 12598, + 3111, + 12539 + ]], + [[ + 12565, + 12599, + 12470 + ]], + [[ + 12600, + 12601, + 12602 + ]], + [[ + 12603, + 12604, + 12539 + ]], + [[ + 12603, + 12605, + 12604 + ]], + [[ + 12606, + 12594, + 12468 + ]], + [[ + 12581, + 12549, + 12607 + ]], + [[ + 12541, + 12543, + 12608 + ]], + [[ + 12609, + 12610, + 12611 + ]], + [[ + 12612, + 12613, + 12596 + ]], + [[ + 12597, + 12614, + 12571 + ]], + [[ + 3103, + 12612, + 3104 + ]], + [[ + 12612, + 12476, + 12569 + ]], + [[ + 12615, + 12606, + 12468 + ]], + [[ + 12604, + 12477, + 12616 + ]], + [[ + 12558, + 12557, + 3111 + ]], + [[ + 12615, + 12468, + 12617 + ]], + [[ + 12559, + 12583, + 12557 + ]], + [[ + 12468, + 12477, + 12604 + ]], + [[ + 12546, + 12545, + 12539 + ]], + [[ + 12547, + 12598, + 12545 + ]], + [[ + 12477, + 12546, + 12616 + ]], + [[ + 12477, + 12571, + 12546 + ]], + [[ + 12557, + 12583, + 12618 + ]], + [[ + 12582, + 12594, + 12583 + ]], + [[ + 12619, + 12620, + 12565 + ]], + [[ + 12570, + 12543, + 12569 + ]], + [[ + 3093, + 12544, + 12610 + ]], + [[ + 3093, + 3047, + 12544 + ]], + [[ + 12621, + 12622, + 12623 + ]], + [[ + 12624, + 12625, + 12544 + ]], + [[ + 12626, + 12627, + 12628 + ]], + [[ + 12629, + 3093, + 12609 + ]], + [[ + 12630, + 12631, + 12632 + ]], + [[ + 12599, + 12633, + 12634 + ]], + [[ + 12546, + 12539, + 12616 + ]], + [[ + 12545, + 12598, + 12539 + ]], + [[ + 12619, + 12635, + 12620 + ]], + [[ + 12626, + 12636, + 12637 + ]], + [[ + 12562, + 12592, + 12630 + ]], + [[ + 12621, + 12627, + 12638 + ]], + [[ + 12639, + 12632, + 12640 + ]], + [[ + 12641, + 12637, + 12642 + ]], + [[ + 12574, + 12594, + 12581 + ]], + [[ + 12606, + 12583, + 12594 + ]], + [[ + 12599, + 12634, + 12636 + ]], + [[ + 12636, + 12643, + 12637 + ]], + [[ + 12574, + 12581, + 12644 + ]], + [[ + 12594, + 12576, + 12581 + ]], + [[ + 12607, + 12602, + 12644 + ]], + [[ + 12600, + 12468, + 12573 + ]], + [[ + 12644, + 12602, + 12601 + ]], + [[ + 12566, + 12562, + 12645 + ]], + [[ + 12646, + 12561, + 12560 + ]], + [[ + 12646, + 12554, + 12561 + ]], + [[ + 12600, + 12647, + 12648 + ]], + [[ + 12646, + 12550, + 12554 + ]], + [[ + 12648, + 12646, + 12560 + ]], + [[ + 12647, + 12548, + 12646 + ]], + [[ + 12571, + 12614, + 12547 + ]], + [[ + 12614, + 3111, + 12598 + ]], + [[ + 12468, + 12600, + 12470 + ]], + [[ + 12602, + 12607, + 12548 + ]], + [[ + 12648, + 12647, + 12646 + ]], + [[ + 12600, + 12602, + 12548 + ]], + [[ + 12595, + 12631, + 12630 + ]], + [[ + 12632, + 12639, + 12630 + ]], + [[ + 12573, + 12574, + 12644 + ]], + [[ + 12468, + 12594, + 12574 + ]], + [[ + 12618, + 12615, + 12617 + ]], + [[ + 12583, + 12606, + 12615 + ]], + [[ + 12649, + 12650, + 12651 + ]], + [[ + 12541, + 3104, + 12542 + ]], + [[ + 12611, + 12610, + 12572 + ]], + [[ + 12652, + 12608, + 12543 + ]], + [[ + 12611, + 12622, + 12609 + ]], + [[ + 12609, + 3093, + 12610 + ]], + [[ + 12621, + 12628, + 12627 + ]], + [[ + 12623, + 12622, + 12611 + ]], + [[ + 12477, + 12596, + 12571 + ]], + [[ + 12613, + 12614, + 12597 + ]], + [[ + 12646, + 12548, + 12550 + ]], + [[ + 12647, + 12600, + 12548 + ]], + [[ + 12557, + 12605, + 12540 + ]], + [[ + 12617, + 12468, + 12604 + ]], + [[ + 12539, + 12604, + 12616 + ]], + [[ + 12605, + 12617, + 12604 + ]], + [[ + 12562, + 12566, + 12560 + ]], + [[ + 12470, + 12600, + 12648 + ]], + [[ + 12638, + 12609, + 12622 + ]], + [[ + 12638, + 12627, + 12629 + ]], + [[ + 12645, + 12619, + 12565 + ]], + [[ + 12562, + 12635, + 12619 + ]], + [[ + 12561, + 12592, + 12562 + ]], + [[ + 12591, + 12595, + 12592 + ]], + [[ + 12581, + 12607, + 12644 + ]], + [[ + 12549, + 12548, + 12607 + ]], + [[ + 3104, + 12612, + 12569 + ]], + [[ + 3103, + 12613, + 12612 + ]], + [[ + 12601, + 12573, + 12644 + ]], + [[ + 12601, + 12600, + 12573 + ]], + [[ + 12544, + 12651, + 12610 + ]], + [[ + 12544, + 12608, + 12624 + ]], + [[ + 12625, + 12624, + 12476 + ]], + [[ + 12625, + 12651, + 12544 + ]], + [[ + 12650, + 12649, + 12476 + ]], + [[ + 12650, + 12610, + 12651 + ]], + [[ + 12624, + 12652, + 12476 + ]], + [[ + 12624, + 12608, + 12652 + ]], + [[ + 12640, + 12643, + 12634 + ]], + [[ + 12653, + 3093, + 12643 + ]], + [[ + 12626, + 12641, + 12627 + ]], + [[ + 12642, + 3093, + 12629 + ]], + [[ + 12470, + 12599, + 12626 + ]], + [[ + 12599, + 12620, + 12633 + ]], + [[ + 12638, + 12629, + 12609 + ]], + [[ + 12627, + 12641, + 12642 + ]], + [[ + 12639, + 12633, + 12620 + ]], + [[ + 12634, + 12643, + 12636 + ]], + [[ + 12572, + 12623, + 12611 + ]], + [[ + 12470, + 12626, + 12628 + ]], + [[ + 12470, + 12623, + 12572 + ]], + [[ + 12470, + 12628, + 12623 + ]], + [[ + 12622, + 12621, + 12638 + ]], + [[ + 12623, + 12628, + 12621 + ]], + [[ + 12572, + 12650, + 12476 + ]], + [[ + 12572, + 12610, + 12650 + ]], + [[ + 12569, + 12542, + 3104 + ]], + [[ + 12569, + 12543, + 12542 + ]], + [[ + 12631, + 12595, + 12653 + ]], + [[ + 12653, + 12643, + 12640 + ]], + [[ + 12566, + 12645, + 12565 + ]], + [[ + 12562, + 12619, + 12645 + ]], + [[ + 12652, + 12570, + 12476 + ]], + [[ + 12652, + 12543, + 12570 + ]], + [[ + 12639, + 12640, + 12633 + ]], + [[ + 12633, + 12640, + 12634 + ]], + [[ + 12626, + 12599, + 12636 + ]], + [[ + 12565, + 12620, + 12599 + ]], + [[ + 12540, + 12603, + 12539 + ]], + [[ + 12540, + 12605, + 12603 + ]], + [[ + 12547, + 12614, + 12598 + ]], + [[ + 12613, + 3111, + 12614 + ]], + [[ + 12635, + 12639, + 12620 + ]], + [[ + 12635, + 12630, + 12639 + ]], + [[ + 12605, + 12557, + 12617 + ]], + [[ + 12540, + 3111, + 12557 + ]], + [[ + 12544, + 12541, + 12608 + ]], + [[ + 12544, + 3046, + 12541 + ]], + [[ + 12596, + 12613, + 12597 + ]], + [[ + 3103, + 3111, + 12613 + ]], + [[ + 12476, + 12596, + 12477 + ]], + [[ + 12476, + 12612, + 12596 + ]], + [[ + 12557, + 12618, + 12617 + ]], + [[ + 12583, + 12615, + 12618 + ]], + [[ + 12649, + 12625, + 12476 + ]], + [[ + 12649, + 12651, + 12625 + ]], + [[ + 12631, + 12653, + 12632 + ]], + [[ + 12595, + 3099, + 12653 + ]], + [[ + 12632, + 12653, + 12640 + ]], + [[ + 3099, + 3093, + 12653 + ]], + [[ + 12562, + 12630, + 12635 + ]], + [[ + 12592, + 12595, + 12630 + ]], + [[ + 12626, + 12637, + 12641 + ]], + [[ + 12643, + 3093, + 12637 + ]], + [[ + 12627, + 12642, + 12629 + ]], + [[ + 12637, + 3093, + 12642 + ]], + [[ + 12566, + 12648, + 12560 + ]], + [[ + 12566, + 12470, + 12648 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e36a37d-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb7349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10052, + 12654, + 10051 + ]], + [[ + 12654, + 10049, + 10051 + ]], + [[ + 12654, + 10050, + 10049 + ]], + [[ + 12654, + 10147, + 10050 + ]], + [[ + 12654, + 10172, + 10147 + ]], + [[ + 12654, + 10171, + 10172 + ]], + [[ + 12654, + 10170, + 10171 + ]], + [[ + 12655, + 10169, + 10170 + ]], + [[ + 12655, + 10168, + 10169 + ]], + [[ + 12655, + 10167, + 10168 + ]], + [[ + 12655, + 10166, + 10167 + ]], + [[ + 12655, + 10165, + 10166 + ]], + [[ + 10163, + 10164, + 12655 + ]], + [[ + 12655, + 12656, + 12657 + ]], + [[ + 10161, + 12655, + 10160 + ]], + [[ + 10160, + 12655, + 10159 + ]], + [[ + 10159, + 12655, + 10158 + ]], + [[ + 10387, + 12655, + 12657 + ]], + [[ + 10157, + 10158, + 12655 + ]], + [[ + 10156, + 10157, + 12655 + ]], + [[ + 10154, + 10156, + 12655 + ]], + [[ + 10153, + 10154, + 12655 + ]], + [[ + 10151, + 10153, + 12655 + ]], + [[ + 10394, + 10151, + 12655 + ]], + [[ + 10390, + 10394, + 12655 + ]], + [[ + 10391, + 10390, + 12655 + ]], + [[ + 10387, + 10391, + 12655 + ]], + [[ + 10330, + 10387, + 12657 + ]], + [[ + 10329, + 10330, + 12657 + ]], + [[ + 10327, + 10329, + 12657 + ]], + [[ + 10324, + 10327, + 12657 + ]], + [[ + 12657, + 12656, + 12658 + ]], + [[ + 10565, + 12657, + 10318 + ]], + [[ + 10318, + 12657, + 10319 + ]], + [[ + 10319, + 12657, + 10331 + ]], + [[ + 10331, + 12657, + 10129 + ]], + [[ + 10129, + 12657, + 12659 + ]], + [[ + 10340, + 10129, + 12659 + ]], + [[ + 10126, + 10340, + 12659 + ]], + [[ + 12659, + 12657, + 12658 + ]], + [[ + 10123, + 10341, + 12659 + ]], + [[ + 10271, + 10123, + 12659 + ]], + [[ + 10085, + 10271, + 12659 + ]], + [[ + 10120, + 10085, + 12659 + ]], + [[ + 10118, + 10120, + 12659 + ]], + [[ + 10116, + 10118, + 12659 + ]], + [[ + 12658, + 12656, + 12660 + ]], + [[ + 10112, + 12658, + 10110 + ]], + [[ + 10110, + 12658, + 10108 + ]], + [[ + 10102, + 12658, + 12660 + ]], + [[ + 10105, + 10108, + 12658 + ]], + [[ + 10103, + 12658, + 10102 + ]], + [[ + 10102, + 12660, + 10100 + ]], + [[ + 10100, + 12660, + 10098 + ]], + [[ + 10098, + 12660, + 10095 + ]], + [[ + 10095, + 12660, + 10091 + ]], + [[ + 10091, + 12660, + 10089 + ]], + [[ + 10089, + 12660, + 10087 + ]], + [[ + 12660, + 10082, + 10086 + ]], + [[ + 12660, + 10079, + 10082 + ]], + [[ + 12660, + 10078, + 10079 + ]], + [[ + 12660, + 10077, + 10078 + ]], + [[ + 12660, + 12661, + 10077 + ]], + [[ + 10077, + 12661, + 10076 + ]], + [[ + 10076, + 12661, + 10075 + ]], + [[ + 10075, + 12661, + 10074 + ]], + [[ + 10074, + 12661, + 10073 + ]], + [[ + 12661, + 12654, + 10064 + ]], + [[ + 10072, + 12661, + 10071 + ]], + [[ + 10071, + 12661, + 10070 + ]], + [[ + 10070, + 12661, + 10069 + ]], + [[ + 10069, + 12661, + 10068 + ]], + [[ + 10068, + 12661, + 10066 + ]], + [[ + 10066, + 12661, + 10067 + ]], + [[ + 10067, + 12661, + 10065 + ]], + [[ + 10065, + 12661, + 10064 + ]], + [[ + 10064, + 12654, + 10063 + ]], + [[ + 10063, + 12654, + 10062 + ]], + [[ + 10062, + 12654, + 10030 + ]], + [[ + 10030, + 12654, + 10031 + ]], + [[ + 10031, + 12654, + 10061 + ]], + [[ + 10061, + 12654, + 10059 + ]], + [[ + 10059, + 12654, + 10060 + ]], + [[ + 12654, + 12655, + 10170 + ]], + [[ + 10058, + 12654, + 10057 + ]], + [[ + 10057, + 12654, + 10056 + ]], + [[ + 10056, + 12654, + 10055 + ]], + [[ + 10055, + 12654, + 10054 + ]], + [[ + 10054, + 12654, + 10053 + ]], + [[ + 10053, + 12654, + 10052 + ]], + [[ + 10103, + 10105, + 12658 + ]], + [[ + 12655, + 10164, + 10165 + ]], + [[ + 10325, + 12657, + 10565 + ]], + [[ + 10325, + 10324, + 12657 + ]], + [[ + 10087, + 12660, + 10086 + ]], + [[ + 12656, + 12654, + 12661 + ]], + [[ + 10162, + 12655, + 10161 + ]], + [[ + 10162, + 10163, + 12655 + ]], + [[ + 10114, + 12658, + 10112 + ]], + [[ + 10114, + 10116, + 12658 + ]], + [[ + 10060, + 12654, + 10058 + ]], + [[ + 12656, + 12655, + 12654 + ]], + [[ + 10116, + 12659, + 12658 + ]], + [[ + 10341, + 10126, + 12659 + ]], + [[ + 10073, + 12661, + 10072 + ]], + [[ + 12660, + 12656, + 12661 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3717f5-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12662, + 12663, + 3214 + ]], + [[ + 12664, + 12665, + 12666 + ]], + [[ + 12667, + 12668, + 12669 + ]], + [[ + 3044, + 12670, + 3042 + ]], + [[ + 3044, + 3042, + 3045 + ]], + [[ + 12671, + 12672, + 3040 + ]], + [[ + 12673, + 12674, + 12675 + ]], + [[ + 12676, + 12677, + 12662 + ]], + [[ + 12678, + 12679, + 12680 + ]], + [[ + 12681, + 3216, + 12682 + ]], + [[ + 12683, + 12684, + 12685 + ]], + [[ + 12686, + 12687, + 12670 + ]], + [[ + 12688, + 12686, + 12672 + ]], + [[ + 12684, + 12689, + 12690 + ]], + [[ + 12691, + 12692, + 12693 + ]], + [[ + 12694, + 12695, + 12663 + ]], + [[ + 12696, + 3216, + 12681 + ]], + [[ + 3216, + 3215, + 12682 + ]], + [[ + 12691, + 12697, + 12698 + ]], + [[ + 12680, + 12699, + 12700 + ]], + [[ + 12691, + 12698, + 12701 + ]], + [[ + 12701, + 12699, + 12680 + ]], + [[ + 12685, + 12701, + 12702 + ]], + [[ + 12691, + 12701, + 12703 + ]], + [[ + 12702, + 12698, + 12697 + ]], + [[ + 12701, + 12679, + 12678 + ]], + [[ + 12704, + 12705, + 12706 + ]], + [[ + 12706, + 3215, + 12707 + ]], + [[ + 12708, + 12695, + 12709 + ]], + [[ + 12665, + 12664, + 12699 + ]], + [[ + 12678, + 12680, + 12710 + ]], + [[ + 12708, + 12666, + 12695 + ]], + [[ + 12711, + 12691, + 12693 + ]], + [[ + 12711, + 12697, + 12691 + ]], + [[ + 12710, + 12680, + 12676 + ]], + [[ + 12679, + 12701, + 12680 + ]], + [[ + 12704, + 12707, + 12712 + ]], + [[ + 12713, + 3215, + 12663 + ]], + [[ + 12711, + 12702, + 12697 + ]], + [[ + 12714, + 12685, + 12702 + ]], + [[ + 12713, + 12707, + 3215 + ]], + [[ + 12706, + 12682, + 3215 + ]], + [[ + 12715, + 12662, + 12700 + ]], + [[ + 12713, + 12716, + 12665 + ]], + [[ + 12663, + 12715, + 12709 + ]], + [[ + 12664, + 12666, + 12708 + ]], + [[ + 12702, + 12701, + 12698 + ]], + [[ + 12685, + 12699, + 12701 + ]], + [[ + 12665, + 12699, + 12717 + ]], + [[ + 12706, + 12681, + 12682 + ]], + [[ + 12704, + 12706, + 12707 + ]], + [[ + 12718, + 12719, + 12704 + ]], + [[ + 12709, + 12664, + 12708 + ]], + [[ + 12715, + 12699, + 12664 + ]], + [[ + 12709, + 12715, + 12664 + ]], + [[ + 12676, + 12680, + 12700 + ]], + [[ + 12713, + 12704, + 12712 + ]], + [[ + 12720, + 12696, + 12718 + ]], + [[ + 12706, + 12705, + 12681 + ]], + [[ + 12717, + 12721, + 12665 + ]], + [[ + 12693, + 12710, + 12676 + ]], + [[ + 12693, + 12692, + 12710 + ]], + [[ + 12704, + 12719, + 12705 + ]], + [[ + 12669, + 12722, + 12723 + ]], + [[ + 12715, + 12700, + 12699 + ]], + [[ + 12677, + 12676, + 12700 + ]], + [[ + 12714, + 12711, + 12693 + ]], + [[ + 12714, + 12702, + 12711 + ]], + [[ + 12716, + 12713, + 12663 + ]], + [[ + 12712, + 12707, + 12713 + ]], + [[ + 12692, + 12703, + 12710 + ]], + [[ + 12703, + 12701, + 12678 + ]], + [[ + 12710, + 12703, + 12678 + ]], + [[ + 12692, + 12691, + 12703 + ]], + [[ + 12662, + 12715, + 12663 + ]], + [[ + 12662, + 12677, + 12700 + ]], + [[ + 12714, + 12662, + 3214 + ]], + [[ + 12693, + 12676, + 12662 + ]], + [[ + 12709, + 12694, + 12663 + ]], + [[ + 12709, + 12695, + 12694 + ]], + [[ + 12695, + 12716, + 12663 + ]], + [[ + 12695, + 12666, + 12716 + ]], + [[ + 12685, + 12714, + 3214 + ]], + [[ + 12693, + 12662, + 12714 + ]], + [[ + 3042, + 12670, + 3040 + ]], + [[ + 12670, + 12724, + 12675 + ]], + [[ + 12685, + 12684, + 12686 + ]], + [[ + 12685, + 3214, + 12725 + ]], + [[ + 12696, + 12726, + 12727 + ]], + [[ + 12728, + 12729, + 3043 + ]], + [[ + 12730, + 12731, + 12732 + ]], + [[ + 12728, + 3216, + 12727 + ]], + [[ + 3040, + 12670, + 12687 + ]], + [[ + 12675, + 12674, + 12686 + ]], + [[ + 12724, + 12733, + 12675 + ]], + [[ + 12734, + 12735, + 12729 + ]], + [[ + 12736, + 12673, + 12675 + ]], + [[ + 12737, + 12738, + 12673 + ]], + [[ + 12683, + 12689, + 12684 + ]], + [[ + 12739, + 12683, + 12740 + ]], + [[ + 12704, + 12713, + 12665 + ]], + [[ + 12718, + 12704, + 12665 + ]], + [[ + 12741, + 12671, + 3040 + ]], + [[ + 12672, + 3041, + 3040 + ]], + [[ + 12727, + 12726, + 12668 + ]], + [[ + 12742, + 12721, + 12717 + ]], + [[ + 12705, + 12696, + 12681 + ]], + [[ + 12705, + 12719, + 12696 + ]], + [[ + 12743, + 12744, + 12733 + ]], + [[ + 12734, + 12729, + 12728 + ]], + [[ + 12736, + 12737, + 12673 + ]], + [[ + 12745, + 12743, + 12746 + ]], + [[ + 12728, + 12727, + 12747 + ]], + [[ + 3216, + 12696, + 12727 + ]], + [[ + 12667, + 12669, + 12674 + ]], + [[ + 12668, + 12726, + 12720 + ]], + [[ + 12668, + 12720, + 12669 + ]], + [[ + 12696, + 12719, + 12718 + ]], + [[ + 12748, + 12718, + 12665 + ]], + [[ + 12720, + 12726, + 12696 + ]], + [[ + 12746, + 12743, + 12724 + ]], + [[ + 12745, + 12749, + 12750 + ]], + [[ + 12748, + 12665, + 12721 + ]], + [[ + 12716, + 12666, + 12665 + ]], + [[ + 12744, + 12750, + 12751 + ]], + [[ + 12731, + 3043, + 12729 + ]], + [[ + 12670, + 12675, + 12686 + ]], + [[ + 12733, + 12744, + 12736 + ]], + [[ + 12668, + 12667, + 12727 + ]], + [[ + 12674, + 12673, + 12752 + ]], + [[ + 12667, + 12753, + 12747 + ]], + [[ + 12752, + 12738, + 12732 + ]], + [[ + 12753, + 12667, + 12674 + ]], + [[ + 12747, + 12727, + 12667 + ]], + [[ + 12751, + 12750, + 12749 + ]], + [[ + 12744, + 12743, + 12750 + ]], + [[ + 12741, + 12688, + 12671 + ]], + [[ + 12686, + 3041, + 12672 + ]], + [[ + 3216, + 12728, + 3043 + ]], + [[ + 12747, + 12753, + 12734 + ]], + [[ + 12751, + 12754, + 12737 + ]], + [[ + 12737, + 12730, + 12738 + ]], + [[ + 12725, + 12683, + 12685 + ]], + [[ + 12690, + 12686, + 12684 + ]], + [[ + 12687, + 12755, + 3040 + ]], + [[ + 12756, + 12686, + 12688 + ]], + [[ + 12755, + 12756, + 12741 + ]], + [[ + 12687, + 12686, + 12756 + ]], + [[ + 12723, + 12717, + 12699 + ]], + [[ + 12669, + 12757, + 12722 + ]], + [[ + 12723, + 12722, + 12742 + ]], + [[ + 12757, + 12718, + 12722 + ]], + [[ + 12742, + 12748, + 12721 + ]], + [[ + 12722, + 12718, + 12748 + ]], + [[ + 12743, + 12745, + 12750 + ]], + [[ + 3044, + 12749, + 12745 + ]], + [[ + 12746, + 12724, + 12670 + ]], + [[ + 12743, + 12733, + 12724 + ]], + [[ + 12673, + 12738, + 12752 + ]], + [[ + 12752, + 12731, + 12735 + ]], + [[ + 12747, + 12734, + 12728 + ]], + [[ + 12753, + 12735, + 12734 + ]], + [[ + 3041, + 12758, + 3214 + ]], + [[ + 3041, + 12686, + 12759 + ]], + [[ + 12723, + 12742, + 12717 + ]], + [[ + 12722, + 12748, + 12742 + ]], + [[ + 3044, + 12746, + 12670 + ]], + [[ + 3044, + 12745, + 12746 + ]], + [[ + 12674, + 12723, + 12699 + ]], + [[ + 12674, + 12669, + 12723 + ]], + [[ + 12744, + 12751, + 12737 + ]], + [[ + 12749, + 12754, + 12751 + ]], + [[ + 12758, + 12725, + 3214 + ]], + [[ + 12758, + 12740, + 12725 + ]], + [[ + 12754, + 12730, + 12737 + ]], + [[ + 3044, + 3043, + 12730 + ]], + [[ + 3044, + 12754, + 12749 + ]], + [[ + 3044, + 12730, + 12754 + ]], + [[ + 12735, + 12731, + 12729 + ]], + [[ + 12730, + 3043, + 12731 + ]], + [[ + 12739, + 12690, + 12689 + ]], + [[ + 12759, + 12686, + 12690 + ]], + [[ + 12683, + 12739, + 12689 + ]], + [[ + 12740, + 12758, + 12759 + ]], + [[ + 12739, + 12759, + 12690 + ]], + [[ + 12758, + 3041, + 12759 + ]], + [[ + 12733, + 12736, + 12675 + ]], + [[ + 12744, + 12737, + 12736 + ]], + [[ + 12739, + 12740, + 12759 + ]], + [[ + 12683, + 12725, + 12740 + ]], + [[ + 12671, + 12688, + 12672 + ]], + [[ + 12741, + 12756, + 12688 + ]], + [[ + 12757, + 12720, + 12718 + ]], + [[ + 12757, + 12669, + 12720 + ]], + [[ + 12752, + 12732, + 12731 + ]], + [[ + 12738, + 12730, + 12732 + ]], + [[ + 12753, + 12752, + 12735 + ]], + [[ + 12753, + 12674, + 12752 + ]], + [[ + 3040, + 12755, + 12741 + ]], + [[ + 12687, + 12756, + 12755 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e37180a-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efe6f649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12760, + 12761, + 12762 + ]], + [[ + 12763, + 12764, + 12765 + ]], + [[ + 12764, + 3099, + 12766 + ]], + [[ + 3097, + 12767, + 3096 + ]], + [[ + 3096, + 12767, + 3095 + ]], + [[ + 3095, + 12767, + 3094 + ]], + [[ + 3094, + 12767, + 3092 + ]], + [[ + 3092, + 12767, + 3091 + ]], + [[ + 3091, + 12767, + 3090 + ]], + [[ + 12768, + 12769, + 12770 + ]], + [[ + 12771, + 12772, + 12766 + ]], + [[ + 12773, + 12766, + 12774 + ]], + [[ + 12775, + 12553, + 12776 + ]], + [[ + 12767, + 3098, + 12764 + ]], + [[ + 12764, + 3098, + 3099 + ]], + [[ + 12762, + 12774, + 12766 + ]], + [[ + 12766, + 3099, + 12762 + ]], + [[ + 12770, + 12777, + 12778 + ]], + [[ + 12779, + 12780, + 12781 + ]], + [[ + 12782, + 12783, + 12780 + ]], + [[ + 3056, + 3090, + 12767 + ]], + [[ + 12784, + 12785, + 12762 + ]], + [[ + 12784, + 12783, + 12785 + ]], + [[ + 12778, + 12783, + 12784 + ]], + [[ + 12764, + 12786, + 12767 + ]], + [[ + 12774, + 12762, + 12785 + ]], + [[ + 3099, + 12553, + 12762 + ]], + [[ + 12785, + 12782, + 12774 + ]], + [[ + 12785, + 12783, + 12782 + ]], + [[ + 12782, + 12780, + 12774 + ]], + [[ + 12766, + 12772, + 12765 + ]], + [[ + 12779, + 12773, + 12774 + ]], + [[ + 12787, + 12781, + 12772 + ]], + [[ + 12762, + 12761, + 12784 + ]], + [[ + 12762, + 12553, + 12760 + ]], + [[ + 11645, + 12775, + 12776 + ]], + [[ + 12761, + 12770, + 12778 + ]], + [[ + 12774, + 12780, + 12779 + ]], + [[ + 12788, + 3056, + 12786 + ]], + [[ + 12787, + 12772, + 12771 + ]], + [[ + 12783, + 3056, + 12772 + ]], + [[ + 12773, + 12771, + 12766 + ]], + [[ + 12773, + 12779, + 12781 + ]], + [[ + 12775, + 12760, + 12553 + ]], + [[ + 12775, + 11645, + 12768 + ]], + [[ + 12775, + 12768, + 12760 + ]], + [[ + 12769, + 12777, + 12770 + ]], + [[ + 3056, + 12777, + 11645 + ]], + [[ + 3056, + 12783, + 12777 + ]], + [[ + 12760, + 12770, + 12761 + ]], + [[ + 12760, + 12768, + 12770 + ]], + [[ + 12761, + 12778, + 12784 + ]], + [[ + 12777, + 12783, + 12778 + ]], + [[ + 12772, + 12789, + 12765 + ]], + [[ + 12788, + 12786, + 12790 + ]], + [[ + 12789, + 12763, + 12765 + ]], + [[ + 12763, + 12788, + 12790 + ]], + [[ + 12765, + 12764, + 12766 + ]], + [[ + 12790, + 12786, + 12764 + ]], + [[ + 11645, + 12769, + 12768 + ]], + [[ + 11645, + 12777, + 12769 + ]], + [[ + 12763, + 12790, + 12764 + ]], + [[ + 12763, + 12789, + 12788 + ]], + [[ + 12772, + 12788, + 12789 + ]], + [[ + 12772, + 3056, + 12788 + ]], + [[ + 3056, + 12767, + 12786 + ]], + [[ + 3097, + 3098, + 12767 + ]], + [[ + 12783, + 12781, + 12780 + ]], + [[ + 12783, + 12772, + 12781 + ]], + [[ + 12773, + 12787, + 12771 + ]], + [[ + 12773, + 12781, + 12787 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e39d73d-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8e849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12791, + 12792, + 12793 + ]], + [[ + 12794, + 12792, + 12795 + ]], + [[ + 12792, + 12794, + 12796 + ]], + [[ + 12797, + 12798, + 12799 + ]], + [[ + 12793, + 12792, + 12796 + ]], + [[ + 12800, + 12801, + 12797 + ]], + [[ + 12802, + 12803, + 12804 + ]], + [[ + 12805, + 12793, + 12806 + ]], + [[ + 12806, + 12793, + 12796 + ]], + [[ + 12807, + 12808, + 12809 + ]], + [[ + 12806, + 12810, + 12805 + ]], + [[ + 12801, + 12798, + 12797 + ]], + [[ + 12796, + 12811, + 12807 + ]], + [[ + 12811, + 12794, + 12795 + ]], + [[ + 12812, + 12813, + 12814 + ]], + [[ + 12795, + 12792, + 12791 + ]], + [[ + 12813, + 12797, + 12799 + ]], + [[ + 12804, + 12815, + 12816 + ]], + [[ + 12813, + 12812, + 12797 + ]], + [[ + 12817, + 12797, + 12812 + ]], + [[ + 12814, + 12813, + 12799 + ]], + [[ + 12814, + 12803, + 12812 + ]], + [[ + 12818, + 12795, + 12808 + ]], + [[ + 12811, + 12796, + 12794 + ]], + [[ + 12818, + 12811, + 12795 + ]], + [[ + 12807, + 12799, + 12796 + ]], + [[ + 12807, + 12814, + 12799 + ]], + [[ + 12803, + 12809, + 12804 + ]], + [[ + 12807, + 12809, + 12814 + ]], + [[ + 12809, + 12815, + 12804 + ]], + [[ + 12819, + 12820, + 12821 + ]], + [[ + 12822, + 12821, + 12810 + ]], + [[ + 12817, + 12823, + 12824 + ]], + [[ + 12822, + 12825, + 12826 + ]], + [[ + 12818, + 12807, + 12811 + ]], + [[ + 12818, + 12808, + 12807 + ]], + [[ + 12815, + 12805, + 12810 + ]], + [[ + 12810, + 12798, + 12801 + ]], + [[ + 12814, + 12809, + 12803 + ]], + [[ + 12808, + 12815, + 12809 + ]], + [[ + 12802, + 12817, + 12812 + ]], + [[ + 12823, + 12820, + 12819 + ]], + [[ + 12808, + 12805, + 12815 + ]], + [[ + 12808, + 12795, + 12791 + ]], + [[ + 12800, + 12827, + 12828 + ]], + [[ + 12820, + 12804, + 12816 + ]], + [[ + 12822, + 12826, + 12828 + ]], + [[ + 12826, + 12810, + 12801 + ]], + [[ + 12823, + 12802, + 12804 + ]], + [[ + 12812, + 12803, + 12802 + ]], + [[ + 12826, + 12801, + 12828 + ]], + [[ + 12826, + 12825, + 12810 + ]], + [[ + 12827, + 12800, + 12797 + ]], + [[ + 12828, + 12801, + 12800 + ]], + [[ + 12827, + 12823, + 12819 + ]], + [[ + 12816, + 12815, + 12810 + ]], + [[ + 12822, + 12810, + 12825 + ]], + [[ + 12806, + 12798, + 12810 + ]], + [[ + 12821, + 12816, + 12810 + ]], + [[ + 12821, + 12820, + 12816 + ]], + [[ + 12824, + 12823, + 12827 + ]], + [[ + 12817, + 12802, + 12823 + ]], + [[ + 12797, + 12824, + 12827 + ]], + [[ + 12797, + 12817, + 12824 + ]], + [[ + 12822, + 12819, + 12821 + ]], + [[ + 12823, + 12804, + 12820 + ]], + [[ + 12828, + 12819, + 12822 + ]], + [[ + 12828, + 12827, + 12819 + ]], + [[ + 12805, + 12791, + 12793 + ]], + [[ + 12805, + 12808, + 12791 + ]], + [[ + 12806, + 12829, + 12798 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3a4cc7-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12830, + 12831, + 12832 + ]], + [[ + 12833, + 12834, + 12835 + ]], + [[ + 12836, + 12837, + 12838 + ]], + [[ + 12839, + 12831, + 12840 + ]], + [[ + 12841, + 12836, + 12842 + ]], + [[ + 12835, + 12831, + 12843 + ]], + [[ + 12844, + 12845, + 12830 + ]], + [[ + 12838, + 12837, + 12846 + ]], + [[ + 12840, + 12846, + 12839 + ]], + [[ + 12837, + 12839, + 12846 + ]], + [[ + 12836, + 12839, + 12837 + ]], + [[ + 12841, + 12831, + 12839 + ]], + [[ + 12830, + 12843, + 12831 + ]], + [[ + 12845, + 12844, + 12833 + ]], + [[ + 12845, + 12835, + 12843 + ]], + [[ + 12834, + 12840, + 12835 + ]], + [[ + 12842, + 12844, + 12832 + ]], + [[ + 12847, + 12838, + 12846 + ]], + [[ + 12833, + 12848, + 12847 + ]], + [[ + 12847, + 12846, + 12834 + ]], + [[ + 12835, + 12840, + 12831 + ]], + [[ + 12834, + 12846, + 12840 + ]], + [[ + 12842, + 12836, + 12838 + ]], + [[ + 12841, + 12839, + 12836 + ]], + [[ + 12833, + 12847, + 12834 + ]], + [[ + 12848, + 12838, + 12847 + ]], + [[ + 12844, + 12830, + 12832 + ]], + [[ + 12845, + 12843, + 12830 + ]], + [[ + 12842, + 12848, + 12844 + ]], + [[ + 12842, + 12838, + 12848 + ]], + [[ + 12845, + 12833, + 12835 + ]], + [[ + 12844, + 12848, + 12833 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3ae885-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12849, + 12850, + 12851 + ]], + [[ + 12852, + 12850, + 12849 + ]], + [[ + 12853, + 12852, + 12849 + ]], + [[ + 12854, + 12853, + 12849 + ]], + [[ + 12855, + 12854, + 12849 + ]], + [[ + 12856, + 12855, + 12849 + ]], + [[ + 12857, + 12856, + 12849 + ]], + [[ + 12858, + 12857, + 12849 + ]], + [[ + 12859, + 12858, + 12849 + ]], + [[ + 12849, + 12860, + 12861 + ]], + [[ + 12862, + 12863, + 12849 + ]], + [[ + 12864, + 12862, + 12849 + ]], + [[ + 12865, + 12864, + 12849 + ]], + [[ + 12866, + 12865, + 12849 + ]], + [[ + 12867, + 12866, + 12849 + ]], + [[ + 12868, + 12867, + 12849 + ]], + [[ + 12869, + 12868, + 12849 + ]], + [[ + 12870, + 12869, + 12849 + ]], + [[ + 12871, + 12870, + 12849 + ]], + [[ + 12872, + 12871, + 12849 + ]], + [[ + 12873, + 12872, + 12849 + ]], + [[ + 12874, + 12873, + 12849 + ]], + [[ + 12849, + 12851, + 12875 + ]], + [[ + 12876, + 12877, + 12849 + ]], + [[ + 12878, + 12876, + 12861 + ]], + [[ + 12879, + 12878, + 12861 + ]], + [[ + 12880, + 12879, + 12861 + ]], + [[ + 12881, + 12860, + 12882 + ]], + [[ + 12883, + 12861, + 12884 + ]], + [[ + 12884, + 12861, + 12885 + ]], + [[ + 12885, + 12861, + 12886 + ]], + [[ + 12886, + 12861, + 12887 + ]], + [[ + 12849, + 12877, + 12874 + ]], + [[ + 12888, + 12861, + 12889 + ]], + [[ + 12889, + 12861, + 12890 + ]], + [[ + 12890, + 12861, + 12881 + ]], + [[ + 12891, + 12890, + 12881 + ]], + [[ + 12892, + 12891, + 12881 + ]], + [[ + 12893, + 12892, + 12881 + ]], + [[ + 12894, + 12893, + 12881 + ]], + [[ + 12895, + 12894, + 12881 + ]], + [[ + 12896, + 12895, + 12881 + ]], + [[ + 12897, + 12881, + 12898 + ]], + [[ + 12898, + 12881, + 12899 + ]], + [[ + 12900, + 12881, + 12882 + ]], + [[ + 12901, + 12899, + 12881 + ]], + [[ + 12902, + 12901, + 12881 + ]], + [[ + 12900, + 12902, + 12881 + ]], + [[ + 12903, + 12849, + 12875 + ]], + [[ + 12904, + 12905, + 12882 + ]], + [[ + 12906, + 12904, + 12882 + ]], + [[ + 12907, + 12906, + 12882 + ]], + [[ + 12908, + 12907, + 12882 + ]], + [[ + 12909, + 12908, + 12882 + ]], + [[ + 12910, + 12909, + 12882 + ]], + [[ + 12882, + 12860, + 12911 + ]], + [[ + 12912, + 12882, + 12913 + ]], + [[ + 12913, + 12882, + 12914 + ]], + [[ + 12914, + 12882, + 12915 + ]], + [[ + 12915, + 12882, + 12916 + ]], + [[ + 12917, + 12915, + 12916 + ]], + [[ + 12918, + 12917, + 12916 + ]], + [[ + 12919, + 12918, + 12916 + ]], + [[ + 12916, + 12882, + 12911 + ]], + [[ + 12920, + 12921, + 12916 + ]], + [[ + 12922, + 12920, + 12916 + ]], + [[ + 12923, + 12922, + 12916 + ]], + [[ + 12924, + 12923, + 12916 + ]], + [[ + 12925, + 12926, + 12916 + ]], + [[ + 12916, + 12926, + 12924 + ]], + [[ + 12925, + 12927, + 12926 + ]], + [[ + 12925, + 12928, + 12927 + ]], + [[ + 12925, + 12929, + 12928 + ]], + [[ + 12925, + 12930, + 12929 + ]], + [[ + 12911, + 12860, + 12849 + ]], + [[ + 12931, + 12925, + 12932 + ]], + [[ + 12932, + 12925, + 12933 + ]], + [[ + 12933, + 12925, + 12934 + ]], + [[ + 12934, + 12925, + 12935 + ]], + [[ + 12935, + 12911, + 12936 + ]], + [[ + 12936, + 12911, + 12937 + ]], + [[ + 12937, + 12911, + 12938 + ]], + [[ + 12938, + 12911, + 12939 + ]], + [[ + 12939, + 12911, + 12940 + ]], + [[ + 12940, + 12911, + 12941 + ]], + [[ + 12941, + 12911, + 12942 + ]], + [[ + 12942, + 12911, + 12903 + ]], + [[ + 12903, + 12911, + 12849 + ]], + [[ + 12905, + 12900, + 12882 + ]], + [[ + 12888, + 12887, + 12861 + ]], + [[ + 12943, + 12861, + 12883 + ]], + [[ + 12943, + 12880, + 12861 + ]], + [[ + 12944, + 12882, + 12912 + ]], + [[ + 12944, + 12910, + 12882 + ]], + [[ + 12945, + 12925, + 12931 + ]], + [[ + 12925, + 12946, + 12930 + ]], + [[ + 12935, + 12925, + 12911 + ]], + [[ + 12945, + 12946, + 12925 + ]], + [[ + 12876, + 12849, + 12861 + ]], + [[ + 12863, + 12859, + 12849 + ]], + [[ + 12925, + 12916, + 12911 + ]], + [[ + 12921, + 12919, + 12916 + ]], + [[ + 12896, + 12881, + 12897 + ]], + [[ + 12861, + 12860, + 12881 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3bd29c-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1b049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12947, + 12948, + 12949 + ]], + [[ + 12950, + 12951, + 12952 + ]], + [[ + 12953, + 12954, + 12955 + ]], + [[ + 12954, + 12956, + 12957 + ]], + [[ + 12958, + 12957, + 12956 + ]], + [[ + 12949, + 12959, + 12960 + ]], + [[ + 12951, + 12961, + 12955 + ]], + [[ + 12962, + 12963, + 12950 + ]], + [[ + 12961, + 12951, + 12963 + ]], + [[ + 12952, + 12947, + 12964 + ]], + [[ + 12952, + 12964, + 12965 + ]], + [[ + 12947, + 12949, + 12964 + ]], + [[ + 12959, + 12966, + 12960 + ]], + [[ + 12948, + 12957, + 12966 + ]], + [[ + 12967, + 12962, + 12950 + ]], + [[ + 12965, + 12963, + 12962 + ]], + [[ + 12968, + 12967, + 12952 + ]], + [[ + 12969, + 12951, + 12950 + ]], + [[ + 12961, + 12953, + 12955 + ]], + [[ + 12954, + 12957, + 12955 + ]], + [[ + 12961, + 12970, + 12953 + ]], + [[ + 12961, + 12971, + 12956 + ]], + [[ + 12948, + 12972, + 12949 + ]], + [[ + 12948, + 12966, + 12972 + ]], + [[ + 12972, + 12959, + 12949 + ]], + [[ + 12972, + 12966, + 12959 + ]], + [[ + 12949, + 12960, + 12971 + ]], + [[ + 12966, + 12957, + 12960 + ]], + [[ + 12960, + 12973, + 12974 + ]], + [[ + 12960, + 12957, + 12973 + ]], + [[ + 12965, + 12968, + 12952 + ]], + [[ + 12965, + 12962, + 12968 + ]], + [[ + 12975, + 12954, + 12953 + ]], + [[ + 12956, + 12971, + 12958 + ]], + [[ + 12952, + 12967, + 12950 + ]], + [[ + 12968, + 12962, + 12967 + ]], + [[ + 12975, + 12956, + 12954 + ]], + [[ + 12975, + 12961, + 12956 + ]], + [[ + 12963, + 12969, + 12950 + ]], + [[ + 12963, + 12951, + 12969 + ]], + [[ + 12974, + 12958, + 12971 + ]], + [[ + 12973, + 12957, + 12958 + ]], + [[ + 12970, + 12975, + 12953 + ]], + [[ + 12970, + 12961, + 12975 + ]], + [[ + 12960, + 12974, + 12971 + ]], + [[ + 12973, + 12958, + 12974 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3c6f5d-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efe6fa49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12976, + 9866, + 9872 + ]], + [[ + 12977, + 9867, + 10357 + ]], + [[ + 10356, + 9875, + 12978 + ]], + [[ + 12979, + 12980, + 12981 + ]], + [[ + 12982, + 12980, + 9875 + ]], + [[ + 12976, + 9997, + 9866 + ]], + [[ + 12983, + 12982, + 12984 + ]], + [[ + 12985, + 12981, + 12986 + ]], + [[ + 12983, + 12984, + 12987 + ]], + [[ + 12988, + 12989, + 12990 + ]], + [[ + 12991, + 12992, + 12983 + ]], + [[ + 12993, + 12994, + 12995 + ]], + [[ + 12991, + 12983, + 12996 + ]], + [[ + 12995, + 12994, + 9872 + ]], + [[ + 12997, + 12980, + 12998 + ]], + [[ + 12999, + 13000, + 13001 + ]], + [[ + 12982, + 12983, + 12992 + ]], + [[ + 13002, + 12988, + 12990 + ]], + [[ + 13003, + 13002, + 12992 + ]], + [[ + 13004, + 13005, + 13006 + ]], + [[ + 13003, + 12991, + 12996 + ]], + [[ + 13003, + 12992, + 12991 + ]], + [[ + 12989, + 12996, + 13007 + ]], + [[ + 12987, + 13008, + 12996 + ]], + [[ + 10356, + 13009, + 9875 + ]], + [[ + 13010, + 13008, + 13011 + ]], + [[ + 13012, + 13013, + 13010 + ]], + [[ + 13013, + 10356, + 13010 + ]], + [[ + 13014, + 12978, + 13015 + ]], + [[ + 9875, + 9867, + 12978 + ]], + [[ + 12996, + 12983, + 12987 + ]], + [[ + 13016, + 9875, + 13010 + ]], + [[ + 13017, + 13018, + 13016 + ]], + [[ + 13017, + 13008, + 13018 + ]], + [[ + 13019, + 13020, + 13005 + ]], + [[ + 12989, + 13021, + 12996 + ]], + [[ + 10356, + 12996, + 13008 + ]], + [[ + 13005, + 9998, + 12985 + ]], + [[ + 13022, + 12979, + 12985 + ]], + [[ + 13004, + 12997, + 13005 + ]], + [[ + 12993, + 12995, + 9872 + ]], + [[ + 12994, + 12985, + 9998 + ]], + [[ + 13011, + 13017, + 13016 + ]], + [[ + 13011, + 13008, + 13017 + ]], + [[ + 9998, + 13023, + 9872 + ]], + [[ + 13023, + 9997, + 12976 + ]], + [[ + 13000, + 13007, + 13020 + ]], + [[ + 13005, + 13007, + 9998 + ]], + [[ + 13024, + 13025, + 12990 + ]], + [[ + 13024, + 13007, + 13025 + ]], + [[ + 10356, + 13014, + 10357 + ]], + [[ + 13015, + 9867, + 12977 + ]], + [[ + 13025, + 12999, + 12990 + ]], + [[ + 13025, + 13007, + 13000 + ]], + [[ + 12988, + 13002, + 13021 + ]], + [[ + 13021, + 13002, + 13003 + ]], + [[ + 12988, + 13021, + 12989 + ]], + [[ + 13003, + 12996, + 13021 + ]], + [[ + 12985, + 12979, + 12981 + ]], + [[ + 12986, + 13026, + 13006 + ]], + [[ + 12990, + 12982, + 12992 + ]], + [[ + 13026, + 13004, + 13006 + ]], + [[ + 12997, + 12998, + 13005 + ]], + [[ + 12998, + 13027, + 13019 + ]], + [[ + 12999, + 13001, + 12980 + ]], + [[ + 13027, + 13001, + 13020 + ]], + [[ + 13028, + 12982, + 13018 + ]], + [[ + 13018, + 12982, + 13016 + ]], + [[ + 13016, + 12982, + 9875 + ]], + [[ + 12992, + 13002, + 12990 + ]], + [[ + 13008, + 12984, + 13028 + ]], + [[ + 13008, + 12987, + 12984 + ]], + [[ + 13022, + 13029, + 12993 + ]], + [[ + 9872, + 9875, + 12993 + ]], + [[ + 13016, + 13010, + 13011 + ]], + [[ + 10356, + 13008, + 13010 + ]], + [[ + 9875, + 13012, + 13010 + ]], + [[ + 13009, + 10356, + 13013 + ]], + [[ + 12993, + 13029, + 12994 + ]], + [[ + 12993, + 13030, + 13022 + ]], + [[ + 13026, + 12980, + 12997 + ]], + [[ + 12980, + 12982, + 12990 + ]], + [[ + 13009, + 13012, + 9875 + ]], + [[ + 13009, + 13013, + 13012 + ]], + [[ + 13008, + 13028, + 13018 + ]], + [[ + 12984, + 12982, + 13028 + ]], + [[ + 12985, + 12986, + 13006 + ]], + [[ + 13026, + 12997, + 13004 + ]], + [[ + 12981, + 13026, + 12986 + ]], + [[ + 12981, + 12980, + 13026 + ]], + [[ + 9872, + 12994, + 9998 + ]], + [[ + 13029, + 12985, + 12994 + ]], + [[ + 10357, + 13015, + 12977 + ]], + [[ + 12978, + 9867, + 13015 + ]], + [[ + 10357, + 13014, + 13015 + ]], + [[ + 10356, + 12978, + 13014 + ]], + [[ + 13006, + 13005, + 12985 + ]], + [[ + 13007, + 10356, + 9998 + ]], + [[ + 12998, + 13019, + 13005 + ]], + [[ + 12998, + 12980, + 13027 + ]], + [[ + 13020, + 13007, + 13005 + ]], + [[ + 12996, + 10356, + 13007 + ]], + [[ + 13024, + 12989, + 13007 + ]], + [[ + 13024, + 12990, + 12989 + ]], + [[ + 13001, + 13000, + 13020 + ]], + [[ + 12999, + 13025, + 13000 + ]], + [[ + 9872, + 13023, + 12976 + ]], + [[ + 9998, + 9997, + 13023 + ]], + [[ + 12979, + 13022, + 13030 + ]], + [[ + 12985, + 13029, + 13022 + ]], + [[ + 12999, + 12980, + 12990 + ]], + [[ + 12993, + 9875, + 12980 + ]], + [[ + 12993, + 12979, + 13030 + ]], + [[ + 12993, + 12980, + 12979 + ]], + [[ + 13019, + 13027, + 13020 + ]], + [[ + 12980, + 13001, + 13027 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3c6f63-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8da49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13031, + 13032, + 13033 + ]], + [[ + 13034, + 13035, + 13036 + ]], + [[ + 13037, + 13038, + 13039 + ]], + [[ + 13040, + 13041, + 13042 + ]], + [[ + 13037, + 13043, + 13038 + ]], + [[ + 13044, + 13041, + 13040 + ]], + [[ + 13045, + 13046, + 13047 + ]], + [[ + 13048, + 13049, + 13050 + ]], + [[ + 13051, + 13043, + 13052 + ]], + [[ + 13051, + 13038, + 13043 + ]], + [[ + 13053, + 13052, + 13037 + ]], + [[ + 13043, + 13037, + 13052 + ]], + [[ + 13044, + 13048, + 13041 + ]], + [[ + 13044, + 13049, + 13048 + ]], + [[ + 13054, + 13055, + 13053 + ]], + [[ + 13050, + 13037, + 13041 + ]], + [[ + 13049, + 13056, + 13050 + ]], + [[ + 13053, + 13037, + 13050 + ]], + [[ + 13057, + 13058, + 13049 + ]], + [[ + 13059, + 13060, + 13061 + ]], + [[ + 13034, + 13062, + 13035 + ]], + [[ + 13051, + 13052, + 13055 + ]], + [[ + 13056, + 13049, + 13054 + ]], + [[ + 13035, + 13046, + 13031 + ]], + [[ + 13040, + 13063, + 13064 + ]], + [[ + 13065, + 13033, + 13066 + ]], + [[ + 13067, + 13068, + 13069 + ]], + [[ + 13067, + 13032, + 13070 + ]], + [[ + 13071, + 13067, + 13069 + ]], + [[ + 13072, + 13046, + 13068 + ]], + [[ + 13071, + 13073, + 13066 + ]], + [[ + 13074, + 13066, + 13073 + ]], + [[ + 13067, + 13071, + 13032 + ]], + [[ + 13075, + 13074, + 13039 + ]], + [[ + 13076, + 13036, + 13033 + ]], + [[ + 13046, + 13072, + 13031 + ]], + [[ + 13032, + 13066, + 13033 + ]], + [[ + 13075, + 13038, + 13051 + ]], + [[ + 13073, + 13039, + 13074 + ]], + [[ + 13077, + 13037, + 13039 + ]], + [[ + 13064, + 13057, + 13044 + ]], + [[ + 13078, + 13058, + 13057 + ]], + [[ + 13079, + 13080, + 13062 + ]], + [[ + 13081, + 13045, + 13047 + ]], + [[ + 13032, + 13071, + 13066 + ]], + [[ + 13077, + 13039, + 13073 + ]], + [[ + 13069, + 13063, + 13040 + ]], + [[ + 13064, + 13044, + 13040 + ]], + [[ + 13042, + 13069, + 13040 + ]], + [[ + 13068, + 13046, + 13045 + ]], + [[ + 13063, + 13045, + 13064 + ]], + [[ + 13063, + 13068, + 13045 + ]], + [[ + 13035, + 13047, + 13046 + ]], + [[ + 13075, + 13061, + 13076 + ]], + [[ + 13071, + 13069, + 13042 + ]], + [[ + 13068, + 13063, + 13069 + ]], + [[ + 13054, + 13053, + 13056 + ]], + [[ + 13055, + 13052, + 13053 + ]], + [[ + 13057, + 13049, + 13044 + ]], + [[ + 13058, + 13080, + 13079 + ]], + [[ + 13058, + 13079, + 13049 + ]], + [[ + 13079, + 13055, + 13054 + ]], + [[ + 13078, + 13080, + 13058 + ]], + [[ + 13064, + 13045, + 13080 + ]], + [[ + 13038, + 13075, + 13039 + ]], + [[ + 13065, + 13066, + 13074 + ]], + [[ + 13055, + 13059, + 13061 + ]], + [[ + 13076, + 13074, + 13075 + ]], + [[ + 13067, + 13070, + 13072 + ]], + [[ + 13032, + 13031, + 13072 + ]], + [[ + 13076, + 13065, + 13074 + ]], + [[ + 13076, + 13033, + 13065 + ]], + [[ + 13061, + 13034, + 13076 + ]], + [[ + 13060, + 13082, + 13034 + ]], + [[ + 13061, + 13060, + 13034 + ]], + [[ + 13081, + 13080, + 13045 + ]], + [[ + 13067, + 13072, + 13068 + ]], + [[ + 13070, + 13032, + 13072 + ]], + [[ + 13059, + 13082, + 13060 + ]], + [[ + 13079, + 13054, + 13049 + ]], + [[ + 13059, + 13079, + 13082 + ]], + [[ + 13059, + 13055, + 13079 + ]], + [[ + 13036, + 13035, + 13031 + ]], + [[ + 13034, + 13082, + 13062 + ]], + [[ + 13051, + 13061, + 13075 + ]], + [[ + 13051, + 13055, + 13061 + ]], + [[ + 13033, + 13036, + 13031 + ]], + [[ + 13076, + 13034, + 13036 + ]], + [[ + 13048, + 13050, + 13041 + ]], + [[ + 13056, + 13053, + 13050 + ]], + [[ + 13035, + 13062, + 13047 + ]], + [[ + 13062, + 13080, + 13081 + ]], + [[ + 13064, + 13078, + 13057 + ]], + [[ + 13064, + 13080, + 13078 + ]], + [[ + 13047, + 13062, + 13081 + ]], + [[ + 13082, + 13079, + 13062 + ]], + [[ + 13077, + 13071, + 13042 + ]], + [[ + 13077, + 13073, + 13071 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3d0b1b-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1ac49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11806, + 13083, + 11805 + ]], + [[ + 13084, + 13085, + 13086 + ]], + [[ + 11805, + 13087, + 13088 + ]], + [[ + 13089, + 13090, + 13091 + ]], + [[ + 13092, + 13090, + 13093 + ]], + [[ + 13089, + 11802, + 13093 + ]], + [[ + 13085, + 11798, + 13091 + ]], + [[ + 11800, + 11799, + 13084 + ]], + [[ + 11798, + 13085, + 11799 + ]], + [[ + 13094, + 11806, + 11800 + ]], + [[ + 13095, + 11806, + 13096 + ]], + [[ + 13097, + 13083, + 11806 + ]], + [[ + 13086, + 13098, + 13094 + ]], + [[ + 13086, + 13097, + 13095 + ]], + [[ + 13099, + 13087, + 11805 + ]], + [[ + 13083, + 13090, + 13088 + ]], + [[ + 13089, + 13093, + 13090 + ]], + [[ + 11802, + 13092, + 13093 + ]], + [[ + 13100, + 13092, + 11802 + ]], + [[ + 13100, + 13088, + 13092 + ]], + [[ + 11798, + 13089, + 13091 + ]], + [[ + 11798, + 11802, + 13089 + ]], + [[ + 13086, + 13094, + 11800 + ]], + [[ + 13096, + 11806, + 13094 + ]], + [[ + 13086, + 13095, + 13098 + ]], + [[ + 13097, + 11806, + 13095 + ]], + [[ + 13098, + 13096, + 13094 + ]], + [[ + 13098, + 13095, + 13096 + ]], + [[ + 11805, + 13100, + 11802 + ]], + [[ + 13088, + 13090, + 13092 + ]], + [[ + 11805, + 13088, + 13100 + ]], + [[ + 13087, + 13101, + 13088 + ]], + [[ + 13083, + 13101, + 11805 + ]], + [[ + 13101, + 13087, + 13099 + ]], + [[ + 11805, + 13101, + 13099 + ]], + [[ + 13083, + 13088, + 13101 + ]], + [[ + 11800, + 13084, + 13086 + ]], + [[ + 11799, + 13085, + 13084 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3d3258-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1b149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 12964, + 12949, + 12965 + ]], + [[ + 13102, + 12963, + 12965 + ]], + [[ + 12949, + 12971, + 12965 + ]], + [[ + 13102, + 12971, + 12961 + ]], + [[ + 12961, + 13103, + 13102 + ]], + [[ + 12961, + 12963, + 13103 + ]], + [[ + 13102, + 13104, + 12963 + ]], + [[ + 13103, + 12963, + 13104 + ]], + [[ + 12971, + 13102, + 12965 + ]], + [[ + 13103, + 13104, + 13102 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3d5974-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13105, + 1021, + 1019 + ]], + [[ + 13106, + 1019, + 1007 + ]], + [[ + 1006, + 13107, + 1007 + ]], + [[ + 13107, + 13108, + 13106 + ]], + [[ + 1007, + 13107, + 13106 + ]], + [[ + 1006, + 1021, + 13107 + ]], + [[ + 13106, + 13108, + 1019 + ]], + [[ + 13107, + 1021, + 13108 + ]], + [[ + 13108, + 13105, + 1019 + ]], + [[ + 13108, + 1021, + 13105 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e3f2ebd-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8d949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13109, + 13110, + 13111 + ]], + [[ + 13112, + 13113, + 13114 + ]], + [[ + 13112, + 13115, + 13113 + ]], + [[ + 13116, + 13117, + 13118 + ]], + [[ + 13116, + 13119, + 13120 + ]], + [[ + 13110, + 13121, + 13122 + ]], + [[ + 13123, + 13116, + 13120 + ]], + [[ + 13124, + 13125, + 13111 + ]], + [[ + 13126, + 13123, + 13127 + ]], + [[ + 13110, + 13122, + 13128 + ]], + [[ + 13119, + 13121, + 13120 + ]], + [[ + 13129, + 13130, + 13131 + ]], + [[ + 13132, + 13118, + 13117 + ]], + [[ + 13133, + 13119, + 13134 + ]], + [[ + 13113, + 13115, + 13126 + ]], + [[ + 13116, + 13118, + 13134 + ]], + [[ + 13119, + 13124, + 13121 + ]], + [[ + 13119, + 13133, + 13135 + ]], + [[ + 13110, + 13114, + 13113 + ]], + [[ + 13110, + 13127, + 13121 + ]], + [[ + 13136, + 13137, + 13131 + ]], + [[ + 13115, + 13117, + 13126 + ]], + [[ + 13136, + 13115, + 13137 + ]], + [[ + 13132, + 13117, + 13115 + ]], + [[ + 13110, + 13128, + 13111 + ]], + [[ + 13122, + 13121, + 13124 + ]], + [[ + 13136, + 13132, + 13115 + ]], + [[ + 13118, + 13138, + 13134 + ]], + [[ + 13136, + 13138, + 13132 + ]], + [[ + 13133, + 13139, + 13135 + ]], + [[ + 13137, + 13140, + 13131 + ]], + [[ + 13137, + 13115, + 13112 + ]], + [[ + 13140, + 13141, + 13129 + ]], + [[ + 13140, + 13137, + 13112 + ]], + [[ + 13127, + 13123, + 13120 + ]], + [[ + 13126, + 13117, + 13123 + ]], + [[ + 13121, + 13127, + 13120 + ]], + [[ + 13113, + 13126, + 13127 + ]], + [[ + 13141, + 13112, + 13114 + ]], + [[ + 13141, + 13140, + 13112 + ]], + [[ + 13109, + 13111, + 13125 + ]], + [[ + 13128, + 13124, + 13111 + ]], + [[ + 13119, + 13116, + 13134 + ]], + [[ + 13123, + 13117, + 13116 + ]], + [[ + 13122, + 13124, + 13128 + ]], + [[ + 13135, + 13125, + 13124 + ]], + [[ + 13132, + 13138, + 13118 + ]], + [[ + 13136, + 13139, + 13138 + ]], + [[ + 13140, + 13129, + 13131 + ]], + [[ + 13141, + 13114, + 13130 + ]], + [[ + 13131, + 13130, + 13125 + ]], + [[ + 13129, + 13141, + 13130 + ]], + [[ + 13114, + 13110, + 13109 + ]], + [[ + 13113, + 13127, + 13110 + ]], + [[ + 13130, + 13109, + 13125 + ]], + [[ + 13130, + 13114, + 13109 + ]], + [[ + 13138, + 13133, + 13134 + ]], + [[ + 13138, + 13139, + 13133 + ]], + [[ + 13119, + 13135, + 13124 + ]], + [[ + 13139, + 13125, + 13135 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e404005-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1a949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13142, + 13143, + 13144 + ]], + [[ + 13145, + 12489, + 13146 + ]], + [[ + 13147, + 13148, + 13149 + ]], + [[ + 12514, + 13150, + 13151 + ]], + [[ + 13152, + 13153, + 13143 + ]], + [[ + 13151, + 12506, + 12514 + ]], + [[ + 13154, + 13153, + 12506 + ]], + [[ + 12506, + 13153, + 12493 + ]], + [[ + 13155, + 13156, + 13157 + ]], + [[ + 13158, + 13159, + 13160 + ]], + [[ + 13156, + 13161, + 13162 + ]], + [[ + 13147, + 13149, + 13163 + ]], + [[ + 13159, + 13158, + 13161 + ]], + [[ + 13164, + 13153, + 13152 + ]], + [[ + 13165, + 13158, + 13152 + ]], + [[ + 13165, + 13161, + 13158 + ]], + [[ + 13166, + 13157, + 13143 + ]], + [[ + 13149, + 13148, + 13152 + ]], + [[ + 13157, + 13152, + 13143 + ]], + [[ + 13163, + 13149, + 13152 + ]], + [[ + 13166, + 13155, + 13157 + ]], + [[ + 13147, + 13161, + 13148 + ]], + [[ + 13157, + 13163, + 13152 + ]], + [[ + 13157, + 13162, + 13167 + ]], + [[ + 12493, + 13159, + 13161 + ]], + [[ + 12493, + 13153, + 13168 + ]], + [[ + 13158, + 13160, + 13152 + ]], + [[ + 13159, + 12493, + 13168 + ]], + [[ + 13160, + 13168, + 13164 + ]], + [[ + 13160, + 13159, + 13168 + ]], + [[ + 13160, + 13164, + 13152 + ]], + [[ + 13168, + 13153, + 13164 + ]], + [[ + 13169, + 13156, + 13155 + ]], + [[ + 13156, + 12493, + 13161 + ]], + [[ + 13170, + 13169, + 13155 + ]], + [[ + 12489, + 13156, + 13169 + ]], + [[ + 13157, + 13156, + 13162 + ]], + [[ + 12489, + 12493, + 13156 + ]], + [[ + 13157, + 13167, + 13163 + ]], + [[ + 13162, + 13161, + 13167 + ]], + [[ + 13171, + 13170, + 13155 + ]], + [[ + 12489, + 13169, + 13170 + ]], + [[ + 13165, + 13148, + 13161 + ]], + [[ + 13165, + 13152, + 13148 + ]], + [[ + 13150, + 13154, + 13172 + ]], + [[ + 13173, + 12506, + 13172 + ]], + [[ + 13174, + 12514, + 13175 + ]], + [[ + 13146, + 13143, + 13176 + ]], + [[ + 13174, + 13177, + 13178 + ]], + [[ + 13172, + 12506, + 13151 + ]], + [[ + 13178, + 13177, + 13150 + ]], + [[ + 13144, + 13154, + 13150 + ]], + [[ + 13151, + 13150, + 13172 + ]], + [[ + 13177, + 13144, + 13150 + ]], + [[ + 13179, + 13145, + 13176 + ]], + [[ + 13180, + 13166, + 13146 + ]], + [[ + 13177, + 13174, + 13144 + ]], + [[ + 13175, + 13181, + 13142 + ]], + [[ + 13174, + 13142, + 13144 + ]], + [[ + 13176, + 13143, + 13142 + ]], + [[ + 13180, + 13171, + 13166 + ]], + [[ + 12489, + 13170, + 13171 + ]], + [[ + 13146, + 13166, + 13143 + ]], + [[ + 13171, + 13155, + 13166 + ]], + [[ + 13181, + 13179, + 13176 + ]], + [[ + 12514, + 12489, + 13179 + ]], + [[ + 13174, + 13175, + 13142 + ]], + [[ + 12514, + 13179, + 13175 + ]], + [[ + 12514, + 13178, + 13150 + ]], + [[ + 12514, + 13174, + 13178 + ]], + [[ + 12489, + 13180, + 13146 + ]], + [[ + 12489, + 13171, + 13180 + ]], + [[ + 13167, + 13147, + 13163 + ]], + [[ + 13167, + 13161, + 13147 + ]], + [[ + 13154, + 13173, + 13172 + ]], + [[ + 13154, + 12506, + 13173 + ]], + [[ + 13176, + 13145, + 13146 + ]], + [[ + 13179, + 12489, + 13145 + ]], + [[ + 13142, + 13181, + 13176 + ]], + [[ + 13175, + 13179, + 13181 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e404008-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba4f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13182, + 13183, + 13184 + ]], + [[ + 13185, + 13186, + 13187 + ]], + [[ + 13182, + 13184, + 13185 + ]], + [[ + 13182, + 13185, + 13187 + ]], + [[ + 13184, + 13186, + 13185 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e415141-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13188, + 13189, + 13190 + ]], + [[ + 13191, + 13190, + 13192 + ]], + [[ + 13193, + 13194, + 13192 + ]], + [[ + 13195, + 13189, + 13188 + ]], + [[ + 13191, + 13196, + 13197 + ]], + [[ + 13195, + 13198, + 13189 + ]], + [[ + 13194, + 13191, + 13192 + ]], + [[ + 13194, + 13196, + 13191 + ]], + [[ + 13197, + 13196, + 13199 + ]], + [[ + 13200, + 13201, + 13198 + ]], + [[ + 13197, + 13199, + 13188 + ]], + [[ + 13198, + 13202, + 13189 + ]], + [[ + 13196, + 13198, + 13199 + ]], + [[ + 13196, + 13200, + 13198 + ]], + [[ + 13199, + 13195, + 13188 + ]], + [[ + 13199, + 13198, + 13195 + ]], + [[ + 13190, + 13197, + 13188 + ]], + [[ + 13190, + 13191, + 13197 + ]], + [[ + 13194, + 13200, + 13196 + ]], + [[ + 13194, + 13193, + 13200 + ]], + [[ + 13193, + 13201, + 13200 + ]], + [[ + 13202, + 13198, + 13201 + ]], + [[ + 13202, + 13193, + 13192 + ]], + [[ + 13202, + 13201, + 13193 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e41ee11-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13203, + 13204, + 13205 + ]], + [[ + 13203, + 13205, + 13206 + ]], + [[ + 13207, + 13203, + 13206 + ]], + [[ + 13207, + 13204, + 13203 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e4289b7-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba4d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13208, + 13209, + 13210 + ]], + [[ + 13211, + 13212, + 13210 + ]], + [[ + 13213, + 13214, + 13211 + ]], + [[ + 13215, + 13213, + 13216 + ]], + [[ + 13217, + 13211, + 13210 + ]], + [[ + 13218, + 13215, + 13216 + ]], + [[ + 13212, + 13219, + 13208 + ]], + [[ + 13212, + 13214, + 13215 + ]], + [[ + 13212, + 13215, + 13219 + ]], + [[ + 13214, + 13213, + 13215 + ]], + [[ + 13212, + 13208, + 13210 + ]], + [[ + 13209, + 13220, + 13210 + ]], + [[ + 13221, + 13213, + 13217 + ]], + [[ + 13214, + 13212, + 13211 + ]], + [[ + 13219, + 13209, + 13208 + ]], + [[ + 13219, + 13215, + 13218 + ]], + [[ + 13217, + 13213, + 13211 + ]], + [[ + 13218, + 13220, + 13209 + ]], + [[ + 13221, + 13216, + 13213 + ]], + [[ + 13221, + 13220, + 13216 + ]], + [[ + 13220, + 13218, + 13216 + ]], + [[ + 13209, + 13219, + 13218 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e43e94c-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 11699, + 13222, + 13223 + ]], + [[ + 11704, + 13224, + 13225 + ]], + [[ + 11707, + 13226, + 13227 + ]], + [[ + 11709, + 13228, + 13229 + ]], + [[ + 11711, + 13230, + 13231 + ]], + [[ + 11713, + 13232, + 13233 + ]], + [[ + 11716, + 13234, + 13235 + ]], + [[ + 11717, + 13236, + 13237 + ]], + [[ + 11719, + 13238, + 13239 + ]], + [[ + 13240, + 11745, + 11746 + ]], + [[ + 11747, + 11748, + 13241 + ]], + [[ + 13242, + 13243, + 13244 + ]], + [[ + 13245, + 13242, + 13244 + ]], + [[ + 13246, + 13245, + 13244 + ]], + [[ + 13247, + 13246, + 13244 + ]], + [[ + 13248, + 13247, + 13244 + ]], + [[ + 13249, + 13248, + 13250 + ]], + [[ + 13251, + 13249, + 13250 + ]], + [[ + 13248, + 13244, + 13250 + ]], + [[ + 13243, + 13252, + 13253 + ]], + [[ + 13243, + 13254, + 13244 + ]], + [[ + 13243, + 13255, + 13254 + ]], + [[ + 13243, + 13253, + 13255 + ]], + [[ + 13252, + 13256, + 13253 + ]], + [[ + 13252, + 13257, + 13256 + ]], + [[ + 13252, + 13240, + 13257 + ]], + [[ + 13257, + 13240, + 13258 + ]], + [[ + 13252, + 11737, + 13240 + ]], + [[ + 13240, + 11740, + 11741 + ]], + [[ + 11668, + 11667, + 13259 + ]], + [[ + 13260, + 13240, + 13261 + ]], + [[ + 13261, + 13240, + 13262 + ]], + [[ + 13262, + 13240, + 13263 + ]], + [[ + 13263, + 13240, + 13241 + ]], + [[ + 13241, + 11748, + 13264 + ]], + [[ + 13264, + 11750, + 13265 + ]], + [[ + 13265, + 11752, + 13266 + ]], + [[ + 13266, + 11753, + 13267 + ]], + [[ + 13267, + 11755, + 13268 + ]], + [[ + 13268, + 11757, + 13269 + ]], + [[ + 13269, + 11668, + 13259 + ]], + [[ + 11751, + 11752, + 13265 + ]], + [[ + 11758, + 11668, + 13269 + ]], + [[ + 11728, + 13270, + 13271 + ]], + [[ + 11757, + 11758, + 13269 + ]], + [[ + 11729, + 13272, + 13273 + ]], + [[ + 11756, + 11757, + 13268 + ]], + [[ + 11754, + 11755, + 13267 + ]], + [[ + 13274, + 13240, + 13260 + ]], + [[ + 11731, + 13275, + 13276 + ]], + [[ + 13268, + 11755, + 11756 + ]], + [[ + 13252, + 13275, + 11732 + ]], + [[ + 13277, + 11731, + 13276 + ]], + [[ + 13277, + 13272, + 11730 + ]], + [[ + 13278, + 11729, + 13273 + ]], + [[ + 11754, + 13267, + 11753 + ]], + [[ + 13266, + 11752, + 11753 + ]], + [[ + 13278, + 13270, + 11728 + ]], + [[ + 13279, + 11727, + 13271 + ]], + [[ + 11726, + 13280, + 13281 + ]], + [[ + 13265, + 11750, + 11751 + ]], + [[ + 13279, + 13280, + 11726 + ]], + [[ + 11748, + 11749, + 13264 + ]], + [[ + 11750, + 13264, + 11749 + ]], + [[ + 13282, + 11725, + 13281 + ]], + [[ + 13282, + 13283, + 11724 + ]], + [[ + 13284, + 11724, + 13283 + ]], + [[ + 11722, + 13285, + 13286 + ]], + [[ + 13241, + 13240, + 11747 + ]], + [[ + 13284, + 13285, + 11723 + ]], + [[ + 13287, + 11722, + 13286 + ]], + [[ + 11746, + 11747, + 13240 + ]], + [[ + 13288, + 11721, + 13287 + ]], + [[ + 11720, + 13289, + 13238 + ]], + [[ + 11745, + 13240, + 11744 + ]], + [[ + 13288, + 13289, + 11720 + ]], + [[ + 13240, + 11742, + 11743 + ]], + [[ + 11743, + 11744, + 13240 + ]], + [[ + 13290, + 11719, + 13239 + ]], + [[ + 11718, + 13291, + 13236 + ]], + [[ + 11742, + 13240, + 11741 + ]], + [[ + 13290, + 13291, + 11718 + ]], + [[ + 11738, + 11739, + 13240 + ]], + [[ + 11740, + 13240, + 11739 + ]], + [[ + 13292, + 11717, + 13237 + ]], + [[ + 11715, + 13293, + 13234 + ]], + [[ + 13240, + 11737, + 11738 + ]], + [[ + 13292, + 13293, + 11715 + ]], + [[ + 11735, + 11736, + 13252 + ]], + [[ + 11737, + 13252, + 11736 + ]], + [[ + 13294, + 11716, + 13235 + ]], + [[ + 11714, + 13295, + 13232 + ]], + [[ + 13252, + 11734, + 11735 + ]], + [[ + 13294, + 13295, + 11714 + ]], + [[ + 11732, + 11733, + 13252 + ]], + [[ + 11734, + 13252, + 11733 + ]], + [[ + 13296, + 11713, + 13233 + ]], + [[ + 13296, + 13297, + 11712 + ]], + [[ + 13275, + 11731, + 11732 + ]], + [[ + 13297, + 13230, + 11712 + ]], + [[ + 11729, + 11730, + 13272 + ]], + [[ + 11731, + 13277, + 11730 + ]], + [[ + 13298, + 11711, + 13231 + ]], + [[ + 13298, + 13299, + 11710 + ]], + [[ + 13278, + 11728, + 11729 + ]], + [[ + 13299, + 13228, + 11710 + ]], + [[ + 11726, + 11727, + 13279 + ]], + [[ + 11728, + 13271, + 11727 + ]], + [[ + 13300, + 11708, + 13229 + ]], + [[ + 13300, + 13301, + 11708 + ]], + [[ + 13281, + 11725, + 11726 + ]], + [[ + 13301, + 13226, + 11707 + ]], + [[ + 11723, + 11724, + 13284 + ]], + [[ + 11725, + 13282, + 11724 + ]], + [[ + 13302, + 11706, + 13227 + ]], + [[ + 13302, + 13303, + 11705 + ]], + [[ + 13285, + 11722, + 11723 + ]], + [[ + 13303, + 13224, + 11705 + ]], + [[ + 11720, + 11721, + 13288 + ]], + [[ + 11722, + 13287, + 11721 + ]], + [[ + 13304, + 11703, + 13225 + ]], + [[ + 11702, + 13305, + 13306 + ]], + [[ + 13238, + 11719, + 11720 + ]], + [[ + 13304, + 13305, + 11703 + ]], + [[ + 11717, + 11718, + 13236 + ]], + [[ + 11719, + 13290, + 11718 + ]], + [[ + 13307, + 11701, + 13306 + ]], + [[ + 13307, + 13308, + 11700 + ]], + [[ + 13292, + 11715, + 11717 + ]], + [[ + 13308, + 13222, + 11700 + ]], + [[ + 11714, + 11716, + 13294 + ]], + [[ + 11715, + 13234, + 11716 + ]], + [[ + 13309, + 11698, + 13223 + ]], + [[ + 13232, + 11713, + 11714 + ]], + [[ + 11696, + 13310, + 13311 + ]], + [[ + 13296, + 11712, + 11713 + ]], + [[ + 13309, + 13310, + 11697 + ]], + [[ + 11710, + 11711, + 13298 + ]], + [[ + 11712, + 13230, + 11711 + ]], + [[ + 13312, + 11694, + 13311 + ]], + [[ + 11691, + 13313, + 13314 + ]], + [[ + 13228, + 11709, + 11710 + ]], + [[ + 13312, + 13313, + 11693 + ]], + [[ + 11709, + 13229, + 11708 + ]], + [[ + 11706, + 11707, + 13227 + ]], + [[ + 11708, + 13301, + 11707 + ]], + [[ + 13315, + 11690, + 13314 + ]], + [[ + 13302, + 11705, + 11706 + ]], + [[ + 11687, + 13316, + 13317 + ]], + [[ + 13224, + 11704, + 11705 + ]], + [[ + 13315, + 13316, + 11688 + ]], + [[ + 11702, + 11703, + 13305 + ]], + [[ + 11704, + 13225, + 11703 + ]], + [[ + 11701, + 11702, + 13306 + ]], + [[ + 13318, + 11685, + 13317 + ]], + [[ + 13307, + 11700, + 11701 + ]], + [[ + 13222, + 11699, + 11700 + ]], + [[ + 13318, + 13319, + 11683 + ]], + [[ + 13223, + 11698, + 11699 + ]], + [[ + 13309, + 11697, + 11698 + ]], + [[ + 13310, + 11696, + 11697 + ]], + [[ + 13311, + 11695, + 11696 + ]], + [[ + 13319, + 13320, + 11681 + ]], + [[ + 13311, + 11694, + 11695 + ]], + [[ + 13312, + 11693, + 11694 + ]], + [[ + 13313, + 11692, + 11693 + ]], + [[ + 13313, + 11691, + 11692 + ]], + [[ + 13320, + 13321, + 11679 + ]], + [[ + 13314, + 11690, + 11691 + ]], + [[ + 13315, + 11689, + 11690 + ]], + [[ + 13315, + 11688, + 11689 + ]], + [[ + 13316, + 11687, + 11688 + ]], + [[ + 13317, + 11686, + 11687 + ]], + [[ + 13321, + 13322, + 11677 + ]], + [[ + 13317, + 11685, + 11686 + ]], + [[ + 13318, + 11684, + 11685 + ]], + [[ + 13318, + 11683, + 11684 + ]], + [[ + 13319, + 11682, + 11683 + ]], + [[ + 13322, + 13323, + 11675 + ]], + [[ + 13319, + 11681, + 11682 + ]], + [[ + 13320, + 11680, + 11681 + ]], + [[ + 13320, + 11679, + 11680 + ]], + [[ + 13321, + 11678, + 11679 + ]], + [[ + 13323, + 13324, + 11673 + ]], + [[ + 13321, + 11677, + 11678 + ]], + [[ + 13322, + 11676, + 11677 + ]], + [[ + 13322, + 11675, + 11676 + ]], + [[ + 13323, + 11674, + 11675 + ]], + [[ + 13324, + 13325, + 11671 + ]], + [[ + 13323, + 11673, + 11674 + ]], + [[ + 13324, + 11672, + 11673 + ]], + [[ + 13324, + 11671, + 11672 + ]], + [[ + 13325, + 11670, + 11671 + ]], + [[ + 13325, + 13259, + 11669 + ]], + [[ + 13325, + 11669, + 11670 + ]], + [[ + 13259, + 11667, + 11669 + ]], + [[ + 13326, + 13240, + 13274 + ]], + [[ + 13326, + 13258, + 13240 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e44d366-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1a849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3117, + 1779, + 11660 + ]], + [[ + 13327, + 13328, + 13329 + ]], + [[ + 13330, + 13331, + 13332 + ]], + [[ + 13331, + 13333, + 13332 + ]], + [[ + 13334, + 13335, + 13336 + ]], + [[ + 13337, + 1369, + 1619 + ]], + [[ + 13338, + 13339, + 13340 + ]], + [[ + 13341, + 13342, + 13343 + ]], + [[ + 13344, + 13345, + 13346 + ]], + [[ + 13347, + 1778, + 7803 + ]], + [[ + 13348, + 13349, + 13350 + ]], + [[ + 13351, + 13350, + 13352 + ]], + [[ + 13353, + 7803, + 11610 + ]], + [[ + 3148, + 3149, + 1779 + ]], + [[ + 3157, + 3148, + 1779 + ]], + [[ + 3147, + 3124, + 3148 + ]], + [[ + 3151, + 3147, + 3148 + ]], + [[ + 3144, + 3146, + 3147 + ]], + [[ + 3142, + 3144, + 3147 + ]], + [[ + 3136, + 3142, + 3147 + ]], + [[ + 3138, + 3140, + 3142 + ]], + [[ + 3136, + 3138, + 3142 + ]], + [[ + 3151, + 3136, + 3147 + ]], + [[ + 3131, + 3151, + 3148 + ]], + [[ + 3131, + 3132, + 3151 + ]], + [[ + 3131, + 3133, + 3132 + ]], + [[ + 3157, + 3131, + 3148 + ]], + [[ + 3157, + 3129, + 3131 + ]], + [[ + 3157, + 3126, + 3129 + ]], + [[ + 3157, + 3127, + 3126 + ]], + [[ + 3157, + 3155, + 3127 + ]], + [[ + 3116, + 3157, + 1779 + ]], + [[ + 3116, + 3119, + 3157 + ]], + [[ + 3116, + 3120, + 3119 + ]], + [[ + 3116, + 3118, + 3120 + ]], + [[ + 3117, + 3116, + 1779 + ]], + [[ + 1778, + 11660, + 1779 + ]], + [[ + 13354, + 13355, + 13356 + ]], + [[ + 13357, + 13358, + 13359 + ]], + [[ + 13360, + 13361, + 11660 + ]], + [[ + 13362, + 13356, + 7803 + ]], + [[ + 13363, + 13364, + 13365 + ]], + [[ + 13366, + 13367, + 13368 + ]], + [[ + 13369, + 13370, + 13371 + ]], + [[ + 13372, + 13373, + 13374 + ]], + [[ + 13347, + 13359, + 1778 + ]], + [[ + 13375, + 13376, + 13377 + ]], + [[ + 13378, + 13379, + 13380 + ]], + [[ + 13381, + 13359, + 13347 + ]], + [[ + 13382, + 13347, + 7803 + ]], + [[ + 13383, + 13384, + 13385 + ]], + [[ + 13386, + 13387, + 13388 + ]], + [[ + 13389, + 13390, + 13382 + ]], + [[ + 13391, + 13392, + 13393 + ]], + [[ + 13394, + 13395, + 13396 + ]], + [[ + 13397, + 13398, + 13399 + ]], + [[ + 13400, + 13359, + 13381 + ]], + [[ + 13401, + 13402, + 13379 + ]], + [[ + 13385, + 13392, + 13403 + ]], + [[ + 13404, + 13379, + 13378 + ]], + [[ + 13402, + 13380, + 13379 + ]], + [[ + 13405, + 13378, + 13380 + ]], + [[ + 13406, + 13407, + 13408 + ]], + [[ + 13392, + 13391, + 13409 + ]], + [[ + 13410, + 13411, + 13412 + ]], + [[ + 13413, + 13414, + 13415 + ]], + [[ + 13416, + 13372, + 13374 + ]], + [[ + 13417, + 13386, + 13388 + ]], + [[ + 13418, + 13419, + 13420 + ]], + [[ + 13421, + 13422, + 13423 + ]], + [[ + 13394, + 13424, + 13375 + ]], + [[ + 13425, + 13383, + 13426 + ]], + [[ + 13427, + 13428, + 13429 + ]], + [[ + 13388, + 13387, + 13380 + ]], + [[ + 13430, + 13431, + 13432 + ]], + [[ + 13433, + 13434, + 13435 + ]], + [[ + 13436, + 13437, + 13438 + ]], + [[ + 13439, + 13440, + 13441 + ]], + [[ + 13442, + 13404, + 13378 + ]], + [[ + 13383, + 13403, + 13426 + ]], + [[ + 13388, + 13380, + 13443 + ]], + [[ + 13374, + 13431, + 13405 + ]], + [[ + 13444, + 13445, + 13401 + ]], + [[ + 13426, + 13403, + 13423 + ]], + [[ + 13383, + 13385, + 13403 + ]], + [[ + 13446, + 13384, + 13425 + ]], + [[ + 13412, + 13446, + 13425 + ]], + [[ + 13402, + 13443, + 13380 + ]], + [[ + 13447, + 13424, + 13448 + ]], + [[ + 13449, + 13333, + 13331 + ]], + [[ + 13450, + 13451, + 13452 + ]], + [[ + 13453, + 13454, + 13455 + ]], + [[ + 13456, + 13445, + 13444 + ]], + [[ + 13457, + 13458, + 13459 + ]], + [[ + 13460, + 13461, + 13462 + ]], + [[ + 13463, + 13457, + 13459 + ]], + [[ + 13385, + 13393, + 13392 + ]], + [[ + 13464, + 13465, + 13466 + ]], + [[ + 13417, + 13388, + 13443 + ]], + [[ + 13467, + 13468, + 13469 + ]], + [[ + 13374, + 13405, + 13416 + ]], + [[ + 13470, + 13471, + 13391 + ]], + [[ + 13391, + 13393, + 13470 + ]], + [[ + 13425, + 13384, + 13383 + ]], + [[ + 13472, + 13473, + 13474 + ]], + [[ + 13475, + 13476, + 13477 + ]], + [[ + 13333, + 13478, + 13332 + ]], + [[ + 13479, + 13480, + 13481 + ]], + [[ + 13409, + 13423, + 13403 + ]], + [[ + 13387, + 13386, + 13481 + ]], + [[ + 13387, + 13405, + 13380 + ]], + [[ + 13463, + 13408, + 13457 + ]], + [[ + 13409, + 13395, + 13423 + ]], + [[ + 13446, + 13482, + 13384 + ]], + [[ + 13389, + 13473, + 13429 + ]], + [[ + 13390, + 13389, + 13428 + ]], + [[ + 13390, + 13397, + 13382 + ]], + [[ + 13483, + 13468, + 13467 + ]], + [[ + 13484, + 13485, + 13486 + ]], + [[ + 13458, + 13487, + 13459 + ]], + [[ + 13407, + 13471, + 13470 + ]], + [[ + 13450, + 13452, + 13488 + ]], + [[ + 13489, + 13490, + 13478 + ]], + [[ + 13411, + 13398, + 13412 + ]], + [[ + 13421, + 13423, + 13395 + ]], + [[ + 13397, + 13446, + 13398 + ]], + [[ + 13482, + 13428, + 13427 + ]], + [[ + 13491, + 13449, + 13331 + ]], + [[ + 13491, + 12553, + 13490 + ]], + [[ + 13449, + 13489, + 13333 + ]], + [[ + 13490, + 12553, + 13478 + ]], + [[ + 13345, + 13492, + 13493 + ]], + [[ + 13494, + 13495, + 13496 + ]], + [[ + 13347, + 13399, + 13381 + ]], + [[ + 13347, + 13397, + 13399 + ]], + [[ + 13417, + 13497, + 13498 + ]], + [[ + 13480, + 13463, + 13387 + ]], + [[ + 13457, + 13408, + 13407 + ]], + [[ + 13480, + 13499, + 13408 + ]], + [[ + 13407, + 13406, + 13471 + ]], + [[ + 13406, + 13396, + 13395 + ]], + [[ + 13500, + 13330, + 13478 + ]], + [[ + 10000, + 12553, + 13491 + ]], + [[ + 13482, + 13390, + 13428 + ]], + [[ + 13397, + 13347, + 13382 + ]], + [[ + 13391, + 13406, + 13501 + ]], + [[ + 13408, + 13396, + 13406 + ]], + [[ + 13502, + 13503, + 13440 + ]], + [[ + 13504, + 13505, + 13394 + ]], + [[ + 13446, + 13412, + 13398 + ]], + [[ + 13419, + 13506, + 13507 + ]], + [[ + 13508, + 13509, + 13510 + ]], + [[ + 13511, + 13512, + 13513 + ]], + [[ + 13508, + 13514, + 13509 + ]], + [[ + 13515, + 13516, + 13517 + ]], + [[ + 13345, + 13518, + 13492 + ]], + [[ + 13510, + 13509, + 13519 + ]], + [[ + 13415, + 13520, + 13521 + ]], + [[ + 13522, + 13523, + 13524 + ]], + [[ + 13525, + 13521, + 13520 + ]], + [[ + 13353, + 13526, + 13527 + ]], + [[ + 13415, + 13521, + 13528 + ]], + [[ + 13513, + 13512, + 13515 + ]], + [[ + 13489, + 13478, + 13333 + ]], + [[ + 13529, + 13530, + 13531 + ]], + [[ + 13479, + 13417, + 13498 + ]], + [[ + 13504, + 13394, + 13396 + ]], + [[ + 13374, + 13373, + 13431 + ]], + [[ + 13469, + 13454, + 13373 + ]], + [[ + 13532, + 13523, + 13522 + ]], + [[ + 13355, + 13354, + 13533 + ]], + [[ + 13399, + 13411, + 13534 + ]], + [[ + 13535, + 13357, + 13359 + ]], + [[ + 13536, + 13537, + 13538 + ]], + [[ + 13539, + 13461, + 13540 + ]], + [[ + 13400, + 13535, + 13359 + ]], + [[ + 13541, + 13542, + 13360 + ]], + [[ + 13543, + 13454, + 13469 + ]], + [[ + 13455, + 13369, + 13453 + ]], + [[ + 13544, + 13545, + 13455 + ]], + [[ + 13545, + 13370, + 13369 + ]], + [[ + 13397, + 13482, + 13446 + ]], + [[ + 13397, + 13390, + 13482 + ]], + [[ + 13479, + 13499, + 13480 + ]], + [[ + 13396, + 13408, + 13499 + ]], + [[ + 13417, + 13479, + 13481 + ]], + [[ + 13497, + 13503, + 13546 + ]], + [[ + 13547, + 13495, + 13548 + ]], + [[ + 13549, + 13512, + 13511 + ]], + [[ + 13550, + 13346, + 13348 + ]], + [[ + 13494, + 13551, + 13548 + ]], + [[ + 13552, + 13440, + 13553 + ]], + [[ + 13554, + 13555, + 13556 + ]], + [[ + 13474, + 13465, + 13472 + ]], + [[ + 13557, + 13354, + 13362 + ]], + [[ + 7803, + 13355, + 13473 + ]], + [[ + 7803, + 13356, + 13355 + ]], + [[ + 13472, + 13429, + 13473 + ]], + [[ + 13428, + 13389, + 13429 + ]], + [[ + 13385, + 13427, + 13558 + ]], + [[ + 13384, + 13482, + 13427 + ]], + [[ + 13427, + 13472, + 13558 + ]], + [[ + 13427, + 13429, + 13472 + ]], + [[ + 13559, + 13539, + 13437 + ]], + [[ + 13353, + 13527, + 7803 + ]], + [[ + 13414, + 13560, + 13415 + ]], + [[ + 13523, + 13561, + 13513 + ]], + [[ + 13515, + 13562, + 13523 + ]], + [[ + 13563, + 13371, + 13370 + ]], + [[ + 13536, + 13538, + 13353 + ]], + [[ + 13438, + 13564, + 13527 + ]], + [[ + 13536, + 13353, + 11610 + ]], + [[ + 13538, + 13537, + 13565 + ]], + [[ + 13350, + 13349, + 11610 + ]], + [[ + 13348, + 13566, + 13567 + ]], + [[ + 13406, + 13395, + 13501 + ]], + [[ + 13568, + 13424, + 11660 + ]], + [[ + 13392, + 13409, + 13403 + ]], + [[ + 13501, + 13395, + 13409 + ]], + [[ + 13569, + 13570, + 13571 + ]], + [[ + 13572, + 13363, + 13548 + ]], + [[ + 13573, + 13574, + 13570 + ]], + [[ + 13435, + 13553, + 13433 + ]], + [[ + 13518, + 13569, + 13551 + ]], + [[ + 13571, + 13364, + 13363 + ]], + [[ + 13575, + 13510, + 13549 + ]], + [[ + 13519, + 13439, + 13516 + ]], + [[ + 13511, + 13576, + 13577 + ]], + [[ + 13510, + 13575, + 13578 + ]], + [[ + 13579, + 13496, + 13495 + ]], + [[ + 13551, + 13572, + 13548 + ]], + [[ + 13535, + 13534, + 13580 + ]], + [[ + 13399, + 13398, + 13411 + ]], + [[ + 13387, + 13463, + 13416 + ]], + [[ + 13480, + 13408, + 13463 + ]], + [[ + 13480, + 13387, + 13481 + ]], + [[ + 13416, + 13405, + 13387 + ]], + [[ + 13581, + 13582, + 1375 + ]], + [[ + 13583, + 13584, + 13582 + ]], + [[ + 13563, + 13524, + 13562 + ]], + [[ + 13561, + 13521, + 13576 + ]], + [[ + 13522, + 13524, + 13462 + ]], + [[ + 13523, + 13562, + 13524 + ]], + [[ + 13460, + 13545, + 13544 + ]], + [[ + 13462, + 13370, + 13545 + ]], + [[ + 13459, + 13372, + 13416 + ]], + [[ + 13469, + 13373, + 13372 + ]], + [[ + 13549, + 13519, + 13512 + ]], + [[ + 13516, + 13441, + 13517 + ]], + [[ + 13577, + 13575, + 13549 + ]], + [[ + 13434, + 13585, + 13435 + ]], + [[ + 13522, + 13462, + 13461 + ]], + [[ + 13524, + 13370, + 13462 + ]], + [[ + 13362, + 13354, + 13356 + ]], + [[ + 13485, + 13469, + 13468 + ]], + [[ + 13586, + 13533, + 13486 + ]], + [[ + 13465, + 13587, + 13533 + ]], + [[ + 13365, + 13588, + 13435 + ]], + [[ + 13553, + 13440, + 13514 + ]], + [[ + 13589, + 13590, + 13552 + ]], + [[ + 13585, + 13365, + 13435 + ]], + [[ + 13578, + 13434, + 13433 + ]], + [[ + 13514, + 13440, + 13509 + ]], + [[ + 13435, + 13588, + 13553 + ]], + [[ + 13590, + 13502, + 13552 + ]], + [[ + 13571, + 13591, + 13364 + ]], + [[ + 13592, + 13502, + 13590 + ]], + [[ + 13537, + 13593, + 13414 + ]], + [[ + 13594, + 13496, + 13579 + ]], + [[ + 13595, + 13564, + 13438 + ]], + [[ + 13543, + 13544, + 13455 + ]], + [[ + 13540, + 13595, + 13437 + ]], + [[ + 13460, + 13462, + 13545 + ]], + [[ + 13596, + 13597, + 13598 + ]], + [[ + 1369, + 13599, + 13597 + ]], + [[ + 13518, + 13551, + 13492 + ]], + [[ + 13492, + 13600, + 13493 + ]], + [[ + 13594, + 13566, + 13600 + ]], + [[ + 13600, + 13492, + 13494 + ]], + [[ + 13525, + 13601, + 13576 + ]], + [[ + 13520, + 13560, + 13567 + ]], + [[ + 13434, + 13548, + 13585 + ]], + [[ + 13572, + 13571, + 13363 + ]], + [[ + 13602, + 13603, + 13604 + ]], + [[ + 13346, + 13566, + 13348 + ]], + [[ + 13329, + 13328, + 13605 + ]], + [[ + 13491, + 13331, + 13330 + ]], + [[ + 13606, + 13599, + 1369 + ]], + [[ + 13607, + 13606, + 13608 + ]], + [[ + 13609, + 13574, + 13573 + ]], + [[ + 13574, + 13610, + 13570 + ]], + [[ + 13611, + 13609, + 13573 + ]], + [[ + 13610, + 13502, + 13592 + ]], + [[ + 13432, + 13456, + 13442 + ]], + [[ + 13401, + 13379, + 13404 + ]], + [[ + 13405, + 13430, + 13378 + ]], + [[ + 13444, + 13401, + 13404 + ]], + [[ + 13378, + 13430, + 13442 + ]], + [[ + 13405, + 13431, + 13430 + ]], + [[ + 13369, + 13371, + 13456 + ]], + [[ + 13371, + 13563, + 13556 + ]], + [[ + 13442, + 13456, + 13444 + ]], + [[ + 13371, + 13556, + 13456 + ]], + [[ + 13351, + 13550, + 13350 + ]], + [[ + 13346, + 13493, + 13566 + ]], + [[ + 11657, + 13502, + 3106 + ]], + [[ + 13503, + 13401, + 13440 + ]], + [[ + 13351, + 13344, + 13550 + ]], + [[ + 13345, + 13493, + 13346 + ]], + [[ + 13606, + 13607, + 13599 + ]], + [[ + 13612, + 13613, + 12558 + ]], + [[ + 13614, + 13615, + 13584 + ]], + [[ + 13584, + 1375, + 13582 + ]], + [[ + 13450, + 13477, + 13616 + ]], + [[ + 13477, + 13491, + 13330 + ]], + [[ + 13617, + 13609, + 13618 + ]], + [[ + 13573, + 13570, + 13619 + ]], + [[ + 13507, + 13506, + 13360 + ]], + [[ + 13620, + 13410, + 13412 + ]], + [[ + 13565, + 13537, + 13414 + ]], + [[ + 13349, + 13348, + 13567 + ]], + [[ + 13600, + 13494, + 13496 + ]], + [[ + 13492, + 13551, + 13494 + ]], + [[ + 13355, + 13587, + 13473 + ]], + [[ + 13587, + 13465, + 13474 + ]], + [[ + 13449, + 13490, + 13489 + ]], + [[ + 13449, + 13491, + 13490 + ]], + [[ + 13583, + 13614, + 13584 + ]], + [[ + 13615, + 13621, + 13622 + ]], + [[ + 13334, + 12558, + 13335 + ]], + [[ + 13623, + 13624, + 13337 + ]], + [[ + 13575, + 13625, + 13578 + ]], + [[ + 13548, + 13363, + 13585 + ]], + [[ + 13402, + 13503, + 13443 + ]], + [[ + 13402, + 13401, + 13503 + ]], + [[ + 13626, + 13468, + 13483 + ]], + [[ + 13627, + 13393, + 13558 + ]], + [[ + 13610, + 13592, + 13591 + ]], + [[ + 13610, + 13628, + 13502 + ]], + [[ + 13629, + 13500, + 13451 + ]], + [[ + 13476, + 13475, + 13328 + ]], + [[ + 13468, + 13626, + 13586 + ]], + [[ + 13465, + 13533, + 13466 + ]], + [[ + 13473, + 13587, + 13474 + ]], + [[ + 13355, + 13533, + 13587 + ]], + [[ + 13463, + 13459, + 13416 + ]], + [[ + 13464, + 13558, + 13472 + ]], + [[ + 13372, + 13467, + 13469 + ]], + [[ + 13626, + 13464, + 13466 + ]], + [[ + 13459, + 13467, + 13372 + ]], + [[ + 13459, + 13487, + 13483 + ]], + [[ + 13630, + 13564, + 13595 + ]], + [[ + 13455, + 13454, + 13543 + ]], + [[ + 13469, + 13485, + 13543 + ]], + [[ + 13533, + 13354, + 13486 + ]], + [[ + 13484, + 13631, + 13630 + ]], + [[ + 13632, + 13564, + 13630 + ]], + [[ + 13485, + 13484, + 13543 + ]], + [[ + 13633, + 13595, + 13461 + ]], + [[ + 13436, + 13438, + 13526 + ]], + [[ + 13437, + 13595, + 13438 + ]], + [[ + 1778, + 13360, + 11660 + ]], + [[ + 13361, + 13634, + 13635 + ]], + [[ + 13636, + 13419, + 13418 + ]], + [[ + 13448, + 13394, + 11657 + ]], + [[ + 10000, + 13637, + 1374 + ]], + [[ + 13476, + 13491, + 13477 + ]], + [[ + 13638, + 13619, + 13603 + ]], + [[ + 13604, + 13569, + 13518 + ]], + [[ + 13576, + 13511, + 13561 + ]], + [[ + 13576, + 13639, + 13577 + ]], + [[ + 13640, + 13628, + 13610 + ]], + [[ + 3106, + 13502, + 13628 + ]], + [[ + 13538, + 13436, + 13353 + ]], + [[ + 13436, + 13559, + 13437 + ]], + [[ + 13641, + 13642, + 13643 + ]], + [[ + 13608, + 13612, + 13598 + ]], + [[ + 13644, + 13641, + 13623 + ]], + [[ + 13608, + 13613, + 13612 + ]], + [[ + 13554, + 13556, + 13562 + ]], + [[ + 13445, + 13456, + 13556 + ]], + [[ + 13436, + 13565, + 13559 + ]], + [[ + 13413, + 13528, + 13532 + ]], + [[ + 3106, + 13645, + 3107 + ]], + [[ + 13645, + 13574, + 13609 + ]], + [[ + 13508, + 13433, + 13646 + ]], + [[ + 13508, + 13510, + 13578 + ]], + [[ + 13596, + 13598, + 13612 + ]], + [[ + 13598, + 13599, + 13607 + ]], + [[ + 13647, + 13648, + 13649 + ]], + [[ + 13650, + 13651, + 13343 + ]], + [[ + 13596, + 13652, + 13648 + ]], + [[ + 13651, + 13653, + 12558 + ]], + [[ + 13654, + 13655, + 13656 + ]], + [[ + 13657, + 13658, + 13659 + ]], + [[ + 13539, + 13540, + 13437 + ]], + [[ + 13461, + 13595, + 13540 + ]], + [[ + 13401, + 13441, + 13440 + ]], + [[ + 13555, + 13445, + 13556 + ]], + [[ + 13515, + 13517, + 13562 + ]], + [[ + 13517, + 13555, + 13554 + ]], + [[ + 13660, + 13335, + 13661 + ]], + [[ + 13624, + 13660, + 13661 + ]], + [[ + 13422, + 13426, + 13423 + ]], + [[ + 13421, + 13395, + 13377 + ]], + [[ + 13506, + 13634, + 13361 + ]], + [[ + 13506, + 13419, + 13634 + ]], + [[ + 13478, + 13330, + 13332 + ]], + [[ + 13616, + 13477, + 13330 + ]], + [[ + 13647, + 13656, + 13352 + ]], + [[ + 13654, + 13649, + 13662 + ]], + [[ + 13656, + 13338, + 13663 + ]], + [[ + 13656, + 13655, + 13339 + ]], + [[ + 13664, + 13581, + 13665 + ]], + [[ + 13666, + 1374, + 13637 + ]], + [[ + 13593, + 13560, + 13414 + ]], + [[ + 13593, + 13567, + 13560 + ]], + [[ + 13406, + 13391, + 13471 + ]], + [[ + 13501, + 13409, + 13391 + ]], + [[ + 13521, + 13525, + 13576 + ]], + [[ + 13520, + 13601, + 13525 + ]], + [[ + 11657, + 13503, + 13502 + ]], + [[ + 11657, + 13505, + 13503 + ]], + [[ + 13569, + 13571, + 13572 + ]], + [[ + 13570, + 13591, + 13571 + ]], + [[ + 13427, + 13385, + 13384 + ]], + [[ + 13558, + 13393, + 13385 + ]], + [[ + 13667, + 13596, + 13612 + ]], + [[ + 13597, + 13599, + 13598 + ]], + [[ + 13569, + 13619, + 13570 + ]], + [[ + 13611, + 13573, + 13619 + ]], + [[ + 13523, + 13513, + 13515 + ]], + [[ + 13523, + 13532, + 13561 + ]], + [[ + 13645, + 13640, + 13574 + ]], + [[ + 3106, + 13628, + 13640 + ]], + [[ + 13361, + 13635, + 13376 + ]], + [[ + 13635, + 13419, + 13636 + ]], + [[ + 13668, + 13669, + 13352 + ]], + [[ + 13367, + 3107, + 13368 + ]], + [[ + 13656, + 13663, + 13668 + ]], + [[ + 13670, + 3107, + 13367 + ]], + [[ + 13484, + 13630, + 13544 + ]], + [[ + 13631, + 13632, + 13630 + ]], + [[ + 13671, + 13335, + 13660 + ]], + [[ + 12558, + 13661, + 13335 + ]], + [[ + 13512, + 13516, + 13515 + ]], + [[ + 13439, + 13441, + 13516 + ]], + [[ + 13630, + 13633, + 13544 + ]], + [[ + 13630, + 13595, + 13633 + ]], + [[ + 13633, + 13460, + 13544 + ]], + [[ + 13633, + 13461, + 13460 + ]], + [[ + 13341, + 13672, + 13342 + ]], + [[ + 13648, + 13650, + 13343 + ]], + [[ + 13625, + 13547, + 13434 + ]], + [[ + 13495, + 13494, + 13548 + ]], + [[ + 13360, + 13542, + 13507 + ]], + [[ + 13542, + 13420, + 13507 + ]], + [[ + 13580, + 13542, + 13541 + ]], + [[ + 13580, + 13420, + 13542 + ]], + [[ + 13357, + 13541, + 13358 + ]], + [[ + 13357, + 13535, + 13541 + ]], + [[ + 13345, + 13344, + 13604 + ]], + [[ + 13604, + 13344, + 13602 + ]], + [[ + 13673, + 13360, + 1778 + ]], + [[ + 13506, + 13361, + 13360 + ]], + [[ + 13363, + 13365, + 13585 + ]], + [[ + 13589, + 13591, + 13590 + ]], + [[ + 13373, + 13453, + 13431 + ]], + [[ + 13455, + 13545, + 13369 + ]], + [[ + 13431, + 13453, + 13369 + ]], + [[ + 13373, + 13454, + 13453 + ]], + [[ + 13407, + 13458, + 13457 + ]], + [[ + 13407, + 13487, + 13458 + ]], + [[ + 13450, + 13622, + 13477 + ]], + [[ + 13488, + 13674, + 13615 + ]], + [[ + 13615, + 13622, + 13488 + ]], + [[ + 13622, + 13621, + 13477 + ]], + [[ + 13669, + 13367, + 13366 + ]], + [[ + 13638, + 13611, + 13619 + ]], + [[ + 13570, + 13610, + 13591 + ]], + [[ + 13574, + 13640, + 13610 + ]], + [[ + 13649, + 13342, + 13672 + ]], + [[ + 13648, + 13343, + 13342 + ]], + [[ + 13459, + 13483, + 13467 + ]], + [[ + 13487, + 13407, + 13470 + ]], + [[ + 13627, + 13464, + 13626 + ]], + [[ + 13466, + 13586, + 13626 + ]], + [[ + 13594, + 13600, + 13496 + ]], + [[ + 13566, + 13493, + 13600 + ]], + [[ + 13601, + 13639, + 13576 + ]], + [[ + 13601, + 13594, + 13579 + ]], + [[ + 13401, + 13555, + 13441 + ]], + [[ + 13401, + 13445, + 13555 + ]], + [[ + 13538, + 13565, + 13436 + ]], + [[ + 13414, + 13413, + 13559 + ]], + [[ + 13618, + 13609, + 13611 + ]], + [[ + 13617, + 13645, + 13609 + ]], + [[ + 13586, + 13486, + 13485 + ]], + [[ + 13354, + 13557, + 13486 + ]], + [[ + 13359, + 13358, + 1778 + ]], + [[ + 13541, + 13360, + 13673 + ]], + [[ + 1619, + 13584, + 13674 + ]], + [[ + 1619, + 1375, + 13584 + ]], + [[ + 13656, + 13668, + 13352 + ]], + [[ + 13663, + 13669, + 13668 + ]], + [[ + 13337, + 13675, + 1369 + ]], + [[ + 13613, + 13661, + 12558 + ]], + [[ + 13473, + 13382, + 7803 + ]], + [[ + 13473, + 13389, + 13382 + ]], + [[ + 13584, + 13615, + 13674 + ]], + [[ + 13621, + 13475, + 13477 + ]], + [[ + 13556, + 13563, + 13562 + ]], + [[ + 13370, + 13524, + 13563 + ]], + [[ + 13676, + 13660, + 13624 + ]], + [[ + 13676, + 13671, + 13660 + ]], + [[ + 13512, + 13519, + 13516 + ]], + [[ + 13509, + 13440, + 13439 + ]], + [[ + 13510, + 13519, + 13549 + ]], + [[ + 13509, + 13439, + 13519 + ]], + [[ + 13622, + 13450, + 13488 + ]], + [[ + 13616, + 13629, + 13450 + ]], + [[ + 3107, + 13645, + 13617 + ]], + [[ + 3106, + 13640, + 13645 + ]], + [[ + 13539, + 13522, + 13461 + ]], + [[ + 13539, + 13413, + 13522 + ]], + [[ + 13646, + 13514, + 13508 + ]], + [[ + 13553, + 13588, + 13552 + ]], + [[ + 13646, + 13553, + 13514 + ]], + [[ + 13646, + 13433, + 13553 + ]], + [[ + 13677, + 13530, + 13678 + ]], + [[ + 13334, + 13679, + 12558 + ]], + [[ + 13537, + 13349, + 13593 + ]], + [[ + 13350, + 13550, + 13348 + ]], + [[ + 13452, + 13451, + 13500 + ]], + [[ + 13629, + 13330, + 13500 + ]], + [[ + 13674, + 13452, + 1619 + ]], + [[ + 13674, + 13488, + 13452 + ]], + [[ + 13543, + 13484, + 13544 + ]], + [[ + 13486, + 13631, + 13484 + ]], + [[ + 13413, + 13415, + 13528 + ]], + [[ + 13560, + 13520, + 13415 + ]], + [[ + 13670, + 13338, + 13340 + ]], + [[ + 13338, + 13656, + 13339 + ]], + [[ + 13468, + 13586, + 13485 + ]], + [[ + 13466, + 13533, + 13586 + ]], + [[ + 13511, + 13577, + 13549 + ]], + [[ + 13639, + 13680, + 13577 + ]], + [[ + 13656, + 13647, + 13654 + ]], + [[ + 13648, + 13342, + 13649 + ]], + [[ + 13365, + 13589, + 13552 + ]], + [[ + 13591, + 13592, + 13590 + ]], + [[ + 13364, + 13589, + 13365 + ]], + [[ + 13364, + 13591, + 13589 + ]], + [[ + 13666, + 13637, + 13476 + ]], + [[ + 10000, + 13491, + 13476 + ]], + [[ + 3107, + 13681, + 13368 + ]], + [[ + 3107, + 13617, + 13618 + ]], + [[ + 13643, + 13682, + 13336 + ]], + [[ + 13678, + 13679, + 13334 + ]], + [[ + 13669, + 13366, + 13352 + ]], + [[ + 13368, + 13681, + 13351 + ]], + [[ + 13366, + 13351, + 13352 + ]], + [[ + 13366, + 13368, + 13351 + ]], + [[ + 13550, + 13344, + 13346 + ]], + [[ + 13602, + 13683, + 13684 + ]], + [[ + 13672, + 13662, + 13649 + ]], + [[ + 13339, + 13655, + 13685 + ]], + [[ + 13678, + 13530, + 13679 + ]], + [[ + 13686, + 13478, + 13679 + ]], + [[ + 13687, + 13688, + 13529 + ]], + [[ + 13689, + 13679, + 13529 + ]], + [[ + 13687, + 13531, + 13690 + ]], + [[ + 13687, + 13529, + 13531 + ]], + [[ + 12553, + 13679, + 13478 + ]], + [[ + 12553, + 12558, + 13679 + ]], + [[ + 13534, + 13535, + 13400 + ]], + [[ + 13580, + 13541, + 13535 + ]], + [[ + 13581, + 13583, + 13582 + ]], + [[ + 13475, + 13614, + 13583 + ]], + [[ + 13691, + 13581, + 1375 + ]], + [[ + 13664, + 13475, + 13583 + ]], + [[ + 13436, + 13526, + 13353 + ]], + [[ + 13527, + 13362, + 7803 + ]], + [[ + 13438, + 13527, + 13526 + ]], + [[ + 13564, + 13632, + 13527 + ]], + [[ + 13623, + 13676, + 13624 + ]], + [[ + 13671, + 13692, + 13335 + ]], + [[ + 13623, + 13671, + 13676 + ]], + [[ + 13692, + 13336, + 13335 + ]], + [[ + 13661, + 13693, + 13624 + ]], + [[ + 13644, + 13694, + 13642 + ]], + [[ + 13361, + 13568, + 11660 + ]], + [[ + 13361, + 13376, + 13568 + ]], + [[ + 11657, + 13447, + 13448 + ]], + [[ + 13568, + 13376, + 13375 + ]], + [[ + 13568, + 13375, + 13424 + ]], + [[ + 13394, + 13505, + 11657 + ]], + [[ + 13377, + 13394, + 13375 + ]], + [[ + 13377, + 13395, + 13394 + ]], + [[ + 11649, + 13447, + 11657 + ]], + [[ + 13424, + 13394, + 13448 + ]], + [[ + 13662, + 13685, + 13654 + ]], + [[ + 13695, + 13659, + 13658 + ]], + [[ + 13614, + 13621, + 13615 + ]], + [[ + 13614, + 13475, + 13621 + ]], + [[ + 13520, + 13567, + 13594 + ]], + [[ + 13593, + 13349, + 13567 + ]], + [[ + 13520, + 13594, + 13601 + ]], + [[ + 13567, + 13566, + 13594 + ]], + [[ + 13376, + 13635, + 13377 + ]], + [[ + 13634, + 13419, + 13635 + ]], + [[ + 13531, + 13677, + 13690 + ]], + [[ + 13682, + 13642, + 13694 + ]], + [[ + 13677, + 13682, + 13694 + ]], + [[ + 13334, + 13336, + 13682 + ]], + [[ + 13596, + 13647, + 13352 + ]], + [[ + 13596, + 13648, + 13647 + ]], + [[ + 1369, + 13596, + 13352 + ]], + [[ + 1369, + 13597, + 13596 + ]], + [[ + 13653, + 13667, + 13612 + ]], + [[ + 13652, + 13596, + 13667 + ]], + [[ + 12558, + 13653, + 13612 + ]], + [[ + 12558, + 13343, + 13651 + ]], + [[ + 13653, + 13652, + 13667 + ]], + [[ + 13650, + 13648, + 13652 + ]], + [[ + 13649, + 13654, + 13647 + ]], + [[ + 13685, + 13655, + 13654 + ]], + [[ + 13365, + 13552, + 13588 + ]], + [[ + 13502, + 13440, + 13552 + ]], + [[ + 13327, + 13666, + 13328 + ]], + [[ + 13637, + 10000, + 13476 + ]], + [[ + 13328, + 13666, + 13476 + ]], + [[ + 13327, + 1374, + 13666 + ]], + [[ + 13557, + 13632, + 13631 + ]], + [[ + 13362, + 13527, + 13632 + ]], + [[ + 13681, + 13618, + 13351 + ]], + [[ + 13681, + 3107, + 13618 + ]], + [[ + 13663, + 13367, + 13669 + ]], + [[ + 13670, + 3111, + 3107 + ]], + [[ + 13663, + 13670, + 13367 + ]], + [[ + 13663, + 13338, + 13670 + ]], + [[ + 13670, + 13657, + 3111 + ]], + [[ + 13339, + 13685, + 13658 + ]], + [[ + 13695, + 13658, + 13685 + ]], + [[ + 13340, + 13339, + 13658 + ]], + [[ + 13687, + 13696, + 13688 + ]], + [[ + 1619, + 13500, + 13686 + ]], + [[ + 13690, + 13644, + 1619 + ]], + [[ + 13644, + 13623, + 13337 + ]], + [[ + 13337, + 13693, + 13613 + ]], + [[ + 13337, + 13624, + 13693 + ]], + [[ + 1619, + 13644, + 13337 + ]], + [[ + 13690, + 13694, + 13644 + ]], + [[ + 13465, + 13464, + 13472 + ]], + [[ + 13626, + 13483, + 13627 + ]], + [[ + 1374, + 13329, + 1375 + ]], + [[ + 13328, + 13475, + 13665 + ]], + [[ + 13381, + 13534, + 13400 + ]], + [[ + 13381, + 13399, + 13534 + ]], + [[ + 13464, + 13627, + 13558 + ]], + [[ + 13483, + 13487, + 13470 + ]], + [[ + 13627, + 13470, + 13393 + ]], + [[ + 13627, + 13483, + 13470 + ]], + [[ + 13652, + 13651, + 13650 + ]], + [[ + 13652, + 13653, + 13651 + ]], + [[ + 1619, + 13687, + 13690 + ]], + [[ + 1619, + 13696, + 13687 + ]], + [[ + 13577, + 13680, + 13575 + ]], + [[ + 13579, + 13495, + 13547 + ]], + [[ + 13562, + 13517, + 13554 + ]], + [[ + 13441, + 13555, + 13517 + ]], + [[ + 13632, + 13557, + 13362 + ]], + [[ + 13631, + 13486, + 13557 + ]], + [[ + 13684, + 13618, + 13638 + ]], + [[ + 13618, + 13611, + 13638 + ]], + [[ + 13683, + 13602, + 13344 + ]], + [[ + 13638, + 13603, + 13602 + ]], + [[ + 13351, + 13683, + 13344 + ]], + [[ + 13351, + 13618, + 13684 + ]], + [[ + 3111, + 13659, + 12558 + ]], + [[ + 3111, + 13657, + 13659 + ]], + [[ + 13659, + 13697, + 12558 + ]], + [[ + 13659, + 13695, + 13697 + ]], + [[ + 12558, + 13341, + 13343 + ]], + [[ + 13697, + 13662, + 13672 + ]], + [[ + 13697, + 13341, + 12558 + ]], + [[ + 13697, + 13672, + 13341 + ]], + [[ + 13662, + 13695, + 13685 + ]], + [[ + 13662, + 13697, + 13695 + ]], + [[ + 13639, + 13579, + 13680 + ]], + [[ + 13639, + 13601, + 13579 + ]], + [[ + 13696, + 13689, + 13688 + ]], + [[ + 13696, + 1619, + 13686 + ]], + [[ + 13605, + 13691, + 1375 + ]], + [[ + 13605, + 13665, + 13691 + ]], + [[ + 13507, + 13420, + 13419 + ]], + [[ + 13580, + 13534, + 13410 + ]], + [[ + 13623, + 13641, + 13671 + ]], + [[ + 13641, + 13643, + 13692 + ]], + [[ + 13671, + 13641, + 13692 + ]], + [[ + 13644, + 13642, + 13641 + ]], + [[ + 13369, + 13432, + 13431 + ]], + [[ + 13369, + 13456, + 13432 + ]], + [[ + 13414, + 13559, + 13565 + ]], + [[ + 13413, + 13539, + 13559 + ]], + [[ + 13432, + 13442, + 13430 + ]], + [[ + 13444, + 13404, + 13442 + ]], + [[ + 13386, + 13417, + 13481 + ]], + [[ + 13443, + 13503, + 13497 + ]], + [[ + 13580, + 13410, + 13420 + ]], + [[ + 13620, + 13425, + 13422 + ]], + [[ + 13420, + 13410, + 13418 + ]], + [[ + 13534, + 13411, + 13410 + ]], + [[ + 13499, + 13498, + 13396 + ]], + [[ + 13503, + 13505, + 13504 + ]], + [[ + 13690, + 13677, + 13694 + ]], + [[ + 13531, + 13530, + 13677 + ]], + [[ + 13508, + 13578, + 13433 + ]], + [[ + 13575, + 13680, + 13625 + ]], + [[ + 13689, + 13529, + 13688 + ]], + [[ + 13679, + 13530, + 13529 + ]], + [[ + 13686, + 13500, + 13478 + ]], + [[ + 1619, + 13452, + 13500 + ]], + [[ + 13682, + 13678, + 13334 + ]], + [[ + 13682, + 13677, + 13678 + ]], + [[ + 13551, + 13569, + 13572 + ]], + [[ + 13603, + 13619, + 13569 + ]], + [[ + 13578, + 13625, + 13434 + ]], + [[ + 13680, + 13579, + 13547 + ]], + [[ + 13434, + 13547, + 13548 + ]], + [[ + 13625, + 13680, + 13547 + ]], + [[ + 13569, + 13604, + 13603 + ]], + [[ + 13518, + 13345, + 13604 + ]], + [[ + 13602, + 13684, + 13638 + ]], + [[ + 13683, + 13351, + 13684 + ]], + [[ + 13536, + 13349, + 13537 + ]], + [[ + 13536, + 11610, + 13349 + ]], + [[ + 13657, + 13340, + 13658 + ]], + [[ + 13657, + 13670, + 13340 + ]], + [[ + 11660, + 13447, + 11649 + ]], + [[ + 11660, + 13424, + 13447 + ]], + [[ + 13413, + 13532, + 13522 + ]], + [[ + 13528, + 13521, + 13561 + ]], + [[ + 13513, + 13561, + 13511 + ]], + [[ + 13532, + 13528, + 13561 + ]], + [[ + 13689, + 13686, + 13679 + ]], + [[ + 13689, + 13696, + 13686 + ]], + [[ + 1375, + 13329, + 13605 + ]], + [[ + 1374, + 13327, + 13329 + ]], + [[ + 13418, + 13698, + 13636 + ]], + [[ + 13418, + 13410, + 13620 + ]], + [[ + 13620, + 13422, + 13698 + ]], + [[ + 13425, + 13426, + 13422 + ]], + [[ + 13422, + 13636, + 13698 + ]], + [[ + 13421, + 13635, + 13636 + ]], + [[ + 13418, + 13620, + 13698 + ]], + [[ + 13412, + 13425, + 13620 + ]], + [[ + 13635, + 13421, + 13377 + ]], + [[ + 13636, + 13422, + 13421 + ]], + [[ + 13546, + 13504, + 13396 + ]], + [[ + 13546, + 13503, + 13504 + ]], + [[ + 13691, + 13665, + 13581 + ]], + [[ + 13605, + 13328, + 13665 + ]], + [[ + 13581, + 13664, + 13583 + ]], + [[ + 13665, + 13475, + 13664 + ]], + [[ + 13358, + 13673, + 1778 + ]], + [[ + 13358, + 13541, + 13673 + ]], + [[ + 13498, + 13497, + 13546 + ]], + [[ + 13417, + 13443, + 13497 + ]], + [[ + 13396, + 13498, + 13546 + ]], + [[ + 13499, + 13479, + 13498 + ]], + [[ + 13692, + 13643, + 13336 + ]], + [[ + 13642, + 13682, + 13643 + ]], + [[ + 13450, + 13629, + 13451 + ]], + [[ + 13616, + 13330, + 13629 + ]], + [[ + 13675, + 13606, + 1369 + ]], + [[ + 13613, + 13693, + 13661 + ]], + [[ + 13607, + 13608, + 13598 + ]], + [[ + 13606, + 13675, + 13613 + ]], + [[ + 13606, + 13613, + 13608 + ]], + [[ + 13675, + 13337, + 13613 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e44faa0-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1af49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13699, + 13700, + 13701 + ]], + [[ + 13699, + 13701, + 13702 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e4548ff-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb7049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13703, + 9877, + 9881 + ]], + [[ + 9864, + 13704, + 13705 + ]], + [[ + 13705, + 13704, + 13703 + ]], + [[ + 9864, + 9877, + 13704 + ]], + [[ + 9865, + 13705, + 9881 + ]], + [[ + 9865, + 9864, + 13705 + ]], + [[ + 13705, + 13703, + 9881 + ]], + [[ + 13704, + 9877, + 13703 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e45490b-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13706, + 13707, + 13708 + ]], + [[ + 13709, + 13710, + 13711 + ]], + [[ + 13712, + 13710, + 13713 + ]], + [[ + 13714, + 13715, + 13716 + ]], + [[ + 13717, + 13718, + 13719 + ]], + [[ + 13720, + 13709, + 13711 + ]], + [[ + 13721, + 13722, + 13723 + ]], + [[ + 13724, + 13725, + 13726 + ]], + [[ + 13715, + 13727, + 13728 + ]], + [[ + 13729, + 13730, + 13713 + ]], + [[ + 13731, + 13732, + 13729 + ]], + [[ + 13733, + 13734, + 13706 + ]], + [[ + 13735, + 13732, + 13723 + ]], + [[ + 13732, + 13724, + 13736 + ]], + [[ + 13737, + 13731, + 13738 + ]], + [[ + 13739, + 13733, + 13706 + ]], + [[ + 13708, + 13740, + 13741 + ]], + [[ + 13723, + 13732, + 13731 + ]], + [[ + 13731, + 13729, + 13709 + ]], + [[ + 13736, + 13727, + 13713 + ]], + [[ + 13709, + 13729, + 13713 + ]], + [[ + 13729, + 13732, + 13730 + ]], + [[ + 13714, + 13716, + 13734 + ]], + [[ + 13725, + 13707, + 13716 + ]], + [[ + 13709, + 13713, + 13710 + ]], + [[ + 13734, + 13707, + 13706 + ]], + [[ + 13724, + 13726, + 13727 + ]], + [[ + 13726, + 13716, + 13728 + ]], + [[ + 13742, + 13743, + 13744 + ]], + [[ + 13713, + 13727, + 13715 + ]], + [[ + 13732, + 13736, + 13730 + ]], + [[ + 13732, + 13745, + 13724 + ]], + [[ + 13736, + 13724, + 13727 + ]], + [[ + 13746, + 13725, + 13724 + ]], + [[ + 13717, + 13719, + 13747 + ]], + [[ + 13711, + 13710, + 13719 + ]], + [[ + 13741, + 13748, + 13749 + ]], + [[ + 13738, + 13709, + 13720 + ]], + [[ + 13716, + 13715, + 13728 + ]], + [[ + 13743, + 13713, + 13715 + ]], + [[ + 13712, + 13742, + 13744 + ]], + [[ + 13713, + 13743, + 13742 + ]], + [[ + 13731, + 13750, + 13721 + ]], + [[ + 13745, + 13732, + 13735 + ]], + [[ + 13731, + 13748, + 13750 + ]], + [[ + 13751, + 13746, + 13745 + ]], + [[ + 13708, + 13741, + 13752 + ]], + [[ + 13749, + 13753, + 13754 + ]], + [[ + 13740, + 13722, + 13721 + ]], + [[ + 13722, + 13735, + 13723 + ]], + [[ + 13748, + 13741, + 13740 + ]], + [[ + 13745, + 13735, + 13722 + ]], + [[ + 13712, + 13713, + 13742 + ]], + [[ + 13730, + 13736, + 13713 + ]], + [[ + 13719, + 13720, + 13711 + ]], + [[ + 13738, + 13731, + 13709 + ]], + [[ + 13710, + 13747, + 13719 + ]], + [[ + 13744, + 13743, + 13755 + ]], + [[ + 13747, + 13734, + 13733 + ]], + [[ + 13716, + 13707, + 13734 + ]], + [[ + 13727, + 13726, + 13728 + ]], + [[ + 13725, + 13716, + 13726 + ]], + [[ + 13734, + 13747, + 13744 + ]], + [[ + 13733, + 13717, + 13747 + ]], + [[ + 13747, + 13712, + 13744 + ]], + [[ + 13747, + 13710, + 13712 + ]], + [[ + 13731, + 13721, + 13723 + ]], + [[ + 13750, + 13748, + 13740 + ]], + [[ + 13750, + 13740, + 13721 + ]], + [[ + 13708, + 13746, + 13751 + ]], + [[ + 13741, + 13754, + 13752 + ]], + [[ + 13718, + 13720, + 13719 + ]], + [[ + 13741, + 13749, + 13754 + ]], + [[ + 13748, + 13731, + 13749 + ]], + [[ + 13754, + 13739, + 13752 + ]], + [[ + 13756, + 13753, + 13757 + ]], + [[ + 13739, + 13717, + 13733 + ]], + [[ + 13739, + 13758, + 13717 + ]], + [[ + 13758, + 13718, + 13717 + ]], + [[ + 13756, + 13738, + 13720 + ]], + [[ + 13751, + 13745, + 13722 + ]], + [[ + 13746, + 13724, + 13745 + ]], + [[ + 13744, + 13755, + 13734 + ]], + [[ + 13743, + 13715, + 13755 + ]], + [[ + 13754, + 13758, + 13739 + ]], + [[ + 13754, + 13753, + 13758 + ]], + [[ + 13752, + 13706, + 13708 + ]], + [[ + 13752, + 13739, + 13706 + ]], + [[ + 13740, + 13751, + 13722 + ]], + [[ + 13740, + 13708, + 13751 + ]], + [[ + 13718, + 13756, + 13720 + ]], + [[ + 13737, + 13757, + 13731 + ]], + [[ + 13758, + 13756, + 13718 + ]], + [[ + 13758, + 13753, + 13756 + ]], + [[ + 13755, + 13714, + 13734 + ]], + [[ + 13755, + 13715, + 13714 + ]], + [[ + 13756, + 13737, + 13738 + ]], + [[ + 13757, + 13749, + 13731 + ]], + [[ + 13756, + 13757, + 13737 + ]], + [[ + 13753, + 13749, + 13757 + ]], + [[ + 13759, + 13746, + 13708 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e46330a-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef9c0f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13760, + 13761, + 13762 + ]], + [[ + 13763, + 13764, + 13765 + ]], + [[ + 13766, + 13767, + 13768 + ]], + [[ + 13768, + 13769, + 13770 + ]], + [[ + 13771, + 13772, + 13766 + ]], + [[ + 13773, + 13774, + 13775 + ]], + [[ + 13776, + 13777, + 13778 + ]], + [[ + 13762, + 13778, + 13760 + ]], + [[ + 13779, + 13780, + 13781 + ]], + [[ + 13782, + 13783, + 13761 + ]], + [[ + 13784, + 13785, + 13781 + ]], + [[ + 13786, + 13787, + 13788 + ]], + [[ + 13789, + 13790, + 13791 + ]], + [[ + 13792, + 13793, + 13794 + ]], + [[ + 13769, + 13788, + 13777 + ]], + [[ + 13795, + 13796, + 13797 + ]], + [[ + 13783, + 13770, + 13769 + ]], + [[ + 13798, + 13797, + 13799 + ]], + [[ + 13786, + 13788, + 13769 + ]], + [[ + 13787, + 13800, + 13777 + ]], + [[ + 13782, + 13801, + 13802 + ]], + [[ + 13771, + 13768, + 13770 + ]], + [[ + 13803, + 13804, + 13805 + ]], + [[ + 13772, + 13771, + 13806 + ]], + [[ + 13807, + 13789, + 13791 + ]], + [[ + 13805, + 13794, + 13793 + ]], + [[ + 13808, + 13809, + 13810 + ]], + [[ + 13798, + 13799, + 13811 + ]], + [[ + 13810, + 13809, + 13774 + ]], + [[ + 13811, + 13792, + 13812 + ]], + [[ + 13780, + 13813, + 13765 + ]], + [[ + 13814, + 13815, + 13805 + ]], + [[ + 13791, + 13816, + 13807 + ]], + [[ + 13791, + 13790, + 13816 + ]], + [[ + 13817, + 13807, + 13765 + ]], + [[ + 13816, + 13790, + 13763 + ]], + [[ + 13779, + 13815, + 13813 + ]], + [[ + 13779, + 13767, + 13766 + ]], + [[ + 13784, + 13780, + 13765 + ]], + [[ + 13784, + 13781, + 13780 + ]], + [[ + 13789, + 13817, + 13818 + ]], + [[ + 13818, + 13817, + 13813 + ]], + [[ + 13789, + 13818, + 13814 + ]], + [[ + 13813, + 13780, + 13779 + ]], + [[ + 13794, + 13805, + 13772 + ]], + [[ + 13779, + 13781, + 13786 + ]], + [[ + 13819, + 13815, + 13779 + ]], + [[ + 13818, + 13813, + 13815 + ]], + [[ + 13808, + 13804, + 13809 + ]], + [[ + 13805, + 13819, + 13772 + ]], + [[ + 13813, + 13817, + 13765 + ]], + [[ + 13789, + 13807, + 13817 + ]], + [[ + 13800, + 13796, + 13777 + ]], + [[ + 13800, + 13797, + 13796 + ]], + [[ + 13776, + 13778, + 13762 + ]], + [[ + 13777, + 13796, + 13778 + ]], + [[ + 13775, + 13774, + 13809 + ]], + [[ + 13820, + 13803, + 13811 + ]], + [[ + 13810, + 13774, + 13773 + ]], + [[ + 13809, + 13820, + 13775 + ]], + [[ + 13821, + 13799, + 13797 + ]], + [[ + 13821, + 13820, + 13799 + ]], + [[ + 13797, + 13798, + 13795 + ]], + [[ + 13799, + 13820, + 13811 + ]], + [[ + 13822, + 13795, + 13801 + ]], + [[ + 13782, + 13812, + 13770 + ]], + [[ + 13802, + 13801, + 13795 + ]], + [[ + 13760, + 13778, + 13822 + ]], + [[ + 13823, + 13822, + 13778 + ]], + [[ + 13823, + 13795, + 13822 + ]], + [[ + 13822, + 13801, + 13760 + ]], + [[ + 13795, + 13798, + 13802 + ]], + [[ + 13764, + 13821, + 13797 + ]], + [[ + 13764, + 13773, + 13821 + ]], + [[ + 13821, + 13775, + 13820 + ]], + [[ + 13821, + 13773, + 13775 + ]], + [[ + 13803, + 13805, + 13793 + ]], + [[ + 13804, + 13814, + 13805 + ]], + [[ + 13802, + 13811, + 13812 + ]], + [[ + 13820, + 13809, + 13803 + ]], + [[ + 13783, + 13776, + 13762 + ]], + [[ + 13769, + 13777, + 13776 + ]], + [[ + 13785, + 13786, + 13781 + ]], + [[ + 13785, + 13824, + 13786 + ]], + [[ + 13762, + 13761, + 13783 + ]], + [[ + 13760, + 13801, + 13761 + ]], + [[ + 13811, + 13802, + 13798 + ]], + [[ + 13812, + 13782, + 13802 + ]], + [[ + 13812, + 13792, + 13794 + ]], + [[ + 13811, + 13803, + 13792 + ]], + [[ + 13800, + 13784, + 13765 + ]], + [[ + 13800, + 13785, + 13784 + ]], + [[ + 13806, + 13771, + 13770 + ]], + [[ + 13768, + 13767, + 13769 + ]], + [[ + 13764, + 13808, + 13773 + ]], + [[ + 13808, + 13763, + 13790 + ]], + [[ + 13773, + 13808, + 13810 + ]], + [[ + 13764, + 13763, + 13808 + ]], + [[ + 13807, + 13763, + 13765 + ]], + [[ + 13807, + 13816, + 13763 + ]], + [[ + 13786, + 13824, + 13787 + ]], + [[ + 13785, + 13800, + 13824 + ]], + [[ + 13812, + 13806, + 13770 + ]], + [[ + 13772, + 13825, + 13766 + ]], + [[ + 13794, + 13806, + 13812 + ]], + [[ + 13794, + 13772, + 13806 + ]], + [[ + 13788, + 13787, + 13777 + ]], + [[ + 13824, + 13800, + 13787 + ]], + [[ + 13783, + 13782, + 13770 + ]], + [[ + 13761, + 13801, + 13782 + ]], + [[ + 13789, + 13814, + 13790 + ]], + [[ + 13818, + 13815, + 13814 + ]], + [[ + 13783, + 13769, + 13776 + ]], + [[ + 13767, + 13786, + 13769 + ]], + [[ + 13796, + 13823, + 13778 + ]], + [[ + 13796, + 13795, + 13823 + ]], + [[ + 13771, + 13766, + 13768 + ]], + [[ + 13825, + 13779, + 13766 + ]], + [[ + 13792, + 13803, + 13793 + ]], + [[ + 13804, + 13790, + 13814 + ]], + [[ + 13809, + 13804, + 13803 + ]], + [[ + 13808, + 13790, + 13804 + ]], + [[ + 13772, + 13819, + 13825 + ]], + [[ + 13805, + 13815, + 13819 + ]], + [[ + 13767, + 13779, + 13786 + ]], + [[ + 13825, + 13819, + 13779 + ]], + [[ + 13800, + 13826, + 13797 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e47e113-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef9c0e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13827, + 13828, + 13829 + ]], + [[ + 13830, + 13831, + 13832 + ]], + [[ + 13833, + 13834, + 13835 + ]], + [[ + 13836, + 13837, + 13838 + ]], + [[ + 13839, + 13840, + 13841 + ]], + [[ + 13834, + 13842, + 13843 + ]], + [[ + 13844, + 13845, + 13846 + ]], + [[ + 13833, + 13847, + 13834 + ]], + [[ + 13848, + 13847, + 13849 + ]], + [[ + 13842, + 13834, + 13847 + ]], + [[ + 13850, + 13844, + 13851 + ]], + [[ + 13845, + 13852, + 13846 + ]], + [[ + 13853, + 13854, + 13831 + ]], + [[ + 13846, + 13855, + 13839 + ]], + [[ + 13856, + 13857, + 13858 + ]], + [[ + 13859, + 13860, + 13857 + ]], + [[ + 13856, + 13859, + 13857 + ]], + [[ + 13861, + 13839, + 13841 + ]], + [[ + 13852, + 13855, + 13846 + ]], + [[ + 13849, + 13847, + 13833 + ]], + [[ + 13862, + 13863, + 13829 + ]], + [[ + 13864, + 13865, + 13855 + ]], + [[ + 13857, + 13854, + 13853 + ]], + [[ + 13860, + 13859, + 13856 + ]], + [[ + 13866, + 13841, + 13867 + ]], + [[ + 13855, + 13865, + 13868 + ]], + [[ + 13853, + 13869, + 13827 + ]], + [[ + 13860, + 13854, + 13857 + ]], + [[ + 13870, + 13867, + 13840 + ]], + [[ + 13830, + 13871, + 13831 + ]], + [[ + 13871, + 13872, + 13873 + ]], + [[ + 13873, + 13869, + 13831 + ]], + [[ + 13874, + 13875, + 13876 + ]], + [[ + 13877, + 13869, + 13873 + ]], + [[ + 13840, + 13878, + 13879 + ]], + [[ + 13880, + 13881, + 13848 + ]], + [[ + 13835, + 13843, + 13882 + ]], + [[ + 13883, + 13867, + 13870 + ]], + [[ + 13882, + 13876, + 13884 + ]], + [[ + 13885, + 13872, + 13886 + ]], + [[ + 13887, + 13852, + 13845 + ]], + [[ + 13863, + 13864, + 13852 + ]], + [[ + 13882, + 13884, + 13849 + ]], + [[ + 13848, + 13862, + 13842 + ]], + [[ + 13879, + 13870, + 13840 + ]], + [[ + 13885, + 13875, + 13874 + ]], + [[ + 13888, + 13837, + 13872 + ]], + [[ + 13889, + 13828, + 13877 + ]], + [[ + 13874, + 13890, + 13872 + ]], + [[ + 13872, + 13877, + 13873 + ]], + [[ + 13880, + 13868, + 13881 + ]], + [[ + 13855, + 13852, + 13864 + ]], + [[ + 13891, + 13864, + 13863 + ]], + [[ + 13865, + 13881, + 13868 + ]], + [[ + 13871, + 13886, + 13872 + ]], + [[ + 13836, + 13889, + 13877 + ]], + [[ + 13892, + 13837, + 13888 + ]], + [[ + 13836, + 13877, + 13872 + ]], + [[ + 13870, + 13886, + 13883 + ]], + [[ + 13870, + 13879, + 13893 + ]], + [[ + 13830, + 13832, + 13866 + ]], + [[ + 13831, + 13854, + 13832 + ]], + [[ + 13839, + 13878, + 13840 + ]], + [[ + 13893, + 13886, + 13870 + ]], + [[ + 13843, + 13894, + 13882 + ]], + [[ + 13895, + 13896, + 13889 + ]], + [[ + 13837, + 13836, + 13872 + ]], + [[ + 13828, + 13896, + 13829 + ]], + [[ + 13884, + 13876, + 13875 + ]], + [[ + 13892, + 13888, + 13897 + ]], + [[ + 13833, + 13882, + 13849 + ]], + [[ + 13875, + 13898, + 13884 + ]], + [[ + 13834, + 13843, + 13835 + ]], + [[ + 13842, + 13894, + 13843 + ]], + [[ + 13853, + 13827, + 13829 + ]], + [[ + 13869, + 13877, + 13827 + ]], + [[ + 13882, + 13892, + 13876 + ]], + [[ + 13837, + 13895, + 13838 + ]], + [[ + 13880, + 13899, + 13868 + ]], + [[ + 13900, + 13901, + 13878 + ]], + [[ + 13868, + 13878, + 13855 + ]], + [[ + 13878, + 13901, + 13879 + ]], + [[ + 13855, + 13878, + 13839 + ]], + [[ + 13901, + 13884, + 13898 + ]], + [[ + 13868, + 13900, + 13878 + ]], + [[ + 13868, + 13899, + 13900 + ]], + [[ + 13879, + 13901, + 13898 + ]], + [[ + 13900, + 13884, + 13901 + ]], + [[ + 13876, + 13897, + 13890 + ]], + [[ + 13876, + 13892, + 13897 + ]], + [[ + 13858, + 13853, + 13829 + ]], + [[ + 13831, + 13869, + 13853 + ]], + [[ + 13884, + 13899, + 13849 + ]], + [[ + 13884, + 13900, + 13899 + ]], + [[ + 13863, + 13887, + 13829 + ]], + [[ + 13863, + 13852, + 13887 + ]], + [[ + 13835, + 13882, + 13833 + ]], + [[ + 13894, + 13892, + 13882 + ]], + [[ + 13856, + 13851, + 13860 + ]], + [[ + 13846, + 13839, + 13861 + ]], + [[ + 13887, + 13850, + 13829 + ]], + [[ + 13887, + 13845, + 13844 + ]], + [[ + 13862, + 13891, + 13863 + ]], + [[ + 13891, + 13902, + 13865 + ]], + [[ + 13891, + 13865, + 13864 + ]], + [[ + 13891, + 13862, + 13902 + ]], + [[ + 13867, + 13841, + 13840 + ]], + [[ + 13866, + 13854, + 13861 + ]], + [[ + 13849, + 13880, + 13848 + ]], + [[ + 13849, + 13899, + 13880 + ]], + [[ + 13866, + 13861, + 13841 + ]], + [[ + 13851, + 13846, + 13861 + ]], + [[ + 13842, + 13895, + 13894 + ]], + [[ + 13842, + 13896, + 13895 + ]], + [[ + 13894, + 13837, + 13892 + ]], + [[ + 13894, + 13895, + 13837 + ]], + [[ + 13838, + 13889, + 13836 + ]], + [[ + 13838, + 13895, + 13889 + ]], + [[ + 13903, + 13858, + 13829 + ]], + [[ + 13857, + 13853, + 13858 + ]], + [[ + 13890, + 13874, + 13876 + ]], + [[ + 13885, + 13904, + 13875 + ]], + [[ + 13848, + 13902, + 13862 + ]], + [[ + 13881, + 13865, + 13902 + ]], + [[ + 13831, + 13871, + 13873 + ]], + [[ + 13883, + 13886, + 13871 + ]], + [[ + 13898, + 13893, + 13879 + ]], + [[ + 13898, + 13875, + 13904 + ]], + [[ + 13861, + 13860, + 13851 + ]], + [[ + 13861, + 13854, + 13860 + ]], + [[ + 13883, + 13830, + 13867 + ]], + [[ + 13883, + 13871, + 13830 + ]], + [[ + 13851, + 13844, + 13846 + ]], + [[ + 13850, + 13887, + 13844 + ]], + [[ + 13830, + 13866, + 13867 + ]], + [[ + 13832, + 13854, + 13866 + ]], + [[ + 13847, + 13848, + 13842 + ]], + [[ + 13881, + 13902, + 13848 + ]], + [[ + 13888, + 13890, + 13897 + ]], + [[ + 13888, + 13872, + 13890 + ]], + [[ + 13903, + 13856, + 13858 + ]], + [[ + 13850, + 13851, + 13856 + ]], + [[ + 13877, + 13828, + 13827 + ]], + [[ + 13889, + 13896, + 13828 + ]], + [[ + 13893, + 13904, + 13886 + ]], + [[ + 13893, + 13898, + 13904 + ]], + [[ + 13872, + 13885, + 13874 + ]], + [[ + 13886, + 13904, + 13885 + ]], + [[ + 13850, + 13903, + 13829 + ]], + [[ + 13850, + 13856, + 13903 + ]], + [[ + 13842, + 13905, + 13896 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e4aa043-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff17049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13906, + 13907, + 13908 + ]], + [[ + 13909, + 8727, + 8794 + ]], + [[ + 13910, + 7726, + 7728 + ]], + [[ + 13911, + 13912, + 13913 + ]], + [[ + 13914, + 13913, + 13915 + ]], + [[ + 13916, + 13917, + 13918 + ]], + [[ + 13910, + 13916, + 7726 + ]], + [[ + 13919, + 7726, + 13920 + ]], + [[ + 13914, + 13915, + 13921 + ]], + [[ + 13919, + 13920, + 13922 + ]], + [[ + 13923, + 13914, + 13921 + ]], + [[ + 13918, + 13920, + 13916 + ]], + [[ + 13924, + 13923, + 13921 + ]], + [[ + 13912, + 7726, + 13921 + ]], + [[ + 13925, + 13926, + 13927 + ]], + [[ + 13914, + 13923, + 13928 + ]], + [[ + 13913, + 13912, + 13915 + ]], + [[ + 13926, + 7726, + 13912 + ]], + [[ + 13929, + 13930, + 13931 + ]], + [[ + 13932, + 7727, + 13926 + ]], + [[ + 13924, + 13921, + 13919 + ]], + [[ + 13915, + 13912, + 13921 + ]], + [[ + 13918, + 13933, + 13922 + ]], + [[ + 13921, + 7726, + 13919 + ]], + [[ + 8725, + 13934, + 7728 + ]], + [[ + 13934, + 13917, + 13916 + ]], + [[ + 7726, + 13916, + 13920 + ]], + [[ + 13910, + 13934, + 13916 + ]], + [[ + 13922, + 13924, + 13919 + ]], + [[ + 13933, + 13935, + 13923 + ]], + [[ + 13936, + 13937, + 13938 + ]], + [[ + 13923, + 13935, + 13939 + ]], + [[ + 7728, + 13934, + 13910 + ]], + [[ + 13940, + 13941, + 13935 + ]], + [[ + 13942, + 13929, + 13943 + ]], + [[ + 13944, + 13945, + 13946 + ]], + [[ + 13947, + 13948, + 13925 + ]], + [[ + 13949, + 13950, + 13932 + ]], + [[ + 13951, + 13925, + 13931 + ]], + [[ + 13950, + 13943, + 13952 + ]], + [[ + 13942, + 13943, + 13949 + ]], + [[ + 13953, + 13952, + 13954 + ]], + [[ + 13955, + 13956, + 13954 + ]], + [[ + 13943, + 13950, + 13949 + ]], + [[ + 13933, + 13923, + 13924 + ]], + [[ + 13955, + 13957, + 13958 + ]], + [[ + 13931, + 13942, + 13926 + ]], + [[ + 13908, + 7727, + 13932 + ]], + [[ + 13959, + 13960, + 13908 + ]], + [[ + 13961, + 8728, + 7727 + ]], + [[ + 13962, + 13926, + 13912 + ]], + [[ + 7727, + 7726, + 13926 + ]], + [[ + 13942, + 13949, + 13932 + ]], + [[ + 13950, + 13952, + 13953 + ]], + [[ + 13930, + 13942, + 13931 + ]], + [[ + 13930, + 13929, + 13942 + ]], + [[ + 13960, + 13906, + 13908 + ]], + [[ + 13907, + 13945, + 13963 + ]], + [[ + 13908, + 13907, + 7727 + ]], + [[ + 13906, + 13960, + 13945 + ]], + [[ + 13914, + 13928, + 13913 + ]], + [[ + 13964, + 13912, + 13911 + ]], + [[ + 13928, + 13965, + 13947 + ]], + [[ + 13966, + 13912, + 13964 + ]], + [[ + 13925, + 13951, + 13926 + ]], + [[ + 13931, + 13926, + 13951 + ]], + [[ + 13907, + 13963, + 7727 + ]], + [[ + 13967, + 13968, + 13960 + ]], + [[ + 13933, + 13918, + 13917 + ]], + [[ + 13922, + 13920, + 13918 + ]], + [[ + 13966, + 13962, + 13912 + ]], + [[ + 13927, + 13926, + 13962 + ]], + [[ + 13969, + 13970, + 13971 + ]], + [[ + 13972, + 8728, + 13973 + ]], + [[ + 13953, + 13954, + 13960 + ]], + [[ + 13907, + 13906, + 13945 + ]], + [[ + 13947, + 13966, + 13964 + ]], + [[ + 13927, + 13962, + 13966 + ]], + [[ + 13956, + 13955, + 13974 + ]], + [[ + 13975, + 8727, + 13976 + ]], + [[ + 13944, + 13973, + 13961 + ]], + [[ + 13977, + 13972, + 13973 + ]], + [[ + 13973, + 13946, + 13977 + ]], + [[ + 13973, + 13944, + 13946 + ]], + [[ + 8724, + 13938, + 8725 + ]], + [[ + 8724, + 13958, + 13978 + ]], + [[ + 13957, + 13978, + 13958 + ]], + [[ + 8724, + 13975, + 13979 + ]], + [[ + 13980, + 13944, + 13961 + ]], + [[ + 13963, + 13945, + 13944 + ]], + [[ + 13971, + 13972, + 13977 + ]], + [[ + 13971, + 8728, + 13972 + ]], + [[ + 13946, + 13968, + 13969 + ]], + [[ + 8794, + 8728, + 13971 + ]], + [[ + 8724, + 13979, + 13958 + ]], + [[ + 13954, + 8794, + 13967 + ]], + [[ + 13965, + 13939, + 13981 + ]], + [[ + 13938, + 8724, + 13978 + ]], + [[ + 13966, + 13947, + 13927 + ]], + [[ + 13964, + 13911, + 13928 + ]], + [[ + 13934, + 13940, + 13917 + ]], + [[ + 13982, + 13937, + 13983 + ]], + [[ + 13948, + 13943, + 13929 + ]], + [[ + 13953, + 13960, + 13959 + ]], + [[ + 13948, + 13955, + 13952 + ]], + [[ + 13974, + 13975, + 13976 + ]], + [[ + 13946, + 13969, + 13977 + ]], + [[ + 13970, + 8794, + 13971 + ]], + [[ + 13936, + 13938, + 13978 + ]], + [[ + 13937, + 8725, + 13938 + ]], + [[ + 13957, + 13947, + 13965 + ]], + [[ + 13984, + 8725, + 13982 + ]], + [[ + 13942, + 13932, + 13926 + ]], + [[ + 13959, + 13908, + 13932 + ]], + [[ + 13940, + 13935, + 13917 + ]], + [[ + 13985, + 13984, + 13986 + ]], + [[ + 13922, + 13933, + 13924 + ]], + [[ + 13917, + 13935, + 13933 + ]], + [[ + 13980, + 13961, + 7727 + ]], + [[ + 13973, + 8728, + 13961 + ]], + [[ + 13979, + 13955, + 13958 + ]], + [[ + 13985, + 13935, + 13941 + ]], + [[ + 8725, + 13940, + 13934 + ]], + [[ + 8725, + 13941, + 13940 + ]], + [[ + 13945, + 13968, + 13946 + ]], + [[ + 13945, + 13960, + 13968 + ]], + [[ + 13977, + 13969, + 13971 + ]], + [[ + 13968, + 13967, + 13969 + ]], + [[ + 13957, + 13981, + 13978 + ]], + [[ + 13983, + 13937, + 13936 + ]], + [[ + 13979, + 13975, + 13974 + ]], + [[ + 8724, + 8727, + 13975 + ]], + [[ + 13986, + 13984, + 13983 + ]], + [[ + 8725, + 13937, + 13982 + ]], + [[ + 13983, + 13984, + 13982 + ]], + [[ + 13941, + 8725, + 13984 + ]], + [[ + 13931, + 13925, + 13929 + ]], + [[ + 13947, + 13957, + 13948 + ]], + [[ + 13947, + 13925, + 13927 + ]], + [[ + 13948, + 13929, + 13925 + ]], + [[ + 13970, + 13967, + 8794 + ]], + [[ + 13970, + 13969, + 13967 + ]], + [[ + 13957, + 13955, + 13948 + ]], + [[ + 13979, + 13974, + 13955 + ]], + [[ + 13957, + 13965, + 13981 + ]], + [[ + 13947, + 13964, + 13928 + ]], + [[ + 13913, + 13928, + 13911 + ]], + [[ + 13987, + 13939, + 13965 + ]], + [[ + 13981, + 13939, + 13986 + ]], + [[ + 13965, + 13928, + 13987 + ]], + [[ + 13936, + 13981, + 13983 + ]], + [[ + 13985, + 13941, + 13984 + ]], + [[ + 13983, + 13981, + 13986 + ]], + [[ + 13936, + 13978, + 13981 + ]], + [[ + 13939, + 13985, + 13986 + ]], + [[ + 13939, + 13935, + 13985 + ]], + [[ + 13948, + 13952, + 13943 + ]], + [[ + 13954, + 13967, + 13960 + ]], + [[ + 13932, + 13953, + 13959 + ]], + [[ + 13932, + 13950, + 13953 + ]], + [[ + 13955, + 13954, + 13952 + ]], + [[ + 13956, + 8794, + 13954 + ]], + [[ + 13963, + 13980, + 7727 + ]], + [[ + 13963, + 13944, + 13980 + ]], + [[ + 13923, + 13987, + 13928 + ]], + [[ + 13923, + 13939, + 13987 + ]], + [[ + 13956, + 13976, + 13909 + ]], + [[ + 13956, + 13974, + 13976 + ]], + [[ + 13956, + 13909, + 8794 + ]], + [[ + 13976, + 8727, + 13909 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e4b15d3-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8e749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13988, + 13989, + 13990 + ]], + [[ + 13991, + 13992, + 13993 + ]], + [[ + 13994, + 13995, + 13996 + ]], + [[ + 13990, + 13997, + 13998 + ]], + [[ + 13992, + 13999, + 14000 + ]], + [[ + 14001, + 14002, + 14003 + ]], + [[ + 14001, + 13993, + 14000 + ]], + [[ + 14004, + 14005, + 14006 + ]], + [[ + 14002, + 14000, + 14007 + ]], + [[ + 14003, + 14008, + 14009 + ]], + [[ + 13996, + 14010, + 14011 + ]], + [[ + 14012, + 14013, + 14014 + ]], + [[ + 14015, + 13992, + 14016 + ]], + [[ + 14017, + 14013, + 14018 + ]], + [[ + 14019, + 14020, + 14015 + ]], + [[ + 14019, + 14021, + 14020 + ]], + [[ + 14022, + 14017, + 13989 + ]], + [[ + 14019, + 14015, + 14016 + ]], + [[ + 14016, + 14023, + 14019 + ]], + [[ + 14023, + 13991, + 13994 + ]], + [[ + 14024, + 14018, + 14012 + ]], + [[ + 14005, + 14008, + 14007 + ]], + [[ + 14025, + 14005, + 14004 + ]], + [[ + 14014, + 14008, + 14005 + ]], + [[ + 14015, + 13989, + 13992 + ]], + [[ + 14026, + 13998, + 14014 + ]], + [[ + 14014, + 14013, + 14026 + ]], + [[ + 14012, + 14025, + 14024 + ]], + [[ + 14017, + 14022, + 14013 + ]], + [[ + 14027, + 13988, + 14026 + ]], + [[ + 14011, + 14028, + 14029 + ]], + [[ + 14030, + 14009, + 14028 + ]], + [[ + 14029, + 13994, + 14011 + ]], + [[ + 14023, + 14016, + 13991 + ]], + [[ + 14026, + 14022, + 14027 + ]], + [[ + 14026, + 14013, + 14022 + ]], + [[ + 13995, + 14001, + 13996 + ]], + [[ + 13993, + 13992, + 14000 + ]], + [[ + 14031, + 14024, + 14004 + ]], + [[ + 14014, + 14005, + 14025 + ]], + [[ + 14026, + 13988, + 13998 + ]], + [[ + 14027, + 13989, + 13988 + ]], + [[ + 14006, + 14031, + 14004 + ]], + [[ + 13992, + 13989, + 14018 + ]], + [[ + 14007, + 14031, + 14006 + ]], + [[ + 13999, + 14018, + 14024 + ]], + [[ + 14004, + 14024, + 14025 + ]], + [[ + 13999, + 13992, + 14018 + ]], + [[ + 14031, + 14007, + 14000 + ]], + [[ + 14006, + 14005, + 14007 + ]], + [[ + 14002, + 14032, + 14003 + ]], + [[ + 14009, + 13997, + 14028 + ]], + [[ + 14000, + 14002, + 14001 + ]], + [[ + 14007, + 14008, + 14002 + ]], + [[ + 14003, + 14032, + 14008 + ]], + [[ + 14002, + 14008, + 14032 + ]], + [[ + 13995, + 13993, + 14001 + ]], + [[ + 13995, + 13994, + 13991 + ]], + [[ + 14010, + 14009, + 14030 + ]], + [[ + 14008, + 13997, + 14009 + ]], + [[ + 13994, + 14021, + 14023 + ]], + [[ + 14029, + 14028, + 14033 + ]], + [[ + 14011, + 14010, + 14030 + ]], + [[ + 13996, + 14003, + 14010 + ]], + [[ + 14022, + 13989, + 14027 + ]], + [[ + 14017, + 14018, + 13989 + ]], + [[ + 14010, + 14003, + 14009 + ]], + [[ + 13996, + 14001, + 14003 + ]], + [[ + 14021, + 14019, + 14023 + ]], + [[ + 14020, + 13990, + 14015 + ]], + [[ + 13995, + 13991, + 13993 + ]], + [[ + 14016, + 13992, + 13991 + ]], + [[ + 13994, + 14029, + 14021 + ]], + [[ + 14028, + 13997, + 14033 + ]], + [[ + 13990, + 14033, + 13997 + ]], + [[ + 14021, + 14029, + 14033 + ]], + [[ + 14028, + 14011, + 14030 + ]], + [[ + 13994, + 13996, + 14011 + ]], + [[ + 14025, + 14012, + 14014 + ]], + [[ + 14018, + 14013, + 14012 + ]], + [[ + 14031, + 13999, + 14024 + ]], + [[ + 14031, + 14000, + 13999 + ]], + [[ + 13989, + 14015, + 13990 + ]], + [[ + 14021, + 14033, + 14020 + ]], + [[ + 13988, + 13990, + 13998 + ]], + [[ + 14020, + 14033, + 13990 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e4bd8b0-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1771, + 3212, + 3213 + ]], + [[ + 1820, + 14034, + 1782 + ]], + [[ + 1782, + 3050, + 3060 + ]], + [[ + 3060, + 3076, + 3077 + ]], + [[ + 3060, + 3050, + 3076 + ]], + [[ + 3076, + 3071, + 3074 + ]], + [[ + 3074, + 3071, + 3073 + ]], + [[ + 3076, + 3050, + 3071 + ]], + [[ + 3071, + 3068, + 3069 + ]], + [[ + 3071, + 3067, + 3068 + ]], + [[ + 3071, + 3066, + 3067 + ]], + [[ + 3071, + 3055, + 3066 + ]], + [[ + 3066, + 3079, + 3051 + ]], + [[ + 3051, + 3064, + 3065 + ]], + [[ + 3051, + 3062, + 3064 + ]], + [[ + 3064, + 3062, + 3063 + ]], + [[ + 3051, + 3079, + 3062 + ]], + [[ + 3062, + 3079, + 3061 + ]], + [[ + 3066, + 3055, + 3079 + ]], + [[ + 3079, + 3055, + 3080 + ]], + [[ + 3071, + 3050, + 3055 + ]], + [[ + 3055, + 3050, + 3054 + ]], + [[ + 3054, + 3052, + 3053 + ]], + [[ + 3054, + 3050, + 3052 + ]], + [[ + 1782, + 3048, + 3050 + ]], + [[ + 1782, + 14034, + 3048 + ]], + [[ + 14035, + 1771, + 3213 + ]], + [[ + 14036, + 14034, + 14037 + ]], + [[ + 1771, + 3201, + 3212 + ]], + [[ + 3212, + 3201, + 3210 + ]], + [[ + 3210, + 3201, + 3208 + ]], + [[ + 3208, + 3180, + 3174 + ]], + [[ + 3208, + 3206, + 3180 + ]], + [[ + 3180, + 3206, + 3177 + ]], + [[ + 3208, + 3204, + 3206 + ]], + [[ + 3206, + 3204, + 3184 + ]], + [[ + 3184, + 3182, + 3205 + ]], + [[ + 3184, + 3204, + 3182 + ]], + [[ + 3208, + 3203, + 3204 + ]], + [[ + 3208, + 3171, + 3203 + ]], + [[ + 3203, + 3194, + 3187 + ]], + [[ + 3203, + 3191, + 3194 + ]], + [[ + 3203, + 3195, + 3191 + ]], + [[ + 3203, + 3171, + 3195 + ]], + [[ + 3208, + 3201, + 3171 + ]], + [[ + 3171, + 3201, + 3172 + ]], + [[ + 1771, + 3190, + 3201 + ]], + [[ + 3201, + 3190, + 3198 + ]], + [[ + 1820, + 14037, + 14034 + ]], + [[ + 1820, + 1771, + 14036 + ]], + [[ + 14034, + 14036, + 3213 + ]], + [[ + 14036, + 1771, + 14035 + ]], + [[ + 1820, + 14036, + 14037 + ]], + [[ + 14035, + 3213, + 14036 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e4ee645-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14038, + 14039, + 14040 + ]], + [[ + 14041, + 14042, + 14043 + ]], + [[ + 14040, + 14043, + 14044 + ]], + [[ + 14042, + 14039, + 14038 + ]], + [[ + 14044, + 14038, + 14040 + ]], + [[ + 14042, + 14041, + 14039 + ]], + [[ + 14045, + 14043, + 14040 + ]], + [[ + 14046, + 14038, + 14044 + ]], + [[ + 14046, + 14042, + 14038 + ]], + [[ + 14043, + 14045, + 14041 + ]], + [[ + 14046, + 14043, + 14042 + ]], + [[ + 14046, + 14044, + 14043 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e4fa919-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efebf349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14047, + 14048, + 14049 + ]], + [[ + 14050, + 14051, + 8743 + ]], + [[ + 14052, + 8402, + 8744 + ]], + [[ + 14052, + 14053, + 14048 + ]], + [[ + 14054, + 14050, + 8743 + ]], + [[ + 14055, + 14056, + 14057 + ]], + [[ + 14058, + 14051, + 14059 + ]], + [[ + 14050, + 14054, + 14060 + ]], + [[ + 14050, + 14059, + 14051 + ]], + [[ + 14061, + 14062, + 14063 + ]], + [[ + 14064, + 14065, + 14066 + ]], + [[ + 14067, + 14051, + 14058 + ]], + [[ + 14068, + 14069, + 14070 + ]], + [[ + 14059, + 14050, + 14071 + ]], + [[ + 14059, + 14072, + 14073 + ]], + [[ + 14074, + 14064, + 14075 + ]], + [[ + 14061, + 14073, + 14062 + ]], + [[ + 14076, + 14077, + 14078 + ]], + [[ + 14079, + 14061, + 14069 + ]], + [[ + 14080, + 14073, + 14061 + ]], + [[ + 14072, + 14063, + 14073 + ]], + [[ + 14063, + 8322, + 14081 + ]], + [[ + 14057, + 14056, + 8323 + ]], + [[ + 8323, + 8325, + 14082 + ]], + [[ + 14061, + 14063, + 14069 + ]], + [[ + 14081, + 8322, + 8323 + ]], + [[ + 14068, + 14070, + 14083 + ]], + [[ + 14068, + 14084, + 14085 + ]], + [[ + 14083, + 14070, + 14081 + ]], + [[ + 14062, + 14073, + 14063 + ]], + [[ + 14060, + 14054, + 8743 + ]], + [[ + 14071, + 14086, + 14072 + ]], + [[ + 14052, + 14048, + 14087 + ]], + [[ + 8325, + 8402, + 14087 + ]], + [[ + 8743, + 14084, + 8744 + ]], + [[ + 14065, + 14088, + 14066 + ]], + [[ + 14089, + 14074, + 14075 + ]], + [[ + 14075, + 14090, + 14056 + ]], + [[ + 14056, + 14090, + 8323 + ]], + [[ + 14070, + 14069, + 14063 + ]], + [[ + 14082, + 14057, + 8323 + ]], + [[ + 14077, + 14076, + 14091 + ]], + [[ + 14065, + 14064, + 14074 + ]], + [[ + 14066, + 14092, + 14064 + ]], + [[ + 14078, + 14089, + 14075 + ]], + [[ + 14065, + 14074, + 14089 + ]], + [[ + 14065, + 14084, + 14088 + ]], + [[ + 8743, + 14051, + 14080 + ]], + [[ + 14072, + 14086, + 14063 + ]], + [[ + 14072, + 14059, + 14071 + ]], + [[ + 14060, + 14071, + 14050 + ]], + [[ + 8322, + 14086, + 14071 + ]], + [[ + 14073, + 14058, + 14059 + ]], + [[ + 14067, + 14080, + 14051 + ]], + [[ + 14073, + 14067, + 14058 + ]], + [[ + 14073, + 14080, + 14067 + ]], + [[ + 14093, + 14083, + 14081 + ]], + [[ + 14066, + 14088, + 14068 + ]], + [[ + 8744, + 14065, + 14094 + ]], + [[ + 14079, + 14095, + 14061 + ]], + [[ + 14085, + 14079, + 14069 + ]], + [[ + 14095, + 14080, + 14061 + ]], + [[ + 8744, + 14084, + 14065 + ]], + [[ + 8743, + 14079, + 14084 + ]], + [[ + 8325, + 14096, + 14082 + ]], + [[ + 8325, + 14087, + 14096 + ]], + [[ + 14093, + 14081, + 8323 + ]], + [[ + 14093, + 14097, + 14092 + ]], + [[ + 14068, + 14085, + 14069 + ]], + [[ + 14084, + 14079, + 14085 + ]], + [[ + 8743, + 14095, + 14079 + ]], + [[ + 8743, + 14080, + 14095 + ]], + [[ + 14094, + 14053, + 8744 + ]], + [[ + 14048, + 14096, + 14087 + ]], + [[ + 14094, + 14048, + 14053 + ]], + [[ + 14094, + 14098, + 14049 + ]], + [[ + 14070, + 14063, + 14081 + ]], + [[ + 14086, + 8322, + 14063 + ]], + [[ + 8402, + 14052, + 14087 + ]], + [[ + 8744, + 14053, + 14052 + ]], + [[ + 14091, + 14099, + 14077 + ]], + [[ + 14065, + 14089, + 14099 + ]], + [[ + 14082, + 14076, + 14057 + ]], + [[ + 14099, + 14089, + 14078 + ]], + [[ + 14055, + 14076, + 14078 + ]], + [[ + 14098, + 14094, + 14091 + ]], + [[ + 14076, + 14055, + 14057 + ]], + [[ + 14078, + 14056, + 14055 + ]], + [[ + 14075, + 14097, + 14090 + ]], + [[ + 14092, + 14083, + 14093 + ]], + [[ + 14082, + 14049, + 14076 + ]], + [[ + 14049, + 14048, + 14094 + ]], + [[ + 14066, + 14068, + 14083 + ]], + [[ + 14088, + 14084, + 14068 + ]], + [[ + 14076, + 14049, + 14098 + ]], + [[ + 14047, + 14096, + 14048 + ]], + [[ + 14078, + 14077, + 14099 + ]], + [[ + 14076, + 14098, + 14091 + ]], + [[ + 14064, + 14092, + 14097 + ]], + [[ + 14066, + 14083, + 14092 + ]], + [[ + 14082, + 14047, + 14049 + ]], + [[ + 14082, + 14096, + 14047 + ]], + [[ + 14065, + 14091, + 14094 + ]], + [[ + 14065, + 14099, + 14091 + ]], + [[ + 14078, + 14075, + 14056 + ]], + [[ + 14064, + 14097, + 14075 + ]], + [[ + 8322, + 14060, + 8743 + ]], + [[ + 8322, + 14071, + 14060 + ]], + [[ + 14090, + 14093, + 8323 + ]], + [[ + 14090, + 14097, + 14093 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e506d0e-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba4a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14100, + 14101, + 14102 + ]], + [[ + 14103, + 14104, + 14105 + ]], + [[ + 14106, + 14107, + 14104 + ]], + [[ + 14108, + 14102, + 14101 + ]], + [[ + 14109, + 14110, + 14106 + ]], + [[ + 14110, + 14107, + 14111 + ]], + [[ + 14112, + 14109, + 14103 + ]], + [[ + 14104, + 14108, + 14105 + ]], + [[ + 14103, + 14106, + 14104 + ]], + [[ + 14111, + 14107, + 14106 + ]], + [[ + 14113, + 14109, + 14112 + ]], + [[ + 14110, + 14111, + 14106 + ]], + [[ + 14101, + 14105, + 14108 + ]], + [[ + 14104, + 14107, + 14114 + ]], + [[ + 14115, + 14103, + 14105 + ]], + [[ + 14109, + 14106, + 14103 + ]], + [[ + 14116, + 14117, + 14118 + ]], + [[ + 14119, + 14120, + 14112 + ]], + [[ + 14100, + 14115, + 14101 + ]], + [[ + 14121, + 14119, + 14103 + ]], + [[ + 14115, + 14121, + 14103 + ]], + [[ + 14103, + 14119, + 14112 + ]], + [[ + 14122, + 14110, + 14123 + ]], + [[ + 14110, + 14109, + 14113 + ]], + [[ + 14116, + 14119, + 14124 + ]], + [[ + 14120, + 14113, + 14112 + ]], + [[ + 14117, + 14116, + 14121 + ]], + [[ + 14121, + 14116, + 14124 + ]], + [[ + 14123, + 14120, + 14119 + ]], + [[ + 14123, + 14113, + 14120 + ]], + [[ + 14118, + 14100, + 14102 + ]], + [[ + 14115, + 14105, + 14101 + ]], + [[ + 14114, + 14108, + 14104 + ]], + [[ + 14122, + 14102, + 14108 + ]], + [[ + 14123, + 14116, + 14118 + ]], + [[ + 14123, + 14119, + 14116 + ]], + [[ + 14122, + 14114, + 14107 + ]], + [[ + 14122, + 14108, + 14114 + ]], + [[ + 14117, + 14100, + 14118 + ]], + [[ + 14117, + 14121, + 14100 + ]], + [[ + 14123, + 14110, + 14113 + ]], + [[ + 14122, + 14107, + 14110 + ]], + [[ + 14119, + 14121, + 14124 + ]], + [[ + 14115, + 14100, + 14121 + ]], + [[ + 14125, + 14102, + 14122 + ]], + [[ + 14118, + 14126, + 14123 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e51a58d-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1773, + 3169, + 3199 + ]], + [[ + 3199, + 3169, + 3200 + ]], + [[ + 3200, + 3169, + 3197 + ]], + [[ + 3197, + 3169, + 3173 + ]], + [[ + 3173, + 3169, + 3196 + ]], + [[ + 3196, + 3169, + 3192 + ]], + [[ + 3192, + 3169, + 3193 + ]], + [[ + 3193, + 3169, + 3188 + ]], + [[ + 3188, + 3169, + 3189 + ]], + [[ + 3189, + 3169, + 3202 + ]], + [[ + 3202, + 3169, + 3183 + ]], + [[ + 3183, + 3169, + 3181 + ]], + [[ + 3181, + 3169, + 3185 + ]], + [[ + 3185, + 3169, + 3186 + ]], + [[ + 3186, + 3169, + 3178 + ]], + [[ + 3178, + 3169, + 3179 + ]], + [[ + 3179, + 3169, + 3175 + ]], + [[ + 3175, + 3169, + 3176 + ]], + [[ + 3176, + 3169, + 3207 + ]], + [[ + 3207, + 3169, + 3209 + ]], + [[ + 3209, + 3169, + 3211 + ]], + [[ + 14127, + 12238, + 14128 + ]], + [[ + 1812, + 1830, + 12238 + ]], + [[ + 3115, + 12238, + 1830 + ]], + [[ + 14129, + 3169, + 1773 + ]], + [[ + 1830, + 3121, + 3115 + ]], + [[ + 1830, + 3135, + 3121 + ]], + [[ + 3121, + 3156, + 3158 + ]], + [[ + 3121, + 3135, + 3156 + ]], + [[ + 3156, + 3134, + 3125 + ]], + [[ + 3125, + 3130, + 3128 + ]], + [[ + 3125, + 3134, + 3130 + ]], + [[ + 3130, + 3134, + 3154 + ]], + [[ + 3156, + 3137, + 3134 + ]], + [[ + 3134, + 3137, + 3153 + ]], + [[ + 3153, + 3137, + 3152 + ]], + [[ + 3156, + 3135, + 3137 + ]], + [[ + 3137, + 3141, + 3139 + ]], + [[ + 3137, + 3145, + 3141 + ]], + [[ + 3141, + 3145, + 3143 + ]], + [[ + 3137, + 3135, + 3145 + ]], + [[ + 3145, + 3150, + 3122 + ]], + [[ + 3122, + 3150, + 3123 + ]], + [[ + 3145, + 3135, + 3150 + ]], + [[ + 1812, + 14128, + 14129 + ]], + [[ + 12238, + 3169, + 14130 + ]], + [[ + 1812, + 14129, + 1773 + ]], + [[ + 14130, + 3169, + 14129 + ]], + [[ + 1812, + 14127, + 14128 + ]], + [[ + 1812, + 12238, + 14127 + ]], + [[ + 14128, + 14130, + 14129 + ]], + [[ + 14128, + 12238, + 14130 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e528fa4-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14131, + 14132, + 14133 + ]], + [[ + 14134, + 14132, + 14131 + ]], + [[ + 14132, + 14135, + 14136 + ]], + [[ + 14132, + 14137, + 14135 + ]], + [[ + 14138, + 14139, + 14132 + ]], + [[ + 14140, + 14138, + 14132 + ]], + [[ + 14141, + 14140, + 14132 + ]], + [[ + 14142, + 14143, + 14144 + ]], + [[ + 14145, + 14132, + 14146 + ]], + [[ + 14146, + 14132, + 14147 + ]], + [[ + 14147, + 14132, + 14148 + ]], + [[ + 14148, + 14142, + 14149 + ]], + [[ + 14149, + 14142, + 14150 + ]], + [[ + 14150, + 14142, + 14151 + ]], + [[ + 14151, + 14142, + 14152 + ]], + [[ + 14152, + 14142, + 14144 + ]], + [[ + 14153, + 14154, + 14155 + ]], + [[ + 14143, + 14142, + 14154 + ]], + [[ + 14156, + 14143, + 14154 + ]], + [[ + 14132, + 14142, + 14148 + ]], + [[ + 14157, + 14158, + 14154 + ]], + [[ + 14153, + 14157, + 14154 + ]], + [[ + 14132, + 14154, + 14142 + ]], + [[ + 14159, + 14155, + 14154 + ]], + [[ + 14160, + 14159, + 14154 + ]], + [[ + 14161, + 14160, + 14154 + ]], + [[ + 14162, + 14161, + 14154 + ]], + [[ + 14163, + 14162, + 14164 + ]], + [[ + 14165, + 14163, + 14164 + ]], + [[ + 14166, + 14165, + 14164 + ]], + [[ + 14167, + 14166, + 14164 + ]], + [[ + 14168, + 14167, + 14164 + ]], + [[ + 14169, + 14168, + 14164 + ]], + [[ + 14170, + 14169, + 14164 + ]], + [[ + 14171, + 14170, + 14164 + ]], + [[ + 14172, + 14171, + 14164 + ]], + [[ + 14173, + 14172, + 14164 + ]], + [[ + 14174, + 14173, + 14164 + ]], + [[ + 14175, + 14174, + 14164 + ]], + [[ + 14176, + 14175, + 14164 + ]], + [[ + 14177, + 14132, + 14145 + ]], + [[ + 14178, + 14164, + 14179 + ]], + [[ + 14179, + 14164, + 14180 + ]], + [[ + 14180, + 14164, + 14132 + ]], + [[ + 14181, + 14180, + 14132 + ]], + [[ + 14182, + 14181, + 14132 + ]], + [[ + 14183, + 14182, + 14132 + ]], + [[ + 14184, + 14183, + 14132 + ]], + [[ + 14185, + 14184, + 14132 + ]], + [[ + 14186, + 14185, + 14132 + ]], + [[ + 14186, + 14187, + 14185 + ]], + [[ + 14186, + 14188, + 14187 + ]], + [[ + 14186, + 14189, + 14188 + ]], + [[ + 14186, + 14190, + 14189 + ]], + [[ + 14186, + 14191, + 14190 + ]], + [[ + 14186, + 14192, + 14191 + ]], + [[ + 14186, + 14193, + 14192 + ]], + [[ + 14186, + 14194, + 14193 + ]], + [[ + 14195, + 14196, + 14186 + ]], + [[ + 14197, + 14195, + 14186 + ]], + [[ + 14198, + 14197, + 14186 + ]], + [[ + 14199, + 14198, + 14186 + ]], + [[ + 14200, + 14199, + 14186 + ]], + [[ + 14201, + 14200, + 14186 + ]], + [[ + 14202, + 14201, + 14203 + ]], + [[ + 14204, + 14202, + 14203 + ]], + [[ + 14205, + 14204, + 14203 + ]], + [[ + 14206, + 14205, + 14203 + ]], + [[ + 14132, + 14164, + 14154 + ]], + [[ + 14207, + 14203, + 14208 + ]], + [[ + 14208, + 14203, + 14209 + ]], + [[ + 14209, + 14203, + 14210 + ]], + [[ + 14210, + 14203, + 14211 + ]], + [[ + 14211, + 14203, + 14212 + ]], + [[ + 14212, + 14203, + 14213 + ]], + [[ + 14213, + 14203, + 14214 + ]], + [[ + 14214, + 14203, + 14215 + ]], + [[ + 14215, + 14203, + 14216 + ]], + [[ + 14216, + 14203, + 14217 + ]], + [[ + 14217, + 14203, + 14218 + ]], + [[ + 14218, + 14203, + 14219 + ]], + [[ + 14219, + 14203, + 14220 + ]], + [[ + 14220, + 14203, + 14221 + ]], + [[ + 14221, + 14203, + 14132 + ]], + [[ + 14222, + 14221, + 14132 + ]], + [[ + 14223, + 14222, + 14132 + ]], + [[ + 14224, + 14223, + 14132 + ]], + [[ + 14225, + 14224, + 14132 + ]], + [[ + 14226, + 14225, + 14132 + ]], + [[ + 14134, + 14226, + 14132 + ]], + [[ + 14177, + 14141, + 14132 + ]], + [[ + 14133, + 14132, + 14136 + ]], + [[ + 14227, + 14164, + 14178 + ]], + [[ + 14227, + 14176, + 14164 + ]], + [[ + 14162, + 14154, + 14164 + ]], + [[ + 14158, + 14156, + 14154 + ]], + [[ + 14228, + 14203, + 14207 + ]], + [[ + 14228, + 14206, + 14203 + ]], + [[ + 14137, + 14132, + 14139 + ]], + [[ + 14203, + 14186, + 14132 + ]], + [[ + 14201, + 14186, + 14203 + ]], + [[ + 14196, + 14194, + 14186 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e530428-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14229, + 14230, + 14231 + ]], + [[ + 14232, + 14233, + 14231 + ]], + [[ + 14234, + 14232, + 14235 + ]], + [[ + 14236, + 14229, + 14237 + ]], + [[ + 14234, + 14238, + 14232 + ]], + [[ + 14230, + 14229, + 14236 + ]], + [[ + 14238, + 14239, + 14233 + ]], + [[ + 14236, + 14237, + 14240 + ]], + [[ + 14241, + 14235, + 14230 + ]], + [[ + 14235, + 14232, + 14231 + ]], + [[ + 14230, + 14235, + 14231 + ]], + [[ + 14242, + 14234, + 14235 + ]], + [[ + 14232, + 14238, + 14233 + ]], + [[ + 14234, + 14239, + 14238 + ]], + [[ + 14234, + 14243, + 14239 + ]], + [[ + 14234, + 14237, + 14243 + ]], + [[ + 14244, + 14236, + 14240 + ]], + [[ + 14229, + 14233, + 14239 + ]], + [[ + 14244, + 14241, + 14236 + ]], + [[ + 14242, + 14235, + 14241 + ]], + [[ + 14241, + 14230, + 14236 + ]], + [[ + 14231, + 14233, + 14229 + ]], + [[ + 14243, + 14229, + 14239 + ]], + [[ + 14243, + 14237, + 14229 + ]], + [[ + 14242, + 14244, + 14240 + ]], + [[ + 14242, + 14241, + 14244 + ]], + [[ + 14240, + 14245, + 14242 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e54165e-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14246, + 14247, + 14248 + ]], + [[ + 14249, + 14250, + 14251 + ]], + [[ + 14247, + 14252, + 14248 + ]], + [[ + 14253, + 14254, + 14255 + ]], + [[ + 14256, + 14257, + 14258 + ]], + [[ + 14258, + 14249, + 14251 + ]], + [[ + 14246, + 14258, + 14247 + ]], + [[ + 14251, + 14252, + 14247 + ]], + [[ + 14259, + 14260, + 14261 + ]], + [[ + 14258, + 14251, + 14247 + ]], + [[ + 14262, + 14260, + 14259 + ]], + [[ + 14261, + 14258, + 14246 + ]], + [[ + 14263, + 14261, + 14260 + ]], + [[ + 14264, + 14258, + 14261 + ]], + [[ + 14265, + 14266, + 14267 + ]], + [[ + 14268, + 14256, + 14264 + ]], + [[ + 14264, + 14256, + 14258 + ]], + [[ + 14250, + 14269, + 14270 + ]], + [[ + 14263, + 14268, + 14261 + ]], + [[ + 14268, + 14266, + 14256 + ]], + [[ + 14270, + 14248, + 14252 + ]], + [[ + 14269, + 14254, + 14248 + ]], + [[ + 14271, + 14272, + 14256 + ]], + [[ + 14257, + 14269, + 14249 + ]], + [[ + 14258, + 14257, + 14249 + ]], + [[ + 14272, + 14269, + 14257 + ]], + [[ + 14251, + 14250, + 14252 + ]], + [[ + 14249, + 14269, + 14250 + ]], + [[ + 14253, + 14246, + 14248 + ]], + [[ + 14255, + 14261, + 14246 + ]], + [[ + 14266, + 14271, + 14256 + ]], + [[ + 14265, + 14272, + 14271 + ]], + [[ + 14259, + 14255, + 14254 + ]], + [[ + 14259, + 14261, + 14255 + ]], + [[ + 14262, + 14266, + 14263 + ]], + [[ + 14265, + 14271, + 14266 + ]], + [[ + 14261, + 14268, + 14264 + ]], + [[ + 14263, + 14266, + 14268 + ]], + [[ + 14256, + 14272, + 14257 + ]], + [[ + 14265, + 14269, + 14272 + ]], + [[ + 14250, + 14270, + 14252 + ]], + [[ + 14269, + 14248, + 14270 + ]], + [[ + 14266, + 14262, + 14267 + ]], + [[ + 14263, + 14260, + 14262 + ]], + [[ + 14246, + 14253, + 14255 + ]], + [[ + 14248, + 14254, + 14253 + ]], + [[ + 14267, + 14259, + 14254 + ]], + [[ + 14267, + 14262, + 14259 + ]], + [[ + 14273, + 14254, + 14269 + ]], + [[ + 14267, + 14274, + 14265 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e5527a9-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14275, + 14276, + 14277 + ]], + [[ + 14278, + 14279, + 14280 + ]], + [[ + 14281, + 14282, + 14283 + ]], + [[ + 14280, + 14284, + 14285 + ]], + [[ + 14286, + 14287, + 14282 + ]], + [[ + 14288, + 14289, + 14290 + ]], + [[ + 14291, + 14292, + 14285 + ]], + [[ + 14284, + 14290, + 14285 + ]], + [[ + 14292, + 14283, + 14293 + ]], + [[ + 14293, + 14282, + 14294 + ]], + [[ + 14295, + 14286, + 14296 + ]], + [[ + 14277, + 14297, + 14275 + ]], + [[ + 14298, + 14295, + 14299 + ]], + [[ + 14286, + 14282, + 14281 + ]], + [[ + 14277, + 14287, + 14297 + ]], + [[ + 14288, + 14290, + 14284 + ]], + [[ + 14300, + 14287, + 14286 + ]], + [[ + 14297, + 14301, + 14275 + ]], + [[ + 14302, + 14283, + 14291 + ]], + [[ + 14303, + 14304, + 14279 + ]], + [[ + 14278, + 14280, + 14285 + ]], + [[ + 14279, + 14284, + 14280 + ]], + [[ + 14298, + 14302, + 14305 + ]], + [[ + 14292, + 14306, + 14307 + ]], + [[ + 14299, + 14295, + 14302 + ]], + [[ + 14282, + 14276, + 14294 + ]], + [[ + 14292, + 14293, + 14306 + ]], + [[ + 14283, + 14282, + 14293 + ]], + [[ + 14304, + 14307, + 14294 + ]], + [[ + 14308, + 14275, + 14301 + ]], + [[ + 14300, + 14297, + 14287 + ]], + [[ + 14300, + 14289, + 14297 + ]], + [[ + 14308, + 14294, + 14275 + ]], + [[ + 14294, + 14276, + 14275 + ]], + [[ + 14288, + 14294, + 14308 + ]], + [[ + 14306, + 14293, + 14294 + ]], + [[ + 14288, + 14308, + 14289 + ]], + [[ + 14301, + 14289, + 14308 + ]], + [[ + 14292, + 14307, + 14303 + ]], + [[ + 14306, + 14294, + 14307 + ]], + [[ + 14278, + 14303, + 14279 + ]], + [[ + 14278, + 14292, + 14303 + ]], + [[ + 14297, + 14289, + 14301 + ]], + [[ + 14300, + 14290, + 14289 + ]], + [[ + 14302, + 14281, + 14283 + ]], + [[ + 14296, + 14286, + 14281 + ]], + [[ + 14279, + 14304, + 14284 + ]], + [[ + 14303, + 14307, + 14304 + ]], + [[ + 14305, + 14291, + 14285 + ]], + [[ + 14305, + 14302, + 14291 + ]], + [[ + 14298, + 14299, + 14302 + ]], + [[ + 14295, + 14281, + 14302 + ]], + [[ + 14300, + 14298, + 14305 + ]], + [[ + 14295, + 14296, + 14281 + ]], + [[ + 14282, + 14277, + 14276 + ]], + [[ + 14282, + 14287, + 14277 + ]], + [[ + 14285, + 14292, + 14278 + ]], + [[ + 14291, + 14283, + 14292 + ]], + [[ + 14300, + 14295, + 14298 + ]], + [[ + 14300, + 14286, + 14295 + ]], + [[ + 14304, + 14288, + 14284 + ]], + [[ + 14304, + 14294, + 14288 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e55c364-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14309, + 9869, + 9874 + ]], + [[ + 14310, + 9874, + 9873 + ]], + [[ + 9868, + 14311, + 14312 + ]], + [[ + 14311, + 9869, + 14309 + ]], + [[ + 14310, + 14309, + 9874 + ]], + [[ + 14311, + 9868, + 9869 + ]], + [[ + 14312, + 14310, + 9873 + ]], + [[ + 14313, + 14309, + 14310 + ]], + [[ + 14313, + 14311, + 14309 + ]], + [[ + 14312, + 9873, + 9868 + ]], + [[ + 14313, + 14312, + 14311 + ]], + [[ + 14313, + 14310, + 14312 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e55ea86-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14314, + 1013, + 1017 + ]], + [[ + 1020, + 14315, + 1018 + ]], + [[ + 14316, + 14314, + 1017 + ]], + [[ + 14315, + 14317, + 14314 + ]], + [[ + 14316, + 14315, + 14314 + ]], + [[ + 14317, + 1013, + 14314 + ]], + [[ + 1018, + 14316, + 1017 + ]], + [[ + 1018, + 14315, + 14316 + ]], + [[ + 1020, + 14317, + 14315 + ]], + [[ + 1020, + 1013, + 14317 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e566010-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efe6f549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14318, + 14319, + 14320 + ]], + [[ + 14321, + 14319, + 14322 + ]], + [[ + 14320, + 14323, + 14321 + ]], + [[ + 14324, + 14325, + 14326 + ]], + [[ + 14320, + 14319, + 14323 + ]], + [[ + 14327, + 14325, + 14324 + ]], + [[ + 14322, + 14328, + 14326 + ]], + [[ + 14328, + 14319, + 14318 + ]], + [[ + 14324, + 14328, + 14329 + ]], + [[ + 14322, + 14319, + 14328 + ]], + [[ + 14328, + 14318, + 14329 + ]], + [[ + 14320, + 14325, + 14318 + ]], + [[ + 14328, + 14324, + 14326 + ]], + [[ + 14329, + 14327, + 14324 + ]], + [[ + 14318, + 14327, + 14329 + ]], + [[ + 14318, + 14325, + 14327 + ]], + [[ + 14320, + 14321, + 14322 + ]], + [[ + 14323, + 14319, + 14321 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e580e0a-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff16b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14330, + 14331, + 14332 + ]], + [[ + 14333, + 14334, + 8708 + ]], + [[ + 14335, + 14336, + 14333 + ]], + [[ + 14337, + 14338, + 14336 + ]], + [[ + 14332, + 14339, + 14340 + ]], + [[ + 14341, + 14342, + 14334 + ]], + [[ + 14343, + 14332, + 14340 + ]], + [[ + 14344, + 14345, + 14346 + ]], + [[ + 14347, + 14348, + 14349 + ]], + [[ + 14350, + 14338, + 14337 + ]], + [[ + 14350, + 14331, + 14330 + ]], + [[ + 14340, + 14351, + 14344 + ]], + [[ + 14336, + 14338, + 14334 + ]], + [[ + 14352, + 14353, + 14346 + ]], + [[ + 14332, + 14354, + 14339 + ]], + [[ + 14355, + 8707, + 14356 + ]], + [[ + 14348, + 14347, + 14354 + ]], + [[ + 14339, + 14351, + 14340 + ]], + [[ + 14343, + 14340, + 14357 + ]], + [[ + 14358, + 14357, + 14344 + ]], + [[ + 14338, + 14359, + 14334 + ]], + [[ + 14338, + 14330, + 14359 + ]], + [[ + 14357, + 14358, + 14359 + ]], + [[ + 14360, + 14341, + 14353 + ]], + [[ + 14361, + 14362, + 14363 + ]], + [[ + 14364, + 14342, + 14365 + ]], + [[ + 14359, + 14330, + 14343 + ]], + [[ + 14338, + 14350, + 14330 + ]], + [[ + 14350, + 14348, + 14331 + ]], + [[ + 14331, + 14348, + 14354 + ]], + [[ + 14341, + 14365, + 14342 + ]], + [[ + 14353, + 14358, + 14346 + ]], + [[ + 14349, + 14335, + 14366 + ]], + [[ + 14336, + 14334, + 14333 + ]], + [[ + 14359, + 14341, + 14334 + ]], + [[ + 14359, + 14358, + 14341 + ]], + [[ + 14341, + 14367, + 14365 + ]], + [[ + 14360, + 14353, + 14352 + ]], + [[ + 14345, + 14352, + 14346 + ]], + [[ + 14341, + 14358, + 14353 + ]], + [[ + 14368, + 14369, + 14352 + ]], + [[ + 14370, + 14371, + 14372 + ]], + [[ + 14337, + 14348, + 14350 + ]], + [[ + 14347, + 8708, + 14373 + ]], + [[ + 14343, + 14357, + 14359 + ]], + [[ + 14340, + 14344, + 14357 + ]], + [[ + 14374, + 14375, + 14376 + ]], + [[ + 14377, + 14378, + 14342 + ]], + [[ + 14377, + 14379, + 14378 + ]], + [[ + 14377, + 14342, + 14375 + ]], + [[ + 14330, + 14332, + 14343 + ]], + [[ + 14331, + 14354, + 14332 + ]], + [[ + 14339, + 14354, + 14380 + ]], + [[ + 14381, + 14362, + 14361 + ]], + [[ + 14382, + 14383, + 14362 + ]], + [[ + 14362, + 14380, + 8708 + ]], + [[ + 14383, + 14369, + 14362 + ]], + [[ + 14384, + 14385, + 14386 + ]], + [[ + 14356, + 14378, + 14379 + ]], + [[ + 8707, + 14342, + 14378 + ]], + [[ + 14358, + 14344, + 14346 + ]], + [[ + 14351, + 14387, + 14388 + ]], + [[ + 14389, + 14374, + 14376 + ]], + [[ + 14372, + 14390, + 14384 + ]], + [[ + 14389, + 14384, + 14374 + ]], + [[ + 14385, + 14355, + 14379 + ]], + [[ + 14374, + 14386, + 14375 + ]], + [[ + 14374, + 14384, + 14386 + ]], + [[ + 14383, + 14365, + 14391 + ]], + [[ + 14388, + 14344, + 14351 + ]], + [[ + 14392, + 14393, + 14391 + ]], + [[ + 14392, + 14365, + 14394 + ]], + [[ + 14365, + 14392, + 14391 + ]], + [[ + 14365, + 14367, + 14394 + ]], + [[ + 14395, + 14371, + 14382 + ]], + [[ + 14393, + 14396, + 14397 + ]], + [[ + 14386, + 14385, + 14379 + ]], + [[ + 14385, + 14395, + 14355 + ]], + [[ + 14390, + 14385, + 14384 + ]], + [[ + 14390, + 14395, + 14385 + ]], + [[ + 14386, + 14377, + 14375 + ]], + [[ + 14386, + 14379, + 14377 + ]], + [[ + 14396, + 14398, + 14397 + ]], + [[ + 14367, + 14399, + 14398 + ]], + [[ + 14392, + 14394, + 14393 + ]], + [[ + 14367, + 14398, + 14394 + ]], + [[ + 14370, + 14389, + 14364 + ]], + [[ + 14372, + 14384, + 14389 + ]], + [[ + 14368, + 14352, + 14345 + ]], + [[ + 14399, + 14367, + 14360 + ]], + [[ + 14399, + 14360, + 14352 + ]], + [[ + 14367, + 14341, + 14360 + ]], + [[ + 14355, + 14356, + 14379 + ]], + [[ + 8707, + 14378, + 14356 + ]], + [[ + 14382, + 14370, + 14365 + ]], + [[ + 14372, + 14389, + 14370 + ]], + [[ + 14382, + 14371, + 14370 + ]], + [[ + 14390, + 14372, + 14371 + ]], + [[ + 14337, + 14349, + 14348 + ]], + [[ + 14366, + 14333, + 8708 + ]], + [[ + 14366, + 14347, + 14349 + ]], + [[ + 14373, + 14354, + 14347 + ]], + [[ + 8707, + 14362, + 8708 + ]], + [[ + 14397, + 14391, + 14393 + ]], + [[ + 14339, + 14387, + 14351 + ]], + [[ + 14339, + 14380, + 14381 + ]], + [[ + 14373, + 14380, + 14354 + ]], + [[ + 14373, + 8708, + 14380 + ]], + [[ + 14389, + 14376, + 14364 + ]], + [[ + 14375, + 14342, + 14376 + ]], + [[ + 8707, + 14382, + 14362 + ]], + [[ + 14395, + 14390, + 14371 + ]], + [[ + 8707, + 14395, + 14382 + ]], + [[ + 8707, + 14355, + 14395 + ]], + [[ + 14363, + 14368, + 14345 + ]], + [[ + 14362, + 14369, + 14368 + ]], + [[ + 14337, + 14335, + 14349 + ]], + [[ + 14337, + 14336, + 14335 + ]], + [[ + 14347, + 14366, + 8708 + ]], + [[ + 14335, + 14333, + 14366 + ]], + [[ + 14394, + 14396, + 14393 + ]], + [[ + 14394, + 14398, + 14396 + ]], + [[ + 14369, + 14399, + 14352 + ]], + [[ + 14369, + 14398, + 14399 + ]], + [[ + 14369, + 14397, + 14398 + ]], + [[ + 14383, + 14391, + 14397 + ]], + [[ + 14369, + 14383, + 14397 + ]], + [[ + 14382, + 14365, + 14383 + ]], + [[ + 14344, + 14388, + 14345 + ]], + [[ + 14362, + 14368, + 14363 + ]], + [[ + 14370, + 14364, + 14365 + ]], + [[ + 14376, + 14342, + 14364 + ]], + [[ + 14345, + 14388, + 14363 + ]], + [[ + 14381, + 14380, + 14362 + ]], + [[ + 14361, + 14388, + 14387 + ]], + [[ + 14361, + 14363, + 14388 + ]], + [[ + 14387, + 14381, + 14361 + ]], + [[ + 14387, + 14339, + 14381 + ]], + [[ + 8707, + 8710, + 14342 + ]], + [[ + 8792, + 8708, + 14334 + ]], + [[ + 14342, + 8792, + 14334 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e580e10-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb7249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14400, + 10084, + 10083 + ]], + [[ + 10121, + 14400, + 10122 + ]], + [[ + 10122, + 14400, + 10124 + ]], + [[ + 10124, + 14400, + 10125 + ]], + [[ + 10125, + 14400, + 10127 + ]], + [[ + 10127, + 14400, + 10128 + ]], + [[ + 10128, + 14400, + 10130 + ]], + [[ + 10130, + 14400, + 10131 + ]], + [[ + 10131, + 14400, + 10332 + ]], + [[ + 10332, + 14400, + 10133 + ]], + [[ + 10133, + 14400, + 10134 + ]], + [[ + 10134, + 14400, + 10339 + ]], + [[ + 10339, + 14400, + 14401 + ]], + [[ + 10338, + 10339, + 14401 + ]], + [[ + 10337, + 10338, + 14401 + ]], + [[ + 10149, + 10337, + 14401 + ]], + [[ + 14401, + 14402, + 14403 + ]], + [[ + 10335, + 14401, + 10336 + ]], + [[ + 10336, + 14401, + 10399 + ]], + [[ + 10334, + 14401, + 14403 + ]], + [[ + 10398, + 10399, + 14401 + ]], + [[ + 10333, + 10398, + 14401 + ]], + [[ + 10334, + 10333, + 14401 + ]], + [[ + 10276, + 14404, + 10278 + ]], + [[ + 10404, + 10385, + 14403 + ]], + [[ + 10409, + 10404, + 14403 + ]], + [[ + 10326, + 10409, + 14403 + ]], + [[ + 14403, + 14402, + 14404 + ]], + [[ + 10322, + 14403, + 10320 + ]], + [[ + 10320, + 14403, + 10258 + ]], + [[ + 10258, + 14403, + 10261 + ]], + [[ + 10261, + 14403, + 10263 + ]], + [[ + 10263, + 14403, + 10265 + ]], + [[ + 10269, + 14403, + 14404 + ]], + [[ + 10267, + 10265, + 14403 + ]], + [[ + 10269, + 10267, + 14403 + ]], + [[ + 10274, + 10269, + 14404 + ]], + [[ + 10276, + 10274, + 14404 + ]], + [[ + 10250, + 14404, + 10135 + ]], + [[ + 10174, + 10278, + 14404 + ]], + [[ + 10279, + 10174, + 14404 + ]], + [[ + 10138, + 10279, + 14404 + ]], + [[ + 10139, + 10138, + 14404 + ]], + [[ + 10248, + 10139, + 14404 + ]], + [[ + 10250, + 10248, + 14404 + ]], + [[ + 10117, + 14400, + 10119 + ]], + [[ + 10136, + 10135, + 14404 + ]], + [[ + 10252, + 10136, + 14404 + ]], + [[ + 14404, + 14402, + 14400 + ]], + [[ + 10309, + 14404, + 10286 + ]], + [[ + 10286, + 14404, + 10289 + ]], + [[ + 10289, + 14404, + 10177 + ]], + [[ + 10177, + 14404, + 10290 + ]], + [[ + 10290, + 14404, + 10293 + ]], + [[ + 10293, + 14404, + 10297 + ]], + [[ + 10297, + 14404, + 10307 + ]], + [[ + 10307, + 14404, + 10298 + ]], + [[ + 10298, + 14404, + 10303 + ]], + [[ + 10303, + 14404, + 10305 + ]], + [[ + 10305, + 14404, + 10272 + ]], + [[ + 10272, + 14404, + 10313 + ]], + [[ + 10313, + 14404, + 10312 + ]], + [[ + 10312, + 14404, + 10311 + ]], + [[ + 10311, + 14404, + 10310 + ]], + [[ + 10310, + 14404, + 10283 + ]], + [[ + 10283, + 14404, + 10284 + ]], + [[ + 10284, + 14404, + 10306 + ]], + [[ + 10306, + 14404, + 10304 + ]], + [[ + 10304, + 14404, + 10301 + ]], + [[ + 10273, + 14404, + 14400 + ]], + [[ + 10273, + 10301, + 14404 + ]], + [[ + 10295, + 10273, + 14400 + ]], + [[ + 10292, + 10295, + 14400 + ]], + [[ + 10080, + 10292, + 14400 + ]], + [[ + 10081, + 10080, + 14400 + ]], + [[ + 10285, + 10081, + 14400 + ]], + [[ + 10088, + 10285, + 14400 + ]], + [[ + 10090, + 10088, + 14400 + ]], + [[ + 10096, + 10090, + 14400 + ]], + [[ + 10097, + 10096, + 14400 + ]], + [[ + 10099, + 10097, + 14400 + ]], + [[ + 10101, + 10099, + 14400 + ]], + [[ + 10106, + 10101, + 14400 + ]], + [[ + 10104, + 10106, + 14400 + ]], + [[ + 10107, + 10104, + 14400 + ]], + [[ + 10109, + 10107, + 14400 + ]], + [[ + 10111, + 10109, + 14400 + ]], + [[ + 10113, + 10111, + 14400 + ]], + [[ + 10115, + 10113, + 14400 + ]], + [[ + 10117, + 10115, + 14400 + ]], + [[ + 10385, + 10334, + 14403 + ]], + [[ + 14400, + 10083, + 10119 + ]], + [[ + 14401, + 14400, + 14402 + ]], + [[ + 10121, + 10084, + 14400 + ]], + [[ + 10253, + 14404, + 10309 + ]], + [[ + 10253, + 10252, + 14404 + ]], + [[ + 10323, + 14403, + 10322 + ]], + [[ + 10323, + 10326, + 14403 + ]], + [[ + 10150, + 14401, + 10335 + ]], + [[ + 10150, + 10149, + 14401 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e58829a-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba4e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14405, + 14406, + 14407 + ]], + [[ + 14408, + 14409, + 14410 + ]], + [[ + 14409, + 14411, + 14405 + ]], + [[ + 14412, + 14406, + 14405 + ]], + [[ + 14413, + 14414, + 14410 + ]], + [[ + 14410, + 14414, + 14408 + ]], + [[ + 14408, + 14414, + 14411 + ]], + [[ + 14413, + 14406, + 14412 + ]], + [[ + 14409, + 14405, + 14407 + ]], + [[ + 14412, + 14414, + 14413 + ]], + [[ + 14411, + 14415, + 14405 + ]], + [[ + 14411, + 14414, + 14415 + ]], + [[ + 14416, + 14412, + 14405 + ]], + [[ + 14416, + 14414, + 14412 + ]], + [[ + 14410, + 14409, + 14407 + ]], + [[ + 14408, + 14411, + 14409 + ]], + [[ + 14415, + 14416, + 14405 + ]], + [[ + 14415, + 14414, + 14416 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e58d102-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14417, + 14418, + 14419 + ]], + [[ + 14420, + 14419, + 14421 + ]], + [[ + 14422, + 14423, + 14424 + ]], + [[ + 14425, + 14418, + 14417 + ]], + [[ + 14426, + 14427, + 14424 + ]], + [[ + 14426, + 14428, + 14429 + ]], + [[ + 14430, + 14431, + 14417 + ]], + [[ + 14425, + 14432, + 14418 + ]], + [[ + 14429, + 14432, + 14425 + ]], + [[ + 14433, + 14418, + 14432 + ]], + [[ + 14434, + 14425, + 14431 + ]], + [[ + 14427, + 14426, + 14425 + ]], + [[ + 14430, + 14434, + 14431 + ]], + [[ + 14427, + 14425, + 14434 + ]], + [[ + 14420, + 14435, + 14430 + ]], + [[ + 14424, + 14434, + 14435 + ]], + [[ + 14424, + 14423, + 14426 + ]], + [[ + 14433, + 14432, + 14436 + ]], + [[ + 14423, + 14428, + 14426 + ]], + [[ + 14436, + 14432, + 14428 + ]], + [[ + 14422, + 14424, + 14437 + ]], + [[ + 14427, + 14434, + 14424 + ]], + [[ + 14433, + 14422, + 14421 + ]], + [[ + 14424, + 14435, + 14437 + ]], + [[ + 14438, + 14422, + 14437 + ]], + [[ + 14423, + 14436, + 14428 + ]], + [[ + 14426, + 14429, + 14425 + ]], + [[ + 14428, + 14432, + 14429 + ]], + [[ + 14438, + 14435, + 14420 + ]], + [[ + 14435, + 14434, + 14430 + ]], + [[ + 14438, + 14420, + 14421 + ]], + [[ + 14430, + 14419, + 14420 + ]], + [[ + 14422, + 14438, + 14421 + ]], + [[ + 14437, + 14435, + 14438 + ]], + [[ + 14433, + 14423, + 14422 + ]], + [[ + 14433, + 14436, + 14423 + ]], + [[ + 14430, + 14417, + 14419 + ]], + [[ + 14431, + 14425, + 14417 + ]], + [[ + 14419, + 14439, + 14421 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e5993eb-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14440, + 14441, + 14442 + ]], + [[ + 14443, + 14444, + 14445 + ]], + [[ + 14443, + 14446, + 14444 + ]], + [[ + 14447, + 14448, + 14444 + ]], + [[ + 14449, + 14450, + 14443 + ]], + [[ + 14446, + 14447, + 14444 + ]], + [[ + 14451, + 14449, + 14445 + ]], + [[ + 14452, + 14448, + 14441 + ]], + [[ + 14440, + 14453, + 14454 + ]], + [[ + 14455, + 14456, + 14457 + ]], + [[ + 14454, + 14457, + 14443 + ]], + [[ + 14458, + 14459, + 14457 + ]], + [[ + 14458, + 14456, + 14453 + ]], + [[ + 14458, + 14457, + 14456 + ]], + [[ + 14447, + 14458, + 14460 + ]], + [[ + 14459, + 14446, + 14443 + ]], + [[ + 14449, + 14443, + 14445 + ]], + [[ + 14457, + 14459, + 14443 + ]], + [[ + 14444, + 14452, + 14445 + ]], + [[ + 14444, + 14448, + 14452 + ]], + [[ + 14450, + 14454, + 14443 + ]], + [[ + 14453, + 14456, + 14455 + ]], + [[ + 14447, + 14461, + 14459 + ]], + [[ + 14447, + 14446, + 14461 + ]], + [[ + 14454, + 14453, + 14455 + ]], + [[ + 14460, + 14458, + 14453 + ]], + [[ + 14452, + 14451, + 14445 + ]], + [[ + 14462, + 14450, + 14449 + ]], + [[ + 14440, + 14450, + 14462 + ]], + [[ + 14454, + 14455, + 14457 + ]], + [[ + 14440, + 14454, + 14450 + ]], + [[ + 14440, + 14460, + 14453 + ]], + [[ + 14463, + 14451, + 14452 + ]], + [[ + 14462, + 14449, + 14451 + ]], + [[ + 14441, + 14440, + 14462 + ]], + [[ + 14442, + 14460, + 14440 + ]], + [[ + 14447, + 14459, + 14458 + ]], + [[ + 14461, + 14446, + 14459 + ]], + [[ + 14451, + 14463, + 14462 + ]], + [[ + 14448, + 14442, + 14441 + ]], + [[ + 14441, + 14463, + 14452 + ]], + [[ + 14441, + 14462, + 14463 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e5aa630-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efe6f749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14464, + 12663, + 3215 + ]], + [[ + 14465, + 14466, + 14467 + ]], + [[ + 14468, + 14465, + 14467 + ]], + [[ + 14469, + 3213, + 3168 + ]], + [[ + 14470, + 14471, + 14472 + ]], + [[ + 14473, + 3214, + 12663 + ]], + [[ + 14474, + 14475, + 3048 + ]], + [[ + 14476, + 12663, + 14477 + ]], + [[ + 14478, + 14479, + 14480 + ]], + [[ + 14481, + 14482, + 14483 + ]], + [[ + 14484, + 14485, + 14486 + ]], + [[ + 14487, + 14488, + 14489 + ]], + [[ + 14485, + 14487, + 14490 + ]], + [[ + 14491, + 14492, + 14493 + ]], + [[ + 14488, + 14487, + 14494 + ]], + [[ + 14495, + 14472, + 14496 + ]], + [[ + 14482, + 14472, + 14495 + ]], + [[ + 14491, + 14479, + 14034 + ]], + [[ + 14497, + 14498, + 14483 + ]], + [[ + 14499, + 3214, + 14473 + ]], + [[ + 14493, + 14492, + 14500 + ]], + [[ + 14494, + 14487, + 3214 + ]], + [[ + 14481, + 14483, + 14499 + ]], + [[ + 14499, + 14483, + 14498 + ]], + [[ + 14471, + 14501, + 14496 + ]], + [[ + 14482, + 14481, + 14472 + ]], + [[ + 3049, + 14468, + 3215 + ]], + [[ + 3049, + 3048, + 14468 + ]], + [[ + 14502, + 14503, + 14504 + ]], + [[ + 14505, + 14479, + 14478 + ]], + [[ + 14491, + 14482, + 14501 + ]], + [[ + 14506, + 14488, + 14494 + ]], + [[ + 14482, + 14497, + 14483 + ]], + [[ + 14484, + 14486, + 14469 + ]], + [[ + 14491, + 14501, + 14492 + ]], + [[ + 14501, + 14495, + 14496 + ]], + [[ + 14500, + 14470, + 14493 + ]], + [[ + 14507, + 14479, + 14508 + ]], + [[ + 14476, + 14504, + 12663 + ]], + [[ + 14503, + 14478, + 14504 + ]], + [[ + 14509, + 14476, + 14477 + ]], + [[ + 14502, + 14504, + 14476 + ]], + [[ + 14510, + 14507, + 14473 + ]], + [[ + 14499, + 14498, + 14494 + ]], + [[ + 14472, + 14481, + 14499 + ]], + [[ + 14498, + 14497, + 14506 + ]], + [[ + 14511, + 14500, + 14492 + ]], + [[ + 14511, + 14471, + 14500 + ]], + [[ + 14512, + 14513, + 14491 + ]], + [[ + 14470, + 14514, + 14512 + ]], + [[ + 3214, + 14484, + 3168 + ]], + [[ + 14486, + 14515, + 14469 + ]], + [[ + 14489, + 14490, + 14487 + ]], + [[ + 14515, + 14486, + 14490 + ]], + [[ + 14486, + 14485, + 14490 + ]], + [[ + 3214, + 14487, + 14485 + ]], + [[ + 14471, + 14511, + 14501 + ]], + [[ + 14492, + 14501, + 14511 + ]], + [[ + 14472, + 14499, + 14470 + ]], + [[ + 14494, + 3214, + 14499 + ]], + [[ + 14478, + 14480, + 12663 + ]], + [[ + 14507, + 14508, + 14473 + ]], + [[ + 14474, + 14502, + 14476 + ]], + [[ + 14516, + 14503, + 14502 + ]], + [[ + 14517, + 14466, + 14475 + ]], + [[ + 14509, + 14518, + 14476 + ]], + [[ + 14464, + 14519, + 14477 + ]], + [[ + 14518, + 14474, + 14476 + ]], + [[ + 14480, + 14507, + 14510 + ]], + [[ + 14520, + 14470, + 14473 + ]], + [[ + 14493, + 14512, + 14491 + ]], + [[ + 14508, + 14479, + 14513 + ]], + [[ + 3048, + 14465, + 14468 + ]], + [[ + 3048, + 14466, + 14465 + ]], + [[ + 14034, + 14474, + 3048 + ]], + [[ + 14034, + 14516, + 14474 + ]], + [[ + 14519, + 14475, + 14477 + ]], + [[ + 14521, + 14522, + 14517 + ]], + [[ + 14477, + 14475, + 14509 + ]], + [[ + 14475, + 14474, + 14518 + ]], + [[ + 14504, + 14478, + 12663 + ]], + [[ + 14503, + 14516, + 14505 + ]], + [[ + 14503, + 14505, + 14478 + ]], + [[ + 14034, + 14479, + 14505 + ]], + [[ + 3213, + 14497, + 14482 + ]], + [[ + 14515, + 14489, + 14497 + ]], + [[ + 14498, + 14506, + 14494 + ]], + [[ + 14497, + 14488, + 14506 + ]], + [[ + 14497, + 14489, + 14488 + ]], + [[ + 14515, + 14490, + 14489 + ]], + [[ + 12663, + 14480, + 14510 + ]], + [[ + 14479, + 14507, + 14480 + ]], + [[ + 14508, + 14514, + 14520 + ]], + [[ + 14508, + 14513, + 14514 + ]], + [[ + 14474, + 14516, + 14502 + ]], + [[ + 14034, + 14505, + 14516 + ]], + [[ + 14468, + 14467, + 3215 + ]], + [[ + 14517, + 14475, + 14521 + ]], + [[ + 3213, + 14482, + 14491 + ]], + [[ + 14482, + 14495, + 14501 + ]], + [[ + 14472, + 14471, + 14496 + ]], + [[ + 14470, + 14500, + 14471 + ]], + [[ + 14479, + 14491, + 14513 + ]], + [[ + 14034, + 3213, + 14491 + ]], + [[ + 3168, + 14484, + 14469 + ]], + [[ + 3214, + 14485, + 14484 + ]], + [[ + 14509, + 14475, + 14518 + ]], + [[ + 14466, + 3048, + 14475 + ]], + [[ + 12663, + 14464, + 14477 + ]], + [[ + 3215, + 14467, + 14522 + ]], + [[ + 14519, + 14521, + 14475 + ]], + [[ + 14519, + 14464, + 14521 + ]], + [[ + 14522, + 14464, + 3215 + ]], + [[ + 14522, + 14521, + 14464 + ]], + [[ + 3213, + 14515, + 14497 + ]], + [[ + 3213, + 14469, + 14515 + ]], + [[ + 14467, + 14517, + 14522 + ]], + [[ + 14467, + 14466, + 14517 + ]], + [[ + 14510, + 14473, + 12663 + ]], + [[ + 14470, + 14499, + 14473 + ]], + [[ + 14508, + 14520, + 14473 + ]], + [[ + 14514, + 14470, + 14520 + ]], + [[ + 14470, + 14512, + 14493 + ]], + [[ + 14514, + 14513, + 14512 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e5b9032-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14523, + 14524, + 14525 + ]], + [[ + 14526, + 14527, + 14528 + ]], + [[ + 14529, + 14530, + 14523 + ]], + [[ + 14531, + 14532, + 14533 + ]], + [[ + 14534, + 14535, + 14536 + ]], + [[ + 14537, + 14538, + 14539 + ]], + [[ + 14540, + 14530, + 14529 + ]], + [[ + 14533, + 14532, + 14527 + ]], + [[ + 14526, + 14529, + 14523 + ]], + [[ + 14523, + 14525, + 14526 + ]], + [[ + 14536, + 14540, + 14528 + ]], + [[ + 14535, + 14530, + 14540 + ]], + [[ + 14530, + 14524, + 14523 + ]], + [[ + 14530, + 14535, + 14537 + ]], + [[ + 14541, + 14542, + 14539 + ]], + [[ + 14543, + 14532, + 14539 + ]], + [[ + 14544, + 14537, + 14535 + ]], + [[ + 14545, + 14538, + 14537 + ]], + [[ + 14542, + 14537, + 14539 + ]], + [[ + 14538, + 14543, + 14539 + ]], + [[ + 14531, + 14546, + 14547 + ]], + [[ + 14539, + 14532, + 14541 + ]], + [[ + 14525, + 14533, + 14527 + ]], + [[ + 14547, + 14542, + 14541 + ]], + [[ + 14526, + 14525, + 14527 + ]], + [[ + 14524, + 14546, + 14525 + ]], + [[ + 14534, + 14544, + 14535 + ]], + [[ + 14543, + 14545, + 14544 + ]], + [[ + 14530, + 14542, + 14524 + ]], + [[ + 14530, + 14537, + 14542 + ]], + [[ + 14525, + 14546, + 14533 + ]], + [[ + 14547, + 14541, + 14532 + ]], + [[ + 14534, + 14536, + 14528 + ]], + [[ + 14535, + 14540, + 14536 + ]], + [[ + 14533, + 14546, + 14531 + ]], + [[ + 14524, + 14542, + 14546 + ]], + [[ + 14531, + 14547, + 14532 + ]], + [[ + 14546, + 14542, + 14547 + ]], + [[ + 14543, + 14534, + 14528 + ]], + [[ + 14543, + 14544, + 14534 + ]], + [[ + 14544, + 14545, + 14537 + ]], + [[ + 14543, + 14538, + 14545 + ]], + [[ + 14540, + 14526, + 14528 + ]], + [[ + 14540, + 14529, + 14526 + ]], + [[ + 14548, + 14532, + 14543 + ]], + [[ + 14527, + 14549, + 14528 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e5bb778-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1012, + 1014, + 14550 + ]], + [[ + 14551, + 1009, + 1022 + ]], + [[ + 14551, + 14550, + 1009 + ]], + [[ + 1014, + 1009, + 14550 + ]], + [[ + 1012, + 14551, + 1022 + ]], + [[ + 1012, + 14550, + 14551 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e5cc8bd-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14552, + 14553, + 14554 + ]], + [[ + 14555, + 14556, + 14557 + ]], + [[ + 14558, + 14559, + 14555 + ]], + [[ + 14560, + 14561, + 14562 + ]], + [[ + 14563, + 14557, + 14564 + ]], + [[ + 14556, + 14565, + 14557 + ]], + [[ + 14566, + 14567, + 14568 + ]], + [[ + 14566, + 14569, + 14570 + ]], + [[ + 14562, + 14571, + 14560 + ]], + [[ + 14563, + 14564, + 14560 + ]], + [[ + 14572, + 14573, + 14574 + ]], + [[ + 14575, + 14576, + 14559 + ]], + [[ + 14566, + 14568, + 14554 + ]], + [[ + 14568, + 14577, + 14578 + ]], + [[ + 14579, + 14552, + 14554 + ]], + [[ + 14579, + 14578, + 14552 + ]], + [[ + 14554, + 14568, + 14578 + ]], + [[ + 14580, + 14558, + 14557 + ]], + [[ + 14576, + 14577, + 14559 + ]], + [[ + 14568, + 14567, + 14581 + ]], + [[ + 14568, + 14581, + 14577 + ]], + [[ + 14570, + 14569, + 14565 + ]], + [[ + 14582, + 14578, + 14577 + ]], + [[ + 14579, + 14554, + 14578 + ]], + [[ + 14583, + 14584, + 14585 + ]], + [[ + 14586, + 14578, + 14587 + ]], + [[ + 14553, + 14584, + 14563 + ]], + [[ + 14588, + 14580, + 14563 + ]], + [[ + 14587, + 14589, + 14575 + ]], + [[ + 14589, + 14578, + 14582 + ]], + [[ + 14558, + 14575, + 14559 + ]], + [[ + 14582, + 14577, + 14576 + ]], + [[ + 14571, + 14553, + 14563 + ]], + [[ + 14590, + 14583, + 14591 + ]], + [[ + 14585, + 14586, + 14583 + ]], + [[ + 14552, + 14578, + 14586 + ]], + [[ + 14580, + 14572, + 14574 + ]], + [[ + 14592, + 14584, + 14573 + ]], + [[ + 14580, + 14588, + 14572 + ]], + [[ + 14588, + 14584, + 14592 + ]], + [[ + 14558, + 14580, + 14591 + ]], + [[ + 14557, + 14563, + 14580 + ]], + [[ + 14583, + 14590, + 14584 + ]], + [[ + 14572, + 14592, + 14573 + ]], + [[ + 14584, + 14588, + 14563 + ]], + [[ + 14592, + 14572, + 14588 + ]], + [[ + 14575, + 14589, + 14582 + ]], + [[ + 14587, + 14578, + 14589 + ]], + [[ + 14577, + 14581, + 14559 + ]], + [[ + 14567, + 14566, + 14581 + ]], + [[ + 14581, + 14555, + 14559 + ]], + [[ + 14570, + 14556, + 14555 + ]], + [[ + 14557, + 14558, + 14555 + ]], + [[ + 14591, + 14575, + 14558 + ]], + [[ + 14587, + 14583, + 14586 + ]], + [[ + 14587, + 14591, + 14583 + ]], + [[ + 14554, + 14553, + 14562 + ]], + [[ + 14585, + 14584, + 14553 + ]], + [[ + 14552, + 14585, + 14553 + ]], + [[ + 14552, + 14586, + 14585 + ]], + [[ + 14576, + 14575, + 14582 + ]], + [[ + 14591, + 14587, + 14575 + ]], + [[ + 14581, + 14570, + 14555 + ]], + [[ + 14581, + 14566, + 14570 + ]], + [[ + 14565, + 14564, + 14557 + ]], + [[ + 14569, + 14561, + 14564 + ]], + [[ + 14563, + 14560, + 14571 + ]], + [[ + 14564, + 14561, + 14560 + ]], + [[ + 14580, + 14574, + 14591 + ]], + [[ + 14573, + 14584, + 14574 + ]], + [[ + 14570, + 14565, + 14556 + ]], + [[ + 14569, + 14564, + 14565 + ]], + [[ + 14554, + 14562, + 14561 + ]], + [[ + 14553, + 14571, + 14562 + ]], + [[ + 14574, + 14590, + 14591 + ]], + [[ + 14574, + 14584, + 14590 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b8e5e0130-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1ae49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14593, + 13701, + 14594 + ]], + [[ + 14595, + 13700, + 14596 + ]], + [[ + 14596, + 14597, + 14595 + ]], + [[ + 14598, + 14599, + 14600 + ]], + [[ + 14601, + 13700, + 14602 + ]], + [[ + 14600, + 13702, + 13701 + ]], + [[ + 14603, + 14604, + 14605 + ]], + [[ + 14606, + 14607, + 14608 + ]], + [[ + 13701, + 14593, + 14609 + ]], + [[ + 14610, + 14611, + 14612 + ]], + [[ + 14613, + 14605, + 14614 + ]], + [[ + 14615, + 14604, + 14616 + ]], + [[ + 14617, + 14618, + 14607 + ]], + [[ + 14619, + 14604, + 14603 + ]], + [[ + 14600, + 14599, + 13702 + ]], + [[ + 14617, + 14607, + 14620 + ]], + [[ + 14609, + 14600, + 13701 + ]], + [[ + 14609, + 14598, + 14600 + ]], + [[ + 14614, + 14605, + 14604 + ]], + [[ + 14621, + 14603, + 14605 + ]], + [[ + 14595, + 14612, + 13700 + ]], + [[ + 14611, + 14594, + 13700 + ]], + [[ + 14622, + 14602, + 14615 + ]], + [[ + 13700, + 13699, + 14613 + ]], + [[ + 14623, + 14614, + 14604 + ]], + [[ + 14602, + 13700, + 14613 + ]], + [[ + 14606, + 14608, + 14619 + ]], + [[ + 14608, + 14624, + 14619 + ]], + [[ + 14597, + 14625, + 14616 + ]], + [[ + 14602, + 14614, + 14623 + ]], + [[ + 14609, + 14610, + 14616 + ]], + [[ + 14609, + 14593, + 14610 + ]], + [[ + 14612, + 14611, + 13700 + ]], + [[ + 14594, + 13701, + 13700 + ]], + [[ + 14625, + 14615, + 14616 + ]], + [[ + 14622, + 14601, + 14602 + ]], + [[ + 14595, + 14597, + 14616 + ]], + [[ + 14596, + 14625, + 14597 + ]], + [[ + 14602, + 14613, + 14614 + ]], + [[ + 14621, + 14605, + 14613 + ]], + [[ + 14610, + 14594, + 14611 + ]], + [[ + 14610, + 14593, + 14594 + ]], + [[ + 14610, + 14595, + 14616 + ]], + [[ + 14610, + 14612, + 14595 + ]], + [[ + 13702, + 14620, + 13699 + ]], + [[ + 13702, + 14599, + 14618 + ]], + [[ + 14625, + 14622, + 14615 + ]], + [[ + 14625, + 14596, + 14622 + ]], + [[ + 14598, + 14618, + 14599 + ]], + [[ + 14598, + 14624, + 14618 + ]], + [[ + 13702, + 14617, + 14620 + ]], + [[ + 13702, + 14618, + 14617 + ]], + [[ + 13699, + 14621, + 14613 + ]], + [[ + 13699, + 14603, + 14621 + ]], + [[ + 14615, + 14623, + 14604 + ]], + [[ + 14615, + 14602, + 14623 + ]], + [[ + 14618, + 14624, + 14607 + ]], + [[ + 14598, + 14604, + 14624 + ]], + [[ + 13699, + 14606, + 14603 + ]], + [[ + 14607, + 14624, + 14608 + ]], + [[ + 14620, + 14606, + 13699 + ]], + [[ + 14620, + 14607, + 14606 + ]], + [[ + 14596, + 14601, + 14622 + ]], + [[ + 14596, + 13700, + 14601 + ]], + [[ + 14606, + 14619, + 14603 + ]], + [[ + 14624, + 14604, + 14619 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95c79603-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14626, + 14627, + 14628 + ]], + [[ + 14629, + 14630, + 14631 + ]], + [[ + 14629, + 14632, + 14630 + ]], + [[ + 14633, + 14630, + 14634 + ]], + [[ + 14632, + 14635, + 14636 + ]], + [[ + 14637, + 14638, + 14639 + ]], + [[ + 14640, + 14641, + 14642 + ]], + [[ + 14643, + 14644, + 14645 + ]], + [[ + 14646, + 14647, + 14626 + ]], + [[ + 14648, + 14649, + 14633 + ]], + [[ + 14650, + 14649, + 14651 + ]], + [[ + 14651, + 14630, + 14650 + ]], + [[ + 14652, + 14653, + 14654 + ]], + [[ + 14655, + 14636, + 14656 + ]], + [[ + 14657, + 14658, + 14659 + ]], + [[ + 14660, + 14644, + 14643 + ]], + [[ + 14661, + 14658, + 14662 + ]], + [[ + 14663, + 14635, + 14664 + ]], + [[ + 14661, + 14659, + 14658 + ]], + [[ + 14656, + 14635, + 14663 + ]], + [[ + 14665, + 14641, + 14666 + ]], + [[ + 14640, + 14662, + 14667 + ]], + [[ + 14668, + 14638, + 14669 + ]], + [[ + 14659, + 14670, + 14660 + ]], + [[ + 14671, + 14642, + 14672 + ]], + [[ + 14642, + 14641, + 14673 + ]], + [[ + 14674, + 14647, + 14646 + ]], + [[ + 14675, + 14676, + 14653 + ]], + [[ + 14634, + 14648, + 14633 + ]], + [[ + 14634, + 14632, + 14636 + ]], + [[ + 14626, + 14663, + 14627 + ]], + [[ + 14655, + 14652, + 14677 + ]], + [[ + 14640, + 14678, + 14666 + ]], + [[ + 14654, + 14657, + 14677 + ]], + [[ + 14675, + 14653, + 14656 + ]], + [[ + 14667, + 14658, + 14657 + ]], + [[ + 14679, + 14680, + 14681 + ]], + [[ + 14638, + 14672, + 14673 + ]], + [[ + 14679, + 14681, + 14674 + ]], + [[ + 14682, + 14683, + 14669 + ]], + [[ + 14648, + 14655, + 14649 + ]], + [[ + 14657, + 14659, + 14651 + ]], + [[ + 14651, + 14649, + 14657 + ]], + [[ + 14677, + 14657, + 14649 + ]], + [[ + 14649, + 14655, + 14677 + ]], + [[ + 14636, + 14635, + 14656 + ]], + [[ + 14647, + 14684, + 14685 + ]], + [[ + 14686, + 14687, + 14688 + ]], + [[ + 14689, + 14685, + 14687 + ]], + [[ + 14666, + 14689, + 14690 + ]], + [[ + 14691, + 14647, + 14685 + ]], + [[ + 14692, + 14682, + 14673 + ]], + [[ + 14638, + 14673, + 14682 + ]], + [[ + 14672, + 14642, + 14673 + ]], + [[ + 14693, + 14646, + 14694 + ]], + [[ + 14627, + 14663, + 14664 + ]], + [[ + 14629, + 14695, + 14664 + ]], + [[ + 14696, + 14626, + 14628 + ]], + [[ + 14679, + 14674, + 14693 + ]], + [[ + 14695, + 14628, + 14664 + ]], + [[ + 14697, + 14694, + 14631 + ]], + [[ + 14697, + 14693, + 14694 + ]], + [[ + 14698, + 14679, + 14697 + ]], + [[ + 14699, + 14688, + 14684 + ]], + [[ + 14659, + 14660, + 14643 + ]], + [[ + 14671, + 14672, + 14700 + ]], + [[ + 14670, + 14661, + 14701 + ]], + [[ + 14662, + 14658, + 14667 + ]], + [[ + 14626, + 14675, + 14663 + ]], + [[ + 14676, + 14689, + 14653 + ]], + [[ + 14691, + 14676, + 14675 + ]], + [[ + 14689, + 14678, + 14654 + ]], + [[ + 14686, + 14688, + 14683 + ]], + [[ + 14681, + 14680, + 14688 + ]], + [[ + 14666, + 14690, + 14665 + ]], + [[ + 14688, + 14668, + 14683 + ]], + [[ + 14678, + 14689, + 14666 + ]], + [[ + 14687, + 14684, + 14688 + ]], + [[ + 14632, + 14664, + 14635 + ]], + [[ + 14628, + 14627, + 14664 + ]], + [[ + 14645, + 14659, + 14643 + ]], + [[ + 14645, + 14651, + 14659 + ]], + [[ + 14641, + 14640, + 14666 + ]], + [[ + 14642, + 14662, + 14640 + ]], + [[ + 14688, + 14702, + 14668 + ]], + [[ + 14637, + 14703, + 14638 + ]], + [[ + 14704, + 14629, + 14631 + ]], + [[ + 14705, + 14646, + 14696 + ]], + [[ + 14705, + 14696, + 14628 + ]], + [[ + 14646, + 14626, + 14696 + ]], + [[ + 14694, + 14705, + 14704 + ]], + [[ + 14694, + 14646, + 14705 + ]], + [[ + 14694, + 14704, + 14631 + ]], + [[ + 14705, + 14628, + 14695 + ]], + [[ + 14706, + 14702, + 14680 + ]], + [[ + 14668, + 14639, + 14638 + ]], + [[ + 14680, + 14702, + 14688 + ]], + [[ + 14706, + 14639, + 14702 + ]], + [[ + 14678, + 14667, + 14654 + ]], + [[ + 14678, + 14640, + 14667 + ]], + [[ + 14631, + 14680, + 14679 + ]], + [[ + 14706, + 14707, + 14639 + ]], + [[ + 14647, + 14691, + 14675 + ]], + [[ + 14685, + 14676, + 14691 + ]], + [[ + 14692, + 14665, + 14690 + ]], + [[ + 14692, + 14641, + 14665 + ]], + [[ + 14642, + 14701, + 14662 + ]], + [[ + 14662, + 14701, + 14661 + ]], + [[ + 14633, + 14650, + 14630 + ]], + [[ + 14633, + 14649, + 14650 + ]], + [[ + 14685, + 14684, + 14708 + ]], + [[ + 14647, + 14699, + 14684 + ]], + [[ + 14685, + 14689, + 14676 + ]], + [[ + 14685, + 14708, + 14687 + ]], + [[ + 14638, + 14703, + 14672 + ]], + [[ + 14703, + 14644, + 14709 + ]], + [[ + 14671, + 14701, + 14642 + ]], + [[ + 14670, + 14659, + 14661 + ]], + [[ + 14703, + 14671, + 14700 + ]], + [[ + 14709, + 14701, + 14671 + ]], + [[ + 14672, + 14703, + 14700 + ]], + [[ + 14707, + 14644, + 14703 + ]], + [[ + 14703, + 14709, + 14671 + ]], + [[ + 14644, + 14660, + 14709 + ]], + [[ + 14709, + 14670, + 14701 + ]], + [[ + 14709, + 14660, + 14670 + ]], + [[ + 14648, + 14636, + 14655 + ]], + [[ + 14648, + 14634, + 14636 + ]], + [[ + 14683, + 14668, + 14669 + ]], + [[ + 14702, + 14639, + 14668 + ]], + [[ + 14679, + 14693, + 14697 + ]], + [[ + 14674, + 14646, + 14693 + ]], + [[ + 14626, + 14647, + 14675 + ]], + [[ + 14699, + 14681, + 14688 + ]], + [[ + 14674, + 14699, + 14647 + ]], + [[ + 14674, + 14681, + 14699 + ]], + [[ + 14631, + 14698, + 14697 + ]], + [[ + 14631, + 14679, + 14698 + ]], + [[ + 14686, + 14682, + 14690 + ]], + [[ + 14673, + 14641, + 14692 + ]], + [[ + 14675, + 14656, + 14663 + ]], + [[ + 14653, + 14655, + 14656 + ]], + [[ + 14689, + 14654, + 14653 + ]], + [[ + 14667, + 14657, + 14654 + ]], + [[ + 14677, + 14652, + 14654 + ]], + [[ + 14655, + 14653, + 14652 + ]], + [[ + 14689, + 14687, + 14686 + ]], + [[ + 14708, + 14684, + 14687 + ]], + [[ + 14682, + 14686, + 14683 + ]], + [[ + 14690, + 14689, + 14686 + ]], + [[ + 14631, + 14706, + 14680 + ]], + [[ + 14631, + 14707, + 14706 + ]], + [[ + 14704, + 14695, + 14629 + ]], + [[ + 14704, + 14705, + 14695 + ]], + [[ + 14630, + 14632, + 14634 + ]], + [[ + 14629, + 14664, + 14632 + ]], + [[ + 14644, + 14651, + 14645 + ]], + [[ + 14644, + 14630, + 14651 + ]], + [[ + 14707, + 14637, + 14639 + ]], + [[ + 14707, + 14703, + 14637 + ]], + [[ + 14638, + 14682, + 14669 + ]], + [[ + 14692, + 14690, + 14682 + ]], + [[ + 14710, + 14711, + 14707 + ]], + [[ + 14707, + 14711, + 14644 + ]], + [[ + 14631, + 14710, + 14707 + ]], + [[ + 14712, + 14631, + 14630 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95c8a81e-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb7649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14713, + 14714, + 14715 + ]], + [[ + 14716, + 14715, + 14717 + ]], + [[ + 14716, + 14718, + 14715 + ]], + [[ + 14716, + 14717, + 14719 + ]], + [[ + 14720, + 14715, + 14718 + ]], + [[ + 14714, + 14717, + 14715 + ]], + [[ + 14720, + 14713, + 14715 + ]], + [[ + 14721, + 14714, + 14713 + ]], + [[ + 14721, + 14722, + 14719 + ]], + [[ + 14721, + 14713, + 14722 + ]], + [[ + 14722, + 14716, + 14719 + ]], + [[ + 14722, + 14718, + 14716 + ]], + [[ + 14722, + 14720, + 14718 + ]], + [[ + 14722, + 14713, + 14720 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95c9e082-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb7549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14723, + 14724, + 14725 + ]], + [[ + 14726, + 14725, + 14727 + ]], + [[ + 14726, + 14723, + 14725 + ]], + [[ + 14728, + 14724, + 14723 + ]], + [[ + 14728, + 14726, + 14727 + ]], + [[ + 14728, + 14723, + 14726 + ]], + [[ + 14729, + 14724, + 14728 + ]], + [[ + 14727, + 14729, + 14728 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95cb8e76-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14730, + 14731, + 14732 + ]], + [[ + 14733, + 14732, + 14734 + ]], + [[ + 14733, + 14730, + 14732 + ]], + [[ + 14735, + 14731, + 14730 + ]], + [[ + 14735, + 14733, + 14734 + ]], + [[ + 14735, + 14730, + 14733 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95cc2a0d-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14736, + 14737, + 14738 + ]], + [[ + 14739, + 14738, + 14740 + ]], + [[ + 14737, + 14741, + 14742 + ]], + [[ + 14743, + 14738, + 14739 + ]], + [[ + 14740, + 14744, + 14739 + ]], + [[ + 14745, + 14746, + 14737 + ]], + [[ + 14747, + 14744, + 14740 + ]], + [[ + 14742, + 14741, + 14744 + ]], + [[ + 14744, + 14743, + 14739 + ]], + [[ + 14744, + 14741, + 14736 + ]], + [[ + 14743, + 14736, + 14738 + ]], + [[ + 14743, + 14744, + 14736 + ]], + [[ + 14738, + 14737, + 14746 + ]], + [[ + 14736, + 14741, + 14737 + ]], + [[ + 14747, + 14742, + 14744 + ]], + [[ + 14747, + 14745, + 14742 + ]], + [[ + 14742, + 14745, + 14737 + ]], + [[ + 14747, + 14746, + 14745 + ]], + [[ + 14738, + 14748, + 14740 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95cc786f-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8d549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14749, + 14750, + 14751 + ]], + [[ + 14752, + 14753, + 14754 + ]], + [[ + 14755, + 14756, + 14757 + ]], + [[ + 14758, + 14759, + 14760 + ]], + [[ + 14761, + 14762, + 14763 + ]], + [[ + 14752, + 14764, + 14753 + ]], + [[ + 14756, + 14765, + 14766 + ]], + [[ + 14767, + 14768, + 14769 + ]], + [[ + 14766, + 14765, + 14770 + ]], + [[ + 14771, + 14751, + 14772 + ]], + [[ + 14773, + 14757, + 14774 + ]], + [[ + 14775, + 14750, + 14749 + ]], + [[ + 14776, + 14777, + 14752 + ]], + [[ + 14772, + 14764, + 14778 + ]], + [[ + 14762, + 14752, + 14754 + ]], + [[ + 14770, + 14760, + 14779 + ]], + [[ + 14768, + 14780, + 14763 + ]], + [[ + 14763, + 14754, + 14753 + ]], + [[ + 14766, + 14775, + 14756 + ]], + [[ + 14766, + 14750, + 14775 + ]], + [[ + 14775, + 14757, + 14756 + ]], + [[ + 14762, + 14754, + 14763 + ]], + [[ + 14749, + 14781, + 14782 + ]], + [[ + 14783, + 14784, + 14785 + ]], + [[ + 14786, + 14776, + 14762 + ]], + [[ + 14749, + 14751, + 14781 + ]], + [[ + 14780, + 14787, + 14788 + ]], + [[ + 14789, + 14790, + 14783 + ]], + [[ + 14757, + 14788, + 14755 + ]], + [[ + 14757, + 14773, + 14788 + ]], + [[ + 14781, + 14784, + 14782 + ]], + [[ + 14780, + 14768, + 14791 + ]], + [[ + 14790, + 14786, + 14761 + ]], + [[ + 14781, + 14751, + 14785 + ]], + [[ + 14758, + 14768, + 14767 + ]], + [[ + 14769, + 14753, + 14792 + ]], + [[ + 14761, + 14786, + 14762 + ]], + [[ + 14789, + 14793, + 14790 + ]], + [[ + 14793, + 14789, + 14786 + ]], + [[ + 14794, + 14752, + 14777 + ]], + [[ + 14776, + 14786, + 14777 + ]], + [[ + 14761, + 14795, + 14796 + ]], + [[ + 14773, + 14782, + 14797 + ]], + [[ + 14774, + 14749, + 14782 + ]], + [[ + 14775, + 14774, + 14757 + ]], + [[ + 14775, + 14749, + 14774 + ]], + [[ + 14798, + 14794, + 14771 + ]], + [[ + 14778, + 14752, + 14794 + ]], + [[ + 14763, + 14769, + 14768 + ]], + [[ + 14763, + 14753, + 14769 + ]], + [[ + 14761, + 14796, + 14790 + ]], + [[ + 14795, + 14788, + 14773 + ]], + [[ + 14796, + 14797, + 14790 + ]], + [[ + 14796, + 14773, + 14797 + ]], + [[ + 14783, + 14799, + 14789 + ]], + [[ + 14793, + 14786, + 14790 + ]], + [[ + 14797, + 14783, + 14790 + ]], + [[ + 14789, + 14777, + 14786 + ]], + [[ + 14784, + 14783, + 14797 + ]], + [[ + 14789, + 14771, + 14794 + ]], + [[ + 14785, + 14799, + 14783 + ]], + [[ + 14771, + 14772, + 14798 + ]], + [[ + 14764, + 14792, + 14753 + ]], + [[ + 14770, + 14779, + 14750 + ]], + [[ + 14756, + 14787, + 14770 + ]], + [[ + 14756, + 14755, + 14787 + ]], + [[ + 14776, + 14752, + 14762 + ]], + [[ + 14778, + 14764, + 14752 + ]], + [[ + 14795, + 14800, + 14788 + ]], + [[ + 14787, + 14758, + 14770 + ]], + [[ + 14785, + 14771, + 14799 + ]], + [[ + 14785, + 14751, + 14771 + ]], + [[ + 14792, + 14760, + 14759 + ]], + [[ + 14770, + 14750, + 14766 + ]], + [[ + 14764, + 14779, + 14760 + ]], + [[ + 14764, + 14750, + 14779 + ]], + [[ + 14767, + 14792, + 14759 + ]], + [[ + 14764, + 14760, + 14792 + ]], + [[ + 14778, + 14798, + 14772 + ]], + [[ + 14778, + 14794, + 14798 + ]], + [[ + 14788, + 14787, + 14755 + ]], + [[ + 14791, + 14758, + 14787 + ]], + [[ + 14782, + 14784, + 14797 + ]], + [[ + 14781, + 14785, + 14784 + ]], + [[ + 14800, + 14780, + 14788 + ]], + [[ + 14761, + 14763, + 14780 + ]], + [[ + 14758, + 14767, + 14759 + ]], + [[ + 14769, + 14792, + 14767 + ]], + [[ + 14771, + 14789, + 14799 + ]], + [[ + 14794, + 14777, + 14789 + ]], + [[ + 14756, + 14770, + 14765 + ]], + [[ + 14758, + 14760, + 14770 + ]], + [[ + 14782, + 14773, + 14774 + ]], + [[ + 14796, + 14795, + 14773 + ]], + [[ + 14780, + 14791, + 14787 + ]], + [[ + 14768, + 14758, + 14791 + ]], + [[ + 14761, + 14800, + 14795 + ]], + [[ + 14761, + 14780, + 14800 + ]], + [[ + 14764, + 14801, + 14750 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95cc9f9d-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14802, + 3101, + 3166 + ]], + [[ + 14803, + 3167, + 3101 + ]], + [[ + 14804, + 14805, + 14806 + ]], + [[ + 14807, + 14808, + 14609 + ]], + [[ + 14809, + 14810, + 14811 + ]], + [[ + 14812, + 14813, + 14814 + ]], + [[ + 14815, + 13091, + 14816 + ]], + [[ + 14817, + 14818, + 14819 + ]], + [[ + 14820, + 13097, + 13086 + ]], + [[ + 14819, + 14821, + 13085 + ]], + [[ + 14822, + 14823, + 14824 + ]], + [[ + 14825, + 14826, + 14604 + ]], + [[ + 14827, + 14828, + 14829 + ]], + [[ + 14830, + 14831, + 14616 + ]], + [[ + 14808, + 14832, + 14609 + ]], + [[ + 14825, + 13090, + 14826 + ]], + [[ + 14833, + 14834, + 14835 + ]], + [[ + 14805, + 14811, + 14810 + ]], + [[ + 14805, + 14810, + 3166 + ]], + [[ + 14836, + 14837, + 14838 + ]], + [[ + 12217, + 14839, + 3166 + ]], + [[ + 14836, + 14826, + 13090 + ]], + [[ + 14806, + 14837, + 14840 + ]], + [[ + 14826, + 14841, + 14604 + ]], + [[ + 14841, + 14826, + 14837 + ]], + [[ + 14842, + 14843, + 14844 + ]], + [[ + 14836, + 14838, + 14826 + ]], + [[ + 14837, + 14826, + 14838 + ]], + [[ + 3166, + 14841, + 14806 + ]], + [[ + 14842, + 14844, + 14604 + ]], + [[ + 13083, + 14809, + 14804 + ]], + [[ + 14840, + 14837, + 14836 + ]], + [[ + 14845, + 14846, + 14847 + ]], + [[ + 14848, + 14849, + 14828 + ]], + [[ + 14850, + 14849, + 14848 + ]], + [[ + 12217, + 3159, + 14829 + ]], + [[ + 14851, + 14852, + 14827 + ]], + [[ + 14852, + 14853, + 14839 + ]], + [[ + 14806, + 13083, + 14804 + ]], + [[ + 14809, + 13083, + 14854 + ]], + [[ + 14829, + 14855, + 14830 + ]], + [[ + 14827, + 14848, + 14828 + ]], + [[ + 14616, + 14851, + 14827 + ]], + [[ + 14856, + 14846, + 14853 + ]], + [[ + 14604, + 14844, + 14857 + ]], + [[ + 14851, + 14616, + 14847 + ]], + [[ + 14839, + 14846, + 14857 + ]], + [[ + 14604, + 14857, + 14616 + ]], + [[ + 14841, + 14857, + 14843 + ]], + [[ + 14846, + 14856, + 14851 + ]], + [[ + 14858, + 14855, + 14829 + ]], + [[ + 14828, + 14849, + 14829 + ]], + [[ + 13090, + 14840, + 14836 + ]], + [[ + 13090, + 14806, + 14840 + ]], + [[ + 14857, + 14846, + 14845 + ]], + [[ + 14853, + 14852, + 14856 + ]], + [[ + 14839, + 14853, + 14846 + ]], + [[ + 14839, + 14827, + 14852 + ]], + [[ + 13090, + 13083, + 14806 + ]], + [[ + 14811, + 14805, + 14804 + ]], + [[ + 14839, + 14848, + 14827 + ]], + [[ + 12217, + 14850, + 14848 + ]], + [[ + 3166, + 14839, + 14841 + ]], + [[ + 12217, + 14848, + 14839 + ]], + [[ + 14616, + 14845, + 14847 + ]], + [[ + 14616, + 14857, + 14845 + ]], + [[ + 14809, + 14859, + 14810 + ]], + [[ + 3166, + 14810, + 14859 + ]], + [[ + 14841, + 14842, + 14604 + ]], + [[ + 14841, + 14843, + 14842 + ]], + [[ + 14846, + 14851, + 14847 + ]], + [[ + 14856, + 14852, + 14851 + ]], + [[ + 14829, + 14850, + 12217 + ]], + [[ + 14829, + 14849, + 14850 + ]], + [[ + 14804, + 14809, + 14811 + ]], + [[ + 13083, + 14860, + 14854 + ]], + [[ + 14843, + 14857, + 14844 + ]], + [[ + 14841, + 14839, + 14857 + ]], + [[ + 3166, + 14806, + 14805 + ]], + [[ + 14841, + 14837, + 14806 + ]], + [[ + 14861, + 14862, + 14823 + ]], + [[ + 14863, + 13097, + 14822 + ]], + [[ + 14864, + 14831, + 14865 + ]], + [[ + 14830, + 14616, + 14827 + ]], + [[ + 14866, + 14867, + 14868 + ]], + [[ + 14866, + 13090, + 14869 + ]], + [[ + 14870, + 14813, + 14871 + ]], + [[ + 14872, + 14609, + 14864 + ]], + [[ + 14873, + 14817, + 13085 + ]], + [[ + 14818, + 14803, + 14874 + ]], + [[ + 14822, + 14824, + 14863 + ]], + [[ + 13097, + 14874, + 14803 + ]], + [[ + 14870, + 14871, + 14875 + ]], + [[ + 14875, + 14876, + 14598 + ]], + [[ + 14877, + 14878, + 14879 + ]], + [[ + 14880, + 13091, + 14881 + ]], + [[ + 14882, + 14883, + 14884 + ]], + [[ + 14881, + 13091, + 14885 + ]], + [[ + 14812, + 14886, + 14598 + ]], + [[ + 14884, + 14883, + 14887 + ]], + [[ + 14886, + 14888, + 14889 + ]], + [[ + 14890, + 14879, + 14878 + ]], + [[ + 14858, + 14891, + 14855 + ]], + [[ + 14858, + 14829, + 3159 + ]], + [[ + 14872, + 14870, + 14892 + ]], + [[ + 14814, + 14813, + 14870 + ]], + [[ + 14865, + 14831, + 14893 + ]], + [[ + 14864, + 14616, + 14831 + ]], + [[ + 14598, + 14835, + 14604 + ]], + [[ + 14598, + 14833, + 14835 + ]], + [[ + 14867, + 14869, + 14825 + ]], + [[ + 14894, + 14835, + 14834 + ]], + [[ + 14895, + 14815, + 14833 + ]], + [[ + 14895, + 13091, + 14815 + ]], + [[ + 14867, + 14825, + 14604 + ]], + [[ + 14869, + 13090, + 14825 + ]], + [[ + 3167, + 14818, + 14817 + ]], + [[ + 14873, + 14896, + 14897 + ]], + [[ + 14877, + 14897, + 14878 + ]], + [[ + 14873, + 13085, + 14896 + ]], + [[ + 14820, + 14874, + 13097 + ]], + [[ + 14818, + 3167, + 14803 + ]], + [[ + 13085, + 14821, + 13086 + ]], + [[ + 14819, + 14874, + 14821 + ]], + [[ + 14898, + 14868, + 14867 + ]], + [[ + 14894, + 14834, + 14816 + ]], + [[ + 14899, + 14900, + 14876 + ]], + [[ + 14812, + 14598, + 14900 + ]], + [[ + 14812, + 14899, + 14813 + ]], + [[ + 14900, + 14598, + 14876 + ]], + [[ + 14854, + 14861, + 14802 + ]], + [[ + 14901, + 13097, + 14902 + ]], + [[ + 14862, + 14903, + 14823 + ]], + [[ + 14862, + 13083, + 14903 + ]], + [[ + 14833, + 14815, + 14834 + ]], + [[ + 14833, + 14598, + 14904 + ]], + [[ + 14886, + 14904, + 14598 + ]], + [[ + 14885, + 13091, + 14895 + ]], + [[ + 14885, + 14886, + 14889 + ]], + [[ + 14883, + 14905, + 14879 + ]], + [[ + 14904, + 14886, + 14885 + ]], + [[ + 14812, + 14814, + 14886 + ]], + [[ + 14877, + 14879, + 3164 + ]], + [[ + 14906, + 13085, + 13091 + ]], + [[ + 14889, + 14905, + 14881 + ]], + [[ + 14888, + 14886, + 14814 + ]], + [[ + 14879, + 14887, + 14883 + ]], + [[ + 14906, + 13091, + 14880 + ]], + [[ + 14859, + 14809, + 14854 + ]], + [[ + 13083, + 14862, + 14860 + ]], + [[ + 14802, + 14861, + 14823 + ]], + [[ + 14860, + 14862, + 14861 + ]], + [[ + 14813, + 14899, + 14876 + ]], + [[ + 14812, + 14900, + 14899 + ]], + [[ + 14907, + 14908, + 14891 + ]], + [[ + 14907, + 14865, + 14893 + ]], + [[ + 14855, + 14908, + 14830 + ]], + [[ + 14855, + 14891, + 14908 + ]], + [[ + 14829, + 14830, + 14827 + ]], + [[ + 14893, + 14831, + 14830 + ]], + [[ + 14859, + 14854, + 3166 + ]], + [[ + 14860, + 14861, + 14854 + ]], + [[ + 14909, + 14858, + 14910 + ]], + [[ + 3159, + 14872, + 14864 + ]], + [[ + 14911, + 14822, + 14901 + ]], + [[ + 14822, + 13097, + 14901 + ]], + [[ + 14911, + 14912, + 14822 + ]], + [[ + 14912, + 14823, + 14822 + ]], + [[ + 14913, + 14858, + 3159 + ]], + [[ + 14910, + 14865, + 14909 + ]], + [[ + 14813, + 14875, + 14871 + ]], + [[ + 14832, + 14598, + 14609 + ]], + [[ + 3167, + 14914, + 3164 + ]], + [[ + 14873, + 14897, + 14914 + ]], + [[ + 14823, + 14903, + 14824 + ]], + [[ + 13083, + 13097, + 14903 + ]], + [[ + 14912, + 14803, + 3101 + ]], + [[ + 14902, + 13097, + 14803 + ]], + [[ + 14909, + 14865, + 14907 + ]], + [[ + 14910, + 14913, + 14864 + ]], + [[ + 3164, + 14814, + 3159 + ]], + [[ + 3164, + 14879, + 14905 + ]], + [[ + 14819, + 14818, + 14874 + ]], + [[ + 14819, + 13085, + 14817 + ]], + [[ + 14872, + 14807, + 14609 + ]], + [[ + 14915, + 14832, + 14808 + ]], + [[ + 14803, + 14912, + 14902 + ]], + [[ + 3101, + 14802, + 14912 + ]], + [[ + 14902, + 14911, + 14901 + ]], + [[ + 14902, + 14912, + 14911 + ]], + [[ + 14904, + 14895, + 14833 + ]], + [[ + 14904, + 14885, + 14895 + ]], + [[ + 14891, + 14909, + 14907 + ]], + [[ + 14891, + 14858, + 14909 + ]], + [[ + 14807, + 14892, + 14808 + ]], + [[ + 14875, + 14598, + 14832 + ]], + [[ + 14870, + 14875, + 14832 + ]], + [[ + 14813, + 14876, + 14875 + ]], + [[ + 14892, + 14915, + 14808 + ]], + [[ + 14870, + 14832, + 14915 + ]], + [[ + 14903, + 14863, + 14824 + ]], + [[ + 14903, + 13097, + 14863 + ]], + [[ + 14879, + 14890, + 14887 + ]], + [[ + 14878, + 14897, + 14896 + ]], + [[ + 14890, + 14896, + 14906 + ]], + [[ + 14890, + 14878, + 14896 + ]], + [[ + 14914, + 14817, + 14873 + ]], + [[ + 14914, + 3167, + 14817 + ]], + [[ + 14815, + 14816, + 14834 + ]], + [[ + 13091, + 13090, + 14816 + ]], + [[ + 14868, + 14898, + 14816 + ]], + [[ + 14816, + 14898, + 14894 + ]], + [[ + 14866, + 14868, + 14816 + ]], + [[ + 14867, + 14604, + 14898 + ]], + [[ + 14835, + 14898, + 14604 + ]], + [[ + 14835, + 14894, + 14898 + ]], + [[ + 14885, + 14889, + 14881 + ]], + [[ + 14888, + 14905, + 14889 + ]], + [[ + 14814, + 14905, + 14888 + ]], + [[ + 14814, + 3164, + 14905 + ]], + [[ + 14867, + 14866, + 14869 + ]], + [[ + 14816, + 13090, + 14866 + ]], + [[ + 14821, + 14820, + 13086 + ]], + [[ + 14821, + 14874, + 14820 + ]], + [[ + 14854, + 14802, + 3166 + ]], + [[ + 14823, + 14912, + 14802 + ]], + [[ + 14910, + 14864, + 14865 + ]], + [[ + 14609, + 14616, + 14864 + ]], + [[ + 14914, + 14877, + 3164 + ]], + [[ + 14914, + 14897, + 14877 + ]], + [[ + 14864, + 14913, + 3159 + ]], + [[ + 14910, + 14858, + 14913 + ]], + [[ + 14872, + 14892, + 14807 + ]], + [[ + 14870, + 14915, + 14892 + ]], + [[ + 14882, + 14880, + 14881 + ]], + [[ + 14887, + 14890, + 14906 + ]], + [[ + 14906, + 14884, + 14887 + ]], + [[ + 14880, + 14882, + 14884 + ]], + [[ + 14908, + 14893, + 14830 + ]], + [[ + 14908, + 14907, + 14893 + ]], + [[ + 14884, + 14906, + 14880 + ]], + [[ + 14896, + 13085, + 14906 + ]], + [[ + 14814, + 14872, + 3159 + ]], + [[ + 14814, + 14870, + 14872 + ]], + [[ + 14905, + 14882, + 14881 + ]], + [[ + 14905, + 14883, + 14882 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95ce263c-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14916, + 14917, + 14918 + ]], + [[ + 14919, + 14920, + 14921 + ]], + [[ + 14921, + 14922, + 14923 + ]], + [[ + 14924, + 14925, + 14918 + ]], + [[ + 14926, + 14927, + 14928 + ]], + [[ + 14922, + 14929, + 14923 + ]], + [[ + 14930, + 14931, + 14932 + ]], + [[ + 14933, + 14917, + 14916 + ]], + [[ + 14934, + 14935, + 14936 + ]], + [[ + 14937, + 14938, + 14922 + ]], + [[ + 14939, + 14935, + 14940 + ]], + [[ + 14941, + 14942, + 14943 + ]], + [[ + 14930, + 14944, + 14945 + ]], + [[ + 14946, + 14935, + 14947 + ]], + [[ + 14920, + 14917, + 14948 + ]], + [[ + 14949, + 14950, + 14944 + ]], + [[ + 14936, + 14951, + 14952 + ]], + [[ + 14943, + 14922, + 14938 + ]], + [[ + 14953, + 14944, + 14930 + ]], + [[ + 14933, + 14954, + 14917 + ]], + [[ + 14952, + 14947, + 14936 + ]], + [[ + 14955, + 14942, + 14941 + ]], + [[ + 14946, + 14956, + 14940 + ]], + [[ + 14956, + 14957, + 14958 + ]], + [[ + 14959, + 14960, + 14956 + ]], + [[ + 14952, + 14946, + 14947 + ]], + [[ + 14955, + 14961, + 14962 + ]], + [[ + 14963, + 14959, + 14956 + ]], + [[ + 14962, + 14964, + 14951 + ]], + [[ + 14964, + 14956, + 14946 + ]], + [[ + 14961, + 14963, + 14956 + ]], + [[ + 14954, + 14933, + 14931 + ]], + [[ + 14965, + 14954, + 14931 + ]], + [[ + 14933, + 14932, + 14931 + ]], + [[ + 14966, + 14967, + 14931 + ]], + [[ + 14948, + 14917, + 14954 + ]], + [[ + 14926, + 14928, + 14957 + ]], + [[ + 14927, + 14945, + 14928 + ]], + [[ + 14960, + 14957, + 14956 + ]], + [[ + 14958, + 14950, + 14968 + ]], + [[ + 14919, + 14918, + 14920 + ]], + [[ + 14925, + 14916, + 14918 + ]], + [[ + 14921, + 14920, + 14948 + ]], + [[ + 14918, + 14917, + 14920 + ]], + [[ + 14921, + 14937, + 14922 + ]], + [[ + 14969, + 14967, + 14960 + ]], + [[ + 14967, + 14945, + 14927 + ]], + [[ + 14945, + 14950, + 14928 + ]], + [[ + 14960, + 14926, + 14957 + ]], + [[ + 14960, + 14967, + 14926 + ]], + [[ + 14970, + 14940, + 14968 + ]], + [[ + 14970, + 14939, + 14940 + ]], + [[ + 14935, + 14946, + 14940 + ]], + [[ + 14964, + 14962, + 14956 + ]], + [[ + 14956, + 14958, + 14940 + ]], + [[ + 14958, + 14928, + 14950 + ]], + [[ + 14952, + 14964, + 14946 + ]], + [[ + 14952, + 14951, + 14964 + ]], + [[ + 14942, + 14929, + 14922 + ]], + [[ + 14971, + 14925, + 14924 + ]], + [[ + 14933, + 14916, + 14932 + ]], + [[ + 14953, + 14949, + 14944 + ]], + [[ + 14972, + 14930, + 14932 + ]], + [[ + 14944, + 14950, + 14945 + ]], + [[ + 14937, + 14973, + 14938 + ]], + [[ + 14937, + 14965, + 14969 + ]], + [[ + 14971, + 14919, + 14923 + ]], + [[ + 14948, + 14937, + 14921 + ]], + [[ + 14940, + 14958, + 14968 + ]], + [[ + 14957, + 14928, + 14958 + ]], + [[ + 14947, + 14934, + 14936 + ]], + [[ + 14947, + 14935, + 14934 + ]], + [[ + 14929, + 14971, + 14923 + ]], + [[ + 14929, + 14942, + 14971 + ]], + [[ + 14923, + 14919, + 14921 + ]], + [[ + 14924, + 14918, + 14919 + ]], + [[ + 14974, + 14972, + 14925 + ]], + [[ + 14974, + 14953, + 14972 + ]], + [[ + 14972, + 14953, + 14930 + ]], + [[ + 14949, + 14970, + 14950 + ]], + [[ + 14972, + 14916, + 14925 + ]], + [[ + 14972, + 14932, + 14916 + ]], + [[ + 14936, + 14939, + 14974 + ]], + [[ + 14936, + 14935, + 14939 + ]], + [[ + 14963, + 14955, + 14941 + ]], + [[ + 14955, + 14936, + 14942 + ]], + [[ + 14938, + 14963, + 14941 + ]], + [[ + 14951, + 14936, + 14955 + ]], + [[ + 14955, + 14962, + 14951 + ]], + [[ + 14961, + 14956, + 14962 + ]], + [[ + 14919, + 14971, + 14924 + ]], + [[ + 14942, + 14925, + 14971 + ]], + [[ + 14926, + 14967, + 14927 + ]], + [[ + 14966, + 14930, + 14945 + ]], + [[ + 14969, + 14965, + 14967 + ]], + [[ + 14965, + 14931, + 14967 + ]], + [[ + 14948, + 14965, + 14937 + ]], + [[ + 14948, + 14954, + 14965 + ]], + [[ + 14959, + 14969, + 14960 + ]], + [[ + 14973, + 14937, + 14969 + ]], + [[ + 14959, + 14963, + 14938 + ]], + [[ + 14961, + 14955, + 14963 + ]], + [[ + 14950, + 14970, + 14968 + ]], + [[ + 14974, + 14939, + 14970 + ]], + [[ + 14974, + 14949, + 14953 + ]], + [[ + 14974, + 14970, + 14949 + ]], + [[ + 14959, + 14973, + 14969 + ]], + [[ + 14959, + 14938, + 14973 + ]], + [[ + 14930, + 14966, + 14931 + ]], + [[ + 14945, + 14967, + 14966 + ]], + [[ + 14941, + 14943, + 14938 + ]], + [[ + 14942, + 14922, + 14943 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95cfd40c-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efd28449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "gras- en kruidachtigen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 14975, + 14976, + 14977 + ]], + [[ + 12951, + 14978, + 14979 + ]], + [[ + 14980, + 14981, + 14982 + ]], + [[ + 12955, + 14983, + 3110 + ]], + [[ + 14984, + 11657, + 3106 + ]], + [[ + 14985, + 14986, + 14987 + ]], + [[ + 14988, + 14989, + 13144 + ]], + [[ + 14990, + 14991, + 14992 + ]], + [[ + 14993, + 13154, + 14994 + ]], + [[ + 14995, + 14994, + 13154 + ]], + [[ + 14996, + 14997, + 14998 + ]], + [[ + 14999, + 15000, + 15001 + ]], + [[ + 15002, + 15003, + 15004 + ]], + [[ + 15005, + 12955, + 12957 + ]], + [[ + 15006, + 12955, + 3110 + ]], + [[ + 15007, + 15008, + 15009 + ]], + [[ + 15010, + 15006, + 15011 + ]], + [[ + 15012, + 14979, + 15013 + ]], + [[ + 15014, + 3114, + 3113 + ]], + [[ + 14984, + 15015, + 15016 + ]], + [[ + 15017, + 13153, + 15018 + ]], + [[ + 15019, + 15020, + 15021 + ]], + [[ + 15022, + 15023, + 15021 + ]], + [[ + 15024, + 15025, + 15023 + ]], + [[ + 13143, + 13153, + 15021 + ]], + [[ + 14996, + 15026, + 15027 + ]], + [[ + 15028, + 15015, + 15029 + ]], + [[ + 15030, + 15031, + 15027 + ]], + [[ + 15032, + 14998, + 14997 + ]], + [[ + 15027, + 14997, + 14996 + ]], + [[ + 15033, + 15030, + 15016 + ]], + [[ + 15031, + 15034, + 14997 + ]], + [[ + 14998, + 13153, + 14996 + ]], + [[ + 15002, + 15035, + 15036 + ]], + [[ + 15037, + 15038, + 15025 + ]], + [[ + 15039, + 14984, + 3106 + ]], + [[ + 15016, + 15026, + 14984 + ]], + [[ + 15016, + 15030, + 15026 + ]], + [[ + 15016, + 15028, + 15033 + ]], + [[ + 15040, + 15041, + 3106 + ]], + [[ + 15042, + 15020, + 15038 + ]], + [[ + 14997, + 15034, + 15032 + ]], + [[ + 15021, + 13153, + 15043 + ]], + [[ + 15043, + 14998, + 15032 + ]], + [[ + 15043, + 13153, + 14998 + ]], + [[ + 15032, + 15034, + 15044 + ]], + [[ + 15031, + 15030, + 15033 + ]], + [[ + 15045, + 15020, + 15042 + ]], + [[ + 13143, + 15021, + 15020 + ]], + [[ + 15025, + 15038, + 15019 + ]], + [[ + 15039, + 15046, + 15042 + ]], + [[ + 15047, + 15040, + 15048 + ]], + [[ + 14983, + 12955, + 15005 + ]], + [[ + 15023, + 15029, + 15024 + ]], + [[ + 15015, + 15024, + 15029 + ]], + [[ + 15049, + 15033, + 15050 + ]], + [[ + 15033, + 15028, + 15050 + ]], + [[ + 15025, + 15019, + 15021 + ]], + [[ + 15038, + 15020, + 15019 + ]], + [[ + 15051, + 15040, + 3106 + ]], + [[ + 15052, + 15053, + 15054 + ]], + [[ + 15055, + 15056, + 15053 + ]], + [[ + 15057, + 15051, + 3106 + ]], + [[ + 15058, + 15054, + 15059 + ]], + [[ + 15056, + 15060, + 15057 + ]], + [[ + 15058, + 15047, + 15054 + ]], + [[ + 15052, + 15055, + 15053 + ]], + [[ + 15055, + 15060, + 15056 + ]], + [[ + 15061, + 15040, + 15051 + ]], + [[ + 15039, + 15042, + 15038 + ]], + [[ + 15045, + 13143, + 15020 + ]], + [[ + 14984, + 14996, + 11657 + ]], + [[ + 14984, + 15026, + 14996 + ]], + [[ + 15053, + 15062, + 15054 + ]], + [[ + 15047, + 15048, + 15052 + ]], + [[ + 15063, + 15064, + 15065 + ]], + [[ + 15047, + 15052, + 15054 + ]], + [[ + 15066, + 15036, + 15067 + ]], + [[ + 15046, + 15039, + 15004 + ]], + [[ + 15068, + 15067, + 15063 + ]], + [[ + 15036, + 15035, + 15069 + ]], + [[ + 15065, + 15070, + 15058 + ]], + [[ + 15071, + 15064, + 15072 + ]], + [[ + 15046, + 15045, + 15042 + ]], + [[ + 15073, + 15003, + 15002 + ]], + [[ + 15069, + 15035, + 15004 + ]], + [[ + 15002, + 15036, + 15066 + ]], + [[ + 15039, + 15069, + 15004 + ]], + [[ + 15071, + 15070, + 15064 + ]], + [[ + 15065, + 15064, + 15070 + ]], + [[ + 15067, + 15036, + 15072 + ]], + [[ + 15059, + 15065, + 15058 + ]], + [[ + 15074, + 15063, + 15065 + ]], + [[ + 15050, + 15028, + 15029 + ]], + [[ + 15016, + 15015, + 15028 + ]], + [[ + 15039, + 15037, + 14984 + ]], + [[ + 15039, + 15038, + 15037 + ]], + [[ + 15075, + 15076, + 15068 + ]], + [[ + 15002, + 15004, + 15035 + ]], + [[ + 15030, + 15027, + 15026 + ]], + [[ + 15031, + 14997, + 15027 + ]], + [[ + 15070, + 15047, + 15058 + ]], + [[ + 15070, + 15077, + 15047 + ]], + [[ + 14984, + 15024, + 15015 + ]], + [[ + 14984, + 15037, + 15024 + ]], + [[ + 15078, + 15057, + 3106 + ]], + [[ + 15061, + 15048, + 15040 + ]], + [[ + 15079, + 15080, + 15005 + ]], + [[ + 15079, + 15056, + 15080 + ]], + [[ + 15072, + 15041, + 15071 + ]], + [[ + 15081, + 15047, + 15077 + ]], + [[ + 15043, + 15022, + 15021 + ]], + [[ + 15022, + 15029, + 15023 + ]], + [[ + 13143, + 15073, + 15066 + ]], + [[ + 15003, + 15045, + 15046 + ]], + [[ + 15023, + 15025, + 15021 + ]], + [[ + 15024, + 15037, + 15025 + ]], + [[ + 15074, + 15059, + 15079 + ]], + [[ + 15053, + 15056, + 15079 + ]], + [[ + 15066, + 15073, + 15002 + ]], + [[ + 13143, + 15045, + 15073 + ]], + [[ + 15082, + 15011, + 3110 + ]], + [[ + 15083, + 15084, + 15085 + ]], + [[ + 12947, + 14999, + 12948 + ]], + [[ + 14994, + 3161, + 14993 + ]], + [[ + 15082, + 15086, + 15011 + ]], + [[ + 15085, + 12951, + 12955 + ]], + [[ + 15083, + 15087, + 15084 + ]], + [[ + 15086, + 15082, + 15087 + ]], + [[ + 15088, + 14990, + 14992 + ]], + [[ + 15089, + 14980, + 14999 + ]], + [[ + 15075, + 12957, + 15090 + ]], + [[ + 15090, + 12948, + 15091 + ]], + [[ + 14978, + 15092, + 15093 + ]], + [[ + 14979, + 3114, + 15013 + ]], + [[ + 15094, + 15095, + 15096 + ]], + [[ + 13144, + 12948, + 15095 + ]], + [[ + 15097, + 15098, + 12947 + ]], + [[ + 15012, + 12951, + 14979 + ]], + [[ + 15076, + 15090, + 15091 + ]], + [[ + 12957, + 12948, + 15090 + ]], + [[ + 15099, + 15008, + 15100 + ]], + [[ + 15009, + 15098, + 15013 + ]], + [[ + 12948, + 14999, + 14980 + ]], + [[ + 14992, + 3113, + 3161 + ]], + [[ + 15101, + 15022, + 15043 + ]], + [[ + 15050, + 15029, + 15022 + ]], + [[ + 15079, + 15005, + 12957 + ]], + [[ + 15080, + 15056, + 15057 + ]], + [[ + 15080, + 15057, + 15102 + ]], + [[ + 15060, + 15051, + 15057 + ]], + [[ + 15103, + 14985, + 15104 + ]], + [[ + 13143, + 15066, + 15068 + ]], + [[ + 15075, + 15063, + 12957 + ]], + [[ + 15065, + 15059, + 15074 + ]], + [[ + 3112, + 15082, + 3110 + ]], + [[ + 14978, + 15093, + 14979 + ]], + [[ + 15067, + 15072, + 15064 + ]], + [[ + 15036, + 15069, + 15072 + ]], + [[ + 15105, + 15000, + 14999 + ]], + [[ + 15100, + 3113, + 15001 + ]], + [[ + 14999, + 15001, + 15089 + ]], + [[ + 15000, + 15100, + 15001 + ]], + [[ + 3113, + 14981, + 15001 + ]], + [[ + 14981, + 14980, + 15089 + ]], + [[ + 14991, + 15106, + 15107 + ]], + [[ + 14982, + 15108, + 14980 + ]], + [[ + 14995, + 15109, + 15110 + ]], + [[ + 14992, + 14981, + 3113 + ]], + [[ + 15111, + 15112, + 15110 + ]], + [[ + 15113, + 14990, + 15088 + ]], + [[ + 15095, + 15114, + 15096 + ]], + [[ + 15089, + 15001, + 14981 + ]], + [[ + 15096, + 15114, + 14981 + ]], + [[ + 15108, + 12948, + 14980 + ]], + [[ + 15113, + 15106, + 14990 + ]], + [[ + 15107, + 15115, + 15116 + ]], + [[ + 15117, + 15118, + 14979 + ]], + [[ + 3112, + 3114, + 15118 + ]], + [[ + 15099, + 15100, + 15000 + ]], + [[ + 15008, + 15007, + 15100 + ]], + [[ + 15017, + 15018, + 11657 + ]], + [[ + 13153, + 13154, + 14976 + ]], + [[ + 15088, + 14992, + 14994 + ]], + [[ + 15110, + 15088, + 14994 + ]], + [[ + 3106, + 15041, + 15039 + ]], + [[ + 15081, + 15077, + 15071 + ]], + [[ + 15081, + 15071, + 15041 + ]], + [[ + 15077, + 15070, + 15071 + ]], + [[ + 15097, + 15119, + 15012 + ]], + [[ + 12952, + 12951, + 15012 + ]], + [[ + 15083, + 15085, + 12955 + ]], + [[ + 15120, + 14978, + 15085 + ]], + [[ + 15084, + 15120, + 15085 + ]], + [[ + 15092, + 3112, + 15117 + ]], + [[ + 15082, + 15121, + 15087 + ]], + [[ + 15121, + 15092, + 15084 + ]], + [[ + 15084, + 15092, + 15120 + ]], + [[ + 15082, + 3112, + 15092 + ]], + [[ + 15085, + 14978, + 12951 + ]], + [[ + 15120, + 15092, + 14978 + ]], + [[ + 14993, + 15122, + 13154 + ]], + [[ + 15018, + 13153, + 14976 + ]], + [[ + 15011, + 15006, + 3110 + ]], + [[ + 15011, + 15086, + 15010 + ]], + [[ + 15087, + 15083, + 15086 + ]], + [[ + 15123, + 15006, + 15010 + ]], + [[ + 15123, + 15083, + 12955 + ]], + [[ + 15010, + 15086, + 15083 + ]], + [[ + 15117, + 14979, + 15093 + ]], + [[ + 15118, + 3114, + 14979 + ]], + [[ + 15105, + 15099, + 15000 + ]], + [[ + 15124, + 15008, + 15099 + ]], + [[ + 15114, + 15108, + 14982 + ]], + [[ + 15114, + 12948, + 15108 + ]], + [[ + 14989, + 14987, + 15125 + ]], + [[ + 15125, + 12948, + 14989 + ]], + [[ + 15097, + 15012, + 15098 + ]], + [[ + 15119, + 12952, + 15012 + ]], + [[ + 15092, + 15117, + 15093 + ]], + [[ + 3112, + 15118, + 15117 + ]], + [[ + 15014, + 15013, + 3114 + ]], + [[ + 15098, + 15012, + 15013 + ]], + [[ + 15101, + 15049, + 15050 + ]], + [[ + 15049, + 15031, + 15033 + ]], + [[ + 15034, + 15049, + 15044 + ]], + [[ + 15034, + 15031, + 15049 + ]], + [[ + 15022, + 15101, + 15050 + ]], + [[ + 15043, + 15032, + 15044 + ]], + [[ + 15087, + 15121, + 15084 + ]], + [[ + 15082, + 15092, + 15121 + ]], + [[ + 15126, + 15127, + 14993 + ]], + [[ + 15122, + 14976, + 13154 + ]], + [[ + 11657, + 15122, + 15127 + ]], + [[ + 14977, + 14976, + 15122 + ]], + [[ + 3113, + 15007, + 15014 + ]], + [[ + 3113, + 15100, + 15007 + ]], + [[ + 13143, + 15068, + 15076 + ]], + [[ + 15066, + 15067, + 15068 + ]], + [[ + 15078, + 15102, + 15057 + ]], + [[ + 15005, + 15080, + 15102 + ]], + [[ + 15040, + 15081, + 15041 + ]], + [[ + 15040, + 15047, + 15081 + ]], + [[ + 15076, + 15075, + 15090 + ]], + [[ + 15068, + 15063, + 15075 + ]], + [[ + 12957, + 15063, + 15074 + ]], + [[ + 15067, + 15064, + 15063 + ]], + [[ + 15109, + 14995, + 13154 + ]], + [[ + 15110, + 14994, + 14995 + ]], + [[ + 15102, + 15078, + 15005 + ]], + [[ + 3106, + 3110, + 14983 + ]], + [[ + 13143, + 14988, + 13144 + ]], + [[ + 15104, + 15076, + 15103 + ]], + [[ + 15106, + 15113, + 15111 + ]], + [[ + 15106, + 14991, + 14990 + ]], + [[ + 15044, + 15101, + 15043 + ]], + [[ + 15044, + 15049, + 15101 + ]], + [[ + 14981, + 15114, + 14982 + ]], + [[ + 15095, + 12948, + 15114 + ]], + [[ + 14977, + 15128, + 14975 + ]], + [[ + 11657, + 15018, + 15128 + ]], + [[ + 15124, + 15009, + 15008 + ]], + [[ + 12947, + 15098, + 15009 + ]], + [[ + 12952, + 15097, + 12947 + ]], + [[ + 12952, + 15119, + 15097 + ]], + [[ + 13144, + 14989, + 12948 + ]], + [[ + 14988, + 15104, + 14989 + ]], + [[ + 13144, + 15094, + 15115 + ]], + [[ + 13144, + 15095, + 15094 + ]], + [[ + 15126, + 14993, + 3161 + ]], + [[ + 15127, + 15122, + 14993 + ]], + [[ + 14986, + 15125, + 14987 + ]], + [[ + 14986, + 12948, + 15125 + ]], + [[ + 14989, + 14985, + 14987 + ]], + [[ + 15091, + 12948, + 14986 + ]], + [[ + 15104, + 14985, + 14989 + ]], + [[ + 15076, + 15091, + 15103 + ]], + [[ + 14986, + 15103, + 15091 + ]], + [[ + 14986, + 14985, + 15103 + ]], + [[ + 15105, + 15124, + 15099 + ]], + [[ + 12947, + 15009, + 15124 + ]], + [[ + 14996, + 15017, + 11657 + ]], + [[ + 14996, + 13153, + 15017 + ]], + [[ + 15009, + 15014, + 15007 + ]], + [[ + 15009, + 15013, + 15014 + ]], + [[ + 11657, + 14977, + 15122 + ]], + [[ + 11657, + 15128, + 14977 + ]], + [[ + 15074, + 15079, + 12957 + ]], + [[ + 15062, + 15053, + 15079 + ]], + [[ + 15059, + 15062, + 15079 + ]], + [[ + 15059, + 15054, + 15062 + ]], + [[ + 11657, + 15126, + 3161 + ]], + [[ + 11657, + 15127, + 15126 + ]], + [[ + 12947, + 15105, + 14999 + ]], + [[ + 12947, + 15124, + 15105 + ]], + [[ + 14991, + 15116, + 14992 + ]], + [[ + 15096, + 14981, + 14992 + ]], + [[ + 15055, + 15048, + 15061 + ]], + [[ + 15055, + 15052, + 15048 + ]], + [[ + 15060, + 15061, + 15051 + ]], + [[ + 15060, + 15055, + 15061 + ]], + [[ + 15115, + 15096, + 15116 + ]], + [[ + 15115, + 15094, + 15096 + ]], + [[ + 13143, + 15104, + 14988 + ]], + [[ + 13143, + 15076, + 15104 + ]], + [[ + 13144, + 15106, + 13154 + ]], + [[ + 15113, + 15112, + 15111 + ]], + [[ + 13154, + 15106, + 15111 + ]], + [[ + 15107, + 15116, + 14991 + ]], + [[ + 13144, + 15107, + 15106 + ]], + [[ + 13144, + 15115, + 15107 + ]], + [[ + 15078, + 15129, + 15005 + ]], + [[ + 15078, + 3106, + 14983 + ]], + [[ + 15129, + 14983, + 15005 + ]], + [[ + 15129, + 15078, + 14983 + ]], + [[ + 15004, + 15003, + 15046 + ]], + [[ + 15073, + 15045, + 15003 + ]], + [[ + 14994, + 14992, + 3161 + ]], + [[ + 15116, + 15096, + 14992 + ]], + [[ + 15112, + 15088, + 15110 + ]], + [[ + 15112, + 15113, + 15088 + ]], + [[ + 15111, + 15109, + 13154 + ]], + [[ + 15111, + 15110, + 15109 + ]], + [[ + 15018, + 14975, + 15128 + ]], + [[ + 15018, + 14976, + 14975 + ]], + [[ + 15006, + 15123, + 12955 + ]], + [[ + 15010, + 15083, + 15123 + ]], + [[ + 15041, + 15069, + 15039 + ]], + [[ + 15041, + 15072, + 15069 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95d13392-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15130, + 15131, + 15132 + ]], + [[ + 15133, + 15134, + 15135 + ]], + [[ + 15130, + 15136, + 15131 + ]], + [[ + 15137, + 15131, + 15136 + ]], + [[ + 15138, + 15139, + 15140 + ]], + [[ + 15141, + 15142, + 15143 + ]], + [[ + 15144, + 15145, + 15142 + ]], + [[ + 15137, + 15146, + 15147 + ]], + [[ + 15148, + 15142, + 15145 + ]], + [[ + 15149, + 15150, + 15151 + ]], + [[ + 15133, + 15135, + 15151 + ]], + [[ + 15152, + 15153, + 15154 + ]], + [[ + 15155, + 15137, + 15136 + ]], + [[ + 15156, + 15150, + 15131 + ]], + [[ + 15157, + 15158, + 15148 + ]], + [[ + 15153, + 15159, + 15160 + ]], + [[ + 15159, + 15161, + 15162 + ]], + [[ + 15161, + 15153, + 15148 + ]], + [[ + 15160, + 15159, + 15163 + ]], + [[ + 15161, + 15148, + 15164 + ]], + [[ + 15162, + 15164, + 15165 + ]], + [[ + 15162, + 15161, + 15164 + ]], + [[ + 15163, + 15165, + 15166 + ]], + [[ + 15164, + 15148, + 15165 + ]], + [[ + 15167, + 15168, + 15169 + ]], + [[ + 15170, + 15157, + 15171 + ]], + [[ + 15170, + 15139, + 15157 + ]], + [[ + 15157, + 15148, + 15145 + ]], + [[ + 15172, + 15173, + 15174 + ]], + [[ + 15175, + 15176, + 15177 + ]], + [[ + 15178, + 15174, + 15173 + ]], + [[ + 15179, + 15180, + 15181 + ]], + [[ + 15182, + 15177, + 15149 + ]], + [[ + 15154, + 15150, + 15183 + ]], + [[ + 15169, + 15178, + 15130 + ]], + [[ + 15184, + 15168, + 15144 + ]], + [[ + 15147, + 15185, + 15186 + ]], + [[ + 15151, + 15150, + 15187 + ]], + [[ + 15188, + 15173, + 15172 + ]], + [[ + 15176, + 15181, + 15177 + ]], + [[ + 15189, + 15190, + 15174 + ]], + [[ + 15189, + 15191, + 15192 + ]], + [[ + 15156, + 15193, + 15187 + ]], + [[ + 15185, + 15134, + 15194 + ]], + [[ + 15130, + 15155, + 15136 + ]], + [[ + 15190, + 15195, + 15172 + ]], + [[ + 15130, + 15173, + 15155 + ]], + [[ + 15130, + 15178, + 15173 + ]], + [[ + 15196, + 15146, + 15197 + ]], + [[ + 15188, + 15155, + 15173 + ]], + [[ + 15185, + 15146, + 15175 + ]], + [[ + 15146, + 15188, + 15197 + ]], + [[ + 15178, + 15198, + 15174 + ]], + [[ + 15181, + 15183, + 15149 + ]], + [[ + 15192, + 15141, + 15189 + ]], + [[ + 15141, + 15143, + 15180 + ]], + [[ + 15179, + 15189, + 15180 + ]], + [[ + 15174, + 15191, + 15189 + ]], + [[ + 15197, + 15190, + 15176 + ]], + [[ + 15197, + 15195, + 15190 + ]], + [[ + 15199, + 15167, + 15130 + ]], + [[ + 15200, + 15165, + 15158 + ]], + [[ + 15174, + 15198, + 15191 + ]], + [[ + 15192, + 15201, + 15141 + ]], + [[ + 15194, + 15133, + 15151 + ]], + [[ + 15149, + 15183, + 15150 + ]], + [[ + 15144, + 15171, + 15145 + ]], + [[ + 15168, + 15140, + 15170 + ]], + [[ + 15141, + 15201, + 15142 + ]], + [[ + 15144, + 15168, + 15171 + ]], + [[ + 15186, + 15185, + 15193 + ]], + [[ + 15134, + 15177, + 15135 + ]], + [[ + 15163, + 15159, + 15162 + ]], + [[ + 15154, + 15183, + 15152 + ]], + [[ + 15175, + 15134, + 15185 + ]], + [[ + 15175, + 15177, + 15134 + ]], + [[ + 15187, + 15194, + 15151 + ]], + [[ + 15194, + 15134, + 15133 + ]], + [[ + 15190, + 15172, + 15174 + ]], + [[ + 15195, + 15188, + 15172 + ]], + [[ + 15167, + 15140, + 15168 + ]], + [[ + 15167, + 15138, + 15140 + ]], + [[ + 15199, + 15138, + 15167 + ]], + [[ + 15165, + 15148, + 15158 + ]], + [[ + 15202, + 15199, + 15130 + ]], + [[ + 15202, + 15200, + 15199 + ]], + [[ + 15132, + 15166, + 15202 + ]], + [[ + 15132, + 15163, + 15166 + ]], + [[ + 15132, + 15202, + 15130 + ]], + [[ + 15166, + 15165, + 15202 + ]], + [[ + 15199, + 15200, + 15138 + ]], + [[ + 15202, + 15165, + 15200 + ]], + [[ + 15177, + 15182, + 15135 + ]], + [[ + 15177, + 15181, + 15149 + ]], + [[ + 15197, + 15188, + 15195 + ]], + [[ + 15137, + 15155, + 15188 + ]], + [[ + 15178, + 15169, + 15201 + ]], + [[ + 15201, + 15169, + 15184 + ]], + [[ + 15165, + 15163, + 15162 + ]], + [[ + 15160, + 15154, + 15153 + ]], + [[ + 15188, + 15146, + 15137 + ]], + [[ + 15197, + 15176, + 15196 + ]], + [[ + 15190, + 15179, + 15176 + ]], + [[ + 15180, + 15152, + 15181 + ]], + [[ + 15137, + 15147, + 15131 + ]], + [[ + 15146, + 15185, + 15147 + ]], + [[ + 15175, + 15196, + 15176 + ]], + [[ + 15175, + 15146, + 15196 + ]], + [[ + 15176, + 15179, + 15181 + ]], + [[ + 15190, + 15189, + 15179 + ]], + [[ + 15138, + 15158, + 15139 + ]], + [[ + 15138, + 15200, + 15158 + ]], + [[ + 15171, + 15157, + 15145 + ]], + [[ + 15139, + 15158, + 15157 + ]], + [[ + 15193, + 15194, + 15187 + ]], + [[ + 15193, + 15185, + 15194 + ]], + [[ + 15167, + 15169, + 15130 + ]], + [[ + 15168, + 15184, + 15169 + ]], + [[ + 15147, + 15186, + 15131 + ]], + [[ + 15187, + 15150, + 15156 + ]], + [[ + 15186, + 15156, + 15131 + ]], + [[ + 15186, + 15193, + 15156 + ]], + [[ + 15180, + 15143, + 15152 + ]], + [[ + 15142, + 15148, + 15143 + ]], + [[ + 15168, + 15170, + 15171 + ]], + [[ + 15140, + 15139, + 15170 + ]], + [[ + 15135, + 15149, + 15151 + ]], + [[ + 15135, + 15182, + 15149 + ]], + [[ + 15189, + 15141, + 15180 + ]], + [[ + 15192, + 15178, + 15201 + ]], + [[ + 15198, + 15192, + 15191 + ]], + [[ + 15198, + 15178, + 15192 + ]], + [[ + 15181, + 15152, + 15183 + ]], + [[ + 15143, + 15148, + 15153 + ]], + [[ + 15143, + 15153, + 15152 + ]], + [[ + 15161, + 15159, + 15153 + ]], + [[ + 15201, + 15144, + 15142 + ]], + [[ + 15201, + 15184, + 15144 + ]], + [[ + 15132, + 15160, + 15163 + ]], + [[ + 15132, + 15154, + 15160 + ]], + [[ + 15203, + 15154, + 15132 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95d15abd-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15204, + 15205, + 15206 + ]], + [[ + 15206, + 15205, + 15207 + ]], + [[ + 15205, + 15208, + 15209 + ]], + [[ + 15209, + 15210, + 15205 + ]], + [[ + 15211, + 15212, + 15206 + ]], + [[ + 15213, + 15209, + 15208 + ]], + [[ + 15204, + 15206, + 15213 + ]], + [[ + 15212, + 15209, + 15214 + ]], + [[ + 15204, + 15213, + 15208 + ]], + [[ + 15214, + 15209, + 15213 + ]], + [[ + 15211, + 15206, + 15207 + ]], + [[ + 15214, + 15213, + 15206 + ]], + [[ + 15206, + 15212, + 15214 + ]], + [[ + 15211, + 15209, + 15212 + ]], + [[ + 15207, + 15205, + 15210 + ]], + [[ + 15204, + 15208, + 15205 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95d3cb76-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15215, + 15216, + 15217 + ]], + [[ + 15218, + 15217, + 15219 + ]], + [[ + 15220, + 15221, + 15222 + ]], + [[ + 15215, + 15217, + 15222 + ]], + [[ + 15221, + 15223, + 15224 + ]], + [[ + 15225, + 15216, + 15215 + ]], + [[ + 15215, + 15226, + 15225 + ]], + [[ + 15227, + 15228, + 15225 + ]], + [[ + 15218, + 15222, + 15217 + ]], + [[ + 15229, + 15215, + 15222 + ]], + [[ + 15230, + 15224, + 15226 + ]], + [[ + 15231, + 15226, + 15224 + ]], + [[ + 15221, + 15215, + 15229 + ]], + [[ + 15230, + 15226, + 15215 + ]], + [[ + 15231, + 15227, + 15226 + ]], + [[ + 15228, + 15216, + 15225 + ]], + [[ + 15226, + 15227, + 15225 + ]], + [[ + 15231, + 15228, + 15227 + ]], + [[ + 15232, + 15220, + 15219 + ]], + [[ + 15220, + 15223, + 15221 + ]], + [[ + 15220, + 15233, + 15219 + ]], + [[ + 15220, + 15222, + 15233 + ]], + [[ + 15222, + 15221, + 15229 + ]], + [[ + 15220, + 15232, + 15223 + ]], + [[ + 15221, + 15230, + 15215 + ]], + [[ + 15221, + 15224, + 15230 + ]], + [[ + 15228, + 15232, + 15219 + ]], + [[ + 15223, + 15231, + 15224 + ]], + [[ + 15233, + 15218, + 15219 + ]], + [[ + 15233, + 15222, + 15218 + ]], + [[ + 15228, + 15223, + 15232 + ]], + [[ + 15228, + 15231, + 15223 + ]], + [[ + 15234, + 15216, + 15228 + ]], + [[ + 15217, + 15235, + 15219 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95d48e56-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15236, + 15237, + 15238 + ]], + [[ + 15239, + 15240, + 15236 + ]], + [[ + 15241, + 15242, + 15243 + ]], + [[ + 15244, + 15245, + 15240 + ]], + [[ + 15242, + 15246, + 15243 + ]], + [[ + 15247, + 15237, + 15236 + ]], + [[ + 15245, + 15248, + 15247 + ]], + [[ + 15249, + 15237, + 15248 + ]], + [[ + 15250, + 15242, + 15251 + ]], + [[ + 15239, + 15244, + 15240 + ]], + [[ + 15250, + 15246, + 15242 + ]], + [[ + 15252, + 15253, + 15245 + ]], + [[ + 15252, + 15254, + 15249 + ]], + [[ + 15249, + 15248, + 15253 + ]], + [[ + 15250, + 15254, + 15252 + ]], + [[ + 15255, + 15249, + 15254 + ]], + [[ + 15250, + 15255, + 15254 + ]], + [[ + 15256, + 15249, + 15255 + ]], + [[ + 15252, + 15245, + 15244 + ]], + [[ + 15253, + 15248, + 15245 + ]], + [[ + 15251, + 15242, + 15241 + ]], + [[ + 15246, + 15250, + 15252 + ]], + [[ + 15257, + 15241, + 15258 + ]], + [[ + 15243, + 15246, + 15252 + ]], + [[ + 15259, + 15241, + 15257 + ]], + [[ + 15241, + 15252, + 15258 + ]], + [[ + 15252, + 15249, + 15253 + ]], + [[ + 15256, + 15237, + 15249 + ]], + [[ + 15259, + 15257, + 15239 + ]], + [[ + 15260, + 15244, + 15239 + ]], + [[ + 15259, + 15239, + 15238 + ]], + [[ + 15257, + 15260, + 15239 + ]], + [[ + 15245, + 15247, + 15240 + ]], + [[ + 15248, + 15237, + 15247 + ]], + [[ + 15256, + 15250, + 15251 + ]], + [[ + 15256, + 15255, + 15250 + ]], + [[ + 15239, + 15236, + 15238 + ]], + [[ + 15240, + 15247, + 15236 + ]], + [[ + 15260, + 15252, + 15244 + ]], + [[ + 15241, + 15243, + 15252 + ]], + [[ + 15258, + 15260, + 15257 + ]], + [[ + 15258, + 15252, + 15260 + ]], + [[ + 15251, + 15259, + 15238 + ]], + [[ + 15251, + 15241, + 15259 + ]], + [[ + 15261, + 15237, + 15256 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95d5a08f-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbc0149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15262, + 15263, + 15264 + ]], + [[ + 15265, + 15264, + 15266 + ]], + [[ + 15267, + 15268, + 15269 + ]], + [[ + 15270, + 15271, + 15272 + ]], + [[ + 15268, + 15273, + 15270 + ]], + [[ + 15274, + 15275, + 15276 + ]], + [[ + 15277, + 15274, + 15276 + ]], + [[ + 15278, + 15274, + 15277 + ]], + [[ + 15279, + 15276, + 15265 + ]], + [[ + 15280, + 15281, + 15282 + ]], + [[ + 15282, + 15279, + 15283 + ]], + [[ + 15265, + 15284, + 15267 + ]], + [[ + 15285, + 15279, + 15265 + ]], + [[ + 15265, + 15276, + 15284 + ]], + [[ + 15269, + 15286, + 15267 + ]], + [[ + 15269, + 15263, + 15286 + ]], + [[ + 15269, + 15268, + 15272 + ]], + [[ + 15273, + 15271, + 15270 + ]], + [[ + 15282, + 15281, + 15279 + ]], + [[ + 15275, + 15273, + 15268 + ]], + [[ + 15262, + 15265, + 15286 + ]], + [[ + 15268, + 15270, + 15272 + ]], + [[ + 15284, + 15268, + 15267 + ]], + [[ + 15276, + 15275, + 15268 + ]], + [[ + 15286, + 15265, + 15267 + ]], + [[ + 15276, + 15268, + 15284 + ]], + [[ + 15277, + 15281, + 15280 + ]], + [[ + 15277, + 15276, + 15281 + ]], + [[ + 15285, + 15265, + 15266 + ]], + [[ + 15285, + 15287, + 15279 + ]], + [[ + 15283, + 15279, + 15287 + ]], + [[ + 15281, + 15276, + 15279 + ]], + [[ + 15265, + 15262, + 15264 + ]], + [[ + 15286, + 15263, + 15262 + ]], + [[ + 15288, + 15277, + 15289 + ]], + [[ + 15288, + 15278, + 15277 + ]], + [[ + 15289, + 15280, + 15282 + ]], + [[ + 15289, + 15277, + 15280 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95d5c6c6-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15290, + 15291, + 15292 + ]], + [[ + 15293, + 15294, + 15295 + ]], + [[ + 15296, + 15297, + 15298 + ]], + [[ + 15299, + 15300, + 15290 + ]], + [[ + 15296, + 15298, + 15301 + ]], + [[ + 15302, + 15296, + 15291 + ]], + [[ + 15295, + 15294, + 15303 + ]], + [[ + 15298, + 15297, + 15304 + ]], + [[ + 15295, + 15303, + 15290 + ]], + [[ + 15294, + 15298, + 15304 + ]], + [[ + 15294, + 15299, + 15303 + ]], + [[ + 15300, + 15302, + 15290 + ]], + [[ + 15301, + 15295, + 15290 + ]], + [[ + 15293, + 15298, + 15294 + ]], + [[ + 15301, + 15290, + 15292 + ]], + [[ + 15303, + 15299, + 15290 + ]], + [[ + 15294, + 15304, + 15305 + ]], + [[ + 15297, + 15296, + 15304 + ]], + [[ + 15294, + 15305, + 15299 + ]], + [[ + 15304, + 15296, + 15305 + ]], + [[ + 15301, + 15293, + 15295 + ]], + [[ + 15301, + 15298, + 15293 + ]], + [[ + 15290, + 15302, + 15291 + ]], + [[ + 15305, + 15296, + 15302 + ]], + [[ + 15305, + 15300, + 15299 + ]], + [[ + 15305, + 15302, + 15300 + ]], + [[ + 15306, + 15291, + 15296 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95d97113-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba4949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15307, + 15308, + 15309 + ]], + [[ + 15310, + 15311, + 15312 + ]], + [[ + 15313, + 15314, + 15315 + ]], + [[ + 15313, + 15316, + 15314 + ]], + [[ + 15315, + 15314, + 15317 + ]], + [[ + 15317, + 15314, + 15318 + ]], + [[ + 15318, + 15314, + 15319 + ]], + [[ + 15318, + 15320, + 15317 + ]], + [[ + 15321, + 15322, + 15312 + ]], + [[ + 15318, + 15323, + 15324 + ]], + [[ + 15322, + 15316, + 15310 + ]], + [[ + 15309, + 15325, + 15326 + ]], + [[ + 15312, + 15322, + 15310 + ]], + [[ + 15327, + 15328, + 15329 + ]], + [[ + 15314, + 15316, + 15330 + ]], + [[ + 15308, + 15328, + 15309 + ]], + [[ + 15322, + 15329, + 15316 + ]], + [[ + 15322, + 15327, + 15329 + ]], + [[ + 15319, + 15314, + 15330 + ]], + [[ + 15315, + 15311, + 15313 + ]], + [[ + 15310, + 15313, + 15311 + ]], + [[ + 15310, + 15316, + 15313 + ]], + [[ + 15331, + 15318, + 15324 + ]], + [[ + 15323, + 15325, + 15324 + ]], + [[ + 15330, + 15323, + 15319 + ]], + [[ + 15326, + 15325, + 15323 + ]], + [[ + 15330, + 15326, + 15323 + ]], + [[ + 15330, + 15309, + 15326 + ]], + [[ + 15316, + 15307, + 15330 + ]], + [[ + 15328, + 15325, + 15309 + ]], + [[ + 15323, + 15318, + 15319 + ]], + [[ + 15331, + 15320, + 15318 + ]], + [[ + 15327, + 15321, + 15312 + ]], + [[ + 15327, + 15322, + 15321 + ]], + [[ + 15330, + 15307, + 15309 + ]], + [[ + 15316, + 15329, + 15308 + ]], + [[ + 15316, + 15308, + 15307 + ]], + [[ + 15329, + 15328, + 15308 + ]], + [[ + 15332, + 15328, + 15327 + ]], + [[ + 15325, + 15333, + 15324 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95da0cd1-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15334, + 15335, + 15336 + ]], + [[ + 15337, + 15338, + 15339 + ]], + [[ + 15340, + 15341, + 15342 + ]], + [[ + 15343, + 15344, + 15345 + ]], + [[ + 15346, + 15347, + 15348 + ]], + [[ + 15349, + 15350, + 15338 + ]], + [[ + 15351, + 15348, + 15352 + ]], + [[ + 15353, + 15354, + 15355 + ]], + [[ + 15356, + 15348, + 15357 + ]], + [[ + 15357, + 15335, + 15334 + ]], + [[ + 15358, + 15359, + 15342 + ]], + [[ + 15360, + 15350, + 15359 + ]], + [[ + 15352, + 15347, + 15361 + ]], + [[ + 15362, + 15363, + 15364 + ]], + [[ + 15349, + 15355, + 15350 + ]], + [[ + 15364, + 15365, + 15362 + ]], + [[ + 15335, + 15344, + 15366 + ]], + [[ + 15367, + 15342, + 15359 + ]], + [[ + 15341, + 15358, + 15342 + ]], + [[ + 15360, + 15359, + 15358 + ]], + [[ + 15360, + 15341, + 15361 + ]], + [[ + 15345, + 15340, + 15343 + ]], + [[ + 15345, + 15357, + 15348 + ]], + [[ + 15357, + 15334, + 15368 + ]], + [[ + 15347, + 15346, + 15339 + ]], + [[ + 15356, + 15357, + 15368 + ]], + [[ + 15356, + 15368, + 15337 + ]], + [[ + 15334, + 15338, + 15337 + ]], + [[ + 15346, + 15356, + 15339 + ]], + [[ + 15346, + 15348, + 15356 + ]], + [[ + 15366, + 15336, + 15335 + ]], + [[ + 15369, + 15343, + 15342 + ]], + [[ + 15367, + 15362, + 15342 + ]], + [[ + 15369, + 15370, + 15343 + ]], + [[ + 15370, + 15371, + 15343 + ]], + [[ + 15366, + 15344, + 15371 + ]], + [[ + 15362, + 15369, + 15342 + ]], + [[ + 15371, + 15344, + 15343 + ]], + [[ + 15365, + 15369, + 15362 + ]], + [[ + 15365, + 15372, + 15370 + ]], + [[ + 15350, + 15354, + 15359 + ]], + [[ + 15350, + 15355, + 15354 + ]], + [[ + 15354, + 15363, + 15367 + ]], + [[ + 15354, + 15353, + 15373 + ]], + [[ + 15354, + 15373, + 15363 + ]], + [[ + 15373, + 15374, + 15364 + ]], + [[ + 15361, + 15341, + 15352 + ]], + [[ + 15360, + 15358, + 15341 + ]], + [[ + 15335, + 15357, + 15345 + ]], + [[ + 15348, + 15347, + 15352 + ]], + [[ + 15335, + 15345, + 15344 + ]], + [[ + 15340, + 15342, + 15343 + ]], + [[ + 15354, + 15367, + 15359 + ]], + [[ + 15363, + 15362, + 15367 + ]], + [[ + 15364, + 15375, + 15365 + ]], + [[ + 15336, + 15338, + 15334 + ]], + [[ + 15365, + 15375, + 15372 + ]], + [[ + 15374, + 15355, + 15376 + ]], + [[ + 15365, + 15370, + 15369 + ]], + [[ + 15372, + 15377, + 15370 + ]], + [[ + 15345, + 15351, + 15352 + ]], + [[ + 15345, + 15348, + 15351 + ]], + [[ + 15370, + 15377, + 15378 + ]], + [[ + 15374, + 15353, + 15355 + ]], + [[ + 15336, + 15376, + 15349 + ]], + [[ + 15336, + 15366, + 15376 + ]], + [[ + 15375, + 15377, + 15372 + ]], + [[ + 15375, + 15376, + 15377 + ]], + [[ + 15356, + 15337, + 15339 + ]], + [[ + 15368, + 15334, + 15337 + ]], + [[ + 15373, + 15364, + 15363 + ]], + [[ + 15373, + 15353, + 15374 + ]], + [[ + 15339, + 15361, + 15347 + ]], + [[ + 15339, + 15360, + 15361 + ]], + [[ + 15336, + 15349, + 15338 + ]], + [[ + 15376, + 15355, + 15349 + ]], + [[ + 15370, + 15378, + 15371 + ]], + [[ + 15377, + 15376, + 15378 + ]], + [[ + 15352, + 15340, + 15345 + ]], + [[ + 15352, + 15341, + 15340 + ]], + [[ + 15375, + 15374, + 15376 + ]], + [[ + 15375, + 15364, + 15374 + ]], + [[ + 15378, + 15366, + 15371 + ]], + [[ + 15378, + 15376, + 15366 + ]], + [[ + 15360, + 15379, + 15350 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95da0cdd-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8e649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15380, + 15381, + 15382 + ]], + [[ + 15383, + 15384, + 15385 + ]], + [[ + 15386, + 15387, + 15388 + ]], + [[ + 15389, + 15390, + 15391 + ]], + [[ + 15392, + 15391, + 15380 + ]], + [[ + 15393, + 15394, + 15395 + ]], + [[ + 15396, + 15397, + 15398 + ]], + [[ + 15399, + 15386, + 15400 + ]], + [[ + 15401, + 15380, + 15382 + ]], + [[ + 15391, + 15381, + 15380 + ]], + [[ + 15401, + 15392, + 15380 + ]], + [[ + 15402, + 15398, + 15397 + ]], + [[ + 15403, + 15404, + 15405 + ]], + [[ + 15390, + 15381, + 15391 + ]], + [[ + 15392, + 15393, + 15391 + ]], + [[ + 15384, + 15406, + 15385 + ]], + [[ + 15388, + 15394, + 15401 + ]], + [[ + 15407, + 15396, + 15398 + ]], + [[ + 15395, + 15407, + 15408 + ]], + [[ + 15407, + 15388, + 15396 + ]], + [[ + 15409, + 15395, + 15383 + ]], + [[ + 15410, + 15402, + 15411 + ]], + [[ + 15389, + 15409, + 15412 + ]], + [[ + 15394, + 15407, + 15395 + ]], + [[ + 15393, + 15389, + 15391 + ]], + [[ + 15412, + 15385, + 15390 + ]], + [[ + 15413, + 15414, + 15406 + ]], + [[ + 15414, + 15381, + 15406 + ]], + [[ + 15409, + 15383, + 15412 + ]], + [[ + 15406, + 15381, + 15390 + ]], + [[ + 15384, + 15413, + 15406 + ]], + [[ + 15400, + 15381, + 15414 + ]], + [[ + 15383, + 15415, + 15384 + ]], + [[ + 15415, + 15416, + 15413 + ]], + [[ + 15412, + 15383, + 15385 + ]], + [[ + 15415, + 15413, + 15384 + ]], + [[ + 15408, + 15417, + 15383 + ]], + [[ + 15408, + 15398, + 15402 + ]], + [[ + 15413, + 15416, + 15414 + ]], + [[ + 15417, + 15408, + 15402 + ]], + [[ + 15408, + 15407, + 15398 + ]], + [[ + 15394, + 15388, + 15407 + ]], + [[ + 15383, + 15395, + 15408 + ]], + [[ + 15409, + 15393, + 15395 + ]], + [[ + 15416, + 15402, + 15410 + ]], + [[ + 15386, + 15381, + 15400 + ]], + [[ + 15399, + 15405, + 15386 + ]], + [[ + 15387, + 15386, + 15404 + ]], + [[ + 15410, + 15411, + 15418 + ]], + [[ + 15403, + 15387, + 15404 + ]], + [[ + 15418, + 15399, + 15400 + ]], + [[ + 15405, + 15404, + 15386 + ]], + [[ + 15411, + 15402, + 15397 + ]], + [[ + 15416, + 15415, + 15417 + ]], + [[ + 15387, + 15403, + 15397 + ]], + [[ + 15418, + 15400, + 15410 + ]], + [[ + 15412, + 15390, + 15389 + ]], + [[ + 15385, + 15406, + 15390 + ]], + [[ + 15416, + 15417, + 15402 + ]], + [[ + 15415, + 15383, + 15417 + ]], + [[ + 15414, + 15410, + 15400 + ]], + [[ + 15414, + 15416, + 15410 + ]], + [[ + 15411, + 15403, + 15418 + ]], + [[ + 15411, + 15397, + 15403 + ]], + [[ + 15388, + 15401, + 15382 + ]], + [[ + 15394, + 15392, + 15401 + ]], + [[ + 15387, + 15396, + 15388 + ]], + [[ + 15387, + 15397, + 15396 + ]], + [[ + 15418, + 15405, + 15399 + ]], + [[ + 15418, + 15403, + 15405 + ]], + [[ + 15389, + 15393, + 15409 + ]], + [[ + 15392, + 15394, + 15393 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95da8252-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8d649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15419, + 15420, + 15421 + ]], + [[ + 15422, + 15423, + 15424 + ]], + [[ + 15424, + 15425, + 15426 + ]], + [[ + 15427, + 15428, + 15429 + ]], + [[ + 15430, + 15426, + 15431 + ]], + [[ + 15432, + 15420, + 15433 + ]], + [[ + 15434, + 15435, + 15425 + ]], + [[ + 15425, + 15436, + 15437 + ]], + [[ + 15438, + 15434, + 15425 + ]], + [[ + 15425, + 15437, + 15426 + ]], + [[ + 15435, + 15439, + 15425 + ]], + [[ + 15440, + 15436, + 15439 + ]], + [[ + 15440, + 15441, + 15442 + ]], + [[ + 15440, + 15439, + 15441 + ]], + [[ + 15423, + 15443, + 15424 + ]], + [[ + 15438, + 15425, + 15424 + ]], + [[ + 15430, + 15444, + 15433 + ]], + [[ + 15430, + 15431, + 15444 + ]], + [[ + 15445, + 15443, + 15423 + ]], + [[ + 15438, + 15424, + 15443 + ]], + [[ + 15419, + 15430, + 15433 + ]], + [[ + 15446, + 15426, + 15430 + ]], + [[ + 15431, + 15429, + 15444 + ]], + [[ + 15431, + 15427, + 15429 + ]], + [[ + 15426, + 15437, + 15431 + ]], + [[ + 15428, + 15420, + 15432 + ]], + [[ + 15447, + 15448, + 15449 + ]], + [[ + 15446, + 15447, + 15449 + ]], + [[ + 15419, + 15446, + 15430 + ]], + [[ + 15449, + 15422, + 15446 + ]], + [[ + 15441, + 15450, + 15442 + ]], + [[ + 15435, + 15443, + 15445 + ]], + [[ + 15450, + 15435, + 15445 + ]], + [[ + 15441, + 15439, + 15435 + ]], + [[ + 15419, + 15433, + 15420 + ]], + [[ + 15444, + 15429, + 15432 + ]], + [[ + 15451, + 15447, + 15446 + ]], + [[ + 15448, + 15445, + 15449 + ]], + [[ + 15426, + 15422, + 15424 + ]], + [[ + 15449, + 15445, + 15423 + ]], + [[ + 15442, + 15450, + 15445 + ]], + [[ + 15441, + 15435, + 15450 + ]], + [[ + 15446, + 15422, + 15426 + ]], + [[ + 15449, + 15423, + 15422 + ]], + [[ + 15444, + 15432, + 15433 + ]], + [[ + 15429, + 15428, + 15432 + ]], + [[ + 15437, + 15428, + 15427 + ]], + [[ + 15440, + 15420, + 15428 + ]], + [[ + 15439, + 15436, + 15425 + ]], + [[ + 15440, + 15437, + 15436 + ]], + [[ + 15442, + 15451, + 15421 + ]], + [[ + 15442, + 15448, + 15451 + ]], + [[ + 15443, + 15434, + 15438 + ]], + [[ + 15443, + 15435, + 15434 + ]], + [[ + 15451, + 15419, + 15421 + ]], + [[ + 15451, + 15446, + 15419 + ]], + [[ + 15451, + 15448, + 15447 + ]], + [[ + 15442, + 15445, + 15448 + ]], + [[ + 15431, + 15437, + 15427 + ]], + [[ + 15440, + 15428, + 15437 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95dca4f1-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba4749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15452, + 15453, + 15454 + ]], + [[ + 15455, + 15456, + 15457 + ]], + [[ + 15458, + 15455, + 15459 + ]], + [[ + 15460, + 15461, + 15454 + ]], + [[ + 15462, + 15456, + 15455 + ]], + [[ + 15455, + 15458, + 15462 + ]], + [[ + 15462, + 15457, + 15456 + ]], + [[ + 15459, + 15455, + 15463 + ]], + [[ + 15464, + 15465, + 15466 + ]], + [[ + 15464, + 15463, + 15465 + ]], + [[ + 15459, + 15464, + 15452 + ]], + [[ + 15465, + 15463, + 15466 + ]], + [[ + 15467, + 15462, + 15468 + ]], + [[ + 15457, + 15463, + 15455 + ]], + [[ + 15467, + 15457, + 15462 + ]], + [[ + 15466, + 15463, + 15457 + ]], + [[ + 15469, + 15467, + 15468 + ]], + [[ + 15466, + 15457, + 15467 + ]], + [[ + 15459, + 15452, + 15470 + ]], + [[ + 15471, + 15467, + 15469 + ]], + [[ + 15454, + 15453, + 15460 + ]], + [[ + 15452, + 15466, + 15471 + ]], + [[ + 15452, + 15471, + 15453 + ]], + [[ + 15466, + 15467, + 15471 + ]], + [[ + 15458, + 15468, + 15462 + ]], + [[ + 15458, + 15472, + 15468 + ]], + [[ + 15471, + 15469, + 15453 + ]], + [[ + 15461, + 15472, + 15454 + ]], + [[ + 15469, + 15460, + 15453 + ]], + [[ + 15469, + 15468, + 15461 + ]], + [[ + 15470, + 15454, + 15472 + ]], + [[ + 15470, + 15452, + 15454 + ]], + [[ + 15469, + 15461, + 15460 + ]], + [[ + 15468, + 15472, + 15461 + ]], + [[ + 15452, + 15464, + 15466 + ]], + [[ + 15459, + 15463, + 15464 + ]], + [[ + 15473, + 15472, + 15458 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95de048f-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15474, + 15475, + 15476 + ]], + [[ + 15477, + 15478, + 15479 + ]], + [[ + 15480, + 15477, + 15479 + ]], + [[ + 15481, + 15482, + 15483 + ]], + [[ + 15484, + 15478, + 15485 + ]], + [[ + 15477, + 15480, + 15486 + ]], + [[ + 15484, + 15485, + 15487 + ]], + [[ + 15488, + 15489, + 15490 + ]], + [[ + 15478, + 15491, + 15485 + ]], + [[ + 15486, + 15480, + 15490 + ]], + [[ + 15492, + 15487, + 15476 + ]], + [[ + 15485, + 15491, + 15493 + ]], + [[ + 15492, + 15476, + 15475 + ]], + [[ + 15494, + 15495, + 15496 + ]], + [[ + 15487, + 15497, + 15476 + ]], + [[ + 15481, + 15491, + 15482 + ]], + [[ + 15487, + 15493, + 15497 + ]], + [[ + 15487, + 15485, + 15493 + ]], + [[ + 15498, + 15475, + 15474 + ]], + [[ + 15481, + 15493, + 15491 + ]], + [[ + 15484, + 15492, + 15496 + ]], + [[ + 15494, + 15474, + 15499 + ]], + [[ + 15492, + 15475, + 15498 + ]], + [[ + 15476, + 15497, + 15474 + ]], + [[ + 15499, + 15474, + 15497 + ]], + [[ + 15496, + 15498, + 15474 + ]], + [[ + 15483, + 15482, + 15486 + ]], + [[ + 15491, + 15478, + 15486 + ]], + [[ + 15500, + 15488, + 15501 + ]], + [[ + 15488, + 15502, + 15481 + ]], + [[ + 15490, + 15489, + 15483 + ]], + [[ + 15502, + 15500, + 15503 + ]], + [[ + 15488, + 15481, + 15489 + ]], + [[ + 15497, + 15493, + 15481 + ]], + [[ + 15495, + 15490, + 15480 + ]], + [[ + 15501, + 15488, + 15490 + ]], + [[ + 15474, + 15494, + 15496 + ]], + [[ + 15504, + 15495, + 15494 + ]], + [[ + 15479, + 15484, + 15496 + ]], + [[ + 15479, + 15478, + 15484 + ]], + [[ + 15496, + 15492, + 15498 + ]], + [[ + 15484, + 15487, + 15492 + ]], + [[ + 15491, + 15486, + 15482 + ]], + [[ + 15478, + 15477, + 15486 + ]], + [[ + 15495, + 15501, + 15490 + ]], + [[ + 15495, + 15500, + 15501 + ]], + [[ + 15504, + 15500, + 15495 + ]], + [[ + 15499, + 15497, + 15481 + ]], + [[ + 15504, + 15503, + 15500 + ]], + [[ + 15504, + 15494, + 15499 + ]], + [[ + 15504, + 15499, + 15503 + ]], + [[ + 15488, + 15500, + 15502 + ]], + [[ + 15490, + 15483, + 15486 + ]], + [[ + 15489, + 15481, + 15483 + ]], + [[ + 15502, + 15499, + 15481 + ]], + [[ + 15502, + 15503, + 15499 + ]], + [[ + 15480, + 15505, + 15495 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95df8b58-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15506, + 15507, + 15508 + ]], + [[ + 15509, + 15510, + 15511 + ]], + [[ + 15512, + 15509, + 15511 + ]], + [[ + 15508, + 15513, + 15506 + ]], + [[ + 15514, + 15511, + 15515 + ]], + [[ + 15510, + 15516, + 15511 + ]], + [[ + 15517, + 15516, + 15510 + ]], + [[ + 15518, + 15519, + 8761 + ]], + [[ + 8674, + 15517, + 8675 + ]], + [[ + 8674, + 15516, + 15517 + ]], + [[ + 15506, + 15520, + 15521 + ]], + [[ + 8674, + 8760, + 15520 + ]], + [[ + 8675, + 15522, + 8761 + ]], + [[ + 15523, + 15521, + 8760 + ]], + [[ + 15524, + 15514, + 15525 + ]], + [[ + 15508, + 15516, + 15526 + ]], + [[ + 15514, + 15515, + 15508 + ]], + [[ + 15511, + 15516, + 15515 + ]], + [[ + 15514, + 15508, + 15507 + ]], + [[ + 15515, + 15516, + 15508 + ]], + [[ + 8674, + 15526, + 15516 + ]], + [[ + 8674, + 15520, + 15526 + ]], + [[ + 15527, + 15518, + 8761 + ]], + [[ + 15525, + 15507, + 15519 + ]], + [[ + 8761, + 15524, + 15528 + ]], + [[ + 15512, + 15511, + 15514 + ]], + [[ + 8761, + 15519, + 8760 + ]], + [[ + 15519, + 15507, + 15506 + ]], + [[ + 15526, + 15513, + 15508 + ]], + [[ + 15526, + 15520, + 15513 + ]], + [[ + 8760, + 15521, + 15520 + ]], + [[ + 15521, + 15519, + 15506 + ]], + [[ + 15520, + 15506, + 15513 + ]], + [[ + 15521, + 15523, + 15519 + ]], + [[ + 8760, + 15519, + 15523 + ]], + [[ + 15518, + 15525, + 15519 + ]], + [[ + 15528, + 15529, + 8761 + ]], + [[ + 15528, + 15518, + 15529 + ]], + [[ + 15528, + 15525, + 15518 + ]], + [[ + 15528, + 15524, + 15525 + ]], + [[ + 15522, + 15512, + 15524 + ]], + [[ + 15522, + 15517, + 15509 + ]], + [[ + 15522, + 15509, + 15512 + ]], + [[ + 15517, + 15510, + 15509 + ]], + [[ + 8761, + 15522, + 15524 + ]], + [[ + 8675, + 15517, + 15522 + ]], + [[ + 15525, + 15514, + 15507 + ]], + [[ + 15524, + 15512, + 15514 + ]], + [[ + 15529, + 15527, + 8761 + ]], + [[ + 15529, + 15518, + 15527 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95e04e3b-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef9bf749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15530, + 15531, + 15532 + ]], + [[ + 15533, + 15534, + 15535 + ]], + [[ + 15536, + 15537, + 15538 + ]], + [[ + 15537, + 15539, + 15538 + ]], + [[ + 15540, + 15541, + 15542 + ]], + [[ + 15543, + 15538, + 15542 + ]], + [[ + 15544, + 15541, + 15545 + ]], + [[ + 15546, + 15547, + 15536 + ]], + [[ + 15548, + 15549, + 15550 + ]], + [[ + 15551, + 15552, + 15537 + ]], + [[ + 15539, + 15553, + 15538 + ]], + [[ + 15547, + 15551, + 15537 + ]], + [[ + 15554, + 15552, + 15555 + ]], + [[ + 15537, + 15552, + 15554 + ]], + [[ + 15556, + 15557, + 15558 + ]], + [[ + 15539, + 15559, + 15541 + ]], + [[ + 15550, + 15552, + 15551 + ]], + [[ + 15539, + 15554, + 15559 + ]], + [[ + 15539, + 15537, + 15554 + ]], + [[ + 15544, + 15545, + 15560 + ]], + [[ + 15559, + 15554, + 15555 + ]], + [[ + 15561, + 15544, + 15531 + ]], + [[ + 15545, + 15559, + 15555 + ]], + [[ + 15546, + 15536, + 15562 + ]], + [[ + 15544, + 15542, + 15541 + ]], + [[ + 15563, + 15536, + 15564 + ]], + [[ + 15547, + 15537, + 15536 + ]], + [[ + 15535, + 15562, + 15565 + ]], + [[ + 15546, + 15548, + 15551 + ]], + [[ + 15535, + 15565, + 15533 + ]], + [[ + 15562, + 15536, + 15565 + ]], + [[ + 15539, + 15541, + 15553 + ]], + [[ + 15559, + 15545, + 15541 + ]], + [[ + 15566, + 15564, + 15561 + ]], + [[ + 15540, + 15553, + 15541 + ]], + [[ + 15533, + 15566, + 15534 + ]], + [[ + 15533, + 15565, + 15566 + ]], + [[ + 15565, + 15563, + 15566 + ]], + [[ + 15536, + 15538, + 15564 + ]], + [[ + 15566, + 15563, + 15564 + ]], + [[ + 15565, + 15536, + 15563 + ]], + [[ + 15538, + 15540, + 15542 + ]], + [[ + 15538, + 15553, + 15540 + ]], + [[ + 15545, + 15556, + 15560 + ]], + [[ + 15555, + 15557, + 15556 + ]], + [[ + 15555, + 15550, + 15549 + ]], + [[ + 15555, + 15552, + 15550 + ]], + [[ + 15566, + 15561, + 15530 + ]], + [[ + 15564, + 15538, + 15543 + ]], + [[ + 15531, + 15544, + 15560 + ]], + [[ + 15561, + 15543, + 15544 + ]], + [[ + 15546, + 15551, + 15547 + ]], + [[ + 15548, + 15550, + 15551 + ]], + [[ + 15558, + 15567, + 15560 + ]], + [[ + 15530, + 15561, + 15531 + ]], + [[ + 15556, + 15558, + 15560 + ]], + [[ + 15567, + 15531, + 15560 + ]], + [[ + 15535, + 15546, + 15562 + ]], + [[ + 15535, + 15548, + 15546 + ]], + [[ + 15544, + 15543, + 15542 + ]], + [[ + 15561, + 15564, + 15543 + ]], + [[ + 15557, + 15567, + 15558 + ]], + [[ + 15532, + 15534, + 15530 + ]], + [[ + 15567, + 15532, + 15531 + ]], + [[ + 15534, + 15566, + 15530 + ]], + [[ + 15545, + 15555, + 15556 + ]], + [[ + 15549, + 15557, + 15555 + ]], + [[ + 15557, + 15532, + 15567 + ]], + [[ + 15557, + 15534, + 15532 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95e1395b-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efe6f949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15568, + 15569, + 15570 + ]], + [[ + 15571, + 15572, + 15573 + ]], + [[ + 15571, + 10005, + 11645 + ]], + [[ + 15574, + 15569, + 15568 + ]], + [[ + 15575, + 15576, + 15577 + ]], + [[ + 15569, + 15573, + 15575 + ]], + [[ + 15578, + 15579, + 15571 + ]], + [[ + 15573, + 15574, + 15571 + ]], + [[ + 15570, + 15569, + 15575 + ]], + [[ + 15571, + 15579, + 15580 + ]], + [[ + 11645, + 15578, + 15571 + ]], + [[ + 15578, + 15581, + 15577 + ]], + [[ + 15573, + 15572, + 15575 + ]], + [[ + 15579, + 15578, + 15576 + ]], + [[ + 15582, + 15583, + 15584 + ]], + [[ + 15575, + 15577, + 12553 + ]], + [[ + 15585, + 15581, + 15578 + ]], + [[ + 15584, + 12553, + 15577 + ]], + [[ + 15579, + 15576, + 15580 + ]], + [[ + 15575, + 12553, + 10000 + ]], + [[ + 15578, + 15577, + 15576 + ]], + [[ + 15581, + 15584, + 15577 + ]], + [[ + 11645, + 15585, + 15578 + ]], + [[ + 11645, + 12776, + 15582 + ]], + [[ + 15585, + 15584, + 15581 + ]], + [[ + 15583, + 12776, + 12553 + ]], + [[ + 10006, + 15570, + 10000 + ]], + [[ + 15586, + 10005, + 15574 + ]], + [[ + 15586, + 15568, + 15570 + ]], + [[ + 15574, + 15573, + 15569 + ]], + [[ + 15585, + 15582, + 15584 + ]], + [[ + 15585, + 11645, + 15582 + ]], + [[ + 15570, + 15575, + 10000 + ]], + [[ + 15580, + 15576, + 15575 + ]], + [[ + 15586, + 15574, + 15568 + ]], + [[ + 10005, + 15571, + 15574 + ]], + [[ + 15572, + 15580, + 15575 + ]], + [[ + 15572, + 15571, + 15580 + ]], + [[ + 15584, + 15583, + 12553 + ]], + [[ + 15582, + 12776, + 15583 + ]], + [[ + 10006, + 15586, + 15570 + ]], + [[ + 10006, + 10005, + 15586 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95e24a9a-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff1b449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "heesters", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15587, + 15588, + 12699 + ]], + [[ + 15588, + 14325, + 12674 + ]], + [[ + 14320, + 15589, + 15590 + ]], + [[ + 15591, + 15592, + 14322 + ]], + [[ + 15593, + 14322, + 14326 + ]], + [[ + 15594, + 14320, + 14322 + ]], + [[ + 15595, + 15594, + 14322 + ]], + [[ + 15596, + 15597, + 15598 + ]], + [[ + 15599, + 15600, + 14320 + ]], + [[ + 15596, + 15598, + 14325 + ]], + [[ + 15601, + 15602, + 15603 + ]], + [[ + 15595, + 14322, + 15592 + ]], + [[ + 15604, + 15602, + 15605 + ]], + [[ + 15603, + 15592, + 15591 + ]], + [[ + 15606, + 15607, + 15593 + ]], + [[ + 15608, + 15604, + 15609 + ]], + [[ + 14320, + 15590, + 14325 + ]], + [[ + 15610, + 12686, + 12674 + ]], + [[ + 15589, + 15611, + 15590 + ]], + [[ + 15598, + 12674, + 14325 + ]], + [[ + 15612, + 15613, + 15600 + ]], + [[ + 15589, + 14320, + 15600 + ]], + [[ + 15590, + 15614, + 15615 + ]], + [[ + 15613, + 15589, + 15600 + ]], + [[ + 15616, + 15617, + 14326 + ]], + [[ + 15588, + 12674, + 12699 + ]], + [[ + 15618, + 15595, + 15592 + ]], + [[ + 15594, + 12686, + 14320 + ]], + [[ + 15619, + 15608, + 15620 + ]], + [[ + 15609, + 15604, + 15605 + ]], + [[ + 15615, + 15610, + 15598 + ]], + [[ + 15597, + 15615, + 15598 + ]], + [[ + 15614, + 15611, + 15610 + ]], + [[ + 15612, + 15611, + 15613 + ]], + [[ + 15601, + 15605, + 15602 + ]], + [[ + 15593, + 15607, + 15609 + ]], + [[ + 12685, + 15594, + 15595 + ]], + [[ + 12685, + 12686, + 15594 + ]], + [[ + 15617, + 15621, + 15619 + ]], + [[ + 15620, + 15617, + 15619 + ]], + [[ + 15620, + 15606, + 15593 + ]], + [[ + 15619, + 15621, + 15608 + ]], + [[ + 15616, + 15622, + 15587 + ]], + [[ + 14326, + 14325, + 15622 + ]], + [[ + 15590, + 15611, + 15614 + ]], + [[ + 15589, + 15613, + 15611 + ]], + [[ + 15590, + 15596, + 14325 + ]], + [[ + 15623, + 15597, + 15596 + ]], + [[ + 12686, + 15599, + 14320 + ]], + [[ + 12686, + 15600, + 15599 + ]], + [[ + 15598, + 15610, + 12674 + ]], + [[ + 15600, + 12686, + 15610 + ]], + [[ + 15623, + 15615, + 15597 + ]], + [[ + 15614, + 15610, + 15615 + ]], + [[ + 15590, + 15623, + 15596 + ]], + [[ + 15590, + 15615, + 15623 + ]], + [[ + 15606, + 15620, + 15608 + ]], + [[ + 12699, + 12685, + 15604 + ]], + [[ + 15606, + 15608, + 15607 + ]], + [[ + 15618, + 12685, + 15595 + ]], + [[ + 15621, + 15604, + 15608 + ]], + [[ + 15621, + 12699, + 15604 + ]], + [[ + 15604, + 15603, + 15602 + ]], + [[ + 15604, + 12685, + 15618 + ]], + [[ + 15593, + 15609, + 15605 + ]], + [[ + 15607, + 15608, + 15609 + ]], + [[ + 15610, + 15612, + 15600 + ]], + [[ + 15610, + 15611, + 15612 + ]], + [[ + 15622, + 15616, + 14326 + ]], + [[ + 15587, + 12699, + 15616 + ]], + [[ + 15621, + 15616, + 12699 + ]], + [[ + 15621, + 15617, + 15616 + ]], + [[ + 15593, + 15601, + 14322 + ]], + [[ + 15593, + 15605, + 15601 + ]], + [[ + 15601, + 15591, + 14322 + ]], + [[ + 15601, + 15603, + 15591 + ]], + [[ + 14326, + 15620, + 15593 + ]], + [[ + 14326, + 15617, + 15620 + ]], + [[ + 15622, + 15588, + 15587 + ]], + [[ + 15622, + 14325, + 15588 + ]], + [[ + 15603, + 15618, + 15592 + ]], + [[ + 15603, + 15604, + 15618 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95e5572f-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb6e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15624, + 15625, + 9879 + ]], + [[ + 15626, + 15627, + 9878 + ]], + [[ + 9880, + 15625, + 15626 + ]], + [[ + 15625, + 9876, + 9879 + ]], + [[ + 15626, + 15625, + 15624 + ]], + [[ + 9880, + 9876, + 15625 + ]], + [[ + 9880, + 15626, + 9878 + ]], + [[ + 15627, + 9879, + 9878 + ]], + [[ + 15624, + 15627, + 15626 + ]], + [[ + 15624, + 9879, + 15627 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95e5ccd1-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efb8e549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15628, + 15629, + 15630 + ]], + [[ + 15631, + 15628, + 15630 + ]], + [[ + 15632, + 15633, + 15634 + ]], + [[ + 15635, + 15629, + 15636 + ]], + [[ + 15637, + 15638, + 15639 + ]], + [[ + 15640, + 15641, + 15629 + ]], + [[ + 15642, + 15643, + 15644 + ]], + [[ + 15645, + 15629, + 15628 + ]], + [[ + 15646, + 15647, + 15648 + ]], + [[ + 15649, + 15650, + 15651 + ]], + [[ + 15644, + 15652, + 15653 + ]], + [[ + 15653, + 15654, + 15649 + ]], + [[ + 15655, + 15656, + 15657 + ]], + [[ + 15658, + 15650, + 15654 + ]], + [[ + 15659, + 15643, + 15660 + ]], + [[ + 15661, + 15662, + 15652 + ]], + [[ + 15663, + 15647, + 15630 + ]], + [[ + 15660, + 15643, + 15642 + ]], + [[ + 15631, + 15664, + 15628 + ]], + [[ + 15665, + 15666, + 15667 + ]], + [[ + 15668, + 15639, + 15666 + ]], + [[ + 15669, + 15656, + 15639 + ]], + [[ + 15655, + 15667, + 15666 + ]], + [[ + 15635, + 15670, + 15629 + ]], + [[ + 15635, + 15667, + 15670 + ]], + [[ + 15634, + 15670, + 15667 + ]], + [[ + 15641, + 15671, + 15636 + ]], + [[ + 15672, + 15668, + 15665 + ]], + [[ + 15673, + 15631, + 15630 + ]], + [[ + 15673, + 15664, + 15631 + ]], + [[ + 15651, + 15670, + 15634 + ]], + [[ + 15650, + 15629, + 15670 + ]], + [[ + 15632, + 15649, + 15633 + ]], + [[ + 15650, + 15670, + 15651 + ]], + [[ + 15632, + 15634, + 15667 + ]], + [[ + 15633, + 15651, + 15634 + ]], + [[ + 15638, + 15669, + 15639 + ]], + [[ + 15656, + 15666, + 15639 + ]], + [[ + 15638, + 15656, + 15669 + ]], + [[ + 15655, + 15657, + 15642 + ]], + [[ + 15674, + 15657, + 15656 + ]], + [[ + 15674, + 15675, + 15657 + ]], + [[ + 15671, + 15665, + 15636 + ]], + [[ + 15665, + 15667, + 15676 + ]], + [[ + 15635, + 15665, + 15676 + ]], + [[ + 15668, + 15637, + 15639 + ]], + [[ + 15664, + 15675, + 15674 + ]], + [[ + 15664, + 15673, + 15677 + ]], + [[ + 15678, + 15679, + 15628 + ]], + [[ + 15679, + 15640, + 15645 + ]], + [[ + 15628, + 15679, + 15645 + ]], + [[ + 15680, + 15638, + 15637 + ]], + [[ + 15648, + 15647, + 15681 + ]], + [[ + 15663, + 15682, + 15647 + ]], + [[ + 15633, + 15649, + 15651 + ]], + [[ + 15654, + 15650, + 15649 + ]], + [[ + 15632, + 15653, + 15649 + ]], + [[ + 15652, + 15644, + 15661 + ]], + [[ + 15652, + 15662, + 15654 + ]], + [[ + 15682, + 15650, + 15662 + ]], + [[ + 15659, + 15682, + 15643 + ]], + [[ + 15643, + 15682, + 15661 + ]], + [[ + 15638, + 15674, + 15656 + ]], + [[ + 15660, + 15681, + 15659 + ]], + [[ + 15647, + 15646, + 15630 + ]], + [[ + 15664, + 15674, + 15678 + ]], + [[ + 15646, + 15677, + 15673 + ]], + [[ + 15646, + 15657, + 15675 + ]], + [[ + 15679, + 15637, + 15672 + ]], + [[ + 15679, + 15678, + 15637 + ]], + [[ + 15645, + 15640, + 15629 + ]], + [[ + 15679, + 15672, + 15641 + ]], + [[ + 15629, + 15641, + 15636 + ]], + [[ + 15640, + 15679, + 15641 + ]], + [[ + 15677, + 15675, + 15664 + ]], + [[ + 15677, + 15646, + 15675 + ]], + [[ + 15632, + 15655, + 15683 + ]], + [[ + 15666, + 15656, + 15655 + ]], + [[ + 15664, + 15678, + 15628 + ]], + [[ + 15680, + 15637, + 15678 + ]], + [[ + 15655, + 15642, + 15683 + ]], + [[ + 15652, + 15654, + 15653 + ]], + [[ + 15683, + 15642, + 15653 + ]], + [[ + 15643, + 15661, + 15644 + ]], + [[ + 15653, + 15642, + 15644 + ]], + [[ + 15657, + 15660, + 15642 + ]], + [[ + 15661, + 15682, + 15662 + ]], + [[ + 15663, + 15650, + 15682 + ]], + [[ + 15671, + 15672, + 15665 + ]], + [[ + 15671, + 15641, + 15672 + ]], + [[ + 15680, + 15674, + 15638 + ]], + [[ + 15680, + 15678, + 15674 + ]], + [[ + 15646, + 15660, + 15657 + ]], + [[ + 15648, + 15681, + 15660 + ]], + [[ + 15655, + 15632, + 15667 + ]], + [[ + 15683, + 15653, + 15632 + ]], + [[ + 15662, + 15658, + 15654 + ]], + [[ + 15662, + 15650, + 15658 + ]], + [[ + 15630, + 15646, + 15673 + ]], + [[ + 15648, + 15660, + 15646 + ]], + [[ + 15647, + 15659, + 15681 + ]], + [[ + 15647, + 15682, + 15659 + ]], + [[ + 15665, + 15635, + 15636 + ]], + [[ + 15676, + 15667, + 15635 + ]], + [[ + 15665, + 15668, + 15666 + ]], + [[ + 15672, + 15637, + 15668 + ]], + [[ + 15650, + 15684, + 15629 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95e6b6dc-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef9af849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15685, + 8677, + 8755 + ]], + [[ + 15686, + 15687, + 15688 + ]], + [[ + 15686, + 15689, + 15687 + ]], + [[ + 15690, + 8677, + 15688 + ]], + [[ + 15691, + 15689, + 15686 + ]], + [[ + 15687, + 15690, + 15688 + ]], + [[ + 8678, + 15689, + 8754 + ]], + [[ + 8678, + 15690, + 15689 + ]], + [[ + 15689, + 15690, + 15687 + ]], + [[ + 8678, + 8677, + 15690 + ]], + [[ + 8677, + 15685, + 15688 + ]], + [[ + 15691, + 8754, + 15689 + ]], + [[ + 15691, + 15685, + 8755 + ]], + [[ + 15686, + 15688, + 15685 + ]], + [[ + 15685, + 15691, + 15686 + ]], + [[ + 8755, + 8754, + 15691 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95e88c0d-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15692, + 15693, + 15694 + ]], + [[ + 15692, + 15695, + 15696 + ]], + [[ + 15697, + 15698, + 15695 + ]], + [[ + 15699, + 15700, + 15696 + ]], + [[ + 15701, + 15702, + 15698 + ]], + [[ + 15703, + 15704, + 15702 + ]], + [[ + 15697, + 15695, + 15692 + ]], + [[ + 15695, + 15702, + 15699 + ]], + [[ + 15701, + 15698, + 15705 + ]], + [[ + 15702, + 15695, + 15698 + ]], + [[ + 15706, + 15707, + 15694 + ]], + [[ + 15707, + 15701, + 15705 + ]], + [[ + 15707, + 15705, + 15697 + ]], + [[ + 15707, + 15706, + 15701 + ]], + [[ + 15707, + 15697, + 15694 + ]], + [[ + 15705, + 15698, + 15697 + ]], + [[ + 15695, + 15699, + 15696 + ]], + [[ + 15700, + 15693, + 15692 + ]], + [[ + 15702, + 15704, + 15699 + ]], + [[ + 15708, + 15693, + 15704 + ]], + [[ + 15704, + 15700, + 15699 + ]], + [[ + 15704, + 15693, + 15700 + ]], + [[ + 15708, + 15701, + 15706 + ]], + [[ + 15708, + 15709, + 15703 + ]], + [[ + 15701, + 15708, + 15703 + ]], + [[ + 15708, + 15704, + 15709 + ]], + [[ + 15701, + 15703, + 15702 + ]], + [[ + 15709, + 15704, + 15703 + ]], + [[ + 15697, + 15692, + 15694 + ]], + [[ + 15696, + 15700, + 15692 + ]], + [[ + 15710, + 15693, + 15708 + ]], + [[ + 15694, + 15711, + 15706 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95ea39ef-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15712, + 15713, + 15714 + ]], + [[ + 15715, + 15714, + 15716 + ]], + [[ + 15717, + 15718, + 15716 + ]], + [[ + 15717, + 15713, + 15712 + ]], + [[ + 15718, + 15715, + 15716 + ]], + [[ + 15718, + 15717, + 15715 + ]], + [[ + 15715, + 15712, + 15714 + ]], + [[ + 15715, + 15717, + 15712 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95ea6026-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efbb5949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15719, + 15720, + 15721 + ]], + [[ + 15722, + 15723, + 15724 + ]], + [[ + 15725, + 15726, + 15727 + ]], + [[ + 15728, + 15729, + 15730 + ]], + [[ + 15731, + 15724, + 15726 + ]], + [[ + 15730, + 15729, + 15721 + ]], + [[ + 15732, + 15733, + 15734 + ]], + [[ + 15735, + 15736, + 15730 + ]], + [[ + 15734, + 15726, + 15724 + ]], + [[ + 15737, + 15738, + 15726 + ]], + [[ + 15719, + 15721, + 15729 + ]], + [[ + 15739, + 15730, + 15721 + ]], + [[ + 15740, + 15732, + 15734 + ]], + [[ + 15726, + 15725, + 15731 + ]], + [[ + 15741, + 15722, + 15725 + ]], + [[ + 15739, + 15721, + 15722 + ]], + [[ + 15741, + 15735, + 15730 + ]], + [[ + 15736, + 15728, + 15730 + ]], + [[ + 15728, + 15733, + 15742 + ]], + [[ + 15737, + 15726, + 15734 + ]], + [[ + 15740, + 15734, + 15724 + ]], + [[ + 15727, + 15743, + 15736 + ]], + [[ + 15723, + 15740, + 15724 + ]], + [[ + 15742, + 15733, + 15732 + ]], + [[ + 15742, + 15740, + 15744 + ]], + [[ + 15724, + 15731, + 15722 + ]], + [[ + 15725, + 15722, + 15731 + ]], + [[ + 15721, + 15720, + 15722 + ]], + [[ + 15745, + 15744, + 15723 + ]], + [[ + 15723, + 15722, + 15720 + ]], + [[ + 15744, + 15740, + 15723 + ]], + [[ + 15742, + 15732, + 15740 + ]], + [[ + 15739, + 15741, + 15730 + ]], + [[ + 15727, + 15726, + 15738 + ]], + [[ + 15722, + 15741, + 15739 + ]], + [[ + 15725, + 15735, + 15741 + ]], + [[ + 15720, + 15745, + 15723 + ]], + [[ + 15746, + 15742, + 15744 + ]], + [[ + 15733, + 15737, + 15734 + ]], + [[ + 15733, + 15728, + 15738 + ]], + [[ + 15743, + 15738, + 15728 + ]], + [[ + 15737, + 15733, + 15738 + ]], + [[ + 15735, + 15727, + 15736 + ]], + [[ + 15735, + 15725, + 15727 + ]], + [[ + 15746, + 15745, + 15719 + ]], + [[ + 15747, + 15744, + 15745 + ]], + [[ + 15746, + 15719, + 15729 + ]], + [[ + 15745, + 15720, + 15719 + ]], + [[ + 15736, + 15743, + 15728 + ]], + [[ + 15727, + 15738, + 15743 + ]], + [[ + 15746, + 15747, + 15745 + ]], + [[ + 15746, + 15744, + 15747 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95eafcdb-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15748, + 15749, + 8753 + ]], + [[ + 15748, + 8723, + 8752 + ]], + [[ + 15750, + 15751, + 15748 + ]], + [[ + 15748, + 8753, + 8723 + ]], + [[ + 15750, + 15749, + 15751 + ]], + [[ + 8756, + 8753, + 15749 + ]], + [[ + 15750, + 15748, + 8752 + ]], + [[ + 15751, + 15749, + 15748 + ]], + [[ + 8756, + 15750, + 8752 + ]], + [[ + 8756, + 15749, + 15750 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95ec5c64-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba6749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15752, + 15753, + 15754 + ]], + [[ + 15755, + 15756, + 15757 + ]], + [[ + 15758, + 15759, + 15756 + ]], + [[ + 15757, + 15760, + 15761 + ]], + [[ + 15762, + 15763, + 15758 + ]], + [[ + 15759, + 15754, + 15753 + ]], + [[ + 15764, + 15765, + 15762 + ]], + [[ + 15765, + 15754, + 15759 + ]], + [[ + 15755, + 15758, + 15756 + ]], + [[ + 15763, + 15765, + 15758 + ]], + [[ + 15758, + 15765, + 15759 + ]], + [[ + 15764, + 15760, + 15754 + ]], + [[ + 15759, + 15753, + 15756 + ]], + [[ + 15754, + 15760, + 15752 + ]], + [[ + 15756, + 15766, + 15757 + ]], + [[ + 15756, + 15753, + 15766 + ]], + [[ + 15762, + 15765, + 15763 + ]], + [[ + 15764, + 15754, + 15765 + ]], + [[ + 15767, + 15768, + 15769 + ]], + [[ + 15768, + 15753, + 15769 + ]], + [[ + 15757, + 15752, + 15760 + ]], + [[ + 15769, + 15753, + 15752 + ]], + [[ + 15755, + 15757, + 15761 + ]], + [[ + 15767, + 15769, + 15752 + ]], + [[ + 15766, + 15768, + 15757 + ]], + [[ + 15766, + 15753, + 15768 + ]], + [[ + 15757, + 15767, + 15752 + ]], + [[ + 15757, + 15768, + 15767 + ]], + [[ + 15762, + 15755, + 15761 + ]], + [[ + 15762, + 15758, + 15755 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95ecd1fd-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15770, + 15771, + 15772 + ]], + [[ + 15773, + 15774, + 15775 + ]], + [[ + 15776, + 15777, + 15778 + ]], + [[ + 15779, + 15780, + 15781 + ]], + [[ + 15770, + 15774, + 15771 + ]], + [[ + 15771, + 15779, + 15781 + ]], + [[ + 15770, + 15775, + 15774 + ]], + [[ + 15782, + 15783, + 15774 + ]], + [[ + 15773, + 15782, + 15774 + ]], + [[ + 15784, + 15785, + 15786 + ]], + [[ + 15787, + 15788, + 15782 + ]], + [[ + 15789, + 15785, + 15784 + ]], + [[ + 15790, + 15776, + 15778 + ]], + [[ + 15776, + 15791, + 15777 + ]], + [[ + 15780, + 15786, + 15781 + ]], + [[ + 15771, + 15792, + 15772 + ]], + [[ + 15790, + 15793, + 15794 + ]], + [[ + 15793, + 15784, + 15779 + ]], + [[ + 15793, + 15778, + 15784 + ]], + [[ + 15777, + 15784, + 15778 + ]], + [[ + 15771, + 15794, + 15779 + ]], + [[ + 15779, + 15784, + 15780 + ]], + [[ + 15795, + 15770, + 15772 + ]], + [[ + 15795, + 15796, + 15770 + ]], + [[ + 15780, + 15784, + 15786 + ]], + [[ + 15777, + 15791, + 15789 + ]], + [[ + 15773, + 15787, + 15782 + ]], + [[ + 15787, + 15797, + 15788 + ]], + [[ + 15770, + 15796, + 15798 + ]], + [[ + 15798, + 15787, + 15773 + ]], + [[ + 15788, + 15791, + 15776 + ]], + [[ + 15795, + 15785, + 15791 + ]], + [[ + 15788, + 15799, + 15791 + ]], + [[ + 15797, + 15791, + 15799 + ]], + [[ + 15782, + 15788, + 15776 + ]], + [[ + 15787, + 15796, + 15797 + ]], + [[ + 15777, + 15789, + 15784 + ]], + [[ + 15791, + 15785, + 15789 + ]], + [[ + 15798, + 15796, + 15787 + ]], + [[ + 15795, + 15797, + 15796 + ]], + [[ + 15788, + 15797, + 15799 + ]], + [[ + 15795, + 15791, + 15797 + ]], + [[ + 15775, + 15798, + 15773 + ]], + [[ + 15775, + 15770, + 15798 + ]], + [[ + 15785, + 15781, + 15786 + ]], + [[ + 15785, + 15792, + 15781 + ]], + [[ + 15774, + 15783, + 15794 + ]], + [[ + 15782, + 15776, + 15790 + ]], + [[ + 15783, + 15790, + 15794 + ]], + [[ + 15783, + 15782, + 15790 + ]], + [[ + 15794, + 15793, + 15779 + ]], + [[ + 15790, + 15778, + 15793 + ]], + [[ + 15794, + 15771, + 15774 + ]], + [[ + 15781, + 15792, + 15771 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95ecf925-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15800, + 15801, + 15802 + ]], + [[ + 15803, + 15804, + 15805 + ]], + [[ + 15806, + 15807, + 15801 + ]], + [[ + 15808, + 15809, + 15804 + ]], + [[ + 15810, + 15811, + 15807 + ]], + [[ + 15812, + 15809, + 15808 + ]], + [[ + 15802, + 15801, + 15807 + ]], + [[ + 15813, + 15804, + 15803 + ]], + [[ + 15814, + 15810, + 15801 + ]], + [[ + 15802, + 15811, + 15815 + ]], + [[ + 15816, + 15810, + 15817 + ]], + [[ + 15818, + 15819, + 15810 + ]], + [[ + 15819, + 15818, + 15805 + ]], + [[ + 15819, + 15811, + 15810 + ]], + [[ + 15820, + 15821, + 15814 + ]], + [[ + 15805, + 15818, + 15821 + ]], + [[ + 15820, + 15814, + 15822 + ]], + [[ + 15817, + 15810, + 15814 + ]], + [[ + 15814, + 15823, + 15822 + ]], + [[ + 15814, + 15801, + 15823 + ]], + [[ + 15821, + 15817, + 15814 + ]], + [[ + 15821, + 15818, + 15816 + ]], + [[ + 15824, + 15819, + 15805 + ]], + [[ + 15824, + 15811, + 15819 + ]], + [[ + 15821, + 15816, + 15817 + ]], + [[ + 15818, + 15810, + 15816 + ]], + [[ + 15810, + 15806, + 15801 + ]], + [[ + 15810, + 15807, + 15806 + ]], + [[ + 15803, + 15820, + 15822 + ]], + [[ + 15805, + 15821, + 15820 + ]], + [[ + 15823, + 15813, + 15803 + ]], + [[ + 15823, + 15801, + 15813 + ]], + [[ + 15800, + 15815, + 15812 + ]], + [[ + 15811, + 15824, + 15812 + ]], + [[ + 15811, + 15802, + 15807 + ]], + [[ + 15815, + 15800, + 15802 + ]], + [[ + 15820, + 15803, + 15805 + ]], + [[ + 15822, + 15823, + 15803 + ]], + [[ + 15825, + 15800, + 15808 + ]], + [[ + 15813, + 15801, + 15800 + ]], + [[ + 15811, + 15812, + 15815 + ]], + [[ + 15824, + 15809, + 15812 + ]], + [[ + 15813, + 15825, + 15804 + ]], + [[ + 15800, + 15812, + 15808 + ]], + [[ + 15804, + 15825, + 15808 + ]], + [[ + 15813, + 15800, + 15825 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95ed1f59-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba4b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15826, + 15827, + 15828 + ]], + [[ + 15829, + 15830, + 15831 + ]], + [[ + 15826, + 15829, + 15831 + ]], + [[ + 15832, + 15833, + 15834 + ]], + [[ + 15834, + 15827, + 15831 + ]], + [[ + 15835, + 15836, + 15837 + ]], + [[ + 15831, + 15827, + 15826 + ]], + [[ + 15835, + 15837, + 15838 + ]], + [[ + 15834, + 15833, + 15827 + ]], + [[ + 15834, + 15839, + 15832 + ]], + [[ + 15829, + 15840, + 15830 + ]], + [[ + 15829, + 15826, + 15836 + ]], + [[ + 15829, + 15836, + 15840 + ]], + [[ + 15827, + 15833, + 15828 + ]], + [[ + 15837, + 15828, + 15832 + ]], + [[ + 15836, + 15826, + 15828 + ]], + [[ + 15838, + 15832, + 15839 + ]], + [[ + 15828, + 15833, + 15832 + ]], + [[ + 15838, + 15837, + 15832 + ]], + [[ + 15836, + 15828, + 15837 + ]], + [[ + 15830, + 15841, + 15839 + ]], + [[ + 15841, + 15840, + 15835 + ]], + [[ + 15841, + 15835, + 15838 + ]], + [[ + 15840, + 15836, + 15835 + ]], + [[ + 15842, + 15834, + 15831 + ]], + [[ + 15842, + 15839, + 15834 + ]], + [[ + 15839, + 15841, + 15838 + ]], + [[ + 15830, + 15840, + 15841 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b95ed4687-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "begroeidterreindeeloptalud": "0", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "groenvoorziening", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68efba5849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 15843, + 15844, + 15845 + ]], + [[ + 15846, + 15847, + 15848 + ]], + [[ + 15843, + 15845, + 15849 + ]], + [[ + 15844, + 15847, + 15845 + ]], + [[ + 15850, + 15843, + 15851 + ]], + [[ + 15845, + 15847, + 15849 + ]], + [[ + 15851, + 15843, + 15849 + ]], + [[ + 15850, + 15844, + 15843 + ]], + [[ + 15850, + 15851, + 15848 + ]], + [[ + 15849, + 15847, + 15851 + ]], + [[ + 15851, + 15846, + 15848 + ]], + [[ + 15851, + 15847, + 15846 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "PlantCover" + }, + "b981072fa-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15217, + 11959, + 15852 + ]], + [[ + 15217, + 15852, + 15235 + ]], + [[ + 11959, + 11986, + 15852 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9813a745-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad op trap", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef1ad049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "gesloten verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15853, + 8126, + 8128 + ]], + [[ + 15853, + 8128, + 15854 + ]], + [[ + 15854, + 8128, + 8130 + ]], + [[ + 8130, + 8128, + 8129 + ]], + [[ + 8126, + 8127, + 8128 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9813ce67-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef345149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15855, + 15856, + 15857 + ]], + [[ + 15855, + 15857, + 15858 + ]], + [[ + 15856, + 15859, + 15857 + ]], + [[ + 15856, + 15860, + 15859 + ]], + [[ + 15860, + 15856, + 15861 + ]], + [[ + 15861, + 15856, + 15862 + ]], + [[ + 15862, + 15856, + 15863 + ]], + [[ + 15863, + 15856, + 15864 + ]], + [[ + 15864, + 15856, + 15865 + ]], + [[ + 15865, + 15856, + 15866 + ]], + [[ + 15866, + 15856, + 15867 + ]], + [[ + 15867, + 15856, + 15868 + ]], + [[ + 15868, + 15856, + 15869 + ]], + [[ + 15869, + 15856, + 15870 + ]], + [[ + 15870, + 15856, + 15871 + ]], + [[ + 15871, + 15856, + 15872 + ]], + [[ + 15872, + 15856, + 15873 + ]], + [[ + 15873, + 15856, + 15874 + ]], + [[ + 15874, + 15856, + 15875 + ]], + [[ + 15875, + 15856, + 15876 + ]], + [[ + 15876, + 15856, + 15877 + ]], + [[ + 15877, + 15856, + 15878 + ]], + [[ + 15878, + 15856, + 15879 + ]], + [[ + 15879, + 15856, + 15880 + ]], + [[ + 15880, + 15856, + 15881 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9816dbab-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eebe0749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15882, + 15883, + 15217 + ]], + [[ + 14527, + 14532, + 15884 + ]], + [[ + 15885, + 15328, + 15886 + ]], + [[ + 15886, + 15328, + 15887 + ]], + [[ + 15887, + 15328, + 15888 + ]], + [[ + 15888, + 15328, + 15889 + ]], + [[ + 15328, + 15890, + 15891 + ]], + [[ + 15889, + 15328, + 15891 + ]], + [[ + 15890, + 15328, + 15892 + ]], + [[ + 15892, + 14118, + 15893 + ]], + [[ + 15893, + 14118, + 15894 + ]], + [[ + 15894, + 14102, + 15895 + ]], + [[ + 15895, + 14102, + 15896 + ]], + [[ + 11876, + 15884, + 15897 + ]], + [[ + 15898, + 14102, + 15897 + ]], + [[ + 15896, + 14102, + 15898 + ]], + [[ + 15899, + 15328, + 15885 + ]], + [[ + 15884, + 15693, + 14527 + ]], + [[ + 15899, + 15900, + 15325 + ]], + [[ + 15693, + 15884, + 15694 + ]], + [[ + 15694, + 15884, + 11876 + ]], + [[ + 11876, + 15897, + 11877 + ]], + [[ + 11877, + 15897, + 15472 + ]], + [[ + 15472, + 15897, + 15470 + ]], + [[ + 15470, + 15897, + 14102 + ]], + [[ + 14102, + 15894, + 14118 + ]], + [[ + 14118, + 15892, + 15328 + ]], + [[ + 15328, + 15899, + 15325 + ]], + [[ + 15325, + 15900, + 11997 + ]], + [[ + 15901, + 15216, + 14267 + ]], + [[ + 15902, + 15903, + 15904 + ]], + [[ + 15904, + 15905, + 15906 + ]], + [[ + 15907, + 15904, + 15906 + ]], + [[ + 15908, + 15909, + 15910 + ]], + [[ + 15910, + 15903, + 15911 + ]], + [[ + 15912, + 15908, + 15910 + ]], + [[ + 15911, + 15912, + 15910 + ]], + [[ + 15902, + 15911, + 15903 + ]], + [[ + 15913, + 15902, + 15904 + ]], + [[ + 15914, + 15913, + 15904 + ]], + [[ + 11987, + 15915, + 15906 + ]], + [[ + 15916, + 11959, + 15217 + ]], + [[ + 15904, + 15917, + 15914 + ]], + [[ + 11987, + 11959, + 15915 + ]], + [[ + 15917, + 15904, + 15918 + ]], + [[ + 15919, + 15907, + 15906 + ]], + [[ + 15918, + 15904, + 15907 + ]], + [[ + 15920, + 15919, + 15906 + ]], + [[ + 15216, + 15901, + 15217 + ]], + [[ + 15920, + 15906, + 15921 + ]], + [[ + 15921, + 15906, + 15915 + ]], + [[ + 15915, + 11959, + 15916 + ]], + [[ + 15217, + 15922, + 15916 + ]], + [[ + 15217, + 15923, + 15922 + ]], + [[ + 14267, + 14254, + 15924 + ]], + [[ + 15923, + 15217, + 15925 + ]], + [[ + 15925, + 15217, + 15926 + ]], + [[ + 15926, + 15217, + 15927 + ]], + [[ + 15927, + 15217, + 15928 + ]], + [[ + 15928, + 15217, + 15929 + ]], + [[ + 15929, + 15217, + 15930 + ]], + [[ + 15930, + 15217, + 15883 + ]], + [[ + 15931, + 15882, + 15217 + ]], + [[ + 15932, + 15931, + 15217 + ]], + [[ + 15933, + 15932, + 15217 + ]], + [[ + 15901, + 15933, + 15217 + ]], + [[ + 15901, + 15934, + 15933 + ]], + [[ + 15901, + 15935, + 15934 + ]], + [[ + 15901, + 15936, + 15935 + ]], + [[ + 15901, + 15937, + 15936 + ]], + [[ + 15937, + 15901, + 15938 + ]], + [[ + 15938, + 15901, + 15939 + ]], + [[ + 15939, + 15901, + 15940 + ]], + [[ + 15940, + 15901, + 15941 + ]], + [[ + 15941, + 15901, + 15942 + ]], + [[ + 15942, + 15943, + 15944 + ]], + [[ + 15944, + 15943, + 15945 + ]], + [[ + 7171, + 15945, + 7170 + ]], + [[ + 7170, + 15945, + 15943 + ]], + [[ + 15943, + 15942, + 15901 + ]], + [[ + 7199, + 15943, + 15901 + ]], + [[ + 15924, + 15901, + 14267 + ]], + [[ + 7198, + 7199, + 15901 + ]], + [[ + 14254, + 11998, + 15946 + ]], + [[ + 14254, + 15947, + 15924 + ]], + [[ + 14254, + 15946, + 15947 + ]], + [[ + 11998, + 15948, + 15946 + ]], + [[ + 11998, + 15949, + 15948 + ]], + [[ + 11998, + 15950, + 15949 + ]], + [[ + 11998, + 15951, + 15950 + ]], + [[ + 11998, + 11997, + 15952 + ]], + [[ + 11998, + 15952, + 15951 + ]], + [[ + 11997, + 15900, + 15952 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9817c598-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15953, + 15954, + 15955 + ]], + [[ + 15954, + 15956, + 15955 + ]], + [[ + 15957, + 15958, + 15959 + ]], + [[ + 15957, + 15955, + 15960 + ]], + [[ + 15957, + 15961, + 15958 + ]], + [[ + 15957, + 15962, + 15961 + ]], + [[ + 15957, + 15963, + 15962 + ]], + [[ + 15957, + 15964, + 15963 + ]], + [[ + 15957, + 15965, + 15964 + ]], + [[ + 15957, + 15966, + 15965 + ]], + [[ + 15957, + 15967, + 15966 + ]], + [[ + 15957, + 15968, + 15967 + ]], + [[ + 15957, + 15969, + 15968 + ]], + [[ + 15957, + 15960, + 15969 + ]], + [[ + 15955, + 15970, + 15960 + ]], + [[ + 15955, + 15956, + 15970 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b981a0ff9-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33bf49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15971, + 15972, + 15973 + ]], + [[ + 15971, + 15973, + 15974 + ]], + [[ + 15972, + 15975, + 15973 + ]], + [[ + 15976, + 15977, + 15978 + ]], + [[ + 15979, + 15976, + 15980 + ]], + [[ + 15981, + 15979, + 15982 + ]], + [[ + 15983, + 15981, + 15984 + ]], + [[ + 15985, + 15983, + 15986 + ]], + [[ + 15987, + 15985, + 15988 + ]], + [[ + 15989, + 15987, + 15990 + ]], + [[ + 15991, + 15989, + 15992 + ]], + [[ + 15993, + 15991, + 15994 + ]], + [[ + 15995, + 15993, + 15996 + ]], + [[ + 15997, + 15995, + 15998 + ]], + [[ + 15997, + 15999, + 16000 + ]], + [[ + 15997, + 15998, + 15999 + ]], + [[ + 15995, + 15996, + 15998 + ]], + [[ + 15977, + 16001, + 16002 + ]], + [[ + 15993, + 15994, + 15996 + ]], + [[ + 15991, + 15992, + 15994 + ]], + [[ + 16001, + 16003, + 16004 + ]], + [[ + 15989, + 15990, + 15992 + ]], + [[ + 15987, + 15988, + 15990 + ]], + [[ + 16003, + 16005, + 16006 + ]], + [[ + 15985, + 15986, + 15988 + ]], + [[ + 15983, + 15984, + 15986 + ]], + [[ + 16005, + 16007, + 16008 + ]], + [[ + 15981, + 15982, + 15984 + ]], + [[ + 15979, + 15980, + 15982 + ]], + [[ + 16007, + 16009, + 16010 + ]], + [[ + 15976, + 15978, + 15980 + ]], + [[ + 15977, + 16002, + 15978 + ]], + [[ + 16009, + 16011, + 16012 + ]], + [[ + 16001, + 16004, + 16002 + ]], + [[ + 16003, + 16006, + 16004 + ]], + [[ + 16011, + 16013, + 16014 + ]], + [[ + 16005, + 16008, + 16006 + ]], + [[ + 16007, + 16010, + 16008 + ]], + [[ + 16013, + 16015, + 16016 + ]], + [[ + 16009, + 16012, + 16010 + ]], + [[ + 16011, + 16014, + 16012 + ]], + [[ + 16015, + 16017, + 16018 + ]], + [[ + 16013, + 16016, + 16014 + ]], + [[ + 16015, + 16018, + 16016 + ]], + [[ + 16017, + 16019, + 16020 + ]], + [[ + 16017, + 16020, + 16018 + ]], + [[ + 16019, + 15975, + 16020 + ]], + [[ + 16019, + 15973, + 15975 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b981aabab-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee28149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 8743, + 8321, + 8322 + ]], + [[ + 8743, + 556, + 16021 + ]], + [[ + 16022, + 458, + 16023 + ]], + [[ + 1882, + 10957, + 15847 + ]], + [[ + 16024, + 7034, + 7033 + ]], + [[ + 16025, + 8321, + 16026 + ]], + [[ + 16027, + 16024, + 16028 + ]], + [[ + 16029, + 16027, + 16030 + ]], + [[ + 16030, + 16027, + 16031 + ]], + [[ + 16032, + 16030, + 16033 + ]], + [[ + 16033, + 16030, + 16034 + ]], + [[ + 16034, + 16030, + 16035 + ]], + [[ + 16036, + 16034, + 16035 + ]], + [[ + 16035, + 16030, + 16037 + ]], + [[ + 16037, + 16030, + 16038 + ]], + [[ + 16039, + 16037, + 16038 + ]], + [[ + 16038, + 16030, + 16031 + ]], + [[ + 16040, + 16038, + 16041 + ]], + [[ + 16041, + 16038, + 16042 + ]], + [[ + 16043, + 16041, + 16042 + ]], + [[ + 16044, + 16043, + 16042 + ]], + [[ + 16042, + 16038, + 16031 + ]], + [[ + 16045, + 16042, + 16031 + ]], + [[ + 16031, + 16027, + 16028 + ]], + [[ + 16046, + 16031, + 16047 + ]], + [[ + 16047, + 16031, + 16028 + ]], + [[ + 16048, + 16047, + 16028 + ]], + [[ + 1880, + 7037, + 1881 + ]], + [[ + 1073, + 1074, + 16049 + ]], + [[ + 15844, + 16050, + 15847 + ]], + [[ + 15847, + 16050, + 16051 + ]], + [[ + 15844, + 16052, + 16050 + ]], + [[ + 16053, + 16054, + 15844 + ]], + [[ + 16055, + 15844, + 16056 + ]], + [[ + 16056, + 16049, + 16057 + ]], + [[ + 16055, + 16053, + 15844 + ]], + [[ + 6727, + 16058, + 16059 + ]], + [[ + 1072, + 1073, + 16049 + ]], + [[ + 1071, + 1072, + 16049 + ]], + [[ + 1094, + 1071, + 16049 + ]], + [[ + 1068, + 1094, + 16049 + ]], + [[ + 16049, + 1065, + 1068 + ]], + [[ + 16049, + 1063, + 1065 + ]], + [[ + 16049, + 15844, + 1063 + ]], + [[ + 6893, + 6894, + 16024 + ]], + [[ + 7037, + 16024, + 7033 + ]], + [[ + 7037, + 7035, + 7036 + ]], + [[ + 7037, + 7033, + 7035 + ]], + [[ + 6889, + 6890, + 16024 + ]], + [[ + 6894, + 7034, + 16024 + ]], + [[ + 7034, + 6894, + 7038 + ]], + [[ + 7038, + 6894, + 6895 + ]], + [[ + 6924, + 6928, + 6889 + ]], + [[ + 16023, + 460, + 16059 + ]], + [[ + 6893, + 16024, + 6890 + ]], + [[ + 6892, + 6893, + 6890 + ]], + [[ + 6892, + 6890, + 6891 + ]], + [[ + 16024, + 16060, + 6924 + ]], + [[ + 6924, + 6889, + 16024 + ]], + [[ + 6889, + 6887, + 6888 + ]], + [[ + 6887, + 6889, + 6928 + ]], + [[ + 6887, + 6929, + 6885 + ]], + [[ + 16058, + 6980, + 16060 + ]], + [[ + 6929, + 6887, + 6928 + ]], + [[ + 6924, + 16060, + 6973 + ]], + [[ + 6973, + 16060, + 6971 + ]], + [[ + 6971, + 16060, + 6980 + ]], + [[ + 6980, + 16058, + 6727 + ]], + [[ + 6727, + 16059, + 460 + ]], + [[ + 460, + 16023, + 459 + ]], + [[ + 16023, + 458, + 459 + ]], + [[ + 16022, + 478, + 458 + ]], + [[ + 477, + 478, + 557 + ]], + [[ + 478, + 555, + 557 + ]], + [[ + 478, + 16022, + 555 + ]], + [[ + 556, + 555, + 16061 + ]], + [[ + 16061, + 555, + 16062 + ]], + [[ + 16062, + 555, + 16063 + ]], + [[ + 16063, + 555, + 16064 + ]], + [[ + 16064, + 555, + 16065 + ]], + [[ + 16065, + 555, + 16066 + ]], + [[ + 16066, + 555, + 16067 + ]], + [[ + 16067, + 555, + 16022 + ]], + [[ + 8320, + 8321, + 16025 + ]], + [[ + 8319, + 8320, + 16068 + ]], + [[ + 8320, + 16069, + 16068 + ]], + [[ + 8320, + 16025, + 16069 + ]], + [[ + 16070, + 16071, + 16072 + ]], + [[ + 16071, + 16073, + 16072 + ]], + [[ + 16071, + 16069, + 16025 + ]], + [[ + 16071, + 16025, + 16073 + ]], + [[ + 16074, + 16075, + 16076 + ]], + [[ + 16074, + 16077, + 16075 + ]], + [[ + 16074, + 16073, + 16025 + ]], + [[ + 16074, + 16025, + 16077 + ]], + [[ + 16078, + 16079, + 8317 + ]], + [[ + 16078, + 8317, + 8318 + ]], + [[ + 16025, + 16026, + 16080 + ]], + [[ + 16081, + 14727, + 8316 + ]], + [[ + 8314, + 8311, + 8313 + ]], + [[ + 8311, + 16082, + 8312 + ]], + [[ + 8311, + 16083, + 16082 + ]], + [[ + 8311, + 16084, + 16083 + ]], + [[ + 8311, + 16085, + 16084 + ]], + [[ + 16084, + 16085, + 16086 + ]], + [[ + 16086, + 16085, + 16087 + ]], + [[ + 16087, + 16085, + 16088 + ]], + [[ + 16088, + 16085, + 16089 + ]], + [[ + 16089, + 16085, + 16090 + ]], + [[ + 16090, + 16091, + 16092 + ]], + [[ + 14729, + 16081, + 16093 + ]], + [[ + 14724, + 16094, + 14725 + ]], + [[ + 14727, + 8315, + 8316 + ]], + [[ + 16080, + 16026, + 16095 + ]], + [[ + 8321, + 8743, + 16026 + ]], + [[ + 16025, + 16079, + 16077 + ]], + [[ + 16025, + 16081, + 16079 + ]], + [[ + 16079, + 16081, + 8317 + ]], + [[ + 8317, + 16081, + 8316 + ]], + [[ + 16095, + 16096, + 16097 + ]], + [[ + 16095, + 16098, + 16096 + ]], + [[ + 16095, + 16099, + 16098 + ]], + [[ + 16098, + 16100, + 16101 + ]], + [[ + 16101, + 16100, + 16102 + ]], + [[ + 16098, + 16099, + 16100 + ]], + [[ + 16095, + 16103, + 16099 + ]], + [[ + 16099, + 16104, + 16105 + ]], + [[ + 16099, + 16103, + 16104 + ]], + [[ + 16095, + 16106, + 16103 + ]], + [[ + 16103, + 16107, + 16108 + ]], + [[ + 16108, + 16107, + 16109 + ]], + [[ + 16103, + 16106, + 16107 + ]], + [[ + 16107, + 16106, + 16110 + ]], + [[ + 16095, + 16111, + 16106 + ]], + [[ + 16106, + 16111, + 16112 + ]], + [[ + 16095, + 16113, + 16111 + ]], + [[ + 16095, + 16026, + 16113 + ]], + [[ + 16113, + 16026, + 16114 + ]], + [[ + 8743, + 16021, + 16026 + ]], + [[ + 16021, + 556, + 16115 + ]], + [[ + 16021, + 16116, + 16117 + ]], + [[ + 16117, + 16116, + 16118 + ]], + [[ + 16021, + 16119, + 16116 + ]], + [[ + 16116, + 16120, + 16121 + ]], + [[ + 16121, + 16122, + 16123 + ]], + [[ + 16121, + 16120, + 16122 + ]], + [[ + 16122, + 16120, + 16124 + ]], + [[ + 16124, + 16120, + 16125 + ]], + [[ + 16116, + 16119, + 16120 + ]], + [[ + 16120, + 16119, + 16126 + ]], + [[ + 16126, + 16127, + 16128 + ]], + [[ + 16126, + 16119, + 16127 + ]], + [[ + 16127, + 16119, + 16129 + ]], + [[ + 16021, + 16130, + 16119 + ]], + [[ + 16119, + 16131, + 16132 + ]], + [[ + 16119, + 16130, + 16131 + ]], + [[ + 16131, + 16130, + 16133 + ]], + [[ + 16021, + 16134, + 16130 + ]], + [[ + 16021, + 16115, + 16134 + ]], + [[ + 556, + 16061, + 16115 + ]], + [[ + 14724, + 16135, + 16094 + ]], + [[ + 16136, + 16091, + 16135 + ]], + [[ + 16092, + 16091, + 16136 + ]], + [[ + 16085, + 8314, + 16094 + ]], + [[ + 16090, + 16085, + 16091 + ]], + [[ + 8311, + 8314, + 16085 + ]], + [[ + 16136, + 14724, + 16093 + ]], + [[ + 16136, + 16135, + 14724 + ]], + [[ + 8314, + 14725, + 16094 + ]], + [[ + 8314, + 8315, + 14727 + ]], + [[ + 14729, + 14727, + 16081 + ]], + [[ + 14725, + 8314, + 14727 + ]], + [[ + 14724, + 14729, + 16093 + ]], + [[ + 10958, + 10957, + 1881 + ]], + [[ + 1882, + 15847, + 16028 + ]], + [[ + 16024, + 1882, + 16028 + ]], + [[ + 1881, + 10957, + 1882 + ]], + [[ + 16024, + 1883, + 1882 + ]], + [[ + 16024, + 7037, + 1883 + ]], + [[ + 1883, + 7037, + 1880 + ]], + [[ + 7037, + 10958, + 1881 + ]], + [[ + 16052, + 15844, + 16054 + ]], + [[ + 1064, + 10958, + 7037 + ]], + [[ + 1064, + 10959, + 10958 + ]], + [[ + 15844, + 16049, + 16056 + ]], + [[ + 15847, + 10957, + 10956 + ]], + [[ + 15850, + 1063, + 15844 + ]], + [[ + 15848, + 15847, + 10956 + ]], + [[ + 16051, + 16028, + 15847 + ]], + [[ + 10959, + 15848, + 10956 + ]], + [[ + 10959, + 1064, + 15850 + ]], + [[ + 10959, + 15850, + 15848 + ]], + [[ + 1064, + 1063, + 15850 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b981af9f2-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16137, + 13251, + 13250 + ]], + [[ + 16137, + 16138, + 16139 + ]], + [[ + 16139, + 16140, + 16141 + ]], + [[ + 16141, + 16142, + 16143 + ]], + [[ + 16143, + 16144, + 16145 + ]], + [[ + 10245, + 10244, + 16146 + ]], + [[ + 16145, + 16147, + 16146 + ]], + [[ + 10245, + 16146, + 16148 + ]], + [[ + 16148, + 16146, + 16147 + ]], + [[ + 16147, + 16145, + 16144 + ]], + [[ + 16144, + 16143, + 16142 + ]], + [[ + 16142, + 16141, + 16140 + ]], + [[ + 16140, + 16139, + 16138 + ]], + [[ + 16138, + 16137, + 13250 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b981ecb10-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 12452, + 15809, + 12454 + ]], + [[ + 15809, + 15824, + 12454 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b981f8dcc-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16149, + 16150, + 16151 + ]], + [[ + 16149, + 16151, + 16152 + ]], + [[ + 16152, + 16151, + 16153 + ]], + [[ + 16153, + 16151, + 16154 + ]], + [[ + 16154, + 16151, + 16155 + ]], + [[ + 16155, + 16151, + 16156 + ]], + [[ + 16156, + 16151, + 16157 + ]], + [[ + 16157, + 16151, + 16158 + ]], + [[ + 16158, + 16159, + 16160 + ]], + [[ + 16160, + 16159, + 16161 + ]], + [[ + 16161, + 16159, + 16162 + ]], + [[ + 16162, + 16159, + 16163 + ]], + [[ + 16163, + 16159, + 16164 + ]], + [[ + 16164, + 16159, + 16165 + ]], + [[ + 16165, + 16159, + 16166 + ]], + [[ + 16166, + 16159, + 16167 + ]], + [[ + 16167, + 16159, + 16168 + ]], + [[ + 16168, + 16159, + 16169 + ]], + [[ + 16169, + 16159, + 16170 + ]], + [[ + 16158, + 16151, + 16159 + ]], + [[ + 16171, + 16172, + 16173 + ]], + [[ + 16151, + 16171, + 16173 + ]], + [[ + 16150, + 16171, + 16151 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9821d845-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee48d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 261, + 262, + 16174 + ]], + [[ + 261, + 16174, + 2808 + ]], + [[ + 2808, + 16175, + 2807 + ]], + [[ + 16175, + 2808, + 16174 + ]], + [[ + 16175, + 16174, + 16176 + ]], + [[ + 262, + 16177, + 16174 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98229afb-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eebe0149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16178, + 16179, + 16180 + ]], + [[ + 16181, + 16182, + 16183 + ]], + [[ + 16184, + 16185, + 16186 + ]], + [[ + 16178, + 16187, + 16186 + ]], + [[ + 16185, + 16184, + 16188 + ]], + [[ + 16189, + 16188, + 16184 + ]], + [[ + 16190, + 16186, + 16187 + ]], + [[ + 16190, + 16184, + 16186 + ]], + [[ + 16187, + 16178, + 16191 + ]], + [[ + 16178, + 16192, + 16191 + ]], + [[ + 16192, + 16178, + 16193 + ]], + [[ + 16192, + 16193, + 16194 + ]], + [[ + 16178, + 16195, + 16193 + ]], + [[ + 16195, + 16178, + 16196 + ]], + [[ + 16196, + 16178, + 16197 + ]], + [[ + 16178, + 16180, + 16197 + ]], + [[ + 16179, + 16198, + 16180 + ]], + [[ + 16198, + 16179, + 16199 + ]], + [[ + 16198, + 16199, + 16200 + ]], + [[ + 16199, + 16179, + 16201 + ]], + [[ + 16202, + 16203, + 16204 + ]], + [[ + 16205, + 16203, + 16206 + ]], + [[ + 16207, + 16208, + 16209 + ]], + [[ + 16210, + 16201, + 12083 + ]], + [[ + 16211, + 12107, + 16212 + ]], + [[ + 16212, + 12107, + 16213 + ]], + [[ + 16213, + 12107, + 16214 + ]], + [[ + 16214, + 12107, + 16215 + ]], + [[ + 12107, + 16216, + 16217 + ]], + [[ + 16218, + 16219, + 12107 + ]], + [[ + 16220, + 16218, + 12107 + ]], + [[ + 16221, + 16220, + 12107 + ]], + [[ + 16222, + 16221, + 12107 + ]], + [[ + 16223, + 16222, + 16204 + ]], + [[ + 16208, + 16223, + 16209 + ]], + [[ + 16224, + 16208, + 16207 + ]], + [[ + 16225, + 16224, + 16207 + ]], + [[ + 16226, + 16225, + 16207 + ]], + [[ + 16227, + 16226, + 16207 + ]], + [[ + 16228, + 16227, + 16207 + ]], + [[ + 16229, + 16228, + 16207 + ]], + [[ + 16229, + 16230, + 16231 + ]], + [[ + 16229, + 16207, + 16230 + ]], + [[ + 16232, + 16230, + 16207 + ]], + [[ + 16233, + 16232, + 16207 + ]], + [[ + 16234, + 16233, + 16207 + ]], + [[ + 16235, + 16234, + 16207 + ]], + [[ + 16236, + 16235, + 16207 + ]], + [[ + 16237, + 16236, + 16207 + ]], + [[ + 16237, + 16238, + 16239 + ]], + [[ + 16237, + 16207, + 16238 + ]], + [[ + 16201, + 16179, + 12083 + ]], + [[ + 16207, + 16183, + 16240 + ]], + [[ + 16240, + 16183, + 16241 + ]], + [[ + 16207, + 16242, + 16183 + ]], + [[ + 16243, + 16181, + 16183 + ]], + [[ + 16243, + 16244, + 16181 + ]], + [[ + 16242, + 16243, + 16183 + ]], + [[ + 16245, + 16246, + 16243 + ]], + [[ + 16245, + 16247, + 16246 + ]], + [[ + 16242, + 16245, + 16243 + ]], + [[ + 16242, + 16248, + 16245 + ]], + [[ + 16249, + 16250, + 16248 + ]], + [[ + 16242, + 16249, + 16248 + ]], + [[ + 16251, + 16252, + 16249 + ]], + [[ + 16242, + 16251, + 16249 + ]], + [[ + 16242, + 16253, + 16251 + ]], + [[ + 16254, + 16242, + 16207 + ]], + [[ + 16209, + 16254, + 16207 + ]], + [[ + 16204, + 16209, + 16223 + ]], + [[ + 16255, + 16256, + 16257 + ]], + [[ + 16255, + 16257, + 16258 + ]], + [[ + 16259, + 16260, + 16257 + ]], + [[ + 16256, + 16259, + 16257 + ]], + [[ + 16209, + 16261, + 16258 + ]], + [[ + 16262, + 16259, + 16256 + ]], + [[ + 12083, + 16211, + 16210 + ]], + [[ + 16255, + 16258, + 16261 + ]], + [[ + 16261, + 16209, + 16203 + ]], + [[ + 16203, + 16209, + 16204 + ]], + [[ + 16203, + 16202, + 16206 + ]], + [[ + 12107, + 16217, + 16215 + ]], + [[ + 16263, + 12083, + 14772 + ]], + [[ + 12107, + 16219, + 16216 + ]], + [[ + 16264, + 16204, + 16265 + ]], + [[ + 16264, + 16202, + 16204 + ]], + [[ + 16204, + 12107, + 12118 + ]], + [[ + 16204, + 16222, + 12107 + ]], + [[ + 16211, + 12083, + 12107 + ]], + [[ + 16179, + 14772, + 12083 + ]], + [[ + 12117, + 12083, + 16263 + ]], + [[ + 16263, + 14772, + 14751 + ]], + [[ + 16266, + 16267, + 16259 + ]], + [[ + 16259, + 16267, + 16260 + ]], + [[ + 16268, + 16266, + 16262 + ]], + [[ + 16262, + 16266, + 16259 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9824be2e-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef229549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 13800, + 16269, + 16270 + ]], + [[ + 16271, + 16272, + 16273 + ]], + [[ + 16273, + 16274, + 16275 + ]], + [[ + 16273, + 16276, + 16274 + ]], + [[ + 16273, + 16277, + 16276 + ]], + [[ + 16273, + 16278, + 16277 + ]], + [[ + 16271, + 14711, + 16279 + ]], + [[ + 16278, + 16273, + 16272 + ]], + [[ + 16272, + 16271, + 16280 + ]], + [[ + 16280, + 16271, + 16281 + ]], + [[ + 16281, + 16271, + 16282 + ]], + [[ + 16282, + 16271, + 16283 + ]], + [[ + 16283, + 16271, + 16284 + ]], + [[ + 16284, + 16271, + 16279 + ]], + [[ + 16270, + 14631, + 14712 + ]], + [[ + 14569, + 14566, + 16285 + ]], + [[ + 12519, + 16286, + 16285 + ]], + [[ + 12522, + 16287, + 16286 + ]], + [[ + 16288, + 16287, + 12521 + ]], + [[ + 12519, + 12522, + 16286 + ]], + [[ + 12521, + 16287, + 12522 + ]], + [[ + 14566, + 12519, + 16285 + ]], + [[ + 12528, + 12519, + 14554 + ]], + [[ + 16269, + 11833, + 16285 + ]], + [[ + 14554, + 12519, + 14566 + ]], + [[ + 11833, + 14569, + 16285 + ]], + [[ + 14561, + 14569, + 11833 + ]], + [[ + 11855, + 11833, + 16269 + ]], + [[ + 11830, + 14561, + 11833 + ]], + [[ + 14936, + 11855, + 16269 + ]], + [[ + 11829, + 11855, + 14936 + ]], + [[ + 14942, + 14936, + 16269 + ]], + [[ + 14974, + 11829, + 14936 + ]], + [[ + 14925, + 14942, + 16269 + ]], + [[ + 14925, + 16269, + 12023 + ]], + [[ + 12042, + 12045, + 16269 + ]], + [[ + 12023, + 16269, + 12045 + ]], + [[ + 13800, + 12042, + 16269 + ]], + [[ + 16289, + 16290, + 12042 + ]], + [[ + 13764, + 16291, + 16289 + ]], + [[ + 13842, + 13800, + 16270 + ]], + [[ + 13765, + 12042, + 13800 + ]], + [[ + 13826, + 13800, + 13829 + ]], + [[ + 13842, + 13862, + 13800 + ]], + [[ + 13829, + 13800, + 13862 + ]], + [[ + 11918, + 13842, + 16270 + ]], + [[ + 13905, + 13842, + 11957 + ]], + [[ + 11933, + 11918, + 16270 + ]], + [[ + 11957, + 13842, + 11918 + ]], + [[ + 16292, + 11933, + 16270 + ]], + [[ + 11914, + 11933, + 16292 + ]], + [[ + 16292, + 16270, + 14712 + ]], + [[ + 16279, + 14710, + 16270 + ]], + [[ + 16270, + 14710, + 14631 + ]], + [[ + 16279, + 14711, + 14710 + ]], + [[ + 12022, + 16291, + 13764 + ]], + [[ + 16289, + 12042, + 13765 + ]], + [[ + 12022, + 16293, + 16291 + ]], + [[ + 12022, + 12042, + 16293 + ]], + [[ + 16293, + 12042, + 16290 + ]], + [[ + 13764, + 16289, + 13765 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98250c84-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef1df449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16028, + 16021, + 16117 + ]], + [[ + 16028, + 16060, + 16048 + ]], + [[ + 16047, + 16048, + 16060 + ]], + [[ + 16046, + 16047, + 16060 + ]], + [[ + 16031, + 16046, + 16060 + ]], + [[ + 16045, + 16031, + 16060 + ]], + [[ + 16042, + 16045, + 16060 + ]], + [[ + 16044, + 16042, + 16060 + ]], + [[ + 16043, + 16044, + 16060 + ]], + [[ + 16041, + 16043, + 16060 + ]], + [[ + 16040, + 16041, + 16060 + ]], + [[ + 16038, + 16040, + 16060 + ]], + [[ + 16039, + 16038, + 16060 + ]], + [[ + 16037, + 16039, + 16060 + ]], + [[ + 16035, + 16037, + 16060 + ]], + [[ + 16036, + 16035, + 16060 + ]], + [[ + 16034, + 16036, + 16060 + ]], + [[ + 16033, + 16034, + 16060 + ]], + [[ + 16032, + 16033, + 16060 + ]], + [[ + 16030, + 16032, + 16060 + ]], + [[ + 16029, + 16030, + 16060 + ]], + [[ + 16027, + 16029, + 16060 + ]], + [[ + 16027, + 16060, + 16024 + ]], + [[ + 16028, + 16023, + 16060 + ]], + [[ + 16028, + 16117, + 16023 + ]], + [[ + 16022, + 16023, + 16117 + ]], + [[ + 16066, + 16067, + 16117 + ]], + [[ + 16065, + 16066, + 16117 + ]], + [[ + 16064, + 16065, + 16117 + ]], + [[ + 16062, + 16063, + 16118 + ]], + [[ + 16061, + 16134, + 16115 + ]], + [[ + 16061, + 16130, + 16134 + ]], + [[ + 16061, + 16133, + 16130 + ]], + [[ + 16061, + 16131, + 16133 + ]], + [[ + 16061, + 16132, + 16131 + ]], + [[ + 16061, + 16119, + 16132 + ]], + [[ + 16061, + 16129, + 16119 + ]], + [[ + 16061, + 16127, + 16129 + ]], + [[ + 16061, + 16128, + 16127 + ]], + [[ + 16061, + 16126, + 16128 + ]], + [[ + 16061, + 16120, + 16126 + ]], + [[ + 16061, + 16125, + 16120 + ]], + [[ + 16061, + 16124, + 16125 + ]], + [[ + 16061, + 16122, + 16124 + ]], + [[ + 16061, + 16123, + 16122 + ]], + [[ + 16061, + 16121, + 16123 + ]], + [[ + 16061, + 16116, + 16121 + ]], + [[ + 16061, + 16062, + 16118 + ]], + [[ + 16061, + 16118, + 16116 + ]], + [[ + 16063, + 16064, + 16117 + ]], + [[ + 16063, + 16117, + 16118 + ]], + [[ + 16067, + 16022, + 16117 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98272edb-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 13205, + 15713, + 13206 + ]], + [[ + 16294, + 16295, + 13206 + ]], + [[ + 13217, + 13204, + 13207 + ]], + [[ + 13217, + 13210, + 13204 + ]], + [[ + 13206, + 16295, + 13207 + ]], + [[ + 13207, + 16295, + 13217 + ]], + [[ + 16296, + 13220, + 13221 + ]], + [[ + 14410, + 14407, + 16296 + ]], + [[ + 13221, + 16295, + 16296 + ]], + [[ + 13217, + 16295, + 13221 + ]], + [[ + 16295, + 16297, + 14413 + ]], + [[ + 13186, + 14406, + 14413 + ]], + [[ + 13187, + 13186, + 14413 + ]], + [[ + 14410, + 16295, + 14413 + ]], + [[ + 14413, + 16297, + 13187 + ]], + [[ + 15207, + 13183, + 13182 + ]], + [[ + 15207, + 15210, + 13183 + ]], + [[ + 16297, + 16298, + 15207 + ]], + [[ + 13182, + 16297, + 15207 + ]], + [[ + 16299, + 16300, + 15211 + ]], + [[ + 15831, + 15830, + 16301 + ]], + [[ + 16302, + 16298, + 16301 + ]], + [[ + 13202, + 16303, + 16294 + ]], + [[ + 16298, + 15831, + 16301 + ]], + [[ + 15207, + 16298, + 15211 + ]], + [[ + 13187, + 16297, + 13182 + ]], + [[ + 16296, + 16295, + 14410 + ]], + [[ + 15717, + 16294, + 13206 + ]], + [[ + 15761, + 9066, + 9078 + ]], + [[ + 15762, + 9071, + 16303 + ]], + [[ + 15761, + 9078, + 15762 + ]], + [[ + 15764, + 15762, + 16303 + ]], + [[ + 9078, + 9071, + 15762 + ]], + [[ + 15760, + 15764, + 16303 + ]], + [[ + 13190, + 15760, + 16303 + ]], + [[ + 13202, + 13192, + 16303 + ]], + [[ + 13190, + 16303, + 13192 + ]], + [[ + 11766, + 13202, + 16294 + ]], + [[ + 11766, + 13189, + 13202 + ]], + [[ + 11765, + 11766, + 16294 + ]], + [[ + 11761, + 13189, + 11766 + ]], + [[ + 16304, + 11765, + 16294 + ]], + [[ + 16304, + 11760, + 11765 + ]], + [[ + 14045, + 14040, + 16304 + ]], + [[ + 16294, + 14045, + 16304 + ]], + [[ + 15716, + 14041, + 16294 + ]], + [[ + 14045, + 16294, + 14041 + ]], + [[ + 16305, + 16306, + 15714 + ]], + [[ + 16307, + 15716, + 15714 + ]], + [[ + 15717, + 15716, + 16294 + ]], + [[ + 15713, + 15717, + 13206 + ]], + [[ + 14041, + 16308, + 14039 + ]], + [[ + 14041, + 15716, + 16308 + ]], + [[ + 16306, + 16307, + 15714 + ]], + [[ + 16308, + 15716, + 16307 + ]], + [[ + 14039, + 16305, + 15714 + ]], + [[ + 16308, + 16305, + 14039 + ]], + [[ + 16298, + 16299, + 15211 + ]], + [[ + 16309, + 16302, + 16301 + ]], + [[ + 16299, + 16298, + 16302 + ]], + [[ + 15209, + 16309, + 16301 + ]], + [[ + 15209, + 16300, + 16309 + ]], + [[ + 15209, + 15211, + 16300 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9827560c-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee4ae49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 21, + 16170, + 16159 + ]], + [[ + 21, + 16159, + 22 + ]], + [[ + 1, + 3, + 22 + ]], + [[ + 22, + 3, + 21 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98295220-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad op trap", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef1ad149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "gesloten verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 2963, + 2894, + 8564 + ]], + [[ + 2894, + 8607, + 8564 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9829794e-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef0b4c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 6995, + 6964, + 6994 + ]], + [[ + 6995, + 6962, + 6964 + ]], + [[ + 6995, + 6706, + 10614 + ]], + [[ + 6962, + 6995, + 16310 + ]], + [[ + 6961, + 16311, + 6960 + ]], + [[ + 6961, + 6962, + 16310 + ]], + [[ + 16311, + 6961, + 16310 + ]], + [[ + 16310, + 6995, + 16312 + ]], + [[ + 16312, + 6995, + 10614 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b982f6cae-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef4f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16313, + 16314, + 16315 + ]], + [[ + 16314, + 16316, + 16315 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98322b9f-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33ca49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15772, + 12451, + 15795 + ]], + [[ + 12451, + 12461, + 15795 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98349d40-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef135b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "sierbestrating", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 300, + 11066, + 299 + ]], + [[ + 300, + 313, + 11066 + ]], + [[ + 11066, + 313, + 11617 + ]], + [[ + 11622, + 11066, + 11617 + ]], + [[ + 11618, + 11622, + 11617 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9837d0a9-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16317, + 16318, + 16319 + ]], + [[ + 16317, + 16319, + 16320 + ]], + [[ + 16318, + 16321, + 16319 + ]], + [[ + 16321, + 16318, + 16322 + ]], + [[ + 16323, + 16324, + 16325 + ]], + [[ + 16326, + 16323, + 16327 + ]], + [[ + 16328, + 16326, + 16329 + ]], + [[ + 16330, + 16328, + 16331 + ]], + [[ + 16332, + 16330, + 16333 + ]], + [[ + 16334, + 16332, + 16335 + ]], + [[ + 16336, + 16334, + 16337 + ]], + [[ + 16338, + 16336, + 16339 + ]], + [[ + 16340, + 16338, + 16341 + ]], + [[ + 16342, + 16340, + 16343 + ]], + [[ + 16342, + 16344, + 16345 + ]], + [[ + 16342, + 16343, + 16344 + ]], + [[ + 16324, + 16346, + 16347 + ]], + [[ + 16340, + 16341, + 16343 + ]], + [[ + 16346, + 16348, + 16349 + ]], + [[ + 16338, + 16339, + 16341 + ]], + [[ + 16336, + 16337, + 16339 + ]], + [[ + 16348, + 16350, + 16351 + ]], + [[ + 16334, + 16335, + 16337 + ]], + [[ + 16332, + 16333, + 16335 + ]], + [[ + 16350, + 16352, + 16351 + ]], + [[ + 16330, + 16331, + 16333 + ]], + [[ + 16328, + 16329, + 16331 + ]], + [[ + 16352, + 16353, + 16354 + ]], + [[ + 16326, + 16327, + 16329 + ]], + [[ + 16323, + 16325, + 16327 + ]], + [[ + 16353, + 16355, + 16356 + ]], + [[ + 16324, + 16347, + 16325 + ]], + [[ + 16346, + 16349, + 16347 + ]], + [[ + 16355, + 16357, + 16358 + ]], + [[ + 16348, + 16351, + 16349 + ]], + [[ + 16352, + 16354, + 16351 + ]], + [[ + 16357, + 16359, + 16360 + ]], + [[ + 16353, + 16356, + 16354 + ]], + [[ + 16355, + 16358, + 16356 + ]], + [[ + 16359, + 16361, + 16362 + ]], + [[ + 16357, + 16360, + 16358 + ]], + [[ + 16359, + 16362, + 16360 + ]], + [[ + 16361, + 16363, + 16364 + ]], + [[ + 16361, + 16364, + 16362 + ]], + [[ + 16363, + 16322, + 16364 + ]], + [[ + 16363, + 16321, + 16322 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b983909fb-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 127, + 128, + 9862 + ]], + [[ + 16365, + 16366, + 127 + ]], + [[ + 16366, + 126, + 127 + ]], + [[ + 16366, + 125, + 126 + ]], + [[ + 162, + 163, + 16367 + ]], + [[ + 16368, + 16365, + 127 + ]], + [[ + 16369, + 8639, + 8633 + ]], + [[ + 16365, + 16368, + 8633 + ]], + [[ + 16370, + 8152, + 8639 + ]], + [[ + 9861, + 16367, + 9862 + ]], + [[ + 16371, + 8150, + 8151 + ]], + [[ + 163, + 16372, + 16367 + ]], + [[ + 16371, + 16373, + 8150 + ]], + [[ + 8152, + 16374, + 8151 + ]], + [[ + 16375, + 16376, + 16371 + ]], + [[ + 8151, + 16374, + 16371 + ]], + [[ + 16376, + 16375, + 16377 + ]], + [[ + 16377, + 16375, + 16378 + ]], + [[ + 16378, + 16375, + 16379 + ]], + [[ + 16379, + 16380, + 16381 + ]], + [[ + 16381, + 16382, + 16383 + ]], + [[ + 16383, + 16384, + 16385 + ]], + [[ + 16385, + 16386, + 16387 + ]], + [[ + 16387, + 16388, + 16389 + ]], + [[ + 16389, + 16390, + 16391 + ]], + [[ + 16391, + 16392, + 16393 + ]], + [[ + 16394, + 16395, + 16396 + ]], + [[ + 16397, + 11379, + 16395 + ]], + [[ + 16393, + 16398, + 16396 + ]], + [[ + 11379, + 16397, + 11380 + ]], + [[ + 16395, + 16394, + 16397 + ]], + [[ + 16396, + 16399, + 16394 + ]], + [[ + 16396, + 16398, + 16399 + ]], + [[ + 16393, + 16392, + 16398 + ]], + [[ + 16391, + 16400, + 16392 + ]], + [[ + 16391, + 16390, + 16400 + ]], + [[ + 16389, + 16388, + 16390 + ]], + [[ + 16387, + 16401, + 16388 + ]], + [[ + 16387, + 16386, + 16401 + ]], + [[ + 16385, + 16402, + 16386 + ]], + [[ + 16385, + 16384, + 16402 + ]], + [[ + 16383, + 16403, + 16384 + ]], + [[ + 16383, + 16382, + 16403 + ]], + [[ + 16381, + 16404, + 16382 + ]], + [[ + 16381, + 16405, + 16404 + ]], + [[ + 16381, + 16406, + 16405 + ]], + [[ + 16381, + 16380, + 16406 + ]], + [[ + 16379, + 16407, + 16380 + ]], + [[ + 16379, + 16408, + 16407 + ]], + [[ + 16379, + 16375, + 16408 + ]], + [[ + 16371, + 16374, + 16375 + ]], + [[ + 8152, + 16370, + 16374 + ]], + [[ + 8639, + 16369, + 16370 + ]], + [[ + 16369, + 8633, + 16368 + ]], + [[ + 7946, + 16409, + 16372 + ]], + [[ + 16367, + 16368, + 9862 + ]], + [[ + 9862, + 16368, + 127 + ]], + [[ + 16410, + 15884, + 16409 + ]], + [[ + 8220, + 15884, + 16410 + ]], + [[ + 16410, + 16409, + 7930 + ]], + [[ + 7930, + 16409, + 7926 + ]], + [[ + 7926, + 16409, + 7946 + ]], + [[ + 7946, + 16372, + 854 + ]], + [[ + 16372, + 164, + 854 + ]], + [[ + 16372, + 163, + 164 + ]], + [[ + 140, + 9861, + 139 + ]], + [[ + 161, + 162, + 16367 + ]], + [[ + 160, + 161, + 16367 + ]], + [[ + 159, + 160, + 16367 + ]], + [[ + 158, + 159, + 16367 + ]], + [[ + 157, + 158, + 16367 + ]], + [[ + 156, + 157, + 16367 + ]], + [[ + 155, + 156, + 16367 + ]], + [[ + 154, + 155, + 16367 + ]], + [[ + 140, + 142, + 143 + ]], + [[ + 154, + 16367, + 153 + ]], + [[ + 153, + 16367, + 152 + ]], + [[ + 152, + 16367, + 151 + ]], + [[ + 151, + 16367, + 150 + ]], + [[ + 150, + 16367, + 149 + ]], + [[ + 149, + 16367, + 148 + ]], + [[ + 148, + 16367, + 147 + ]], + [[ + 147, + 16367, + 146 + ]], + [[ + 146, + 16367, + 145 + ]], + [[ + 145, + 16367, + 140 + ]], + [[ + 144, + 145, + 140 + ]], + [[ + 143, + 144, + 140 + ]], + [[ + 142, + 140, + 141 + ]], + [[ + 16367, + 9861, + 140 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b983a1b0d-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetgangersgebied", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee28449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16411, + 280, + 16412 + ]], + [[ + 16413, + 264, + 16414 + ]], + [[ + 16415, + 7574, + 7585 + ]], + [[ + 7557, + 16416, + 7545 + ]], + [[ + 16417, + 16418, + 280 + ]], + [[ + 16419, + 7549, + 7545 + ]], + [[ + 16420, + 7688, + 7549 + ]], + [[ + 16421, + 7689, + 7688 + ]], + [[ + 16422, + 7675, + 7674 + ]], + [[ + 16421, + 7680, + 7689 + ]], + [[ + 16423, + 278, + 7675 + ]], + [[ + 384, + 7675, + 278 + ]], + [[ + 280, + 278, + 16424 + ]], + [[ + 262, + 263, + 16425 + ]], + [[ + 16426, + 263, + 16427 + ]], + [[ + 16428, + 262, + 16425 + ]], + [[ + 16425, + 263, + 16429 + ]], + [[ + 16425, + 16429, + 16430 + ]], + [[ + 16429, + 263, + 16426 + ]], + [[ + 16429, + 16426, + 16431 + ]], + [[ + 16431, + 16426, + 16432 + ]], + [[ + 263, + 264, + 16427 + ]], + [[ + 16433, + 7557, + 7574 + ]], + [[ + 16427, + 16434, + 16435 + ]], + [[ + 16427, + 16413, + 16434 + ]], + [[ + 16427, + 264, + 16413 + ]], + [[ + 16414, + 264, + 16436 + ]], + [[ + 16437, + 16438, + 16439 + ]], + [[ + 16414, + 16437, + 16439 + ]], + [[ + 16414, + 16440, + 16437 + ]], + [[ + 16414, + 16441, + 16440 + ]], + [[ + 16414, + 16442, + 16441 + ]], + [[ + 16414, + 16443, + 16442 + ]], + [[ + 16414, + 16444, + 16443 + ]], + [[ + 16414, + 16445, + 16444 + ]], + [[ + 16414, + 16436, + 16445 + ]], + [[ + 16446, + 265, + 280 + ]], + [[ + 264, + 16447, + 16436 + ]], + [[ + 264, + 265, + 16448 + ]], + [[ + 16447, + 264, + 16449 + ]], + [[ + 16449, + 264, + 16450 + ]], + [[ + 16450, + 264, + 16451 + ]], + [[ + 16451, + 264, + 16452 + ]], + [[ + 16452, + 264, + 16453 + ]], + [[ + 16453, + 264, + 16454 + ]], + [[ + 16455, + 16456, + 264 + ]], + [[ + 16454, + 264, + 16456 + ]], + [[ + 16457, + 16455, + 264 + ]], + [[ + 16448, + 16457, + 264 + ]], + [[ + 16458, + 16448, + 265 + ]], + [[ + 16459, + 16458, + 265 + ]], + [[ + 16460, + 16459, + 265 + ]], + [[ + 16446, + 16460, + 265 + ]], + [[ + 7674, + 7680, + 16461 + ]], + [[ + 16446, + 280, + 16462 + ]], + [[ + 16462, + 280, + 16463 + ]], + [[ + 16463, + 280, + 16464 + ]], + [[ + 16464, + 280, + 16465 + ]], + [[ + 16465, + 280, + 16466 + ]], + [[ + 16466, + 280, + 16467 + ]], + [[ + 16467, + 280, + 16468 + ]], + [[ + 16468, + 280, + 16418 + ]], + [[ + 16469, + 16417, + 280 + ]], + [[ + 16470, + 16469, + 280 + ]], + [[ + 7584, + 16415, + 7585 + ]], + [[ + 280, + 16471, + 16470 + ]], + [[ + 7584, + 7607, + 16472 + ]], + [[ + 16471, + 280, + 16473 + ]], + [[ + 16473, + 280, + 16474 + ]], + [[ + 16474, + 280, + 16475 + ]], + [[ + 16475, + 280, + 16476 + ]], + [[ + 16476, + 280, + 16477 + ]], + [[ + 16477, + 280, + 16411 + ]], + [[ + 16412, + 280, + 16478 + ]], + [[ + 16478, + 280, + 16479 + ]], + [[ + 16479, + 280, + 16480 + ]], + [[ + 16480, + 280, + 16481 + ]], + [[ + 16481, + 280, + 16424 + ]], + [[ + 278, + 16482, + 16424 + ]], + [[ + 16422, + 16423, + 7675 + ]], + [[ + 16482, + 278, + 16423 + ]], + [[ + 16461, + 16422, + 7674 + ]], + [[ + 16483, + 16423, + 16422 + ]], + [[ + 16461, + 7680, + 16421 + ]], + [[ + 7688, + 16420, + 16421 + ]], + [[ + 7549, + 16419, + 16420 + ]], + [[ + 7545, + 16416, + 16419 + ]], + [[ + 7557, + 16433, + 16416 + ]], + [[ + 16433, + 7574, + 16415 + ]], + [[ + 16484, + 16433, + 16415 + ]], + [[ + 16415, + 7584, + 16472 + ]], + [[ + 16472, + 7607, + 16485 + ]], + [[ + 16485, + 7607, + 7619 + ]], + [[ + 16486, + 16485, + 7619 + ]], + [[ + 16487, + 16488, + 7630 + ]], + [[ + 16489, + 16490, + 7630 + ]], + [[ + 16491, + 16489, + 7630 + ]], + [[ + 16492, + 16491, + 7630 + ]], + [[ + 16493, + 16492, + 7630 + ]], + [[ + 16494, + 16493, + 7630 + ]], + [[ + 16495, + 16494, + 7630 + ]], + [[ + 16496, + 16495, + 7630 + ]], + [[ + 12902, + 16496, + 7630 + ]], + [[ + 12902, + 16497, + 16496 + ]], + [[ + 12900, + 16498, + 16497 + ]], + [[ + 16499, + 16500, + 16501 + ]], + [[ + 16502, + 16499, + 16501 + ]], + [[ + 16503, + 16502, + 16501 + ]], + [[ + 16504, + 16503, + 16501 + ]], + [[ + 16505, + 16504, + 16501 + ]], + [[ + 12151, + 16505, + 16501 + ]], + [[ + 16506, + 16507, + 16508 + ]], + [[ + 12178, + 12179, + 16509 + ]], + [[ + 12181, + 12182, + 16509 + ]], + [[ + 16510, + 16511, + 12156 + ]], + [[ + 16512, + 16510, + 16513 + ]], + [[ + 16514, + 16515, + 16513 + ]], + [[ + 16516, + 16514, + 16513 + ]], + [[ + 16517, + 16516, + 16513 + ]], + [[ + 16518, + 16517, + 16513 + ]], + [[ + 16519, + 16518, + 16513 + ]], + [[ + 16520, + 16519, + 16513 + ]], + [[ + 16521, + 16520, + 16513 + ]], + [[ + 16522, + 16521, + 16513 + ]], + [[ + 16513, + 16507, + 16523 + ]], + [[ + 16524, + 16507, + 16506 + ]], + [[ + 16523, + 16522, + 16513 + ]], + [[ + 16507, + 16513, + 16508 + ]], + [[ + 16515, + 16512, + 16513 + ]], + [[ + 12151, + 16525, + 16505 + ]], + [[ + 16526, + 16527, + 16528 + ]], + [[ + 10981, + 10986, + 16529 + ]], + [[ + 16527, + 16530, + 16531 + ]], + [[ + 16527, + 10997, + 16530 + ]], + [[ + 14175, + 12128, + 12129 + ]], + [[ + 16501, + 16500, + 16532 + ]], + [[ + 16501, + 16533, + 16534 + ]], + [[ + 16501, + 16532, + 16533 + ]], + [[ + 16500, + 16535, + 16532 + ]], + [[ + 16500, + 16536, + 16535 + ]], + [[ + 16500, + 16537, + 16536 + ]], + [[ + 16500, + 16538, + 16537 + ]], + [[ + 16500, + 16539, + 16538 + ]], + [[ + 16500, + 16540, + 16539 + ]], + [[ + 16500, + 16541, + 16540 + ]], + [[ + 16500, + 16542, + 16541 + ]], + [[ + 16500, + 16543, + 16542 + ]], + [[ + 16500, + 16544, + 16543 + ]], + [[ + 16500, + 16545, + 16544 + ]], + [[ + 16500, + 16546, + 16545 + ]], + [[ + 16500, + 16547, + 16546 + ]], + [[ + 16500, + 16548, + 16547 + ]], + [[ + 16500, + 16549, + 16548 + ]], + [[ + 16550, + 16551, + 16552 + ]], + [[ + 16500, + 16553, + 16549 + ]], + [[ + 16500, + 16551, + 16550 + ]], + [[ + 16553, + 16500, + 16554 + ]], + [[ + 16554, + 16500, + 16555 + ]], + [[ + 16555, + 16500, + 16556 + ]], + [[ + 16556, + 16500, + 16557 + ]], + [[ + 16557, + 16500, + 16558 + ]], + [[ + 16558, + 16500, + 16550 + ]], + [[ + 12905, + 16559, + 16498 + ]], + [[ + 16552, + 16551, + 16560 + ]], + [[ + 16560, + 16551, + 16561 + ]], + [[ + 16561, + 16551, + 16562 + ]], + [[ + 16562, + 16551, + 16563 + ]], + [[ + 16563, + 16551, + 16564 + ]], + [[ + 16564, + 16551, + 16565 + ]], + [[ + 16565, + 16551, + 12924 + ]], + [[ + 16566, + 16565, + 12926 + ]], + [[ + 12915, + 16551, + 16567 + ]], + [[ + 16568, + 12944, + 16569 + ]], + [[ + 12909, + 16570, + 16571 + ]], + [[ + 12931, + 12932, + 16572 + ]], + [[ + 16573, + 16574, + 12945 + ]], + [[ + 16572, + 16573, + 12931 + ]], + [[ + 16575, + 16572, + 12932 + ]], + [[ + 16576, + 16575, + 12933 + ]], + [[ + 16577, + 16576, + 12934 + ]], + [[ + 16578, + 16577, + 12935 + ]], + [[ + 16579, + 16578, + 12936 + ]], + [[ + 16580, + 16579, + 12937 + ]], + [[ + 16581, + 16582, + 12939 + ]], + [[ + 16583, + 16581, + 12940 + ]], + [[ + 12855, + 16584, + 16583 + ]], + [[ + 16585, + 16586, + 16587 + ]], + [[ + 16588, + 16589, + 16590 + ]], + [[ + 16590, + 16589, + 7643 + ]], + [[ + 16590, + 16591, + 16592 + ]], + [[ + 7363, + 7362, + 16593 + ]], + [[ + 7643, + 16591, + 16590 + ]], + [[ + 7454, + 16594, + 7402 + ]], + [[ + 16595, + 16596, + 16597 + ]], + [[ + 16597, + 16593, + 16598 + ]], + [[ + 16599, + 7654, + 16596 + ]], + [[ + 16596, + 7363, + 16597 + ]], + [[ + 7381, + 7389, + 16600 + ]], + [[ + 16601, + 16602, + 16600 + ]], + [[ + 7362, + 16602, + 16603 + ]], + [[ + 16600, + 16604, + 16605 + ]], + [[ + 7381, + 16600, + 16602 + ]], + [[ + 16606, + 16604, + 7389 + ]], + [[ + 16607, + 16606, + 16594 + ]], + [[ + 16607, + 16594, + 16608 + ]], + [[ + 16594, + 16606, + 7402 + ]], + [[ + 16609, + 16610, + 16611 + ]], + [[ + 16610, + 7455, + 16611 + ]], + [[ + 16610, + 16594, + 7454 + ]], + [[ + 16611, + 16612, + 16613 + ]], + [[ + 16612, + 16611, + 7455 + ]], + [[ + 16614, + 16615, + 16616 + ]], + [[ + 16614, + 16612, + 7455 + ]], + [[ + 16615, + 16614, + 7456 + ]], + [[ + 16617, + 16618, + 16619 + ]], + [[ + 16617, + 16615, + 16618 + ]], + [[ + 16615, + 7456, + 16618 + ]], + [[ + 16618, + 7458, + 7459 + ]], + [[ + 7458, + 16618, + 7456 + ]], + [[ + 7458, + 7456, + 7457 + ]], + [[ + 16614, + 7455, + 7456 + ]], + [[ + 16610, + 7454, + 7455 + ]], + [[ + 7654, + 16599, + 16591 + ]], + [[ + 16593, + 7362, + 16603 + ]], + [[ + 8847, + 8846, + 9052 + ]], + [[ + 8842, + 8847, + 9052 + ]], + [[ + 8843, + 8842, + 2709 + ]], + [[ + 16586, + 7637, + 16589 + ]], + [[ + 16620, + 8804, + 8803 + ]], + [[ + 8804, + 8839, + 2634 + ]], + [[ + 8827, + 8804, + 16620 + ]], + [[ + 8827, + 16620, + 8826 + ]], + [[ + 8839, + 8838, + 2709 + ]], + [[ + 8803, + 8804, + 8733 + ]], + [[ + 8733, + 8804, + 2634 + ]], + [[ + 8839, + 2709, + 2634 + ]], + [[ + 8838, + 8843, + 2709 + ]], + [[ + 8842, + 9052, + 2709 + ]], + [[ + 8846, + 7453, + 7400 + ]], + [[ + 8846, + 7400, + 9052 + ]], + [[ + 7389, + 16604, + 16600 + ]], + [[ + 7453, + 7402, + 7400 + ]], + [[ + 7453, + 7454, + 7402 + ]], + [[ + 7402, + 16606, + 7389 + ]], + [[ + 16597, + 7363, + 16593 + ]], + [[ + 7381, + 16602, + 7362 + ]], + [[ + 7654, + 7363, + 16596 + ]], + [[ + 7643, + 7654, + 16591 + ]], + [[ + 16589, + 7637, + 7643 + ]], + [[ + 16490, + 16487, + 7630 + ]], + [[ + 16488, + 16486, + 7619 + ]], + [[ + 7630, + 16488, + 7619 + ]], + [[ + 14190, + 12195, + 12207 + ]], + [[ + 14194, + 12203, + 12204 + ]], + [[ + 16621, + 12202, + 12203 + ]], + [[ + 16621, + 12201, + 12202 + ]], + [[ + 12170, + 16509, + 16513 + ]], + [[ + 16621, + 12200, + 12201 + ]], + [[ + 16621, + 16509, + 12210 + ]], + [[ + 12200, + 16621, + 12199 + ]], + [[ + 12199, + 16621, + 12198 + ]], + [[ + 12198, + 16621, + 12197 + ]], + [[ + 12197, + 16621, + 12196 + ]], + [[ + 12196, + 16621, + 12210 + ]], + [[ + 12210, + 16509, + 12194 + ]], + [[ + 12194, + 16509, + 12193 + ]], + [[ + 12193, + 16509, + 12192 + ]], + [[ + 12192, + 16509, + 12191 + ]], + [[ + 12191, + 16509, + 12190 + ]], + [[ + 12190, + 16509, + 12189 + ]], + [[ + 12189, + 16509, + 12188 + ]], + [[ + 12188, + 16509, + 12187 + ]], + [[ + 12185, + 12186, + 16509 + ]], + [[ + 12187, + 16509, + 12186 + ]], + [[ + 12184, + 12185, + 16509 + ]], + [[ + 12182, + 12184, + 16509 + ]], + [[ + 12154, + 16622, + 16623 + ]], + [[ + 16510, + 12157, + 16513 + ]], + [[ + 16511, + 16622, + 12155 + ]], + [[ + 12180, + 12181, + 16509 + ]], + [[ + 12179, + 12180, + 16509 + ]], + [[ + 16624, + 12153, + 16623 + ]], + [[ + 12177, + 12178, + 16509 + ]], + [[ + 12176, + 12177, + 16509 + ]], + [[ + 12175, + 12176, + 16509 + ]], + [[ + 12174, + 12175, + 16509 + ]], + [[ + 12173, + 12174, + 16509 + ]], + [[ + 12172, + 12173, + 16509 + ]], + [[ + 12171, + 12172, + 16509 + ]], + [[ + 12170, + 12171, + 16509 + ]], + [[ + 12169, + 12170, + 16513 + ]], + [[ + 16525, + 12152, + 16624 + ]], + [[ + 12169, + 16513, + 12168 + ]], + [[ + 12168, + 16513, + 12167 + ]], + [[ + 12164, + 12166, + 16513 + ]], + [[ + 12167, + 16513, + 12166 + ]], + [[ + 12163, + 12164, + 16513 + ]], + [[ + 12162, + 12163, + 16513 + ]], + [[ + 12161, + 12162, + 16513 + ]], + [[ + 12160, + 12161, + 16513 + ]], + [[ + 12159, + 12160, + 16513 + ]], + [[ + 12158, + 12159, + 16513 + ]], + [[ + 12157, + 12158, + 16513 + ]], + [[ + 12156, + 12157, + 16510 + ]], + [[ + 12155, + 12156, + 16511 + ]], + [[ + 16625, + 12142, + 16501 + ]], + [[ + 16622, + 12154, + 12155 + ]], + [[ + 16623, + 12153, + 12154 + ]], + [[ + 16624, + 12152, + 12153 + ]], + [[ + 16525, + 12151, + 12152 + ]], + [[ + 16501, + 12150, + 12151 + ]], + [[ + 16501, + 12149, + 12150 + ]], + [[ + 16501, + 12148, + 12149 + ]], + [[ + 16501, + 12147, + 12148 + ]], + [[ + 16501, + 12146, + 12147 + ]], + [[ + 16501, + 12145, + 12146 + ]], + [[ + 16501, + 12144, + 12145 + ]], + [[ + 16501, + 12142, + 12144 + ]], + [[ + 16625, + 12141, + 12142 + ]], + [[ + 16625, + 12140, + 12141 + ]], + [[ + 16625, + 12139, + 12140 + ]], + [[ + 16625, + 12138, + 12139 + ]], + [[ + 16625, + 12137, + 12138 + ]], + [[ + 16625, + 12136, + 12137 + ]], + [[ + 16625, + 12135, + 12136 + ]], + [[ + 16625, + 12134, + 12135 + ]], + [[ + 16625, + 12133, + 12134 + ]], + [[ + 16625, + 12132, + 12133 + ]], + [[ + 16625, + 12131, + 12132 + ]], + [[ + 16625, + 12130, + 12131 + ]], + [[ + 16625, + 12129, + 12130 + ]], + [[ + 16625, + 14174, + 12129 + ]], + [[ + 14176, + 12127, + 12128 + ]], + [[ + 16582, + 16580, + 12938 + ]], + [[ + 16583, + 12851, + 12850 + ]], + [[ + 16583, + 12875, + 12851 + ]], + [[ + 16583, + 12903, + 12875 + ]], + [[ + 16574, + 16626, + 12946 + ]], + [[ + 16583, + 12942, + 12903 + ]], + [[ + 12906, + 16627, + 16628 + ]], + [[ + 16583, + 12941, + 12942 + ]], + [[ + 16629, + 12908, + 16571 + ]], + [[ + 16583, + 12940, + 12941 + ]], + [[ + 16626, + 16630, + 12930 + ]], + [[ + 16581, + 12939, + 12940 + ]], + [[ + 16568, + 16570, + 12910 + ]], + [[ + 16582, + 12938, + 12939 + ]], + [[ + 16630, + 16631, + 12929 + ]], + [[ + 16580, + 12937, + 12938 + ]], + [[ + 12912, + 16632, + 16569 + ]], + [[ + 16579, + 12936, + 12937 + ]], + [[ + 16633, + 12914, + 16567 + ]], + [[ + 16578, + 12935, + 12936 + ]], + [[ + 16631, + 16634, + 12928 + ]], + [[ + 16577, + 12934, + 12935 + ]], + [[ + 16634, + 16566, + 12927 + ]], + [[ + 16576, + 12933, + 12934 + ]], + [[ + 16633, + 16632, + 12913 + ]], + [[ + 16575, + 12932, + 12933 + ]], + [[ + 16629, + 16627, + 12907 + ]], + [[ + 12945, + 12931, + 16573 + ]], + [[ + 12946, + 12945, + 16574 + ]], + [[ + 12930, + 12946, + 16626 + ]], + [[ + 12929, + 12930, + 16630 + ]], + [[ + 12928, + 12929, + 16631 + ]], + [[ + 16559, + 12904, + 16628 + ]], + [[ + 12928, + 16634, + 12927 + ]], + [[ + 12927, + 16566, + 12926 + ]], + [[ + 12926, + 16565, + 12924 + ]], + [[ + 12924, + 16551, + 12923 + ]], + [[ + 12923, + 16551, + 12922 + ]], + [[ + 12922, + 16551, + 12920 + ]], + [[ + 12920, + 16551, + 12921 + ]], + [[ + 12921, + 16551, + 12919 + ]], + [[ + 12917, + 12918, + 16551 + ]], + [[ + 12919, + 16551, + 12918 + ]], + [[ + 12915, + 12917, + 16551 + ]], + [[ + 12914, + 12915, + 16567 + ]], + [[ + 12913, + 12914, + 16633 + ]], + [[ + 12912, + 12913, + 16632 + ]], + [[ + 12944, + 12912, + 16569 + ]], + [[ + 12910, + 12944, + 16568 + ]], + [[ + 12909, + 12910, + 16570 + ]], + [[ + 12908, + 12909, + 16571 + ]], + [[ + 12907, + 12908, + 16629 + ]], + [[ + 12906, + 12907, + 16627 + ]], + [[ + 7637, + 12889, + 7630 + ]], + [[ + 16628, + 12904, + 12906 + ]], + [[ + 16559, + 12905, + 12904 + ]], + [[ + 16498, + 12900, + 12905 + ]], + [[ + 16497, + 12902, + 12900 + ]], + [[ + 7630, + 12901, + 12902 + ]], + [[ + 7630, + 12899, + 12901 + ]], + [[ + 7630, + 12898, + 12899 + ]], + [[ + 7630, + 12897, + 12898 + ]], + [[ + 7630, + 12896, + 12897 + ]], + [[ + 7630, + 12895, + 12896 + ]], + [[ + 7630, + 12894, + 12895 + ]], + [[ + 7630, + 12893, + 12894 + ]], + [[ + 12877, + 16586, + 16585 + ]], + [[ + 7630, + 12892, + 12893 + ]], + [[ + 7637, + 16586, + 12884 + ]], + [[ + 12890, + 12891, + 7630 + ]], + [[ + 12892, + 7630, + 12891 + ]], + [[ + 12889, + 12890, + 7630 + ]], + [[ + 12888, + 12889, + 7637 + ]], + [[ + 12887, + 12888, + 7637 + ]], + [[ + 12886, + 12887, + 7637 + ]], + [[ + 12885, + 12886, + 7637 + ]], + [[ + 12884, + 12885, + 7637 + ]], + [[ + 12883, + 12884, + 16586 + ]], + [[ + 12943, + 12883, + 16586 + ]], + [[ + 12880, + 12943, + 16586 + ]], + [[ + 12879, + 12880, + 16586 + ]], + [[ + 12878, + 12879, + 16586 + ]], + [[ + 12876, + 12878, + 16586 + ]], + [[ + 12877, + 12876, + 16586 + ]], + [[ + 12874, + 12877, + 16585 + ]], + [[ + 12873, + 12874, + 16585 + ]], + [[ + 16584, + 12862, + 16585 + ]], + [[ + 12873, + 16585, + 12872 + ]], + [[ + 12872, + 16585, + 12871 + ]], + [[ + 12871, + 16585, + 12870 + ]], + [[ + 12870, + 16585, + 12869 + ]], + [[ + 12869, + 16585, + 12868 + ]], + [[ + 12868, + 16585, + 12867 + ]], + [[ + 12867, + 16585, + 12866 + ]], + [[ + 12866, + 16585, + 12865 + ]], + [[ + 12865, + 16585, + 12864 + ]], + [[ + 12864, + 16585, + 12862 + ]], + [[ + 12862, + 16584, + 12863 + ]], + [[ + 16584, + 12859, + 12863 + ]], + [[ + 16584, + 12858, + 12859 + ]], + [[ + 16584, + 12857, + 12858 + ]], + [[ + 16584, + 12856, + 12857 + ]], + [[ + 16584, + 12855, + 12856 + ]], + [[ + 16583, + 12854, + 12855 + ]], + [[ + 16583, + 12853, + 12854 + ]], + [[ + 16583, + 12852, + 12853 + ]], + [[ + 16583, + 12850, + 12852 + ]], + [[ + 16529, + 14131, + 16635 + ]], + [[ + 16635, + 14133, + 14136 + ]], + [[ + 16635, + 14131, + 14133 + ]], + [[ + 16529, + 14134, + 14131 + ]], + [[ + 16529, + 14226, + 14134 + ]], + [[ + 16529, + 14225, + 14226 + ]], + [[ + 16529, + 14224, + 14225 + ]], + [[ + 16529, + 14223, + 14224 + ]], + [[ + 16529, + 14222, + 14223 + ]], + [[ + 16529, + 14221, + 14222 + ]], + [[ + 14194, + 16621, + 12203 + ]], + [[ + 16529, + 10987, + 14221 + ]], + [[ + 12125, + 12126, + 14178 + ]], + [[ + 10996, + 14219, + 14220 + ]], + [[ + 12125, + 14179, + 12124 + ]], + [[ + 10976, + 14218, + 14219 + ]], + [[ + 14180, + 12123, + 12124 + ]], + [[ + 12122, + 14182, + 12119 + ]], + [[ + 14183, + 12120, + 12119 + ]], + [[ + 12143, + 12120, + 14184 + ]], + [[ + 12143, + 14185, + 12165 + ]], + [[ + 14187, + 12209, + 12165 + ]], + [[ + 12208, + 14189, + 12207 + ]], + [[ + 14191, + 12206, + 12195 + ]], + [[ + 12205, + 12206, + 14192 + ]], + [[ + 12205, + 14193, + 12204 + ]], + [[ + 14210, + 11007, + 14209 + ]], + [[ + 11012, + 14206, + 14228 + ]], + [[ + 12208, + 12209, + 14188 + ]], + [[ + 16621, + 14205, + 14206 + ]], + [[ + 12122, + 12123, + 14181 + ]], + [[ + 16621, + 14204, + 14205 + ]], + [[ + 16621, + 14202, + 14204 + ]], + [[ + 12126, + 12127, + 14227 + ]], + [[ + 14202, + 16621, + 14201 + ]], + [[ + 14201, + 16621, + 14200 + ]], + [[ + 14200, + 16621, + 14199 + ]], + [[ + 14199, + 16621, + 14198 + ]], + [[ + 14198, + 16621, + 14197 + ]], + [[ + 14197, + 16621, + 14195 + ]], + [[ + 14195, + 16621, + 14196 + ]], + [[ + 14196, + 16621, + 14194 + ]], + [[ + 14194, + 12204, + 14193 + ]], + [[ + 14193, + 12205, + 14192 + ]], + [[ + 14192, + 12206, + 14191 + ]], + [[ + 14191, + 12195, + 14190 + ]], + [[ + 14190, + 12207, + 14189 + ]], + [[ + 14189, + 12208, + 14188 + ]], + [[ + 14185, + 14187, + 12165 + ]], + [[ + 14188, + 12209, + 14187 + ]], + [[ + 14184, + 14185, + 12143 + ]], + [[ + 14183, + 14184, + 12120 + ]], + [[ + 14182, + 14183, + 12119 + ]], + [[ + 14181, + 14182, + 12122 + ]], + [[ + 14180, + 14181, + 12123 + ]], + [[ + 14179, + 14180, + 12124 + ]], + [[ + 14178, + 14179, + 12125 + ]], + [[ + 14227, + 14178, + 12126 + ]], + [[ + 14176, + 14227, + 12127 + ]], + [[ + 14175, + 14176, + 12128 + ]], + [[ + 14174, + 14175, + 12129 + ]], + [[ + 14173, + 14174, + 16625 + ]], + [[ + 14172, + 14173, + 16625 + ]], + [[ + 14171, + 14172, + 16625 + ]], + [[ + 14170, + 14171, + 16625 + ]], + [[ + 14169, + 14170, + 16625 + ]], + [[ + 14168, + 14169, + 16625 + ]], + [[ + 14167, + 14168, + 16625 + ]], + [[ + 14166, + 14167, + 16625 + ]], + [[ + 16635, + 14159, + 16625 + ]], + [[ + 16625, + 14165, + 14166 + ]], + [[ + 16625, + 14163, + 14165 + ]], + [[ + 16625, + 14162, + 14163 + ]], + [[ + 16625, + 14161, + 14162 + ]], + [[ + 16625, + 14160, + 14161 + ]], + [[ + 16625, + 14159, + 14160 + ]], + [[ + 16635, + 14155, + 14159 + ]], + [[ + 16635, + 14153, + 14155 + ]], + [[ + 16635, + 14157, + 14153 + ]], + [[ + 16635, + 14158, + 14157 + ]], + [[ + 16635, + 14156, + 14158 + ]], + [[ + 16635, + 14143, + 14156 + ]], + [[ + 16635, + 14144, + 14143 + ]], + [[ + 16635, + 14152, + 14144 + ]], + [[ + 16635, + 14151, + 14152 + ]], + [[ + 16635, + 14150, + 14151 + ]], + [[ + 16635, + 14149, + 14150 + ]], + [[ + 16635, + 14148, + 14149 + ]], + [[ + 16635, + 14147, + 14148 + ]], + [[ + 16635, + 14146, + 14147 + ]], + [[ + 16635, + 14145, + 14146 + ]], + [[ + 16635, + 14177, + 14145 + ]], + [[ + 16635, + 14141, + 14177 + ]], + [[ + 16635, + 14140, + 14141 + ]], + [[ + 16635, + 14138, + 14140 + ]], + [[ + 16635, + 14139, + 14138 + ]], + [[ + 16635, + 14137, + 14139 + ]], + [[ + 16635, + 14135, + 14137 + ]], + [[ + 16635, + 14136, + 14135 + ]], + [[ + 16526, + 11052, + 16527 + ]], + [[ + 16530, + 10997, + 10974 + ]], + [[ + 16527, + 11048, + 10997 + ]], + [[ + 16527, + 11064, + 11048 + ]], + [[ + 16527, + 11062, + 11064 + ]], + [[ + 16527, + 11063, + 11062 + ]], + [[ + 16527, + 11061, + 11063 + ]], + [[ + 16527, + 11057, + 11061 + ]], + [[ + 16527, + 11059, + 11057 + ]], + [[ + 16527, + 11060, + 11059 + ]], + [[ + 16527, + 11058, + 11060 + ]], + [[ + 16527, + 11055, + 11058 + ]], + [[ + 16527, + 11056, + 11055 + ]], + [[ + 16527, + 11053, + 11056 + ]], + [[ + 16527, + 11054, + 11053 + ]], + [[ + 11020, + 16636, + 16621 + ]], + [[ + 16527, + 11052, + 11054 + ]], + [[ + 16526, + 16636, + 11047 + ]], + [[ + 11052, + 16526, + 11049 + ]], + [[ + 11049, + 16526, + 11051 + ]], + [[ + 11051, + 16526, + 11050 + ]], + [[ + 11050, + 16526, + 11035 + ]], + [[ + 11035, + 16526, + 11046 + ]], + [[ + 11046, + 16526, + 11047 + ]], + [[ + 11047, + 16636, + 11045 + ]], + [[ + 11045, + 16636, + 11044 + ]], + [[ + 11044, + 16636, + 11043 + ]], + [[ + 11043, + 16636, + 11041 + ]], + [[ + 11041, + 16636, + 11042 + ]], + [[ + 11040, + 11039, + 16636 + ]], + [[ + 11042, + 16636, + 11039 + ]], + [[ + 11036, + 11040, + 16636 + ]], + [[ + 11038, + 11036, + 16636 + ]], + [[ + 11037, + 11038, + 16636 + ]], + [[ + 11033, + 11037, + 16636 + ]], + [[ + 11034, + 11033, + 16636 + ]], + [[ + 11029, + 11034, + 16636 + ]], + [[ + 11031, + 11029, + 16636 + ]], + [[ + 11032, + 11031, + 16636 + ]], + [[ + 14216, + 11002, + 14215 + ]], + [[ + 11030, + 11032, + 16636 + ]], + [[ + 11001, + 14214, + 14215 + ]], + [[ + 11026, + 11030, + 16636 + ]], + [[ + 14213, + 10999, + 14212 + ]], + [[ + 11028, + 11026, + 16636 + ]], + [[ + 11006, + 14211, + 14212 + ]], + [[ + 11027, + 11028, + 16636 + ]], + [[ + 14210, + 14211, + 11005 + ]], + [[ + 11022, + 11027, + 16636 + ]], + [[ + 14209, + 11008, + 14208 + ]], + [[ + 14206, + 11012, + 16621 + ]], + [[ + 11009, + 14207, + 14208 + ]], + [[ + 16636, + 11025, + 11022 + ]], + [[ + 14228, + 14207, + 11011 + ]], + [[ + 16636, + 11024, + 11025 + ]], + [[ + 14213, + 14214, + 11003 + ]], + [[ + 16636, + 11023, + 11024 + ]], + [[ + 16636, + 11020, + 11023 + ]], + [[ + 14216, + 14217, + 11000 + ]], + [[ + 16621, + 11021, + 11020 + ]], + [[ + 16621, + 11018, + 11021 + ]], + [[ + 16621, + 11019, + 11018 + ]], + [[ + 14217, + 14218, + 10998 + ]], + [[ + 11019, + 16621, + 11016 + ]], + [[ + 11016, + 16621, + 11017 + ]], + [[ + 11017, + 16621, + 11015 + ]], + [[ + 11015, + 16621, + 11013 + ]], + [[ + 11013, + 16621, + 11014 + ]], + [[ + 11014, + 16621, + 11004 + ]], + [[ + 11004, + 16621, + 11010 + ]], + [[ + 16621, + 11012, + 11010 + ]], + [[ + 10977, + 16529, + 16530 + ]], + [[ + 14228, + 11011, + 11012 + ]], + [[ + 14220, + 14221, + 10987 + ]], + [[ + 11011, + 14207, + 11009 + ]], + [[ + 11009, + 14208, + 11008 + ]], + [[ + 11008, + 14209, + 11007 + ]], + [[ + 11007, + 14210, + 11005 + ]], + [[ + 11005, + 14211, + 11006 + ]], + [[ + 11006, + 14212, + 10999 + ]], + [[ + 10999, + 14213, + 11003 + ]], + [[ + 11003, + 14214, + 11001 + ]], + [[ + 11001, + 14215, + 11002 + ]], + [[ + 11002, + 14216, + 11000 + ]], + [[ + 11000, + 14217, + 10998 + ]], + [[ + 10998, + 14218, + 10976 + ]], + [[ + 10976, + 14219, + 10996 + ]], + [[ + 10996, + 14220, + 10987 + ]], + [[ + 10987, + 16529, + 10993 + ]], + [[ + 10993, + 16529, + 10995 + ]], + [[ + 10995, + 16529, + 10994 + ]], + [[ + 10994, + 16529, + 10988 + ]], + [[ + 10988, + 16529, + 10992 + ]], + [[ + 10992, + 16529, + 10990 + ]], + [[ + 10990, + 16529, + 10991 + ]], + [[ + 10991, + 16529, + 10989 + ]], + [[ + 10989, + 16529, + 10984 + ]], + [[ + 10984, + 16529, + 10985 + ]], + [[ + 10985, + 16529, + 10986 + ]], + [[ + 10982, + 10981, + 16529 + ]], + [[ + 10983, + 10982, + 16529 + ]], + [[ + 10980, + 10983, + 16529 + ]], + [[ + 10977, + 10980, + 16529 + ]], + [[ + 10979, + 10977, + 16530 + ]], + [[ + 10978, + 10979, + 16530 + ]], + [[ + 10975, + 10978, + 16530 + ]], + [[ + 10973, + 10975, + 16530 + ]], + [[ + 10974, + 10973, + 16530 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b983e1262-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33cc49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 11998, + 14254, + 16637 + ]], + [[ + 11998, + 16637, + 12018 + ]], + [[ + 14254, + 14273, + 16637 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b983ed62d-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef32dc49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16638, + 16639, + 16640 + ]], + [[ + 16638, + 16640, + 16641 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b983f98fe-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef160449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "onverhard", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 7971, + 8219, + 16410 + ]], + [[ + 7970, + 16642, + 8543 + ]], + [[ + 8220, + 16410, + 8218 + ]], + [[ + 8218, + 16410, + 8219 + ]], + [[ + 8219, + 7971, + 7972 + ]], + [[ + 16643, + 7971, + 16410 + ]], + [[ + 16643, + 16642, + 7970 + ]], + [[ + 7970, + 7971, + 16643 + ]], + [[ + 7969, + 7970, + 7967 + ]], + [[ + 7967, + 7970, + 8543 + ]], + [[ + 7968, + 7967, + 8543 + ]], + [[ + 8544, + 16644, + 16645 + ]], + [[ + 8543, + 16644, + 8544 + ]], + [[ + 8543, + 16642, + 16644 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b984083fa-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef0b4b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16646, + 6952, + 6953 + ]], + [[ + 16646, + 6953, + 16647 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b984231bb-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef136949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "sierbestrating", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 2352, + 7592, + 2744 + ]], + [[ + 2352, + 2354, + 7573 + ]], + [[ + 7592, + 2352, + 7593 + ]], + [[ + 7593, + 2352, + 7598 + ]], + [[ + 7598, + 2352, + 7573 + ]], + [[ + 7573, + 2354, + 7570 + ]], + [[ + 7570, + 2354, + 7571 + ]], + [[ + 7571, + 2354, + 7585 + ]], + [[ + 7574, + 7571, + 7585 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b984231ca-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eec1d149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16648, + 15792, + 16649 + ]], + [[ + 14285, + 16649, + 15792 + ]], + [[ + 14418, + 14433, + 16650 + ]], + [[ + 16651, + 16649, + 14285 + ]], + [[ + 16652, + 16653, + 16650 + ]], + [[ + 16654, + 16652, + 15903 + ]], + [[ + 16655, + 16654, + 15903 + ]], + [[ + 16656, + 16655, + 15903 + ]], + [[ + 16657, + 16656, + 15903 + ]], + [[ + 16658, + 16659, + 15903 + ]], + [[ + 16660, + 16658, + 15903 + ]], + [[ + 16661, + 16660, + 15903 + ]], + [[ + 16662, + 16661, + 15903 + ]], + [[ + 16663, + 16662, + 15903 + ]], + [[ + 16664, + 16663, + 15903 + ]], + [[ + 16665, + 16664, + 15910 + ]], + [[ + 16057, + 16665, + 15910 + ]], + [[ + 16664, + 15903, + 15910 + ]], + [[ + 16659, + 16657, + 15903 + ]], + [[ + 15903, + 16652, + 16650 + ]], + [[ + 16650, + 16653, + 14418 + ]], + [[ + 16651, + 14419, + 16653 + ]], + [[ + 16653, + 14419, + 14418 + ]], + [[ + 16651, + 14290, + 14419 + ]], + [[ + 16312, + 12451, + 16648 + ]], + [[ + 16312, + 10614, + 15809 + ]], + [[ + 14290, + 16651, + 14285 + ]], + [[ + 15792, + 16648, + 15772 + ]], + [[ + 15772, + 16648, + 12451 + ]], + [[ + 12451, + 16312, + 12452 + ]], + [[ + 12452, + 16312, + 15809 + ]], + [[ + 15809, + 10614, + 10613 + ]], + [[ + 15804, + 15809, + 10613 + ]], + [[ + 11769, + 15421, + 11618 + ]], + [[ + 11785, + 11769, + 11618 + ]], + [[ + 11619, + 11785, + 11618 + ]], + [[ + 13131, + 13125, + 16666 + ]], + [[ + 13041, + 13131, + 16176 + ]], + [[ + 16667, + 16668, + 16669 + ]], + [[ + 16670, + 16671, + 16177 + ]], + [[ + 1027, + 16672, + 1033 + ]], + [[ + 1033, + 16672, + 16177 + ]], + [[ + 16673, + 16674, + 16675 + ]], + [[ + 16676, + 16677, + 16669 + ]], + [[ + 16678, + 16679, + 16670 + ]], + [[ + 16671, + 16670, + 16679 + ]], + [[ + 16680, + 16681, + 16669 + ]], + [[ + 16678, + 16670, + 16682 + ]], + [[ + 16683, + 16684, + 16685 + ]], + [[ + 16686, + 16687, + 16688 + ]], + [[ + 16689, + 16690, + 16669 + ]], + [[ + 16691, + 16692, + 16693 + ]], + [[ + 16674, + 16694, + 16675 + ]], + [[ + 16695, + 16696, + 16693 + ]], + [[ + 16697, + 16669, + 16696 + ]], + [[ + 16698, + 16699, + 16700 + ]], + [[ + 16699, + 16669, + 16701 + ]], + [[ + 16702, + 16698, + 16700 + ]], + [[ + 16700, + 16699, + 16701 + ]], + [[ + 16694, + 16703, + 16704 + ]], + [[ + 16701, + 16669, + 16705 + ]], + [[ + 16706, + 16673, + 16675 + ]], + [[ + 16705, + 16669, + 16690 + ]], + [[ + 16707, + 16673, + 16706 + ]], + [[ + 16707, + 16684, + 16683 + ]], + [[ + 16687, + 16708, + 16685 + ]], + [[ + 16689, + 16669, + 16681 + ]], + [[ + 16709, + 16682, + 16710 + ]], + [[ + 16680, + 16669, + 16677 + ]], + [[ + 16671, + 1033, + 16177 + ]], + [[ + 16676, + 16669, + 16668 + ]], + [[ + 16667, + 16669, + 16711 + ]], + [[ + 16711, + 16669, + 16712 + ]], + [[ + 16712, + 16669, + 16697 + ]], + [[ + 16697, + 16696, + 16713 + ]], + [[ + 16713, + 16696, + 16714 + ]], + [[ + 16714, + 16696, + 16715 + ]], + [[ + 16715, + 16696, + 16716 + ]], + [[ + 16716, + 16696, + 16717 + ]], + [[ + 16718, + 16716, + 16719 + ]], + [[ + 16720, + 16718, + 16721 + ]], + [[ + 16722, + 16720, + 16723 + ]], + [[ + 16724, + 16722, + 16725 + ]], + [[ + 16726, + 16724, + 16727 + ]], + [[ + 16728, + 16726, + 16729 + ]], + [[ + 16730, + 16728, + 16731 + ]], + [[ + 16732, + 16730, + 16733 + ]], + [[ + 16734, + 16732, + 16735 + ]], + [[ + 16736, + 16734, + 16737 + ]], + [[ + 16738, + 16736, + 16739 + ]], + [[ + 16740, + 16738, + 16741 + ]], + [[ + 16739, + 16741, + 16738 + ]], + [[ + 16742, + 16740, + 16741 + ]], + [[ + 16737, + 16739, + 16736 + ]], + [[ + 16735, + 16737, + 16734 + ]], + [[ + 16733, + 16735, + 16732 + ]], + [[ + 16731, + 16733, + 16730 + ]], + [[ + 16729, + 16731, + 16728 + ]], + [[ + 16727, + 16729, + 16726 + ]], + [[ + 16725, + 16727, + 16724 + ]], + [[ + 16723, + 16725, + 16722 + ]], + [[ + 16721, + 16723, + 16720 + ]], + [[ + 16719, + 16721, + 16718 + ]], + [[ + 16717, + 16719, + 16716 + ]], + [[ + 16743, + 16744, + 16693 + ]], + [[ + 16696, + 16745, + 16717 + ]], + [[ + 16696, + 16695, + 16745 + ]], + [[ + 16746, + 16747, + 16704 + ]], + [[ + 16693, + 16748, + 16695 + ]], + [[ + 16743, + 16747, + 16746 + ]], + [[ + 16748, + 16693, + 16749 + ]], + [[ + 16749, + 16693, + 16750 + ]], + [[ + 16750, + 16693, + 16751 + ]], + [[ + 16751, + 16693, + 16692 + ]], + [[ + 16752, + 16691, + 16693 + ]], + [[ + 16744, + 16752, + 16693 + ]], + [[ + 16746, + 16744, + 16743 + ]], + [[ + 16704, + 16703, + 16746 + ]], + [[ + 16694, + 16674, + 16703 + ]], + [[ + 16672, + 13042, + 16177 + ]], + [[ + 16673, + 16753, + 16674 + ]], + [[ + 16673, + 16707, + 16683 + ]], + [[ + 16683, + 16685, + 16708 + ]], + [[ + 16708, + 16687, + 16686 + ]], + [[ + 16754, + 16708, + 16686 + ]], + [[ + 16754, + 16755, + 16756 + ]], + [[ + 16709, + 16710, + 16688 + ]], + [[ + 16757, + 16756, + 16755 + ]], + [[ + 16710, + 16686, + 16688 + ]], + [[ + 16755, + 16754, + 16686 + ]], + [[ + 13042, + 13041, + 16174 + ]], + [[ + 16710, + 16682, + 16670 + ]], + [[ + 13042, + 16174, + 16177 + ]], + [[ + 13041, + 16176, + 16174 + ]], + [[ + 13131, + 16666, + 16176 + ]], + [[ + 15421, + 15420, + 11622 + ]], + [[ + 13125, + 11619, + 16666 + ]], + [[ + 16666, + 11619, + 11620 + ]], + [[ + 13125, + 11785, + 11619 + ]], + [[ + 15420, + 15534, + 10615 + ]], + [[ + 15421, + 11622, + 11618 + ]], + [[ + 15534, + 15557, + 10615 + ]], + [[ + 15420, + 10615, + 11622 + ]], + [[ + 15557, + 10613, + 10615 + ]], + [[ + 15557, + 15804, + 10613 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9845daba-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef0b4949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 6857, + 6858, + 16758 + ]], + [[ + 6857, + 16758, + 6820 + ]], + [[ + 6820, + 6818, + 6819 + ]], + [[ + 6820, + 16759, + 6818 + ]], + [[ + 6820, + 16758, + 16759 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98462904-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eedb0349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "verkeersdrempel", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16760, + 16761, + 16762 + ]], + [[ + 16762, + 16763, + 16764 + ]], + [[ + 16760, + 16762, + 16764 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9847615f-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16765, + 16766, + 16767 + ]], + [[ + 16766, + 16768, + 16767 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98484b4f-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15470, + 14102, + 14125 + ]], + [[ + 15470, + 14125, + 15459 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98490f1a-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15906, + 15905, + 11987 + ]], + [[ + 15905, + 11988, + 11987 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b984abcea-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eec1fa49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 12536, + 16367, + 12531 + ]], + [[ + 14448, + 11901, + 16370 + ]], + [[ + 12536, + 16368, + 16367 + ]], + [[ + 16169, + 16170, + 24 + ]], + [[ + 16375, + 25, + 16408 + ]], + [[ + 16408, + 25, + 16407 + ]], + [[ + 16407, + 25, + 16380 + ]], + [[ + 16380, + 25, + 16406 + ]], + [[ + 16769, + 16404, + 16405 + ]], + [[ + 16769, + 16382, + 16404 + ]], + [[ + 16406, + 16769, + 16405 + ]], + [[ + 16770, + 16382, + 16769 + ]], + [[ + 16769, + 16406, + 25 + ]], + [[ + 25, + 16375, + 24 + ]], + [[ + 24, + 16375, + 16162 + ]], + [[ + 16168, + 16169, + 24 + ]], + [[ + 16167, + 16168, + 24 + ]], + [[ + 16166, + 16167, + 24 + ]], + [[ + 16165, + 16166, + 24 + ]], + [[ + 16164, + 16165, + 24 + ]], + [[ + 16163, + 16164, + 24 + ]], + [[ + 16162, + 16163, + 24 + ]], + [[ + 16161, + 16162, + 16375 + ]], + [[ + 16160, + 16161, + 16375 + ]], + [[ + 16158, + 16160, + 16375 + ]], + [[ + 16157, + 16158, + 16375 + ]], + [[ + 16156, + 16157, + 16375 + ]], + [[ + 16374, + 16150, + 16375 + ]], + [[ + 16375, + 16155, + 16156 + ]], + [[ + 16375, + 16154, + 16155 + ]], + [[ + 14448, + 16370, + 16369 + ]], + [[ + 16375, + 16153, + 16154 + ]], + [[ + 16374, + 16370, + 11900 + ]], + [[ + 16153, + 16375, + 16152 + ]], + [[ + 16152, + 16375, + 16149 + ]], + [[ + 16149, + 16375, + 16150 + ]], + [[ + 16150, + 16374, + 16171 + ]], + [[ + 16374, + 16172, + 16171 + ]], + [[ + 16374, + 11900, + 16172 + ]], + [[ + 16368, + 15729, + 16369 + ]], + [[ + 16370, + 11901, + 11900 + ]], + [[ + 16367, + 16372, + 14738 + ]], + [[ + 16409, + 15292, + 16372 + ]], + [[ + 16369, + 14442, + 14448 + ]], + [[ + 16369, + 15729, + 14442 + ]], + [[ + 16409, + 15884, + 14532 + ]], + [[ + 15729, + 16368, + 15746 + ]], + [[ + 15746, + 16368, + 12536 + ]], + [[ + 12531, + 16367, + 14731 + ]], + [[ + 14731, + 16367, + 14732 + ]], + [[ + 14732, + 16367, + 14746 + ]], + [[ + 14746, + 16367, + 14738 + ]], + [[ + 14738, + 16372, + 14237 + ]], + [[ + 14237, + 16372, + 14240 + ]], + [[ + 14240, + 16372, + 15291 + ]], + [[ + 15291, + 16372, + 15292 + ]], + [[ + 15292, + 16409, + 15237 + ]], + [[ + 15237, + 16409, + 15238 + ]], + [[ + 15238, + 16409, + 14532 + ]], + [[ + 6, + 5, + 24 + ]], + [[ + 24, + 5, + 25 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b984eb436-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef4c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16771, + 16772, + 16773 + ]], + [[ + 16771, + 16773, + 16774 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98525e11-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef229649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15694, + 11876, + 15711 + ]], + [[ + 11876, + 11888, + 15711 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98554433-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eec1fe49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16775, + 16776, + 16777 + ]], + [[ + 16776, + 16778, + 16777 + ]], + [[ + 16776, + 16761, + 16778 + ]], + [[ + 16778, + 16761, + 16760 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b98556b73-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eedb4d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "verkeersdrempel", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16779, + 16780, + 16781 + ]], + [[ + 16781, + 16780, + 16782 + ]], + [[ + 16779, + 16783, + 16780 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9856f206-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16784, + 16785, + 16786 + ]], + [[ + 16784, + 16786, + 16787 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b985fcb64-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef0ac049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 211, + 313, + 210 + ]], + [[ + 210, + 313, + 209 + ]], + [[ + 211, + 11617, + 313 + ]], + [[ + 211, + 212, + 11616 + ]], + [[ + 11617, + 211, + 11616 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f4dc812-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeeec649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 1026, + 1035, + 1036 + ]], + [[ + 16788, + 1026, + 1036 + ]], + [[ + 1048, + 16788, + 1049 + ]], + [[ + 1049, + 16788, + 1040 + ]], + [[ + 1040, + 16788, + 1041 + ]], + [[ + 1041, + 16788, + 1036 + ]], + [[ + 1026, + 1034, + 1035 + ]], + [[ + 1026, + 1028, + 1034 + ]], + [[ + 16788, + 16789, + 1026 + ]], + [[ + 1026, + 16789, + 1027 + ]], + [[ + 13077, + 16790, + 1048 + ]], + [[ + 16791, + 13042, + 16672 + ]], + [[ + 1048, + 16790, + 16788 + ]], + [[ + 13077, + 13042, + 16791 + ]], + [[ + 16789, + 16791, + 16672 + ]], + [[ + 16790, + 13077, + 16791 + ]], + [[ + 1027, + 16789, + 16672 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f4f9d10-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef344a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 14527, + 15693, + 15710 + ]], + [[ + 14527, + 15710, + 14549 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f5123ac-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eebe3e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16792, + 16793, + 3225 + ]], + [[ + 3277, + 16794, + 3344 + ]], + [[ + 3344, + 16795, + 3272 + ]], + [[ + 3272, + 16796, + 3271 + ]], + [[ + 3271, + 16797, + 3269 + ]], + [[ + 3269, + 16798, + 3267 + ]], + [[ + 3267, + 16799, + 3268 + ]], + [[ + 3268, + 16800, + 3265 + ]], + [[ + 3265, + 16801, + 3264 + ]], + [[ + 3264, + 16802, + 3350 + ]], + [[ + 3350, + 16803, + 3262 + ]], + [[ + 16793, + 16804, + 3247 + ]], + [[ + 3225, + 16793, + 3247 + ]], + [[ + 3247, + 16804, + 3252 + ]], + [[ + 3262, + 16792, + 3225 + ]], + [[ + 3276, + 16805, + 3277 + ]], + [[ + 16806, + 3366, + 3337 + ]], + [[ + 3262, + 16803, + 16792 + ]], + [[ + 3276, + 3366, + 16807 + ]], + [[ + 16801, + 16802, + 3264 + ]], + [[ + 16803, + 3350, + 16802 + ]], + [[ + 3333, + 16808, + 3337 + ]], + [[ + 16809, + 3329, + 3369 + ]], + [[ + 3265, + 16800, + 16801 + ]], + [[ + 3333, + 3329, + 16810 + ]], + [[ + 16798, + 16799, + 3267 + ]], + [[ + 16800, + 3268, + 16799 + ]], + [[ + 3381, + 16811, + 3369 + ]], + [[ + 16812, + 3322, + 3319 + ]], + [[ + 3269, + 16797, + 16798 + ]], + [[ + 3381, + 3322, + 16813 + ]], + [[ + 16795, + 16796, + 3272 + ]], + [[ + 16797, + 3271, + 16796 + ]], + [[ + 3286, + 16814, + 3319 + ]], + [[ + 16815, + 3285, + 3290 + ]], + [[ + 3344, + 16794, + 16795 + ]], + [[ + 3286, + 3285, + 16816 + ]], + [[ + 16807, + 16805, + 3276 + ]], + [[ + 16794, + 3277, + 16805 + ]], + [[ + 3289, + 16817, + 3290 + ]], + [[ + 3366, + 16806, + 16807 + ]], + [[ + 3337, + 16808, + 16806 + ]], + [[ + 3333, + 16810, + 16808 + ]], + [[ + 16818, + 3292, + 16819 + ]], + [[ + 3329, + 16809, + 16810 + ]], + [[ + 3289, + 3292, + 16818 + ]], + [[ + 16809, + 3369, + 16811 + ]], + [[ + 16811, + 3381, + 16813 + ]], + [[ + 16813, + 3322, + 16812 + ]], + [[ + 16812, + 3319, + 16814 + ]], + [[ + 16814, + 3286, + 16816 + ]], + [[ + 16816, + 3285, + 16815 + ]], + [[ + 16815, + 3290, + 16817 + ]], + [[ + 16817, + 3289, + 16818 + ]], + [[ + 16819, + 3292, + 3295 + ]], + [[ + 16820, + 16819, + 3295 + ]], + [[ + 16821, + 16820, + 3295 + ]], + [[ + 16822, + 16821, + 3295 + ]], + [[ + 16823, + 16822, + 3295 + ]], + [[ + 16824, + 16823, + 3295 + ]], + [[ + 16825, + 16824, + 3295 + ]], + [[ + 16825, + 3294, + 16826 + ]], + [[ + 16825, + 3295, + 3294 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f531ed5-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef16be49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 10028, + 10012, + 7279 + ]], + [[ + 10028, + 7279, + 16827 + ]], + [[ + 7278, + 7279, + 10012 + ]], + [[ + 16828, + 10179, + 16827 + ]], + [[ + 16827, + 10179, + 10028 + ]], + [[ + 16828, + 1173, + 10179 + ]], + [[ + 10205, + 10179, + 8554 + ]], + [[ + 1161, + 10179, + 1173 + ]], + [[ + 10205, + 1124, + 8545 + ]], + [[ + 8534, + 1123, + 10205 + ]], + [[ + 1124, + 10205, + 1123 + ]], + [[ + 8534, + 10205, + 1230 + ]], + [[ + 1230, + 10205, + 1112 + ]], + [[ + 1217, + 8526, + 10205 + ]], + [[ + 1112, + 10205, + 8526 + ]], + [[ + 1218, + 1217, + 10205 + ]], + [[ + 1203, + 8554, + 10179 + ]], + [[ + 1218, + 10205, + 8554 + ]], + [[ + 8562, + 1203, + 10179 + ]], + [[ + 1202, + 8554, + 1203 + ]], + [[ + 1188, + 8562, + 10179 + ]], + [[ + 1146, + 1188, + 10179 + ]], + [[ + 1161, + 8412, + 10179 + ]], + [[ + 1146, + 10179, + 8412 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f5409d1-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef6149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 7194, + 7198, + 15924 + ]], + [[ + 7198, + 15901, + 15924 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f556936-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16829, + 16830, + 16831 + ]], + [[ + 16829, + 16832, + 16833 + ]], + [[ + 16833, + 16834, + 16835 + ]], + [[ + 16833, + 16836, + 16834 + ]], + [[ + 16833, + 16837, + 16836 + ]], + [[ + 16833, + 16832, + 16837 + ]], + [[ + 16829, + 16838, + 16832 + ]], + [[ + 16829, + 16839, + 16838 + ]], + [[ + 16829, + 16840, + 16839 + ]], + [[ + 16829, + 16841, + 16840 + ]], + [[ + 16829, + 16842, + 16841 + ]], + [[ + 16829, + 16843, + 16842 + ]], + [[ + 16829, + 16844, + 16843 + ]], + [[ + 16829, + 16845, + 16844 + ]], + [[ + 16829, + 16846, + 16845 + ]], + [[ + 16829, + 16847, + 16846 + ]], + [[ + 16829, + 16848, + 16847 + ]], + [[ + 16829, + 16849, + 16848 + ]], + [[ + 16829, + 16850, + 16849 + ]], + [[ + 16829, + 16851, + 16850 + ]], + [[ + 16829, + 16852, + 16851 + ]], + [[ + 16829, + 16853, + 16852 + ]], + [[ + 16829, + 16831, + 16853 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f565329-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef0b4e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 6958, + 6955, + 6957 + ]], + [[ + 6957, + 6955, + 6956 + ]], + [[ + 6958, + 6959, + 16854 + ]], + [[ + 6955, + 16855, + 6954 + ]], + [[ + 6955, + 6958, + 16855 + ]], + [[ + 16855, + 6958, + 16854 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f56c89e-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 14126, + 14118, + 15328 + ]], + [[ + 14126, + 15328, + 15332 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f56efd5-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef32dd49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16856, + 16857, + 16858 + ]], + [[ + 16857, + 16859, + 16858 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f576553-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15804, + 15557, + 15805 + ]], + [[ + 15557, + 15549, + 15805 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f615017-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eef5fa49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 8136, + 8137, + 16860 + ]], + [[ + 16861, + 8136, + 11378 + ]], + [[ + 8134, + 8135, + 8133 + ]], + [[ + 11379, + 11378, + 8136 + ]], + [[ + 16862, + 11379, + 8136 + ]], + [[ + 16863, + 16862, + 8136 + ]], + [[ + 16864, + 16863, + 8136 + ]], + [[ + 16865, + 16864, + 8136 + ]], + [[ + 16866, + 16865, + 8136 + ]], + [[ + 16860, + 16866, + 8136 + ]], + [[ + 16804, + 8135, + 16861 + ]], + [[ + 16861, + 8135, + 8136 + ]], + [[ + 16867, + 16793, + 16868 + ]], + [[ + 8135, + 16804, + 16867 + ]], + [[ + 8135, + 16867, + 8133 + ]], + [[ + 16804, + 16793, + 16867 + ]], + [[ + 8122, + 16868, + 8121 + ]], + [[ + 8125, + 16868, + 8122 + ]], + [[ + 8124, + 8125, + 8122 + ]], + [[ + 8124, + 8122, + 8123 + ]], + [[ + 16868, + 16793, + 8121 + ]], + [[ + 8117, + 16793, + 8118 + ]], + [[ + 8120, + 8121, + 8117 + ]], + [[ + 8120, + 8117, + 8119 + ]], + [[ + 8121, + 16793, + 8117 + ]], + [[ + 11605, + 16793, + 11604 + ]], + [[ + 8159, + 8118, + 11606 + ]], + [[ + 8118, + 11605, + 11606 + ]], + [[ + 8118, + 16793, + 11605 + ]], + [[ + 11601, + 16793, + 11600 + ]], + [[ + 11603, + 11604, + 11602 + ]], + [[ + 11604, + 11601, + 11602 + ]], + [[ + 11604, + 16793, + 11601 + ]], + [[ + 11600, + 16793, + 15289 + ]], + [[ + 11599, + 11600, + 11597 + ]], + [[ + 11598, + 11599, + 11597 + ]], + [[ + 11600, + 15289, + 11597 + ]], + [[ + 15288, + 16793, + 16792 + ]], + [[ + 11595, + 11596, + 11593 + ]], + [[ + 15266, + 15264, + 11593 + ]], + [[ + 11594, + 11595, + 11593 + ]], + [[ + 15264, + 15263, + 11593 + ]], + [[ + 11591, + 11592, + 11590 + ]], + [[ + 11590, + 11592, + 11589 + ]], + [[ + 16795, + 11588, + 11589 + ]], + [[ + 11587, + 11588, + 11586 + ]], + [[ + 11586, + 11588, + 11585 + ]], + [[ + 16808, + 11584, + 11585 + ]], + [[ + 11585, + 11588, + 16807 + ]], + [[ + 11581, + 11583, + 11584 + ]], + [[ + 16813, + 11581, + 11584 + ]], + [[ + 11582, + 11583, + 11581 + ]], + [[ + 16814, + 11580, + 11581 + ]], + [[ + 11579, + 11580, + 11577 + ]], + [[ + 16815, + 11577, + 11580 + ]], + [[ + 11578, + 11579, + 11577 + ]], + [[ + 16818, + 11576, + 11577 + ]], + [[ + 11575, + 11576, + 11573 + ]], + [[ + 16818, + 11573, + 11576 + ]], + [[ + 11574, + 11575, + 11573 + ]], + [[ + 16818, + 11572, + 11573 + ]], + [[ + 11571, + 11572, + 2825 + ]], + [[ + 2825, + 11572, + 16818 + ]], + [[ + 2826, + 2825, + 16818 + ]], + [[ + 16819, + 2834, + 2830 + ]], + [[ + 2830, + 2826, + 16819 + ]], + [[ + 16819, + 181, + 182 + ]], + [[ + 182, + 2834, + 16819 + ]], + [[ + 180, + 181, + 179 + ]], + [[ + 179, + 181, + 176 + ]], + [[ + 176, + 181, + 16869 + ]], + [[ + 175, + 176, + 16869 + ]], + [[ + 16869, + 181, + 16870 + ]], + [[ + 16870, + 181, + 16826 + ]], + [[ + 16826, + 181, + 16825 + ]], + [[ + 16825, + 181, + 16824 + ]], + [[ + 16824, + 181, + 16823 + ]], + [[ + 16823, + 181, + 16822 + ]], + [[ + 16822, + 181, + 16821 + ]], + [[ + 16821, + 181, + 16820 + ]], + [[ + 16820, + 181, + 16819 + ]], + [[ + 16819, + 2826, + 16818 + ]], + [[ + 16818, + 11577, + 16817 + ]], + [[ + 16817, + 11577, + 16815 + ]], + [[ + 16815, + 11580, + 16816 + ]], + [[ + 16816, + 11580, + 16814 + ]], + [[ + 16814, + 11581, + 16812 + ]], + [[ + 16812, + 11581, + 16813 + ]], + [[ + 16813, + 11584, + 16811 + ]], + [[ + 16811, + 11584, + 16809 + ]], + [[ + 16809, + 11584, + 16810 + ]], + [[ + 16810, + 11584, + 16808 + ]], + [[ + 16808, + 11585, + 16806 + ]], + [[ + 16806, + 11585, + 16807 + ]], + [[ + 16807, + 11588, + 16805 + ]], + [[ + 16805, + 11588, + 16794 + ]], + [[ + 16794, + 11588, + 16795 + ]], + [[ + 16795, + 11589, + 15263 + ]], + [[ + 15263, + 11589, + 11592 + ]], + [[ + 15263, + 16797, + 16796 + ]], + [[ + 15263, + 16798, + 16797 + ]], + [[ + 15269, + 16799, + 16798 + ]], + [[ + 15289, + 11596, + 11597 + ]], + [[ + 15288, + 15289, + 16793 + ]], + [[ + 16803, + 15288, + 16792 + ]], + [[ + 16801, + 16800, + 15269 + ]], + [[ + 15269, + 16800, + 16799 + ]], + [[ + 16802, + 15288, + 16803 + ]], + [[ + 16802, + 16801, + 15275 + ]], + [[ + 15288, + 16802, + 15278 + ]], + [[ + 15278, + 16802, + 15274 + ]], + [[ + 15274, + 16802, + 15275 + ]], + [[ + 15275, + 16801, + 15273 + ]], + [[ + 15273, + 16801, + 15271 + ]], + [[ + 15271, + 16801, + 15272 + ]], + [[ + 16801, + 15269, + 15272 + ]], + [[ + 16796, + 16795, + 15263 + ]], + [[ + 16798, + 15263, + 15269 + ]], + [[ + 11592, + 11593, + 15263 + ]], + [[ + 11596, + 15287, + 11593 + ]], + [[ + 15285, + 15266, + 11593 + ]], + [[ + 15287, + 15285, + 11593 + ]], + [[ + 15283, + 15287, + 11596 + ]], + [[ + 15282, + 15283, + 11596 + ]], + [[ + 15289, + 15282, + 11596 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f68f153-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee28049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 12832, + 7096, + 7099 + ]], + [[ + 6655, + 6678, + 6679 + ]], + [[ + 16871, + 16317, + 6755 + ]], + [[ + 16872, + 15991, + 15993 + ]], + [[ + 6749, + 6663, + 6760 + ]], + [[ + 6758, + 6759, + 6756 + ]], + [[ + 16872, + 15976, + 15979 + ]], + [[ + 6757, + 6758, + 6756 + ]], + [[ + 6754, + 6755, + 16317 + ]], + [[ + 16872, + 16017, + 16015 + ]], + [[ + 7223, + 7224, + 7221 + ]], + [[ + 7222, + 7223, + 7221 + ]], + [[ + 6754, + 16317, + 7226 + ]], + [[ + 7226, + 16317, + 7224 + ]], + [[ + 7147, + 7148, + 7146 + ]], + [[ + 7146, + 7148, + 7145 + ]], + [[ + 16317, + 7138, + 7221 + ]], + [[ + 7143, + 7144, + 7141 + ]], + [[ + 7142, + 7143, + 7141 + ]], + [[ + 7148, + 7138, + 16317 + ]], + [[ + 7101, + 7103, + 7100 + ]], + [[ + 16320, + 12842, + 7100 + ]], + [[ + 7098, + 7099, + 7096 + ]], + [[ + 7097, + 7098, + 7096 + ]], + [[ + 12842, + 7099, + 7100 + ]], + [[ + 12832, + 7094, + 7096 + ]], + [[ + 7095, + 7096, + 7094 + ]], + [[ + 16873, + 7093, + 7094 + ]], + [[ + 7092, + 7093, + 7091 + ]], + [[ + 7091, + 7093, + 7090 + ]], + [[ + 7090, + 7093, + 16873 + ]], + [[ + 7089, + 7090, + 16873 + ]], + [[ + 16873, + 7094, + 16874 + ]], + [[ + 15909, + 16873, + 16875 + ]], + [[ + 16875, + 16873, + 16874 + ]], + [[ + 16874, + 7094, + 16876 + ]], + [[ + 16876, + 7094, + 16877 + ]], + [[ + 16877, + 7094, + 16878 + ]], + [[ + 16878, + 7094, + 16879 + ]], + [[ + 16879, + 7094, + 16880 + ]], + [[ + 16880, + 7094, + 16881 + ]], + [[ + 16881, + 7094, + 16882 + ]], + [[ + 16882, + 7094, + 16883 + ]], + [[ + 16883, + 7094, + 16884 + ]], + [[ + 16884, + 7094, + 16885 + ]], + [[ + 16885, + 7094, + 16886 + ]], + [[ + 16886, + 7094, + 16887 + ]], + [[ + 16887, + 7094, + 16888 + ]], + [[ + 16888, + 7094, + 16889 + ]], + [[ + 16889, + 7094, + 12832 + ]], + [[ + 16890, + 16889, + 12832 + ]], + [[ + 505, + 15971, + 6672 + ]], + [[ + 16891, + 16890, + 12832 + ]], + [[ + 12841, + 12842, + 16320 + ]], + [[ + 16342, + 16345, + 12841 + ]], + [[ + 16892, + 16871, + 6756 + ]], + [[ + 16340, + 16342, + 12841 + ]], + [[ + 16340, + 12841, + 16338 + ]], + [[ + 7224, + 16317, + 7221 + ]], + [[ + 16336, + 16338, + 12841 + ]], + [[ + 16336, + 12841, + 16334 + ]], + [[ + 7148, + 16317, + 7145 + ]], + [[ + 16334, + 12841, + 16332 + ]], + [[ + 16354, + 16356, + 16351 + ]], + [[ + 16330, + 16332, + 12841 + ]], + [[ + 16356, + 16358, + 16351 + ]], + [[ + 16328, + 16330, + 12841 + ]], + [[ + 16326, + 16328, + 12841 + ]], + [[ + 16358, + 16322, + 16341 + ]], + [[ + 16323, + 16326, + 12841 + ]], + [[ + 16324, + 16323, + 12841 + ]], + [[ + 16360, + 16322, + 16358 + ]], + [[ + 16346, + 16324, + 12841 + ]], + [[ + 16348, + 16346, + 12841 + ]], + [[ + 16362, + 16322, + 16360 + ]], + [[ + 16350, + 16348, + 12841 + ]], + [[ + 16352, + 16350, + 12841 + ]], + [[ + 16364, + 16322, + 16362 + ]], + [[ + 16353, + 16352, + 12841 + ]], + [[ + 16355, + 16353, + 12841 + ]], + [[ + 16322, + 16318, + 16344 + ]], + [[ + 16357, + 16355, + 12841 + ]], + [[ + 16359, + 16357, + 12841 + ]], + [[ + 16318, + 16317, + 16344 + ]], + [[ + 16361, + 16359, + 12841 + ]], + [[ + 16363, + 16361, + 12841 + ]], + [[ + 16321, + 16363, + 12841 + ]], + [[ + 7103, + 16320, + 7100 + ]], + [[ + 16319, + 16321, + 12841 + ]], + [[ + 16872, + 15995, + 15997 + ]], + [[ + 16317, + 7144, + 7145 + ]], + [[ + 16317, + 16320, + 7144 + ]], + [[ + 7144, + 16320, + 7141 + ]], + [[ + 7141, + 16320, + 7103 + ]], + [[ + 16351, + 16358, + 16349 + ]], + [[ + 16349, + 16358, + 16341 + ]], + [[ + 16347, + 16349, + 16341 + ]], + [[ + 16325, + 16347, + 16327 + ]], + [[ + 16327, + 16347, + 16329 + ]], + [[ + 16329, + 16347, + 16335 + ]], + [[ + 16331, + 16329, + 16335 + ]], + [[ + 16333, + 16331, + 16335 + ]], + [[ + 16335, + 16347, + 16341 + ]], + [[ + 16337, + 16335, + 16339 + ]], + [[ + 16339, + 16335, + 16341 + ]], + [[ + 16341, + 16322, + 16344 + ]], + [[ + 16343, + 16341, + 16344 + ]], + [[ + 15974, + 16892, + 6756 + ]], + [[ + 15997, + 16000, + 16872 + ]], + [[ + 15995, + 16872, + 15993 + ]], + [[ + 15971, + 6679, + 6672 + ]], + [[ + 16872, + 15989, + 15991 + ]], + [[ + 6655, + 6679, + 15971 + ]], + [[ + 16008, + 16010, + 16006 + ]], + [[ + 15989, + 16872, + 15987 + ]], + [[ + 16010, + 16012, + 16004 + ]], + [[ + 15987, + 16872, + 15985 + ]], + [[ + 15985, + 16872, + 15983 + ]], + [[ + 16012, + 16018, + 15996 + ]], + [[ + 15983, + 16872, + 15981 + ]], + [[ + 15981, + 16872, + 15979 + ]], + [[ + 16014, + 16018, + 16012 + ]], + [[ + 16872, + 15977, + 15976 + ]], + [[ + 16872, + 16001, + 15977 + ]], + [[ + 16016, + 16018, + 16014 + ]], + [[ + 16872, + 16003, + 16001 + ]], + [[ + 16872, + 16005, + 16003 + ]], + [[ + 16018, + 15972, + 15999 + ]], + [[ + 16872, + 16007, + 16005 + ]], + [[ + 16872, + 16009, + 16007 + ]], + [[ + 16020, + 15975, + 16018 + ]], + [[ + 16872, + 16011, + 16009 + ]], + [[ + 16872, + 16013, + 16011 + ]], + [[ + 16872, + 16015, + 16013 + ]], + [[ + 16018, + 15975, + 15972 + ]], + [[ + 16872, + 16019, + 16017 + ]], + [[ + 16872, + 16892, + 15973 + ]], + [[ + 16774, + 15972, + 15971 + ]], + [[ + 6759, + 15974, + 6756 + ]], + [[ + 6759, + 6760, + 15974 + ]], + [[ + 8391, + 8392, + 16893 + ]], + [[ + 15971, + 15974, + 6655 + ]], + [[ + 6655, + 15974, + 6663 + ]], + [[ + 6663, + 15974, + 6760 + ]], + [[ + 16006, + 16010, + 16004 + ]], + [[ + 16004, + 16012, + 15996 + ]], + [[ + 16002, + 16004, + 15980 + ]], + [[ + 15978, + 16002, + 15980 + ]], + [[ + 15980, + 16004, + 15984 + ]], + [[ + 15982, + 15980, + 15984 + ]], + [[ + 15984, + 16004, + 15996 + ]], + [[ + 15986, + 15984, + 15990 + ]], + [[ + 15988, + 15986, + 15990 + ]], + [[ + 15990, + 15984, + 15996 + ]], + [[ + 15992, + 15990, + 15994 + ]], + [[ + 15994, + 15990, + 15996 + ]], + [[ + 15996, + 16018, + 15999 + ]], + [[ + 15998, + 15996, + 15999 + ]], + [[ + 16894, + 16893, + 15881 + ]], + [[ + 16773, + 15999, + 15972 + ]], + [[ + 16895, + 16896, + 16897 + ]], + [[ + 16897, + 16896, + 16898 + ]], + [[ + 16898, + 16896, + 16899 + ]], + [[ + 16900, + 16898, + 16899 + ]], + [[ + 16901, + 16900, + 16899 + ]], + [[ + 16899, + 16896, + 16902 + ]], + [[ + 16903, + 16899, + 16904 + ]], + [[ + 16904, + 16899, + 16905 + ]], + [[ + 16905, + 16899, + 16902 + ]], + [[ + 16906, + 16905, + 16907 + ]], + [[ + 16907, + 16905, + 16908 + ]], + [[ + 16909, + 16907, + 16908 + ]], + [[ + 16908, + 16905, + 16902 + ]], + [[ + 16910, + 16908, + 16911 + ]], + [[ + 16911, + 16908, + 16912 + ]], + [[ + 16912, + 16908, + 16902 + ]], + [[ + 16913, + 16912, + 16902 + ]], + [[ + 16914, + 16913, + 16902 + ]], + [[ + 16902, + 16896, + 16915 + ]], + [[ + 16916, + 16902, + 16917 + ]], + [[ + 16917, + 16902, + 16915 + ]], + [[ + 16918, + 16917, + 16915 + ]], + [[ + 16915, + 16896, + 16772 + ]], + [[ + 8388, + 8391, + 16893 + ]], + [[ + 16894, + 16919, + 16920 + ]], + [[ + 16921, + 16919, + 16894 + ]], + [[ + 16922, + 16921, + 16923 + ]], + [[ + 16923, + 16921, + 16924 + ]], + [[ + 16925, + 16923, + 16926 + ]], + [[ + 16927, + 16925, + 16926 + ]], + [[ + 16926, + 16923, + 16924 + ]], + [[ + 16928, + 16926, + 16929 + ]], + [[ + 16929, + 16926, + 16930 + ]], + [[ + 16931, + 16929, + 16930 + ]], + [[ + 16930, + 16926, + 16924 + ]], + [[ + 16932, + 16930, + 16933 + ]], + [[ + 16933, + 16930, + 16924 + ]], + [[ + 16934, + 16933, + 16935 + ]], + [[ + 16935, + 16933, + 16936 + ]], + [[ + 16937, + 16935, + 16936 + ]], + [[ + 16936, + 16933, + 16938 + ]], + [[ + 16939, + 16936, + 16938 + ]], + [[ + 16938, + 16933, + 16924 + ]], + [[ + 16940, + 16938, + 16924 + ]], + [[ + 16924, + 16921, + 16894 + ]], + [[ + 16941, + 16942, + 15858 + ]], + [[ + 16943, + 15858, + 16942 + ]], + [[ + 15880, + 15881, + 15878 + ]], + [[ + 15879, + 15880, + 15878 + ]], + [[ + 15878, + 15881, + 15876 + ]], + [[ + 15877, + 15878, + 15876 + ]], + [[ + 15876, + 15881, + 15874 + ]], + [[ + 15875, + 15876, + 15874 + ]], + [[ + 15874, + 15881, + 15860 + ]], + [[ + 15873, + 15874, + 15872 + ]], + [[ + 15872, + 15874, + 15871 + ]], + [[ + 15871, + 15874, + 15870 + ]], + [[ + 15870, + 15874, + 15869 + ]], + [[ + 15869, + 15874, + 15860 + ]], + [[ + 15868, + 15869, + 15865 + ]], + [[ + 15867, + 15868, + 15865 + ]], + [[ + 15866, + 15867, + 15865 + ]], + [[ + 15865, + 15869, + 15864 + ]], + [[ + 15864, + 15869, + 15860 + ]], + [[ + 15863, + 15864, + 15860 + ]], + [[ + 15862, + 15863, + 15860 + ]], + [[ + 15861, + 15862, + 15860 + ]], + [[ + 15860, + 15881, + 15857 + ]], + [[ + 15859, + 15860, + 15857 + ]], + [[ + 15881, + 16944, + 15857 + ]], + [[ + 16944, + 15881, + 16893 + ]], + [[ + 8272, + 15855, + 15858 + ]], + [[ + 14714, + 15856, + 15855 + ]], + [[ + 14721, + 15856, + 14714 + ]], + [[ + 14717, + 15855, + 8273 + ]], + [[ + 16945, + 16946, + 14719 + ]], + [[ + 16947, + 16945, + 14717 + ]], + [[ + 16948, + 16947, + 14717 + ]], + [[ + 16949, + 16948, + 8274 + ]], + [[ + 16950, + 16949, + 16951 + ]], + [[ + 16952, + 16950, + 16951 + ]], + [[ + 16953, + 16952, + 16951 + ]], + [[ + 16954, + 16953, + 16951 + ]], + [[ + 16951, + 16949, + 8274 + ]], + [[ + 8275, + 16951, + 8274 + ]], + [[ + 8274, + 14717, + 8273 + ]], + [[ + 8273, + 15855, + 8272 + ]], + [[ + 8272, + 15858, + 16955 + ]], + [[ + 8271, + 8272, + 16955 + ]], + [[ + 16956, + 15858, + 16943 + ]], + [[ + 16957, + 16955, + 16958 + ]], + [[ + 16955, + 16956, + 16958 + ]], + [[ + 16955, + 15858, + 16956 + ]], + [[ + 16959, + 8392, + 8395 + ]], + [[ + 16960, + 16943, + 16961 + ]], + [[ + 16943, + 16942, + 16961 + ]], + [[ + 8387, + 8388, + 16893 + ]], + [[ + 16944, + 15858, + 15857 + ]], + [[ + 16959, + 8396, + 16962 + ]], + [[ + 16959, + 8395, + 8396 + ]], + [[ + 8394, + 8395, + 8393 + ]], + [[ + 8395, + 8392, + 8393 + ]], + [[ + 1389, + 8384, + 16894 + ]], + [[ + 8390, + 8391, + 8389 + ]], + [[ + 8391, + 8388, + 8389 + ]], + [[ + 16893, + 16894, + 8387 + ]], + [[ + 8384, + 8385, + 8386 + ]], + [[ + 8386, + 8387, + 8384 + ]], + [[ + 16894, + 8384, + 8387 + ]], + [[ + 16963, + 16894, + 16964 + ]], + [[ + 16965, + 16963, + 16966 + ]], + [[ + 16894, + 1386, + 1389 + ]], + [[ + 1391, + 1387, + 16967 + ]], + [[ + 1386, + 16965, + 1387 + ]], + [[ + 16968, + 16969, + 16920 + ]], + [[ + 16963, + 16965, + 1386 + ]], + [[ + 16965, + 16967, + 1387 + ]], + [[ + 1386, + 16894, + 16963 + ]], + [[ + 16969, + 16964, + 16894 + ]], + [[ + 16969, + 10652, + 16964 + ]], + [[ + 16920, + 16969, + 16894 + ]], + [[ + 10647, + 10652, + 16969 + ]], + [[ + 650, + 651, + 16970 + ]], + [[ + 16968, + 650, + 16970 + ]], + [[ + 16920, + 648, + 16968 + ]], + [[ + 648, + 649, + 650 + ]], + [[ + 16920, + 624, + 648 + ]], + [[ + 16968, + 648, + 650 + ]], + [[ + 16920, + 16971, + 630 + ]], + [[ + 16771, + 16915, + 16772 + ]], + [[ + 624, + 16920, + 630 + ]], + [[ + 520, + 16971, + 519 + ]], + [[ + 630, + 520, + 514 + ]], + [[ + 630, + 16971, + 520 + ]], + [[ + 506, + 518, + 519 + ]], + [[ + 15971, + 506, + 16774 + ]], + [[ + 493, + 518, + 506 + ]], + [[ + 505, + 506, + 15971 + ]], + [[ + 16942, + 16941, + 16962 + ]], + [[ + 16893, + 8392, + 16959 + ]], + [[ + 16959, + 16962, + 16941 + ]], + [[ + 16941, + 15858, + 16944 + ]], + [[ + 14717, + 14714, + 15855 + ]], + [[ + 16948, + 14717, + 8274 + ]], + [[ + 16945, + 14719, + 14717 + ]], + [[ + 16946, + 16972, + 14719 + ]], + [[ + 16972, + 14721, + 14719 + ]], + [[ + 16972, + 15856, + 14721 + ]], + [[ + 16973, + 12831, + 16345 + ]], + [[ + 16973, + 16891, + 12832 + ]], + [[ + 12831, + 16973, + 12832 + ]], + [[ + 16319, + 12841, + 16320 + ]], + [[ + 12832, + 7099, + 12842 + ]], + [[ + 12831, + 12841, + 16345 + ]], + [[ + 16344, + 16974, + 16000 + ]], + [[ + 16344, + 16317, + 16871 + ]], + [[ + 6756, + 16871, + 6755 + ]], + [[ + 16974, + 16344, + 16871 + ]], + [[ + 15973, + 16892, + 15974 + ]], + [[ + 15973, + 16019, + 16872 + ]], + [[ + 16974, + 16872, + 16000 + ]], + [[ + 16896, + 15999, + 16773 + ]], + [[ + 16774, + 16773, + 15972 + ]], + [[ + 16772, + 16896, + 16773 + ]], + [[ + 519, + 16774, + 506 + ]], + [[ + 519, + 16771, + 16774 + ]], + [[ + 16971, + 16771, + 519 + ]], + [[ + 16971, + 16915, + 16771 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f6bb041-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad op trap", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef1acf49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "gesloten verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 8131, + 8132, + 8133 + ]], + [[ + 16867, + 8131, + 8133 + ]], + [[ + 15854, + 8130, + 8131 + ]], + [[ + 16867, + 15854, + 8131 + ]], + [[ + 16868, + 15853, + 16867 + ]], + [[ + 15853, + 8125, + 8126 + ]], + [[ + 16867, + 15853, + 15854 + ]], + [[ + 16868, + 8125, + 15853 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f6bb053-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca8549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16781, + 16782, + 16975 + ]], + [[ + 16782, + 16976, + 16975 + ]], + [[ + 16976, + 16782, + 16977 + ]], + [[ + 16977, + 16782, + 16978 + ]], + [[ + 16978, + 16782, + 16979 + ]], + [[ + 16980, + 16978, + 16979 + ]], + [[ + 16981, + 16980, + 16979 + ]], + [[ + 16982, + 16981, + 16979 + ]], + [[ + 16983, + 16982, + 16979 + ]], + [[ + 16984, + 16983, + 16979 + ]], + [[ + 16985, + 16984, + 16979 + ]], + [[ + 16986, + 16985, + 16979 + ]], + [[ + 16987, + 16986, + 16979 + ]], + [[ + 16988, + 16987, + 16989 + ]], + [[ + 16990, + 16988, + 16989 + ]], + [[ + 16991, + 16990, + 16989 + ]], + [[ + 16992, + 16991, + 16989 + ]], + [[ + 16993, + 16992, + 16989 + ]], + [[ + 16993, + 16989, + 16954 + ]], + [[ + 16987, + 16979, + 16989 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f6c25cb-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16994, + 16995, + 14274 + ]], + [[ + 3012, + 15234, + 16995 + ]], + [[ + 14267, + 16994, + 14274 + ]], + [[ + 14267, + 16996, + 16994 + ]], + [[ + 3014, + 15216, + 15234 + ]], + [[ + 16997, + 16998, + 3015 + ]], + [[ + 16996, + 14267, + 3015 + ]], + [[ + 16994, + 16997, + 16995 + ]], + [[ + 16997, + 3013, + 16995 + ]], + [[ + 16997, + 3015, + 3013 + ]], + [[ + 16996, + 3015, + 16998 + ]], + [[ + 14267, + 15216, + 3015 + ]], + [[ + 3012, + 3014, + 15234 + ]], + [[ + 3015, + 15216, + 3014 + ]], + [[ + 3013, + 3012, + 16995 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f6cc165-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef229949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16920, + 16919, + 16971 + ]], + [[ + 16919, + 16915, + 16971 + ]], + [[ + 16919, + 16918, + 16915 + ]], + [[ + 16918, + 16919, + 16917 + ]], + [[ + 16906, + 16907, + 16932 + ]], + [[ + 16905, + 16906, + 16933 + ]], + [[ + 16904, + 16905, + 16934 + ]], + [[ + 16903, + 16904, + 16935 + ]], + [[ + 16899, + 16903, + 16937 + ]], + [[ + 16901, + 16899, + 16936 + ]], + [[ + 16900, + 16901, + 16939 + ]], + [[ + 16898, + 16900, + 16938 + ]], + [[ + 16897, + 16898, + 16940 + ]], + [[ + 16895, + 16897, + 16924 + ]], + [[ + 16895, + 16894, + 16896 + ]], + [[ + 16895, + 16924, + 16894 + ]], + [[ + 16907, + 16909, + 16930 + ]], + [[ + 16897, + 16940, + 16924 + ]], + [[ + 16898, + 16938, + 16940 + ]], + [[ + 16909, + 16908, + 16931 + ]], + [[ + 16900, + 16939, + 16938 + ]], + [[ + 16901, + 16936, + 16939 + ]], + [[ + 16908, + 16910, + 16929 + ]], + [[ + 16899, + 16937, + 16936 + ]], + [[ + 16903, + 16935, + 16937 + ]], + [[ + 16910, + 16911, + 16928 + ]], + [[ + 16904, + 16934, + 16935 + ]], + [[ + 16905, + 16933, + 16934 + ]], + [[ + 16911, + 16912, + 16926 + ]], + [[ + 16906, + 16932, + 16933 + ]], + [[ + 16907, + 16930, + 16932 + ]], + [[ + 16912, + 16913, + 16927 + ]], + [[ + 16909, + 16931, + 16930 + ]], + [[ + 16908, + 16929, + 16931 + ]], + [[ + 16913, + 16914, + 16925 + ]], + [[ + 16910, + 16928, + 16929 + ]], + [[ + 16911, + 16926, + 16928 + ]], + [[ + 16914, + 16902, + 16923 + ]], + [[ + 16912, + 16927, + 16926 + ]], + [[ + 16913, + 16925, + 16927 + ]], + [[ + 16902, + 16916, + 16922 + ]], + [[ + 16914, + 16923, + 16925 + ]], + [[ + 16902, + 16922, + 16923 + ]], + [[ + 16916, + 16917, + 16921 + ]], + [[ + 16916, + 16921, + 16922 + ]], + [[ + 16917, + 16919, + 16921 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f6e9666-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33cb49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 14419, + 14290, + 14439 + ]], + [[ + 14290, + 14300, + 14439 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f6e966f-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16305, + 16308, + 16307 + ]], + [[ + 16305, + 16307, + 16306 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f6fcec4-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eec1fc49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16999, + 17000, + 17001 + ]], + [[ + 16999, + 17002, + 17003 + ]], + [[ + 17004, + 17005, + 17006 + ]], + [[ + 17006, + 17005, + 17007 + ]], + [[ + 17007, + 17008, + 17009 + ]], + [[ + 17001, + 17000, + 17010 + ]], + [[ + 16999, + 17003, + 17000 + ]], + [[ + 17009, + 17011, + 17010 + ]], + [[ + 17012, + 17005, + 17004 + ]], + [[ + 17012, + 17013, + 17005 + ]], + [[ + 17001, + 17010, + 17011 + ]], + [[ + 17011, + 17009, + 17014 + ]], + [[ + 17014, + 17009, + 17015 + ]], + [[ + 17015, + 17009, + 17016 + ]], + [[ + 17016, + 17009, + 17008 + ]], + [[ + 17008, + 17007, + 17017 + ]], + [[ + 17017, + 17007, + 17005 + ]], + [[ + 17005, + 17013, + 17018 + ]], + [[ + 17018, + 17013, + 16783 + ]], + [[ + 16779, + 17018, + 16783 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f70e0dc-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeeec749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16789, + 16788, + 16790 + ]], + [[ + 16789, + 16790, + 16791 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f71cae4-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee4b449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 588, + 17005, + 17018 + ]], + [[ + 7807, + 17017, + 17005 + ]], + [[ + 7807, + 17008, + 17017 + ]], + [[ + 175, + 16869, + 17019 + ]], + [[ + 12405, + 17019, + 17002 + ]], + [[ + 12406, + 16999, + 17001 + ]], + [[ + 17011, + 17014, + 7809 + ]], + [[ + 17019, + 12405, + 7833 + ]], + [[ + 17014, + 17015, + 7809 + ]], + [[ + 17015, + 17016, + 7809 + ]], + [[ + 12394, + 17002, + 16999 + ]], + [[ + 17011, + 1796, + 17001 + ]], + [[ + 174, + 175, + 7833 + ]], + [[ + 174, + 7833, + 1840 + ]], + [[ + 175, + 17019, + 7833 + ]], + [[ + 12394, + 12405, + 17002 + ]], + [[ + 7832, + 7833, + 12405 + ]], + [[ + 12394, + 16999, + 12427 + ]], + [[ + 12427, + 16999, + 12355 + ]], + [[ + 12355, + 16999, + 12324 + ]], + [[ + 12324, + 16999, + 12318 + ]], + [[ + 12318, + 16999, + 12319 + ]], + [[ + 12319, + 16999, + 12323 + ]], + [[ + 12323, + 16999, + 12321 + ]], + [[ + 12321, + 16999, + 12322 + ]], + [[ + 12406, + 12429, + 16999 + ]], + [[ + 12322, + 16999, + 12429 + ]], + [[ + 17016, + 17008, + 7807 + ]], + [[ + 12406, + 17001, + 7823 + ]], + [[ + 7821, + 12406, + 7823 + ]], + [[ + 7823, + 17001, + 1795 + ]], + [[ + 1795, + 17001, + 1796 + ]], + [[ + 7807, + 7809, + 17016 + ]], + [[ + 1796, + 17011, + 7809 + ]], + [[ + 8012, + 7807, + 17005 + ]], + [[ + 8011, + 8012, + 17005 + ]], + [[ + 8006, + 8011, + 17005 + ]], + [[ + 3029, + 8006, + 17005 + ]], + [[ + 8207, + 3029, + 17005 + ]], + [[ + 8207, + 3030, + 3029 + ]], + [[ + 3016, + 8207, + 17005 + ]], + [[ + 8208, + 3030, + 8207 + ]], + [[ + 3017, + 3016, + 17005 + ]], + [[ + 3017, + 17005, + 8036 + ]], + [[ + 8035, + 8036, + 17005 + ]], + [[ + 8025, + 3017, + 8036 + ]], + [[ + 8032, + 8035, + 17005 + ]], + [[ + 8034, + 8035, + 8032 + ]], + [[ + 8031, + 8032, + 17005 + ]], + [[ + 8033, + 8034, + 8032 + ]], + [[ + 8028, + 8031, + 17005 + ]], + [[ + 8030, + 8031, + 8028 + ]], + [[ + 603, + 8028, + 17005 + ]], + [[ + 8029, + 8030, + 8028 + ]], + [[ + 611, + 603, + 17005 + ]], + [[ + 611, + 614, + 603 + ]], + [[ + 613, + 614, + 612 + ]], + [[ + 576, + 611, + 17005 + ]], + [[ + 612, + 614, + 611 + ]], + [[ + 586, + 588, + 17018 + ]], + [[ + 576, + 17005, + 588 + ]], + [[ + 587, + 588, + 586 + ]], + [[ + 586, + 17018, + 703 + ]], + [[ + 703, + 17018, + 702 + ]], + [[ + 702, + 17018, + 678 + ]], + [[ + 701, + 702, + 670 + ]], + [[ + 670, + 702, + 683 + ]], + [[ + 8250, + 17018, + 8248 + ]], + [[ + 682, + 683, + 681 + ]], + [[ + 683, + 680, + 681 + ]], + [[ + 683, + 702, + 680 + ]], + [[ + 680, + 678, + 679 + ]], + [[ + 680, + 702, + 678 + ]], + [[ + 678, + 17018, + 677 + ]], + [[ + 677, + 17018, + 8253 + ]], + [[ + 8252, + 8253, + 8251 + ]], + [[ + 8253, + 8250, + 8251 + ]], + [[ + 8253, + 17018, + 8250 + ]], + [[ + 8248, + 17018, + 8281 + ]], + [[ + 8281, + 17018, + 8279 + ]], + [[ + 8280, + 8281, + 8279 + ]], + [[ + 8276, + 17018, + 8275 + ]], + [[ + 8278, + 8279, + 8277 + ]], + [[ + 8279, + 8276, + 8277 + ]], + [[ + 8279, + 17018, + 8276 + ]], + [[ + 16951, + 8275, + 16988 + ]], + [[ + 16954, + 16951, + 16993 + ]], + [[ + 16993, + 16951, + 16992 + ]], + [[ + 16992, + 16951, + 16991 + ]], + [[ + 16991, + 16951, + 16990 + ]], + [[ + 16990, + 16951, + 16988 + ]], + [[ + 16988, + 8275, + 16987 + ]], + [[ + 16987, + 8275, + 16986 + ]], + [[ + 16986, + 8275, + 16985 + ]], + [[ + 16985, + 8275, + 16984 + ]], + [[ + 16984, + 8275, + 16983 + ]], + [[ + 16983, + 8275, + 16982 + ]], + [[ + 16982, + 8275, + 16981 + ]], + [[ + 16981, + 8275, + 16980 + ]], + [[ + 16980, + 8275, + 16978 + ]], + [[ + 16978, + 8275, + 16977 + ]], + [[ + 16977, + 8275, + 16976 + ]], + [[ + 16976, + 8275, + 16975 + ]], + [[ + 16975, + 8275, + 16781 + ]], + [[ + 8275, + 16779, + 16781 + ]], + [[ + 8275, + 17018, + 16779 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f724050-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 7088, + 7089, + 7087 + ]], + [[ + 16873, + 15902, + 7089 + ]], + [[ + 7085, + 7086, + 7087 + ]], + [[ + 7089, + 15921, + 7087 + ]], + [[ + 7087, + 7084, + 7085 + ]], + [[ + 7084, + 7087, + 15921 + ]], + [[ + 7083, + 7080, + 7082 + ]], + [[ + 7082, + 7080, + 7081 + ]], + [[ + 7083, + 7084, + 15915 + ]], + [[ + 7080, + 7083, + 15915 + ]], + [[ + 7079, + 7077, + 7078 + ]], + [[ + 7077, + 7120, + 7073 + ]], + [[ + 7077, + 7079, + 15915 + ]], + [[ + 7077, + 7119, + 7120 + ]], + [[ + 7119, + 7077, + 15915 + ]], + [[ + 7118, + 7114, + 7117 + ]], + [[ + 7118, + 7176, + 7114 + ]], + [[ + 7118, + 7119, + 15916 + ]], + [[ + 7118, + 17020, + 7176 + ]], + [[ + 7175, + 7173, + 7174 + ]], + [[ + 7175, + 7172, + 7173 + ]], + [[ + 7175, + 7176, + 17020 + ]], + [[ + 7175, + 17021, + 7172 + ]], + [[ + 7079, + 7080, + 15915 + ]], + [[ + 7172, + 17021, + 17022 + ]], + [[ + 17022, + 17023, + 17024 + ]], + [[ + 17024, + 17025, + 17026 + ]], + [[ + 17024, + 17027, + 17025 + ]], + [[ + 17025, + 17027, + 17028 + ]], + [[ + 17028, + 17027, + 17029 + ]], + [[ + 17024, + 17023, + 17027 + ]], + [[ + 17027, + 17030, + 17031 + ]], + [[ + 17027, + 17023, + 17030 + ]], + [[ + 17030, + 17032, + 17033 + ]], + [[ + 17030, + 17034, + 17032 + ]], + [[ + 17032, + 17035, + 17036 + ]], + [[ + 17032, + 17037, + 17035 + ]], + [[ + 17032, + 17034, + 17037 + ]], + [[ + 17030, + 17023, + 17034 + ]], + [[ + 17034, + 17038, + 17039 + ]], + [[ + 17034, + 17040, + 17038 + ]], + [[ + 17034, + 17023, + 17040 + ]], + [[ + 17040, + 17023, + 17041 + ]], + [[ + 17022, + 17042, + 17023 + ]], + [[ + 17023, + 17042, + 17043 + ]], + [[ + 17043, + 17042, + 17044 + ]], + [[ + 17022, + 17021, + 17042 + ]], + [[ + 7175, + 17020, + 17021 + ]], + [[ + 17020, + 7118, + 15916 + ]], + [[ + 7119, + 15915, + 15916 + ]], + [[ + 7084, + 15921, + 15915 + ]], + [[ + 7089, + 15920, + 15921 + ]], + [[ + 7089, + 15919, + 15920 + ]], + [[ + 7089, + 15907, + 15919 + ]], + [[ + 15907, + 7089, + 15918 + ]], + [[ + 15918, + 7089, + 15917 + ]], + [[ + 15917, + 7089, + 15914 + ]], + [[ + 15914, + 7089, + 15913 + ]], + [[ + 15913, + 7089, + 15902 + ]], + [[ + 16873, + 15911, + 15902 + ]], + [[ + 16873, + 15912, + 15911 + ]], + [[ + 16873, + 15908, + 15912 + ]], + [[ + 15909, + 15908, + 16873 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f72b4d4-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17045, + 17046, + 17047 + ]], + [[ + 17045, + 17047, + 17048 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f732a64-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17049, + 17050, + 9145 + ]], + [[ + 15325, + 17051, + 15333 + ]], + [[ + 15325, + 16768, + 17051 + ]], + [[ + 17051, + 16768, + 17052 + ]], + [[ + 17052, + 16766, + 17053 + ]], + [[ + 16765, + 17054, + 16766 + ]], + [[ + 17055, + 17056, + 16765 + ]], + [[ + 9148, + 17055, + 16765 + ]], + [[ + 9145, + 17057, + 9146 + ]], + [[ + 9145, + 17058, + 17057 + ]], + [[ + 9145, + 17059, + 17058 + ]], + [[ + 9145, + 17060, + 17059 + ]], + [[ + 9145, + 17061, + 17060 + ]], + [[ + 17049, + 9145, + 17062 + ]], + [[ + 11997, + 17063, + 17064 + ]], + [[ + 11997, + 17065, + 17063 + ]], + [[ + 11997, + 17066, + 17065 + ]], + [[ + 11997, + 17067, + 17066 + ]], + [[ + 11997, + 12020, + 17067 + ]], + [[ + 17053, + 16766, + 17054 + ]], + [[ + 17052, + 16768, + 16766 + ]], + [[ + 9148, + 17068, + 17055 + ]], + [[ + 9145, + 11997, + 17064 + ]], + [[ + 9145, + 17050, + 17061 + ]], + [[ + 16768, + 15325, + 9147 + ]], + [[ + 9147, + 16765, + 16767 + ]], + [[ + 17056, + 17054, + 16765 + ]], + [[ + 17057, + 17068, + 9146 + ]], + [[ + 9147, + 9148, + 16765 + ]], + [[ + 9146, + 17068, + 9148 + ]], + [[ + 16768, + 9147, + 16767 + ]], + [[ + 15325, + 11997, + 9145 + ]], + [[ + 17062, + 9145, + 17064 + ]], + [[ + 9147, + 15325, + 9145 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "b9f76379f-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef0ad049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17069, + 16177, + 16430 + ]], + [[ + 16430, + 16428, + 16425 + ]], + [[ + 16430, + 16177, + 16428 + ]], + [[ + 16428, + 16177, + 262 + ]], + [[ + 17069, + 17070, + 16177 + ]], + [[ + 16177, + 17070, + 16670 + ]], + [[ + 17071, + 16670, + 17072 + ]], + [[ + 17073, + 17071, + 17072 + ]], + [[ + 17073, + 17072, + 17074 + ]], + [[ + 16670, + 17070, + 17072 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "ba2bf3d0a-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "kademuur", + "bronhouder": "W0372", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f09a6549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17075, + 17076, + 17077 + ]], + [[ + 17075, + 17077, + 17078 + ]], + [[ + 17079, + 17080, + 17075 + ]], + [[ + 17075, + 17080, + 17076 + ]], + [[ + 17081, + 17082, + 17077 + ]], + [[ + 17077, + 17082, + 17078 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2c139a9-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0948949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 7823, + 1795, + 1801 + ]], + [[ + 7823, + 1802, + 7822 + ]], + [[ + 1801, + 1794, + 1802 + ]], + [[ + 7823, + 1801, + 1802 + ]], + [[ + 1795, + 1797, + 1801 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2c139ab-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 7169, + 7170, + 17083 + ]], + [[ + 17083, + 7199, + 7167 + ]], + [[ + 7167, + 7199, + 7200 + ]], + [[ + 7169, + 17083, + 7167 + ]], + [[ + 15943, + 7199, + 17083 + ]], + [[ + 7170, + 15943, + 17083 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2c1d52d-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0876949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 266, + 279, + 265 + ]], + [[ + 279, + 280, + 265 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2c22373-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10539, + 17084, + 1403 + ]], + [[ + 17085, + 1377, + 17084 + ]], + [[ + 1381, + 10539, + 1403 + ]], + [[ + 1376, + 1377, + 17085 + ]], + [[ + 10002, + 1376, + 17085 + ]], + [[ + 10539, + 1381, + 10009 + ]], + [[ + 10539, + 17085, + 17084 + ]], + [[ + 10009, + 1381, + 10044 + ]], + [[ + 10033, + 10009, + 10044 + ]], + [[ + 1381, + 17086, + 10044 + ]], + [[ + 1381, + 1391, + 17086 + ]], + [[ + 1323, + 1403, + 17084 + ]], + [[ + 1377, + 1323, + 17084 + ]], + [[ + 10349, + 10002, + 17085 + ]], + [[ + 10539, + 10349, + 17085 + ]], + [[ + 1391, + 16967, + 17086 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2c2bff4-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0948a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17087, + 1525, + 1369 + ]], + [[ + 17088, + 17087, + 1369 + ]], + [[ + 17089, + 11609, + 17088 + ]], + [[ + 11608, + 17090, + 17087 + ]], + [[ + 11609, + 11608, + 17087 + ]], + [[ + 17088, + 11609, + 17087 + ]], + [[ + 17089, + 11607, + 11609 + ]], + [[ + 13350, + 11610, + 17089 + ]], + [[ + 17089, + 11610, + 11607 + ]], + [[ + 13352, + 13350, + 17088 + ]], + [[ + 17088, + 13350, + 17089 + ]], + [[ + 1369, + 13352, + 17088 + ]], + [[ + 1535, + 1525, + 17087 + ]], + [[ + 1364, + 1535, + 17090 + ]], + [[ + 17090, + 1535, + 17087 + ]], + [[ + 1688, + 1364, + 11608 + ]], + [[ + 11608, + 1364, + 17090 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2c46d5d-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "kademuur", + "bronhouder": "W0372", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f097f149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17091, + 17092, + 17093 + ]], + [[ + 17094, + 17095, + 17093 + ]], + [[ + 17096, + 17097, + 17091 + ]], + [[ + 17091, + 17098, + 17096 + ]], + [[ + 17091, + 17099, + 17098 + ]], + [[ + 17091, + 17097, + 17092 + ]], + [[ + 17099, + 17091, + 17100 + ]], + [[ + 17101, + 17091, + 17102 + ]], + [[ + 17102, + 17091, + 17103 + ]], + [[ + 17093, + 17092, + 17094 + ]], + [[ + 17100, + 17091, + 17104 + ]], + [[ + 17091, + 17101, + 17104 + ]], + [[ + 17105, + 17106, + 17091 + ]], + [[ + 17107, + 17108, + 17109 + ]], + [[ + 17108, + 17107, + 17105 + ]], + [[ + 17110, + 17109, + 17108 + ]], + [[ + 17111, + 17112, + 17110 + ]], + [[ + 17113, + 17112, + 17111 + ]], + [[ + 17111, + 17114, + 17113 + ]], + [[ + 17115, + 17114, + 17111 + ]], + [[ + 17116, + 17115, + 17111 + ]], + [[ + 17117, + 17116, + 17118 + ]], + [[ + 17118, + 17119, + 17117 + ]], + [[ + 17120, + 17121, + 17118 + ]], + [[ + 17120, + 17118, + 17122 + ]], + [[ + 17122, + 17118, + 17123 + ]], + [[ + 17123, + 17124, + 17125 + ]], + [[ + 17125, + 17124, + 17126 + ]], + [[ + 17126, + 17124, + 17127 + ]], + [[ + 17127, + 17128, + 17129 + ]], + [[ + 17129, + 17128, + 17130 + ]], + [[ + 17130, + 17128, + 17131 + ]], + [[ + 17131, + 17128, + 17132 + ]], + [[ + 17132, + 17128, + 17133 + ]], + [[ + 17128, + 17134, + 17135 + ]], + [[ + 17136, + 17128, + 17137 + ]], + [[ + 17137, + 17128, + 17138 + ]], + [[ + 17138, + 17128, + 17139 + ]], + [[ + 17139, + 17128, + 17135 + ]], + [[ + 17140, + 17134, + 17141 + ]], + [[ + 17142, + 17135, + 17134 + ]], + [[ + 17134, + 17143, + 17142 + ]], + [[ + 17144, + 17134, + 17140 + ]], + [[ + 17140, + 17145, + 17146 + ]], + [[ + 17140, + 17141, + 17145 + ]], + [[ + 17145, + 17141, + 17147 + ]], + [[ + 17144, + 17143, + 17134 + ]], + [[ + 17133, + 17128, + 17136 + ]], + [[ + 17118, + 17116, + 17111 + ]], + [[ + 17127, + 17124, + 17128 + ]], + [[ + 17121, + 17119, + 17118 + ]], + [[ + 17124, + 17123, + 17118 + ]], + [[ + 17106, + 17103, + 17091 + ]], + [[ + 17111, + 17110, + 17108 + ]], + [[ + 17108, + 17105, + 17091 + ]], + [[ + 17148, + 17149, + 17150 + ]], + [[ + 17093, + 17151, + 17152 + ]], + [[ + 17152, + 17153, + 17154 + ]], + [[ + 17155, + 17156, + 17157 + ]], + [[ + 17157, + 17156, + 17158 + ]], + [[ + 17157, + 17158, + 17159 + ]], + [[ + 17156, + 17150, + 17149 + ]], + [[ + 17156, + 17149, + 17158 + ]], + [[ + 17150, + 17154, + 17148 + ]], + [[ + 17153, + 17148, + 17154 + ]], + [[ + 17160, + 17153, + 17152 + ]], + [[ + 17161, + 17160, + 17152 + ]], + [[ + 17151, + 17161, + 17152 + ]], + [[ + 17162, + 17151, + 17093 + ]], + [[ + 17163, + 17164, + 17093 + ]], + [[ + 17093, + 17164, + 17162 + ]], + [[ + 17165, + 17163, + 17093 + ]], + [[ + 17166, + 17165, + 17093 + ]], + [[ + 17167, + 17166, + 17093 + ]], + [[ + 17168, + 17167, + 17093 + ]], + [[ + 17095, + 17168, + 17093 + ]], + [[ + 1038, + 17169, + 17146 + ]], + [[ + 17146, + 17169, + 17140 + ]], + [[ + 1053, + 1038, + 17145 + ]], + [[ + 17145, + 1038, + 17146 + ]], + [[ + 1054, + 1053, + 17147 + ]], + [[ + 17147, + 1053, + 17145 + ]], + [[ + 17170, + 1054, + 17141 + ]], + [[ + 17141, + 1054, + 17147 + ]], + [[ + 17171, + 17170, + 17134 + ]], + [[ + 17134, + 17170, + 17141 + ]], + [[ + 17172, + 17171, + 17128 + ]], + [[ + 17128, + 17171, + 17134 + ]], + [[ + 17173, + 17172, + 17124 + ]], + [[ + 17124, + 17172, + 17128 + ]], + [[ + 17174, + 17173, + 17118 + ]], + [[ + 17118, + 17173, + 17124 + ]], + [[ + 17175, + 17174, + 17111 + ]], + [[ + 17111, + 17174, + 17118 + ]], + [[ + 17176, + 17175, + 17108 + ]], + [[ + 17108, + 17175, + 17111 + ]], + [[ + 17177, + 17176, + 17091 + ]], + [[ + 17091, + 17176, + 17108 + ]], + [[ + 17178, + 17177, + 17093 + ]], + [[ + 17093, + 17177, + 17091 + ]], + [[ + 17179, + 17178, + 17152 + ]], + [[ + 17152, + 17178, + 17093 + ]], + [[ + 17180, + 17179, + 17154 + ]], + [[ + 17154, + 17179, + 17152 + ]], + [[ + 17181, + 17180, + 17150 + ]], + [[ + 17150, + 17180, + 17154 + ]], + [[ + 17182, + 17181, + 17156 + ]], + [[ + 17156, + 17181, + 17150 + ]], + [[ + 17183, + 17182, + 17155 + ]], + [[ + 17155, + 17182, + 17156 + ]], + [[ + 17184, + 17183, + 17157 + ]], + [[ + 17157, + 17183, + 17155 + ]], + [[ + 17185, + 17184, + 17159 + ]], + [[ + 17159, + 17184, + 17157 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2c5a65f-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0885049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17186, + 17187, + 17188 + ]], + [[ + 17189, + 8656, + 8664 + ]], + [[ + 17190, + 17189, + 8664 + ]], + [[ + 17188, + 17189, + 17190 + ]], + [[ + 17191, + 17192, + 17186 + ]], + [[ + 17193, + 17191, + 17194 + ]], + [[ + 17187, + 17189, + 17188 + ]], + [[ + 17187, + 17195, + 17196 + ]], + [[ + 17187, + 17197, + 17195 + ]], + [[ + 17187, + 17186, + 17197 + ]], + [[ + 17198, + 8484, + 17199 + ]], + [[ + 17192, + 17197, + 17186 + ]], + [[ + 17192, + 17200, + 17201 + ]], + [[ + 17192, + 17193, + 17200 + ]], + [[ + 17192, + 17191, + 17193 + ]], + [[ + 17191, + 8484, + 17198 + ]], + [[ + 17194, + 17191, + 17202 + ]], + [[ + 17202, + 17198, + 17203 + ]], + [[ + 17203, + 17198, + 17204 + ]], + [[ + 17202, + 17191, + 17198 + ]], + [[ + 8817, + 8484, + 17191 + ]], + [[ + 8818, + 8817, + 17186 + ]], + [[ + 17186, + 8817, + 17191 + ]], + [[ + 8660, + 8818, + 17188 + ]], + [[ + 17188, + 8818, + 17186 + ]], + [[ + 8661, + 8660, + 17190 + ]], + [[ + 17190, + 8660, + 17188 + ]], + [[ + 8664, + 8661, + 17190 + ]], + [[ + 8659, + 8656, + 17189 + ]], + [[ + 8657, + 8659, + 17187 + ]], + [[ + 17187, + 8659, + 17189 + ]], + [[ + 8655, + 8657, + 17196 + ]], + [[ + 17196, + 8657, + 17187 + ]], + [[ + 8654, + 8655, + 17195 + ]], + [[ + 17195, + 8655, + 17196 + ]], + [[ + 8652, + 8654, + 17197 + ]], + [[ + 17197, + 8654, + 17195 + ]], + [[ + 8653, + 8652, + 17192 + ]], + [[ + 17192, + 8652, + 17197 + ]], + [[ + 8651, + 8653, + 17201 + ]], + [[ + 17201, + 8653, + 17192 + ]], + [[ + 8649, + 8651, + 17200 + ]], + [[ + 17200, + 8651, + 17201 + ]], + [[ + 8650, + 8649, + 17193 + ]], + [[ + 17193, + 8649, + 17200 + ]], + [[ + 8647, + 8650, + 17194 + ]], + [[ + 17194, + 8650, + 17193 + ]], + [[ + 8648, + 8647, + 17202 + ]], + [[ + 17202, + 8647, + 17194 + ]], + [[ + 8646, + 8648, + 17203 + ]], + [[ + 17203, + 8648, + 17202 + ]], + [[ + 8644, + 8646, + 17204 + ]], + [[ + 17204, + 8646, + 17203 + ]], + [[ + 8645, + 8644, + 17198 + ]], + [[ + 17198, + 8644, + 17204 + ]], + [[ + 8642, + 8645, + 17199 + ]], + [[ + 17199, + 8645, + 17198 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2c8da19-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f08dcc49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17205, + 10652, + 17206 + ]], + [[ + 17205, + 17206, + 17207 + ]], + [[ + 17208, + 10652, + 10645 + ]], + [[ + 17209, + 17086, + 17210 + ]], + [[ + 17211, + 10044, + 17086 + ]], + [[ + 17209, + 17212, + 17211 + ]], + [[ + 17209, + 17213, + 17212 + ]], + [[ + 17214, + 17209, + 17210 + ]], + [[ + 17211, + 17086, + 17209 + ]], + [[ + 17215, + 17216, + 17214 + ]], + [[ + 17217, + 17215, + 17214 + ]], + [[ + 17210, + 17217, + 17214 + ]], + [[ + 17210, + 10641, + 17217 + ]], + [[ + 17206, + 10641, + 17210 + ]], + [[ + 17206, + 17218, + 10641 + ]], + [[ + 17206, + 10652, + 17218 + ]], + [[ + 17218, + 10652, + 17208 + ]], + [[ + 16964, + 10652, + 17205 + ]], + [[ + 16963, + 16964, + 17207 + ]], + [[ + 17207, + 16964, + 17205 + ]], + [[ + 16966, + 16963, + 17206 + ]], + [[ + 17206, + 16963, + 17207 + ]], + [[ + 16965, + 16966, + 17210 + ]], + [[ + 17210, + 16966, + 17206 + ]], + [[ + 16967, + 16965, + 17086 + ]], + [[ + 17086, + 16965, + 17210 + ]], + [[ + 10048, + 10044, + 17211 + ]], + [[ + 10043, + 10048, + 17212 + ]], + [[ + 17212, + 10048, + 17211 + ]], + [[ + 9992, + 10043, + 17213 + ]], + [[ + 17213, + 10043, + 17212 + ]], + [[ + 10046, + 9992, + 17209 + ]], + [[ + 17209, + 9992, + 17213 + ]], + [[ + 10045, + 10046, + 17214 + ]], + [[ + 17214, + 10046, + 17209 + ]], + [[ + 9993, + 10045, + 17216 + ]], + [[ + 17216, + 10045, + 17214 + ]], + [[ + 10042, + 9993, + 17215 + ]], + [[ + 17215, + 9993, + 17216 + ]], + [[ + 10644, + 10042, + 17217 + ]], + [[ + 17217, + 10042, + 17215 + ]], + [[ + 10641, + 10644, + 17217 + ]], + [[ + 10642, + 10641, + 17218 + ]], + [[ + 10643, + 10642, + 17208 + ]], + [[ + 17208, + 10642, + 17218 + ]], + [[ + 10645, + 10643, + 17208 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2c92854-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "kademuur", + "bronhouder": "W0372", + "creationdate": "2015-04-22", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.7fa0197b61b6438794ab14242e673e48", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17219, + 17075, + 17220 + ]], + [[ + 17219, + 17221, + 17222 + ]], + [[ + 17222, + 17223, + 17224 + ]], + [[ + 17225, + 37, + 39 + ]], + [[ + 17225, + 38, + 37 + ]], + [[ + 17225, + 17226, + 38 + ]], + [[ + 17225, + 17227, + 17228 + ]], + [[ + 17225, + 17228, + 17226 + ]], + [[ + 17227, + 17224, + 17228 + ]], + [[ + 17224, + 17223, + 17228 + ]], + [[ + 17222, + 17221, + 17223 + ]], + [[ + 17219, + 17220, + 17221 + ]], + [[ + 17220, + 17075, + 17078 + ]], + [[ + 17229, + 17220, + 17078 + ]], + [[ + 17230, + 17229, + 17078 + ]], + [[ + 17231, + 17230, + 17078 + ]], + [[ + 17231, + 17078, + 17232 + ]], + [[ + 17233, + 17234, + 17235 + ]], + [[ + 17235, + 17234, + 17236 + ]], + [[ + 17237, + 17236, + 17234 + ]], + [[ + 17238, + 17239, + 17234 + ]], + [[ + 17240, + 17238, + 17234 + ]], + [[ + 17241, + 17240, + 17234 + ]], + [[ + 17242, + 17241, + 17243 + ]], + [[ + 17244, + 17242, + 17243 + ]], + [[ + 17245, + 17244, + 17243 + ]], + [[ + 17246, + 17247, + 17248 + ]], + [[ + 17249, + 17248, + 17250 + ]], + [[ + 17249, + 17246, + 17248 + ]], + [[ + 17251, + 17245, + 17243 + ]], + [[ + 17251, + 17246, + 17249 + ]], + [[ + 17251, + 17243, + 17246 + ]], + [[ + 17241, + 17234, + 17243 + ]], + [[ + 17239, + 17237, + 17234 + ]], + [[ + 17232, + 17078, + 17252 + ]], + [[ + 17078, + 17253, + 17252 + ]], + [[ + 17078, + 17234, + 17253 + ]], + [[ + 17253, + 17234, + 17233 + ]], + [[ + 17254, + 17079, + 17219 + ]], + [[ + 17219, + 17079, + 17075 + ]], + [[ + 17255, + 17254, + 17222 + ]], + [[ + 17222, + 17254, + 17219 + ]], + [[ + 17256, + 17255, + 17224 + ]], + [[ + 17224, + 17255, + 17222 + ]], + [[ + 17257, + 17256, + 17227 + ]], + [[ + 17227, + 17256, + 17224 + ]], + [[ + 17258, + 17257, + 17225 + ]], + [[ + 17225, + 17257, + 17227 + ]], + [[ + 20, + 17258, + 39 + ]], + [[ + 39, + 17258, + 17225 + ]], + [[ + 19, + 20, + 37 + ]], + [[ + 37, + 20, + 39 + ]], + [[ + 18, + 19, + 36 + ]], + [[ + 36, + 19, + 38 + ]], + [[ + 38, + 19, + 37 + ]], + [[ + 16273, + 36, + 17226 + ]], + [[ + 17226, + 36, + 38 + ]], + [[ + 16271, + 16273, + 17228 + ]], + [[ + 17228, + 16273, + 17226 + ]], + [[ + 14711, + 16271, + 14644 + ]], + [[ + 14644, + 16271, + 17223 + ]], + [[ + 17223, + 16271, + 17228 + ]], + [[ + 14630, + 14644, + 17221 + ]], + [[ + 17221, + 14644, + 17223 + ]], + [[ + 16292, + 14712, + 17220 + ]], + [[ + 17220, + 14712, + 14630 + ]], + [[ + 17220, + 14630, + 17221 + ]], + [[ + 11914, + 16292, + 17229 + ]], + [[ + 17229, + 16292, + 17220 + ]], + [[ + 11927, + 11914, + 17230 + ]], + [[ + 17230, + 11914, + 17229 + ]], + [[ + 13905, + 11957, + 13896 + ]], + [[ + 13896, + 11957, + 17231 + ]], + [[ + 17231, + 11957, + 11927 + ]], + [[ + 17231, + 11927, + 17230 + ]], + [[ + 13829, + 13896, + 17232 + ]], + [[ + 17232, + 13896, + 17231 + ]], + [[ + 13826, + 13829, + 13797 + ]], + [[ + 13797, + 13829, + 17252 + ]], + [[ + 17252, + 13829, + 17232 + ]], + [[ + 13764, + 13797, + 17253 + ]], + [[ + 17253, + 13797, + 17252 + ]], + [[ + 12022, + 13764, + 17233 + ]], + [[ + 17233, + 13764, + 17253 + ]], + [[ + 12023, + 12022, + 17235 + ]], + [[ + 17235, + 12022, + 17233 + ]], + [[ + 14925, + 12023, + 17236 + ]], + [[ + 17236, + 12023, + 17235 + ]], + [[ + 14974, + 14925, + 17237 + ]], + [[ + 17237, + 14925, + 17236 + ]], + [[ + 11829, + 14974, + 17239 + ]], + [[ + 17239, + 14974, + 17237 + ]], + [[ + 11830, + 11829, + 17238 + ]], + [[ + 17238, + 11829, + 17239 + ]], + [[ + 14561, + 11830, + 17240 + ]], + [[ + 17240, + 11830, + 17238 + ]], + [[ + 14554, + 14561, + 17241 + ]], + [[ + 17241, + 14561, + 17240 + ]], + [[ + 12528, + 14554, + 17242 + ]], + [[ + 17242, + 14554, + 17241 + ]], + [[ + 12521, + 12528, + 17244 + ]], + [[ + 17244, + 12528, + 17242 + ]], + [[ + 16288, + 12521, + 17245 + ]], + [[ + 17245, + 12521, + 17244 + ]], + [[ + 17259, + 16288, + 17251 + ]], + [[ + 17251, + 16288, + 17245 + ]], + [[ + 17260, + 17259, + 17249 + ]], + [[ + 17249, + 17259, + 17251 + ]], + [[ + 17261, + 17260, + 17250 + ]], + [[ + 17250, + 17260, + 17249 + ]], + [[ + 17262, + 17263, + 17246 + ]], + [[ + 17246, + 17263, + 17247 + ]], + [[ + 17264, + 17262, + 17243 + ]], + [[ + 17243, + 17262, + 17246 + ]], + [[ + 17265, + 17264, + 17234 + ]], + [[ + 17234, + 17264, + 17243 + ]], + [[ + 17082, + 17265, + 17078 + ]], + [[ + 17078, + 17265, + 17234 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2ca6162-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17266, + 17267, + 17268 + ]], + [[ + 17266, + 17269, + 17267 + ]], + [[ + 17270, + 17271, + 17272 + ]], + [[ + 17270, + 17273, + 17271 + ]], + [[ + 2766, + 17269, + 17266 + ]], + [[ + 2781, + 17274, + 2778 + ]], + [[ + 17274, + 17275, + 17276 + ]], + [[ + 17274, + 17277, + 17275 + ]], + [[ + 2778, + 17273, + 2775 + ]], + [[ + 17277, + 17274, + 2781 + ]], + [[ + 8319, + 17277, + 2781 + ]], + [[ + 8319, + 2781, + 2799 + ]], + [[ + 2781, + 2778, + 2779 + ]], + [[ + 2779, + 2778, + 2782 + ]], + [[ + 17274, + 17273, + 2778 + ]], + [[ + 17273, + 17270, + 2771 + ]], + [[ + 2775, + 17273, + 2771 + ]], + [[ + 2775, + 2777, + 2773 + ]], + [[ + 2775, + 2771, + 2777 + ]], + [[ + 17270, + 17269, + 2771 + ]], + [[ + 2769, + 2766, + 17266 + ]], + [[ + 2766, + 2771, + 17269 + ]], + [[ + 2766, + 2769, + 2764 + ]], + [[ + 2764, + 2769, + 2768 + ]], + [[ + 17266, + 8318, + 2769 + ]], + [[ + 2798, + 2769, + 8318 + ]], + [[ + 16078, + 8318, + 17266 + ]], + [[ + 16079, + 16078, + 17268 + ]], + [[ + 17268, + 16078, + 17266 + ]], + [[ + 16077, + 16079, + 17267 + ]], + [[ + 17267, + 16079, + 17268 + ]], + [[ + 16075, + 16077, + 17269 + ]], + [[ + 17269, + 16077, + 17267 + ]], + [[ + 16076, + 16075, + 17270 + ]], + [[ + 17270, + 16075, + 17269 + ]], + [[ + 16074, + 16076, + 17272 + ]], + [[ + 17272, + 16076, + 17270 + ]], + [[ + 16073, + 16074, + 17271 + ]], + [[ + 17271, + 16074, + 17272 + ]], + [[ + 16072, + 16073, + 17273 + ]], + [[ + 17273, + 16073, + 17271 + ]], + [[ + 16070, + 16072, + 17274 + ]], + [[ + 17274, + 16072, + 17273 + ]], + [[ + 16071, + 16070, + 17276 + ]], + [[ + 17276, + 16070, + 17274 + ]], + [[ + 16069, + 16071, + 17275 + ]], + [[ + 17275, + 16071, + 17276 + ]], + [[ + 16068, + 16069, + 17277 + ]], + [[ + 17277, + 16069, + 17275 + ]], + [[ + 8319, + 16068, + 17277 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2cbe7b0-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1112, + 8526, + 1229 + ]], + [[ + 1112, + 1229, + 1110 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2cc0ecf-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 6951, + 6952, + 17278 + ]], + [[ + 17279, + 6951, + 17278 + ]], + [[ + 17280, + 17279, + 17278 + ]], + [[ + 17280, + 17281, + 17279 + ]], + [[ + 6960, + 17282, + 6959 + ]], + [[ + 6954, + 17281, + 6953 + ]], + [[ + 17283, + 17284, + 17285 + ]], + [[ + 17281, + 17280, + 6953 + ]], + [[ + 6960, + 17284, + 17282 + ]], + [[ + 17283, + 17282, + 17284 + ]], + [[ + 17283, + 17279, + 17281 + ]], + [[ + 17282, + 17283, + 17281 + ]], + [[ + 16647, + 6953, + 17280 + ]], + [[ + 16646, + 16647, + 17278 + ]], + [[ + 17278, + 16647, + 17280 + ]], + [[ + 6952, + 16646, + 17278 + ]], + [[ + 16648, + 6951, + 17279 + ]], + [[ + 16312, + 16648, + 17283 + ]], + [[ + 17283, + 16648, + 17279 + ]], + [[ + 16310, + 16312, + 17285 + ]], + [[ + 17285, + 16312, + 17283 + ]], + [[ + 16311, + 16310, + 17284 + ]], + [[ + 17284, + 16310, + 17285 + ]], + [[ + 6960, + 16311, + 17284 + ]], + [[ + 16854, + 6959, + 17282 + ]], + [[ + 16855, + 16854, + 17281 + ]], + [[ + 17281, + 16854, + 17282 + ]], + [[ + 6954, + 16855, + 17281 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2cd20b1-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0885349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17286, + 17287, + 17288 + ]], + [[ + 17287, + 17289, + 17288 + ]], + [[ + 10623, + 9803, + 17286 + ]], + [[ + 17286, + 9803, + 17287 + ]], + [[ + 9808, + 10623, + 17288 + ]], + [[ + 17288, + 10623, + 17286 + ]], + [[ + 9802, + 9808, + 17289 + ]], + [[ + 17289, + 9808, + 17288 + ]], + [[ + 9803, + 9802, + 17287 + ]], + [[ + 17287, + 9802, + 17289 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2cd9515-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2250, + 8714, + 343 + ]], + [[ + 2250, + 343, + 344 + ]], + [[ + 8714, + 367, + 343 + ]], + [[ + 343, + 367, + 368 + ]], + [[ + 8714, + 8717, + 367 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2cef542-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0948c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8219, + 7972, + 1247 + ]], + [[ + 7972, + 1295, + 1247 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2d1b3a6-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17290, + 17291, + 17292 + ]], + [[ + 17293, + 17294, + 17295 + ]], + [[ + 8484, + 17293, + 17199 + ]], + [[ + 17199, + 17293, + 17295 + ]], + [[ + 17295, + 17294, + 17296 + ]], + [[ + 17297, + 17298, + 17299 + ]], + [[ + 8484, + 17300, + 17293 + ]], + [[ + 8484, + 17297, + 17300 + ]], + [[ + 17300, + 17297, + 17299 + ]], + [[ + 8482, + 17297, + 8484 + ]], + [[ + 8482, + 17291, + 17290 + ]], + [[ + 17301, + 17297, + 8482 + ]], + [[ + 17302, + 17301, + 17303 + ]], + [[ + 17301, + 17290, + 17303 + ]], + [[ + 17301, + 8482, + 17290 + ]], + [[ + 17292, + 17291, + 17304 + ]], + [[ + 17305, + 17292, + 17304 + ]], + [[ + 17291, + 17306, + 17304 + ]], + [[ + 8482, + 8826, + 17291 + ]], + [[ + 8643, + 8642, + 17295 + ]], + [[ + 17295, + 8642, + 17199 + ]], + [[ + 8814, + 8643, + 17296 + ]], + [[ + 17296, + 8643, + 17295 + ]], + [[ + 8797, + 8814, + 17294 + ]], + [[ + 17294, + 8814, + 17296 + ]], + [[ + 8798, + 8797, + 17293 + ]], + [[ + 17293, + 8797, + 17294 + ]], + [[ + 8813, + 8798, + 17300 + ]], + [[ + 17300, + 8798, + 17293 + ]], + [[ + 8796, + 8813, + 17299 + ]], + [[ + 17299, + 8813, + 17300 + ]], + [[ + 8801, + 8796, + 17298 + ]], + [[ + 17298, + 8796, + 17299 + ]], + [[ + 8811, + 8801, + 17297 + ]], + [[ + 17297, + 8801, + 17298 + ]], + [[ + 8810, + 8811, + 17301 + ]], + [[ + 17301, + 8811, + 17297 + ]], + [[ + 8800, + 8810, + 17302 + ]], + [[ + 17302, + 8810, + 17301 + ]], + [[ + 8807, + 8800, + 17303 + ]], + [[ + 17303, + 8800, + 17302 + ]], + [[ + 8809, + 8807, + 17290 + ]], + [[ + 17290, + 8807, + 17303 + ]], + [[ + 8808, + 8809, + 17292 + ]], + [[ + 17292, + 8809, + 17290 + ]], + [[ + 8802, + 8808, + 17305 + ]], + [[ + 17305, + 8808, + 17292 + ]], + [[ + 8803, + 8802, + 17304 + ]], + [[ + 17304, + 8802, + 17305 + ]], + [[ + 16620, + 8803, + 17306 + ]], + [[ + 17306, + 8803, + 17304 + ]], + [[ + 8826, + 16620, + 17291 + ]], + [[ + 17291, + 16620, + 17306 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2d44bdf-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0885249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17307, + 17308, + 17309 + ]], + [[ + 17308, + 17310, + 17309 + ]], + [[ + 17308, + 17311, + 17310 + ]], + [[ + 17311, + 7712, + 7713 + ]], + [[ + 17311, + 9809, + 7712 + ]], + [[ + 17311, + 17308, + 9809 + ]], + [[ + 10620, + 9807, + 17307 + ]], + [[ + 17307, + 9807, + 17308 + ]], + [[ + 9152, + 9155, + 17310 + ]], + [[ + 17310, + 9155, + 17309 + ]], + [[ + 9153, + 9152, + 17311 + ]], + [[ + 17311, + 9152, + 17310 + ]], + [[ + 7713, + 9153, + 17311 + ]], + [[ + 9807, + 9809, + 17308 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2d5fa48-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "kademuur", + "bronhouder": "W0372", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f09a4049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17312, + 17313, + 17314 + ]], + [[ + 17313, + 17315, + 17316 + ]], + [[ + 17315, + 17317, + 17318 + ]], + [[ + 17317, + 17319, + 17320 + ]], + [[ + 17319, + 17321, + 17322 + ]], + [[ + 17321, + 17323, + 17324 + ]], + [[ + 17323, + 17325, + 17326 + ]], + [[ + 17327, + 17328, + 17329 + ]], + [[ + 17318, + 17317, + 17320 + ]], + [[ + 17320, + 17319, + 17322 + ]], + [[ + 17330, + 17331, + 17332 + ]], + [[ + 17324, + 17322, + 17321 + ]], + [[ + 17333, + 17332, + 17327 + ]], + [[ + 17327, + 17334, + 17333 + ]], + [[ + 17327, + 17329, + 17334 + ]], + [[ + 17330, + 17335, + 17331 + ]], + [[ + 17327, + 17336, + 17328 + ]], + [[ + 17316, + 17315, + 17318 + ]], + [[ + 17330, + 17332, + 17333 + ]], + [[ + 17337, + 17336, + 17327 + ]], + [[ + 17326, + 17325, + 17335 + ]], + [[ + 17326, + 17324, + 17323 + ]], + [[ + 17325, + 17331, + 17335 + ]], + [[ + 17314, + 17313, + 17316 + ]], + [[ + 17338, + 17312, + 17314 + ]], + [[ + 17339, + 17340, + 17338 + ]], + [[ + 17341, + 17342, + 17339 + ]], + [[ + 17343, + 17344, + 17341 + ]], + [[ + 17345, + 17346, + 17343 + ]], + [[ + 17347, + 17348, + 17345 + ]], + [[ + 17349, + 17350, + 17347 + ]], + [[ + 17338, + 17340, + 17312 + ]], + [[ + 17340, + 17339, + 17342 + ]], + [[ + 17342, + 17341, + 17344 + ]], + [[ + 17344, + 17343, + 17346 + ]], + [[ + 17346, + 17345, + 17348 + ]], + [[ + 17348, + 17347, + 17350 + ]], + [[ + 17350, + 17349, + 17351 + ]], + [[ + 17350, + 17351, + 17352 + ]], + [[ + 17349, + 17353, + 17351 + ]], + [[ + 17349, + 17354, + 17353 + ]], + [[ + 16254, + 16209, + 17349 + ]], + [[ + 17349, + 16209, + 17354 + ]], + [[ + 16242, + 16254, + 17347 + ]], + [[ + 17347, + 16254, + 17349 + ]], + [[ + 16253, + 16242, + 17345 + ]], + [[ + 17345, + 16242, + 17347 + ]], + [[ + 16251, + 16253, + 17343 + ]], + [[ + 17343, + 16253, + 17345 + ]], + [[ + 16252, + 16251, + 17341 + ]], + [[ + 17341, + 16251, + 17343 + ]], + [[ + 16249, + 16252, + 17339 + ]], + [[ + 17339, + 16252, + 17341 + ]], + [[ + 16250, + 16249, + 17338 + ]], + [[ + 17338, + 16249, + 17339 + ]], + [[ + 16248, + 16250, + 17314 + ]], + [[ + 17314, + 16250, + 17338 + ]], + [[ + 16245, + 16248, + 17316 + ]], + [[ + 17316, + 16248, + 17314 + ]], + [[ + 16247, + 16245, + 17318 + ]], + [[ + 17318, + 16245, + 17316 + ]], + [[ + 16246, + 16247, + 17320 + ]], + [[ + 17320, + 16247, + 17318 + ]], + [[ + 16243, + 16246, + 17322 + ]], + [[ + 17322, + 16246, + 17320 + ]], + [[ + 16244, + 16243, + 17324 + ]], + [[ + 17324, + 16243, + 17322 + ]], + [[ + 16181, + 16244, + 17326 + ]], + [[ + 17326, + 16244, + 17324 + ]], + [[ + 16182, + 16181, + 17335 + ]], + [[ + 17335, + 16181, + 17326 + ]], + [[ + 16183, + 16182, + 17330 + ]], + [[ + 17330, + 16182, + 17335 + ]], + [[ + 16241, + 16183, + 17333 + ]], + [[ + 17333, + 16183, + 17330 + ]], + [[ + 16240, + 16241, + 17334 + ]], + [[ + 17334, + 16241, + 17333 + ]], + [[ + 16207, + 16240, + 17329 + ]], + [[ + 17329, + 16240, + 17334 + ]], + [[ + 16238, + 16207, + 17328 + ]], + [[ + 17328, + 16207, + 17329 + ]], + [[ + 17355, + 17356, + 17327 + ]], + [[ + 17327, + 17356, + 17337 + ]], + [[ + 17357, + 17355, + 17332 + ]], + [[ + 17332, + 17355, + 17327 + ]], + [[ + 17358, + 17357, + 17331 + ]], + [[ + 17331, + 17357, + 17332 + ]], + [[ + 17359, + 17358, + 17325 + ]], + [[ + 17325, + 17358, + 17331 + ]], + [[ + 17360, + 17359, + 17323 + ]], + [[ + 17323, + 17359, + 17325 + ]], + [[ + 17361, + 17360, + 17321 + ]], + [[ + 17321, + 17360, + 17323 + ]], + [[ + 17362, + 17361, + 17319 + ]], + [[ + 17319, + 17361, + 17321 + ]], + [[ + 17363, + 17362, + 17317 + ]], + [[ + 17317, + 17362, + 17319 + ]], + [[ + 17364, + 17363, + 17315 + ]], + [[ + 17315, + 17363, + 17317 + ]], + [[ + 17365, + 17364, + 17313 + ]], + [[ + 17313, + 17364, + 17315 + ]], + [[ + 17366, + 17365, + 17312 + ]], + [[ + 17312, + 17365, + 17313 + ]], + [[ + 17367, + 17366, + 17340 + ]], + [[ + 17340, + 17366, + 17312 + ]], + [[ + 17368, + 17367, + 17342 + ]], + [[ + 17342, + 17367, + 17340 + ]], + [[ + 17369, + 17368, + 17344 + ]], + [[ + 17344, + 17368, + 17342 + ]], + [[ + 17370, + 17369, + 17346 + ]], + [[ + 17346, + 17369, + 17344 + ]], + [[ + 17371, + 17370, + 17348 + ]], + [[ + 17348, + 17370, + 17346 + ]], + [[ + 17372, + 17371, + 17350 + ]], + [[ + 17350, + 17371, + 17348 + ]], + [[ + 16267, + 17372, + 16260 + ]], + [[ + 16260, + 17372, + 17352 + ]], + [[ + 17352, + 17372, + 17350 + ]], + [[ + 16257, + 16260, + 17351 + ]], + [[ + 17351, + 16260, + 17352 + ]], + [[ + 16258, + 16257, + 17353 + ]], + [[ + 17353, + 16257, + 17351 + ]], + [[ + 16209, + 16258, + 17354 + ]], + [[ + 17354, + 16258, + 17353 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2d7ced0-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17373, + 7452, + 7453 + ]], + [[ + 17373, + 7453, + 17374 + ]], + [[ + 8978, + 7452, + 17373 + ]], + [[ + 8846, + 8978, + 17374 + ]], + [[ + 17374, + 8978, + 17373 + ]], + [[ + 7453, + 8846, + 17374 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2d8b896-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17375, + 17376, + 8403 + ]], + [[ + 17376, + 1095, + 8403 + ]], + [[ + 8925, + 1100, + 17375 + ]], + [[ + 17375, + 1100, + 17376 + ]], + [[ + 8403, + 8925, + 17375 + ]], + [[ + 1100, + 1095, + 17376 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2dc146d-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "kademuur", + "bronhouder": "W0372", + "creationdate": "2015-04-22", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.10994c13ed9746c2b01feaa5f372aece", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17377, + 17378, + 17379 + ]], + [[ + 17380, + 17381, + 17382 + ]], + [[ + 17383, + 17380, + 17384 + ]], + [[ + 17384, + 17380, + 17382 + ]], + [[ + 17385, + 17380, + 17383 + ]], + [[ + 17385, + 17386, + 17380 + ]], + [[ + 17387, + 17386, + 17385 + ]], + [[ + 17379, + 17386, + 17377 + ]], + [[ + 17377, + 17386, + 17388 + ]], + [[ + 17388, + 17386, + 17387 + ]], + [[ + 17389, + 17390, + 17391 + ]], + [[ + 17392, + 17393, + 17394 + ]], + [[ + 17395, + 17396, + 17397 + ]], + [[ + 17398, + 17399, + 17400 + ]], + [[ + 17401, + 17402, + 17403 + ]], + [[ + 17403, + 17404, + 17405 + ]], + [[ + 17406, + 17407, + 17408 + ]], + [[ + 17407, + 17409, + 17410 + ]], + [[ + 17411, + 17412, + 17413 + ]], + [[ + 17413, + 17414, + 17415 + ]], + [[ + 17415, + 17416, + 17400 + ]], + [[ + 17417, + 17418, + 17419 + ]], + [[ + 17420, + 17421, + 17422 + ]], + [[ + 17423, + 17424, + 17422 + ]], + [[ + 17425, + 17426, + 17427 + ]], + [[ + 17428, + 17429, + 17430 + ]], + [[ + 17431, + 17432, + 17433 + ]], + [[ + 17432, + 17430, + 17433 + ]], + [[ + 17432, + 17427, + 17434 + ]], + [[ + 17430, + 17432, + 17428 + ]], + [[ + 17435, + 17430, + 17429 + ]], + [[ + 17435, + 17429, + 17436 + ]], + [[ + 17437, + 17428, + 17432 + ]], + [[ + 17438, + 17437, + 17432 + ]], + [[ + 17439, + 17438, + 17432 + ]], + [[ + 17434, + 17439, + 17432 + ]], + [[ + 17440, + 17434, + 17427 + ]], + [[ + 17426, + 17440, + 17427 + ]], + [[ + 17422, + 17441, + 17427 + ]], + [[ + 17442, + 17425, + 17427 + ]], + [[ + 17443, + 17442, + 17427 + ]], + [[ + 17444, + 17443, + 17427 + ]], + [[ + 17445, + 17444, + 17427 + ]], + [[ + 17446, + 17445, + 17427 + ]], + [[ + 17447, + 17446, + 17427 + ]], + [[ + 17448, + 17447, + 17427 + ]], + [[ + 17441, + 17448, + 17427 + ]], + [[ + 17449, + 17441, + 17422 + ]], + [[ + 17450, + 17449, + 17422 + ]], + [[ + 17424, + 17450, + 17422 + ]], + [[ + 17451, + 17420, + 17422 + ]], + [[ + 17452, + 17423, + 17422 + ]], + [[ + 17421, + 17452, + 17422 + ]], + [[ + 17453, + 17454, + 17455 + ]], + [[ + 17456, + 17420, + 17451 + ]], + [[ + 17455, + 17456, + 17451 + ]], + [[ + 17453, + 17455, + 17451 + ]], + [[ + 17457, + 17454, + 17453 + ]], + [[ + 17419, + 17453, + 17451 + ]], + [[ + 17419, + 17458, + 17453 + ]], + [[ + 17410, + 17417, + 17419 + ]], + [[ + 17419, + 17459, + 17458 + ]], + [[ + 17419, + 17418, + 17459 + ]], + [[ + 17410, + 17408, + 17407 + ]], + [[ + 17460, + 17417, + 17410 + ]], + [[ + 17409, + 17460, + 17410 + ]], + [[ + 17400, + 17461, + 17408 + ]], + [[ + 17462, + 17463, + 17411 + ]], + [[ + 17405, + 17464, + 17462 + ]], + [[ + 17406, + 17408, + 17461 + ]], + [[ + 17461, + 17400, + 17399 + ]], + [[ + 17465, + 17466, + 17401 + ]], + [[ + 17400, + 17467, + 17398 + ]], + [[ + 17400, + 17468, + 17467 + ]], + [[ + 17400, + 17469, + 17468 + ]], + [[ + 17400, + 17416, + 17469 + ]], + [[ + 17415, + 17470, + 17416 + ]], + [[ + 17415, + 17471, + 17470 + ]], + [[ + 17472, + 17473, + 17474 + ]], + [[ + 17415, + 17414, + 17471 + ]], + [[ + 17465, + 17473, + 17475 + ]], + [[ + 17414, + 17413, + 17412 + ]], + [[ + 17463, + 17476, + 17411 + ]], + [[ + 17412, + 17411, + 17476 + ]], + [[ + 17464, + 17463, + 17462 + ]], + [[ + 17477, + 17478, + 17474 + ]], + [[ + 17479, + 17480, + 17481 + ]], + [[ + 17405, + 17404, + 17464 + ]], + [[ + 17477, + 17480, + 17482 + ]], + [[ + 17483, + 17484, + 17403 + ]], + [[ + 17404, + 17403, + 17484 + ]], + [[ + 17402, + 17483, + 17403 + ]], + [[ + 17485, + 17402, + 17401 + ]], + [[ + 17486, + 17485, + 17401 + ]], + [[ + 17487, + 17486, + 17401 + ]], + [[ + 17466, + 17487, + 17401 + ]], + [[ + 17488, + 17466, + 17465 + ]], + [[ + 17475, + 17488, + 17465 + ]], + [[ + 17489, + 17475, + 17473 + ]], + [[ + 17490, + 17489, + 17473 + ]], + [[ + 17472, + 17490, + 17473 + ]], + [[ + 17491, + 17472, + 17474 + ]], + [[ + 17478, + 17491, + 17474 + ]], + [[ + 17492, + 17478, + 17477 + ]], + [[ + 17493, + 17492, + 17477 + ]], + [[ + 17494, + 17493, + 17477 + ]], + [[ + 17482, + 17494, + 17477 + ]], + [[ + 17495, + 17482, + 17480 + ]], + [[ + 17496, + 17495, + 17480 + ]], + [[ + 17497, + 17496, + 17480 + ]], + [[ + 17479, + 17497, + 17480 + ]], + [[ + 17498, + 17395, + 17394 + ]], + [[ + 17499, + 17500, + 17481 + ]], + [[ + 17499, + 17397, + 17396 + ]], + [[ + 17479, + 17481, + 17501 + ]], + [[ + 17501, + 17481, + 17500 + ]], + [[ + 17500, + 17499, + 17502 + ]], + [[ + 17502, + 17499, + 17503 + ]], + [[ + 17503, + 17499, + 17504 + ]], + [[ + 17505, + 17396, + 17395 + ]], + [[ + 17504, + 17499, + 17396 + ]], + [[ + 17506, + 17505, + 17395 + ]], + [[ + 17507, + 17506, + 17395 + ]], + [[ + 17508, + 17507, + 17395 + ]], + [[ + 17509, + 17508, + 17395 + ]], + [[ + 17498, + 17509, + 17395 + ]], + [[ + 17510, + 17498, + 17394 + ]], + [[ + 17393, + 17510, + 17394 + ]], + [[ + 17391, + 17511, + 17394 + ]], + [[ + 17512, + 17392, + 17394 + ]], + [[ + 17513, + 17512, + 17394 + ]], + [[ + 17514, + 17513, + 17394 + ]], + [[ + 17515, + 17514, + 17394 + ]], + [[ + 17516, + 17515, + 17394 + ]], + [[ + 17517, + 17516, + 17394 + ]], + [[ + 17511, + 17517, + 17394 + ]], + [[ + 17518, + 17511, + 17391 + ]], + [[ + 17519, + 17518, + 17391 + ]], + [[ + 17390, + 17519, + 17391 + ]], + [[ + 17520, + 17521, + 17391 + ]], + [[ + 17522, + 17389, + 17391 + ]], + [[ + 17521, + 17522, + 17391 + ]], + [[ + 17523, + 17524, + 17520 + ]], + [[ + 17520, + 17525, + 17521 + ]], + [[ + 17520, + 17524, + 17525 + ]], + [[ + 17523, + 17379, + 17526 + ]], + [[ + 17524, + 17523, + 17526 + ]], + [[ + 17379, + 17527, + 17526 + ]], + [[ + 17379, + 17378, + 17527 + ]], + [[ + 11906, + 14447, + 17377 + ]], + [[ + 17377, + 14447, + 17378 + ]], + [[ + 11908, + 11906, + 17388 + ]], + [[ + 17388, + 11906, + 17377 + ]], + [[ + 16173, + 11912, + 17387 + ]], + [[ + 17387, + 11912, + 11908 + ]], + [[ + 17387, + 11908, + 17388 + ]], + [[ + 16151, + 16173, + 17385 + ]], + [[ + 17385, + 16173, + 17387 + ]], + [[ + 16159, + 16151, + 17383 + ]], + [[ + 17383, + 16151, + 17385 + ]], + [[ + 22, + 16159, + 17384 + ]], + [[ + 17384, + 16159, + 17383 + ]], + [[ + 17528, + 1, + 17382 + ]], + [[ + 17382, + 1, + 22 + ]], + [[ + 17382, + 22, + 17384 + ]], + [[ + 2, + 17528, + 17381 + ]], + [[ + 17381, + 17528, + 17382 + ]], + [[ + 17529, + 2, + 17380 + ]], + [[ + 17380, + 2, + 17381 + ]], + [[ + 17530, + 17529, + 17386 + ]], + [[ + 17386, + 17529, + 17380 + ]], + [[ + 17531, + 17530, + 17379 + ]], + [[ + 17379, + 17530, + 17386 + ]], + [[ + 17532, + 17533, + 17520 + ]], + [[ + 17520, + 17533, + 17523 + ]], + [[ + 17534, + 17532, + 17391 + ]], + [[ + 17391, + 17532, + 17520 + ]], + [[ + 17535, + 17534, + 17394 + ]], + [[ + 17394, + 17534, + 17391 + ]], + [[ + 17536, + 17535, + 17395 + ]], + [[ + 17395, + 17535, + 17394 + ]], + [[ + 17537, + 17536, + 17397 + ]], + [[ + 17397, + 17536, + 17395 + ]], + [[ + 17538, + 17537, + 17499 + ]], + [[ + 17499, + 17537, + 17397 + ]], + [[ + 17539, + 17538, + 17481 + ]], + [[ + 17481, + 17538, + 17499 + ]], + [[ + 17540, + 17539, + 17480 + ]], + [[ + 17480, + 17539, + 17481 + ]], + [[ + 17541, + 17540, + 17477 + ]], + [[ + 17477, + 17540, + 17480 + ]], + [[ + 17542, + 17541, + 17474 + ]], + [[ + 17474, + 17541, + 17477 + ]], + [[ + 17543, + 17542, + 17473 + ]], + [[ + 17473, + 17542, + 17474 + ]], + [[ + 17544, + 17543, + 17465 + ]], + [[ + 17465, + 17543, + 17473 + ]], + [[ + 17545, + 17544, + 17401 + ]], + [[ + 17401, + 17544, + 17465 + ]], + [[ + 17546, + 17545, + 17403 + ]], + [[ + 17403, + 17545, + 17401 + ]], + [[ + 17547, + 17546, + 17405 + ]], + [[ + 17405, + 17546, + 17403 + ]], + [[ + 17548, + 17547, + 17462 + ]], + [[ + 17462, + 17547, + 17405 + ]], + [[ + 17549, + 17548, + 17411 + ]], + [[ + 17411, + 17548, + 17462 + ]], + [[ + 17550, + 17549, + 17413 + ]], + [[ + 17413, + 17549, + 17411 + ]], + [[ + 17551, + 17550, + 17415 + ]], + [[ + 17415, + 17550, + 17413 + ]], + [[ + 17552, + 17551, + 17400 + ]], + [[ + 17400, + 17551, + 17415 + ]], + [[ + 17553, + 17552, + 17408 + ]], + [[ + 17408, + 17552, + 17400 + ]], + [[ + 17554, + 17553, + 17410 + ]], + [[ + 17410, + 17553, + 17408 + ]], + [[ + 17555, + 17554, + 17419 + ]], + [[ + 17419, + 17554, + 17410 + ]], + [[ + 17556, + 17555, + 17451 + ]], + [[ + 17451, + 17555, + 17419 + ]], + [[ + 17557, + 17556, + 17422 + ]], + [[ + 17422, + 17556, + 17451 + ]], + [[ + 17558, + 17557, + 17427 + ]], + [[ + 17427, + 17557, + 17422 + ]], + [[ + 17559, + 17558, + 17432 + ]], + [[ + 17432, + 17558, + 17427 + ]], + [[ + 17560, + 17559, + 17431 + ]], + [[ + 17431, + 17559, + 17432 + ]], + [[ + 1046, + 17560, + 17433 + ]], + [[ + 17433, + 17560, + 17431 + ]], + [[ + 1042, + 1046, + 17430 + ]], + [[ + 17430, + 1046, + 17433 + ]], + [[ + 1043, + 1042, + 17435 + ]], + [[ + 17435, + 1042, + 17430 + ]], + [[ + 1044, + 1043, + 17436 + ]], + [[ + 17436, + 1043, + 17435 + ]], + [[ + 1048, + 1044, + 17429 + ]], + [[ + 17429, + 1044, + 17436 + ]], + [[ + 13077, + 1048, + 17428 + ]], + [[ + 17428, + 1048, + 17429 + ]], + [[ + 13037, + 13077, + 17437 + ]], + [[ + 17437, + 13077, + 17428 + ]], + [[ + 13136, + 13037, + 17438 + ]], + [[ + 17438, + 13037, + 17437 + ]], + [[ + 13139, + 13136, + 17439 + ]], + [[ + 17439, + 13136, + 17438 + ]], + [[ + 11772, + 13139, + 17434 + ]], + [[ + 17434, + 13139, + 17439 + ]], + [[ + 11793, + 11772, + 17440 + ]], + [[ + 17440, + 11772, + 17434 + ]], + [[ + 15442, + 11793, + 17426 + ]], + [[ + 17426, + 11793, + 17440 + ]], + [[ + 15440, + 15442, + 17425 + ]], + [[ + 17425, + 15442, + 17426 + ]], + [[ + 15535, + 15440, + 17442 + ]], + [[ + 17442, + 15440, + 17425 + ]], + [[ + 15548, + 15535, + 17443 + ]], + [[ + 17443, + 15535, + 17442 + ]], + [[ + 15549, + 15548, + 17444 + ]], + [[ + 17444, + 15548, + 17443 + ]], + [[ + 15805, + 15549, + 17445 + ]], + [[ + 17445, + 15549, + 17444 + ]], + [[ + 15824, + 15805, + 17446 + ]], + [[ + 17446, + 15805, + 17445 + ]], + [[ + 12454, + 15824, + 17447 + ]], + [[ + 17447, + 15824, + 17446 + ]], + [[ + 12461, + 12454, + 17448 + ]], + [[ + 17448, + 12454, + 17447 + ]], + [[ + 15795, + 12461, + 17441 + ]], + [[ + 17441, + 12461, + 17448 + ]], + [[ + 15785, + 15795, + 17449 + ]], + [[ + 17449, + 15795, + 17441 + ]], + [[ + 14305, + 15785, + 17450 + ]], + [[ + 17450, + 15785, + 17449 + ]], + [[ + 14300, + 14305, + 17424 + ]], + [[ + 17424, + 14305, + 17450 + ]], + [[ + 14439, + 14300, + 14421 + ]], + [[ + 14421, + 14300, + 17423 + ]], + [[ + 17423, + 14300, + 17424 + ]], + [[ + 14433, + 14421, + 17452 + ]], + [[ + 17452, + 14421, + 17423 + ]], + [[ + 16650, + 14433, + 17421 + ]], + [[ + 17421, + 14433, + 17452 + ]], + [[ + 15903, + 16650, + 17420 + ]], + [[ + 17420, + 16650, + 17421 + ]], + [[ + 15904, + 15903, + 17456 + ]], + [[ + 17456, + 15903, + 17420 + ]], + [[ + 15905, + 15904, + 17455 + ]], + [[ + 17455, + 15904, + 17456 + ]], + [[ + 11988, + 15905, + 11983 + ]], + [[ + 11983, + 15905, + 17454 + ]], + [[ + 17454, + 15905, + 17455 + ]], + [[ + 11967, + 11983, + 17457 + ]], + [[ + 17457, + 11983, + 17454 + ]], + [[ + 11963, + 11967, + 17453 + ]], + [[ + 17453, + 11967, + 17457 + ]], + [[ + 11973, + 11963, + 17458 + ]], + [[ + 17458, + 11963, + 17453 + ]], + [[ + 15852, + 11986, + 17459 + ]], + [[ + 17459, + 11986, + 11973 + ]], + [[ + 17459, + 11973, + 17458 + ]], + [[ + 15235, + 15852, + 15219 + ]], + [[ + 15219, + 15852, + 17418 + ]], + [[ + 17418, + 15852, + 17459 + ]], + [[ + 15228, + 15219, + 17417 + ]], + [[ + 17417, + 15219, + 17418 + ]], + [[ + 16995, + 15234, + 17460 + ]], + [[ + 17460, + 15234, + 15228 + ]], + [[ + 17460, + 15228, + 17417 + ]], + [[ + 14274, + 16995, + 14265 + ]], + [[ + 14265, + 16995, + 17409 + ]], + [[ + 17409, + 16995, + 17460 + ]], + [[ + 14269, + 14265, + 17407 + ]], + [[ + 17407, + 14265, + 17409 + ]], + [[ + 16637, + 14273, + 17406 + ]], + [[ + 17406, + 14273, + 14269 + ]], + [[ + 17406, + 14269, + 17407 + ]], + [[ + 12018, + 16637, + 17461 + ]], + [[ + 17461, + 16637, + 17406 + ]], + [[ + 12011, + 12018, + 17399 + ]], + [[ + 17399, + 12018, + 17461 + ]], + [[ + 12012, + 12011, + 17398 + ]], + [[ + 17398, + 12011, + 17399 + ]], + [[ + 12009, + 12012, + 17467 + ]], + [[ + 17467, + 12012, + 17398 + ]], + [[ + 12010, + 12009, + 17468 + ]], + [[ + 17468, + 12009, + 17467 + ]], + [[ + 12003, + 12010, + 17469 + ]], + [[ + 17469, + 12010, + 17468 + ]], + [[ + 12004, + 12003, + 17416 + ]], + [[ + 17416, + 12003, + 17469 + ]], + [[ + 12001, + 12004, + 17470 + ]], + [[ + 17470, + 12004, + 17416 + ]], + [[ + 11999, + 12001, + 17471 + ]], + [[ + 17471, + 12001, + 17470 + ]], + [[ + 17067, + 12020, + 17414 + ]], + [[ + 17414, + 12020, + 11999 + ]], + [[ + 17414, + 11999, + 17471 + ]], + [[ + 17066, + 17067, + 17412 + ]], + [[ + 17412, + 17067, + 17414 + ]], + [[ + 17065, + 17066, + 17476 + ]], + [[ + 17476, + 17066, + 17412 + ]], + [[ + 17063, + 17065, + 17463 + ]], + [[ + 17463, + 17065, + 17476 + ]], + [[ + 17064, + 17063, + 17464 + ]], + [[ + 17464, + 17063, + 17463 + ]], + [[ + 17062, + 17064, + 17404 + ]], + [[ + 17404, + 17064, + 17464 + ]], + [[ + 17049, + 17062, + 17484 + ]], + [[ + 17484, + 17062, + 17404 + ]], + [[ + 17050, + 17049, + 17483 + ]], + [[ + 17483, + 17049, + 17484 + ]], + [[ + 17061, + 17050, + 17402 + ]], + [[ + 17402, + 17050, + 17483 + ]], + [[ + 17060, + 17061, + 17485 + ]], + [[ + 17485, + 17061, + 17402 + ]], + [[ + 17059, + 17060, + 17486 + ]], + [[ + 17486, + 17060, + 17485 + ]], + [[ + 17058, + 17059, + 17487 + ]], + [[ + 17487, + 17059, + 17486 + ]], + [[ + 17057, + 17058, + 17466 + ]], + [[ + 17466, + 17058, + 17487 + ]], + [[ + 17068, + 17057, + 17488 + ]], + [[ + 17488, + 17057, + 17466 + ]], + [[ + 17055, + 17068, + 17475 + ]], + [[ + 17475, + 17068, + 17488 + ]], + [[ + 17056, + 17055, + 17489 + ]], + [[ + 17489, + 17055, + 17475 + ]], + [[ + 17054, + 17056, + 17490 + ]], + [[ + 17490, + 17056, + 17489 + ]], + [[ + 17053, + 17054, + 17472 + ]], + [[ + 17472, + 17054, + 17490 + ]], + [[ + 17052, + 17053, + 17491 + ]], + [[ + 17491, + 17053, + 17472 + ]], + [[ + 17051, + 17052, + 17478 + ]], + [[ + 17478, + 17052, + 17491 + ]], + [[ + 15333, + 17051, + 15324 + ]], + [[ + 15324, + 17051, + 17492 + ]], + [[ + 17492, + 17051, + 17478 + ]], + [[ + 15331, + 15324, + 17493 + ]], + [[ + 17493, + 15324, + 17492 + ]], + [[ + 15320, + 15331, + 17494 + ]], + [[ + 17494, + 15331, + 17493 + ]], + [[ + 15317, + 15320, + 17482 + ]], + [[ + 17482, + 15320, + 17494 + ]], + [[ + 15315, + 15317, + 17495 + ]], + [[ + 17495, + 15317, + 17482 + ]], + [[ + 15311, + 15315, + 17496 + ]], + [[ + 17496, + 15315, + 17495 + ]], + [[ + 15312, + 15311, + 17497 + ]], + [[ + 17497, + 15311, + 17496 + ]], + [[ + 15327, + 15312, + 17479 + ]], + [[ + 17479, + 15312, + 17497 + ]], + [[ + 14126, + 15332, + 14123 + ]], + [[ + 14123, + 15332, + 17501 + ]], + [[ + 17501, + 15332, + 15327 + ]], + [[ + 17501, + 15327, + 17479 + ]], + [[ + 14122, + 14123, + 17500 + ]], + [[ + 17500, + 14123, + 17501 + ]], + [[ + 15459, + 14125, + 17502 + ]], + [[ + 17502, + 14125, + 14122 + ]], + [[ + 17502, + 14122, + 17500 + ]], + [[ + 15458, + 15459, + 17503 + ]], + [[ + 17503, + 15459, + 17502 + ]], + [[ + 17561, + 15473, + 17504 + ]], + [[ + 17504, + 15473, + 15458 + ]], + [[ + 17504, + 15458, + 17503 + ]], + [[ + 17562, + 17561, + 17396 + ]], + [[ + 17396, + 17561, + 17504 + ]], + [[ + 17563, + 17562, + 17505 + ]], + [[ + 17505, + 17562, + 17396 + ]], + [[ + 11879, + 17563, + 17506 + ]], + [[ + 17506, + 17563, + 17505 + ]], + [[ + 11887, + 11879, + 17507 + ]], + [[ + 17507, + 11879, + 17506 + ]], + [[ + 15711, + 11888, + 15706 + ]], + [[ + 15706, + 11888, + 17508 + ]], + [[ + 17508, + 11888, + 11887 + ]], + [[ + 17508, + 11887, + 17507 + ]], + [[ + 15708, + 15706, + 17509 + ]], + [[ + 17509, + 15706, + 17508 + ]], + [[ + 14549, + 15710, + 14528 + ]], + [[ + 14528, + 15710, + 17498 + ]], + [[ + 17498, + 15710, + 15708 + ]], + [[ + 17498, + 15708, + 17509 + ]], + [[ + 14543, + 14528, + 17510 + ]], + [[ + 17510, + 14528, + 17498 + ]], + [[ + 15251, + 14548, + 17393 + ]], + [[ + 17393, + 14548, + 14543 + ]], + [[ + 17393, + 14543, + 17510 + ]], + [[ + 15256, + 15251, + 17392 + ]], + [[ + 17392, + 15251, + 17393 + ]], + [[ + 15301, + 15261, + 17512 + ]], + [[ + 17512, + 15261, + 15256 + ]], + [[ + 17512, + 15256, + 17392 + ]], + [[ + 15296, + 15301, + 17513 + ]], + [[ + 17513, + 15301, + 17512 + ]], + [[ + 17564, + 15306, + 17514 + ]], + [[ + 17514, + 15306, + 15296 + ]], + [[ + 17514, + 15296, + 17513 + ]], + [[ + 14245, + 17564, + 14242 + ]], + [[ + 14242, + 17564, + 17515 + ]], + [[ + 17515, + 17564, + 17514 + ]], + [[ + 14234, + 14242, + 17516 + ]], + [[ + 17516, + 14242, + 17515 + ]], + [[ + 14748, + 14234, + 14740 + ]], + [[ + 14740, + 14234, + 17517 + ]], + [[ + 17517, + 14234, + 17516 + ]], + [[ + 14747, + 14740, + 17511 + ]], + [[ + 17511, + 14740, + 17517 + ]], + [[ + 14734, + 14747, + 17518 + ]], + [[ + 17518, + 14747, + 17511 + ]], + [[ + 14735, + 14734, + 17519 + ]], + [[ + 17519, + 14734, + 17518 + ]], + [[ + 12532, + 14735, + 17390 + ]], + [[ + 17390, + 14735, + 17519 + ]], + [[ + 12538, + 12532, + 17389 + ]], + [[ + 17389, + 12532, + 17390 + ]], + [[ + 17565, + 12538, + 17522 + ]], + [[ + 17522, + 12538, + 17389 + ]], + [[ + 15742, + 17565, + 17521 + ]], + [[ + 17521, + 17565, + 17522 + ]], + [[ + 15728, + 15742, + 17525 + ]], + [[ + 17525, + 15742, + 17521 + ]], + [[ + 17566, + 15728, + 17524 + ]], + [[ + 17524, + 15728, + 17525 + ]], + [[ + 17567, + 17566, + 17526 + ]], + [[ + 17526, + 17566, + 17524 + ]], + [[ + 14460, + 17567, + 17527 + ]], + [[ + 17527, + 17567, + 17526 + ]], + [[ + 14447, + 14460, + 17378 + ]], + [[ + 17378, + 14460, + 17527 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2de5e68-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0885149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17568, + 7729, + 17307 + ]], + [[ + 17568, + 17307, + 366 + ]], + [[ + 366, + 17309, + 364 + ]], + [[ + 366, + 17307, + 17309 + ]], + [[ + 7729, + 7730, + 17307 + ]], + [[ + 8719, + 7729, + 17568 + ]], + [[ + 366, + 8719, + 17568 + ]], + [[ + 9155, + 364, + 17309 + ]], + [[ + 7730, + 10620, + 17307 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2defaf4-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1218, + 8554, + 1212 + ]], + [[ + 1218, + 1212, + 1211 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2dfe4b4-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 13242, + 13275, + 13252 + ]], + [[ + 13247, + 13276, + 13275 + ]], + [[ + 17569, + 13277, + 13276 + ]], + [[ + 17570, + 10244, + 13270 + ]], + [[ + 13273, + 17571, + 13278 + ]], + [[ + 13286, + 13285, + 10225 + ]], + [[ + 10427, + 10426, + 13239 + ]], + [[ + 10426, + 10431, + 13290 + ]], + [[ + 10431, + 10433, + 13291 + ]], + [[ + 10433, + 10432, + 13236 + ]], + [[ + 10432, + 10434, + 13237 + ]], + [[ + 10434, + 10429, + 13292 + ]], + [[ + 10429, + 10513, + 13293 + ]], + [[ + 10513, + 10438, + 13234 + ]], + [[ + 10438, + 10437, + 13235 + ]], + [[ + 10437, + 10436, + 13294 + ]], + [[ + 10436, + 10440, + 13295 + ]], + [[ + 10440, + 10439, + 13232 + ]], + [[ + 10439, + 10444, + 13233 + ]], + [[ + 10444, + 10443, + 13296 + ]], + [[ + 10443, + 10446, + 13297 + ]], + [[ + 10446, + 10445, + 13230 + ]], + [[ + 10445, + 10451, + 13231 + ]], + [[ + 10451, + 10453, + 13298 + ]], + [[ + 10453, + 10456, + 13299 + ]], + [[ + 10456, + 10449, + 13228 + ]], + [[ + 10449, + 10448, + 13229 + ]], + [[ + 10448, + 10459, + 13300 + ]], + [[ + 10459, + 10458, + 13301 + ]], + [[ + 10458, + 10462, + 13301 + ]], + [[ + 10462, + 10463, + 13226 + ]], + [[ + 10463, + 10529, + 13227 + ]], + [[ + 10529, + 10466, + 13302 + ]], + [[ + 10466, + 10469, + 13303 + ]], + [[ + 10469, + 10472, + 13224 + ]], + [[ + 10472, + 10471, + 13225 + ]], + [[ + 10471, + 10475, + 13304 + ]], + [[ + 10475, + 10474, + 13305 + ]], + [[ + 10474, + 10478, + 13306 + ]], + [[ + 10478, + 10481, + 13307 + ]], + [[ + 10481, + 10480, + 13308 + ]], + [[ + 10480, + 10484, + 13222 + ]], + [[ + 10484, + 10483, + 13223 + ]], + [[ + 10483, + 10487, + 13309 + ]], + [[ + 10487, + 10486, + 13310 + ]], + [[ + 10486, + 10518, + 13311 + ]], + [[ + 10518, + 10493, + 13312 + ]], + [[ + 10493, + 10492, + 13313 + ]], + [[ + 10492, + 10523, + 13314 + ]], + [[ + 10523, + 10497, + 13315 + ]], + [[ + 10497, + 10498, + 13316 + ]], + [[ + 10498, + 10499, + 13317 + ]], + [[ + 10499, + 10524, + 13318 + ]], + [[ + 10524, + 10525, + 13319 + ]], + [[ + 10525, + 10528, + 13320 + ]], + [[ + 10528, + 10564, + 13321 + ]], + [[ + 10564, + 10504, + 13322 + ]], + [[ + 10504, + 10516, + 13323 + ]], + [[ + 10516, + 10375, + 13324 + ]], + [[ + 10375, + 10505, + 13325 + ]], + [[ + 10505, + 10506, + 13259 + ]], + [[ + 10506, + 10508, + 13269 + ]], + [[ + 10508, + 10510, + 13267 + ]], + [[ + 10510, + 10362, + 13266 + ]], + [[ + 10362, + 10378, + 13265 + ]], + [[ + 10378, + 10383, + 13264 + ]], + [[ + 10383, + 10386, + 13241 + ]], + [[ + 10386, + 10393, + 13263 + ]], + [[ + 10393, + 10395, + 13262 + ]], + [[ + 10395, + 10397, + 13261 + ]], + [[ + 10397, + 10396, + 13260 + ]], + [[ + 10396, + 10530, + 13274 + ]], + [[ + 10530, + 10400, + 13326 + ]], + [[ + 10400, + 10403, + 13258 + ]], + [[ + 10403, + 10381, + 13257 + ]], + [[ + 10381, + 10380, + 13256 + ]], + [[ + 10380, + 10535, + 13253 + ]], + [[ + 13258, + 10403, + 13257 + ]], + [[ + 10535, + 10408, + 13255 + ]], + [[ + 10408, + 10143, + 13254 + ]], + [[ + 17572, + 13272, + 13277 + ]], + [[ + 10143, + 10142, + 13244 + ]], + [[ + 10142, + 10247, + 17573 + ]], + [[ + 10247, + 10246, + 17574 + ]], + [[ + 10246, + 10321, + 17575 + ]], + [[ + 17573, + 10247, + 17576 + ]], + [[ + 10244, + 10241, + 13271 + ]], + [[ + 10321, + 10203, + 10245 + ]], + [[ + 17574, + 10246, + 17577 + ]], + [[ + 10203, + 10148, + 10418 + ]], + [[ + 17578, + 10246, + 17575 + ]], + [[ + 17575, + 10321, + 17579 + ]], + [[ + 10240, + 10239, + 13280 + ]], + [[ + 17579, + 10321, + 10245 + ]], + [[ + 10240, + 13280, + 13279 + ]], + [[ + 10245, + 10203, + 10412 + ]], + [[ + 10412, + 10203, + 10413 + ]], + [[ + 10413, + 10203, + 10419 + ]], + [[ + 10226, + 10225, + 13285 + ]], + [[ + 10419, + 10203, + 10511 + ]], + [[ + 10231, + 13284, + 13283 + ]], + [[ + 10511, + 10203, + 10418 + ]], + [[ + 10148, + 10415, + 10417 + ]], + [[ + 13286, + 10221, + 13287 + ]], + [[ + 10418, + 10148, + 10417 + ]], + [[ + 10514, + 10427, + 13238 + ]], + [[ + 17577, + 10246, + 17578 + ]], + [[ + 17576, + 10247, + 17574 + ]], + [[ + 13244, + 10142, + 17573 + ]], + [[ + 13254, + 10143, + 13244 + ]], + [[ + 13255, + 10408, + 13254 + ]], + [[ + 13253, + 10535, + 13255 + ]], + [[ + 13256, + 10380, + 13253 + ]], + [[ + 13257, + 10381, + 13256 + ]], + [[ + 13326, + 10400, + 13258 + ]], + [[ + 13274, + 10530, + 13326 + ]], + [[ + 13260, + 10396, + 13274 + ]], + [[ + 13261, + 10397, + 13260 + ]], + [[ + 13262, + 10395, + 13261 + ]], + [[ + 13263, + 10393, + 13262 + ]], + [[ + 13241, + 10386, + 13263 + ]], + [[ + 13264, + 10383, + 13241 + ]], + [[ + 13265, + 10378, + 13264 + ]], + [[ + 13266, + 10362, + 13265 + ]], + [[ + 13267, + 10510, + 13266 + ]], + [[ + 13268, + 10508, + 13267 + ]], + [[ + 13269, + 10508, + 13268 + ]], + [[ + 13259, + 10506, + 13269 + ]], + [[ + 13325, + 10505, + 13259 + ]], + [[ + 13324, + 10375, + 13325 + ]], + [[ + 13323, + 10516, + 13324 + ]], + [[ + 13322, + 10504, + 13323 + ]], + [[ + 13321, + 10564, + 13322 + ]], + [[ + 13320, + 10528, + 13321 + ]], + [[ + 13319, + 10525, + 13320 + ]], + [[ + 13318, + 10524, + 13319 + ]], + [[ + 13317, + 10499, + 13318 + ]], + [[ + 13316, + 10498, + 13317 + ]], + [[ + 13315, + 10497, + 13316 + ]], + [[ + 13314, + 10523, + 13315 + ]], + [[ + 13313, + 10492, + 13314 + ]], + [[ + 13312, + 10493, + 13313 + ]], + [[ + 13311, + 10518, + 13312 + ]], + [[ + 13310, + 10486, + 13311 + ]], + [[ + 13309, + 10487, + 13310 + ]], + [[ + 13223, + 10483, + 13309 + ]], + [[ + 13222, + 10484, + 13223 + ]], + [[ + 13308, + 10480, + 13222 + ]], + [[ + 13307, + 10481, + 13308 + ]], + [[ + 13306, + 10478, + 13307 + ]], + [[ + 13305, + 10474, + 13306 + ]], + [[ + 13304, + 10475, + 13305 + ]], + [[ + 13225, + 10471, + 13304 + ]], + [[ + 13224, + 10472, + 13225 + ]], + [[ + 13303, + 10469, + 13224 + ]], + [[ + 13302, + 10466, + 13303 + ]], + [[ + 13227, + 10529, + 13302 + ]], + [[ + 13226, + 10463, + 13227 + ]], + [[ + 13301, + 10462, + 13226 + ]], + [[ + 13300, + 10459, + 13301 + ]], + [[ + 13229, + 10448, + 13300 + ]], + [[ + 13228, + 10449, + 13229 + ]], + [[ + 13299, + 10456, + 13228 + ]], + [[ + 13298, + 10453, + 13299 + ]], + [[ + 13231, + 10451, + 13298 + ]], + [[ + 13230, + 10445, + 13231 + ]], + [[ + 13297, + 10446, + 13230 + ]], + [[ + 13296, + 10443, + 13297 + ]], + [[ + 13233, + 10444, + 13296 + ]], + [[ + 13232, + 10439, + 13233 + ]], + [[ + 13295, + 10440, + 13232 + ]], + [[ + 13294, + 10436, + 13295 + ]], + [[ + 13235, + 10437, + 13294 + ]], + [[ + 13234, + 10438, + 13235 + ]], + [[ + 13293, + 10513, + 13234 + ]], + [[ + 13292, + 10429, + 13293 + ]], + [[ + 13237, + 10434, + 13292 + ]], + [[ + 13236, + 10432, + 13237 + ]], + [[ + 13291, + 10433, + 13236 + ]], + [[ + 13290, + 10431, + 13291 + ]], + [[ + 13239, + 10426, + 13290 + ]], + [[ + 13238, + 10427, + 13239 + ]], + [[ + 13289, + 10514, + 13238 + ]], + [[ + 13288, + 10425, + 13289 + ]], + [[ + 13287, + 10220, + 13288 + ]], + [[ + 10425, + 10514, + 13289 + ]], + [[ + 10220, + 10425, + 13288 + ]], + [[ + 13287, + 10221, + 10220 + ]], + [[ + 13285, + 13284, + 10226 + ]], + [[ + 10221, + 13286, + 10225 + ]], + [[ + 13282, + 10237, + 13283 + ]], + [[ + 13284, + 10231, + 10226 + ]], + [[ + 13283, + 10237, + 10231 + ]], + [[ + 13282, + 13281, + 10234 + ]], + [[ + 13282, + 10234, + 10237 + ]], + [[ + 13281, + 13280, + 10239 + ]], + [[ + 10234, + 13281, + 10239 + ]], + [[ + 13271, + 10241, + 13279 + ]], + [[ + 13279, + 10241, + 10240 + ]], + [[ + 13271, + 13270, + 10244 + ]], + [[ + 13278, + 17570, + 13270 + ]], + [[ + 17571, + 17570, + 13278 + ]], + [[ + 13272, + 17580, + 13273 + ]], + [[ + 17571, + 13273, + 17581 + ]], + [[ + 17581, + 13273, + 17580 + ]], + [[ + 17580, + 13272, + 17572 + ]], + [[ + 17572, + 13277, + 17582 + ]], + [[ + 17582, + 13277, + 17569 + ]], + [[ + 17569, + 13276, + 13249 + ]], + [[ + 13249, + 13276, + 13248 + ]], + [[ + 13248, + 13276, + 13247 + ]], + [[ + 13247, + 13275, + 13246 + ]], + [[ + 13246, + 13275, + 13245 + ]], + [[ + 13245, + 13275, + 13242 + ]], + [[ + 13242, + 13252, + 13243 + ]], + [[ + 13250, + 13244, + 17573 + ]], + [[ + 16138, + 13250, + 17576 + ]], + [[ + 17576, + 13250, + 17573 + ]], + [[ + 16140, + 16138, + 17574 + ]], + [[ + 17574, + 16138, + 17576 + ]], + [[ + 16142, + 16140, + 17577 + ]], + [[ + 17577, + 16140, + 17574 + ]], + [[ + 16144, + 16142, + 17578 + ]], + [[ + 17578, + 16142, + 17577 + ]], + [[ + 16147, + 16144, + 17575 + ]], + [[ + 17575, + 16144, + 17578 + ]], + [[ + 16148, + 16147, + 17579 + ]], + [[ + 17579, + 16147, + 17575 + ]], + [[ + 10245, + 16148, + 17579 + ]], + [[ + 16146, + 10244, + 17570 + ]], + [[ + 16145, + 16146, + 17571 + ]], + [[ + 17571, + 16146, + 17570 + ]], + [[ + 16143, + 16145, + 17581 + ]], + [[ + 17581, + 16145, + 17571 + ]], + [[ + 16141, + 16143, + 17580 + ]], + [[ + 17580, + 16143, + 17581 + ]], + [[ + 16139, + 16141, + 17572 + ]], + [[ + 17572, + 16141, + 17580 + ]], + [[ + 16137, + 16139, + 17582 + ]], + [[ + 17582, + 16139, + 17572 + ]], + [[ + 13251, + 16137, + 17569 + ]], + [[ + 17569, + 16137, + 17582 + ]], + [[ + 13249, + 13251, + 17569 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2e00bdc-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17583, + 9132, + 17584 + ]], + [[ + 17585, + 8148, + 8149 + ]], + [[ + 17586, + 17587, + 17588 + ]], + [[ + 9132, + 17583, + 9133 + ]], + [[ + 9133, + 17589, + 9143 + ]], + [[ + 17587, + 17590, + 17591 + ]], + [[ + 17592, + 17593, + 17594 + ]], + [[ + 17593, + 17595, + 17596 + ]], + [[ + 17595, + 17597, + 17596 + ]], + [[ + 17598, + 17599, + 17600 + ]], + [[ + 17599, + 8137, + 8139 + ]], + [[ + 8137, + 8138, + 8139 + ]], + [[ + 9106, + 17601, + 9105 + ]], + [[ + 9105, + 17602, + 9104 + ]], + [[ + 17599, + 8139, + 17600 + ]], + [[ + 17588, + 17587, + 17591 + ]], + [[ + 17591, + 17590, + 17603 + ]], + [[ + 17603, + 17592, + 17594 + ]], + [[ + 17594, + 17593, + 17596 + ]], + [[ + 17596, + 17597, + 17604 + ]], + [[ + 8139, + 17605, + 17600 + ]], + [[ + 8139, + 8140, + 17605 + ]], + [[ + 17604, + 17598, + 17600 + ]], + [[ + 9104, + 17586, + 17588 + ]], + [[ + 9108, + 17606, + 9106 + ]], + [[ + 9107, + 17607, + 9108 + ]], + [[ + 17597, + 17598, + 17604 + ]], + [[ + 9109, + 17608, + 9107 + ]], + [[ + 9111, + 17609, + 9109 + ]], + [[ + 9112, + 17610, + 9111 + ]], + [[ + 17590, + 17592, + 17603 + ]], + [[ + 9113, + 17611, + 9112 + ]], + [[ + 9143, + 17612, + 9113 + ]], + [[ + 17602, + 17586, + 9104 + ]], + [[ + 17601, + 17602, + 9105 + ]], + [[ + 17606, + 17601, + 9106 + ]], + [[ + 17607, + 17606, + 9108 + ]], + [[ + 17608, + 17607, + 9107 + ]], + [[ + 17609, + 17608, + 9109 + ]], + [[ + 17610, + 17609, + 9111 + ]], + [[ + 17611, + 17610, + 9112 + ]], + [[ + 17612, + 17611, + 9113 + ]], + [[ + 17589, + 17612, + 9143 + ]], + [[ + 17613, + 17583, + 17584 + ]], + [[ + 17589, + 9133, + 17583 + ]], + [[ + 17585, + 17613, + 17584 + ]], + [[ + 9080, + 17585, + 17584 + ]], + [[ + 9080, + 8148, + 17585 + ]], + [[ + 17585, + 8149, + 8150 + ]], + [[ + 9084, + 9080, + 17584 + ]], + [[ + 9132, + 9084, + 17584 + ]], + [[ + 9102, + 9104, + 17588 + ]], + [[ + 9101, + 9102, + 17591 + ]], + [[ + 17591, + 9102, + 17588 + ]], + [[ + 9100, + 9101, + 17603 + ]], + [[ + 17603, + 9101, + 17591 + ]], + [[ + 9099, + 9100, + 17594 + ]], + [[ + 17594, + 9100, + 17603 + ]], + [[ + 9098, + 9099, + 17596 + ]], + [[ + 17596, + 9099, + 17594 + ]], + [[ + 9097, + 9098, + 17604 + ]], + [[ + 17604, + 9098, + 17596 + ]], + [[ + 9096, + 9097, + 17600 + ]], + [[ + 17600, + 9097, + 17604 + ]], + [[ + 9095, + 9096, + 17605 + ]], + [[ + 17605, + 9096, + 17600 + ]], + [[ + 8140, + 9095, + 17605 + ]], + [[ + 16860, + 8137, + 17599 + ]], + [[ + 16866, + 16860, + 17598 + ]], + [[ + 17598, + 16860, + 17599 + ]], + [[ + 16865, + 16866, + 17597 + ]], + [[ + 17597, + 16866, + 17598 + ]], + [[ + 16864, + 16865, + 17595 + ]], + [[ + 17595, + 16865, + 17597 + ]], + [[ + 16863, + 16864, + 17593 + ]], + [[ + 17593, + 16864, + 17595 + ]], + [[ + 16862, + 16863, + 17592 + ]], + [[ + 17592, + 16863, + 17593 + ]], + [[ + 11379, + 16862, + 17590 + ]], + [[ + 17590, + 16862, + 17592 + ]], + [[ + 16395, + 11379, + 17587 + ]], + [[ + 17587, + 11379, + 17590 + ]], + [[ + 16396, + 16395, + 17586 + ]], + [[ + 17586, + 16395, + 17587 + ]], + [[ + 16393, + 16396, + 17602 + ]], + [[ + 17602, + 16396, + 17586 + ]], + [[ + 16391, + 16393, + 17601 + ]], + [[ + 17601, + 16393, + 17602 + ]], + [[ + 16389, + 16391, + 17606 + ]], + [[ + 17606, + 16391, + 17601 + ]], + [[ + 16387, + 16389, + 17607 + ]], + [[ + 17607, + 16389, + 17606 + ]], + [[ + 16385, + 16387, + 17608 + ]], + [[ + 17608, + 16387, + 17607 + ]], + [[ + 16383, + 16385, + 17609 + ]], + [[ + 17609, + 16385, + 17608 + ]], + [[ + 16381, + 16383, + 17610 + ]], + [[ + 17610, + 16383, + 17609 + ]], + [[ + 16379, + 16381, + 17611 + ]], + [[ + 17611, + 16381, + 17610 + ]], + [[ + 16378, + 16379, + 17612 + ]], + [[ + 17612, + 16379, + 17611 + ]], + [[ + 16377, + 16378, + 17589 + ]], + [[ + 17589, + 16378, + 17612 + ]], + [[ + 16376, + 16377, + 17583 + ]], + [[ + 17583, + 16377, + 17589 + ]], + [[ + 16371, + 16376, + 17613 + ]], + [[ + 17613, + 16376, + 17583 + ]], + [[ + 16373, + 16371, + 17585 + ]], + [[ + 17585, + 16371, + 17613 + ]], + [[ + 8150, + 16373, + 17585 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2e1e06f-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8600, + 1892, + 8598 + ]], + [[ + 1892, + 1891, + 8598 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2e4514a-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f08dcd49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1146, + 8412, + 1150 + ]], + [[ + 1146, + 1150, + 1147 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2e4c69a-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 171, + 172, + 17614 + ]], + [[ + 17615, + 171, + 17614 + ]], + [[ + 17616, + 17615, + 17614 + ]], + [[ + 17616, + 17617, + 17615 + ]], + [[ + 17616, + 1845, + 7915 + ]], + [[ + 17617, + 17616, + 7915 + ]], + [[ + 1838, + 1845, + 17616 + ]], + [[ + 1842, + 1838, + 17614 + ]], + [[ + 17614, + 1838, + 17616 + ]], + [[ + 172, + 1842, + 17614 + ]], + [[ + 9950, + 171, + 17615 + ]], + [[ + 9963, + 9950, + 17617 + ]], + [[ + 17617, + 9950, + 17615 + ]], + [[ + 7915, + 9963, + 17617 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2e5d871-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 10648, + 10647, + 10650 + ]], + [[ + 10647, + 10651, + 10650 + ]], + [[ + 10651, + 17618, + 652 + ]], + [[ + 10651, + 10647, + 17618 + ]], + [[ + 652, + 17618, + 651 + ]], + [[ + 17618, + 10647, + 17619 + ]], + [[ + 17618, + 17619, + 17620 + ]], + [[ + 16970, + 651, + 17618 + ]], + [[ + 16968, + 16970, + 17620 + ]], + [[ + 17620, + 16970, + 17618 + ]], + [[ + 16969, + 16968, + 17619 + ]], + [[ + 17619, + 16968, + 17620 + ]], + [[ + 10647, + 16969, + 17619 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2e674f4-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17621, + 8534, + 17622 + ]], + [[ + 8534, + 1121, + 17622 + ]], + [[ + 1123, + 8534, + 17621 + ]], + [[ + 1120, + 1123, + 17622 + ]], + [[ + 17622, + 1123, + 17621 + ]], + [[ + 1121, + 1120, + 17622 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2e7acf3-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17623, + 1563, + 16960 + ]], + [[ + 1563, + 17623, + 17624 + ]], + [[ + 17624, + 17623, + 17625 + ]], + [[ + 1563, + 1683, + 16960 + ]], + [[ + 16960, + 17626, + 17627 + ]], + [[ + 16960, + 17628, + 17626 + ]], + [[ + 16960, + 1683, + 17628 + ]], + [[ + 16957, + 17628, + 1683 + ]], + [[ + 16955, + 16957, + 8271 + ]], + [[ + 16957, + 8270, + 8271 + ]], + [[ + 16957, + 1683, + 8270 + ]], + [[ + 16942, + 16962, + 17625 + ]], + [[ + 17625, + 16962, + 17624 + ]], + [[ + 16961, + 16942, + 17623 + ]], + [[ + 17623, + 16942, + 17625 + ]], + [[ + 16960, + 16961, + 17623 + ]], + [[ + 16943, + 16960, + 17627 + ]], + [[ + 16956, + 16943, + 17626 + ]], + [[ + 17626, + 16943, + 17627 + ]], + [[ + 16958, + 16956, + 17628 + ]], + [[ + 17628, + 16956, + 17626 + ]], + [[ + 16957, + 16958, + 17628 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2e8e5f6-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1203, + 8562, + 1197 + ]], + [[ + 8562, + 1198, + 1197 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2ea451d-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0948e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8623, + 124, + 8622 + ]], + [[ + 8633, + 8579, + 8622 + ]], + [[ + 17629, + 8633, + 8622 + ]], + [[ + 124, + 17630, + 8622 + ]], + [[ + 8622, + 17630, + 17629 + ]], + [[ + 124, + 125, + 17630 + ]], + [[ + 16365, + 8633, + 17629 + ]], + [[ + 16366, + 16365, + 17630 + ]], + [[ + 17630, + 16365, + 17629 + ]], + [[ + 125, + 16366, + 17630 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2ea9355-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0875c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 2813, + 11615, + 2815 + ]], + [[ + 2813, + 2807, + 17631 + ]], + [[ + 11615, + 2813, + 17631 + ]], + [[ + 17631, + 2807, + 17632 + ]], + [[ + 17632, + 2807, + 17633 + ]], + [[ + 16666, + 11620, + 17631 + ]], + [[ + 17631, + 11620, + 11615 + ]], + [[ + 16176, + 16666, + 17632 + ]], + [[ + 17632, + 16666, + 17631 + ]], + [[ + 16175, + 16176, + 17633 + ]], + [[ + 17633, + 16176, + 17632 + ]], + [[ + 2807, + 16175, + 17633 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2ea9356-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "kademuur", + "bronhouder": "W0372", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f09a6a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17634, + 17379, + 17635 + ]], + [[ + 17379, + 17523, + 17635 + ]], + [[ + 17636, + 17531, + 17634 + ]], + [[ + 17634, + 17531, + 17379 + ]], + [[ + 17533, + 17637, + 17523 + ]], + [[ + 17523, + 17637, + 17635 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2ed2b76-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8792, + 8417, + 8705 + ]], + [[ + 8792, + 14342, + 1942 + ]], + [[ + 2253, + 346, + 8711 + ]], + [[ + 8703, + 8705, + 8417 + ]], + [[ + 8417, + 8792, + 1942 + ]], + [[ + 1942, + 14342, + 1936 + ]], + [[ + 2253, + 345, + 346 + ]], + [[ + 1936, + 8711, + 346 + ]], + [[ + 1936, + 14342, + 8711 + ]], + [[ + 8710, + 8711, + 14342 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2ed529d-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17638, + 17639, + 15922 + ]], + [[ + 17638, + 15922, + 17021 + ]], + [[ + 17042, + 17021, + 15922 + ]], + [[ + 17044, + 17042, + 15923 + ]], + [[ + 17640, + 17641, + 15928 + ]], + [[ + 17642, + 17640, + 15929 + ]], + [[ + 17643, + 17642, + 15930 + ]], + [[ + 17644, + 17643, + 15883 + ]], + [[ + 17645, + 17644, + 15882 + ]], + [[ + 17646, + 17645, + 15931 + ]], + [[ + 17647, + 17646, + 15932 + ]], + [[ + 17648, + 17647, + 15933 + ]], + [[ + 17649, + 17648, + 15934 + ]], + [[ + 17650, + 17649, + 15935 + ]], + [[ + 17651, + 17650, + 15936 + ]], + [[ + 17652, + 17651, + 15937 + ]], + [[ + 17653, + 17652, + 15938 + ]], + [[ + 17654, + 17653, + 15939 + ]], + [[ + 17655, + 17656, + 15941 + ]], + [[ + 17657, + 17655, + 15942 + ]], + [[ + 17658, + 7171, + 7172 + ]], + [[ + 17658, + 17657, + 15944 + ]], + [[ + 17658, + 15945, + 7171 + ]], + [[ + 17656, + 17654, + 15940 + ]], + [[ + 17658, + 15944, + 15945 + ]], + [[ + 17641, + 17659, + 15927 + ]], + [[ + 17657, + 15942, + 15944 + ]], + [[ + 17659, + 17660, + 15926 + ]], + [[ + 17655, + 15941, + 15942 + ]], + [[ + 17660, + 17044, + 15925 + ]], + [[ + 17656, + 15940, + 15941 + ]], + [[ + 17654, + 15939, + 15940 + ]], + [[ + 17653, + 15938, + 15939 + ]], + [[ + 17652, + 15937, + 15938 + ]], + [[ + 17651, + 15936, + 15937 + ]], + [[ + 17650, + 15935, + 15936 + ]], + [[ + 17649, + 15934, + 15935 + ]], + [[ + 17648, + 15933, + 15934 + ]], + [[ + 17647, + 15932, + 15933 + ]], + [[ + 17646, + 15931, + 15932 + ]], + [[ + 17645, + 15882, + 15931 + ]], + [[ + 17644, + 15883, + 15882 + ]], + [[ + 17643, + 15930, + 15883 + ]], + [[ + 17642, + 15929, + 15930 + ]], + [[ + 17640, + 15928, + 15929 + ]], + [[ + 17641, + 15927, + 15928 + ]], + [[ + 17659, + 15926, + 15927 + ]], + [[ + 17660, + 15925, + 15926 + ]], + [[ + 17044, + 15923, + 15925 + ]], + [[ + 17042, + 15922, + 15923 + ]], + [[ + 17020, + 15916, + 17638 + ]], + [[ + 17638, + 15916, + 17639 + ]], + [[ + 17021, + 17020, + 17638 + ]], + [[ + 17043, + 17044, + 17660 + ]], + [[ + 17023, + 17043, + 17659 + ]], + [[ + 17659, + 17043, + 17660 + ]], + [[ + 17041, + 17023, + 17641 + ]], + [[ + 17641, + 17023, + 17659 + ]], + [[ + 17040, + 17041, + 17640 + ]], + [[ + 17640, + 17041, + 17641 + ]], + [[ + 17038, + 17040, + 17642 + ]], + [[ + 17642, + 17040, + 17640 + ]], + [[ + 17039, + 17038, + 17643 + ]], + [[ + 17643, + 17038, + 17642 + ]], + [[ + 17034, + 17039, + 17644 + ]], + [[ + 17644, + 17039, + 17643 + ]], + [[ + 17037, + 17034, + 17645 + ]], + [[ + 17645, + 17034, + 17644 + ]], + [[ + 17035, + 17037, + 17646 + ]], + [[ + 17646, + 17037, + 17645 + ]], + [[ + 17036, + 17035, + 17647 + ]], + [[ + 17647, + 17035, + 17646 + ]], + [[ + 17032, + 17036, + 17648 + ]], + [[ + 17648, + 17036, + 17647 + ]], + [[ + 17033, + 17032, + 17649 + ]], + [[ + 17649, + 17032, + 17648 + ]], + [[ + 17030, + 17033, + 17650 + ]], + [[ + 17650, + 17033, + 17649 + ]], + [[ + 17031, + 17030, + 17651 + ]], + [[ + 17651, + 17030, + 17650 + ]], + [[ + 17027, + 17031, + 17652 + ]], + [[ + 17652, + 17031, + 17651 + ]], + [[ + 17029, + 17027, + 17653 + ]], + [[ + 17653, + 17027, + 17652 + ]], + [[ + 17028, + 17029, + 17654 + ]], + [[ + 17654, + 17029, + 17653 + ]], + [[ + 17025, + 17028, + 17656 + ]], + [[ + 17656, + 17028, + 17654 + ]], + [[ + 17026, + 17025, + 17655 + ]], + [[ + 17655, + 17025, + 17656 + ]], + [[ + 17024, + 17026, + 17657 + ]], + [[ + 17657, + 17026, + 17655 + ]], + [[ + 17022, + 17024, + 17658 + ]], + [[ + 17658, + 17024, + 17657 + ]], + [[ + 7172, + 17022, + 17658 + ]], + [[ + 15916, + 15922, + 17639 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2ee8aa2-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0948f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 8572, + 8639, + 8152 + ]], + [[ + 8572, + 8152, + 8153 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2eed8e4-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0949a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1500, + 1563, + 8396 + ]], + [[ + 1563, + 17624, + 8396 + ]], + [[ + 16962, + 8396, + 17624 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2f011e8-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0948d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 166, + 976, + 943 + ]], + [[ + 166, + 943, + 165 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2f0601b-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0948849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17661, + 7809, + 17662 + ]], + [[ + 17661, + 17662, + 17663 + ]], + [[ + 17662, + 7809, + 1787 + ]], + [[ + 17662, + 1787, + 17664 + ]], + [[ + 7809, + 7810, + 1787 + ]], + [[ + 1796, + 7809, + 17661 + ]], + [[ + 1792, + 1796, + 17663 + ]], + [[ + 17663, + 1796, + 17661 + ]], + [[ + 1793, + 1792, + 17662 + ]], + [[ + 17662, + 1792, + 17663 + ]], + [[ + 1786, + 1793, + 17664 + ]], + [[ + 17664, + 1793, + 17662 + ]], + [[ + 1787, + 1786, + 17664 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2f149e9-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "muur", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0884c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 1162, + 1173, + 17665 + ]], + [[ + 17665, + 17666, + 17667 + ]], + [[ + 17668, + 17669, + 1263 + ]], + [[ + 17669, + 7279, + 1263 + ]], + [[ + 17669, + 17667, + 17666 + ]], + [[ + 17669, + 17666, + 7279 + ]], + [[ + 17667, + 17670, + 17665 + ]], + [[ + 1162, + 17665, + 17670 + ]], + [[ + 1174, + 1162, + 17670 + ]], + [[ + 1155, + 1174, + 17667 + ]], + [[ + 17667, + 1174, + 17670 + ]], + [[ + 1156, + 1155, + 17669 + ]], + [[ + 17669, + 1155, + 17667 + ]], + [[ + 1169, + 1156, + 17668 + ]], + [[ + 17668, + 1156, + 17669 + ]], + [[ + 1263, + 1169, + 17668 + ]], + [[ + 16827, + 7279, + 17666 + ]], + [[ + 16828, + 16827, + 17665 + ]], + [[ + 17665, + 16827, + 17666 + ]], + [[ + 1173, + 16828, + 17665 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "ba2f1bf47-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "kademuur", + "bronhouder": "W0372", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f097f249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17671, + 17672, + 17673 + ]], + [[ + 17674, + 17675, + 17676 + ]], + [[ + 17672, + 17671, + 17677 + ]], + [[ + 17678, + 17677, + 17671 + ]], + [[ + 17679, + 17680, + 17681 + ]], + [[ + 17682, + 17679, + 17683 + ]], + [[ + 17684, + 17682, + 17685 + ]], + [[ + 17686, + 17684, + 17687 + ]], + [[ + 17688, + 17689, + 17690 + ]], + [[ + 17691, + 17692, + 17693 + ]], + [[ + 17694, + 17695, + 17696 + ]], + [[ + 17694, + 17691, + 17697 + ]], + [[ + 17694, + 17698, + 17695 + ]], + [[ + 17695, + 17698, + 17699 + ]], + [[ + 17694, + 17697, + 17698 + ]], + [[ + 17700, + 17691, + 17701 + ]], + [[ + 17691, + 17700, + 17697 + ]], + [[ + 17692, + 17702, + 17703 + ]], + [[ + 17702, + 17704, + 17705 + ]], + [[ + 17701, + 17691, + 17693 + ]], + [[ + 17692, + 17706, + 17693 + ]], + [[ + 17704, + 17707, + 17708 + ]], + [[ + 17692, + 17709, + 17706 + ]], + [[ + 17707, + 17710, + 17708 + ]], + [[ + 17692, + 17703, + 17709 + ]], + [[ + 17702, + 17711, + 17703 + ]], + [[ + 17710, + 17688, + 17690 + ]], + [[ + 17702, + 13184, + 17711 + ]], + [[ + 17689, + 17712, + 17713 + ]], + [[ + 17702, + 17705, + 13184 + ]], + [[ + 17704, + 17708, + 17705 + ]], + [[ + 17712, + 17686, + 17713 + ]], + [[ + 17708, + 17710, + 17690 + ]], + [[ + 17689, + 17713, + 17690 + ]], + [[ + 17686, + 17687, + 17713 + ]], + [[ + 17684, + 17685, + 17687 + ]], + [[ + 17680, + 17714, + 17715 + ]], + [[ + 17685, + 17682, + 17716 + ]], + [[ + 17716, + 17682, + 17683 + ]], + [[ + 17679, + 17717, + 17683 + ]], + [[ + 17718, + 17719, + 17720 + ]], + [[ + 17679, + 17681, + 17717 + ]], + [[ + 17680, + 17721, + 17681 + ]], + [[ + 17680, + 17722, + 17721 + ]], + [[ + 17680, + 17723, + 17722 + ]], + [[ + 17680, + 17715, + 17723 + ]], + [[ + 17714, + 17724, + 17715 + ]], + [[ + 17714, + 17725, + 17724 + ]], + [[ + 17714, + 17726, + 17725 + ]], + [[ + 17714, + 17727, + 17726 + ]], + [[ + 17719, + 17728, + 17729 + ]], + [[ + 17718, + 17730, + 17727 + ]], + [[ + 17718, + 17731, + 17730 + ]], + [[ + 17714, + 17718, + 17727 + ]], + [[ + 17714, + 17719, + 17718 + ]], + [[ + 17718, + 17720, + 17732 + ]], + [[ + 17733, + 17728, + 17678 + ]], + [[ + 17719, + 17734, + 17720 + ]], + [[ + 17719, + 17729, + 17734 + ]], + [[ + 17728, + 17733, + 17729 + ]], + [[ + 17729, + 17733, + 17735 + ]], + [[ + 17728, + 17677, + 17678 + ]], + [[ + 17672, + 17736, + 17673 + ]], + [[ + 17737, + 17738, + 17736 + ]], + [[ + 17737, + 17674, + 17739 + ]], + [[ + 17736, + 17740, + 17673 + ]], + [[ + 17740, + 17736, + 17741 + ]], + [[ + 17736, + 17742, + 17741 + ]], + [[ + 17742, + 17736, + 17738 + ]], + [[ + 17737, + 17743, + 17738 + ]], + [[ + 17743, + 17737, + 17744 + ]], + [[ + 17744, + 17737, + 17745 + ]], + [[ + 17745, + 17737, + 17739 + ]], + [[ + 17739, + 17674, + 17746 + ]], + [[ + 17746, + 17674, + 17747 + ]], + [[ + 17747, + 17674, + 17676 + ]], + [[ + 17676, + 17675, + 17748 + ]], + [[ + 17748, + 17675, + 17749 + ]], + [[ + 17750, + 17751, + 17752 + ]], + [[ + 17752, + 17751, + 17753 + ]], + [[ + 17753, + 17751, + 17754 + ]], + [[ + 17754, + 17755, + 17756 + ]], + [[ + 17757, + 17758, + 17759 + ]], + [[ + 17759, + 17758, + 17760 + ]], + [[ + 17675, + 17750, + 17749 + ]], + [[ + 17761, + 17760, + 17758 + ]], + [[ + 17762, + 17763, + 17764 + ]], + [[ + 17762, + 17765, + 17766 + ]], + [[ + 17763, + 17761, + 17758 + ]], + [[ + 17766, + 17765, + 17767 + ]], + [[ + 17762, + 17764, + 17765 + ]], + [[ + 17763, + 17758, + 17764 + ]], + [[ + 17757, + 17768, + 17758 + ]], + [[ + 17757, + 17755, + 17768 + ]], + [[ + 17757, + 17756, + 17755 + ]], + [[ + 17749, + 17750, + 17752 + ]], + [[ + 17751, + 17755, + 17754 + ]], + [[ + 17769, + 17770, + 17674 + ]], + [[ + 17674, + 17770, + 17675 + ]], + [[ + 17771, + 17769, + 17737 + ]], + [[ + 17737, + 17769, + 17674 + ]], + [[ + 17772, + 17771, + 17736 + ]], + [[ + 17736, + 17771, + 17737 + ]], + [[ + 17773, + 17772, + 17672 + ]], + [[ + 17672, + 17772, + 17736 + ]], + [[ + 17774, + 17773, + 17677 + ]], + [[ + 17677, + 17773, + 17672 + ]], + [[ + 17775, + 17774, + 17728 + ]], + [[ + 17728, + 17774, + 17677 + ]], + [[ + 17776, + 17775, + 17719 + ]], + [[ + 17719, + 17775, + 17728 + ]], + [[ + 17777, + 17776, + 17714 + ]], + [[ + 17714, + 17776, + 17719 + ]], + [[ + 17778, + 17777, + 17680 + ]], + [[ + 17680, + 17777, + 17714 + ]], + [[ + 17779, + 17778, + 17679 + ]], + [[ + 17679, + 17778, + 17680 + ]], + [[ + 17780, + 17779, + 17682 + ]], + [[ + 17682, + 17779, + 17679 + ]], + [[ + 17781, + 17780, + 17684 + ]], + [[ + 17684, + 17780, + 17682 + ]], + [[ + 17782, + 17781, + 17686 + ]], + [[ + 17686, + 17781, + 17684 + ]], + [[ + 17783, + 17782, + 17712 + ]], + [[ + 17712, + 17782, + 17686 + ]], + [[ + 17784, + 17783, + 17689 + ]], + [[ + 17689, + 17783, + 17712 + ]], + [[ + 17785, + 17784, + 17688 + ]], + [[ + 17688, + 17784, + 17689 + ]], + [[ + 17786, + 17785, + 17710 + ]], + [[ + 17710, + 17785, + 17688 + ]], + [[ + 17787, + 17786, + 17707 + ]], + [[ + 17707, + 17786, + 17710 + ]], + [[ + 17788, + 17787, + 17704 + ]], + [[ + 17704, + 17787, + 17707 + ]], + [[ + 17789, + 17788, + 17702 + ]], + [[ + 17702, + 17788, + 17704 + ]], + [[ + 17790, + 17789, + 17692 + ]], + [[ + 17692, + 17789, + 17702 + ]], + [[ + 17791, + 17790, + 17691 + ]], + [[ + 17691, + 17790, + 17692 + ]], + [[ + 17792, + 17791, + 17694 + ]], + [[ + 17694, + 17791, + 17691 + ]], + [[ + 17793, + 17792, + 17696 + ]], + [[ + 17696, + 17792, + 17694 + ]], + [[ + 15839, + 17700, + 17701 + ]], + [[ + 15830, + 15839, + 17693 + ]], + [[ + 17693, + 15839, + 17701 + ]], + [[ + 16301, + 15830, + 17706 + ]], + [[ + 17706, + 15830, + 17693 + ]], + [[ + 15209, + 16301, + 17709 + ]], + [[ + 17709, + 16301, + 17706 + ]], + [[ + 15210, + 15209, + 17703 + ]], + [[ + 17703, + 15209, + 17709 + ]], + [[ + 13183, + 15210, + 17711 + ]], + [[ + 17711, + 15210, + 17703 + ]], + [[ + 13184, + 13183, + 17711 + ]], + [[ + 13186, + 13184, + 17705 + ]], + [[ + 14406, + 13186, + 17708 + ]], + [[ + 17708, + 13186, + 17705 + ]], + [[ + 14407, + 14406, + 17690 + ]], + [[ + 17690, + 14406, + 17708 + ]], + [[ + 16296, + 14407, + 17713 + ]], + [[ + 17713, + 14407, + 17690 + ]], + [[ + 13220, + 16296, + 17687 + ]], + [[ + 17687, + 16296, + 17713 + ]], + [[ + 13210, + 13220, + 17685 + ]], + [[ + 17685, + 13220, + 17687 + ]], + [[ + 13204, + 13210, + 17716 + ]], + [[ + 17716, + 13210, + 17685 + ]], + [[ + 13205, + 13204, + 17683 + ]], + [[ + 17683, + 13204, + 17716 + ]], + [[ + 15713, + 13205, + 17717 + ]], + [[ + 17717, + 13205, + 17683 + ]], + [[ + 15714, + 15713, + 17681 + ]], + [[ + 17681, + 15713, + 17717 + ]], + [[ + 14039, + 15714, + 17721 + ]], + [[ + 17721, + 15714, + 17681 + ]], + [[ + 14040, + 14039, + 17722 + ]], + [[ + 17722, + 14039, + 17721 + ]], + [[ + 16304, + 14040, + 17723 + ]], + [[ + 17723, + 14040, + 17722 + ]], + [[ + 11760, + 16304, + 17715 + ]], + [[ + 17715, + 16304, + 17723 + ]], + [[ + 11761, + 11760, + 17724 + ]], + [[ + 17724, + 11760, + 17715 + ]], + [[ + 13189, + 11761, + 17725 + ]], + [[ + 17725, + 11761, + 17724 + ]], + [[ + 13190, + 13189, + 17726 + ]], + [[ + 17726, + 13189, + 17725 + ]], + [[ + 15760, + 13190, + 17727 + ]], + [[ + 17727, + 13190, + 17726 + ]], + [[ + 15761, + 15760, + 17730 + ]], + [[ + 17730, + 15760, + 17727 + ]], + [[ + 9066, + 15761, + 17731 + ]], + [[ + 17731, + 15761, + 17730 + ]], + [[ + 9077, + 9066, + 17718 + ]], + [[ + 17718, + 9066, + 17731 + ]], + [[ + 9075, + 9077, + 17732 + ]], + [[ + 17732, + 9077, + 17718 + ]], + [[ + 17794, + 9075, + 17720 + ]], + [[ + 17720, + 9075, + 17732 + ]], + [[ + 15131, + 17794, + 17734 + ]], + [[ + 17734, + 17794, + 17720 + ]], + [[ + 15132, + 15131, + 17729 + ]], + [[ + 17729, + 15131, + 17734 + ]], + [[ + 17795, + 15203, + 17735 + ]], + [[ + 17735, + 15203, + 15132 + ]], + [[ + 17735, + 15132, + 17729 + ]], + [[ + 17796, + 17795, + 17733 + ]], + [[ + 17733, + 17795, + 17735 + ]], + [[ + 13707, + 17796, + 17678 + ]], + [[ + 17678, + 17796, + 17733 + ]], + [[ + 13708, + 13707, + 17671 + ]], + [[ + 17671, + 13707, + 17678 + ]], + [[ + 15505, + 13759, + 15495 + ]], + [[ + 15495, + 13759, + 17673 + ]], + [[ + 17673, + 13759, + 13708 + ]], + [[ + 17673, + 13708, + 17671 + ]], + [[ + 15496, + 15495, + 17740 + ]], + [[ + 17740, + 15495, + 17673 + ]], + [[ + 15379, + 15496, + 15350 + ]], + [[ + 15350, + 15496, + 17741 + ]], + [[ + 17741, + 15496, + 17740 + ]], + [[ + 15338, + 15350, + 17742 + ]], + [[ + 17742, + 15350, + 17741 + ]], + [[ + 15684, + 15338, + 15629 + ]], + [[ + 15629, + 15338, + 17738 + ]], + [[ + 17738, + 15338, + 17742 + ]], + [[ + 15630, + 15629, + 17743 + ]], + [[ + 17743, + 15629, + 17738 + ]], + [[ + 15381, + 15630, + 17744 + ]], + [[ + 17744, + 15630, + 17743 + ]], + [[ + 15382, + 15381, + 17745 + ]], + [[ + 17745, + 15381, + 17744 + ]], + [[ + 13997, + 15382, + 17739 + ]], + [[ + 17739, + 15382, + 17745 + ]], + [[ + 13998, + 13997, + 17746 + ]], + [[ + 17746, + 13997, + 17739 + ]], + [[ + 12829, + 13998, + 12798 + ]], + [[ + 12798, + 13998, + 17747 + ]], + [[ + 17747, + 13998, + 17746 + ]], + [[ + 12799, + 12798, + 17676 + ]], + [[ + 17676, + 12798, + 17747 + ]], + [[ + 14801, + 12799, + 14750 + ]], + [[ + 14750, + 12799, + 17748 + ]], + [[ + 17748, + 12799, + 17676 + ]], + [[ + 14751, + 14750, + 17749 + ]], + [[ + 17749, + 14750, + 17748 + ]], + [[ + 16263, + 14751, + 17752 + ]], + [[ + 17752, + 14751, + 17749 + ]], + [[ + 12117, + 16263, + 12069 + ]], + [[ + 12069, + 16263, + 17753 + ]], + [[ + 17753, + 16263, + 17752 + ]], + [[ + 12070, + 12069, + 17754 + ]], + [[ + 17754, + 12069, + 17753 + ]], + [[ + 16204, + 12118, + 17756 + ]], + [[ + 17756, + 12118, + 12070 + ]], + [[ + 17756, + 12070, + 17754 + ]], + [[ + 16265, + 16204, + 17757 + ]], + [[ + 17757, + 16204, + 17756 + ]], + [[ + 16264, + 16265, + 17759 + ]], + [[ + 17759, + 16265, + 17757 + ]], + [[ + 16202, + 16264, + 17760 + ]], + [[ + 17760, + 16264, + 17759 + ]], + [[ + 16206, + 16202, + 17761 + ]], + [[ + 17761, + 16202, + 17760 + ]], + [[ + 16205, + 16206, + 17763 + ]], + [[ + 17763, + 16206, + 17761 + ]], + [[ + 16203, + 16205, + 17762 + ]], + [[ + 17762, + 16205, + 17763 + ]], + [[ + 16261, + 16203, + 17766 + ]], + [[ + 17766, + 16203, + 17762 + ]], + [[ + 16255, + 16261, + 17767 + ]], + [[ + 17767, + 16261, + 17766 + ]], + [[ + 16256, + 16255, + 17765 + ]], + [[ + 17765, + 16255, + 17767 + ]], + [[ + 16262, + 16256, + 17764 + ]], + [[ + 17764, + 16256, + 17765 + ]], + [[ + 17797, + 16268, + 17758 + ]], + [[ + 17758, + 16268, + 16262 + ]], + [[ + 17758, + 16262, + 17764 + ]], + [[ + 17798, + 17797, + 17768 + ]], + [[ + 17768, + 17797, + 17758 + ]], + [[ + 17799, + 17798, + 17755 + ]], + [[ + 17755, + 17798, + 17768 + ]], + [[ + 17800, + 17799, + 17751 + ]], + [[ + 17751, + 17799, + 17755 + ]], + [[ + 17801, + 17800, + 17750 + ]], + [[ + 17750, + 17800, + 17751 + ]], + [[ + 17770, + 17801, + 17675 + ]], + [[ + 17675, + 17801, + 17750 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "baeb0d610-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef344f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 12531, + 14731, + 12532 + ]], + [[ + 14731, + 14735, + 12532 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baeb14b79-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef6049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16997, + 16994, + 16998 + ]], + [[ + 16994, + 16996, + 16998 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baeb4316e-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17802, + 11901, + 14448 + ]], + [[ + 11906, + 17803, + 17804 + ]], + [[ + 11906, + 11901, + 17805 + ]], + [[ + 17802, + 17805, + 11901 + ]], + [[ + 17803, + 11906, + 17805 + ]], + [[ + 14447, + 17802, + 14448 + ]], + [[ + 14447, + 17804, + 17802 + ]], + [[ + 14447, + 11906, + 17804 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baeb71848-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee49149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 1033, + 16671, + 1061 + ]], + [[ + 1059, + 1060, + 1061 + ]], + [[ + 16671, + 17169, + 1061 + ]], + [[ + 1061, + 1058, + 1059 + ]], + [[ + 1061, + 1057, + 1058 + ]], + [[ + 1061, + 1062, + 1057 + ]], + [[ + 1061, + 1038, + 1062 + ]], + [[ + 1062, + 1038, + 1056 + ]], + [[ + 1056, + 1038, + 1030 + ]], + [[ + 1030, + 1037, + 1031 + ]], + [[ + 1030, + 1038, + 1037 + ]], + [[ + 1061, + 17169, + 1038 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baeb96194-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eedb4e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "verkeersdrempel", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17806, + 17807, + 17808 + ]], + [[ + 17808, + 16775, + 16777 + ]], + [[ + 17806, + 17808, + 16777 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baebac1f9-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee4af49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 8221, + 15884, + 8220 + ]], + [[ + 8221, + 426, + 15884 + ]], + [[ + 7277, + 15900, + 15899 + ]], + [[ + 7247, + 7248, + 15952 + ]], + [[ + 15884, + 426, + 15897 + ]], + [[ + 400, + 15897, + 426 + ]], + [[ + 403, + 15898, + 15897 + ]], + [[ + 403, + 15896, + 15898 + ]], + [[ + 403, + 15895, + 15896 + ]], + [[ + 15893, + 15894, + 403 + ]], + [[ + 15892, + 15893, + 6694 + ]], + [[ + 15891, + 15890, + 6694 + ]], + [[ + 15889, + 15891, + 6694 + ]], + [[ + 15888, + 15889, + 6694 + ]], + [[ + 15887, + 15888, + 6694 + ]], + [[ + 15886, + 15887, + 6694 + ]], + [[ + 15885, + 15886, + 6694 + ]], + [[ + 7247, + 15952, + 15900 + ]], + [[ + 7249, + 15951, + 15952 + ]], + [[ + 7249, + 15950, + 15951 + ]], + [[ + 7249, + 15949, + 15950 + ]], + [[ + 1004, + 15948, + 15949 + ]], + [[ + 1004, + 15946, + 15948 + ]], + [[ + 1004, + 1003, + 15946 + ]], + [[ + 1003, + 15924, + 15947 + ]], + [[ + 7249, + 15952, + 7248 + ]], + [[ + 1003, + 15947, + 15946 + ]], + [[ + 7194, + 1003, + 997 + ]], + [[ + 7194, + 15924, + 1003 + ]], + [[ + 7249, + 1004, + 15949 + ]], + [[ + 15890, + 15892, + 6694 + ]], + [[ + 15899, + 6694, + 7277 + ]], + [[ + 1005, + 1004, + 7249 + ]], + [[ + 7247, + 15900, + 10012 + ]], + [[ + 15900, + 7278, + 10012 + ]], + [[ + 15885, + 6694, + 15899 + ]], + [[ + 7278, + 15900, + 7277 + ]], + [[ + 15894, + 15895, + 403 + ]], + [[ + 400, + 403, + 15897 + ]], + [[ + 6694, + 15893, + 403 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baebae90f-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca4a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17809, + 16297, + 17810 + ]], + [[ + 15956, + 15954, + 17811 + ]], + [[ + 15964, + 15831, + 16298 + ]], + [[ + 15954, + 17812, + 17811 + ]], + [[ + 17811, + 15839, + 15842 + ]], + [[ + 17811, + 17700, + 15839 + ]], + [[ + 17811, + 17697, + 17700 + ]], + [[ + 15831, + 15967, + 15842 + ]], + [[ + 15842, + 15956, + 17811 + ]], + [[ + 17813, + 17814, + 15961 + ]], + [[ + 15970, + 15956, + 15842 + ]], + [[ + 15960, + 15970, + 15842 + ]], + [[ + 15969, + 15960, + 15842 + ]], + [[ + 16303, + 9071, + 9070 + ]], + [[ + 15842, + 15968, + 15969 + ]], + [[ + 15968, + 15842, + 15967 + ]], + [[ + 15967, + 15831, + 15966 + ]], + [[ + 15966, + 15831, + 15965 + ]], + [[ + 15965, + 15831, + 15964 + ]], + [[ + 15964, + 16298, + 15963 + ]], + [[ + 15963, + 16298, + 15962 + ]], + [[ + 15962, + 16298, + 15961 + ]], + [[ + 15961, + 16298, + 17815 + ]], + [[ + 15961, + 17814, + 15958 + ]], + [[ + 17815, + 17813, + 15961 + ]], + [[ + 17816, + 17815, + 16298 + ]], + [[ + 17817, + 17816, + 16298 + ]], + [[ + 17818, + 17817, + 16298 + ]], + [[ + 16297, + 17819, + 16298 + ]], + [[ + 16298, + 17820, + 17818 + ]], + [[ + 16298, + 17821, + 17820 + ]], + [[ + 16298, + 17822, + 17821 + ]], + [[ + 16298, + 17823, + 17822 + ]], + [[ + 16298, + 17824, + 17823 + ]], + [[ + 17819, + 16297, + 17809 + ]], + [[ + 16298, + 17825, + 17824 + ]], + [[ + 16297, + 16295, + 17810 + ]], + [[ + 17825, + 16298, + 17819 + ]], + [[ + 17826, + 17827, + 17828 + ]], + [[ + 16295, + 17829, + 17810 + ]], + [[ + 17829, + 16295, + 17828 + ]], + [[ + 17828, + 16295, + 17826 + ]], + [[ + 16294, + 17830, + 16295 + ]], + [[ + 16295, + 17830, + 17826 + ]], + [[ + 16294, + 17831, + 17830 + ]], + [[ + 16294, + 17832, + 17831 + ]], + [[ + 17831, + 17833, + 17834 + ]], + [[ + 17831, + 17835, + 17833 + ]], + [[ + 17831, + 17836, + 17835 + ]], + [[ + 17831, + 17837, + 17836 + ]], + [[ + 17831, + 17838, + 17837 + ]], + [[ + 17831, + 17839, + 17838 + ]], + [[ + 17831, + 17840, + 17839 + ]], + [[ + 17831, + 17841, + 17840 + ]], + [[ + 17831, + 17842, + 17841 + ]], + [[ + 17831, + 17832, + 17842 + ]], + [[ + 16294, + 17843, + 17832 + ]], + [[ + 16294, + 17844, + 17843 + ]], + [[ + 16294, + 17845, + 17844 + ]], + [[ + 16294, + 17846, + 17845 + ]], + [[ + 16294, + 17847, + 17846 + ]], + [[ + 17848, + 16294, + 17849 + ]], + [[ + 16294, + 17850, + 17847 + ]], + [[ + 16294, + 16303, + 17849 + ]], + [[ + 17850, + 16294, + 17851 + ]], + [[ + 17851, + 16294, + 17852 + ]], + [[ + 17852, + 16294, + 17848 + ]], + [[ + 16303, + 17853, + 17849 + ]], + [[ + 17854, + 16188, + 17855 + ]], + [[ + 17854, + 16185, + 16188 + ]], + [[ + 17854, + 9069, + 16185 + ]], + [[ + 17854, + 17853, + 9070 + ]], + [[ + 17854, + 9070, + 9069 + ]], + [[ + 17853, + 16303, + 9070 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baebae918-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefaa49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16944, + 16893, + 16941 + ]], + [[ + 16893, + 16959, + 16941 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baebc6f96-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca4b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16763, + 17856, + 16764 + ]], + [[ + 17856, + 17857, + 16764 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baebf073e-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef4d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17858, + 17859, + 17860 + ]], + [[ + 17858, + 17860, + 17861 + ]], + [[ + 17861, + 17860, + 17862 + ]], + [[ + 17859, + 17863, + 17860 + ]], + [[ + 17860, + 17864, + 17865 + ]], + [[ + 17860, + 17866, + 17864 + ]], + [[ + 17860, + 17867, + 17866 + ]], + [[ + 17860, + 17868, + 17867 + ]], + [[ + 17860, + 17869, + 17868 + ]], + [[ + 17860, + 17863, + 17869 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baec01841-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16060, + 16023, + 16059 + ]], + [[ + 16060, + 16059, + 16058 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baec0184a-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef1df549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15338, + 15684, + 15650 + ]], + [[ + 16178, + 15479, + 15339 + ]], + [[ + 15479, + 15496, + 15379 + ]], + [[ + 15360, + 15479, + 15379 + ]], + [[ + 15339, + 15479, + 15360 + ]], + [[ + 16186, + 16185, + 15150 + ]], + [[ + 13759, + 15505, + 15480 + ]], + [[ + 13746, + 13759, + 15480 + ]], + [[ + 15479, + 16178, + 15480 + ]], + [[ + 16185, + 9069, + 9076 + ]], + [[ + 17795, + 13707, + 13725 + ]], + [[ + 17795, + 17796, + 13707 + ]], + [[ + 16186, + 15203, + 17795 + ]], + [[ + 13725, + 16186, + 17795 + ]], + [[ + 13746, + 16186, + 13725 + ]], + [[ + 15203, + 16186, + 15154 + ]], + [[ + 16185, + 17794, + 15150 + ]], + [[ + 15150, + 17794, + 15131 + ]], + [[ + 9076, + 9075, + 17794 + ]], + [[ + 12796, + 14801, + 14764 + ]], + [[ + 15154, + 16186, + 15150 + ]], + [[ + 17794, + 16185, + 9076 + ]], + [[ + 15480, + 16186, + 13746 + ]], + [[ + 16178, + 16186, + 15480 + ]], + [[ + 15650, + 16178, + 15339 + ]], + [[ + 14764, + 14772, + 16179 + ]], + [[ + 16178, + 12806, + 16179 + ]], + [[ + 12796, + 12799, + 14801 + ]], + [[ + 16179, + 12796, + 14764 + ]], + [[ + 16179, + 12806, + 12796 + ]], + [[ + 14014, + 13998, + 12806 + ]], + [[ + 13998, + 12829, + 12806 + ]], + [[ + 16178, + 14014, + 12806 + ]], + [[ + 16178, + 14008, + 14014 + ]], + [[ + 16638, + 16641, + 15382 + ]], + [[ + 16640, + 15388, + 15382 + ]], + [[ + 16178, + 15388, + 14008 + ]], + [[ + 16178, + 15386, + 15388 + ]], + [[ + 15663, + 15630, + 15386 + ]], + [[ + 16178, + 15663, + 15386 + ]], + [[ + 15386, + 15630, + 15381 + ]], + [[ + 15650, + 15663, + 16178 + ]], + [[ + 15338, + 15650, + 15339 + ]], + [[ + 16856, + 16858, + 16639 + ]], + [[ + 14008, + 15388, + 16639 + ]], + [[ + 16641, + 16640, + 15382 + ]], + [[ + 16639, + 15388, + 16640 + ]], + [[ + 13997, + 16638, + 15382 + ]], + [[ + 16856, + 16638, + 13997 + ]], + [[ + 14008, + 16859, + 13997 + ]], + [[ + 16856, + 16639, + 16638 + ]], + [[ + 13997, + 16859, + 16857 + ]], + [[ + 14008, + 16639, + 16858 + ]], + [[ + 16859, + 14008, + 16858 + ]], + [[ + 16857, + 16856, + 13997 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baec2b0ec-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef344c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 14245, + 14240, + 17564 + ]], + [[ + 14240, + 15291, + 17564 + ]], + [[ + 17564, + 15291, + 15306 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baec2ff3f-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef345049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16173, + 16172, + 11900 + ]], + [[ + 16173, + 11900, + 11912 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baec32664-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eec1f949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 23, + 24, + 16170 + ]], + [[ + 23, + 16170, + 21 + ]], + [[ + 4, + 6, + 23 + ]], + [[ + 23, + 6, + 24 + ]], + [[ + 3, + 4, + 21 + ]], + [[ + 21, + 4, + 23 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baec76b97-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16275, + 35, + 16273 + ]], + [[ + 35, + 36, + 16273 + ]], + [[ + 8, + 18, + 35 + ]], + [[ + 35, + 18, + 36 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baec8f206-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17804, + 17803, + 17802 + ]], + [[ + 17803, + 17805, + 17802 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baec91931-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef344e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16289, + 16291, + 16293 + ]], + [[ + 16289, + 16293, + 16290 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baecc264e-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca8049cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 34, + 35, + 33 + ]], + [[ + 17870, + 31, + 33 + ]], + [[ + 35, + 16275, + 33 + ]], + [[ + 33, + 16275, + 17870 + ]], + [[ + 16, + 8, + 34 + ]], + [[ + 34, + 8, + 35 + ]], + [[ + 17, + 16, + 33 + ]], + [[ + 33, + 16, + 34 + ]], + [[ + 9, + 17, + 31 + ]], + [[ + 31, + 17, + 33 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baecdd400-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca8649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16989, + 16979, + 17871 + ]], + [[ + 16989, + 17872, + 16082 + ]], + [[ + 16989, + 17873, + 17872 + ]], + [[ + 17873, + 16989, + 17874 + ]], + [[ + 17874, + 16989, + 17875 + ]], + [[ + 17875, + 16989, + 17876 + ]], + [[ + 17876, + 16989, + 17871 + ]], + [[ + 17871, + 16979, + 17877 + ]], + [[ + 17877, + 16979, + 17878 + ]], + [[ + 17878, + 16979, + 17879 + ]], + [[ + 17879, + 16979, + 17880 + ]], + [[ + 17880, + 16979, + 17881 + ]], + [[ + 17881, + 16979, + 17882 + ]], + [[ + 17882, + 16979, + 17883 + ]], + [[ + 17883, + 16979, + 17884 + ]], + [[ + 17884, + 16979, + 17807 + ]], + [[ + 17885, + 17884, + 17807 + ]], + [[ + 17886, + 17885, + 17807 + ]], + [[ + 17887, + 17886, + 17807 + ]], + [[ + 17887, + 17807, + 17806 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baece497b-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef0b4a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 8699, + 8698, + 8697 + ]], + [[ + 8698, + 8692, + 8694 + ]], + [[ + 8698, + 8699, + 8692 + ]], + [[ + 8694, + 8692, + 8691 + ]], + [[ + 8692, + 8699, + 8689 + ]], + [[ + 8692, + 8689, + 8690 + ]], + [[ + 8699, + 6950, + 16648 + ]], + [[ + 8689, + 16649, + 6860 + ]], + [[ + 8689, + 8699, + 16649 + ]], + [[ + 16649, + 8699, + 16648 + ]], + [[ + 16648, + 6950, + 6951 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baecfa8c8-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17888, + 17889, + 17890 + ]], + [[ + 17888, + 17890, + 17891 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baed01e43-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca8449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16989, + 16953, + 16954 + ]], + [[ + 16989, + 16952, + 16953 + ]], + [[ + 16952, + 16989, + 16950 + ]], + [[ + 16950, + 16989, + 16949 + ]], + [[ + 16949, + 16989, + 16948 + ]], + [[ + 16948, + 16989, + 16947 + ]], + [[ + 16947, + 16989, + 16092 + ]], + [[ + 16947, + 16092, + 16945 + ]], + [[ + 16989, + 16090, + 16092 + ]], + [[ + 16989, + 16089, + 16090 + ]], + [[ + 16989, + 16088, + 16089 + ]], + [[ + 16989, + 16087, + 16088 + ]], + [[ + 16989, + 16086, + 16087 + ]], + [[ + 16989, + 16084, + 16086 + ]], + [[ + 16989, + 16083, + 16084 + ]], + [[ + 16989, + 16082, + 16083 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baed35282-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17892, + 17893, + 17894 + ]], + [[ + 17892, + 17894, + 17895 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baed6123a-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15238, + 17894, + 15251 + ]], + [[ + 15251, + 17894, + 17893 + ]], + [[ + 15238, + 14532, + 11376 + ]], + [[ + 11376, + 17895, + 15238 + ]], + [[ + 17894, + 15238, + 17895 + ]], + [[ + 15251, + 17892, + 11375 + ]], + [[ + 15251, + 17893, + 17892 + ]], + [[ + 15251, + 11375, + 14548 + ]], + [[ + 17892, + 17895, + 11375 + ]], + [[ + 11377, + 11376, + 14532 + ]], + [[ + 11375, + 17895, + 11376 + ]], + [[ + 14548, + 11377, + 14532 + ]], + [[ + 14548, + 11374, + 11377 + ]], + [[ + 14548, + 11375, + 11374 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baed74a77-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef6649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16589, + 16588, + 16587 + ]], + [[ + 16589, + 16587, + 16586 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baed8a9c4-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef170a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 7931, + 16410, + 7930 + ]], + [[ + 7931, + 7932, + 16643 + ]], + [[ + 16410, + 7931, + 16643 + ]], + [[ + 8186, + 16642, + 16643 + ]], + [[ + 16643, + 7932, + 8186 + ]], + [[ + 8186, + 16645, + 16642 + ]], + [[ + 16644, + 16642, + 16645 + ]], + [[ + 10010, + 8546, + 8544 + ]], + [[ + 8544, + 16645, + 10010 + ]], + [[ + 8545, + 8546, + 10205 + ]], + [[ + 10205, + 8546, + 10010 + ]], + [[ + 10010, + 16645, + 899 + ]], + [[ + 902, + 10010, + 899 + ]], + [[ + 899, + 16645, + 8186 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baed8f811-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee48c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17896, + 15440, + 15535 + ]], + [[ + 17896, + 17897, + 15440 + ]], + [[ + 17898, + 15440, + 17897 + ]], + [[ + 15534, + 17899, + 15535 + ]], + [[ + 17898, + 15420, + 15440 + ]], + [[ + 15535, + 17899, + 17896 + ]], + [[ + 15534, + 15420, + 17899 + ]], + [[ + 17899, + 15420, + 17898 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baedc2c50-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeeec549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17898, + 17897, + 17896 + ]], + [[ + 17898, + 17896, + 17899 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baedd648a-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeeed149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17900, + 16197, + 17901 + ]], + [[ + 17900, + 17901, + 17902 + ]], + [[ + 17901, + 17903, + 17904 + ]], + [[ + 17901, + 16197, + 17905 + ]], + [[ + 17901, + 17905, + 17903 + ]], + [[ + 17903, + 17905, + 17906 + ]], + [[ + 17905, + 16197, + 16180 + ]], + [[ + 17905, + 17907, + 17908 + ]], + [[ + 17907, + 17905, + 16180 + ]], + [[ + 17907, + 16180, + 17909 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baee30a16-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 9969, + 14460, + 9970 + ]], + [[ + 9971, + 17890, + 17889 + ]], + [[ + 17891, + 15729, + 15728 + ]], + [[ + 9968, + 9971, + 17889 + ]], + [[ + 17890, + 15729, + 17891 + ]], + [[ + 17566, + 9968, + 17889 + ]], + [[ + 14442, + 15729, + 17890 + ]], + [[ + 17888, + 17891, + 15728 + ]], + [[ + 14460, + 14442, + 9970 + ]], + [[ + 17566, + 17888, + 15728 + ]], + [[ + 14460, + 9969, + 17567 + ]], + [[ + 17889, + 17888, + 17566 + ]], + [[ + 14442, + 17890, + 9971 + ]], + [[ + 9970, + 14442, + 9971 + ]], + [[ + 17567, + 9968, + 17566 + ]], + [[ + 9969, + 9968, + 17567 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baee50621-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17910, + 17911, + 14746 + ]], + [[ + 17912, + 17910, + 14734 + ]], + [[ + 14732, + 17912, + 14734 + ]], + [[ + 17910, + 14746, + 14747 + ]], + [[ + 14732, + 17913, + 17912 + ]], + [[ + 14732, + 14746, + 17911 + ]], + [[ + 17913, + 14732, + 17911 + ]], + [[ + 14734, + 17910, + 14747 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baee6656b-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17698, + 17812, + 17699 + ]], + [[ + 17698, + 17697, + 17811 + ]], + [[ + 17812, + 17698, + 17811 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baee70214-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef344b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15292, + 15237, + 15301 + ]], + [[ + 15237, + 15261, + 15301 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baee86179-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef32d549cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 13131, + 13041, + 13037 + ]], + [[ + 13131, + 13037, + 13136 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baeeea27e-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eedb4f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "verkeersdrempel", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16945, + 16092, + 16136 + ]], + [[ + 16945, + 16136, + 16946 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baef24c20-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef32d449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 11785, + 13125, + 13139 + ]], + [[ + 11785, + 13139, + 11772 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baef3f9c3-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eec1f849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17914, + 16270, + 16269 + ]], + [[ + 17915, + 17916, + 16279 + ]], + [[ + 17917, + 17918, + 17919 + ]], + [[ + 17920, + 17870, + 16275 + ]], + [[ + 16279, + 17916, + 16284 + ]], + [[ + 16284, + 17916, + 16283 + ]], + [[ + 16283, + 17916, + 16282 + ]], + [[ + 16282, + 17916, + 16281 + ]], + [[ + 16281, + 17916, + 16280 + ]], + [[ + 16280, + 17916, + 16272 + ]], + [[ + 16272, + 17921, + 16278 + ]], + [[ + 16278, + 17921, + 16277 + ]], + [[ + 16277, + 17921, + 16276 + ]], + [[ + 17922, + 16275, + 16274 + ]], + [[ + 16276, + 17921, + 16274 + ]], + [[ + 17923, + 17920, + 16275 + ]], + [[ + 17924, + 17923, + 16275 + ]], + [[ + 17925, + 17924, + 16275 + ]], + [[ + 17926, + 17925, + 16275 + ]], + [[ + 17927, + 17926, + 16275 + ]], + [[ + 17922, + 17927, + 16275 + ]], + [[ + 17928, + 17922, + 16274 + ]], + [[ + 17921, + 17928, + 16274 + ]], + [[ + 17921, + 17929, + 17928 + ]], + [[ + 17921, + 17930, + 17929 + ]], + [[ + 17921, + 17931, + 17930 + ]], + [[ + 17932, + 17933, + 17931 + ]], + [[ + 17934, + 17935, + 17933 + ]], + [[ + 17936, + 17937, + 17935 + ]], + [[ + 17938, + 17939, + 17937 + ]], + [[ + 17940, + 17941, + 17939 + ]], + [[ + 17942, + 17943, + 17941 + ]], + [[ + 17944, + 17945, + 17943 + ]], + [[ + 17946, + 17947, + 17945 + ]], + [[ + 17948, + 17949, + 17947 + ]], + [[ + 17950, + 17951, + 17949 + ]], + [[ + 17952, + 17953, + 17951 + ]], + [[ + 17954, + 17955, + 17953 + ]], + [[ + 17956, + 17957, + 17955 + ]], + [[ + 17919, + 17958, + 17957 + ]], + [[ + 17917, + 17919, + 17957 + ]], + [[ + 16270, + 17915, + 16279 + ]], + [[ + 17959, + 17917, + 17957 + ]], + [[ + 17960, + 17959, + 17957 + ]], + [[ + 17961, + 17960, + 17957 + ]], + [[ + 17962, + 17961, + 17957 + ]], + [[ + 17963, + 17962, + 17957 + ]], + [[ + 17964, + 17963, + 17957 + ]], + [[ + 17956, + 17964, + 17957 + ]], + [[ + 17954, + 17956, + 17955 + ]], + [[ + 17952, + 17954, + 17953 + ]], + [[ + 17950, + 17952, + 17951 + ]], + [[ + 17948, + 17950, + 17949 + ]], + [[ + 17946, + 17948, + 17947 + ]], + [[ + 17944, + 17946, + 17945 + ]], + [[ + 17942, + 17944, + 17943 + ]], + [[ + 17940, + 17942, + 17941 + ]], + [[ + 17938, + 17940, + 17939 + ]], + [[ + 17936, + 17938, + 17937 + ]], + [[ + 17934, + 17936, + 17935 + ]], + [[ + 17932, + 17934, + 17933 + ]], + [[ + 17921, + 17932, + 17931 + ]], + [[ + 17921, + 17965, + 17932 + ]], + [[ + 17966, + 17967, + 17965 + ]], + [[ + 17968, + 17966, + 17965 + ]], + [[ + 17969, + 17968, + 17965 + ]], + [[ + 17970, + 17969, + 17965 + ]], + [[ + 17971, + 17972, + 17969 + ]], + [[ + 17971, + 17973, + 17972 + ]], + [[ + 17974, + 17971, + 17969 + ]], + [[ + 17974, + 17975, + 17971 + ]], + [[ + 17976, + 17974, + 17969 + ]], + [[ + 17976, + 17977, + 17974 + ]], + [[ + 17976, + 17978, + 17977 + ]], + [[ + 17976, + 17979, + 17978 + ]], + [[ + 17970, + 17976, + 17969 + ]], + [[ + 17980, + 17981, + 17976 + ]], + [[ + 17970, + 17980, + 17976 + ]], + [[ + 17921, + 17970, + 17965 + ]], + [[ + 17982, + 17983, + 17970 + ]], + [[ + 17921, + 17982, + 17970 + ]], + [[ + 17916, + 17921, + 16272 + ]], + [[ + 16270, + 17984, + 17915 + ]], + [[ + 16285, + 17985, + 16269 + ]], + [[ + 16285, + 16286, + 16830 + ]], + [[ + 16270, + 17986, + 17984 + ]], + [[ + 17986, + 16270, + 17987 + ]], + [[ + 17986, + 17987, + 17988 + ]], + [[ + 16270, + 17914, + 17987 + ]], + [[ + 16269, + 17985, + 17914 + ]], + [[ + 16286, + 16287, + 16846 + ]], + [[ + 17985, + 16285, + 17989 + ]], + [[ + 17989, + 16285, + 17990 + ]], + [[ + 17990, + 16285, + 16830 + ]], + [[ + 16830, + 16286, + 16831 + ]], + [[ + 16831, + 16286, + 16853 + ]], + [[ + 16853, + 16286, + 16852 + ]], + [[ + 16852, + 16286, + 16851 + ]], + [[ + 16851, + 16286, + 16850 + ]], + [[ + 16850, + 16286, + 16849 + ]], + [[ + 16849, + 16286, + 16848 + ]], + [[ + 16848, + 16286, + 16847 + ]], + [[ + 16847, + 16286, + 16846 + ]], + [[ + 16846, + 16287, + 16845 + ]], + [[ + 16845, + 16287, + 16844 + ]], + [[ + 16844, + 16287, + 16843 + ]], + [[ + 16843, + 16287, + 16842 + ]], + [[ + 16842, + 16287, + 16841 + ]], + [[ + 16841, + 16287, + 16840 + ]], + [[ + 16839, + 16840, + 17991 + ]], + [[ + 16838, + 16839, + 17991 + ]], + [[ + 16832, + 16838, + 17991 + ]], + [[ + 16837, + 16832, + 17991 + ]], + [[ + 16836, + 16837, + 17991 + ]], + [[ + 17869, + 16835, + 16834 + ]], + [[ + 16834, + 16836, + 17868 + ]], + [[ + 16833, + 16835, + 17859 + ]], + [[ + 17858, + 16833, + 17859 + ]], + [[ + 17859, + 16835, + 17863 + ]], + [[ + 17863, + 16835, + 17869 + ]], + [[ + 17869, + 16834, + 17868 + ]], + [[ + 17868, + 16836, + 17867 + ]], + [[ + 17867, + 16836, + 17991 + ]], + [[ + 17866, + 17867, + 17991 + ]], + [[ + 17864, + 17866, + 17991 + ]], + [[ + 17865, + 17864, + 17991 + ]], + [[ + 17865, + 17991, + 17992 + ]], + [[ + 16840, + 16287, + 17991 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baef46f44-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17260, + 16287, + 17259 + ]], + [[ + 17259, + 16287, + 16288 + ]], + [[ + 17260, + 17991, + 16287 + ]], + [[ + 17260, + 17261, + 17991 + ]], + [[ + 17991, + 17261, + 17992 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baefcac78-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17046, + 17045, + 14305 + ]], + [[ + 14285, + 17047, + 14305 + ]], + [[ + 17048, + 15792, + 15785 + ]], + [[ + 14305, + 17047, + 17046 + ]], + [[ + 14285, + 15792, + 17048 + ]], + [[ + 17045, + 17048, + 15785 + ]], + [[ + 17047, + 14285, + 17048 + ]], + [[ + 14305, + 17045, + 15785 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baefd21e7-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef345349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16026, + 16093, + 16114 + ]], + [[ + 16093, + 16113, + 16114 + ]], + [[ + 16113, + 16093, + 16111 + ]], + [[ + 16111, + 16093, + 16112 + ]], + [[ + 16112, + 16093, + 16106 + ]], + [[ + 16106, + 16093, + 16110 + ]], + [[ + 16110, + 16093, + 16107 + ]], + [[ + 16107, + 16093, + 16109 + ]], + [[ + 16109, + 16093, + 16108 + ]], + [[ + 16108, + 16093, + 16103 + ]], + [[ + 16103, + 16093, + 16104 + ]], + [[ + 16104, + 16093, + 16105 + ]], + [[ + 16105, + 16093, + 16099 + ]], + [[ + 16099, + 16093, + 16100 + ]], + [[ + 16100, + 16093, + 16102 + ]], + [[ + 16102, + 16093, + 16101 + ]], + [[ + 16101, + 16093, + 16098 + ]], + [[ + 16098, + 16093, + 16096 + ]], + [[ + 16096, + 16093, + 16097 + ]], + [[ + 16097, + 16093, + 16095 + ]], + [[ + 16095, + 16093, + 16080 + ]], + [[ + 16080, + 16093, + 16025 + ]], + [[ + 16093, + 16081, + 16025 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf005617-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef4e49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16787, + 11877, + 16316 + ]], + [[ + 16313, + 16315, + 17561 + ]], + [[ + 17561, + 16315, + 15473 + ]], + [[ + 11879, + 16785, + 16784 + ]], + [[ + 16315, + 15472, + 15473 + ]], + [[ + 11877, + 15472, + 16316 + ]], + [[ + 17563, + 16314, + 16313 + ]], + [[ + 16316, + 15472, + 16315 + ]], + [[ + 17562, + 16313, + 17561 + ]], + [[ + 17562, + 17563, + 16313 + ]], + [[ + 11879, + 11877, + 16786 + ]], + [[ + 16787, + 16786, + 11877 + ]], + [[ + 16785, + 11879, + 16786 + ]], + [[ + 16314, + 16787, + 16316 + ]], + [[ + 16314, + 17563, + 16784 + ]], + [[ + 16314, + 16784, + 16787 + ]], + [[ + 17563, + 11879, + 16784 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf00f2b1-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef344949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15746, + 12536, + 17565 + ]], + [[ + 15746, + 17565, + 15742 + ]], + [[ + 12536, + 12538, + 17565 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf01b573-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef33c249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16300, + 16299, + 16302 + ]], + [[ + 16300, + 16302, + 16309 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf03b16f-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef5b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16872, + 16974, + 16892 + ]], + [[ + 16974, + 16871, + 16892 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf03b17b-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17910, + 17912, + 17913 + ]], + [[ + 17910, + 17913, + 17911 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf053805-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eebe0649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16000, + 15999, + 16021 + ]], + [[ + 16000, + 16028, + 16344 + ]], + [[ + 16056, + 16057, + 15910 + ]], + [[ + 16973, + 16028, + 16891 + ]], + [[ + 16890, + 16891, + 16028 + ]], + [[ + 16889, + 16890, + 16028 + ]], + [[ + 16888, + 16889, + 16051 + ]], + [[ + 16887, + 16888, + 16051 + ]], + [[ + 16886, + 16887, + 16051 + ]], + [[ + 16885, + 16886, + 16051 + ]], + [[ + 16884, + 16885, + 16051 + ]], + [[ + 16883, + 16884, + 16051 + ]], + [[ + 16882, + 16883, + 15910 + ]], + [[ + 16881, + 16882, + 15910 + ]], + [[ + 16880, + 16881, + 15910 + ]], + [[ + 16879, + 16880, + 15910 + ]], + [[ + 16878, + 16879, + 15910 + ]], + [[ + 16877, + 16878, + 15910 + ]], + [[ + 16876, + 16877, + 15910 + ]], + [[ + 16875, + 15910, + 15909 + ]], + [[ + 16874, + 15910, + 16875 + ]], + [[ + 16874, + 16876, + 15910 + ]], + [[ + 15910, + 16883, + 16051 + ]], + [[ + 16345, + 16028, + 16973 + ]], + [[ + 15910, + 16055, + 16056 + ]], + [[ + 15910, + 16053, + 16055 + ]], + [[ + 15910, + 16054, + 16053 + ]], + [[ + 15910, + 16052, + 16054 + ]], + [[ + 16051, + 16889, + 16028 + ]], + [[ + 15910, + 16050, + 16052 + ]], + [[ + 16345, + 16344, + 16028 + ]], + [[ + 16050, + 15910, + 16051 + ]], + [[ + 16028, + 16000, + 16021 + ]], + [[ + 16026, + 16021, + 16894 + ]], + [[ + 16093, + 16026, + 15881 + ]], + [[ + 16136, + 16093, + 16972 + ]], + [[ + 16946, + 16136, + 16972 + ]], + [[ + 16972, + 16093, + 15881 + ]], + [[ + 15856, + 16972, + 15881 + ]], + [[ + 16026, + 16894, + 15881 + ]], + [[ + 16021, + 16896, + 16894 + ]], + [[ + 16021, + 15999, + 16896 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf05864c-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef6349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 2838, + 3009, + 3011 + ]], + [[ + 16661, + 16662, + 1074 + ]], + [[ + 2842, + 16653, + 2848 + ]], + [[ + 16653, + 2854, + 2856 + ]], + [[ + 16653, + 1092, + 2854 + ]], + [[ + 16662, + 16663, + 1074 + ]], + [[ + 16664, + 16049, + 1074 + ]], + [[ + 1091, + 16652, + 1090 + ]], + [[ + 1090, + 16652, + 1089 + ]], + [[ + 1089, + 16652, + 1088 + ]], + [[ + 1088, + 16652, + 1087 + ]], + [[ + 1087, + 16652, + 1086 + ]], + [[ + 1086, + 16652, + 1085 + ]], + [[ + 1085, + 16654, + 1084 + ]], + [[ + 1084, + 16654, + 1082 + ]], + [[ + 1082, + 16654, + 1081 + ]], + [[ + 1081, + 16655, + 1080 + ]], + [[ + 1080, + 16655, + 1079 + ]], + [[ + 1079, + 16655, + 1078 + ]], + [[ + 1078, + 16655, + 1077 + ]], + [[ + 16655, + 1075, + 1076 + ]], + [[ + 16655, + 1074, + 1075 + ]], + [[ + 1077, + 16655, + 1076 + ]], + [[ + 16665, + 16057, + 16049 + ]], + [[ + 16664, + 16665, + 16049 + ]], + [[ + 16663, + 16664, + 1074 + ]], + [[ + 1092, + 16652, + 1091 + ]], + [[ + 2848, + 16653, + 2856 + ]], + [[ + 2838, + 3011, + 2842 + ]], + [[ + 1074, + 16660, + 16661 + ]], + [[ + 1074, + 16658, + 16660 + ]], + [[ + 1074, + 16659, + 16658 + ]], + [[ + 1074, + 16657, + 16659 + ]], + [[ + 1074, + 16656, + 16657 + ]], + [[ + 1074, + 16655, + 16656 + ]], + [[ + 1081, + 16654, + 16655 + ]], + [[ + 1085, + 16652, + 16654 + ]], + [[ + 1092, + 16653, + 16652 + ]], + [[ + 6859, + 6860, + 16649 + ]], + [[ + 16651, + 6859, + 16649 + ]], + [[ + 16758, + 6858, + 16651 + ]], + [[ + 16651, + 6858, + 6859 + ]], + [[ + 16759, + 16758, + 16651 + ]], + [[ + 3007, + 3006, + 16759 + ]], + [[ + 3006, + 6818, + 16759 + ]], + [[ + 16651, + 3007, + 16759 + ]], + [[ + 16653, + 3007, + 16651 + ]], + [[ + 16653, + 3011, + 3007 + ]], + [[ + 16653, + 2842, + 3011 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf067030-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef344d49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 14738, + 14237, + 14748 + ]], + [[ + 14237, + 14234, + 14748 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf06be8c-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef32d349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 15421, + 11769, + 15442 + ]], + [[ + 11769, + 11793, + 15442 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf084513-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16085, + 16094, + 16091 + ]], + [[ + 16094, + 16135, + 16091 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf0b7934-00c9-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eee4b249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16777, + 8312, + 17806 + ]], + [[ + 17806, + 8312, + 17887 + ]], + [[ + 8356, + 16777, + 8353 + ]], + [[ + 17886, + 17887, + 8312 + ]], + [[ + 17885, + 17886, + 8312 + ]], + [[ + 17884, + 17885, + 8312 + ]], + [[ + 17883, + 17884, + 8312 + ]], + [[ + 17882, + 17883, + 8312 + ]], + [[ + 17881, + 17882, + 8312 + ]], + [[ + 17880, + 17881, + 8312 + ]], + [[ + 17879, + 17880, + 8312 + ]], + [[ + 17878, + 17879, + 8312 + ]], + [[ + 17877, + 17878, + 8312 + ]], + [[ + 17871, + 17877, + 8312 + ]], + [[ + 17876, + 17871, + 8312 + ]], + [[ + 17875, + 17876, + 8312 + ]], + [[ + 17874, + 17875, + 8312 + ]], + [[ + 17873, + 17874, + 8312 + ]], + [[ + 17872, + 17873, + 8312 + ]], + [[ + 16082, + 17872, + 8312 + ]], + [[ + 8312, + 16777, + 8336 + ]], + [[ + 8336, + 16777, + 8333 + ]], + [[ + 8335, + 8336, + 8334 + ]], + [[ + 8336, + 8333, + 8334 + ]], + [[ + 8353, + 16777, + 783 + ]], + [[ + 8333, + 16777, + 8332 + ]], + [[ + 8332, + 16777, + 8356 + ]], + [[ + 8355, + 8356, + 8354 + ]], + [[ + 8356, + 8353, + 8354 + ]], + [[ + 783, + 16777, + 782 + ]], + [[ + 8353, + 783, + 747 + ]], + [[ + 16777, + 16778, + 841 + ]], + [[ + 842, + 16777, + 841 + ]], + [[ + 781, + 782, + 779 + ]], + [[ + 781, + 779, + 780 + ]], + [[ + 782, + 16777, + 779 + ]], + [[ + 779, + 16777, + 778 + ]], + [[ + 778, + 16777, + 845 + ]], + [[ + 844, + 845, + 843 + ]], + [[ + 845, + 842, + 843 + ]], + [[ + 845, + 16777, + 842 + ]], + [[ + 841, + 16778, + 548 + ]], + [[ + 535, + 841, + 548 + ]], + [[ + 7323, + 16778, + 7322 + ]], + [[ + 547, + 548, + 546 + ]], + [[ + 548, + 545, + 546 + ]], + [[ + 548, + 16778, + 545 + ]], + [[ + 545, + 16778, + 544 + ]], + [[ + 544, + 16778, + 7299 + ]], + [[ + 7298, + 7299, + 7296 + ]], + [[ + 7298, + 7296, + 7297 + ]], + [[ + 7299, + 16778, + 7296 + ]], + [[ + 7296, + 7323, + 7294 + ]], + [[ + 7296, + 16778, + 7323 + ]], + [[ + 7534, + 16778, + 7533 + ]], + [[ + 7321, + 7322, + 7320 + ]], + [[ + 7322, + 7319, + 7320 + ]], + [[ + 7322, + 16778, + 7319 + ]], + [[ + 7319, + 16778, + 7317 + ]], + [[ + 7317, + 16778, + 7537 + ]], + [[ + 7536, + 7537, + 7534 + ]], + [[ + 7536, + 7534, + 7535 + ]], + [[ + 7537, + 16778, + 7534 + ]], + [[ + 7533, + 16778, + 7504 + ]], + [[ + 7515, + 7533, + 7504 + ]], + [[ + 7504, + 16778, + 7509 + ]], + [[ + 7449, + 7509, + 16760 + ]], + [[ + 16764, + 7475, + 7476 + ]], + [[ + 7476, + 7449, + 16760 + ]], + [[ + 7474, + 7475, + 7473 + ]], + [[ + 7473, + 7475, + 7472 + ]], + [[ + 16764, + 7471, + 7472 + ]], + [[ + 7472, + 7475, + 16764 + ]], + [[ + 7470, + 7471, + 7469 + ]], + [[ + 16764, + 7468, + 7471 + ]], + [[ + 7469, + 7471, + 7468 + ]], + [[ + 16764, + 7467, + 7468 + ]], + [[ + 7466, + 7467, + 7464 + ]], + [[ + 17857, + 7464, + 7467 + ]], + [[ + 7465, + 7466, + 7464 + ]], + [[ + 17857, + 7463, + 7464 + ]], + [[ + 7462, + 7463, + 7461 + ]], + [[ + 17857, + 7460, + 7463 + ]], + [[ + 7461, + 7463, + 7460 + ]], + [[ + 17857, + 7459, + 7460 + ]], + [[ + 16618, + 7459, + 17857 + ]], + [[ + 17857, + 7467, + 16764 + ]], + [[ + 7476, + 16760, + 16764 + ]], + [[ + 7509, + 16778, + 16760 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "baf3f295d-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef68e749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 3243, + 3242, + 3234 + ]], + [[ + 3243, + 3234, + 3398 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "baf3f2966-2d29-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef663a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 5950, + 5945, + 17993 + ]], + [[ + 5945, + 17994, + 17993 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "bbdc52a89-00b3-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "stuw", + "bronhouder": "W0372", + "creationdate": "", + "inonderzoek": "", + "lokaalid": "G0503.032e68f09ead49cce0532ee22091b28c", + "lv_publicatiedatum": "", + "namespace": "NL.IMGeo", + "plus_status": "", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "", + "tijdstipregistratie": "" + }, + "geometry": [{ + "boundaries": [ + [[ + 17076, + 17634, + 17077 + ]], + [[ + 17634, + 17635, + 17077 + ]], + [[ + 17080, + 17636, + 17076 + ]], + [[ + 17076, + 17636, + 17634 + ]], + [[ + 17637, + 17081, + 17635 + ]], + [[ + 17635, + 17081, + 17077 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "bdce6a385-fd58-11e5-8acc-1fc21a78c5fd": { + "attributes": { + "bgt_fysiekvoorkomen": "gesloten verharding", + "bgt_status": "bestaand", + "bronhouder": "P0028", + "creationdate": "2013-08-07", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "P0028.97986f98d554454a8a839c15b513a8e4", + "lv_publicatiedatum": "2015-11-30T11:11:19.000", + "namespace": "NL.IMGeo", + "onbegroeidterreindeeloptalud": "0", + "plus_fysiekvoorkomen": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2015-11-27T10:24:41.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17995, + 17996, + 17997 + ]], + [[ + 17998, + 5486, + 4891 + ]], + [[ + 17999, + 18000, + 4891 + ]], + [[ + 17996, + 5486, + 17998 + ]], + [[ + 18000, + 18001, + 4891 + ]], + [[ + 17997, + 11244, + 11217 + ]], + [[ + 11244, + 17999, + 4891 + ]], + [[ + 11244, + 18002, + 17999 + ]], + [[ + 18003, + 18004, + 17998 + ]], + [[ + 11217, + 5486, + 18005 + ]], + [[ + 18001, + 17998, + 4891 + ]], + [[ + 18001, + 18002, + 18006 + ]], + [[ + 18000, + 18002, + 18001 + ]], + [[ + 18000, + 17999, + 18002 + ]], + [[ + 18001, + 18003, + 17998 + ]], + [[ + 18006, + 11244, + 18004 + ]], + [[ + 18007, + 17995, + 17997 + ]], + [[ + 18008, + 18004, + 17997 + ]], + [[ + 18009, + 17995, + 18007 + ]], + [[ + 17996, + 18010, + 17997 + ]], + [[ + 18005, + 18007, + 11217 + ]], + [[ + 18005, + 18009, + 18007 + ]], + [[ + 18010, + 17996, + 17998 + ]], + [[ + 18009, + 5486, + 17996 + ]], + [[ + 17995, + 18009, + 17996 + ]], + [[ + 18005, + 5486, + 18009 + ]], + [[ + 17998, + 18008, + 18010 + ]], + [[ + 18004, + 11244, + 17997 + ]], + [[ + 17998, + 18004, + 18008 + ]], + [[ + 18003, + 18001, + 18006 + ]], + [[ + 18003, + 18006, + 18004 + ]], + [[ + 18002, + 11244, + 18006 + ]], + [[ + 18007, + 17997, + 11217 + ]], + [[ + 18010, + 18008, + 17997 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "LandUse" + }, + "be252b118-2d37-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "kademuur", + "bronhouder": "W0372", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f09a6949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 18011, + 18012, + 18013 + ]], + [[ + 18011, + 18013, + 18014 + ]], + [[ + 18015, + 18016, + 18011 + ]], + [[ + 18011, + 18016, + 18012 + ]], + [[ + 18017, + 18015, + 18014 + ]], + [[ + 18014, + 18015, + 18011 + ]], + [[ + 18018, + 18017, + 18013 + ]], + [[ + 18013, + 18017, + 18014 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "be2539be1-2d37-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bgt_type": "kademuur", + "bronhouder": "W0372", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f0986649cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-06-06T07:57:13.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 4964, + 18019, + 18012 + ]], + [[ + 4964, + 18020, + 11518 + ]], + [[ + 4964, + 18012, + 18020 + ]], + [[ + 18019, + 18013, + 18012 + ]], + [[ + 18019, + 18021, + 18013 + ]], + [[ + 18019, + 18022, + 18021 + ]], + [[ + 18021, + 18022, + 30 + ]], + [[ + 28, + 30, + 5621 + ]], + [[ + 28, + 18023, + 29 + ]], + [[ + 18023, + 28, + 5621 + ]], + [[ + 30, + 18022, + 5621 + ]], + [[ + 4965, + 4964, + 11518 + ]], + [[ + 11511, + 11518, + 18020 + ]], + [[ + 18016, + 11521, + 18012 + ]], + [[ + 18012, + 11521, + 11511 + ]], + [[ + 18012, + 11511, + 18020 + ]], + [[ + 18024, + 18018, + 18021 + ]], + [[ + 18021, + 18018, + 18013 + ]], + [[ + 15, + 18024, + 30 + ]], + [[ + 30, + 18024, + 18021 + ]], + [[ + 13, + 15, + 28 + ]], + [[ + 28, + 15, + 30 + ]], + [[ + 11, + 13, + 27 + ]], + [[ + 27, + 13, + 29 + ]], + [[ + 29, + 13, + 28 + ]], + [[ + 5643, + 27, + 18023 + ]], + [[ + 18023, + 27, + 29 + ]], + [[ + 5621, + 5643, + 18023 + ]], + [[ + 4804, + 5621, + 18022 + ]], + [[ + 4805, + 4804, + 18019 + ]], + [[ + 18019, + 4804, + 18022 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "+GenericCityObject" + }, + "bea630875-00b8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "dek", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoortbijtypeoverbrugging": "waardeOnbekend", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f09d6f49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "overbruggingisbeweegbaar": "0", + "plus_status": "geenWaarde", + "relatievehoogteligging": "1", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 18025, + 17793, + 17261 + ]], + [[ + 18025, + 17263, + 17793 + ]], + [[ + 17793, + 18026, + 17261 + ]], + [[ + 18027, + 18028, + 18029 + ]], + [[ + 18030, + 18026, + 18031 + ]], + [[ + 18032, + 18033, + 18034 + ]], + [[ + 18028, + 18030, + 18035 + ]], + [[ + 18033, + 18027, + 18036 + ]], + [[ + 18034, + 18033, + 18036 + ]], + [[ + 18036, + 18027, + 18029 + ]], + [[ + 18029, + 18028, + 18035 + ]], + [[ + 18035, + 18030, + 18031 + ]], + [[ + 18031, + 18026, + 18037 + ]], + [[ + 18037, + 18026, + 18038 + ]], + [[ + 18038, + 18026, + 17793 + ]], + [[ + 17248, + 17263, + 18025 + ]], + [[ + 17247, + 17263, + 17248 + ]], + [[ + 17250, + 18025, + 17261 + ]], + [[ + 17248, + 18025, + 17250 + ]], + [[ + 17992, + 17261, + 18026 + ]], + [[ + 17865, + 18026, + 18030 + ]], + [[ + 17992, + 18026, + 17865 + ]], + [[ + 17860, + 18030, + 18028 + ]], + [[ + 17865, + 18030, + 17860 + ]], + [[ + 17862, + 18028, + 18027 + ]], + [[ + 17860, + 18028, + 17862 + ]], + [[ + 15954, + 18029, + 18035 + ]], + [[ + 15953, + 18029, + 15954 + ]], + [[ + 17812, + 18035, + 18031 + ]], + [[ + 15954, + 18035, + 17812 + ]], + [[ + 17699, + 18031, + 18037 + ]], + [[ + 17812, + 18031, + 17699 + ]], + [[ + 17695, + 18037, + 18038 + ]], + [[ + 17699, + 18037, + 17695 + ]], + [[ + 17696, + 18038, + 17793 + ]], + [[ + 17695, + 18038, + 17696 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Bridge" + }, + "bea632f90-00b8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "class": "dek", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoortbijtypeoverbrugging": "waardeOnbekend", + "inonderzoek": "0", + "lokaalid": "G0503.032e68f09df249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "overbruggingisbeweegbaar": "0", + "plus_status": "geenWaarde", + "relatievehoogteligging": "1", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17797, + 18039, + 18040 + ]], + [[ + 17797, + 16206, + 18039 + ]], + [[ + 18039, + 16202, + 16264 + ]], + [[ + 16268, + 18041, + 1051 + ]], + [[ + 16202, + 18039, + 16206 + ]], + [[ + 16206, + 17797, + 16205 + ]], + [[ + 16205, + 17797, + 16268 + ]], + [[ + 16203, + 16205, + 16268 + ]], + [[ + 16261, + 16203, + 16256 + ]], + [[ + 16255, + 16261, + 16256 + ]], + [[ + 16203, + 16268, + 16256 + ]], + [[ + 17797, + 18041, + 16268 + ]], + [[ + 16262, + 16256, + 16268 + ]], + [[ + 1045, + 1051, + 18041 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Bridge" + }, + "bedab6302-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "W0372", + "class": "waterloop", + "creationdate": "2014-07-09", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff33a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 18042, + 17361, + 17362 + ]], + [[ + 18043, + 18044, + 17171 + ]], + [[ + 16268, + 1045, + 17171 + ]], + [[ + 1054, + 17170, + 17171 + ]], + [[ + 1045, + 1051, + 17171 + ]], + [[ + 17171, + 1051, + 1054 + ]], + [[ + 17797, + 1046, + 1045 + ]], + [[ + 17801, + 17559, + 17560 + ]], + [[ + 1046, + 17798, + 17560 + ]], + [[ + 17558, + 17559, + 17770 + ]], + [[ + 17774, + 17557, + 17773 + ]], + [[ + 17556, + 17557, + 17776 + ]], + [[ + 17778, + 17554, + 17555 + ]], + [[ + 17555, + 17556, + 17777 + ]], + [[ + 17780, + 17552, + 17553 + ]], + [[ + 17553, + 17554, + 17779 + ]], + [[ + 17780, + 17551, + 17552 + ]], + [[ + 17780, + 17550, + 17551 + ]], + [[ + 17781, + 17549, + 17550 + ]], + [[ + 17781, + 17548, + 17549 + ]], + [[ + 17781, + 17547, + 17548 + ]], + [[ + 17781, + 17546, + 17547 + ]], + [[ + 17783, + 17545, + 17546 + ]], + [[ + 17784, + 17544, + 17545 + ]], + [[ + 17785, + 17543, + 17544 + ]], + [[ + 17786, + 17542, + 17543 + ]], + [[ + 17787, + 17541, + 17542 + ]], + [[ + 17788, + 17540, + 17541 + ]], + [[ + 17788, + 17539, + 17540 + ]], + [[ + 17789, + 17538, + 17539 + ]], + [[ + 17790, + 17537, + 17538 + ]], + [[ + 17536, + 17537, + 17790 + ]], + [[ + 17265, + 17534, + 17535 + ]], + [[ + 17535, + 17536, + 17264 + ]], + [[ + 17081, + 17532, + 17534 + ]], + [[ + 17533, + 17532, + 17637 + ]], + [[ + 17637, + 17532, + 17081 + ]], + [[ + 17081, + 17534, + 17082 + ]], + [[ + 17082, + 17534, + 17265 + ]], + [[ + 17265, + 17535, + 17264 + ]], + [[ + 17264, + 17536, + 17263 + ]], + [[ + 17262, + 17264, + 17263 + ]], + [[ + 17263, + 17536, + 17793 + ]], + [[ + 17793, + 17536, + 17792 + ]], + [[ + 17792, + 17536, + 17791 + ]], + [[ + 17791, + 17536, + 17790 + ]], + [[ + 17790, + 17538, + 17789 + ]], + [[ + 17789, + 17539, + 17788 + ]], + [[ + 17788, + 17541, + 17787 + ]], + [[ + 17787, + 17542, + 17786 + ]], + [[ + 17786, + 17543, + 17785 + ]], + [[ + 17785, + 17544, + 17784 + ]], + [[ + 17784, + 17545, + 17783 + ]], + [[ + 17783, + 17546, + 17782 + ]], + [[ + 17782, + 17546, + 17781 + ]], + [[ + 17781, + 17550, + 17780 + ]], + [[ + 17780, + 17553, + 17779 + ]], + [[ + 17779, + 17554, + 17778 + ]], + [[ + 17778, + 17555, + 17777 + ]], + [[ + 18045, + 18046, + 17174 + ]], + [[ + 17777, + 17556, + 17776 + ]], + [[ + 17776, + 17557, + 17774 + ]], + [[ + 17776, + 17774, + 17775 + ]], + [[ + 17557, + 17558, + 17772 + ]], + [[ + 17773, + 17557, + 17772 + ]], + [[ + 17772, + 17558, + 17771 + ]], + [[ + 17771, + 17558, + 17769 + ]], + [[ + 17769, + 17558, + 17770 + ]], + [[ + 17371, + 17372, + 17171 + ]], + [[ + 17770, + 17559, + 17801 + ]], + [[ + 17801, + 17560, + 17800 + ]], + [[ + 17800, + 17560, + 17798 + ]], + [[ + 18047, + 18048, + 18042 + ]], + [[ + 17799, + 17800, + 17798 + ]], + [[ + 1046, + 17797, + 17798 + ]], + [[ + 1045, + 16268, + 17797 + ]], + [[ + 18049, + 17178, + 17179 + ]], + [[ + 16268, + 17171, + 16266 + ]], + [[ + 16266, + 17171, + 17372 + ]], + [[ + 16267, + 16266, + 17372 + ]], + [[ + 17370, + 17371, + 17171 + ]], + [[ + 17369, + 17370, + 17171 + ]], + [[ + 17368, + 17369, + 17171 + ]], + [[ + 17171, + 17367, + 17368 + ]], + [[ + 17171, + 17366, + 17367 + ]], + [[ + 17171, + 17365, + 17366 + ]], + [[ + 17171, + 18050, + 17365 + ]], + [[ + 17365, + 18051, + 17364 + ]], + [[ + 18052, + 17180, + 17181 + ]], + [[ + 17363, + 17364, + 18053 + ]], + [[ + 17362, + 17363, + 18054 + ]], + [[ + 18042, + 17360, + 17361 + ]], + [[ + 18042, + 17359, + 17360 + ]], + [[ + 17356, + 17358, + 17359 + ]], + [[ + 17356, + 17357, + 17358 + ]], + [[ + 18055, + 17175, + 17176 + ]], + [[ + 17355, + 17357, + 17356 + ]], + [[ + 17174, + 17175, + 18045 + ]], + [[ + 17356, + 17359, + 18042 + ]], + [[ + 17174, + 18046, + 17173 + ]], + [[ + 18042, + 17362, + 18054 + ]], + [[ + 18056, + 18047, + 18042 + ]], + [[ + 18054, + 18056, + 18042 + ]], + [[ + 18057, + 18054, + 17363 + ]], + [[ + 18053, + 18057, + 17363 + ]], + [[ + 18051, + 18053, + 17364 + ]], + [[ + 18050, + 18051, + 17365 + ]], + [[ + 18058, + 18050, + 17171 + ]], + [[ + 18059, + 18058, + 17171 + ]], + [[ + 17172, + 18060, + 17171 + ]], + [[ + 17171, + 18061, + 18059 + ]], + [[ + 17171, + 18062, + 18061 + ]], + [[ + 17171, + 18063, + 18062 + ]], + [[ + 17171, + 18064, + 18063 + ]], + [[ + 17171, + 18044, + 18064 + ]], + [[ + 17172, + 17173, + 18046 + ]], + [[ + 17177, + 18065, + 17176 + ]], + [[ + 17171, + 18060, + 18043 + ]], + [[ + 17177, + 17178, + 18066 + ]], + [[ + 18055, + 18045, + 17175 + ]], + [[ + 18060, + 18067, + 18068 + ]], + [[ + 18060, + 17172, + 18067 + ]], + [[ + 17179, + 17180, + 18049 + ]], + [[ + 18046, + 18067, + 17172 + ]], + [[ + 18065, + 18055, + 17176 + ]], + [[ + 18069, + 18065, + 17177 + ]], + [[ + 18069, + 17177, + 18066 + ]], + [[ + 18066, + 17178, + 18049 + ]], + [[ + 18049, + 17180, + 18052 + ]], + [[ + 17183, + 17181, + 17182 + ]], + [[ + 18070, + 18052, + 18071 + ]], + [[ + 18072, + 18071, + 18073 + ]], + [[ + 18074, + 18072, + 18073 + ]], + [[ + 18075, + 18074, + 18073 + ]], + [[ + 18076, + 18077, + 18078 + ]], + [[ + 18079, + 18076, + 18080 + ]], + [[ + 18081, + 18079, + 18082 + ]], + [[ + 18083, + 18081, + 18084 + ]], + [[ + 18081, + 18085, + 18084 + ]], + [[ + 18081, + 18082, + 18085 + ]], + [[ + 18079, + 18080, + 18082 + ]], + [[ + 18077, + 18086, + 18087 + ]], + [[ + 18076, + 18078, + 18080 + ]], + [[ + 18077, + 18087, + 18078 + ]], + [[ + 18086, + 18088, + 18089 + ]], + [[ + 18086, + 18089, + 18087 + ]], + [[ + 18088, + 18075, + 18089 + ]], + [[ + 18075, + 18090, + 18089 + ]], + [[ + 18075, + 18073, + 18090 + ]], + [[ + 18071, + 17185, + 18073 + ]], + [[ + 18071, + 17184, + 17185 + ]], + [[ + 18071, + 18052, + 17183 + ]], + [[ + 18071, + 17183, + 17184 + ]], + [[ + 18052, + 17181, + 17183 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "WaterBody" + }, + "bedabd859-00c8-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "W0372", + "class": "waterloop", + "creationdate": "2015-04-22", + "eindregistratie": "", + "inonderzoek": "0", + "lokaalid": "G0503.016d65723c70442d8abf815e2dc165cd", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "namespace": "NL.IMGeo", + "plus_status": "geenWaarde", + "plus_type": "waardeOnbekend", + "relatievehoogteligging": "0", + "terminationdate": "", + "tijdstipregistratie": "2016-04-10T04:15:11.000" + }, + "geometry": [{ + "boundaries": [ + [[ + 17636, + 17080, + 17254 + ]], + [[ + 17636, + 17256, + 17531 + ]], + [[ + 19, + 18, + 1 + ]], + [[ + 17530, + 2, + 17529 + ]], + [[ + 17528, + 2, + 20 + ]], + [[ + 17528, + 19, + 1 + ]], + [[ + 6, + 4, + 5 + ]], + [[ + 5, + 4, + 7 + ]], + [[ + 11, + 7, + 10 + ]], + [[ + 18091, + 18017, + 18092 + ]], + [[ + 13, + 11, + 18093 + ]], + [[ + 15, + 13, + 14 + ]], + [[ + 18024, + 18017, + 18018 + ]], + [[ + 14, + 18024, + 15 + ]], + [[ + 18092, + 18017, + 18024 + ]], + [[ + 18016, + 18015, + 11521 + ]], + [[ + 11521, + 18015, + 18094 + ]], + [[ + 11521, + 18095, + 11522 + ]], + [[ + 11521, + 18096, + 18095 + ]], + [[ + 11521, + 18097, + 18096 + ]], + [[ + 18096, + 18098, + 18099 + ]], + [[ + 18098, + 18096, + 18097 + ]], + [[ + 18098, + 18097, + 18100 + ]], + [[ + 18092, + 18024, + 14 + ]], + [[ + 11521, + 18101, + 18097 + ]], + [[ + 11521, + 18094, + 18101 + ]], + [[ + 18015, + 18091, + 18094 + ]], + [[ + 18094, + 18091, + 18102 + ]], + [[ + 18015, + 18017, + 18091 + ]], + [[ + 4, + 9, + 7 + ]], + [[ + 16, + 3, + 8 + ]], + [[ + 18092, + 14, + 18103 + ]], + [[ + 3, + 1, + 8 + ]], + [[ + 13, + 18093, + 14 + ]], + [[ + 11, + 10, + 18093 + ]], + [[ + 7, + 9, + 10 + ]], + [[ + 16, + 17, + 9 + ]], + [[ + 4, + 16, + 9 + ]], + [[ + 4, + 3, + 16 + ]], + [[ + 17258, + 20, + 17257 + ]], + [[ + 1, + 18, + 8 + ]], + [[ + 2, + 17530, + 17257 + ]], + [[ + 20, + 19, + 17528 + ]], + [[ + 17531, + 17256, + 17530 + ]], + [[ + 2, + 17257, + 20 + ]], + [[ + 17530, + 17256, + 17257 + ]], + [[ + 17636, + 17255, + 17256 + ]], + [[ + 17636, + 17254, + 17255 + ]], + [[ + 17254, + 17080, + 17079 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "WaterBody" + }, + "bfce80032-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef6449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 18104, + 18105, + 18106 + ]], + [[ + 18104, + 18106, + 18107 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfce91150-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 5643, + 5642, + 27 + ]], + [[ + 5642, + 26, + 27 + ]], + [[ + 5642, + 16769, + 26 + ]], + [[ + 7, + 11, + 26 + ]], + [[ + 26, + 11, + 27 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfce93872-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 18108, + 18109, + 18110 + ]], + [[ + 18108, + 18110, + 18111 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfce95fa3-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca8849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 9780, + 5952, + 18110 + ]], + [[ + 9780, + 16979, + 9773 + ]], + [[ + 18110, + 18109, + 17807 + ]], + [[ + 17994, + 18112, + 18113 + ]], + [[ + 17807, + 18113, + 17808 + ]], + [[ + 17808, + 18113, + 18114 + ]], + [[ + 18114, + 18115, + 18116 + ]], + [[ + 18114, + 18117, + 18115 + ]], + [[ + 18114, + 18113, + 18117 + ]], + [[ + 18117, + 18118, + 18119 + ]], + [[ + 18117, + 18120, + 18118 + ]], + [[ + 18117, + 18121, + 18120 + ]], + [[ + 18120, + 18121, + 18122 + ]], + [[ + 18122, + 18121, + 18123 + ]], + [[ + 18123, + 18121, + 18124 + ]], + [[ + 18117, + 18113, + 18121 + ]], + [[ + 18121, + 18113, + 18125 + ]], + [[ + 18125, + 18126, + 18127 + ]], + [[ + 18125, + 18128, + 18126 + ]], + [[ + 18125, + 18129, + 18128 + ]], + [[ + 18128, + 18130, + 18131 + ]], + [[ + 18131, + 18130, + 18132 + ]], + [[ + 18128, + 18129, + 18130 + ]], + [[ + 18130, + 18129, + 18133 + ]], + [[ + 18125, + 18113, + 18129 + ]], + [[ + 17994, + 5945, + 5944 + ]], + [[ + 17994, + 5944, + 18112 + ]], + [[ + 18108, + 17993, + 17994 + ]], + [[ + 17993, + 18111, + 5950 + ]], + [[ + 18113, + 18109, + 17994 + ]], + [[ + 17807, + 18109, + 18113 + ]], + [[ + 17807, + 16979, + 18110 + ]], + [[ + 9780, + 18110, + 16979 + ]], + [[ + 18111, + 17993, + 18108 + ]], + [[ + 5952, + 18111, + 18110 + ]], + [[ + 5952, + 5950, + 18111 + ]], + [[ + 18109, + 18108, + 17994 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcea2371-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef229849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 9282, + 9545, + 3440 + ]], + [[ + 9545, + 9503, + 3440 + ]], + [[ + 3950, + 17007, + 3949 + ]], + [[ + 3949, + 17009, + 3948 + ]], + [[ + 3948, + 17010, + 3458 + ]], + [[ + 17003, + 3440, + 3478 + ]], + [[ + 17000, + 3478, + 3538 + ]], + [[ + 3478, + 17000, + 17003 + ]], + [[ + 9503, + 9770, + 3440 + ]], + [[ + 3903, + 16783, + 17013 + ]], + [[ + 3458, + 17000, + 3475 + ]], + [[ + 3951, + 17006, + 3950 + ]], + [[ + 9278, + 9282, + 3440 + ]], + [[ + 9274, + 9278, + 3440 + ]], + [[ + 9273, + 9274, + 3440 + ]], + [[ + 17003, + 9273, + 3440 + ]], + [[ + 17003, + 9272, + 9273 + ]], + [[ + 17003, + 9271, + 9272 + ]], + [[ + 17003, + 9269, + 9271 + ]], + [[ + 3437, + 17004, + 3951 + ]], + [[ + 9269, + 17003, + 9265 + ]], + [[ + 9264, + 9265, + 17003 + ]], + [[ + 9263, + 9264, + 17003 + ]], + [[ + 9262, + 9263, + 17003 + ]], + [[ + 9261, + 9262, + 17003 + ]], + [[ + 9258, + 9261, + 17003 + ]], + [[ + 9257, + 9258, + 17003 + ]], + [[ + 9256, + 9257, + 17003 + ]], + [[ + 9254, + 17003, + 9249 + ]], + [[ + 9249, + 17003, + 9247 + ]], + [[ + 3475, + 17000, + 3538 + ]], + [[ + 9254, + 9256, + 17003 + ]], + [[ + 3437, + 3434, + 17012 + ]], + [[ + 17000, + 3458, + 17010 + ]], + [[ + 17010, + 3948, + 17009 + ]], + [[ + 17009, + 3949, + 17007 + ]], + [[ + 17007, + 3950, + 17006 + ]], + [[ + 17006, + 3951, + 17004 + ]], + [[ + 17004, + 3437, + 17012 + ]], + [[ + 17012, + 3434, + 17013 + ]], + [[ + 18134, + 16780, + 16783 + ]], + [[ + 18135, + 18134, + 16783 + ]], + [[ + 18136, + 18135, + 16783 + ]], + [[ + 18137, + 18136, + 16783 + ]], + [[ + 18138, + 18137, + 16783 + ]], + [[ + 18139, + 18138, + 16783 + ]], + [[ + 18140, + 18139, + 16783 + ]], + [[ + 18141, + 18140, + 16783 + ]], + [[ + 18142, + 18141, + 16783 + ]], + [[ + 18143, + 18142, + 16783 + ]], + [[ + 18144, + 18143, + 16783 + ]], + [[ + 18145, + 18144, + 16783 + ]], + [[ + 18146, + 18145, + 16783 + ]], + [[ + 18147, + 18146, + 16783 + ]], + [[ + 18148, + 18147, + 16783 + ]], + [[ + 18149, + 18148, + 16783 + ]], + [[ + 18150, + 18149, + 16783 + ]], + [[ + 18151, + 18150, + 16783 + ]], + [[ + 18152, + 18151, + 16783 + ]], + [[ + 18153, + 18152, + 16783 + ]], + [[ + 18154, + 18153, + 16783 + ]], + [[ + 3903, + 18154, + 16783 + ]], + [[ + 3903, + 18155, + 18154 + ]], + [[ + 3903, + 18156, + 18155 + ]], + [[ + 3903, + 18157, + 18156 + ]], + [[ + 3903, + 18158, + 18157 + ]], + [[ + 18159, + 18160, + 18158 + ]], + [[ + 18161, + 18159, + 18158 + ]], + [[ + 18161, + 18162, + 18159 + ]], + [[ + 18161, + 18163, + 18162 + ]], + [[ + 18164, + 18161, + 18158 + ]], + [[ + 18165, + 18166, + 18161 + ]], + [[ + 18167, + 18165, + 18161 + ]], + [[ + 18164, + 18167, + 18161 + ]], + [[ + 18164, + 18168, + 18167 + ]], + [[ + 18169, + 18164, + 18158 + ]], + [[ + 18169, + 18170, + 18164 + ]], + [[ + 18169, + 18171, + 18170 + ]], + [[ + 18172, + 18169, + 18158 + ]], + [[ + 18173, + 18174, + 18169 + ]], + [[ + 18173, + 18175, + 18174 + ]], + [[ + 18176, + 18173, + 18169 + ]], + [[ + 18176, + 18177, + 18173 + ]], + [[ + 18178, + 18176, + 18169 + ]], + [[ + 18178, + 18179, + 18176 + ]], + [[ + 18178, + 18180, + 18179 + ]], + [[ + 18178, + 18181, + 18180 + ]], + [[ + 18172, + 18178, + 18169 + ]], + [[ + 18182, + 18183, + 18178 + ]], + [[ + 18178, + 18172, + 18182 + ]], + [[ + 18184, + 18182, + 18172 + ]], + [[ + 18172, + 18158, + 3903 + ]], + [[ + 3434, + 3903, + 17013 + ]], + [[ + 18185, + 18172, + 3903 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcea4a8a-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eedb4949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "verkeersdrempel", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 17019, + 9243, + 9247 + ]], + [[ + 9247, + 17003, + 17002 + ]], + [[ + 17019, + 9247, + 17002 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcea70b2-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-11-03", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.c76f5d580cb14842ba0da04e1433d2ef", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 18186, + 18187, + 6423 + ]], + [[ + 18188, + 5944, + 5943 + ]], + [[ + 18188, + 18112, + 5944 + ]], + [[ + 5953, + 18189, + 5943 + ]], + [[ + 18190, + 18188, + 5943 + ]], + [[ + 18191, + 18190, + 5943 + ]], + [[ + 18192, + 18191, + 5943 + ]], + [[ + 18193, + 18192, + 5943 + ]], + [[ + 18194, + 18193, + 5943 + ]], + [[ + 18195, + 18194, + 5943 + ]], + [[ + 18189, + 18195, + 5943 + ]], + [[ + 18196, + 18189, + 5953 + ]], + [[ + 18197, + 18196, + 5953 + ]], + [[ + 18198, + 18197, + 5953 + ]], + [[ + 18199, + 18198, + 5953 + ]], + [[ + 18200, + 18199, + 5953 + ]], + [[ + 18201, + 18200, + 5953 + ]], + [[ + 18202, + 18201, + 5953 + ]], + [[ + 18203, + 18202, + 5953 + ]], + [[ + 18204, + 18203, + 5953 + ]], + [[ + 18205, + 18204, + 5953 + ]], + [[ + 18206, + 18205, + 5953 + ]], + [[ + 18207, + 18206, + 5953 + ]], + [[ + 18208, + 18207, + 5953 + ]], + [[ + 18209, + 18208, + 5953 + ]], + [[ + 6423, + 18209, + 5953 + ]], + [[ + 6423, + 18187, + 18209 + ]], + [[ + 6176, + 18186, + 6423 + ]], + [[ + 18210, + 18211, + 18186 + ]], + [[ + 6176, + 18210, + 18186 + ]], + [[ + 18212, + 5937, + 18107 + ]], + [[ + 5937, + 18210, + 6176 + ]], + [[ + 18104, + 5932, + 18105 + ]], + [[ + 18212, + 18210, + 5937 + ]], + [[ + 18213, + 18212, + 18214 + ]], + [[ + 18214, + 18212, + 18215 + ]], + [[ + 18216, + 18214, + 18215 + ]], + [[ + 18217, + 18216, + 18215 + ]], + [[ + 18215, + 18212, + 18218 + ]], + [[ + 18219, + 18215, + 18220 + ]], + [[ + 18221, + 18219, + 18220 + ]], + [[ + 18220, + 18215, + 18218 + ]], + [[ + 18222, + 18220, + 18218 + ]], + [[ + 18218, + 18212, + 18223 + ]], + [[ + 18224, + 18218, + 18225 + ]], + [[ + 18226, + 18224, + 18225 + ]], + [[ + 18225, + 18218, + 18227 + ]], + [[ + 18228, + 18225, + 18227 + ]], + [[ + 18227, + 18218, + 18229 + ]], + [[ + 18230, + 18227, + 18229 + ]], + [[ + 18229, + 18218, + 18223 + ]], + [[ + 18231, + 18229, + 18223 + ]], + [[ + 18232, + 18231, + 18223 + ]], + [[ + 18223, + 18212, + 16762 + ]], + [[ + 18233, + 18223, + 16762 + ]], + [[ + 18234, + 18233, + 16762 + ]], + [[ + 16762, + 18212, + 18107 + ]], + [[ + 18106, + 18105, + 5932 + ]], + [[ + 18106, + 5932, + 18235 + ]], + [[ + 17856, + 18106, + 18235 + ]], + [[ + 18104, + 5937, + 5932 + ]], + [[ + 16763, + 18106, + 17856 + ]], + [[ + 16763, + 18107, + 18106 + ]], + [[ + 16763, + 16762, + 18107 + ]], + [[ + 18107, + 5937, + 18104 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcea97e3-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca8149cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16769, + 25, + 26 + ]], + [[ + 5, + 7, + 25 + ]], + [[ + 25, + 7, + 26 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcea97e9-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca8249cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16400, + 16390, + 18236 + ]], + [[ + 16392, + 16400, + 18236 + ]], + [[ + 16398, + 16392, + 18236 + ]], + [[ + 18237, + 16394, + 18236 + ]], + [[ + 18236, + 16399, + 16398 + ]], + [[ + 18236, + 16394, + 16399 + ]], + [[ + 18237, + 16397, + 16394 + ]], + [[ + 18237, + 11378, + 11380 + ]], + [[ + 16397, + 18237, + 11380 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfceae630-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef0c3449cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "tegels", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 18238, + 3349, + 3266 + ]], + [[ + 18238, + 3220, + 3219 + ]], + [[ + 18238, + 3266, + 3220 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfceb347d-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eed11849cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "verkeersdrempel", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 18236, + 16390, + 16770 + ]], + [[ + 16403, + 16382, + 16770 + ]], + [[ + 16384, + 16403, + 16770 + ]], + [[ + 16402, + 16384, + 16770 + ]], + [[ + 16386, + 16402, + 16770 + ]], + [[ + 16401, + 16386, + 16770 + ]], + [[ + 16388, + 16401, + 16770 + ]], + [[ + 16390, + 16388, + 16770 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcebaa0a-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef172349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "asfalt", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "gesloten verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 9284, + 9226, + 4220 + ]], + [[ + 9253, + 9252, + 4009 + ]], + [[ + 9221, + 9219, + 3966 + ]], + [[ + 4022, + 4026, + 9198 + ]], + [[ + 9298, + 4013, + 3980 + ]], + [[ + 4034, + 4033, + 9189 + ]], + [[ + 9339, + 3298, + 3301 + ]], + [[ + 9246, + 3301, + 3973 + ]], + [[ + 3301, + 3302, + 3973 + ]], + [[ + 4016, + 4015, + 9461 + ]], + [[ + 9225, + 9396, + 4181 + ]], + [[ + 4015, + 4019, + 9469 + ]], + [[ + 9339, + 9244, + 3298 + ]], + [[ + 4182, + 9515, + 4296 + ]], + [[ + 9461, + 4015, + 9469 + ]], + [[ + 3973, + 4296, + 9236 + ]], + [[ + 9253, + 4009, + 4008 + ]], + [[ + 3307, + 4453, + 4801 + ]], + [[ + 3320, + 4360, + 4365 + ]], + [[ + 4355, + 4350, + 3335 + ]], + [[ + 4354, + 4355, + 3335 + ]], + [[ + 3327, + 4350, + 4356 + ]], + [[ + 5461, + 5465, + 3275 + ]], + [[ + 5476, + 5461, + 3348 + ]], + [[ + 3406, + 5471, + 5656 + ]], + [[ + 3352, + 5896, + 5847 + ]], + [[ + 5912, + 5612, + 3402 + ]], + [[ + 5540, + 5912, + 3402 + ]], + [[ + 5538, + 5540, + 3378 + ]], + [[ + 5609, + 5538, + 3378 + ]], + [[ + 5693, + 5609, + 3375 + ]], + [[ + 5632, + 5693, + 3376 + ]], + [[ + 5633, + 5632, + 3256 + ]], + [[ + 5618, + 5633, + 3257 + ]], + [[ + 5619, + 5618, + 18239 + ]], + [[ + 5619, + 18239, + 18237 + ]], + [[ + 5618, + 3257, + 18239 + ]], + [[ + 5633, + 3256, + 3257 + ]], + [[ + 3249, + 5890, + 5575 + ]], + [[ + 5632, + 3376, + 3256 + ]], + [[ + 5612, + 5890, + 3429 + ]], + [[ + 5574, + 3404, + 5575 + ]], + [[ + 3376, + 5693, + 3375 + ]], + [[ + 5609, + 3378, + 3375 + ]], + [[ + 5574, + 5896, + 3241 + ]], + [[ + 3429, + 3402, + 5612 + ]], + [[ + 3378, + 5540, + 3402 + ]], + [[ + 5848, + 3353, + 5847 + ]], + [[ + 3351, + 5655, + 5645 + ]], + [[ + 5890, + 3249, + 3429 + ]], + [[ + 3413, + 5479, + 5472 + ]], + [[ + 5575, + 3404, + 3249 + ]], + [[ + 5848, + 5479, + 3353 + ]], + [[ + 5471, + 3415, + 5472 + ]], + [[ + 3404, + 5574, + 3241 + ]], + [[ + 5896, + 3352, + 3241 + ]], + [[ + 5656, + 5655, + 3407 + ]], + [[ + 3413, + 3353, + 5479 + ]], + [[ + 3352, + 5847, + 3353 + ]], + [[ + 3415, + 3413, + 5472 + ]], + [[ + 5651, + 3219, + 5645 + ]], + [[ + 5471, + 3406, + 3415 + ]], + [[ + 5656, + 3407, + 3406 + ]], + [[ + 5651, + 5649, + 3349 + ]], + [[ + 5655, + 3351, + 3407 + ]], + [[ + 5649, + 5476, + 3270 + ]], + [[ + 5645, + 3219, + 3351 + ]], + [[ + 5651, + 18238, + 3219 + ]], + [[ + 3348, + 3270, + 5476 + ]], + [[ + 5651, + 3349, + 18238 + ]], + [[ + 3341, + 5468, + 4343 + ]], + [[ + 5649, + 3270, + 3349 + ]], + [[ + 5465, + 5468, + 3347 + ]], + [[ + 4342, + 3341, + 4343 + ]], + [[ + 3346, + 4351, + 4352 + ]], + [[ + 5461, + 3273, + 3348 + ]], + [[ + 4342, + 4351, + 3346 + ]], + [[ + 4353, + 3370, + 4352 + ]], + [[ + 3273, + 5461, + 3275 + ]], + [[ + 5465, + 3347, + 3275 + ]], + [[ + 4353, + 4354, + 3335 + ]], + [[ + 3287, + 4800, + 4404 + ]], + [[ + 3347, + 5468, + 3341 + ]], + [[ + 4342, + 3346, + 3341 + ]], + [[ + 4356, + 4360, + 3323 + ]], + [[ + 4800, + 3320, + 4365 + ]], + [[ + 3346, + 4352, + 3370 + ]], + [[ + 4453, + 3317, + 4404 + ]], + [[ + 3370, + 4353, + 3335 + ]], + [[ + 3323, + 3327, + 4356 + ]], + [[ + 3335, + 4350, + 3327 + ]], + [[ + 4681, + 3307, + 4801 + ]], + [[ + 3312, + 4802, + 4768 + ]], + [[ + 4360, + 3320, + 3323 + ]], + [[ + 4681, + 4802, + 3312 + ]], + [[ + 3320, + 4800, + 3287 + ]], + [[ + 4404, + 3317, + 3287 + ]], + [[ + 4453, + 3288, + 3317 + ]], + [[ + 4453, + 3307, + 3288 + ]], + [[ + 4768, + 4477, + 3309 + ]], + [[ + 4681, + 3312, + 3307 + ]], + [[ + 4477, + 4340, + 3309 + ]], + [[ + 4768, + 3311, + 3312 + ]], + [[ + 4340, + 3983, + 3303 + ]], + [[ + 4768, + 3309, + 3311 + ]], + [[ + 4340, + 3310, + 3309 + ]], + [[ + 4340, + 3303, + 3310 + ]], + [[ + 3983, + 3973, + 3302 + ]], + [[ + 3303, + 3983, + 3305 + ]], + [[ + 3305, + 3983, + 3300 + ]], + [[ + 3300, + 3983, + 3304 + ]], + [[ + 3304, + 3983, + 3302 + ]], + [[ + 3966, + 3965, + 9221 + ]], + [[ + 9244, + 3299, + 3298 + ]], + [[ + 9246, + 9339, + 3301 + ]], + [[ + 4181, + 9231, + 4182 + ]], + [[ + 3973, + 9236, + 9246 + ]], + [[ + 9284, + 4220, + 4000 + ]], + [[ + 4296, + 9515, + 9236 + ]], + [[ + 4181, + 4220, + 9225 + ]], + [[ + 9396, + 9231, + 4181 + ]], + [[ + 9515, + 4182, + 9231 + ]], + [[ + 3996, + 9379, + 4000 + ]], + [[ + 9226, + 9225, + 4220 + ]], + [[ + 4009, + 9260, + 3996 + ]], + [[ + 9379, + 9284, + 4000 + ]], + [[ + 9295, + 9379, + 3996 + ]], + [[ + 9260, + 9295, + 3996 + ]], + [[ + 3966, + 9219, + 4008 + ]], + [[ + 4009, + 9252, + 9260 + ]], + [[ + 3965, + 4014, + 9220 + ]], + [[ + 4013, + 9306, + 4014 + ]], + [[ + 4008, + 9223, + 9253 + ]], + [[ + 9299, + 4017, + 4018 + ]], + [[ + 4008, + 9218, + 9223 + ]], + [[ + 3980, + 4017, + 9297 + ]], + [[ + 9218, + 4008, + 9219 + ]], + [[ + 9306, + 9220, + 4014 + ]], + [[ + 9221, + 3965, + 9220 + ]], + [[ + 9212, + 9306, + 4013 + ]], + [[ + 4011, + 9462, + 4018 + ]], + [[ + 4013, + 9298, + 9212 + ]], + [[ + 3980, + 9297, + 9298 + ]], + [[ + 4011, + 4016, + 9461 + ]], + [[ + 9297, + 4017, + 9299 + ]], + [[ + 9299, + 4018, + 9462 + ]], + [[ + 9462, + 4011, + 9461 + ]], + [[ + 9469, + 4019, + 9185 + ]], + [[ + 9185, + 4019, + 4020 + ]], + [[ + 9186, + 9185, + 4020 + ]], + [[ + 9197, + 9186, + 4021 + ]], + [[ + 4026, + 9192, + 9198 + ]], + [[ + 9198, + 9197, + 4022 + ]], + [[ + 4058, + 9190, + 9192 + ]], + [[ + 4307, + 4046, + 9183 + ]], + [[ + 9190, + 4053, + 9191 + ]], + [[ + 4053, + 9189, + 9191 + ]], + [[ + 4060, + 9170, + 9180 + ]], + [[ + 4046, + 9179, + 9183 + ]], + [[ + 4029, + 9171, + 9170 + ]], + [[ + 9169, + 9171, + 9774 + ]], + [[ + 9318, + 9169, + 9777 + ]], + [[ + 9778, + 9318, + 9776 + ]], + [[ + 9776, + 9318, + 9777 + ]], + [[ + 9777, + 9169, + 9774 + ]], + [[ + 9774, + 9171, + 4029 + ]], + [[ + 9775, + 9774, + 4028 + ]], + [[ + 9771, + 9775, + 4028 + ]], + [[ + 9772, + 9771, + 4028 + ]], + [[ + 9772, + 4028, + 4308 + ]], + [[ + 9180, + 9179, + 4045 + ]], + [[ + 4033, + 9187, + 9189 + ]], + [[ + 4028, + 9774, + 4029 + ]], + [[ + 9182, + 4307, + 9183 + ]], + [[ + 4029, + 9170, + 4060 + ]], + [[ + 9180, + 4057, + 4060 + ]], + [[ + 9182, + 9187, + 4307 + ]], + [[ + 4057, + 9180, + 4045 + ]], + [[ + 4045, + 9179, + 4046 + ]], + [[ + 4033, + 4307, + 9187 + ]], + [[ + 4053, + 4034, + 9189 + ]], + [[ + 4054, + 4053, + 9190 + ]], + [[ + 4058, + 4054, + 9190 + ]], + [[ + 4026, + 4058, + 9192 + ]], + [[ + 4022, + 9197, + 4021 + ]], + [[ + 4021, + 9186, + 4020 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcec6cc0-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca8749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 9318, + 18240, + 9178 + ]], + [[ + 18241, + 9778, + 9773 + ]], + [[ + 18240, + 9318, + 18242 + ]], + [[ + 3510, + 3737, + 18240 + ]], + [[ + 3511, + 3510, + 18180 + ]], + [[ + 3903, + 3511, + 18185 + ]], + [[ + 18185, + 3511, + 18172 + ]], + [[ + 18172, + 3511, + 18184 + ]], + [[ + 18184, + 3511, + 18182 + ]], + [[ + 18182, + 3511, + 18183 + ]], + [[ + 18183, + 3511, + 18178 + ]], + [[ + 18178, + 3511, + 18181 + ]], + [[ + 18181, + 3511, + 18180 + ]], + [[ + 18180, + 3510, + 18179 + ]], + [[ + 18179, + 3510, + 18176 + ]], + [[ + 18176, + 3510, + 18177 + ]], + [[ + 18177, + 3510, + 18173 + ]], + [[ + 18173, + 3510, + 18175 + ]], + [[ + 18175, + 3510, + 18174 + ]], + [[ + 18174, + 3510, + 18240 + ]], + [[ + 18169, + 18174, + 18240 + ]], + [[ + 18171, + 18169, + 18240 + ]], + [[ + 18170, + 18171, + 18240 + ]], + [[ + 18164, + 18170, + 18240 + ]], + [[ + 18168, + 18164, + 18240 + ]], + [[ + 18165, + 18167, + 18240 + ]], + [[ + 18166, + 18165, + 18243 + ]], + [[ + 18161, + 18166, + 18243 + ]], + [[ + 18163, + 18161, + 18243 + ]], + [[ + 18162, + 18163, + 18243 + ]], + [[ + 18159, + 18162, + 18243 + ]], + [[ + 18160, + 18159, + 18243 + ]], + [[ + 18158, + 18160, + 18243 + ]], + [[ + 18157, + 18158, + 18243 + ]], + [[ + 18156, + 18157, + 18243 + ]], + [[ + 18155, + 18156, + 18154 + ]], + [[ + 18154, + 18156, + 18153 + ]], + [[ + 18153, + 18156, + 18151 + ]], + [[ + 18152, + 18153, + 18151 + ]], + [[ + 18151, + 18156, + 18137 + ]], + [[ + 18150, + 18151, + 18148 + ]], + [[ + 18149, + 18150, + 18148 + ]], + [[ + 18148, + 18151, + 18146 + ]], + [[ + 18147, + 18148, + 18146 + ]], + [[ + 18146, + 18151, + 18137 + ]], + [[ + 18145, + 18146, + 18142 + ]], + [[ + 18144, + 18145, + 18143 + ]], + [[ + 18143, + 18145, + 18142 + ]], + [[ + 18142, + 18146, + 18140 + ]], + [[ + 18141, + 18142, + 18140 + ]], + [[ + 18140, + 18146, + 18137 + ]], + [[ + 18139, + 18140, + 18137 + ]], + [[ + 18138, + 18139, + 18137 + ]], + [[ + 18137, + 18156, + 16780 + ]], + [[ + 18136, + 18137, + 16780 + ]], + [[ + 18135, + 18136, + 16780 + ]], + [[ + 18134, + 18135, + 16780 + ]], + [[ + 16780, + 18156, + 16782 + ]], + [[ + 18242, + 9318, + 9778 + ]], + [[ + 16979, + 18241, + 9773 + ]], + [[ + 16782, + 18241, + 16979 + ]], + [[ + 16782, + 18156, + 18243 + ]], + [[ + 16782, + 18243, + 18241 + ]], + [[ + 18167, + 18168, + 18240 + ]], + [[ + 18165, + 18240, + 18243 + ]], + [[ + 3737, + 9178, + 18240 + ]], + [[ + 18241, + 18242, + 9778 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcece247-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eedb4a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "verkeersdrempel", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 3252, + 16804, + 3257 + ]], + [[ + 16804, + 16861, + 3257 + ]], + [[ + 3257, + 16861, + 18239 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcedf371-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef173a49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "asfalt", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "gesloten verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 4089, + 5923, + 4338 + ]], + [[ + 4087, + 4338, + 5941 + ]], + [[ + 6301, + 6060, + 4270 + ]], + [[ + 5931, + 3963, + 4084 + ]], + [[ + 6029, + 6302, + 4074 + ]], + [[ + 6060, + 4077, + 4270 + ]], + [[ + 9783, + 4062, + 9785 + ]], + [[ + 5986, + 5985, + 4067 + ]], + [[ + 9786, + 4023, + 5948 + ]], + [[ + 9781, + 9772, + 4308 + ]], + [[ + 5951, + 5952, + 9779 + ]], + [[ + 4023, + 4025, + 5948 + ]], + [[ + 4062, + 4023, + 9785 + ]], + [[ + 4062, + 9781, + 4308 + ]], + [[ + 4085, + 4086, + 5927 + ]], + [[ + 9783, + 9781, + 4062 + ]], + [[ + 5985, + 6265, + 4066 + ]], + [[ + 5974, + 4069, + 4075 + ]], + [[ + 6301, + 4270, + 3963 + ]], + [[ + 9785, + 4023, + 9786 + ]], + [[ + 4086, + 4087, + 5927 + ]], + [[ + 9784, + 9786, + 5949 + ]], + [[ + 9782, + 9784, + 5949 + ]], + [[ + 9779, + 9782, + 5951 + ]], + [[ + 9779, + 5952, + 9780 + ]], + [[ + 5949, + 5951, + 9782 + ]], + [[ + 4064, + 5960, + 4025 + ]], + [[ + 5992, + 4063, + 4065 + ]], + [[ + 9786, + 5948, + 5949 + ]], + [[ + 4064, + 4063, + 5956 + ]], + [[ + 5960, + 5946, + 4025 + ]], + [[ + 5948, + 4025, + 5946 + ]], + [[ + 4027, + 5992, + 4065 + ]], + [[ + 4064, + 6282, + 5960 + ]], + [[ + 5985, + 4066, + 4067 + ]], + [[ + 4064, + 5956, + 6282 + ]], + [[ + 4027, + 4066, + 6265 + ]], + [[ + 5956, + 4063, + 5992 + ]], + [[ + 5992, + 4027, + 6264 + ]], + [[ + 4027, + 6265, + 6264 + ]], + [[ + 4067, + 4069, + 5986 + ]], + [[ + 4074, + 6302, + 4075 + ]], + [[ + 4077, + 6029, + 4074 + ]], + [[ + 5986, + 4069, + 5974 + ]], + [[ + 5974, + 4075, + 6302 + ]], + [[ + 6060, + 6029, + 4077 + ]], + [[ + 4085, + 5929, + 4084 + ]], + [[ + 5931, + 6301, + 3963 + ]], + [[ + 4084, + 5929, + 5931 + ]], + [[ + 4085, + 5928, + 5929 + ]], + [[ + 4085, + 5927, + 5928 + ]], + [[ + 4087, + 5941, + 5927 + ]], + [[ + 4338, + 5923, + 5941 + ]], + [[ + 5923, + 4089, + 5922 + ]], + [[ + 5922, + 4089, + 5919 + ]], + [[ + 5919, + 4089, + 18244 + ]], + [[ + 5920, + 5919, + 18245 + ]], + [[ + 5918, + 5920, + 18246 + ]], + [[ + 5918, + 18246, + 5994 + ]], + [[ + 5920, + 18247, + 18246 + ]], + [[ + 5920, + 18245, + 18247 + ]], + [[ + 5919, + 18248, + 18245 + ]], + [[ + 18249, + 5919, + 18250 + ]], + [[ + 5919, + 18251, + 18248 + ]], + [[ + 4089, + 4088, + 18252 + ]], + [[ + 18251, + 5919, + 18253 + ]], + [[ + 18253, + 5919, + 18254 + ]], + [[ + 18254, + 5919, + 18249 + ]], + [[ + 18250, + 5919, + 18255 + ]], + [[ + 18255, + 5919, + 18256 + ]], + [[ + 18256, + 5919, + 18244 + ]], + [[ + 18244, + 4089, + 18257 + ]], + [[ + 18257, + 4089, + 18258 + ]], + [[ + 18258, + 4089, + 18259 + ]], + [[ + 18259, + 4089, + 18252 + ]], + [[ + 18252, + 4088, + 18260 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcee1a90-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeef9749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 18261, + 32, + 31 + ]], + [[ + 18261, + 31, + 17870 + ]], + [[ + 10, + 9, + 32 + ]], + [[ + 32, + 9, + 31 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfceeb72a-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeca8349cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 18239, + 16861, + 18237 + ]], + [[ + 16861, + 11378, + 18237 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfceeb730-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eed11b49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "verkeersdrempel", + "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 16826, + 3294, + 16870 + ]], + [[ + 3294, + 3297, + 16870 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfceede58-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "parkeervlak", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef229c49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 18187, + 18186, + 18211 + ]], + [[ + 18187, + 16775, + 18209 + ]], + [[ + 18209, + 18207, + 18208 + ]], + [[ + 18209, + 18192, + 18207 + ]], + [[ + 18207, + 18204, + 18206 + ]], + [[ + 18206, + 18204, + 18205 + ]], + [[ + 18207, + 18201, + 18204 + ]], + [[ + 18204, + 18202, + 18203 + ]], + [[ + 18204, + 18201, + 18202 + ]], + [[ + 18207, + 18195, + 18201 + ]], + [[ + 18201, + 18198, + 18200 + ]], + [[ + 18200, + 18198, + 18199 + ]], + [[ + 18201, + 18195, + 18198 + ]], + [[ + 18198, + 18195, + 18197 + ]], + [[ + 18197, + 18189, + 18196 + ]], + [[ + 18197, + 18195, + 18189 + ]], + [[ + 18207, + 18194, + 18195 + ]], + [[ + 18207, + 18192, + 18194 + ]], + [[ + 18194, + 18192, + 18193 + ]], + [[ + 18209, + 18188, + 18192 + ]], + [[ + 18192, + 18190, + 18191 + ]], + [[ + 18192, + 18188, + 18190 + ]], + [[ + 18209, + 18112, + 18188 + ]], + [[ + 18209, + 18113, + 18112 + ]], + [[ + 18113, + 18209, + 16775 + ]], + [[ + 18129, + 18113, + 16775 + ]], + [[ + 18133, + 18129, + 16775 + ]], + [[ + 18130, + 18133, + 16775 + ]], + [[ + 18132, + 18130, + 16775 + ]], + [[ + 18131, + 18132, + 16775 + ]], + [[ + 18128, + 18131, + 16775 + ]], + [[ + 18126, + 18128, + 16775 + ]], + [[ + 18127, + 18126, + 16775 + ]], + [[ + 18125, + 18127, + 16775 + ]], + [[ + 18121, + 18125, + 16775 + ]], + [[ + 18124, + 18121, + 16775 + ]], + [[ + 18123, + 18124, + 16775 + ]], + [[ + 18122, + 18123, + 16775 + ]], + [[ + 18120, + 18122, + 16775 + ]], + [[ + 18118, + 18120, + 16775 + ]], + [[ + 18119, + 18118, + 16775 + ]], + [[ + 18117, + 18119, + 16775 + ]], + [[ + 18115, + 18117, + 16775 + ]], + [[ + 18116, + 18115, + 16775 + ]], + [[ + 18114, + 18116, + 16775 + ]], + [[ + 18114, + 16775, + 17808 + ]], + [[ + 18187, + 16776, + 16775 + ]], + [[ + 18218, + 18224, + 16761 + ]], + [[ + 18234, + 16762, + 16761 + ]], + [[ + 18233, + 18234, + 16761 + ]], + [[ + 18223, + 18233, + 16761 + ]], + [[ + 18232, + 18223, + 16761 + ]], + [[ + 18231, + 18232, + 16761 + ]], + [[ + 18229, + 18231, + 16761 + ]], + [[ + 18230, + 18229, + 16761 + ]], + [[ + 18227, + 18230, + 16761 + ]], + [[ + 18228, + 18227, + 16761 + ]], + [[ + 18225, + 18228, + 16761 + ]], + [[ + 18226, + 18225, + 16761 + ]], + [[ + 18224, + 18226, + 16761 + ]], + [[ + 16776, + 18213, + 16761 + ]], + [[ + 18222, + 18218, + 16761 + ]], + [[ + 18211, + 18212, + 16776 + ]], + [[ + 16761, + 18220, + 18222 + ]], + [[ + 16761, + 18221, + 18220 + ]], + [[ + 16761, + 18219, + 18221 + ]], + [[ + 16761, + 18215, + 18219 + ]], + [[ + 16761, + 18217, + 18215 + ]], + [[ + 16761, + 18216, + 18217 + ]], + [[ + 16761, + 18214, + 18216 + ]], + [[ + 16761, + 18213, + 18214 + ]], + [[ + 16776, + 18212, + 18213 + ]], + [[ + 18211, + 18210, + 18212 + ]], + [[ + 18187, + 18211, + 16776 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcef52cd-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "rijbaan lokale weg", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eec1fb49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 3297, + 3299, + 16870 + ]], + [[ + 3299, + 16869, + 16870 + ]], + [[ + 3299, + 9244, + 16869 + ]], + [[ + 16869, + 9243, + 17019 + ]], + [[ + 9243, + 16869, + 9244 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcf03dd2-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68ef173949cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "asfalt", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "gesloten verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 5641, + 5619, + 18237 + ]], + [[ + 5641, + 18236, + 5622 + ]], + [[ + 5622, + 16770, + 5623 + ]], + [[ + 5623, + 16770, + 5642 + ]], + [[ + 5642, + 16770, + 16769 + ]], + [[ + 5622, + 18236, + 16770 + ]], + [[ + 5641, + 18237, + 18236 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + }, + "bfcf03dd8-2d38-11e6-9a38-393caa90be70": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "function": "voetpad", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eeefa749cce0532ee22091b28c", + "lv_publicatiedatum": "2016-06-07T16:22:15.000", + "namespace": "NL.IMGeo", + "plus_functiewegdeel": "waardeOnbekend", + "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "surfacematerial": "open verharding", + "terminationdate": "", + "tijdstipregistratie": "2016-05-17T13:43:18.000", + "wegdeeloptalud": "0" + }, + "geometry": [{ + "boundaries": [ + [[ + 18242, + 18241, + 18243 + ]], + [[ + 18242, + 18243, + 18240 + ]] + ], + "lod": "1", + "type": "MultiSurface" + }], + "type": "Road" + } + }, + "metadata": { + "geographicalExtent": [ + 84616.468, + 447422.999, + -0.452, + 85140.83899999999, + 447750.636, + 16.846 + ], + "referenceSystem": "https://www.opengis.net/def/crs/EPSG/0/7415" + }, + "type": "CityJSON", + "version": "1.1", + "vertices": [ + [ + 411283, + 25181, + 572 + ], + [ + 412163, + 27032, + 582 + ], + [ + 411755, + 27133, + 582 + ], + [ + 413571, + 26683, + 582 + ], + [ + 418114, + 25557, + 582 + ], + [ + 418511, + 26894, + 582 + ], + [ + 418448, + 26903, + 582 + ], + [ + 423464, + 25667, + 582 + ], + [ + 412434, + 22752, + 582 + ], + [ + 421953, + 19972, + 582 + ], + [ + 423347, + 19595, + 582 + ], + [ + 424894, + 25312, + 582 + ], + [ + 423565, + 19536, + 572 + ], + [ + 425113, + 25258, + 582 + ], + [ + 423782, + 19478, + 582 + ], + [ + 425331, + 25204, + 582 + ], + [ + 417108, + 21489, + 582 + ], + [ + 417055, + 21296, + 582 + ], + [ + 411229, + 23077, + 582 + ], + [ + 411030, + 23131, + 582 + ], + [ + 410823, + 23187, + 582 + ], + [ + 413571, + 26683, + 1562 + ], + [ + 412163, + 27032, + 1562 + ], + [ + 418114, + 25557, + 1632 + ], + [ + 418448, + 26903, + 1812 + ], + [ + 418511, + 26894, + 1812 + ], + [ + 423464, + 25667, + 1892 + ], + [ + 424894, + 25312, + 1902 + ], + [ + 425113, + 25258, + 1982 + ], + [ + 424894, + 25312, + 1962 + ], + [ + 425331, + 25204, + 1962 + ], + [ + 421953, + 19972, + 1712 + ], + [ + 423347, + 19595, + 1702 + ], + [ + 417055, + 21296, + 1842 + ], + [ + 417108, + 21489, + 1852 + ], + [ + 412434, + 22752, + 1872 + ], + [ + 411229, + 23077, + 1882 + ], + [ + 411030, + 23131, + 2422 + ], + [ + 411229, + 23077, + 2292 + ], + [ + 410823, + 23187, + 2422 + ], + [ + 393347, + 59669, + 6452 + ], + [ + 416101, + 61295, + 6452 + ], + [ + 424165, + 81601, + 6452 + ], + [ + 404992, + 53462, + 6452 + ], + [ + 405974, + 54155, + 6452 + ], + [ + 393184, + 59554, + 6452 + ], + [ + 389219, + 56732, + 6452 + ], + [ + 399010, + 49244, + 6452 + ], + [ + 397907, + 47100, + 6452 + ], + [ + 396015, + 40703, + 6452 + ], + [ + 396198, + 40656, + 6452 + ], + [ + 398196, + 48188, + 6452 + ], + [ + 386610, + 44619, + 6452 + ], + [ + 389578, + 42358, + 6452 + ], + [ + 399888, + 49863, + 6452 + ], + [ + 386278, + 42772, + 6452 + ], + [ + 389466, + 41932, + 6452 + ], + [ + 386243, + 43226, + 6452 + ], + [ + 385960, + 42856, + 6452 + ], + [ + 386011, + 43050, + 6452 + ], + [ + 386069, + 43272, + 6452 + ], + [ + 387926, + 58500, + 6452 + ], + [ + 383712, + 45382, + 6452 + ], + [ + 380026, + 44875, + 6452 + ], + [ + 383345, + 43990, + 6452 + ], + [ + 383461, + 43722, + 6452 + ], + [ + 383519, + 43944, + 6452 + ], + [ + 383101, + 43610, + 6452 + ], + [ + 383410, + 43528, + 6452 + ], + [ + 379913, + 44450, + 6452 + ], + [ + 385366, + 61644, + 6452 + ], + [ + 373646, + 46546, + 6452 + ], + [ + 373636, + 46516, + 6452 + ], + [ + 373220, + 46223, + 6452 + ], + [ + 373624, + 46486, + 6452 + ], + [ + 373556, + 46379, + 6452 + ], + [ + 373610, + 46458, + 6452 + ], + [ + 373594, + 46430, + 6452 + ], + [ + 373576, + 46404, + 6452 + ], + [ + 373461, + 46295, + 6452 + ], + [ + 373534, + 46356, + 6452 + ], + [ + 373511, + 46334, + 6452 + ], + [ + 373487, + 46314, + 6452 + ], + [ + 373433, + 46279, + 6452 + ], + [ + 373405, + 46265, + 6452 + ], + [ + 373283, + 46228, + 6452 + ], + [ + 373376, + 46252, + 6452 + ], + [ + 373345, + 46242, + 6452 + ], + [ + 373315, + 46234, + 6452 + ], + [ + 373252, + 46225, + 6452 + ], + [ + 373125, + 46233, + 6452 + ], + [ + 373188, + 46224, + 6452 + ], + [ + 373156, + 46228, + 6452 + ], + [ + 366829, + 47900, + 6452 + ], + [ + 385535, + 61769, + 6452 + ], + [ + 389122, + 59387, + 6452 + ], + [ + 386731, + 62656, + 6452 + ], + [ + 427205, + 83282, + 6452 + ], + [ + 428972, + 80753, + 6452 + ], + [ + 426922, + 83461, + 6452 + ], + [ + 427742, + 84047, + 6452 + ], + [ + 427925, + 83785, + 6452 + ], + [ + 423945, + 66825, + 6452 + ], + [ + 429692, + 81256, + 6452 + ], + [ + 429875, + 80994, + 6452 + ], + [ + 433996, + 76230, + 6452 + ], + [ + 430424, + 81368, + 6452 + ], + [ + 438993, + 67054, + 6452 + ], + [ + 439132, + 66863, + 6452 + ], + [ + 440005, + 67586, + 6452 + ], + [ + 439885, + 67759, + 6452 + ], + [ + 440045, + 67529, + 6452 + ], + [ + 433002, + 62836, + 6452 + ], + [ + 431881, + 62005, + 6452 + ], + [ + 433290, + 62427, + 6452 + ], + [ + 432149, + 61624, + 6452 + ], + [ + 428849, + 59870, + 6452 + ], + [ + 405974, + 54155, + 352 + ], + [ + 416101, + 61295, + 352 + ], + [ + 404992, + 53462, + 352 + ], + [ + 399888, + 49863, + 352 + ], + [ + 399010, + 49244, + 352 + ], + [ + 398196, + 48188, + 352 + ], + [ + 397907, + 47100, + 352 + ], + [ + 396198, + 40656, + 352 + ], + [ + 396015, + 40703, + 352 + ], + [ + 389578, + 42358, + 352 + ], + [ + 389466, + 41932, + 352 + ], + [ + 386278, + 42772, + 352 + ], + [ + 385960, + 42856, + 352 + ], + [ + 386011, + 43050, + 352 + ], + [ + 386069, + 43272, + 352 + ], + [ + 386243, + 43226, + 352 + ], + [ + 386610, + 44619, + 352 + ], + [ + 383712, + 45382, + 352 + ], + [ + 383345, + 43990, + 352 + ], + [ + 383519, + 43944, + 352 + ], + [ + 383461, + 43722, + 352 + ], + [ + 383410, + 43528, + 352 + ], + [ + 383101, + 43610, + 352 + ], + [ + 379913, + 44450, + 352 + ], + [ + 380026, + 44875, + 352 + ], + [ + 373646, + 46546, + 352 + ], + [ + 373636, + 46516, + 352 + ], + [ + 373624, + 46486, + 352 + ], + [ + 373610, + 46458, + 352 + ], + [ + 373594, + 46430, + 352 + ], + [ + 373576, + 46404, + 352 + ], + [ + 373556, + 46379, + 352 + ], + [ + 373534, + 46356, + 352 + ], + [ + 373511, + 46334, + 352 + ], + [ + 373487, + 46314, + 352 + ], + [ + 373461, + 46295, + 352 + ], + [ + 373433, + 46279, + 352 + ], + [ + 373405, + 46265, + 352 + ], + [ + 373376, + 46252, + 352 + ], + [ + 373345, + 46242, + 352 + ], + [ + 373315, + 46234, + 352 + ], + [ + 373283, + 46228, + 352 + ], + [ + 373252, + 46225, + 352 + ], + [ + 373220, + 46223, + 352 + ], + [ + 373188, + 46224, + 352 + ], + [ + 373156, + 46228, + 352 + ], + [ + 373125, + 46233, + 352 + ], + [ + 366829, + 47900, + 352 + ], + [ + 385366, + 61644, + 352 + ], + [ + 385535, + 61769, + 352 + ], + [ + 386731, + 62656, + 352 + ], + [ + 389122, + 59387, + 352 + ], + [ + 387926, + 58500, + 352 + ], + [ + 389219, + 56732, + 352 + ], + [ + 393184, + 59554, + 352 + ], + [ + 393347, + 59669, + 352 + ], + [ + 424165, + 81601, + 352 + ], + [ + 426922, + 83461, + 352 + ], + [ + 427742, + 84047, + 352 + ], + [ + 427925, + 83785, + 352 + ], + [ + 427205, + 83282, + 352 + ], + [ + 428972, + 80753, + 352 + ], + [ + 429692, + 81256, + 352 + ], + [ + 429875, + 80994, + 352 + ], + [ + 430424, + 81368, + 352 + ], + [ + 433996, + 76230, + 352 + ], + [ + 439885, + 67759, + 352 + ], + [ + 440005, + 67586, + 352 + ], + [ + 440045, + 67529, + 352 + ], + [ + 439132, + 66863, + 352 + ], + [ + 438993, + 67054, + 352 + ], + [ + 433002, + 62836, + 352 + ], + [ + 433290, + 62427, + 352 + ], + [ + 432149, + 61624, + 352 + ], + [ + 431881, + 62005, + 352 + ], + [ + 428849, + 59870, + 352 + ], + [ + 423945, + 66825, + 352 + ], + [ + 239127, + 126716, + 3342 + ], + [ + 236526, + 130339, + 3342 + ], + [ + 226148, + 117412, + 3342 + ], + [ + 225229, + 117961, + 3342 + ], + [ + 222235, + 119812, + 3342 + ], + [ + 225196, + 117911, + 3342 + ], + [ + 222043, + 119937, + 3342 + ], + [ + 222075, + 119915, + 3342 + ], + [ + 239127, + 126716, + 432 + ], + [ + 236526, + 130339, + 432 + ], + [ + 239127, + 126716, + 442 + ], + [ + 236526, + 130339, + 442 + ], + [ + 236526, + 130339, + 452 + ], + [ + 236526, + 130339, + 3322 + ], + [ + 226148, + 117412, + 432 + ], + [ + 226148, + 117412, + 442 + ], + [ + 225229, + 117961, + 432 + ], + [ + 225196, + 117911, + 432 + ], + [ + 222235, + 119812, + 432 + ], + [ + 222075, + 119915, + 432 + ], + [ + 222043, + 119937, + 432 + ], + [ + 222043, + 119937, + 452 + ], + [ + 222043, + 119937, + 3322 + ], + [ + 227727, + 127337, + 3322 + ], + [ + 236681, + 133773, + 3322 + ], + [ + 238272, + 131560, + 3322 + ], + [ + 225757, + 130078, + 3322 + ], + [ + 220489, + 120985, + 3322 + ], + [ + 217534, + 122981, + 3322 + ], + [ + 217751, + 122834, + 3322 + ], + [ + 217723, + 122793, + 3322 + ], + [ + 217511, + 122947, + 3322 + ], + [ + 216716, + 123533, + 3322 + ], + [ + 216499, + 123680, + 3322 + ], + [ + 216693, + 123500, + 3322 + ], + [ + 216477, + 123647, + 3322 + ], + [ + 227727, + 127337, + 452 + ], + [ + 225757, + 130078, + 452 + ], + [ + 225757, + 130078, + 482 + ], + [ + 225757, + 130078, + 2942 + ], + [ + 236681, + 133773, + 452 + ], + [ + 236681, + 133773, + 532 + ], + [ + 238272, + 131560, + 452 + ], + [ + 238272, + 131560, + 532 + ], + [ + 220489, + 120985, + 452 + ], + [ + 217751, + 122834, + 452 + ], + [ + 217723, + 122793, + 452 + ], + [ + 217511, + 122947, + 452 + ], + [ + 217534, + 122981, + 452 + ], + [ + 216716, + 123533, + 452 + ], + [ + 216693, + 123500, + 452 + ], + [ + 216477, + 123647, + 452 + ], + [ + 216499, + 123680, + 452 + ], + [ + 216499, + 123680, + 482 + ], + [ + 216499, + 123680, + 2942 + ], + [ + 224136, + 131931, + 2942 + ], + [ + 216459, + 123706, + 2942 + ], + [ + 209579, + 128491, + 2942 + ], + [ + 209404, + 128301, + 2942 + ], + [ + 216677, + 133640, + 2942 + ], + [ + 220906, + 136370, + 2942 + ], + [ + 220783, + 136540, + 2942 + ], + [ + 227506, + 134382, + 2942 + ], + [ + 228961, + 132382, + 2942 + ], + [ + 228961, + 132382, + 482 + ], + [ + 228961, + 132382, + 512 + ], + [ + 228961, + 132382, + 2932 + ], + [ + 216459, + 123706, + 482 + ], + [ + 209404, + 128301, + 482 + ], + [ + 209579, + 128491, + 482 + ], + [ + 216677, + 133640, + 482 + ], + [ + 220783, + 136540, + 482 + ], + [ + 220906, + 136370, + 482 + ], + [ + 224136, + 131931, + 482 + ], + [ + 227506, + 134382, + 482 + ], + [ + 227506, + 134382, + 512 + ], + [ + 227506, + 134382, + 2932 + ], + [ + 234710, + 136515, + 2932 + ], + [ + 229924, + 143320, + 2932 + ], + [ + 224254, + 138853, + 2932 + ], + [ + 224130, + 139023, + 2932 + ], + [ + 234710, + 136515, + 512 + ], + [ + 229924, + 143320, + 512 + ], + [ + 234710, + 136515, + 532 + ], + [ + 229924, + 143320, + 532 + ], + [ + 224254, + 138853, + 512 + ], + [ + 224130, + 139023, + 512 + ], + [ + 243507, + 120624, + 3752 + ], + [ + 235960, + 110991, + 3752 + ], + [ + 245458, + 117882, + 3752 + ], + [ + 235767, + 111116, + 3752 + ], + [ + 235667, + 111182, + 3752 + ], + [ + 230733, + 114421, + 3752 + ], + [ + 250725, + 125757, + 3752 + ], + [ + 244733, + 124162, + 3752 + ], + [ + 230711, + 114435, + 3752 + ], + [ + 249506, + 127469, + 3752 + ], + [ + 243507, + 120624, + 442 + ], + [ + 250725, + 125757, + 442 + ], + [ + 245458, + 117882, + 442 + ], + [ + 245458, + 117882, + 3722 + ], + [ + 235960, + 110991, + 442 + ], + [ + 235960, + 110991, + 3722 + ], + [ + 235767, + 111116, + 442 + ], + [ + 235667, + 111182, + 442 + ], + [ + 230733, + 114421, + 442 + ], + [ + 230711, + 114435, + 442 + ], + [ + 230711, + 114435, + 3502 + ], + [ + 244733, + 124162, + 442 + ], + [ + 244733, + 124162, + 3502 + ], + [ + 249506, + 127469, + 442 + ], + [ + 239127, + 126716, + 3502 + ], + [ + 226148, + 117412, + 3502 + ], + [ + 226126, + 117378, + 3502 + ], + [ + 238272, + 131560, + 3502 + ], + [ + 236526, + 130339, + 3502 + ], + [ + 241718, + 128399, + 3502 + ], + [ + 241296, + 133674, + 3502 + ], + [ + 244031, + 130002, + 3502 + ], + [ + 226126, + 117378, + 442 + ], + [ + 238272, + 131560, + 442 + ], + [ + 238272, + 131560, + 3472 + ], + [ + 241296, + 133674, + 442 + ], + [ + 241296, + 133674, + 532 + ], + [ + 241296, + 133674, + 3472 + ], + [ + 244031, + 130002, + 442 + ], + [ + 241718, + 128399, + 442 + ], + [ + 269724, + 125155, + 3522 + ], + [ + 270795, + 125813, + 3522 + ], + [ + 267552, + 130267, + 3522 + ], + [ + 261643, + 128933, + 3522 + ], + [ + 263699, + 126130, + 3522 + ], + [ + 267997, + 124111, + 3522 + ], + [ + 262301, + 125150, + 3522 + ], + [ + 264561, + 122034, + 3522 + ], + [ + 264198, + 134874, + 3522 + ], + [ + 269483, + 138574, + 3522 + ], + [ + 265579, + 138864, + 3522 + ], + [ + 258205, + 133620, + 3522 + ], + [ + 268771, + 139552, + 3522 + ], + [ + 268012, + 140591, + 3522 + ], + [ + 264198, + 134874, + 892 + ], + [ + 269483, + 138574, + 892 + ], + [ + 264198, + 134874, + 1062 + ], + [ + 269483, + 138574, + 1062 + ], + [ + 267552, + 130267, + 892 + ], + [ + 267552, + 130267, + 942 + ], + [ + 267552, + 130267, + 1062 + ], + [ + 270795, + 125813, + 892 + ], + [ + 270795, + 125813, + 942 + ], + [ + 269724, + 125155, + 892 + ], + [ + 267997, + 124111, + 892 + ], + [ + 264561, + 122034, + 892 + ], + [ + 262301, + 125150, + 892 + ], + [ + 263699, + 126130, + 892 + ], + [ + 261643, + 128933, + 892 + ], + [ + 258205, + 133620, + 892 + ], + [ + 265579, + 138864, + 892 + ], + [ + 268012, + 140591, + 892 + ], + [ + 268771, + 139552, + 892 + ], + [ + 275036, + 133500, + 4422 + ], + [ + 274068, + 134829, + 4422 + ], + [ + 273822, + 132617, + 4422 + ], + [ + 276094, + 129496, + 4422 + ], + [ + 270902, + 125879, + 4422 + ], + [ + 276223, + 129318, + 4422 + ], + [ + 270969, + 125770, + 4422 + ], + [ + 267552, + 130267, + 4422 + ], + [ + 270795, + 125813, + 4422 + ], + [ + 272838, + 133968, + 4422 + ], + [ + 276094, + 129496, + 942 + ], + [ + 273822, + 132617, + 942 + ], + [ + 276223, + 129318, + 942 + ], + [ + 270969, + 125770, + 942 + ], + [ + 270902, + 125879, + 942 + ], + [ + 272838, + 133968, + 942 + ], + [ + 272838, + 133968, + 1062 + ], + [ + 274068, + 134829, + 942 + ], + [ + 274068, + 134829, + 1062 + ], + [ + 275036, + 133500, + 942 + ], + [ + 239663, + 138633, + 3472 + ], + [ + 234006, + 146275, + 3472 + ], + [ + 239243, + 138352, + 3472 + ], + [ + 242030, + 134187, + 3472 + ], + [ + 234710, + 136515, + 3472 + ], + [ + 236681, + 133773, + 3472 + ], + [ + 229924, + 143320, + 3472 + ], + [ + 239663, + 138633, + 532 + ], + [ + 234006, + 146275, + 532 + ], + [ + 239663, + 138633, + 542 + ], + [ + 234006, + 146275, + 542 + ], + [ + 239243, + 138352, + 532 + ], + [ + 242030, + 134187, + 532 + ], + [ + 336628, + 67047, + 3532 + ], + [ + 335233, + 68866, + 3532 + ], + [ + 330422, + 68973, + 3532 + ], + [ + 327637, + 59791, + 3532 + ], + [ + 321413, + 61704, + 3532 + ], + [ + 331944, + 73148, + 3532 + ], + [ + 329127, + 70864, + 3532 + ], + [ + 329010, + 70770, + 3532 + ], + [ + 335350, + 68960, + 3532 + ], + [ + 336628, + 67047, + 372 + ], + [ + 335233, + 68866, + 372 + ], + [ + 336628, + 67047, + 3422 + ], + [ + 335233, + 68866, + 3422 + ], + [ + 327637, + 59791, + 372 + ], + [ + 327637, + 59791, + 3422 + ], + [ + 321413, + 61704, + 372 + ], + [ + 321413, + 61704, + 392 + ], + [ + 321413, + 61704, + 3332 + ], + [ + 330422, + 68973, + 372 + ], + [ + 330422, + 68973, + 392 + ], + [ + 330422, + 68973, + 3332 + ], + [ + 329010, + 70770, + 372 + ], + [ + 329010, + 70770, + 392 + ], + [ + 329010, + 70770, + 3332 + ], + [ + 329127, + 70864, + 372 + ], + [ + 329127, + 70864, + 392 + ], + [ + 329127, + 70864, + 3332 + ], + [ + 331944, + 73148, + 372 + ], + [ + 335350, + 68960, + 372 + ], + [ + 335350, + 68960, + 3422 + ], + [ + 342837, + 65118, + 3422 + ], + [ + 341467, + 66952, + 3422 + ], + [ + 333863, + 57877, + 3422 + ], + [ + 338190, + 71237, + 3422 + ], + [ + 341584, + 67046, + 3422 + ], + [ + 342837, + 65118, + 352 + ], + [ + 341467, + 66952, + 352 + ], + [ + 342837, + 65118, + 3402 + ], + [ + 341467, + 66952, + 3402 + ], + [ + 333863, + 57877, + 352 + ], + [ + 333863, + 57877, + 3402 + ], + [ + 327637, + 59791, + 352 + ], + [ + 336628, + 67047, + 352 + ], + [ + 335233, + 68866, + 352 + ], + [ + 335350, + 68960, + 352 + ], + [ + 338190, + 71237, + 352 + ], + [ + 341584, + 67046, + 352 + ], + [ + 341584, + 67046, + 3402 + ], + [ + 300751, + 123562, + 3242 + ], + [ + 298348, + 126781, + 3242 + ], + [ + 300619, + 123464, + 3242 + ], + [ + 307689, + 114842, + 3242 + ], + [ + 307743, + 114881, + 3242 + ], + [ + 302333, + 122177, + 3242 + ], + [ + 301963, + 121903, + 3242 + ], + [ + 295840, + 125794, + 3242 + ], + [ + 299917, + 120333, + 3242 + ], + [ + 298495, + 119282, + 3242 + ], + [ + 303927, + 112023, + 3242 + ], + [ + 297958, + 127303, + 3242 + ], + [ + 300751, + 123562, + 592 + ], + [ + 298348, + 126781, + 592 + ], + [ + 300751, + 123562, + 602 + ], + [ + 298348, + 126781, + 602 + ], + [ + 300619, + 123464, + 592 + ], + [ + 300619, + 123464, + 602 + ], + [ + 301963, + 121903, + 592 + ], + [ + 301963, + 121903, + 602 + ], + [ + 302333, + 122177, + 592 + ], + [ + 302333, + 122177, + 602 + ], + [ + 307743, + 114881, + 592 + ], + [ + 307743, + 114881, + 602 + ], + [ + 307689, + 114842, + 592 + ], + [ + 303927, + 112023, + 592 + ], + [ + 303927, + 112023, + 3212 + ], + [ + 298495, + 119282, + 592 + ], + [ + 298495, + 119282, + 3212 + ], + [ + 299917, + 120333, + 592 + ], + [ + 295840, + 125794, + 592 + ], + [ + 297958, + 127303, + 592 + ], + [ + 310952, + 117539, + 3242 + ], + [ + 311149, + 117439, + 3242 + ], + [ + 311033, + 117598, + 3242 + ], + [ + 311186, + 117388, + 3242 + ], + [ + 303888, + 123272, + 3242 + ], + [ + 300222, + 128181, + 3242 + ], + [ + 305973, + 124814, + 3242 + ], + [ + 310952, + 117539, + 602 + ], + [ + 305973, + 124814, + 602 + ], + [ + 311033, + 117598, + 602 + ], + [ + 311149, + 117439, + 602 + ], + [ + 311186, + 117388, + 602 + ], + [ + 300222, + 128181, + 602 + ], + [ + 303888, + 123272, + 602 + ], + [ + 333629, + 110741, + 3612 + ], + [ + 334337, + 109627, + 3612 + ], + [ + 334429, + 109693, + 3612 + ], + [ + 328224, + 117845, + 3612 + ], + [ + 332862, + 110155, + 3612 + ], + [ + 333645, + 109130, + 3612 + ], + [ + 324201, + 114896, + 3612 + ], + [ + 329609, + 107676, + 3612 + ], + [ + 328185, + 117897, + 3612 + ], + [ + 333629, + 110741, + 472 + ], + [ + 328224, + 117845, + 472 + ], + [ + 333629, + 110741, + 532 + ], + [ + 328224, + 117845, + 532 + ], + [ + 333629, + 110741, + 3552 + ], + [ + 328224, + 117845, + 3552 + ], + [ + 334429, + 109693, + 472 + ], + [ + 334429, + 109693, + 532 + ], + [ + 334429, + 109693, + 3552 + ], + [ + 334337, + 109627, + 472 + ], + [ + 334337, + 109627, + 532 + ], + [ + 334337, + 109627, + 3552 + ], + [ + 333645, + 109130, + 472 + ], + [ + 332862, + 110155, + 472 + ], + [ + 329609, + 107676, + 472 + ], + [ + 324201, + 114896, + 472 + ], + [ + 328185, + 117897, + 472 + ], + [ + 339502, + 112081, + 3552 + ], + [ + 335044, + 108676, + 3552 + ], + [ + 332700, + 121225, + 3552 + ], + [ + 330739, + 119790, + 3552 + ], + [ + 330692, + 119855, + 3552 + ], + [ + 332653, + 121289, + 3552 + ], + [ + 339502, + 112081, + 532 + ], + [ + 332700, + 121225, + 532 + ], + [ + 339502, + 112081, + 3402 + ], + [ + 332700, + 121225, + 3402 + ], + [ + 335044, + 108676, + 532 + ], + [ + 330739, + 119790, + 532 + ], + [ + 330692, + 119855, + 532 + ], + [ + 332653, + 121289, + 532 + ], + [ + 330278, + 165190, + 3562 + ], + [ + 337488, + 172404, + 3562 + ], + [ + 329617, + 165846, + 3562 + ], + [ + 327202, + 166245, + 3562 + ], + [ + 328100, + 165355, + 3562 + ], + [ + 322013, + 165861, + 3562 + ], + [ + 324437, + 163457, + 3562 + ], + [ + 325634, + 169480, + 3562 + ], + [ + 333046, + 176505, + 3562 + ], + [ + 333151, + 176613, + 3562 + ], + [ + 332956, + 176802, + 3562 + ], + [ + 333737, + 175835, + 3562 + ], + [ + 333841, + 175943, + 3562 + ], + [ + 330278, + 165190, + 612 + ], + [ + 337488, + 172404, + 612 + ], + [ + 330278, + 165190, + 3462 + ], + [ + 337488, + 172404, + 3462 + ], + [ + 329617, + 165846, + 612 + ], + [ + 328100, + 165355, + 612 + ], + [ + 327202, + 166245, + 612 + ], + [ + 324437, + 163457, + 612 + ], + [ + 322013, + 165861, + 612 + ], + [ + 325634, + 169480, + 612 + ], + [ + 332956, + 176802, + 612 + ], + [ + 333151, + 176613, + 612 + ], + [ + 333046, + 176505, + 612 + ], + [ + 333737, + 175835, + 612 + ], + [ + 333841, + 175943, + 612 + ], + [ + 311662, + 117706, + 6562 + ], + [ + 334866, + 135470, + 6562 + ], + [ + 311601, + 117785, + 6562 + ], + [ + 311473, + 117952, + 6562 + ], + [ + 329358, + 142664, + 6562 + ], + [ + 306154, + 124900, + 6562 + ], + [ + 311662, + 117706, + 652 + ], + [ + 334866, + 135470, + 652 + ], + [ + 311601, + 117785, + 652 + ], + [ + 311473, + 117952, + 652 + ], + [ + 306154, + 124900, + 652 + ], + [ + 329358, + 142664, + 652 + ], + [ + 383533, + 127735, + 6612 + ], + [ + 383844, + 127529, + 6612 + ], + [ + 383582, + 127785, + 6612 + ], + [ + 375381, + 119436, + 6612 + ], + [ + 379831, + 129659, + 6612 + ], + [ + 370898, + 123632, + 6612 + ], + [ + 378379, + 131056, + 6612 + ], + [ + 380351, + 130200, + 6612 + ], + [ + 380185, + 130027, + 6612 + ], + [ + 380504, + 130358, + 6612 + ], + [ + 380650, + 130510, + 6612 + ], + [ + 380026, + 129861, + 6612 + ], + [ + 375381, + 119436, + 662 + ], + [ + 383844, + 127529, + 662 + ], + [ + 375381, + 119436, + 672 + ], + [ + 383844, + 127529, + 672 + ], + [ + 370898, + 123632, + 662 + ], + [ + 370898, + 123632, + 6512 + ], + [ + 378379, + 131056, + 662 + ], + [ + 378379, + 131056, + 6512 + ], + [ + 379831, + 129659, + 662 + ], + [ + 380026, + 129861, + 662 + ], + [ + 380185, + 130027, + 662 + ], + [ + 380351, + 130200, + 662 + ], + [ + 380504, + 130358, + 662 + ], + [ + 380650, + 130510, + 662 + ], + [ + 383533, + 127735, + 662 + ], + [ + 383582, + 127785, + 662 + ], + [ + 383532, + 119200, + 7122 + ], + [ + 379084, + 115970, + 7122 + ], + [ + 378597, + 114168, + 7122 + ], + [ + 377999, + 114811, + 7122 + ], + [ + 375381, + 119436, + 7122 + ], + [ + 383844, + 127529, + 7122 + ], + [ + 386585, + 124680, + 7122 + ], + [ + 386669, + 124766, + 7122 + ], + [ + 387457, + 123827, + 7122 + ], + [ + 387979, + 123489, + 7122 + ], + [ + 387541, + 123913, + 7122 + ], + [ + 383532, + 119200, + 672 + ], + [ + 387979, + 123489, + 672 + ], + [ + 383532, + 119200, + 692 + ], + [ + 387979, + 123489, + 692 + ], + [ + 383532, + 119200, + 6982 + ], + [ + 387979, + 123489, + 6982 + ], + [ + 378597, + 114168, + 672 + ], + [ + 378597, + 114168, + 692 + ], + [ + 378597, + 114168, + 6982 + ], + [ + 377999, + 114811, + 672 + ], + [ + 379084, + 115970, + 672 + ], + [ + 386669, + 124766, + 672 + ], + [ + 386585, + 124680, + 672 + ], + [ + 387457, + 123827, + 672 + ], + [ + 387541, + 123913, + 672 + ], + [ + 341965, + 117106, + 3402 + ], + [ + 341985, + 113977, + 3402 + ], + [ + 345747, + 112222, + 3402 + ], + [ + 344220, + 111091, + 3402 + ], + [ + 336346, + 124117, + 3402 + ], + [ + 336460, + 124214, + 3402 + ], + [ + 341965, + 117106, + 522 + ], + [ + 336460, + 124214, + 522 + ], + [ + 341965, + 117106, + 532 + ], + [ + 336460, + 124214, + 532 + ], + [ + 345747, + 112222, + 522 + ], + [ + 344220, + 111091, + 522 + ], + [ + 341985, + 113977, + 522 + ], + [ + 339502, + 112081, + 522 + ], + [ + 332700, + 121225, + 522 + ], + [ + 336346, + 124117, + 522 + ], + [ + 345842, + 120332, + 3912 + ], + [ + 345998, + 120187, + 3912 + ], + [ + 345877, + 120344, + 3912 + ], + [ + 345831, + 120060, + 3912 + ], + [ + 343263, + 123652, + 3912 + ], + [ + 341965, + 117106, + 3912 + ], + [ + 336460, + 124214, + 3912 + ], + [ + 340546, + 127151, + 3912 + ], + [ + 340089, + 127302, + 3912 + ], + [ + 340215, + 127239, + 3912 + ], + [ + 340389, + 127353, + 3912 + ], + [ + 340410, + 127326, + 3912 + ], + [ + 345842, + 120332, + 532 + ], + [ + 343263, + 123652, + 532 + ], + [ + 345877, + 120344, + 532 + ], + [ + 345998, + 120187, + 532 + ], + [ + 345831, + 120060, + 532 + ], + [ + 340089, + 127302, + 532 + ], + [ + 340215, + 127239, + 532 + ], + [ + 340389, + 127353, + 532 + ], + [ + 340410, + 127326, + 532 + ], + [ + 340546, + 127151, + 532 + ], + [ + 374145, + 136526, + 3402 + ], + [ + 374765, + 136104, + 3402 + ], + [ + 374236, + 136620, + 3402 + ], + [ + 366730, + 127732, + 3402 + ], + [ + 363790, + 127886, + 3402 + ], + [ + 365367, + 126410, + 3402 + ], + [ + 365182, + 129373, + 3402 + ], + [ + 364046, + 132734, + 3402 + ], + [ + 362744, + 131655, + 3402 + ], + [ + 371114, + 139667, + 3402 + ], + [ + 371183, + 139739, + 3402 + ], + [ + 370970, + 139949, + 3402 + ], + [ + 373174, + 137474, + 3402 + ], + [ + 373265, + 137567, + 3402 + ], + [ + 366730, + 127732, + 612 + ], + [ + 374765, + 136104, + 612 + ], + [ + 366730, + 127732, + 622 + ], + [ + 374765, + 136104, + 622 + ], + [ + 365367, + 126410, + 612 + ], + [ + 365367, + 126410, + 622 + ], + [ + 363790, + 127886, + 612 + ], + [ + 365182, + 129373, + 612 + ], + [ + 362744, + 131655, + 612 + ], + [ + 364046, + 132734, + 612 + ], + [ + 370970, + 139949, + 612 + ], + [ + 371183, + 139739, + 612 + ], + [ + 371114, + 139667, + 612 + ], + [ + 373265, + 137567, + 612 + ], + [ + 373174, + 137474, + 612 + ], + [ + 374145, + 136526, + 612 + ], + [ + 374236, + 136620, + 612 + ], + [ + 365367, + 126410, + 6512 + ], + [ + 366081, + 125741, + 6512 + ], + [ + 367279, + 127020, + 6512 + ], + [ + 377511, + 132933, + 6512 + ], + [ + 377664, + 133091, + 6512 + ], + [ + 374855, + 136016, + 6512 + ], + [ + 366730, + 127732, + 6512 + ], + [ + 376991, + 132392, + 6512 + ], + [ + 374765, + 136104, + 6512 + ], + [ + 377809, + 133242, + 6512 + ], + [ + 374890, + 136052, + 6512 + ], + [ + 377345, + 132760, + 6512 + ], + [ + 377185, + 132594, + 6512 + ], + [ + 370898, + 123632, + 622 + ], + [ + 378379, + 131056, + 622 + ], + [ + 367279, + 127020, + 622 + ], + [ + 366081, + 125741, + 622 + ], + [ + 374855, + 136016, + 622 + ], + [ + 374890, + 136052, + 622 + ], + [ + 377809, + 133242, + 622 + ], + [ + 377664, + 133091, + 622 + ], + [ + 377511, + 132933, + 622 + ], + [ + 377345, + 132760, + 622 + ], + [ + 377185, + 132594, + 622 + ], + [ + 376991, + 132392, + 622 + ], + [ + 339535, + 156468, + 3462 + ], + [ + 346572, + 163545, + 3462 + ], + [ + 337013, + 158896, + 3462 + ], + [ + 332416, + 158272, + 3462 + ], + [ + 335552, + 157450, + 3462 + ], + [ + 335673, + 157548, + 3462 + ], + [ + 335425, + 157360, + 3462 + ], + [ + 335293, + 157278, + 3462 + ], + [ + 335155, + 157206, + 3462 + ], + [ + 335013, + 157142, + 3462 + ], + [ + 334867, + 157088, + 3462 + ], + [ + 334717, + 157044, + 3462 + ], + [ + 334565, + 157010, + 3462 + ], + [ + 334412, + 156986, + 3462 + ], + [ + 334257, + 156972, + 3462 + ], + [ + 334101, + 156968, + 3462 + ], + [ + 333945, + 156974, + 3462 + ], + [ + 333791, + 156991, + 3462 + ], + [ + 333637, + 157018, + 3462 + ], + [ + 333486, + 157055, + 3462 + ], + [ + 333338, + 157102, + 3462 + ], + [ + 333192, + 157158, + 3462 + ], + [ + 333051, + 157224, + 3462 + ], + [ + 332915, + 157299, + 3462 + ], + [ + 332784, + 157383, + 3462 + ], + [ + 332658, + 157475, + 3462 + ], + [ + 332539, + 157575, + 3462 + ], + [ + 332427, + 157683, + 3462 + ], + [ + 332133, + 157988, + 3462 + ], + [ + 342098, + 168006, + 3462 + ], + [ + 342243, + 167740, + 3462 + ], + [ + 342306, + 167805, + 3462 + ], + [ + 342940, + 167068, + 3462 + ], + [ + 343003, + 167132, + 3462 + ], + [ + 346643, + 163616, + 3462 + ], + [ + 339535, + 156468, + 582 + ], + [ + 346572, + 163545, + 582 + ], + [ + 339535, + 156468, + 602 + ], + [ + 346572, + 163545, + 602 + ], + [ + 337013, + 158896, + 582 + ], + [ + 335673, + 157548, + 582 + ], + [ + 335552, + 157450, + 582 + ], + [ + 335425, + 157360, + 582 + ], + [ + 335293, + 157278, + 582 + ], + [ + 335155, + 157206, + 582 + ], + [ + 335013, + 157142, + 582 + ], + [ + 334867, + 157088, + 582 + ], + [ + 334717, + 157044, + 582 + ], + [ + 334565, + 157010, + 582 + ], + [ + 334412, + 156986, + 582 + ], + [ + 334257, + 156972, + 582 + ], + [ + 334101, + 156968, + 582 + ], + [ + 333945, + 156974, + 582 + ], + [ + 333791, + 156991, + 582 + ], + [ + 333637, + 157018, + 582 + ], + [ + 333486, + 157055, + 582 + ], + [ + 333338, + 157102, + 582 + ], + [ + 333192, + 157158, + 582 + ], + [ + 333051, + 157224, + 582 + ], + [ + 332915, + 157299, + 582 + ], + [ + 332784, + 157383, + 582 + ], + [ + 332658, + 157475, + 582 + ], + [ + 332539, + 157575, + 582 + ], + [ + 332427, + 157683, + 582 + ], + [ + 332133, + 157988, + 582 + ], + [ + 332133, + 157988, + 592 + ], + [ + 332416, + 158272, + 582 + ], + [ + 332416, + 158272, + 592 + ], + [ + 342098, + 168006, + 582 + ], + [ + 342098, + 168006, + 592 + ], + [ + 342306, + 167805, + 582 + ], + [ + 342243, + 167740, + 582 + ], + [ + 342940, + 167068, + 582 + ], + [ + 343003, + 167132, + 582 + ], + [ + 346643, + 163616, + 582 + ], + [ + 330728, + 158839, + 3462 + ], + [ + 330955, + 157510, + 3462 + ], + [ + 331304, + 157155, + 3462 + ], + [ + 330891, + 157648, + 3462 + ], + [ + 330837, + 157790, + 3462 + ], + [ + 330792, + 157935, + 3462 + ], + [ + 330757, + 158083, + 3462 + ], + [ + 330731, + 158233, + 3462 + ], + [ + 330716, + 158384, + 3462 + ], + [ + 330710, + 158536, + 3462 + ], + [ + 330714, + 158688, + 3462 + ], + [ + 330752, + 158989, + 3462 + ], + [ + 330786, + 159137, + 3462 + ], + [ + 330829, + 159283, + 3462 + ], + [ + 330882, + 159425, + 3462 + ], + [ + 330944, + 159564, + 3462 + ], + [ + 331015, + 159698, + 3462 + ], + [ + 331095, + 159828, + 3462 + ], + [ + 331183, + 159952, + 3462 + ], + [ + 331279, + 160070, + 3462 + ], + [ + 331382, + 160181, + 3462 + ], + [ + 331493, + 160285, + 3462 + ], + [ + 331610, + 160382, + 3462 + ], + [ + 331731, + 160469, + 3462 + ], + [ + 328600, + 163511, + 3462 + ], + [ + 341152, + 168809, + 3462 + ], + [ + 337516, + 172432, + 3462 + ], + [ + 341207, + 168866, + 3462 + ], + [ + 341848, + 168136, + 3462 + ], + [ + 341904, + 168194, + 3462 + ], + [ + 331304, + 157155, + 592 + ], + [ + 330955, + 157510, + 592 + ], + [ + 330891, + 157648, + 592 + ], + [ + 330837, + 157790, + 592 + ], + [ + 330792, + 157935, + 592 + ], + [ + 330757, + 158083, + 592 + ], + [ + 330731, + 158233, + 592 + ], + [ + 330716, + 158384, + 592 + ], + [ + 330710, + 158536, + 592 + ], + [ + 330714, + 158688, + 592 + ], + [ + 330728, + 158839, + 592 + ], + [ + 330752, + 158989, + 592 + ], + [ + 330786, + 159137, + 592 + ], + [ + 330829, + 159283, + 592 + ], + [ + 330882, + 159425, + 592 + ], + [ + 330944, + 159564, + 592 + ], + [ + 331015, + 159698, + 592 + ], + [ + 331095, + 159828, + 592 + ], + [ + 331183, + 159952, + 592 + ], + [ + 331279, + 160070, + 592 + ], + [ + 331382, + 160181, + 592 + ], + [ + 331493, + 160285, + 592 + ], + [ + 331610, + 160382, + 592 + ], + [ + 331731, + 160469, + 592 + ], + [ + 328600, + 163511, + 592 + ], + [ + 330278, + 165190, + 592 + ], + [ + 337488, + 172404, + 592 + ], + [ + 337516, + 172432, + 592 + ], + [ + 341207, + 168866, + 592 + ], + [ + 341152, + 168809, + 592 + ], + [ + 341848, + 168136, + 592 + ], + [ + 341904, + 168194, + 592 + ], + [ + 378317, + 75059, + 1124 + ], + [ + 378738, + 76596, + 682 + ], + [ + 377529, + 76956, + 857 + ], + [ + 378953, + 67998, + 918 + ], + [ + 378587, + 68443, + 1159 + ], + [ + 377742, + 67890, + 918 + ], + [ + 373456, + 54525, + 332 + ], + [ + 365076, + 48582, + 332 + ], + [ + 365016, + 48381, + 332 + ], + [ + 380668, + 58689, + 515 + ], + [ + 376187, + 56381, + 463 + ], + [ + 372503, + 56010, + 577 + ], + [ + 374585, + 57769, + 608 + ], + [ + 371945, + 56696, + 332 + ], + [ + 384526, + 65287, + 864 + ], + [ + 382738, + 64682, + 838 + ], + [ + 384706, + 64101, + 977 + ], + [ + 373775, + 55133, + 639 + ], + [ + 375964, + 60288, + 883 + ], + [ + 374095, + 60410, + 332 + ], + [ + 375135, + 58915, + 332 + ], + [ + 380442, + 60171, + 875 + ], + [ + 381590, + 62000, + 962 + ], + [ + 378229, + 62590, + 794 + ], + [ + 373009, + 59762, + 719 + ], + [ + 370804, + 59271, + 762 + ], + [ + 369207, + 57009, + 332 + ], + [ + 372690, + 60488, + 787 + ], + [ + 367241, + 55868, + 332 + ], + [ + 369100, + 57162, + 332 + ], + [ + 365988, + 57669, + 332 + ], + [ + 373463, + 63139, + 818 + ], + [ + 373677, + 61374, + 741 + ], + [ + 372314, + 62577, + 749 + ], + [ + 372515, + 62210, + 332 + ], + [ + 372561, + 62211, + 757 + ], + [ + 378031, + 69930, + 1171 + ], + [ + 379546, + 68901, + 917 + ], + [ + 379880, + 71279, + 1195 + ], + [ + 384732, + 68178, + 682 + ], + [ + 384261, + 67604, + 953 + ], + [ + 384784, + 68103, + 672 + ], + [ + 374756, + 69498, + 802 + ], + [ + 376554, + 68936, + 522 + ], + [ + 376888, + 69842, + 857 + ], + [ + 373034, + 69360, + 522 + ], + [ + 374379, + 67423, + 522 + ], + [ + 374694, + 69165, + 568 + ], + [ + 372674, + 70180, + 522 + ], + [ + 372813, + 71421, + 1023 + ], + [ + 371411, + 70507, + 935 + ], + [ + 377902, + 68940, + 1200 + ], + [ + 370850, + 68928, + 522 + ], + [ + 371160, + 68032, + 522 + ], + [ + 371346, + 68158, + 522 + ], + [ + 370300, + 69525, + 717 + ], + [ + 369193, + 70925, + 552 + ], + [ + 370939, + 70838, + 821 + ], + [ + 371618, + 71860, + 1328 + ], + [ + 373350, + 70343, + 921 + ], + [ + 373163, + 69450, + 522 + ], + [ + 378153, + 77385, + 572 + ], + [ + 378752, + 75318, + 1265 + ], + [ + 378838, + 76596, + 682 + ], + [ + 379439, + 74847, + 1207 + ], + [ + 379390, + 74488, + 1186 + ], + [ + 380006, + 74941, + 682 + ], + [ + 379096, + 75255, + 1270 + ], + [ + 380722, + 73916, + 692 + ], + [ + 382727, + 71047, + 692 + ], + [ + 382497, + 71375, + 692 + ], + [ + 381895, + 70985, + 1141 + ], + [ + 382655, + 70055, + 924 + ], + [ + 383280, + 68727, + 940 + ], + [ + 383344, + 69097, + 1141 + ], + [ + 386736, + 65309, + 672 + ], + [ + 373539, + 71705, + 1033 + ], + [ + 372569, + 72449, + 1123 + ], + [ + 370119, + 70913, + 889 + ], + [ + 380526, + 72860, + 1410 + ], + [ + 377697, + 67564, + 879 + ], + [ + 380459, + 72529, + 1088 + ], + [ + 380042, + 72602, + 999 + ], + [ + 379665, + 63651, + 784 + ], + [ + 381947, + 64688, + 972 + ], + [ + 372863, + 61819, + 752 + ], + [ + 372229, + 61924, + 757 + ], + [ + 373381, + 70669, + 741 + ], + [ + 374031, + 70620, + 827 + ], + [ + 374716, + 72589, + 872 + ], + [ + 375039, + 71535, + 1003 + ], + [ + 376119, + 72727, + 859 + ], + [ + 377192, + 74286, + 1068 + ], + [ + 377100, + 76671, + 815 + ], + [ + 375437, + 58990, + 622 + ], + [ + 383944, + 63083, + 890 + ], + [ + 384149, + 62559, + 640 + ], + [ + 384456, + 62888, + 932 + ], + [ + 381038, + 71337, + 1288 + ], + [ + 375225, + 65972, + 841 + ], + [ + 377272, + 67293, + 892 + ], + [ + 377489, + 67592, + 522 + ], + [ + 378927, + 64188, + 994 + ], + [ + 378422, + 63976, + 930 + ], + [ + 371615, + 63504, + 522 + ], + [ + 372030, + 62939, + 741 + ], + [ + 380141, + 73278, + 1134 + ], + [ + 377013, + 68392, + 571 + ], + [ + 378551, + 73986, + 922 + ], + [ + 379016, + 71794, + 944 + ], + [ + 379970, + 74992, + 682 + ], + [ + 374312, + 72657, + 990 + ], + [ + 372633, + 73112, + 804 + ], + [ + 373721, + 54764, + 549 + ], + [ + 376516, + 58775, + 629 + ], + [ + 377832, + 59562, + 857 + ], + [ + 376570, + 59102, + 782 + ], + [ + 377357, + 67968, + 832 + ], + [ + 374320, + 69549, + 954 + ], + [ + 375564, + 75542, + 941 + ], + [ + 373046, + 70730, + 589 + ], + [ + 381667, + 62641, + 854 + ], + [ + 382381, + 61992, + 839 + ], + [ + 384741, + 61873, + 652 + ], + [ + 377629, + 72800, + 1039 + ], + [ + 377680, + 70340, + 962 + ], + [ + 373873, + 74378, + 785 + ], + [ + 370241, + 71886, + 809 + ], + [ + 373686, + 64820, + 828 + ], + [ + 382726, + 61501, + 608 + ], + [ + 384626, + 63012, + 952 + ], + [ + 378501, + 64625, + 828 + ], + [ + 381331, + 60249, + 576 + ], + [ + 369192, + 71195, + 726 + ], + [ + 383784, + 62028, + 621 + ], + [ + 383653, + 61029, + 640 + ], + [ + 383963, + 61222, + 523 + ], + [ + 374217, + 74702, + 854 + ], + [ + 377692, + 58532, + 804 + ], + [ + 378539, + 58331, + 537 + ], + [ + 380326, + 59470, + 540 + ], + [ + 379919, + 59280, + 536 + ], + [ + 383536, + 62220, + 799 + ], + [ + 381021, + 64561, + 823 + ], + [ + 375038, + 74944, + 1024 + ], + [ + 377379, + 73518, + 945 + ], + [ + 376217, + 73384, + 1024 + ], + [ + 376871, + 58713, + 787 + ], + [ + 369022, + 71216, + 552 + ], + [ + 429299, + 81775, + 985 + ], + [ + 301265, + 70135, + 422 + ], + [ + 300020, + 70398, + 422 + ], + [ + 301115, + 69841, + 422 + ], + [ + 300485, + 71174, + 422 + ], + [ + 301740, + 70990, + 422 + ], + [ + 300849, + 71465, + 422 + ], + [ + 301318, + 70108, + 422 + ], + [ + 299899, + 70202, + 502 + ], + [ + 301109, + 69587, + 502 + ], + [ + 301213, + 69791, + 422 + ], + [ + 368423, + 74284, + 532 + ], + [ + 367730, + 73718, + 552 + ], + [ + 367581, + 72284, + 492 + ], + [ + 369135, + 81747, + 562 + ], + [ + 374018, + 77507, + 572 + ], + [ + 368699, + 83874, + 532 + ], + [ + 367859, + 81872, + 552 + ], + [ + 365005, + 78391, + 512 + ], + [ + 368444, + 81194, + 562 + ], + [ + 371843, + 77063, + 562 + ], + [ + 362319, + 78609, + 522 + ], + [ + 364451, + 79065, + 512 + ], + [ + 363752, + 78488, + 512 + ], + [ + 367153, + 74399, + 552 + ], + [ + 364339, + 77831, + 512 + ], + [ + 367862, + 74980, + 542 + ], + [ + 368562, + 82424, + 552 + ], + [ + 371266, + 77751, + 552 + ], + [ + 371965, + 78332, + 562 + ], + [ + 372533, + 77636, + 572 + ], + [ + 206259, + 124886, + 592 + ], + [ + 206430, + 125176, + 602 + ], + [ + 206072, + 124984, + 592 + ], + [ + 203991, + 124758, + 1646 + ], + [ + 203422, + 125508, + 532 + ], + [ + 203362, + 125366, + 532 + ], + [ + 205424, + 125285, + 1024 + ], + [ + 203563, + 126816, + 612 + ], + [ + 205961, + 124910, + 602 + ], + [ + 205853, + 124832, + 602 + ], + [ + 205748, + 124750, + 572 + ], + [ + 203339, + 125375, + 532 + ], + [ + 203289, + 125360, + 522 + ], + [ + 205503, + 124574, + 873 + ], + [ + 205549, + 124572, + 562 + ], + [ + 205647, + 124663, + 562 + ], + [ + 205339, + 124120, + 492 + ], + [ + 205312, + 124246, + 512 + ], + [ + 205282, + 124282, + 512 + ], + [ + 205033, + 123903, + 302 + ], + [ + 205140, + 123842, + 302 + ], + [ + 204655, + 124504, + 1522 + ], + [ + 205365, + 124379, + 542 + ], + [ + 205455, + 124477, + 542 + ], + [ + 204997, + 125089, + 1134 + ], + [ + 203174, + 124969, + 302 + ], + [ + 203199, + 125198, + 642 + ], + [ + 203223, + 125341, + 522 + ], + [ + 203051, + 125040, + 302 + ], + [ + 204439, + 125348, + 1130 + ], + [ + 203472, + 125654, + 532 + ], + [ + 203545, + 125954, + 552 + ], + [ + 203568, + 126107, + 572 + ], + [ + 203581, + 126261, + 572 + ], + [ + 203584, + 126415, + 602 + ], + [ + 203392, + 126503, + 572 + ], + [ + 203513, + 125803, + 552 + ], + [ + 271430, + 87656, + 642 + ], + [ + 271448, + 87794, + 462 + ], + [ + 271373, + 87623, + 642 + ], + [ + 271245, + 87911, + 462 + ], + [ + 271358, + 87914, + 462 + ], + [ + 271313, + 87594, + 642 + ], + [ + 271242, + 88061, + 462 + ], + [ + 270314, + 88038, + 462 + ], + [ + 271191, + 87545, + 632 + ], + [ + 271128, + 87525, + 632 + ], + [ + 271064, + 87509, + 632 + ], + [ + 270999, + 87496, + 632 + ], + [ + 270983, + 87493, + 632 + ], + [ + 270966, + 87490, + 632 + ], + [ + 270950, + 87488, + 632 + ], + [ + 270933, + 87486, + 632 + ], + [ + 270917, + 87484, + 632 + ], + [ + 270901, + 87482, + 632 + ], + [ + 270884, + 87481, + 632 + ], + [ + 270807, + 87477, + 632 + ], + [ + 270317, + 87888, + 462 + ], + [ + 270730, + 87478, + 632 + ], + [ + 270653, + 87484, + 632 + ], + [ + 270576, + 87494, + 632 + ], + [ + 270500, + 87509, + 622 + ], + [ + 270426, + 87529, + 622 + ], + [ + 270352, + 87553, + 622 + ], + [ + 270281, + 87582, + 612 + ], + [ + 270211, + 87615, + 612 + ], + [ + 270126, + 87752, + 462 + ], + [ + 270215, + 87885, + 462 + ], + [ + 271253, + 87568, + 632 + ], + [ + 332686, + 144539, + 782 + ], + [ + 332436, + 144378, + 1084 + ], + [ + 332970, + 144157, + 782 + ], + [ + 331628, + 145191, + 965 + ], + [ + 332108, + 145087, + 1116 + ], + [ + 330394, + 147703, + 972 + ], + [ + 329197, + 147149, + 852 + ], + [ + 330231, + 147828, + 972 + ], + [ + 331587, + 144834, + 1055 + ], + [ + 332066, + 144765, + 1120 + ], + [ + 332003, + 143482, + 802 + ], + [ + 332334, + 143714, + 901 + ], + [ + 355778, + 62380, + 722 + ], + [ + 355283, + 62068, + 515 + ], + [ + 355806, + 61882, + 452 + ], + [ + 353558, + 73686, + 512 + ], + [ + 354587, + 73277, + 577 + ], + [ + 353588, + 73781, + 512 + ], + [ + 350601, + 70925, + 487 + ], + [ + 351559, + 68783, + 522 + ], + [ + 352683, + 71618, + 462 + ], + [ + 354711, + 68167, + 629 + ], + [ + 354570, + 67168, + 504 + ], + [ + 357415, + 66125, + 526 + ], + [ + 360442, + 69813, + 618 + ], + [ + 362380, + 70939, + 482 + ], + [ + 357326, + 72485, + 462 + ], + [ + 357289, + 72370, + 462 + ], + [ + 362409, + 71034, + 482 + ], + [ + 363541, + 70673, + 482 + ], + [ + 363485, + 70491, + 482 + ], + [ + 361480, + 68902, + 482 + ], + [ + 356820, + 65747, + 538 + ], + [ + 359510, + 69501, + 491 + ], + [ + 361196, + 66437, + 619 + ], + [ + 359466, + 65749, + 548 + ], + [ + 359610, + 64760, + 452 + ], + [ + 353573, + 69607, + 517 + ], + [ + 354113, + 69804, + 462 + ], + [ + 356415, + 64736, + 802 + ], + [ + 355739, + 65426, + 699 + ], + [ + 355152, + 64737, + 520 + ], + [ + 356434, + 62705, + 741 + ], + [ + 356398, + 62390, + 811 + ], + [ + 356518, + 62628, + 452 + ], + [ + 355627, + 61329, + 566 + ], + [ + 355243, + 61714, + 616 + ], + [ + 348398, + 65619, + 530 + ], + [ + 347783, + 65119, + 342 + ], + [ + 350608, + 67366, + 342 + ], + [ + 335823, + 79075, + 586 + ], + [ + 334918, + 79541, + 482 + ], + [ + 334888, + 79445, + 482 + ], + [ + 342148, + 67543, + 739 + ], + [ + 344407, + 69328, + 342 + ], + [ + 332506, + 80192, + 472 + ], + [ + 332474, + 80086, + 472 + ], + [ + 336544, + 69975, + 523 + ], + [ + 329903, + 71497, + 584 + ], + [ + 321939, + 79954, + 650 + ], + [ + 325515, + 83193, + 522 + ], + [ + 320188, + 78913, + 572 + ], + [ + 325162, + 74628, + 575 + ], + [ + 322904, + 72789, + 422 + ], + [ + 325717, + 75056, + 392 + ], + [ + 329843, + 80899, + 472 + ], + [ + 329898, + 81081, + 472 + ], + [ + 328741, + 81365, + 502 + ], + [ + 322157, + 74066, + 835 + ], + [ + 322930, + 72940, + 908 + ], + [ + 322985, + 73307, + 1000 + ], + [ + 324112, + 75162, + 689 + ], + [ + 324137, + 75468, + 468 + ], + [ + 323863, + 75486, + 672 + ], + [ + 320326, + 78742, + 552 + ], + [ + 325912, + 76898, + 601 + ], + [ + 323650, + 75899, + 481 + ], + [ + 327823, + 79309, + 472 + ], + [ + 328768, + 81461, + 502 + ], + [ + 326387, + 82038, + 512 + ], + [ + 326962, + 77770, + 624 + ], + [ + 326182, + 75513, + 482 + ], + [ + 328549, + 76731, + 598 + ], + [ + 329303, + 77535, + 472 + ], + [ + 333507, + 74016, + 518 + ], + [ + 332213, + 73299, + 657 + ], + [ + 332162, + 72976, + 546 + ], + [ + 344102, + 69970, + 570 + ], + [ + 343211, + 69105, + 591 + ], + [ + 331349, + 76013, + 488 + ], + [ + 329392, + 77546, + 640 + ], + [ + 334015, + 77396, + 462 + ], + [ + 335996, + 79005, + 462 + ], + [ + 336052, + 79187, + 462 + ], + [ + 338769, + 71734, + 474 + ], + [ + 338650, + 70769, + 588 + ], + [ + 332145, + 79642, + 618 + ], + [ + 332533, + 78132, + 465 + ], + [ + 336842, + 75079, + 597 + ], + [ + 336432, + 72057, + 496 + ], + [ + 338150, + 71514, + 587 + ], + [ + 332167, + 77538, + 640 + ], + [ + 341119, + 77518, + 592 + ], + [ + 338658, + 78281, + 462 + ], + [ + 338623, + 78167, + 462 + ], + [ + 337992, + 77333, + 596 + ], + [ + 340263, + 75472, + 462 + ], + [ + 342290, + 77249, + 462 + ], + [ + 341149, + 77613, + 592 + ], + [ + 342235, + 77067, + 462 + ], + [ + 345970, + 71512, + 505 + ], + [ + 346441, + 73557, + 462 + ], + [ + 344367, + 72000, + 486 + ], + [ + 342027, + 68264, + 646 + ], + [ + 341295, + 68376, + 514 + ], + [ + 341205, + 67697, + 524 + ], + [ + 347323, + 75602, + 472 + ], + [ + 344903, + 76352, + 462 + ], + [ + 344871, + 76247, + 462 + ], + [ + 341696, + 73660, + 462 + ], + [ + 343229, + 71857, + 492 + ], + [ + 348445, + 75162, + 462 + ], + [ + 348501, + 75344, + 462 + ], + [ + 347353, + 75697, + 602 + ], + [ + 345112, + 70569, + 564 + ], + [ + 345529, + 68126, + 616 + ], + [ + 349848, + 71664, + 746 + ], + [ + 350826, + 72613, + 514 + ], + [ + 350291, + 72993, + 898 + ], + [ + 349779, + 73029, + 829 + ], + [ + 351070, + 74331, + 462 + ], + [ + 347875, + 71756, + 462 + ], + [ + 354673, + 73230, + 462 + ], + [ + 350926, + 73296, + 641 + ], + [ + 351105, + 74446, + 462 + ], + [ + 354730, + 73411, + 462 + ], + [ + 323242, + 75306, + 858 + ], + [ + 321805, + 75142, + 539 + ], + [ + 321302, + 75234, + 509 + ], + [ + 349335, + 67899, + 516 + ], + [ + 350482, + 67516, + 357 + ], + [ + 351062, + 68492, + 683 + ], + [ + 355947, + 63707, + 637 + ], + [ + 357499, + 64472, + 885 + ], + [ + 341929, + 67602, + 518 + ], + [ + 349761, + 66900, + 721 + ], + [ + 349563, + 67607, + 682 + ], + [ + 331336, + 73565, + 585 + ], + [ + 329766, + 73964, + 498 + ], + [ + 329005, + 71372, + 525 + ], + [ + 356619, + 62423, + 452 + ], + [ + 355872, + 63062, + 783 + ], + [ + 355550, + 61263, + 342 + ], + [ + 356717, + 62771, + 785 + ], + [ + 358866, + 64446, + 820 + ], + [ + 347299, + 70446, + 629 + ], + [ + 343528, + 71462, + 642 + ], + [ + 343135, + 71156, + 497 + ], + [ + 351290, + 66745, + 532 + ], + [ + 351844, + 67359, + 497 + ], + [ + 349738, + 70950, + 518 + ], + [ + 353808, + 69585, + 644 + ], + [ + 337622, + 70891, + 519 + ], + [ + 335669, + 71845, + 487 + ], + [ + 334853, + 69577, + 528 + ], + [ + 336354, + 71389, + 644 + ], + [ + 325248, + 75278, + 559 + ], + [ + 319133, + 77746, + 635 + ], + [ + 318955, + 77641, + 422 + ], + [ + 323313, + 75974, + 606 + ], + [ + 325597, + 77962, + 476 + ], + [ + 322850, + 75669, + 706 + ], + [ + 330662, + 73775, + 650 + ], + [ + 335312, + 69132, + 535 + ], + [ + 355039, + 63760, + 736 + ], + [ + 352023, + 65647, + 550 + ], + [ + 338911, + 70728, + 673 + ], + [ + 340876, + 71874, + 608 + ], + [ + 341564, + 67329, + 524 + ], + [ + 346006, + 67381, + 574 + ], + [ + 347892, + 65267, + 537 + ], + [ + 359346, + 64748, + 705 + ], + [ + 358995, + 65461, + 752 + ], + [ + 354977, + 70196, + 595 + ], + [ + 357668, + 65827, + 770 + ], + [ + 359688, + 64644, + 452 + ], + [ + 326509, + 74408, + 522 + ], + [ + 326552, + 74740, + 523 + ], + [ + 326105, + 74838, + 656 + ], + [ + 327962, + 72354, + 539 + ], + [ + 330866, + 72300, + 621 + ], + [ + 330626, + 73462, + 740 + ], + [ + 353971, + 68561, + 676 + ], + [ + 357068, + 65464, + 745 + ], + [ + 354581, + 64066, + 524 + ], + [ + 352852, + 66274, + 605 + ], + [ + 331587, + 77698, + 691 + ], + [ + 332701, + 74589, + 671 + ], + [ + 334691, + 76200, + 674 + ], + [ + 335454, + 75588, + 462 + ], + [ + 355988, + 61617, + 452 + ], + [ + 322402, + 76063, + 525 + ], + [ + 350719, + 69223, + 498 + ], + [ + 346855, + 72098, + 590 + ], + [ + 352337, + 68006, + 575 + ], + [ + 351875, + 67682, + 329 + ], + [ + 356779, + 65415, + 579 + ], + [ + 335836, + 75270, + 511 + ], + [ + 325687, + 75233, + 569 + ], + [ + 354098, + 69571, + 602 + ], + [ + 343737, + 70382, + 656 + ], + [ + 343484, + 71118, + 673 + ], + [ + 340187, + 70239, + 512 + ], + [ + 342500, + 68512, + 511 + ], + [ + 336256, + 76212, + 578 + ], + [ + 336547, + 75870, + 472 + ], + [ + 322969, + 76673, + 502 + ], + [ + 334995, + 75474, + 646 + ], + [ + 344663, + 70607, + 676 + ], + [ + 344749, + 71281, + 634 + ], + [ + 362870, + 67179, + 482 + ], + [ + 358091, + 124745, + 760 + ], + [ + 357082, + 124503, + 637 + ], + [ + 358992, + 121239, + 760 + ], + [ + 383663, + 110215, + 395 + ], + [ + 383647, + 109884, + 773 + ], + [ + 384940, + 109919, + 344 + ], + [ + 377880, + 96460, + 982 + ], + [ + 376887, + 96647, + 922 + ], + [ + 378571, + 95238, + 652 + ], + [ + 385950, + 104720, + 708 + ], + [ + 386001, + 105063, + 781 + ], + [ + 384527, + 103426, + 751 + ], + [ + 387330, + 102868, + 119 + ], + [ + 388311, + 103919, + 109 + ], + [ + 387463, + 103868, + 117 + ], + [ + 375672, + 106488, + 1118 + ], + [ + 374824, + 106542, + 924 + ], + [ + 375618, + 106134, + 1023 + ], + [ + 388050, + 101536, + 892 + ], + [ + 389892, + 100515, + 1009 + ], + [ + 390013, + 101920, + 94 + ], + [ + 394879, + 100780, + 1049 + ], + [ + 395332, + 100813, + 752 + ], + [ + 394810, + 101263, + 752 + ], + [ + 396849, + 100122, + 1029 + ], + [ + 397380, + 99175, + 752 + ], + [ + 397818, + 99643, + 752 + ], + [ + 395512, + 99049, + 1022 + ], + [ + 393511, + 100035, + 1110 + ], + [ + 396519, + 99923, + 1036 + ], + [ + 397311, + 99102, + 752 + ], + [ + 396083, + 98744, + 1132 + ], + [ + 394904, + 97571, + 987 + ], + [ + 397570, + 97315, + 736 + ], + [ + 395879, + 97399, + 753 + ], + [ + 398064, + 94345, + 772 + ], + [ + 389077, + 99560, + 1056 + ], + [ + 390141, + 100179, + 752 + ], + [ + 400383, + 95053, + 732 + ], + [ + 398481, + 93870, + 964 + ], + [ + 397900, + 93012, + 946 + ], + [ + 392065, + 98383, + 1054 + ], + [ + 391890, + 98542, + 752 + ], + [ + 391713, + 98567, + 974 + ], + [ + 379721, + 103700, + 818 + ], + [ + 380678, + 103927, + 467 + ], + [ + 380791, + 104565, + 860 + ], + [ + 393299, + 95469, + 758 + ], + [ + 397763, + 92930, + 782 + ], + [ + 394756, + 96588, + 740 + ], + [ + 390654, + 99509, + 1046 + ], + [ + 390395, + 101006, + 970 + ], + [ + 388947, + 93483, + 840 + ], + [ + 390218, + 93477, + 892 + ], + [ + 389219, + 95503, + 908 + ], + [ + 392536, + 102458, + 79 + ], + [ + 392851, + 102605, + 752 + ], + [ + 391868, + 103146, + 58 + ], + [ + 380649, + 89881, + 772 + ], + [ + 382080, + 91357, + 832 + ], + [ + 379810, + 90680, + 872 + ], + [ + 381405, + 92312, + 842 + ], + [ + 387898, + 93008, + 824 + ], + [ + 387544, + 92485, + 814 + ], + [ + 356120, + 119089, + 765 + ], + [ + 354205, + 118750, + 852 + ], + [ + 356622, + 118731, + 775 + ], + [ + 358280, + 119246, + 1091 + ], + [ + 357733, + 118614, + 1169 + ], + [ + 358961, + 117792, + 1113 + ], + [ + 344262, + 130349, + 632 + ], + [ + 349681, + 124087, + 842 + ], + [ + 348499, + 126936, + 712 + ], + [ + 345057, + 130934, + 572 + ], + [ + 352328, + 121998, + 863 + ], + [ + 353479, + 119519, + 852 + ], + [ + 353159, + 121253, + 872 + ], + [ + 348667, + 126740, + 712 + ], + [ + 355624, + 123539, + 690 + ], + [ + 354959, + 124928, + 1051 + ], + [ + 354349, + 124634, + 712 + ], + [ + 349785, + 125125, + 842 + ], + [ + 352016, + 122762, + 712 + ], + [ + 353960, + 120558, + 868 + ], + [ + 355559, + 119465, + 995 + ], + [ + 353700, + 120762, + 692 + ], + [ + 369243, + 105289, + 802 + ], + [ + 358012, + 114963, + 922 + ], + [ + 355295, + 127644, + 722 + ], + [ + 353009, + 127073, + 999 + ], + [ + 353270, + 126360, + 978 + ], + [ + 356100, + 133705, + 740 + ], + [ + 354421, + 135197, + 716 + ], + [ + 355610, + 133073, + 751 + ], + [ + 355202, + 132736, + 791 + ], + [ + 355590, + 132702, + 1160 + ], + [ + 355112, + 132056, + 795 + ], + [ + 355481, + 132049, + 850 + ], + [ + 357290, + 136026, + 843 + ], + [ + 357245, + 135710, + 808 + ], + [ + 358808, + 135339, + 612 + ], + [ + 356974, + 133670, + 794 + ], + [ + 359996, + 132459, + 644 + ], + [ + 361812, + 131907, + 740 + ], + [ + 358911, + 135242, + 612 + ], + [ + 360602, + 130291, + 945 + ], + [ + 360924, + 129929, + 710 + ], + [ + 361314, + 130248, + 837 + ], + [ + 364043, + 128448, + 411 + ], + [ + 369723, + 115255, + 932 + ], + [ + 367227, + 118237, + 975 + ], + [ + 365368, + 113580, + 1003 + ], + [ + 359352, + 120845, + 940 + ], + [ + 357884, + 119992, + 728 + ], + [ + 365566, + 118999, + 845 + ], + [ + 366428, + 121659, + 897 + ], + [ + 364458, + 119313, + 889 + ], + [ + 360195, + 121798, + 779 + ], + [ + 362454, + 123320, + 1042 + ], + [ + 362203, + 124721, + 774 + ], + [ + 367103, + 126721, + 1003 + ], + [ + 365609, + 108825, + 923 + ], + [ + 368879, + 109251, + 802 + ], + [ + 367455, + 111211, + 984 + ], + [ + 375222, + 118925, + 874 + ], + [ + 369060, + 110184, + 1004 + ], + [ + 371824, + 109786, + 1096 + ], + [ + 381766, + 92620, + 834 + ], + [ + 383247, + 93693, + 870 + ], + [ + 378980, + 98010, + 970 + ], + [ + 379235, + 96257, + 915 + ], + [ + 379778, + 96870, + 932 + ], + [ + 385180, + 95850, + 977 + ], + [ + 384908, + 96627, + 1106 + ], + [ + 384391, + 96874, + 970 + ], + [ + 381492, + 92353, + 652 + ], + [ + 367078, + 107418, + 802 + ], + [ + 372313, + 121795, + 930 + ], + [ + 374299, + 102491, + 1063 + ], + [ + 376448, + 100665, + 642 + ], + [ + 376593, + 103042, + 951 + ], + [ + 373873, + 106509, + 1155 + ], + [ + 372668, + 105762, + 1399 + ], + [ + 374097, + 106162, + 1003 + ], + [ + 370502, + 114922, + 1109 + ], + [ + 371301, + 116360, + 1112 + ], + [ + 372931, + 108148, + 678 + ], + [ + 372384, + 107788, + 464 + ], + [ + 378015, + 97470, + 1011 + ], + [ + 377518, + 97182, + 642 + ], + [ + 377503, + 96837, + 925 + ], + [ + 370755, + 104692, + 1354 + ], + [ + 371045, + 107122, + 802 + ], + [ + 389000, + 96368, + 1218 + ], + [ + 387995, + 97985, + 1155 + ], + [ + 386598, + 96793, + 1155 + ], + [ + 375109, + 113912, + 870 + ], + [ + 376460, + 112555, + 925 + ], + [ + 377542, + 113161, + 1041 + ], + [ + 381077, + 103841, + 782 + ], + [ + 382029, + 103278, + 815 + ], + [ + 373700, + 100836, + 887 + ], + [ + 375228, + 99410, + 642 + ], + [ + 376947, + 97597, + 936 + ], + [ + 372115, + 105069, + 1694 + ], + [ + 380799, + 111783, + 928 + ], + [ + 379100, + 111675, + 876 + ], + [ + 380538, + 109780, + 983 + ], + [ + 386922, + 102673, + 120 + ], + [ + 386580, + 103476, + 120 + ], + [ + 386489, + 102797, + 105 + ], + [ + 381277, + 97567, + 878 + ], + [ + 382151, + 98447, + 1038 + ], + [ + 379628, + 99251, + 868 + ], + [ + 385789, + 103359, + 968 + ], + [ + 382497, + 101123, + 925 + ], + [ + 382665, + 102471, + 776 + ], + [ + 380000, + 102296, + 451 + ], + [ + 390518, + 102402, + 104 + ], + [ + 392104, + 101965, + 131 + ], + [ + 390835, + 100857, + 1081 + ], + [ + 391324, + 101343, + 990 + ], + [ + 386410, + 101785, + 876 + ], + [ + 356287, + 131956, + 900 + ], + [ + 352028, + 136394, + 572 + ], + [ + 355390, + 132400, + 572 + ], + [ + 388358, + 106810, + 112 + ], + [ + 387554, + 104538, + 169 + ], + [ + 376006, + 105108, + 1261 + ], + [ + 376750, + 104404, + 632 + ], + [ + 376536, + 105410, + 1281 + ], + [ + 382717, + 109743, + 692 + ], + [ + 377923, + 107351, + 1266 + ], + [ + 378128, + 106306, + 1374 + ], + [ + 378506, + 106951, + 1301 + ], + [ + 378628, + 98740, + 890 + ], + [ + 378859, + 98320, + 642 + ], + [ + 377971, + 105285, + 1070 + ], + [ + 377916, + 104976, + 886 + ], + [ + 378302, + 105611, + 910 + ], + [ + 383001, + 98584, + 876 + ], + [ + 373977, + 119543, + 1034 + ], + [ + 372037, + 117450, + 953 + ], + [ + 379156, + 106223, + 801 + ], + [ + 361859, + 122015, + 958 + ], + [ + 360644, + 121026, + 1222 + ], + [ + 356251, + 120096, + 739 + ], + [ + 354901, + 121506, + 870 + ], + [ + 385668, + 96048, + 1152 + ], + [ + 390460, + 93686, + 892 + ], + [ + 385452, + 102802, + 1072 + ], + [ + 389860, + 96978, + 963 + ], + [ + 372436, + 108143, + 529 + ], + [ + 371596, + 108093, + 1042 + ], + [ + 371660, + 105077, + 1352 + ], + [ + 383800, + 90394, + 918 + ], + [ + 385337, + 93709, + 872 + ], + [ + 395358, + 91206, + 925 + ], + [ + 395086, + 91374, + 806 + ], + [ + 393947, + 89661, + 852 + ], + [ + 387927, + 104033, + 507 + ], + [ + 386604, + 106947, + 295 + ], + [ + 387830, + 106540, + 323 + ], + [ + 388179, + 106978, + 312 + ], + [ + 386881, + 105459, + 668 + ], + [ + 383938, + 109093, + 709 + ], + [ + 384350, + 109045, + 364 + ], + [ + 388090, + 102200, + 209 + ], + [ + 383305, + 109924, + 880 + ], + [ + 377228, + 105045, + 737 + ], + [ + 376717, + 104033, + 865 + ], + [ + 376317, + 104100, + 650 + ], + [ + 390455, + 101693, + 528 + ], + [ + 387629, + 101665, + 707 + ], + [ + 387953, + 100861, + 790 + ], + [ + 372176, + 120775, + 889 + ], + [ + 370843, + 117612, + 915 + ], + [ + 372122, + 108773, + 999 + ], + [ + 367823, + 125689, + 810 + ], + [ + 367542, + 126686, + 1008 + ], + [ + 396562, + 98105, + 746 + ], + [ + 377147, + 104365, + 862 + ], + [ + 378083, + 101205, + 959 + ], + [ + 356581, + 134362, + 555 + ], + [ + 356199, + 134405, + 815 + ], + [ + 353345, + 135989, + 741 + ], + [ + 354200, + 136210, + 708 + ], + [ + 352754, + 137007, + 932 + ], + [ + 379027, + 101777, + 851 + ], + [ + 379858, + 100962, + 911 + ], + [ + 379068, + 98659, + 996 + ], + [ + 378040, + 108395, + 964 + ], + [ + 376914, + 108457, + 937 + ], + [ + 377644, + 108060, + 988 + ], + [ + 377146, + 107089, + 1220 + ], + [ + 387426, + 106383, + 288 + ], + [ + 386992, + 106509, + 264 + ], + [ + 376145, + 106122, + 1324 + ], + [ + 372641, + 105411, + 1656 + ], + [ + 356040, + 126555, + 906 + ], + [ + 354993, + 125257, + 923 + ], + [ + 363665, + 129089, + 605 + ], + [ + 357754, + 129545, + 708 + ], + [ + 359875, + 131393, + 929 + ], + [ + 359071, + 132202, + 653 + ], + [ + 356033, + 132994, + 1109 + ], + [ + 381672, + 106114, + 716 + ], + [ + 378479, + 104214, + 957 + ], + [ + 380253, + 107760, + 736 + ], + [ + 381706, + 108535, + 891 + ], + [ + 380007, + 109181, + 869 + ], + [ + 377172, + 107415, + 972 + ], + [ + 389152, + 97690, + 900 + ], + [ + 359224, + 119824, + 1035 + ], + [ + 357601, + 117615, + 1182 + ], + [ + 357495, + 116957, + 912 + ], + [ + 359188, + 116765, + 754 + ], + [ + 365111, + 126414, + 847 + ], + [ + 364787, + 126013, + 871 + ], + [ + 365342, + 126054, + 839 + ], + [ + 359658, + 129742, + 943 + ], + [ + 364569, + 126697, + 618 + ], + [ + 355811, + 122897, + 692 + ], + [ + 356951, + 127197, + 924 + ], + [ + 367068, + 119924, + 864 + ], + [ + 364138, + 119002, + 911 + ], + [ + 362650, + 117605, + 951 + ], + [ + 366397, + 111830, + 1179 + ], + [ + 395228, + 97054, + 745 + ], + [ + 397257, + 98160, + 860 + ], + [ + 397473, + 98888, + 752 + ], + [ + 375784, + 110854, + 1071 + ], + [ + 375303, + 112922, + 1028 + ], + [ + 374168, + 110846, + 1016 + ], + [ + 375760, + 107166, + 1093 + ], + [ + 375432, + 108177, + 1109 + ], + [ + 390570, + 95612, + 1075 + ], + [ + 391309, + 95551, + 915 + ], + [ + 370785, + 123341, + 856 + ], + [ + 370153, + 122317, + 983 + ], + [ + 372279, + 116468, + 939 + ], + [ + 371810, + 115741, + 928 + ], + [ + 385142, + 95493, + 1109 + ], + [ + 384778, + 88569, + 842 + ], + [ + 385587, + 89393, + 733 + ], + [ + 389710, + 99200, + 905 + ], + [ + 390214, + 100111, + 752 + ], + [ + 395782, + 101077, + 1033 + ], + [ + 395309, + 100604, + 1027 + ], + [ + 381696, + 95072, + 940 + ], + [ + 382841, + 93761, + 940 + ], + [ + 383433, + 95010, + 1045 + ], + [ + 386438, + 92618, + 835 + ], + [ + 385780, + 93576, + 1037 + ], + [ + 383888, + 110994, + 692 + ], + [ + 386580, + 106591, + 638 + ], + [ + 384327, + 108698, + 693 + ], + [ + 367177, + 123978, + 912 + ], + [ + 363369, + 122996, + 1027 + ], + [ + 376718, + 110513, + 1216 + ], + [ + 377015, + 109123, + 1125 + ], + [ + 377187, + 110456, + 1076 + ], + [ + 377748, + 114838, + 832 + ], + [ + 376810, + 111159, + 1307 + ], + [ + 378194, + 112076, + 1259 + ], + [ + 381014, + 103528, + 479 + ], + [ + 380135, + 103319, + 444 + ], + [ + 375621, + 98689, + 902 + ], + [ + 369857, + 123684, + 917 + ], + [ + 371909, + 116408, + 1079 + ], + [ + 378615, + 112743, + 985 + ], + [ + 379030, + 113372, + 965 + ], + [ + 378818, + 111697, + 1084 + ], + [ + 378915, + 110322, + 791 + ], + [ + 395909, + 101430, + 752 + ], + [ + 355614, + 138145, + 771 + ], + [ + 355534, + 137475, + 878 + ], + [ + 356100, + 136798, + 710 + ], + [ + 354789, + 137880, + 876 + ], + [ + 354339, + 137246, + 738 + ], + [ + 353081, + 130503, + 852 + ], + [ + 350845, + 128796, + 712 + ], + [ + 351485, + 128617, + 893 + ], + [ + 351854, + 128241, + 785 + ], + [ + 359629, + 115379, + 726 + ], + [ + 363223, + 118558, + 1156 + ], + [ + 362277, + 118268, + 1183 + ], + [ + 373688, + 110177, + 1034 + ], + [ + 373040, + 108812, + 975 + ], + [ + 384036, + 102855, + 810 + ], + [ + 380733, + 96320, + 953 + ], + [ + 379888, + 96571, + 652 + ], + [ + 382440, + 97684, + 881 + ], + [ + 383342, + 97493, + 1021 + ], + [ + 383375, + 97818, + 882 + ], + [ + 386974, + 106168, + 635 + ], + [ + 382414, + 109054, + 897 + ], + [ + 386237, + 107077, + 343 + ], + [ + 384763, + 108569, + 366 + ], + [ + 384741, + 108239, + 688 + ], + [ + 386213, + 106717, + 675 + ], + [ + 372198, + 105746, + 1619 + ], + [ + 372142, + 105411, + 1444 + ], + [ + 362131, + 117241, + 1041 + ], + [ + 376078, + 109506, + 1208 + ], + [ + 360171, + 115352, + 909 + ], + [ + 360206, + 115677, + 792 + ], + [ + 354999, + 138904, + 602 + ], + [ + 357838, + 125493, + 646 + ], + [ + 357196, + 131970, + 723 + ], + [ + 374680, + 110521, + 1115 + ], + [ + 362567, + 131821, + 612 + ], + [ + 397821, + 92862, + 782 + ], + [ + 376429, + 112212, + 1125 + ], + [ + 355688, + 136456, + 709 + ], + [ + 362545, + 120302, + 1164 + ], + [ + 363914, + 119242, + 1145 + ], + [ + 363571, + 124692, + 731 + ], + [ + 375593, + 105810, + 1264 + ], + [ + 376736, + 107101, + 955 + ], + [ + 375226, + 109539, + 1015 + ], + [ + 387972, + 95518, + 1181 + ], + [ + 387477, + 100332, + 1068 + ], + [ + 388541, + 99880, + 1070 + ], + [ + 385118, + 98324, + 899 + ], + [ + 386056, + 99110, + 891 + ], + [ + 384345, + 98958, + 873 + ], + [ + 388835, + 100069, + 842 + ], + [ + 383916, + 101836, + 996 + ], + [ + 386232, + 100433, + 905 + ], + [ + 385271, + 101457, + 1029 + ], + [ + 386954, + 99463, + 1185 + ], + [ + 388619, + 98383, + 948 + ], + [ + 387270, + 102180, + 560 + ], + [ + 386629, + 97108, + 1010 + ], + [ + 388332, + 93893, + 1152 + ], + [ + 363220, + 125713, + 618 + ], + [ + 382808, + 93685, + 652 + ], + [ + 387423, + 93643, + 1220 + ], + [ + 384322, + 94400, + 808 + ], + [ + 381791, + 109251, + 767 + ], + [ + 381394, + 106190, + 863 + ], + [ + 380916, + 105578, + 736 + ], + [ + 359498, + 132128, + 834 + ], + [ + 358779, + 132597, + 637 + ], + [ + 353708, + 135233, + 852 + ], + [ + 370450, + 114615, + 956 + ], + [ + 352763, + 128134, + 788 + ], + [ + 363138, + 121316, + 910 + ], + [ + 379615, + 103059, + 521 + ], + [ + 379245, + 103449, + 818 + ], + [ + 378625, + 107949, + 1110 + ], + [ + 387605, + 92849, + 1005 + ], + [ + 362463, + 126763, + 625 + ], + [ + 365297, + 125739, + 787 + ], + [ + 360060, + 126280, + 795 + ], + [ + 361318, + 128230, + 627 + ], + [ + 365586, + 125731, + 960 + ], + [ + 359188, + 126368, + 631 + ], + [ + 360694, + 130998, + 924 + ], + [ + 361919, + 125774, + 838 + ], + [ + 377299, + 100269, + 935 + ], + [ + 370145, + 114888, + 1084 + ], + [ + 378181, + 115143, + 833 + ], + [ + 394383, + 97076, + 975 + ], + [ + 392921, + 95655, + 980 + ], + [ + 381859, + 107493, + 777 + ], + [ + 367707, + 121982, + 778 + ], + [ + 367629, + 121262, + 1011 + ], + [ + 386499, + 98947, + 1128 + ], + [ + 353592, + 120559, + 856 + ], + [ + 368515, + 123974, + 937 + ], + [ + 387122, + 100824, + 1011 + ], + [ + 374424, + 106181, + 1166 + ], + [ + 375884, + 108163, + 989 + ], + [ + 361856, + 130522, + 639 + ], + [ + 361455, + 129181, + 778 + ], + [ + 384135, + 97262, + 1082 + ], + [ + 386366, + 97947, + 1123 + ], + [ + 384827, + 98101, + 1031 + ], + [ + 382883, + 101060, + 828 + ], + [ + 357793, + 127518, + 912 + ], + [ + 361104, + 131288, + 714 + ], + [ + 376207, + 106784, + 955 + ], + [ + 375701, + 106811, + 937 + ], + [ + 384265, + 98281, + 1010 + ], + [ + 369042, + 123333, + 833 + ], + [ + 381193, + 107600, + 868 + ], + [ + 374117, + 110538, + 878 + ], + [ + 360764, + 131675, + 663 + ], + [ + 354546, + 124958, + 925 + ], + [ + 384473, + 97525, + 916 + ], + [ + 398659, + 70497, + 848 + ], + [ + 398468, + 69586, + 642 + ], + [ + 401530, + 71735, + 642 + ], + [ + 401529, + 74294, + 672 + ], + [ + 404590, + 73882, + 642 + ], + [ + 402798, + 75182, + 672 + ], + [ + 415594, + 87649, + 660 + ], + [ + 414786, + 89231, + 922 + ], + [ + 414442, + 89280, + 654 + ], + [ + 407835, + 95496, + 722 + ], + [ + 404087, + 98098, + 732 + ], + [ + 410628, + 91292, + 642 + ], + [ + 386659, + 73820, + 692 + ], + [ + 388676, + 70959, + 682 + ], + [ + 390250, + 72398, + 692 + ], + [ + 405917, + 99519, + 732 + ], + [ + 405800, + 99642, + 732 + ], + [ + 407754, + 97287, + 652 + ], + [ + 409227, + 102072, + 822 + ], + [ + 408923, + 102395, + 732 + ], + [ + 387469, + 76341, + 692 + ], + [ + 382678, + 79467, + 682 + ], + [ + 384643, + 76680, + 692 + ], + [ + 407871, + 97410, + 652 + ], + [ + 409354, + 102068, + 822 + ], + [ + 409292, + 102133, + 822 + ], + [ + 410714, + 100492, + 852 + ], + [ + 410921, + 100809, + 852 + ], + [ + 409557, + 102259, + 822 + ], + [ + 410718, + 100618, + 852 + ], + [ + 410857, + 93451, + 817 + ], + [ + 411902, + 91866, + 817 + ], + [ + 412302, + 92558, + 642 + ], + [ + 410779, + 100553, + 852 + ], + [ + 411000, + 100173, + 652 + ], + [ + 407900, + 97382, + 652 + ], + [ + 408498, + 95615, + 675 + ], + [ + 408171, + 95743, + 497 + ], + [ + 410291, + 94649, + 652 + ], + [ + 411842, + 91508, + 634 + ], + [ + 413475, + 90202, + 647 + ], + [ + 418337, + 86285, + 652 + ], + [ + 416325, + 88376, + 652 + ], + [ + 419920, + 84639, + 652 + ], + [ + 416739, + 84934, + 662 + ], + [ + 410070, + 78074, + 768 + ], + [ + 410714, + 78179, + 632 + ], + [ + 413774, + 80327, + 632 + ], + [ + 416639, + 82337, + 652 + ], + [ + 407652, + 76031, + 642 + ], + [ + 404249, + 74622, + 806 + ], + [ + 397666, + 70097, + 681 + ], + [ + 393081, + 68385, + 682 + ], + [ + 392563, + 65443, + 652 + ], + [ + 395406, + 67438, + 652 + ], + [ + 390692, + 68098, + 672 + ], + [ + 378297, + 85752, + 768 + ], + [ + 377821, + 86359, + 572 + ], + [ + 378429, + 86762, + 743 + ], + [ + 381985, + 84115, + 682 + ], + [ + 414314, + 90467, + 642 + ], + [ + 413884, + 90103, + 464 + ], + [ + 411698, + 90178, + 642 + ], + [ + 379545, + 87574, + 722 + ], + [ + 410179, + 93922, + 653 + ], + [ + 419551, + 78678, + 686 + ], + [ + 420093, + 79206, + 873 + ], + [ + 418954, + 79038, + 652 + ], + [ + 393530, + 60049, + 915 + ], + [ + 394071, + 60583, + 963 + ], + [ + 393084, + 60846, + 912 + ], + [ + 426537, + 83794, + 1051 + ], + [ + 426367, + 84251, + 652 + ], + [ + 393124, + 60182, + 1023 + ], + [ + 393003, + 60152, + 912 + ], + [ + 394884, + 60963, + 765 + ], + [ + 395276, + 62210, + 822 + ], + [ + 394680, + 61968, + 652 + ], + [ + 403515, + 67078, + 718 + ], + [ + 403855, + 68420, + 642 + ], + [ + 400796, + 66269, + 642 + ], + [ + 408803, + 71414, + 648 + ], + [ + 409261, + 72038, + 636 + ], + [ + 406914, + 70571, + 642 + ], + [ + 416091, + 77025, + 632 + ], + [ + 416343, + 76666, + 543 + ], + [ + 414453, + 75790, + 797 + ], + [ + 411256, + 73394, + 796 + ], + [ + 410736, + 73137, + 896 + ], + [ + 409732, + 72332, + 938 + ], + [ + 397736, + 64117, + 652 + ], + [ + 409973, + 72722, + 642 + ], + [ + 413033, + 74874, + 632 + ], + [ + 300675, + 84679, + 432 + ], + [ + 300666, + 84691, + 512 + ], + [ + 298390, + 83428, + 612 + ], + [ + 298345, + 83067, + 648 + ], + [ + 298591, + 82844, + 432 + ], + [ + 298442, + 83049, + 432 + ], + [ + 297867, + 82526, + 645 + ], + [ + 296317, + 81184, + 432 + ], + [ + 295019, + 85972, + 808 + ], + [ + 295979, + 86971, + 522 + ], + [ + 293444, + 85121, + 522 + ], + [ + 295837, + 86073, + 676 + ], + [ + 297830, + 84435, + 522 + ], + [ + 296144, + 81421, + 432 + ], + [ + 296477, + 81975, + 764 + ], + [ + 295606, + 84358, + 632 + ], + [ + 293456, + 85105, + 522 + ], + [ + 299707, + 85805, + 522 + ], + [ + 299803, + 85875, + 512 + ], + [ + 277832, + 92320, + 702 + ], + [ + 277375, + 91971, + 712 + ], + [ + 277572, + 91719, + 712 + ], + [ + 278027, + 92077, + 702 + ], + [ + 316987, + 155026, + 852 + ], + [ + 315700, + 154190, + 852 + ], + [ + 316604, + 152974, + 892 + ], + [ + 317981, + 153915, + 872 + ], + [ + 400004, + 48830, + 826 + ], + [ + 400391, + 48400, + 824 + ], + [ + 400586, + 48742, + 682 + ], + [ + 400469, + 49026, + 822 + ], + [ + 400366, + 49185, + 1012 + ], + [ + 400515, + 48934, + 682 + ], + [ + 400554, + 48839, + 682 + ], + [ + 400612, + 48643, + 682 + ], + [ + 400631, + 48542, + 672 + ], + [ + 400643, + 48441, + 672 + ], + [ + 400646, + 48236, + 672 + ], + [ + 400648, + 48338, + 672 + ], + [ + 400637, + 48134, + 672 + ], + [ + 400621, + 48033, + 672 + ], + [ + 400300, + 47719, + 818 + ], + [ + 400598, + 47933, + 672 + ], + [ + 400568, + 47835, + 672 + ], + [ + 400531, + 47739, + 682 + ], + [ + 400488, + 47646, + 682 + ], + [ + 400251, + 47357, + 809 + ], + [ + 400384, + 47470, + 682 + ], + [ + 400439, + 47556, + 672 + ], + [ + 400256, + 47310, + 682 + ], + [ + 400184, + 47236, + 682 + ], + [ + 399781, + 47145, + 809 + ], + [ + 400027, + 47106, + 682 + ], + [ + 400108, + 47168, + 682 + ], + [ + 399942, + 47049, + 682 + ], + [ + 399460, + 48285, + 829 + ], + [ + 399282, + 46948, + 813 + ], + [ + 399760, + 46953, + 682 + ], + [ + 399853, + 46998, + 682 + ], + [ + 399665, + 46915, + 682 + ], + [ + 399568, + 46883, + 692 + ], + [ + 399469, + 46858, + 692 + ], + [ + 398378, + 47203, + 836 + ], + [ + 398858, + 46855, + 692 + ], + [ + 399163, + 46825, + 692 + ], + [ + 399266, + 46829, + 692 + ], + [ + 399061, + 46828, + 692 + ], + [ + 398959, + 46838, + 692 + ], + [ + 400323, + 47387, + 682 + ], + [ + 399368, + 46840, + 682 + ], + [ + 251393, + 147531, + 823 + ], + [ + 250776, + 148722, + 632 + ], + [ + 250751, + 148704, + 758 + ], + [ + 260770, + 135935, + 1287 + ], + [ + 262714, + 126434, + 1077 + ], + [ + 264380, + 121924, + 962 + ], + [ + 260026, + 130547, + 1046 + ], + [ + 258515, + 130040, + 1265 + ], + [ + 258725, + 129583, + 1088 + ], + [ + 265414, + 119058, + 1035 + ], + [ + 265175, + 115372, + 662 + ], + [ + 267674, + 117148, + 662 + ], + [ + 263267, + 115704, + 870 + ], + [ + 264027, + 114769, + 989 + ], + [ + 263774, + 114973, + 1033 + ], + [ + 263968, + 114436, + 804 + ], + [ + 261165, + 125030, + 1208 + ], + [ + 259905, + 123471, + 843 + ], + [ + 261308, + 121749, + 923 + ], + [ + 258128, + 110370, + 696 + ], + [ + 258922, + 111265, + 422 + ], + [ + 256694, + 109681, + 422 + ], + [ + 259224, + 110909, + 675 + ], + [ + 259708, + 109971, + 762 + ], + [ + 259745, + 110303, + 661 + ], + [ + 263733, + 121617, + 872 + ], + [ + 262889, + 120999, + 1051 + ], + [ + 263553, + 120251, + 935 + ], + [ + 252326, + 116263, + 444 + ], + [ + 252226, + 117788, + 439 + ], + [ + 250284, + 117662, + 422 + ], + [ + 253039, + 114816, + 477 + ], + [ + 252853, + 115950, + 682 + ], + [ + 250615, + 112571, + 422 + ], + [ + 248601, + 115907, + 527 + ], + [ + 248099, + 116108, + 422 + ], + [ + 252036, + 118982, + 573 + ], + [ + 251722, + 119469, + 738 + ], + [ + 251304, + 119374, + 477 + ], + [ + 259036, + 126291, + 1169 + ], + [ + 258309, + 126541, + 1017 + ], + [ + 257869, + 125333, + 1117 + ], + [ + 247136, + 119394, + 496 + ], + [ + 248160, + 120261, + 756 + ], + [ + 246654, + 121563, + 598 + ], + [ + 247329, + 123337, + 872 + ], + [ + 248667, + 115309, + 422 + ], + [ + 258050, + 133758, + 1215 + ], + [ + 257254, + 133402, + 1087 + ], + [ + 257967, + 133071, + 1356 + ], + [ + 250292, + 132857, + 671 + ], + [ + 249225, + 128022, + 971 + ], + [ + 251339, + 131641, + 934 + ], + [ + 243373, + 129537, + 833 + ], + [ + 249911, + 127542, + 851 + ], + [ + 250076, + 126686, + 816 + ], + [ + 243548, + 130901, + 699 + ], + [ + 243915, + 131022, + 716 + ], + [ + 241819, + 133786, + 743 + ], + [ + 242304, + 134250, + 744 + ], + [ + 241698, + 137373, + 542 + ], + [ + 240434, + 139151, + 542 + ], + [ + 244088, + 129795, + 699 + ], + [ + 245226, + 128468, + 585 + ], + [ + 244512, + 129918, + 665 + ], + [ + 256617, + 141113, + 849 + ], + [ + 255624, + 142768, + 811 + ], + [ + 255251, + 142595, + 956 + ], + [ + 245753, + 141964, + 924 + ], + [ + 246198, + 142342, + 572 + ], + [ + 243206, + 140143, + 562 + ], + [ + 248699, + 144174, + 779 + ], + [ + 249189, + 144540, + 602 + ], + [ + 246170, + 142070, + 829 + ], + [ + 246114, + 141770, + 629 + ], + [ + 246977, + 141289, + 809 + ], + [ + 249854, + 143589, + 602 + ], + [ + 250694, + 142072, + 1377 + ], + [ + 251831, + 143960, + 1203 + ], + [ + 250531, + 145447, + 602 + ], + [ + 251072, + 145832, + 602 + ], + [ + 250859, + 146749, + 834 + ], + [ + 251342, + 138021, + 1072 + ], + [ + 251666, + 140372, + 1163 + ], + [ + 249207, + 140053, + 1303 + ], + [ + 249067, + 147507, + 602 + ], + [ + 251722, + 144918, + 602 + ], + [ + 252303, + 145122, + 1103 + ], + [ + 252646, + 145597, + 1049 + ], + [ + 252766, + 144380, + 1153 + ], + [ + 258146, + 145761, + 642 + ], + [ + 258403, + 145383, + 840 + ], + [ + 261957, + 148485, + 732 + ], + [ + 264826, + 138747, + 1113 + ], + [ + 262697, + 138355, + 1061 + ], + [ + 261279, + 136795, + 1088 + ], + [ + 267584, + 141055, + 1154 + ], + [ + 265936, + 140365, + 1153 + ], + [ + 254578, + 137493, + 1181 + ], + [ + 258848, + 137392, + 1042 + ], + [ + 258815, + 139520, + 1070 + ], + [ + 249681, + 143815, + 825 + ], + [ + 249116, + 142706, + 771 + ], + [ + 257924, + 132721, + 1415 + ], + [ + 258272, + 132957, + 1326 + ], + [ + 249252, + 137500, + 977 + ], + [ + 251585, + 137826, + 891 + ], + [ + 254021, + 116139, + 944 + ], + [ + 253700, + 116630, + 787 + ], + [ + 253270, + 118994, + 756 + ], + [ + 253831, + 117652, + 687 + ], + [ + 256063, + 119290, + 732 + ], + [ + 251937, + 130537, + 914 + ], + [ + 252492, + 131384, + 692 + ], + [ + 243678, + 129332, + 611 + ], + [ + 243327, + 129199, + 842 + ], + [ + 243591, + 128673, + 626 + ], + [ + 249560, + 142799, + 1057 + ], + [ + 253828, + 147715, + 763 + ], + [ + 255974, + 148014, + 841 + ], + [ + 255553, + 149470, + 642 + ], + [ + 250857, + 125720, + 798 + ], + [ + 253729, + 126342, + 1054 + ], + [ + 251048, + 127047, + 954 + ], + [ + 261050, + 128707, + 1094 + ], + [ + 259660, + 127833, + 1059 + ], + [ + 261995, + 126778, + 1038 + ], + [ + 251799, + 141398, + 1087 + ], + [ + 260311, + 135740, + 1162 + ], + [ + 258452, + 134320, + 1275 + ], + [ + 247144, + 122010, + 782 + ], + [ + 248957, + 120479, + 830 + ], + [ + 253025, + 117285, + 566 + ], + [ + 252847, + 118142, + 714 + ], + [ + 244415, + 119476, + 754 + ], + [ + 245390, + 121763, + 600 + ], + [ + 250515, + 125599, + 839 + ], + [ + 262078, + 121717, + 1078 + ], + [ + 257232, + 116004, + 895 + ], + [ + 256438, + 114924, + 731 + ], + [ + 259044, + 111404, + 766 + ], + [ + 246412, + 129178, + 887 + ], + [ + 246272, + 128140, + 887 + ], + [ + 262513, + 115082, + 958 + ], + [ + 262812, + 112352, + 838 + ], + [ + 262928, + 108923, + 618 + ], + [ + 261959, + 111076, + 778 + ], + [ + 260005, + 109468, + 615 + ], + [ + 260988, + 140820, + 1048 + ], + [ + 261164, + 142228, + 867 + ], + [ + 260566, + 140602, + 1111 + ], + [ + 259865, + 140203, + 977 + ], + [ + 259560, + 142813, + 770 + ], + [ + 250597, + 126252, + 748 + ], + [ + 261668, + 128779, + 1175 + ], + [ + 262811, + 127076, + 1210 + ], + [ + 247653, + 123088, + 738 + ], + [ + 249581, + 122973, + 886 + ], + [ + 257350, + 134045, + 1218 + ], + [ + 254289, + 132936, + 714 + ], + [ + 253323, + 134207, + 666 + ], + [ + 253861, + 132439, + 683 + ], + [ + 244041, + 139015, + 542 + ], + [ + 244649, + 139001, + 765 + ], + [ + 250641, + 141749, + 1248 + ], + [ + 251473, + 141220, + 1374 + ], + [ + 245639, + 141320, + 563 + ], + [ + 245975, + 140753, + 604 + ], + [ + 246489, + 141219, + 613 + ], + [ + 252702, + 136328, + 661 + ], + [ + 252954, + 137971, + 1097 + ], + [ + 249458, + 142102, + 945 + ], + [ + 247770, + 141522, + 777 + ], + [ + 245367, + 139265, + 652 + ], + [ + 248494, + 140496, + 1245 + ], + [ + 247651, + 140508, + 1010 + ], + [ + 247979, + 138730, + 998 + ], + [ + 247822, + 137731, + 691 + ], + [ + 242536, + 135925, + 818 + ], + [ + 249249, + 134916, + 679 + ], + [ + 259427, + 107939, + 677 + ], + [ + 258342, + 108896, + 561 + ], + [ + 263433, + 112643, + 658 + ], + [ + 263271, + 113493, + 898 + ], + [ + 265721, + 141930, + 1164 + ], + [ + 262594, + 140213, + 986 + ], + [ + 257533, + 145002, + 817 + ], + [ + 253899, + 145119, + 793 + ], + [ + 248559, + 120087, + 422 + ], + [ + 250657, + 121102, + 845 + ], + [ + 249667, + 119519, + 469 + ], + [ + 253339, + 116835, + 858 + ], + [ + 252642, + 116770, + 442 + ], + [ + 249818, + 120551, + 625 + ], + [ + 254154, + 117152, + 876 + ], + [ + 253419, + 117490, + 732 + ], + [ + 257326, + 123802, + 863 + ], + [ + 263454, + 146531, + 742 + ], + [ + 265903, + 143296, + 1130 + ], + [ + 263289, + 142760, + 1033 + ], + [ + 260919, + 125171, + 1032 + ], + [ + 258792, + 124632, + 895 + ], + [ + 244924, + 138440, + 787 + ], + [ + 249345, + 141069, + 1317 + ], + [ + 250558, + 141025, + 1454 + ], + [ + 246686, + 142527, + 881 + ], + [ + 254395, + 115678, + 891 + ], + [ + 254917, + 116229, + 847 + ], + [ + 256059, + 116797, + 856 + ], + [ + 256813, + 117600, + 938 + ], + [ + 251183, + 132906, + 675 + ], + [ + 250853, + 132418, + 854 + ], + [ + 251723, + 128875, + 1072 + ], + [ + 253951, + 130219, + 1093 + ], + [ + 255681, + 131112, + 1133 + ], + [ + 259391, + 131808, + 1254 + ], + [ + 253461, + 114973, + 569 + ], + [ + 255514, + 116056, + 422 + ], + [ + 250057, + 119984, + 441 + ], + [ + 248008, + 141001, + 872 + ], + [ + 247348, + 141047, + 962 + ], + [ + 247299, + 140720, + 894 + ], + [ + 246937, + 140945, + 909 + ], + [ + 246843, + 140259, + 890 + ], + [ + 244484, + 126333, + 757 + ], + [ + 247357, + 126581, + 939 + ], + [ + 246118, + 127164, + 580 + ], + [ + 246870, + 126145, + 673 + ], + [ + 260792, + 129889, + 1125 + ], + [ + 244298, + 125010, + 639 + ], + [ + 246494, + 126035, + 630 + ], + [ + 246312, + 126591, + 606 + ], + [ + 263290, + 111606, + 624 + ], + [ + 266640, + 111289, + 641 + ], + [ + 265015, + 113080, + 649 + ], + [ + 267384, + 112198, + 827 + ], + [ + 245542, + 127908, + 570 + ], + [ + 245453, + 127231, + 620 + ], + [ + 245179, + 125192, + 624 + ], + [ + 245146, + 124869, + 774 + ], + [ + 247157, + 142652, + 751 + ], + [ + 257811, + 129598, + 1209 + ], + [ + 251364, + 129404, + 911 + ], + [ + 252027, + 146963, + 632 + ], + [ + 253206, + 147793, + 875 + ], + [ + 252472, + 146484, + 893 + ], + [ + 260846, + 103843, + 412 + ], + [ + 257474, + 108830, + 673 + ], + [ + 246371, + 140158, + 957 + ], + [ + 256181, + 115372, + 737 + ], + [ + 265861, + 119140, + 1020 + ], + [ + 259990, + 121003, + 792 + ], + [ + 246807, + 139931, + 1003 + ], + [ + 247209, + 140070, + 880 + ], + [ + 251773, + 146985, + 753 + ], + [ + 252256, + 144776, + 1101 + ], + [ + 252085, + 139301, + 1214 + ], + [ + 245452, + 118302, + 665 + ], + [ + 257184, + 109696, + 666 + ], + [ + 245366, + 129452, + 673 + ], + [ + 244232, + 121051, + 721 + ], + [ + 243705, + 120623, + 661 + ], + [ + 246660, + 138904, + 890 + ], + [ + 252971, + 146099, + 788 + ], + [ + 257713, + 146368, + 760 + ], + [ + 245102, + 127437, + 812 + ], + [ + 260891, + 136958, + 1044 + ], + [ + 257539, + 135425, + 1279 + ], + [ + 255899, + 135706, + 1019 + ], + [ + 260708, + 144476, + 737 + ], + [ + 260007, + 143739, + 756 + ], + [ + 264869, + 139070, + 1114 + ], + [ + 260895, + 140172, + 978 + ], + [ + 262381, + 138512, + 1206 + ], + [ + 249455, + 120095, + 689 + ], + [ + 262771, + 126754, + 1263 + ], + [ + 247065, + 139044, + 805 + ], + [ + 247271, + 140379, + 1158 + ], + [ + 259295, + 131130, + 1209 + ], + [ + 258365, + 126891, + 1146 + ], + [ + 263091, + 143971, + 862 + ], + [ + 259354, + 131453, + 1402 + ], + [ + 259671, + 131016, + 1128 + ], + [ + 269204, + 109701, + 662 + ], + [ + 251715, + 132135, + 671 + ], + [ + 253739, + 131425, + 895 + ], + [ + 252832, + 130483, + 839 + ], + [ + 252434, + 134277, + 791 + ], + [ + 266148, + 107606, + 683 + ], + [ + 268597, + 109581, + 798 + ], + [ + 266584, + 108723, + 633 + ], + [ + 267646, + 111652, + 684 + ], + [ + 245140, + 127814, + 623 + ], + [ + 257945, + 142031, + 767 + ], + [ + 258831, + 127776, + 1046 + ], + [ + 255052, + 136131, + 1093 + ], + [ + 255048, + 132113, + 856 + ], + [ + 254670, + 131582, + 847 + ], + [ + 250895, + 147102, + 688 + ], + [ + 260238, + 118324, + 873 + ], + [ + 261620, + 121233, + 989 + ], + [ + 261653, + 121578, + 805 + ], + [ + 259862, + 119957, + 969 + ], + [ + 261439, + 119874, + 1026 + ], + [ + 263793, + 107282, + 604 + ], + [ + 261174, + 105353, + 595 + ], + [ + 265196, + 108267, + 780 + ], + [ + 258934, + 135580, + 1147 + ], + [ + 254539, + 132437, + 886 + ], + [ + 261847, + 144087, + 960 + ], + [ + 260318, + 143597, + 899 + ], + [ + 245820, + 129917, + 665 + ], + [ + 247272, + 122986, + 741 + ], + [ + 252380, + 118772, + 733 + ], + [ + 258574, + 108030, + 544 + ], + [ + 265570, + 108044, + 627 + ], + [ + 258896, + 119271, + 848 + ], + [ + 253424, + 138102, + 1035 + ], + [ + 270039, + 124633, + 942 + ], + [ + 269817, + 125001, + 1052 + ], + [ + 268746, + 124547, + 1046 + ], + [ + 268312, + 123589, + 912 + ], + [ + 268090, + 123957, + 1022 + ], + [ + 389728, + 74285, + 702 + ], + [ + 389671, + 74245, + 702 + ], + [ + 390071, + 73647, + 702 + ], + [ + 390603, + 74003, + 732 + ], + [ + 389896, + 75081, + 722 + ], + [ + 389416, + 74774, + 702 + ], + [ + 313059, + 159741, + 942 + ], + [ + 313958, + 160511, + 902 + ], + [ + 313000, + 159823, + 942 + ], + [ + 302733, + 149624, + 1180 + ], + [ + 301480, + 151393, + 872 + ], + [ + 301220, + 151186, + 1181 + ], + [ + 301840, + 147807, + 1106 + ], + [ + 298873, + 145451, + 882 + ], + [ + 303344, + 148791, + 872 + ], + [ + 298796, + 145557, + 882 + ], + [ + 297335, + 147417, + 882 + ], + [ + 298723, + 145503, + 882 + ], + [ + 296143, + 143670, + 1035 + ], + [ + 295706, + 146236, + 882 + ], + [ + 292843, + 144470, + 952 + ], + [ + 294409, + 142215, + 952 + ], + [ + 297265, + 149061, + 916 + ], + [ + 295541, + 148384, + 919 + ], + [ + 289615, + 143603, + 1291 + ], + [ + 289536, + 143700, + 1022 + ], + [ + 290251, + 142670, + 952 + ], + [ + 291240, + 146148, + 1033 + ], + [ + 292015, + 146536, + 963 + ], + [ + 290102, + 145539, + 1083 + ], + [ + 290394, + 145896, + 872 + ], + [ + 288786, + 144779, + 1022 + ], + [ + 291350, + 146835, + 1259 + ], + [ + 291247, + 146489, + 872 + ], + [ + 291660, + 146678, + 1146 + ], + [ + 290441, + 145769, + 1043 + ], + [ + 292285, + 149829, + 932 + ], + [ + 293174, + 148666, + 1131 + ], + [ + 294278, + 149067, + 756 + ], + [ + 291075, + 147638, + 1296 + ], + [ + 291397, + 147971, + 872 + ], + [ + 290602, + 147418, + 872 + ], + [ + 289799, + 150389, + 1067 + ], + [ + 290368, + 152572, + 932 + ], + [ + 288907, + 151557, + 872 + ], + [ + 294804, + 148870, + 725 + ], + [ + 294186, + 148414, + 697 + ], + [ + 309000, + 156786, + 862 + ], + [ + 308988, + 156802, + 942 + ], + [ + 306517, + 155006, + 862 + ], + [ + 291736, + 171269, + 1041 + ], + [ + 294013, + 172428, + 1081 + ], + [ + 292923, + 173676, + 1086 + ], + [ + 284457, + 159929, + 966 + ], + [ + 285895, + 158972, + 932 + ], + [ + 285401, + 160228, + 1164 + ], + [ + 280271, + 156152, + 972 + ], + [ + 279627, + 154543, + 852 + ], + [ + 282802, + 156786, + 872 + ], + [ + 282303, + 157603, + 1008 + ], + [ + 280691, + 157370, + 781 + ], + [ + 276686, + 154450, + 1103 + ], + [ + 276392, + 152258, + 902 + ], + [ + 277865, + 154433, + 1034 + ], + [ + 271759, + 151018, + 1062 + ], + [ + 271853, + 151705, + 1067 + ], + [ + 270595, + 151374, + 916 + ], + [ + 287845, + 162406, + 934 + ], + [ + 289172, + 161287, + 932 + ], + [ + 289086, + 162898, + 1178 + ], + [ + 273367, + 151222, + 1251 + ], + [ + 273445, + 151973, + 943 + ], + [ + 274968, + 153261, + 1009 + ], + [ + 275804, + 154139, + 923 + ], + [ + 273549, + 155237, + 892 + ], + [ + 274856, + 155789, + 902 + ], + [ + 274678, + 156031, + 902 + ], + [ + 279372, + 156110, + 892 + ], + [ + 280528, + 159843, + 862 + ], + [ + 286177, + 166094, + 988 + ], + [ + 284613, + 168202, + 950 + ], + [ + 284732, + 166333, + 1079 + ], + [ + 287250, + 161170, + 913 + ], + [ + 292501, + 161034, + 1256 + ], + [ + 291972, + 161362, + 1022 + ], + [ + 292272, + 159340, + 1244 + ], + [ + 277456, + 159206, + 892 + ], + [ + 279661, + 161448, + 1022 + ], + [ + 278386, + 161498, + 998 + ], + [ + 270440, + 159555, + 962 + ], + [ + 270638, + 159611, + 712 + ], + [ + 270451, + 159599, + 712 + ], + [ + 268012, + 153435, + 761 + ], + [ + 269708, + 154119, + 969 + ], + [ + 267499, + 155201, + 998 + ], + [ + 262898, + 157965, + 973 + ], + [ + 263965, + 158748, + 672 + ], + [ + 262287, + 157536, + 672 + ], + [ + 265123, + 153662, + 862 + ], + [ + 262753, + 156922, + 903 + ], + [ + 262204, + 157476, + 672 + ], + [ + 265392, + 156580, + 874 + ], + [ + 265296, + 153691, + 997 + ], + [ + 266600, + 155221, + 1080 + ], + [ + 266311, + 155371, + 672 + ], + [ + 266640, + 155545, + 1038 + ], + [ + 267792, + 156450, + 682 + ], + [ + 272904, + 159555, + 992 + ], + [ + 272689, + 159744, + 712 + ], + [ + 272567, + 159763, + 961 + ], + [ + 270337, + 155576, + 975 + ], + [ + 269509, + 157643, + 828 + ], + [ + 269145, + 157163, + 812 + ], + [ + 271328, + 156844, + 864 + ], + [ + 269351, + 157584, + 682 + ], + [ + 269692, + 158976, + 878 + ], + [ + 269239, + 157849, + 834 + ], + [ + 270365, + 159537, + 712 + ], + [ + 270580, + 159692, + 712 + ], + [ + 276535, + 160850, + 732 + ], + [ + 274992, + 159626, + 732 + ], + [ + 275319, + 159292, + 1002 + ], + [ + 272044, + 160688, + 712 + ], + [ + 274891, + 159561, + 980 + ], + [ + 273182, + 159685, + 976 + ], + [ + 274618, + 157485, + 1077 + ], + [ + 273879, + 160253, + 1029 + ], + [ + 273929, + 160618, + 1040 + ], + [ + 272950, + 159894, + 997 + ], + [ + 279235, + 161707, + 883 + ], + [ + 275055, + 162889, + 732 + ], + [ + 275392, + 163330, + 879 + ], + [ + 273287, + 165325, + 732 + ], + [ + 276699, + 164113, + 732 + ], + [ + 274887, + 166422, + 732 + ], + [ + 276718, + 160960, + 864 + ], + [ + 277045, + 163359, + 911 + ], + [ + 277459, + 162243, + 825 + ], + [ + 279052, + 163314, + 891 + ], + [ + 277735, + 162319, + 955 + ], + [ + 278103, + 165086, + 883 + ], + [ + 277451, + 164173, + 876 + ], + [ + 285145, + 165050, + 949 + ], + [ + 283895, + 163834, + 922 + ], + [ + 281611, + 166054, + 1084 + ], + [ + 281247, + 165235, + 996 + ], + [ + 282084, + 165389, + 923 + ], + [ + 280410, + 165385, + 732 + ], + [ + 281185, + 165834, + 732 + ], + [ + 281125, + 165914, + 732 + ], + [ + 280969, + 165083, + 1030 + ], + [ + 282042, + 166469, + 732 + ], + [ + 283719, + 167628, + 732 + ], + [ + 285676, + 162304, + 1099 + ], + [ + 285474, + 163469, + 940 + ], + [ + 284683, + 162764, + 922 + ], + [ + 284240, + 168367, + 923 + ], + [ + 284645, + 169673, + 722 + ], + [ + 283584, + 168997, + 722 + ], + [ + 284627, + 169698, + 722 + ], + [ + 291133, + 158482, + 932 + ], + [ + 286685, + 169864, + 978 + ], + [ + 286221, + 170789, + 742 + ], + [ + 295174, + 160804, + 1101 + ], + [ + 295528, + 160723, + 973 + ], + [ + 294480, + 161783, + 937 + ], + [ + 288545, + 170784, + 937 + ], + [ + 290393, + 170670, + 993 + ], + [ + 288592, + 171137, + 935 + ], + [ + 288301, + 172624, + 780 + ], + [ + 288486, + 173984, + 792 + ], + [ + 287241, + 174040, + 898 + ], + [ + 289279, + 173044, + 991 + ], + [ + 287797, + 175244, + 928 + ], + [ + 287795, + 175352, + 752 + ], + [ + 295007, + 171637, + 1227 + ], + [ + 295170, + 170939, + 902 + ], + [ + 295659, + 171292, + 902 + ], + [ + 289759, + 172580, + 752 + ], + [ + 290421, + 172883, + 1109 + ], + [ + 291631, + 173824, + 1065 + ], + [ + 289810, + 166180, + 1263 + ], + [ + 288934, + 165857, + 1353 + ], + [ + 289657, + 165191, + 998 + ], + [ + 293419, + 173784, + 752 + ], + [ + 293142, + 174176, + 752 + ], + [ + 301641, + 176246, + 772 + ], + [ + 301616, + 175592, + 902 + ], + [ + 303388, + 176920, + 1062 + ], + [ + 294849, + 175425, + 752 + ], + [ + 295145, + 175007, + 752 + ], + [ + 296375, + 176466, + 762 + ], + [ + 294951, + 176800, + 884 + ], + [ + 292613, + 178581, + 752 + ], + [ + 295136, + 178188, + 884 + ], + [ + 294120, + 179648, + 762 + ], + [ + 293813, + 173210, + 1183 + ], + [ + 293735, + 174008, + 752 + ], + [ + 299939, + 178118, + 954 + ], + [ + 299768, + 178870, + 772 + ], + [ + 299743, + 178853, + 772 + ], + [ + 299618, + 175678, + 1016 + ], + [ + 297593, + 176228, + 912 + ], + [ + 298044, + 174982, + 997 + ], + [ + 297450, + 175191, + 855 + ], + [ + 294997, + 174216, + 997 + ], + [ + 305432, + 172718, + 935 + ], + [ + 303966, + 172337, + 912 + ], + [ + 305016, + 171774, + 1072 + ], + [ + 314099, + 166440, + 944 + ], + [ + 312645, + 168154, + 1141 + ], + [ + 313325, + 166953, + 981 + ], + [ + 313434, + 155911, + 872 + ], + [ + 315918, + 157799, + 852 + ], + [ + 313382, + 155983, + 852 + ], + [ + 304173, + 154844, + 1072 + ], + [ + 301498, + 155806, + 942 + ], + [ + 302272, + 153742, + 954 + ], + [ + 302196, + 153064, + 1134 + ], + [ + 303228, + 153356, + 1190 + ], + [ + 299955, + 147650, + 1100 + ], + [ + 306015, + 150582, + 882 + ], + [ + 305957, + 150663, + 872 + ], + [ + 308391, + 152407, + 862 + ], + [ + 310874, + 154186, + 862 + ], + [ + 315967, + 157731, + 872 + ], + [ + 318508, + 159557, + 882 + ], + [ + 318415, + 159588, + 852 + ], + [ + 314805, + 165058, + 972 + ], + [ + 316538, + 162192, + 852 + ], + [ + 316456, + 162306, + 902 + ], + [ + 314585, + 164902, + 902 + ], + [ + 306492, + 155000, + 942 + ], + [ + 304084, + 153261, + 872 + ], + [ + 298413, + 160696, + 1052 + ], + [ + 298500, + 160292, + 912 + ], + [ + 299236, + 160814, + 912 + ], + [ + 297606, + 163114, + 912 + ], + [ + 297055, + 162724, + 912 + ], + [ + 294135, + 155805, + 1217 + ], + [ + 293764, + 156264, + 1251 + ], + [ + 293257, + 155731, + 1129 + ], + [ + 298734, + 159952, + 1163 + ], + [ + 299111, + 159430, + 942 + ], + [ + 298942, + 159308, + 942 + ], + [ + 299036, + 159377, + 942 + ], + [ + 296639, + 153373, + 970 + ], + [ + 295591, + 154645, + 947 + ], + [ + 295740, + 152829, + 1304 + ], + [ + 297279, + 155315, + 990 + ], + [ + 296919, + 155395, + 1100 + ], + [ + 295536, + 151505, + 938 + ], + [ + 295638, + 152167, + 1118 + ], + [ + 295561, + 152147, + 932 + ], + [ + 297010, + 162788, + 912 + ], + [ + 314038, + 160399, + 852 + ], + [ + 311507, + 158584, + 852 + ], + [ + 304385, + 157918, + 942 + ], + [ + 309372, + 171676, + 1036 + ], + [ + 310352, + 170286, + 929 + ], + [ + 310442, + 170982, + 908 + ], + [ + 311390, + 166042, + 961 + ], + [ + 314390, + 165294, + 1045 + ], + [ + 311127, + 162417, + 942 + ], + [ + 310952, + 162660, + 942 + ], + [ + 308672, + 169088, + 898 + ], + [ + 308007, + 168944, + 1015 + ], + [ + 310034, + 167880, + 948 + ], + [ + 305577, + 173746, + 1066 + ], + [ + 307081, + 173902, + 1215 + ], + [ + 306040, + 174674, + 982 + ], + [ + 303969, + 174614, + 1052 + ], + [ + 304613, + 174105, + 936 + ], + [ + 304702, + 174770, + 938 + ], + [ + 294903, + 173569, + 903 + ], + [ + 293799, + 165276, + 994 + ], + [ + 293405, + 165027, + 1308 + ], + [ + 293985, + 164116, + 1043 + ], + [ + 295177, + 170144, + 1003 + ], + [ + 295225, + 170456, + 1087 + ], + [ + 294863, + 170579, + 1208 + ], + [ + 292352, + 164053, + 1296 + ], + [ + 292676, + 164591, + 1422 + ], + [ + 291725, + 164732, + 1111 + ], + [ + 294027, + 161541, + 1008 + ], + [ + 293714, + 162037, + 1125 + ], + [ + 289241, + 168297, + 1071 + ], + [ + 287570, + 167078, + 991 + ], + [ + 288493, + 167205, + 974 + ], + [ + 294600, + 171080, + 1298 + ], + [ + 294102, + 155426, + 1449 + ], + [ + 294374, + 154626, + 1458 + ], + [ + 294640, + 153854, + 1364 + ], + [ + 293101, + 165506, + 1288 + ], + [ + 287526, + 170311, + 925 + ], + [ + 288867, + 169923, + 1103 + ], + [ + 287059, + 169751, + 953 + ], + [ + 292236, + 165629, + 1060 + ], + [ + 291348, + 165229, + 1045 + ], + [ + 292205, + 165241, + 1331 + ], + [ + 291394, + 147157, + 1279 + ], + [ + 291482, + 147810, + 1274 + ], + [ + 294106, + 147676, + 937 + ], + [ + 292267, + 148230, + 1294 + ], + [ + 293830, + 148144, + 713 + ], + [ + 296178, + 156273, + 998 + ], + [ + 295582, + 156407, + 1215 + ], + [ + 295252, + 156174, + 1116 + ], + [ + 293631, + 155232, + 1313 + ], + [ + 278225, + 157161, + 946 + ], + [ + 277710, + 156342, + 1268 + ], + [ + 278588, + 156920, + 865 + ], + [ + 277557, + 155339, + 1035 + ], + [ + 276779, + 155128, + 1135 + ], + [ + 277466, + 154656, + 1039 + ], + [ + 293074, + 167704, + 1164 + ], + [ + 292615, + 168329, + 1288 + ], + [ + 291626, + 167301, + 1049 + ], + [ + 288613, + 165616, + 1343 + ], + [ + 301267, + 151532, + 1192 + ], + [ + 292552, + 174201, + 1037 + ], + [ + 288447, + 171017, + 742 + ], + [ + 294771, + 160599, + 1138 + ], + [ + 267958, + 150510, + 913 + ], + [ + 267699, + 150806, + 772 + ], + [ + 269953, + 147709, + 852 + ], + [ + 273239, + 150030, + 902 + ], + [ + 287681, + 164211, + 1210 + ], + [ + 292812, + 163467, + 1082 + ], + [ + 293158, + 163387, + 946 + ], + [ + 293211, + 163679, + 1124 + ], + [ + 281663, + 164568, + 809 + ], + [ + 294945, + 159116, + 1065 + ], + [ + 295030, + 159796, + 965 + ], + [ + 293072, + 159774, + 1111 + ], + [ + 293348, + 156416, + 1112 + ], + [ + 293675, + 161681, + 1240 + ], + [ + 293223, + 160777, + 1335 + ], + [ + 293996, + 161186, + 1247 + ], + [ + 292658, + 159580, + 1065 + ], + [ + 294660, + 157085, + 884 + ], + [ + 294796, + 164181, + 897 + ], + [ + 294771, + 165948, + 912 + ], + [ + 292219, + 163000, + 1381 + ], + [ + 262841, + 157620, + 829 + ], + [ + 264108, + 157897, + 817 + ], + [ + 264153, + 158211, + 866 + ], + [ + 263775, + 158354, + 992 + ], + [ + 274059, + 160802, + 732 + ], + [ + 274359, + 160424, + 732 + ], + [ + 298357, + 149814, + 1134 + ], + [ + 298482, + 148411, + 1072 + ], + [ + 297419, + 156343, + 1031 + ], + [ + 298406, + 157569, + 1032 + ], + [ + 297240, + 157768, + 1170 + ], + [ + 297962, + 160453, + 964 + ], + [ + 297918, + 160096, + 1008 + ], + [ + 293023, + 162312, + 1057 + ], + [ + 292631, + 162119, + 1056 + ], + [ + 292932, + 161619, + 1081 + ], + [ + 292062, + 162029, + 1024 + ], + [ + 290579, + 162635, + 1068 + ], + [ + 304248, + 176688, + 1092 + ], + [ + 310686, + 166545, + 1097 + ], + [ + 308584, + 165940, + 942 + ], + [ + 308744, + 165718, + 942 + ], + [ + 300405, + 151085, + 1027 + ], + [ + 273082, + 156027, + 912 + ], + [ + 272390, + 158401, + 1060 + ], + [ + 292434, + 169840, + 1425 + ], + [ + 292764, + 174709, + 752 + ], + [ + 289828, + 143492, + 1092 + ], + [ + 289960, + 144514, + 1030 + ], + [ + 291021, + 144469, + 1113 + ], + [ + 307600, + 174461, + 1204 + ], + [ + 307307, + 175667, + 1100 + ], + [ + 303258, + 177423, + 772 + ], + [ + 278937, + 164294, + 732 + ], + [ + 309842, + 169716, + 933 + ], + [ + 308771, + 169762, + 1030 + ], + [ + 315294, + 165406, + 962 + ], + [ + 311539, + 167046, + 1178 + ], + [ + 294964, + 149856, + 1093 + ], + [ + 294679, + 147821, + 923 + ], + [ + 299434, + 158012, + 982 + ], + [ + 298509, + 158224, + 1245 + ], + [ + 300728, + 153472, + 1084 + ], + [ + 299539, + 153767, + 1106 + ], + [ + 296969, + 152897, + 1157 + ], + [ + 296149, + 152771, + 1217 + ], + [ + 296883, + 152238, + 1179 + ], + [ + 294991, + 156597, + 1165 + ], + [ + 297241, + 176306, + 1037 + ], + [ + 274548, + 160120, + 994 + ], + [ + 293544, + 168976, + 993 + ], + [ + 297419, + 167823, + 912 + ], + [ + 290616, + 169503, + 1009 + ], + [ + 290948, + 168650, + 1221 + ], + [ + 270796, + 159018, + 909 + ], + [ + 312954, + 167372, + 1211 + ], + [ + 303870, + 177198, + 927 + ], + [ + 304579, + 176621, + 942 + ], + [ + 303964, + 177857, + 1009 + ], + [ + 307358, + 172779, + 938 + ], + [ + 289792, + 172432, + 1010 + ], + [ + 286184, + 174211, + 742 + ], + [ + 298641, + 159270, + 1138 + ], + [ + 286858, + 169891, + 742 + ], + [ + 273874, + 152048, + 916 + ], + [ + 274443, + 152864, + 878 + ], + [ + 284384, + 161397, + 1072 + ], + [ + 299241, + 158742, + 1201 + ], + [ + 299745, + 157975, + 972 + ], + [ + 279190, + 158070, + 816 + ], + [ + 278100, + 156081, + 1220 + ], + [ + 293402, + 155236, + 932 + ], + [ + 306581, + 173064, + 964 + ], + [ + 307184, + 171391, + 1079 + ], + [ + 276117, + 158208, + 942 + ], + [ + 293874, + 148483, + 699 + ], + [ + 296926, + 176796, + 996 + ], + [ + 279651, + 164784, + 892 + ], + [ + 285283, + 164214, + 1069 + ], + [ + 284266, + 168007, + 722 + ], + [ + 292735, + 162778, + 1264 + ], + [ + 296146, + 158721, + 1091 + ], + [ + 296189, + 159102, + 977 + ], + [ + 296074, + 160154, + 1101 + ], + [ + 297141, + 160335, + 977 + ], + [ + 295378, + 157228, + 914 + ], + [ + 295663, + 157086, + 1089 + ], + [ + 295483, + 160384, + 970 + ], + [ + 290202, + 166390, + 1062 + ], + [ + 289906, + 166861, + 1319 + ], + [ + 289161, + 167573, + 1305 + ], + [ + 292615, + 166161, + 1039 + ], + [ + 293846, + 165625, + 993 + ], + [ + 290764, + 167257, + 1258 + ], + [ + 290672, + 169829, + 1163 + ], + [ + 291950, + 166445, + 1037 + ], + [ + 292938, + 168575, + 1036 + ], + [ + 293112, + 168081, + 999 + ], + [ + 292666, + 156692, + 1216 + ], + [ + 278311, + 157828, + 890 + ], + [ + 277835, + 157368, + 1089 + ], + [ + 293748, + 162384, + 958 + ], + [ + 296359, + 157652, + 961 + ], + [ + 290249, + 163531, + 1056 + ], + [ + 292568, + 165807, + 1045 + ], + [ + 299966, + 154353, + 1099 + ], + [ + 300763, + 153808, + 965 + ], + [ + 298983, + 154604, + 999 + ], + [ + 296586, + 159349, + 973 + ], + [ + 289730, + 169920, + 1016 + ], + [ + 308087, + 169668, + 806 + ], + [ + 305200, + 178903, + 902 + ], + [ + 268788, + 158399, + 682 + ], + [ + 293355, + 161811, + 1249 + ], + [ + 286041, + 165038, + 1073 + ], + [ + 286696, + 164119, + 950 + ], + [ + 306304, + 169098, + 912 + ], + [ + 277458, + 157621, + 1040 + ], + [ + 308278, + 171036, + 921 + ], + [ + 291592, + 166946, + 1224 + ], + [ + 269881, + 152202, + 968 + ], + [ + 268238, + 150349, + 936 + ], + [ + 297736, + 155556, + 1158 + ], + [ + 290812, + 164374, + 1072 + ], + [ + 291227, + 164167, + 1337 + ], + [ + 289653, + 162270, + 1118 + ], + [ + 287725, + 175302, + 752 + ], + [ + 287332, + 174706, + 914 + ], + [ + 277954, + 155089, + 1057 + ], + [ + 277917, + 154730, + 1217 + ], + [ + 275724, + 156076, + 1100 + ], + [ + 297716, + 174770, + 884 + ], + [ + 297275, + 152171, + 1031 + ], + [ + 295861, + 150776, + 932 + ], + [ + 296326, + 150966, + 1080 + ], + [ + 297279, + 176673, + 897 + ], + [ + 299110, + 178281, + 911 + ], + [ + 297409, + 153205, + 982 + ], + [ + 297909, + 151018, + 970 + ], + [ + 298532, + 151162, + 1095 + ], + [ + 298325, + 154065, + 1119 + ], + [ + 278215, + 165241, + 732 + ], + [ + 279839, + 159359, + 862 + ], + [ + 278359, + 158184, + 889 + ], + [ + 297557, + 160180, + 1093 + ], + [ + 269011, + 158371, + 843 + ], + [ + 266763, + 151520, + 742 + ], + [ + 266647, + 152337, + 945 + ], + [ + 271583, + 155601, + 815 + ], + [ + 267568, + 152626, + 869 + ], + [ + 279288, + 158704, + 986 + ], + [ + 297170, + 144217, + 882 + ], + [ + 297863, + 148542, + 894 + ], + [ + 293569, + 163593, + 930 + ], + [ + 298040, + 154826, + 1016 + ], + [ + 294070, + 179426, + 876 + ], + [ + 294395, + 164293, + 1024 + ], + [ + 294342, + 163963, + 909 + ], + [ + 267580, + 150967, + 772 + ], + [ + 298706, + 147633, + 863 + ], + [ + 347383, + 147813, + 853 + ], + [ + 347782, + 147102, + 941 + ], + [ + 348296, + 147724, + 897 + ], + [ + 343134, + 146181, + 857 + ], + [ + 345265, + 147813, + 889 + ], + [ + 342906, + 146074, + 622 + ], + [ + 346136, + 145226, + 1042 + ], + [ + 345191, + 145392, + 1089 + ], + [ + 346200, + 145149, + 1022 + ], + [ + 346384, + 146545, + 1083 + ], + [ + 346366, + 145419, + 1042 + ], + [ + 346430, + 145342, + 1042 + ], + [ + 344443, + 143812, + 897 + ], + [ + 344098, + 143264, + 1022 + ], + [ + 343089, + 145833, + 864 + ], + [ + 343784, + 143158, + 1022 + ], + [ + 342738, + 143106, + 1043 + ], + [ + 343848, + 143081, + 982 + ], + [ + 343281, + 143714, + 903 + ], + [ + 344034, + 143341, + 1042 + ], + [ + 341734, + 141262, + 882 + ], + [ + 341416, + 141128, + 862 + ], + [ + 340212, + 140287, + 800 + ], + [ + 341480, + 141051, + 832 + ], + [ + 341671, + 141339, + 882 + ], + [ + 340477, + 142309, + 752 + ], + [ + 341385, + 144530, + 892 + ], + [ + 340962, + 143590, + 962 + ], + [ + 338667, + 143866, + 739 + ], + [ + 339590, + 143054, + 622 + ], + [ + 338204, + 144300, + 622 + ], + [ + 337018, + 143282, + 622 + ], + [ + 339424, + 142967, + 773 + ], + [ + 346177, + 148012, + 973 + ], + [ + 346121, + 147667, + 836 + ], + [ + 347439, + 148143, + 1018 + ], + [ + 346432, + 149661, + 622 + ], + [ + 347914, + 148123, + 894 + ], + [ + 342095, + 145005, + 967 + ], + [ + 340864, + 142889, + 901 + ], + [ + 348542, + 147614, + 622 + ], + [ + 340086, + 139894, + 622 + ], + [ + 339591, + 140838, + 784 + ], + [ + 344710, + 145842, + 854 + ], + [ + 345866, + 145608, + 1101 + ], + [ + 345172, + 147165, + 796 + ], + [ + 340617, + 143358, + 757 + ], + [ + 340579, + 143010, + 860 + ], + [ + 217223, + 123174, + 611 + ], + [ + 216050, + 123077, + 582 + ], + [ + 216396, + 123609, + 572 + ], + [ + 217727, + 122637, + 628 + ], + [ + 219410, + 121493, + 700 + ], + [ + 218170, + 122513, + 622 + ], + [ + 220572, + 120844, + 669 + ], + [ + 219876, + 120535, + 562 + ], + [ + 221972, + 119836, + 679 + ], + [ + 221705, + 119320, + 602 + ], + [ + 296155, + 135648, + 975 + ], + [ + 296803, + 135833, + 978 + ], + [ + 293358, + 137759, + 1012 + ], + [ + 296667, + 134835, + 944 + ], + [ + 297800, + 131706, + 832 + ], + [ + 305571, + 137698, + 822 + ], + [ + 301594, + 138337, + 992 + ], + [ + 296437, + 135596, + 745 + ], + [ + 301360, + 143916, + 882 + ], + [ + 441922, + 69187, + 1192 + ], + [ + 439056, + 73379, + 1122 + ], + [ + 439159, + 68910, + 1297 + ], + [ + 434976, + 74885, + 1114 + ], + [ + 435893, + 77290, + 1077 + ], + [ + 438077, + 74795, + 1092 + ], + [ + 434399, + 75878, + 1115 + ], + [ + 439884, + 68052, + 1223 + ], + [ + 435942, + 77607, + 1191 + ], + [ + 436003, + 77746, + 1062 + ], + [ + 440341, + 68249, + 1181 + ], + [ + 434490, + 76553, + 1140 + ], + [ + 265914, + 91095, + 452 + ], + [ + 265675, + 90738, + 452 + ], + [ + 266006, + 91033, + 452 + ], + [ + 266754, + 90749, + 452 + ], + [ + 266106, + 91183, + 452 + ], + [ + 265702, + 90599, + 522 + ], + [ + 266653, + 90599, + 452 + ], + [ + 266828, + 90482, + 452 + ], + [ + 267576, + 90197, + 452 + ], + [ + 266928, + 90632, + 452 + ], + [ + 267476, + 90048, + 452 + ], + [ + 267770, + 89212, + 522 + ], + [ + 267530, + 90011, + 462 + ], + [ + 267658, + 89925, + 462 + ], + [ + 268306, + 89491, + 462 + ], + [ + 267770, + 90091, + 462 + ], + [ + 268418, + 89657, + 462 + ], + [ + 268158, + 89072, + 462 + ], + [ + 268398, + 89429, + 462 + ], + [ + 268019, + 89045, + 522 + ], + [ + 441873, + 68896, + 1192 + ], + [ + 442840, + 67546, + 1692 + ], + [ + 439155, + 65468, + 1787 + ], + [ + 441616, + 64306, + 1783 + ], + [ + 436319, + 64024, + 1678 + ], + [ + 434656, + 63573, + 1940 + ], + [ + 435526, + 61466, + 1909 + ], + [ + 433269, + 56803, + 1984 + ], + [ + 431569, + 57264, + 1690 + ], + [ + 432228, + 56264, + 1890 + ], + [ + 430417, + 60266, + 1808 + ], + [ + 430709, + 60119, + 1673 + ], + [ + 431053, + 50004, + 1924 + ], + [ + 428630, + 52973, + 1857 + ], + [ + 428535, + 52316, + 1751 + ], + [ + 423388, + 50635, + 1894 + ], + [ + 422432, + 51415, + 742 + ], + [ + 424720, + 49416, + 742 + ], + [ + 425939, + 51388, + 1684 + ], + [ + 426131, + 51031, + 742 + ], + [ + 426749, + 51134, + 1791 + ], + [ + 421861, + 50501, + 742 + ], + [ + 421732, + 50614, + 742 + ], + [ + 421365, + 49971, + 742 + ], + [ + 421297, + 51434, + 1750 + ], + [ + 421033, + 51529, + 1753 + ], + [ + 421941, + 51275, + 1752 + ], + [ + 422320, + 51537, + 1722 + ], + [ + 420736, + 52000, + 1782 + ], + [ + 419348, + 52842, + 812 + ], + [ + 419208, + 52341, + 742 + ], + [ + 419018, + 52598, + 792 + ], + [ + 420903, + 53316, + 1683 + ], + [ + 421590, + 53769, + 1507 + ], + [ + 421631, + 54103, + 1468 + ], + [ + 424031, + 55678, + 1535 + ], + [ + 424978, + 56140, + 1510 + ], + [ + 424790, + 56868, + 992 + ], + [ + 428047, + 58090, + 1688 + ], + [ + 437401, + 63958, + 1720 + ], + [ + 438634, + 64592, + 1887 + ], + [ + 437355, + 65433, + 1755 + ], + [ + 432381, + 54761, + 1802 + ], + [ + 438760, + 62452, + 1801 + ], + [ + 440651, + 60872, + 1961 + ], + [ + 441046, + 61439, + 2146 + ], + [ + 444267, + 59967, + 2190 + ], + [ + 442484, + 59462, + 2007 + ], + [ + 444078, + 58600, + 2039 + ], + [ + 433760, + 62709, + 1933 + ], + [ + 434126, + 61717, + 1849 + ], + [ + 442732, + 64633, + 1870 + ], + [ + 443519, + 63700, + 2218 + ], + [ + 444667, + 64973, + 1292 + ], + [ + 433141, + 45698, + 742 + ], + [ + 430820, + 48006, + 2338 + ], + [ + 427142, + 50939, + 742 + ], + [ + 434768, + 55713, + 1873 + ], + [ + 434441, + 56247, + 1906 + ], + [ + 434382, + 55903, + 1716 + ], + [ + 435908, + 64458, + 1755 + ], + [ + 436947, + 65226, + 1799 + ], + [ + 424907, + 49985, + 2159 + ], + [ + 424644, + 50391, + 2162 + ], + [ + 424973, + 50611, + 1924 + ], + [ + 425578, + 51144, + 1937 + ], + [ + 425401, + 51860, + 1649 + ], + [ + 430105, + 60086, + 1734 + ], + [ + 430332, + 59594, + 1867 + ], + [ + 438335, + 52479, + 1996 + ], + [ + 436890, + 51148, + 2132 + ], + [ + 434729, + 48097, + 2218 + ], + [ + 432961, + 61978, + 1657 + ], + [ + 432920, + 61665, + 1666 + ], + [ + 432542, + 61455, + 1675 + ], + [ + 432366, + 60107, + 1706 + ], + [ + 431776, + 47528, + 2052 + ], + [ + 433216, + 46817, + 2106 + ], + [ + 441109, + 55336, + 2093 + ], + [ + 443116, + 56845, + 1832 + ], + [ + 442584, + 56637, + 2031 + ], + [ + 427788, + 52881, + 1654 + ], + [ + 428277, + 50286, + 1876 + ], + [ + 423546, + 51989, + 1585 + ], + [ + 422625, + 51447, + 1706 + ], + [ + 423466, + 51298, + 1759 + ], + [ + 432588, + 61797, + 1701 + ], + [ + 444751, + 61206, + 2221 + ], + [ + 443886, + 62889, + 2224 + ], + [ + 443221, + 61362, + 2320 + ], + [ + 443109, + 67208, + 1692 + ], + [ + 427161, + 51333, + 1762 + ], + [ + 433798, + 63023, + 1873 + ], + [ + 425488, + 50465, + 1930 + ], + [ + 425910, + 51043, + 1927 + ], + [ + 421868, + 53382, + 1655 + ], + [ + 432749, + 46284, + 2151 + ], + [ + 431992, + 47043, + 2058 + ], + [ + 433610, + 46668, + 2290 + ], + [ + 438059, + 62698, + 1879 + ], + [ + 442246, + 64092, + 1987 + ], + [ + 445179, + 62071, + 1432 + ], + [ + 444693, + 59148, + 1662 + ], + [ + 422967, + 51032, + 1711 + ], + [ + 425406, + 56428, + 1638 + ], + [ + 428557, + 55460, + 1654 + ], + [ + 423411, + 55848, + 962 + ], + [ + 423988, + 55335, + 1571 + ], + [ + 443976, + 63567, + 2237 + ], + [ + 429052, + 59187, + 1704 + ], + [ + 429540, + 57863, + 1664 + ], + [ + 431056, + 56764, + 1695 + ], + [ + 430772, + 57932, + 1630 + ], + [ + 439393, + 60575, + 1984 + ], + [ + 436414, + 61192, + 1741 + ], + [ + 422329, + 54337, + 1514 + ], + [ + 422236, + 53626, + 1518 + ], + [ + 427948, + 50751, + 1819 + ], + [ + 432100, + 58076, + 1700 + ], + [ + 428460, + 57949, + 1699 + ], + [ + 442984, + 63169, + 2218 + ], + [ + 438568, + 57671, + 1806 + ], + [ + 438833, + 59705, + 1808 + ], + [ + 434071, + 61376, + 1710 + ], + [ + 441910, + 58239, + 2077 + ], + [ + 440765, + 55459, + 2083 + ], + [ + 437216, + 56276, + 1840 + ], + [ + 434309, + 55218, + 1942 + ], + [ + 440631, + 58386, + 1909 + ], + [ + 435004, + 60623, + 1743 + ], + [ + 433382, + 57793, + 1745 + ], + [ + 429595, + 58210, + 1792 + ], + [ + 435993, + 54996, + 1836 + ], + [ + 434501, + 49912, + 2169 + ], + [ + 439988, + 55803, + 1949 + ], + [ + 439217, + 59221, + 1997 + ], + [ + 439422, + 57734, + 1991 + ], + [ + 430910, + 58952, + 1680 + ], + [ + 435650, + 52320, + 1938 + ], + [ + 435573, + 49828, + 2024 + ], + [ + 442274, + 64411, + 1784 + ], + [ + 436936, + 51495, + 2146 + ], + [ + 437761, + 54734, + 1948 + ], + [ + 437452, + 55503, + 2011 + ], + [ + 437326, + 54508, + 2072 + ], + [ + 438409, + 56338, + 2032 + ], + [ + 442309, + 61269, + 2113 + ], + [ + 429776, + 59564, + 1816 + ], + [ + 262755, + 92937, + 432 + ], + [ + 262643, + 92771, + 432 + ], + [ + 262671, + 92632, + 502 + ], + [ + 263442, + 92476, + 452 + ], + [ + 263358, + 92292, + 452 + ], + [ + 263469, + 92458, + 452 + ], + [ + 263219, + 92264, + 502 + ], + [ + 291499, + 69222, + 442 + ], + [ + 291719, + 69139, + 442 + ], + [ + 292057, + 70296, + 432 + ], + [ + 292300, + 70158, + 412 + ], + [ + 398136, + 113578, + 112 + ], + [ + 395202, + 116431, + 312 + ], + [ + 395979, + 114144, + 312 + ], + [ + 396090, + 114036, + 112 + ], + [ + 397969, + 113406, + 112 + ], + [ + 397816, + 113248, + 112 + ], + [ + 397669, + 113097, + 112 + ], + [ + 397371, + 112791, + 112 + ], + [ + 395753, + 114364, + 312 + ], + [ + 394882, + 116102, + 312 + ], + [ + 394735, + 115951, + 312 + ], + [ + 394437, + 115644, + 312 + ], + [ + 395035, + 116259, + 312 + ], + [ + 402128, + 109631, + 752 + ], + [ + 401352, + 110382, + 112 + ], + [ + 401940, + 109437, + 752 + ], + [ + 401164, + 110188, + 112 + ], + [ + 401074, + 109690, + 752 + ], + [ + 401648, + 109135, + 752 + ], + [ + 400872, + 109886, + 112 + ], + [ + 320256, + 152713, + 852 + ], + [ + 317815, + 151178, + 892 + ], + [ + 319575, + 149449, + 842 + ], + [ + 321457, + 150841, + 832 + ], + [ + 397229, + 78997, + 812 + ], + [ + 398387, + 79795, + 792 + ], + [ + 396423, + 80166, + 822 + ], + [ + 390320, + 75248, + 732 + ], + [ + 394476, + 78252, + 812 + ], + [ + 394212, + 78616, + 812 + ], + [ + 396077, + 80668, + 822 + ], + [ + 393831, + 79143, + 832 + ], + [ + 390431, + 72923, + 692 + ], + [ + 390750, + 73165, + 712 + ], + [ + 390341, + 72877, + 692 + ], + [ + 390196, + 72644, + 692 + ], + [ + 390322, + 72863, + 692 + ], + [ + 390304, + 72848, + 692 + ], + [ + 390288, + 72831, + 692 + ], + [ + 390272, + 72814, + 692 + ], + [ + 388214, + 76066, + 702 + ], + [ + 388165, + 76056, + 702 + ], + [ + 387532, + 76265, + 692 + ], + [ + 387499, + 76302, + 692 + ], + [ + 390238, + 72418, + 692 + ], + [ + 390233, + 72755, + 692 + ], + [ + 390223, + 72734, + 692 + ], + [ + 390214, + 72712, + 692 + ], + [ + 390206, + 72690, + 692 + ], + [ + 390200, + 72668, + 692 + ], + [ + 390193, + 72621, + 692 + ], + [ + 390192, + 72598, + 692 + ], + [ + 390192, + 72574, + 692 + ], + [ + 390194, + 72551, + 692 + ], + [ + 387687, + 76142, + 692 + ], + [ + 390198, + 72528, + 692 + ], + [ + 387645, + 76168, + 692 + ], + [ + 390203, + 72505, + 692 + ], + [ + 390209, + 72482, + 692 + ], + [ + 387605, + 76198, + 692 + ], + [ + 390217, + 72460, + 692 + ], + [ + 390227, + 72439, + 692 + ], + [ + 387568, + 76230, + 692 + ], + [ + 390245, + 72776, + 692 + ], + [ + 390258, + 72795, + 692 + ], + [ + 387731, + 76118, + 692 + ], + [ + 387823, + 76081, + 692 + ], + [ + 387776, + 76098, + 692 + ], + [ + 387870, + 76067, + 692 + ], + [ + 387919, + 76056, + 692 + ], + [ + 387968, + 76049, + 692 + ], + [ + 388017, + 76046, + 692 + ], + [ + 388067, + 76046, + 692 + ], + [ + 388116, + 76049, + 702 + ], + [ + 388250, + 76076, + 702 + ], + [ + 388285, + 76088, + 702 + ], + [ + 388320, + 76102, + 702 + ], + [ + 393404, + 79735, + 832 + ], + [ + 388354, + 76118, + 712 + ], + [ + 388387, + 76136, + 712 + ], + [ + 388419, + 76155, + 712 + ], + [ + 388450, + 76176, + 712 + ], + [ + 388567, + 76260, + 732 + ], + [ + 388892, + 76494, + 742 + ], + [ + 397637, + 81136, + 822 + ], + [ + 398903, + 80151, + 802 + ], + [ + 397991, + 81381, + 822 + ], + [ + 396439, + 82704, + 802 + ], + [ + 395242, + 81878, + 832 + ], + [ + 396140, + 89738, + 838 + ], + [ + 397078, + 88587, + 832 + ], + [ + 395990, + 90181, + 1682 + ], + [ + 397392, + 81490, + 822 + ], + [ + 395128, + 89546, + 781 + ], + [ + 394360, + 86732, + 872 + ], + [ + 392777, + 87989, + 892 + ], + [ + 396951, + 83057, + 822 + ], + [ + 398983, + 82636, + 822 + ], + [ + 398132, + 83871, + 832 + ], + [ + 410986, + 90197, + 642 + ], + [ + 410567, + 90687, + 642 + ], + [ + 410453, + 90608, + 642 + ], + [ + 410590, + 90706, + 642 + ], + [ + 410631, + 90748, + 642 + ], + [ + 410611, + 90726, + 642 + ], + [ + 411053, + 90243, + 642 + ], + [ + 411578, + 90262, + 642 + ], + [ + 411610, + 90244, + 642 + ], + [ + 410678, + 91219, + 642 + ], + [ + 411152, + 90290, + 642 + ], + [ + 410693, + 90848, + 642 + ], + [ + 410680, + 90822, + 642 + ], + [ + 411187, + 90301, + 642 + ], + [ + 410704, + 90876, + 642 + ], + [ + 411222, + 90310, + 642 + ], + [ + 410713, + 90904, + 642 + ], + [ + 410725, + 90962, + 642 + ], + [ + 410720, + 90933, + 642 + ], + [ + 411295, + 90320, + 642 + ], + [ + 411670, + 90202, + 642 + ], + [ + 410729, + 91021, + 642 + ], + [ + 411405, + 90317, + 642 + ], + [ + 410728, + 91050, + 642 + ], + [ + 411441, + 90311, + 642 + ], + [ + 410725, + 91080, + 642 + ], + [ + 411476, + 90302, + 642 + ], + [ + 410719, + 91109, + 642 + ], + [ + 411511, + 90291, + 642 + ], + [ + 410712, + 91137, + 642 + ], + [ + 411545, + 90278, + 642 + ], + [ + 410703, + 91165, + 642 + ], + [ + 410691, + 91193, + 642 + ], + [ + 410663, + 91245, + 642 + ], + [ + 410646, + 91269, + 642 + ], + [ + 411641, + 90224, + 642 + ], + [ + 410728, + 90991, + 642 + ], + [ + 411368, + 90320, + 642 + ], + [ + 411332, + 90322, + 642 + ], + [ + 411259, + 90317, + 642 + ], + [ + 410665, + 90796, + 642 + ], + [ + 411118, + 90277, + 642 + ], + [ + 410649, + 90772, + 642 + ], + [ + 411085, + 90261, + 642 + ], + [ + 410321, + 89736, + 712 + ], + [ + 410121, + 90376, + 672 + ], + [ + 409788, + 90145, + 692 + ], + [ + 410204, + 90434, + 662 + ], + [ + 410654, + 89966, + 682 + ], + [ + 399335, + 82126, + 822 + ], + [ + 397746, + 81735, + 822 + ], + [ + 401697, + 75998, + 762 + ], + [ + 400119, + 80990, + 812 + ], + [ + 401390, + 75296, + 742 + ], + [ + 402144, + 75334, + 682 + ], + [ + 401920, + 75666, + 742 + ], + [ + 401638, + 74415, + 672 + ], + [ + 401619, + 74388, + 672 + ], + [ + 402676, + 75128, + 672 + ], + [ + 401686, + 74824, + 682 + ], + [ + 402262, + 75206, + 672 + ], + [ + 402236, + 75227, + 672 + ], + [ + 401703, + 74761, + 682 + ], + [ + 402318, + 75170, + 672 + ], + [ + 402289, + 75187, + 672 + ], + [ + 401695, + 74793, + 682 + ], + [ + 402411, + 75131, + 672 + ], + [ + 401710, + 74630, + 672 + ], + [ + 402443, + 75122, + 672 + ], + [ + 401710, + 74696, + 672 + ], + [ + 402379, + 75142, + 672 + ], + [ + 402348, + 75155, + 672 + ], + [ + 401691, + 74534, + 672 + ], + [ + 402543, + 75111, + 682 + ], + [ + 402510, + 75112, + 682 + ], + [ + 401554, + 74315, + 672 + ], + [ + 401669, + 74473, + 672 + ], + [ + 402610, + 75115, + 682 + ], + [ + 402577, + 75112, + 682 + ], + [ + 401681, + 74503, + 672 + ], + [ + 401654, + 74443, + 672 + ], + [ + 402643, + 75121, + 672 + ], + [ + 402707, + 75139, + 672 + ], + [ + 401577, + 74338, + 672 + ], + [ + 402769, + 75165, + 672 + ], + [ + 402739, + 75151, + 672 + ], + [ + 401599, + 74362, + 672 + ], + [ + 402476, + 75116, + 672 + ], + [ + 401700, + 74566, + 672 + ], + [ + 401706, + 74598, + 672 + ], + [ + 401711, + 74663, + 672 + ], + [ + 401708, + 74728, + 672 + ], + [ + 402211, + 75250, + 682 + ], + [ + 401674, + 74855, + 682 + ], + [ + 402188, + 75274, + 682 + ], + [ + 401661, + 74884, + 682 + ], + [ + 402167, + 75300, + 682 + ], + [ + 401645, + 74913, + 682 + ], + [ + 401612, + 74963, + 702 + ], + [ + 401168, + 75629, + 762 + ], + [ + 391077, + 73396, + 752 + ], + [ + 391444, + 73655, + 772 + ], + [ + 395773, + 89881, + 820 + ], + [ + 450321, + 40934, + 2114 + ], + [ + 451872, + 42489, + 2062 + ], + [ + 450753, + 43151, + 2102 + ], + [ + 447691, + 38046, + 2166 + ], + [ + 447994, + 38083, + 2930 + ], + [ + 448195, + 38286, + 2162 + ], + [ + 445139, + 40116, + 2315 + ], + [ + 446842, + 41731, + 2102 + ], + [ + 444035, + 39590, + 2283 + ], + [ + 445903, + 40337, + 2226 + ], + [ + 446622, + 37734, + 2300 + ], + [ + 446945, + 36786, + 2648 + ], + [ + 446738, + 36906, + 2173 + ], + [ + 446751, + 36643, + 2825 + ], + [ + 446683, + 36366, + 2183 + ], + [ + 444168, + 36206, + 2236 + ], + [ + 444245, + 35528, + 2262 + ], + [ + 447317, + 36439, + 2182 + ], + [ + 447287, + 36640, + 2575 + ], + [ + 446965, + 36399, + 2565 + ], + [ + 438771, + 35841, + 2412 + ], + [ + 441524, + 37755, + 2313 + ], + [ + 436935, + 35096, + 2151 + ], + [ + 442391, + 32077, + 2132 + ], + [ + 443894, + 35234, + 2272 + ], + [ + 443576, + 35608, + 2282 + ], + [ + 439752, + 33758, + 2326 + ], + [ + 439769, + 33335, + 2307 + ], + [ + 429878, + 29604, + 2090 + ], + [ + 429000, + 29787, + 2002 + ], + [ + 429614, + 29631, + 9978 + ], + [ + 439653, + 30911, + 2112 + ], + [ + 437372, + 31989, + 2277 + ], + [ + 429052, + 29294, + 2067 + ], + [ + 427719, + 28928, + 1962 + ], + [ + 429369, + 29195, + 2033 + ], + [ + 429664, + 29368, + 2071 + ], + [ + 429420, + 29566, + 2081 + ], + [ + 428829, + 28820, + 2012 + ], + [ + 427490, + 28775, + 1962 + ], + [ + 439652, + 33651, + 4025 + ], + [ + 439600, + 33645, + 2320 + ], + [ + 450008, + 40639, + 2134 + ], + [ + 450264, + 40760, + 2721 + ], + [ + 447860, + 42464, + 2102 + ], + [ + 447117, + 41570, + 2215 + ], + [ + 449736, + 44128, + 2072 + ], + [ + 450585, + 45051, + 2032 + ], + [ + 452077, + 45389, + 2032 + ], + [ + 452085, + 47060, + 1932 + ], + [ + 451369, + 46030, + 1962 + ], + [ + 452730, + 48136, + 1872 + ], + [ + 454642, + 47484, + 1942 + ], + [ + 453300, + 49253, + 1812 + ], + [ + 453793, + 50407, + 1802 + ], + [ + 455327, + 49354, + 1882 + ], + [ + 454647, + 51252, + 1922 + ], + [ + 455558, + 50344, + 1852 + ], + [ + 454788, + 54030, + 1722 + ], + [ + 454538, + 52801, + 1742 + ], + [ + 454826, + 52636, + 1923 + ], + [ + 455305, + 55766, + 7851 + ], + [ + 455075, + 55969, + 10202 + ], + [ + 455203, + 55645, + 1763 + ], + [ + 455312, + 60423, + 11508 + ], + [ + 455046, + 60433, + 1680 + ], + [ + 455391, + 60169, + 13085 + ], + [ + 452566, + 66330, + 1422 + ], + [ + 453174, + 65186, + 1362 + ], + [ + 453179, + 65841, + 1442 + ], + [ + 451630, + 68395, + 1352 + ], + [ + 451118, + 68475, + 1302 + ], + [ + 451880, + 67428, + 1372 + ], + [ + 445882, + 75456, + 1233 + ], + [ + 447384, + 73248, + 1082 + ], + [ + 446962, + 74064, + 1268 + ], + [ + 437098, + 86286, + 952 + ], + [ + 437567, + 85797, + 902 + ], + [ + 437877, + 85923, + 1060 + ], + [ + 436424, + 86990, + 972 + ], + [ + 436055, + 88299, + 1042 + ], + [ + 435604, + 87845, + 982 + ], + [ + 437463, + 87999, + 1052 + ], + [ + 436434, + 88488, + 1052 + ], + [ + 436861, + 88468, + 1062 + ], + [ + 439461, + 85157, + 1072 + ], + [ + 437191, + 88327, + 1052 + ], + [ + 438551, + 86416, + 1052 + ], + [ + 448381, + 72323, + 1321 + ], + [ + 451048, + 69232, + 1322 + ], + [ + 439678, + 83526, + 1100 + ], + [ + 445098, + 77204, + 1182 + ], + [ + 441046, + 82895, + 1092 + ], + [ + 446690, + 74950, + 1202 + ], + [ + 448163, + 73031, + 1222 + ], + [ + 452354, + 67143, + 1419 + ], + [ + 452071, + 67399, + 10105 + ], + [ + 452310, + 66825, + 1380 + ], + [ + 451950, + 67580, + 1452 + ], + [ + 452288, + 67316, + 1412 + ], + [ + 453938, + 64281, + 10467 + ], + [ + 453701, + 64003, + 1402 + ], + [ + 454150, + 64072, + 1502 + ], + [ + 452457, + 66954, + 9749 + ], + [ + 454143, + 62785, + 1452 + ], + [ + 454571, + 63165, + 1512 + ], + [ + 453617, + 64776, + 1541 + ], + [ + 454508, + 62572, + 1772 + ], + [ + 454444, + 62223, + 1496 + ], + [ + 454936, + 62237, + 1522 + ], + [ + 455299, + 59083, + 1750 + ], + [ + 454940, + 59031, + 1562 + ], + [ + 455503, + 57991, + 1714 + ], + [ + 454183, + 62719, + 8436 + ], + [ + 454532, + 62876, + 1549 + ], + [ + 455030, + 57780, + 1602 + ], + [ + 455087, + 60773, + 1619 + ], + [ + 455523, + 60312, + 1592 + ], + [ + 455336, + 56639, + 1840 + ], + [ + 455034, + 56525, + 1692 + ], + [ + 455516, + 56278, + 1756 + ], + [ + 455413, + 60036, + 1618 + ], + [ + 455540, + 54566, + 1809 + ], + [ + 455854, + 53333, + 1802 + ], + [ + 455550, + 57759, + 7679 + ], + [ + 455688, + 57628, + 1728 + ], + [ + 454206, + 51591, + 1772 + ], + [ + 455825, + 54564, + 1751 + ], + [ + 455872, + 56821, + 1722 + ], + [ + 455691, + 51343, + 1832 + ], + [ + 455025, + 48400, + 1912 + ], + [ + 453183, + 44735, + 2012 + ], + [ + 448826, + 43264, + 2072 + ], + [ + 450385, + 39975, + 2112 + ], + [ + 444076, + 33139, + 2162 + ], + [ + 445602, + 34222, + 2172 + ], + [ + 444202, + 35343, + 2276 + ], + [ + 444196, + 35383, + 4128 + ], + [ + 448017, + 37637, + 2845 + ], + [ + 447743, + 37713, + 3056 + ], + [ + 447778, + 37584, + 2550 + ], + [ + 437256, + 34764, + 2333 + ], + [ + 445939, + 40474, + 4747 + ], + [ + 445860, + 40363, + 2271 + ], + [ + 455271, + 57743, + 15812 + ], + [ + 455278, + 57049, + 11095 + ], + [ + 455379, + 56995, + 1791 + ], + [ + 455387, + 55265, + 1786 + ], + [ + 454953, + 55273, + 1752 + ], + [ + 455490, + 56645, + 14791 + ], + [ + 455112, + 57689, + 1649 + ], + [ + 454766, + 60273, + 1562 + ], + [ + 455795, + 58339, + 1682 + ], + [ + 455555, + 56591, + 1738 + ], + [ + 455475, + 55947, + 1787 + ], + [ + 455245, + 55964, + 1788 + ], + [ + 452627, + 66362, + 1423 + ], + [ + 431955, + 29081, + 2082 + ], + [ + 429830, + 28873, + 2052 + ], + [ + 429684, + 28946, + 2042 + ], + [ + 433804, + 29385, + 2092 + ], + [ + 436098, + 34352, + 2246 + ], + [ + 454400, + 61909, + 1461 + ], + [ + 454498, + 61540, + 1492 + ], + [ + 454792, + 61824, + 1683 + ], + [ + 455775, + 54967, + 11035 + ], + [ + 455665, + 55576, + 1759 + ], + [ + 429364, + 29563, + 2092 + ], + [ + 429101, + 29684, + 2005 + ], + [ + 429170, + 29347, + 9733 + ], + [ + 429803, + 28876, + 7555 + ], + [ + 429073, + 28854, + 2024 + ], + [ + 455775, + 55262, + 10483 + ], + [ + 447527, + 37633, + 2868 + ], + [ + 447185, + 37488, + 2167 + ], + [ + 447558, + 37384, + 2530 + ], + [ + 448286, + 37586, + 2594 + ], + [ + 448140, + 37674, + 2514 + ], + [ + 448045, + 37396, + 2517 + ], + [ + 443848, + 36484, + 2269 + ], + [ + 443944, + 35917, + 2272 + ], + [ + 444159, + 36196, + 2433 + ], + [ + 446939, + 37528, + 2261 + ], + [ + 446080, + 40620, + 2279 + ], + [ + 435632, + 29812, + 2102 + ], + [ + 440903, + 36769, + 2187 + ], + [ + 441110, + 31507, + 2122 + ], + [ + 448601, + 37862, + 2119 + ], + [ + 448571, + 37130, + 2142 + ], + [ + 449151, + 37935, + 2142 + ], + [ + 447239, + 37338, + 2921 + ], + [ + 448177, + 37999, + 2444 + ], + [ + 448517, + 38021, + 2274 + ], + [ + 450277, + 40600, + 2104 + ], + [ + 446998, + 36177, + 2164 + ], + [ + 447249, + 35643, + 2162 + ], + [ + 447827, + 36870, + 2180 + ], + [ + 447940, + 36363, + 2152 + ], + [ + 447035, + 36178, + 2452 + ], + [ + 448321, + 37346, + 2175 + ], + [ + 448071, + 37298, + 2236 + ], + [ + 447268, + 37107, + 2575 + ], + [ + 447200, + 37230, + 2851 + ], + [ + 447574, + 36918, + 2565 + ], + [ + 447800, + 37120, + 2494 + ], + [ + 447607, + 36663, + 2171 + ], + [ + 447544, + 36744, + 2477 + ], + [ + 441542, + 37295, + 2312 + ], + [ + 442414, + 38147, + 2305 + ], + [ + 442046, + 38171, + 2177 + ], + [ + 444156, + 39373, + 2285 + ], + [ + 438323, + 30484, + 2112 + ], + [ + 397382, + 125632, + 1949 + ], + [ + 397862, + 125775, + 1062 + ], + [ + 397429, + 125990, + 1930 + ], + [ + 400161, + 122409, + 1942 + ], + [ + 399835, + 122365, + 942 + ], + [ + 400428, + 122021, + 978 + ], + [ + 403191, + 119506, + 1863 + ], + [ + 402674, + 119631, + 942 + ], + [ + 403776, + 118959, + 1007 + ], + [ + 431607, + 94664, + 1057 + ], + [ + 431495, + 94360, + 992 + ], + [ + 432178, + 95139, + 1082 + ], + [ + 411789, + 112514, + 2063 + ], + [ + 412194, + 112141, + 1045 + ], + [ + 411116, + 113370, + 1082 + ], + [ + 409106, + 114009, + 1222 + ], + [ + 409047, + 113680, + 1003 + ], + [ + 409526, + 113815, + 2087 + ], + [ + 408760, + 114780, + 1083 + ], + [ + 408258, + 114574, + 1007 + ], + [ + 408779, + 114384, + 2089 + ], + [ + 405789, + 117150, + 2026 + ], + [ + 405535, + 116920, + 1982 + ], + [ + 405682, + 116899, + 995 + ], + [ + 413859, + 109362, + 1017 + ], + [ + 413336, + 109831, + 1018 + ], + [ + 414248, + 108927, + 1862 + ], + [ + 415377, + 108037, + 1040 + ], + [ + 417195, + 106309, + 962 + ], + [ + 417387, + 106258, + 1041 + ], + [ + 418456, + 105635, + 1416 + ], + [ + 419199, + 104752, + 1007 + ], + [ + 419313, + 105054, + 2056 + ], + [ + 418900, + 105201, + 2095 + ], + [ + 424273, + 101541, + 7542 + ], + [ + 424190, + 101245, + 2088 + ], + [ + 424990, + 100924, + 9726 + ], + [ + 427318, + 99129, + 12875 + ], + [ + 427284, + 99208, + 1050 + ], + [ + 426902, + 99227, + 13255 + ], + [ + 395143, + 127370, + 978 + ], + [ + 395553, + 127169, + 7188 + ], + [ + 395604, + 127418, + 1934 + ], + [ + 420545, + 103618, + 1008 + ], + [ + 420419, + 104036, + 2064 + ], + [ + 420163, + 103716, + 952 + ], + [ + 429063, + 96984, + 7695 + ], + [ + 428511, + 97112, + 13983 + ], + [ + 429107, + 96460, + 962 + ], + [ + 404483, + 117995, + 988 + ], + [ + 421945, + 102736, + 2055 + ], + [ + 422302, + 102612, + 1321 + ], + [ + 422394, + 102919, + 2060 + ], + [ + 417587, + 107241, + 2008 + ], + [ + 419072, + 106067, + 1092 + ], + [ + 417046, + 107853, + 1102 + ], + [ + 416580, + 107107, + 2093 + ], + [ + 416781, + 106746, + 1038 + ], + [ + 416828, + 107079, + 1080 + ], + [ + 412541, + 110976, + 2099 + ], + [ + 412964, + 111238, + 2064 + ], + [ + 412627, + 111648, + 2054 + ], + [ + 409758, + 114110, + 1049 + ], + [ + 409712, + 113755, + 1057 + ], + [ + 410040, + 114018, + 1363 + ], + [ + 406099, + 116718, + 2035 + ], + [ + 406631, + 116487, + 2023 + ], + [ + 406436, + 116950, + 2071 + ], + [ + 405095, + 118467, + 2009 + ], + [ + 404595, + 118285, + 2026 + ], + [ + 405005, + 117789, + 2003 + ], + [ + 402470, + 120208, + 1997 + ], + [ + 401226, + 121359, + 986 + ], + [ + 375184, + 147659, + 1913 + ], + [ + 374052, + 147629, + 1755 + ], + [ + 374797, + 147336, + 1459 + ], + [ + 369491, + 152176, + 1145 + ], + [ + 369119, + 152529, + 933 + ], + [ + 368838, + 152527, + 906 + ], + [ + 368369, + 153151, + 950 + ], + [ + 368612, + 153514, + 942 + ], + [ + 368245, + 153109, + 902 + ], + [ + 395895, + 127305, + 1030 + ], + [ + 394932, + 128567, + 990 + ], + [ + 394196, + 129441, + 1032 + ], + [ + 395903, + 126888, + 1923 + ], + [ + 425616, + 100327, + 10953 + ], + [ + 425746, + 99978, + 1390 + ], + [ + 426051, + 100185, + 11623 + ], + [ + 429880, + 96537, + 1049 + ], + [ + 429881, + 96133, + 15308 + ], + [ + 430333, + 96398, + 2061 + ], + [ + 429545, + 96539, + 9747 + ], + [ + 431031, + 94880, + 1050 + ], + [ + 424631, + 100711, + 1117 + ], + [ + 425271, + 100454, + 14636 + ], + [ + 428308, + 97229, + 1020 + ], + [ + 429698, + 97183, + 10723 + ], + [ + 430177, + 96788, + 11728 + ], + [ + 430225, + 96103, + 1065 + ], + [ + 430234, + 95761, + 1840 + ], + [ + 430299, + 96074, + 14815 + ], + [ + 426324, + 99434, + 10684 + ], + [ + 426945, + 99335, + 1043 + ], + [ + 429443, + 96907, + 7605 + ], + [ + 429420, + 96653, + 1140 + ], + [ + 425317, + 100098, + 1324 + ], + [ + 426342, + 98713, + 12310 + ], + [ + 422938, + 101427, + 962 + ], + [ + 427529, + 97749, + 12469 + ], + [ + 427801, + 98371, + 1461 + ], + [ + 427478, + 98432, + 1324 + ], + [ + 427633, + 98041, + 13403 + ], + [ + 427568, + 98743, + 2017 + ], + [ + 427254, + 98514, + 1946 + ], + [ + 428482, + 97802, + 12281 + ], + [ + 428751, + 97758, + 11269 + ], + [ + 428399, + 97873, + 1092 + ], + [ + 426577, + 99754, + 1068 + ], + [ + 427147, + 98188, + 1030 + ], + [ + 427239, + 98495, + 12950 + ], + [ + 426916, + 98641, + 1941 + ], + [ + 427752, + 98710, + 13827 + ], + [ + 425287, + 100874, + 1952 + ], + [ + 425485, + 100691, + 13330 + ], + [ + 426096, + 99150, + 7961 + ], + [ + 425254, + 99786, + 1024 + ], + [ + 427272, + 98807, + 12846 + ], + [ + 427819, + 98711, + 1070 + ], + [ + 431272, + 94763, + 1059 + ], + [ + 431302, + 94827, + 9116 + ], + [ + 430612, + 95673, + 2041 + ], + [ + 430486, + 96057, + 10668 + ], + [ + 428078, + 97595, + 1962 + ], + [ + 428421, + 97458, + 12049 + ], + [ + 426728, + 98948, + 11282 + ], + [ + 429343, + 97250, + 15751 + ], + [ + 428152, + 97891, + 12000 + ], + [ + 427128, + 98194, + 11939 + ], + [ + 426585, + 98649, + 9795 + ], + [ + 424920, + 100227, + 1236 + ], + [ + 425202, + 99788, + 10990 + ], + [ + 430601, + 96045, + 1178 + ], + [ + 396937, + 125921, + 1046 + ], + [ + 397169, + 126082, + 9224 + ], + [ + 396983, + 126252, + 1075 + ], + [ + 398127, + 125311, + 1028 + ], + [ + 398170, + 125284, + 8048 + ], + [ + 425003, + 100931, + 1078 + ], + [ + 423192, + 102578, + 1092 + ], + [ + 423572, + 102175, + 7109 + ], + [ + 423868, + 101365, + 2066 + ], + [ + 423598, + 101433, + 8899 + ], + [ + 423759, + 101079, + 1046 + ], + [ + 423537, + 101831, + 7268 + ], + [ + 424643, + 100356, + 1956 + ], + [ + 424862, + 99916, + 982 + ], + [ + 430637, + 96364, + 1091 + ], + [ + 398141, + 124928, + 1932 + ], + [ + 398895, + 124611, + 1029 + ], + [ + 396587, + 126068, + 1074 + ], + [ + 396452, + 126871, + 1914 + ], + [ + 396229, + 127038, + 1890 + ], + [ + 396408, + 126528, + 1929 + ], + [ + 396632, + 126428, + 1032 + ], + [ + 394533, + 128793, + 1018 + ], + [ + 394116, + 128539, + 1953 + ], + [ + 394488, + 128446, + 1024 + ], + [ + 396350, + 126183, + 1765 + ], + [ + 395520, + 127124, + 1294 + ], + [ + 384774, + 137556, + 1997 + ], + [ + 385226, + 137482, + 2022 + ], + [ + 385271, + 137824, + 2009 + ], + [ + 399827, + 122644, + 994 + ], + [ + 395280, + 127945, + 1847 + ], + [ + 395971, + 127326, + 7314 + ], + [ + 393742, + 129059, + 1920 + ], + [ + 394159, + 128855, + 1962 + ], + [ + 392760, + 129655, + 982 + ], + [ + 424171, + 101631, + 1090 + ], + [ + 423467, + 101512, + 1318 + ], + [ + 423517, + 101867, + 1372 + ], + [ + 429255, + 97276, + 9868 + ], + [ + 423537, + 102194, + 1026 + ], + [ + 422710, + 102162, + 1353 + ], + [ + 422798, + 102456, + 2059 + ], + [ + 431694, + 95341, + 1027 + ], + [ + 431428, + 95446, + 1993 + ], + [ + 431323, + 95121, + 1113 + ], + [ + 430865, + 95263, + 2005 + ], + [ + 399679, + 123804, + 1053 + ], + [ + 399688, + 123376, + 1976 + ], + [ + 399965, + 123658, + 1036 + ], + [ + 398469, + 124452, + 1064 + ], + [ + 398439, + 124120, + 1256 + ], + [ + 398867, + 124231, + 1334 + ], + [ + 396141, + 126390, + 1867 + ], + [ + 431719, + 95010, + 1993 + ], + [ + 424139, + 100909, + 1989 + ], + [ + 399178, + 124440, + 1020 + ], + [ + 399724, + 123969, + 1092 + ], + [ + 420678, + 104630, + 996 + ], + [ + 421120, + 104309, + 1072 + ], + [ + 417176, + 106658, + 2072 + ], + [ + 417761, + 106158, + 2034 + ], + [ + 416983, + 107713, + 2085 + ], + [ + 416647, + 108163, + 1042 + ], + [ + 421530, + 102894, + 1007 + ], + [ + 421926, + 103126, + 1050 + ], + [ + 421966, + 103442, + 1016 + ], + [ + 385511, + 136759, + 1952 + ], + [ + 385703, + 136450, + 1006 + ], + [ + 399541, + 122798, + 984 + ], + [ + 402832, + 120421, + 2003 + ], + [ + 402731, + 120147, + 1094 + ], + [ + 403882, + 119230, + 2010 + ], + [ + 403516, + 119399, + 1994 + ], + [ + 403602, + 120051, + 1988 + ], + [ + 403290, + 120169, + 2021 + ], + [ + 370808, + 151477, + 945 + ], + [ + 369956, + 151718, + 1810 + ], + [ + 371238, + 150978, + 1925 + ], + [ + 372005, + 149948, + 1912 + ], + [ + 372542, + 149282, + 1926 + ], + [ + 372097, + 150632, + 1923 + ], + [ + 419721, + 104588, + 2081 + ], + [ + 420087, + 104158, + 2006 + ], + [ + 420507, + 104708, + 2054 + ], + [ + 421644, + 103199, + 2064 + ], + [ + 400254, + 123079, + 2006 + ], + [ + 399936, + 122930, + 1976 + ], + [ + 400153, + 122802, + 1101 + ], + [ + 402990, + 120353, + 1234 + ], + [ + 402991, + 119946, + 1988 + ], + [ + 402888, + 119694, + 1008 + ], + [ + 400889, + 122211, + 1026 + ], + [ + 400993, + 122480, + 1984 + ], + [ + 400531, + 122263, + 1976 + ], + [ + 391632, + 131226, + 1946 + ], + [ + 391982, + 131131, + 1053 + ], + [ + 391673, + 131570, + 1879 + ], + [ + 394145, + 129276, + 982 + ], + [ + 398529, + 124800, + 1243 + ], + [ + 411322, + 111568, + 1812 + ], + [ + 408418, + 114232, + 2002 + ], + [ + 409798, + 114427, + 1027 + ], + [ + 409191, + 115108, + 1082 + ], + [ + 408666, + 114112, + 1011 + ], + [ + 411200, + 111928, + 2050 + ], + [ + 410430, + 112517, + 1020 + ], + [ + 418586, + 106287, + 2034 + ], + [ + 407025, + 115664, + 990 + ], + [ + 406166, + 117771, + 1022 + ], + [ + 405777, + 117568, + 1078 + ], + [ + 406186, + 117390, + 2019 + ], + [ + 407937, + 114990, + 2083 + ], + [ + 407559, + 115789, + 2067 + ], + [ + 407514, + 115475, + 2021 + ], + [ + 406279, + 116340, + 991 + ], + [ + 406835, + 116771, + 1061 + ], + [ + 406787, + 116431, + 1027 + ], + [ + 407223, + 116592, + 2043 + ], + [ + 405460, + 117668, + 2017 + ], + [ + 404297, + 119418, + 2028 + ], + [ + 404205, + 118742, + 2008 + ], + [ + 406678, + 116832, + 2042 + ], + [ + 409247, + 114609, + 2092 + ], + [ + 409481, + 113499, + 2047 + ], + [ + 410904, + 113028, + 2051 + ], + [ + 410518, + 113162, + 1053 + ], + [ + 410544, + 112795, + 2108 + ], + [ + 409224, + 115005, + 1020 + ], + [ + 410258, + 113623, + 1069 + ], + [ + 410000, + 113328, + 2096 + ], + [ + 410210, + 113265, + 1045 + ], + [ + 409507, + 114235, + 1030 + ], + [ + 409138, + 114355, + 1024 + ], + [ + 408868, + 115058, + 2084 + ], + [ + 374721, + 147059, + 908 + ], + [ + 375051, + 147072, + 1149 + ], + [ + 374993, + 146768, + 878 + ], + [ + 373545, + 148078, + 901 + ], + [ + 379645, + 142514, + 1949 + ], + [ + 379214, + 142636, + 911 + ], + [ + 380812, + 141131, + 1901 + ], + [ + 378754, + 143175, + 1869 + ], + [ + 378941, + 142977, + 906 + ], + [ + 379044, + 143177, + 1960 + ], + [ + 375610, + 146835, + 914 + ], + [ + 375139, + 147321, + 1906 + ], + [ + 375298, + 146837, + 891 + ], + [ + 371767, + 149956, + 1840 + ], + [ + 371519, + 150307, + 1931 + ], + [ + 376212, + 145793, + 1834 + ], + [ + 376311, + 146489, + 1924 + ], + [ + 375926, + 146409, + 1920 + ], + [ + 379322, + 142879, + 1962 + ], + [ + 379735, + 143202, + 1934 + ], + [ + 373647, + 148286, + 1912 + ], + [ + 373220, + 148614, + 1933 + ], + [ + 375967, + 146731, + 1914 + ], + [ + 373691, + 148605, + 1930 + ], + [ + 431161, + 95855, + 1072 + ], + [ + 430956, + 95935, + 2050 + ], + [ + 430847, + 95620, + 1072 + ], + [ + 369025, + 153417, + 1863 + ], + [ + 370513, + 152045, + 1905 + ], + [ + 368863, + 153791, + 1002 + ], + [ + 368746, + 153420, + 1889 + ], + [ + 411226, + 112654, + 1049 + ], + [ + 411270, + 112993, + 1048 + ], + [ + 409953, + 112970, + 2088 + ], + [ + 408371, + 114859, + 2063 + ], + [ + 407980, + 115320, + 2074 + ], + [ + 406520, + 116213, + 977 + ], + [ + 407136, + 115944, + 2027 + ], + [ + 406807, + 116044, + 2028 + ], + [ + 407277, + 116858, + 1092 + ], + [ + 406875, + 117108, + 1009 + ], + [ + 388298, + 134407, + 1958 + ], + [ + 387783, + 134648, + 961 + ], + [ + 388252, + 134077, + 1931 + ], + [ + 388659, + 133968, + 1956 + ], + [ + 389044, + 133893, + 1958 + ], + [ + 388685, + 134337, + 1627 + ], + [ + 413068, + 111505, + 1092 + ], + [ + 410795, + 112763, + 1030 + ], + [ + 410815, + 112355, + 2064 + ], + [ + 409618, + 114521, + 2072 + ], + [ + 377023, + 145965, + 915 + ], + [ + 376683, + 146164, + 1918 + ], + [ + 376594, + 145480, + 1936 + ], + [ + 375585, + 146474, + 1214 + ], + [ + 410591, + 113499, + 1455 + ], + [ + 408002, + 116058, + 1002 + ], + [ + 407605, + 116147, + 2048 + ], + [ + 394488, + 128019, + 1820 + ], + [ + 393095, + 129455, + 1921 + ], + [ + 393454, + 129595, + 1936 + ], + [ + 393080, + 129857, + 963 + ], + [ + 391993, + 130729, + 1956 + ], + [ + 392319, + 130221, + 1935 + ], + [ + 392589, + 130515, + 977 + ], + [ + 381864, + 140104, + 914 + ], + [ + 381590, + 140374, + 1949 + ], + [ + 389296, + 133453, + 1947 + ], + [ + 389955, + 133431, + 1022 + ], + [ + 389288, + 133877, + 1026 + ], + [ + 387109, + 135384, + 1990 + ], + [ + 387104, + 135812, + 1114 + ], + [ + 386765, + 135457, + 1978 + ], + [ + 392630, + 130830, + 976 + ], + [ + 383069, + 138965, + 935 + ], + [ + 390963, + 132188, + 1936 + ], + [ + 390523, + 132744, + 991 + ], + [ + 390145, + 132780, + 1928 + ], + [ + 388615, + 133653, + 1937 + ], + [ + 390131, + 133192, + 969 + ], + [ + 389250, + 133110, + 1925 + ], + [ + 388995, + 133540, + 1925 + ], + [ + 381680, + 141024, + 2006 + ], + [ + 380861, + 141461, + 1976 + ], + [ + 382366, + 140646, + 1995 + ], + [ + 382004, + 141127, + 981 + ], + [ + 377270, + 144591, + 892 + ], + [ + 377375, + 144803, + 1942 + ], + [ + 397757, + 125441, + 1923 + ], + [ + 397334, + 125289, + 1913 + ], + [ + 397675, + 125143, + 1335 + ], + [ + 396892, + 125604, + 1007 + ], + [ + 408461, + 115537, + 2057 + ], + [ + 416013, + 108598, + 2066 + ], + [ + 416390, + 108173, + 2066 + ], + [ + 414945, + 108470, + 1022 + ], + [ + 416936, + 107354, + 2090 + ], + [ + 415491, + 108351, + 2083 + ], + [ + 415099, + 109080, + 2089 + ], + [ + 417157, + 107055, + 1059 + ], + [ + 415905, + 108307, + 1068 + ], + [ + 415141, + 109425, + 2023 + ], + [ + 415045, + 109666, + 1102 + ], + [ + 414744, + 109520, + 2077 + ], + [ + 415926, + 107925, + 2074 + ], + [ + 415056, + 108746, + 2087 + ], + [ + 386137, + 136624, + 1976 + ], + [ + 385744, + 136767, + 1010 + ], + [ + 383540, + 139261, + 1027 + ], + [ + 384037, + 139067, + 1983 + ], + [ + 383585, + 139598, + 1035 + ], + [ + 386094, + 136305, + 1968 + ], + [ + 386414, + 136293, + 1041 + ], + [ + 383217, + 139509, + 1995 + ], + [ + 388288, + 134849, + 974 + ], + [ + 386852, + 136103, + 2000 + ], + [ + 386459, + 136646, + 1008 + ], + [ + 385561, + 137110, + 2008 + ], + [ + 385606, + 137466, + 1976 + ], + [ + 394842, + 127887, + 984 + ], + [ + 419337, + 105792, + 1005 + ], + [ + 419808, + 105265, + 2046 + ], + [ + 420701, + 104235, + 2064 + ], + [ + 421004, + 104134, + 2073 + ], + [ + 405842, + 117889, + 1409 + ], + [ + 406479, + 117282, + 2066 + ], + [ + 405373, + 118619, + 1102 + ], + [ + 405543, + 118314, + 1990 + ], + [ + 405502, + 117985, + 2024 + ], + [ + 411248, + 112267, + 2096 + ], + [ + 412762, + 110270, + 1012 + ], + [ + 414387, + 109935, + 2081 + ], + [ + 414727, + 109927, + 1063 + ], + [ + 413634, + 110098, + 1044 + ], + [ + 413448, + 110110, + 2084 + ], + [ + 413248, + 110846, + 2076 + ], + [ + 412923, + 110922, + 2064 + ], + [ + 413138, + 110559, + 1060 + ], + [ + 412166, + 111393, + 2045 + ], + [ + 413749, + 110393, + 2105 + ], + [ + 412875, + 110566, + 2055 + ], + [ + 413157, + 110171, + 2057 + ], + [ + 414019, + 109991, + 2098 + ], + [ + 413654, + 109695, + 2079 + ], + [ + 413424, + 110481, + 1051 + ], + [ + 413970, + 109632, + 2072 + ], + [ + 413533, + 110767, + 2069 + ], + [ + 414057, + 110309, + 2038 + ], + [ + 413226, + 111238, + 1037 + ], + [ + 389818, + 133255, + 1938 + ], + [ + 383549, + 138810, + 1991 + ], + [ + 383171, + 139178, + 1960 + ], + [ + 399147, + 124089, + 1224 + ], + [ + 399464, + 123882, + 1932 + ], + [ + 398862, + 123869, + 1938 + ], + [ + 399420, + 123532, + 1961 + ], + [ + 389723, + 132553, + 1908 + ], + [ + 390872, + 131519, + 1903 + ], + [ + 389409, + 132798, + 936 + ], + [ + 391886, + 130462, + 945 + ], + [ + 393125, + 130191, + 963 + ], + [ + 389716, + 132999, + 979 + ], + [ + 387450, + 134931, + 1988 + ], + [ + 389512, + 133038, + 1939 + ], + [ + 431094, + 95207, + 1337 + ], + [ + 418547, + 105968, + 2078 + ], + [ + 404683, + 118961, + 2027 + ], + [ + 400520, + 122664, + 1069 + ], + [ + 400563, + 123012, + 1025 + ], + [ + 399376, + 123201, + 1949 + ], + [ + 400901, + 121804, + 1948 + ], + [ + 401336, + 121651, + 1979 + ], + [ + 401376, + 121967, + 1961 + ], + [ + 410882, + 113418, + 1030 + ], + [ + 368603, + 152868, + 913 + ], + [ + 368696, + 153060, + 1848 + ], + [ + 370464, + 151675, + 1898 + ], + [ + 384291, + 138103, + 1086 + ], + [ + 384819, + 137890, + 2008 + ], + [ + 383996, + 138743, + 1996 + ], + [ + 371908, + 149749, + 936 + ], + [ + 401703, + 121169, + 1976 + ], + [ + 401746, + 121499, + 1972 + ], + [ + 402192, + 121382, + 1916 + ], + [ + 402869, + 120745, + 1920 + ], + [ + 403028, + 120708, + 1094 + ], + [ + 401596, + 122175, + 1092 + ], + [ + 411658, + 111536, + 2036 + ], + [ + 412058, + 111121, + 1036 + ], + [ + 411705, + 111864, + 2086 + ], + [ + 382813, + 139239, + 1923 + ], + [ + 382322, + 140314, + 1997 + ], + [ + 381249, + 140733, + 1958 + ], + [ + 383946, + 138389, + 1968 + ], + [ + 377037, + 145500, + 1954 + ], + [ + 368136, + 152989, + 892 + ], + [ + 374471, + 147284, + 1855 + ], + [ + 382906, + 139917, + 1966 + ], + [ + 382276, + 139969, + 1984 + ], + [ + 382652, + 140269, + 1997 + ], + [ + 383206, + 139961, + 1005 + ], + [ + 382551, + 140731, + 1072 + ], + [ + 422774, + 102820, + 1024 + ], + [ + 422235, + 102278, + 1001 + ], + [ + 421309, + 103674, + 2046 + ], + [ + 420912, + 103463, + 2030 + ], + [ + 421684, + 103518, + 2022 + ], + [ + 421284, + 104052, + 987 + ], + [ + 420658, + 103920, + 2040 + ], + [ + 407957, + 115694, + 1050 + ], + [ + 392907, + 130248, + 1948 + ], + [ + 392409, + 130876, + 1962 + ], + [ + 393786, + 129377, + 1943 + ], + [ + 392861, + 129917, + 1923 + ], + [ + 391584, + 130888, + 1890 + ], + [ + 398045, + 124657, + 1095 + ], + [ + 418985, + 105851, + 2067 + ], + [ + 412216, + 111745, + 2094 + ], + [ + 431183, + 95509, + 2032 + ], + [ + 401729, + 121884, + 1010 + ], + [ + 371606, + 150968, + 1937 + ], + [ + 378846, + 143848, + 1914 + ], + [ + 378281, + 144506, + 1951 + ], + [ + 377420, + 145144, + 1947 + ], + [ + 387499, + 135292, + 2015 + ], + [ + 387857, + 134915, + 1515 + ], + [ + 403479, + 120392, + 1092 + ], + [ + 368935, + 152769, + 1784 + ], + [ + 369572, + 152399, + 1873 + ], + [ + 369207, + 152758, + 1717 + ], + [ + 406725, + 117189, + 2032 + ], + [ + 377769, + 144160, + 1922 + ], + [ + 405080, + 118871, + 1035 + ], + [ + 419359, + 105396, + 2067 + ], + [ + 380432, + 142604, + 962 + ], + [ + 380902, + 141786, + 1946 + ], + [ + 380028, + 142511, + 1965 + ], + [ + 380070, + 142852, + 1923 + ], + [ + 410301, + 113963, + 1031 + ], + [ + 399605, + 123108, + 1320 + ], + [ + 414248, + 108927, + 982 + ], + [ + 411322, + 111568, + 952 + ], + [ + 408418, + 114232, + 1002 + ], + [ + 405535, + 116920, + 932 + ], + [ + 210602, + 319433, + 1062 + ], + [ + 211419, + 318556, + 1062 + ], + [ + 214793, + 319857, + 832 + ], + [ + 208877, + 320868, + 1062 + ], + [ + 211070, + 325923, + 832 + ], + [ + 210218, + 325787, + 832 + ], + [ + 207846, + 325349, + 832 + ], + [ + 212854, + 327427, + 832 + ], + [ + 211248, + 326057, + 832 + ], + [ + 335118, + 198071, + 876 + ], + [ + 333494, + 199934, + 813 + ], + [ + 334518, + 196473, + 962 + ], + [ + 336397, + 197315, + 832 + ], + [ + 419248, + 114877, + 832 + ], + [ + 420635, + 113524, + 832 + ], + [ + 421626, + 113801, + 853 + ], + [ + 436212, + 96346, + 911 + ], + [ + 436634, + 96196, + 878 + ], + [ + 436593, + 96307, + 12502 + ], + [ + 438747, + 89436, + 1185 + ], + [ + 440095, + 92440, + 722 + ], + [ + 437873, + 90413, + 1072 + ], + [ + 441204, + 91074, + 712 + ], + [ + 445663, + 85012, + 712 + ], + [ + 445651, + 85029, + 712 + ], + [ + 444145, + 84104, + 1020 + ], + [ + 439076, + 88953, + 1067 + ], + [ + 442779, + 87036, + 907 + ], + [ + 411461, + 122262, + 862 + ], + [ + 417612, + 118356, + 722 + ], + [ + 407393, + 128667, + 722 + ], + [ + 438278, + 89477, + 1082 + ], + [ + 439538, + 92624, + 778 + ], + [ + 438411, + 92753, + 892 + ], + [ + 438493, + 92925, + 8867 + ], + [ + 438452, + 93067, + 890 + ], + [ + 428468, + 106175, + 836 + ], + [ + 433609, + 100429, + 842 + ], + [ + 424764, + 110579, + 752 + ], + [ + 437190, + 94534, + 949 + ], + [ + 437143, + 94169, + 967 + ], + [ + 437474, + 94009, + 922 + ], + [ + 434532, + 98280, + 920 + ], + [ + 434253, + 99103, + 870 + ], + [ + 432905, + 99526, + 922 + ], + [ + 437129, + 95022, + 10123 + ], + [ + 436466, + 94846, + 986 + ], + [ + 436857, + 94656, + 961 + ], + [ + 434692, + 97225, + 932 + ], + [ + 434783, + 98118, + 904 + ], + [ + 435518, + 97038, + 929 + ], + [ + 436293, + 97123, + 872 + ], + [ + 435032, + 97998, + 889 + ], + [ + 429245, + 105119, + 9336 + ], + [ + 428982, + 105017, + 855 + ], + [ + 429313, + 104922, + 824 + ], + [ + 423405, + 110698, + 812 + ], + [ + 427421, + 106058, + 872 + ], + [ + 404185, + 131903, + 732 + ], + [ + 403389, + 128842, + 922 + ], + [ + 417605, + 117981, + 849 + ], + [ + 414543, + 119658, + 822 + ], + [ + 416938, + 117296, + 832 + ], + [ + 399819, + 132350, + 912 + ], + [ + 401257, + 130875, + 922 + ], + [ + 406460, + 126326, + 892 + ], + [ + 404893, + 127557, + 942 + ], + [ + 398473, + 133840, + 902 + ], + [ + 395364, + 137452, + 862 + ], + [ + 393008, + 140033, + 822 + ], + [ + 390592, + 142594, + 822 + ], + [ + 367036, + 162765, + 1012 + ], + [ + 373525, + 157278, + 944 + ], + [ + 366264, + 164327, + 992 + ], + [ + 388503, + 144618, + 842 + ], + [ + 363379, + 169772, + 882 + ], + [ + 369096, + 158919, + 972 + ], + [ + 370139, + 157275, + 952 + ], + [ + 339854, + 193579, + 858 + ], + [ + 339680, + 193499, + 11170 + ], + [ + 339808, + 193229, + 881 + ], + [ + 380395, + 150013, + 912 + ], + [ + 382368, + 148955, + 872 + ], + [ + 377282, + 154434, + 877 + ], + [ + 376331, + 154665, + 930 + ], + [ + 376249, + 154952, + 7679 + ], + [ + 376132, + 154823, + 6289 + ], + [ + 377253, + 153918, + 6554 + ], + [ + 377195, + 153771, + 875 + ], + [ + 377481, + 152779, + 901 + ], + [ + 375712, + 154577, + 927 + ], + [ + 374857, + 154203, + 893 + ], + [ + 374817, + 153877, + 927 + ], + [ + 372803, + 154631, + 902 + ], + [ + 375174, + 153053, + 912 + ], + [ + 373769, + 156281, + 893 + ], + [ + 373517, + 156396, + 7039 + ], + [ + 373387, + 156264, + 890 + ], + [ + 376118, + 155310, + 892 + ], + [ + 376310, + 155259, + 7953 + ], + [ + 375543, + 155922, + 928 + ], + [ + 384417, + 147729, + 872 + ], + [ + 385692, + 146896, + 872 + ], + [ + 373254, + 155252, + 896 + ], + [ + 373096, + 156579, + 903 + ], + [ + 371923, + 155297, + 912 + ], + [ + 386775, + 146067, + 862 + ], + [ + 373524, + 157270, + 5542 + ], + [ + 370790, + 156394, + 942 + ], + [ + 375177, + 156599, + 940 + ], + [ + 367831, + 161248, + 1012 + ], + [ + 364702, + 167983, + 922 + ], + [ + 365364, + 166516, + 962 + ], + [ + 364329, + 168598, + 892 + ], + [ + 360072, + 173425, + 872 + ], + [ + 356544, + 177264, + 842 + ], + [ + 352392, + 181857, + 799 + ], + [ + 354092, + 179794, + 832 + ], + [ + 349405, + 184198, + 11356 + ], + [ + 349493, + 184488, + 822 + ], + [ + 349108, + 184528, + 873 + ], + [ + 349446, + 184133, + 827 + ], + [ + 346794, + 186536, + 842 + ], + [ + 350304, + 183346, + 812 + ], + [ + 345077, + 188892, + 825 + ], + [ + 342351, + 190432, + 882 + ], + [ + 320547, + 211858, + 1006 + ], + [ + 313361, + 219411, + 832 + ], + [ + 316369, + 214780, + 1012 + ], + [ + 338614, + 194159, + 871 + ], + [ + 338405, + 194569, + 10453 + ], + [ + 338139, + 194186, + 885 + ], + [ + 330899, + 199154, + 1012 + ], + [ + 328606, + 201149, + 1022 + ], + [ + 327141, + 202666, + 1012 + ], + [ + 324601, + 205572, + 1062 + ], + [ + 318746, + 212291, + 1062 + ], + [ + 319577, + 211421, + 1062 + ], + [ + 286012, + 245644, + 832 + ], + [ + 302359, + 225558, + 1062 + ], + [ + 314000, + 217159, + 1002 + ], + [ + 312651, + 218460, + 1062 + ], + [ + 311112, + 219741, + 1062 + ], + [ + 242536, + 283852, + 1062 + ], + [ + 268373, + 259616, + 1062 + ], + [ + 231298, + 298380, + 832 + ], + [ + 309463, + 220901, + 1062 + ], + [ + 300653, + 226658, + 1062 + ], + [ + 297218, + 229216, + 1062 + ], + [ + 292918, + 232334, + 1062 + ], + [ + 289684, + 234794, + 1062 + ], + [ + 287638, + 236691, + 1062 + ], + [ + 284091, + 241114, + 1062 + ], + [ + 281943, + 244084, + 1062 + ], + [ + 278205, + 249448, + 1062 + ], + [ + 276631, + 251666, + 1062 + ], + [ + 274926, + 253541, + 1062 + ], + [ + 272334, + 256108, + 1062 + ], + [ + 271457, + 256890, + 1062 + ], + [ + 269652, + 258500, + 1062 + ], + [ + 265231, + 261970, + 1062 + ], + [ + 245067, + 280767, + 1062 + ], + [ + 262061, + 263975, + 1062 + ], + [ + 256862, + 267538, + 1062 + ], + [ + 259607, + 265438, + 1062 + ], + [ + 254672, + 269515, + 1062 + ], + [ + 252458, + 271715, + 1062 + ], + [ + 250534, + 273565, + 1062 + ], + [ + 249268, + 274992, + 1062 + ], + [ + 247235, + 277665, + 1062 + ], + [ + 240065, + 286724, + 1062 + ], + [ + 227570, + 297540, + 1062 + ], + [ + 228211, + 296316, + 1062 + ], + [ + 238343, + 288386, + 1062 + ], + [ + 236027, + 290279, + 1062 + ], + [ + 233932, + 291726, + 1062 + ], + [ + 231275, + 293609, + 1062 + ], + [ + 229744, + 294730, + 1062 + ], + [ + 228881, + 295447, + 1062 + ], + [ + 228711, + 295667, + 1062 + ], + [ + 226505, + 299403, + 1062 + ], + [ + 219985, + 310200, + 832 + ], + [ + 221584, + 305692, + 1062 + ], + [ + 218292, + 312438, + 832 + ], + [ + 217434, + 310893, + 1062 + ], + [ + 216483, + 315620, + 832 + ], + [ + 213275, + 316227, + 1062 + ], + [ + 205414, + 323264, + 832 + ], + [ + 207209, + 321619, + 1062 + ], + [ + 205003, + 321964, + 1062 + ], + [ + 204150, + 322181, + 832 + ], + [ + 204136, + 322052, + 1062 + ], + [ + 205822, + 321866, + 1062 + ], + [ + 429041, + 105448, + 10435 + ], + [ + 429118, + 105331, + 15783 + ], + [ + 429964, + 104432, + 836 + ], + [ + 431964, + 100755, + 11847 + ], + [ + 431839, + 101153, + 9304 + ], + [ + 431164, + 101672, + 9748 + ], + [ + 434681, + 98236, + 14736 + ], + [ + 434573, + 98610, + 889 + ], + [ + 438575, + 94076, + 753 + ], + [ + 438157, + 94697, + 792 + ], + [ + 435849, + 96869, + 900 + ], + [ + 349781, + 184058, + 818 + ], + [ + 348945, + 184846, + 10253 + ], + [ + 349441, + 184562, + 11181 + ], + [ + 348764, + 184987, + 835 + ], + [ + 428735, + 105760, + 823 + ], + [ + 428512, + 104909, + 12989 + ], + [ + 428743, + 105216, + 10609 + ], + [ + 429008, + 105134, + 10553 + ], + [ + 430753, + 103266, + 831 + ], + [ + 430243, + 103012, + 889 + ], + [ + 430811, + 102928, + 15768 + ], + [ + 431310, + 102280, + 10694 + ], + [ + 431097, + 102832, + 827 + ], + [ + 430980, + 101949, + 13452 + ], + [ + 429918, + 104073, + 852 + ], + [ + 430333, + 103714, + 847 + ], + [ + 429956, + 104233, + 11317 + ], + [ + 428896, + 104340, + 892 + ], + [ + 429497, + 103686, + 10733 + ], + [ + 429493, + 103841, + 886 + ], + [ + 428962, + 104802, + 10533 + ], + [ + 429022, + 104683, + 15640 + ], + [ + 429254, + 104741, + 10185 + ], + [ + 436942, + 95338, + 910 + ], + [ + 437349, + 93019, + 996 + ], + [ + 436992, + 93380, + 992 + ], + [ + 437340, + 92350, + 1022 + ], + [ + 437561, + 94682, + 895 + ], + [ + 437864, + 94532, + 873 + ], + [ + 437906, + 94868, + 846 + ], + [ + 436675, + 96515, + 855 + ], + [ + 435476, + 96719, + 944 + ], + [ + 438100, + 94660, + 13683 + ], + [ + 437430, + 93666, + 940 + ], + [ + 437056, + 93494, + 983 + ], + [ + 437345, + 93200, + 10660 + ], + [ + 350242, + 183585, + 812 + ], + [ + 350084, + 183906, + 10287 + ], + [ + 350015, + 183629, + 813 + ], + [ + 348603, + 185039, + 11552 + ], + [ + 348245, + 185417, + 11779 + ], + [ + 348111, + 185489, + 9761 + ], + [ + 431583, + 101885, + 9623 + ], + [ + 431136, + 102027, + 8672 + ], + [ + 431492, + 102540, + 12807 + ], + [ + 431415, + 102390, + 857 + ], + [ + 431535, + 102270, + 8200 + ], + [ + 430288, + 103350, + 894 + ], + [ + 433193, + 100475, + 866 + ], + [ + 429231, + 104275, + 890 + ], + [ + 437575, + 94827, + 10887 + ], + [ + 429877, + 103756, + 875 + ], + [ + 428734, + 105139, + 15738 + ], + [ + 430190, + 103105, + 12217 + ], + [ + 437025, + 96014, + 820 + ], + [ + 436131, + 95700, + 969 + ], + [ + 431714, + 102321, + 836 + ], + [ + 432043, + 101764, + 11076 + ], + [ + 431901, + 101574, + 878 + ], + [ + 432022, + 101401, + 11459 + ], + [ + 432299, + 101043, + 11652 + ], + [ + 432102, + 101144, + 899 + ], + [ + 432058, + 100808, + 904 + ], + [ + 435601, + 96777, + 11284 + ], + [ + 435843, + 95466, + 962 + ], + [ + 436018, + 95529, + 10849 + ], + [ + 350062, + 183977, + 815 + ], + [ + 342832, + 190880, + 840 + ], + [ + 342496, + 191349, + 805 + ], + [ + 348766, + 184771, + 14346 + ], + [ + 347950, + 185882, + 829 + ], + [ + 339602, + 193987, + 818 + ], + [ + 339356, + 193993, + 867 + ], + [ + 339558, + 193646, + 856 + ], + [ + 428934, + 104490, + 10704 + ], + [ + 429283, + 104364, + 11326 + ], + [ + 429613, + 104299, + 11221 + ], + [ + 429534, + 104157, + 887 + ], + [ + 429578, + 104511, + 847 + ], + [ + 432439, + 101075, + 877 + ], + [ + 432479, + 101388, + 847 + ], + [ + 431947, + 101935, + 844 + ], + [ + 431632, + 101671, + 901 + ], + [ + 347587, + 186341, + 843 + ], + [ + 339727, + 193844, + 11183 + ], + [ + 436936, + 94465, + 14708 + ], + [ + 437270, + 95184, + 885 + ], + [ + 436816, + 94325, + 979 + ], + [ + 436103, + 95161, + 12741 + ], + [ + 436087, + 95364, + 951 + ], + [ + 435616, + 96714, + 7553 + ], + [ + 351710, + 182478, + 8734 + ], + [ + 351958, + 182251, + 807 + ], + [ + 350446, + 183728, + 10817 + ], + [ + 437697, + 93209, + 954 + ], + [ + 438116, + 94358, + 836 + ], + [ + 339837, + 193845, + 7901 + ], + [ + 338511, + 195170, + 10824 + ], + [ + 339455, + 194149, + 6807 + ], + [ + 436418, + 94489, + 982 + ], + [ + 351500, + 182290, + 817 + ], + [ + 351171, + 182693, + 809 + ], + [ + 351040, + 182939, + 8962 + ], + [ + 350489, + 183173, + 824 + ], + [ + 349844, + 183901, + 12448 + ], + [ + 340168, + 193197, + 867 + ], + [ + 340888, + 192682, + 840 + ], + [ + 339312, + 193662, + 862 + ], + [ + 339268, + 193306, + 903 + ], + [ + 338659, + 194517, + 858 + ], + [ + 337728, + 194627, + 912 + ], + [ + 340016, + 193538, + 7465 + ], + [ + 338172, + 194043, + 8198 + ], + [ + 336799, + 195117, + 927 + ], + [ + 338870, + 193276, + 892 + ], + [ + 342144, + 191752, + 824 + ], + [ + 339024, + 194071, + 881 + ], + [ + 338798, + 193643, + 11120 + ], + [ + 338277, + 195254, + 842 + ], + [ + 338698, + 194769, + 7637 + ], + [ + 338702, + 194853, + 823 + ], + [ + 351374, + 182359, + 9788 + ], + [ + 352342, + 181477, + 807 + ], + [ + 350537, + 183531, + 807 + ], + [ + 350837, + 183156, + 803 + ], + [ + 351544, + 182621, + 811 + ], + [ + 431674, + 102004, + 863 + ], + [ + 339104, + 194455, + 7207 + ], + [ + 338831, + 194627, + 9743 + ], + [ + 432791, + 100616, + 892 + ], + [ + 432424, + 100643, + 10104 + ], + [ + 432752, + 100301, + 916 + ], + [ + 340649, + 193018, + 7917 + ], + [ + 340558, + 193134, + 828 + ], + [ + 341276, + 192280, + 849 + ], + [ + 432943, + 100514, + 9089 + ], + [ + 432396, + 100995, + 9049 + ], + [ + 432128, + 100746, + 9757 + ], + [ + 432353, + 100398, + 906 + ], + [ + 437990, + 93369, + 898 + ], + [ + 437561, + 91369, + 1052 + ], + [ + 339300, + 193977, + 10839 + ], + [ + 435762, + 96190, + 936 + ], + [ + 373206, + 154891, + 874 + ], + [ + 437359, + 93895, + 9549 + ], + [ + 339071, + 194457, + 839 + ], + [ + 438192, + 93211, + 898 + ], + [ + 437848, + 93255, + 7668 + ], + [ + 376070, + 154949, + 892 + ], + [ + 375411, + 154880, + 998 + ], + [ + 374399, + 154541, + 901 + ], + [ + 377745, + 151518, + 902 + ], + [ + 368509, + 159999, + 992 + ], + [ + 376373, + 154994, + 910 + ], + [ + 375552, + 154968, + 2796 + ], + [ + 376104, + 152953, + 911 + ], + [ + 376286, + 154329, + 924 + ], + [ + 376030, + 154620, + 940 + ], + [ + 376737, + 154946, + 6019 + ], + [ + 376462, + 154865, + 6465 + ], + [ + 377150, + 153420, + 899 + ], + [ + 376724, + 153028, + 900 + ], + [ + 377101, + 153058, + 884 + ], + [ + 376677, + 152682, + 883 + ], + [ + 373433, + 156599, + 898 + ], + [ + 340211, + 193556, + 811 + ], + [ + 340974, + 192647, + 7563 + ], + [ + 339959, + 193754, + 9790 + ], + [ + 374798, + 153962, + 7456 + ], + [ + 338568, + 193796, + 897 + ], + [ + 373330, + 155020, + 6955 + ], + [ + 373584, + 154872, + 904 + ], + [ + 373856, + 156934, + 910 + ], + [ + 376485, + 152896, + 6262 + ], + [ + 377188, + 153174, + 7015 + ], + [ + 377240, + 154111, + 889 + ], + [ + 340342, + 193367, + 8083 + ], + [ + 376419, + 152978, + 906 + ], + [ + 373478, + 156950, + 895 + ], + [ + 376647, + 154724, + 890 + ], + [ + 376063, + 154573, + 5786 + ], + [ + 375756, + 154931, + 893 + ], + [ + 322234, + 208338, + 1082 + ], + [ + 335169, + 198375, + 1021 + ], + [ + 443903, + 81566, + 1152 + ], + [ + 444257, + 86883, + 594 + ], + [ + 457400, + 55040, + 1522 + ], + [ + 457359, + 53203, + 1522 + ], + [ + 462761, + 54675, + 1102 + ], + [ + 462283, + 55742, + 892 + ], + [ + 461801, + 56820, + 892 + ], + [ + 462865, + 54417, + 672 + ], + [ + 462925, + 54267, + 1102 + ], + [ + 457380, + 67875, + 732 + ], + [ + 456573, + 61990, + 1522 + ], + [ + 457365, + 57052, + 1522 + ], + [ + 457314, + 58070, + 1522 + ], + [ + 457230, + 59058, + 1522 + ], + [ + 457089, + 60054, + 1522 + ], + [ + 456863, + 61023, + 1522 + ], + [ + 456264, + 62958, + 1512 + ], + [ + 446661, + 80868, + 2267 + ], + [ + 446208, + 81296, + 1099 + ], + [ + 446246, + 80982, + 2193 + ], + [ + 455888, + 63885, + 1502 + ], + [ + 452239, + 73714, + 930 + ], + [ + 452651, + 73277, + 906 + ], + [ + 452856, + 73678, + 3059 + ], + [ + 455593, + 64769, + 1460 + ], + [ + 455450, + 64810, + 1502 + ], + [ + 455444, + 66553, + 2229 + ], + [ + 455580, + 66347, + 15749 + ], + [ + 455458, + 67211, + 1244 + ], + [ + 455665, + 65145, + 1795 + ], + [ + 454994, + 65722, + 7632 + ], + [ + 455167, + 67303, + 2413 + ], + [ + 454807, + 67706, + 2469 + ], + [ + 454549, + 67384, + 13398 + ], + [ + 453911, + 68982, + 9768 + ], + [ + 453822, + 69206, + 13102 + ], + [ + 453362, + 69277, + 11751 + ], + [ + 453417, + 69338, + 2139 + ], + [ + 453155, + 69786, + 2616 + ], + [ + 452150, + 73039, + 925 + ], + [ + 452561, + 72600, + 876 + ], + [ + 451170, + 73441, + 3132 + ], + [ + 451376, + 73263, + 910 + ], + [ + 451582, + 73669, + 3062 + ], + [ + 447785, + 77982, + 1339 + ], + [ + 448303, + 77930, + 3002 + ], + [ + 448209, + 78208, + 1189 + ], + [ + 446176, + 80339, + 2381 + ], + [ + 446155, + 80655, + 1500 + ], + [ + 445690, + 80676, + 8064 + ], + [ + 453374, + 72390, + 933 + ], + [ + 453409, + 72722, + 820 + ], + [ + 453014, + 72499, + 921 + ], + [ + 452692, + 69811, + 1303 + ], + [ + 452780, + 70190, + 1853 + ], + [ + 452376, + 70319, + 2447 + ], + [ + 455174, + 66703, + 9430 + ], + [ + 455072, + 66329, + 14322 + ], + [ + 455318, + 66470, + 6047 + ], + [ + 455102, + 66962, + 2137 + ], + [ + 454597, + 66662, + 1429 + ], + [ + 454154, + 69108, + 1229 + ], + [ + 454198, + 68815, + 2372 + ], + [ + 454477, + 69047, + 1088 + ], + [ + 454004, + 67443, + 1412 + ], + [ + 455334, + 67068, + 16640 + ], + [ + 455365, + 66825, + 6058 + ], + [ + 451739, + 73166, + 1014 + ], + [ + 451822, + 73500, + 1555 + ], + [ + 455421, + 69323, + 2312 + ], + [ + 455459, + 69639, + 2263 + ], + [ + 455014, + 69378, + 2340 + ], + [ + 455606, + 65724, + 6017 + ], + [ + 455747, + 65816, + 1729 + ], + [ + 455555, + 65734, + 16508 + ], + [ + 455354, + 65873, + 7632 + ], + [ + 455757, + 66117, + 1326 + ], + [ + 455417, + 66217, + 7895 + ], + [ + 455294, + 65837, + 1433 + ], + [ + 454360, + 68060, + 1241 + ], + [ + 454896, + 68404, + 2450 + ], + [ + 453629, + 70705, + 2635 + ], + [ + 453798, + 70586, + 928 + ], + [ + 453975, + 70980, + 2695 + ], + [ + 455208, + 67617, + 2432 + ], + [ + 454206, + 69516, + 8607 + ], + [ + 454303, + 69519, + 2556 + ], + [ + 454346, + 69833, + 2591 + ], + [ + 454616, + 68735, + 8360 + ], + [ + 455270, + 68937, + 902 + ], + [ + 455162, + 69094, + 10572 + ], + [ + 454627, + 69433, + 2484 + ], + [ + 453718, + 69893, + 1055 + ], + [ + 453801, + 69636, + 2694 + ], + [ + 453934, + 69900, + 13403 + ], + [ + 454392, + 69551, + 15497 + ], + [ + 453902, + 69168, + 1075 + ], + [ + 454158, + 69201, + 8503 + ], + [ + 453948, + 69499, + 1112 + ], + [ + 454552, + 69715, + 926 + ], + [ + 453978, + 68916, + 2599 + ], + [ + 454344, + 67427, + 2161 + ], + [ + 454637, + 66981, + 1394 + ], + [ + 455147, + 66093, + 15803 + ], + [ + 455627, + 67902, + 2362 + ], + [ + 455492, + 67523, + 1159 + ], + [ + 454110, + 69880, + 2691 + ], + [ + 446545, + 80511, + 1276 + ], + [ + 446280, + 80568, + 10029 + ], + [ + 445727, + 81098, + 1297 + ], + [ + 445852, + 82009, + 7881 + ], + [ + 453888, + 68666, + 10013 + ], + [ + 453506, + 69703, + 2732 + ], + [ + 452934, + 69170, + 1342 + ], + [ + 454407, + 68381, + 1320 + ], + [ + 453895, + 68539, + 2113 + ], + [ + 454028, + 68096, + 1300 + ], + [ + 455827, + 69588, + 2115 + ], + [ + 455540, + 70614, + 1634 + ], + [ + 455334, + 68648, + 2319 + ], + [ + 455639, + 68836, + 837 + ], + [ + 455600, + 68514, + 876 + ], + [ + 455572, + 68168, + 1114 + ], + [ + 445671, + 80755, + 1129 + ], + [ + 447442, + 77736, + 1281 + ], + [ + 447233, + 77896, + 2353 + ], + [ + 447095, + 77528, + 1105 + ], + [ + 455795, + 69252, + 2260 + ], + [ + 453031, + 72186, + 1748 + ], + [ + 453469, + 72141, + 2741 + ], + [ + 446895, + 80720, + 1085 + ], + [ + 444586, + 82508, + 1035 + ], + [ + 445159, + 83722, + 916 + ], + [ + 455251, + 67974, + 2381 + ], + [ + 455441, + 67774, + 11216 + ], + [ + 454411, + 67781, + 2450 + ], + [ + 446314, + 78822, + 1130 + ], + [ + 445812, + 78876, + 1162 + ], + [ + 446813, + 77617, + 1153 + ], + [ + 446303, + 81650, + 1766 + ], + [ + 446289, + 81531, + 8380 + ], + [ + 445305, + 81249, + 1642 + ], + [ + 444862, + 81369, + 1052 + ], + [ + 447601, + 79076, + 1073 + ], + [ + 447936, + 79320, + 1018 + ], + [ + 447658, + 79409, + 1251 + ], + [ + 446656, + 81492, + 1050 + ], + [ + 445586, + 80108, + 1138 + ], + [ + 445525, + 82579, + 2278 + ], + [ + 445921, + 82455, + 1541 + ], + [ + 446037, + 82794, + 2539 + ], + [ + 445308, + 81604, + 1031 + ], + [ + 446712, + 81829, + 1213 + ], + [ + 446264, + 81854, + 7444 + ], + [ + 446300, + 81978, + 1137 + ], + [ + 445928, + 82143, + 2220 + ], + [ + 447026, + 81088, + 2267 + ], + [ + 447079, + 81270, + 7418 + ], + [ + 446973, + 81414, + 912 + ], + [ + 447267, + 81274, + 859 + ], + [ + 447347, + 81641, + 1311 + ], + [ + 447540, + 80248, + 2358 + ], + [ + 447205, + 80296, + 1763 + ], + [ + 447195, + 79976, + 2208 + ], + [ + 447173, + 82412, + 1911 + ], + [ + 447225, + 82753, + 1998 + ], + [ + 446482, + 82688, + 2382 + ], + [ + 453874, + 70303, + 2500 + ], + [ + 452943, + 70901, + 2853 + ], + [ + 453349, + 71119, + 2927 + ], + [ + 452994, + 71242, + 2950 + ], + [ + 445648, + 80989, + 6894 + ], + [ + 444538, + 82150, + 1019 + ], + [ + 446437, + 82333, + 2410 + ], + [ + 446938, + 83212, + 1858 + ], + [ + 447691, + 82222, + 885 + ], + [ + 447904, + 81431, + 1024 + ], + [ + 447561, + 81189, + 950 + ], + [ + 444656, + 82380, + 7296 + ], + [ + 444987, + 82377, + 959 + ], + [ + 455222, + 68250, + 1472 + ], + [ + 454158, + 70236, + 2723 + ], + [ + 455044, + 69712, + 2146 + ], + [ + 452329, + 74050, + 1579 + ], + [ + 452767, + 74277, + 705 + ], + [ + 452469, + 74445, + 2838 + ], + [ + 450277, + 74609, + 1125 + ], + [ + 450325, + 74971, + 1138 + ], + [ + 450094, + 74769, + 3043 + ], + [ + 449022, + 76413, + 2824 + ], + [ + 449349, + 76599, + 1090 + ], + [ + 449119, + 77059, + 3007 + ], + [ + 449579, + 77289, + 3065 + ], + [ + 449854, + 76828, + 1569 + ], + [ + 449989, + 77216, + 2748 + ], + [ + 448906, + 79173, + 2722 + ], + [ + 448442, + 79262, + 2510 + ], + [ + 448410, + 78911, + 2702 + ], + [ + 449221, + 75569, + 1174 + ], + [ + 449651, + 75470, + 1186 + ], + [ + 449709, + 75806, + 1395 + ], + [ + 450823, + 76901, + 1107 + ], + [ + 450759, + 76560, + 832 + ], + [ + 451217, + 76843, + 2477 + ], + [ + 452081, + 72395, + 1130 + ], + [ + 451742, + 72211, + 2794 + ], + [ + 452154, + 72091, + 2709 + ], + [ + 451180, + 74701, + 958 + ], + [ + 451689, + 74636, + 2801 + ], + [ + 451595, + 74923, + 965 + ], + [ + 450818, + 73491, + 2992 + ], + [ + 450652, + 73109, + 1373 + ], + [ + 451129, + 73110, + 3161 + ], + [ + 452417, + 70661, + 2411 + ], + [ + 451781, + 70784, + 2042 + ], + [ + 452545, + 71327, + 2984 + ], + [ + 452900, + 71516, + 1111 + ], + [ + 451615, + 73995, + 2925 + ], + [ + 451833, + 73843, + 1094 + ], + [ + 451983, + 74226, + 2494 + ], + [ + 450352, + 74018, + 3248 + ], + [ + 450877, + 73838, + 3185 + ], + [ + 452189, + 73356, + 886 + ], + [ + 451288, + 74430, + 2969 + ], + [ + 453684, + 71027, + 2818 + ], + [ + 453588, + 71316, + 931 + ], + [ + 453198, + 72889, + 2796 + ], + [ + 453245, + 71405, + 920 + ], + [ + 451403, + 72630, + 2453 + ], + [ + 450889, + 72349, + 1181 + ], + [ + 451314, + 72257, + 1881 + ], + [ + 452520, + 72260, + 926 + ], + [ + 452893, + 73987, + 3011 + ], + [ + 453760, + 71694, + 2666 + ], + [ + 453289, + 71747, + 926 + ], + [ + 454395, + 70169, + 2659 + ], + [ + 453314, + 70798, + 3008 + ], + [ + 453240, + 70431, + 2645 + ], + [ + 452772, + 70478, + 1202 + ], + [ + 454505, + 71155, + 2421 + ], + [ + 454273, + 71248, + 2499 + ], + [ + 454105, + 70848, + 877 + ], + [ + 451646, + 75264, + 1045 + ], + [ + 451986, + 75154, + 845 + ], + [ + 452023, + 75499, + 727 + ], + [ + 448788, + 78191, + 2856 + ], + [ + 448699, + 78470, + 1102 + ], + [ + 449022, + 77369, + 1070 + ], + [ + 448658, + 77162, + 2909 + ], + [ + 448398, + 78601, + 3117 + ], + [ + 451409, + 76371, + 1133 + ], + [ + 451410, + 76715, + 519 + ], + [ + 450023, + 77527, + 2663 + ], + [ + 450449, + 77802, + 2481 + ], + [ + 450778, + 77675, + 2572 + ], + [ + 450448, + 78101, + 1925 + ], + [ + 448881, + 78837, + 2979 + ], + [ + 453875, + 71229, + 838 + ], + [ + 453111, + 73177, + 1055 + ], + [ + 454542, + 71507, + 2298 + ], + [ + 454182, + 71520, + 732 + ], + [ + 453837, + 72386, + 2492 + ], + [ + 453905, + 73030, + 2274 + ], + [ + 453079, + 71897, + 2942 + ], + [ + 454055, + 71627, + 2626 + ], + [ + 454192, + 70554, + 2635 + ], + [ + 454129, + 72298, + 2448 + ], + [ + 454165, + 72635, + 2345 + ], + [ + 454601, + 70077, + 958 + ], + [ + 453222, + 73559, + 1924 + ], + [ + 451460, + 76086, + 2367 + ], + [ + 450705, + 76216, + 699 + ], + [ + 453294, + 73893, + 2329 + ], + [ + 452379, + 74735, + 1040 + ], + [ + 452797, + 74593, + 561 + ], + [ + 452407, + 75062, + 832 + ], + [ + 449322, + 78756, + 2746 + ], + [ + 455151, + 70399, + 2400 + ], + [ + 454776, + 70461, + 2697 + ], + [ + 450284, + 77080, + 1483 + ], + [ + 450431, + 77451, + 2866 + ], + [ + 450985, + 77252, + 2735 + ], + [ + 450582, + 76960, + 1110 + ], + [ + 449671, + 78271, + 2549 + ], + [ + 450086, + 78165, + 2367 + ], + [ + 450124, + 78521, + 2248 + ], + [ + 453495, + 73080, + 1379 + ], + [ + 449191, + 77725, + 2793 + ], + [ + 449660, + 77959, + 2973 + ], + [ + 449281, + 79050, + 1634 + ], + [ + 449637, + 78936, + 842 + ], + [ + 449273, + 79369, + 936 + ], + [ + 452049, + 74561, + 2814 + ], + [ + 448025, + 79020, + 2798 + ], + [ + 448933, + 75732, + 2828 + ], + [ + 448853, + 76050, + 1123 + ], + [ + 448394, + 76126, + 1105 + ], + [ + 448152, + 76918, + 2733 + ], + [ + 447795, + 77330, + 2665 + ], + [ + 447330, + 77047, + 971 + ], + [ + 448579, + 77484, + 1225 + ], + [ + 448753, + 77865, + 2970 + ], + [ + 451668, + 71550, + 2947 + ], + [ + 451580, + 71188, + 2373 + ], + [ + 452083, + 71426, + 2918 + ], + [ + 453802, + 72049, + 2617 + ], + [ + 453591, + 70376, + 2695 + ], + [ + 451768, + 75636, + 2088 + ], + [ + 451742, + 76271, + 559 + ], + [ + 448498, + 79608, + 2669 + ], + [ + 448427, + 79915, + 1114 + ], + [ + 448113, + 79666, + 2855 + ], + [ + 454835, + 71093, + 2384 + ], + [ + 454752, + 71392, + 684 + ], + [ + 454339, + 71882, + 2270 + ], + [ + 454596, + 71850, + 2430 + ], + [ + 447947, + 78330, + 2961 + ], + [ + 448200, + 77279, + 2750 + ], + [ + 447603, + 78126, + 2821 + ], + [ + 448565, + 76487, + 2852 + ], + [ + 448501, + 76810, + 1361 + ], + [ + 447512, + 77451, + 2790 + ], + [ + 448023, + 76551, + 1605 + ], + [ + 447996, + 78688, + 2994 + ], + [ + 447537, + 78438, + 1341 + ], + [ + 447850, + 77656, + 2833 + ], + [ + 450854, + 74811, + 1099 + ], + [ + 450552, + 74872, + 1008 + ], + [ + 450666, + 74601, + 3092 + ], + [ + 451723, + 75961, + 863 + ], + [ + 450883, + 75122, + 934 + ], + [ + 450938, + 75457, + 1097 + ], + [ + 450619, + 75203, + 1335 + ], + [ + 451952, + 74827, + 960 + ], + [ + 450057, + 74457, + 3095 + ], + [ + 450249, + 74296, + 1300 + ], + [ + 450960, + 75767, + 843 + ], + [ + 449726, + 76140, + 1025 + ], + [ + 449400, + 75948, + 2998 + ], + [ + 450386, + 72893, + 2290 + ], + [ + 449352, + 74003, + 1762 + ], + [ + 450580, + 72414, + 1252 + ], + [ + 450391, + 75297, + 1467 + ], + [ + 449609, + 75155, + 1177 + ], + [ + 449239, + 74930, + 2591 + ], + [ + 449311, + 75269, + 2996 + ], + [ + 448844, + 75060, + 2809 + ], + [ + 449704, + 74873, + 3036 + ], + [ + 450017, + 74101, + 3189 + ], + [ + 450484, + 74228, + 1224 + ], + [ + 449951, + 73773, + 2861 + ], + [ + 449602, + 74170, + 2896 + ], + [ + 449398, + 76912, + 1201 + ], + [ + 449443, + 76288, + 2976 + ], + [ + 449914, + 76519, + 2974 + ], + [ + 450159, + 76391, + 986 + ], + [ + 450557, + 76637, + 1363 + ], + [ + 450073, + 75739, + 973 + ], + [ + 453546, + 70056, + 2644 + ], + [ + 450679, + 75867, + 967 + ], + [ + 450905, + 74165, + 2986 + ], + [ + 447077, + 79640, + 1162 + ], + [ + 447441, + 79229, + 2829 + ], + [ + 447480, + 79558, + 2772 + ], + [ + 447796, + 79775, + 2517 + ], + [ + 446710, + 79083, + 1475 + ], + [ + 446431, + 79172, + 2139 + ], + [ + 448457, + 80227, + 969 + ], + [ + 448065, + 79983, + 1596 + ], + [ + 447336, + 80980, + 2360 + ], + [ + 447090, + 78970, + 2568 + ], + [ + 447367, + 78880, + 2440 + ], + [ + 447091, + 82068, + 1372 + ], + [ + 446828, + 82183, + 2206 + ], + [ + 451346, + 72910, + 1129 + ], + [ + 450702, + 72831, + 2580 + ], + [ + 450933, + 72708, + 1142 + ], + [ + 446901, + 78266, + 1216 + ], + [ + 446824, + 79415, + 2475 + ], + [ + 447302, + 78233, + 2699 + ], + [ + 446496, + 80151, + 1239 + ], + [ + 446530, + 79854, + 2269 + ], + [ + 446919, + 80072, + 2616 + ], + [ + 447401, + 79870, + 1106 + ], + [ + 446871, + 79754, + 2520 + ], + [ + 447742, + 80089, + 1186 + ], + [ + 447785, + 80430, + 1168 + ], + [ + 448215, + 80669, + 2454 + ], + [ + 447926, + 80808, + 2458 + ], + [ + 448068, + 80317, + 1033 + ], + [ + 447952, + 81117, + 2259 + ], + [ + 447514, + 80872, + 857 + ], + [ + 447927, + 81742, + 774 + ], + [ + 447214, + 80607, + 1320 + ], + [ + 452548, + 71959, + 1871 + ], + [ + 452441, + 71586, + 1053 + ], + [ + 451998, + 71698, + 1236 + ], + [ + 447582, + 80560, + 2388 + ], + [ + 448552, + 80904, + 1077 + ], + [ + 448227, + 81005, + 2015 + ], + [ + 454670, + 70719, + 758 + ], + [ + 454301, + 70425, + 890 + ], + [ + 448313, + 75481, + 1157 + ], + [ + 452504, + 71010, + 2979 + ], + [ + 455092, + 70704, + 1030 + ], + [ + 455496, + 69962, + 2211 + ], + [ + 445412, + 82255, + 1295 + ], + [ + 450219, + 76743, + 1189 + ], + [ + 449397, + 79728, + 2027 + ], + [ + 448985, + 79845, + 2599 + ], + [ + 448924, + 80182, + 1136 + ], + [ + 448533, + 80565, + 1420 + ], + [ + 449717, + 78625, + 2550 + ], + [ + 448866, + 79485, + 1588 + ], + [ + 451660, + 72490, + 1125 + ], + [ + 451581, + 71846, + 1194 + ], + [ + 451337, + 71966, + 2725 + ], + [ + 450935, + 72074, + 2315 + ], + [ + 445994, + 79619, + 1144 + ], + [ + 446856, + 80403, + 1111 + ], + [ + 446047, + 79979, + 1226 + ], + [ + 448268, + 81360, + 1945 + ], + [ + 448322, + 81399, + 732 + ], + [ + 446500, + 83637, + 884 + ], + [ + 446075, + 83461, + 1847 + ], + [ + 446537, + 83326, + 1975 + ], + [ + 447099, + 81759, + 2059 + ], + [ + 447994, + 76223, + 1804 + ], + [ + 448162, + 75600, + 1202 + ], + [ + 447572, + 78762, + 1228 + ], + [ + 451705, + 72808, + 1178 + ], + [ + 450967, + 74512, + 3221 + ], + [ + 450437, + 73237, + 2375 + ], + [ + 450227, + 73337, + 2747 + ], + [ + 445073, + 83049, + 929 + ], + [ + 445186, + 83397, + 1873 + ], + [ + 451309, + 75715, + 921 + ], + [ + 447340, + 78550, + 2662 + ], + [ + 447030, + 78631, + 2351 + ], + [ + 447151, + 77202, + 2470 + ], + [ + 451220, + 73762, + 3243 + ], + [ + 451240, + 74083, + 2928 + ], + [ + 449206, + 74615, + 2713 + ], + [ + 451232, + 75048, + 1057 + ], + [ + 447378, + 81980, + 1113 + ], + [ + 445565, + 83594, + 984 + ], + [ + 446082, + 84124, + 743 + ], + [ + 445559, + 82931, + 2107 + ], + [ + 445586, + 83248, + 1913 + ], + [ + 446066, + 83107, + 2385 + ], + [ + 446492, + 79496, + 2394 + ], + [ + 447420, + 82312, + 1111 + ], + [ + 446097, + 83772, + 1594 + ], + [ + 446657, + 78722, + 1395 + ], + [ + 445906, + 78943, + 1147 + ], + [ + 450630, + 75549, + 871 + ], + [ + 452133, + 72720, + 1262 + ], + [ + 455511, + 70291, + 1813 + ], + [ + 462761, + 54675, + 252 + ], + [ + 462925, + 54267, + 252 + ], + [ + 454994, + 65722, + 1502 + ], + [ + 451781, + 70784, + 1292 + ], + [ + 449352, + 74003, + 1222 + ], + [ + 427492, + 25064, + 10375 + ], + [ + 427104, + 25150, + 1842 + ], + [ + 428710, + 24676, + 1902 + ], + [ + 429886, + 24540, + 1752 + ], + [ + 429729, + 24684, + 8371 + ], + [ + 429748, + 24454, + 9076 + ], + [ + 428957, + 26113, + 1946 + ], + [ + 429466, + 26142, + 1956 + ], + [ + 429117, + 26482, + 1982 + ], + [ + 429218, + 25946, + 1960 + ], + [ + 429521, + 25914, + 2008 + ], + [ + 429424, + 26598, + 1992 + ], + [ + 429268, + 26545, + 1982 + ], + [ + 429770, + 26351, + 1924 + ], + [ + 429582, + 26640, + 2002 + ], + [ + 429888, + 26447, + 7781 + ], + [ + 429783, + 26645, + 1986 + ], + [ + 430138, + 26534, + 1920 + ], + [ + 429906, + 26691, + 2012 + ], + [ + 430153, + 24797, + 10198 + ], + [ + 430334, + 24918, + 1863 + ], + [ + 430079, + 25183, + 1811 + ], + [ + 430477, + 26540, + 1959 + ], + [ + 430398, + 26686, + 2022 + ], + [ + 430216, + 26230, + 8965 + ], + [ + 430345, + 26280, + 9199 + ], + [ + 430325, + 26334, + 7197 + ], + [ + 430896, + 26218, + 1888 + ], + [ + 430665, + 26291, + 1937 + ], + [ + 430815, + 26040, + 1989 + ], + [ + 430335, + 26012, + 13788 + ], + [ + 430474, + 26031, + 1927 + ], + [ + 430878, + 26581, + 2032 + ], + [ + 430720, + 26627, + 2022 + ], + [ + 430684, + 25959, + 13551 + ], + [ + 430495, + 26013, + 2024 + ], + [ + 437843, + 23600, + 2654 + ], + [ + 437560, + 23896, + 1692 + ], + [ + 437360, + 23602, + 1802 + ], + [ + 437690, + 23903, + 1722 + ], + [ + 437826, + 23850, + 1982 + ], + [ + 438079, + 23870, + 1802 + ], + [ + 437950, + 23889, + 1732 + ], + [ + 438832, + 22582, + 2902 + ], + [ + 439112, + 22827, + 2597 + ], + [ + 438747, + 23330, + 2566 + ], + [ + 438206, + 23842, + 1872 + ], + [ + 438298, + 23481, + 2673 + ], + [ + 438325, + 23781, + 2499 + ], + [ + 438331, + 23805, + 1972 + ], + [ + 438573, + 23707, + 1982 + ], + [ + 438454, + 23760, + 2152 + ], + [ + 438688, + 23647, + 2152 + ], + [ + 438799, + 23578, + 2162 + ], + [ + 439006, + 23420, + 2192 + ], + [ + 438905, + 23503, + 2192 + ], + [ + 438794, + 22489, + 3142 + ], + [ + 438887, + 22452, + 3142 + ], + [ + 439190, + 23236, + 1922 + ], + [ + 439101, + 23331, + 2152 + ], + [ + 439082, + 22519, + 2742 + ], + [ + 439416, + 22918, + 1912 + ], + [ + 439348, + 23029, + 1912 + ], + [ + 439437, + 22735, + 2533 + ], + [ + 438322, + 22788, + 2812 + ], + [ + 439673, + 22501, + 1708 + ], + [ + 439626, + 22735, + 1912 + ], + [ + 439859, + 22581, + 1912 + ], + [ + 439740, + 22654, + 1922 + ], + [ + 439954, + 22405, + 1635 + ], + [ + 439982, + 22516, + 1912 + ], + [ + 440223, + 22254, + 1448 + ], + [ + 440109, + 22459, + 1752 + ], + [ + 440240, + 22411, + 1702 + ], + [ + 440510, + 22340, + 1482 + ], + [ + 440507, + 22155, + 1383 + ], + [ + 440647, + 22318, + 1452 + ], + [ + 440786, + 22305, + 1422 + ], + [ + 440895, + 22037, + 1348 + ], + [ + 440926, + 22301, + 1412 + ], + [ + 439518, + 22823, + 1872 + ], + [ + 446790, + 24428, + 1178 + ], + [ + 446863, + 24311, + 8988 + ], + [ + 447150, + 24332, + 1080 + ], + [ + 453776, + 25552, + 666 + ], + [ + 454214, + 25199, + 598 + ], + [ + 454315, + 25460, + 572 + ], + [ + 450930, + 24112, + 3932 + ], + [ + 445177, + 22501, + 1062 + ], + [ + 454691, + 25162, + 492 + ], + [ + 446421, + 24084, + 7373 + ], + [ + 446491, + 24045, + 2362 + ], + [ + 446580, + 24150, + 8369 + ], + [ + 446726, + 24356, + 6976 + ], + [ + 446945, + 24957, + 8958 + ], + [ + 446730, + 24923, + 8894 + ], + [ + 447377, + 25161, + 8555 + ], + [ + 447485, + 25215, + 1133 + ], + [ + 447463, + 25355, + 3627 + ], + [ + 447713, + 24666, + 8424 + ], + [ + 447881, + 24825, + 1029 + ], + [ + 447754, + 25016, + 8353 + ], + [ + 448132, + 24850, + 1057 + ], + [ + 448070, + 24866, + 3624 + ], + [ + 448088, + 24606, + 4347 + ], + [ + 448844, + 25496, + 1107 + ], + [ + 448645, + 25261, + 4604 + ], + [ + 448687, + 25224, + 3911 + ], + [ + 447918, + 25094, + 4486 + ], + [ + 447632, + 25271, + 1080 + ], + [ + 447845, + 24589, + 1063 + ], + [ + 447945, + 24392, + 7120 + ], + [ + 448864, + 25528, + 4610 + ], + [ + 448776, + 25579, + 4871 + ], + [ + 449042, + 26179, + 1179 + ], + [ + 448903, + 26026, + 1140 + ], + [ + 449233, + 25980, + 1164 + ], + [ + 448446, + 24227, + 4396 + ], + [ + 448657, + 24272, + 883 + ], + [ + 448645, + 24416, + 917 + ], + [ + 449533, + 26463, + 1272 + ], + [ + 449300, + 26407, + 1312 + ], + [ + 450751, + 24151, + 419 + ], + [ + 451053, + 24252, + 442 + ], + [ + 454690, + 25163, + 492 + ], + [ + 454691, + 25163, + 472 + ], + [ + 447755, + 24376, + 4468 + ], + [ + 448448, + 24988, + 3843 + ], + [ + 448337, + 24798, + 3605 + ], + [ + 448577, + 24744, + 3601 + ], + [ + 450370, + 24731, + 931 + ], + [ + 449915, + 24143, + 575 + ], + [ + 450221, + 24031, + 446 + ], + [ + 449533, + 25395, + 1036 + ], + [ + 449207, + 25293, + 1018 + ], + [ + 449387, + 25254, + 3602 + ], + [ + 449768, + 26509, + 1242 + ], + [ + 445942, + 23482, + 4111 + ], + [ + 445875, + 23236, + 1013 + ], + [ + 446088, + 23456, + 5299 + ], + [ + 449258, + 25657, + 1077 + ], + [ + 440168, + 22162, + 2642 + ], + [ + 440713, + 21774, + 1542 + ], + [ + 445900, + 22896, + 825 + ], + [ + 446058, + 23109, + 2394 + ], + [ + 444815, + 22757, + 999 + ], + [ + 441065, + 22306, + 1412 + ], + [ + 440374, + 22371, + 1632 + ], + [ + 439841, + 22174, + 2802 + ], + [ + 440100, + 22069, + 2802 + ], + [ + 439804, + 22081, + 2892 + ], + [ + 439711, + 22119, + 2892 + ], + [ + 431443, + 25729, + 1795 + ], + [ + 431514, + 25985, + 14508 + ], + [ + 431321, + 25807, + 8651 + ], + [ + 436940, + 23738, + 1589 + ], + [ + 436960, + 23473, + 2332 + ], + [ + 437711, + 23131, + 2541 + ], + [ + 437766, + 22959, + 2763 + ], + [ + 437815, + 23292, + 2850 + ], + [ + 436109, + 22869, + 2122 + ], + [ + 435845, + 22911, + 2212 + ], + [ + 435845, + 22910, + 1762 + ], + [ + 433744, + 24150, + 1834 + ], + [ + 434272, + 23941, + 2142 + ], + [ + 433786, + 24485, + 1799 + ], + [ + 430018, + 26356, + 14289 + ], + [ + 430282, + 24665, + 1767 + ], + [ + 430358, + 24544, + 1730 + ], + [ + 430555, + 24716, + 1939 + ], + [ + 431757, + 25608, + 1891 + ], + [ + 431763, + 25916, + 1815 + ], + [ + 431645, + 25677, + 3824 + ], + [ + 430070, + 26701, + 2012 + ], + [ + 430675, + 25704, + 2156 + ], + [ + 430431, + 25706, + 1936 + ], + [ + 432695, + 23871, + 1850 + ], + [ + 433007, + 24050, + 2023 + ], + [ + 432941, + 24162, + 1779 + ], + [ + 431165, + 25290, + 7407 + ], + [ + 430824, + 25435, + 2246 + ], + [ + 431105, + 25240, + 2181 + ], + [ + 430179, + 26056, + 3373 + ], + [ + 430260, + 26060, + 2273 + ], + [ + 431342, + 25517, + 2785 + ], + [ + 431334, + 25781, + 2180 + ], + [ + 430820, + 25575, + 2012 + ], + [ + 431102, + 25933, + 1787 + ], + [ + 431264, + 25988, + 7517 + ], + [ + 430304, + 25979, + 5291 + ], + [ + 429328, + 25756, + 9602 + ], + [ + 429506, + 25646, + 10636 + ], + [ + 429433, + 25814, + 9278 + ], + [ + 429687, + 25883, + 8741 + ], + [ + 429590, + 25920, + 8923 + ], + [ + 430540, + 25178, + 1879 + ], + [ + 430412, + 25142, + 2702 + ], + [ + 430360, + 24893, + 14124 + ], + [ + 430560, + 26662, + 2022 + ], + [ + 429964, + 25222, + 13570 + ], + [ + 429867, + 24943, + 1795 + ], + [ + 432618, + 24138, + 2884 + ], + [ + 432718, + 24207, + 2083 + ], + [ + 432561, + 24189, + 13835 + ], + [ + 430576, + 24298, + 1881 + ], + [ + 430875, + 24705, + 1924 + ], + [ + 430007, + 26101, + 9559 + ], + [ + 430127, + 25805, + 7962 + ], + [ + 430187, + 25773, + 3586 + ], + [ + 430291, + 25829, + 1947 + ], + [ + 433511, + 23602, + 2251 + ], + [ + 433337, + 24254, + 1732 + ], + [ + 432598, + 24478, + 3564 + ], + [ + 430122, + 25483, + 10945 + ], + [ + 429913, + 25333, + 8117 + ], + [ + 429255, + 24839, + 1805 + ], + [ + 429565, + 25108, + 1861 + ], + [ + 429233, + 25236, + 1889 + ], + [ + 432114, + 24104, + 4174 + ], + [ + 432084, + 24150, + 2126 + ], + [ + 432029, + 24038, + 3043 + ], + [ + 431224, + 24339, + 10008 + ], + [ + 431113, + 24339, + 1732 + ], + [ + 431027, + 24285, + 7327 + ], + [ + 430185, + 25770, + 6993 + ], + [ + 430033, + 25737, + 9382 + ], + [ + 430855, + 25138, + 1957 + ], + [ + 430723, + 24998, + 1857 + ], + [ + 431012, + 25011, + 11395 + ], + [ + 431182, + 26459, + 2012 + ], + [ + 431032, + 26525, + 2012 + ], + [ + 430232, + 25258, + 11652 + ], + [ + 430313, + 25370, + 1894 + ], + [ + 430692, + 25250, + 2194 + ], + [ + 430632, + 25157, + 11423 + ], + [ + 430544, + 25614, + 6512 + ], + [ + 430420, + 25651, + 6162 + ], + [ + 430784, + 25570, + 7010 + ], + [ + 430714, + 25683, + 13272 + ], + [ + 431239, + 25086, + 2121 + ], + [ + 431793, + 24938, + 1984 + ], + [ + 431746, + 25050, + 2778 + ], + [ + 431477, + 24752, + 1893 + ], + [ + 431162, + 24531, + 1757 + ], + [ + 429542, + 25472, + 1980 + ], + [ + 429841, + 25354, + 1925 + ], + [ + 429679, + 25640, + 1951 + ], + [ + 427716, + 25371, + 1884 + ], + [ + 428033, + 25602, + 10665 + ], + [ + 427458, + 25291, + 9468 + ], + [ + 430362, + 25279, + 7383 + ], + [ + 430288, + 25286, + 11198 + ], + [ + 430267, + 25579, + 5852 + ], + [ + 430443, + 25463, + 2549 + ], + [ + 432919, + 24556, + 1876 + ], + [ + 432867, + 24696, + 3271 + ], + [ + 431132, + 24870, + 2017 + ], + [ + 431353, + 26101, + 1859 + ], + [ + 430892, + 24203, + 1984 + ], + [ + 432314, + 24277, + 3073 + ], + [ + 432402, + 24058, + 1830 + ], + [ + 430102, + 24725, + 1757 + ], + [ + 429911, + 25229, + 9931 + ], + [ + 429899, + 24816, + 1739 + ], + [ + 430513, + 25522, + 2064 + ], + [ + 430544, + 25299, + 9913 + ], + [ + 428366, + 25037, + 2364 + ], + [ + 428195, + 25167, + 2664 + ], + [ + 428135, + 24945, + 2008 + ], + [ + 428216, + 25743, + 1887 + ], + [ + 427809, + 24991, + 8621 + ], + [ + 427894, + 25147, + 1962 + ], + [ + 427507, + 25124, + 1844 + ], + [ + 428555, + 25575, + 1917 + ], + [ + 428426, + 25159, + 11043 + ], + [ + 428636, + 25472, + 2179 + ], + [ + 428882, + 24758, + 8117 + ], + [ + 428925, + 24955, + 1902 + ], + [ + 428624, + 25053, + 9009 + ], + [ + 428119, + 25414, + 1943 + ], + [ + 428173, + 25385, + 1952 + ], + [ + 428284, + 25175, + 8982 + ], + [ + 429887, + 26315, + 14073 + ], + [ + 429797, + 26145, + 2101 + ], + [ + 429928, + 26161, + 13524 + ], + [ + 429748, + 26026, + 2229 + ], + [ + 429896, + 25798, + 8090 + ], + [ + 429373, + 25454, + 1923 + ], + [ + 428666, + 25121, + 1947 + ], + [ + 429470, + 25314, + 10732 + ], + [ + 428910, + 25747, + 1948 + ], + [ + 429070, + 25859, + 8729 + ], + [ + 428883, + 25825, + 1988 + ], + [ + 447527, + 24382, + 988 + ], + [ + 447539, + 24576, + 1040 + ], + [ + 449084, + 25788, + 3825 + ], + [ + 430124, + 24467, + 10392 + ], + [ + 430036, + 25633, + 6022 + ], + [ + 429968, + 25717, + 3190 + ], + [ + 430132, + 25635, + 4531 + ], + [ + 430234, + 26699, + 2012 + ], + [ + 429210, + 25659, + 1969 + ], + [ + 446606, + 23299, + 4798 + ], + [ + 446548, + 23239, + 6513 + ], + [ + 446646, + 23233, + 4181 + ], + [ + 447405, + 24819, + 8323 + ], + [ + 447395, + 24988, + 3332 + ], + [ + 446860, + 24058, + 7281 + ], + [ + 446987, + 23954, + 5202 + ], + [ + 447124, + 24160, + 6387 + ], + [ + 446382, + 23008, + 665 + ], + [ + 446146, + 23066, + 965 + ], + [ + 445933, + 22717, + 405 + ], + [ + 447220, + 23884, + 6479 + ], + [ + 447161, + 23934, + 7321 + ], + [ + 447022, + 23760, + 4766 + ], + [ + 448046, + 24164, + 2946 + ], + [ + 448048, + 24073, + 861 + ], + [ + 448174, + 24048, + 860 + ], + [ + 430344, + 25774, + 6221 + ], + [ + 446579, + 23602, + 5055 + ], + [ + 446596, + 23521, + 963 + ], + [ + 446710, + 23546, + 2885 + ], + [ + 446506, + 23962, + 6046 + ], + [ + 446373, + 23987, + 8247 + ], + [ + 429424, + 25820, + 1962 + ], + [ + 429171, + 25604, + 1935 + ], + [ + 428924, + 25519, + 2584 + ], + [ + 429095, + 25389, + 9977 + ], + [ + 429547, + 25945, + 6646 + ], + [ + 449063, + 25723, + 1124 + ], + [ + 447485, + 24201, + 971 + ], + [ + 432758, + 25315, + 1852 + ], + [ + 431422, + 26178, + 1826 + ], + [ + 429616, + 24698, + 9930 + ], + [ + 429587, + 24706, + 1774 + ], + [ + 429519, + 24571, + 1681 + ], + [ + 429494, + 24760, + 8075 + ], + [ + 447580, + 23987, + 5930 + ], + [ + 447371, + 24101, + 3799 + ], + [ + 446551, + 24379, + 8709 + ], + [ + 447393, + 25129, + 8409 + ], + [ + 447132, + 25239, + 4522 + ], + [ + 446794, + 25053, + 8322 + ], + [ + 446452, + 24717, + 7482 + ], + [ + 447010, + 25027, + 4120 + ], + [ + 447192, + 24856, + 6317 + ], + [ + 430281, + 24342, + 7987 + ], + [ + 429918, + 25700, + 3976 + ], + [ + 429821, + 25752, + 1983 + ], + [ + 430228, + 25704, + 6390 + ], + [ + 429977, + 25543, + 6981 + ], + [ + 430019, + 25781, + 2355 + ], + [ + 429964, + 25820, + 5642 + ], + [ + 430081, + 25613, + 5329 + ], + [ + 430057, + 25555, + 1911 + ], + [ + 447025, + 23928, + 1026 + ], + [ + 447866, + 24220, + 948 + ], + [ + 447952, + 24135, + 3292 + ], + [ + 450033, + 25468, + 980 + ], + [ + 451211, + 25794, + 981 + ], + [ + 451201, + 26587, + 1102 + ], + [ + 450937, + 25767, + 1011 + ], + [ + 450722, + 26599, + 1182 + ], + [ + 447570, + 24185, + 7285 + ], + [ + 431833, + 24047, + 1936 + ], + [ + 431617, + 24323, + 2295 + ], + [ + 431516, + 24196, + 7704 + ], + [ + 431244, + 24816, + 2693 + ], + [ + 431453, + 25094, + 2043 + ], + [ + 431491, + 24220, + 2022 + ], + [ + 431627, + 24605, + 1913 + ], + [ + 428903, + 25425, + 1934 + ], + [ + 429264, + 24737, + 1711 + ], + [ + 429182, + 24589, + 8002 + ], + [ + 428991, + 25986, + 7376 + ], + [ + 447324, + 24752, + 8130 + ], + [ + 447229, + 24094, + 1037 + ], + [ + 447650, + 23646, + 4965 + ], + [ + 447913, + 23468, + 658 + ], + [ + 447801, + 23642, + 6459 + ], + [ + 447545, + 23955, + 949 + ], + [ + 447273, + 24006, + 5513 + ], + [ + 446275, + 24179, + 7597 + ], + [ + 446259, + 24052, + 6262 + ], + [ + 446883, + 23885, + 3444 + ], + [ + 446924, + 23793, + 2813 + ], + [ + 446711, + 24020, + 6252 + ], + [ + 448155, + 24424, + 955 + ], + [ + 447970, + 23900, + 3974 + ], + [ + 448100, + 23855, + 5892 + ], + [ + 447931, + 23741, + 5154 + ], + [ + 451678, + 25485, + 991 + ], + [ + 451227, + 25329, + 918 + ], + [ + 451702, + 25091, + 829 + ], + [ + 451677, + 26536, + 1052 + ], + [ + 432018, + 24645, + 2842 + ], + [ + 432335, + 24510, + 3097 + ], + [ + 436057, + 23432, + 1752 + ], + [ + 435325, + 23045, + 2200 + ], + [ + 435729, + 23222, + 1923 + ], + [ + 431936, + 24074, + 1719 + ], + [ + 432161, + 23943, + 1693 + ], + [ + 432382, + 24508, + 1855 + ], + [ + 447716, + 23933, + 3665 + ], + [ + 447768, + 23851, + 5598 + ], + [ + 446528, + 23533, + 5956 + ], + [ + 446770, + 23481, + 5624 + ], + [ + 446824, + 23665, + 4592 + ], + [ + 447251, + 23744, + 897 + ], + [ + 447300, + 23695, + 5254 + ], + [ + 447444, + 23764, + 2761 + ], + [ + 446003, + 23765, + 2901 + ], + [ + 446059, + 23798, + 5546 + ], + [ + 445854, + 23969, + 5292 + ], + [ + 446295, + 23845, + 5786 + ], + [ + 446375, + 23653, + 4571 + ], + [ + 446604, + 23758, + 8216 + ], + [ + 429743, + 26671, + 2002 + ], + [ + 447670, + 25437, + 8445 + ], + [ + 447553, + 25637, + 4962 + ], + [ + 447937, + 25481, + 5004 + ], + [ + 447143, + 23496, + 2876 + ], + [ + 446492, + 23360, + 2799 + ], + [ + 446652, + 23692, + 7134 + ], + [ + 446745, + 23806, + 5838 + ], + [ + 446526, + 23161, + 2360 + ], + [ + 446401, + 23307, + 4376 + ], + [ + 447277, + 23431, + 659 + ], + [ + 447324, + 23504, + 5049 + ], + [ + 447599, + 23318, + 464 + ], + [ + 447567, + 23608, + 806 + ], + [ + 446306, + 23292, + 1748 + ], + [ + 446347, + 23230, + 1084 + ], + [ + 446188, + 23604, + 3500 + ], + [ + 446182, + 23510, + 7501 + ], + [ + 446239, + 23656, + 2625 + ], + [ + 446443, + 23627, + 7326 + ], + [ + 446312, + 23418, + 5784 + ], + [ + 446168, + 23752, + 6866 + ], + [ + 446043, + 23611, + 2328 + ], + [ + 446117, + 23232, + 4953 + ], + [ + 445805, + 23680, + 7992 + ], + [ + 445857, + 23697, + 1019 + ], + [ + 446124, + 23421, + 1091 + ], + [ + 445602, + 23562, + 4192 + ], + [ + 445635, + 22722, + 670 + ], + [ + 446622, + 23194, + 738 + ], + [ + 446839, + 23387, + 817 + ], + [ + 446948, + 23455, + 2621 + ], + [ + 448421, + 23796, + 752 + ], + [ + 448301, + 23652, + 5187 + ], + [ + 448447, + 23476, + 530 + ], + [ + 448199, + 23640, + 727 + ], + [ + 448208, + 23774, + 3650 + ], + [ + 448239, + 23904, + 3745 + ], + [ + 448530, + 24112, + 3039 + ], + [ + 448554, + 24138, + 4363 + ], + [ + 447611, + 23767, + 5543 + ], + [ + 447744, + 23696, + 3343 + ], + [ + 447887, + 23808, + 5863 + ], + [ + 428403, + 24893, + 1881 + ], + [ + 429919, + 26041, + 8543 + ], + [ + 445860, + 23660, + 5356 + ], + [ + 445661, + 23557, + 4385 + ], + [ + 445584, + 23476, + 1015 + ], + [ + 430319, + 25666, + 4984 + ], + [ + 445599, + 22922, + 1121 + ], + [ + 445383, + 23135, + 1122 + ], + [ + 445161, + 22587, + 1062 + ], + [ + 447050, + 23534, + 868 + ], + [ + 448605, + 26045, + 4765 + ], + [ + 448841, + 26268, + 3662 + ], + [ + 448395, + 26092, + 4332 + ], + [ + 446939, + 23327, + 5305 + ], + [ + 447044, + 23374, + 4634 + ], + [ + 446197, + 23749, + 7491 + ], + [ + 446189, + 24348, + 7244 + ], + [ + 446138, + 24355, + 6092 + ], + [ + 446133, + 24141, + 8312 + ], + [ + 448672, + 25681, + 3222 + ], + [ + 448857, + 25684, + 1112 + ], + [ + 448342, + 25488, + 5314 + ], + [ + 447888, + 25338, + 4835 + ], + [ + 448840, + 25857, + 4812 + ], + [ + 448690, + 23696, + 635 + ], + [ + 448667, + 24035, + 793 + ], + [ + 447161, + 25360, + 7862 + ], + [ + 446831, + 25072, + 7118 + ], + [ + 449107, + 25397, + 3696 + ], + [ + 448625, + 25646, + 4676 + ], + [ + 448183, + 24450, + 4315 + ], + [ + 448315, + 24239, + 4315 + ], + [ + 451174, + 24967, + 832 + ], + [ + 451348, + 24591, + 658 + ], + [ + 448179, + 23611, + 4962 + ], + [ + 453061, + 26157, + 812 + ], + [ + 453378, + 24841, + 217 + ], + [ + 453497, + 25959, + 722 + ], + [ + 453916, + 25726, + 652 + ], + [ + 450510, + 25770, + 1009 + ], + [ + 450140, + 24015, + 5121 + ], + [ + 449369, + 23680, + 375 + ], + [ + 447959, + 23340, + 4842 + ], + [ + 447303, + 23151, + 402 + ], + [ + 449622, + 23844, + 542 + ], + [ + 446739, + 23272, + 2568 + ], + [ + 447890, + 23809, + 817 + ], + [ + 448957, + 23597, + 438 + ], + [ + 449144, + 24085, + 838 + ], + [ + 449295, + 24731, + 949 + ], + [ + 447078, + 23284, + 565 + ], + [ + 449400, + 23796, + 562 + ], + [ + 449272, + 25170, + 1036 + ], + [ + 449137, + 25099, + 3375 + ], + [ + 449155, + 24921, + 973 + ], + [ + 448375, + 24609, + 1003 + ], + [ + 448390, + 24716, + 1028 + ], + [ + 449109, + 25547, + 4882 + ], + [ + 449552, + 24999, + 968 + ], + [ + 449041, + 25711, + 3639 + ], + [ + 450232, + 23962, + 384 + ], + [ + 451300, + 24302, + 435 + ], + [ + 451736, + 25620, + 886 + ], + [ + 451957, + 25208, + 706 + ], + [ + 452610, + 26320, + 922 + ], + [ + 446872, + 25062, + 6415 + ], + [ + 446855, + 25075, + 7483 + ], + [ + 448275, + 25738, + 4915 + ], + [ + 448174, + 25799, + 3594 + ], + [ + 431702, + 25246, + 1789 + ], + [ + 448883, + 25089, + 4569 + ], + [ + 448865, + 25035, + 1051 + ], + [ + 449081, + 25313, + 1075 + ], + [ + 448623, + 24825, + 1020 + ], + [ + 448885, + 24663, + 952 + ], + [ + 448430, + 25197, + 4170 + ], + [ + 432432, + 23944, + 2203 + ], + [ + 433340, + 23546, + 1946 + ], + [ + 448281, + 25980, + 6022 + ], + [ + 448836, + 26215, + 4557 + ], + [ + 445787, + 23377, + 2396 + ], + [ + 448906, + 24263, + 859 + ], + [ + 448596, + 24497, + 4307 + ], + [ + 448683, + 24383, + 4542 + ], + [ + 448706, + 24641, + 909 + ], + [ + 448409, + 25093, + 4431 + ], + [ + 449416, + 24989, + 3281 + ], + [ + 448725, + 24337, + 3860 + ], + [ + 450658, + 25681, + 998 + ], + [ + 450554, + 25568, + 1990 + ], + [ + 450678, + 25240, + 952 + ], + [ + 451113, + 25753, + 3527 + ], + [ + 450358, + 25704, + 1185 + ], + [ + 445907, + 23715, + 4542 + ], + [ + 450971, + 24986, + 1093 + ], + [ + 446817, + 23780, + 939 + ], + [ + 446264, + 23315, + 2439 + ], + [ + 448397, + 24178, + 900 + ], + [ + 448968, + 25727, + 2732 + ], + [ + 446399, + 24640, + 8478 + ], + [ + 448167, + 24881, + 4312 + ], + [ + 446039, + 24155, + 5668 + ], + [ + 445946, + 24088, + 7252 + ], + [ + 447996, + 24081, + 3845 + ], + [ + 447965, + 25882, + 4602 + ], + [ + 448130, + 25822, + 4335 + ], + [ + 451746, + 25085, + 1981 + ], + [ + 452148, + 26447, + 982 + ], + [ + 433089, + 24729, + 1917 + ], + [ + 432532, + 24626, + 2352 + ], + [ + 432336, + 24765, + 2631 + ], + [ + 433033, + 24369, + 1799 + ], + [ + 432783, + 24834, + 1852 + ], + [ + 451273, + 24582, + 706 + ], + [ + 450698, + 24839, + 868 + ], + [ + 448394, + 25560, + 4374 + ], + [ + 433387, + 24599, + 1799 + ], + [ + 432100, + 24903, + 2501 + ], + [ + 432315, + 25025, + 1863 + ], + [ + 439647, + 22179, + 1919 + ], + [ + 446963, + 25016, + 4899 + ], + [ + 450243, + 26573, + 1202 + ], + [ + 436086, + 23747, + 1595 + ], + [ + 435746, + 23526, + 1611 + ], + [ + 437732, + 22636, + 2869 + ], + [ + 447058, + 24914, + 8528 + ], + [ + 436554, + 22950, + 2597 + ], + [ + 436535, + 23086, + 2541 + ], + [ + 437374, + 23361, + 2445 + ], + [ + 436566, + 22748, + 2284 + ], + [ + 437431, + 22582, + 2265 + ], + [ + 436898, + 22830, + 2640 + ], + [ + 438142, + 22342, + 3462 + ], + [ + 438142, + 22343, + 2622 + ], + [ + 436097, + 23431, + 1956 + ], + [ + 436302, + 23596, + 2061 + ], + [ + 437386, + 23923, + 1578 + ], + [ + 434872, + 24403, + 1722 + ], + [ + 438187, + 22472, + 2976 + ], + [ + 432669, + 23840, + 2058 + ], + [ + 433706, + 23839, + 2292 + ], + [ + 434100, + 23403, + 2074 + ], + [ + 433503, + 24224, + 1961 + ], + [ + 437820, + 23900, + 1722 + ], + [ + 435676, + 23337, + 2073 + ], + [ + 435786, + 23879, + 1517 + ], + [ + 435357, + 23636, + 1549 + ], + [ + 435140, + 23960, + 1822 + ], + [ + 434961, + 23778, + 1733 + ], + [ + 433107, + 24246, + 1943 + ], + [ + 434929, + 23470, + 1843 + ], + [ + 434541, + 23595, + 1793 + ], + [ + 434636, + 23296, + 2083 + ], + [ + 434995, + 24120, + 1585 + ], + [ + 434616, + 24259, + 1635 + ], + [ + 433729, + 23453, + 2177 + ], + [ + 450835, + 25039, + 913 + ], + [ + 436575, + 23529, + 1836 + ], + [ + 437410, + 22980, + 2356 + ], + [ + 436913, + 23122, + 2323 + ], + [ + 437054, + 22975, + 2724 + ], + [ + 436310, + 23630, + 1839 + ], + [ + 437350, + 23048, + 2674 + ], + [ + 436290, + 23344, + 2074 + ], + [ + 439385, + 22396, + 2423 + ], + [ + 435150, + 23343, + 2046 + ], + [ + 434897, + 23150, + 1992 + ], + [ + 434293, + 23521, + 2069 + ], + [ + 434536, + 23300, + 2272 + ], + [ + 439272, + 23135, + 1872 + ], + [ + 433699, + 24432, + 2017 + ], + [ + 435337, + 23350, + 1796 + ], + [ + 435410, + 23992, + 1655 + ], + [ + 440265, + 22590, + 1416 + ], + [ + 450594, + 26838, + 1327 + ], + [ + 450297, + 27002, + 1385 + ], + [ + 461878, + 37046, + 1712 + ], + [ + 465239, + 35098, + 1102 + ], + [ + 465382, + 35631, + 1102 + ], + [ + 465511, + 36168, + 1102 + ], + [ + 465627, + 36707, + 1102 + ], + [ + 465894, + 38340, + 1102 + ], + [ + 462103, + 39179, + 1712 + ], + [ + 465819, + 37793, + 1102 + ], + [ + 466039, + 39988, + 1102 + ], + [ + 466060, + 40539, + 1102 + ], + [ + 461702, + 40794, + 1712 + ], + [ + 466067, + 41091, + 1102 + ], + [ + 466065, + 41413, + 1102 + ], + [ + 465945, + 42550, + 1102 + ], + [ + 465796, + 43683, + 1102 + ], + [ + 460194, + 42014, + 1712 + ], + [ + 465618, + 44813, + 1102 + ], + [ + 465412, + 45937, + 1102 + ], + [ + 465178, + 47056, + 1102 + ], + [ + 458792, + 42521, + 1712 + ], + [ + 464915, + 48169, + 1102 + ], + [ + 456779, + 49051, + 1952 + ], + [ + 464625, + 49275, + 1102 + ], + [ + 464307, + 50373, + 1102 + ], + [ + 463961, + 51463, + 1102 + ], + [ + 457150, + 51032, + 1522 + ], + [ + 463588, + 52543, + 1102 + ], + [ + 463188, + 53614, + 1102 + ], + [ + 457356, + 53049, + 1522 + ], + [ + 462925, + 54267, + 1952 + ], + [ + 450583, + 33661, + 1994 + ], + [ + 449488, + 35894, + 2112 + ], + [ + 448834, + 35155, + 2122 + ], + [ + 463834, + 31497, + 1102 + ], + [ + 464040, + 31890, + 1102 + ], + [ + 460695, + 34639, + 1712 + ], + [ + 456115, + 47149, + 1952 + ], + [ + 448856, + 34176, + 2186 + ], + [ + 448868, + 34272, + 2068 + ], + [ + 447940, + 34309, + 2122 + ], + [ + 450776, + 27561, + 1478 + ], + [ + 450814, + 27889, + 1414 + ], + [ + 450425, + 27810, + 3564 + ], + [ + 450535, + 27439, + 1923 + ], + [ + 450348, + 27603, + 1511 + ], + [ + 455300, + 25392, + 309 + ], + [ + 454691, + 25162, + 472 + ], + [ + 456956, + 25796, + 372 + ], + [ + 461458, + 35643, + 1712 + ], + [ + 464579, + 33107, + 1102 + ], + [ + 466004, + 39438, + 1102 + ], + [ + 465956, + 38888, + 1102 + ], + [ + 465730, + 37249, + 1102 + ], + [ + 465083, + 34569, + 1102 + ], + [ + 464914, + 34044, + 1102 + ], + [ + 464732, + 33523, + 1102 + ], + [ + 464413, + 32695, + 1102 + ], + [ + 447887, + 26089, + 4358 + ], + [ + 448002, + 26108, + 4789 + ], + [ + 447670, + 26221, + 4960 + ], + [ + 464233, + 32290, + 1102 + ], + [ + 463615, + 31112, + 1102 + ], + [ + 463384, + 30733, + 1102 + ], + [ + 462886, + 29999, + 1102 + ], + [ + 463141, + 30362, + 1102 + ], + [ + 459524, + 34165, + 1712 + ], + [ + 462619, + 29645, + 1102 + ], + [ + 462340, + 29300, + 1102 + ], + [ + 462050, + 28964, + 1102 + ], + [ + 461750, + 28638, + 1102 + ], + [ + 453097, + 35621, + 1848 + ], + [ + 455909, + 35805, + 1672 + ], + [ + 455741, + 36444, + 1722 + ], + [ + 461164, + 28073, + 1102 + ], + [ + 460881, + 27833, + 1102 + ], + [ + 460589, + 27603, + 1102 + ], + [ + 455633, + 33111, + 1495 + ], + [ + 460290, + 27383, + 1102 + ], + [ + 455667, + 27768, + 868 + ], + [ + 454365, + 29176, + 1259 + ], + [ + 459984, + 27174, + 1102 + ], + [ + 459670, + 26976, + 1102 + ], + [ + 459350, + 26788, + 1102 + ], + [ + 459024, + 26611, + 1102 + ], + [ + 457312, + 25902, + 1102 + ], + [ + 458691, + 26446, + 1102 + ], + [ + 458354, + 26292, + 1102 + ], + [ + 458011, + 26150, + 1102 + ], + [ + 450565, + 27122, + 1635 + ], + [ + 450831, + 27159, + 2031 + ], + [ + 446550, + 25978, + 8167 + ], + [ + 446983, + 25931, + 9112 + ], + [ + 446810, + 26369, + 4468 + ], + [ + 455018, + 25460, + 570 + ], + [ + 454691, + 25163, + 492 + ], + [ + 447319, + 28268, + 1607 + ], + [ + 447647, + 27811, + 1724 + ], + [ + 448327, + 28009, + 1495 + ], + [ + 433693, + 27875, + 2032 + ], + [ + 433474, + 25304, + 1727 + ], + [ + 434687, + 28062, + 2022 + ], + [ + 455657, + 25623, + 531 + ], + [ + 451842, + 27067, + 1114 + ], + [ + 451747, + 27394, + 1167 + ], + [ + 451516, + 27406, + 1204 + ], + [ + 455532, + 25871, + 626 + ], + [ + 447039, + 25403, + 8522 + ], + [ + 447001, + 25465, + 9136 + ], + [ + 446885, + 25396, + 7303 + ], + [ + 444765, + 25502, + 4458 + ], + [ + 444591, + 25364, + 3384 + ], + [ + 444648, + 25253, + 1422 + ], + [ + 452292, + 27180, + 1059 + ], + [ + 445044, + 28664, + 1916 + ], + [ + 444654, + 26805, + 1634 + ], + [ + 445402, + 26952, + 1573 + ], + [ + 451623, + 26752, + 1094 + ], + [ + 451868, + 27023, + 3541 + ], + [ + 452309, + 26765, + 1030 + ], + [ + 438799, + 23960, + 2154 + ], + [ + 437714, + 23912, + 1976 + ], + [ + 437836, + 24138, + 1588 + ], + [ + 439988, + 22725, + 1537 + ], + [ + 440029, + 23066, + 1482 + ], + [ + 451811, + 26658, + 3405 + ], + [ + 448727, + 27148, + 1337 + ], + [ + 448682, + 26823, + 1288 + ], + [ + 448937, + 26918, + 4682 + ], + [ + 449053, + 27088, + 1312 + ], + [ + 449445, + 26920, + 1516 + ], + [ + 449858, + 26950, + 1263 + ], + [ + 445982, + 26935, + 4531 + ], + [ + 445907, + 27101, + 3187 + ], + [ + 445841, + 26823, + 7955 + ], + [ + 442355, + 30434, + 2092 + ], + [ + 441432, + 30019, + 2092 + ], + [ + 441754, + 28292, + 1947 + ], + [ + 447636, + 25895, + 5087 + ], + [ + 445590, + 25167, + 8891 + ], + [ + 445355, + 25243, + 8386 + ], + [ + 445277, + 25017, + 8781 + ], + [ + 445540, + 25269, + 6577 + ], + [ + 445564, + 25562, + 6379 + ], + [ + 445328, + 25536, + 8669 + ], + [ + 445931, + 24682, + 7926 + ], + [ + 445889, + 24714, + 7790 + ], + [ + 445781, + 24582, + 6090 + ], + [ + 444772, + 24879, + 4749 + ], + [ + 444872, + 24986, + 8004 + ], + [ + 444913, + 25717, + 6014 + ], + [ + 444756, + 26118, + 4209 + ], + [ + 444627, + 25615, + 1545 + ], + [ + 444688, + 24408, + 1295 + ], + [ + 444846, + 24634, + 3683 + ], + [ + 444525, + 24691, + 3679 + ], + [ + 445282, + 25309, + 4858 + ], + [ + 444127, + 25163, + 1449 + ], + [ + 439759, + 23183, + 1665 + ], + [ + 439205, + 24083, + 1584 + ], + [ + 441915, + 28062, + 2185 + ], + [ + 442105, + 28038, + 4188 + ], + [ + 436721, + 26007, + 1900 + ], + [ + 435039, + 24445, + 1611 + ], + [ + 439164, + 23454, + 2165 + ], + [ + 431901, + 26675, + 1942 + ], + [ + 431431, + 26791, + 8364 + ], + [ + 431398, + 26546, + 1966 + ], + [ + 438781, + 23659, + 2435 + ], + [ + 432861, + 27326, + 2010 + ], + [ + 432720, + 27698, + 2042 + ], + [ + 432643, + 27432, + 2028 + ], + [ + 438336, + 24342, + 1628 + ], + [ + 438123, + 28888, + 2072 + ], + [ + 441665, + 27627, + 1913 + ], + [ + 432372, + 27234, + 2020 + ], + [ + 431947, + 27003, + 1991 + ], + [ + 432592, + 27074, + 1977 + ], + [ + 428313, + 26439, + 1967 + ], + [ + 427756, + 26940, + 1962 + ], + [ + 427455, + 26830, + 1952 + ], + [ + 438343, + 24075, + 2209 + ], + [ + 425403, + 25652, + 1932 + ], + [ + 425836, + 26335, + 1912 + ], + [ + 425040, + 26196, + 1902 + ], + [ + 437985, + 24283, + 1740 + ], + [ + 426660, + 25586, + 1831 + ], + [ + 426725, + 25372, + 10061 + ], + [ + 426951, + 25535, + 1804 + ], + [ + 430777, + 26911, + 2018 + ], + [ + 431190, + 26716, + 14481 + ], + [ + 431056, + 26744, + 1973 + ], + [ + 428589, + 26888, + 2005 + ], + [ + 429713, + 27380, + 1992 + ], + [ + 428723, + 27191, + 1982 + ], + [ + 431037, + 27142, + 2020 + ], + [ + 430994, + 26917, + 1973 + ], + [ + 427695, + 25799, + 1949 + ], + [ + 427489, + 25614, + 9315 + ], + [ + 426222, + 25934, + 1854 + ], + [ + 426594, + 26083, + 1877 + ], + [ + 430621, + 27196, + 2036 + ], + [ + 426816, + 26597, + 1932 + ], + [ + 423882, + 26035, + 1882 + ], + [ + 425008, + 25732, + 1902 + ], + [ + 456002, + 37710, + 1782 + ], + [ + 451723, + 39243, + 2082 + ], + [ + 461439, + 28322, + 1102 + ], + [ + 453053, + 35299, + 1822 + ], + [ + 457518, + 34419, + 1632 + ], + [ + 455197, + 45364, + 1982 + ], + [ + 456562, + 39201, + 1802 + ], + [ + 454244, + 43583, + 2002 + ], + [ + 458075, + 42049, + 1712 + ], + [ + 457516, + 41161, + 1802 + ], + [ + 452861, + 35651, + 1863 + ], + [ + 450660, + 37531, + 2102 + ], + [ + 450148, + 36748, + 2112 + ], + [ + 431157, + 27053, + 10581 + ], + [ + 431377, + 26988, + 2012 + ], + [ + 431499, + 26323, + 9888 + ], + [ + 431793, + 26314, + 14426 + ], + [ + 431739, + 26345, + 1920 + ], + [ + 431998, + 26478, + 1968 + ], + [ + 432170, + 25807, + 1821 + ], + [ + 432018, + 26093, + 1889 + ], + [ + 428608, + 26467, + 1987 + ], + [ + 428526, + 26486, + 12030 + ], + [ + 432415, + 27559, + 2030 + ], + [ + 432345, + 27423, + 11883 + ], + [ + 432537, + 27392, + 2067 + ], + [ + 431992, + 27195, + 10733 + ], + [ + 431679, + 27163, + 11146 + ], + [ + 432613, + 27225, + 11039 + ], + [ + 432468, + 27271, + 8878 + ], + [ + 426171, + 25565, + 1820 + ], + [ + 426330, + 25733, + 1863 + ], + [ + 427002, + 25892, + 1852 + ], + [ + 427120, + 25838, + 9796 + ], + [ + 427193, + 26114, + 1924 + ], + [ + 430762, + 27230, + 9416 + ], + [ + 430653, + 27188, + 8020 + ], + [ + 431356, + 27426, + 2043 + ], + [ + 431228, + 27468, + 9196 + ], + [ + 431071, + 27251, + 8077 + ], + [ + 427430, + 25716, + 1848 + ], + [ + 427214, + 25684, + 1871 + ], + [ + 431601, + 27197, + 7730 + ], + [ + 431696, + 27198, + 2043 + ], + [ + 431544, + 27472, + 2012 + ], + [ + 431399, + 26428, + 1900 + ], + [ + 426912, + 25874, + 1889 + ], + [ + 426637, + 26033, + 1910 + ], + [ + 427061, + 25494, + 9608 + ], + [ + 431087, + 27503, + 2022 + ], + [ + 431656, + 27539, + 11269 + ], + [ + 431495, + 27104, + 2002 + ], + [ + 431995, + 27348, + 2029 + ], + [ + 431954, + 27381, + 2064 + ], + [ + 432289, + 27523, + 9841 + ], + [ + 431038, + 27244, + 2001 + ], + [ + 426528, + 25943, + 10711 + ], + [ + 426453, + 25556, + 10361 + ], + [ + 426545, + 25728, + 1852 + ], + [ + 426936, + 25440, + 1796 + ], + [ + 426749, + 25942, + 9316 + ], + [ + 426753, + 25677, + 9887 + ], + [ + 447233, + 27588, + 1647 + ], + [ + 447698, + 27463, + 1655 + ], + [ + 445071, + 26580, + 3041 + ], + [ + 445086, + 26082, + 4160 + ], + [ + 446543, + 25407, + 9104 + ], + [ + 446568, + 25719, + 8890 + ], + [ + 446489, + 25609, + 1347 + ], + [ + 447888, + 26827, + 3874 + ], + [ + 448014, + 26673, + 3908 + ], + [ + 448040, + 26983, + 3714 + ], + [ + 445601, + 24560, + 8715 + ], + [ + 445814, + 24509, + 1210 + ], + [ + 446552, + 25843, + 7743 + ], + [ + 446460, + 25117, + 9752 + ], + [ + 446283, + 25510, + 8765 + ], + [ + 447100, + 25468, + 3663 + ], + [ + 442241, + 28031, + 1944 + ], + [ + 442161, + 27883, + 1917 + ], + [ + 445380, + 23828, + 4195 + ], + [ + 445486, + 24087, + 2259 + ], + [ + 445271, + 24055, + 1135 + ], + [ + 444921, + 25077, + 2149 + ], + [ + 444963, + 24998, + 1500 + ], + [ + 444554, + 26100, + 1510 + ], + [ + 445010, + 24234, + 1202 + ], + [ + 445156, + 24448, + 2793 + ], + [ + 445131, + 24520, + 7628 + ], + [ + 445672, + 26272, + 6599 + ], + [ + 448314, + 26343, + 4361 + ], + [ + 448394, + 26725, + 4792 + ], + [ + 445218, + 24659, + 1611 + ], + [ + 444578, + 25585, + 2373 + ], + [ + 444988, + 24638, + 1310 + ], + [ + 444986, + 25413, + 4989 + ], + [ + 445192, + 25280, + 6370 + ], + [ + 444349, + 24959, + 1436 + ], + [ + 445290, + 23662, + 1071 + ], + [ + 445311, + 23198, + 1029 + ], + [ + 432241, + 27606, + 2062 + ], + [ + 446311, + 27776, + 1527 + ], + [ + 445856, + 27549, + 1640 + ], + [ + 445946, + 27429, + 3116 + ], + [ + 447077, + 25963, + 8971 + ], + [ + 447160, + 25826, + 3826 + ], + [ + 445319, + 24389, + 4856 + ], + [ + 445281, + 24525, + 5389 + ], + [ + 445249, + 24446, + 1237 + ], + [ + 445928, + 24415, + 8364 + ], + [ + 446005, + 24343, + 6107 + ], + [ + 446108, + 24526, + 8467 + ], + [ + 445510, + 24816, + 6094 + ], + [ + 446109, + 25287, + 7978 + ], + [ + 445575, + 24375, + 5295 + ], + [ + 446322, + 24593, + 8704 + ], + [ + 446291, + 24894, + 9020 + ], + [ + 445468, + 24889, + 6755 + ], + [ + 445231, + 25208, + 5770 + ], + [ + 445811, + 24280, + 5785 + ], + [ + 448799, + 26641, + 4975 + ], + [ + 449005, + 26733, + 1284 + ], + [ + 446272, + 26841, + 8074 + ], + [ + 446014, + 26694, + 5425 + ], + [ + 447258, + 26802, + 3437 + ], + [ + 447616, + 26820, + 3456 + ], + [ + 447532, + 27102, + 1391 + ], + [ + 447616, + 26405, + 3857 + ], + [ + 445259, + 25786, + 7117 + ], + [ + 445130, + 25775, + 7077 + ], + [ + 444836, + 25220, + 3460 + ], + [ + 447361, + 25595, + 8549 + ], + [ + 446785, + 25110, + 7863 + ], + [ + 448637, + 28261, + 1521 + ], + [ + 450623, + 29674, + 1603 + ], + [ + 446009, + 30429, + 2061 + ], + [ + 445638, + 27059, + 4691 + ], + [ + 445834, + 23971, + 5585 + ], + [ + 445016, + 25198, + 4627 + ], + [ + 444932, + 25265, + 5991 + ], + [ + 446608, + 26322, + 8363 + ], + [ + 446315, + 26681, + 3571 + ], + [ + 447314, + 26630, + 4538 + ], + [ + 446811, + 26639, + 3987 + ], + [ + 447190, + 26400, + 5326 + ], + [ + 446404, + 27368, + 3585 + ], + [ + 447227, + 26214, + 4831 + ], + [ + 447317, + 26206, + 3310 + ], + [ + 446805, + 27432, + 2457 + ], + [ + 446862, + 27301, + 1566 + ], + [ + 446935, + 27375, + 4400 + ], + [ + 446587, + 26556, + 7632 + ], + [ + 447745, + 27499, + 5835 + ], + [ + 447279, + 27364, + 2694 + ], + [ + 446114, + 26303, + 7537 + ], + [ + 446044, + 26488, + 8257 + ], + [ + 446001, + 26417, + 5742 + ], + [ + 445047, + 24179, + 4799 + ], + [ + 445088, + 24133, + 4116 + ], + [ + 445541, + 24274, + 1213 + ], + [ + 445350, + 24151, + 4473 + ], + [ + 445525, + 24320, + 6171 + ], + [ + 445736, + 24049, + 2815 + ], + [ + 446098, + 25510, + 8756 + ], + [ + 446270, + 26033, + 8649 + ], + [ + 445030, + 23834, + 1129 + ], + [ + 445156, + 23577, + 4273 + ], + [ + 448566, + 26795, + 3179 + ], + [ + 448427, + 27041, + 4683 + ], + [ + 447667, + 27054, + 3389 + ], + [ + 447961, + 27432, + 1773 + ], + [ + 448954, + 26384, + 1196 + ], + [ + 451147, + 27035, + 1230 + ], + [ + 450873, + 27093, + 1373 + ], + [ + 449456, + 27039, + 1341 + ], + [ + 448801, + 26430, + 3670 + ], + [ + 449910, + 27302, + 1341 + ], + [ + 450252, + 27793, + 1608 + ], + [ + 450009, + 28004, + 1454 + ], + [ + 445566, + 23890, + 1042 + ], + [ + 446775, + 27677, + 1574 + ], + [ + 446902, + 27038, + 4550 + ], + [ + 446033, + 25658, + 7574 + ], + [ + 447350, + 26399, + 5466 + ], + [ + 447078, + 26238, + 8475 + ], + [ + 444741, + 26123, + 4102 + ], + [ + 444730, + 23537, + 1160 + ], + [ + 445419, + 23761, + 3577 + ], + [ + 448442, + 26864, + 1316 + ], + [ + 448114, + 27070, + 3788 + ], + [ + 448235, + 27295, + 1512 + ], + [ + 448177, + 26934, + 1351 + ], + [ + 447878, + 27012, + 1373 + ], + [ + 448593, + 26619, + 4590 + ], + [ + 451338, + 27200, + 1417 + ], + [ + 448490, + 27210, + 1359 + ], + [ + 457663, + 26020, + 1102 + ], + [ + 456382, + 35155, + 1632 + ], + [ + 451579, + 27604, + 1268 + ], + [ + 451711, + 27449, + 3881 + ], + [ + 450419, + 27012, + 4174 + ], + [ + 451823, + 27452, + 1193 + ], + [ + 451570, + 27783, + 1282 + ], + [ + 445396, + 32229, + 2102 + ], + [ + 446606, + 33115, + 2112 + ], + [ + 445606, + 24858, + 8257 + ], + [ + 445862, + 24032, + 8142 + ], + [ + 446376, + 26486, + 4798 + ], + [ + 452072, + 26951, + 1087 + ], + [ + 451862, + 26643, + 1063 + ], + [ + 445641, + 23958, + 4464 + ], + [ + 445599, + 23984, + 5144 + ], + [ + 445905, + 24195, + 7883 + ], + [ + 445204, + 25154, + 7500 + ], + [ + 445058, + 25138, + 3971 + ], + [ + 444670, + 24795, + 1370 + ], + [ + 451144, + 27166, + 1379 + ], + [ + 451926, + 26996, + 1053 + ], + [ + 444460, + 25427, + 1420 + ], + [ + 444369, + 24562, + 1367 + ], + [ + 446042, + 24926, + 9318 + ], + [ + 446047, + 25142, + 8706 + ], + [ + 445813, + 24959, + 8909 + ], + [ + 445641, + 25319, + 7932 + ], + [ + 445887, + 25402, + 7396 + ], + [ + 445805, + 25578, + 8632 + ], + [ + 446531, + 24807, + 8751 + ], + [ + 445825, + 26626, + 7603 + ], + [ + 445663, + 26001, + 6969 + ], + [ + 445287, + 26117, + 6913 + ], + [ + 447536, + 26249, + 5165 + ], + [ + 447187, + 26960, + 2134 + ], + [ + 445764, + 25103, + 6000 + ], + [ + 445667, + 24997, + 7721 + ], + [ + 449117, + 33832, + 2019 + ], + [ + 449385, + 28244, + 1671 + ], + [ + 450308, + 27281, + 1539 + ], + [ + 452095, + 26981, + 3434 + ], + [ + 452207, + 26969, + 1005 + ], + [ + 450827, + 27877, + 1624 + ], + [ + 449650, + 28442, + 1517 + ], + [ + 450952, + 28909, + 1496 + ], + [ + 450578, + 29347, + 1569 + ], + [ + 450651, + 29440, + 3585 + ], + [ + 445651, + 25181, + 8288 + ], + [ + 444858, + 25504, + 6863 + ], + [ + 439976, + 29464, + 2082 + ], + [ + 446652, + 25049, + 10141 + ], + [ + 446708, + 25275, + 9055 + ], + [ + 446483, + 26261, + 8622 + ], + [ + 446058, + 25964, + 8367 + ], + [ + 445833, + 30081, + 1909 + ], + [ + 443624, + 31102, + 2102 + ], + [ + 446438, + 27696, + 3451 + ], + [ + 446567, + 25182, + 9868 + ], + [ + 447650, + 26735, + 3748 + ], + [ + 451229, + 27850, + 1327 + ], + [ + 451021, + 27151, + 3298 + ], + [ + 448349, + 26355, + 4643 + ], + [ + 448539, + 26202, + 3885 + ], + [ + 448530, + 26368, + 5827 + ], + [ + 448542, + 26487, + 3408 + ], + [ + 448307, + 26065, + 4764 + ], + [ + 447653, + 25975, + 3381 + ], + [ + 444987, + 26722, + 1604 + ], + [ + 446110, + 26048, + 7946 + ], + [ + 445465, + 25617, + 6303 + ], + [ + 445049, + 23406, + 1092 + ], + [ + 436307, + 28419, + 2032 + ], + [ + 450384, + 27933, + 1428 + ], + [ + 453051, + 35603, + 2034 + ], + [ + 436980, + 24057, + 1561 + ], + [ + 314430, + 207249, + 1230 + ], + [ + 316355, + 206791, + 1242 + ], + [ + 314669, + 208453, + 1202 + ], + [ + 318361, + 208953, + 1172 + ], + [ + 316687, + 208899, + 1192 + ], + [ + 317776, + 207285, + 1242 + ], + [ + 319271, + 208784, + 1152 + ], + [ + 320047, + 208371, + 1142 + ], + [ + 319771, + 206542, + 1242 + ], + [ + 323142, + 202960, + 1232 + ], + [ + 327150, + 199075, + 1202 + ], + [ + 325911, + 201792, + 1132 + ], + [ + 327721, + 199830, + 1122 + ], + [ + 328956, + 198774, + 1112 + ], + [ + 333112, + 193411, + 1136 + ], + [ + 330830, + 197303, + 1092 + ], + [ + 312886, + 207209, + 1162 + ], + [ + 313587, + 207937, + 1202 + ], + [ + 312712, + 207384, + 1162 + ], + [ + 313778, + 207489, + 1198 + ], + [ + 319147, + 201156, + 1215 + ], + [ + 320122, + 199958, + 1102 + ], + [ + 319727, + 202427, + 1245 + ], + [ + 319867, + 203514, + 1242 + ], + [ + 319468, + 203160, + 7771 + ], + [ + 320609, + 207872, + 1142 + ], + [ + 321523, + 205143, + 1232 + ], + [ + 363109, + 162872, + 1052 + ], + [ + 361573, + 161240, + 1002 + ], + [ + 361761, + 161057, + 1012 + ], + [ + 364263, + 163928, + 1032 + ], + [ + 363554, + 163787, + 1052 + ], + [ + 364176, + 162373, + 1052 + ], + [ + 364017, + 161209, + 1052 + ], + [ + 362192, + 160639, + 1022 + ], + [ + 363749, + 160169, + 1042 + ], + [ + 363387, + 159480, + 1012 + ], + [ + 362908, + 163067, + 1052 + ], + [ + 362755, + 167217, + 8025 + ], + [ + 362740, + 166993, + 1190 + ], + [ + 363460, + 167065, + 992 + ], + [ + 319004, + 203336, + 1240 + ], + [ + 317349, + 204086, + 1252 + ], + [ + 318390, + 202041, + 1213 + ], + [ + 364237, + 164921, + 1022 + ], + [ + 362338, + 165975, + 1056 + ], + [ + 362458, + 164939, + 1056 + ], + [ + 362638, + 166297, + 1058 + ], + [ + 319238, + 201842, + 1206 + ], + [ + 319510, + 202253, + 9956 + ], + [ + 319333, + 202553, + 1225 + ], + [ + 346165, + 182707, + 1105 + ], + [ + 346507, + 182992, + 1070 + ], + [ + 345923, + 183129, + 1115 + ], + [ + 346931, + 180864, + 15344 + ], + [ + 347250, + 181268, + 14727 + ], + [ + 346905, + 181042, + 1156 + ], + [ + 349509, + 181935, + 941 + ], + [ + 351591, + 180056, + 892 + ], + [ + 347816, + 183572, + 9642 + ], + [ + 347267, + 180561, + 1172 + ], + [ + 348781, + 181202, + 14764 + ], + [ + 348703, + 181387, + 1054 + ], + [ + 348630, + 181341, + 12375 + ], + [ + 348357, + 182038, + 7234 + ], + [ + 348401, + 182176, + 988 + ], + [ + 348275, + 182166, + 12316 + ], + [ + 347764, + 180836, + 1125 + ], + [ + 347342, + 180529, + 12886 + ], + [ + 357201, + 174332, + 942 + ], + [ + 354706, + 177010, + 922 + ], + [ + 352732, + 174699, + 1131 + ], + [ + 362586, + 166308, + 7340 + ], + [ + 362355, + 166095, + 4514 + ], + [ + 362686, + 166667, + 1042 + ], + [ + 362534, + 166786, + 2282 + ], + [ + 363036, + 167838, + 992 + ], + [ + 362775, + 167364, + 992 + ], + [ + 313895, + 208084, + 1202 + ], + [ + 321947, + 203319, + 1273 + ], + [ + 321612, + 204086, + 1232 + ], + [ + 321461, + 202706, + 1253 + ], + [ + 314335, + 206482, + 1320 + ], + [ + 316083, + 205747, + 1262 + ], + [ + 335581, + 191314, + 9861 + ], + [ + 335697, + 191227, + 6975 + ], + [ + 335614, + 191344, + 1186 + ], + [ + 348948, + 180230, + 1110 + ], + [ + 348762, + 178829, + 1121 + ], + [ + 349609, + 180456, + 1027 + ], + [ + 347358, + 181270, + 1116 + ], + [ + 347589, + 181282, + 10287 + ], + [ + 346832, + 180804, + 14063 + ], + [ + 346855, + 180668, + 1154 + ], + [ + 346952, + 181401, + 1140 + ], + [ + 346325, + 181582, + 1130 + ], + [ + 346591, + 181158, + 1160 + ], + [ + 347297, + 181312, + 10805 + ], + [ + 347038, + 181655, + 11031 + ], + [ + 345129, + 182313, + 1144 + ], + [ + 343219, + 184235, + 1114 + ], + [ + 342057, + 184895, + 1121 + ], + [ + 346997, + 181745, + 1131 + ], + [ + 336667, + 192051, + 10285 + ], + [ + 336864, + 191883, + 1067 + ], + [ + 336989, + 192075, + 14690 + ], + [ + 339073, + 187565, + 1119 + ], + [ + 347224, + 180230, + 1173 + ], + [ + 347678, + 180163, + 1170 + ], + [ + 347406, + 181655, + 1067 + ], + [ + 346029, + 181660, + 1127 + ], + [ + 346120, + 182362, + 1113 + ], + [ + 345789, + 182093, + 1149 + ], + [ + 343494, + 187404, + 982 + ], + [ + 339758, + 190031, + 1023 + ], + [ + 347720, + 180492, + 1149 + ], + [ + 348444, + 182504, + 982 + ], + [ + 348833, + 182403, + 979 + ], + [ + 348353, + 181540, + 8116 + ], + [ + 348745, + 181731, + 979 + ], + [ + 349039, + 180939, + 1065 + ], + [ + 348656, + 181009, + 1088 + ], + [ + 348610, + 180651, + 1109 + ], + [ + 348032, + 181289, + 4071 + ], + [ + 348267, + 181107, + 1085 + ], + [ + 348991, + 180577, + 1079 + ], + [ + 349307, + 180854, + 10589 + ], + [ + 349418, + 181222, + 994 + ], + [ + 349374, + 180868, + 1031 + ], + [ + 349661, + 180913, + 9921 + ], + [ + 339190, + 190788, + 1009 + ], + [ + 339440, + 190373, + 1027 + ], + [ + 339488, + 190758, + 981 + ], + [ + 334433, + 192736, + 1183 + ], + [ + 334519, + 193426, + 1108 + ], + [ + 333550, + 192918, + 1273 + ], + [ + 346279, + 181220, + 1147 + ], + [ + 336300, + 191898, + 9689 + ], + [ + 335882, + 191383, + 9267 + ], + [ + 336224, + 191419, + 5321 + ], + [ + 336634, + 190105, + 1162 + ], + [ + 337462, + 189421, + 13922 + ], + [ + 337133, + 190013, + 1173 + ], + [ + 339630, + 190263, + 8131 + ], + [ + 339490, + 190844, + 992 + ], + [ + 346544, + 180804, + 1168 + ], + [ + 336942, + 191422, + 9695 + ], + [ + 337272, + 191077, + 1146 + ], + [ + 337318, + 191392, + 1188 + ], + [ + 335614, + 192896, + 12391 + ], + [ + 335958, + 192848, + 12277 + ], + [ + 336138, + 193030, + 9785 + ], + [ + 337925, + 188830, + 1141 + ], + [ + 338108, + 190208, + 1145 + ], + [ + 337543, + 189560, + 1157 + ], + [ + 338294, + 191678, + 1011 + ], + [ + 338132, + 191276, + 12766 + ], + [ + 338246, + 191292, + 1057 + ], + [ + 337636, + 190265, + 1141 + ], + [ + 337528, + 191954, + 10153 + ], + [ + 337363, + 191790, + 1081 + ], + [ + 337424, + 191320, + 9883 + ], + [ + 336787, + 191058, + 8205 + ], + [ + 336251, + 190843, + 1191 + ], + [ + 336119, + 190767, + 13686 + ], + [ + 336209, + 190505, + 1231 + ], + [ + 338213, + 190281, + 15733 + ], + [ + 338155, + 190574, + 1117 + ], + [ + 337163, + 190858, + 13787 + ], + [ + 337230, + 190707, + 1242 + ], + [ + 338524, + 190197, + 1094 + ], + [ + 338533, + 190336, + 13562 + ], + [ + 337732, + 191006, + 1116 + ], + [ + 337184, + 190388, + 1200 + ], + [ + 337683, + 190627, + 1136 + ], + [ + 337541, + 191298, + 11557 + ], + [ + 337703, + 190600, + 8021 + ], + [ + 337891, + 190244, + 11310 + ], + [ + 337388, + 191420, + 15867 + ], + [ + 338427, + 191499, + 9914 + ], + [ + 348226, + 180772, + 1130 + ], + [ + 348482, + 180704, + 4908 + ], + [ + 348176, + 180397, + 1138 + ], + [ + 347627, + 179797, + 1155 + ], + [ + 348038, + 179348, + 1161 + ], + [ + 337774, + 191349, + 1059 + ], + [ + 337820, + 191698, + 1057 + ], + [ + 338989, + 191169, + 982 + ], + [ + 339401, + 190852, + 12193 + ], + [ + 320703, + 201104, + 12170 + ], + [ + 320762, + 201386, + 12471 + ], + [ + 320602, + 201128, + 1348 + ], + [ + 320393, + 202284, + 1233 + ], + [ + 321435, + 202522, + 10045 + ], + [ + 335308, + 191431, + 1195 + ], + [ + 335821, + 191275, + 13264 + ], + [ + 336299, + 191219, + 1172 + ], + [ + 362047, + 165655, + 1056 + ], + [ + 362093, + 165996, + 1063 + ], + [ + 345713, + 181839, + 10289 + ], + [ + 345500, + 182185, + 1112 + ], + [ + 336737, + 190734, + 1421 + ], + [ + 336682, + 190451, + 1185 + ], + [ + 337023, + 190431, + 12635 + ], + [ + 338657, + 191248, + 997 + ], + [ + 338566, + 190530, + 1066 + ], + [ + 338627, + 188339, + 1164 + ], + [ + 348208, + 181655, + 5847 + ], + [ + 348431, + 181965, + 14870 + ], + [ + 348199, + 181933, + 11682 + ], + [ + 348951, + 181363, + 10274 + ], + [ + 349083, + 181286, + 1035 + ], + [ + 349129, + 181652, + 991 + ], + [ + 348992, + 181711, + 10211 + ], + [ + 348789, + 182072, + 994 + ], + [ + 345151, + 185929, + 963 + ], + [ + 348635, + 180553, + 7333 + ], + [ + 349036, + 180418, + 13240 + ], + [ + 347570, + 179834, + 6789 + ], + [ + 336245, + 193003, + 11320 + ], + [ + 335978, + 193505, + 9682 + ], + [ + 348142, + 181627, + 11463 + ], + [ + 347320, + 181731, + 10336 + ], + [ + 347478, + 182337, + 6776 + ], + [ + 347539, + 182686, + 1034 + ], + [ + 347416, + 182701, + 14384 + ], + [ + 320492, + 201080, + 9396 + ], + [ + 320645, + 201483, + 1297 + ], + [ + 320022, + 201383, + 7068 + ], + [ + 320301, + 201011, + 11480 + ], + [ + 320929, + 201064, + 10592 + ], + [ + 320976, + 201416, + 1257 + ], + [ + 321370, + 202021, + 1246 + ], + [ + 321178, + 202080, + 12139 + ], + [ + 321021, + 201759, + 1240 + ], + [ + 321143, + 201171, + 8524 + ], + [ + 336976, + 190153, + 5819 + ], + [ + 335075, + 191677, + 12072 + ], + [ + 334382, + 192365, + 1160 + ], + [ + 335404, + 192169, + 1181 + ], + [ + 335118, + 192530, + 1189 + ], + [ + 335421, + 192759, + 9946 + ], + [ + 336966, + 190748, + 4574 + ], + [ + 336304, + 190418, + 8277 + ], + [ + 336622, + 190774, + 6450 + ], + [ + 347867, + 181500, + 1337 + ], + [ + 347991, + 181769, + 9088 + ], + [ + 347726, + 181802, + 11245 + ], + [ + 347800, + 182521, + 10944 + ], + [ + 347824, + 180368, + 9359 + ], + [ + 347918, + 180488, + 10447 + ], + [ + 348319, + 180604, + 9380 + ], + [ + 319913, + 201268, + 1270 + ], + [ + 320224, + 200755, + 1677 + ], + [ + 320346, + 200659, + 3484 + ], + [ + 320562, + 200771, + 1447 + ], + [ + 321272, + 201277, + 1253 + ], + [ + 321344, + 201252, + 11072 + ], + [ + 321320, + 201639, + 1258 + ], + [ + 322360, + 202869, + 1270 + ], + [ + 322490, + 202316, + 1242 + ], + [ + 336730, + 192274, + 10753 + ], + [ + 336690, + 192227, + 14470 + ], + [ + 336088, + 192708, + 9687 + ], + [ + 336049, + 192316, + 9860 + ], + [ + 347084, + 182426, + 1100 + ], + [ + 346767, + 182538, + 1080 + ], + [ + 346738, + 182340, + 9853 + ], + [ + 347488, + 182029, + 12137 + ], + [ + 347130, + 182789, + 1067 + ], + [ + 346654, + 183656, + 10445 + ], + [ + 346898, + 183219, + 10466 + ], + [ + 347167, + 183329, + 9706 + ], + [ + 346702, + 182880, + 12580 + ], + [ + 347583, + 183043, + 981 + ], + [ + 347136, + 182908, + 10057 + ], + [ + 346487, + 182775, + 9745 + ], + [ + 346552, + 183341, + 1037 + ], + [ + 346277, + 183635, + 9379 + ], + [ + 345970, + 183510, + 1066 + ], + [ + 344926, + 184177, + 1067 + ], + [ + 346017, + 183871, + 1044 + ], + [ + 345820, + 184656, + 995 + ], + [ + 346465, + 182663, + 1091 + ], + [ + 347181, + 182110, + 12188 + ], + [ + 346723, + 182185, + 1119 + ], + [ + 346458, + 182385, + 10065 + ], + [ + 336350, + 191356, + 7180 + ], + [ + 336694, + 190963, + 7095 + ], + [ + 349332, + 180538, + 1059 + ], + [ + 349429, + 180818, + 12371 + ], + [ + 349464, + 181579, + 969 + ], + [ + 349174, + 182041, + 922 + ], + [ + 349366, + 181684, + 9874 + ], + [ + 349879, + 180751, + 970 + ], + [ + 349973, + 181485, + 933 + ], + [ + 349655, + 180820, + 988 + ], + [ + 337253, + 191560, + 13731 + ], + [ + 336538, + 191598, + 9347 + ], + [ + 336347, + 191582, + 1165 + ], + [ + 336626, + 191973, + 14059 + ], + [ + 336596, + 191846, + 9693 + ], + [ + 338903, + 190476, + 1053 + ], + [ + 318815, + 201911, + 1237 + ], + [ + 320960, + 200956, + 6462 + ], + [ + 321757, + 201899, + 1252 + ], + [ + 322263, + 202149, + 1261 + ], + [ + 321856, + 202637, + 1265 + ], + [ + 347806, + 181170, + 1109 + ], + [ + 334864, + 193363, + 1090 + ], + [ + 335886, + 193495, + 1013 + ], + [ + 333818, + 195062, + 1053 + ], + [ + 335166, + 192917, + 1131 + ], + [ + 348117, + 183262, + 14002 + ], + [ + 349700, + 181167, + 972 + ], + [ + 349118, + 182214, + 11024 + ], + [ + 346418, + 182285, + 1127 + ], + [ + 349438, + 181918, + 10446 + ], + [ + 319542, + 201023, + 1245 + ], + [ + 319730, + 200938, + 9429 + ], + [ + 349607, + 180616, + 9716 + ], + [ + 350220, + 181074, + 944 + ], + [ + 347039, + 182080, + 1107 + ], + [ + 346181, + 182387, + 10362 + ], + [ + 319025, + 201451, + 10759 + ], + [ + 319927, + 202208, + 9828 + ], + [ + 319680, + 202075, + 1241 + ], + [ + 320481, + 200567, + 5458 + ], + [ + 320502, + 200452, + 1201 + ], + [ + 320596, + 200493, + 7142 + ], + [ + 320275, + 200533, + 7437 + ], + [ + 320469, + 200611, + 9907 + ], + [ + 321834, + 201837, + 7769 + ], + [ + 346696, + 184026, + 10344 + ], + [ + 346949, + 183961, + 988 + ], + [ + 346148, + 184913, + 942 + ], + [ + 346392, + 184500, + 947 + ], + [ + 344972, + 184533, + 1055 + ], + [ + 345594, + 182882, + 1126 + ], + [ + 345667, + 183168, + 7134 + ], + [ + 349652, + 181464, + 8763 + ], + [ + 349743, + 181505, + 948 + ], + [ + 337580, + 192268, + 10299 + ], + [ + 336957, + 192597, + 1031 + ], + [ + 337861, + 192041, + 1002 + ], + [ + 336833, + 192357, + 12018 + ], + [ + 334817, + 192999, + 1117 + ], + [ + 334588, + 193379, + 8165 + ], + [ + 362287, + 168704, + 982 + ], + [ + 359584, + 171751, + 932 + ], + [ + 358875, + 168599, + 1102 + ], + [ + 335753, + 192411, + 1153 + ], + [ + 335772, + 192666, + 10019 + ], + [ + 349994, + 181426, + 8759 + ], + [ + 348067, + 181808, + 16009 + ], + [ + 319868, + 200936, + 1267 + ], + [ + 320158, + 200516, + 1211 + ], + [ + 319818, + 200562, + 1248 + ], + [ + 320113, + 200185, + 1202 + ], + [ + 320184, + 200412, + 6437 + ], + [ + 362528, + 167295, + 1276 + ], + [ + 362235, + 166994, + 1204 + ], + [ + 362247, + 165281, + 1065 + ], + [ + 362428, + 166670, + 1045 + ], + [ + 361864, + 167043, + 1085 + ], + [ + 362385, + 166325, + 1064 + ], + [ + 364015, + 165772, + 1022 + ], + [ + 322330, + 202948, + 7072 + ], + [ + 362561, + 167692, + 1005 + ], + [ + 362054, + 165422, + 6710 + ], + [ + 361726, + 165994, + 1102 + ], + [ + 360906, + 166704, + 1101 + ], + [ + 345495, + 185146, + 987 + ], + [ + 344484, + 184288, + 1090 + ], + [ + 344526, + 184621, + 1073 + ], + [ + 344844, + 184272, + 6198 + ], + [ + 346071, + 184632, + 10082 + ], + [ + 345642, + 183265, + 1087 + ], + [ + 319431, + 203295, + 1218 + ], + [ + 336554, + 190895, + 10856 + ], + [ + 319519, + 200884, + 6700 + ], + [ + 313729, + 207097, + 1242 + ], + [ + 314145, + 207108, + 2118 + ], + [ + 314382, + 206850, + 1292 + ], + [ + 314063, + 206972, + 1281 + ], + [ + 335978, + 193505, + 1012 + ], + [ + 347816, + 183572, + 972 + ], + [ + 324535, + 201237, + 2066 + ], + [ + 326025, + 200001, + 2111 + ], + [ + 323719, + 202321, + 1983 + ], + [ + 336133, + 189602, + 7396 + ], + [ + 336282, + 189421, + 9795 + ], + [ + 336350, + 189622, + 10357 + ], + [ + 345881, + 180097, + 1966 + ], + [ + 346071, + 180294, + 8519 + ], + [ + 345927, + 180436, + 1987 + ], + [ + 326850, + 199020, + 2128 + ], + [ + 326305, + 198932, + 1504 + ], + [ + 326800, + 198650, + 2116 + ], + [ + 335812, + 190597, + 1144 + ], + [ + 336456, + 189959, + 15407 + ], + [ + 341359, + 185211, + 2045 + ], + [ + 335767, + 190204, + 1233 + ], + [ + 335534, + 190600, + 1463 + ], + [ + 335049, + 190631, + 8697 + ], + [ + 335203, + 190419, + 6250 + ], + [ + 335213, + 190725, + 1191 + ], + [ + 336496, + 189030, + 1238 + ], + [ + 336541, + 189403, + 1158 + ], + [ + 336097, + 190071, + 10222 + ], + [ + 336083, + 189800, + 14975 + ], + [ + 336148, + 189639, + 1985 + ], + [ + 338570, + 187460, + 2008 + ], + [ + 338522, + 187110, + 1985 + ], + [ + 338727, + 187243, + 1108 + ], + [ + 336992, + 188950, + 1181 + ], + [ + 337074, + 189141, + 1963 + ], + [ + 335703, + 190030, + 9266 + ], + [ + 335391, + 190011, + 9615 + ], + [ + 335462, + 189794, + 1941 + ], + [ + 339240, + 186130, + 1049 + ], + [ + 339673, + 185875, + 1964 + ], + [ + 339722, + 186202, + 2037 + ], + [ + 336348, + 189974, + 13894 + ], + [ + 336169, + 190081, + 1466 + ], + [ + 331054, + 194259, + 2086 + ], + [ + 331288, + 193986, + 1098 + ], + [ + 331380, + 194134, + 2091 + ], + [ + 350019, + 176825, + 1116 + ], + [ + 339426, + 187008, + 2017 + ], + [ + 339739, + 186662, + 1431 + ], + [ + 335995, + 190015, + 8920 + ], + [ + 358525, + 168102, + 2075 + ], + [ + 358161, + 168642, + 1141 + ], + [ + 358154, + 168129, + 2005 + ], + [ + 339021, + 186707, + 1989 + ], + [ + 339337, + 186819, + 1119 + ], + [ + 334991, + 190312, + 8477 + ], + [ + 336626, + 189602, + 1979 + ], + [ + 335751, + 189732, + 1885 + ], + [ + 338153, + 187412, + 1073 + ], + [ + 338436, + 186961, + 1057 + ], + [ + 362065, + 163931, + 1027 + ], + [ + 362372, + 163737, + 2060 + ], + [ + 335506, + 190171, + 1860 + ], + [ + 335392, + 190573, + 8587 + ], + [ + 334564, + 190789, + 1670 + ], + [ + 334588, + 191220, + 1208 + ], + [ + 334276, + 191129, + 1958 + ], + [ + 335181, + 190306, + 1512 + ], + [ + 326716, + 198529, + 1196 + ], + [ + 327236, + 198531, + 2121 + ], + [ + 338788, + 187535, + 1433 + ], + [ + 359482, + 166612, + 2112 + ], + [ + 359038, + 167037, + 2105 + ], + [ + 358683, + 167202, + 1006 + ], + [ + 333822, + 191448, + 1077 + ], + [ + 334837, + 190462, + 1092 + ], + [ + 335294, + 190909, + 1976 + ], + [ + 346225, + 180391, + 1948 + ], + [ + 346182, + 180042, + 1985 + ], + [ + 363051, + 164037, + 2151 + ], + [ + 362765, + 164422, + 2126 + ], + [ + 345594, + 180192, + 1963 + ], + [ + 355642, + 170240, + 2099 + ], + [ + 355734, + 170942, + 2079 + ], + [ + 355285, + 170503, + 1013 + ], + [ + 336098, + 189308, + 1913 + ], + [ + 341312, + 184859, + 2039 + ], + [ + 340762, + 184818, + 1047 + ], + [ + 341265, + 184516, + 2025 + ], + [ + 349669, + 176328, + 2070 + ], + [ + 349378, + 176420, + 2020 + ], + [ + 349578, + 176191, + 1054 + ], + [ + 352421, + 173849, + 2071 + ], + [ + 352639, + 173493, + 2066 + ], + [ + 352656, + 173941, + 1481 + ], + [ + 345405, + 180988, + 2014 + ], + [ + 360379, + 165897, + 6536 + ], + [ + 360056, + 166458, + 1054 + ], + [ + 360719, + 165335, + 1025 + ], + [ + 360422, + 165564, + 2111 + ], + [ + 361238, + 165145, + 2094 + ], + [ + 361332, + 165829, + 2139 + ], + [ + 360781, + 165659, + 1288 + ], + [ + 361648, + 165296, + 1296 + ], + [ + 362251, + 164744, + 2107 + ], + [ + 334922, + 190621, + 1977 + ], + [ + 359479, + 167155, + 1082 + ], + [ + 359736, + 166807, + 1059 + ], + [ + 359832, + 166976, + 2079 + ], + [ + 350265, + 175690, + 1155 + ], + [ + 349877, + 175807, + 1030 + ], + [ + 350586, + 175288, + 1044 + ], + [ + 362163, + 164082, + 2110 + ], + [ + 360465, + 165896, + 2094 + ], + [ + 360867, + 165883, + 2063 + ], + [ + 360510, + 166231, + 2109 + ], + [ + 363242, + 163486, + 1058 + ], + [ + 363007, + 163712, + 2133 + ], + [ + 362956, + 163391, + 2014 + ], + [ + 361963, + 164450, + 2095 + ], + [ + 361862, + 164253, + 1050 + ], + [ + 323252, + 202068, + 1968 + ], + [ + 323300, + 202410, + 2011 + ], + [ + 322791, + 202357, + 1260 + ], + [ + 324405, + 200731, + 1211 + ], + [ + 326396, + 198523, + 1102 + ], + [ + 331869, + 193590, + 1965 + ], + [ + 330961, + 194112, + 1079 + ], + [ + 334005, + 192292, + 2054 + ], + [ + 330795, + 195420, + 2114 + ], + [ + 356334, + 169760, + 2118 + ], + [ + 356721, + 170086, + 2077 + ], + [ + 356380, + 170136, + 2067 + ], + [ + 358783, + 167370, + 2091 + ], + [ + 359028, + 167537, + 1052 + ], + [ + 358824, + 167727, + 2009 + ], + [ + 349007, + 177597, + 1995 + ], + [ + 348711, + 177961, + 2018 + ], + [ + 359350, + 167340, + 2127 + ], + [ + 359254, + 167152, + 1149 + ], + [ + 358382, + 167589, + 1015 + ], + [ + 350356, + 175895, + 2040 + ], + [ + 349971, + 175958, + 2060 + ], + [ + 327856, + 198265, + 2161 + ], + [ + 327760, + 197568, + 2113 + ], + [ + 327973, + 197347, + 1147 + ], + [ + 328062, + 197482, + 2117 + ], + [ + 362571, + 163560, + 1037 + ], + [ + 356128, + 170552, + 1932 + ], + [ + 355851, + 170221, + 2104 + ], + [ + 357805, + 168907, + 2011 + ], + [ + 357709, + 168188, + 2018 + ], + [ + 349204, + 177275, + 1256 + ], + [ + 348962, + 177215, + 2074 + ], + [ + 349194, + 176780, + 2048 + ], + [ + 356929, + 168973, + 2090 + ], + [ + 357251, + 168782, + 1021 + ], + [ + 354941, + 170925, + 1018 + ], + [ + 355036, + 171063, + 2091 + ], + [ + 347439, + 178397, + 1127 + ], + [ + 347851, + 177986, + 1075 + ], + [ + 347910, + 178292, + 1343 + ], + [ + 354233, + 172014, + 1321 + ], + [ + 353379, + 172524, + 1074 + ], + [ + 358065, + 167965, + 1062 + ], + [ + 346134, + 179695, + 1972 + ], + [ + 346484, + 179922, + 1977 + ], + [ + 354603, + 171639, + 1136 + ], + [ + 355034, + 171577, + 1101 + ], + [ + 354689, + 171847, + 1947 + ], + [ + 352464, + 174175, + 2076 + ], + [ + 352153, + 173872, + 2047 + ], + [ + 350399, + 176216, + 2043 + ], + [ + 352779, + 172950, + 1014 + ], + [ + 351813, + 174117, + 1069 + ], + [ + 357855, + 169235, + 2106 + ], + [ + 357348, + 168922, + 2095 + ], + [ + 351540, + 175146, + 1366 + ], + [ + 353052, + 172895, + 1046 + ], + [ + 353147, + 173053, + 2078 + ], + [ + 352872, + 173108, + 2024 + ], + [ + 353954, + 173007, + 2068 + ], + [ + 353473, + 172695, + 2072 + ], + [ + 355755, + 170085, + 1025 + ], + [ + 356041, + 169826, + 2056 + ], + [ + 347527, + 178570, + 2041 + ], + [ + 347572, + 178936, + 1984 + ], + [ + 349101, + 176625, + 1039 + ], + [ + 336977, + 188459, + 1891 + ], + [ + 348534, + 177147, + 1056 + ], + [ + 348190, + 177524, + 1053 + ], + [ + 346654, + 178869, + 1694 + ], + [ + 341866, + 183508, + 1040 + ], + [ + 341175, + 184360, + 1052 + ], + [ + 339588, + 185731, + 1048 + ], + [ + 358483, + 167776, + 2090 + ], + [ + 358873, + 168071, + 2053 + ], + [ + 359090, + 167816, + 1393 + ], + [ + 359394, + 167682, + 2110 + ], + [ + 354271, + 172394, + 1148 + ], + [ + 348282, + 177717, + 1995 + ], + [ + 340365, + 185165, + 1343 + ], + [ + 340854, + 184991, + 2019 + ], + [ + 341621, + 184609, + 1116 + ], + [ + 339966, + 185608, + 1112 + ], + [ + 343011, + 182404, + 1618 + ], + [ + 343472, + 182585, + 2025 + ], + [ + 343071, + 182663, + 1973 + ], + [ + 342286, + 183579, + 1997 + ], + [ + 341951, + 183650, + 1963 + ], + [ + 342203, + 183438, + 1077 + ], + [ + 342535, + 183215, + 1978 + ], + [ + 342444, + 183030, + 1052 + ], + [ + 346044, + 179500, + 1056 + ], + [ + 346350, + 179402, + 1066 + ], + [ + 342336, + 183949, + 2003 + ], + [ + 342050, + 184367, + 2016 + ], + [ + 342003, + 184013, + 2018 + ], + [ + 342579, + 183536, + 2000 + ], + [ + 342796, + 183614, + 1153 + ], + [ + 339331, + 186308, + 1989 + ], + [ + 342698, + 182937, + 1037 + ], + [ + 343076, + 183183, + 1079 + ], + [ + 342748, + 183263, + 1127 + ], + [ + 344896, + 180596, + 1053 + ], + [ + 345271, + 180467, + 1088 + ], + [ + 345359, + 180643, + 2004 + ], + [ + 329030, + 196206, + 1099 + ], + [ + 329457, + 195740, + 1088 + ], + [ + 329545, + 195845, + 2094 + ], + [ + 361592, + 164989, + 1085 + ], + [ + 361546, + 164640, + 1086 + ], + [ + 356237, + 169623, + 1009 + ], + [ + 345074, + 181449, + 1978 + ], + [ + 349719, + 176696, + 2076 + ], + [ + 350642, + 175606, + 1233 + ], + [ + 348668, + 177628, + 2045 + ], + [ + 349393, + 176880, + 1378 + ], + [ + 349467, + 177082, + 2046 + ], + [ + 352970, + 173815, + 2080 + ], + [ + 350726, + 175792, + 2074 + ], + [ + 343518, + 182927, + 2020 + ], + [ + 331616, + 194021, + 2106 + ], + [ + 331534, + 193855, + 1281 + ], + [ + 330747, + 195057, + 2118 + ], + [ + 331061, + 194824, + 1150 + ], + [ + 334669, + 191395, + 2002 + ], + [ + 330700, + 194717, + 2085 + ], + [ + 334288, + 191660, + 1159 + ], + [ + 334370, + 191827, + 1986 + ], + [ + 333103, + 192852, + 2049 + ], + [ + 332670, + 193483, + 1272 + ], + [ + 332661, + 192974, + 2081 + ], + [ + 362860, + 163195, + 1048 + ], + [ + 338933, + 186541, + 1069 + ], + [ + 338679, + 186901, + 1087 + ], + [ + 333880, + 191756, + 1313 + ], + [ + 346439, + 179599, + 1942 + ], + [ + 346729, + 179602, + 1372 + ], + [ + 346710, + 179144, + 1956 + ], + [ + 347122, + 179035, + 1994 + ], + [ + 340055, + 185795, + 2011 + ], + [ + 340437, + 185361, + 1985 + ], + [ + 344988, + 181258, + 1125 + ], + [ + 344953, + 180863, + 1352 + ], + [ + 343780, + 181813, + 1639 + ], + [ + 343843, + 182111, + 1983 + ], + [ + 343415, + 182275, + 1808 + ], + [ + 330329, + 195213, + 2097 + ], + [ + 337356, + 188196, + 1088 + ], + [ + 337404, + 188548, + 1108 + ], + [ + 338234, + 187558, + 1950 + ], + [ + 337911, + 188279, + 1980 + ], + [ + 327806, + 197912, + 2127 + ], + [ + 327508, + 198032, + 2124 + ], + [ + 328445, + 197657, + 2139 + ], + [ + 323175, + 201923, + 1191 + ], + [ + 352727, + 174155, + 2081 + ], + [ + 352325, + 173666, + 1055 + ], + [ + 352245, + 174563, + 2064 + ], + [ + 351947, + 174608, + 2031 + ], + [ + 351903, + 174264, + 2060 + ], + [ + 351138, + 175396, + 2079 + ], + [ + 351091, + 175060, + 2054 + ], + [ + 352546, + 173360, + 1020 + ], + [ + 340104, + 186145, + 2037 + ], + [ + 332258, + 193437, + 2095 + ], + [ + 332168, + 193296, + 1108 + ], + [ + 333533, + 192379, + 2025 + ], + [ + 333925, + 192145, + 1220 + ], + [ + 330614, + 194610, + 1089 + ], + [ + 333491, + 192043, + 2055 + ], + [ + 333054, + 192477, + 2044 + ], + [ + 329993, + 195711, + 2139 + ], + [ + 329947, + 195379, + 2108 + ], + [ + 330244, + 195076, + 1159 + ], + [ + 328350, + 196958, + 2102 + ], + [ + 328259, + 196834, + 1092 + ], + [ + 330355, + 195686, + 1581 + ], + [ + 329123, + 196341, + 2137 + ], + [ + 328663, + 196508, + 2044 + ], + [ + 329596, + 196208, + 2137 + ], + [ + 327672, + 197470, + 1095 + ], + [ + 328712, + 196820, + 2144 + ], + [ + 328757, + 197169, + 2137 + ], + [ + 327422, + 197901, + 1185 + ], + [ + 327191, + 198207, + 2096 + ], + [ + 327100, + 198057, + 1110 + ], + [ + 353904, + 172639, + 2055 + ], + [ + 353859, + 172318, + 2027 + ], + [ + 351527, + 174664, + 2087 + ], + [ + 351001, + 174917, + 1051 + ], + [ + 347072, + 178696, + 1918 + ], + [ + 343887, + 182436, + 1990 + ], + [ + 344207, + 182174, + 1138 + ], + [ + 345800, + 179925, + 1157 + ], + [ + 348595, + 177403, + 1427 + ], + [ + 348328, + 178035, + 2037 + ], + [ + 326382, + 199158, + 2144 + ], + [ + 329640, + 196555, + 2104 + ], + [ + 328085, + 197951, + 1581 + ], + [ + 348878, + 177011, + 1259 + ], + [ + 344114, + 181520, + 1054 + ], + [ + 344169, + 181798, + 1310 + ], + [ + 344603, + 181719, + 1122 + ], + [ + 344569, + 181309, + 1411 + ], + [ + 344507, + 181031, + 1055 + ], + [ + 332302, + 193792, + 2048 + ], + [ + 331660, + 194354, + 2097 + ], + [ + 331424, + 194464, + 2112 + ], + [ + 324774, + 200449, + 1879 + ], + [ + 325176, + 200456, + 1510 + ], + [ + 324829, + 200725, + 2126 + ], + [ + 323904, + 201322, + 1202 + ], + [ + 323622, + 201578, + 1996 + ], + [ + 324230, + 201009, + 2017 + ], + [ + 323982, + 201487, + 1963 + ], + [ + 325114, + 200141, + 1235 + ], + [ + 324486, + 200853, + 2090 + ], + [ + 323651, + 202049, + 1546 + ], + [ + 325632, + 200133, + 2127 + ], + [ + 325921, + 199384, + 1813 + ], + [ + 325574, + 199844, + 1867 + ], + [ + 337867, + 187951, + 1972 + ], + [ + 330037, + 196067, + 2096 + ], + [ + 338276, + 187919, + 1859 + ], + [ + 325976, + 199655, + 2081 + ], + [ + 359539, + 167415, + 1433 + ], + [ + 321565, + 101452, + 7022 + ], + [ + 316136, + 108781, + 7022 + ], + [ + 318329, + 98955, + 7022 + ], + [ + 318266, + 97697, + 7022 + ], + [ + 318913, + 98197, + 7022 + ], + [ + 312086, + 105772, + 7022 + ], + [ + 317461, + 98548, + 7022 + ], + [ + 318173, + 97626, + 7022 + ], + [ + 321565, + 101452, + 482 + ], + [ + 316136, + 108781, + 482 + ], + [ + 321565, + 101452, + 3622 + ], + [ + 316136, + 108781, + 3622 + ], + [ + 318329, + 98955, + 482 + ], + [ + 318913, + 98197, + 482 + ], + [ + 318266, + 97697, + 482 + ], + [ + 318173, + 97626, + 482 + ], + [ + 317461, + 98548, + 482 + ], + [ + 312086, + 105772, + 482 + ], + [ + 326728, + 103507, + 3622 + ], + [ + 320407, + 112038, + 3622 + ], + [ + 320158, + 111769, + 3622 + ], + [ + 324474, + 101768, + 3622 + ], + [ + 324026, + 98263, + 3622 + ], + [ + 324885, + 98926, + 3622 + ], + [ + 320119, + 111821, + 3622 + ], + [ + 326728, + 103507, + 482 + ], + [ + 320407, + 112038, + 482 + ], + [ + 326728, + 103507, + 3612 + ], + [ + 320407, + 112038, + 3612 + ], + [ + 324474, + 101768, + 482 + ], + [ + 324885, + 98926, + 482 + ], + [ + 324026, + 98263, + 482 + ], + [ + 320158, + 111769, + 482 + ], + [ + 320119, + 111821, + 482 + ], + [ + 326772, + 103541, + 3612 + ], + [ + 332412, + 103931, + 3612 + ], + [ + 328622, + 101071, + 3612 + ], + [ + 332412, + 103931, + 472 + ], + [ + 328622, + 101071, + 472 + ], + [ + 326772, + 103541, + 472 + ], + [ + 326728, + 103507, + 472 + ], + [ + 320407, + 112038, + 472 + ], + [ + 324212, + 70905, + 3332 + ], + [ + 315416, + 63807, + 3332 + ], + [ + 325717, + 75056, + 3332 + ], + [ + 322904, + 72789, + 3332 + ], + [ + 322787, + 72695, + 3332 + ], + [ + 315416, + 63807, + 392 + ], + [ + 315416, + 63807, + 422 + ], + [ + 324212, + 70905, + 392 + ], + [ + 324212, + 70905, + 422 + ], + [ + 322787, + 72695, + 392 + ], + [ + 322787, + 72695, + 422 + ], + [ + 322904, + 72789, + 392 + ], + [ + 242641, + 106650, + 3712 + ], + [ + 250615, + 112571, + 3712 + ], + [ + 242651, + 106667, + 3712 + ], + [ + 248667, + 115309, + 3712 + ], + [ + 242584, + 106710, + 3712 + ], + [ + 239452, + 108734, + 3712 + ], + [ + 242641, + 106650, + 422 + ], + [ + 242641, + 106650, + 3532 + ], + [ + 250615, + 112571, + 3532 + ], + [ + 242651, + 106667, + 422 + ], + [ + 242584, + 106710, + 422 + ], + [ + 239452, + 108734, + 422 + ], + [ + 239452, + 108734, + 3722 + ], + [ + 248667, + 115309, + 3722 + ], + [ + 248099, + 116108, + 3722 + ], + [ + 250284, + 117662, + 3722 + ], + [ + 248559, + 120087, + 3722 + ], + [ + 235960, + 110991, + 422 + ], + [ + 245458, + 117882, + 422 + ], + [ + 296708, + 117959, + 3212 + ], + [ + 292089, + 119783, + 3212 + ], + [ + 300072, + 109133, + 3212 + ], + [ + 292365, + 119989, + 3212 + ], + [ + 292588, + 123477, + 3212 + ], + [ + 290772, + 122121, + 3212 + ], + [ + 303927, + 112023, + 582 + ], + [ + 298495, + 119282, + 582 + ], + [ + 300072, + 109133, + 582 + ], + [ + 300072, + 109133, + 3142 + ], + [ + 292089, + 119783, + 582 + ], + [ + 292089, + 119783, + 3142 + ], + [ + 292365, + 119989, + 582 + ], + [ + 290772, + 122121, + 582 + ], + [ + 292588, + 123477, + 582 + ], + [ + 296708, + 117959, + 582 + ], + [ + 314171, + 94666, + 4352 + ], + [ + 308080, + 102796, + 4352 + ], + [ + 314101, + 94612, + 4352 + ], + [ + 305788, + 100976, + 4352 + ], + [ + 311270, + 92427, + 4352 + ], + [ + 311966, + 89166, + 4352 + ], + [ + 313107, + 90047, + 4352 + ], + [ + 304038, + 99752, + 4352 + ], + [ + 304323, + 99873, + 4352 + ], + [ + 304239, + 99985, + 4352 + ], + [ + 303999, + 99804, + 4352 + ], + [ + 305704, + 101088, + 4352 + ], + [ + 308041, + 102848, + 4352 + ], + [ + 314171, + 94666, + 532 + ], + [ + 308080, + 102796, + 532 + ], + [ + 314101, + 94612, + 532 + ], + [ + 311270, + 92427, + 532 + ], + [ + 313107, + 90047, + 532 + ], + [ + 311966, + 89166, + 532 + ], + [ + 304038, + 99752, + 532 + ], + [ + 303999, + 99804, + 532 + ], + [ + 304239, + 99985, + 532 + ], + [ + 304323, + 99873, + 532 + ], + [ + 305788, + 100976, + 532 + ], + [ + 305704, + 101088, + 532 + ], + [ + 308041, + 102848, + 532 + ], + [ + 275487, + 95750, + 4292 + ], + [ + 277386, + 97204, + 4292 + ], + [ + 275086, + 96274, + 4292 + ], + [ + 266754, + 90749, + 4292 + ], + [ + 266653, + 90599, + 4292 + ], + [ + 266928, + 90632, + 4292 + ], + [ + 267576, + 90197, + 4292 + ], + [ + 267530, + 90011, + 4292 + ], + [ + 268184, + 90988, + 4292 + ], + [ + 267476, + 90048, + 4292 + ], + [ + 273922, + 98160, + 4292 + ], + [ + 266828, + 90482, + 4292 + ], + [ + 266106, + 91183, + 4292 + ], + [ + 272802, + 99660, + 4292 + ], + [ + 272509, + 99441, + 4292 + ], + [ + 265914, + 91095, + 4292 + ], + [ + 266006, + 91033, + 4292 + ], + [ + 263469, + 92458, + 4292 + ], + [ + 265675, + 90738, + 4292 + ], + [ + 263358, + 92292, + 4292 + ], + [ + 263442, + 92476, + 4292 + ], + [ + 275565, + 99388, + 4292 + ], + [ + 275687, + 99479, + 4292 + ], + [ + 275487, + 95750, + 452 + ], + [ + 277386, + 97204, + 452 + ], + [ + 275487, + 95750, + 462 + ], + [ + 277386, + 97204, + 462 + ], + [ + 275086, + 96274, + 452 + ], + [ + 275086, + 96274, + 462 + ], + [ + 268184, + 90988, + 452 + ], + [ + 268184, + 90988, + 462 + ], + [ + 267530, + 90011, + 452 + ], + [ + 263442, + 92476, + 4012 + ], + [ + 272509, + 99441, + 452 + ], + [ + 272509, + 99441, + 4012 + ], + [ + 272802, + 99660, + 452 + ], + [ + 273922, + 98160, + 452 + ], + [ + 275565, + 99388, + 452 + ], + [ + 275565, + 99388, + 662 + ], + [ + 275565, + 99388, + 2862 + ], + [ + 275687, + 99479, + 452 + ], + [ + 275687, + 99479, + 662 + ], + [ + 275687, + 99479, + 2862 + ], + [ + 261311, + 95816, + 4012 + ], + [ + 268781, + 99073, + 4012 + ], + [ + 260000, + 94772, + 4012 + ], + [ + 262643, + 92771, + 4012 + ], + [ + 262755, + 92937, + 4012 + ], + [ + 259894, + 94614, + 4012 + ], + [ + 260810, + 95435, + 4012 + ], + [ + 259967, + 94794, + 4012 + ], + [ + 260592, + 95722, + 4012 + ], + [ + 261093, + 96103, + 4012 + ], + [ + 271351, + 100992, + 4012 + ], + [ + 267628, + 100616, + 4012 + ], + [ + 263442, + 92476, + 432 + ], + [ + 272509, + 99441, + 432 + ], + [ + 259894, + 94614, + 432 + ], + [ + 260000, + 94772, + 432 + ], + [ + 259967, + 94794, + 432 + ], + [ + 259967, + 94794, + 4002 + ], + [ + 260810, + 95435, + 432 + ], + [ + 260810, + 95435, + 4002 + ], + [ + 260592, + 95722, + 432 + ], + [ + 260592, + 95722, + 4002 + ], + [ + 261093, + 96103, + 432 + ], + [ + 261093, + 96103, + 4002 + ], + [ + 261311, + 95816, + 432 + ], + [ + 261311, + 95816, + 4002 + ], + [ + 267628, + 100616, + 432 + ], + [ + 267628, + 100616, + 4002 + ], + [ + 268781, + 99073, + 432 + ], + [ + 271351, + 100992, + 432 + ], + [ + 317461, + 98548, + 7642 + ], + [ + 312086, + 105772, + 7642 + ], + [ + 314380, + 96170, + 7642 + ], + [ + 314171, + 94666, + 7642 + ], + [ + 315030, + 95329, + 7642 + ], + [ + 308080, + 102796, + 7642 + ], + [ + 314380, + 96170, + 482 + ], + [ + 315030, + 95329, + 482 + ], + [ + 314171, + 94666, + 482 + ], + [ + 308080, + 102796, + 482 + ], + [ + 266612, + 101977, + 4002 + ], + [ + 267927, + 105623, + 4002 + ], + [ + 256054, + 97221, + 4002 + ], + [ + 259286, + 95251, + 4002 + ], + [ + 257982, + 95896, + 4002 + ], + [ + 259180, + 95093, + 4002 + ], + [ + 269207, + 103914, + 4002 + ], + [ + 261311, + 95816, + 422 + ], + [ + 267628, + 100616, + 422 + ], + [ + 261093, + 96103, + 422 + ], + [ + 260592, + 95722, + 422 + ], + [ + 260810, + 95435, + 422 + ], + [ + 259967, + 94794, + 422 + ], + [ + 259286, + 95251, + 422 + ], + [ + 259180, + 95093, + 422 + ], + [ + 257982, + 95896, + 422 + ], + [ + 256054, + 97221, + 422 + ], + [ + 267927, + 105623, + 422 + ], + [ + 269207, + 103914, + 422 + ], + [ + 266612, + 101977, + 422 + ], + [ + 284629, + 97909, + 2902 + ], + [ + 284611, + 97797, + 2902 + ], + [ + 284676, + 97845, + 2902 + ], + [ + 278575, + 106760, + 2902 + ], + [ + 277332, + 103623, + 2902 + ], + [ + 277273, + 108504, + 2902 + ], + [ + 276816, + 109378, + 2902 + ], + [ + 275127, + 106624, + 2902 + ], + [ + 284489, + 97659, + 2902 + ], + [ + 284664, + 97725, + 2902 + ], + [ + 284518, + 97618, + 2902 + ], + [ + 277167, + 100588, + 2902 + ], + [ + 283785, + 97147, + 2902 + ], + [ + 283815, + 97106, + 2902 + ], + [ + 281203, + 95205, + 2902 + ], + [ + 281077, + 95373, + 2902 + ], + [ + 275762, + 102462, + 2902 + ], + [ + 273524, + 105447, + 2902 + ], + [ + 271299, + 108414, + 2902 + ], + [ + 275386, + 111292, + 2902 + ], + [ + 277399, + 108598, + 2902 + ], + [ + 284629, + 97909, + 622 + ], + [ + 278575, + 106760, + 622 + ], + [ + 284676, + 97845, + 622 + ], + [ + 284611, + 97797, + 622 + ], + [ + 284664, + 97725, + 622 + ], + [ + 284518, + 97618, + 622 + ], + [ + 284489, + 97659, + 622 + ], + [ + 283785, + 97147, + 622 + ], + [ + 283815, + 97106, + 622 + ], + [ + 281203, + 95205, + 622 + ], + [ + 281077, + 95373, + 622 + ], + [ + 277167, + 100588, + 622 + ], + [ + 277167, + 100588, + 662 + ], + [ + 277167, + 100588, + 2862 + ], + [ + 275762, + 102462, + 622 + ], + [ + 275762, + 102462, + 662 + ], + [ + 275762, + 102462, + 2862 + ], + [ + 277332, + 103623, + 622 + ], + [ + 275127, + 106624, + 622 + ], + [ + 273524, + 105447, + 622 + ], + [ + 273524, + 105447, + 662 + ], + [ + 273524, + 105447, + 2862 + ], + [ + 271299, + 108414, + 622 + ], + [ + 271299, + 108414, + 662 + ], + [ + 271299, + 108414, + 2862 + ], + [ + 275386, + 111292, + 622 + ], + [ + 276816, + 109378, + 622 + ], + [ + 277399, + 108598, + 622 + ], + [ + 277273, + 108504, + 622 + ], + [ + 288352, + 100511, + 3332 + ], + [ + 282894, + 107738, + 3332 + ], + [ + 281183, + 106472, + 3332 + ], + [ + 285324, + 98415, + 3332 + ], + [ + 285371, + 98351, + 3332 + ], + [ + 278575, + 106760, + 3332 + ], + [ + 284629, + 97909, + 3332 + ], + [ + 280111, + 107907, + 3332 + ], + [ + 288352, + 100511, + 592 + ], + [ + 282894, + 107738, + 592 + ], + [ + 288352, + 100511, + 642 + ], + [ + 282894, + 107738, + 642 + ], + [ + 288352, + 100511, + 3312 + ], + [ + 282894, + 107738, + 3312 + ], + [ + 285371, + 98351, + 592 + ], + [ + 285324, + 98415, + 592 + ], + [ + 284629, + 97909, + 592 + ], + [ + 278575, + 106760, + 592 + ], + [ + 280111, + 107907, + 592 + ], + [ + 281183, + 106472, + 592 + ], + [ + 253797, + 98830, + 2692 + ], + [ + 260846, + 103843, + 2692 + ], + [ + 252978, + 99386, + 2692 + ], + [ + 252813, + 99500, + 2692 + ], + [ + 252756, + 99539, + 2692 + ], + [ + 252584, + 99659, + 2692 + ], + [ + 251832, + 100239, + 2692 + ], + [ + 251803, + 100198, + 2692 + ], + [ + 256694, + 109681, + 2692 + ], + [ + 251635, + 100376, + 2692 + ], + [ + 247639, + 103079, + 2692 + ], + [ + 251606, + 100335, + 2692 + ], + [ + 247339, + 103347, + 2692 + ], + [ + 247459, + 103204, + 2692 + ], + [ + 247418, + 103232, + 2692 + ], + [ + 247311, + 103306, + 2692 + ], + [ + 253797, + 98830, + 412 + ], + [ + 252978, + 99386, + 412 + ], + [ + 252813, + 99500, + 412 + ], + [ + 252756, + 99539, + 412 + ], + [ + 252584, + 99659, + 412 + ], + [ + 251803, + 100198, + 412 + ], + [ + 251832, + 100239, + 412 + ], + [ + 251635, + 100376, + 412 + ], + [ + 251606, + 100335, + 412 + ], + [ + 247639, + 103079, + 412 + ], + [ + 247459, + 103204, + 412 + ], + [ + 247418, + 103232, + 412 + ], + [ + 247311, + 103306, + 412 + ], + [ + 247339, + 103347, + 412 + ], + [ + 247339, + 103347, + 422 + ], + [ + 256694, + 109681, + 412 + ], + [ + 284886, + 109212, + 3312 + ], + [ + 282523, + 116259, + 3312 + ], + [ + 280662, + 114869, + 3312 + ], + [ + 292252, + 103337, + 3312 + ], + [ + 292241, + 103329, + 3312 + ], + [ + 292252, + 103337, + 642 + ], + [ + 282523, + 116259, + 642 + ], + [ + 292241, + 103329, + 642 + ], + [ + 284886, + 109212, + 642 + ], + [ + 280662, + 114869, + 642 + ], + [ + 296202, + 106265, + 3312 + ], + [ + 290725, + 113533, + 3312 + ], + [ + 289095, + 112327, + 3312 + ], + [ + 284857, + 118002, + 3312 + ], + [ + 296202, + 106265, + 602 + ], + [ + 290725, + 113533, + 602 + ], + [ + 296202, + 106265, + 3142 + ], + [ + 290725, + 113533, + 3142 + ], + [ + 292252, + 103337, + 602 + ], + [ + 282523, + 116259, + 602 + ], + [ + 284857, + 118002, + 602 + ], + [ + 289095, + 112327, + 602 + ], + [ + 247339, + 103347, + 3532 + ], + [ + 256694, + 109681, + 3532 + ], + [ + 247190, + 103432, + 3532 + ], + [ + 247202, + 103448, + 3532 + ], + [ + 255514, + 116056, + 3532 + ], + [ + 258922, + 111265, + 3532 + ], + [ + 247202, + 103448, + 422 + ], + [ + 247190, + 103432, + 422 + ], + [ + 291454, + 116686, + 3142 + ], + [ + 291668, + 116846, + 3142 + ], + [ + 290197, + 118370, + 3142 + ], + [ + 292926, + 115161, + 3142 + ], + [ + 300072, + 109133, + 572 + ], + [ + 292089, + 119783, + 572 + ], + [ + 296202, + 106265, + 572 + ], + [ + 290725, + 113533, + 572 + ], + [ + 292926, + 115161, + 572 + ], + [ + 291668, + 116846, + 572 + ], + [ + 291454, + 116686, + 572 + ], + [ + 290197, + 118370, + 572 + ], + [ + 278796, + 93349, + 4552 + ], + [ + 279734, + 94059, + 4552 + ], + [ + 278748, + 93413, + 4552 + ], + [ + 271242, + 88061, + 4552 + ], + [ + 271358, + 87914, + 4552 + ], + [ + 278151, + 92962, + 4552 + ], + [ + 271448, + 87794, + 4552 + ], + [ + 278200, + 92899, + 4552 + ], + [ + 279609, + 94227, + 4552 + ], + [ + 271245, + 87911, + 4552 + ], + [ + 275487, + 95750, + 4552 + ], + [ + 277386, + 97204, + 4552 + ], + [ + 270215, + 87885, + 4552 + ], + [ + 270317, + 87888, + 4552 + ], + [ + 270314, + 88038, + 4552 + ], + [ + 268158, + 89072, + 4552 + ], + [ + 270126, + 87752, + 4552 + ], + [ + 268398, + 89429, + 4552 + ], + [ + 268418, + 89657, + 4552 + ], + [ + 268306, + 89491, + 4552 + ], + [ + 268184, + 90988, + 4552 + ], + [ + 267770, + 90091, + 4552 + ], + [ + 267530, + 90011, + 4552 + ], + [ + 267658, + 89925, + 4552 + ], + [ + 275086, + 96274, + 4552 + ], + [ + 278796, + 93349, + 462 + ], + [ + 279734, + 94059, + 462 + ], + [ + 278748, + 93413, + 462 + ], + [ + 278151, + 92962, + 462 + ], + [ + 278200, + 92899, + 462 + ], + [ + 279609, + 94227, + 462 + ], + [ + 269878, + 107003, + 2862 + ], + [ + 271217, + 108003, + 2862 + ], + [ + 271044, + 108235, + 2862 + ], + [ + 269878, + 107003, + 662 + ], + [ + 271217, + 108003, + 662 + ], + [ + 271044, + 108235, + 662 + ], + [ + 285255, + 79041, + 7572 + ], + [ + 285101, + 79074, + 7572 + ], + [ + 285230, + 78998, + 7572 + ], + [ + 282017, + 83298, + 7572 + ], + [ + 283768, + 79886, + 7572 + ], + [ + 284660, + 85282, + 7572 + ], + [ + 284805, + 79257, + 7572 + ], + [ + 285061, + 79004, + 7572 + ], + [ + 284763, + 79189, + 7572 + ], + [ + 284029, + 79736, + 7572 + ], + [ + 284946, + 85484, + 7572 + ], + [ + 293415, + 85075, + 7572 + ], + [ + 283987, + 79668, + 7572 + ], + [ + 283731, + 79826, + 7572 + ], + [ + 281832, + 81082, + 7572 + ], + [ + 281565, + 81549, + 7572 + ], + [ + 281696, + 82796, + 7572 + ], + [ + 281489, + 81212, + 7572 + ], + [ + 281796, + 81022, + 7572 + ], + [ + 281449, + 81216, + 7572 + ], + [ + 281485, + 81557, + 7572 + ], + [ + 281616, + 82804, + 7572 + ], + [ + 281703, + 83150, + 7572 + ], + [ + 281653, + 83155, + 7572 + ], + [ + 281975, + 83354, + 7572 + ], + [ + 284618, + 85338, + 7572 + ], + [ + 284898, + 85548, + 7572 + ], + [ + 290183, + 89408, + 7572 + ], + [ + 285255, + 79041, + 442 + ], + [ + 293415, + 85075, + 442 + ], + [ + 293415, + 85075, + 522 + ], + [ + 293415, + 85075, + 3782 + ], + [ + 285230, + 78998, + 442 + ], + [ + 285101, + 79074, + 442 + ], + [ + 285061, + 79004, + 442 + ], + [ + 284763, + 79189, + 442 + ], + [ + 284805, + 79257, + 442 + ], + [ + 284029, + 79736, + 442 + ], + [ + 283987, + 79668, + 442 + ], + [ + 283731, + 79826, + 442 + ], + [ + 283768, + 79886, + 442 + ], + [ + 281832, + 81082, + 442 + ], + [ + 281796, + 81022, + 442 + ], + [ + 281489, + 81212, + 442 + ], + [ + 281449, + 81216, + 442 + ], + [ + 281485, + 81557, + 442 + ], + [ + 281565, + 81549, + 442 + ], + [ + 281696, + 82796, + 442 + ], + [ + 281616, + 82804, + 442 + ], + [ + 281653, + 83155, + 442 + ], + [ + 281703, + 83150, + 442 + ], + [ + 281975, + 83354, + 442 + ], + [ + 282017, + 83298, + 442 + ], + [ + 284660, + 85282, + 442 + ], + [ + 284618, + 85338, + 442 + ], + [ + 284898, + 85548, + 442 + ], + [ + 284946, + 85484, + 442 + ], + [ + 290183, + 89408, + 442 + ], + [ + 290183, + 89408, + 522 + ], + [ + 290183, + 89408, + 3782 + ], + [ + 289448, + 76581, + 7572 + ], + [ + 296144, + 81421, + 7572 + ], + [ + 286005, + 78543, + 7572 + ], + [ + 288665, + 76982, + 7572 + ], + [ + 288691, + 77026, + 7572 + ], + [ + 286030, + 78586, + 7572 + ], + [ + 293456, + 85105, + 7572 + ], + [ + 289448, + 76581, + 422 + ], + [ + 296144, + 81421, + 422 + ], + [ + 289448, + 76581, + 432 + ], + [ + 289448, + 76581, + 3612 + ], + [ + 296144, + 81421, + 3612 + ], + [ + 288691, + 77026, + 422 + ], + [ + 288665, + 76982, + 422 + ], + [ + 286005, + 78543, + 422 + ], + [ + 286030, + 78586, + 422 + ], + [ + 285255, + 79041, + 422 + ], + [ + 293415, + 85075, + 422 + ], + [ + 293456, + 85105, + 422 + ], + [ + 293456, + 85105, + 3782 + ], + [ + 299707, + 85805, + 3782 + ], + [ + 294575, + 92699, + 3782 + ], + [ + 295979, + 86971, + 3782 + ], + [ + 297830, + 84435, + 3782 + ], + [ + 293444, + 85121, + 3782 + ], + [ + 294375, + 92474, + 3782 + ], + [ + 291143, + 90052, + 3782 + ], + [ + 291107, + 90100, + 3782 + ], + [ + 293647, + 91929, + 3782 + ], + [ + 292519, + 91084, + 3782 + ], + [ + 293611, + 91977, + 3782 + ], + [ + 292483, + 91132, + 3782 + ], + [ + 294339, + 92522, + 3782 + ], + [ + 294575, + 92699, + 522 + ], + [ + 299707, + 85805, + 3482 + ], + [ + 294575, + 92699, + 3482 + ], + [ + 291107, + 90100, + 522 + ], + [ + 291143, + 90052, + 522 + ], + [ + 292519, + 91084, + 522 + ], + [ + 292483, + 91132, + 522 + ], + [ + 293611, + 91977, + 522 + ], + [ + 293647, + 91929, + 522 + ], + [ + 294375, + 92474, + 522 + ], + [ + 294339, + 92522, + 522 + ], + [ + 296317, + 81184, + 3612 + ], + [ + 293011, + 74542, + 3612 + ], + [ + 298591, + 82844, + 3612 + ], + [ + 290849, + 75673, + 3612 + ], + [ + 290977, + 75595, + 3612 + ], + [ + 291060, + 75731, + 3612 + ], + [ + 290745, + 75829, + 3612 + ], + [ + 290704, + 75761, + 3612 + ], + [ + 289995, + 76287, + 3612 + ], + [ + 289953, + 76218, + 3612 + ], + [ + 289423, + 76538, + 3612 + ], + [ + 307471, + 85698, + 3612 + ], + [ + 300675, + 84679, + 3612 + ], + [ + 298442, + 83049, + 3612 + ], + [ + 303152, + 86371, + 3612 + ], + [ + 305534, + 88209, + 3612 + ], + [ + 303094, + 86446, + 3612 + ], + [ + 300666, + 84691, + 3612 + ], + [ + 293011, + 74542, + 432 + ], + [ + 307471, + 85698, + 432 + ], + [ + 291060, + 75731, + 432 + ], + [ + 290977, + 75595, + 432 + ], + [ + 290849, + 75673, + 432 + ], + [ + 290704, + 75761, + 432 + ], + [ + 290745, + 75829, + 432 + ], + [ + 289995, + 76287, + 432 + ], + [ + 289953, + 76218, + 432 + ], + [ + 289423, + 76538, + 432 + ], + [ + 300666, + 84691, + 432 + ], + [ + 300666, + 84691, + 3482 + ], + [ + 303094, + 86446, + 432 + ], + [ + 303094, + 86446, + 512 + ], + [ + 303094, + 86446, + 3482 + ], + [ + 303152, + 86371, + 432 + ], + [ + 305534, + 88209, + 432 + ], + [ + 297421, + 71719, + 3632 + ], + [ + 293167, + 74447, + 3632 + ], + [ + 293211, + 74232, + 3632 + ], + [ + 293083, + 74310, + 3632 + ], + [ + 308700, + 83175, + 3632 + ], + [ + 307471, + 85698, + 3632 + ], + [ + 293011, + 74542, + 3632 + ], + [ + 309150, + 83523, + 3632 + ], + [ + 307585, + 85551, + 3632 + ], + [ + 310121, + 81333, + 3632 + ], + [ + 297421, + 71719, + 432 + ], + [ + 310121, + 81333, + 432 + ], + [ + 297421, + 71719, + 3212 + ], + [ + 310121, + 81333, + 3212 + ], + [ + 293211, + 74232, + 432 + ], + [ + 293083, + 74310, + 432 + ], + [ + 293167, + 74447, + 432 + ], + [ + 307585, + 85551, + 432 + ], + [ + 309150, + 83523, + 432 + ], + [ + 308700, + 83175, + 432 + ], + [ + 301931, + 87954, + 3482 + ], + [ + 301057, + 87279, + 3482 + ], + [ + 299350, + 89491, + 3482 + ], + [ + 299803, + 85875, + 3482 + ], + [ + 294815, + 92804, + 3482 + ], + [ + 295527, + 93338, + 3482 + ], + [ + 298894, + 95920, + 3482 + ], + [ + 301998, + 91535, + 3482 + ], + [ + 294779, + 92852, + 3482 + ], + [ + 295491, + 93386, + 3482 + ], + [ + 299350, + 89491, + 512 + ], + [ + 301998, + 91535, + 512 + ], + [ + 301998, + 91535, + 522 + ], + [ + 301057, + 87279, + 512 + ], + [ + 301931, + 87954, + 512 + ], + [ + 299707, + 85805, + 512 + ], + [ + 294575, + 92699, + 512 + ], + [ + 294779, + 92852, + 512 + ], + [ + 294815, + 92804, + 512 + ], + [ + 295527, + 93338, + 512 + ], + [ + 295491, + 93386, + 512 + ], + [ + 298894, + 95920, + 512 + ], + [ + 298894, + 95920, + 522 + ], + [ + 309662, + 74799, + 3212 + ], + [ + 305046, + 72056, + 3212 + ], + [ + 306096, + 72012, + 3212 + ], + [ + 301740, + 70990, + 3212 + ], + [ + 303297, + 70652, + 3212 + ], + [ + 302106, + 69696, + 3212 + ], + [ + 301213, + 69791, + 3212 + ], + [ + 301961, + 69411, + 3212 + ], + [ + 301318, + 70108, + 3212 + ], + [ + 301115, + 69841, + 3212 + ], + [ + 301265, + 70135, + 3212 + ], + [ + 300849, + 71465, + 3212 + ], + [ + 300485, + 71174, + 3212 + ], + [ + 300020, + 70398, + 3212 + ], + [ + 312896, + 77738, + 3212 + ], + [ + 313106, + 77491, + 3212 + ], + [ + 309662, + 74799, + 422 + ], + [ + 313106, + 77491, + 422 + ], + [ + 306096, + 72012, + 422 + ], + [ + 305046, + 72056, + 422 + ], + [ + 303297, + 70652, + 422 + ], + [ + 302106, + 69696, + 422 + ], + [ + 301961, + 69411, + 422 + ], + [ + 297421, + 71719, + 422 + ], + [ + 310121, + 81333, + 422 + ], + [ + 312896, + 77738, + 422 + ], + [ + 308637, + 91517, + 6312 + ], + [ + 304038, + 99752, + 6312 + ], + [ + 301998, + 91535, + 6312 + ], + [ + 311966, + 89166, + 6312 + ], + [ + 309245, + 90729, + 6312 + ], + [ + 310164, + 87775, + 6312 + ], + [ + 308392, + 90071, + 6312 + ], + [ + 304485, + 88313, + 6312 + ], + [ + 298894, + 95920, + 6312 + ], + [ + 311966, + 89166, + 522 + ], + [ + 304038, + 99752, + 522 + ], + [ + 310164, + 87775, + 522 + ], + [ + 308392, + 90071, + 522 + ], + [ + 309245, + 90729, + 522 + ], + [ + 308637, + 91517, + 522 + ], + [ + 304485, + 88313, + 522 + ], + [ + 324212, + 70905, + 6592 + ], + [ + 322787, + 72695, + 6592 + ], + [ + 315416, + 63807, + 6592 + ], + [ + 318955, + 77641, + 6592 + ], + [ + 309811, + 66170, + 6592 + ], + [ + 307588, + 68879, + 6592 + ], + [ + 318753, + 77889, + 6592 + ], + [ + 322904, + 72789, + 6592 + ], + [ + 309811, + 66170, + 422 + ], + [ + 307588, + 68879, + 422 + ], + [ + 318753, + 77889, + 422 + ], + [ + 331953, + 177538, + 6512 + ], + [ + 332072, + 177660, + 6512 + ], + [ + 328396, + 181227, + 6512 + ], + [ + 321097, + 173980, + 6512 + ], + [ + 325634, + 169480, + 6512 + ], + [ + 332644, + 176868, + 6512 + ], + [ + 332956, + 176802, + 6512 + ], + [ + 332762, + 176990, + 6512 + ], + [ + 325634, + 169480, + 592 + ], + [ + 332956, + 176802, + 592 + ], + [ + 321097, + 173980, + 592 + ], + [ + 321097, + 173980, + 602 + ], + [ + 321097, + 173980, + 4962 + ], + [ + 328396, + 181227, + 592 + ], + [ + 328396, + 181227, + 602 + ], + [ + 328396, + 181227, + 4962 + ], + [ + 332072, + 177660, + 592 + ], + [ + 331953, + 177538, + 592 + ], + [ + 332644, + 176868, + 592 + ], + [ + 332762, + 176990, + 592 + ], + [ + 316455, + 176669, + 4962 + ], + [ + 320140, + 173015, + 4962 + ], + [ + 317163, + 177483, + 4962 + ], + [ + 316405, + 176719, + 4962 + ], + [ + 325542, + 183891, + 4962 + ], + [ + 324657, + 184882, + 4962 + ], + [ + 324774, + 184631, + 4962 + ], + [ + 324843, + 184703, + 4962 + ], + [ + 325611, + 183963, + 4962 + ], + [ + 328424, + 181255, + 4962 + ], + [ + 320140, + 173015, + 602 + ], + [ + 316455, + 176669, + 602 + ], + [ + 316405, + 176719, + 602 + ], + [ + 317163, + 177483, + 602 + ], + [ + 317163, + 177483, + 612 + ], + [ + 317163, + 177483, + 3442 + ], + [ + 324657, + 184882, + 602 + ], + [ + 324657, + 184882, + 612 + ], + [ + 324657, + 184882, + 3442 + ], + [ + 324843, + 184703, + 602 + ], + [ + 324774, + 184631, + 602 + ], + [ + 325542, + 183891, + 602 + ], + [ + 325611, + 183963, + 602 + ], + [ + 328424, + 181255, + 602 + ], + [ + 288911, + 148046, + 3492 + ], + [ + 282802, + 156786, + 3492 + ], + [ + 287275, + 146884, + 3492 + ], + [ + 288786, + 144779, + 3492 + ], + [ + 290394, + 145896, + 3492 + ], + [ + 279627, + 154543, + 3492 + ], + [ + 285741, + 145795, + 3492 + ], + [ + 288911, + 148046, + 852 + ], + [ + 282802, + 156786, + 852 + ], + [ + 288911, + 148046, + 872 + ], + [ + 290394, + 145896, + 852 + ], + [ + 288786, + 144779, + 852 + ], + [ + 288786, + 144779, + 3392 + ], + [ + 287275, + 146884, + 852 + ], + [ + 287275, + 146884, + 1022 + ], + [ + 287275, + 146884, + 3392 + ], + [ + 285741, + 145795, + 852 + ], + [ + 285741, + 145795, + 1022 + ], + [ + 285741, + 145795, + 3392 + ], + [ + 288907, + 151557, + 3692 + ], + [ + 288911, + 148046, + 3692 + ], + [ + 291397, + 147971, + 3692 + ], + [ + 290602, + 147418, + 3692 + ], + [ + 290394, + 145896, + 3692 + ], + [ + 291247, + 146489, + 3692 + ], + [ + 282802, + 156786, + 3692 + ], + [ + 290368, + 152572, + 3692 + ], + [ + 285895, + 158972, + 3692 + ], + [ + 290368, + 152572, + 872 + ], + [ + 290368, + 152572, + 3482 + ], + [ + 285895, + 158972, + 872 + ], + [ + 285895, + 158972, + 3482 + ], + [ + 292764, + 174709, + 3382 + ], + [ + 286234, + 183959, + 3382 + ], + [ + 287795, + 175352, + 3382 + ], + [ + 289759, + 172580, + 3382 + ], + [ + 283137, + 181760, + 3382 + ], + [ + 287725, + 175302, + 3382 + ], + [ + 286234, + 183959, + 752 + ], + [ + 283137, + 181760, + 752 + ], + [ + 289172, + 161287, + 3482 + ], + [ + 291133, + 158482, + 3482 + ], + [ + 292285, + 149829, + 3482 + ], + [ + 295561, + 152147, + 3482 + ], + [ + 293402, + 155236, + 3482 + ], + [ + 294120, + 179648, + 3392 + ], + [ + 289449, + 186241, + 3392 + ], + [ + 292613, + 178581, + 3392 + ], + [ + 293735, + 174008, + 3392 + ], + [ + 295145, + 175007, + 3392 + ], + [ + 294849, + 175425, + 3392 + ], + [ + 292764, + 174709, + 3392 + ], + [ + 286234, + 183959, + 3392 + ], + [ + 293142, + 174176, + 3392 + ], + [ + 293419, + 173784, + 3392 + ], + [ + 294120, + 179648, + 752 + ], + [ + 289449, + 186241, + 752 + ], + [ + 289449, + 186241, + 762 + ], + [ + 299743, + 178853, + 3472 + ], + [ + 292838, + 188647, + 3472 + ], + [ + 294120, + 179648, + 3472 + ], + [ + 296375, + 176466, + 3472 + ], + [ + 289449, + 186241, + 3472 + ], + [ + 299743, + 178853, + 762 + ], + [ + 292838, + 188647, + 762 + ], + [ + 292838, + 188647, + 772 + ], + [ + 299768, + 178870, + 3482 + ], + [ + 303258, + 177423, + 3482 + ], + [ + 301283, + 180136, + 3482 + ], + [ + 299036, + 183223, + 3482 + ], + [ + 301641, + 176246, + 3482 + ], + [ + 299743, + 178853, + 3482 + ], + [ + 292838, + 188647, + 3482 + ], + [ + 300669, + 184528, + 3482 + ], + [ + 295734, + 190703, + 3482 + ], + [ + 299036, + 183223, + 772 + ], + [ + 300669, + 184528, + 772 + ], + [ + 301283, + 180136, + 772 + ], + [ + 295734, + 190703, + 772 + ], + [ + 297606, + 163114, + 3692 + ], + [ + 297010, + 162788, + 3692 + ], + [ + 297055, + 162724, + 3692 + ], + [ + 306304, + 169098, + 3692 + ], + [ + 297419, + 167823, + 3692 + ], + [ + 294771, + 165948, + 3692 + ], + [ + 303966, + 172337, + 3692 + ], + [ + 297606, + 163114, + 3642 + ], + [ + 306304, + 169098, + 3642 + ], + [ + 297419, + 167823, + 3542 + ], + [ + 303966, + 172337, + 3542 + ], + [ + 295659, + 171292, + 3542 + ], + [ + 295170, + 170939, + 3542 + ], + [ + 301616, + 175592, + 3542 + ], + [ + 297419, + 167823, + 902 + ], + [ + 303966, + 172337, + 902 + ], + [ + 313672, + 195421, + 3402 + ], + [ + 312750, + 196309, + 3402 + ], + [ + 307093, + 187853, + 3402 + ], + [ + 300705, + 194189, + 3402 + ], + [ + 297256, + 191823, + 3402 + ], + [ + 300572, + 192262, + 3402 + ], + [ + 298508, + 190251, + 3402 + ], + [ + 298658, + 190397, + 3402 + ], + [ + 301782, + 193120, + 3402 + ], + [ + 309869, + 199084, + 3402 + ], + [ + 309946, + 199163, + 3402 + ], + [ + 309485, + 199607, + 3402 + ], + [ + 307403, + 200439, + 3402 + ], + [ + 307829, + 200837, + 3402 + ], + [ + 308461, + 200517, + 3402 + ], + [ + 308041, + 201075, + 3402 + ], + [ + 307816, + 200852, + 3402 + ], + [ + 308537, + 200596, + 3402 + ], + [ + 309408, + 199528, + 3402 + ], + [ + 311310, + 197697, + 3402 + ], + [ + 314159, + 194917, + 3402 + ], + [ + 310813, + 198175, + 3402 + ], + [ + 310889, + 198254, + 3402 + ], + [ + 311386, + 197776, + 3402 + ], + [ + 312246, + 196795, + 3402 + ], + [ + 312826, + 196388, + 3402 + ], + [ + 312322, + 196874, + 3402 + ], + [ + 314253, + 195014, + 3402 + ], + [ + 313748, + 195500, + 3402 + ], + [ + 307093, + 187853, + 762 + ], + [ + 314159, + 194917, + 762 + ], + [ + 301782, + 193120, + 762 + ], + [ + 300572, + 192262, + 762 + ], + [ + 298658, + 190397, + 762 + ], + [ + 298508, + 190251, + 762 + ], + [ + 297256, + 191823, + 762 + ], + [ + 300705, + 194189, + 762 + ], + [ + 307403, + 200439, + 762 + ], + [ + 307829, + 200837, + 762 + ], + [ + 307816, + 200852, + 762 + ], + [ + 308041, + 201075, + 762 + ], + [ + 308537, + 200596, + 762 + ], + [ + 308461, + 200517, + 762 + ], + [ + 309408, + 199528, + 762 + ], + [ + 309485, + 199607, + 762 + ], + [ + 309946, + 199163, + 762 + ], + [ + 309869, + 199084, + 762 + ], + [ + 310813, + 198175, + 762 + ], + [ + 310889, + 198254, + 762 + ], + [ + 311386, + 197776, + 762 + ], + [ + 311310, + 197697, + 762 + ], + [ + 312246, + 196795, + 762 + ], + [ + 312322, + 196874, + 762 + ], + [ + 312826, + 196388, + 762 + ], + [ + 312750, + 196309, + 762 + ], + [ + 313672, + 195421, + 762 + ], + [ + 313748, + 195500, + 762 + ], + [ + 314253, + 195014, + 762 + ], + [ + 299111, + 159430, + 3642 + ], + [ + 308584, + 165940, + 3642 + ], + [ + 299236, + 160814, + 3642 + ], + [ + 298500, + 160292, + 3642 + ], + [ + 299111, + 159430, + 912 + ], + [ + 308584, + 165940, + 912 + ], + [ + 299111, + 159430, + 3452 + ], + [ + 308584, + 165940, + 3452 + ], + [ + 313000, + 159823, + 3452 + ], + [ + 311127, + 162417, + 3452 + ], + [ + 308988, + 156802, + 3452 + ], + [ + 313059, + 159741, + 3452 + ], + [ + 310952, + 162660, + 3452 + ], + [ + 304385, + 157918, + 3452 + ], + [ + 306492, + 155000, + 3452 + ], + [ + 301498, + 155806, + 3452 + ], + [ + 308744, + 165718, + 3452 + ], + [ + 299036, + 159377, + 3452 + ], + [ + 298942, + 159308, + 3452 + ], + [ + 313000, + 159823, + 3352 + ], + [ + 311127, + 162417, + 3352 + ], + [ + 310485, + 184487, + 4512 + ], + [ + 317462, + 191694, + 4512 + ], + [ + 317294, + 191858, + 4512 + ], + [ + 307093, + 187853, + 4512 + ], + [ + 314159, + 194917, + 4512 + ], + [ + 310485, + 184487, + 662 + ], + [ + 317462, + 191694, + 662 + ], + [ + 310485, + 184487, + 3412 + ], + [ + 317462, + 191694, + 3412 + ], + [ + 307093, + 187853, + 662 + ], + [ + 314159, + 194917, + 662 + ], + [ + 317294, + 191858, + 662 + ], + [ + 314327, + 182023, + 3412 + ], + [ + 320784, + 188453, + 3412 + ], + [ + 312691, + 180394, + 3412 + ], + [ + 309519, + 183489, + 3412 + ], + [ + 314327, + 182023, + 642 + ], + [ + 320784, + 188453, + 642 + ], + [ + 312691, + 180394, + 642 + ], + [ + 309519, + 183489, + 642 + ], + [ + 310485, + 184487, + 642 + ], + [ + 317462, + 191694, + 642 + ], + [ + 324384, + 184979, + 3442 + ], + [ + 316408, + 179960, + 3442 + ], + [ + 315544, + 179089, + 3442 + ], + [ + 320784, + 188453, + 3442 + ], + [ + 314327, + 182023, + 3442 + ], + [ + 323662, + 185680, + 3442 + ], + [ + 320878, + 188549, + 3442 + ], + [ + 323746, + 185766, + 3442 + ], + [ + 324468, + 185065, + 3442 + ], + [ + 315544, + 179089, + 612 + ], + [ + 316408, + 179960, + 612 + ], + [ + 314327, + 182023, + 612 + ], + [ + 320784, + 188453, + 612 + ], + [ + 320878, + 188549, + 612 + ], + [ + 323746, + 185766, + 612 + ], + [ + 323662, + 185680, + 612 + ], + [ + 324384, + 184979, + 612 + ], + [ + 324468, + 185065, + 612 + ], + [ + 255553, + 149470, + 6002 + ], + [ + 249682, + 157867, + 6002 + ], + [ + 250776, + 148722, + 6002 + ], + [ + 252027, + 146963, + 6002 + ], + [ + 246297, + 155387, + 6002 + ], + [ + 255553, + 149470, + 632 + ], + [ + 249682, + 157867, + 632 + ], + [ + 249682, + 157867, + 642 + ], + [ + 255553, + 149470, + 5062 + ], + [ + 249682, + 157867, + 5062 + ], + [ + 250776, + 148722, + 3492 + ], + [ + 246297, + 155387, + 632 + ], + [ + 246297, + 155387, + 3492 + ], + [ + 259601, + 152388, + 5062 + ], + [ + 261957, + 148485, + 5062 + ], + [ + 262285, + 148725, + 5062 + ], + [ + 253525, + 160683, + 5062 + ], + [ + 258146, + 145761, + 5062 + ], + [ + 259601, + 152388, + 642 + ], + [ + 253525, + 160683, + 642 + ], + [ + 259601, + 152388, + 732 + ], + [ + 259601, + 152388, + 3212 + ], + [ + 253525, + 160683, + 3212 + ], + [ + 262285, + 148725, + 642 + ], + [ + 262285, + 148725, + 732 + ], + [ + 262285, + 148725, + 3212 + ], + [ + 261957, + 148485, + 642 + ], + [ + 261957, + 148485, + 3212 + ], + [ + 261558, + 155572, + 3212 + ], + [ + 262506, + 154431, + 3212 + ], + [ + 259635, + 157930, + 3212 + ], + [ + 256062, + 162600, + 3212 + ], + [ + 261558, + 155572, + 642 + ], + [ + 259635, + 157930, + 642 + ], + [ + 262506, + 154431, + 642 + ], + [ + 262506, + 154431, + 732 + ], + [ + 256062, + 162600, + 642 + ], + [ + 267792, + 156450, + 3202 + ], + [ + 260949, + 166074, + 3202 + ], + [ + 263965, + 158748, + 3202 + ], + [ + 266311, + 155371, + 3202 + ], + [ + 257683, + 163769, + 3202 + ], + [ + 262287, + 157536, + 3202 + ], + [ + 262204, + 157476, + 3202 + ], + [ + 267792, + 156450, + 672 + ], + [ + 260949, + 166074, + 672 + ], + [ + 260949, + 166074, + 682 + ], + [ + 257683, + 163769, + 672 + ], + [ + 263821, + 152709, + 3212 + ], + [ + 265460, + 150560, + 3212 + ], + [ + 265672, + 150282, + 3212 + ], + [ + 263454, + 146531, + 3212 + ], + [ + 266773, + 148837, + 3212 + ], + [ + 262531, + 154401, + 3212 + ], + [ + 265460, + 150560, + 732 + ], + [ + 263821, + 152709, + 732 + ], + [ + 265672, + 150282, + 732 + ], + [ + 266773, + 148837, + 732 + ], + [ + 266773, + 148837, + 742 + ], + [ + 263454, + 146531, + 732 + ], + [ + 262531, + 154401, + 732 + ], + [ + 270365, + 159537, + 3382 + ], + [ + 264082, + 168286, + 3382 + ], + [ + 268788, + 158399, + 3382 + ], + [ + 267792, + 156450, + 3382 + ], + [ + 269351, + 157584, + 3382 + ], + [ + 260949, + 166074, + 3382 + ], + [ + 270365, + 159537, + 682 + ], + [ + 264082, + 168286, + 682 + ], + [ + 264082, + 168286, + 712 + ], + [ + 270365, + 159537, + 3372 + ], + [ + 264082, + 168286, + 3372 + ], + [ + 274059, + 160802, + 3372 + ], + [ + 267277, + 170541, + 3372 + ], + [ + 272044, + 160688, + 3372 + ], + [ + 272689, + 159744, + 3372 + ], + [ + 270580, + 159692, + 3372 + ], + [ + 270638, + 159611, + 3372 + ], + [ + 270451, + 159599, + 3372 + ], + [ + 274059, + 160802, + 712 + ], + [ + 267277, + 170541, + 712 + ], + [ + 267277, + 170541, + 732 + ], + [ + 274059, + 160802, + 3312 + ], + [ + 267277, + 170541, + 3312 + ], + [ + 276535, + 160850, + 3312 + ], + [ + 275055, + 162889, + 3312 + ], + [ + 273287, + 165325, + 3312 + ], + [ + 274359, + 160424, + 3312 + ], + [ + 274992, + 159626, + 3312 + ], + [ + 274887, + 166422, + 3312 + ], + [ + 270371, + 172725, + 3312 + ], + [ + 274887, + 166422, + 3302 + ], + [ + 270371, + 172725, + 732 + ], + [ + 270371, + 172725, + 3302 + ], + [ + 280410, + 165385, + 3302 + ], + [ + 273617, + 175016, + 3302 + ], + [ + 278215, + 165241, + 3302 + ], + [ + 278937, + 164294, + 3302 + ], + [ + 276699, + 164113, + 3302 + ], + [ + 273617, + 175016, + 732 + ], + [ + 283719, + 167628, + 3302 + ], + [ + 276879, + 177318, + 3302 + ], + [ + 282042, + 166469, + 3302 + ], + [ + 281125, + 165914, + 3302 + ], + [ + 281185, + 165834, + 3302 + ], + [ + 276879, + 177318, + 732 + ], + [ + 286221, + 170789, + 3482 + ], + [ + 279959, + 179504, + 3482 + ], + [ + 284627, + 169698, + 3482 + ], + [ + 284645, + 169673, + 3482 + ], + [ + 276879, + 177318, + 3482 + ], + [ + 283584, + 168997, + 3482 + ], + [ + 283719, + 167628, + 3482 + ], + [ + 284266, + 168007, + 3482 + ], + [ + 286221, + 170789, + 722 + ], + [ + 279959, + 179504, + 722 + ], + [ + 279959, + 179504, + 742 + ], + [ + 283719, + 167628, + 722 + ], + [ + 276879, + 177318, + 722 + ], + [ + 287725, + 175302, + 3572 + ], + [ + 283137, + 181760, + 3572 + ], + [ + 286184, + 174211, + 3572 + ], + [ + 286221, + 170789, + 3572 + ], + [ + 288447, + 171017, + 3572 + ], + [ + 279959, + 179504, + 3572 + ], + [ + 286858, + 169891, + 3572 + ], + [ + 287725, + 175302, + 742 + ], + [ + 283137, + 181760, + 742 + ], + [ + 243206, + 140143, + 3472 + ], + [ + 241698, + 137373, + 3472 + ], + [ + 244041, + 139015, + 3472 + ], + [ + 237003, + 148528, + 3472 + ], + [ + 240434, + 139151, + 3472 + ], + [ + 233982, + 146308, + 3472 + ], + [ + 243206, + 140143, + 542 + ], + [ + 237003, + 148528, + 542 + ], + [ + 237003, + 148528, + 562 + ], + [ + 233982, + 146308, + 542 + ], + [ + 246198, + 142342, + 3472 + ], + [ + 240105, + 150808, + 3472 + ], + [ + 246198, + 142342, + 562 + ], + [ + 240105, + 150808, + 562 + ], + [ + 240105, + 150808, + 572 + ], + [ + 249189, + 144540, + 3482 + ], + [ + 243208, + 153088, + 3482 + ], + [ + 243152, + 153047, + 3482 + ], + [ + 240105, + 150808, + 3482 + ], + [ + 246198, + 142342, + 3482 + ], + [ + 249189, + 144540, + 572 + ], + [ + 243208, + 153088, + 572 + ], + [ + 243208, + 153088, + 602 + ], + [ + 243152, + 153047, + 572 + ], + [ + 249067, + 147507, + 3492 + ], + [ + 243208, + 153088, + 3492 + ], + [ + 251722, + 144918, + 3492 + ], + [ + 251072, + 145832, + 3492 + ], + [ + 250531, + 145447, + 3492 + ], + [ + 249854, + 143589, + 3492 + ], + [ + 249189, + 144540, + 3492 + ], + [ + 250776, + 148722, + 602 + ], + [ + 246297, + 155387, + 602 + ], + [ + 271791, + 135405, + 4442 + ], + [ + 272838, + 133968, + 4442 + ], + [ + 273004, + 136289, + 4442 + ], + [ + 274068, + 134829, + 4442 + ], + [ + 267552, + 130267, + 4442 + ], + [ + 269871, + 138042, + 4442 + ], + [ + 264198, + 134874, + 4442 + ], + [ + 269483, + 138574, + 4442 + ], + [ + 269777, + 138171, + 4442 + ], + [ + 269836, + 138090, + 4442 + ], + [ + 271791, + 135405, + 1062 + ], + [ + 269871, + 138042, + 1062 + ], + [ + 273004, + 136289, + 1062 + ], + [ + 269777, + 138171, + 1062 + ], + [ + 269836, + 138090, + 1062 + ], + [ + 288327, + 137900, + 3582 + ], + [ + 283106, + 139141, + 3582 + ], + [ + 288245, + 137842, + 3582 + ], + [ + 285377, + 135915, + 3582 + ], + [ + 285423, + 135849, + 3582 + ], + [ + 290251, + 142670, + 3582 + ], + [ + 293331, + 141434, + 3582 + ], + [ + 292843, + 144470, + 3582 + ], + [ + 289536, + 143700, + 3582 + ], + [ + 294409, + 142215, + 3582 + ], + [ + 293424, + 141500, + 3582 + ], + [ + 293343, + 141443, + 3582 + ], + [ + 288327, + 137900, + 952 + ], + [ + 293331, + 141434, + 952 + ], + [ + 288245, + 137842, + 952 + ], + [ + 285423, + 135849, + 952 + ], + [ + 285377, + 135915, + 952 + ], + [ + 283106, + 139141, + 952 + ], + [ + 283106, + 139141, + 1022 + ], + [ + 283106, + 139141, + 3392 + ], + [ + 289536, + 143700, + 952 + ], + [ + 289536, + 143700, + 3392 + ], + [ + 293424, + 141500, + 952 + ], + [ + 293343, + 141443, + 952 + ], + [ + 279265, + 141197, + 3772 + ], + [ + 273239, + 150030, + 3772 + ], + [ + 278332, + 140535, + 3772 + ], + [ + 269953, + 147709, + 3772 + ], + [ + 276086, + 138940, + 3772 + ], + [ + 269921, + 147686, + 3772 + ], + [ + 279265, + 141197, + 852 + ], + [ + 273239, + 150030, + 852 + ], + [ + 279265, + 141197, + 902 + ], + [ + 279265, + 141197, + 1022 + ], + [ + 279265, + 141197, + 3392 + ], + [ + 279265, + 141197, + 3662 + ], + [ + 273239, + 150030, + 3662 + ], + [ + 278332, + 140535, + 852 + ], + [ + 278332, + 140535, + 1022 + ], + [ + 278332, + 140535, + 3392 + ], + [ + 276086, + 138940, + 852 + ], + [ + 269921, + 147686, + 852 + ], + [ + 282413, + 143432, + 3392 + ], + [ + 278842, + 139800, + 3392 + ], + [ + 281394, + 141573, + 3392 + ], + [ + 281394, + 141573, + 1022 + ], + [ + 278842, + 139800, + 1022 + ], + [ + 282413, + 143432, + 1022 + ], + [ + 266866, + 148715, + 4602 + ], + [ + 263454, + 146531, + 4602 + ], + [ + 267637, + 147718, + 4602 + ], + [ + 266773, + 148837, + 4602 + ], + [ + 271984, + 141966, + 4602 + ], + [ + 268012, + 140591, + 4602 + ], + [ + 268771, + 139552, + 4602 + ], + [ + 266866, + 148715, + 742 + ], + [ + 267637, + 147718, + 742 + ], + [ + 271984, + 141966, + 742 + ], + [ + 268771, + 139552, + 742 + ], + [ + 268012, + 140591, + 742 + ], + [ + 282413, + 143432, + 3662 + ], + [ + 276392, + 152258, + 3662 + ], + [ + 282413, + 143432, + 902 + ], + [ + 282429, + 146923, + 3692 + ], + [ + 279627, + 154543, + 3692 + ], + [ + 276392, + 152258, + 3692 + ], + [ + 282413, + 143432, + 3692 + ], + [ + 283157, + 145876, + 3692 + ], + [ + 283168, + 147437, + 3692 + ], + [ + 285741, + 145795, + 3692 + ], + [ + 283896, + 146390, + 3692 + ], + [ + 285741, + 145795, + 842 + ], + [ + 279627, + 154543, + 842 + ], + [ + 282413, + 143432, + 842 + ], + [ + 276392, + 152258, + 842 + ], + [ + 283157, + 145876, + 842 + ], + [ + 282429, + 146923, + 842 + ], + [ + 283896, + 146390, + 842 + ], + [ + 283168, + 147437, + 842 + ], + [ + 405917, + 99519, + 9022 + ], + [ + 408923, + 102395, + 9022 + ], + [ + 408845, + 102478, + 9022 + ], + [ + 405841, + 106035, + 9022 + ], + [ + 405800, + 99642, + 9022 + ], + [ + 404087, + 98098, + 9022 + ], + [ + 400383, + 95053, + 9022 + ], + [ + 400456, + 94957, + 9022 + ], + [ + 397473, + 98888, + 9022 + ], + [ + 409113, + 102730, + 9022 + ], + [ + 400456, + 94957, + 732 + ], + [ + 397473, + 98888, + 732 + ], + [ + 397473, + 98888, + 3372 + ], + [ + 405841, + 106035, + 732 + ], + [ + 405841, + 106035, + 752 + ], + [ + 405841, + 106035, + 3372 + ], + [ + 409113, + 102730, + 732 + ], + [ + 408845, + 102478, + 732 + ], + [ + 413870, + 97872, + 4142 + ], + [ + 413559, + 98178, + 4142 + ], + [ + 410291, + 94649, + 4142 + ], + [ + 407900, + 97382, + 4142 + ], + [ + 407871, + 97410, + 4142 + ], + [ + 407754, + 97287, + 4142 + ], + [ + 411088, + 100076, + 4142 + ], + [ + 411000, + 100173, + 4142 + ], + [ + 411371, + 100331, + 4142 + ], + [ + 413870, + 97872, + 652 + ], + [ + 413559, + 98178, + 652 + ], + [ + 411088, + 100076, + 652 + ], + [ + 411371, + 100331, + 652 + ], + [ + 418954, + 79038, + 4122 + ], + [ + 426367, + 84251, + 4122 + ], + [ + 419920, + 84639, + 4122 + ], + [ + 416639, + 82337, + 4122 + ], + [ + 424238, + 87669, + 4122 + ], + [ + 426552, + 85392, + 4122 + ], + [ + 427122, + 84831, + 4122 + ], + [ + 424238, + 87669, + 652 + ], + [ + 426552, + 85392, + 652 + ], + [ + 427122, + 84831, + 652 + ], + [ + 406914, + 70571, + 4302 + ], + [ + 404590, + 73882, + 4302 + ], + [ + 401530, + 71735, + 4302 + ], + [ + 403855, + 68420, + 4302 + ], + [ + 403855, + 68420, + 4292 + ], + [ + 401530, + 71735, + 4292 + ], + [ + 409973, + 72722, + 4332 + ], + [ + 407652, + 76031, + 4332 + ], + [ + 404590, + 73882, + 4332 + ], + [ + 406914, + 70571, + 4332 + ], + [ + 409973, + 72722, + 4232 + ], + [ + 407652, + 76031, + 4232 + ], + [ + 413033, + 74874, + 4232 + ], + [ + 410714, + 78179, + 4232 + ], + [ + 413033, + 74874, + 4222 + ], + [ + 410714, + 78179, + 4222 + ], + [ + 409973, + 72722, + 632 + ], + [ + 407652, + 76031, + 632 + ], + [ + 412302, + 92558, + 4262 + ], + [ + 415940, + 95834, + 4262 + ], + [ + 413870, + 97872, + 4262 + ], + [ + 410291, + 94649, + 4262 + ], + [ + 415940, + 95834, + 642 + ], + [ + 410291, + 94649, + 642 + ], + [ + 413870, + 97872, + 642 + ], + [ + 416091, + 77025, + 4222 + ], + [ + 413774, + 80327, + 4222 + ], + [ + 416091, + 77025, + 4132 + ], + [ + 413774, + 80327, + 4132 + ], + [ + 414314, + 90467, + 4272 + ], + [ + 418011, + 93796, + 4272 + ], + [ + 415940, + 95834, + 4272 + ], + [ + 412302, + 92558, + 4272 + ], + [ + 418011, + 93796, + 642 + ], + [ + 418954, + 79038, + 4132 + ], + [ + 416639, + 82337, + 4132 + ], + [ + 418954, + 79038, + 632 + ], + [ + 416639, + 82337, + 632 + ], + [ + 384643, + 76680, + 4262 + ], + [ + 382678, + 79467, + 4262 + ], + [ + 379970, + 74992, + 4262 + ], + [ + 380006, + 74941, + 4262 + ], + [ + 380722, + 73916, + 4262 + ], + [ + 378838, + 76596, + 4262 + ], + [ + 378738, + 76596, + 4262 + ], + [ + 384643, + 76680, + 682 + ], + [ + 382678, + 79467, + 4182 + ], + [ + 380722, + 73916, + 682 + ], + [ + 378738, + 76596, + 4182 + ], + [ + 386659, + 73820, + 4282 + ], + [ + 384643, + 76680, + 4282 + ], + [ + 382497, + 71375, + 4282 + ], + [ + 382727, + 71047, + 4282 + ], + [ + 380722, + 73916, + 4282 + ], + [ + 386659, + 73820, + 4262 + ], + [ + 382727, + 71047, + 4262 + ], + [ + 388676, + 70959, + 4262 + ], + [ + 384732, + 68178, + 4262 + ], + [ + 386659, + 73820, + 682 + ], + [ + 388676, + 70959, + 4212 + ], + [ + 384732, + 68178, + 4212 + ], + [ + 382727, + 71047, + 682 + ], + [ + 390692, + 68098, + 4212 + ], + [ + 384784, + 68103, + 4212 + ], + [ + 386736, + 65309, + 4212 + ], + [ + 388676, + 70959, + 672 + ], + [ + 384732, + 68178, + 672 + ], + [ + 400796, + 66269, + 4302 + ], + [ + 398468, + 69586, + 4302 + ], + [ + 395406, + 67438, + 4302 + ], + [ + 397736, + 64117, + 4302 + ], + [ + 400796, + 66269, + 4292 + ], + [ + 398468, + 69586, + 4292 + ], + [ + 397736, + 64117, + 642 + ], + [ + 397736, + 64117, + 3942 + ], + [ + 395406, + 67438, + 642 + ], + [ + 395406, + 67438, + 3942 + ], + [ + 392563, + 65443, + 3942 + ], + [ + 394565, + 62132, + 3942 + ], + [ + 394680, + 61968, + 3942 + ], + [ + 392348, + 65292, + 3942 + ], + [ + 394565, + 62132, + 652 + ], + [ + 392348, + 65292, + 652 + ], + [ + 362805, + 59688, + 3182 + ], + [ + 365314, + 59725, + 3182 + ], + [ + 364394, + 61047, + 3182 + ], + [ + 354119, + 51666, + 3182 + ], + [ + 349519, + 53341, + 3182 + ], + [ + 349436, + 53073, + 3182 + ], + [ + 359019, + 59913, + 3182 + ], + [ + 360434, + 58039, + 3182 + ], + [ + 362686, + 59859, + 3182 + ], + [ + 354119, + 51666, + 342 + ], + [ + 365314, + 59725, + 342 + ], + [ + 354119, + 51666, + 3172 + ], + [ + 365314, + 59725, + 3172 + ], + [ + 349436, + 53073, + 342 + ], + [ + 349519, + 53341, + 342 + ], + [ + 359019, + 59913, + 342 + ], + [ + 360434, + 58039, + 342 + ], + [ + 362805, + 59688, + 342 + ], + [ + 362686, + 59859, + 342 + ], + [ + 364394, + 61047, + 342 + ], + [ + 372515, + 62210, + 3172 + ], + [ + 371615, + 63504, + 3172 + ], + [ + 369304, + 62501, + 3172 + ], + [ + 359675, + 49981, + 3172 + ], + [ + 367241, + 55868, + 3172 + ], + [ + 365988, + 57669, + 3172 + ], + [ + 371331, + 63912, + 3172 + ], + [ + 371615, + 63504, + 332 + ], + [ + 371615, + 63504, + 3102 + ], + [ + 359675, + 49981, + 332 + ], + [ + 354119, + 51666, + 332 + ], + [ + 365314, + 59725, + 332 + ], + [ + 369304, + 62501, + 332 + ], + [ + 369304, + 62501, + 522 + ], + [ + 369304, + 62501, + 3102 + ], + [ + 371331, + 63912, + 332 + ], + [ + 371331, + 63912, + 522 + ], + [ + 371331, + 63912, + 3102 + ], + [ + 359792, + 64490, + 2902 + ], + [ + 359744, + 64561, + 2902 + ], + [ + 359559, + 64329, + 2902 + ], + [ + 356619, + 62423, + 2902 + ], + [ + 360748, + 62613, + 2902 + ], + [ + 357075, + 60038, + 2902 + ], + [ + 355806, + 61882, + 2902 + ], + [ + 355988, + 61617, + 2902 + ], + [ + 356045, + 61535, + 2902 + ], + [ + 359688, + 64644, + 2902 + ], + [ + 359610, + 64760, + 2902 + ], + [ + 356518, + 62628, + 2902 + ], + [ + 359792, + 64490, + 452 + ], + [ + 359744, + 64561, + 452 + ], + [ + 359559, + 64329, + 452 + ], + [ + 360748, + 62613, + 452 + ], + [ + 357075, + 60038, + 452 + ], + [ + 356045, + 61535, + 452 + ], + [ + 369100, + 57162, + 3182 + ], + [ + 367241, + 55868, + 3182 + ], + [ + 369207, + 57009, + 3182 + ], + [ + 371945, + 56696, + 3182 + ], + [ + 374095, + 60410, + 3182 + ], + [ + 373456, + 54525, + 3182 + ], + [ + 375135, + 58915, + 3182 + ], + [ + 365076, + 48582, + 3182 + ], + [ + 359675, + 49981, + 3182 + ], + [ + 365016, + 48381, + 3182 + ], + [ + 397818, + 99643, + 3372 + ], + [ + 397380, + 99175, + 3372 + ], + [ + 397311, + 99102, + 3372 + ], + [ + 405045, + 105946, + 3372 + ], + [ + 395332, + 100813, + 3372 + ], + [ + 395909, + 101430, + 3372 + ], + [ + 394810, + 101263, + 3372 + ], + [ + 392851, + 102605, + 3372 + ], + [ + 391890, + 98542, + 3372 + ], + [ + 393822, + 103259, + 3372 + ], + [ + 390214, + 100111, + 3372 + ], + [ + 390141, + 100179, + 3372 + ], + [ + 401648, + 109135, + 3372 + ], + [ + 401074, + 109690, + 3372 + ], + [ + 404305, + 106662, + 3372 + ], + [ + 401940, + 109437, + 3372 + ], + [ + 404583, + 106949, + 3372 + ], + [ + 402128, + 109631, + 3372 + ], + [ + 404736, + 107108, + 3372 + ], + [ + 405764, + 106113, + 3372 + ], + [ + 405323, + 106234, + 3372 + ], + [ + 405476, + 106392, + 3372 + ], + [ + 393822, + 103259, + 752 + ], + [ + 404736, + 107108, + 752 + ], + [ + 404583, + 106949, + 752 + ], + [ + 404305, + 106662, + 752 + ], + [ + 405045, + 105946, + 752 + ], + [ + 405323, + 106234, + 752 + ], + [ + 405476, + 106392, + 752 + ], + [ + 405764, + 106113, + 752 + ], + [ + 383888, + 110994, + 6982 + ], + [ + 382717, + 109743, + 6982 + ], + [ + 392269, + 119285, + 6982 + ], + [ + 391801, + 119611, + 6982 + ], + [ + 388341, + 122997, + 6982 + ], + [ + 388411, + 123069, + 6982 + ], + [ + 389224, + 122147, + 6982 + ], + [ + 390918, + 120460, + 6982 + ], + [ + 389293, + 122219, + 6982 + ], + [ + 391015, + 120561, + 6982 + ], + [ + 391898, + 119711, + 6982 + ], + [ + 392303, + 119321, + 6982 + ], + [ + 392269, + 119285, + 692 + ], + [ + 383888, + 110994, + 6112 + ], + [ + 392269, + 119285, + 6112 + ], + [ + 388411, + 123069, + 692 + ], + [ + 388341, + 122997, + 692 + ], + [ + 389224, + 122147, + 692 + ], + [ + 389293, + 122219, + 692 + ], + [ + 391015, + 120561, + 692 + ], + [ + 390918, + 120460, + 692 + ], + [ + 391801, + 119611, + 692 + ], + [ + 391898, + 119711, + 692 + ], + [ + 392303, + 119321, + 692 + ], + [ + 395035, + 116259, + 6112 + ], + [ + 395202, + 116431, + 6112 + ], + [ + 394437, + 115644, + 6112 + ], + [ + 394882, + 116102, + 6112 + ], + [ + 394735, + 115951, + 6112 + ], + [ + 388179, + 106978, + 6112 + ], + [ + 395979, + 114144, + 6112 + ], + [ + 395753, + 114364, + 6112 + ], + [ + 388179, + 106978, + 5732 + ], + [ + 395979, + 114144, + 5732 + ], + [ + 383888, + 110994, + 312 + ], + [ + 392269, + 119285, + 312 + ], + [ + 416325, + 88376, + 4302 + ], + [ + 420082, + 91759, + 4302 + ], + [ + 418011, + 93796, + 4302 + ], + [ + 414314, + 90467, + 4302 + ], + [ + 416325, + 88376, + 642 + ], + [ + 420082, + 91759, + 642 + ], + [ + 420082, + 91759, + 652 + ], + [ + 416325, + 88376, + 4272 + ], + [ + 420082, + 91759, + 4272 + ], + [ + 418337, + 86285, + 4272 + ], + [ + 422153, + 89721, + 4272 + ], + [ + 422153, + 89721, + 652 + ], + [ + 419920, + 84639, + 4332 + ], + [ + 424238, + 87669, + 4332 + ], + [ + 422153, + 89721, + 4332 + ], + [ + 418337, + 86285, + 4332 + ], + [ + 432960, + 45174, + 4292 + ], + [ + 433299, + 45560, + 4292 + ], + [ + 433224, + 45625, + 4292 + ], + [ + 431114, + 42618, + 4292 + ], + [ + 431596, + 42966, + 4292 + ], + [ + 431177, + 43337, + 4292 + ], + [ + 431211, + 42531, + 4292 + ], + [ + 426108, + 36938, + 4292 + ], + [ + 426615, + 37167, + 4292 + ], + [ + 428745, + 39942, + 4292 + ], + [ + 428609, + 39425, + 4292 + ], + [ + 429015, + 39704, + 4292 + ], + [ + 428699, + 39346, + 4292 + ], + [ + 423096, + 34193, + 4292 + ], + [ + 423016, + 34104, + 4292 + ], + [ + 423443, + 33725, + 4292 + ], + [ + 418073, + 38651, + 4292 + ], + [ + 426370, + 36707, + 4292 + ], + [ + 426679, + 37057, + 4292 + ], + [ + 426590, + 37136, + 4292 + ], + [ + 421732, + 50614, + 4292 + ], + [ + 421861, + 50501, + 4292 + ], + [ + 422432, + 51415, + 4292 + ], + [ + 420131, + 36824, + 4292 + ], + [ + 426066, + 36891, + 4292 + ], + [ + 423820, + 34152, + 4292 + ], + [ + 423723, + 34238, + 4292 + ], + [ + 422782, + 34472, + 4292 + ], + [ + 427142, + 50939, + 4292 + ], + [ + 424720, + 49416, + 4292 + ], + [ + 422929, + 34341, + 4292 + ], + [ + 414465, + 41853, + 4292 + ], + [ + 421365, + 49971, + 4292 + ], + [ + 415139, + 49105, + 4292 + ], + [ + 417993, + 38561, + 4292 + ], + [ + 420052, + 36734, + 4292 + ], + [ + 413959, + 42142, + 4292 + ], + [ + 414385, + 41763, + 4292 + ], + [ + 410458, + 38548, + 4292 + ], + [ + 413284, + 48515, + 4292 + ], + [ + 410165, + 38247, + 4292 + ], + [ + 410332, + 38419, + 4292 + ], + [ + 403840, + 38847, + 4292 + ], + [ + 408747, + 36792, + 4292 + ], + [ + 403722, + 38422, + 4292 + ], + [ + 403661, + 38201, + 4292 + ], + [ + 414011, + 49259, + 4292 + ], + [ + 415014, + 49223, + 4292 + ], + [ + 419208, + 52341, + 4292 + ], + [ + 432863, + 45259, + 4292 + ], + [ + 426131, + 51031, + 4292 + ], + [ + 433141, + 45698, + 4292 + ], + [ + 432960, + 45174, + 742 + ], + [ + 433299, + 45560, + 742 + ], + [ + 432863, + 45259, + 742 + ], + [ + 431177, + 43337, + 742 + ], + [ + 431596, + 42966, + 742 + ], + [ + 431211, + 42531, + 742 + ], + [ + 431114, + 42618, + 742 + ], + [ + 428745, + 39942, + 742 + ], + [ + 429015, + 39704, + 742 + ], + [ + 428699, + 39346, + 742 + ], + [ + 428609, + 39425, + 742 + ], + [ + 426615, + 37167, + 742 + ], + [ + 426590, + 37136, + 742 + ], + [ + 426679, + 37057, + 742 + ], + [ + 426370, + 36707, + 742 + ], + [ + 426108, + 36938, + 742 + ], + [ + 426066, + 36891, + 742 + ], + [ + 423723, + 34238, + 742 + ], + [ + 423820, + 34152, + 742 + ], + [ + 423443, + 33725, + 742 + ], + [ + 423016, + 34104, + 742 + ], + [ + 423096, + 34193, + 742 + ], + [ + 422929, + 34341, + 742 + ], + [ + 422782, + 34472, + 742 + ], + [ + 420131, + 36824, + 742 + ], + [ + 420052, + 36734, + 742 + ], + [ + 417993, + 38561, + 742 + ], + [ + 418073, + 38651, + 742 + ], + [ + 414465, + 41853, + 742 + ], + [ + 414385, + 41763, + 742 + ], + [ + 413959, + 42142, + 742 + ], + [ + 410458, + 38548, + 742 + ], + [ + 410332, + 38419, + 742 + ], + [ + 410165, + 38247, + 742 + ], + [ + 408747, + 36792, + 742 + ], + [ + 403661, + 38201, + 742 + ], + [ + 403722, + 38422, + 742 + ], + [ + 403840, + 38847, + 742 + ], + [ + 413284, + 48515, + 742 + ], + [ + 414011, + 49259, + 742 + ], + [ + 415014, + 49223, + 742 + ], + [ + 415139, + 49105, + 742 + ], + [ + 433224, + 45625, + 742 + ], + [ + 377821, + 86359, + 4182 + ], + [ + 378153, + 77385, + 4182 + ], + [ + 374242, + 83471, + 4182 + ], + [ + 373810, + 83134, + 4182 + ], + [ + 377706, + 86522, + 4182 + ], + [ + 377802, + 87185, + 4182 + ], + [ + 377918, + 87064, + 4182 + ], + [ + 378076, + 86899, + 4182 + ], + [ + 382678, + 79467, + 572 + ], + [ + 378738, + 76596, + 572 + ], + [ + 373810, + 83134, + 572 + ], + [ + 374242, + 83471, + 572 + ], + [ + 377802, + 87185, + 572 + ], + [ + 377918, + 87064, + 572 + ], + [ + 378076, + 86899, + 572 + ], + [ + 377706, + 86522, + 572 + ], + [ + 374379, + 67423, + 3102 + ], + [ + 377489, + 67592, + 3102 + ], + [ + 376554, + 68936, + 3102 + ], + [ + 371346, + 68158, + 3102 + ], + [ + 373034, + 69360, + 3102 + ], + [ + 370850, + 68928, + 3102 + ], + [ + 367278, + 65413, + 3102 + ], + [ + 371160, + 68032, + 3102 + ], + [ + 372674, + 70180, + 3102 + ], + [ + 373163, + 69450, + 3102 + ], + [ + 367278, + 65413, + 522 + ], + [ + 393822, + 103259, + 5732 + ], + [ + 388358, + 106810, + 5732 + ], + [ + 392851, + 102605, + 5732 + ], + [ + 397371, + 112791, + 5732 + ], + [ + 396090, + 114036, + 5732 + ], + [ + 401074, + 109690, + 5732 + ], + [ + 400872, + 109886, + 5732 + ], + [ + 397669, + 113097, + 5732 + ], + [ + 401107, + 110618, + 5732 + ], + [ + 397816, + 113248, + 5732 + ], + [ + 397969, + 113406, + 5732 + ], + [ + 398136, + 113578, + 5732 + ], + [ + 401142, + 110654, + 5732 + ], + [ + 401164, + 110188, + 5732 + ], + [ + 401352, + 110382, + 5732 + ], + [ + 393822, + 103259, + 112 + ], + [ + 401074, + 109690, + 112 + ], + [ + 392851, + 102605, + 112 + ], + [ + 388179, + 106978, + 112 + ], + [ + 395979, + 114144, + 112 + ], + [ + 401142, + 110654, + 112 + ], + [ + 401107, + 110618, + 112 + ], + [ + 346747, + 54021, + 3432 + ], + [ + 340090, + 55962, + 3432 + ], + [ + 346717, + 53925, + 3432 + ], + [ + 355613, + 61186, + 3432 + ], + [ + 355550, + 61263, + 3432 + ], + [ + 349045, + 63188, + 3432 + ], + [ + 347666, + 65026, + 3432 + ], + [ + 347783, + 65119, + 3432 + ], + [ + 350608, + 67366, + 3432 + ], + [ + 346747, + 54021, + 342 + ], + [ + 355613, + 61186, + 342 + ], + [ + 346717, + 53925, + 342 + ], + [ + 340090, + 55962, + 342 + ], + [ + 340090, + 55962, + 3402 + ], + [ + 349045, + 63188, + 342 + ], + [ + 349045, + 63188, + 3402 + ], + [ + 347666, + 65026, + 342 + ], + [ + 347666, + 65026, + 3402 + ], + [ + 347783, + 65119, + 3402 + ], + [ + 344407, + 69328, + 3402 + ], + [ + 333863, + 57877, + 342 + ], + [ + 342837, + 65118, + 342 + ], + [ + 341467, + 66952, + 342 + ], + [ + 341584, + 67046, + 342 + ], + [ + 364046, + 132734, + 6282 + ], + [ + 362567, + 131821, + 6282 + ], + [ + 362744, + 131655, + 6282 + ], + [ + 360261, + 136588, + 6282 + ], + [ + 358911, + 135242, + 6282 + ], + [ + 358808, + 135339, + 6282 + ], + [ + 369753, + 140964, + 6282 + ], + [ + 367121, + 143737, + 6282 + ], + [ + 370664, + 140067, + 6282 + ], + [ + 370970, + 139949, + 6282 + ], + [ + 369844, + 141057, + 6282 + ], + [ + 370756, + 140160, + 6282 + ], + [ + 358808, + 135339, + 6222 + ], + [ + 360261, + 136588, + 612 + ], + [ + 360261, + 136588, + 6222 + ], + [ + 367121, + 143737, + 612 + ], + [ + 367121, + 143737, + 6222 + ], + [ + 369844, + 141057, + 612 + ], + [ + 369753, + 140964, + 612 + ], + [ + 370664, + 140067, + 612 + ], + [ + 370756, + 140160, + 612 + ], + [ + 356244, + 139956, + 6222 + ], + [ + 354999, + 138904, + 6222 + ], + [ + 366632, + 144077, + 6222 + ], + [ + 356001, + 140183, + 6222 + ], + [ + 362645, + 147421, + 6222 + ], + [ + 355935, + 140244, + 6222 + ], + [ + 364411, + 146078, + 6222 + ], + [ + 362891, + 147702, + 6222 + ], + [ + 362623, + 147441, + 6222 + ], + [ + 363442, + 147024, + 6222 + ], + [ + 363525, + 147110, + 6222 + ], + [ + 364495, + 146164, + 6222 + ], + [ + 366702, + 144149, + 6222 + ], + [ + 360261, + 136588, + 602 + ], + [ + 367121, + 143737, + 602 + ], + [ + 358808, + 135339, + 602 + ], + [ + 356244, + 139956, + 602 + ], + [ + 356001, + 140183, + 602 + ], + [ + 355935, + 140244, + 602 + ], + [ + 362645, + 147421, + 602 + ], + [ + 362623, + 147441, + 602 + ], + [ + 362891, + 147702, + 602 + ], + [ + 363525, + 147110, + 602 + ], + [ + 363442, + 147024, + 602 + ], + [ + 364411, + 146078, + 602 + ], + [ + 364495, + 146164, + 602 + ], + [ + 366632, + 144077, + 602 + ], + [ + 366702, + 144149, + 602 + ], + [ + 355523, + 154395, + 3222 + ], + [ + 355770, + 154650, + 3222 + ], + [ + 355502, + 154416, + 3222 + ], + [ + 346432, + 149661, + 3222 + ], + [ + 348542, + 147614, + 3222 + ], + [ + 349018, + 147818, + 3222 + ], + [ + 348614, + 147544, + 3222 + ], + [ + 348735, + 147426, + 3222 + ], + [ + 349085, + 147744, + 3222 + ], + [ + 353510, + 152431, + 3222 + ], + [ + 351253, + 158864, + 3222 + ], + [ + 351158, + 159081, + 3222 + ], + [ + 340115, + 148068, + 3222 + ], + [ + 342906, + 146074, + 3222 + ], + [ + 338204, + 144300, + 3222 + ], + [ + 339590, + 143054, + 3222 + ], + [ + 336948, + 145258, + 3222 + ], + [ + 334052, + 142688, + 3222 + ], + [ + 337018, + 143282, + 3222 + ], + [ + 334785, + 141677, + 3222 + ], + [ + 337657, + 137679, + 3222 + ], + [ + 340153, + 139820, + 3222 + ], + [ + 340086, + 139894, + 3222 + ], + [ + 340220, + 139746, + 3222 + ], + [ + 337689, + 137635, + 3222 + ], + [ + 352030, + 158119, + 3222 + ], + [ + 337044, + 145343, + 3222 + ], + [ + 352092, + 158184, + 3222 + ], + [ + 351315, + 158929, + 3222 + ], + [ + 355523, + 154395, + 622 + ], + [ + 355770, + 154650, + 622 + ], + [ + 355502, + 154416, + 622 + ], + [ + 353510, + 152431, + 622 + ], + [ + 349018, + 147818, + 622 + ], + [ + 349085, + 147744, + 622 + ], + [ + 348735, + 147426, + 622 + ], + [ + 348614, + 147544, + 622 + ], + [ + 340153, + 139820, + 622 + ], + [ + 340220, + 139746, + 622 + ], + [ + 337689, + 137635, + 622 + ], + [ + 337657, + 137679, + 622 + ], + [ + 334785, + 141677, + 622 + ], + [ + 334052, + 142688, + 622 + ], + [ + 334052, + 142688, + 782 + ], + [ + 334052, + 142688, + 3212 + ], + [ + 336948, + 145258, + 622 + ], + [ + 336948, + 145258, + 782 + ], + [ + 336948, + 145258, + 3212 + ], + [ + 337044, + 145343, + 622 + ], + [ + 340115, + 148068, + 622 + ], + [ + 351158, + 159081, + 622 + ], + [ + 351315, + 158929, + 622 + ], + [ + 351253, + 158864, + 622 + ], + [ + 352030, + 158119, + 622 + ], + [ + 352092, + 158184, + 622 + ], + [ + 340115, + 148068, + 3502 + ], + [ + 351158, + 159081, + 3502 + ], + [ + 339585, + 153166, + 3502 + ], + [ + 337466, + 150650, + 3502 + ], + [ + 339535, + 156468, + 3502 + ], + [ + 337907, + 154831, + 3502 + ], + [ + 350169, + 159917, + 3502 + ], + [ + 346572, + 163545, + 3502 + ], + [ + 350231, + 159982, + 3502 + ], + [ + 350865, + 159240, + 3502 + ], + [ + 350927, + 159304, + 3502 + ], + [ + 340115, + 148068, + 602 + ], + [ + 351158, + 159081, + 602 + ], + [ + 337466, + 150650, + 602 + ], + [ + 339585, + 153166, + 602 + ], + [ + 337907, + 154831, + 602 + ], + [ + 350231, + 159982, + 602 + ], + [ + 350169, + 159917, + 602 + ], + [ + 350865, + 159240, + 602 + ], + [ + 350927, + 159304, + 602 + ], + [ + 354349, + 124634, + 2882 + ], + [ + 350845, + 128796, + 2882 + ], + [ + 348667, + 126740, + 2882 + ], + [ + 352016, + 122762, + 2882 + ], + [ + 348499, + 126936, + 2882 + ], + [ + 354349, + 124634, + 2852 + ], + [ + 350845, + 128796, + 2872 + ], + [ + 352016, + 122762, + 2852 + ], + [ + 348499, + 126936, + 2872 + ], + [ + 349839, + 134818, + 2872 + ], + [ + 355390, + 132400, + 2872 + ], + [ + 351481, + 136206, + 2872 + ], + [ + 345569, + 131211, + 2872 + ], + [ + 345492, + 131302, + 2872 + ], + [ + 345057, + 130934, + 2872 + ], + [ + 347708, + 133018, + 2872 + ], + [ + 349350, + 134405, + 2872 + ], + [ + 347211, + 132598, + 2872 + ], + [ + 347630, + 133109, + 2872 + ], + [ + 347134, + 132690, + 2872 + ], + [ + 352028, + 136394, + 2872 + ], + [ + 349761, + 134910, + 2872 + ], + [ + 349272, + 134497, + 2872 + ], + [ + 351816, + 136646, + 2872 + ], + [ + 351403, + 136297, + 2872 + ], + [ + 350845, + 128796, + 572 + ], + [ + 348499, + 126936, + 572 + ], + [ + 345492, + 131302, + 572 + ], + [ + 345569, + 131211, + 572 + ], + [ + 347211, + 132598, + 572 + ], + [ + 347134, + 132690, + 572 + ], + [ + 347630, + 133109, + 572 + ], + [ + 347708, + 133018, + 572 + ], + [ + 349350, + 134405, + 572 + ], + [ + 349272, + 134497, + 572 + ], + [ + 349761, + 134910, + 572 + ], + [ + 349839, + 134818, + 572 + ], + [ + 351481, + 136206, + 572 + ], + [ + 351403, + 136297, + 572 + ], + [ + 351816, + 136646, + 572 + ], + [ + 333642, + 143254, + 3212 + ], + [ + 332970, + 144157, + 3212 + ], + [ + 332842, + 144682, + 3212 + ], + [ + 332686, + 144539, + 3212 + ], + [ + 335419, + 147065, + 3212 + ], + [ + 333642, + 143254, + 782 + ], + [ + 332842, + 144682, + 782 + ], + [ + 335419, + 147065, + 782 + ], + [ + 332474, + 80086, + 1202 + ], + [ + 332506, + 80192, + 1202 + ], + [ + 329843, + 80899, + 1202 + ], + [ + 329303, + 77535, + 1202 + ], + [ + 327823, + 79309, + 1202 + ], + [ + 329898, + 81081, + 1202 + ], + [ + 332534, + 80287, + 1202 + ], + [ + 332534, + 80287, + 472 + ], + [ + 271703, + 111477, + 2852 + ], + [ + 267674, + 117148, + 2852 + ], + [ + 265175, + 115372, + 2852 + ], + [ + 269204, + 109701, + 2852 + ], + [ + 271703, + 111477, + 662 + ], + [ + 321668, + 143068, + 3392 + ], + [ + 324014, + 140186, + 3392 + ], + [ + 322956, + 144116, + 3392 + ], + [ + 325333, + 141195, + 3392 + ], + [ + 324110, + 140068, + 3392 + ], + [ + 325397, + 141116, + 3392 + ], + [ + 321668, + 143068, + 792 + ], + [ + 324014, + 140186, + 792 + ], + [ + 322956, + 144116, + 792 + ], + [ + 325333, + 141195, + 792 + ], + [ + 325397, + 141116, + 792 + ], + [ + 324110, + 140068, + 792 + ], + [ + 315042, + 138254, + 3292 + ], + [ + 312962, + 140962, + 3292 + ], + [ + 307736, + 136947, + 3292 + ], + [ + 309817, + 134239, + 3292 + ], + [ + 315042, + 138254, + 802 + ], + [ + 312962, + 140962, + 802 + ], + [ + 309817, + 134239, + 802 + ], + [ + 307736, + 136947, + 802 + ], + [ + 321641, + 143318, + 2862 + ], + [ + 319557, + 146030, + 2862 + ], + [ + 314308, + 141997, + 2862 + ], + [ + 316391, + 139285, + 2862 + ], + [ + 321641, + 143318, + 802 + ], + [ + 319557, + 146030, + 802 + ], + [ + 316391, + 139285, + 802 + ], + [ + 314308, + 141997, + 802 + ], + [ + 308391, + 152407, + 3302 + ], + [ + 306517, + 155006, + 3302 + ], + [ + 305957, + 150663, + 3302 + ], + [ + 304084, + 153261, + 3302 + ], + [ + 305957, + 150663, + 862 + ], + [ + 304084, + 153261, + 862 + ], + [ + 310874, + 154186, + 3322 + ], + [ + 309000, + 156786, + 3322 + ], + [ + 308391, + 152407, + 3322 + ], + [ + 306517, + 155006, + 3322 + ], + [ + 313382, + 155983, + 3322 + ], + [ + 311507, + 158584, + 3322 + ], + [ + 313382, + 155983, + 3302 + ], + [ + 311507, + 158584, + 3302 + ], + [ + 310874, + 154186, + 852 + ], + [ + 309000, + 156786, + 852 + ], + [ + 316456, + 162306, + 3352 + ], + [ + 314585, + 164902, + 3352 + ], + [ + 313958, + 160511, + 3352 + ], + [ + 313000, + 159823, + 902 + ], + [ + 311127, + 162417, + 902 + ], + [ + 315918, + 157799, + 3302 + ], + [ + 314038, + 160399, + 3302 + ], + [ + 315918, + 157799, + 842 + ], + [ + 314038, + 160399, + 842 + ], + [ + 315918, + 157799, + 3282 + ], + [ + 314038, + 160399, + 3282 + ], + [ + 313382, + 155983, + 842 + ], + [ + 311507, + 158584, + 842 + ], + [ + 316538, + 162192, + 3282 + ], + [ + 318415, + 159588, + 3282 + ], + [ + 321270, + 165056, + 2052 + ], + [ + 319012, + 162680, + 2052 + ], + [ + 323406, + 163057, + 2052 + ], + [ + 320712, + 160257, + 2052 + ], + [ + 321270, + 165056, + 852 + ], + [ + 319012, + 162680, + 852 + ], + [ + 323406, + 163057, + 852 + ], + [ + 320712, + 160257, + 852 + ], + [ + 308468, + 133209, + 1482 + ], + [ + 306390, + 135913, + 1482 + ], + [ + 302361, + 130439, + 1482 + ], + [ + 303290, + 129230, + 1482 + ], + [ + 301212, + 131934, + 1482 + ], + [ + 308468, + 133209, + 722 + ], + [ + 306390, + 135913, + 722 + ], + [ + 303290, + 129230, + 722 + ], + [ + 302361, + 130439, + 722 + ], + [ + 301212, + 131934, + 722 + ], + [ + 295706, + 146236, + 2942 + ], + [ + 297170, + 144217, + 2942 + ], + [ + 298723, + 145503, + 2942 + ], + [ + 297335, + 147417, + 2942 + ], + [ + 298873, + 145451, + 2942 + ], + [ + 298796, + 145557, + 2942 + ], + [ + 303344, + 148791, + 3302 + ], + [ + 301480, + 151393, + 3302 + ], + [ + 353700, + 120762, + 2852 + ], + [ + 355811, + 122897, + 2852 + ], + [ + 352016, + 122762, + 692 + ], + [ + 354349, + 124634, + 692 + ], + [ + 375228, + 99410, + 2862 + ], + [ + 377518, + 97182, + 2862 + ], + [ + 376448, + 100665, + 2862 + ], + [ + 378859, + 98320, + 2862 + ], + [ + 381492, + 92353, + 2762 + ], + [ + 382808, + 93685, + 2762 + ], + [ + 378571, + 95238, + 2762 + ], + [ + 379888, + 96571, + 2762 + ], + [ + 368879, + 109251, + 3242 + ], + [ + 367078, + 107418, + 3242 + ], + [ + 371045, + 107122, + 3242 + ], + [ + 369243, + 105289, + 3242 + ], + [ + 351070, + 74331, + 2242 + ], + [ + 351105, + 74446, + 2242 + ], + [ + 348445, + 75162, + 2242 + ], + [ + 347875, + 71756, + 2242 + ], + [ + 346441, + 73557, + 2242 + ], + [ + 348501, + 75344, + 2242 + ], + [ + 351134, + 74542, + 2242 + ], + [ + 351134, + 74542, + 462 + ], + [ + 357289, + 72370, + 1662 + ], + [ + 357326, + 72485, + 1662 + ], + [ + 354673, + 73230, + 1662 + ], + [ + 354113, + 69804, + 1662 + ], + [ + 352683, + 71618, + 1662 + ], + [ + 354730, + 73411, + 1662 + ], + [ + 357356, + 72580, + 1662 + ], + [ + 357356, + 72580, + 462 + ], + [ + 362932, + 67101, + 2812 + ], + [ + 366113, + 69659, + 2812 + ], + [ + 362870, + 67179, + 2812 + ], + [ + 363485, + 70491, + 2812 + ], + [ + 361480, + 68902, + 2812 + ], + [ + 365943, + 69940, + 2812 + ], + [ + 363541, + 70673, + 2812 + ], + [ + 366177, + 69869, + 2812 + ], + [ + 362932, + 67101, + 482 + ], + [ + 366113, + 69659, + 482 + ], + [ + 365943, + 69940, + 482 + ], + [ + 366177, + 69869, + 482 + ], + [ + 344871, + 76247, + 1202 + ], + [ + 344903, + 76352, + 1202 + ], + [ + 342235, + 77067, + 1202 + ], + [ + 341696, + 73660, + 1202 + ], + [ + 340263, + 75472, + 1202 + ], + [ + 342290, + 77249, + 1202 + ], + [ + 344932, + 76448, + 1202 + ], + [ + 344932, + 76448, + 462 + ], + [ + 338623, + 78167, + 2802 + ], + [ + 338658, + 78281, + 2802 + ], + [ + 335996, + 79005, + 2802 + ], + [ + 335454, + 75588, + 2802 + ], + [ + 334015, + 77396, + 2802 + ], + [ + 336052, + 79187, + 2802 + ], + [ + 338688, + 78377, + 2802 + ], + [ + 338688, + 78377, + 462 + ], + [ + 400851, + 48956, + 795 + ], + [ + 422845, + 56627, + 812 + ], + [ + 417141, + 55824, + 732 + ], + [ + 413765, + 53326, + 722 + ], + [ + 411122, + 50812, + 712 + ], + [ + 414032, + 52965, + 722 + ], + [ + 406173, + 51786, + 682 + ], + [ + 403136, + 44100, + 606 + ], + [ + 403246, + 38774, + 341 + ], + [ + 402442, + 38756, + 852 + ], + [ + 402058, + 39567, + 844 + ], + [ + 401837, + 38858, + 858 + ], + [ + 402874, + 38877, + 508 + ], + [ + 402718, + 39204, + 840 + ], + [ + 401331, + 38833, + 820 + ], + [ + 401437, + 39163, + 493 + ], + [ + 401271, + 39062, + 882 + ], + [ + 416744, + 60964, + 765 + ], + [ + 415438, + 60041, + 773 + ], + [ + 399700, + 43288, + 638 + ], + [ + 397819, + 39967, + 507 + ], + [ + 401010, + 39250, + 445 + ], + [ + 396619, + 41430, + 767 + ], + [ + 396555, + 41708, + 1005 + ], + [ + 396271, + 40843, + 590 + ], + [ + 397407, + 43231, + 664 + ], + [ + 397780, + 42766, + 701 + ], + [ + 398814, + 43511, + 647 + ], + [ + 397448, + 41724, + 1002 + ], + [ + 396736, + 42153, + 1076 + ], + [ + 397906, + 46967, + 717 + ], + [ + 407166, + 52470, + 702 + ], + [ + 398564, + 42256, + 1188 + ], + [ + 400943, + 41094, + 671 + ], + [ + 402014, + 40512, + 848 + ], + [ + 402523, + 50433, + 692 + ], + [ + 405077, + 52427, + 668 + ], + [ + 402401, + 50610, + 702 + ], + [ + 408219, + 54243, + 759 + ], + [ + 400937, + 49612, + 779 + ], + [ + 414474, + 57888, + 750 + ], + [ + 426446, + 58174, + 1078 + ], + [ + 425051, + 57097, + 739 + ], + [ + 423400, + 61943, + 852 + ], + [ + 424212, + 57641, + 872 + ], + [ + 425155, + 57810, + 886 + ], + [ + 423410, + 57818, + 880 + ], + [ + 428437, + 59953, + 942 + ], + [ + 425971, + 58252, + 942 + ], + [ + 426855, + 58739, + 906 + ], + [ + 425880, + 63651, + 912 + ], + [ + 420952, + 64059, + 865 + ], + [ + 423835, + 66079, + 851 + ], + [ + 423351, + 57461, + 721 + ], + [ + 401521, + 40111, + 712 + ], + [ + 410084, + 56299, + 776 + ], + [ + 414577, + 58603, + 882 + ], + [ + 401549, + 39804, + 496 + ], + [ + 396461, + 40370, + 513 + ], + [ + 396238, + 40374, + 792 + ], + [ + 396304, + 40629, + 792 + ], + [ + 396508, + 40720, + 530 + ], + [ + 427312, + 59000, + 1073 + ], + [ + 399000, + 41325, + 674 + ], + [ + 399407, + 41995, + 858 + ], + [ + 400576, + 40905, + 751 + ], + [ + 398876, + 40521, + 658 + ], + [ + 397603, + 41419, + 718 + ], + [ + 399830, + 40197, + 413 + ], + [ + 398398, + 41619, + 938 + ], + [ + 401213, + 38839, + 942 + ], + [ + 425890, + 57994, + 1109 + ], + [ + 426206, + 58241, + 1112 + ], + [ + 400106, + 41330, + 669 + ], + [ + 396715, + 40608, + 505 + ], + [ + 397755, + 42455, + 928 + ], + [ + 402384, + 38534, + 862 + ], + [ + 400026, + 40774, + 688 + ], + [ + 423756, + 57393, + 959 + ], + [ + 320633, + 160196, + 1052 + ], + [ + 320274, + 159942, + 902 + ], + [ + 321787, + 158333, + 1072 + ], + [ + 321870, + 158389, + 1082 + ], + [ + 321906, + 158160, + 1192 + ], + [ + 322619, + 157296, + 942 + ], + [ + 321989, + 158216, + 1082 + ], + [ + 323108, + 156404, + 902 + ], + [ + 323191, + 156461, + 902 + ], + [ + 323221, + 156239, + 902 + ], + [ + 324314, + 154821, + 932 + ], + [ + 323304, + 156296, + 932 + ], + [ + 324232, + 154764, + 932 + ], + [ + 324344, + 154599, + 932 + ], + [ + 325778, + 152506, + 922 + ], + [ + 324427, + 154656, + 932 + ], + [ + 326849, + 150652, + 872 + ], + [ + 325861, + 152562, + 862 + ], + [ + 325475, + 153356, + 862 + ], + [ + 326068, + 152454, + 862 + ], + [ + 326018, + 153699, + 902 + ], + [ + 327292, + 152115, + 902 + ], + [ + 325897, + 152333, + 872 + ], + [ + 326606, + 151620, + 872 + ], + [ + 327116, + 150840, + 892 + ], + [ + 298144, + 128200, + 861 + ], + [ + 296646, + 129588, + 746 + ], + [ + 297195, + 127057, + 810 + ], + [ + 287618, + 137284, + 1314 + ], + [ + 291864, + 124088, + 789 + ], + [ + 290068, + 125689, + 697 + ], + [ + 290398, + 122401, + 791 + ], + [ + 271691, + 120646, + 922 + ], + [ + 274099, + 122334, + 942 + ], + [ + 286388, + 122155, + 741 + ], + [ + 284632, + 126039, + 912 + ], + [ + 282190, + 124364, + 862 + ], + [ + 284086, + 117734, + 907 + ], + [ + 279862, + 116417, + 757 + ], + [ + 278758, + 113666, + 782 + ], + [ + 271295, + 109058, + 807 + ], + [ + 270784, + 108282, + 832 + ], + [ + 274815, + 111492, + 846 + ], + [ + 276181, + 112283, + 852 + ], + [ + 269422, + 106851, + 782 + ], + [ + 267137, + 105353, + 664 + ], + [ + 268091, + 105896, + 676 + ], + [ + 255711, + 97465, + 452 + ], + [ + 255769, + 97546, + 452 + ], + [ + 255776, + 97677, + 452 + ], + [ + 255712, + 97587, + 452 + ], + [ + 254514, + 98639, + 580 + ], + [ + 254312, + 98708, + 482 + ], + [ + 259918, + 102701, + 542 + ], + [ + 253988, + 98760, + 569 + ], + [ + 254205, + 98662, + 482 + ], + [ + 254254, + 98627, + 482 + ], + [ + 254147, + 98580, + 472 + ], + [ + 254885, + 98835, + 469 + ], + [ + 262030, + 104423, + 640 + ], + [ + 273649, + 110907, + 710 + ], + [ + 271811, + 111321, + 712 + ], + [ + 272091, + 111865, + 622 + ], + [ + 271900, + 111383, + 712 + ], + [ + 269650, + 117340, + 874 + ], + [ + 266817, + 121386, + 882 + ], + [ + 272668, + 112910, + 862 + ], + [ + 277289, + 113920, + 734 + ], + [ + 265583, + 120534, + 982 + ], + [ + 264654, + 121880, + 1002 + ], + [ + 266759, + 122957, + 897 + ], + [ + 280631, + 115511, + 987 + ], + [ + 270911, + 125654, + 1182 + ], + [ + 271219, + 125476, + 983 + ], + [ + 271263, + 125801, + 989 + ], + [ + 271006, + 125711, + 1182 + ], + [ + 295445, + 125706, + 807 + ], + [ + 285503, + 135734, + 1082 + ], + [ + 299309, + 128864, + 892 + ], + [ + 301754, + 130500, + 998 + ], + [ + 300917, + 130434, + 833 + ], + [ + 292618, + 134918, + 1002 + ], + [ + 291979, + 137348, + 1052 + ], + [ + 289671, + 135698, + 1022 + ], + [ + 292983, + 139190, + 1075 + ], + [ + 293216, + 138266, + 1022 + ], + [ + 294185, + 140231, + 972 + ], + [ + 317092, + 146582, + 832 + ], + [ + 321558, + 157176, + 862 + ], + [ + 319205, + 157746, + 862 + ], + [ + 317548, + 163169, + 922 + ], + [ + 315992, + 166063, + 942 + ], + [ + 317784, + 163337, + 922 + ], + [ + 312560, + 152955, + 872 + ], + [ + 321792, + 157344, + 872 + ], + [ + 323411, + 151454, + 832 + ], + [ + 326329, + 150897, + 862 + ], + [ + 326084, + 150723, + 862 + ], + [ + 334684, + 135723, + 775 + ], + [ + 329776, + 142382, + 778 + ], + [ + 329435, + 142789, + 799 + ], + [ + 336901, + 137082, + 772 + ], + [ + 332750, + 142506, + 812 + ], + [ + 334314, + 136477, + 798 + ], + [ + 328578, + 143680, + 812 + ], + [ + 324113, + 149493, + 842 + ], + [ + 302079, + 147382, + 1038 + ], + [ + 304104, + 134615, + 845 + ], + [ + 300865, + 144522, + 892 + ], + [ + 309573, + 138665, + 909 + ], + [ + 290252, + 133223, + 982 + ], + [ + 294161, + 132763, + 952 + ], + [ + 280691, + 126549, + 942 + ], + [ + 283133, + 128224, + 942 + ], + [ + 291794, + 131069, + 932 + ], + [ + 278224, + 113490, + 1073 + ], + [ + 281976, + 116500, + 788 + ], + [ + 282691, + 119743, + 637 + ], + [ + 273682, + 117804, + 862 + ], + [ + 276090, + 119492, + 882 + ], + [ + 271972, + 125683, + 959 + ], + [ + 270409, + 116811, + 811 + ], + [ + 271009, + 116364, + 804 + ], + [ + 284454, + 134676, + 1288 + ], + [ + 284303, + 133698, + 1031 + ], + [ + 281083, + 130803, + 1009 + ], + [ + 278089, + 129933, + 1170 + ], + [ + 280959, + 131913, + 1346 + ], + [ + 277334, + 130001, + 1183 + ], + [ + 284594, + 118247, + 751 + ], + [ + 287381, + 120295, + 884 + ], + [ + 282066, + 132595, + 1092 + ], + [ + 277012, + 129856, + 1114 + ], + [ + 287978, + 136822, + 1053 + ], + [ + 288453, + 137347, + 1138 + ], + [ + 282617, + 116945, + 935 + ], + [ + 277120, + 112560, + 929 + ], + [ + 272415, + 114207, + 729 + ], + [ + 273477, + 112470, + 699 + ], + [ + 292741, + 124246, + 811 + ], + [ + 280717, + 116193, + 930 + ], + [ + 282589, + 133466, + 1230 + ], + [ + 280897, + 131566, + 1137 + ], + [ + 282114, + 132928, + 1127 + ], + [ + 271701, + 126221, + 1125 + ], + [ + 271987, + 114093, + 969 + ], + [ + 270660, + 115902, + 1032 + ], + [ + 269790, + 118320, + 977 + ], + [ + 271197, + 115774, + 779 + ], + [ + 272191, + 112510, + 788 + ], + [ + 271434, + 112058, + 1092 + ], + [ + 302027, + 147063, + 910 + ], + [ + 292831, + 139126, + 1252 + ], + [ + 270920, + 115686, + 830 + ], + [ + 320219, + 160332, + 912 + ], + [ + 320135, + 159965, + 902 + ], + [ + 320453, + 160191, + 1032 + ], + [ + 320553, + 159271, + 1055 + ], + [ + 318238, + 163157, + 922 + ], + [ + 319903, + 160783, + 912 + ], + [ + 316263, + 165973, + 952 + ], + [ + 316131, + 166161, + 942 + ], + [ + 315761, + 168808, + 942 + ], + [ + 316919, + 168580, + 887 + ], + [ + 317415, + 169133, + 1166 + ], + [ + 317911, + 163623, + 922 + ], + [ + 316353, + 166036, + 952 + ], + [ + 318001, + 163687, + 942 + ], + [ + 318328, + 163220, + 932 + ], + [ + 319993, + 160846, + 912 + ], + [ + 321380, + 158295, + 1088 + ], + [ + 320309, + 160395, + 942 + ], + [ + 320192, + 159884, + 902 + ], + [ + 321459, + 166112, + 1057 + ], + [ + 324930, + 158180, + 929 + ], + [ + 322708, + 157380, + 1052 + ], + [ + 324056, + 155427, + 932 + ], + [ + 328235, + 163846, + 815 + ], + [ + 329397, + 165678, + 722 + ], + [ + 326101, + 154928, + 923 + ], + [ + 326091, + 157427, + 956 + ], + [ + 326302, + 156259, + 1272 + ], + [ + 327288, + 156643, + 934 + ], + [ + 321182, + 160501, + 1038 + ], + [ + 316456, + 166290, + 942 + ], + [ + 317203, + 166854, + 942 + ], + [ + 312706, + 178940, + 798 + ], + [ + 313434, + 179142, + 635 + ], + [ + 313264, + 180198, + 1000 + ], + [ + 320970, + 165561, + 1031 + ], + [ + 320528, + 165735, + 864 + ], + [ + 320925, + 165224, + 1015 + ], + [ + 314446, + 178845, + 861 + ], + [ + 314337, + 178169, + 606 + ], + [ + 315642, + 178238, + 710 + ], + [ + 310014, + 176506, + 1083 + ], + [ + 307491, + 179396, + 932 + ], + [ + 312693, + 172965, + 912 + ], + [ + 311092, + 175785, + 1091 + ], + [ + 311675, + 177139, + 645 + ], + [ + 305242, + 181844, + 912 + ], + [ + 306383, + 180602, + 902 + ], + [ + 309161, + 183065, + 855 + ], + [ + 304791, + 184134, + 906 + ], + [ + 303384, + 184165, + 872 + ], + [ + 304641, + 182595, + 902 + ], + [ + 309308, + 184125, + 934 + ], + [ + 306519, + 185808, + 853 + ], + [ + 304317, + 187075, + 1092 + ], + [ + 303803, + 185737, + 1296 + ], + [ + 304654, + 186221, + 1457 + ], + [ + 305461, + 185663, + 1376 + ], + [ + 299151, + 190582, + 1065 + ], + [ + 304547, + 185537, + 1239 + ], + [ + 307326, + 186925, + 1085 + ], + [ + 307136, + 187731, + 1122 + ], + [ + 306711, + 187188, + 984 + ], + [ + 310369, + 181870, + 962 + ], + [ + 310459, + 177479, + 850 + ], + [ + 311080, + 179073, + 913 + ], + [ + 314775, + 181263, + 972 + ], + [ + 313637, + 180420, + 1083 + ], + [ + 323295, + 164439, + 1008 + ], + [ + 318674, + 171300, + 1191 + ], + [ + 319011, + 170509, + 1085 + ], + [ + 320206, + 171227, + 825 + ], + [ + 315738, + 178887, + 833 + ], + [ + 315693, + 178540, + 851 + ], + [ + 315928, + 177088, + 741 + ], + [ + 315284, + 175411, + 916 + ], + [ + 321052, + 166275, + 849 + ], + [ + 320610, + 172147, + 992 + ], + [ + 323455, + 167972, + 1087 + ], + [ + 318359, + 172872, + 904 + ], + [ + 319704, + 172440, + 1145 + ], + [ + 319312, + 172985, + 737 + ], + [ + 327580, + 161903, + 792 + ], + [ + 325398, + 161598, + 1144 + ], + [ + 327864, + 161127, + 684 + ], + [ + 324652, + 163237, + 1070 + ], + [ + 323831, + 163492, + 978 + ], + [ + 325983, + 163202, + 676 + ], + [ + 326123, + 164260, + 658 + ], + [ + 325594, + 163342, + 647 + ], + [ + 329947, + 159200, + 695 + ], + [ + 328635, + 163403, + 757 + ], + [ + 328587, + 163028, + 773 + ], + [ + 329238, + 160774, + 674 + ], + [ + 330798, + 157562, + 976 + ], + [ + 328668, + 160179, + 744 + ], + [ + 326549, + 154005, + 1017 + ], + [ + 329671, + 160326, + 798 + ], + [ + 327788, + 160397, + 964 + ], + [ + 329364, + 157887, + 1027 + ], + [ + 337118, + 150896, + 837 + ], + [ + 336722, + 150981, + 879 + ], + [ + 337467, + 150482, + 879 + ], + [ + 329825, + 158117, + 991 + ], + [ + 330519, + 157959, + 1006 + ], + [ + 330622, + 156194, + 1060 + ], + [ + 331301, + 156732, + 991 + ], + [ + 327211, + 155955, + 1125 + ], + [ + 326740, + 155390, + 1121 + ], + [ + 328042, + 155365, + 920 + ], + [ + 326635, + 154707, + 913 + ], + [ + 330661, + 151964, + 909 + ], + [ + 332257, + 157282, + 1016 + ], + [ + 331115, + 155361, + 928 + ], + [ + 332756, + 157188, + 1030 + ], + [ + 332529, + 155472, + 1052 + ], + [ + 333214, + 157135, + 928 + ], + [ + 333641, + 156704, + 962 + ], + [ + 334398, + 156603, + 931 + ], + [ + 334677, + 156916, + 755 + ], + [ + 334880, + 156198, + 739 + ], + [ + 335278, + 156508, + 721 + ], + [ + 334442, + 156942, + 918 + ], + [ + 335373, + 157150, + 863 + ], + [ + 335754, + 157105, + 694 + ], + [ + 336273, + 158057, + 707 + ], + [ + 337074, + 153722, + 695 + ], + [ + 337662, + 155023, + 751 + ], + [ + 332567, + 145408, + 1001 + ], + [ + 330564, + 147826, + 952 + ], + [ + 338440, + 148503, + 789 + ], + [ + 338748, + 147680, + 922 + ], + [ + 338888, + 148725, + 939 + ], + [ + 336831, + 145721, + 832 + ], + [ + 334851, + 150253, + 824 + ], + [ + 331762, + 149686, + 1083 + ], + [ + 301347, + 191806, + 1037 + ], + [ + 300988, + 192141, + 1275 + ], + [ + 299676, + 189329, + 1117 + ], + [ + 320890, + 171694, + 796 + ], + [ + 320109, + 172708, + 1041 + ], + [ + 304416, + 187749, + 1234 + ], + [ + 301745, + 188778, + 1054 + ], + [ + 301489, + 192795, + 1169 + ], + [ + 301025, + 192544, + 1064 + ], + [ + 334307, + 155879, + 1010 + ], + [ + 333461, + 155360, + 941 + ], + [ + 334425, + 154833, + 1087 + ], + [ + 337247, + 151934, + 707 + ], + [ + 324940, + 161750, + 963 + ], + [ + 322999, + 159873, + 972 + ], + [ + 325466, + 155859, + 930 + ], + [ + 326437, + 155479, + 1112 + ], + [ + 315193, + 181137, + 838 + ], + [ + 315355, + 179296, + 890 + ], + [ + 313313, + 180528, + 1060 + ], + [ + 312898, + 180308, + 939 + ], + [ + 326695, + 165107, + 987 + ], + [ + 325262, + 164127, + 1055 + ], + [ + 326371, + 155194, + 721 + ], + [ + 329968, + 153854, + 920 + ], + [ + 321996, + 166666, + 1000 + ], + [ + 321382, + 168640, + 1076 + ], + [ + 320401, + 167894, + 1000 + ], + [ + 319653, + 169280, + 995 + ], + [ + 319435, + 170376, + 1189 + ], + [ + 318443, + 169635, + 1059 + ], + [ + 327176, + 163169, + 693 + ], + [ + 326634, + 164802, + 687 + ], + [ + 324694, + 163566, + 1033 + ], + [ + 323406, + 162949, + 985 + ], + [ + 308372, + 186570, + 975 + ], + [ + 304871, + 187997, + 1200 + ], + [ + 304498, + 188494, + 1010 + ], + [ + 321951, + 169966, + 798 + ], + [ + 322453, + 170132, + 967 + ], + [ + 322039, + 170633, + 797 + ], + [ + 318923, + 173479, + 664 + ], + [ + 316521, + 170496, + 934 + ], + [ + 316496, + 172998, + 888 + ], + [ + 315078, + 170476, + 1066 + ], + [ + 304166, + 188551, + 1141 + ], + [ + 303548, + 184296, + 922 + ], + [ + 301253, + 187789, + 1273 + ], + [ + 321597, + 170420, + 786 + ], + [ + 304738, + 186926, + 1331 + ], + [ + 304786, + 187263, + 1363 + ], + [ + 304048, + 184929, + 1307 + ], + [ + 305000, + 185404, + 1455 + ], + [ + 306326, + 186898, + 1138 + ], + [ + 305082, + 186152, + 1213 + ], + [ + 338927, + 149088, + 812 + ], + [ + 312209, + 175098, + 953 + ], + [ + 313110, + 176711, + 607 + ], + [ + 311902, + 175936, + 746 + ], + [ + 303708, + 190149, + 1012 + ], + [ + 303286, + 191337, + 1142 + ], + [ + 302607, + 192188, + 1033 + ], + [ + 305181, + 186858, + 1298 + ], + [ + 323212, + 158669, + 1226 + ], + [ + 310599, + 181057, + 843 + ], + [ + 319146, + 168381, + 848 + ], + [ + 319936, + 169167, + 842 + ], + [ + 322782, + 168976, + 909 + ], + [ + 317263, + 168151, + 863 + ], + [ + 314230, + 180297, + 862 + ], + [ + 336345, + 155258, + 749 + ], + [ + 335353, + 147719, + 906 + ], + [ + 309782, + 184681, + 938 + ], + [ + 304821, + 187669, + 1115 + ], + [ + 304959, + 188765, + 1008 + ], + [ + 305094, + 189767, + 1042 + ], + [ + 318007, + 170053, + 1167 + ], + [ + 317874, + 169064, + 1148 + ], + [ + 317330, + 171676, + 900 + ], + [ + 311725, + 180678, + 888 + ], + [ + 314244, + 177483, + 565 + ], + [ + 319993, + 169506, + 1007 + ], + [ + 320125, + 170500, + 1022 + ], + [ + 317063, + 174654, + 830 + ], + [ + 313018, + 178539, + 637 + ], + [ + 302563, + 191857, + 1034 + ], + [ + 305217, + 187242, + 1096 + ], + [ + 305257, + 187592, + 1003 + ], + [ + 333126, + 147068, + 839 + ], + [ + 334458, + 147196, + 991 + ], + [ + 336346, + 151788, + 730 + ], + [ + 335041, + 151602, + 954 + ], + [ + 322538, + 158599, + 1204 + ], + [ + 336173, + 153861, + 930 + ], + [ + 336524, + 153132, + 729 + ], + [ + 335495, + 155010, + 970 + ], + [ + 333739, + 154265, + 939 + ], + [ + 320572, + 169274, + 845 + ], + [ + 323894, + 168875, + 1158 + ], + [ + 317325, + 168476, + 1119 + ], + [ + 311399, + 181504, + 871 + ], + [ + 329888, + 153174, + 1062 + ], + [ + 329574, + 153603, + 910 + ], + [ + 322572, + 158945, + 1036 + ], + [ + 325032, + 162441, + 965 + ], + [ + 316831, + 172950, + 746 + ], + [ + 317349, + 174223, + 837 + ], + [ + 317386, + 174605, + 664 + ], + [ + 316882, + 173256, + 886 + ], + [ + 337443, + 156468, + 748 + ], + [ + 309446, + 177494, + 889 + ], + [ + 337434, + 153300, + 774 + ], + [ + 325078, + 162758, + 1021 + ], + [ + 325948, + 162855, + 826 + ], + [ + 313990, + 178618, + 627 + ], + [ + 334872, + 147459, + 845 + ], + [ + 332399, + 150940, + 1048 + ], + [ + 330938, + 153977, + 1030 + ], + [ + 304068, + 190385, + 1190 + ], + [ + 334163, + 150744, + 840 + ], + [ + 303122, + 181483, + 862 + ], + [ + 299407, + 183252, + 894 + ], + [ + 304139, + 179284, + 808 + ], + [ + 302819, + 178512, + 968 + ], + [ + 296436, + 124758, + 842 + ], + [ + 295015, + 124758, + 984 + ], + [ + 296935, + 119069, + 909 + ], + [ + 293839, + 123318, + 937 + ], + [ + 294713, + 124840, + 912 + ], + [ + 299298, + 121107, + 849 + ], + [ + 293517, + 124095, + 798 + ], + [ + 295798, + 123188, + 771 + ], + [ + 295762, + 122819, + 940 + ], + [ + 262874, + 72930, + 412 + ], + [ + 262387, + 74028, + 352 + ], + [ + 262102, + 74096, + 352 + ], + [ + 261471, + 72385, + 402 + ], + [ + 261079, + 72615, + 402 + ], + [ + 261592, + 71841, + 382 + ], + [ + 261971, + 72092, + 382 + ], + [ + 261779, + 72205, + 382 + ], + [ + 261648, + 72118, + 392 + ], + [ + 260876, + 73284, + 402 + ], + [ + 261987, + 74260, + 352 + ], + [ + 260599, + 73340, + 402 + ], + [ + 262158, + 74373, + 342 + ], + [ + 263151, + 72873, + 412 + ], + [ + 411720, + 38460, + 1792 + ], + [ + 411464, + 37614, + 2252 + ], + [ + 415386, + 40998, + 1974 + ], + [ + 416921, + 39386, + 1856 + ], + [ + 412314, + 37126, + 1986 + ], + [ + 410976, + 36624, + 1072 + ], + [ + 412338, + 36701, + 1920 + ], + [ + 417939, + 38711, + 2215 + ], + [ + 417249, + 39134, + 2111 + ], + [ + 421139, + 34340, + 1916 + ], + [ + 421959, + 35045, + 1943 + ], + [ + 421711, + 35297, + 1943 + ], + [ + 417966, + 38387, + 2021 + ], + [ + 420098, + 36705, + 2092 + ], + [ + 419763, + 36447, + 2035 + ], + [ + 422261, + 34369, + 1976 + ], + [ + 422695, + 34374, + 1962 + ], + [ + 422639, + 34312, + 1962 + ], + [ + 422579, + 34254, + 1962 + ], + [ + 422516, + 34200, + 1962 + ], + [ + 422449, + 34150, + 1952 + ], + [ + 422378, + 34105, + 1952 + ], + [ + 422305, + 34065, + 1952 + ], + [ + 422230, + 34029, + 1942 + ], + [ + 421998, + 34133, + 1955 + ], + [ + 422152, + 33999, + 2282 + ], + [ + 422073, + 33974, + 2172 + ], + [ + 421992, + 33954, + 2172 + ], + [ + 421827, + 33930, + 2172 + ], + [ + 421910, + 33939, + 2172 + ], + [ + 421743, + 33927, + 2142 + ], + [ + 421470, + 34128, + 1894 + ], + [ + 421660, + 33929, + 2142 + ], + [ + 421577, + 33936, + 2142 + ], + [ + 421495, + 33949, + 2092 + ], + [ + 418244, + 38285, + 1997 + ], + [ + 413025, + 38300, + 1805 + ], + [ + 415524, + 38476, + 1749 + ], + [ + 414402, + 39242, + 1802 + ], + [ + 414758, + 41270, + 1963 + ], + [ + 414806, + 40405, + 1822 + ], + [ + 413597, + 39873, + 1769 + ], + [ + 411283, + 39275, + 1900 + ], + [ + 410967, + 38987, + 1885 + ], + [ + 419438, + 36212, + 1885 + ], + [ + 418378, + 35608, + 1751 + ], + [ + 418957, + 35147, + 1978 + ], + [ + 419421, + 34763, + 1838 + ], + [ + 413520, + 39210, + 1923 + ], + [ + 413204, + 39666, + 1779 + ], + [ + 412709, + 40624, + 1896 + ], + [ + 417992, + 38033, + 1851 + ], + [ + 419748, + 36946, + 1928 + ], + [ + 421255, + 34020, + 2062 + ], + [ + 421333, + 33991, + 2092 + ], + [ + 415473, + 39083, + 1933 + ], + [ + 412765, + 36286, + 1890 + ], + [ + 417648, + 38085, + 1971 + ], + [ + 413903, + 40802, + 1962 + ], + [ + 413512, + 36003, + 1864 + ], + [ + 418353, + 35969, + 1881 + ], + [ + 412214, + 37913, + 1811 + ], + [ + 416743, + 37211, + 1882 + ], + [ + 415433, + 40140, + 1825 + ], + [ + 421413, + 33967, + 2092 + ], + [ + 406718, + 52822, + 708 + ], + [ + 309240, + 61679, + 372 + ], + [ + 308821, + 60565, + 332 + ], + [ + 309534, + 61549, + 362 + ], + [ + 309130, + 60459, + 332 + ], + [ + 275503, + 130529, + 1171 + ], + [ + 274129, + 132827, + 1278 + ], + [ + 274271, + 138393, + 1154 + ], + [ + 276815, + 134931, + 1082 + ], + [ + 272872, + 140416, + 962 + ], + [ + 278039, + 132857, + 1087 + ], + [ + 279186, + 131634, + 1312 + ], + [ + 277374, + 132544, + 1131 + ], + [ + 275083, + 133695, + 1263 + ], + [ + 275042, + 133376, + 1289 + ], + [ + 273397, + 136096, + 1254 + ], + [ + 272784, + 136949, + 1221 + ], + [ + 274085, + 135072, + 1267 + ], + [ + 270272, + 137886, + 1327 + ], + [ + 271789, + 136403, + 1286 + ], + [ + 273627, + 135560, + 1264 + ], + [ + 276216, + 129750, + 1099 + ], + [ + 319963, + 204206, + 1244 + ], + [ + 319496, + 203624, + 7337 + ], + [ + 319475, + 203629, + 1224 + ], + [ + 368520, + 155696, + 1002 + ], + [ + 369459, + 155484, + 992 + ], + [ + 369005, + 155749, + 992 + ], + [ + 427949, + 102137, + 1047 + ], + [ + 427893, + 102343, + 15039 + ], + [ + 427343, + 102324, + 1078 + ], + [ + 429020, + 100059, + 10771 + ], + [ + 429159, + 100300, + 17232 + ], + [ + 429017, + 100150, + 1066 + ], + [ + 369103, + 154055, + 1002 + ], + [ + 372235, + 153193, + 942 + ], + [ + 370916, + 154179, + 952 + ], + [ + 377847, + 145283, + 942 + ], + [ + 376838, + 150276, + 962 + ], + [ + 374552, + 151709, + 942 + ], + [ + 391445, + 133479, + 960 + ], + [ + 395688, + 134796, + 962 + ], + [ + 393164, + 137588, + 952 + ], + [ + 379030, + 149061, + 962 + ], + [ + 379537, + 145007, + 1061 + ], + [ + 382108, + 147380, + 952 + ], + [ + 384666, + 145799, + 942 + ], + [ + 383412, + 146601, + 942 + ], + [ + 386241, + 144564, + 922 + ], + [ + 386491, + 139741, + 1172 + ], + [ + 389527, + 138015, + 1071 + ], + [ + 389826, + 137931, + 1061 + ], + [ + 389862, + 138264, + 5360 + ], + [ + 390322, + 140700, + 922 + ], + [ + 388317, + 142722, + 922 + ], + [ + 390272, + 134227, + 1015 + ], + [ + 391085, + 133618, + 991 + ], + [ + 389984, + 135012, + 999 + ], + [ + 392204, + 132829, + 998 + ], + [ + 399520, + 127385, + 10424 + ], + [ + 400015, + 127416, + 11647 + ], + [ + 399633, + 127592, + 11648 + ], + [ + 400632, + 128695, + 1048 + ], + [ + 400289, + 128448, + 9219 + ], + [ + 400705, + 128623, + 14778 + ], + [ + 411238, + 116098, + 1033 + ], + [ + 411545, + 118449, + 968 + ], + [ + 412816, + 116853, + 997 + ], + [ + 413506, + 118551, + 892 + ], + [ + 400928, + 127894, + 6701 + ], + [ + 401603, + 127588, + 1038 + ], + [ + 400869, + 128229, + 1050 + ], + [ + 412946, + 116337, + 3815 + ], + [ + 412557, + 116696, + 5051 + ], + [ + 421727, + 110285, + 882 + ], + [ + 420306, + 111723, + 882 + ], + [ + 416992, + 115098, + 862 + ], + [ + 418412, + 113610, + 862 + ], + [ + 422502, + 107464, + 1054 + ], + [ + 422707, + 109211, + 892 + ], + [ + 434599, + 94621, + 1039 + ], + [ + 434944, + 94079, + 1052 + ], + [ + 434351, + 95088, + 1022 + ], + [ + 434229, + 92940, + 12169 + ], + [ + 434059, + 93022, + 15684 + ], + [ + 434265, + 92844, + 7362 + ], + [ + 435248, + 92173, + 1143 + ], + [ + 435745, + 92280, + 1102 + ], + [ + 435529, + 92338, + 14509 + ], + [ + 434824, + 91666, + 1101 + ], + [ + 434779, + 91322, + 1121 + ], + [ + 435058, + 91437, + 9486 + ], + [ + 435692, + 90860, + 1102 + ], + [ + 435261, + 90947, + 8665 + ], + [ + 435067, + 90819, + 1103 + ], + [ + 434601, + 90006, + 1052 + ], + [ + 434557, + 89669, + 1056 + ], + [ + 434618, + 89697, + 14372 + ], + [ + 434000, + 89673, + 15052 + ], + [ + 433339, + 90209, + 1042 + ], + [ + 434586, + 88908, + 992 + ], + [ + 434643, + 90322, + 1063 + ], + [ + 435267, + 89969, + 1062 + ], + [ + 432823, + 90748, + 962 + ], + [ + 433161, + 90714, + 1061 + ], + [ + 432801, + 90782, + 962 + ], + [ + 433207, + 91033, + 1115 + ], + [ + 425962, + 105435, + 6231 + ], + [ + 426321, + 105031, + 932 + ], + [ + 424379, + 107333, + 892 + ], + [ + 432782, + 90818, + 962 + ], + [ + 432773, + 91008, + 12688 + ], + [ + 432765, + 90855, + 962 + ], + [ + 432750, + 90893, + 962 + ], + [ + 432739, + 90931, + 962 + ], + [ + 428034, + 102822, + 977 + ], + [ + 429130, + 101681, + 992 + ], + [ + 432729, + 90971, + 962 + ], + [ + 432723, + 91011, + 962 + ], + [ + 432719, + 91051, + 952 + ], + [ + 432718, + 91092, + 952 + ], + [ + 432719, + 91132, + 952 + ], + [ + 429192, + 98318, + 11568 + ], + [ + 428847, + 98416, + 11407 + ], + [ + 429126, + 97972, + 11287 + ], + [ + 432724, + 91173, + 952 + ], + [ + 433149, + 91226, + 12156 + ], + [ + 432731, + 91213, + 952 + ], + [ + 432740, + 91252, + 952 + ], + [ + 432753, + 91291, + 952 + ], + [ + 432767, + 91328, + 952 + ], + [ + 434281, + 94276, + 10394 + ], + [ + 434268, + 94095, + 1094 + ], + [ + 434513, + 93946, + 1076 + ], + [ + 432785, + 91365, + 952 + ], + [ + 433514, + 93176, + 13703 + ], + [ + 433109, + 93536, + 1091 + ], + [ + 433135, + 93291, + 13571 + ], + [ + 432805, + 91401, + 952 + ], + [ + 433818, + 95724, + 1015 + ], + [ + 433806, + 95916, + 1012 + ], + [ + 433526, + 90570, + 1054 + ], + [ + 433421, + 90433, + 11425 + ], + [ + 433479, + 90237, + 1024 + ], + [ + 434782, + 93837, + 1080 + ], + [ + 434823, + 94094, + 13013 + ], + [ + 423588, + 102546, + 1087 + ], + [ + 423633, + 102890, + 1091 + ], + [ + 433414, + 95877, + 1040 + ], + [ + 434059, + 94608, + 1068 + ], + [ + 431767, + 98100, + 14054 + ], + [ + 431950, + 98288, + 1012 + ], + [ + 431756, + 98465, + 999 + ], + [ + 405782, + 124896, + 992 + ], + [ + 411618, + 120187, + 902 + ], + [ + 404358, + 126027, + 1002 + ], + [ + 428625, + 99569, + 1118 + ], + [ + 428726, + 99416, + 12704 + ], + [ + 424614, + 103496, + 8721 + ], + [ + 424499, + 103146, + 13029 + ], + [ + 424680, + 103403, + 15141 + ], + [ + 413184, + 116412, + 982 + ], + [ + 414802, + 117311, + 892 + ], + [ + 412261, + 116625, + 1016 + ], + [ + 401061, + 126733, + 1099 + ], + [ + 399362, + 125785, + 1094 + ], + [ + 399464, + 125826, + 6796 + ], + [ + 399407, + 126127, + 1098 + ], + [ + 398141, + 128161, + 7908 + ], + [ + 398484, + 127999, + 1036 + ], + [ + 398666, + 128930, + 8223 + ], + [ + 390189, + 137680, + 6670 + ], + [ + 390088, + 137860, + 1060 + ], + [ + 389836, + 137865, + 5748 + ], + [ + 367365, + 155690, + 992 + ], + [ + 429345, + 99583, + 16315 + ], + [ + 429809, + 99661, + 1035 + ], + [ + 429851, + 99977, + 1029 + ], + [ + 428299, + 101607, + 11091 + ], + [ + 428174, + 101387, + 1083 + ], + [ + 428513, + 101345, + 1086 + ], + [ + 431109, + 97613, + 1072 + ], + [ + 431468, + 98195, + 1048 + ], + [ + 430943, + 98720, + 1039 + ], + [ + 428887, + 99136, + 1119 + ], + [ + 429313, + 99373, + 1085 + ], + [ + 431512, + 98556, + 1003 + ], + [ + 431525, + 98444, + 15321 + ], + [ + 429802, + 99493, + 13495 + ], + [ + 428840, + 98778, + 1130 + ], + [ + 428533, + 98869, + 1132 + ], + [ + 428632, + 98727, + 17298 + ], + [ + 426227, + 100544, + 1088 + ], + [ + 426715, + 100644, + 13984 + ], + [ + 426249, + 100796, + 13294 + ], + [ + 435179, + 89796, + 1052 + ], + [ + 434946, + 89544, + 15505 + ], + [ + 434751, + 89227, + 13319 + ], + [ + 424898, + 102734, + 1110 + ], + [ + 425175, + 102881, + 13107 + ], + [ + 424938, + 103053, + 1088 + ], + [ + 426783, + 101653, + 13046 + ], + [ + 426844, + 101751, + 1110 + ], + [ + 426406, + 101858, + 1155 + ], + [ + 428897, + 98749, + 11490 + ], + [ + 429187, + 98400, + 1123 + ], + [ + 429725, + 99009, + 1056 + ], + [ + 429937, + 100649, + 990 + ], + [ + 429634, + 100192, + 14348 + ], + [ + 430105, + 98222, + 1086 + ], + [ + 430062, + 97888, + 1115 + ], + [ + 430407, + 97454, + 1141 + ], + [ + 430148, + 98562, + 1063 + ], + [ + 430114, + 98418, + 14329 + ], + [ + 400854, + 128108, + 9586 + ], + [ + 399627, + 127598, + 5800 + ], + [ + 399291, + 128064, + 12313 + ], + [ + 399205, + 127399, + 12344 + ], + [ + 431492, + 98805, + 14162 + ], + [ + 430662, + 99446, + 1008 + ], + [ + 430204, + 99411, + 13728 + ], + [ + 429967, + 99073, + 16634 + ], + [ + 430234, + 99233, + 1027 + ], + [ + 428955, + 99068, + 11707 + ], + [ + 430282, + 99140, + 8775 + ], + [ + 430192, + 98891, + 1076 + ], + [ + 424435, + 103630, + 1086 + ], + [ + 424730, + 103514, + 1088 + ], + [ + 426917, + 99567, + 12820 + ], + [ + 427773, + 99402, + 7704 + ], + [ + 426987, + 99649, + 1064 + ], + [ + 427721, + 102549, + 989 + ], + [ + 429445, + 100404, + 1030 + ], + [ + 430167, + 99750, + 12563 + ], + [ + 431672, + 97816, + 1032 + ], + [ + 433212, + 96731, + 1002 + ], + [ + 430052, + 98778, + 12748 + ], + [ + 429636, + 98309, + 1111 + ], + [ + 431026, + 96969, + 1101 + ], + [ + 431247, + 97228, + 8236 + ], + [ + 431069, + 97301, + 1089 + ], + [ + 430323, + 99907, + 1014 + ], + [ + 430280, + 99594, + 1011 + ], + [ + 427389, + 102682, + 1065 + ], + [ + 427361, + 103175, + 12311 + ], + [ + 427023, + 103128, + 1046 + ], + [ + 426187, + 100159, + 7348 + ], + [ + 428565, + 98146, + 7873 + ], + [ + 430359, + 97096, + 1117 + ], + [ + 430680, + 96698, + 1093 + ], + [ + 431342, + 97237, + 1069 + ], + [ + 435187, + 92835, + 12778 + ], + [ + 435519, + 92954, + 1082 + ], + [ + 434884, + 89477, + 1026 + ], + [ + 434934, + 89835, + 1055 + ], + [ + 434524, + 89327, + 1231 + ], + [ + 434492, + 89379, + 13176 + ], + [ + 434204, + 89474, + 1019 + ], + [ + 428375, + 99156, + 12799 + ], + [ + 428583, + 99228, + 1155 + ], + [ + 428291, + 99633, + 1141 + ], + [ + 428552, + 101663, + 1038 + ], + [ + 428214, + 101702, + 1055 + ], + [ + 429060, + 100479, + 1053 + ], + [ + 428301, + 101950, + 10464 + ], + [ + 426934, + 102426, + 1110 + ], + [ + 426800, + 102668, + 11354 + ], + [ + 426451, + 102215, + 1126 + ], + [ + 428258, + 102062, + 1012 + ], + [ + 426913, + 103314, + 11744 + ], + [ + 426572, + 103217, + 951 + ], + [ + 430928, + 97297, + 14669 + ], + [ + 430984, + 96653, + 1101 + ], + [ + 431209, + 96198, + 1105 + ], + [ + 429469, + 100608, + 11200 + ], + [ + 425157, + 104728, + 1036 + ], + [ + 425372, + 104182, + 13463 + ], + [ + 425441, + 104254, + 1050 + ], + [ + 425268, + 102927, + 1087 + ], + [ + 424683, + 103154, + 1096 + ], + [ + 425997, + 103285, + 10802 + ], + [ + 425660, + 102800, + 1113 + ], + [ + 426081, + 102655, + 1113 + ], + [ + 400909, + 128553, + 1019 + ], + [ + 399224, + 124753, + 1073 + ], + [ + 398607, + 125493, + 1061 + ], + [ + 428096, + 98570, + 13931 + ], + [ + 429519, + 98226, + 11846 + ], + [ + 429592, + 97973, + 1114 + ], + [ + 429675, + 97528, + 9739 + ], + [ + 429656, + 97521, + 15122 + ], + [ + 429976, + 97235, + 1112 + ], + [ + 434677, + 93675, + 7750 + ], + [ + 434520, + 93807, + 9219 + ], + [ + 434473, + 93633, + 1095 + ], + [ + 435047, + 93275, + 13796 + ], + [ + 434611, + 93033, + 8012 + ], + [ + 433126, + 92966, + 14066 + ], + [ + 433810, + 92324, + 7362 + ], + [ + 434430, + 93300, + 1114 + ], + [ + 434524, + 93559, + 15238 + ], + [ + 434394, + 93239, + 13979 + ], + [ + 433881, + 93239, + 1098 + ], + [ + 434912, + 92343, + 1096 + ], + [ + 435335, + 92848, + 1122 + ], + [ + 434354, + 94777, + 1050 + ], + [ + 434315, + 94608, + 10257 + ], + [ + 434602, + 93462, + 11039 + ], + [ + 433736, + 90083, + 1030 + ], + [ + 433796, + 90004, + 11517 + ], + [ + 427993, + 102484, + 1009 + ], + [ + 428177, + 102633, + 12477 + ], + [ + 426357, + 103169, + 10351 + ], + [ + 426168, + 103339, + 1069 + ], + [ + 425487, + 104612, + 1028 + ], + [ + 426075, + 104628, + 9374 + ], + [ + 425793, + 103832, + 1066 + ], + [ + 400226, + 129786, + 982 + ], + [ + 402623, + 127530, + 1002 + ], + [ + 426663, + 103886, + 985 + ], + [ + 426574, + 103758, + 12337 + ], + [ + 427104, + 103778, + 981 + ], + [ + 398667, + 129386, + 1026 + ], + [ + 398281, + 129895, + 1023 + ], + [ + 397861, + 129758, + 1000 + ], + [ + 398349, + 131742, + 952 + ], + [ + 397906, + 130089, + 1014 + ], + [ + 430315, + 96776, + 1097 + ], + [ + 430810, + 96646, + 14210 + ], + [ + 429713, + 97865, + 9647 + ], + [ + 430103, + 97468, + 9381 + ], + [ + 430155, + 97114, + 10790 + ], + [ + 429433, + 97915, + 11204 + ], + [ + 427910, + 99361, + 1145 + ], + [ + 427797, + 99717, + 7452 + ], + [ + 427561, + 101108, + 12614 + ], + [ + 427814, + 101110, + 1047 + ], + [ + 428068, + 101659, + 12769 + ], + [ + 426623, + 100082, + 1107 + ], + [ + 426526, + 102729, + 13586 + ], + [ + 428044, + 100663, + 9210 + ], + [ + 428093, + 100271, + 10658 + ], + [ + 428129, + 100646, + 6453 + ], + [ + 426505, + 102127, + 8180 + ], + [ + 428071, + 99952, + 10941 + ], + [ + 427997, + 100033, + 1105 + ], + [ + 427863, + 99029, + 1091 + ], + [ + 427641, + 99778, + 1105 + ], + [ + 428675, + 100127, + 10626 + ], + [ + 428668, + 99899, + 1107 + ], + [ + 428523, + 99815, + 13678 + ], + [ + 427217, + 101360, + 1092 + ], + [ + 428544, + 101496, + 10777 + ], + [ + 428839, + 101227, + 1045 + ], + [ + 434310, + 94434, + 1061 + ], + [ + 434372, + 92594, + 1603 + ], + [ + 434409, + 92389, + 6319 + ], + [ + 434748, + 92683, + 10631 + ], + [ + 433252, + 91391, + 1098 + ], + [ + 432851, + 91467, + 952 + ], + [ + 435447, + 93016, + 12080 + ], + [ + 435376, + 93174, + 1084 + ], + [ + 434248, + 89794, + 1050 + ], + [ + 433982, + 89927, + 1047 + ], + [ + 434428, + 91137, + 1097 + ], + [ + 434710, + 91319, + 12650 + ], + [ + 434413, + 91164, + 12682 + ], + [ + 434220, + 92193, + 7952 + ], + [ + 434213, + 92533, + 7199 + ], + [ + 435110, + 91151, + 1103 + ], + [ + 434804, + 91215, + 10353 + ], + [ + 435783, + 91422, + 1102 + ], + [ + 425801, + 104006, + 11574 + ], + [ + 426300, + 104369, + 998 + ], + [ + 434381, + 90795, + 1081 + ], + [ + 433494, + 90780, + 11820 + ], + [ + 434738, + 93491, + 1093 + ], + [ + 435044, + 93352, + 1078 + ], + [ + 426557, + 104447, + 10788 + ], + [ + 426708, + 104221, + 985 + ], + [ + 425615, + 102454, + 1124 + ], + [ + 426254, + 104015, + 1010 + ], + [ + 426742, + 101322, + 13095 + ], + [ + 425069, + 104053, + 1054 + ], + [ + 426717, + 100786, + 1106 + ], + [ + 427162, + 102251, + 11234 + ], + [ + 426589, + 101020, + 11470 + ], + [ + 426967, + 100911, + 10991 + ], + [ + 426362, + 101540, + 1119 + ], + [ + 425530, + 101805, + 1137 + ], + [ + 425300, + 101108, + 9913 + ], + [ + 426193, + 101168, + 11796 + ], + [ + 425944, + 101905, + 12639 + ], + [ + 425610, + 102020, + 12610 + ], + [ + 425279, + 101863, + 12081 + ], + [ + 426020, + 102213, + 13144 + ], + [ + 427246, + 100198, + 9816 + ], + [ + 426985, + 100581, + 11854 + ], + [ + 427251, + 102555, + 11929 + ], + [ + 433855, + 92714, + 13337 + ], + [ + 433425, + 92715, + 1059 + ], + [ + 432827, + 91435, + 952 + ], + [ + 434121, + 90962, + 1095 + ], + [ + 434209, + 91606, + 1140 + ], + [ + 433893, + 91669, + 9746 + ], + [ + 433721, + 91734, + 13281 + ], + [ + 433659, + 91554, + 1113 + ], + [ + 433507, + 91445, + 10733 + ], + [ + 433707, + 91913, + 1115 + ], + [ + 425573, + 102122, + 1142 + ], + [ + 425136, + 101911, + 1121 + ], + [ + 424641, + 102835, + 1104 + ], + [ + 424598, + 102505, + 1125 + ], + [ + 425814, + 100638, + 1114 + ], + [ + 423888, + 102045, + 1077 + ], + [ + 425093, + 101580, + 1121 + ], + [ + 432322, + 93778, + 1031 + ], + [ + 432693, + 93653, + 1069 + ], + [ + 425963, + 105159, + 974 + ], + [ + 427065, + 103460, + 1022 + ], + [ + 426444, + 104177, + 9703 + ], + [ + 399391, + 126807, + 9700 + ], + [ + 399529, + 126983, + 11319 + ], + [ + 399211, + 126963, + 1099 + ], + [ + 398597, + 127853, + 9256 + ], + [ + 398096, + 127834, + 7882 + ], + [ + 400867, + 126931, + 11952 + ], + [ + 400690, + 126848, + 1105 + ], + [ + 400491, + 127222, + 10190 + ], + [ + 400735, + 127190, + 1099 + ], + [ + 400460, + 127357, + 1106 + ], + [ + 400841, + 127248, + 6658 + ], + [ + 401101, + 127053, + 1065 + ], + [ + 401123, + 127225, + 10663 + ], + [ + 399821, + 126504, + 10600 + ], + [ + 399728, + 126308, + 1121 + ], + [ + 400039, + 126483, + 1132 + ], + [ + 400827, + 127356, + 10598 + ], + [ + 401144, + 127385, + 1049 + ], + [ + 399826, + 126898, + 9925 + ], + [ + 399494, + 126787, + 1086 + ], + [ + 399826, + 126976, + 1249 + ], + [ + 399872, + 127063, + 5922 + ], + [ + 424905, + 104866, + 1039 + ], + [ + 424289, + 104675, + 7116 + ], + [ + 424524, + 104304, + 1066 + ], + [ + 428486, + 101190, + 10538 + ], + [ + 427137, + 100943, + 6853 + ], + [ + 427775, + 100748, + 10290 + ], + [ + 427737, + 100407, + 10396 + ], + [ + 428883, + 101571, + 1022 + ], + [ + 428190, + 101303, + 10095 + ], + [ + 428352, + 100212, + 10475 + ], + [ + 428821, + 100482, + 7117 + ], + [ + 427766, + 99704, + 12158 + ], + [ + 400325, + 126336, + 1122 + ], + [ + 400149, + 126277, + 11312 + ], + [ + 399994, + 126151, + 1122 + ], + [ + 400084, + 126829, + 1127 + ], + [ + 400147, + 126907, + 5926 + ], + [ + 435522, + 91001, + 1101 + ], + [ + 435157, + 91493, + 1128 + ], + [ + 401534, + 127250, + 6758 + ], + [ + 401129, + 127040, + 6895 + ], + [ + 434652, + 92820, + 1129 + ], + [ + 434058, + 92294, + 10950 + ], + [ + 434003, + 92079, + 1102 + ], + [ + 428593, + 101997, + 1001 + ], + [ + 424348, + 102952, + 1113 + ], + [ + 424525, + 102835, + 8715 + ], + [ + 424793, + 103056, + 12123 + ], + [ + 433743, + 95798, + 12035 + ], + [ + 399052, + 127987, + 9083 + ], + [ + 398650, + 125809, + 1070 + ], + [ + 398220, + 125989, + 1072 + ], + [ + 398906, + 127034, + 8803 + ], + [ + 398694, + 126144, + 1059 + ], + [ + 399171, + 126291, + 7544 + ], + [ + 398723, + 127254, + 12164 + ], + [ + 399313, + 125423, + 1081 + ], + [ + 399295, + 125736, + 10343 + ], + [ + 400509, + 127044, + 6703 + ], + [ + 399773, + 126657, + 1106 + ], + [ + 399078, + 125964, + 1076 + ], + [ + 400008, + 127824, + 10776 + ], + [ + 400430, + 126898, + 9929 + ], + [ + 400415, + 127012, + 1116 + ], + [ + 399325, + 126480, + 9375 + ], + [ + 399453, + 126464, + 1109 + ], + [ + 400372, + 126681, + 1138 + ], + [ + 400521, + 127549, + 9995 + ], + [ + 428129, + 101051, + 1071 + ], + [ + 428106, + 100966, + 9516 + ], + [ + 425059, + 101236, + 10110 + ], + [ + 425049, + 101264, + 1114 + ], + [ + 428465, + 100988, + 1072 + ], + [ + 429103, + 100802, + 1059 + ], + [ + 428711, + 100212, + 1126 + ], + [ + 400043, + 128411, + 5830 + ], + [ + 399720, + 128499, + 1079 + ], + [ + 399679, + 125948, + 1100 + ], + [ + 399548, + 124954, + 1106 + ], + [ + 433569, + 90882, + 1084 + ], + [ + 433296, + 91134, + 8304 + ], + [ + 434579, + 91693, + 10059 + ], + [ + 400646, + 126514, + 1109 + ], + [ + 400508, + 126669, + 7382 + ], + [ + 431409, + 95795, + 1065 + ], + [ + 433887, + 92382, + 14424 + ], + [ + 398002, + 129979, + 8456 + ], + [ + 397162, + 127610, + 1063 + ], + [ + 397594, + 127711, + 1052 + ], + [ + 397206, + 127957, + 1026 + ], + [ + 397773, + 129078, + 1020 + ], + [ + 395641, + 128169, + 1055 + ], + [ + 396768, + 127452, + 1029 + ], + [ + 396484, + 127596, + 1029 + ], + [ + 396441, + 127282, + 989 + ], + [ + 398012, + 127551, + 7236 + ], + [ + 398402, + 127345, + 1094 + ], + [ + 434518, + 91813, + 1113 + ], + [ + 397640, + 128115, + 6833 + ], + [ + 399033, + 125627, + 1073 + ], + [ + 398663, + 125787, + 7707 + ], + [ + 399637, + 125977, + 8970 + ], + [ + 423981, + 102718, + 1119 + ], + [ + 426125, + 100479, + 12127 + ], + [ + 427010, + 99905, + 13511 + ], + [ + 427446, + 100181, + 6643 + ], + [ + 400035, + 128675, + 1035 + ], + [ + 394753, + 130461, + 986 + ], + [ + 397792, + 126188, + 1042 + ], + [ + 398103, + 126193, + 5398 + ], + [ + 425202, + 105075, + 1012 + ], + [ + 425135, + 105374, + 7793 + ], + [ + 424947, + 105177, + 1048 + ], + [ + 425908, + 105099, + 6102 + ], + [ + 434255, + 91924, + 1184 + ], + [ + 434664, + 92234, + 6433 + ], + [ + 423734, + 102782, + 8284 + ], + [ + 394252, + 129929, + 1270 + ], + [ + 394302, + 130264, + 1350 + ], + [ + 393523, + 130270, + 1645 + ], + [ + 424988, + 105515, + 1001 + ], + [ + 424245, + 104744, + 1053 + ], + [ + 424157, + 104067, + 1082 + ], + [ + 424580, + 104197, + 6918 + ], + [ + 424818, + 104194, + 1065 + ], + [ + 424479, + 103971, + 1072 + ], + [ + 396814, + 127788, + 1060 + ], + [ + 396723, + 127109, + 1047 + ], + [ + 397929, + 127203, + 1065 + ], + [ + 399505, + 124619, + 1124 + ], + [ + 399378, + 124779, + 7537 + ], + [ + 396369, + 127441, + 7500 + ], + [ + 434356, + 94915, + 10260 + ], + [ + 400822, + 127870, + 1064 + ], + [ + 400806, + 127805, + 9467 + ], + [ + 398152, + 128900, + 1047 + ], + [ + 398358, + 127027, + 1086 + ], + [ + 398591, + 127074, + 10628 + ], + [ + 398335, + 127015, + 7138 + ], + [ + 400144, + 127067, + 9758 + ], + [ + 401561, + 127266, + 1052 + ], + [ + 398309, + 126670, + 1053 + ], + [ + 389482, + 137683, + 1059 + ], + [ + 389996, + 137173, + 1050 + ], + [ + 390810, + 138290, + 1009 + ], + [ + 390722, + 137602, + 1039 + ], + [ + 391285, + 138485, + 989 + ], + [ + 390436, + 138417, + 1007 + ], + [ + 390400, + 138088, + 5053 + ], + [ + 390393, + 138081, + 1019 + ], + [ + 425328, + 106063, + 944 + ], + [ + 425284, + 105730, + 958 + ], + [ + 425544, + 105243, + 5585 + ], + [ + 399272, + 125108, + 1088 + ], + [ + 397019, + 127652, + 8469 + ], + [ + 434585, + 92144, + 1447 + ], + [ + 388698, + 137894, + 1077 + ], + [ + 389103, + 137797, + 1069 + ], + [ + 390629, + 136921, + 1022 + ], + [ + 390257, + 137049, + 1047 + ], + [ + 390488, + 137028, + 4327 + ], + [ + 390255, + 137130, + 4803 + ], + [ + 389914, + 138615, + 1015 + ], + [ + 390128, + 138182, + 1023 + ], + [ + 389054, + 137436, + 1042 + ], + [ + 388978, + 137765, + 5295 + ], + [ + 390016, + 137163, + 5199 + ], + [ + 411712, + 116353, + 992 + ], + [ + 412373, + 116144, + 3482 + ], + [ + 412723, + 116148, + 999 + ], + [ + 390347, + 137728, + 1034 + ], + [ + 390856, + 138636, + 996 + ], + [ + 429188, + 101479, + 996 + ], + [ + 390609, + 139759, + 949 + ], + [ + 412170, + 115948, + 991 + ], + [ + 411672, + 116035, + 1010 + ], + [ + 391124, + 138545, + 4961 + ], + [ + 424241, + 104339, + 7053 + ], + [ + 411492, + 116247, + 4314 + ], + [ + 391428, + 133124, + 1384 + ], + [ + 393590, + 130982, + 1259 + ], + [ + 393547, + 130633, + 1311 + ], + [ + 393907, + 130813, + 963 + ], + [ + 391797, + 132985, + 960 + ], + [ + 393236, + 130836, + 1331 + ], + [ + 393214, + 130467, + 1709 + ], + [ + 392895, + 130683, + 979 + ], + [ + 393281, + 131184, + 1315 + ], + [ + 392966, + 131007, + 1372 + ], + [ + 391663, + 131969, + 980 + ], + [ + 392400, + 131324, + 997 + ], + [ + 392071, + 131842, + 977 + ], + [ + 394192, + 129620, + 1001 + ], + [ + 393311, + 131573, + 1004 + ], + [ + 390679, + 133708, + 1369 + ], + [ + 390638, + 133385, + 1403 + ], + [ + 390610, + 132992, + 1746 + ], + [ + 391378, + 132767, + 1347 + ], + [ + 391354, + 132386, + 1731 + ], + [ + 391776, + 132611, + 1377 + ], + [ + 391733, + 132262, + 1425 + ], + [ + 392676, + 131168, + 991 + ], + [ + 390180, + 133550, + 988 + ], + [ + 433810, + 92324, + 1112 + ], + [ + 367650, + 158541, + 1032 + ], + [ + 367458, + 158917, + 1032 + ], + [ + 365788, + 157197, + 1012 + ], + [ + 367797, + 157613, + 1022 + ], + [ + 367809, + 158208, + 1022 + ], + [ + 367091, + 156892, + 1012 + ], + [ + 367484, + 157103, + 1022 + ], + [ + 366280, + 156728, + 1002 + ], + [ + 364746, + 159143, + 1032 + ], + [ + 364397, + 158523, + 1012 + ], + [ + 366801, + 160205, + 1032 + ], + [ + 365191, + 160302, + 1052 + ], + [ + 366614, + 160567, + 1032 + ], + [ + 365453, + 160670, + 1052 + ], + [ + 366246, + 160828, + 1042 + ], + [ + 365762, + 160903, + 1052 + ], + [ + 366743, + 61321, + 521 + ], + [ + 366715, + 61012, + 684 + ], + [ + 367178, + 61033, + 596 + ], + [ + 360146, + 60654, + 505 + ], + [ + 362406, + 60014, + 526 + ], + [ + 359783, + 59648, + 530 + ], + [ + 363327, + 60736, + 584 + ], + [ + 365060, + 61939, + 567 + ], + [ + 364548, + 60883, + 525 + ], + [ + 367939, + 63755, + 694 + ], + [ + 363950, + 60818, + 564 + ], + [ + 368579, + 62108, + 676 + ], + [ + 367883, + 63414, + 545 + ], + [ + 359872, + 60335, + 520 + ], + [ + 362444, + 60353, + 425 + ], + [ + 276619, + 138066, + 992 + ], + [ + 276701, + 138123, + 992 + ], + [ + 271333, + 143816, + 911 + ], + [ + 271299, + 143461, + 1107 + ], + [ + 271806, + 142333, + 958 + ], + [ + 276896, + 134990, + 1082 + ], + [ + 278139, + 135883, + 1042 + ], + [ + 272893, + 140558, + 1052 + ], + [ + 278179, + 135825, + 1042 + ], + [ + 270504, + 144491, + 899 + ], + [ + 270075, + 138451, + 1171 + ], + [ + 269966, + 140380, + 1118 + ], + [ + 269404, + 139274, + 1136 + ], + [ + 272067, + 141754, + 946 + ], + [ + 270667, + 140950, + 1073 + ], + [ + 272888, + 141296, + 943 + ], + [ + 275114, + 140275, + 984 + ], + [ + 267332, + 148338, + 856 + ], + [ + 282476, + 162547, + 1026 + ], + [ + 281520, + 161268, + 823 + ], + [ + 276496, + 156973, + 1079 + ], + [ + 270105, + 153871, + 944 + ], + [ + 268391, + 147198, + 881 + ], + [ + 310521, + 145779, + 966 + ], + [ + 271102, + 101478, + 740 + ], + [ + 271485, + 100944, + 790 + ], + [ + 273542, + 102071, + 795 + ], + [ + 273800, + 98326, + 838 + ], + [ + 272670, + 99741, + 811 + ], + [ + 274593, + 100515, + 832 + ], + [ + 272398, + 99596, + 790 + ], + [ + 268053, + 105577, + 738 + ], + [ + 268697, + 99199, + 785 + ], + [ + 268903, + 103113, + 585 + ], + [ + 269329, + 103908, + 755 + ], + [ + 267460, + 101187, + 741 + ], + [ + 268235, + 100677, + 820 + ], + [ + 269338, + 102006, + 728 + ], + [ + 269056, + 104145, + 768 + ], + [ + 268589, + 103360, + 723 + ], + [ + 267071, + 101755, + 681 + ], + [ + 271017, + 100834, + 758 + ], + [ + 271058, + 101149, + 752 + ], + [ + 274364, + 98824, + 818 + ], + [ + 274455, + 99497, + 825 + ], + [ + 272911, + 99562, + 829 + ], + [ + 266693, + 101993, + 791 + ], + [ + 268141, + 100004, + 785 + ], + [ + 268434, + 104954, + 764 + ], + [ + 270059, + 102895, + 860 + ], + [ + 270467, + 102969, + 713 + ], + [ + 267844, + 100581, + 789 + ], + [ + 275350, + 99475, + 826 + ], + [ + 221743, + 136457, + 648 + ], + [ + 222631, + 134036, + 634 + ], + [ + 226841, + 134405, + 743 + ], + [ + 226406, + 134591, + 593 + ], + [ + 223827, + 133315, + 672 + ], + [ + 222347, + 134950, + 680 + ], + [ + 383073, + 43503, + 592 + ], + [ + 386250, + 42666, + 592 + ], + [ + 425929, + 58322, + 1045 + ], + [ + 366134, + 100539, + 622 + ], + [ + 365082, + 101593, + 632 + ], + [ + 360010, + 105604, + 642 + ], + [ + 370368, + 95603, + 592 + ], + [ + 360779, + 105741, + 642 + ], + [ + 361857, + 104697, + 642 + ], + [ + 365561, + 103453, + 694 + ], + [ + 364971, + 104124, + 696 + ], + [ + 361901, + 107539, + 792 + ], + [ + 361822, + 106815, + 712 + ], + [ + 362898, + 105757, + 692 + ], + [ + 372246, + 97494, + 752 + ], + [ + 370467, + 96364, + 612 + ], + [ + 367196, + 101608, + 642 + ], + [ + 370457, + 98470, + 652 + ], + [ + 371488, + 97446, + 682 + ], + [ + 369383, + 97413, + 612 + ], + [ + 366131, + 102645, + 662 + ], + [ + 368972, + 98867, + 738 + ], + [ + 365618, + 103790, + 860 + ], + [ + 312807, + 134360, + 1079 + ], + [ + 312314, + 133791, + 850 + ], + [ + 313654, + 133483, + 1029 + ], + [ + 305367, + 129285, + 1010 + ], + [ + 305314, + 128950, + 879 + ], + [ + 307665, + 130718, + 801 + ], + [ + 301981, + 125849, + 804 + ], + [ + 305269, + 125776, + 794 + ], + [ + 299515, + 128094, + 984 + ], + [ + 302336, + 128572, + 726 + ], + [ + 302726, + 129122, + 879 + ], + [ + 307563, + 134619, + 833 + ], + [ + 308681, + 131876, + 990 + ], + [ + 307764, + 131358, + 1001 + ], + [ + 310868, + 133110, + 822 + ], + [ + 311054, + 134487, + 877 + ], + [ + 310190, + 133672, + 812 + ], + [ + 315174, + 138287, + 973 + ], + [ + 313445, + 135650, + 1082 + ], + [ + 314504, + 133229, + 951 + ], + [ + 325938, + 146423, + 1041 + ], + [ + 325457, + 145886, + 815 + ], + [ + 322418, + 146540, + 798 + ], + [ + 321522, + 146095, + 918 + ], + [ + 321427, + 145443, + 809 + ], + [ + 324922, + 141775, + 945 + ], + [ + 321254, + 144066, + 921 + ], + [ + 317572, + 139980, + 910 + ], + [ + 319015, + 140631, + 747 + ], + [ + 316962, + 138758, + 971 + ], + [ + 316125, + 138311, + 861 + ], + [ + 313567, + 136635, + 975 + ], + [ + 304621, + 130196, + 1104 + ], + [ + 304850, + 128758, + 893 + ], + [ + 312647, + 136123, + 1176 + ], + [ + 313627, + 136981, + 1169 + ], + [ + 300730, + 129077, + 731 + ], + [ + 307946, + 132747, + 974 + ], + [ + 311400, + 134366, + 1045 + ], + [ + 309152, + 132477, + 820 + ], + [ + 308768, + 132532, + 997 + ], + [ + 312426, + 131698, + 694 + ], + [ + 324281, + 146988, + 804 + ], + [ + 300236, + 128203, + 805 + ], + [ + 300272, + 128531, + 716 + ], + [ + 306753, + 130995, + 921 + ], + [ + 312894, + 135072, + 977 + ], + [ + 311836, + 134979, + 1080 + ], + [ + 312178, + 132782, + 816 + ], + [ + 312988, + 132258, + 982 + ], + [ + 312579, + 132700, + 972 + ], + [ + 324053, + 148484, + 964 + ], + [ + 322563, + 147522, + 996 + ], + [ + 323521, + 147616, + 811 + ], + [ + 309061, + 131794, + 807 + ], + [ + 302426, + 129247, + 742 + ], + [ + 313031, + 136042, + 1099 + ], + [ + 312546, + 135462, + 987 + ], + [ + 321960, + 146649, + 819 + ], + [ + 275475, + 103353, + 863 + ], + [ + 275368, + 106193, + 947 + ], + [ + 275223, + 105228, + 751 + ], + [ + 274344, + 105579, + 870 + ], + [ + 274790, + 105715, + 736 + ], + [ + 391587, + 60427, + 897 + ], + [ + 391318, + 58414, + 860 + ], + [ + 392796, + 60099, + 832 + ], + [ + 388995, + 59933, + 810 + ], + [ + 387242, + 62076, + 857 + ], + [ + 388863, + 58919, + 828 + ], + [ + 388439, + 58768, + 843 + ], + [ + 388355, + 58122, + 848 + ], + [ + 389204, + 58045, + 849 + ], + [ + 387338, + 65627, + 827 + ], + [ + 386935, + 62591, + 826 + ], + [ + 391031, + 60743, + 751 + ], + [ + 386142, + 62332, + 822 + ], + [ + 386572, + 62787, + 799 + ], + [ + 386500, + 65020, + 835 + ], + [ + 392896, + 60958, + 882 + ], + [ + 389424, + 59737, + 808 + ], + [ + 389380, + 59399, + 810 + ], + [ + 390026, + 57684, + 830 + ], + [ + 385688, + 62180, + 817 + ], + [ + 395439, + 33798, + 622 + ], + [ + 396591, + 33463, + 632 + ], + [ + 396716, + 33896, + 642 + ], + [ + 395564, + 34230, + 632 + ], + [ + 405450, + 106376, + 940 + ], + [ + 235199, + 132876, + 712 + ], + [ + 235342, + 133869, + 806 + ], + [ + 226281, + 130328, + 733 + ], + [ + 229817, + 132981, + 986 + ], + [ + 228914, + 132270, + 999 + ], + [ + 229234, + 131801, + 726 + ], + [ + 232296, + 134563, + 1017 + ], + [ + 228138, + 131533, + 966 + ], + [ + 230175, + 132189, + 852 + ], + [ + 230277, + 132832, + 1043 + ], + [ + 231230, + 133254, + 703 + ], + [ + 233239, + 134229, + 723 + ], + [ + 232244, + 134205, + 984 + ], + [ + 235735, + 134406, + 789 + ], + [ + 226188, + 129680, + 681 + ], + [ + 226235, + 129991, + 758 + ], + [ + 228073, + 131188, + 725 + ], + [ + 230634, + 132024, + 700 + ], + [ + 227946, + 128058, + 645 + ], + [ + 350141, + 122886, + 742 + ], + [ + 347205, + 126302, + 752 + ], + [ + 344822, + 121668, + 715 + ], + [ + 360369, + 110915, + 652 + ], + [ + 354926, + 108852, + 642 + ], + [ + 359563, + 106065, + 642 + ], + [ + 361890, + 108444, + 732 + ], + [ + 361606, + 109866, + 632 + ], + [ + 379954, + 89164, + 712 + ], + [ + 379632, + 90679, + 730 + ], + [ + 379572, + 90939, + 922 + ], + [ + 379383, + 91080, + 677 + ], + [ + 377012, + 90096, + 622 + ], + [ + 379386, + 88579, + 722 + ], + [ + 379670, + 88872, + 722 + ], + [ + 353638, + 118214, + 719 + ], + [ + 354684, + 116451, + 682 + ], + [ + 353909, + 118490, + 852 + ], + [ + 368462, + 70410, + 542 + ], + [ + 303617, + 70561, + 560 + ], + [ + 306618, + 69288, + 522 + ], + [ + 305887, + 71683, + 562 + ], + [ + 304437, + 71387, + 621 + ], + [ + 317569, + 80196, + 623 + ], + [ + 320909, + 82425, + 562 + ], + [ + 316531, + 79673, + 872 + ], + [ + 309289, + 74476, + 607 + ], + [ + 311243, + 75969, + 641 + ], + [ + 314293, + 78125, + 624 + ], + [ + 315972, + 78655, + 607 + ], + [ + 315642, + 78751, + 620 + ], + [ + 316061, + 79305, + 643 + ], + [ + 316637, + 79434, + 746 + ], + [ + 336807, + 95173, + 673 + ], + [ + 338208, + 96250, + 552 + ], + [ + 320553, + 82941, + 572 + ], + [ + 325695, + 84711, + 522 + ], + [ + 334893, + 93514, + 549 + ], + [ + 336440, + 93341, + 552 + ], + [ + 336474, + 93380, + 552 + ], + [ + 352789, + 118551, + 697 + ], + [ + 353153, + 119210, + 842 + ], + [ + 375222, + 87220, + 607 + ], + [ + 373735, + 84574, + 602 + ], + [ + 375340, + 85504, + 781 + ], + [ + 346341, + 119762, + 670 + ], + [ + 350182, + 114993, + 652 + ], + [ + 346028, + 120160, + 731 + ], + [ + 345800, + 120530, + 702 + ], + [ + 343678, + 123486, + 746 + ], + [ + 346993, + 126549, + 752 + ], + [ + 350357, + 122646, + 752 + ], + [ + 353309, + 119358, + 842 + ], + [ + 347282, + 126370, + 762 + ], + [ + 350233, + 122953, + 822 + ], + [ + 349294, + 119682, + 659 + ], + [ + 350436, + 122705, + 822 + ], + [ + 337030, + 93622, + 552 + ], + [ + 337082, + 93620, + 552 + ], + [ + 336978, + 93620, + 552 + ], + [ + 336926, + 93615, + 552 + ], + [ + 336875, + 93606, + 552 + ], + [ + 336825, + 93594, + 552 + ], + [ + 336775, + 93578, + 552 + ], + [ + 336727, + 93559, + 552 + ], + [ + 336680, + 93537, + 552 + ], + [ + 336635, + 93511, + 552 + ], + [ + 336550, + 93451, + 552 + ], + [ + 336591, + 93483, + 552 + ], + [ + 336511, + 93417, + 552 + ], + [ + 336408, + 93300, + 552 + ], + [ + 336380, + 93256, + 552 + ], + [ + 336354, + 93211, + 552 + ], + [ + 336332, + 93164, + 552 + ], + [ + 336297, + 93066, + 552 + ], + [ + 336313, + 93116, + 552 + ], + [ + 336285, + 93016, + 552 + ], + [ + 336276, + 92965, + 552 + ], + [ + 336271, + 92913, + 552 + ], + [ + 336269, + 92861, + 552 + ], + [ + 336271, + 92809, + 552 + ], + [ + 336276, + 92757, + 552 + ], + [ + 336285, + 92706, + 552 + ], + [ + 336297, + 92656, + 562 + ], + [ + 336313, + 92606, + 562 + ], + [ + 336332, + 92558, + 562 + ], + [ + 336354, + 92511, + 562 + ], + [ + 336380, + 92466, + 562 + ], + [ + 337178, + 87197, + 542 + ], + [ + 337194, + 87247, + 542 + ], + [ + 336408, + 92422, + 562 + ], + [ + 337855, + 87748, + 542 + ], + [ + 337907, + 87750, + 542 + ], + [ + 337235, + 92128, + 552 + ], + [ + 336440, + 92381, + 562 + ], + [ + 336474, + 92342, + 562 + ], + [ + 337235, + 87341, + 542 + ], + [ + 336511, + 92305, + 562 + ], + [ + 337260, + 87386, + 542 + ], + [ + 336550, + 92271, + 562 + ], + [ + 338945, + 80700, + 532 + ], + [ + 351242, + 80381, + 544 + ], + [ + 338993, + 80719, + 532 + ], + [ + 336591, + 92239, + 562 + ], + [ + 337289, + 87430, + 542 + ], + [ + 337320, + 87471, + 542 + ], + [ + 336635, + 92211, + 562 + ], + [ + 337354, + 87510, + 542 + ], + [ + 336680, + 92185, + 552 + ], + [ + 337390, + 87546, + 542 + ], + [ + 336727, + 92163, + 562 + ], + [ + 336775, + 92144, + 562 + ], + [ + 337470, + 87611, + 542 + ], + [ + 336825, + 92128, + 562 + ], + [ + 337429, + 87580, + 542 + ], + [ + 337514, + 87640, + 542 + ], + [ + 336875, + 92116, + 562 + ], + [ + 337559, + 87665, + 542 + ], + [ + 336926, + 92107, + 562 + ], + [ + 337605, + 87687, + 542 + ], + [ + 336978, + 92102, + 562 + ], + [ + 337653, + 87706, + 542 + ], + [ + 337030, + 92100, + 552 + ], + [ + 337703, + 87722, + 542 + ], + [ + 337082, + 92102, + 552 + ], + [ + 337753, + 87734, + 542 + ], + [ + 337134, + 92107, + 552 + ], + [ + 337804, + 87743, + 542 + ], + [ + 337185, + 92116, + 552 + ], + [ + 337959, + 87748, + 542 + ], + [ + 338010, + 87743, + 542 + ], + [ + 337333, + 92163, + 552 + ], + [ + 338061, + 87734, + 542 + ], + [ + 338111, + 87722, + 542 + ], + [ + 337425, + 92211, + 552 + ], + [ + 338161, + 87706, + 542 + ], + [ + 338209, + 87688, + 542 + ], + [ + 337510, + 92271, + 552 + ], + [ + 338255, + 87665, + 542 + ], + [ + 338300, + 87640, + 542 + ], + [ + 342488, + 90818, + 546 + ], + [ + 338385, + 87580, + 542 + ], + [ + 338424, + 87546, + 542 + ], + [ + 337959, + 86238, + 532 + ], + [ + 337907, + 86236, + 532 + ], + [ + 338492, + 82129, + 522 + ], + [ + 338161, + 86280, + 532 + ], + [ + 338111, + 86264, + 532 + ], + [ + 338694, + 82157, + 532 + ], + [ + 343414, + 94496, + 559 + ], + [ + 343556, + 94047, + 952 + ], + [ + 343855, + 94856, + 952 + ], + [ + 346944, + 84398, + 533 + ], + [ + 339442, + 81356, + 542 + ], + [ + 339437, + 81305, + 542 + ], + [ + 337134, + 93615, + 552 + ], + [ + 342940, + 89804, + 552 + ], + [ + 338554, + 87386, + 542 + ], + [ + 338579, + 87341, + 532 + ], + [ + 337789, + 92913, + 562 + ], + [ + 342670, + 92193, + 548 + ], + [ + 337784, + 92965, + 562 + ], + [ + 337775, + 93016, + 562 + ], + [ + 342937, + 94199, + 545 + ], + [ + 337763, + 93066, + 562 + ], + [ + 337747, + 93116, + 562 + ], + [ + 337728, + 93164, + 562 + ], + [ + 337706, + 93211, + 562 + ], + [ + 337680, + 93256, + 562 + ], + [ + 337652, + 93300, + 562 + ], + [ + 337620, + 93341, + 562 + ], + [ + 337586, + 93380, + 562 + ], + [ + 337549, + 93417, + 552 + ], + [ + 337510, + 93451, + 562 + ], + [ + 337469, + 93483, + 562 + ], + [ + 337425, + 93511, + 552 + ], + [ + 337380, + 93537, + 552 + ], + [ + 337333, + 93559, + 552 + ], + [ + 337285, + 93578, + 552 + ], + [ + 337235, + 93594, + 552 + ], + [ + 337185, + 93606, + 552 + ], + [ + 338847, + 82141, + 542 + ], + [ + 338255, + 86321, + 532 + ], + [ + 338796, + 82150, + 542 + ], + [ + 338221, + 81989, + 522 + ], + [ + 337605, + 86299, + 532 + ], + [ + 338182, + 81955, + 522 + ], + [ + 327152, + 82909, + 492 + ], + [ + 337972, + 81609, + 512 + ], + [ + 337987, + 81658, + 512 + ], + [ + 337960, + 81560, + 512 + ], + [ + 337951, + 81509, + 512 + ], + [ + 337946, + 81458, + 512 + ], + [ + 337944, + 81407, + 512 + ], + [ + 337946, + 81356, + 512 + ], + [ + 337951, + 81305, + 512 + ], + [ + 337960, + 81254, + 502 + ], + [ + 337972, + 81205, + 502 + ], + [ + 337987, + 81156, + 502 + ], + [ + 338006, + 81108, + 502 + ], + [ + 338028, + 81062, + 502 + ], + [ + 338053, + 81017, + 502 + ], + [ + 338081, + 80974, + 502 + ], + [ + 338112, + 80934, + 502 + ], + [ + 338146, + 80895, + 502 + ], + [ + 338182, + 80859, + 502 + ], + [ + 338221, + 80825, + 512 + ], + [ + 338261, + 80794, + 512 + ], + [ + 338304, + 80766, + 512 + ], + [ + 338349, + 80741, + 512 + ], + [ + 338395, + 80719, + 512 + ], + [ + 342944, + 90666, + 732 + ], + [ + 338443, + 80700, + 502 + ], + [ + 366246, + 70840, + 482 + ], + [ + 338541, + 80673, + 512 + ], + [ + 338492, + 80685, + 502 + ], + [ + 338592, + 80664, + 512 + ], + [ + 338643, + 80659, + 512 + ], + [ + 338694, + 80657, + 512 + ], + [ + 338745, + 80659, + 522 + ], + [ + 338796, + 80664, + 522 + ], + [ + 338847, + 80673, + 522 + ], + [ + 354860, + 79368, + 513 + ], + [ + 359198, + 79639, + 520 + ], + [ + 357071, + 79250, + 524 + ], + [ + 339084, + 80766, + 532 + ], + [ + 339039, + 80741, + 532 + ], + [ + 339127, + 80794, + 532 + ], + [ + 347798, + 83892, + 962 + ], + [ + 347355, + 84507, + 962 + ], + [ + 339167, + 80825, + 532 + ], + [ + 350781, + 80763, + 542 + ], + [ + 339206, + 80859, + 532 + ], + [ + 346957, + 85151, + 952 + ], + [ + 346604, + 85822, + 962 + ], + [ + 345875, + 86545, + 536 + ], + [ + 339276, + 80934, + 532 + ], + [ + 339242, + 80895, + 532 + ], + [ + 348533, + 82562, + 544 + ], + [ + 346299, + 86515, + 962 + ], + [ + 345422, + 88361, + 555 + ], + [ + 345924, + 86889, + 586 + ], + [ + 345836, + 87957, + 942 + ], + [ + 339360, + 81062, + 532 + ], + [ + 339382, + 81108, + 532 + ], + [ + 346042, + 87228, + 952 + ], + [ + 345271, + 89390, + 559 + ], + [ + 345680, + 88698, + 942 + ], + [ + 345577, + 89449, + 932 + ], + [ + 345526, + 90204, + 952 + ], + [ + 345169, + 90443, + 551 + ], + [ + 343427, + 91086, + 569 + ], + [ + 345527, + 90962, + 952 + ], + [ + 343188, + 91120, + 962 + ], + [ + 343132, + 92378, + 972 + ], + [ + 343315, + 93220, + 942 + ], + [ + 338061, + 86252, + 532 + ], + [ + 338643, + 82155, + 532 + ], + [ + 338010, + 86243, + 532 + ], + [ + 338541, + 82141, + 522 + ], + [ + 337855, + 86238, + 532 + ], + [ + 337804, + 86243, + 532 + ], + [ + 338395, + 82095, + 522 + ], + [ + 339334, + 81796, + 542 + ], + [ + 339306, + 81839, + 542 + ], + [ + 339275, + 81880, + 542 + ], + [ + 338579, + 86645, + 532 + ], + [ + 339206, + 81955, + 542 + ], + [ + 339242, + 81919, + 542 + ], + [ + 338554, + 86600, + 532 + ], + [ + 339167, + 81988, + 542 + ], + [ + 338525, + 86556, + 532 + ], + [ + 339126, + 82019, + 542 + ], + [ + 338494, + 86515, + 532 + ], + [ + 339083, + 82047, + 542 + ], + [ + 338460, + 86476, + 532 + ], + [ + 339039, + 82073, + 542 + ], + [ + 338424, + 86440, + 532 + ], + [ + 338993, + 82095, + 542 + ], + [ + 337285, + 92144, + 552 + ], + [ + 337289, + 86556, + 532 + ], + [ + 337152, + 87045, + 532 + ], + [ + 338385, + 86406, + 532 + ], + [ + 338945, + 82113, + 542 + ], + [ + 338344, + 86375, + 532 + ], + [ + 338896, + 82129, + 542 + ], + [ + 338300, + 86346, + 532 + ], + [ + 338209, + 86299, + 532 + ], + [ + 338745, + 82155, + 532 + ], + [ + 338592, + 82150, + 522 + ], + [ + 338443, + 82114, + 522 + ], + [ + 337178, + 86789, + 532 + ], + [ + 337166, + 86839, + 532 + ], + [ + 337213, + 87295, + 542 + ], + [ + 337703, + 86264, + 532 + ], + [ + 338261, + 82020, + 522 + ], + [ + 338304, + 82048, + 522 + ], + [ + 337653, + 86280, + 522 + ], + [ + 337559, + 86321, + 532 + ], + [ + 338146, + 81919, + 522 + ], + [ + 337166, + 87147, + 542 + ], + [ + 337514, + 86346, + 532 + ], + [ + 338112, + 81880, + 522 + ], + [ + 337157, + 87096, + 532 + ], + [ + 338081, + 81840, + 512 + ], + [ + 337470, + 86375, + 532 + ], + [ + 337390, + 86440, + 532 + ], + [ + 338028, + 81752, + 512 + ], + [ + 338053, + 81797, + 512 + ], + [ + 337150, + 86993, + 532 + ], + [ + 338006, + 81706, + 512 + ], + [ + 337354, + 86476, + 532 + ], + [ + 337152, + 86941, + 532 + ], + [ + 337320, + 86515, + 532 + ], + [ + 337157, + 86890, + 532 + ], + [ + 337429, + 86406, + 532 + ], + [ + 338349, + 82073, + 522 + ], + [ + 337753, + 86252, + 532 + ], + [ + 337194, + 86739, + 532 + ], + [ + 337213, + 86691, + 532 + ], + [ + 337235, + 86645, + 532 + ], + [ + 337260, + 86600, + 532 + ], + [ + 339360, + 81752, + 542 + ], + [ + 339382, + 81706, + 542 + ], + [ + 339400, + 81658, + 532 + ], + [ + 339416, + 81609, + 542 + ], + [ + 337620, + 92381, + 562 + ], + [ + 337586, + 92342, + 562 + ], + [ + 338601, + 86691, + 532 + ], + [ + 343008, + 91525, + 962 + ], + [ + 338620, + 86739, + 532 + ], + [ + 338636, + 86789, + 532 + ], + [ + 337706, + 92511, + 562 + ], + [ + 337680, + 92466, + 562 + ], + [ + 338648, + 86839, + 532 + ], + [ + 337728, + 92558, + 562 + ], + [ + 343549, + 95515, + 555 + ], + [ + 337747, + 92606, + 562 + ], + [ + 337763, + 92656, + 562 + ], + [ + 337549, + 92305, + 562 + ], + [ + 338344, + 87612, + 542 + ], + [ + 338657, + 87096, + 532 + ], + [ + 338662, + 87045, + 532 + ], + [ + 338602, + 87295, + 532 + ], + [ + 338620, + 87247, + 532 + ], + [ + 338526, + 87430, + 542 + ], + [ + 338494, + 87471, + 542 + ], + [ + 338460, + 87510, + 542 + ], + [ + 337469, + 92239, + 552 + ], + [ + 337380, + 92185, + 552 + ], + [ + 376640, + 76733, + 737 + ], + [ + 376820, + 78088, + 754 + ], + [ + 372943, + 82294, + 573 + ], + [ + 374054, + 83893, + 778 + ], + [ + 373612, + 83577, + 721 + ], + [ + 372669, + 90403, + 589 + ], + [ + 377365, + 92773, + 614 + ], + [ + 380852, + 92275, + 822 + ], + [ + 378086, + 94716, + 754 + ], + [ + 376427, + 91506, + 750 + ], + [ + 361712, + 110534, + 893 + ], + [ + 374122, + 98431, + 783 + ], + [ + 376719, + 95882, + 909 + ], + [ + 373803, + 98802, + 931 + ], + [ + 373170, + 97523, + 722 + ], + [ + 370830, + 95170, + 592 + ], + [ + 374727, + 94299, + 612 + ], + [ + 367640, + 91095, + 547 + ], + [ + 367718, + 89456, + 533 + ], + [ + 352854, + 102675, + 611 + ], + [ + 353621, + 102409, + 992 + ], + [ + 353677, + 102614, + 624 + ], + [ + 373699, + 93197, + 622 + ], + [ + 367234, + 93082, + 572 + ], + [ + 367408, + 91735, + 559 + ], + [ + 375825, + 93298, + 612 + ], + [ + 377215, + 94808, + 663 + ], + [ + 375932, + 95276, + 629 + ], + [ + 369513, + 102895, + 898 + ], + [ + 368925, + 103178, + 694 + ], + [ + 368533, + 102804, + 821 + ], + [ + 357121, + 114258, + 690 + ], + [ + 357313, + 102636, + 626 + ], + [ + 357879, + 102206, + 1032 + ], + [ + 358415, + 102200, + 669 + ], + [ + 356066, + 102787, + 612 + ], + [ + 352772, + 102264, + 982 + ], + [ + 344661, + 97071, + 564 + ], + [ + 345078, + 97129, + 952 + ], + [ + 345587, + 97824, + 972 + ], + [ + 351496, + 102078, + 679 + ], + [ + 351934, + 102059, + 982 + ], + [ + 352342, + 102331, + 636 + ], + [ + 338664, + 86993, + 532 + ], + [ + 351113, + 101797, + 982 + ], + [ + 337775, + 92706, + 562 + ], + [ + 346332, + 99203, + 576 + ], + [ + 349177, + 101201, + 605 + ], + [ + 337789, + 92809, + 562 + ], + [ + 337784, + 92757, + 562 + ], + [ + 350599, + 102076, + 589 + ], + [ + 350313, + 101478, + 982 + ], + [ + 337791, + 92861, + 562 + ], + [ + 349536, + 101104, + 982 + ], + [ + 348071, + 100199, + 972 + ], + [ + 348788, + 100677, + 982 + ], + [ + 338648, + 87147, + 532 + ], + [ + 338636, + 87197, + 532 + ], + [ + 346746, + 99098, + 952 + ], + [ + 346573, + 99153, + 652 + ], + [ + 346296, + 98891, + 641 + ], + [ + 346145, + 98481, + 952 + ], + [ + 338662, + 86941, + 532 + ], + [ + 344621, + 96737, + 622 + ], + [ + 339428, + 81560, + 542 + ], + [ + 339437, + 81509, + 542 + ], + [ + 344209, + 95641, + 982 + ], + [ + 338657, + 86890, + 532 + ], + [ + 339442, + 81458, + 542 + ], + [ + 339444, + 81407, + 542 + ], + [ + 343175, + 90933, + 962 + ], + [ + 343165, + 90746, + 952 + ], + [ + 343378, + 90730, + 558 + ], + [ + 343158, + 89811, + 552 + ], + [ + 344247, + 90608, + 539 + ], + [ + 343153, + 89998, + 552 + ], + [ + 343152, + 90185, + 562 + ], + [ + 343158, + 90559, + 952 + ], + [ + 339428, + 81254, + 542 + ], + [ + 339416, + 81205, + 542 + ], + [ + 339401, + 81156, + 532 + ], + [ + 339335, + 81017, + 532 + ], + [ + 339307, + 80974, + 532 + ], + [ + 348282, + 83309, + 962 + ], + [ + 349959, + 81780, + 952 + ], + [ + 349365, + 82251, + 952 + ], + [ + 338896, + 80685, + 522 + ], + [ + 353335, + 80103, + 942 + ], + [ + 351855, + 80363, + 563 + ], + [ + 350584, + 81352, + 962 + ], + [ + 351916, + 80632, + 952 + ], + [ + 351237, + 80969, + 952 + ], + [ + 352616, + 80343, + 952 + ], + [ + 352216, + 80345, + 831 + ], + [ + 356322, + 79655, + 952 + ], + [ + 355566, + 79689, + 942 + ], + [ + 354813, + 79775, + 942 + ], + [ + 357834, + 79746, + 952 + ], + [ + 357080, + 79674, + 952 + ], + [ + 358037, + 79575, + 592 + ], + [ + 359910, + 79971, + 536 + ], + [ + 359254, + 80038, + 962 + ], + [ + 358549, + 79868, + 962 + ], + [ + 360623, + 80514, + 952 + ], + [ + 359946, + 80253, + 952 + ], + [ + 363565, + 81970, + 527 + ], + [ + 363669, + 82451, + 952 + ], + [ + 363114, + 81985, + 952 + ], + [ + 360937, + 80295, + 528 + ], + [ + 361281, + 80819, + 952 + ], + [ + 361901, + 80920, + 540 + ], + [ + 361917, + 81167, + 952 + ], + [ + 362626, + 81241, + 539 + ], + [ + 362908, + 81591, + 569 + ], + [ + 362529, + 81556, + 952 + ], + [ + 364459, + 82968, + 553 + ], + [ + 364682, + 83489, + 942 + ], + [ + 364193, + 82953, + 942 + ], + [ + 365017, + 83629, + 561 + ], + [ + 365614, + 84313, + 541 + ], + [ + 365134, + 84056, + 942 + ], + [ + 365548, + 84651, + 952 + ], + [ + 366211, + 85333, + 546 + ], + [ + 366702, + 86377, + 541 + ], + [ + 366254, + 85917, + 932 + ], + [ + 366950, + 94430, + 570 + ], + [ + 366744, + 86692, + 560 + ], + [ + 366542, + 86583, + 962 + ], + [ + 367154, + 87407, + 522 + ], + [ + 366984, + 87963, + 952 + ], + [ + 366786, + 87266, + 952 + ], + [ + 367377, + 89092, + 552 + ], + [ + 367240, + 89390, + 962 + ], + [ + 367136, + 88672, + 962 + ], + [ + 367423, + 89440, + 558 + ], + [ + 367466, + 89770, + 546 + ], + [ + 367297, + 90113, + 962 + ], + [ + 367367, + 91403, + 593 + ], + [ + 367267, + 91562, + 952 + ], + [ + 367306, + 90838, + 962 + ], + [ + 367192, + 92743, + 604 + ], + [ + 367046, + 92995, + 962 + ], + [ + 367180, + 92282, + 962 + ], + [ + 366905, + 94071, + 589 + ], + [ + 366557, + 94636, + 972 + ], + [ + 366830, + 93824, + 972 + ], + [ + 366571, + 95395, + 577 + ], + [ + 366530, + 95079, + 598 + ], + [ + 365895, + 96761, + 565 + ], + [ + 365853, + 96414, + 628 + ], + [ + 365405, + 96929, + 972 + ], + [ + 365842, + 96192, + 972 + ], + [ + 364254, + 98741, + 587 + ], + [ + 362230, + 100487, + 608 + ], + [ + 365036, + 97744, + 592 + ], + [ + 364379, + 98300, + 972 + ], + [ + 363797, + 98928, + 972 + ], + [ + 363171, + 99514, + 972 + ], + [ + 360922, + 101422, + 605 + ], + [ + 361197, + 101111, + 620 + ], + [ + 359622, + 102141, + 609 + ], + [ + 358785, + 102210, + 619 + ], + [ + 359517, + 101709, + 1012 + ], + [ + 357037, + 102367, + 1042 + ], + [ + 356186, + 102468, + 1032 + ], + [ + 354518, + 102928, + 609 + ], + [ + 355331, + 102509, + 992 + ], + [ + 354483, + 102589, + 739 + ], + [ + 354474, + 102489, + 992 + ], + [ + 343153, + 90372, + 732 + ], + [ + 345217, + 90801, + 563 + ], + [ + 354068, + 79913, + 942 + ], + [ + 348805, + 82761, + 952 + ], + [ + 351034, + 80731, + 556 + ], + [ + 358707, + 101987, + 1022 + ], + [ + 344053, + 95796, + 582 + ], + [ + 366227, + 95427, + 972 + ], + [ + 364971, + 83295, + 536 + ], + [ + 350561, + 101742, + 653 + ], + [ + 343309, + 93487, + 965 + ], + [ + 343371, + 94162, + 589 + ], + [ + 364916, + 97633, + 972 + ], + [ + 362506, + 100054, + 992 + ], + [ + 361805, + 100546, + 972 + ], + [ + 359586, + 101792, + 749 + ], + [ + 360493, + 101456, + 627 + ], + [ + 361070, + 100987, + 972 + ], + [ + 365922, + 85273, + 932 + ], + [ + 347389, + 99672, + 972 + ], + [ + 309197, + 73799, + 577 + ], + [ + 311928, + 76441, + 654 + ], + [ + 374822, + 92177, + 702 + ], + [ + 374991, + 90957, + 848 + ], + [ + 344617, + 96400, + 952 + ], + [ + 370322, + 101696, + 825 + ], + [ + 370707, + 101388, + 996 + ], + [ + 360875, + 111554, + 726 + ], + [ + 357729, + 114680, + 912 + ], + [ + 372688, + 99752, + 773 + ], + [ + 376672, + 95563, + 843 + ], + [ + 376344, + 95610, + 816 + ], + [ + 368662, + 103819, + 748 + ], + [ + 368565, + 103147, + 623 + ], + [ + 368171, + 103476, + 947 + ], + [ + 367269, + 104143, + 775 + ], + [ + 368444, + 102156, + 761 + ], + [ + 364608, + 107864, + 922 + ], + [ + 364138, + 108221, + 792 + ], + [ + 364516, + 107187, + 881 + ], + [ + 369653, + 101596, + 945 + ], + [ + 371306, + 99388, + 869 + ], + [ + 363317, + 108567, + 900 + ], + [ + 363491, + 106897, + 881 + ], + [ + 368488, + 102487, + 767 + ], + [ + 369427, + 102246, + 887 + ], + [ + 356842, + 115310, + 757 + ], + [ + 355146, + 116432, + 829 + ], + [ + 306365, + 71921, + 588 + ], + [ + 373481, + 82576, + 738 + ], + [ + 373732, + 81547, + 605 + ], + [ + 373981, + 97455, + 620 + ], + [ + 374855, + 96731, + 642 + ], + [ + 360307, + 101376, + 982 + ], + [ + 337652, + 92422, + 562 + ], + [ + 365671, + 106457, + 915 + ], + [ + 377152, + 87666, + 725 + ], + [ + 375181, + 89576, + 631 + ], + [ + 374586, + 90966, + 706 + ], + [ + 373734, + 92023, + 753 + ], + [ + 366073, + 105455, + 902 + ], + [ + 313227, + 77388, + 636 + ], + [ + 317047, + 79645, + 725 + ], + [ + 362092, + 110186, + 774 + ], + [ + 365875, + 105798, + 759 + ], + [ + 360837, + 111202, + 820 + ], + [ + 362260, + 109148, + 660 + ], + [ + 376027, + 95977, + 665 + ], + [ + 376076, + 96310, + 736 + ], + [ + 377265, + 95155, + 719 + ], + [ + 374962, + 97378, + 935 + ], + [ + 279881, + 113604, + 776 + ], + [ + 281222, + 113252, + 757 + ], + [ + 280922, + 114088, + 989 + ], + [ + 280828, + 110254, + 884 + ], + [ + 281617, + 111662, + 764 + ], + [ + 279582, + 111252, + 1013 + ], + [ + 280457, + 107579, + 742 + ], + [ + 282181, + 109610, + 820 + ], + [ + 280090, + 108003, + 820 + ], + [ + 278725, + 108031, + 657 + ], + [ + 278312, + 107810, + 782 + ], + [ + 281822, + 113009, + 1091 + ], + [ + 282519, + 111962, + 1102 + ], + [ + 281091, + 112286, + 756 + ], + [ + 278446, + 113384, + 1065 + ], + [ + 283464, + 109843, + 716 + ], + [ + 282273, + 110313, + 778 + ], + [ + 275951, + 110587, + 843 + ], + [ + 277760, + 110174, + 834 + ], + [ + 276091, + 111579, + 923 + ], + [ + 278138, + 112845, + 1090 + ], + [ + 279092, + 113528, + 900 + ], + [ + 280489, + 114495, + 927 + ], + [ + 279476, + 110607, + 758 + ], + [ + 277071, + 112249, + 833 + ], + [ + 278722, + 110849, + 784 + ], + [ + 278874, + 109027, + 860 + ], + [ + 280314, + 109718, + 725 + ], + [ + 277418, + 112100, + 826 + ], + [ + 283830, + 109333, + 813 + ], + [ + 241584, + 106947, + 530 + ], + [ + 242064, + 105938, + 462 + ], + [ + 242111, + 105909, + 462 + ], + [ + 235216, + 110269, + 492 + ], + [ + 241408, + 107311, + 769 + ], + [ + 282378, + 137833, + 1066 + ], + [ + 284722, + 136719, + 1192 + ], + [ + 279527, + 133298, + 1093 + ], + [ + 279268, + 131691, + 1312 + ], + [ + 284905, + 135919, + 1204 + ], + [ + 284238, + 135510, + 1076 + ], + [ + 278221, + 135940, + 1042 + ], + [ + 282083, + 140355, + 1181 + ], + [ + 276684, + 139317, + 1111 + ], + [ + 281591, + 138471, + 1200 + ], + [ + 280022, + 140598, + 1157 + ], + [ + 280440, + 140065, + 1100 + ], + [ + 281257, + 140405, + 1247 + ], + [ + 281205, + 140082, + 1120 + ], + [ + 281667, + 137322, + 1077 + ], + [ + 280934, + 138032, + 1191 + ], + [ + 282531, + 135985, + 1202 + ], + [ + 281593, + 134527, + 1114 + ], + [ + 281873, + 134064, + 1119 + ], + [ + 279462, + 140092, + 1223 + ], + [ + 280867, + 133022, + 1316 + ], + [ + 280652, + 133521, + 1280 + ], + [ + 280916, + 133383, + 1325 + ], + [ + 280684, + 133853, + 1104 + ], + [ + 344179, + 129988, + 742 + ], + [ + 343653, + 129587, + 642 + ], + [ + 343754, + 129442, + 642 + ], + [ + 347070, + 126618, + 752 + ], + [ + 343332, + 129120, + 812 + ], + [ + 343243, + 128745, + 637 + ], + [ + 341400, + 127793, + 662 + ], + [ + 341525, + 127704, + 672 + ], + [ + 344268, + 124457, + 729 + ], + [ + 341102, + 127374, + 672 + ], + [ + 341003, + 127501, + 672 + ], + [ + 343250, + 129214, + 812 + ], + [ + 342422, + 124742, + 725 + ], + [ + 343346, + 123899, + 737 + ], + [ + 418037, + 53089, + 761 + ], + [ + 417462, + 53645, + 746 + ], + [ + 418089, + 53413, + 905 + ], + [ + 337384, + 106413, + 971 + ], + [ + 336527, + 105599, + 930 + ], + [ + 337526, + 103999, + 927 + ], + [ + 314133, + 80318, + 925 + ], + [ + 310494, + 81479, + 752 + ], + [ + 313160, + 77834, + 612 + ], + [ + 320209, + 83061, + 857 + ], + [ + 334642, + 93936, + 588 + ], + [ + 333652, + 93190, + 778 + ], + [ + 333605, + 92875, + 708 + ], + [ + 317593, + 83688, + 853 + ], + [ + 317828, + 85388, + 975 + ], + [ + 314509, + 83953, + 942 + ], + [ + 314930, + 83395, + 922 + ], + [ + 314696, + 84168, + 932 + ], + [ + 315082, + 83489, + 922 + ], + [ + 316685, + 79792, + 746 + ], + [ + 316382, + 79886, + 872 + ], + [ + 317863, + 82235, + 948 + ], + [ + 318928, + 86817, + 844 + ], + [ + 319232, + 87223, + 1392 + ], + [ + 314560, + 96306, + 673 + ], + [ + 305979, + 88408, + 569 + ], + [ + 304977, + 88662, + 645 + ], + [ + 310252, + 81432, + 752 + ], + [ + 310173, + 81543, + 752 + ], + [ + 309923, + 82377, + 701 + ], + [ + 309884, + 82046, + 755 + ], + [ + 312205, + 83057, + 965 + ], + [ + 312834, + 83183, + 892 + ], + [ + 312637, + 83958, + 894 + ], + [ + 313367, + 84719, + 637 + ], + [ + 315199, + 84877, + 779 + ], + [ + 319078, + 87389, + 912 + ], + [ + 309377, + 87454, + 530 + ], + [ + 308254, + 86090, + 770 + ], + [ + 310759, + 85601, + 558 + ], + [ + 302738, + 87101, + 822 + ], + [ + 304037, + 87165, + 831 + ], + [ + 303735, + 88258, + 742 + ], + [ + 300989, + 87549, + 657 + ], + [ + 299617, + 89354, + 691 + ], + [ + 301024, + 90669, + 719 + ], + [ + 307854, + 86526, + 569 + ], + [ + 308711, + 84202, + 892 + ], + [ + 309245, + 83624, + 937 + ], + [ + 312117, + 85223, + 559 + ], + [ + 313095, + 85198, + 754 + ], + [ + 313171, + 85873, + 573 + ], + [ + 312046, + 88063, + 659 + ], + [ + 321656, + 88650, + 1015 + ], + [ + 320910, + 88121, + 1274 + ], + [ + 321891, + 88239, + 708 + ], + [ + 315859, + 93414, + 745 + ], + [ + 316707, + 93165, + 777 + ], + [ + 317313, + 94370, + 918 + ], + [ + 322292, + 98856, + 677 + ], + [ + 319132, + 98281, + 679 + ], + [ + 319813, + 97044, + 691 + ], + [ + 314099, + 90111, + 866 + ], + [ + 313086, + 89801, + 815 + ], + [ + 314070, + 92618, + 670 + ], + [ + 312024, + 91525, + 719 + ], + [ + 314810, + 92683, + 935 + ], + [ + 314861, + 93007, + 1054 + ], + [ + 314458, + 92816, + 893 + ], + [ + 314219, + 91127, + 680 + ], + [ + 314626, + 91361, + 828 + ], + [ + 315147, + 95358, + 694 + ], + [ + 314350, + 94623, + 858 + ], + [ + 321916, + 95860, + 977 + ], + [ + 324532, + 95355, + 1054 + ], + [ + 324329, + 97780, + 889 + ], + [ + 321696, + 96943, + 865 + ], + [ + 318728, + 95257, + 649 + ], + [ + 317965, + 93448, + 1059 + ], + [ + 319870, + 93874, + 893 + ], + [ + 332402, + 103225, + 623 + ], + [ + 330977, + 101837, + 538 + ], + [ + 331473, + 100699, + 568 + ], + [ + 323562, + 98581, + 837 + ], + [ + 318017, + 96592, + 767 + ], + [ + 322944, + 98396, + 953 + ], + [ + 344551, + 106324, + 593 + ], + [ + 343799, + 105390, + 838 + ], + [ + 345392, + 105863, + 580 + ], + [ + 328175, + 97171, + 769 + ], + [ + 325044, + 99393, + 712 + ], + [ + 324958, + 98714, + 763 + ], + [ + 327194, + 102487, + 679 + ], + [ + 325446, + 102431, + 682 + ], + [ + 326903, + 102892, + 805 + ], + [ + 326052, + 96499, + 777 + ], + [ + 330679, + 102600, + 613 + ], + [ + 330358, + 106812, + 650 + ], + [ + 333899, + 108059, + 686 + ], + [ + 331925, + 108889, + 690 + ], + [ + 342904, + 110602, + 561 + ], + [ + 341003, + 111900, + 612 + ], + [ + 341591, + 110769, + 606 + ], + [ + 349651, + 111739, + 628 + ], + [ + 349642, + 114785, + 795 + ], + [ + 348142, + 114393, + 686 + ], + [ + 335609, + 107963, + 701 + ], + [ + 343701, + 110817, + 775 + ], + [ + 343611, + 110162, + 739 + ], + [ + 345379, + 119539, + 610 + ], + [ + 344813, + 119239, + 725 + ], + [ + 346298, + 112607, + 738 + ], + [ + 346163, + 111562, + 786 + ], + [ + 345983, + 119822, + 737 + ], + [ + 317579, + 93214, + 906 + ], + [ + 316585, + 92125, + 998 + ], + [ + 319418, + 86740, + 835 + ], + [ + 319530, + 87396, + 1186 + ], + [ + 319940, + 86954, + 926 + ], + [ + 320803, + 87436, + 1046 + ], + [ + 332379, + 96637, + 689 + ], + [ + 330202, + 98876, + 857 + ], + [ + 330829, + 95674, + 881 + ], + [ + 317895, + 88862, + 839 + ], + [ + 318734, + 88625, + 1238 + ], + [ + 318839, + 89626, + 849 + ], + [ + 321031, + 89122, + 1103 + ], + [ + 320982, + 88793, + 1036 + ], + [ + 322050, + 94093, + 1079 + ], + [ + 326611, + 96047, + 934 + ], + [ + 310250, + 84732, + 890 + ], + [ + 319791, + 85934, + 722 + ], + [ + 319866, + 86284, + 1123 + ], + [ + 321754, + 100737, + 696 + ], + [ + 321162, + 96030, + 1158 + ], + [ + 337901, + 110484, + 611 + ], + [ + 340023, + 110726, + 528 + ], + [ + 337954, + 110811, + 750 + ], + [ + 336164, + 105383, + 616 + ], + [ + 333401, + 104368, + 594 + ], + [ + 321458, + 89720, + 926 + ], + [ + 320430, + 90646, + 929 + ], + [ + 314725, + 92007, + 1002 + ], + [ + 315230, + 92214, + 1128 + ], + [ + 314770, + 92323, + 1044 + ], + [ + 304478, + 87395, + 808 + ], + [ + 344372, + 109763, + 719 + ], + [ + 304931, + 88311, + 658 + ], + [ + 317829, + 95239, + 646 + ], + [ + 316660, + 95969, + 645 + ], + [ + 319617, + 91842, + 1124 + ], + [ + 318311, + 91904, + 1012 + ], + [ + 318944, + 90330, + 1020 + ], + [ + 316461, + 91164, + 1038 + ], + [ + 315962, + 90611, + 826 + ], + [ + 317089, + 89535, + 860 + ], + [ + 314817, + 89192, + 955 + ], + [ + 319755, + 89092, + 1182 + ], + [ + 305899, + 87738, + 696 + ], + [ + 307111, + 88141, + 534 + ], + [ + 306907, + 86476, + 763 + ], + [ + 316132, + 95444, + 794 + ], + [ + 317744, + 97722, + 724 + ], + [ + 317377, + 98214, + 793 + ], + [ + 318022, + 89871, + 761 + ], + [ + 312890, + 88437, + 585 + ], + [ + 317760, + 87842, + 844 + ], + [ + 317531, + 88307, + 1020 + ], + [ + 316462, + 87950, + 919 + ], + [ + 314997, + 87029, + 549 + ], + [ + 316220, + 86274, + 636 + ], + [ + 335453, + 99996, + 675 + ], + [ + 332398, + 100107, + 652 + ], + [ + 336865, + 102724, + 595 + ], + [ + 336328, + 104278, + 602 + ], + [ + 334551, + 103059, + 591 + ], + [ + 336298, + 106402, + 591 + ], + [ + 320232, + 96548, + 995 + ], + [ + 318067, + 90187, + 803 + ], + [ + 317750, + 89987, + 981 + ], + [ + 323742, + 89627, + 678 + ], + [ + 321885, + 90334, + 1096 + ], + [ + 322038, + 89238, + 903 + ], + [ + 321298, + 91154, + 1081 + ], + [ + 322101, + 92032, + 963 + ], + [ + 320521, + 91323, + 929 + ], + [ + 337940, + 103556, + 929 + ], + [ + 337456, + 103648, + 598 + ], + [ + 338801, + 104055, + 760 + ], + [ + 337047, + 104078, + 604 + ], + [ + 337876, + 103218, + 662 + ], + [ + 339879, + 105569, + 758 + ], + [ + 336227, + 101140, + 572 + ], + [ + 314356, + 92144, + 709 + ], + [ + 313166, + 90472, + 707 + ], + [ + 316953, + 88503, + 875 + ], + [ + 320719, + 86763, + 1137 + ], + [ + 319890, + 86612, + 844 + ], + [ + 322081, + 87498, + 714 + ], + [ + 322467, + 87412, + 807 + ], + [ + 320553, + 82974, + 783 + ], + [ + 322620, + 85032, + 708 + ], + [ + 328281, + 100926, + 731 + ], + [ + 324757, + 93597, + 855 + ], + [ + 344412, + 118640, + 606 + ], + [ + 343100, + 115697, + 690 + ], + [ + 345503, + 113391, + 781 + ], + [ + 316963, + 95161, + 662 + ], + [ + 307373, + 86344, + 533 + ], + [ + 306948, + 86797, + 733 + ], + [ + 341592, + 104235, + 906 + ], + [ + 338179, + 102464, + 620 + ], + [ + 317796, + 90304, + 1051 + ], + [ + 317242, + 90534, + 1149 + ], + [ + 317664, + 91092, + 1223 + ], + [ + 316866, + 90988, + 946 + ], + [ + 333324, + 103693, + 773 + ], + [ + 332851, + 103461, + 761 + ], + [ + 336419, + 104954, + 622 + ], + [ + 333920, + 95220, + 756 + ], + [ + 342339, + 106228, + 798 + ], + [ + 341486, + 99853, + 714 + ], + [ + 342395, + 106584, + 918 + ], + [ + 341940, + 106921, + 769 + ], + [ + 317802, + 94922, + 860 + ], + [ + 337510, + 107426, + 849 + ], + [ + 337085, + 107568, + 591 + ], + [ + 337008, + 106853, + 847 + ], + [ + 337585, + 108138, + 579 + ], + [ + 317239, + 88086, + 841 + ], + [ + 301999, + 87962, + 684 + ], + [ + 340415, + 109592, + 787 + ], + [ + 340884, + 110894, + 823 + ], + [ + 340219, + 109964, + 575 + ], + [ + 341572, + 113563, + 645 + ], + [ + 331083, + 108716, + 652 + ], + [ + 343518, + 107441, + 670 + ], + [ + 343074, + 104083, + 694 + ], + [ + 346913, + 103602, + 557 + ], + [ + 350760, + 110231, + 758 + ], + [ + 338591, + 108603, + 621 + ], + [ + 338995, + 108495, + 817 + ], + [ + 338681, + 109307, + 576 + ], + [ + 340496, + 111994, + 702 + ], + [ + 318801, + 98072, + 704 + ], + [ + 332192, + 92147, + 596 + ], + [ + 331413, + 92723, + 632 + ], + [ + 339505, + 109446, + 567 + ], + [ + 336595, + 106285, + 603 + ], + [ + 342407, + 116826, + 763 + ], + [ + 320258, + 100396, + 686 + ], + [ + 318843, + 98398, + 678 + ], + [ + 299661, + 89671, + 708 + ], + [ + 301667, + 88012, + 673 + ], + [ + 334340, + 101369, + 786 + ], + [ + 330595, + 101923, + 702 + ], + [ + 322634, + 88764, + 637 + ], + [ + 323561, + 88298, + 614 + ], + [ + 323973, + 87845, + 594 + ], + [ + 344064, + 107421, + 753 + ], + [ + 343380, + 108461, + 656 + ], + [ + 338139, + 108713, + 723 + ], + [ + 345842, + 112651, + 780 + ], + [ + 318694, + 99155, + 674 + ], + [ + 322843, + 86674, + 773 + ], + [ + 321161, + 87359, + 1142 + ], + [ + 317322, + 97870, + 659 + ], + [ + 341670, + 108326, + 865 + ], + [ + 321946, + 88562, + 875 + ], + [ + 321985, + 88891, + 798 + ], + [ + 329795, + 95881, + 729 + ], + [ + 323445, + 91075, + 1016 + ], + [ + 336245, + 98016, + 675 + ], + [ + 311616, + 84687, + 901 + ], + [ + 314868, + 86023, + 601 + ], + [ + 314840, + 79023, + 895 + ], + [ + 320635, + 88859, + 1013 + ], + [ + 325553, + 90056, + 809 + ], + [ + 326951, + 88075, + 563 + ], + [ + 335423, + 95098, + 563 + ], + [ + 335799, + 94658, + 695 + ], + [ + 335889, + 95334, + 692 + ], + [ + 324796, + 87084, + 708 + ], + [ + 325568, + 88300, + 719 + ], + [ + 318049, + 87069, + 945 + ], + [ + 312402, + 84751, + 600 + ], + [ + 340443, + 99256, + 573 + ], + [ + 337727, + 99080, + 584 + ], + [ + 337949, + 97677, + 691 + ], + [ + 336347, + 98715, + 811 + ], + [ + 342478, + 107235, + 865 + ], + [ + 324835, + 87440, + 584 + ], + [ + 337814, + 96669, + 689 + ], + [ + 314712, + 84671, + 936 + ], + [ + 340902, + 99218, + 574 + ], + [ + 351950, + 112169, + 779 + ], + [ + 351585, + 111534, + 630 + ], + [ + 335083, + 94861, + 700 + ], + [ + 325177, + 87345, + 586 + ], + [ + 309803, + 88014, + 623 + ], + [ + 315229, + 149210, + 949 + ], + [ + 274474, + 89653, + 712 + ], + [ + 275080, + 90106, + 712 + ], + [ + 274901, + 90328, + 712 + ], + [ + 274302, + 89873, + 712 + ], + [ + 291704, + 116483, + 806 + ], + [ + 292036, + 116072, + 857 + ], + [ + 290621, + 114646, + 1021 + ], + [ + 290250, + 114705, + 819 + ], + [ + 290216, + 114378, + 937 + ], + [ + 287064, + 115093, + 803 + ], + [ + 289870, + 118348, + 976 + ], + [ + 286746, + 115584, + 816 + ], + [ + 291288, + 116586, + 828 + ], + [ + 290664, + 117744, + 933 + ], + [ + 290182, + 118251, + 980 + ], + [ + 291154, + 115593, + 808 + ], + [ + 288769, + 113071, + 785 + ], + [ + 253466, + 195340, + 1082 + ], + [ + 253422, + 195341, + 1082 + ], + [ + 253511, + 195335, + 1082 + ], + [ + 254072, + 194691, + 1062 + ], + [ + 253640, + 195304, + 1082 + ], + [ + 253554, + 195328, + 1082 + ], + [ + 253598, + 195317, + 1082 + ], + [ + 253681, + 195288, + 1082 + ], + [ + 253797, + 195222, + 1072 + ], + [ + 253760, + 195247, + 1072 + ], + [ + 253721, + 195269, + 1072 + ], + [ + 253897, + 195135, + 1072 + ], + [ + 253866, + 195166, + 1072 + ], + [ + 253833, + 195196, + 1072 + ], + [ + 254066, + 194780, + 1062 + ], + [ + 254019, + 194950, + 1072 + ], + [ + 253927, + 195102, + 1072 + ], + [ + 253978, + 195029, + 1072 + ], + [ + 253953, + 195066, + 1072 + ], + [ + 254000, + 194990, + 1072 + ], + [ + 254059, + 194823, + 1072 + ], + [ + 254035, + 194909, + 1072 + ], + [ + 254048, + 194867, + 1072 + ], + [ + 254071, + 194735, + 1062 + ], + [ + 253378, + 195339, + 1082 + ], + [ + 254070, + 194647, + 1062 + ], + [ + 254018, + 194432, + 1062 + ], + [ + 254066, + 194602, + 1062 + ], + [ + 254048, + 194516, + 1062 + ], + [ + 254058, + 194559, + 1062 + ], + [ + 254034, + 194473, + 1062 + ], + [ + 253760, + 194136, + 1052 + ], + [ + 253977, + 194353, + 1062 + ], + [ + 253999, + 194392, + 1062 + ], + [ + 253953, + 194316, + 1062 + ], + [ + 253926, + 194281, + 1062 + ], + [ + 253897, + 194247, + 1062 + ], + [ + 253797, + 194160, + 1052 + ], + [ + 253866, + 194216, + 1062 + ], + [ + 253832, + 194187, + 1062 + ], + [ + 253681, + 194095, + 1052 + ], + [ + 253721, + 194114, + 1052 + ], + [ + 253640, + 194079, + 1052 + ], + [ + 253554, + 194055, + 1042 + ], + [ + 253597, + 194065, + 1052 + ], + [ + 253466, + 194043, + 1042 + ], + [ + 253511, + 194047, + 1042 + ], + [ + 253378, + 194043, + 1042 + ], + [ + 253422, + 194041, + 1042 + ], + [ + 253204, + 194079, + 1032 + ], + [ + 253333, + 194047, + 1042 + ], + [ + 253290, + 194055, + 1042 + ], + [ + 253247, + 194065, + 1032 + ], + [ + 253084, + 194136, + 1032 + ], + [ + 253163, + 194095, + 1032 + ], + [ + 253123, + 194114, + 1032 + ], + [ + 252947, + 194247, + 1042 + ], + [ + 253047, + 194160, + 1032 + ], + [ + 252978, + 194216, + 1032 + ], + [ + 253012, + 194187, + 1032 + ], + [ + 252891, + 194316, + 1042 + ], + [ + 252918, + 194281, + 1042 + ], + [ + 252796, + 194866, + 1052 + ], + [ + 252826, + 194432, + 1042 + ], + [ + 252867, + 194353, + 1042 + ], + [ + 252845, + 194392, + 1042 + ], + [ + 252796, + 194516, + 1042 + ], + [ + 252810, + 194473, + 1042 + ], + [ + 252778, + 194602, + 1052 + ], + [ + 252786, + 194559, + 1042 + ], + [ + 252774, + 194647, + 1042 + ], + [ + 252772, + 194691, + 1042 + ], + [ + 252774, + 194735, + 1042 + ], + [ + 252786, + 194823, + 1052 + ], + [ + 252778, + 194780, + 1052 + ], + [ + 253333, + 195335, + 1082 + ], + [ + 252845, + 194990, + 1062 + ], + [ + 252810, + 194909, + 1052 + ], + [ + 252826, + 194950, + 1052 + ], + [ + 252867, + 195029, + 1062 + ], + [ + 252918, + 195101, + 1062 + ], + [ + 252891, + 195066, + 1062 + ], + [ + 252978, + 195166, + 1072 + ], + [ + 252947, + 195135, + 1072 + ], + [ + 253123, + 195268, + 1072 + ], + [ + 253012, + 195195, + 1072 + ], + [ + 253084, + 195246, + 1072 + ], + [ + 253047, + 195222, + 1072 + ], + [ + 253163, + 195287, + 1072 + ], + [ + 253247, + 195317, + 1072 + ], + [ + 253204, + 195303, + 1072 + ], + [ + 253290, + 195327, + 1082 + ], + [ + 234223, + 111538, + 476 + ], + [ + 230290, + 113731, + 592 + ], + [ + 235230, + 110511, + 502 + ], + [ + 235043, + 110913, + 464 + ], + [ + 234819, + 111231, + 641 + ], + [ + 472036, + 6052, + 32 + ], + [ + 472073, + 5790, + 32 + ], + [ + 521245, + 8267, + 32 + ], + [ + 471981, + 6311, + 32 + ], + [ + 511547, + 29311, + 32 + ], + [ + 471816, + 6815, + 32 + ], + [ + 471907, + 6566, + 32 + ], + [ + 471708, + 7057, + 32 + ], + [ + 471583, + 7290, + 32 + ], + [ + 471442, + 7514, + 32 + ], + [ + 471285, + 7728, + 32 + ], + [ + 470929, + 8120, + 32 + ], + [ + 471114, + 7931, + 32 + ], + [ + 509635, + 33904, + 32 + ], + [ + 269998, + 298272, + 32 + ], + [ + 268785, + 299473, + 32 + ], + [ + 239297, + 291307, + 32 + ], + [ + 459783, + 26663, + 32 + ], + [ + 462934, + 8074, + 32 + ], + [ + 468286, + 9168, + 32 + ], + [ + 272430, + 295877, + 32 + ], + [ + 271213, + 297073, + 32 + ], + [ + 276094, + 292300, + 32 + ], + [ + 274871, + 293490, + 32 + ], + [ + 273650, + 294682, + 32 + ], + [ + 345366, + 228398, + 32 + ], + [ + 344812, + 228926, + 32 + ], + [ + 334996, + 235648, + 32 + ], + [ + 354456, + 217238, + 32 + ], + [ + 348226, + 225589, + 32 + ], + [ + 348688, + 225129, + 32 + ], + [ + 327540, + 242921, + 32 + ], + [ + 286335, + 245958, + 32 + ], + [ + 278547, + 289925, + 32 + ], + [ + 375001, + 160796, + 32 + ], + [ + 383532, + 152521, + 32 + ], + [ + 400790, + 171272, + 32 + ], + [ + 397001, + 178401, + 32 + ], + [ + 387037, + 188308, + 32 + ], + [ + 386741, + 188445, + 32 + ], + [ + 384655, + 189411, + 32 + ], + [ + 380229, + 191675, + 32 + ], + [ + 397109, + 178201, + 32 + ], + [ + 456905, + 10065, + 32 + ], + [ + 457014, + 9820, + 32 + ], + [ + 367413, + 204506, + 32 + ], + [ + 464686, + 32274, + 32 + ], + [ + 470522, + 8459, + 32 + ], + [ + 470731, + 8297, + 32 + ], + [ + 465043, + 33092, + 32 + ], + [ + 267574, + 300676, + 32 + ], + [ + 465298, + 33736, + 32 + ], + [ + 266365, + 301881, + 32 + ], + [ + 510603, + 31683, + 32 + ], + [ + 265158, + 303088, + 32 + ], + [ + 263953, + 304297, + 32 + ], + [ + 262750, + 305508, + 32 + ], + [ + 261550, + 306722, + 32 + ], + [ + 259693, + 308621, + 32 + ], + [ + 456590, + 10497, + 32 + ], + [ + 456763, + 10292, + 32 + ], + [ + 511560, + 29458, + 32 + ], + [ + 471815, + 3972, + 32 + ], + [ + 471707, + 3730, + 32 + ], + [ + 521510, + 8125, + 32 + ], + [ + 521293, + 8289, + 32 + ], + [ + 521721, + 7955, + 32 + ], + [ + 521928, + 7779, + 32 + ], + [ + 522129, + 7597, + 32 + ], + [ + 523558, + 5333, + 32 + ], + [ + 522325, + 7409, + 32 + ], + [ + 522515, + 7215, + 32 + ], + [ + 522699, + 7016, + 32 + ], + [ + 522877, + 6812, + 32 + ], + [ + 523050, + 6602, + 32 + ], + [ + 523215, + 6387, + 32 + ], + [ + 523375, + 6168, + 32 + ], + [ + 523528, + 5943, + 32 + ], + [ + 523674, + 5715, + 32 + ], + [ + 523813, + 5482, + 32 + ], + [ + 524371, + 3938, + 32 + ], + [ + 471582, + 3496, + 32 + ], + [ + 463099, + 0, + 32 + ], + [ + 469332, + 1758, + 32 + ], + [ + 469074, + 1696, + 32 + ], + [ + 466368, + 43344, + 32 + ], + [ + 500429, + 53663, + 32 + ], + [ + 499352, + 55832, + 32 + ], + [ + 469584, + 1838, + 32 + ], + [ + 471284, + 3058, + 32 + ], + [ + 471113, + 2856, + 32 + ], + [ + 469831, + 1936, + 32 + ], + [ + 470928, + 2666, + 32 + ], + [ + 470730, + 2490, + 32 + ], + [ + 470069, + 2050, + 32 + ], + [ + 470520, + 2328, + 32 + ], + [ + 470300, + 2181, + 32 + ], + [ + 508656, + 36119, + 32 + ], + [ + 507666, + 38330, + 32 + ], + [ + 465687, + 34855, + 32 + ], + [ + 466287, + 37148, + 32 + ], + [ + 506665, + 40535, + 32 + ], + [ + 505653, + 42736, + 32 + ], + [ + 466017, + 35994, + 32 + ], + [ + 504630, + 44932, + 32 + ], + [ + 503596, + 47123, + 32 + ], + [ + 466621, + 39311, + 32 + ], + [ + 501496, + 51488, + 32 + ], + [ + 466542, + 42349, + 32 + ], + [ + 471440, + 3272, + 32 + ], + [ + 471906, + 4220, + 32 + ], + [ + 471980, + 4475, + 32 + ], + [ + 472035, + 4734, + 32 + ], + [ + 472073, + 4996, + 32 + ], + [ + 472091, + 5261, + 32 + ], + [ + 472091, + 5526, + 32 + ], + [ + 438754, + 16498, + 32 + ], + [ + 438239, + 15329, + 32 + ], + [ + 438239, + 15328, + 32 + ], + [ + 464297, + 31472, + 32 + ], + [ + 470301, + 8606, + 32 + ], + [ + 464020, + 30946, + 32 + ], + [ + 470071, + 8737, + 32 + ], + [ + 463578, + 30171, + 32 + ], + [ + 469832, + 8852, + 32 + ], + [ + 463176, + 29527, + 32 + ], + [ + 469586, + 8949, + 32 + ], + [ + 462986, + 29257, + 32 + ], + [ + 469333, + 9029, + 32 + ], + [ + 462677, + 28871, + 32 + ], + [ + 469076, + 9091, + 32 + ], + [ + 462456, + 28626, + 32 + ], + [ + 468815, + 9135, + 32 + ], + [ + 462224, + 28392, + 32 + ], + [ + 468551, + 9161, + 32 + ], + [ + 461854, + 28064, + 32 + ], + [ + 277320, + 291111, + 32 + ], + [ + 456493, + 10590, + 32 + ], + [ + 456576, + 10510, + 32 + ], + [ + 456405, + 10664, + 32 + ], + [ + 457104, + 25370, + 32 + ], + [ + 456390, + 10676, + 32 + ], + [ + 456167, + 10825, + 32 + ], + [ + 455926, + 10941, + 32 + ], + [ + 455670, + 11022, + 32 + ], + [ + 456228, + 25069, + 32 + ], + [ + 455406, + 11066, + 32 + ], + [ + 454812, + 24729, + 32 + ], + [ + 455138, + 11073, + 32 + ], + [ + 454872, + 11041, + 32 + ], + [ + 453048, + 11160, + 32 + ], + [ + 454741, + 11012, + 32 + ], + [ + 453213, + 11106, + 32 + ], + [ + 454612, + 10973, + 32 + ], + [ + 453254, + 11092, + 32 + ], + [ + 454365, + 10869, + 32 + ], + [ + 453448, + 10997, + 32 + ], + [ + 454135, + 10732, + 32 + ], + [ + 453628, + 10875, + 32 + ], + [ + 453927, + 10563, + 32 + ], + [ + 453788, + 10729, + 32 + ], + [ + 453780, + 10736, + 32 + ], + [ + 453721, + 10790, + 32 + ], + [ + 453540, + 10939, + 32 + ], + [ + 453411, + 11015, + 32 + ], + [ + 453323, + 11058, + 32 + ], + [ + 452870, + 11192, + 32 + ], + [ + 452835, + 11198, + 32 + ], + [ + 452782, + 11200, + 32 + ], + [ + 452642, + 11206, + 32 + ], + [ + 452618, + 11207, + 32 + ], + [ + 452510, + 11200, + 32 + ], + [ + 452421, + 11188, + 32 + ], + [ + 452402, + 11185, + 32 + ], + [ + 445258, + 22056, + 32 + ], + [ + 452332, + 11168, + 32 + ], + [ + 452192, + 11134, + 32 + ], + [ + 452121, + 11106, + 32 + ], + [ + 451990, + 11054, + 32 + ], + [ + 440846, + 21249, + 32 + ], + [ + 440283, + 19971, + 32 + ], + [ + 440283, + 19970, + 32 + ], + [ + 466657, + 41136, + 32 + ], + [ + 502551, + 49308, + 32 + ], + [ + 466497, + 38315, + 32 + ], + [ + 466670, + 40223, + 32 + ], + [ + 461726, + 27960, + 32 + ], + [ + 498264, + 57996, + 32 + ], + [ + 466038, + 44917, + 32 + ], + [ + 461980, + 28170, + 32 + ], + [ + 463086, + 54722, + 32 + ], + [ + 497165, + 60155, + 32 + ], + [ + 488136, + 77001, + 32 + ], + [ + 462103, + 28280, + 32 + ], + [ + 465560, + 46867, + 32 + ], + [ + 462341, + 28508, + 32 + ], + [ + 462568, + 28747, + 32 + ], + [ + 462783, + 28997, + 32 + ], + [ + 462886, + 29126, + 32 + ], + [ + 463082, + 29391, + 32 + ], + [ + 463266, + 29665, + 32 + ], + [ + 463424, + 29917, + 32 + ], + [ + 463729, + 30427, + 32 + ], + [ + 463876, + 30686, + 32 + ], + [ + 464160, + 31208, + 32 + ], + [ + 464430, + 31738, + 32 + ], + [ + 464560, + 32005, + 32 + ], + [ + 486655, + 79502, + 32 + ], + [ + 460461, + 61701, + 32 + ], + [ + 464809, + 32545, + 32 + ], + [ + 464928, + 32818, + 32 + ], + [ + 457614, + 68589, + 32 + ], + [ + 485127, + 81976, + 32 + ], + [ + 483553, + 84420, + 32 + ], + [ + 457824, + 68110, + 32 + ], + [ + 465155, + 33367, + 32 + ], + [ + 465564, + 34480, + 32 + ], + [ + 465434, + 34107, + 32 + ], + [ + 481935, + 86835, + 32 + ], + [ + 456906, + 69987, + 32 + ], + [ + 465804, + 35233, + 32 + ], + [ + 465914, + 35613, + 32 + ], + [ + 454930, + 72988, + 32 + ], + [ + 480271, + 89219, + 32 + ], + [ + 478564, + 91572, + 32 + ], + [ + 456229, + 71105, + 32 + ], + [ + 466114, + 36377, + 32 + ], + [ + 466204, + 36762, + 32 + ], + [ + 466363, + 37536, + 32 + ], + [ + 476813, + 93893, + 32 + ], + [ + 453729, + 74620, + 32 + ], + [ + 466433, + 37925, + 32 + ], + [ + 448732, + 81686, + 32 + ], + [ + 475019, + 96181, + 32 + ], + [ + 473183, + 98435, + 32 + ], + [ + 452482, + 76216, + 32 + ], + [ + 466553, + 38706, + 32 + ], + [ + 466590, + 39008, + 32 + ], + [ + 466644, + 39615, + 32 + ], + [ + 471305, + 100655, + 32 + ], + [ + 469386, + 102839, + 32 + ], + [ + 467427, + 104987, + 32 + ], + [ + 466660, + 39919, + 32 + ], + [ + 466672, + 40528, + 32 + ], + [ + 466668, + 40832, + 32 + ], + [ + 465429, + 107098, + 32 + ], + [ + 441602, + 91378, + 32 + ], + [ + 417974, + 118701, + 32 + ], + [ + 463391, + 109172, + 32 + ], + [ + 414047, + 158268, + 32 + ], + [ + 466638, + 41440, + 32 + ], + [ + 466613, + 41744, + 32 + ], + [ + 466581, + 42047, + 32 + ], + [ + 466497, + 42650, + 32 + ], + [ + 466444, + 42950, + 32 + ], + [ + 466290, + 43738, + 32 + ], + [ + 466209, + 44132, + 32 + ], + [ + 466125, + 44525, + 32 + ], + [ + 465948, + 45308, + 32 + ], + [ + 465855, + 45699, + 32 + ], + [ + 465760, + 46089, + 32 + ], + [ + 465661, + 46478, + 32 + ], + [ + 465456, + 47255, + 32 + ], + [ + 465348, + 47642, + 32 + ], + [ + 465238, + 48028, + 32 + ], + [ + 465125, + 48413, + 32 + ], + [ + 457721, + 68350, + 32 + ], + [ + 457504, + 68826, + 32 + ], + [ + 457275, + 69295, + 32 + ], + [ + 457391, + 69061, + 32 + ], + [ + 457155, + 69527, + 32 + ], + [ + 457032, + 69758, + 32 + ], + [ + 456777, + 70214, + 32 + ], + [ + 456644, + 70440, + 32 + ], + [ + 456509, + 70663, + 32 + ], + [ + 456371, + 70885, + 32 + ], + [ + 456085, + 71323, + 32 + ], + [ + 455801, + 71742, + 32 + ], + [ + 455514, + 72160, + 32 + ], + [ + 455223, + 72575, + 32 + ], + [ + 454634, + 73399, + 32 + ], + [ + 454336, + 73808, + 32 + ], + [ + 454034, + 74215, + 32 + ], + [ + 453422, + 75022, + 32 + ], + [ + 453112, + 75422, + 32 + ], + [ + 452798, + 75820, + 32 + ], + [ + 452164, + 76610, + 32 + ], + [ + 451842, + 77001, + 32 + ], + [ + 441072, + 92059, + 32 + ], + [ + 440541, + 92738, + 32 + ], + [ + 440007, + 93416, + 32 + ], + [ + 439471, + 94092, + 32 + ], + [ + 438932, + 94766, + 32 + ], + [ + 438392, + 95438, + 32 + ], + [ + 437849, + 96109, + 32 + ], + [ + 437304, + 96778, + 32 + ], + [ + 436757, + 97445, + 32 + ], + [ + 436208, + 98110, + 32 + ], + [ + 435657, + 98774, + 32 + ], + [ + 435103, + 99435, + 32 + ], + [ + 434548, + 100095, + 32 + ], + [ + 433990, + 100753, + 32 + ], + [ + 425137, + 110912, + 32 + ], + [ + 404623, + 132355, + 32 + ], + [ + 346380, + 48953, + 232 + ], + [ + 347288, + 48677, + 232 + ], + [ + 347434, + 49155, + 242 + ], + [ + 346525, + 49432, + 242 + ], + [ + 423682, + 32197, + 1922 + ], + [ + 422605, + 33729, + 1952 + ], + [ + 423647, + 32174, + 1922 + ], + [ + 216745, + 315746, + 762 + ], + [ + 218534, + 312598, + 762 + ], + [ + 460461, + 61701, + 692 + ], + [ + 231625, + 298703, + 762 + ], + [ + 239297, + 291307, + 762 + ], + [ + 286335, + 245958, + 762 + ], + [ + 428276, + 106956, + 580 + ], + [ + 425311, + 110712, + 210 + ], + [ + 444037, + 87707, + 260 + ], + [ + 446542, + 84311, + 243 + ], + [ + 435103, + 99435, + 812 + ], + [ + 434654, + 99311, + 746 + ], + [ + 435124, + 98993, + 345 + ], + [ + 435657, + 98774, + 822 + ], + [ + 435646, + 98380, + 252 + ], + [ + 436208, + 98110, + 852 + ], + [ + 436327, + 97369, + 618 + ], + [ + 436757, + 97445, + 822 + ], + [ + 437396, + 96540, + 145 + ], + [ + 437304, + 96778, + 632 + ], + [ + 437956, + 95577, + 240 + ], + [ + 438956, + 94624, + 159 + ], + [ + 438932, + 94766, + 572 + ], + [ + 439471, + 94092, + 722 + ], + [ + 439631, + 93664, + 166 + ], + [ + 440007, + 93416, + 702 + ], + [ + 440040, + 93164, + 188 + ], + [ + 440541, + 92738, + 572 + ], + [ + 453264, + 74498, + 788 + ], + [ + 455514, + 72160, + 692 + ], + [ + 451842, + 77001, + 552 + ], + [ + 452164, + 76610, + 552 + ], + [ + 452798, + 75820, + 722 + ], + [ + 452932, + 75631, + 557 + ], + [ + 452482, + 76216, + 722 + ], + [ + 453422, + 75022, + 702 + ], + [ + 453729, + 74620, + 692 + ], + [ + 453112, + 75422, + 782 + ], + [ + 454336, + 73808, + 692 + ], + [ + 454034, + 74215, + 782 + ], + [ + 454634, + 73399, + 692 + ], + [ + 454930, + 72988, + 692 + ], + [ + 455223, + 72575, + 692 + ], + [ + 455801, + 71742, + 692 + ], + [ + 456085, + 71323, + 692 + ], + [ + 456229, + 71105, + 692 + ], + [ + 456371, + 70885, + 692 + ], + [ + 456509, + 70663, + 692 + ], + [ + 456644, + 70440, + 692 + ], + [ + 456777, + 70214, + 692 + ], + [ + 456906, + 69987, + 692 + ], + [ + 457032, + 69758, + 692 + ], + [ + 457155, + 69527, + 692 + ], + [ + 457275, + 69295, + 692 + ], + [ + 457391, + 69061, + 692 + ], + [ + 457504, + 68826, + 692 + ], + [ + 457614, + 68589, + 692 + ], + [ + 457721, + 68350, + 692 + ], + [ + 457824, + 68110, + 692 + ], + [ + 220224, + 310364, + 762 + ], + [ + 463086, + 54722, + 692 + ], + [ + 441370, + 91281, + 253 + ], + [ + 450979, + 78223, + 871 + ], + [ + 447481, + 83293, + 172 + ], + [ + 422871, + 113340, + 395 + ], + [ + 424691, + 111309, + 272 + ], + [ + 425137, + 110912, + 642 + ], + [ + 448277, + 82302, + 356 + ], + [ + 437073, + 96695, + 226 + ], + [ + 433952, + 100245, + 510 + ], + [ + 433990, + 100753, + 812 + ], + [ + 438941, + 94286, + 581 + ], + [ + 432535, + 102080, + 346 + ], + [ + 433282, + 101530, + 141 + ], + [ + 434548, + 100095, + 812 + ], + [ + 424998, + 110832, + 323 + ], + [ + 413962, + 122503, + 584 + ], + [ + 416435, + 119951, + 569 + ], + [ + 330858, + 203191, + 393 + ], + [ + 319873, + 213555, + 667 + ], + [ + 406530, + 130040, + 622 + ], + [ + 402046, + 134540, + 412 + ], + [ + 397414, + 139241, + 146 + ], + [ + 356336, + 178551, + 771 + ], + [ + 353319, + 181395, + 632 + ], + [ + 369945, + 165171, + 830 + ], + [ + 379691, + 155933, + 625 + ], + [ + 391007, + 145020, + 673 + ], + [ + 394352, + 141909, + 565 + ], + [ + 215069, + 319948, + 762 + ], + [ + 213100, + 327637, + 762 + ], + [ + 433606, + 101038, + 204 + ], + [ + 440025, + 92843, + 574 + ], + [ + 404299, + 132337, + 468 + ], + [ + 404013, + 132854, + 164 + ], + [ + 382347, + 153563, + 413 + ], + [ + 380287, + 155624, + 405 + ], + [ + 404721, + 131730, + 639 + ], + [ + 404736, + 132121, + 139 + ], + [ + 404623, + 132355, + 682 + ], + [ + 404492, + 132247, + 234 + ], + [ + 408122, + 128764, + 171 + ], + [ + 405377, + 131531, + 131 + ], + [ + 440444, + 92745, + 182 + ], + [ + 400920, + 135857, + 140 + ], + [ + 318444, + 215098, + 311 + ], + [ + 315129, + 217971, + 728 + ], + [ + 383532, + 152521, + 712 + ], + [ + 450113, + 79500, + 297 + ], + [ + 422841, + 112964, + 670 + ], + [ + 419826, + 116466, + 485 + ], + [ + 423169, + 112881, + 344 + ], + [ + 375001, + 160796, + 762 + ], + [ + 345933, + 188714, + 468 + ], + [ + 387943, + 148266, + 256 + ], + [ + 407867, + 128514, + 700 + ], + [ + 375160, + 160395, + 765 + ], + [ + 372327, + 163163, + 612 + ], + [ + 407611, + 128942, + 564 + ], + [ + 443036, + 89378, + 209 + ], + [ + 428794, + 106430, + 395 + ], + [ + 429385, + 105605, + 563 + ], + [ + 430835, + 103943, + 711 + ], + [ + 421912, + 114401, + 137 + ], + [ + 421682, + 114534, + 243 + ], + [ + 431771, + 103011, + 363 + ], + [ + 376016, + 159750, + 498 + ], + [ + 370463, + 164902, + 798 + ], + [ + 365007, + 170394, + 520 + ], + [ + 436461, + 22314, + 352 + ], + [ + 435777, + 22464, + 1332 + ], + [ + 437964, + 21922, + 1702 + ], + [ + 436139, + 22586, + 1837 + ], + [ + 436073, + 22446, + 139 + ], + [ + 437176, + 22242, + 1709 + ], + [ + 438089, + 22218, + 1792 + ], + [ + 438142, + 22342, + 2622 + ], + [ + 435845, + 22910, + 2212 + ], + [ + 435811, + 22495, + 450 + ], + [ + 437964, + 21923, + 1702 + ], + [ + 435777, + 22464, + 582 + ], + [ + 437964, + 21922, + 582 + ], + [ + 455572, + 25215, + 92 + ], + [ + 455303, + 25294, + 247 + ], + [ + 454793, + 25027, + 195 + ], + [ + 440852, + 21711, + 1340 + ], + [ + 441052, + 21532, + 1342 + ], + [ + 445151, + 22054, + 280 + ], + [ + 440846, + 21249, + 1052 + ], + [ + 440712, + 21774, + 1372 + ], + [ + 443011, + 67668, + 1232 + ], + [ + 443359, + 67391, + 1392 + ], + [ + 443089, + 67731, + 1232 + ], + [ + 443281, + 67328, + 1392 + ], + [ + 444746, + 65227, + 4212 + ], + [ + 444667, + 64973, + 4212 + ], + [ + 444839, + 65263, + 4212 + ], + [ + 445006, + 64828, + 4212 + ], + [ + 445179, + 62071, + 4282 + ], + [ + 445357, + 62274, + 4282 + ], + [ + 444912, + 64793, + 4212 + ], + [ + 445457, + 62272, + 4282 + ], + [ + 445447, + 61798, + 4302 + ], + [ + 444999, + 59173, + 4132 + ], + [ + 444920, + 59235, + 4222 + ], + [ + 444693, + 59148, + 4262 + ], + [ + 445347, + 61800, + 4282 + ], + [ + 444718, + 58813, + 4132 + ], + [ + 443116, + 56845, + 4522 + ], + [ + 443200, + 56771, + 4512 + ], + [ + 444635, + 58869, + 4132 + ], + [ + 443282, + 56715, + 4512 + ], + [ + 442976, + 56372, + 4612 + ], + [ + 442901, + 56439, + 4532 + ], + [ + 441208, + 54548, + 4792 + ], + [ + 441283, + 54481, + 4792 + ], + [ + 440902, + 54205, + 4792 + ], + [ + 440976, + 54138, + 4772 + ], + [ + 439283, + 52247, + 4692 + ], + [ + 439209, + 52314, + 4682 + ], + [ + 438896, + 51964, + 4682 + ], + [ + 438970, + 51897, + 4682 + ], + [ + 437284, + 50013, + 12682 + ], + [ + 437210, + 50080, + 12422 + ], + [ + 436903, + 49737, + 12422 + ], + [ + 436978, + 49670, + 12772 + ], + [ + 435298, + 47794, + 14282 + ], + [ + 435224, + 47860, + 14212 + ], + [ + 434985, + 47444, + 15092 + ], + [ + 434910, + 47510, + 14472 + ], + [ + 443011, + 67668, + 1202 + ], + [ + 443089, + 67731, + 1192 + ], + [ + 443359, + 67391, + 1202 + ], + [ + 443281, + 67328, + 1212 + ], + [ + 444746, + 65227, + 1262 + ], + [ + 444839, + 65263, + 1262 + ], + [ + 445006, + 64828, + 1282 + ], + [ + 444912, + 64793, + 1292 + ], + [ + 445357, + 62274, + 1422 + ], + [ + 445457, + 62272, + 1422 + ], + [ + 445447, + 61798, + 1452 + ], + [ + 445347, + 61800, + 1462 + ], + [ + 444920, + 59235, + 1612 + ], + [ + 444999, + 59173, + 1612 + ], + [ + 444718, + 58813, + 1662 + ], + [ + 444635, + 58869, + 1662 + ], + [ + 443200, + 56771, + 1822 + ], + [ + 443282, + 56715, + 1812 + ], + [ + 442976, + 56372, + 1852 + ], + [ + 442901, + 56439, + 1872 + ], + [ + 441208, + 54548, + 2002 + ], + [ + 441283, + 54481, + 2002 + ], + [ + 440976, + 54138, + 2012 + ], + [ + 440902, + 54205, + 2002 + ], + [ + 439209, + 52314, + 2072 + ], + [ + 439283, + 52247, + 2072 + ], + [ + 438970, + 51897, + 2082 + ], + [ + 438896, + 51964, + 2082 + ], + [ + 437210, + 50080, + 2192 + ], + [ + 437284, + 50013, + 2192 + ], + [ + 436978, + 49670, + 2212 + ], + [ + 436903, + 49737, + 2212 + ], + [ + 435224, + 47860, + 2242 + ], + [ + 435298, + 47794, + 2242 + ], + [ + 434985, + 47444, + 2252 + ], + [ + 434910, + 47510, + 2252 + ], + [ + 397989, + 92847, + 2772 + ], + [ + 397821, + 92862, + 2652 + ], + [ + 397899, + 92770, + 2622 + ], + [ + 397989, + 92847, + 1002 + ], + [ + 221793, + 119101, + 642 + ], + [ + 225523, + 116542, + 512 + ], + [ + 225624, + 116703, + 542 + ], + [ + 221531, + 119040, + 572 + ], + [ + 221633, + 119204, + 602 + ], + [ + 221793, + 119101, + 482 + ], + [ + 225624, + 116703, + 482 + ], + [ + 225523, + 116542, + 472 + ], + [ + 221531, + 119040, + 482 + ], + [ + 221633, + 119204, + 492 + ], + [ + 230175, + 113556, + 542 + ], + [ + 230175, + 113556, + 472 + ], + [ + 312834, + 83183, + 4512 + ], + [ + 314696, + 84168, + 3022 + ], + [ + 319078, + 87389, + 1412 + ], + [ + 314509, + 83953, + 3412 + ], + [ + 315082, + 83489, + 3022 + ], + [ + 314930, + 83395, + 3012 + ], + [ + 380581, + 86368, + 1448 + ], + [ + 380965, + 86254, + 1424 + ], + [ + 380569, + 86679, + 718 + ], + [ + 381624, + 84713, + 685 + ], + [ + 378528, + 87461, + 846 + ], + [ + 377963, + 86496, + 1180 + ], + [ + 378162, + 87187, + 2680 + ], + [ + 378697, + 87794, + 2603 + ], + [ + 379122, + 88095, + 2543 + ], + [ + 379278, + 87979, + 755 + ], + [ + 379342, + 88317, + 1016 + ], + [ + 378944, + 87721, + 739 + ], + [ + 381304, + 85829, + 763 + ], + [ + 381257, + 85507, + 702 + ], + [ + 379888, + 87169, + 690 + ], + [ + 380922, + 85925, + 1420 + ], + [ + 382344, + 84388, + 762 + ], + [ + 380251, + 86728, + 1101 + ], + [ + 406073, + 94308, + 1426 + ], + [ + 406497, + 94521, + 803 + ], + [ + 406117, + 94548, + 772 + ], + [ + 408107, + 92254, + 1447 + ], + [ + 407877, + 93033, + 1417 + ], + [ + 408044, + 92342, + 5044 + ], + [ + 410159, + 90800, + 642 + ], + [ + 407334, + 93545, + 1403 + ], + [ + 407530, + 92817, + 1435 + ], + [ + 407248, + 92869, + 1446 + ], + [ + 405777, + 94324, + 802 + ], + [ + 409457, + 91318, + 1403 + ], + [ + 407081, + 93985, + 816 + ], + [ + 406457, + 94772, + 692 + ], + [ + 406870, + 94079, + 1446 + ], + [ + 407834, + 92693, + 1445 + ], + [ + 409417, + 91001, + 1432 + ], + [ + 409734, + 90549, + 675 + ], + [ + 409782, + 90882, + 745 + ], + [ + 357141, + 94149, + 1865 + ], + [ + 356587, + 96824, + 1592 + ], + [ + 356446, + 96819, + 1592 + ], + [ + 356728, + 96819, + 1592 + ], + [ + 356869, + 96805, + 1592 + ], + [ + 357009, + 96781, + 1602 + ], + [ + 357146, + 96747, + 1592 + ], + [ + 357281, + 96704, + 1602 + ], + [ + 357412, + 96652, + 1602 + ], + [ + 357540, + 96592, + 1602 + ], + [ + 357663, + 96522, + 1602 + ], + [ + 357782, + 96445, + 1612 + ], + [ + 357894, + 96359, + 1612 + ], + [ + 358001, + 96266, + 1612 + ], + [ + 358101, + 96166, + 1622 + ], + [ + 358194, + 96059, + 1642 + ], + [ + 358280, + 95947, + 1652 + ], + [ + 358357, + 95828, + 1642 + ], + [ + 358427, + 95705, + 1652 + ], + [ + 358487, + 95577, + 1652 + ], + [ + 358539, + 95446, + 1682 + ], + [ + 358582, + 95311, + 1682 + ], + [ + 358616, + 95174, + 1682 + ], + [ + 358640, + 95034, + 1692 + ], + [ + 358654, + 94893, + 1722 + ], + [ + 358659, + 94752, + 1722 + ], + [ + 358654, + 94611, + 1732 + ], + [ + 358640, + 94470, + 1732 + ], + [ + 358616, + 94330, + 1732 + ], + [ + 358582, + 94193, + 1732 + ], + [ + 358539, + 94058, + 1742 + ], + [ + 358487, + 93927, + 1742 + ], + [ + 358427, + 93799, + 1742 + ], + [ + 358357, + 93675, + 1752 + ], + [ + 358280, + 93557, + 1752 + ], + [ + 358194, + 93444, + 1772 + ], + [ + 358101, + 93338, + 1772 + ], + [ + 358001, + 93238, + 1772 + ], + [ + 357895, + 93145, + 1782 + ], + [ + 357782, + 93059, + 1782 + ], + [ + 357664, + 92982, + 1772 + ], + [ + 357540, + 92912, + 1782 + ], + [ + 357412, + 92852, + 1782 + ], + [ + 357281, + 92800, + 1782 + ], + [ + 357146, + 92757, + 1782 + ], + [ + 357009, + 92723, + 1782 + ], + [ + 356869, + 92699, + 1782 + ], + [ + 356728, + 92685, + 1782 + ], + [ + 356587, + 92680, + 1782 + ], + [ + 356305, + 92699, + 1782 + ], + [ + 356446, + 92685, + 1782 + ], + [ + 356165, + 92723, + 1782 + ], + [ + 356028, + 92757, + 1782 + ], + [ + 355893, + 92800, + 1782 + ], + [ + 355762, + 92852, + 1782 + ], + [ + 355634, + 92912, + 1782 + ], + [ + 355510, + 92982, + 1782 + ], + [ + 355392, + 93059, + 1792 + ], + [ + 355279, + 93145, + 1772 + ], + [ + 355173, + 93238, + 1772 + ], + [ + 355073, + 93338, + 1772 + ], + [ + 354980, + 93444, + 1762 + ], + [ + 354894, + 93557, + 1752 + ], + [ + 354817, + 93675, + 1742 + ], + [ + 354747, + 93799, + 1742 + ], + [ + 354687, + 93927, + 1732 + ], + [ + 354635, + 94058, + 1722 + ], + [ + 354592, + 94193, + 1712 + ], + [ + 354558, + 94330, + 1712 + ], + [ + 354534, + 94470, + 1702 + ], + [ + 354520, + 94611, + 1692 + ], + [ + 354515, + 94752, + 1692 + ], + [ + 354520, + 94893, + 1682 + ], + [ + 354534, + 95034, + 1682 + ], + [ + 354558, + 95174, + 1672 + ], + [ + 354592, + 95311, + 1672 + ], + [ + 354635, + 95446, + 1662 + ], + [ + 354687, + 95577, + 1662 + ], + [ + 354747, + 95705, + 1662 + ], + [ + 354817, + 95829, + 1662 + ], + [ + 354894, + 95947, + 1652 + ], + [ + 354980, + 96060, + 1652 + ], + [ + 355073, + 96166, + 1642 + ], + [ + 355173, + 96266, + 1642 + ], + [ + 355279, + 96359, + 1642 + ], + [ + 355392, + 96445, + 1622 + ], + [ + 355510, + 96522, + 1622 + ], + [ + 355634, + 96592, + 1622 + ], + [ + 355762, + 96652, + 1602 + ], + [ + 355893, + 96704, + 1602 + ], + [ + 356028, + 96747, + 1602 + ], + [ + 356165, + 96781, + 1602 + ], + [ + 356305, + 96805, + 1592 + ], + [ + 276578, + 65311, + 484 + ], + [ + 277506, + 65264, + 352 + ], + [ + 276236, + 65983, + 332 + ], + [ + 276535, + 64978, + 500 + ], + [ + 276520, + 65098, + 5037 + ], + [ + 276181, + 65126, + 465 + ], + [ + 276732, + 63964, + 372 + ], + [ + 275479, + 64710, + 372 + ], + [ + 222828, + 114271, + 642 + ], + [ + 223074, + 114299, + 5308 + ], + [ + 223200, + 114419, + 412 + ], + [ + 221600, + 114351, + 506 + ], + [ + 221899, + 114944, + 549 + ], + [ + 221192, + 114020, + 362 + ], + [ + 222117, + 113525, + 7388 + ], + [ + 222164, + 113773, + 523 + ], + [ + 221716, + 113951, + 524 + ], + [ + 222697, + 114161, + 5184 + ], + [ + 222707, + 114122, + 612 + ], + [ + 222251, + 113384, + 438 + ], + [ + 221398, + 113928, + 432 + ], + [ + 222237, + 114179, + 7785 + ], + [ + 222011, + 114169, + 626 + ], + [ + 222282, + 113709, + 5066 + ], + [ + 222394, + 113935, + 1438 + ], + [ + 222288, + 114870, + 568 + ], + [ + 221989, + 115237, + 402 + ], + [ + 222653, + 113792, + 481 + ], + [ + 222287, + 113653, + 508 + ], + [ + 222481, + 114002, + 7262 + ], + [ + 222511, + 114034, + 588 + ], + [ + 222331, + 114407, + 704 + ], + [ + 222466, + 114715, + 5706 + ], + [ + 221521, + 113988, + 5575 + ], + [ + 222415, + 113219, + 362 + ], + [ + 222427, + 114639, + 564 + ], + [ + 401966, + 79855, + 1304 + ], + [ + 401882, + 79501, + 789 + ], + [ + 402238, + 79381, + 1254 + ], + [ + 403351, + 82639, + 802 + ], + [ + 401687, + 81443, + 792 + ], + [ + 402358, + 80509, + 772 + ], + [ + 403220, + 80109, + 772 + ], + [ + 404547, + 80975, + 802 + ], + [ + 401739, + 79957, + 1155 + ], + [ + 402290, + 80047, + 765 + ], + [ + 401868, + 79050, + 802 + ], + [ + 401343, + 79780, + 812 + ], + [ + 393061, + 83483, + 1307 + ], + [ + 393484, + 83814, + 892 + ], + [ + 389725, + 81166, + 822 + ], + [ + 392893, + 82477, + 817 + ], + [ + 392986, + 83156, + 869 + ], + [ + 392503, + 82974, + 820 + ], + [ + 393323, + 82595, + 857 + ], + [ + 394078, + 82973, + 852 + ], + [ + 393458, + 83626, + 838 + ], + [ + 391575, + 82348, + 979 + ], + [ + 393404, + 82962, + 1315 + ], + [ + 391438, + 81367, + 871 + ], + [ + 391085, + 81885, + 842 + ], + [ + 393687, + 82784, + 1303 + ], + [ + 391986, + 82494, + 828 + ], + [ + 392373, + 81982, + 823 + ], + [ + 391888, + 81515, + 1259 + ], + [ + 391553, + 82018, + 1275 + ], + [ + 391945, + 82180, + 828 + ], + [ + 390319, + 80324, + 802 + ], + [ + 391477, + 81695, + 799 + ], + [ + 358916, + 33479, + 684 + ], + [ + 359821, + 33303, + 592 + ], + [ + 358289, + 33668, + 652 + ], + [ + 358322, + 32795, + 740 + ], + [ + 358363, + 33117, + 729 + ], + [ + 357944, + 32179, + 692 + ], + [ + 358195, + 32436, + 7567 + ], + [ + 358275, + 32449, + 728 + ], + [ + 359345, + 33148, + 723 + ], + [ + 359511, + 32841, + 7920 + ], + [ + 359566, + 32878, + 7146 + ], + [ + 358349, + 32822, + 8992 + ], + [ + 358494, + 32470, + 7265 + ], + [ + 358668, + 32855, + 779 + ], + [ + 358354, + 32922, + 779 + ], + [ + 359652, + 32801, + 651 + ], + [ + 359469, + 32642, + 3818 + ], + [ + 359334, + 32224, + 766 + ], + [ + 358839, + 32836, + 787 + ], + [ + 358913, + 32960, + 1170 + ], + [ + 358771, + 32873, + 7977 + ], + [ + 358642, + 33325, + 780 + ], + [ + 358877, + 33150, + 734 + ], + [ + 358421, + 33097, + 7811 + ], + [ + 359164, + 33088, + 7642 + ], + [ + 358722, + 33011, + 8560 + ], + [ + 359209, + 32105, + 732 + ], + [ + 359400, + 31843, + 642 + ], + [ + 358381, + 32477, + 750 + ], + [ + 359285, + 33167, + 743 + ], + [ + 359479, + 33250, + 8061 + ], + [ + 359253, + 32742, + 6689 + ], + [ + 358952, + 32719, + 811 + ], + [ + 359254, + 32454, + 726 + ], + [ + 359667, + 33148, + 735 + ], + [ + 359201, + 32857, + 7315 + ], + [ + 359153, + 32824, + 2797 + ], + [ + 358229, + 32121, + 679 + ], + [ + 358785, + 32461, + 732 + ], + [ + 358858, + 32555, + 7040 + ], + [ + 358636, + 32199, + 5536 + ], + [ + 358576, + 32071, + 6456 + ], + [ + 358738, + 32111, + 728 + ], + [ + 359300, + 32797, + 749 + ], + [ + 359310, + 32699, + 755 + ], + [ + 358696, + 32372, + 761 + ], + [ + 359413, + 32604, + 4624 + ], + [ + 331793, + 54550, + 405 + ], + [ + 332738, + 54284, + 272 + ], + [ + 331318, + 54711, + 282 + ], + [ + 331256, + 53602, + 360 + ], + [ + 330904, + 53352, + 232 + ], + [ + 331657, + 53530, + 399 + ], + [ + 332050, + 53453, + 406 + ], + [ + 331657, + 53768, + 5723 + ], + [ + 331713, + 53883, + 540 + ], + [ + 332017, + 53052, + 6396 + ], + [ + 332004, + 53106, + 396 + ], + [ + 332395, + 53374, + 365 + ], + [ + 332323, + 52920, + 4672 + ], + [ + 332323, + 52920, + 252 + ], + [ + 404406, + 31622, + 921 + ], + [ + 404620, + 31530, + 5163 + ], + [ + 404725, + 31724, + 2401 + ], + [ + 404591, + 31412, + 937 + ], + [ + 404683, + 31190, + 914 + ], + [ + 404699, + 31360, + 6593 + ], + [ + 404842, + 31229, + 950 + ], + [ + 405089, + 31112, + 1623 + ], + [ + 404821, + 31660, + 961 + ], + [ + 404427, + 31165, + 920 + ], + [ + 405070, + 32441, + 968 + ], + [ + 405601, + 32325, + 862 + ], + [ + 404168, + 32743, + 812 + ], + [ + 404732, + 31554, + 909 + ], + [ + 404959, + 31073, + 5037 + ], + [ + 405313, + 31882, + 1608 + ], + [ + 404774, + 31880, + 907 + ], + [ + 403757, + 31323, + 832 + ], + [ + 404362, + 32528, + 956 + ], + [ + 405190, + 30907, + 1652 + ], + [ + 405363, + 31844, + 1659 + ], + [ + 405302, + 32161, + 924 + ], + [ + 404773, + 31727, + 1667 + ], + [ + 405190, + 30907, + 872 + ], + [ + 392622, + 24984, + 746 + ], + [ + 392956, + 25106, + 662 + ], + [ + 392538, + 25049, + 5101 + ], + [ + 391361, + 24344, + 5696 + ], + [ + 391415, + 24657, + 817 + ], + [ + 391148, + 23986, + 682 + ], + [ + 392290, + 24648, + 834 + ], + [ + 392580, + 24650, + 778 + ], + [ + 392475, + 24885, + 6148 + ], + [ + 391727, + 25243, + 751 + ], + [ + 391779, + 24997, + 3579 + ], + [ + 391952, + 25297, + 800 + ], + [ + 391447, + 24794, + 4111 + ], + [ + 391634, + 25180, + 5586 + ], + [ + 391484, + 25470, + 1192 + ], + [ + 391976, + 24804, + 802 + ], + [ + 391811, + 24734, + 3300 + ], + [ + 392035, + 24775, + 4504 + ], + [ + 392332, + 25085, + 3732 + ], + [ + 392014, + 25262, + 4454 + ], + [ + 392604, + 23657, + 712 + ], + [ + 392072, + 24437, + 767 + ], + [ + 391440, + 24192, + 780 + ], + [ + 391592, + 25349, + 6084 + ], + [ + 391685, + 24519, + 791 + ], + [ + 392160, + 25103, + 770 + ], + [ + 392142, + 24805, + 1073 + ], + [ + 392269, + 25090, + 812 + ], + [ + 391636, + 24554, + 765 + ], + [ + 391663, + 24941, + 804 + ], + [ + 392628, + 24755, + 3990 + ], + [ + 392891, + 24906, + 4330 + ], + [ + 392563, + 24617, + 5052 + ], + [ + 392556, + 24541, + 816 + ], + [ + 392401, + 24472, + 3157 + ], + [ + 392533, + 24290, + 767 + ], + [ + 392687, + 24125, + 3572 + ], + [ + 392840, + 24856, + 782 + ], + [ + 391685, + 24910, + 784 + ], + [ + 392377, + 24954, + 3165 + ], + [ + 392535, + 24992, + 782 + ], + [ + 392580, + 24047, + 825 + ], + [ + 392134, + 24686, + 3106 + ], + [ + 392086, + 24739, + 3778 + ], + [ + 391484, + 25470, + 652 + ], + [ + 284462, + 74566, + 2446 + ], + [ + 285172, + 74327, + 382 + ], + [ + 283876, + 75077, + 1622 + ], + [ + 284014, + 73348, + 3061 + ], + [ + 284030, + 73401, + 8379 + ], + [ + 283548, + 73531, + 3052 + ], + [ + 284408, + 74241, + 2304 + ], + [ + 284445, + 74233, + 7263 + ], + [ + 284596, + 74375, + 657 + ], + [ + 283587, + 73615, + 2392 + ], + [ + 283998, + 73682, + 7425 + ], + [ + 283681, + 74122, + 2389 + ], + [ + 284268, + 74163, + 10202 + ], + [ + 284259, + 74445, + 4379 + ], + [ + 284532, + 73440, + 1454 + ], + [ + 284422, + 73030, + 2732 + ], + [ + 284035, + 73687, + 2738 + ], + [ + 284802, + 73994, + 637 + ], + [ + 284837, + 74307, + 551 + ], + [ + 284308, + 73562, + 2181 + ], + [ + 284309, + 73259, + 2738 + ], + [ + 284137, + 74685, + 2329 + ], + [ + 284338, + 73872, + 2029 + ], + [ + 284575, + 74067, + 911 + ], + [ + 284544, + 73745, + 1076 + ], + [ + 283175, + 73865, + 5242 + ], + [ + 283242, + 73888, + 2088 + ], + [ + 283763, + 74774, + 2323 + ], + [ + 284422, + 73030, + 352 + ], + [ + 283876, + 75077, + 392 + ], + [ + 283175, + 73865, + 342 + ], + [ + 338571, + 81703, + 563 + ], + [ + 339054, + 81664, + 540 + ], + [ + 338745, + 81449, + 3472 + ], + [ + 339012, + 81332, + 556 + ], + [ + 338480, + 81023, + 553 + ], + [ + 338241, + 81170, + 3434 + ], + [ + 338069, + 81435, + 526 + ], + [ + 301147, + 65257, + 953 + ], + [ + 302005, + 65296, + 382 + ], + [ + 300673, + 65955, + 372 + ], + [ + 301353, + 63982, + 5852 + ], + [ + 301161, + 64503, + 8408 + ], + [ + 301199, + 64061, + 5912 + ], + [ + 300972, + 64197, + 485 + ], + [ + 300891, + 64220, + 6292 + ], + [ + 301045, + 64140, + 5912 + ], + [ + 301010, + 64970, + 5551 + ], + [ + 300634, + 64518, + 7270 + ], + [ + 300639, + 64963, + 577 + ], + [ + 301115, + 64943, + 1076 + ], + [ + 300584, + 64380, + 6292 + ], + [ + 300737, + 64300, + 6292 + ], + [ + 300277, + 64541, + 6282 + ], + [ + 300430, + 64460, + 6292 + ], + [ + 301216, + 64863, + 8516 + ], + [ + 301523, + 64962, + 6535 + ], + [ + 301515, + 65120, + 584 + ], + [ + 301472, + 64775, + 615 + ], + [ + 301843, + 65026, + 559 + ], + [ + 299977, + 64688, + 342 + ], + [ + 300144, + 64686, + 399 + ], + [ + 301353, + 63982, + 382 + ], + [ + 371964, + 30297, + 406 + ], + [ + 373210, + 29990, + 452 + ], + [ + 371725, + 30357, + 432 + ], + [ + 372777, + 29639, + 3540 + ], + [ + 372974, + 29413, + 537 + ], + [ + 372997, + 29537, + 564 + ], + [ + 372658, + 29465, + 5292 + ], + [ + 372746, + 29184, + 577 + ], + [ + 372885, + 29230, + 6325 + ], + [ + 373059, + 29357, + 7447 + ], + [ + 373015, + 29735, + 512 + ], + [ + 373001, + 29276, + 8298 + ], + [ + 371903, + 28994, + 6599 + ], + [ + 371794, + 28944, + 8136 + ], + [ + 371794, + 28934, + 536 + ], + [ + 372349, + 29055, + 6137 + ], + [ + 372294, + 29090, + 6877 + ], + [ + 372344, + 28947, + 596 + ], + [ + 372154, + 29106, + 6222 + ], + [ + 372204, + 29181, + 535 + ], + [ + 371759, + 29136, + 561 + ], + [ + 372869, + 28520, + 492 + ], + [ + 372578, + 28828, + 593 + ], + [ + 372058, + 29032, + 575 + ], + [ + 371423, + 28881, + 482 + ], + [ + 372927, + 29052, + 545 + ], + [ + 372601, + 29427, + 6108 + ], + [ + 372557, + 29602, + 6599 + ], + [ + 372439, + 29540, + 4547 + ], + [ + 372424, + 29777, + 2032 + ], + [ + 372292, + 29862, + 503 + ], + [ + 372319, + 29401, + 595 + ], + [ + 372821, + 29866, + 6750 + ], + [ + 372254, + 30146, + 6652 + ], + [ + 372627, + 29587, + 5742 + ], + [ + 372630, + 29467, + 546 + ], + [ + 372670, + 29784, + 525 + ], + [ + 372560, + 29736, + 2747 + ], + [ + 372612, + 29688, + 2062 + ], + [ + 372554, + 29287, + 589 + ], + [ + 372522, + 29646, + 775 + ], + [ + 372471, + 29701, + 1436 + ], + [ + 372721, + 29648, + 585 + ], + [ + 372505, + 29711, + 7227 + ], + [ + 372585, + 29126, + 552 + ], + [ + 372871, + 29794, + 6113 + ], + [ + 372978, + 29795, + 4636 + ], + [ + 203238, + 113068, + 1401 + ], + [ + 203383, + 112990, + 4932 + ], + [ + 202163, + 113846, + 4622 + ], + [ + 202311, + 113227, + 5919 + ], + [ + 202126, + 113106, + 5576 + ], + [ + 202433, + 113162, + 1457 + ], + [ + 201865, + 112353, + 1345 + ], + [ + 202063, + 112269, + 5242 + ], + [ + 202163, + 112575, + 1414 + ], + [ + 203096, + 113052, + 5231 + ], + [ + 203233, + 112831, + 1351 + ], + [ + 202676, + 112721, + 5436 + ], + [ + 202534, + 112533, + 1419 + ], + [ + 202663, + 112546, + 1346 + ], + [ + 202563, + 111863, + 1294 + ], + [ + 202521, + 111762, + 1232 + ], + [ + 202864, + 112331, + 4982 + ], + [ + 202732, + 113063, + 6849 + ], + [ + 202826, + 112753, + 6810 + ], + [ + 202974, + 112783, + 5308 + ], + [ + 203119, + 112749, + 5191 + ], + [ + 202949, + 112424, + 1279 + ], + [ + 202759, + 112472, + 5254 + ], + [ + 202820, + 112511, + 1468 + ], + [ + 203002, + 112751, + 1381 + ], + [ + 203048, + 113091, + 1356 + ], + [ + 202760, + 113217, + 1399 + ], + [ + 202883, + 113120, + 1417 + ], + [ + 202586, + 112979, + 6400 + ], + [ + 202375, + 113329, + 1404 + ], + [ + 202532, + 113376, + 6216 + ], + [ + 202184, + 112270, + 1377 + ], + [ + 202318, + 113503, + 1432 + ], + [ + 202047, + 112861, + 1582 + ], + [ + 202526, + 112293, + 1376 + ], + [ + 202351, + 112478, + 5371 + ], + [ + 202433, + 112224, + 5260 + ], + [ + 202280, + 112655, + 1409 + ], + [ + 201968, + 113236, + 1453 + ], + [ + 201302, + 112618, + 1332 + ], + [ + 202505, + 113069, + 3899 + ], + [ + 202002, + 113408, + 5648 + ], + [ + 202614, + 112201, + 1333 + ], + [ + 202266, + 112301, + 1908 + ], + [ + 202214, + 112062, + 1298 + ], + [ + 202469, + 112024, + 5108 + ], + [ + 203316, + 112992, + 1277 + ], + [ + 201935, + 113387, + 1423 + ], + [ + 202546, + 112937, + 4626 + ], + [ + 203383, + 112990, + 1272 + ], + [ + 202163, + 113846, + 1412 + ], + [ + 258306, + 188700, + 1002 + ], + [ + 258262, + 188701, + 1002 + ], + [ + 258391, + 188133, + 1163 + ], + [ + 258351, + 188695, + 1012 + ], + [ + 258394, + 188688, + 1012 + ], + [ + 258438, + 188677, + 1012 + ], + [ + 258480, + 188664, + 1012 + ], + [ + 258521, + 188648, + 1002 + ], + [ + 258561, + 188629, + 1002 + ], + [ + 258600, + 188607, + 1002 + ], + [ + 258637, + 188582, + 1002 + ], + [ + 258673, + 188556, + 1012 + ], + [ + 258706, + 188526, + 1012 + ], + [ + 258737, + 188495, + 1012 + ], + [ + 258767, + 188462, + 1002 + ], + [ + 258793, + 188426, + 1012 + ], + [ + 258818, + 188389, + 1002 + ], + [ + 258840, + 188350, + 1002 + ], + [ + 258859, + 188310, + 1002 + ], + [ + 258875, + 188269, + 1002 + ], + [ + 258888, + 188227, + 1002 + ], + [ + 258899, + 188183, + 1002 + ], + [ + 258906, + 188140, + 1002 + ], + [ + 258911, + 188095, + 1002 + ], + [ + 258216, + 188699, + 1002 + ], + [ + 258912, + 188051, + 1002 + ], + [ + 258910, + 188005, + 1002 + ], + [ + 258906, + 187960, + 1002 + ], + [ + 258898, + 187915, + 1002 + ], + [ + 258886, + 187871, + 1002 + ], + [ + 258872, + 187827, + 1002 + ], + [ + 258855, + 187785, + 1002 + ], + [ + 258835, + 187744, + 1002 + ], + [ + 258812, + 187704, + 1002 + ], + [ + 258786, + 187666, + 1002 + ], + [ + 258758, + 187631, + 992 + ], + [ + 258727, + 187597, + 992 + ], + [ + 258694, + 187565, + 992 + ], + [ + 258659, + 187536, + 992 + ], + [ + 258622, + 187509, + 982 + ], + [ + 258583, + 187486, + 982 + ], + [ + 258542, + 187464, + 982 + ], + [ + 258500, + 187446, + 982 + ], + [ + 258457, + 187431, + 982 + ], + [ + 258413, + 187419, + 972 + ], + [ + 258368, + 187410, + 972 + ], + [ + 258171, + 188695, + 1002 + ], + [ + 258323, + 187404, + 972 + ], + [ + 258277, + 187401, + 972 + ], + [ + 258232, + 187402, + 972 + ], + [ + 258186, + 187405, + 972 + ], + [ + 258141, + 187412, + 972 + ], + [ + 258096, + 187422, + 972 + ], + [ + 258052, + 187436, + 972 + ], + [ + 258010, + 187452, + 972 + ], + [ + 257968, + 187471, + 972 + ], + [ + 257928, + 187493, + 972 + ], + [ + 257890, + 187518, + 972 + ], + [ + 257853, + 187546, + 972 + ], + [ + 257819, + 187576, + 972 + ], + [ + 257787, + 187608, + 972 + ], + [ + 257757, + 187642, + 982 + ], + [ + 257729, + 187679, + 982 + ], + [ + 257704, + 187717, + 982 + ], + [ + 257811, + 188239, + 1158 + ], + [ + 257682, + 187757, + 982 + ], + [ + 257663, + 187799, + 982 + ], + [ + 257647, + 187841, + 982 + ], + [ + 257633, + 187885, + 982 + ], + [ + 257623, + 187930, + 982 + ], + [ + 257616, + 187975, + 982 + ], + [ + 257613, + 188021, + 982 + ], + [ + 257612, + 188066, + 982 + ], + [ + 257615, + 188112, + 982 + ], + [ + 257621, + 188157, + 982 + ], + [ + 257630, + 188202, + 982 + ], + [ + 257996, + 188644, + 1012 + ], + [ + 257657, + 188289, + 1002 + ], + [ + 257675, + 188331, + 1002 + ], + [ + 257697, + 188372, + 1002 + ], + [ + 257720, + 188411, + 1002 + ], + [ + 257747, + 188448, + 1002 + ], + [ + 257776, + 188483, + 1002 + ], + [ + 257808, + 188516, + 1002 + ], + [ + 257842, + 188547, + 1002 + ], + [ + 257877, + 188575, + 1002 + ], + [ + 257915, + 188601, + 1012 + ], + [ + 257955, + 188624, + 1012 + ], + [ + 258038, + 188661, + 1012 + ], + [ + 258082, + 188675, + 1012 + ], + [ + 258126, + 188687, + 1012 + ], + [ + 257642, + 188246, + 982 + ], + [ + 372016, + 77661, + 3246 + ], + [ + 372173, + 78021, + 4751 + ], + [ + 371902, + 78252, + 579 + ], + [ + 371770, + 77244, + 585 + ], + [ + 371862, + 78102, + 6654 + ], + [ + 406323, + 79159, + 764 + ], + [ + 414749, + 85128, + 772 + ], + [ + 412640, + 83511, + 1377 + ], + [ + 412589, + 83152, + 1330 + ], + [ + 413062, + 83393, + 1426 + ], + [ + 410196, + 81840, + 798 + ], + [ + 411217, + 89217, + 1416 + ], + [ + 411175, + 88886, + 1430 + ], + [ + 411541, + 89165, + 772 + ], + [ + 410693, + 89660, + 1404 + ], + [ + 410949, + 89624, + 1411 + ], + [ + 410944, + 89954, + 716 + ], + [ + 410905, + 89306, + 1385 + ], + [ + 410970, + 89340, + 5938 + ], + [ + 414698, + 86145, + 710 + ], + [ + 414732, + 86275, + 5718 + ], + [ + 414414, + 86555, + 688 + ], + [ + 409250, + 81165, + 5860 + ], + [ + 407381, + 79674, + 1335 + ], + [ + 406809, + 79421, + 935 + ], + [ + 407339, + 79345, + 1367 + ], + [ + 414953, + 85698, + 709 + ], + [ + 415973, + 85008, + 662 + ], + [ + 411541, + 88833, + 1394 + ], + [ + 411500, + 88516, + 1407 + ], + [ + 413823, + 87026, + 721 + ], + [ + 409870, + 81554, + 1268 + ], + [ + 414093, + 86266, + 1382 + ], + [ + 415289, + 85305, + 748 + ], + [ + 415286, + 84953, + 1360 + ], + [ + 409537, + 80939, + 1390 + ], + [ + 409498, + 80630, + 1403 + ], + [ + 409745, + 80865, + 791 + ], + [ + 411050, + 82063, + 1323 + ], + [ + 411088, + 82395, + 1228 + ], + [ + 410609, + 82107, + 831 + ], + [ + 409579, + 81298, + 1307 + ], + [ + 409251, + 81049, + 1314 + ], + [ + 404985, + 78171, + 758 + ], + [ + 405662, + 78578, + 5731 + ], + [ + 406232, + 78486, + 741 + ], + [ + 405914, + 78281, + 1303 + ], + [ + 405524, + 78009, + 798 + ], + [ + 405609, + 78384, + 1306 + ], + [ + 402259, + 76252, + 1249 + ], + [ + 402222, + 75915, + 1364 + ], + [ + 411100, + 88946, + 4808 + ], + [ + 411226, + 89560, + 908 + ], + [ + 411492, + 82310, + 1273 + ], + [ + 414435, + 84147, + 716 + ], + [ + 414094, + 86608, + 742 + ], + [ + 411849, + 82694, + 5607 + ], + [ + 412064, + 82910, + 1329 + ], + [ + 415327, + 85623, + 688 + ], + [ + 403260, + 76968, + 809 + ], + [ + 403797, + 77191, + 1326 + ], + [ + 404721, + 77958, + 1218 + ], + [ + 403164, + 76288, + 719 + ], + [ + 413548, + 87092, + 1386 + ], + [ + 413769, + 86335, + 1253 + ], + [ + 413824, + 86678, + 1394 + ], + [ + 411931, + 88774, + 1202 + ], + [ + 412296, + 88332, + 1366 + ], + [ + 414226, + 85953, + 3859 + ], + [ + 414374, + 85909, + 1327 + ], + [ + 407977, + 80234, + 1267 + ], + [ + 406318, + 78837, + 1297 + ], + [ + 405292, + 78135, + 1348 + ], + [ + 404684, + 77632, + 1326 + ], + [ + 414527, + 84470, + 1412 + ], + [ + 414193, + 84533, + 1324 + ], + [ + 414159, + 84220, + 1431 + ], + [ + 412020, + 82552, + 1380 + ], + [ + 405959, + 78603, + 1338 + ], + [ + 414659, + 85473, + 1414 + ], + [ + 414663, + 85783, + 883 + ], + [ + 414963, + 85388, + 1428 + ], + [ + 414539, + 84795, + 964 + ], + [ + 410531, + 81459, + 933 + ], + [ + 411403, + 81948, + 709 + ], + [ + 409118, + 80337, + 762 + ], + [ + 408879, + 80764, + 1348 + ], + [ + 408840, + 80429, + 1427 + ], + [ + 407850, + 79572, + 722 + ], + [ + 410603, + 81800, + 1322 + ], + [ + 409829, + 81230, + 1299 + ], + [ + 412502, + 82801, + 746 + ], + [ + 412251, + 87972, + 1394 + ], + [ + 410166, + 81488, + 1032 + ], + [ + 403753, + 76849, + 1344 + ], + [ + 402731, + 76105, + 1366 + ], + [ + 403254, + 76646, + 1335 + ], + [ + 411892, + 88435, + 1273 + ], + [ + 418886, + 92999, + 1034 + ], + [ + 420200, + 92831, + 1055 + ], + [ + 419169, + 93205, + 1028 + ], + [ + 425511, + 88240, + 1521 + ], + [ + 424658, + 88474, + 1503 + ], + [ + 424550, + 87779, + 1277 + ], + [ + 424524, + 87465, + 1505 + ], + [ + 424903, + 87017, + 1235 + ], + [ + 426073, + 87698, + 1505 + ], + [ + 426679, + 87865, + 932 + ], + [ + 426607, + 88009, + 922 + ], + [ + 425833, + 88144, + 1203 + ], + [ + 426437, + 88281, + 922 + ], + [ + 426339, + 88409, + 922 + ], + [ + 426526, + 88148, + 922 + ], + [ + 426741, + 87717, + 932 + ], + [ + 426156, + 85954, + 1412 + ], + [ + 425616, + 86455, + 1293 + ], + [ + 426305, + 85638, + 4122 + ], + [ + 426898, + 86466, + 1169 + ], + [ + 426625, + 86902, + 1392 + ], + [ + 426523, + 86230, + 1204 + ], + [ + 423917, + 88045, + 4116 + ], + [ + 423077, + 88962, + 1136 + ], + [ + 422826, + 89071, + 1190 + ], + [ + 420463, + 92023, + 1145 + ], + [ + 420516, + 92357, + 1279 + ], + [ + 420062, + 91805, + 1025 + ], + [ + 422109, + 89778, + 4125 + ], + [ + 421175, + 90758, + 1025 + ], + [ + 416811, + 94978, + 4117 + ], + [ + 415019, + 96748, + 4117 + ], + [ + 413770, + 97981, + 4100 + ], + [ + 418769, + 93090, + 4124 + ], + [ + 420821, + 91564, + 1079 + ], + [ + 420584, + 91355, + 4132 + ], + [ + 420773, + 91206, + 1077 + ], + [ + 417866, + 94683, + 1044 + ], + [ + 418692, + 94122, + 1068 + ], + [ + 417924, + 95020, + 1226 + ], + [ + 416013, + 95878, + 1042 + ], + [ + 415894, + 95903, + 4108 + ], + [ + 422735, + 89183, + 4110 + ], + [ + 422250, + 89666, + 1061 + ], + [ + 426445, + 85557, + 1360 + ], + [ + 426663, + 87260, + 1250 + ], + [ + 426795, + 87565, + 932 + ], + [ + 414207, + 97590, + 4121 + ], + [ + 424146, + 87930, + 1341 + ], + [ + 414054, + 97959, + 1249 + ], + [ + 414087, + 98322, + 1041 + ], + [ + 416482, + 95402, + 4123 + ], + [ + 416312, + 95769, + 1020 + ], + [ + 415729, + 96286, + 1027 + ], + [ + 422337, + 90310, + 1093 + ], + [ + 422669, + 90216, + 1204 + ], + [ + 422410, + 90653, + 1476 + ], + [ + 422045, + 90799, + 1268 + ], + [ + 422506, + 91326, + 1582 + ], + [ + 421939, + 90124, + 1032 + ], + [ + 422293, + 89982, + 1072 + ], + [ + 416642, + 95347, + 1034 + ], + [ + 417009, + 94929, + 1046 + ], + [ + 417543, + 95489, + 1118 + ], + [ + 415538, + 97348, + 1060 + ], + [ + 415188, + 97068, + 1223 + ], + [ + 414645, + 97187, + 4114 + ], + [ + 414538, + 97910, + 1233 + ], + [ + 421382, + 92102, + 1436 + ], + [ + 421783, + 91586, + 1589 + ], + [ + 421639, + 90628, + 1332 + ], + [ + 422868, + 89427, + 1125 + ], + [ + 423965, + 89743, + 1582 + ], + [ + 424752, + 89121, + 1622 + ], + [ + 424784, + 89456, + 1446 + ], + [ + 422572, + 89539, + 1082 + ], + [ + 423240, + 89972, + 1549 + ], + [ + 423770, + 88367, + 1415 + ], + [ + 423800, + 88709, + 1199 + ], + [ + 415135, + 96745, + 1067 + ], + [ + 414491, + 97599, + 1148 + ], + [ + 426823, + 85819, + 1336 + ], + [ + 426483, + 85886, + 1276 + ], + [ + 425977, + 87022, + 1410 + ], + [ + 426280, + 86966, + 1257 + ], + [ + 426974, + 86864, + 972 + ], + [ + 425659, + 86795, + 1275 + ], + [ + 425472, + 86584, + 4125 + ], + [ + 425936, + 86702, + 1429 + ], + [ + 421226, + 91070, + 1157 + ], + [ + 420426, + 91701, + 1226 + ], + [ + 414863, + 97158, + 1123 + ], + [ + 424190, + 88261, + 1334 + ], + [ + 424398, + 89921, + 1161 + ], + [ + 424033, + 90393, + 1328 + ], + [ + 414957, + 97827, + 1186 + ], + [ + 427020, + 85840, + 1002 + ], + [ + 414435, + 98555, + 932 + ], + [ + 422790, + 90865, + 1699 + ], + [ + 418601, + 93447, + 1041 + ], + [ + 418934, + 93357, + 1045 + ], + [ + 425887, + 88478, + 1347 + ], + [ + 425322, + 86914, + 1330 + ], + [ + 425816, + 87823, + 1567 + ], + [ + 425362, + 87272, + 1232 + ], + [ + 425699, + 87122, + 1210 + ], + [ + 425423, + 87590, + 1494 + ], + [ + 424943, + 87347, + 1183 + ], + [ + 419574, + 93755, + 1278 + ], + [ + 421013, + 92883, + 1326 + ], + [ + 425130, + 88698, + 1296 + ], + [ + 423598, + 90164, + 1373 + ], + [ + 423652, + 90522, + 1457 + ], + [ + 423104, + 91094, + 1335 + ], + [ + 417777, + 94036, + 991 + ], + [ + 423080, + 90774, + 1597 + ], + [ + 423029, + 90439, + 1504 + ], + [ + 419216, + 93549, + 1055 + ], + [ + 426838, + 87410, + 932 + ], + [ + 423338, + 90986, + 1017 + ], + [ + 426166, + 88669, + 922 + ], + [ + 422145, + 91477, + 1417 + ], + [ + 421841, + 92269, + 1113 + ], + [ + 421810, + 91946, + 1274 + ], + [ + 423310, + 90648, + 1263 + ], + [ + 419603, + 94100, + 1041 + ], + [ + 425536, + 88598, + 1212 + ], + [ + 425168, + 89041, + 1187 + ], + [ + 420973, + 92550, + 1384 + ], + [ + 419083, + 94312, + 1360 + ], + [ + 417969, + 95363, + 1223 + ], + [ + 415222, + 97388, + 1097 + ], + [ + 415277, + 97743, + 1208 + ], + [ + 419290, + 93908, + 1433 + ], + [ + 419309, + 94227, + 1106 + ], + [ + 418228, + 93883, + 1023 + ], + [ + 421688, + 90941, + 1436 + ], + [ + 425196, + 89372, + 958 + ], + [ + 421723, + 91273, + 1314 + ], + [ + 420914, + 92237, + 1134 + ], + [ + 420869, + 91905, + 1126 + ], + [ + 245768, + 99484, + 471 + ], + [ + 246666, + 99141, + 392 + ], + [ + 245447, + 99958, + 412 + ], + [ + 245131, + 98838, + 497 + ], + [ + 244621, + 98695, + 362 + ], + [ + 245763, + 98820, + 747 + ], + [ + 246160, + 98696, + 603 + ], + [ + 246154, + 98819, + 7036 + ], + [ + 246328, + 99088, + 462 + ], + [ + 246036, + 98955, + 598 + ], + [ + 246069, + 99274, + 471 + ], + [ + 245849, + 97892, + 352 + ], + [ + 245493, + 98628, + 534 + ], + [ + 245530, + 98743, + 4575 + ], + [ + 245469, + 99090, + 597 + ], + [ + 245768, + 99173, + 1050 + ], + [ + 389900, + 81946, + 1235 + ], + [ + 392120, + 83508, + 818 + ], + [ + 388959, + 81299, + 822 + ], + [ + 389391, + 81115, + 840 + ], + [ + 390186, + 79558, + 802 + ], + [ + 394297, + 83156, + 981 + ], + [ + 389434, + 81446, + 834 + ], + [ + 391143, + 82231, + 1010 + ], + [ + 391208, + 82569, + 1289 + ], + [ + 390792, + 82401, + 888 + ], + [ + 394844, + 82840, + 822 + ], + [ + 393617, + 84581, + 862 + ], + [ + 390215, + 82097, + 954 + ], + [ + 390743, + 82059, + 841 + ], + [ + 392077, + 83176, + 824 + ], + [ + 392030, + 82828, + 818 + ], + [ + 393083, + 83810, + 1011 + ], + [ + 389051, + 81287, + 1179 + ], + [ + 391653, + 83024, + 814 + ], + [ + 391609, + 82689, + 824 + ], + [ + 389825, + 81603, + 816 + ], + [ + 403124, + 88900, + 759 + ], + [ + 403090, + 90362, + 815 + ], + [ + 401859, + 89775, + 812 + ], + [ + 403751, + 90915, + 5816 + ], + [ + 403644, + 91026, + 7373 + ], + [ + 403588, + 90562, + 4176 + ], + [ + 404718, + 91806, + 782 + ], + [ + 405450, + 89958, + 767 + ], + [ + 405527, + 90290, + 1245 + ], + [ + 405040, + 90404, + 793 + ], + [ + 404228, + 91358, + 783 + ], + [ + 404180, + 91102, + 6717 + ], + [ + 404187, + 91021, + 824 + ], + [ + 404155, + 90705, + 974 + ], + [ + 404647, + 90869, + 785 + ], + [ + 404719, + 91229, + 1118 + ], + [ + 404015, + 90794, + 4971 + ], + [ + 403681, + 90469, + 909 + ], + [ + 405903, + 89821, + 1222 + ], + [ + 406137, + 89809, + 792 + ], + [ + 405154, + 91074, + 1144 + ], + [ + 403881, + 88678, + 908 + ], + [ + 403912, + 89000, + 732 + ], + [ + 405112, + 90746, + 1178 + ], + [ + 404050, + 90002, + 807 + ], + [ + 403582, + 89793, + 768 + ], + [ + 404012, + 89673, + 883 + ], + [ + 403278, + 87778, + 822 + ], + [ + 405404, + 89615, + 764 + ], + [ + 405537, + 90609, + 779 + ], + [ + 344126, + 36413, + 1504 + ], + [ + 343680, + 36349, + 1506 + ], + [ + 344054, + 36035, + 1342 + ], + [ + 343277, + 36537, + 1522 + ], + [ + 342773, + 37263, + 1502 + ], + [ + 342597, + 36361, + 1402 + ], + [ + 343161, + 36243, + 1426 + ], + [ + 343491, + 36283, + 4942 + ], + [ + 343439, + 36471, + 3874 + ], + [ + 343676, + 36491, + 1475 + ], + [ + 344100, + 36831, + 1549 + ], + [ + 344304, + 36909, + 1362 + ], + [ + 384794, + 37380, + 362 + ], + [ + 384972, + 37459, + 511 + ], + [ + 384540, + 38549, + 292 + ], + [ + 384109, + 37139, + 252 + ], + [ + 385000, + 37093, + 375 + ], + [ + 384899, + 37227, + 2120 + ], + [ + 384712, + 37213, + 366 + ], + [ + 385912, + 38128, + 322 + ], + [ + 385131, + 37203, + 375 + ], + [ + 385483, + 36720, + 262 + ], + [ + 393207, + 84820, + 856 + ], + [ + 391746, + 83725, + 822 + ], + [ + 394708, + 81825, + 841 + ], + [ + 395118, + 82028, + 828 + ], + [ + 394783, + 82152, + 1286 + ], + [ + 394064, + 81467, + 831 + ], + [ + 394011, + 85457, + 868 + ], + [ + 393624, + 84621, + 1318 + ], + [ + 394321, + 85303, + 1355 + ], + [ + 388417, + 79509, + 788 + ], + [ + 387532, + 79522, + 791 + ], + [ + 387925, + 79038, + 849 + ], + [ + 383284, + 84555, + 766 + ], + [ + 384083, + 84302, + 784 + ], + [ + 382998, + 84850, + 782 + ], + [ + 388279, + 78477, + 780 + ], + [ + 388518, + 78269, + 4539 + ], + [ + 388623, + 78285, + 759 + ], + [ + 391268, + 83259, + 848 + ], + [ + 390920, + 90681, + 862 + ], + [ + 384474, + 83840, + 815 + ], + [ + 389153, + 79097, + 1248 + ], + [ + 389077, + 78768, + 785 + ], + [ + 389459, + 78594, + 1258 + ], + [ + 386255, + 80580, + 818 + ], + [ + 384701, + 82693, + 758 + ], + [ + 390019, + 78872, + 790 + ], + [ + 389516, + 79260, + 812 + ], + [ + 387877, + 78680, + 836 + ], + [ + 387838, + 79014, + 6070 + ], + [ + 395195, + 82368, + 1282 + ], + [ + 394799, + 82503, + 859 + ], + [ + 394507, + 84842, + 798 + ], + [ + 392268, + 80958, + 1249 + ], + [ + 388595, + 80838, + 815 + ], + [ + 388673, + 81189, + 1280 + ], + [ + 386034, + 81083, + 816 + ], + [ + 386085, + 81410, + 914 + ], + [ + 386287, + 80829, + 4858 + ], + [ + 386292, + 80899, + 769 + ], + [ + 386078, + 80999, + 5900 + ], + [ + 386526, + 80438, + 766 + ], + [ + 387712, + 80876, + 796 + ], + [ + 385139, + 82852, + 758 + ], + [ + 389523, + 82126, + 824 + ], + [ + 386082, + 81304, + 5380 + ], + [ + 384320, + 83381, + 5838 + ], + [ + 384700, + 83267, + 5075 + ], + [ + 384535, + 83545, + 2229 + ], + [ + 384364, + 83710, + 5843 + ], + [ + 384041, + 83967, + 801 + ], + [ + 383893, + 84148, + 4693 + ], + [ + 388580, + 77953, + 768 + ], + [ + 389377, + 78225, + 792 + ], + [ + 384743, + 83011, + 768 + ], + [ + 388684, + 81516, + 822 + ], + [ + 389537, + 77070, + 774 + ], + [ + 394708, + 83991, + 944 + ], + [ + 394787, + 84667, + 792 + ], + [ + 394057, + 85801, + 874 + ], + [ + 390647, + 78556, + 866 + ], + [ + 388850, + 79953, + 835 + ], + [ + 388551, + 80509, + 814 + ], + [ + 388541, + 80203, + 1237 + ], + [ + 392169, + 83852, + 851 + ], + [ + 392669, + 83987, + 1249 + ], + [ + 391698, + 83367, + 820 + ], + [ + 389104, + 81644, + 1267 + ], + [ + 388054, + 80028, + 811 + ], + [ + 394469, + 81994, + 1281 + ], + [ + 392584, + 80120, + 840 + ], + [ + 392719, + 81132, + 847 + ], + [ + 392197, + 80631, + 855 + ], + [ + 395620, + 82559, + 794 + ], + [ + 395058, + 84503, + 796 + ], + [ + 394567, + 85178, + 1011 + ], + [ + 389508, + 81772, + 1257 + ], + [ + 393196, + 84489, + 1328 + ], + [ + 390869, + 82764, + 1287 + ], + [ + 389938, + 82263, + 1175 + ], + [ + 389971, + 78514, + 779 + ], + [ + 390251, + 78369, + 780 + ], + [ + 391707, + 80159, + 1234 + ], + [ + 392182, + 80309, + 1249 + ], + [ + 391718, + 80472, + 807 + ], + [ + 394177, + 82148, + 1157 + ], + [ + 393844, + 81968, + 833 + ], + [ + 391540, + 79145, + 781 + ], + [ + 392092, + 79632, + 1249 + ], + [ + 391251, + 79987, + 811 + ], + [ + 392538, + 79775, + 838 + ], + [ + 389666, + 78033, + 799 + ], + [ + 389842, + 77551, + 770 + ], + [ + 390195, + 77702, + 1233 + ], + [ + 390598, + 78193, + 849 + ], + [ + 391061, + 78331, + 1228 + ], + [ + 389964, + 78209, + 1253 + ], + [ + 391495, + 78802, + 782 + ], + [ + 391997, + 78951, + 1164 + ], + [ + 392107, + 79979, + 813 + ], + [ + 390215, + 78053, + 856 + ], + [ + 390579, + 77862, + 1213 + ], + [ + 392020, + 79280, + 897 + ], + [ + 392493, + 79443, + 831 + ], + [ + 391483, + 78482, + 1223 + ], + [ + 388178, + 80714, + 1272 + ], + [ + 389758, + 78713, + 829 + ], + [ + 388757, + 79273, + 786 + ], + [ + 388834, + 79620, + 1235 + ], + [ + 389174, + 79423, + 933 + ], + [ + 393520, + 81769, + 830 + ], + [ + 393189, + 81595, + 830 + ], + [ + 393798, + 81611, + 837 + ], + [ + 394478, + 82325, + 809 + ], + [ + 389797, + 77193, + 786 + ], + [ + 336935, + 93050, + 726 + ], + [ + 337321, + 92968, + 663 + ], + [ + 337085, + 92697, + 3503 + ], + [ + 337270, + 92609, + 617 + ], + [ + 337033, + 92381, + 3362 + ], + [ + 337227, + 92291, + 605 + ], + [ + 336632, + 92478, + 3248 + ], + [ + 336487, + 92812, + 582 + ], + [ + 395527, + 71699, + 725 + ], + [ + 393356, + 70164, + 882 + ], + [ + 394143, + 71445, + 753 + ], + [ + 393497, + 72730, + 763 + ], + [ + 393277, + 71053, + 786 + ], + [ + 392586, + 74716, + 822 + ], + [ + 392571, + 74394, + 1213 + ], + [ + 393079, + 74050, + 783 + ], + [ + 396377, + 78079, + 789 + ], + [ + 397525, + 79046, + 1152 + ], + [ + 397790, + 79262, + 782 + ], + [ + 393391, + 76415, + 773 + ], + [ + 393313, + 74978, + 782 + ], + [ + 394354, + 76300, + 764 + ], + [ + 396033, + 72240, + 734 + ], + [ + 395871, + 72203, + 4654 + ], + [ + 396708, + 72984, + 938 + ], + [ + 396512, + 73121, + 5873 + ], + [ + 396491, + 73114, + 773 + ], + [ + 391691, + 73411, + 790 + ], + [ + 391612, + 73446, + 6032 + ], + [ + 399565, + 77247, + 1028 + ], + [ + 399030, + 76719, + 1220 + ], + [ + 399205, + 76440, + 782 + ], + [ + 397919, + 78250, + 772 + ], + [ + 396873, + 78293, + 1281 + ], + [ + 397701, + 78588, + 780 + ], + [ + 399040, + 77022, + 777 + ], + [ + 398662, + 77493, + 909 + ], + [ + 397294, + 73082, + 753 + ], + [ + 396940, + 72843, + 767 + ], + [ + 396820, + 72637, + 6335 + ], + [ + 393419, + 70515, + 3783 + ], + [ + 393321, + 70772, + 6031 + ], + [ + 392119, + 73535, + 784 + ], + [ + 397377, + 73395, + 5861 + ], + [ + 397336, + 73399, + 738 + ], + [ + 394599, + 73168, + 762 + ], + [ + 395616, + 72375, + 725 + ], + [ + 396741, + 73335, + 745 + ], + [ + 397744, + 73606, + 723 + ], + [ + 396777, + 72943, + 5153 + ], + [ + 392029, + 72862, + 771 + ], + [ + 391935, + 73214, + 4601 + ], + [ + 391888, + 72857, + 4615 + ], + [ + 391891, + 72566, + 5207 + ], + [ + 393637, + 70955, + 6011 + ], + [ + 393640, + 70911, + 761 + ], + [ + 396724, + 72696, + 1702 + ], + [ + 397703, + 73278, + 756 + ], + [ + 391980, + 72501, + 754 + ], + [ + 392227, + 72030, + 751 + ], + [ + 400110, + 74900, + 834 + ], + [ + 395037, + 71517, + 734 + ], + [ + 392723, + 71370, + 764 + ], + [ + 393979, + 73276, + 1132 + ], + [ + 392992, + 73403, + 766 + ], + [ + 392074, + 73177, + 813 + ], + [ + 392774, + 73880, + 842 + ], + [ + 393573, + 73104, + 1135 + ], + [ + 393324, + 73608, + 804 + ], + [ + 394000, + 73618, + 793 + ], + [ + 394928, + 77182, + 1098 + ], + [ + 399999, + 77094, + 782 + ], + [ + 392493, + 74038, + 775 + ], + [ + 392253, + 74532, + 813 + ], + [ + 391481, + 75276, + 770 + ], + [ + 391598, + 75937, + 1187 + ], + [ + 392894, + 77062, + 777 + ], + [ + 392114, + 76431, + 1111 + ], + [ + 392538, + 76566, + 1034 + ], + [ + 394431, + 76658, + 1188 + ], + [ + 391978, + 75421, + 1080 + ], + [ + 392005, + 75769, + 816 + ], + [ + 393720, + 76604, + 795 + ], + [ + 393437, + 76755, + 776 + ], + [ + 392855, + 76744, + 828 + ], + [ + 399083, + 77354, + 778 + ], + [ + 399596, + 77558, + 873 + ], + [ + 397475, + 78725, + 1036 + ], + [ + 393589, + 73404, + 789 + ], + [ + 394450, + 77003, + 808 + ], + [ + 393792, + 76953, + 1157 + ], + [ + 393856, + 77620, + 818 + ], + [ + 394954, + 77535, + 814 + ], + [ + 392323, + 74879, + 1155 + ], + [ + 393304, + 73264, + 1161 + ], + [ + 393558, + 77448, + 1204 + ], + [ + 393814, + 77289, + 834 + ], + [ + 393484, + 77091, + 824 + ], + [ + 392484, + 76241, + 870 + ], + [ + 392342, + 75212, + 802 + ], + [ + 393248, + 77273, + 1188 + ], + [ + 397229, + 78484, + 1170 + ], + [ + 397411, + 78389, + 755 + ], + [ + 393067, + 73751, + 1177 + ], + [ + 399647, + 77890, + 974 + ], + [ + 399130, + 77699, + 796 + ], + [ + 383557, + 83744, + 724 + ], + [ + 385701, + 80568, + 1352 + ], + [ + 385938, + 80379, + 753 + ], + [ + 388102, + 77151, + 752 + ], + [ + 388444, + 76926, + 767 + ], + [ + 387737, + 77681, + 728 + ], + [ + 387636, + 77981, + 5151 + ], + [ + 388375, + 76260, + 1036 + ], + [ + 383542, + 83419, + 1114 + ], + [ + 383499, + 83076, + 1146 + ], + [ + 384285, + 82184, + 1230 + ], + [ + 387348, + 78170, + 720 + ], + [ + 387305, + 77512, + 1358 + ], + [ + 386995, + 78726, + 909 + ], + [ + 386694, + 79224, + 748 + ], + [ + 382760, + 84433, + 1159 + ], + [ + 382671, + 84619, + 782 + ], + [ + 384204, + 81810, + 798 + ], + [ + 384564, + 81378, + 1281 + ], + [ + 386694, + 78899, + 1350 + ], + [ + 386366, + 79092, + 1045 + ], + [ + 386651, + 78570, + 1362 + ], + [ + 386436, + 79446, + 1373 + ], + [ + 385610, + 79870, + 1365 + ], + [ + 385661, + 80230, + 1415 + ], + [ + 386204, + 79920, + 1331 + ], + [ + 388053, + 76488, + 1313 + ], + [ + 386986, + 78406, + 1383 + ], + [ + 387682, + 77044, + 1142 + ], + [ + 387732, + 77361, + 1256 + ], + [ + 388093, + 76822, + 1246 + ], + [ + 213699, + 104548, + 650 + ], + [ + 213478, + 104504, + 622 + ], + [ + 213858, + 104221, + 8065 + ], + [ + 213395, + 104563, + 9221 + ], + [ + 213521, + 104820, + 601 + ], + [ + 213164, + 104677, + 562 + ], + [ + 214577, + 105436, + 9640 + ], + [ + 215127, + 105110, + 3122 + ], + [ + 213929, + 105898, + 532 + ], + [ + 214663, + 105296, + 5684 + ], + [ + 214863, + 105188, + 4691 + ], + [ + 214329, + 105355, + 2479 + ], + [ + 214076, + 105339, + 8476 + ], + [ + 214326, + 105263, + 9349 + ], + [ + 213855, + 104584, + 786 + ], + [ + 214356, + 103886, + 532 + ], + [ + 213568, + 105150, + 612 + ], + [ + 213633, + 104937, + 644 + ], + [ + 214005, + 105220, + 641 + ], + [ + 214792, + 104887, + 636 + ], + [ + 213322, + 104752, + 8707 + ], + [ + 214337, + 105473, + 627 + ], + [ + 214107, + 105652, + 8524 + ], + [ + 214031, + 105563, + 630 + ], + [ + 214260, + 105010, + 681 + ], + [ + 214337, + 105027, + 739 + ], + [ + 214464, + 105375, + 3836 + ], + [ + 213527, + 104890, + 9001 + ], + [ + 214486, + 105186, + 7260 + ], + [ + 214444, + 105174, + 7769 + ], + [ + 214432, + 105082, + 8309 + ], + [ + 214641, + 105087, + 3574 + ], + [ + 214481, + 105340, + 4653 + ], + [ + 214530, + 105332, + 5412 + ], + [ + 214699, + 105082, + 753 + ], + [ + 214716, + 105103, + 4242 + ], + [ + 214553, + 105301, + 6208 + ], + [ + 214647, + 105253, + 898 + ], + [ + 215127, + 105110, + 492 + ], + [ + 282059, + 85531, + 922 + ], + [ + 281109, + 86780, + 602 + ], + [ + 282073, + 85467, + 752 + ], + [ + 282162, + 86241, + 1026 + ], + [ + 281929, + 86339, + 980 + ], + [ + 281908, + 86261, + 5187 + ], + [ + 282278, + 87215, + 828 + ], + [ + 282143, + 86971, + 7080 + ], + [ + 282243, + 86890, + 948 + ], + [ + 282009, + 87015, + 846 + ], + [ + 281854, + 86569, + 3910 + ], + [ + 282436, + 87760, + 622 + ], + [ + 283370, + 86470, + 762 + ], + [ + 281876, + 86016, + 859 + ], + [ + 282107, + 85891, + 916 + ], + [ + 281981, + 85964, + 6716 + ], + [ + 281974, + 86674, + 991 + ], + [ + 282244, + 86586, + 1503 + ], + [ + 282493, + 86434, + 1033 + ], + [ + 269192, + 177392, + 894 + ], + [ + 268952, + 177841, + 892 + ], + [ + 268906, + 177839, + 892 + ], + [ + 268996, + 177840, + 892 + ], + [ + 269041, + 177835, + 892 + ], + [ + 269084, + 177828, + 892 + ], + [ + 269128, + 177817, + 892 + ], + [ + 269170, + 177804, + 882 + ], + [ + 269211, + 177788, + 882 + ], + [ + 269251, + 177769, + 882 + ], + [ + 269290, + 177747, + 872 + ], + [ + 268988, + 177071, + 3897 + ], + [ + 269146, + 177049, + 908 + ], + [ + 269363, + 177696, + 862 + ], + [ + 269327, + 177722, + 872 + ], + [ + 269396, + 177666, + 872 + ], + [ + 269427, + 177635, + 872 + ], + [ + 269457, + 177602, + 872 + ], + [ + 269483, + 177566, + 862 + ], + [ + 269508, + 177529, + 852 + ], + [ + 269530, + 177490, + 862 + ], + [ + 269549, + 177450, + 862 + ], + [ + 269565, + 177409, + 852 + ], + [ + 269578, + 177367, + 852 + ], + [ + 269589, + 177323, + 852 + ], + [ + 269596, + 177280, + 852 + ], + [ + 268861, + 177835, + 892 + ], + [ + 269602, + 177191, + 842 + ], + [ + 269601, + 177235, + 852 + ], + [ + 269600, + 177145, + 852 + ], + [ + 269596, + 177100, + 852 + ], + [ + 269588, + 177055, + 852 + ], + [ + 269097, + 176699, + 879 + ], + [ + 268741, + 176882, + 901 + ], + [ + 269562, + 176967, + 852 + ], + [ + 269545, + 176925, + 852 + ], + [ + 269525, + 176884, + 852 + ], + [ + 269502, + 176844, + 802 + ], + [ + 269476, + 176806, + 802 + ], + [ + 269448, + 176771, + 802 + ], + [ + 269417, + 176737, + 802 + ], + [ + 269384, + 176705, + 802 + ], + [ + 269349, + 176676, + 812 + ], + [ + 269312, + 176649, + 812 + ], + [ + 269273, + 176626, + 812 + ], + [ + 269232, + 176604, + 802 + ], + [ + 269190, + 176586, + 802 + ], + [ + 269147, + 176571, + 802 + ], + [ + 269103, + 176559, + 792 + ], + [ + 269058, + 176550, + 802 + ], + [ + 269013, + 176544, + 802 + ], + [ + 268876, + 176545, + 832 + ], + [ + 268967, + 176541, + 812 + ], + [ + 268922, + 176542, + 832 + ], + [ + 268816, + 177827, + 892 + ], + [ + 268786, + 176562, + 822 + ], + [ + 268831, + 176552, + 822 + ], + [ + 268742, + 176576, + 812 + ], + [ + 268700, + 176592, + 812 + ], + [ + 268658, + 176611, + 822 + ], + [ + 268618, + 176633, + 822 + ], + [ + 268580, + 176658, + 832 + ], + [ + 268646, + 177302, + 3266 + ], + [ + 268509, + 176716, + 832 + ], + [ + 268477, + 176748, + 822 + ], + [ + 268447, + 176782, + 832 + ], + [ + 268419, + 176819, + 832 + ], + [ + 268436, + 177056, + 873 + ], + [ + 268394, + 176857, + 842 + ], + [ + 268372, + 176897, + 842 + ], + [ + 268353, + 176939, + 842 + ], + [ + 268323, + 177025, + 842 + ], + [ + 268337, + 176981, + 842 + ], + [ + 268313, + 177070, + 842 + ], + [ + 268306, + 177115, + 852 + ], + [ + 268303, + 177161, + 872 + ], + [ + 268483, + 177374, + 941 + ], + [ + 268302, + 177206, + 872 + ], + [ + 268305, + 177252, + 872 + ], + [ + 268311, + 177297, + 872 + ], + [ + 268320, + 177342, + 872 + ], + [ + 268332, + 177386, + 892 + ], + [ + 268387, + 177512, + 892 + ], + [ + 268410, + 177551, + 892 + ], + [ + 268437, + 177588, + 892 + ], + [ + 268466, + 177623, + 892 + ], + [ + 268498, + 177656, + 892 + ], + [ + 268532, + 177687, + 892 + ], + [ + 268567, + 177715, + 892 + ], + [ + 268605, + 177741, + 892 + ], + [ + 268645, + 177764, + 892 + ], + [ + 268686, + 177784, + 892 + ], + [ + 268728, + 177801, + 892 + ], + [ + 268772, + 177815, + 892 + ], + [ + 269576, + 177011, + 852 + ], + [ + 268543, + 176686, + 832 + ], + [ + 268365, + 177471, + 892 + ], + [ + 268347, + 177429, + 892 + ], + [ + 399065, + 84478, + 832 + ], + [ + 401982, + 86427, + 822 + ], + [ + 401064, + 86596, + 772 + ], + [ + 398128, + 85214, + 1304 + ], + [ + 397490, + 84708, + 842 + ], + [ + 398428, + 85375, + 832 + ], + [ + 397119, + 86969, + 1229 + ], + [ + 399014, + 88338, + 1107 + ], + [ + 396245, + 86461, + 842 + ], + [ + 399295, + 88189, + 750 + ], + [ + 400042, + 89159, + 812 + ], + [ + 400119, + 88573, + 753 + ], + [ + 401287, + 86846, + 736 + ], + [ + 400930, + 87639, + 870 + ], + [ + 397151, + 86307, + 842 + ], + [ + 397854, + 85695, + 1311 + ], + [ + 397644, + 85614, + 842 + ], + [ + 399229, + 85369, + 802 + ], + [ + 398582, + 86281, + 792 + ], + [ + 401371, + 87166, + 1327 + ], + [ + 398140, + 85539, + 860 + ], + [ + 398177, + 85853, + 809 + ], + [ + 397730, + 85012, + 838 + ], + [ + 397579, + 87145, + 811 + ], + [ + 399888, + 88253, + 772 + ], + [ + 401700, + 86667, + 1283 + ], + [ + 400540, + 88139, + 1171 + ], + [ + 400077, + 88250, + 767 + ], + [ + 398453, + 87885, + 899 + ], + [ + 360745, + 106830, + 914 + ], + [ + 370767, + 95342, + 798 + ], + [ + 371960, + 97073, + 1014 + ], + [ + 363397, + 106192, + 861 + ], + [ + 365848, + 103777, + 839 + ], + [ + 363828, + 105856, + 826 + ], + [ + 369468, + 100279, + 780 + ], + [ + 369515, + 100607, + 838 + ], + [ + 369785, + 100262, + 1126 + ], + [ + 363140, + 107192, + 953 + ], + [ + 364301, + 105518, + 965 + ], + [ + 369810, + 100627, + 837 + ], + [ + 368385, + 101448, + 1250 + ], + [ + 368397, + 101815, + 731 + ], + [ + 367956, + 101806, + 1033 + ], + [ + 369272, + 100886, + 1227 + ], + [ + 368963, + 100842, + 1096 + ], + [ + 362309, + 107151, + 966 + ], + [ + 362394, + 107827, + 909 + ], + [ + 362064, + 107469, + 1026 + ], + [ + 369558, + 100927, + 853 + ], + [ + 365678, + 104122, + 1086 + ], + [ + 365896, + 104137, + 845 + ], + [ + 367104, + 102805, + 936 + ], + [ + 367136, + 103147, + 762 + ], + [ + 366441, + 103491, + 1056 + ], + [ + 368665, + 101151, + 787 + ], + [ + 368992, + 101210, + 822 + ], + [ + 365460, + 104784, + 1039 + ], + [ + 365936, + 104480, + 779 + ], + [ + 365111, + 105141, + 775 + ], + [ + 368032, + 102461, + 887 + ], + [ + 370167, + 100310, + 1196 + ], + [ + 372713, + 97751, + 1067 + ], + [ + 372137, + 98429, + 988 + ], + [ + 371699, + 98731, + 805 + ], + [ + 372438, + 97741, + 989 + ], + [ + 372469, + 98063, + 812 + ], + [ + 371910, + 96731, + 951 + ], + [ + 371384, + 96371, + 768 + ], + [ + 371209, + 98714, + 768 + ], + [ + 370868, + 99366, + 809 + ], + [ + 370496, + 99703, + 1134 + ], + [ + 366190, + 104131, + 972 + ], + [ + 366470, + 103829, + 831 + ], + [ + 368719, + 101459, + 967 + ], + [ + 363092, + 106874, + 874 + ], + [ + 360786, + 107151, + 883 + ], + [ + 367974, + 102130, + 691 + ], + [ + 367541, + 102455, + 1112 + ], + [ + 364685, + 105128, + 841 + ], + [ + 366143, + 103773, + 988 + ], + [ + 370110, + 99998, + 982 + ], + [ + 362853, + 107189, + 818 + ], + [ + 363058, + 106532, + 1025 + ], + [ + 210199, + 122073, + 5755 + ], + [ + 210118, + 122142, + 5683 + ], + [ + 210094, + 122011, + 822 + ], + [ + 210302, + 121824, + 1252 + ], + [ + 210332, + 121958, + 4626 + ], + [ + 210264, + 121948, + 3955 + ], + [ + 210623, + 120937, + 402 + ], + [ + 210101, + 121391, + 6934 + ], + [ + 209869, + 121533, + 645 + ], + [ + 210451, + 122563, + 864 + ], + [ + 211422, + 122158, + 452 + ], + [ + 210200, + 122974, + 492 + ], + [ + 210462, + 121183, + 6373 + ], + [ + 211296, + 122109, + 512 + ], + [ + 210402, + 122205, + 6114 + ], + [ + 210310, + 122150, + 1215 + ], + [ + 210415, + 121984, + 5234 + ], + [ + 211335, + 122111, + 5339 + ], + [ + 210851, + 121699, + 4802 + ], + [ + 210888, + 121358, + 525 + ], + [ + 210204, + 121436, + 694 + ], + [ + 210491, + 121233, + 648 + ], + [ + 210665, + 121314, + 678 + ], + [ + 210652, + 121633, + 3022 + ], + [ + 210465, + 121569, + 5654 + ], + [ + 210810, + 121379, + 4854 + ], + [ + 210937, + 122029, + 5369 + ], + [ + 210855, + 121922, + 831 + ], + [ + 210475, + 121629, + 906 + ], + [ + 210354, + 121764, + 2871 + ], + [ + 210250, + 121727, + 2204 + ], + [ + 210470, + 121913, + 5060 + ], + [ + 210360, + 122468, + 6224 + ], + [ + 210628, + 122192, + 6723 + ], + [ + 210073, + 121884, + 2627 + ], + [ + 209951, + 121902, + 5490 + ], + [ + 210145, + 122341, + 696 + ], + [ + 210171, + 122352, + 5775 + ], + [ + 210196, + 122686, + 588 + ], + [ + 210145, + 122180, + 3352 + ], + [ + 209478, + 121842, + 597 + ], + [ + 210194, + 122174, + 4050 + ], + [ + 209811, + 121802, + 707 + ], + [ + 210043, + 121822, + 5259 + ], + [ + 210142, + 121731, + 786 + ], + [ + 210142, + 121891, + 3367 + ], + [ + 209394, + 121742, + 452 + ], + [ + 210779, + 122044, + 3566 + ], + [ + 210614, + 121652, + 2251 + ], + [ + 210558, + 122008, + 6599 + ], + [ + 210469, + 121982, + 5943 + ], + [ + 210414, + 121768, + 3541 + ], + [ + 401742, + 78282, + 792 + ], + [ + 401565, + 80726, + 903 + ], + [ + 400919, + 81569, + 812 + ], + [ + 401590, + 80635, + 802 + ], + [ + 402662, + 79286, + 1265 + ], + [ + 403695, + 80027, + 1229 + ], + [ + 404765, + 81454, + 787 + ], + [ + 405315, + 80849, + 792 + ], + [ + 403477, + 83407, + 832 + ], + [ + 404708, + 80784, + 1237 + ], + [ + 405122, + 80984, + 1233 + ], + [ + 401791, + 80294, + 1264 + ], + [ + 401178, + 80160, + 819 + ], + [ + 401468, + 80045, + 795 + ], + [ + 400575, + 79906, + 812 + ], + [ + 401551, + 80415, + 1292 + ], + [ + 402159, + 79039, + 796 + ], + [ + 404211, + 80559, + 856 + ], + [ + 402118, + 78722, + 805 + ], + [ + 398222, + 86213, + 771 + ], + [ + 397484, + 86169, + 1292 + ], + [ + 397859, + 86004, + 807 + ], + [ + 367571, + 74496, + 596 + ], + [ + 367724, + 73938, + 3732 + ], + [ + 367952, + 74137, + 564 + ], + [ + 367742, + 74244, + 3412 + ], + [ + 216549, + 118545, + 502 + ], + [ + 216624, + 118345, + 551 + ], + [ + 217042, + 118167, + 630 + ], + [ + 216112, + 118437, + 530 + ], + [ + 216271, + 118087, + 8264 + ], + [ + 216244, + 118431, + 562 + ], + [ + 215895, + 118165, + 561 + ], + [ + 216332, + 117629, + 614 + ], + [ + 216089, + 117800, + 6307 + ], + [ + 216006, + 117511, + 5712 + ], + [ + 216475, + 117515, + 7306 + ], + [ + 216466, + 117858, + 681 + ], + [ + 216517, + 117875, + 7196 + ], + [ + 216701, + 117910, + 606 + ], + [ + 216340, + 117878, + 4694 + ], + [ + 216881, + 117646, + 516 + ], + [ + 217370, + 118275, + 422 + ], + [ + 216259, + 118063, + 627 + ], + [ + 216348, + 117990, + 2963 + ], + [ + 216824, + 118004, + 5344 + ], + [ + 216159, + 118799, + 495 + ], + [ + 216486, + 118597, + 848 + ], + [ + 216126, + 119072, + 442 + ], + [ + 215934, + 117820, + 567 + ], + [ + 216456, + 117195, + 537 + ], + [ + 216411, + 117534, + 538 + ], + [ + 216808, + 117462, + 538 + ], + [ + 215331, + 117856, + 382 + ], + [ + 215817, + 118419, + 6261 + ], + [ + 215975, + 117450, + 532 + ], + [ + 216567, + 117047, + 372 + ], + [ + 215931, + 118546, + 551 + ], + [ + 216099, + 118552, + 5013 + ], + [ + 402764, + 87662, + 1245 + ], + [ + 401092, + 89905, + 832 + ], + [ + 403148, + 87011, + 822 + ], + [ + 402020, + 89363, + 767 + ], + [ + 401676, + 89522, + 1230 + ], + [ + 403316, + 91148, + 6179 + ], + [ + 403695, + 91365, + 7450 + ], + [ + 403469, + 91460, + 7767 + ], + [ + 404247, + 87846, + 787 + ], + [ + 405784, + 89149, + 789 + ], + [ + 403652, + 91695, + 6238 + ], + [ + 404848, + 92573, + 772 + ], + [ + 406904, + 89679, + 782 + ], + [ + 402437, + 90688, + 4175 + ], + [ + 402846, + 90486, + 784 + ], + [ + 402628, + 90912, + 1211 + ], + [ + 403879, + 91581, + 6368 + ], + [ + 404285, + 91671, + 998 + ], + [ + 404196, + 91772, + 5694 + ], + [ + 403864, + 91225, + 6816 + ], + [ + 402972, + 90588, + 6693 + ], + [ + 403087, + 91226, + 7133 + ], + [ + 404263, + 92125, + 5980 + ], + [ + 403805, + 91477, + 770 + ], + [ + 401271, + 89998, + 1262 + ], + [ + 403142, + 90823, + 4325 + ], + [ + 404344, + 92030, + 1155 + ], + [ + 402512, + 90261, + 786 + ], + [ + 402159, + 90360, + 855 + ], + [ + 401753, + 90166, + 1106 + ], + [ + 406235, + 89384, + 1245 + ], + [ + 406499, + 89602, + 801 + ], + [ + 402984, + 87584, + 1241 + ], + [ + 402992, + 87898, + 780 + ], + [ + 402568, + 88131, + 1252 + ], + [ + 403253, + 87095, + 1167 + ], + [ + 403274, + 87452, + 798 + ], + [ + 402581, + 88487, + 764 + ], + [ + 401685, + 89837, + 760 + ], + [ + 402799, + 88007, + 1094 + ], + [ + 313061, + 45423, + 662 + ], + [ + 313690, + 46863, + 632 + ], + [ + 313067, + 47103, + 722 + ], + [ + 311994, + 46696, + 706 + ], + [ + 312248, + 47460, + 582 + ], + [ + 311687, + 46024, + 612 + ], + [ + 271247, + 68827, + 1167 + ], + [ + 271725, + 68603, + 322 + ], + [ + 270328, + 69414, + 312 + ], + [ + 270242, + 68456, + 453 + ], + [ + 269612, + 68124, + 382 + ], + [ + 270159, + 67810, + 512 + ], + [ + 270269, + 68180, + 1319 + ], + [ + 271537, + 68627, + 372 + ], + [ + 270732, + 68305, + 595 + ], + [ + 270811, + 68951, + 487 + ], + [ + 271096, + 68100, + 436 + ], + [ + 271203, + 68505, + 1143 + ], + [ + 270679, + 67958, + 520 + ], + [ + 270628, + 67611, + 450 + ], + [ + 270962, + 67321, + 372 + ], + [ + 293999, + 55898, + 480 + ], + [ + 295381, + 55550, + 342 + ], + [ + 294017, + 56283, + 332 + ], + [ + 293305, + 54920, + 392 + ], + [ + 294624, + 54209, + 422 + ], + [ + 300527, + 52414, + 554 + ], + [ + 300866, + 52327, + 550 + ], + [ + 300012, + 53061, + 442 + ], + [ + 299761, + 51879, + 560 + ], + [ + 300144, + 52142, + 612 + ], + [ + 300390, + 51371, + 579 + ], + [ + 300123, + 52001, + 5213 + ], + [ + 300485, + 52058, + 619 + ], + [ + 300845, + 51718, + 1346 + ], + [ + 299312, + 51705, + 462 + ], + [ + 300829, + 51998, + 642 + ], + [ + 300489, + 52253, + 5062 + ], + [ + 301369, + 52331, + 422 + ], + [ + 300590, + 51024, + 492 + ], + [ + 367050, + 91544, + 962 + ], + [ + 366965, + 92249, + 962 + ], + [ + 366339, + 86663, + 962 + ], + [ + 366578, + 87332, + 952 + ], + [ + 364959, + 84186, + 942 + ], + [ + 365365, + 84770, + 952 + ], + [ + 362979, + 82156, + 952 + ], + [ + 363524, + 82614, + 952 + ], + [ + 360538, + 80715, + 952 + ], + [ + 361183, + 81014, + 952 + ], + [ + 357804, + 79962, + 952 + ], + [ + 358505, + 80082, + 962 + ], + [ + 354839, + 79992, + 942 + ], + [ + 355578, + 79907, + 952 + ], + [ + 351997, + 80834, + 962 + ], + [ + 352684, + 80550, + 952 + ], + [ + 349495, + 82426, + 952 + ], + [ + 350078, + 81963, + 952 + ], + [ + 348849, + 98514, + 994 + ], + [ + 351234, + 101610, + 982 + ], + [ + 346028, + 93837, + 952 + ], + [ + 346072, + 93977, + 952 + ], + [ + 343852, + 94242, + 952 + ], + [ + 345986, + 93697, + 962 + ], + [ + 345946, + 93556, + 952 + ], + [ + 345907, + 93415, + 962 + ], + [ + 345870, + 93273, + 962 + ], + [ + 345835, + 93131, + 962 + ], + [ + 343601, + 93452, + 872 + ], + [ + 345801, + 92988, + 932 + ], + [ + 346284, + 93925, + 962 + ], + [ + 344919, + 96485, + 952 + ], + [ + 344156, + 95014, + 962 + ], + [ + 344512, + 95763, + 952 + ], + [ + 345374, + 97178, + 952 + ], + [ + 345876, + 97839, + 952 + ], + [ + 346421, + 98463, + 962 + ], + [ + 357004, + 102151, + 1042 + ], + [ + 348295, + 100094, + 982 + ], + [ + 348989, + 100547, + 982 + ], + [ + 349713, + 100953, + 982 + ], + [ + 350462, + 101307, + 982 + ], + [ + 352025, + 101859, + 992 + ], + [ + 352831, + 102054, + 992 + ], + [ + 353649, + 102193, + 992 + ], + [ + 354487, + 102271, + 1002 + ], + [ + 355328, + 102291, + 1032 + ], + [ + 356168, + 102251, + 1052 + ], + [ + 345746, + 90981, + 952 + ], + [ + 345743, + 90238, + 952 + ], + [ + 345881, + 92259, + 962 + ], + [ + 345820, + 91835, + 962 + ], + [ + 347634, + 99593, + 972 + ], + [ + 346160, + 93515, + 962 + ], + [ + 346051, + 93100, + 962 + ], + [ + 345958, + 92681, + 962 + ], + [ + 345775, + 91409, + 952 + ], + [ + 345791, + 89496, + 952 + ], + [ + 345891, + 88759, + 952 + ], + [ + 346042, + 88031, + 962 + ], + [ + 346243, + 87315, + 962 + ], + [ + 346493, + 86615, + 962 + ], + [ + 346792, + 85934, + 962 + ], + [ + 347137, + 85276, + 962 + ], + [ + 347527, + 84643, + 962 + ], + [ + 347960, + 84038, + 962 + ], + [ + 348434, + 83466, + 962 + ], + [ + 348946, + 82927, + 952 + ], + [ + 350691, + 81543, + 962 + ], + [ + 351331, + 81166, + 962 + ], + [ + 353389, + 80314, + 942 + ], + [ + 354108, + 80128, + 942 + ], + [ + 356321, + 79874, + 952 + ], + [ + 357064, + 79892, + 952 + ], + [ + 359196, + 80248, + 962 + ], + [ + 359874, + 80459, + 962 + ], + [ + 361806, + 81355, + 962 + ], + [ + 362406, + 81736, + 962 + ], + [ + 364036, + 83106, + 942 + ], + [ + 364516, + 83631, + 952 + ], + [ + 365731, + 85379, + 932 + ], + [ + 366056, + 86011, + 962 + ], + [ + 366772, + 88016, + 952 + ], + [ + 366921, + 88711, + 962 + ], + [ + 367024, + 89415, + 962 + ], + [ + 367079, + 90123, + 962 + ], + [ + 367088, + 90834, + 962 + ], + [ + 366833, + 92948, + 962 + ], + [ + 366621, + 93762, + 982 + ], + [ + 366353, + 94560, + 982 + ], + [ + 366029, + 95336, + 982 + ], + [ + 365651, + 96088, + 992 + ], + [ + 365221, + 96811, + 992 + ], + [ + 364741, + 97502, + 982 + ], + [ + 364214, + 98158, + 982 + ], + [ + 363642, + 98775, + 992 + ], + [ + 363028, + 99350, + 992 + ], + [ + 362374, + 99880, + 992 + ], + [ + 361686, + 100363, + 992 + ], + [ + 360964, + 100797, + 982 + ], + [ + 360214, + 101178, + 1012 + ], + [ + 359440, + 101506, + 1022 + ], + [ + 358643, + 101778, + 1042 + ], + [ + 357830, + 101994, + 1042 + ], + [ + 347008, + 99049, + 962 + ], + [ + 380704, + 89760, + 1836 + ], + [ + 380973, + 89692, + 770 + ], + [ + 381034, + 90037, + 989 + ], + [ + 383485, + 88050, + 841 + ], + [ + 382694, + 86537, + 788 + ], + [ + 383002, + 86453, + 802 + ], + [ + 383004, + 86233, + 5753 + ], + [ + 387775, + 89848, + 829 + ], + [ + 388171, + 90319, + 835 + ], + [ + 387853, + 90164, + 1336 + ], + [ + 388771, + 92152, + 836 + ], + [ + 393310, + 89028, + 873 + ], + [ + 392922, + 89232, + 1415 + ], + [ + 392852, + 88913, + 1034 + ], + [ + 391537, + 90288, + 887 + ], + [ + 391930, + 90452, + 1883 + ], + [ + 391579, + 90625, + 848 + ], + [ + 396959, + 91642, + 2711 + ], + [ + 397445, + 91799, + 2873 + ], + [ + 397815, + 92343, + 1001 + ], + [ + 402725, + 96911, + 8852 + ], + [ + 398305, + 92520, + 1002 + ], + [ + 398443, + 92855, + 2321 + ], + [ + 398060, + 92763, + 1242 + ], + [ + 395722, + 90724, + 2670 + ], + [ + 393914, + 89211, + 2102 + ], + [ + 399088, + 93743, + 3686 + ], + [ + 400650, + 94844, + 7398 + ], + [ + 400800, + 95158, + 8916 + ], + [ + 400506, + 94938, + 9801 + ], + [ + 403847, + 97515, + 1795 + ], + [ + 404104, + 97727, + 1382 + ], + [ + 403685, + 97596, + 8911 + ], + [ + 404554, + 97197, + 653 + ], + [ + 405311, + 95926, + 680 + ], + [ + 400322, + 94622, + 7809 + ], + [ + 398563, + 90707, + 1959 + ], + [ + 398453, + 90390, + 985 + ], + [ + 398937, + 90243, + 3330 + ], + [ + 394715, + 89823, + 2657 + ], + [ + 394664, + 89482, + 2584 + ], + [ + 395629, + 90077, + 2551 + ], + [ + 401759, + 93099, + 9080 + ], + [ + 401306, + 92896, + 9385 + ], + [ + 401595, + 92797, + 7327 + ], + [ + 402181, + 93969, + 6697 + ], + [ + 402087, + 93642, + 5967 + ], + [ + 402340, + 93523, + 3124 + ], + [ + 405272, + 95215, + 1459 + ], + [ + 405355, + 95549, + 2012 + ], + [ + 404765, + 95402, + 777 + ], + [ + 403000, + 92988, + 7860 + ], + [ + 403157, + 92830, + 785 + ], + [ + 403210, + 93185, + 877 + ], + [ + 403063, + 97075, + 1086 + ], + [ + 402179, + 96393, + 8847 + ], + [ + 403222, + 95613, + 818 + ], + [ + 402890, + 95807, + 6628 + ], + [ + 402839, + 95471, + 6536 + ], + [ + 403250, + 93505, + 836 + ], + [ + 403002, + 93659, + 6634 + ], + [ + 403243, + 93235, + 5571 + ], + [ + 402107, + 96059, + 8458 + ], + [ + 402384, + 96300, + 5188 + ], + [ + 403131, + 95004, + 5931 + ], + [ + 403182, + 95293, + 840 + ], + [ + 402919, + 95123, + 8318 + ], + [ + 405178, + 94890, + 741 + ], + [ + 403711, + 95063, + 790 + ], + [ + 403803, + 93944, + 912 + ], + [ + 402592, + 96560, + 994 + ], + [ + 403259, + 96342, + 5238 + ], + [ + 403028, + 96760, + 1170 + ], + [ + 403487, + 97311, + 1400 + ], + [ + 402428, + 92166, + 6903 + ], + [ + 403378, + 92888, + 8147 + ], + [ + 403210, + 95327, + 6445 + ], + [ + 402848, + 92687, + 6261 + ], + [ + 402676, + 93381, + 2523 + ], + [ + 403427, + 94831, + 866 + ], + [ + 403094, + 94619, + 865 + ], + [ + 403340, + 94158, + 903 + ], + [ + 403471, + 95188, + 826 + ], + [ + 403661, + 96509, + 1043 + ], + [ + 403368, + 96617, + 1016 + ], + [ + 403323, + 96285, + 999 + ], + [ + 399689, + 92796, + 6030 + ], + [ + 399148, + 92915, + 1319 + ], + [ + 399384, + 92485, + 2315 + ], + [ + 402722, + 93824, + 7969 + ], + [ + 403491, + 93383, + 830 + ], + [ + 403886, + 96419, + 756 + ], + [ + 404424, + 96179, + 716 + ], + [ + 404160, + 96642, + 916 + ], + [ + 404020, + 95632, + 830 + ], + [ + 403559, + 95863, + 822 + ], + [ + 403515, + 95528, + 801 + ], + [ + 405706, + 95098, + 1419 + ], + [ + 403269, + 95945, + 877 + ], + [ + 403336, + 95648, + 7624 + ], + [ + 402277, + 95663, + 4878 + ], + [ + 402130, + 96028, + 2120 + ], + [ + 402082, + 95728, + 8724 + ], + [ + 402622, + 93135, + 7839 + ], + [ + 402281, + 93309, + 9325 + ], + [ + 402202, + 92962, + 8868 + ], + [ + 399464, + 90692, + 3049 + ], + [ + 399213, + 90804, + 3029 + ], + [ + 399194, + 90471, + 3377 + ], + [ + 399402, + 93566, + 3698 + ], + [ + 399791, + 93439, + 6269 + ], + [ + 399841, + 93780, + 6347 + ], + [ + 400562, + 91272, + 1943 + ], + [ + 400515, + 90924, + 1943 + ], + [ + 401110, + 91457, + 2999 + ], + [ + 402530, + 92827, + 7116 + ], + [ + 403444, + 93035, + 806 + ], + [ + 402405, + 92481, + 5981 + ], + [ + 401994, + 92311, + 7150 + ], + [ + 402927, + 96066, + 1036 + ], + [ + 406072, + 94659, + 761 + ], + [ + 405664, + 94761, + 1450 + ], + [ + 382572, + 86358, + 5060 + ], + [ + 383829, + 88606, + 875 + ], + [ + 384191, + 88449, + 853 + ], + [ + 384235, + 88791, + 847 + ], + [ + 401792, + 93425, + 8936 + ], + [ + 401631, + 93763, + 6050 + ], + [ + 401409, + 93555, + 9602 + ], + [ + 402150, + 92627, + 8759 + ], + [ + 403050, + 94257, + 921 + ], + [ + 402982, + 94366, + 5008 + ], + [ + 402713, + 94164, + 7205 + ], + [ + 400857, + 93369, + 7651 + ], + [ + 400179, + 93230, + 3777 + ], + [ + 400911, + 93049, + 8995 + ], + [ + 403047, + 94011, + 6614 + ], + [ + 401983, + 95094, + 8513 + ], + [ + 401425, + 95224, + 6704 + ], + [ + 401533, + 94892, + 8851 + ], + [ + 402359, + 94263, + 8647 + ], + [ + 401856, + 94411, + 7990 + ], + [ + 401913, + 94085, + 9415 + ], + [ + 402888, + 94788, + 8501 + ], + [ + 403096, + 94683, + 6029 + ], + [ + 402031, + 95420, + 8573 + ], + [ + 401663, + 95861, + 8863 + ], + [ + 401475, + 95553, + 6809 + ], + [ + 382705, + 89636, + 797 + ], + [ + 380539, + 89085, + 768 + ], + [ + 383317, + 88797, + 870 + ], + [ + 383256, + 86343, + 809 + ], + [ + 403550, + 93744, + 986 + ], + [ + 403321, + 93903, + 5445 + ], + [ + 403275, + 93549, + 5440 + ], + [ + 402551, + 96239, + 1031 + ], + [ + 402425, + 94611, + 8916 + ], + [ + 400959, + 94055, + 7803 + ], + [ + 401322, + 94250, + 7084 + ], + [ + 401012, + 94380, + 7941 + ], + [ + 402880, + 94456, + 9022 + ], + [ + 383870, + 88920, + 867 + ], + [ + 382954, + 86095, + 790 + ], + [ + 382867, + 85445, + 783 + ], + [ + 382309, + 86648, + 797 + ], + [ + 398014, + 91653, + 5090 + ], + [ + 397769, + 92001, + 997 + ], + [ + 398316, + 91507, + 3047 + ], + [ + 398754, + 91402, + 3341 + ], + [ + 398625, + 91738, + 890 + ], + [ + 403718, + 93268, + 968 + ], + [ + 403758, + 93600, + 918 + ], + [ + 403609, + 93799, + 5360 + ], + [ + 384633, + 88332, + 976 + ], + [ + 403424, + 94916, + 4995 + ], + [ + 397967, + 89175, + 2488 + ], + [ + 403660, + 92932, + 791 + ], + [ + 404538, + 93696, + 768 + ], + [ + 405050, + 93905, + 786 + ], + [ + 404984, + 96354, + 2100 + ], + [ + 404512, + 96853, + 703 + ], + [ + 399829, + 90888, + 3224 + ], + [ + 400075, + 91077, + 940 + ], + [ + 399716, + 91256, + 955 + ], + [ + 399882, + 91899, + 2084 + ], + [ + 400170, + 91773, + 975 + ], + [ + 400350, + 92082, + 2920 + ], + [ + 400043, + 90746, + 1100 + ], + [ + 400706, + 91942, + 2724 + ], + [ + 400704, + 91597, + 3333 + ], + [ + 401259, + 91792, + 4459 + ], + [ + 397823, + 91312, + 3030 + ], + [ + 400130, + 91417, + 1072 + ], + [ + 399300, + 92251, + 4704 + ], + [ + 399547, + 92333, + 1167 + ], + [ + 400157, + 92871, + 4130 + ], + [ + 400392, + 92411, + 2905 + ], + [ + 400845, + 92698, + 8731 + ], + [ + 399356, + 92146, + 2546 + ], + [ + 399527, + 93898, + 4858 + ], + [ + 399814, + 94109, + 5359 + ], + [ + 399706, + 92683, + 2746 + ], + [ + 386400, + 89117, + 820 + ], + [ + 386844, + 89260, + 1226 + ], + [ + 386520, + 89789, + 1266 + ], + [ + 400032, + 92561, + 2962 + ], + [ + 401203, + 95004, + 9461 + ], + [ + 403409, + 96958, + 970 + ], + [ + 403730, + 97191, + 742 + ], + [ + 398575, + 93205, + 3526 + ], + [ + 398825, + 93065, + 1243 + ], + [ + 398864, + 93407, + 1150 + ], + [ + 399863, + 93015, + 4328 + ], + [ + 400015, + 93334, + 5883 + ], + [ + 404021, + 97406, + 817 + ], + [ + 404265, + 96962, + 1791 + ], + [ + 401381, + 93881, + 8604 + ], + [ + 400977, + 93715, + 8681 + ], + [ + 401176, + 93226, + 6935 + ], + [ + 404084, + 93476, + 970 + ], + [ + 399064, + 91224, + 3300 + ], + [ + 398720, + 91061, + 3500 + ], + [ + 399915, + 91561, + 3185 + ], + [ + 397987, + 92690, + 2777 + ], + [ + 398130, + 91196, + 1004 + ], + [ + 398880, + 89913, + 3147 + ], + [ + 399406, + 90336, + 2898 + ], + [ + 401369, + 92117, + 5403 + ], + [ + 401892, + 91971, + 6334 + ], + [ + 401623, + 92440, + 8402 + ], + [ + 400609, + 94510, + 7447 + ], + [ + 402401, + 95295, + 7303 + ], + [ + 399569, + 93131, + 3709 + ], + [ + 399171, + 92579, + 2278 + ], + [ + 399916, + 92209, + 1986 + ], + [ + 401118, + 92273, + 7885 + ], + [ + 401167, + 92581, + 8012 + ], + [ + 400044, + 93979, + 5083 + ], + [ + 399337, + 93241, + 3385 + ], + [ + 398256, + 92190, + 931 + ], + [ + 398811, + 92382, + 2319 + ], + [ + 405702, + 95448, + 689 + ], + [ + 397743, + 90667, + 3111 + ], + [ + 397710, + 90338, + 3267 + ], + [ + 398195, + 90521, + 3197 + ], + [ + 398255, + 90858, + 3401 + ], + [ + 397088, + 90138, + 946 + ], + [ + 397188, + 89809, + 2969 + ], + [ + 399564, + 91339, + 3253 + ], + [ + 399504, + 92018, + 1147 + ], + [ + 399542, + 91654, + 2346 + ], + [ + 399503, + 91009, + 3005 + ], + [ + 399073, + 91583, + 2759 + ], + [ + 403972, + 97064, + 758 + ], + [ + 382384, + 90440, + 689 + ], + [ + 382943, + 90313, + 2913 + ], + [ + 382797, + 89994, + 1426 + ], + [ + 383182, + 90205, + 809 + ], + [ + 399071, + 90553, + 4653 + ], + [ + 401402, + 94582, + 7580 + ], + [ + 401197, + 95353, + 8733 + ], + [ + 399133, + 90149, + 3116 + ], + [ + 398559, + 90031, + 3159 + ], + [ + 398464, + 89716, + 2413 + ], + [ + 398094, + 89849, + 3013 + ], + [ + 397946, + 89490, + 1597 + ], + [ + 398912, + 92719, + 3116 + ], + [ + 398766, + 92052, + 2295 + ], + [ + 400099, + 93643, + 6491 + ], + [ + 391627, + 91824, + 2709 + ], + [ + 390375, + 93260, + 2726 + ], + [ + 390611, + 92385, + 2445 + ], + [ + 390315, + 92929, + 2487 + ], + [ + 398321, + 91844, + 2497 + ], + [ + 399163, + 91919, + 3397 + ], + [ + 396880, + 90943, + 2891 + ], + [ + 397325, + 90792, + 3063 + ], + [ + 397372, + 91130, + 3091 + ], + [ + 381469, + 90278, + 1012 + ], + [ + 389716, + 92466, + 986 + ], + [ + 390156, + 92593, + 862 + ], + [ + 390111, + 92259, + 853 + ], + [ + 396727, + 89937, + 2627 + ], + [ + 397595, + 89646, + 2935 + ], + [ + 396777, + 90271, + 2707 + ], + [ + 390814, + 91843, + 849 + ], + [ + 389196, + 91962, + 983 + ], + [ + 383163, + 89887, + 1121 + ], + [ + 383689, + 89380, + 1246 + ], + [ + 383608, + 88371, + 1980 + ], + [ + 396186, + 90080, + 849 + ], + [ + 396342, + 90415, + 2409 + ], + [ + 397212, + 90459, + 2088 + ], + [ + 403598, + 96180, + 775 + ], + [ + 383400, + 89472, + 792 + ], + [ + 383614, + 89021, + 860 + ], + [ + 387690, + 91004, + 1619 + ], + [ + 388435, + 91670, + 2040 + ], + [ + 399254, + 91118, + 3014 + ], + [ + 401907, + 94762, + 8059 + ], + [ + 402430, + 94930, + 8405 + ], + [ + 397498, + 88974, + 2819 + ], + [ + 383781, + 88246, + 872 + ], + [ + 400469, + 93879, + 6653 + ], + [ + 400594, + 94178, + 7845 + ], + [ + 400212, + 94305, + 6842 + ], + [ + 400404, + 93549, + 6361 + ], + [ + 404940, + 96036, + 2078 + ], + [ + 404824, + 95718, + 1032 + ], + [ + 404050, + 95944, + 658 + ], + [ + 380187, + 89173, + 1167 + ], + [ + 396811, + 90611, + 2534 + ], + [ + 399303, + 91786, + 2455 + ], + [ + 397054, + 89110, + 2385 + ], + [ + 387590, + 90665, + 826 + ], + [ + 387284, + 90491, + 873 + ], + [ + 387570, + 90307, + 1222 + ], + [ + 387404, + 90821, + 1947 + ], + [ + 396560, + 89622, + 862 + ], + [ + 399622, + 90549, + 957 + ], + [ + 392764, + 90426, + 2630 + ], + [ + 392022, + 90786, + 2550 + ], + [ + 392310, + 90309, + 2343 + ], + [ + 391623, + 90959, + 847 + ], + [ + 391407, + 91177, + 822 + ], + [ + 391573, + 91487, + 2576 + ], + [ + 391120, + 91344, + 857 + ], + [ + 392711, + 90067, + 2558 + ], + [ + 392934, + 89557, + 976 + ], + [ + 393481, + 89388, + 2605 + ], + [ + 392793, + 88555, + 860 + ], + [ + 392487, + 89075, + 1249 + ], + [ + 392068, + 89288, + 849 + ], + [ + 388261, + 90998, + 841 + ], + [ + 388685, + 91482, + 880 + ], + [ + 392190, + 89966, + 1292 + ], + [ + 393740, + 88854, + 842 + ], + [ + 382346, + 90098, + 794 + ], + [ + 381886, + 90211, + 789 + ], + [ + 380587, + 89429, + 799 + ], + [ + 391273, + 91652, + 2445 + ], + [ + 393911, + 89188, + 2635 + ], + [ + 394340, + 89322, + 2643 + ], + [ + 393222, + 88354, + 891 + ], + [ + 387912, + 90839, + 911 + ], + [ + 391844, + 90138, + 1264 + ], + [ + 404292, + 97628, + 951 + ], + [ + 384058, + 89268, + 2857 + ], + [ + 389233, + 92282, + 904 + ], + [ + 388026, + 91193, + 1847 + ], + [ + 386949, + 89969, + 1384 + ], + [ + 387173, + 89469, + 1217 + ], + [ + 386352, + 88758, + 819 + ], + [ + 399317, + 91475, + 3251 + ], + [ + 395937, + 90226, + 2481 + ], + [ + 387531, + 89991, + 1265 + ], + [ + 396441, + 91113, + 2501 + ], + [ + 396399, + 90755, + 2575 + ], + [ + 392590, + 89748, + 1455 + ], + [ + 385097, + 88543, + 804 + ], + [ + 386079, + 89584, + 1427 + ], + [ + 385994, + 89267, + 812 + ], + [ + 385950, + 88934, + 814 + ], + [ + 386620, + 90109, + 2080 + ], + [ + 381988, + 90864, + 1018 + ], + [ + 387872, + 90522, + 937 + ], + [ + 388765, + 91799, + 1409 + ], + [ + 386976, + 90298, + 1139 + ], + [ + 392141, + 89609, + 1274 + ], + [ + 385574, + 89063, + 1160 + ], + [ + 391794, + 89805, + 1172 + ], + [ + 403851, + 96084, + 877 + ], + [ + 406723, + 82661, + 792 + ], + [ + 409308, + 84519, + 802 + ], + [ + 408170, + 86102, + 792 + ], + [ + 405585, + 84244, + 792 + ], + [ + 366230, + 102122, + 634 + ], + [ + 366199, + 101802, + 798 + ], + [ + 365854, + 101782, + 620 + ], + [ + 251774, + 80564, + 339 + ], + [ + 251938, + 80455, + 352 + ], + [ + 250654, + 81315, + 962 + ], + [ + 251042, + 80377, + 509 + ], + [ + 251173, + 80430, + 9281 + ], + [ + 251135, + 80468, + 499 + ], + [ + 251350, + 80299, + 5637 + ], + [ + 251105, + 80129, + 5358 + ], + [ + 251572, + 79994, + 6791 + ], + [ + 251391, + 80016, + 439 + ], + [ + 251531, + 79909, + 7665 + ], + [ + 251396, + 80652, + 462 + ], + [ + 251137, + 80652, + 5249 + ], + [ + 251205, + 80558, + 7612 + ], + [ + 251057, + 80630, + 4619 + ], + [ + 250466, + 80638, + 5055 + ], + [ + 250349, + 80479, + 6184 + ], + [ + 250617, + 80520, + 8823 + ], + [ + 251036, + 79763, + 452 + ], + [ + 251102, + 79304, + 382 + ], + [ + 251341, + 79653, + 425 + ], + [ + 251070, + 79886, + 8845 + ], + [ + 251423, + 79841, + 473 + ], + [ + 250976, + 80299, + 8961 + ], + [ + 251087, + 80124, + 472 + ], + [ + 250649, + 80571, + 490 + ], + [ + 250780, + 80245, + 485 + ], + [ + 251531, + 80413, + 6041 + ], + [ + 251730, + 80203, + 381 + ], + [ + 250469, + 80358, + 463 + ], + [ + 251027, + 79962, + 493 + ], + [ + 251004, + 80686, + 3048 + ], + [ + 251011, + 80664, + 2869 + ], + [ + 251481, + 80695, + 421 + ], + [ + 250558, + 81038, + 421 + ], + [ + 250651, + 81063, + 473 + ], + [ + 251359, + 80205, + 7289 + ], + [ + 251374, + 80115, + 8909 + ], + [ + 251399, + 80250, + 451 + ], + [ + 250309, + 80309, + 507 + ], + [ + 249917, + 80063, + 422 + ], + [ + 251435, + 80337, + 438 + ], + [ + 250596, + 80913, + 8845 + ], + [ + 250866, + 80898, + 442 + ], + [ + 250514, + 80705, + 430 + ], + [ + 250024, + 80196, + 459 + ], + [ + 250717, + 81263, + 8888 + ], + [ + 250998, + 80833, + 576 + ], + [ + 250949, + 80971, + 5665 + ], + [ + 251590, + 80066, + 5858 + ], + [ + 251045, + 80672, + 3784 + ], + [ + 250988, + 80719, + 2292 + ], + [ + 251179, + 80803, + 481 + ], + [ + 250654, + 81315, + 382 + ], + [ + 379540, + 27979, + 8235 + ], + [ + 379502, + 27935, + 5560 + ], + [ + 379549, + 27856, + 552 + ], + [ + 378235, + 28031, + 569 + ], + [ + 378352, + 28719, + 482 + ], + [ + 378034, + 27287, + 512 + ], + [ + 379078, + 27697, + 5089 + ], + [ + 379232, + 27653, + 569 + ], + [ + 379218, + 27671, + 9783 + ], + [ + 379399, + 27636, + 612 + ], + [ + 379334, + 27872, + 7995 + ], + [ + 379167, + 27725, + 7756 + ], + [ + 379062, + 27772, + 599 + ], + [ + 378575, + 28612, + 6888 + ], + [ + 378700, + 28487, + 582 + ], + [ + 378970, + 28487, + 6044 + ], + [ + 379545, + 27750, + 5087 + ], + [ + 379566, + 27560, + 8174 + ], + [ + 379666, + 27913, + 576 + ], + [ + 378916, + 27444, + 569 + ], + [ + 378693, + 27142, + 6277 + ], + [ + 378874, + 27122, + 588 + ], + [ + 379336, + 27894, + 5245 + ], + [ + 379480, + 27880, + 9168 + ], + [ + 378774, + 27096, + 541 + ], + [ + 379228, + 27030, + 7398 + ], + [ + 379187, + 27311, + 574 + ], + [ + 379461, + 27172, + 590 + ], + [ + 379507, + 27533, + 560 + ], + [ + 378318, + 27575, + 6666 + ], + [ + 378492, + 27801, + 607 + ], + [ + 378275, + 27758, + 7144 + ], + [ + 379025, + 28043, + 915 + ], + [ + 378967, + 27992, + 1773 + ], + [ + 379076, + 27922, + 8895 + ], + [ + 379590, + 28190, + 514 + ], + [ + 379814, + 28285, + 7473 + ], + [ + 379834, + 28352, + 2572 + ], + [ + 379319, + 28338, + 524 + ], + [ + 379160, + 28424, + 7345 + ], + [ + 379471, + 26881, + 502 + ], + [ + 379455, + 28085, + 6124 + ], + [ + 379376, + 28103, + 583 + ], + [ + 378910, + 28004, + 2579 + ], + [ + 378725, + 27986, + 603 + ], + [ + 378964, + 27811, + 558 + ], + [ + 379136, + 27803, + 4190 + ], + [ + 378220, + 27718, + 6216 + ], + [ + 378470, + 28239, + 598 + ], + [ + 378723, + 28321, + 548 + ], + [ + 378622, + 28502, + 6301 + ], + [ + 379054, + 28212, + 1088 + ], + [ + 379272, + 27973, + 547 + ], + [ + 378588, + 27280, + 583 + ], + [ + 378631, + 27607, + 572 + ], + [ + 378749, + 27511, + 610 + ], + [ + 378259, + 27795, + 583 + ], + [ + 378258, + 27518, + 612 + ], + [ + 378610, + 27468, + 7211 + ], + [ + 379022, + 27709, + 5878 + ], + [ + 379011, + 28303, + 5605 + ], + [ + 379050, + 28496, + 504 + ], + [ + 379655, + 28074, + 6547 + ], + [ + 379711, + 28085, + 5724 + ], + [ + 379421, + 27153, + 638 + ], + [ + 379035, + 27707, + 6137 + ], + [ + 379834, + 28352, + 452 + ], + [ + 385920, + 26843, + 7195 + ], + [ + 385970, + 26831, + 6463 + ], + [ + 384791, + 27125, + 442 + ], + [ + 385547, + 26596, + 6670 + ], + [ + 385505, + 26841, + 521 + ], + [ + 385453, + 26767, + 7912 + ], + [ + 385685, + 25806, + 7627 + ], + [ + 385787, + 25628, + 9994 + ], + [ + 385809, + 25730, + 604 + ], + [ + 385972, + 26554, + 568 + ], + [ + 386037, + 26307, + 5877 + ], + [ + 386102, + 26518, + 9085 + ], + [ + 385239, + 26393, + 589 + ], + [ + 385385, + 26478, + 9099 + ], + [ + 385382, + 26549, + 6148 + ], + [ + 385896, + 25286, + 522 + ], + [ + 385885, + 25699, + 4801 + ], + [ + 384883, + 26698, + 5478 + ], + [ + 384897, + 26478, + 9501 + ], + [ + 384993, + 26534, + 566 + ], + [ + 385761, + 25606, + 563 + ], + [ + 385571, + 25428, + 545 + ], + [ + 385547, + 25849, + 593 + ], + [ + 384838, + 26797, + 6043 + ], + [ + 385027, + 26680, + 533 + ], + [ + 384943, + 26357, + 8932 + ], + [ + 385352, + 26958, + 6279 + ], + [ + 385308, + 26843, + 9945 + ], + [ + 384981, + 26332, + 548 + ], + [ + 385083, + 26888, + 6520 + ], + [ + 385217, + 26863, + 563 + ], + [ + 385068, + 27012, + 489 + ], + [ + 385139, + 26840, + 9447 + ], + [ + 385126, + 26757, + 5988 + ], + [ + 385168, + 26617, + 5492 + ], + [ + 384451, + 25666, + 482 + ], + [ + 384650, + 26374, + 9066 + ], + [ + 384706, + 26208, + 583 + ], + [ + 384936, + 25990, + 543 + ], + [ + 385436, + 26606, + 5324 + ], + [ + 385493, + 26555, + 890 + ], + [ + 385259, + 25951, + 609 + ], + [ + 385809, + 26821, + 8817 + ], + [ + 385489, + 26471, + 7593 + ], + [ + 385626, + 26578, + 7928 + ], + [ + 385879, + 26379, + 6692 + ], + [ + 385764, + 26671, + 583 + ], + [ + 385741, + 26297, + 4087 + ], + [ + 385663, + 26291, + 7600 + ], + [ + 385785, + 26206, + 599 + ], + [ + 385897, + 26656, + 527 + ], + [ + 385314, + 26345, + 5220 + ], + [ + 385477, + 26427, + 1188 + ], + [ + 385368, + 25825, + 485 + ], + [ + 385173, + 25838, + 5982 + ], + [ + 385809, + 25972, + 559 + ], + [ + 385576, + 26571, + 8653 + ], + [ + 385571, + 26098, + 6687 + ], + [ + 385692, + 26311, + 4789 + ], + [ + 385634, + 26361, + 2651 + ], + [ + 384666, + 26421, + 5344 + ], + [ + 385855, + 26322, + 551 + ], + [ + 386107, + 26564, + 4671 + ], + [ + 385794, + 26301, + 3325 + ], + [ + 384586, + 26062, + 6751 + ], + [ + 385866, + 26228, + 4696 + ], + [ + 385583, + 26342, + 3404 + ], + [ + 385996, + 26040, + 600 + ], + [ + 386184, + 26486, + 510 + ], + [ + 386273, + 26759, + 3322 + ], + [ + 385818, + 26289, + 5349 + ], + [ + 385523, + 26308, + 610 + ], + [ + 385501, + 25903, + 4900 + ], + [ + 385433, + 26204, + 703 + ], + [ + 385470, + 26245, + 5106 + ], + [ + 384730, + 25719, + 580 + ], + [ + 384969, + 27040, + 546 + ], + [ + 385640, + 26316, + 5534 + ], + [ + 386273, + 26759, + 462 + ], + [ + 292494, + 140704, + 1213 + ], + [ + 292674, + 140826, + 3396 + ], + [ + 292291, + 140586, + 3789 + ], + [ + 292941, + 138870, + 1084 + ], + [ + 288368, + 137846, + 4447 + ], + [ + 289690, + 138741, + 3584 + ], + [ + 289988, + 139061, + 7001 + ], + [ + 289498, + 138623, + 1236 + ], + [ + 289400, + 138432, + 4403 + ], + [ + 289421, + 138581, + 7710 + ], + [ + 288561, + 137975, + 1442 + ], + [ + 288840, + 137866, + 1171 + ], + [ + 288790, + 138047, + 4393 + ], + [ + 289115, + 138363, + 8209 + ], + [ + 288743, + 138117, + 9015 + ], + [ + 289170, + 138402, + 1384 + ], + [ + 288886, + 138186, + 1222 + ], + [ + 289469, + 138251, + 1516 + ], + [ + 289080, + 138297, + 3629 + ], + [ + 290671, + 139206, + 1306 + ], + [ + 290352, + 139323, + 6511 + ], + [ + 290296, + 139009, + 1184 + ], + [ + 289860, + 138436, + 1523 + ], + [ + 291084, + 139392, + 1298 + ], + [ + 290956, + 139581, + 4443 + ], + [ + 290732, + 139497, + 1606 + ], + [ + 291831, + 140363, + 3851 + ], + [ + 289122, + 138069, + 1345 + ], + [ + 288499, + 137663, + 1164 + ], + [ + 289364, + 137590, + 1285 + ], + [ + 290779, + 137009, + 1465 + ], + [ + 290743, + 136661, + 1624 + ], + [ + 291168, + 136919, + 1133 + ], + [ + 289766, + 137764, + 1473 + ], + [ + 289020, + 137374, + 1218 + ], + [ + 289332, + 137207, + 1558 + ], + [ + 291125, + 139744, + 1218 + ], + [ + 291556, + 139571, + 1580 + ], + [ + 293490, + 140769, + 1142 + ], + [ + 292876, + 140617, + 1415 + ], + [ + 293446, + 140394, + 1222 + ], + [ + 290275, + 138650, + 1544 + ], + [ + 291051, + 139038, + 1470 + ], + [ + 291302, + 139872, + 3351 + ], + [ + 291578, + 139945, + 1211 + ], + [ + 290591, + 139404, + 4431 + ], + [ + 291963, + 139495, + 1354 + ], + [ + 292047, + 140156, + 1293 + ], + [ + 292330, + 139321, + 1484 + ], + [ + 292192, + 138323, + 1410 + ], + [ + 292594, + 138586, + 1253 + ], + [ + 291318, + 137913, + 1356 + ], + [ + 291753, + 137762, + 1634 + ], + [ + 292104, + 140470, + 1486 + ], + [ + 292453, + 140384, + 1223 + ], + [ + 293526, + 141103, + 1019 + ], + [ + 290199, + 139173, + 4744 + ], + [ + 292905, + 140975, + 1160 + ], + [ + 289888, + 138834, + 1187 + ], + [ + 290217, + 138306, + 1380 + ], + [ + 290053, + 138996, + 3120 + ], + [ + 293081, + 139827, + 1255 + ], + [ + 293142, + 140163, + 1473 + ], + [ + 293412, + 140063, + 1359 + ], + [ + 293358, + 139740, + 1219 + ], + [ + 293691, + 139963, + 1737 + ], + [ + 294082, + 140220, + 1641 + ], + [ + 293789, + 140605, + 1911 + ], + [ + 292582, + 138221, + 1759 + ], + [ + 292867, + 138133, + 1400 + ], + [ + 292904, + 138492, + 1248 + ], + [ + 293753, + 140255, + 2058 + ], + [ + 291221, + 137240, + 1262 + ], + [ + 292139, + 137998, + 1279 + ], + [ + 293260, + 141228, + 1136 + ], + [ + 290401, + 137164, + 1336 + ], + [ + 290320, + 136471, + 1503 + ], + [ + 290354, + 136831, + 1312 + ], + [ + 289988, + 136635, + 1330 + ], + [ + 289673, + 137118, + 1388 + ], + [ + 290045, + 136968, + 1483 + ], + [ + 289809, + 138132, + 1395 + ], + [ + 219974, + 101587, + 478 + ], + [ + 219928, + 101253, + 489 + ], + [ + 220257, + 101418, + 491 + ], + [ + 220068, + 100867, + 4868 + ], + [ + 219885, + 100936, + 496 + ], + [ + 220093, + 100741, + 508 + ], + [ + 220303, + 100924, + 6888 + ], + [ + 220163, + 100742, + 491 + ], + [ + 220218, + 100692, + 9675 + ], + [ + 221049, + 101212, + 372 + ], + [ + 219784, + 102047, + 402 + ], + [ + 219713, + 100862, + 508 + ], + [ + 219837, + 100600, + 470 + ], + [ + 220093, + 100685, + 8205 + ], + [ + 220113, + 100386, + 474 + ], + [ + 220321, + 100531, + 6849 + ], + [ + 219408, + 100633, + 447 + ], + [ + 219348, + 100626, + 6629 + ], + [ + 219491, + 100598, + 8902 + ], + [ + 219750, + 100479, + 503 + ], + [ + 220216, + 100032, + 432 + ], + [ + 220441, + 100626, + 502 + ], + [ + 220412, + 100665, + 5775 + ], + [ + 220453, + 100809, + 3921 + ], + [ + 219383, + 101025, + 477 + ], + [ + 219597, + 101283, + 6911 + ], + [ + 219015, + 100832, + 432 + ], + [ + 220053, + 101118, + 532 + ], + [ + 220060, + 101062, + 8380 + ], + [ + 219723, + 101283, + 511 + ], + [ + 219639, + 101117, + 473 + ], + [ + 220205, + 101096, + 2803 + ], + [ + 220315, + 101303, + 774 + ], + [ + 220257, + 101088, + 3589 + ], + [ + 219756, + 101375, + 7392 + ], + [ + 220211, + 101086, + 492 + ], + [ + 219584, + 100892, + 5235 + ], + [ + 219316, + 100653, + 458 + ], + [ + 219687, + 101468, + 465 + ], + [ + 219857, + 101415, + 8002 + ], + [ + 220519, + 100833, + 466 + ], + [ + 220428, + 100996, + 495 + ], + [ + 220488, + 100783, + 4772 + ], + [ + 219593, + 100786, + 469 + ], + [ + 220179, + 100354, + 8002 + ], + [ + 220567, + 101193, + 443 + ], + [ + 393162, + 69052, + 682 + ], + [ + 400939, + 74218, + 573 + ], + [ + 396713, + 71167, + 679 + ], + [ + 393815, + 69067, + 565 + ], + [ + 282914, + 61868, + 475 + ], + [ + 283665, + 61879, + 402 + ], + [ + 282286, + 62626, + 312 + ], + [ + 282881, + 60563, + 402 + ], + [ + 282824, + 61190, + 468 + ], + [ + 282220, + 61365, + 476 + ], + [ + 282656, + 61973, + 769 + ], + [ + 281583, + 61285, + 362 + ], + [ + 282760, + 61772, + 2512 + ], + [ + 334028, + 142058, + 4546 + ], + [ + 333630, + 142133, + 4412 + ], + [ + 333987, + 141688, + 4653 + ], + [ + 336824, + 137479, + 11285 + ], + [ + 336668, + 137678, + 846 + ], + [ + 333083, + 142544, + 976 + ], + [ + 333032, + 142190, + 918 + ], + [ + 336947, + 137282, + 784 + ], + [ + 334776, + 141189, + 4973 + ], + [ + 335188, + 140773, + 5049 + ], + [ + 334789, + 141556, + 4468 + ], + [ + 336791, + 137971, + 5721 + ], + [ + 337035, + 137952, + 9190 + ], + [ + 337390, + 137527, + 818 + ], + [ + 336353, + 138592, + 7469 + ], + [ + 336637, + 138627, + 6491 + ], + [ + 336740, + 138890, + 3286 + ], + [ + 335047, + 140187, + 4156 + ], + [ + 334772, + 139872, + 884 + ], + [ + 335318, + 139618, + 2401 + ], + [ + 336722, + 138029, + 946 + ], + [ + 335798, + 139382, + 3806 + ], + [ + 335940, + 138928, + 994 + ], + [ + 336038, + 139567, + 1189 + ], + [ + 337386, + 137758, + 6045 + ], + [ + 337220, + 138012, + 7950 + ], + [ + 336784, + 138344, + 1232 + ], + [ + 334888, + 140146, + 8482 + ], + [ + 335125, + 140475, + 4721 + ], + [ + 334341, + 141227, + 5003 + ], + [ + 334257, + 140966, + 4319 + ], + [ + 334649, + 141006, + 3541 + ], + [ + 335723, + 138682, + 4059 + ], + [ + 336183, + 138165, + 949 + ], + [ + 336197, + 139675, + 3229 + ], + [ + 334418, + 141927, + 4772 + ], + [ + 335857, + 139665, + 4108 + ], + [ + 335357, + 139107, + 3906 + ], + [ + 335752, + 139020, + 3831 + ], + [ + 337445, + 137845, + 1003 + ], + [ + 333697, + 142861, + 3987 + ], + [ + 335257, + 139398, + 8571 + ], + [ + 334580, + 140258, + 3960 + ], + [ + 335545, + 140448, + 4036 + ], + [ + 333854, + 141080, + 3938 + ], + [ + 335428, + 139850, + 3512 + ], + [ + 335854, + 140123, + 3218 + ], + [ + 333541, + 141481, + 4377 + ], + [ + 336051, + 138291, + 3763 + ], + [ + 334043, + 142428, + 4065 + ], + [ + 335511, + 140111, + 4187 + ], + [ + 333915, + 141386, + 4223 + ], + [ + 334203, + 140663, + 4131 + ], + [ + 317929, + 58519, + 484 + ], + [ + 318539, + 58038, + 523 + ], + [ + 319191, + 58428, + 362 + ], + [ + 318119, + 57787, + 540 + ], + [ + 318490, + 57689, + 495 + ], + [ + 318515, + 57866, + 5871 + ], + [ + 318354, + 57478, + 8301 + ], + [ + 318563, + 57398, + 11348 + ], + [ + 319004, + 57978, + 502 + ], + [ + 317921, + 57420, + 6694 + ], + [ + 318422, + 57189, + 5830 + ], + [ + 318442, + 57351, + 441 + ], + [ + 317789, + 57491, + 429 + ], + [ + 317589, + 57456, + 6656 + ], + [ + 318786, + 57396, + 5124 + ], + [ + 318161, + 58107, + 525 + ], + [ + 317577, + 58233, + 429 + ], + [ + 317651, + 58411, + 5749 + ], + [ + 317776, + 58913, + 362 + ], + [ + 317531, + 57911, + 382 + ], + [ + 317481, + 57547, + 358 + ], + [ + 317882, + 58156, + 502 + ], + [ + 318782, + 57059, + 5822 + ], + [ + 317337, + 57516, + 1652 + ], + [ + 317571, + 58021, + 5363 + ], + [ + 318782, + 57059, + 332 + ], + [ + 317337, + 57516, + 362 + ], + [ + 411354, + 81604, + 665 + ], + [ + 409407, + 80259, + 825 + ], + [ + 406135, + 77833, + 598 + ], + [ + 408266, + 79469, + 684 + ], + [ + 258235, + 193341, + 1092 + ], + [ + 258421, + 192757, + 1153 + ], + [ + 258280, + 193345, + 1092 + ], + [ + 258192, + 193333, + 1092 + ], + [ + 258368, + 193346, + 1092 + ], + [ + 258324, + 193347, + 1092 + ], + [ + 258413, + 193341, + 1092 + ], + [ + 258500, + 193323, + 1102 + ], + [ + 258456, + 193334, + 1102 + ], + [ + 258542, + 193310, + 1102 + ], + [ + 258583, + 193294, + 1102 + ], + [ + 258847, + 193019, + 2205 + ], + [ + 258921, + 192956, + 1092 + ], + [ + 258902, + 192996, + 1092 + ], + [ + 258662, + 193253, + 1092 + ], + [ + 258699, + 193228, + 1092 + ], + [ + 258735, + 193202, + 1092 + ], + [ + 258768, + 193172, + 1092 + ], + [ + 258799, + 193141, + 1092 + ], + [ + 258829, + 193108, + 1092 + ], + [ + 258855, + 193072, + 1092 + ], + [ + 258880, + 193035, + 1092 + ], + [ + 258968, + 192786, + 1092 + ], + [ + 258782, + 192737, + 1841 + ], + [ + 258973, + 192741, + 1092 + ], + [ + 258937, + 192915, + 1092 + ], + [ + 258961, + 192829, + 1092 + ], + [ + 258950, + 192873, + 1092 + ], + [ + 258974, + 192697, + 1092 + ], + [ + 258972, + 192653, + 1092 + ], + [ + 258968, + 192608, + 1092 + ], + [ + 258960, + 192565, + 1092 + ], + [ + 258950, + 192522, + 1092 + ], + [ + 258699, + 192562, + 1035 + ], + [ + 258936, + 192479, + 1092 + ], + [ + 258920, + 192438, + 1092 + ], + [ + 258901, + 192398, + 1092 + ], + [ + 258879, + 192359, + 1092 + ], + [ + 258855, + 192322, + 1092 + ], + [ + 258828, + 192287, + 1092 + ], + [ + 258799, + 192253, + 1092 + ], + [ + 258768, + 192222, + 1092 + ], + [ + 258734, + 192193, + 1092 + ], + [ + 258699, + 192166, + 1092 + ], + [ + 258662, + 192142, + 1092 + ], + [ + 258623, + 192120, + 1092 + ], + [ + 258623, + 193275, + 1092 + ], + [ + 258542, + 192085, + 1092 + ], + [ + 258499, + 192071, + 1092 + ], + [ + 258456, + 192061, + 1092 + ], + [ + 258413, + 192053, + 1092 + ], + [ + 258368, + 192049, + 1092 + ], + [ + 258324, + 192047, + 1092 + ], + [ + 258280, + 192049, + 1092 + ], + [ + 258235, + 192053, + 1092 + ], + [ + 257922, + 192329, + 1049 + ], + [ + 258192, + 192061, + 1092 + ], + [ + 258149, + 192071, + 1092 + ], + [ + 258106, + 192085, + 1092 + ], + [ + 258065, + 192101, + 1092 + ], + [ + 258025, + 192120, + 1092 + ], + [ + 257986, + 192142, + 1092 + ], + [ + 257949, + 192166, + 1092 + ], + [ + 257914, + 192193, + 1092 + ], + [ + 257849, + 192253, + 1092 + ], + [ + 257880, + 192222, + 1092 + ], + [ + 257820, + 192287, + 1092 + ], + [ + 257793, + 192322, + 1092 + ], + [ + 257769, + 192359, + 1092 + ], + [ + 257747, + 192398, + 1092 + ], + [ + 257728, + 192438, + 1092 + ], + [ + 257712, + 192479, + 1092 + ], + [ + 257987, + 192644, + 1348 + ], + [ + 257698, + 192522, + 1092 + ], + [ + 257688, + 192565, + 1092 + ], + [ + 257680, + 192608, + 1092 + ], + [ + 257674, + 192697, + 1092 + ], + [ + 257676, + 192741, + 1092 + ], + [ + 257680, + 192786, + 1092 + ], + [ + 257688, + 192829, + 1092 + ], + [ + 257698, + 192872, + 1092 + ], + [ + 257712, + 192915, + 1092 + ], + [ + 257728, + 192956, + 1092 + ], + [ + 257747, + 192996, + 1092 + ], + [ + 257769, + 193035, + 1092 + ], + [ + 257793, + 193072, + 1092 + ], + [ + 257820, + 193107, + 1092 + ], + [ + 257849, + 193141, + 1092 + ], + [ + 257880, + 193172, + 1092 + ], + [ + 257914, + 193201, + 1092 + ], + [ + 257949, + 193228, + 1092 + ], + [ + 257986, + 193252, + 1092 + ], + [ + 258025, + 193274, + 1092 + ], + [ + 258065, + 193293, + 1092 + ], + [ + 258106, + 193309, + 1092 + ], + [ + 258149, + 193323, + 1092 + ], + [ + 258583, + 192101, + 1092 + ], + [ + 257676, + 192653, + 1092 + ], + [ + 364887, + 43722, + 486 + ], + [ + 364521, + 43802, + 1745 + ], + [ + 364626, + 43389, + 3965 + ], + [ + 364733, + 43237, + 5728 + ], + [ + 364837, + 43369, + 423 + ], + [ + 365077, + 42944, + 252 + ], + [ + 364361, + 43333, + 384 + ], + [ + 364457, + 44002, + 487 + ], + [ + 365501, + 44336, + 282 + ], + [ + 365058, + 43077, + 4046 + ], + [ + 365203, + 43528, + 5240 + ], + [ + 364097, + 44761, + 292 + ], + [ + 363915, + 43641, + 375 + ], + [ + 363674, + 43372, + 1742 + ], + [ + 365268, + 43678, + 365 + ], + [ + 364003, + 44322, + 354 + ], + [ + 363674, + 43372, + 242 + ], + [ + 295902, + 67709, + 5024 + ], + [ + 295893, + 67663, + 561 + ], + [ + 296271, + 67519, + 450 + ], + [ + 295485, + 67085, + 545 + ], + [ + 295800, + 66979, + 530 + ], + [ + 295847, + 67315, + 563 + ], + [ + 295961, + 67239, + 11227 + ], + [ + 296320, + 67861, + 489 + ], + [ + 296636, + 68026, + 382 + ], + [ + 295989, + 68034, + 1208 + ], + [ + 295206, + 67582, + 522 + ], + [ + 295351, + 67128, + 7734 + ], + [ + 295724, + 67654, + 7323 + ], + [ + 295663, + 68448, + 523 + ], + [ + 295482, + 68409, + 7215 + ], + [ + 295628, + 67809, + 1161 + ], + [ + 295332, + 68550, + 507 + ], + [ + 295293, + 68236, + 536 + ], + [ + 295291, + 67684, + 5956 + ], + [ + 294609, + 67470, + 5142 + ], + [ + 294885, + 67672, + 545 + ], + [ + 295325, + 68735, + 392 + ], + [ + 295249, + 67902, + 537 + ], + [ + 295953, + 66770, + 6532 + ], + [ + 296061, + 67224, + 8003 + ], + [ + 294816, + 67401, + 8535 + ], + [ + 295047, + 67254, + 7709 + ], + [ + 295953, + 66770, + 362 + ], + [ + 294609, + 67470, + 432 + ], + [ + 256722, + 91600, + 5482 + ], + [ + 256652, + 91557, + 1206 + ], + [ + 256652, + 91509, + 1981 + ], + [ + 256359, + 92319, + 872 + ], + [ + 256543, + 92482, + 6225 + ], + [ + 256496, + 92563, + 608 + ], + [ + 256345, + 91334, + 1024 + ], + [ + 256499, + 91488, + 7458 + ], + [ + 256285, + 91700, + 1203 + ], + [ + 256986, + 92272, + 580 + ], + [ + 256302, + 92834, + 442 + ], + [ + 256446, + 91133, + 7383 + ], + [ + 256534, + 91097, + 566 + ], + [ + 256981, + 91947, + 1116 + ], + [ + 257208, + 91605, + 702 + ], + [ + 257554, + 92024, + 402 + ], + [ + 255851, + 91909, + 1239 + ], + [ + 256176, + 92078, + 1956 + ], + [ + 256385, + 91769, + 5377 + ], + [ + 256646, + 91755, + 705 + ], + [ + 256198, + 91251, + 516 + ], + [ + 256330, + 91207, + 844 + ], + [ + 256829, + 91315, + 714 + ], + [ + 255867, + 91423, + 491 + ], + [ + 255913, + 91412, + 1267 + ], + [ + 256738, + 90774, + 362 + ], + [ + 256964, + 91499, + 5506 + ], + [ + 256008, + 91609, + 6320 + ], + [ + 256480, + 92209, + 1054 + ], + [ + 256713, + 92078, + 1031 + ], + [ + 255489, + 91591, + 442 + ], + [ + 256490, + 91837, + 1542 + ], + [ + 256554, + 91914, + 2612 + ], + [ + 256995, + 91641, + 1858 + ], + [ + 361820, + 105822, + 640 + ], + [ + 361864, + 106152, + 652 + ], + [ + 361073, + 105833, + 645 + ], + [ + 361596, + 106475, + 703 + ], + [ + 361731, + 106050, + 3341 + ], + [ + 364565, + 78666, + 3366 + ], + [ + 364480, + 78308, + 2835 + ], + [ + 364390, + 78913, + 491 + ], + [ + 364815, + 78265, + 539 + ], + [ + 396568, + 76274, + 745 + ], + [ + 397435, + 76584, + 772 + ], + [ + 397765, + 77344, + 782 + ], + [ + 398167, + 76638, + 1015 + ], + [ + 398299, + 76594, + 772 + ], + [ + 397820, + 76793, + 1220 + ], + [ + 395530, + 75206, + 796 + ], + [ + 394220, + 74824, + 762 + ], + [ + 394753, + 74074, + 762 + ], + [ + 395574, + 75525, + 813 + ], + [ + 396522, + 75919, + 759 + ], + [ + 396093, + 75746, + 1147 + ], + [ + 270976, + 113378, + 2156 + ], + [ + 271173, + 113537, + 1132 + ], + [ + 270956, + 113760, + 1198 + ], + [ + 271759, + 112382, + 1007 + ], + [ + 271434, + 112058, + 2792 + ], + [ + 271806, + 112741, + 995 + ], + [ + 271345, + 112306, + 1075 + ], + [ + 271438, + 112980, + 1101 + ], + [ + 270861, + 113079, + 1138 + ], + [ + 271014, + 114085, + 1378 + ], + [ + 270715, + 113990, + 1153 + ], + [ + 269468, + 114916, + 2842 + ], + [ + 265583, + 120534, + 1612 + ], + [ + 270765, + 113593, + 2563 + ], + [ + 270488, + 114542, + 1187 + ], + [ + 270548, + 114871, + 1402 + ], + [ + 270123, + 114450, + 1244 + ], + [ + 271907, + 113413, + 1128 + ], + [ + 271500, + 113319, + 1316 + ], + [ + 271871, + 113048, + 1315 + ], + [ + 271294, + 113141, + 3482 + ], + [ + 270850, + 114300, + 2414 + ], + [ + 270230, + 115116, + 1476 + ], + [ + 269780, + 114687, + 1214 + ], + [ + 271580, + 113972, + 1210 + ], + [ + 266882, + 120711, + 891 + ], + [ + 266486, + 120930, + 884 + ], + [ + 270394, + 113891, + 1109 + ], + [ + 270072, + 114117, + 1161 + ], + [ + 270484, + 113484, + 3079 + ], + [ + 269830, + 115026, + 1280 + ], + [ + 271090, + 114796, + 1114 + ], + [ + 271133, + 115111, + 1119 + ], + [ + 270850, + 114996, + 1147 + ], + [ + 266677, + 119000, + 1245 + ], + [ + 267022, + 118459, + 1284 + ], + [ + 272254, + 112811, + 1082 + ], + [ + 269398, + 115297, + 1202 + ], + [ + 270596, + 115210, + 1440 + ], + [ + 270620, + 115555, + 1129 + ], + [ + 267493, + 119239, + 1235 + ], + [ + 267530, + 119558, + 1164 + ], + [ + 267174, + 119806, + 880 + ], + [ + 271985, + 113740, + 1586 + ], + [ + 266387, + 119932, + 1370 + ], + [ + 265986, + 120149, + 883 + ], + [ + 266307, + 119597, + 896 + ], + [ + 266057, + 120450, + 1284 + ], + [ + 266078, + 120825, + 892 + ], + [ + 266491, + 120573, + 1613 + ], + [ + 271620, + 114307, + 1143 + ], + [ + 271318, + 114538, + 1268 + ], + [ + 268317, + 118899, + 1219 + ], + [ + 268587, + 118384, + 1115 + ], + [ + 266791, + 120035, + 889 + ], + [ + 266886, + 120360, + 1591 + ], + [ + 266403, + 120267, + 969 + ], + [ + 271056, + 114431, + 1329 + ], + [ + 270816, + 114659, + 1300 + ], + [ + 266744, + 119693, + 889 + ], + [ + 267267, + 120103, + 1591 + ], + [ + 268542, + 118018, + 1174 + ], + [ + 268498, + 117677, + 1204 + ], + [ + 268845, + 117407, + 1768 + ], + [ + 269105, + 116545, + 1198 + ], + [ + 267265, + 120483, + 869 + ], + [ + 269153, + 116885, + 1237 + ], + [ + 269199, + 117217, + 1253 + ], + [ + 269571, + 116627, + 1115 + ], + [ + 269882, + 115387, + 1313 + ], + [ + 338073, + 87306, + 542 + ], + [ + 338454, + 87225, + 550 + ], + [ + 338178, + 86981, + 2605 + ], + [ + 338406, + 86865, + 539 + ], + [ + 337984, + 86633, + 542 + ], + [ + 306464, + 49630, + 586 + ], + [ + 307421, + 49556, + 492 + ], + [ + 306041, + 50155, + 462 + ], + [ + 305925, + 49088, + 602 + ], + [ + 306012, + 49748, + 591 + ], + [ + 305405, + 48703, + 512 + ], + [ + 306097, + 49333, + 8178 + ], + [ + 306929, + 49472, + 588 + ], + [ + 306769, + 48104, + 542 + ], + [ + 306374, + 48922, + 631 + ], + [ + 306387, + 49333, + 6429 + ], + [ + 306604, + 49488, + 2745 + ], + [ + 262536, + 88746, + 437 + ], + [ + 263387, + 88197, + 442 + ], + [ + 262174, + 89009, + 442 + ], + [ + 262031, + 88626, + 4922 + ], + [ + 261355, + 87756, + 4992 + ], + [ + 261947, + 87610, + 5638 + ], + [ + 262296, + 87422, + 5382 + ], + [ + 262337, + 88054, + 4778 + ], + [ + 262920, + 88195, + 1007 + ], + [ + 262582, + 87830, + 8524 + ], + [ + 262461, + 88071, + 661 + ], + [ + 262800, + 87555, + 6218 + ], + [ + 262919, + 87893, + 7215 + ], + [ + 262102, + 88629, + 525 + ], + [ + 262567, + 88463, + 7145 + ], + [ + 263225, + 87987, + 5550 + ], + [ + 262577, + 86958, + 392 + ], + [ + 262533, + 88401, + 1030 + ], + [ + 262082, + 88301, + 6219 + ], + [ + 262797, + 87512, + 592 + ], + [ + 261684, + 87878, + 1578 + ], + [ + 261587, + 87871, + 6209 + ], + [ + 261355, + 87756, + 352 + ], + [ + 398281, + 34000, + 805 + ], + [ + 398864, + 33963, + 741 + ], + [ + 397903, + 34575, + 672 + ], + [ + 398561, + 33387, + 792 + ], + [ + 398771, + 33273, + 716 + ], + [ + 398653, + 33571, + 6083 + ], + [ + 398776, + 33114, + 6639 + ], + [ + 398913, + 32727, + 672 + ], + [ + 399323, + 34142, + 712 + ], + [ + 398576, + 33627, + 3989 + ], + [ + 398475, + 33660, + 1901 + ], + [ + 398625, + 33629, + 3237 + ], + [ + 398816, + 33598, + 746 + ], + [ + 397923, + 33171, + 726 + ], + [ + 398303, + 33548, + 796 + ], + [ + 398121, + 33239, + 780 + ], + [ + 398258, + 33088, + 5616 + ], + [ + 398325, + 33121, + 772 + ], + [ + 398350, + 33034, + 742 + ], + [ + 398582, + 32967, + 766 + ], + [ + 397487, + 33141, + 652 + ], + [ + 398723, + 32908, + 728 + ], + [ + 398525, + 33685, + 1130 + ], + [ + 398781, + 33743, + 809 + ], + [ + 392180, + 71673, + 758 + ], + [ + 390736, + 72786, + 1335 + ], + [ + 391124, + 72233, + 1434 + ], + [ + 391166, + 72589, + 1351 + ], + [ + 390777, + 73106, + 1315 + ], + [ + 401339, + 75149, + 1246 + ], + [ + 396352, + 72095, + 716 + ], + [ + 396893, + 72211, + 1282 + ], + [ + 398118, + 73150, + 1355 + ], + [ + 394538, + 70987, + 757 + ], + [ + 392535, + 70009, + 643 + ], + [ + 391852, + 71197, + 1392 + ], + [ + 392922, + 70255, + 1388 + ], + [ + 392411, + 71169, + 763 + ], + [ + 393554, + 69955, + 1340 + ], + [ + 393968, + 69784, + 1370 + ], + [ + 394006, + 70137, + 1245 + ], + [ + 398541, + 73321, + 671 + ], + [ + 398496, + 72984, + 666 + ], + [ + 399047, + 73518, + 683 + ], + [ + 401127, + 75258, + 1289 + ], + [ + 400846, + 75040, + 1356 + ], + [ + 401089, + 74946, + 1340 + ], + [ + 400107, + 74600, + 1359 + ], + [ + 400059, + 74238, + 1354 + ], + [ + 400462, + 74473, + 1330 + ], + [ + 400771, + 74694, + 948 + ], + [ + 396267, + 71419, + 773 + ], + [ + 396528, + 71649, + 883 + ], + [ + 396347, + 71760, + 1274 + ], + [ + 399673, + 74401, + 1221 + ], + [ + 398074, + 72805, + 1381 + ], + [ + 397660, + 72625, + 1369 + ], + [ + 399539, + 73705, + 638 + ], + [ + 399089, + 73851, + 660 + ], + [ + 398587, + 73663, + 682 + ], + [ + 396605, + 72001, + 1313 + ], + [ + 397175, + 72076, + 948 + ], + [ + 392873, + 69895, + 1366 + ], + [ + 393145, + 69753, + 1351 + ], + [ + 393143, + 70047, + 761 + ], + [ + 393512, + 69612, + 1384 + ], + [ + 399625, + 74068, + 1175 + ], + [ + 394536, + 70669, + 1320 + ], + [ + 394993, + 70838, + 1369 + ], + [ + 392407, + 70861, + 1284 + ], + [ + 394012, + 70457, + 741 + ], + [ + 396853, + 71895, + 1307 + ], + [ + 395976, + 71578, + 1162 + ], + [ + 395935, + 71224, + 1254 + ], + [ + 395519, + 71364, + 1248 + ], + [ + 401253, + 74791, + 722 + ], + [ + 393057, + 69390, + 791 + ], + [ + 391548, + 72048, + 1328 + ], + [ + 392370, + 70548, + 1354 + ], + [ + 392178, + 71353, + 1348 + ], + [ + 394995, + 71176, + 767 + ], + [ + 391899, + 71553, + 1376 + ], + [ + 391915, + 71858, + 1041 + ], + [ + 344584, + 50090, + 396 + ], + [ + 344906, + 50147, + 4733 + ], + [ + 345031, + 50367, + 410 + ], + [ + 344263, + 50434, + 359 + ], + [ + 344333, + 50782, + 282 + ], + [ + 343910, + 49392, + 4312 + ], + [ + 344323, + 49970, + 6095 + ], + [ + 344707, + 49764, + 7726 + ], + [ + 345435, + 50352, + 386 + ], + [ + 345744, + 50343, + 282 + ], + [ + 345313, + 50417, + 4229 + ], + [ + 344241, + 49303, + 6182 + ], + [ + 344491, + 49404, + 355 + ], + [ + 344125, + 49402, + 345 + ], + [ + 344917, + 49341, + 6354 + ], + [ + 345297, + 49320, + 375 + ], + [ + 345355, + 49603, + 6300 + ], + [ + 344169, + 49724, + 365 + ], + [ + 345345, + 49671, + 396 + ], + [ + 345228, + 49764, + 4249 + ], + [ + 345323, + 48962, + 4662 + ], + [ + 344513, + 49270, + 5945 + ], + [ + 345205, + 49137, + 5082 + ], + [ + 345281, + 50096, + 4371 + ], + [ + 345397, + 50036, + 440 + ], + [ + 345323, + 48962, + 242 + ], + [ + 343910, + 49392, + 242 + ], + [ + 368583, + 81578, + 1674 + ], + [ + 368549, + 81912, + 591 + ], + [ + 352158, + 34843, + 942 + ], + [ + 352773, + 34833, + 919 + ], + [ + 351652, + 35205, + 902 + ], + [ + 352367, + 33777, + 5813 + ], + [ + 352650, + 33771, + 6098 + ], + [ + 352639, + 33820, + 913 + ], + [ + 352344, + 33805, + 898 + ], + [ + 352020, + 33812, + 917 + ], + [ + 352983, + 34599, + 942 + ], + [ + 353109, + 34868, + 812 + ], + [ + 353042, + 34859, + 849 + ], + [ + 352726, + 34545, + 948 + ], + [ + 353004, + 34547, + 889 + ], + [ + 352780, + 33623, + 920 + ], + [ + 351325, + 33781, + 912 + ], + [ + 351526, + 33811, + 6150 + ], + [ + 351663, + 34070, + 974 + ], + [ + 352759, + 33440, + 822 + ], + [ + 352524, + 33552, + 903 + ], + [ + 352834, + 34764, + 6017 + ], + [ + 352444, + 34491, + 4829 + ], + [ + 352420, + 34535, + 1582 + ], + [ + 352361, + 34513, + 2387 + ], + [ + 352073, + 34309, + 985 + ], + [ + 351885, + 34162, + 5813 + ], + [ + 351726, + 34088, + 5855 + ], + [ + 351861, + 34637, + 995 + ], + [ + 351870, + 34864, + 5487 + ], + [ + 352470, + 34388, + 1010 + ], + [ + 351911, + 33741, + 977 + ], + [ + 351887, + 34183, + 986 + ], + [ + 352254, + 34569, + 3819 + ], + [ + 352402, + 34668, + 4663 + ], + [ + 352319, + 34802, + 3256 + ], + [ + 352189, + 34606, + 1335 + ], + [ + 352143, + 34541, + 5340 + ], + [ + 352501, + 34517, + 4040 + ], + [ + 351994, + 34440, + 5531 + ], + [ + 352308, + 34534, + 3103 + ], + [ + 352228, + 34355, + 993 + ], + [ + 352460, + 34527, + 1191 + ], + [ + 408268, + 86397, + 1262 + ], + [ + 408685, + 85607, + 1206 + ], + [ + 409701, + 84724, + 790 + ], + [ + 409687, + 84371, + 1255 + ], + [ + 409943, + 84307, + 808 + ], + [ + 404677, + 84393, + 802 + ], + [ + 405192, + 84451, + 1231 + ], + [ + 405577, + 84679, + 759 + ], + [ + 409321, + 84416, + 754 + ], + [ + 408853, + 83820, + 828 + ], + [ + 406483, + 82620, + 1204 + ], + [ + 406574, + 81754, + 802 + ], + [ + 406760, + 82213, + 1211 + ], + [ + 406221, + 83078, + 1154 + ], + [ + 405731, + 83557, + 1234 + ], + [ + 405949, + 83163, + 1227 + ], + [ + 408319, + 87009, + 802 + ], + [ + 409074, + 85508, + 794 + ], + [ + 409062, + 85178, + 1259 + ], + [ + 409403, + 84779, + 1250 + ], + [ + 407245, + 82795, + 762 + ], + [ + 408373, + 83250, + 1202 + ], + [ + 409238, + 83742, + 847 + ], + [ + 410215, + 84370, + 802 + ], + [ + 405524, + 84041, + 1193 + ], + [ + 405124, + 84131, + 849 + ], + [ + 406169, + 82718, + 1084 + ], + [ + 405739, + 83881, + 742 + ], + [ + 406771, + 82538, + 762 + ], + [ + 409299, + 84104, + 1034 + ], + [ + 408834, + 83506, + 1147 + ], + [ + 405652, + 83207, + 779 + ], + [ + 409640, + 84050, + 1193 + ], + [ + 398252, + 23053, + 837 + ], + [ + 398263, + 23168, + 8837 + ], + [ + 398149, + 23176, + 7549 + ], + [ + 398032, + 23420, + 799 + ], + [ + 398116, + 23817, + 4742 + ], + [ + 397780, + 22346, + 752 + ], + [ + 398219, + 23506, + 6269 + ], + [ + 398316, + 23670, + 850 + ], + [ + 398302, + 23593, + 11725 + ], + [ + 398296, + 23393, + 824 + ], + [ + 398370, + 23484, + 4013 + ], + [ + 399246, + 22432, + 873 + ], + [ + 399016, + 22494, + 8534 + ], + [ + 399081, + 22248, + 908 + ], + [ + 398881, + 22987, + 5403 + ], + [ + 398880, + 22893, + 975 + ], + [ + 399110, + 22995, + 9724 + ], + [ + 399374, + 23459, + 767 + ], + [ + 399599, + 23429, + 4772 + ], + [ + 399245, + 23509, + 11667 + ], + [ + 398052, + 22884, + 878 + ], + [ + 398377, + 22845, + 4364 + ], + [ + 398323, + 23593, + 4651 + ], + [ + 398639, + 23638, + 783 + ], + [ + 398338, + 23735, + 766 + ], + [ + 399181, + 23537, + 5291 + ], + [ + 398688, + 23359, + 6062 + ], + [ + 398582, + 23303, + 7707 + ], + [ + 398741, + 23345, + 5265 + ], + [ + 398578, + 23499, + 858 + ], + [ + 398471, + 23310, + 5592 + ], + [ + 398954, + 23535, + 811 + ], + [ + 399038, + 23227, + 868 + ], + [ + 399220, + 23365, + 4812 + ], + [ + 399478, + 23383, + 888 + ], + [ + 399110, + 23196, + 6592 + ], + [ + 399066, + 23135, + 10295 + ], + [ + 398338, + 23199, + 865 + ], + [ + 398259, + 23356, + 5775 + ], + [ + 398857, + 22825, + 3890 + ], + [ + 398863, + 22909, + 7329 + ], + [ + 398913, + 23210, + 838 + ], + [ + 398823, + 22450, + 889 + ], + [ + 398822, + 22520, + 847 + ], + [ + 399335, + 23120, + 850 + ], + [ + 399287, + 22755, + 861 + ], + [ + 399060, + 22758, + 864 + ], + [ + 399005, + 22782, + 5264 + ], + [ + 398206, + 22702, + 833 + ], + [ + 398523, + 22968, + 4810 + ], + [ + 398558, + 22963, + 904 + ], + [ + 398655, + 23600, + 6389 + ], + [ + 398815, + 22999, + 7989 + ], + [ + 398074, + 22414, + 881 + ], + [ + 398379, + 22309, + 888 + ], + [ + 398370, + 22576, + 7648 + ], + [ + 398799, + 22668, + 4872 + ], + [ + 398746, + 22611, + 5726 + ], + [ + 398595, + 22835, + 4058 + ], + [ + 398586, + 22882, + 1185 + ], + [ + 398741, + 22776, + 1898 + ], + [ + 398645, + 22827, + 3310 + ], + [ + 398620, + 22612, + 878 + ], + [ + 398712, + 22968, + 3065 + ], + [ + 398794, + 22792, + 1078 + ], + [ + 398550, + 22950, + 4650 + ], + [ + 398907, + 22801, + 3166 + ], + [ + 398096, + 22723, + 4852 + ], + [ + 397934, + 22786, + 841 + ], + [ + 398078, + 23206, + 4768 + ], + [ + 398065, + 22982, + 6136 + ], + [ + 397949, + 22733, + 7045 + ], + [ + 397889, + 22442, + 835 + ], + [ + 398359, + 22755, + 856 + ], + [ + 399280, + 22719, + 4358 + ], + [ + 399282, + 23046, + 885 + ], + [ + 398773, + 22249, + 5255 + ], + [ + 399301, + 22603, + 911 + ], + [ + 397977, + 23130, + 797 + ], + [ + 397977, + 23105, + 4642 + ], + [ + 398774, + 22155, + 869 + ], + [ + 399227, + 21986, + 1802 + ], + [ + 398601, + 22847, + 6134 + ], + [ + 399413, + 23053, + 5079 + ], + [ + 399227, + 21986, + 802 + ], + [ + 399599, + 23429, + 782 + ], + [ + 398116, + 23817, + 712 + ], + [ + 358688, + 146545, + 911 + ], + [ + 358731, + 145682, + 732 + ], + [ + 359177, + 146855, + 892 + ], + [ + 358817, + 147598, + 757 + ], + [ + 359882, + 146809, + 752 + ], + [ + 358923, + 146914, + 3493 + ], + [ + 358760, + 147980, + 692 + ], + [ + 358766, + 146790, + 1555 + ], + [ + 357583, + 146827, + 672 + ], + [ + 358263, + 146915, + 812 + ], + [ + 353878, + 149392, + 731 + ], + [ + 354545, + 149938, + 732 + ], + [ + 353617, + 150909, + 752 + ], + [ + 353251, + 149497, + 725 + ], + [ + 352672, + 149999, + 752 + ], + [ + 353590, + 149029, + 1632 + ], + [ + 353590, + 149029, + 722 + ], + [ + 378162, + 39687, + 716 + ], + [ + 379040, + 40227, + 272 + ], + [ + 377620, + 40670, + 262 + ], + [ + 377657, + 39440, + 340 + ], + [ + 377187, + 39250, + 242 + ], + [ + 378610, + 38816, + 252 + ], + [ + 371046, + 41647, + 417 + ], + [ + 371484, + 41603, + 465 + ], + [ + 370921, + 42697, + 272 + ], + [ + 370552, + 41385, + 313 + ], + [ + 370493, + 41292, + 4262 + ], + [ + 371322, + 41467, + 4625 + ], + [ + 371440, + 41279, + 456 + ], + [ + 370873, + 41507, + 4584 + ], + [ + 371003, + 41328, + 411 + ], + [ + 371909, + 41157, + 367 + ], + [ + 372310, + 42264, + 262 + ], + [ + 371884, + 40867, + 232 + ], + [ + 370493, + 41292, + 312 + ], + [ + 208520, + 109410, + 9285 + ], + [ + 209550, + 108771, + 3452 + ], + [ + 208333, + 109567, + 802 + ], + [ + 208223, + 107973, + 832 + ], + [ + 208672, + 108111, + 811 + ], + [ + 208596, + 108179, + 9973 + ], + [ + 208847, + 108796, + 8397 + ], + [ + 208953, + 108839, + 9009 + ], + [ + 208783, + 108971, + 8639 + ], + [ + 209122, + 108544, + 789 + ], + [ + 209126, + 108376, + 6244 + ], + [ + 209387, + 108566, + 6404 + ], + [ + 208573, + 108599, + 8215 + ], + [ + 208494, + 108223, + 842 + ], + [ + 208717, + 108424, + 834 + ], + [ + 208677, + 107555, + 732 + ], + [ + 209164, + 108866, + 749 + ], + [ + 209174, + 108889, + 10977 + ], + [ + 209070, + 108378, + 5515 + ], + [ + 208840, + 108509, + 7618 + ], + [ + 208811, + 108461, + 871 + ], + [ + 209169, + 108735, + 838 + ], + [ + 207921, + 108885, + 861 + ], + [ + 207526, + 108330, + 822 + ], + [ + 208682, + 108930, + 8075 + ], + [ + 208702, + 109141, + 843 + ], + [ + 208811, + 109129, + 779 + ], + [ + 208273, + 108333, + 820 + ], + [ + 208219, + 108332, + 8180 + ], + [ + 207913, + 108101, + 8143 + ], + [ + 209434, + 108623, + 761 + ], + [ + 208754, + 108694, + 3461 + ], + [ + 208414, + 109326, + 859 + ], + [ + 208642, + 109167, + 9022 + ], + [ + 208308, + 109016, + 7300 + ], + [ + 208372, + 109120, + 964 + ], + [ + 208191, + 109271, + 7453 + ], + [ + 208380, + 108568, + 862 + ], + [ + 208866, + 108690, + 4939 + ], + [ + 208771, + 108781, + 891 + ], + [ + 208186, + 108723, + 1286 + ], + [ + 208365, + 108743, + 7150 + ], + [ + 208857, + 108580, + 6638 + ], + [ + 209073, + 108187, + 807 + ], + [ + 208324, + 108674, + 875 + ], + [ + 208041, + 108307, + 898 + ], + [ + 208641, + 108752, + 1078 + ], + [ + 208517, + 108829, + 7643 + ], + [ + 208371, + 109010, + 876 + ], + [ + 207830, + 108230, + 857 + ], + [ + 208052, + 108880, + 894 + ], + [ + 208711, + 108709, + 2672 + ], + [ + 209550, + 108771, + 712 + ], + [ + 400522, + 77964, + 922 + ], + [ + 399993, + 80589, + 819 + ], + [ + 403353, + 77673, + 807 + ], + [ + 403305, + 77314, + 801 + ], + [ + 404316, + 78072, + 777 + ], + [ + 407871, + 87493, + 812 + ], + [ + 407795, + 86796, + 1048 + ], + [ + 402399, + 77562, + 784 + ], + [ + 403221, + 77266, + 6086 + ], + [ + 403054, + 77505, + 3291 + ], + [ + 404330, + 85054, + 796 + ], + [ + 405791, + 86037, + 1241 + ], + [ + 403336, + 84625, + 799 + ], + [ + 404095, + 83033, + 1241 + ], + [ + 404810, + 81771, + 828 + ], + [ + 400579, + 81439, + 835 + ], + [ + 400536, + 81121, + 819 + ], + [ + 400989, + 81295, + 1278 + ], + [ + 401225, + 80516, + 813 + ], + [ + 401305, + 80869, + 1273 + ], + [ + 400346, + 79449, + 1275 + ], + [ + 400599, + 78605, + 806 + ], + [ + 400675, + 78935, + 1259 + ], + [ + 405648, + 81129, + 779 + ], + [ + 406416, + 79861, + 770 + ], + [ + 412725, + 84470, + 776 + ], + [ + 413691, + 86000, + 776 + ], + [ + 413417, + 86437, + 750 + ], + [ + 412031, + 86652, + 765 + ], + [ + 411275, + 87167, + 767 + ], + [ + 406947, + 86342, + 814 + ], + [ + 404520, + 82917, + 811 + ], + [ + 404508, + 82564, + 1300 + ], + [ + 404897, + 82442, + 798 + ], + [ + 405746, + 79696, + 777 + ], + [ + 406072, + 79482, + 5756 + ], + [ + 406056, + 79627, + 778 + ], + [ + 412637, + 83824, + 748 + ], + [ + 405380, + 79100, + 783 + ], + [ + 407429, + 80342, + 769 + ], + [ + 407522, + 81041, + 774 + ], + [ + 408242, + 80958, + 3669 + ], + [ + 408496, + 81142, + 789 + ], + [ + 411144, + 83057, + 783 + ], + [ + 411777, + 83311, + 3439 + ], + [ + 411185, + 83373, + 772 + ], + [ + 413921, + 85282, + 787 + ], + [ + 414176, + 85639, + 3744 + ], + [ + 414286, + 85562, + 730 + ], + [ + 411233, + 83732, + 771 + ], + [ + 412150, + 83867, + 764 + ], + [ + 412110, + 83550, + 783 + ], + [ + 401157, + 77699, + 788 + ], + [ + 412597, + 87244, + 759 + ], + [ + 411849, + 83672, + 3788 + ], + [ + 408922, + 81398, + 760 + ], + [ + 411813, + 88073, + 840 + ], + [ + 402268, + 76596, + 749 + ], + [ + 401207, + 78047, + 849 + ], + [ + 400946, + 78169, + 1256 + ], + [ + 400997, + 78529, + 1303 + ], + [ + 400691, + 79282, + 844 + ], + [ + 410339, + 87318, + 792 + ], + [ + 411334, + 87484, + 1000 + ], + [ + 405162, + 81339, + 1127 + ], + [ + 405430, + 81522, + 791 + ], + [ + 405209, + 81683, + 1153 + ], + [ + 405423, + 81216, + 1253 + ], + [ + 406387, + 86509, + 1170 + ], + [ + 406050, + 86223, + 763 + ], + [ + 407916, + 87829, + 806 + ], + [ + 400656, + 81806, + 1239 + ], + [ + 400911, + 80951, + 830 + ], + [ + 406310, + 86149, + 764 + ], + [ + 405304, + 85478, + 888 + ], + [ + 400223, + 82266, + 914 + ], + [ + 400744, + 82466, + 1258 + ], + [ + 401581, + 83219, + 781 + ], + [ + 402380, + 83195, + 918 + ], + [ + 403208, + 83649, + 801 + ], + [ + 402433, + 83527, + 1034 + ], + [ + 401947, + 83433, + 1244 + ], + [ + 402168, + 83311, + 957 + ], + [ + 403749, + 83834, + 1260 + ], + [ + 403761, + 84169, + 795 + ], + [ + 401869, + 83084, + 783 + ], + [ + 403324, + 84302, + 1225 + ], + [ + 403256, + 83982, + 866 + ], + [ + 401169, + 82673, + 1244 + ], + [ + 412195, + 87655, + 1205 + ], + [ + 407416, + 87239, + 1087 + ], + [ + 411682, + 87089, + 835 + ], + [ + 404883, + 82109, + 1242 + ], + [ + 404134, + 83346, + 1204 + ], + [ + 401090, + 82308, + 814 + ], + [ + 400671, + 82145, + 816 + ], + [ + 405226, + 82005, + 793 + ], + [ + 404855, + 85262, + 1164 + ], + [ + 404813, + 84919, + 1214 + ], + [ + 400361, + 79797, + 838 + ], + [ + 399979, + 80244, + 1263 + ], + [ + 401004, + 78829, + 839 + ], + [ + 404151, + 83696, + 808 + ], + [ + 402472, + 83869, + 942 + ], + [ + 402110, + 82959, + 788 + ], + [ + 411753, + 87405, + 1251 + ], + [ + 412106, + 87012, + 1146 + ], + [ + 411798, + 87764, + 1215 + ], + [ + 411366, + 87842, + 778 + ], + [ + 399935, + 79925, + 1239 + ], + [ + 399445, + 80059, + 820 + ], + [ + 411421, + 88181, + 924 + ], + [ + 400174, + 81946, + 828 + ], + [ + 407372, + 86910, + 1081 + ], + [ + 365872, + 31658, + 7083 + ], + [ + 365922, + 31594, + 6442 + ], + [ + 366212, + 31580, + 7133 + ], + [ + 366216, + 31397, + 557 + ], + [ + 366060, + 31508, + 611 + ], + [ + 365948, + 31134, + 6427 + ], + [ + 366052, + 30868, + 9807 + ], + [ + 366083, + 31062, + 626 + ], + [ + 366260, + 31405, + 6612 + ], + [ + 366354, + 31686, + 452 + ], + [ + 365349, + 31171, + 5874 + ], + [ + 365361, + 31369, + 987 + ], + [ + 365310, + 31399, + 6243 + ], + [ + 366111, + 30935, + 8955 + ], + [ + 365570, + 31752, + 7078 + ], + [ + 365607, + 31485, + 6767 + ], + [ + 365703, + 31598, + 9397 + ], + [ + 365715, + 31555, + 634 + ], + [ + 364670, + 30806, + 6614 + ], + [ + 364620, + 30918, + 7226 + ], + [ + 364501, + 30603, + 552 + ], + [ + 365737, + 31095, + 678 + ], + [ + 365629, + 30744, + 624 + ], + [ + 364597, + 30951, + 609 + ], + [ + 364845, + 31108, + 610 + ], + [ + 365580, + 30375, + 612 + ], + [ + 365942, + 30216, + 522 + ], + [ + 365764, + 30612, + 657 + ], + [ + 365305, + 31775, + 587 + ], + [ + 365424, + 31434, + 4664 + ], + [ + 364872, + 30835, + 641 + ], + [ + 364801, + 30788, + 601 + ], + [ + 365792, + 31318, + 8404 + ], + [ + 365065, + 31680, + 625 + ], + [ + 365266, + 31454, + 629 + ], + [ + 365022, + 30559, + 6192 + ], + [ + 364869, + 30744, + 8133 + ], + [ + 365288, + 31845, + 6212 + ], + [ + 365718, + 31430, + 605 + ], + [ + 365157, + 30489, + 6060 + ], + [ + 365165, + 30847, + 8591 + ], + [ + 365223, + 31118, + 641 + ], + [ + 365089, + 31192, + 655 + ], + [ + 365515, + 30988, + 4927 + ], + [ + 365399, + 31124, + 674 + ], + [ + 365175, + 30760, + 622 + ], + [ + 365116, + 30707, + 646 + ], + [ + 365424, + 30671, + 657 + ], + [ + 364929, + 30793, + 7278 + ], + [ + 365649, + 31269, + 6353 + ], + [ + 365479, + 31434, + 3918 + ], + [ + 365529, + 31302, + 3343 + ], + [ + 365014, + 31232, + 5811 + ], + [ + 365584, + 31222, + 2660 + ], + [ + 364889, + 31449, + 600 + ], + [ + 366165, + 31028, + 523 + ], + [ + 365758, + 31770, + 532 + ], + [ + 365673, + 31069, + 641 + ], + [ + 364842, + 32061, + 502 + ], + [ + 405848, + 92968, + 765 + ], + [ + 405803, + 92632, + 760 + ], + [ + 406316, + 93195, + 739 + ], + [ + 397226, + 84471, + 828 + ], + [ + 397597, + 84002, + 838 + ], + [ + 401568, + 85663, + 1308 + ], + [ + 401893, + 85562, + 828 + ], + [ + 401970, + 85898, + 1298 + ], + [ + 396633, + 86764, + 841 + ], + [ + 401776, + 91647, + 5308 + ], + [ + 401468, + 88166, + 828 + ], + [ + 401001, + 87972, + 1238 + ], + [ + 401421, + 87809, + 826 + ], + [ + 402261, + 88238, + 1028 + ], + [ + 402204, + 87921, + 815 + ], + [ + 405181, + 87934, + 763 + ], + [ + 404710, + 87730, + 1150 + ], + [ + 405137, + 87616, + 747 + ], + [ + 408809, + 90763, + 735 + ], + [ + 406992, + 89100, + 793 + ], + [ + 406714, + 89179, + 793 + ], + [ + 404028, + 93145, + 797 + ], + [ + 403940, + 92494, + 765 + ], + [ + 404359, + 92347, + 774 + ], + [ + 400566, + 84937, + 781 + ], + [ + 400051, + 84410, + 1252 + ], + [ + 400526, + 84623, + 808 + ], + [ + 400431, + 90277, + 1954 + ], + [ + 400856, + 90480, + 1251 + ], + [ + 400422, + 90591, + 1246 + ], + [ + 397658, + 87492, + 1275 + ], + [ + 395287, + 86201, + 838 + ], + [ + 399095, + 83698, + 922 + ], + [ + 399164, + 84018, + 1285 + ], + [ + 398798, + 84196, + 1208 + ], + [ + 395688, + 86059, + 1345 + ], + [ + 395282, + 85888, + 1353 + ], + [ + 398053, + 84893, + 842 + ], + [ + 398460, + 84285, + 848 + ], + [ + 398415, + 83965, + 820 + ], + [ + 402487, + 91834, + 8361 + ], + [ + 402888, + 92345, + 7463 + ], + [ + 404962, + 93223, + 832 + ], + [ + 405420, + 93103, + 1115 + ], + [ + 402150, + 90832, + 5478 + ], + [ + 401786, + 90508, + 924 + ], + [ + 402597, + 91024, + 5821 + ], + [ + 403118, + 91562, + 6940 + ], + [ + 402713, + 91346, + 6858 + ], + [ + 402254, + 91528, + 5632 + ], + [ + 402248, + 91169, + 6226 + ], + [ + 403398, + 92705, + 784 + ], + [ + 403619, + 92599, + 833 + ], + [ + 402749, + 92041, + 6059 + ], + [ + 402674, + 91686, + 5658 + ], + [ + 403311, + 92578, + 7771 + ], + [ + 403638, + 92448, + 8302 + ], + [ + 403950, + 92254, + 6120 + ], + [ + 403276, + 92225, + 7921 + ], + [ + 403671, + 92337, + 5313 + ], + [ + 400129, + 90401, + 2950 + ], + [ + 400072, + 90068, + 2774 + ], + [ + 401638, + 91334, + 3941 + ], + [ + 401703, + 91002, + 5490 + ], + [ + 400992, + 91126, + 1956 + ], + [ + 398449, + 89383, + 2813 + ], + [ + 399362, + 89993, + 2909 + ], + [ + 401465, + 90669, + 2746 + ], + [ + 403873, + 91921, + 5654 + ], + [ + 403667, + 92007, + 5870 + ], + [ + 401275, + 90313, + 733 + ], + [ + 400917, + 90812, + 1502 + ], + [ + 398942, + 89122, + 2347 + ], + [ + 398396, + 89071, + 2656 + ], + [ + 403473, + 92128, + 6576 + ], + [ + 403216, + 91889, + 7702 + ], + [ + 397421, + 88651, + 2351 + ], + [ + 398694, + 88891, + 2421 + ], + [ + 398662, + 88562, + 2593 + ], + [ + 398789, + 88780, + 823 + ], + [ + 398354, + 88713, + 2728 + ], + [ + 398175, + 88366, + 846 + ], + [ + 397714, + 88162, + 819 + ], + [ + 399077, + 88984, + 786 + ], + [ + 399053, + 88670, + 1030 + ], + [ + 397899, + 88531, + 2726 + ], + [ + 397938, + 88844, + 2701 + ], + [ + 398755, + 88447, + 967 + ], + [ + 399844, + 89415, + 792 + ], + [ + 399483, + 89543, + 868 + ], + [ + 399435, + 89226, + 787 + ], + [ + 400332, + 89943, + 1183 + ], + [ + 399887, + 89749, + 771 + ], + [ + 400259, + 89608, + 804 + ], + [ + 399700, + 90217, + 2654 + ], + [ + 399248, + 89320, + 2571 + ], + [ + 399291, + 89663, + 2529 + ], + [ + 399641, + 89872, + 2480 + ], + [ + 400777, + 90136, + 779 + ], + [ + 399832, + 89074, + 1254 + ], + [ + 400213, + 89248, + 803 + ], + [ + 400600, + 88791, + 795 + ], + [ + 399009, + 89453, + 2674 + ], + [ + 397180, + 87636, + 839 + ], + [ + 398522, + 88215, + 1252 + ], + [ + 398145, + 88035, + 1043 + ], + [ + 398800, + 89594, + 2613 + ], + [ + 395562, + 85380, + 839 + ], + [ + 396069, + 85916, + 873 + ], + [ + 396449, + 85112, + 1325 + ], + [ + 396823, + 84940, + 845 + ], + [ + 395603, + 85714, + 796 + ], + [ + 396056, + 85573, + 1327 + ], + [ + 405660, + 88175, + 862 + ], + [ + 401101, + 85138, + 1304 + ], + [ + 400203, + 88933, + 1258 + ], + [ + 400590, + 88456, + 1285 + ], + [ + 396730, + 84266, + 797 + ], + [ + 397217, + 84143, + 1312 + ], + [ + 403185, + 86776, + 807 + ], + [ + 402559, + 86342, + 818 + ], + [ + 402775, + 86228, + 823 + ], + [ + 398547, + 84960, + 837 + ], + [ + 398535, + 84622, + 1278 + ], + [ + 399581, + 84237, + 1271 + ], + [ + 399502, + 83870, + 834 + ], + [ + 403427, + 91792, + 6548 + ], + [ + 397670, + 87821, + 830 + ], + [ + 401015, + 88309, + 806 + ], + [ + 401888, + 88335, + 826 + ], + [ + 399588, + 84540, + 813 + ], + [ + 404724, + 88047, + 752 + ], + [ + 404224, + 87492, + 1136 + ], + [ + 402012, + 86215, + 1288 + ], + [ + 406455, + 89284, + 778 + ], + [ + 406441, + 88927, + 1243 + ], + [ + 406169, + 89053, + 947 + ], + [ + 405727, + 88497, + 1220 + ], + [ + 405234, + 88268, + 877 + ], + [ + 402275, + 86130, + 855 + ], + [ + 403676, + 86974, + 1192 + ], + [ + 404165, + 87172, + 899 + ], + [ + 397145, + 83822, + 898 + ], + [ + 397583, + 83669, + 1267 + ], + [ + 398333, + 85097, + 1267 + ], + [ + 396814, + 84629, + 1309 + ], + [ + 395972, + 85235, + 779 + ], + [ + 408011, + 91941, + 670 + ], + [ + 396110, + 86246, + 827 + ], + [ + 399179, + 84372, + 829 + ], + [ + 401378, + 87492, + 816 + ], + [ + 409310, + 90643, + 580 + ], + [ + 408871, + 91094, + 977 + ], + [ + 405903, + 93282, + 960 + ], + [ + 397156, + 87302, + 1126 + ], + [ + 257660, + 76766, + 474 + ], + [ + 258320, + 76390, + 382 + ], + [ + 256272, + 77590, + 5082 + ], + [ + 257463, + 75582, + 8736 + ], + [ + 257533, + 75828, + 489 + ], + [ + 257368, + 75687, + 9317 + ], + [ + 258098, + 76512, + 10150 + ], + [ + 257929, + 76304, + 452 + ], + [ + 256827, + 77082, + 5075 + ], + [ + 256897, + 76894, + 503 + ], + [ + 256989, + 76978, + 8798 + ], + [ + 257143, + 76487, + 5011 + ], + [ + 256856, + 76576, + 518 + ], + [ + 256835, + 76510, + 753 + ], + [ + 256986, + 76820, + 4629 + ], + [ + 256816, + 76766, + 10072 + ], + [ + 257717, + 76034, + 513 + ], + [ + 257883, + 75959, + 463 + ], + [ + 256618, + 76789, + 511 + ], + [ + 257170, + 75717, + 494 + ], + [ + 257524, + 75098, + 422 + ], + [ + 257484, + 75481, + 474 + ], + [ + 256805, + 76216, + 486 + ], + [ + 256237, + 76497, + 502 + ], + [ + 255525, + 76325, + 402 + ], + [ + 257849, + 76483, + 7500 + ], + [ + 257836, + 75626, + 438 + ], + [ + 256836, + 76840, + 2427 + ], + [ + 256781, + 76988, + 5083 + ], + [ + 255944, + 76620, + 437 + ], + [ + 255571, + 76400, + 450 + ], + [ + 256274, + 76845, + 10386 + ], + [ + 256280, + 76944, + 470 + ], + [ + 256224, + 77417, + 501 + ], + [ + 256363, + 76973, + 9417 + ], + [ + 256456, + 77106, + 446 + ], + [ + 256494, + 77437, + 345 + ], + [ + 256984, + 77074, + 452 + ], + [ + 257055, + 76936, + 10281 + ], + [ + 257151, + 76869, + 5909 + ], + [ + 256933, + 76874, + 3092 + ], + [ + 256952, + 76843, + 3831 + ], + [ + 257574, + 76383, + 507 + ], + [ + 257620, + 76500, + 446 + ], + [ + 257331, + 76456, + 7888 + ], + [ + 257503, + 75915, + 7296 + ], + [ + 257435, + 76066, + 524 + ], + [ + 257374, + 75770, + 525 + ], + [ + 257302, + 76696, + 504 + ], + [ + 257298, + 76184, + 5468 + ], + [ + 257092, + 76286, + 7668 + ], + [ + 257182, + 76081, + 523 + ], + [ + 257360, + 75734, + 8460 + ], + [ + 257073, + 75787, + 529 + ], + [ + 257087, + 76861, + 5244 + ], + [ + 257654, + 75806, + 7493 + ], + [ + 257858, + 75801, + 6046 + ], + [ + 257686, + 75597, + 7218 + ], + [ + 257785, + 76337, + 492 + ], + [ + 257258, + 76377, + 475 + ], + [ + 257464, + 76235, + 6741 + ], + [ + 257259, + 76456, + 511 + ], + [ + 257201, + 76486, + 5759 + ], + [ + 257669, + 75660, + 497 + ], + [ + 257606, + 75624, + 5809 + ], + [ + 257601, + 76305, + 7298 + ], + [ + 257495, + 76009, + 5655 + ], + [ + 257579, + 76184, + 470 + ], + [ + 257260, + 76488, + 6467 + ], + [ + 256928, + 77126, + 5621 + ], + [ + 256643, + 77222, + 460 + ], + [ + 257132, + 76753, + 7565 + ], + [ + 256619, + 77364, + 6288 + ], + [ + 256272, + 77590, + 352 + ], + [ + 319504, + 44408, + 974 + ], + [ + 318764, + 44853, + 874 + ], + [ + 319117, + 44138, + 1103 + ], + [ + 317833, + 43577, + 832 + ], + [ + 319570, + 44456, + 6877 + ], + [ + 319792, + 44507, + 922 + ], + [ + 318349, + 45064, + 852 + ], + [ + 319228, + 43038, + 922 + ], + [ + 319414, + 43727, + 991 + ], + [ + 319459, + 44066, + 992 + ], + [ + 319441, + 44005, + 5918 + ], + [ + 290189, + 71039, + 831 + ], + [ + 290865, + 71171, + 412 + ], + [ + 289513, + 71907, + 392 + ], + [ + 289324, + 71513, + 433 + ], + [ + 288857, + 70586, + 6222 + ], + [ + 289345, + 70694, + 7806 + ], + [ + 289900, + 70918, + 3070 + ], + [ + 289743, + 71111, + 625 + ], + [ + 289672, + 70265, + 7285 + ], + [ + 290119, + 70660, + 575 + ], + [ + 290469, + 70563, + 586 + ], + [ + 290292, + 70586, + 8899 + ], + [ + 290316, + 70296, + 9736 + ], + [ + 290167, + 69875, + 7282 + ], + [ + 289909, + 71017, + 9104 + ], + [ + 290095, + 70767, + 5951 + ], + [ + 290069, + 70308, + 546 + ], + [ + 289362, + 70410, + 8536 + ], + [ + 289242, + 70842, + 528 + ], + [ + 290167, + 69875, + 452 + ], + [ + 288857, + 70586, + 342 + ], + [ + 351664, + 48517, + 370 + ], + [ + 351943, + 48471, + 292 + ], + [ + 350543, + 48895, + 292 + ], + [ + 351016, + 48572, + 412 + ], + [ + 351440, + 48468, + 6437 + ], + [ + 350708, + 47930, + 458 + ], + [ + 350439, + 47532, + 6244 + ], + [ + 350711, + 47722, + 4867 + ], + [ + 351266, + 48205, + 467 + ], + [ + 351392, + 48129, + 6393 + ], + [ + 350663, + 47571, + 491 + ], + [ + 351606, + 48306, + 4966 + ], + [ + 351724, + 48165, + 6849 + ], + [ + 351595, + 47745, + 5835 + ], + [ + 351288, + 47168, + 6703 + ], + [ + 350119, + 47501, + 252 + ], + [ + 351227, + 47646, + 4994 + ], + [ + 351580, + 47858, + 425 + ], + [ + 351367, + 47532, + 7134 + ], + [ + 351483, + 47167, + 350 + ], + [ + 351518, + 47075, + 5202 + ], + [ + 350748, + 48245, + 436 + ], + [ + 350743, + 48025, + 4758 + ], + [ + 350512, + 48618, + 454 + ], + [ + 350975, + 48215, + 492 + ], + [ + 351518, + 47075, + 252 + ], + [ + 444200, + 50096, + 2060 + ], + [ + 444255, + 50187, + 2012 + ], + [ + 444132, + 50068, + 2022 + ], + [ + 444166, + 49786, + 2149 + ], + [ + 444009, + 49948, + 2032 + ], + [ + 444557, + 49698, + 2113 + ], + [ + 444520, + 49369, + 2187 + ], + [ + 445112, + 49326, + 1982 + ], + [ + 444839, + 49120, + 7107 + ], + [ + 444867, + 49086, + 2012 + ], + [ + 444989, + 49206, + 2002 + ], + [ + 444745, + 48965, + 2042 + ], + [ + 444502, + 48723, + 2052 + ], + [ + 444623, + 48844, + 2042 + ], + [ + 444121, + 49260, + 6741 + ], + [ + 444040, + 48775, + 2233 + ], + [ + 444381, + 48601, + 2062 + ], + [ + 443832, + 49544, + 2175 + ], + [ + 443502, + 49337, + 2201 + ], + [ + 443793, + 49230, + 2208 + ], + [ + 443524, + 49463, + 2052 + ], + [ + 443644, + 49585, + 2052 + ], + [ + 444455, + 49499, + 6700 + ], + [ + 443887, + 49828, + 2052 + ], + [ + 444534, + 49857, + 7169 + ], + [ + 443766, + 49707, + 2052 + ], + [ + 444261, + 48479, + 2062 + ], + [ + 443404, + 49341, + 2062 + ], + [ + 357691, + 46075, + 534 + ], + [ + 358651, + 46461, + 292 + ], + [ + 357235, + 46901, + 292 + ], + [ + 357200, + 45379, + 340 + ], + [ + 357902, + 45385, + 473 + ], + [ + 357643, + 45712, + 532 + ], + [ + 358217, + 45035, + 4112 + ], + [ + 358119, + 45084, + 838 + ], + [ + 357874, + 45159, + 4752 + ], + [ + 357960, + 45723, + 679 + ], + [ + 358179, + 45729, + 485 + ], + [ + 356798, + 45467, + 252 + ], + [ + 358498, + 46091, + 386 + ], + [ + 357870, + 45720, + 3668 + ], + [ + 358154, + 45142, + 4424 + ], + [ + 358183, + 45463, + 1022 + ], + [ + 358217, + 45035, + 262 + ], + [ + 313265, + 59661, + 2739 + ], + [ + 313687, + 59589, + 501 + ], + [ + 313132, + 59823, + 604 + ], + [ + 313359, + 59004, + 472 + ], + [ + 313213, + 58862, + 5692 + ], + [ + 313421, + 58788, + 5882 + ], + [ + 313067, + 59112, + 6831 + ], + [ + 313036, + 59158, + 496 + ], + [ + 313005, + 58936, + 5692 + ], + [ + 313408, + 59353, + 497 + ], + [ + 312798, + 59010, + 5692 + ], + [ + 312597, + 59470, + 5693 + ], + [ + 312675, + 59592, + 544 + ], + [ + 312590, + 59085, + 5512 + ], + [ + 313550, + 58755, + 8333 + ], + [ + 313551, + 59044, + 7822 + ], + [ + 312694, + 59861, + 6315 + ], + [ + 312176, + 59236, + 5672 + ], + [ + 312670, + 60586, + 402 + ], + [ + 312723, + 59940, + 565 + ], + [ + 313629, + 58715, + 5962 + ], + [ + 314093, + 60074, + 382 + ], + [ + 313640, + 59244, + 472 + ], + [ + 313074, + 59683, + 5891 + ], + [ + 312383, + 59160, + 5692 + ], + [ + 313629, + 58715, + 382 + ], + [ + 312176, + 59236, + 382 + ], + [ + 236456, + 90010, + 494 + ], + [ + 236695, + 89927, + 458 + ], + [ + 237065, + 90217, + 459 + ], + [ + 236305, + 90148, + 426 + ], + [ + 236637, + 90778, + 352 + ], + [ + 235851, + 89585, + 382 + ], + [ + 236873, + 89472, + 483 + ], + [ + 236602, + 89252, + 431 + ], + [ + 236997, + 89421, + 435 + ], + [ + 236956, + 89807, + 5800 + ], + [ + 236794, + 89848, + 7361 + ], + [ + 236652, + 89611, + 450 + ], + [ + 236237, + 89756, + 8024 + ], + [ + 236249, + 89511, + 6080 + ], + [ + 236346, + 89667, + 481 + ], + [ + 237127, + 90410, + 377 + ], + [ + 237866, + 89947, + 1292 + ], + [ + 236592, + 89567, + 498 + ], + [ + 236566, + 89500, + 5958 + ], + [ + 237662, + 90023, + 403 + ], + [ + 237719, + 89769, + 6138 + ], + [ + 237727, + 90023, + 7183 + ], + [ + 236262, + 89807, + 476 + ], + [ + 236476, + 89925, + 8250 + ], + [ + 237122, + 88899, + 432 + ], + [ + 237126, + 88902, + 6557 + ], + [ + 237061, + 88797, + 392 + ], + [ + 236211, + 89449, + 438 + ], + [ + 237293, + 89542, + 428 + ], + [ + 237620, + 89699, + 438 + ], + [ + 237562, + 89731, + 4816 + ], + [ + 237369, + 89807, + 6280 + ], + [ + 237089, + 90095, + 437 + ], + [ + 237258, + 89232, + 516 + ], + [ + 236344, + 89954, + 6137 + ], + [ + 237227, + 89741, + 487 + ], + [ + 237238, + 89799, + 3047 + ], + [ + 236955, + 89846, + 490 + ], + [ + 237338, + 89877, + 414 + ], + [ + 237613, + 89728, + 5489 + ], + [ + 237605, + 90034, + 432 + ], + [ + 237374, + 89914, + 4571 + ], + [ + 237379, + 90192, + 402 + ], + [ + 237324, + 89918, + 3889 + ], + [ + 237150, + 89971, + 876 + ], + [ + 237866, + 89947, + 382 + ], + [ + 225695, + 98016, + 430 + ], + [ + 226647, + 97516, + 302 + ], + [ + 225485, + 98283, + 332 + ], + [ + 226023, + 97389, + 446 + ], + [ + 226245, + 97170, + 6824 + ], + [ + 226140, + 97489, + 7083 + ], + [ + 225868, + 96287, + 362 + ], + [ + 225579, + 96510, + 9356 + ], + [ + 224683, + 97092, + 382 + ], + [ + 225905, + 97742, + 7554 + ], + [ + 226330, + 97546, + 390 + ], + [ + 225717, + 97984, + 8901 + ], + [ + 225622, + 97952, + 8230 + ], + [ + 225709, + 97661, + 6411 + ], + [ + 225437, + 97814, + 396 + ], + [ + 225677, + 97537, + 484 + ], + [ + 225306, + 96832, + 438 + ], + [ + 225590, + 96729, + 473 + ], + [ + 225648, + 97091, + 7485 + ], + [ + 225950, + 96510, + 5366 + ], + [ + 226070, + 96664, + 442 + ], + [ + 225483, + 98158, + 381 + ], + [ + 225863, + 96981, + 5164 + ], + [ + 225777, + 96668, + 424 + ], + [ + 225737, + 96415, + 380 + ], + [ + 225906, + 96526, + 4544 + ], + [ + 226280, + 97184, + 383 + ], + [ + 225351, + 97165, + 440 + ], + [ + 225680, + 97125, + 477 + ], + [ + 225740, + 97639, + 7170 + ], + [ + 225965, + 96754, + 4757 + ], + [ + 225833, + 96720, + 443 + ], + [ + 225918, + 97702, + 411 + ], + [ + 226168, + 96977, + 422 + ], + [ + 226155, + 96825, + 5966 + ], + [ + 225997, + 97050, + 5707 + ], + [ + 225932, + 96990, + 451 + ], + [ + 225971, + 97045, + 2381 + ], + [ + 225889, + 96635, + 5767 + ], + [ + 228175, + 111005, + 485 + ], + [ + 229068, + 110607, + 422 + ], + [ + 227821, + 111425, + 412 + ], + [ + 228040, + 110228, + 3056 + ], + [ + 228040, + 110127, + 4744 + ], + [ + 228110, + 110061, + 1139 + ], + [ + 228087, + 109985, + 1182 + ], + [ + 228381, + 110198, + 575 + ], + [ + 228643, + 110160, + 641 + ], + [ + 228871, + 110312, + 1007 + ], + [ + 228688, + 110422, + 512 + ], + [ + 228444, + 110531, + 829 + ], + [ + 228566, + 110178, + 7451 + ], + [ + 228723, + 110517, + 1310 + ], + [ + 228486, + 110682, + 1132 + ], + [ + 228017, + 110007, + 6140 + ], + [ + 227974, + 109966, + 6590 + ], + [ + 228253, + 109566, + 642 + ], + [ + 228638, + 110064, + 510 + ], + [ + 228077, + 110010, + 7178 + ], + [ + 228037, + 109678, + 7046 + ], + [ + 228270, + 109388, + 372 + ], + [ + 227995, + 109682, + 487 + ], + [ + 227022, + 110204, + 362 + ], + [ + 228035, + 110069, + 5655 + ], + [ + 228469, + 110538, + 5418 + ], + [ + 227679, + 110102, + 575 + ], + [ + 227983, + 110388, + 4948 + ], + [ + 227736, + 110556, + 1180 + ], + [ + 227580, + 110466, + 713 + ], + [ + 227972, + 110267, + 1526 + ], + [ + 227874, + 109899, + 838 + ], + [ + 227717, + 110804, + 502 + ], + [ + 325225, + 55903, + 507 + ], + [ + 325584, + 55967, + 5469 + ], + [ + 325550, + 56156, + 476 + ], + [ + 325690, + 54950, + 8859 + ], + [ + 325653, + 55055, + 414 + ], + [ + 325418, + 55181, + 431 + ], + [ + 325914, + 54843, + 4902 + ], + [ + 324467, + 55302, + 342 + ], + [ + 325835, + 55895, + 4963 + ], + [ + 326102, + 55993, + 410 + ], + [ + 325753, + 55227, + 5056 + ], + [ + 325209, + 55148, + 6735 + ], + [ + 324779, + 55269, + 414 + ], + [ + 325133, + 55216, + 492 + ], + [ + 325248, + 55473, + 6669 + ], + [ + 325703, + 55404, + 461 + ], + [ + 326005, + 55307, + 334 + ], + [ + 325754, + 55772, + 506 + ], + [ + 324891, + 56638, + 332 + ], + [ + 325510, + 55839, + 505 + ], + [ + 326350, + 56217, + 322 + ], + [ + 325914, + 54843, + 302 + ], + [ + 242648, + 86558, + 2798 + ], + [ + 242386, + 86615, + 6442 + ], + [ + 242323, + 86504, + 7487 + ], + [ + 241696, + 85772, + 7795 + ], + [ + 241814, + 85858, + 461 + ], + [ + 241411, + 85851, + 372 + ], + [ + 242625, + 85015, + 402 + ], + [ + 242634, + 86079, + 504 + ], + [ + 242542, + 85773, + 4851 + ], + [ + 242646, + 85726, + 5019 + ], + [ + 241861, + 86206, + 457 + ], + [ + 242174, + 86154, + 7504 + ], + [ + 242545, + 85402, + 529 + ], + [ + 242295, + 86318, + 476 + ], + [ + 243068, + 86153, + 430 + ], + [ + 242934, + 85856, + 5019 + ], + [ + 243028, + 85833, + 476 + ], + [ + 242251, + 85953, + 549 + ], + [ + 242246, + 86539, + 5920 + ], + [ + 242396, + 86173, + 5936 + ], + [ + 242905, + 86532, + 6417 + ], + [ + 243330, + 86254, + 4912 + ], + [ + 242225, + 87001, + 332 + ], + [ + 242670, + 86387, + 423 + ], + [ + 242336, + 86662, + 398 + ], + [ + 242750, + 86367, + 2366 + ], + [ + 242996, + 86331, + 6016 + ], + [ + 243268, + 86184, + 5294 + ], + [ + 242949, + 86340, + 5288 + ], + [ + 242926, + 86369, + 4549 + ], + [ + 242936, + 86457, + 8022 + ], + [ + 243330, + 86254, + 322 + ], + [ + 273500, + 118972, + 1245 + ], + [ + 273993, + 119433, + 991 + ], + [ + 273575, + 119659, + 1027 + ], + [ + 273710, + 120657, + 1029 + ], + [ + 273477, + 120423, + 3742 + ], + [ + 273670, + 120307, + 1119 + ], + [ + 274183, + 120750, + 1170 + ], + [ + 273135, + 119225, + 1292 + ], + [ + 274041, + 119774, + 1026 + ], + [ + 273639, + 119958, + 1342 + ], + [ + 273253, + 120233, + 1062 + ], + [ + 273335, + 120912, + 942 + ], + [ + 275325, + 119264, + 1200 + ], + [ + 274313, + 118524, + 964 + ], + [ + 273088, + 118888, + 1273 + ], + [ + 273437, + 118628, + 1016 + ], + [ + 274217, + 121104, + 972 + ], + [ + 273816, + 118072, + 1078 + ], + [ + 274893, + 119967, + 1028 + ], + [ + 274850, + 119644, + 1032 + ], + [ + 272708, + 119457, + 929 + ], + [ + 275609, + 119408, + 1167 + ], + [ + 275142, + 119743, + 1246 + ], + [ + 275356, + 119593, + 1020 + ], + [ + 233905, + 107214, + 610 + ], + [ + 234087, + 106989, + 1148 + ], + [ + 234313, + 107192, + 521 + ], + [ + 233156, + 106697, + 5394 + ], + [ + 233707, + 107601, + 402 + ], + [ + 232895, + 106360, + 372 + ], + [ + 233571, + 106312, + 545 + ], + [ + 233833, + 106241, + 548 + ], + [ + 233833, + 106501, + 724 + ], + [ + 233962, + 106319, + 673 + ], + [ + 233894, + 106505, + 1427 + ], + [ + 233959, + 106462, + 2954 + ], + [ + 233876, + 106546, + 5702 + ], + [ + 233857, + 106575, + 4964 + ], + [ + 233945, + 106749, + 5589 + ], + [ + 234137, + 106464, + 695 + ], + [ + 233509, + 106004, + 409 + ], + [ + 233669, + 106192, + 7996 + ], + [ + 233611, + 105891, + 542 + ], + [ + 234079, + 105586, + 362 + ], + [ + 234060, + 105859, + 499 + ], + [ + 233745, + 105977, + 474 + ], + [ + 234012, + 106052, + 7812 + ], + [ + 233952, + 106463, + 8013 + ], + [ + 234011, + 106169, + 644 + ], + [ + 234430, + 106139, + 528 + ], + [ + 234450, + 106534, + 493 + ], + [ + 234922, + 106799, + 392 + ], + [ + 234534, + 106772, + 605 + ], + [ + 234036, + 106367, + 7538 + ], + [ + 234387, + 106601, + 5984 + ], + [ + 233826, + 106806, + 767 + ], + [ + 233232, + 106340, + 7097 + ], + [ + 233499, + 106559, + 739 + ], + [ + 233526, + 106581, + 5317 + ], + [ + 233245, + 106380, + 498 + ], + [ + 233227, + 106704, + 506 + ], + [ + 234493, + 106857, + 483 + ], + [ + 380062, + 88166, + 1276 + ], + [ + 380404, + 87761, + 1332 + ], + [ + 380066, + 88494, + 718 + ], + [ + 380610, + 87008, + 666 + ], + [ + 380669, + 87334, + 892 + ], + [ + 380358, + 87400, + 1354 + ], + [ + 380023, + 87847, + 1324 + ], + [ + 380706, + 87692, + 739 + ], + [ + 381425, + 86506, + 1201 + ], + [ + 381811, + 86065, + 776 + ], + [ + 381349, + 86159, + 779 + ], + [ + 381001, + 86596, + 1288 + ], + [ + 381041, + 86953, + 1186 + ], + [ + 381807, + 85741, + 1330 + ], + [ + 382496, + 84855, + 1118 + ], + [ + 382774, + 84772, + 738 + ], + [ + 382512, + 85183, + 746 + ], + [ + 382113, + 84937, + 1236 + ], + [ + 379700, + 88572, + 825 + ], + [ + 394438, + 73491, + 1086 + ], + [ + 393725, + 74439, + 785 + ], + [ + 397557, + 77247, + 1245 + ], + [ + 396610, + 76590, + 755 + ], + [ + 397695, + 76105, + 758 + ], + [ + 398137, + 76299, + 1222 + ], + [ + 396459, + 75282, + 1064 + ], + [ + 398563, + 76818, + 772 + ], + [ + 398547, + 76500, + 1144 + ], + [ + 395164, + 75699, + 791 + ], + [ + 395692, + 76240, + 1154 + ], + [ + 395204, + 76033, + 745 + ], + [ + 397609, + 77912, + 738 + ], + [ + 397339, + 77695, + 1036 + ], + [ + 397051, + 75682, + 737 + ], + [ + 397296, + 75548, + 735 + ], + [ + 397648, + 75763, + 729 + ], + [ + 397249, + 75205, + 718 + ], + [ + 396802, + 75479, + 750 + ], + [ + 395940, + 74730, + 888 + ], + [ + 396422, + 74963, + 1140 + ], + [ + 395906, + 74417, + 1004 + ], + [ + 396755, + 75120, + 746 + ], + [ + 396705, + 77297, + 775 + ], + [ + 397023, + 77127, + 793 + ], + [ + 397074, + 77486, + 839 + ], + [ + 397311, + 77381, + 1237 + ], + [ + 396659, + 76952, + 760 + ], + [ + 396201, + 76756, + 769 + ], + [ + 394907, + 73674, + 958 + ], + [ + 394945, + 74002, + 877 + ], + [ + 398489, + 76175, + 926 + ], + [ + 395423, + 74214, + 1142 + ], + [ + 395438, + 74534, + 762 + ], + [ + 395350, + 73883, + 740 + ], + [ + 394455, + 73794, + 764 + ], + [ + 396155, + 76409, + 783 + ], + [ + 370864, + 97644, + 3885 + ], + [ + 370590, + 97369, + 617 + ], + [ + 370682, + 98048, + 641 + ], + [ + 371063, + 97689, + 614 + ], + [ + 231576, + 94181, + 8287 + ], + [ + 232240, + 93746, + 832 + ], + [ + 231033, + 94561, + 322 + ], + [ + 231157, + 94423, + 6740 + ], + [ + 231535, + 93174, + 7241 + ], + [ + 231642, + 93118, + 9482 + ], + [ + 231732, + 93158, + 444 + ], + [ + 231828, + 93547, + 4820 + ], + [ + 231835, + 93582, + 8406 + ], + [ + 231546, + 93732, + 2335 + ], + [ + 231431, + 93771, + 6090 + ], + [ + 231484, + 93715, + 7663 + ], + [ + 231866, + 93845, + 421 + ], + [ + 231845, + 93797, + 5035 + ], + [ + 231135, + 93284, + 478 + ], + [ + 230974, + 93301, + 466 + ], + [ + 231204, + 93163, + 7388 + ], + [ + 231829, + 94004, + 349 + ], + [ + 231062, + 93981, + 407 + ], + [ + 230603, + 93485, + 427 + ], + [ + 230935, + 93735, + 469 + ], + [ + 231519, + 92884, + 7130 + ], + [ + 231464, + 92556, + 362 + ], + [ + 231700, + 93031, + 402 + ], + [ + 231225, + 93077, + 9048 + ], + [ + 231344, + 93162, + 448 + ], + [ + 231351, + 92868, + 454 + ], + [ + 231388, + 93478, + 452 + ], + [ + 231341, + 93634, + 7183 + ], + [ + 231232, + 93605, + 498 + ], + [ + 231297, + 92827, + 421 + ], + [ + 230911, + 93362, + 477 + ], + [ + 231017, + 93623, + 457 + ], + [ + 231079, + 92960, + 457 + ], + [ + 231145, + 92870, + 7348 + ], + [ + 230239, + 93341, + 352 + ], + [ + 231476, + 94162, + 387 + ], + [ + 231672, + 93537, + 7102 + ], + [ + 231503, + 93563, + 501 + ], + [ + 231744, + 93355, + 400 + ], + [ + 231575, + 93709, + 3070 + ], + [ + 231440, + 93743, + 840 + ], + [ + 231805, + 93092, + 7298 + ], + [ + 231788, + 93689, + 380 + ], + [ + 231681, + 93698, + 4594 + ], + [ + 231107, + 94324, + 387 + ], + [ + 231392, + 93887, + 3693 + ], + [ + 231277, + 93997, + 449 + ], + [ + 231794, + 93507, + 433 + ], + [ + 231209, + 94056, + 5767 + ], + [ + 231481, + 93868, + 5128 + ], + [ + 231782, + 93933, + 7812 + ], + [ + 231445, + 93841, + 565 + ], + [ + 230801, + 93579, + 8465 + ], + [ + 230800, + 93032, + 429 + ], + [ + 231416, + 93214, + 487 + ], + [ + 232240, + 93746, + 322 + ], + [ + 283009, + 126420, + 977 + ], + [ + 282753, + 126376, + 3377 + ], + [ + 282823, + 125930, + 5136 + ], + [ + 282961, + 126063, + 987 + ], + [ + 282507, + 125884, + 964 + ], + [ + 282916, + 125717, + 1000 + ], + [ + 282639, + 126848, + 993 + ], + [ + 338251, + 52214, + 414 + ], + [ + 339037, + 52418, + 282 + ], + [ + 337621, + 52826, + 272 + ], + [ + 338200, + 51864, + 6871 + ], + [ + 338261, + 51932, + 1082 + ], + [ + 337747, + 51942, + 388 + ], + [ + 337699, + 51596, + 351 + ], + [ + 338543, + 51695, + 5486 + ], + [ + 338638, + 51832, + 371 + ], + [ + 337633, + 51466, + 5759 + ], + [ + 338158, + 51528, + 383 + ], + [ + 338433, + 51287, + 4697 + ], + [ + 338592, + 51500, + 362 + ], + [ + 337577, + 51686, + 4564 + ], + [ + 337197, + 51436, + 4792 + ], + [ + 337270, + 51638, + 362 + ], + [ + 338607, + 51007, + 4242 + ], + [ + 338545, + 51149, + 343 + ], + [ + 338607, + 51007, + 262 + ], + [ + 337197, + 51436, + 352 + ], + [ + 288545, + 58816, + 582 + ], + [ + 289453, + 58746, + 332 + ], + [ + 288102, + 59478, + 362 + ], + [ + 288021, + 58231, + 512 + ], + [ + 287391, + 58140, + 382 + ], + [ + 288702, + 57428, + 392 + ], + [ + 288005, + 57900, + 875 + ], + [ + 392344, + 35797, + 531 + ], + [ + 392303, + 35443, + 617 + ], + [ + 392660, + 35311, + 555 + ], + [ + 392354, + 35175, + 565 + ], + [ + 392218, + 35423, + 2381 + ], + [ + 392252, + 35108, + 517 + ], + [ + 392616, + 34986, + 548 + ], + [ + 392290, + 34890, + 5972 + ], + [ + 392548, + 34705, + 5428 + ], + [ + 392697, + 34545, + 542 + ], + [ + 393122, + 35960, + 572 + ], + [ + 392903, + 35309, + 636 + ], + [ + 392299, + 35112, + 5752 + ], + [ + 391894, + 34857, + 456 + ], + [ + 391908, + 34803, + 4409 + ], + [ + 392074, + 34864, + 523 + ], + [ + 392669, + 34891, + 4380 + ], + [ + 392704, + 34651, + 7725 + ], + [ + 392205, + 34769, + 493 + ], + [ + 392377, + 34701, + 554 + ], + [ + 392693, + 35207, + 6545 + ], + [ + 392052, + 35293, + 539 + ], + [ + 392654, + 35016, + 584 + ], + [ + 391301, + 34964, + 332 + ], + [ + 392679, + 34560, + 551 + ], + [ + 392027, + 35723, + 593 + ], + [ + 392294, + 35807, + 998 + ], + [ + 391730, + 36393, + 462 + ], + [ + 392040, + 35919, + 528 + ], + [ + 292490, + 133321, + 1050 + ], + [ + 292699, + 132922, + 1042 + ], + [ + 292123, + 132749, + 1067 + ], + [ + 292469, + 132952, + 1436 + ], + [ + 265281, + 72011, + 475 + ], + [ + 265006, + 71739, + 5084 + ], + [ + 264955, + 71566, + 483 + ], + [ + 264365, + 72035, + 704 + ], + [ + 264678, + 71804, + 499 + ], + [ + 264894, + 72340, + 508 + ], + [ + 264304, + 71695, + 510 + ], + [ + 264679, + 71682, + 5642 + ], + [ + 265921, + 71975, + 382 + ], + [ + 264641, + 72718, + 372 + ], + [ + 263905, + 71427, + 422 + ], + [ + 264134, + 71442, + 5638 + ], + [ + 265141, + 70702, + 432 + ], + [ + 264589, + 71123, + 527 + ], + [ + 264942, + 71906, + 524 + ], + [ + 265136, + 72010, + 2138 + ], + [ + 265072, + 71974, + 1051 + ], + [ + 265158, + 71951, + 2528 + ], + [ + 251222, + 95632, + 506 + ], + [ + 252129, + 95198, + 616 + ], + [ + 251308, + 96135, + 402 + ], + [ + 251175, + 95277, + 530 + ], + [ + 251604, + 95154, + 612 + ], + [ + 251218, + 95470, + 5881 + ], + [ + 251300, + 94637, + 6610 + ], + [ + 251422, + 94657, + 620 + ], + [ + 251434, + 94673, + 5153 + ], + [ + 251696, + 94855, + 814 + ], + [ + 251982, + 94681, + 495 + ], + [ + 252191, + 94820, + 521 + ], + [ + 251369, + 95049, + 707 + ], + [ + 251406, + 95037, + 1400 + ], + [ + 251783, + 94503, + 602 + ], + [ + 251710, + 94061, + 392 + ], + [ + 251907, + 94530, + 5913 + ], + [ + 251167, + 95154, + 5776 + ], + [ + 251220, + 94612, + 6027 + ], + [ + 251474, + 94277, + 426 + ], + [ + 251416, + 94991, + 2266 + ], + [ + 251307, + 94339, + 4053 + ], + [ + 252527, + 95311, + 432 + ], + [ + 251653, + 94845, + 1865 + ], + [ + 251611, + 95018, + 6930 + ], + [ + 250479, + 94866, + 362 + ], + [ + 250763, + 94997, + 499 + ], + [ + 250824, + 94654, + 356 + ], + [ + 251084, + 95239, + 543 + ], + [ + 251154, + 94467, + 383 + ], + [ + 239753, + 102927, + 588 + ], + [ + 239400, + 102811, + 514 + ], + [ + 239717, + 102734, + 593 + ], + [ + 239112, + 103010, + 390 + ], + [ + 239596, + 103766, + 402 + ], + [ + 238778, + 102514, + 382 + ], + [ + 239531, + 102632, + 5288 + ], + [ + 239589, + 102636, + 5933 + ], + [ + 239869, + 103355, + 655 + ], + [ + 240818, + 102967, + 382 + ], + [ + 239391, + 102490, + 525 + ], + [ + 239709, + 102610, + 559 + ], + [ + 240073, + 102732, + 550 + ], + [ + 239332, + 103204, + 484 + ], + [ + 239071, + 102664, + 459 + ], + [ + 239802, + 102763, + 1186 + ], + [ + 239351, + 102452, + 502 + ], + [ + 239075, + 102582, + 478 + ], + [ + 239322, + 102309, + 4591 + ], + [ + 239472, + 102115, + 391 + ], + [ + 238873, + 102610, + 425 + ], + [ + 239030, + 102531, + 3997 + ], + [ + 239105, + 102886, + 4379 + ], + [ + 239199, + 102852, + 522 + ], + [ + 239999, + 101716, + 402 + ], + [ + 239794, + 103288, + 482 + ], + [ + 324671, + 41698, + 1344 + ], + [ + 325396, + 41173, + 6284 + ], + [ + 325424, + 41497, + 6082 + ], + [ + 324686, + 41788, + 7049 + ], + [ + 324918, + 42610, + 1262 + ], + [ + 324496, + 41121, + 1282 + ], + [ + 325523, + 41528, + 1506 + ], + [ + 325476, + 41182, + 1484 + ], + [ + 325871, + 40704, + 1481 + ], + [ + 325344, + 41925, + 4137 + ], + [ + 325154, + 41941, + 1445 + ], + [ + 325454, + 41812, + 5908 + ], + [ + 325581, + 41885, + 1665 + ], + [ + 326381, + 42114, + 1432 + ], + [ + 325123, + 42030, + 7079 + ], + [ + 325200, + 42286, + 1437 + ], + [ + 325933, + 40666, + 1412 + ], + [ + 273761, + 87688, + 801 + ], + [ + 273784, + 87082, + 622 + ], + [ + 274051, + 87469, + 5119 + ], + [ + 274561, + 88447, + 868 + ], + [ + 275093, + 88074, + 702 + ], + [ + 274284, + 89107, + 712 + ], + [ + 274109, + 87542, + 761 + ], + [ + 272990, + 88131, + 682 + ], + [ + 274173, + 87904, + 949 + ], + [ + 285686, + 72305, + 312 + ], + [ + 428971, + 39053, + 2362 + ], + [ + 427003, + 36824, + 2342 + ], + [ + 358541, + 145027, + 672 + ], + [ + 357373, + 146244, + 622 + ], + [ + 352038, + 140357, + 592 + ], + [ + 352888, + 139512, + 652 + ], + [ + 352016, + 140379, + 592 + ], + [ + 351993, + 140399, + 582 + ], + [ + 351969, + 140418, + 582 + ], + [ + 351944, + 140435, + 582 + ], + [ + 351917, + 140450, + 582 + ], + [ + 351890, + 140463, + 582 + ], + [ + 351862, + 140475, + 572 + ], + [ + 351833, + 140485, + 572 + ], + [ + 351803, + 140493, + 572 + ], + [ + 351773, + 140499, + 572 + ], + [ + 351743, + 140503, + 572 + ], + [ + 351712, + 140505, + 572 + ], + [ + 351682, + 140505, + 572 + ], + [ + 351651, + 140503, + 572 + ], + [ + 351621, + 140499, + 572 + ], + [ + 351591, + 140493, + 572 + ], + [ + 351561, + 140485, + 572 + ], + [ + 351533, + 140475, + 572 + ], + [ + 351504, + 140463, + 572 + ], + [ + 351477, + 140449, + 572 + ], + [ + 351451, + 140434, + 572 + ], + [ + 351425, + 140417, + 572 + ], + [ + 351401, + 140398, + 572 + ], + [ + 290282, + 74913, + 442 + ], + [ + 290265, + 74912, + 442 + ], + [ + 346457, + 52959, + 372 + ], + [ + 314609, + 63050, + 442 + ], + [ + 314861, + 62950, + 442 + ], + [ + 315114, + 62852, + 432 + ], + [ + 315368, + 62757, + 432 + ], + [ + 315623, + 62664, + 432 + ], + [ + 316135, + 62486, + 432 + ], + [ + 315878, + 62574, + 422 + ], + [ + 317094, + 62131, + 422 + ], + [ + 318056, + 61786, + 412 + ], + [ + 319021, + 61450, + 412 + ], + [ + 319989, + 61123, + 392 + ], + [ + 320961, + 60805, + 392 + ], + [ + 322913, + 60198, + 392 + ], + [ + 321936, + 60497, + 392 + ], + [ + 314358, + 63153, + 442 + ], + [ + 303245, + 67825, + 452 + ], + [ + 292721, + 73439, + 442 + ], + [ + 278719, + 82366, + 542 + ], + [ + 272842, + 80283, + 372 + ], + [ + 276235, + 78078, + 352 + ], + [ + 278316, + 76815, + 332 + ], + [ + 278901, + 77989, + 392 + ], + [ + 279315, + 81540, + 532 + ], + [ + 278509, + 82943, + 552 + ], + [ + 278467, + 83143, + 552 + ], + [ + 275794, + 84701, + 562 + ], + [ + 278636, + 82553, + 552 + ], + [ + 278566, + 82746, + 552 + ], + [ + 278814, + 82185, + 542 + ], + [ + 278922, + 82011, + 542 + ], + [ + 284555, + 78244, + 452 + ], + [ + 289063, + 75588, + 432 + ], + [ + 279042, + 81845, + 532 + ], + [ + 279174, + 81688, + 532 + ], + [ + 279467, + 81403, + 532 + ], + [ + 279628, + 81276, + 552 + ], + [ + 280727, + 80639, + 482 + ], + [ + 290134, + 74947, + 442 + ], + [ + 290149, + 74939, + 442 + ], + [ + 296979, + 70992, + 432 + ], + [ + 290165, + 74932, + 442 + ], + [ + 290181, + 74925, + 442 + ], + [ + 290197, + 74920, + 442 + ], + [ + 290214, + 74917, + 442 + ], + [ + 290231, + 74914, + 442 + ], + [ + 290248, + 74912, + 442 + ], + [ + 290299, + 74915, + 442 + ], + [ + 290316, + 74918, + 442 + ], + [ + 290333, + 74922, + 442 + ], + [ + 290349, + 74928, + 442 + ], + [ + 290365, + 74934, + 442 + ], + [ + 290380, + 74942, + 442 + ], + [ + 290395, + 74950, + 442 + ], + [ + 290409, + 74960, + 442 + ], + [ + 290423, + 74971, + 442 + ], + [ + 290436, + 74982, + 442 + ], + [ + 290448, + 74994, + 442 + ], + [ + 290459, + 75008, + 442 + ], + [ + 292875, + 74437, + 442 + ], + [ + 290469, + 75021, + 442 + ], + [ + 290478, + 75036, + 442 + ], + [ + 300126, + 69279, + 442 + ], + [ + 299619, + 69548, + 442 + ], + [ + 300636, + 69017, + 442 + ], + [ + 301151, + 68763, + 452 + ], + [ + 301669, + 68517, + 442 + ], + [ + 302191, + 68278, + 452 + ], + [ + 302716, + 68048, + 452 + ], + [ + 328220, + 33512, + 1192 + ], + [ + 329258, + 35019, + 1192 + ], + [ + 327735, + 33855, + 1192 + ], + [ + 325919, + 35856, + 1372 + ], + [ + 322980, + 33799, + 1192 + ], + [ + 322002, + 34091, + 1142 + ], + [ + 322529, + 33470, + 1162 + ], + [ + 325458, + 35906, + 1372 + ], + [ + 323484, + 35346, + 1342 + ], + [ + 323681, + 35468, + 1352 + ], + [ + 323886, + 35577, + 1352 + ], + [ + 324098, + 35670, + 1362 + ], + [ + 324316, + 35749, + 1372 + ], + [ + 324539, + 35812, + 1372 + ], + [ + 324766, + 35860, + 1372 + ], + [ + 324995, + 35891, + 1372 + ], + [ + 325227, + 35907, + 1372 + ], + [ + 325690, + 35889, + 1372 + ], + [ + 325701, + 118424, + 542 + ], + [ + 325020, + 119427, + 472 + ], + [ + 303462, + 103352, + 562 + ], + [ + 304202, + 102375, + 592 + ], + [ + 325003, + 119451, + 472 + ], + [ + 303156, + 103519, + 562 + ], + [ + 303186, + 103515, + 562 + ], + [ + 324939, + 119763, + 472 + ], + [ + 303127, + 103521, + 562 + ], + [ + 324945, + 119792, + 472 + ], + [ + 303097, + 103521, + 562 + ], + [ + 324953, + 119820, + 472 + ], + [ + 303067, + 103519, + 562 + ], + [ + 324962, + 119848, + 472 + ], + [ + 303037, + 103516, + 562 + ], + [ + 324974, + 119875, + 472 + ], + [ + 303008, + 103510, + 562 + ], + [ + 324987, + 119902, + 482 + ], + [ + 302979, + 103503, + 562 + ], + [ + 325002, + 119927, + 482 + ], + [ + 302951, + 103493, + 562 + ], + [ + 325018, + 119952, + 482 + ], + [ + 302924, + 103482, + 562 + ], + [ + 325037, + 119975, + 482 + ], + [ + 302897, + 103469, + 562 + ], + [ + 325056, + 119997, + 482 + ], + [ + 302871, + 103454, + 562 + ], + [ + 325078, + 120018, + 482 + ], + [ + 325100, + 120037, + 482 + ], + [ + 302846, + 103438, + 562 + ], + [ + 303215, + 103509, + 562 + ], + [ + 324935, + 119733, + 472 + ], + [ + 303244, + 103501, + 562 + ], + [ + 324933, + 119704, + 472 + ], + [ + 303272, + 103491, + 562 + ], + [ + 324934, + 119674, + 472 + ], + [ + 303299, + 103479, + 562 + ], + [ + 324936, + 119645, + 472 + ], + [ + 303326, + 103466, + 562 + ], + [ + 324940, + 119616, + 472 + ], + [ + 303351, + 103451, + 562 + ], + [ + 324946, + 119587, + 472 + ], + [ + 303376, + 103434, + 562 + ], + [ + 324953, + 119558, + 472 + ], + [ + 303399, + 103416, + 562 + ], + [ + 324963, + 119530, + 472 + ], + [ + 303422, + 103396, + 562 + ], + [ + 324975, + 119503, + 472 + ], + [ + 303443, + 103375, + 562 + ], + [ + 324988, + 119477, + 472 + ], + [ + 336023, + 132068, + 582 + ], + [ + 316392, + 118777, + 632 + ], + [ + 302573, + 108472, + 602 + ], + [ + 279566, + 91344, + 652 + ], + [ + 341494, + 138499, + 682 + ], + [ + 342280, + 136987, + 562 + ], + [ + 280037, + 90687, + 582 + ], + [ + 279973, + 90038, + 582 + ], + [ + 280055, + 90658, + 582 + ], + [ + 280071, + 90629, + 582 + ], + [ + 280055, + 90144, + 582 + ], + [ + 280085, + 90598, + 582 + ], + [ + 280097, + 90567, + 582 + ], + [ + 280107, + 90535, + 582 + ], + [ + 280120, + 90469, + 582 + ], + [ + 280114, + 90502, + 582 + ], + [ + 280123, + 90435, + 582 + ], + [ + 280123, + 90368, + 582 + ], + [ + 280124, + 90401, + 582 + ], + [ + 280120, + 90334, + 582 + ], + [ + 280115, + 90301, + 582 + ], + [ + 280085, + 90205, + 582 + ], + [ + 280107, + 90268, + 582 + ], + [ + 280097, + 90236, + 582 + ], + [ + 280071, + 90174, + 582 + ], + [ + 280037, + 90116, + 582 + ], + [ + 280018, + 90088, + 582 + ], + [ + 279996, + 90062, + 582 + ], + [ + 273781, + 85874, + 512 + ], + [ + 275180, + 86390, + 552 + ], + [ + 275387, + 86521, + 552 + ], + [ + 274966, + 86271, + 542 + ], + [ + 274522, + 86066, + 532 + ], + [ + 274747, + 86163, + 542 + ], + [ + 274292, + 85982, + 522 + ], + [ + 274058, + 85910, + 522 + ], + [ + 273821, + 85850, + 512 + ], + [ + 300711, + 107635, + 622 + ], + [ + 302308, + 108830, + 632 + ], + [ + 300971, + 107292, + 582 + ], + [ + 323571, + 124218, + 812 + ], + [ + 322551, + 123433, + 762 + ], + [ + 321529, + 122651, + 622 + ], + [ + 320506, + 121871, + 672 + ], + [ + 319480, + 121094, + 672 + ], + [ + 318453, + 120319, + 692 + ], + [ + 317423, + 119547, + 682 + ], + [ + 341543, + 140975, + 782 + ], + [ + 341607, + 140898, + 772 + ], + [ + 341797, + 141184, + 782 + ], + [ + 341862, + 141109, + 782 + ], + [ + 343910, + 143003, + 752 + ], + [ + 343975, + 142927, + 732 + ], + [ + 344225, + 143110, + 712 + ], + [ + 346260, + 145069, + 772 + ], + [ + 344158, + 143185, + 752 + ], + [ + 346327, + 144995, + 792 + ], + [ + 346486, + 145258, + 792 + ], + [ + 346557, + 145188, + 792 + ], + [ + 342294, + 137591, + 562 + ], + [ + 352832, + 149007, + 742 + ], + [ + 358175, + 152698, + 662 + ], + [ + 358133, + 152620, + 672 + ], + [ + 358088, + 152545, + 672 + ], + [ + 355678, + 152200, + 732 + ], + [ + 358040, + 152471, + 682 + ], + [ + 357989, + 152399, + 682 + ], + [ + 357935, + 152330, + 672 + ], + [ + 357878, + 152263, + 672 + ], + [ + 357818, + 152198, + 672 + ], + [ + 356028, + 151843, + 712 + ], + [ + 357303, + 151693, + 662 + ], + [ + 353645, + 148105, + 652 + ], + [ + 354393, + 150940, + 752 + ], + [ + 342314, + 137566, + 562 + ], + [ + 342348, + 137514, + 562 + ], + [ + 342332, + 137541, + 562 + ], + [ + 342362, + 137485, + 562 + ], + [ + 342399, + 137365, + 562 + ], + [ + 342393, + 137396, + 562 + ], + [ + 342375, + 137456, + 562 + ], + [ + 342385, + 137426, + 562 + ], + [ + 342403, + 137271, + 562 + ], + [ + 342404, + 137302, + 562 + ], + [ + 342403, + 137334, + 562 + ], + [ + 342367, + 137118, + 562 + ], + [ + 342388, + 137177, + 562 + ], + [ + 342400, + 137239, + 562 + ], + [ + 342395, + 137208, + 562 + ], + [ + 342378, + 137147, + 562 + ], + [ + 342338, + 137062, + 562 + ], + [ + 342353, + 137089, + 562 + ], + [ + 342320, + 137036, + 562 + ], + [ + 342301, + 137011, + 562 + ], + [ + 334795, + 132945, + 692 + ], + [ + 335928, + 132015, + 592 + ], + [ + 335993, + 132048, + 582 + ], + [ + 335961, + 132031, + 582 + ], + [ + 335538, + 132010, + 592 + ], + [ + 335715, + 131974, + 592 + ], + [ + 335894, + 132002, + 592 + ], + [ + 335824, + 131984, + 592 + ], + [ + 335859, + 131992, + 592 + ], + [ + 335788, + 131978, + 592 + ], + [ + 335752, + 131975, + 592 + ], + [ + 335679, + 131976, + 592 + ], + [ + 335607, + 131988, + 592 + ], + [ + 335643, + 131981, + 592 + ], + [ + 335572, + 131998, + 592 + ], + [ + 335412, + 132081, + 602 + ], + [ + 335473, + 132041, + 592 + ], + [ + 335505, + 132024, + 592 + ], + [ + 335442, + 132060, + 602 + ], + [ + 335384, + 132104, + 592 + ], + [ + 354743, + 150583, + 742 + ], + [ + 356800, + 151199, + 652 + ], + [ + 345740, + 92702, + 932 + ], + [ + 343514, + 93125, + 802 + ], + [ + 345687, + 92414, + 922 + ], + [ + 343436, + 92795, + 742 + ], + [ + 345640, + 92126, + 912 + ], + [ + 343368, + 92463, + 682 + ], + [ + 345601, + 91836, + 842 + ], + [ + 343309, + 92129, + 632 + ], + [ + 345569, + 91545, + 762 + ], + [ + 345545, + 91254, + 712 + ], + [ + 343259, + 91794, + 572 + ], + [ + 343219, + 91457, + 552 + ], + [ + 412228, + 30439, + 1252 + ], + [ + 412047, + 30512, + 1232 + ], + [ + 411212, + 29149, + 1182 + ], + [ + 412402, + 30353, + 1282 + ], + [ + 412571, + 30255, + 1282 + ], + [ + 412732, + 30146, + 1312 + ], + [ + 412885, + 30025, + 1342 + ], + [ + 413028, + 29894, + 1352 + ], + [ + 413163, + 29753, + 1382 + ], + [ + 413287, + 29602, + 1402 + ], + [ + 412347, + 27795, + 1562 + ], + [ + 413400, + 29444, + 1422 + ], + [ + 413501, + 29277, + 1452 + ], + [ + 413590, + 29104, + 1492 + ], + [ + 413667, + 28926, + 1522 + ], + [ + 413731, + 28742, + 1552 + ], + [ + 413782, + 28554, + 1552 + ], + [ + 413820, + 28362, + 1582 + ], + [ + 413843, + 28169, + 1602 + ], + [ + 413853, + 27975, + 1612 + ], + [ + 413850, + 27780, + 1622 + ], + [ + 413832, + 27586, + 1632 + ], + [ + 411271, + 30676, + 1172 + ], + [ + 409779, + 31130, + 1102 + ], + [ + 409363, + 29697, + 1092 + ], + [ + 212250, + 125415, + 522 + ], + [ + 216008, + 123105, + 532 + ], + [ + 215919, + 122972, + 522 + ], + [ + 208914, + 127547, + 542 + ], + [ + 225516, + 96009, + 362 + ], + [ + 207303, + 107998, + 812 + ], + [ + 213557, + 99049, + 552 + ], + [ + 194689, + 116743, + 1672 + ], + [ + 194459, + 116620, + 1672 + ], + [ + 194237, + 116482, + 1682 + ], + [ + 255079, + 71701, + 462 + ], + [ + 258704, + 74009, + 412 + ], + [ + 254948, + 76213, + 392 + ], + [ + 240277, + 81120, + 462 + ], + [ + 256013, + 69861, + 482 + ], + [ + 254478, + 70789, + 502 + ], + [ + 245773, + 77637, + 472 + ], + [ + 235157, + 84327, + 472 + ], + [ + 226693, + 90152, + 452 + ], + [ + 222647, + 92917, + 462 + ], + [ + 226655, + 90093, + 462 + ], + [ + 222400, + 93091, + 472 + ], + [ + 218644, + 95645, + 492 + ], + [ + 214423, + 98303, + 542 + ], + [ + 209722, + 101664, + 642 + ], + [ + 205079, + 104871, + 842 + ], + [ + 209643, + 101561, + 642 + ], + [ + 201657, + 107197, + 1032 + ], + [ + 200203, + 115686, + 1522 + ], + [ + 198606, + 116602, + 1542 + ], + [ + 200264, + 115178, + 1502 + ], + [ + 198740, + 116640, + 1532 + ], + [ + 200167, + 115804, + 1532 + ], + [ + 193635, + 115984, + 1702 + ], + [ + 197932, + 108709, + 1222 + ], + [ + 198210, + 116701, + 1552 + ], + [ + 199715, + 108516, + 1162 + ], + [ + 199601, + 108584, + 1162 + ], + [ + 199483, + 108645, + 1162 + ], + [ + 199361, + 108697, + 1172 + ], + [ + 199236, + 108742, + 1172 + ], + [ + 199108, + 108778, + 1182 + ], + [ + 198847, + 108824, + 1192 + ], + [ + 198978, + 108805, + 1182 + ], + [ + 198581, + 108835, + 1212 + ], + [ + 198714, + 108834, + 1212 + ], + [ + 198449, + 108827, + 1212 + ], + [ + 198317, + 108810, + 1222 + ], + [ + 198187, + 108785, + 1222 + ], + [ + 198058, + 108751, + 1222 + ], + [ + 197810, + 108658, + 1222 + ], + [ + 197690, + 108600, + 1212 + ], + [ + 197575, + 108533, + 1212 + ], + [ + 197465, + 108459, + 1202 + ], + [ + 197360, + 108378, + 1202 + ], + [ + 197028, + 108138, + 1192 + ], + [ + 190242, + 111895, + 1192 + ], + [ + 190220, + 111681, + 1192 + ], + [ + 190255, + 112109, + 1192 + ], + [ + 190258, + 112324, + 1192 + ], + [ + 190251, + 112539, + 1192 + ], + [ + 190235, + 112753, + 1192 + ], + [ + 190209, + 112966, + 1192 + ], + [ + 190173, + 113178, + 1192 + ], + [ + 193060, + 116484, + 1752 + ], + [ + 190080, + 113259, + 1192 + ], + [ + 193824, + 116163, + 1702 + ], + [ + 194025, + 116330, + 1702 + ], + [ + 197732, + 116911, + 1552 + ], + [ + 195171, + 116942, + 1672 + ], + [ + 194927, + 116851, + 1672 + ], + [ + 195934, + 117114, + 1642 + ], + [ + 195421, + 117016, + 1662 + ], + [ + 195676, + 117074, + 1652 + ], + [ + 196194, + 117137, + 1632 + ], + [ + 196715, + 117131, + 1612 + ], + [ + 196454, + 117143, + 1612 + ], + [ + 197231, + 117055, + 1582 + ], + [ + 196974, + 117102, + 1592 + ], + [ + 197484, + 116991, + 1572 + ], + [ + 197975, + 116814, + 1552 + ], + [ + 198429, + 116827, + 1552 + ], + [ + 198522, + 116952, + 1552 + ], + [ + 198336, + 117042, + 1552 + ], + [ + 198242, + 116788, + 1552 + ], + [ + 198459, + 117079, + 1552 + ], + [ + 198357, + 117098, + 1552 + ], + [ + 198469, + 116672, + 1542 + ], + [ + 198628, + 116978, + 1552 + ], + [ + 203798, + 112699, + 1222 + ], + [ + 200352, + 115606, + 1522 + ], + [ + 200461, + 115548, + 1522 + ], + [ + 198459, + 117079, + 302 + ], + [ + 198357, + 117098, + 302 + ], + [ + 198628, + 116978, + 302 + ], + [ + 365971, + 30040, + 512 + ], + [ + 396563, + 22359, + 732 + ], + [ + 406950, + 21506, + 1102 + ], + [ + 409647, + 20421, + 1492 + ], + [ + 411031, + 22219, + 1772 + ], + [ + 411728, + 21558, + 1772 + ], + [ + 412195, + 21926, + 1812 + ], + [ + 411237, + 21223, + 1722 + ], + [ + 410725, + 20920, + 1652 + ], + [ + 410194, + 20653, + 1572 + ], + [ + 406152, + 19831, + 1072 + ], + [ + 409085, + 20226, + 1422 + ], + [ + 408511, + 20070, + 1352 + ], + [ + 407929, + 19951, + 1282 + ], + [ + 407340, + 19872, + 1192 + ], + [ + 406747, + 19832, + 1122 + ], + [ + 351265, + 33468, + 902 + ], + [ + 342527, + 36201, + 1392 + ], + [ + 341927, + 36449, + 1402 + ], + [ + 342081, + 37423, + 1502 + ], + [ + 375782, + 28324, + 462 + ], + [ + 374035, + 28756, + 482 + ], + [ + 375902, + 28810, + 462 + ], + [ + 394079, + 24825, + 652 + ], + [ + 374155, + 29241, + 452 + ], + [ + 278898, + 62413, + 382 + ], + [ + 301937, + 49982, + 472 + ], + [ + 302789, + 51567, + 402 + ], + [ + 312350, + 45452, + 632 + ], + [ + 322532, + 41520, + 1142 + ], + [ + 320098, + 43188, + 992 + ], + [ + 320259, + 43662, + 1002 + ], + [ + 323181, + 43199, + 1142 + ], + [ + 321992, + 42546, + 1112 + ], + [ + 265178, + 70324, + 402 + ], + [ + 279740, + 64003, + 332 + ], + [ + 285454, + 60342, + 362 + ], + [ + 287073, + 59467, + 362 + ], + [ + 286835, + 59027, + 372 + ], + [ + 285216, + 59903, + 372 + ], + [ + 322153, + 43020, + 1082 + ], + [ + 247005, + 102678, + 452 + ], + [ + 247054, + 102644, + 452 + ], + [ + 246886, + 102505, + 442 + ], + [ + 326955, + 54973, + 262 + ], + [ + 327912, + 54682, + 242 + ], + [ + 327101, + 55451, + 282 + ], + [ + 328057, + 55160, + 262 + ], + [ + 299595, + 98925, + 622 + ], + [ + 298891, + 99901, + 522 + ], + [ + 282957, + 87976, + 562 + ], + [ + 283687, + 87015, + 672 + ], + [ + 282938, + 87999, + 562 + ], + [ + 298874, + 99929, + 522 + ], + [ + 282619, + 88154, + 562 + ], + [ + 282649, + 88151, + 562 + ], + [ + 298818, + 100245, + 532 + ], + [ + 282589, + 88155, + 562 + ], + [ + 298825, + 100277, + 532 + ], + [ + 282559, + 88153, + 562 + ], + [ + 298834, + 100308, + 532 + ], + [ + 282529, + 88150, + 562 + ], + [ + 298846, + 100339, + 532 + ], + [ + 282499, + 88145, + 572 + ], + [ + 298859, + 100369, + 542 + ], + [ + 282470, + 88138, + 572 + ], + [ + 298874, + 100397, + 542 + ], + [ + 282441, + 88129, + 572 + ], + [ + 298892, + 100425, + 532 + ], + [ + 282412, + 88118, + 572 + ], + [ + 298911, + 100452, + 532 + ], + [ + 282385, + 88105, + 572 + ], + [ + 298932, + 100477, + 542 + ], + [ + 282359, + 88090, + 572 + ], + [ + 298955, + 100500, + 542 + ], + [ + 298979, + 100522, + 542 + ], + [ + 282333, + 88074, + 572 + ], + [ + 282679, + 88146, + 562 + ], + [ + 298814, + 100212, + 532 + ], + [ + 282709, + 88140, + 562 + ], + [ + 298812, + 100180, + 532 + ], + [ + 282738, + 88131, + 562 + ], + [ + 298812, + 100147, + 532 + ], + [ + 282766, + 88121, + 562 + ], + [ + 282794, + 88108, + 562 + ], + [ + 298814, + 100114, + 522 + ], + [ + 282821, + 88094, + 562 + ], + [ + 298818, + 100082, + 522 + ], + [ + 282847, + 88079, + 562 + ], + [ + 298825, + 100050, + 532 + ], + [ + 282871, + 88061, + 562 + ], + [ + 298834, + 100018, + 532 + ], + [ + 282895, + 88042, + 562 + ], + [ + 298845, + 99988, + 532 + ], + [ + 282917, + 88021, + 562 + ], + [ + 298858, + 99958, + 522 + ], + [ + 395891, + 40226, + 612 + ], + [ + 395949, + 40449, + 602 + ], + [ + 379566, + 43291, + 332 + ], + [ + 396360, + 38553, + 622 + ], + [ + 397535, + 37371, + 642 + ], + [ + 405142, + 35236, + 812 + ], + [ + 410361, + 36326, + 1032 + ], + [ + 364770, + 47557, + 362 + ], + [ + 410949, + 37519, + 1052 + ], + [ + 406904, + 35593, + 872 + ], + [ + 421073, + 31517, + 1722 + ], + [ + 421120, + 33600, + 1812 + ], + [ + 421232, + 33562, + 1822 + ], + [ + 421347, + 33531, + 1822 + ], + [ + 421463, + 33508, + 1822 + ], + [ + 421319, + 31495, + 1742 + ], + [ + 421581, + 33494, + 1862 + ], + [ + 421648, + 31492, + 1772 + ], + [ + 421700, + 33488, + 1872 + ], + [ + 421908, + 31511, + 1802 + ], + [ + 421818, + 33490, + 1872 + ], + [ + 422165, + 31548, + 1812 + ], + [ + 421936, + 33500, + 1892 + ], + [ + 422419, + 31603, + 1842 + ], + [ + 422053, + 33519, + 1902 + ], + [ + 422545, + 31637, + 1852 + ], + [ + 422169, + 33545, + 1922 + ], + [ + 422877, + 31752, + 1882 + ], + [ + 422283, + 33580, + 1942 + ], + [ + 423352, + 31983, + 1912 + ], + [ + 422501, + 33672, + 1952 + ], + [ + 422393, + 33622, + 1952 + ], + [ + 423502, + 32075, + 1922 + ], + [ + 423039, + 31821, + 1892 + ], + [ + 423197, + 31898, + 1902 + ], + [ + 422713, + 31690, + 1862 + ], + [ + 422293, + 31573, + 1822 + ], + [ + 422037, + 31527, + 1802 + ], + [ + 421778, + 31499, + 1782 + ], + [ + 421566, + 31490, + 1762 + ], + [ + 421483, + 31490, + 1752 + ], + [ + 421401, + 31491, + 1742 + ], + [ + 421237, + 31500, + 1742 + ], + [ + 421155, + 31508, + 1722 + ], + [ + 348983, + 52182, + 362 + ], + [ + 348144, + 53446, + 442 + ], + [ + 220984, + 140590, + 492 + ], + [ + 220973, + 140621, + 492 + ], + [ + 212913, + 135136, + 492 + ], + [ + 216578, + 137773, + 552 + ], + [ + 256179, + 166943, + 682 + ], + [ + 249523, + 162070, + 682 + ], + [ + 220983, + 140295, + 492 + ], + [ + 220972, + 140264, + 492 + ], + [ + 246405, + 159812, + 642 + ], + [ + 243156, + 157445, + 632 + ], + [ + 239842, + 155080, + 612 + ], + [ + 232736, + 149658, + 572 + ], + [ + 229373, + 147250, + 552 + ], + [ + 220656, + 141135, + 632 + ], + [ + 209424, + 128500, + 542 + ], + [ + 210550, + 133409, + 482 + ], + [ + 211646, + 134210, + 482 + ], + [ + 209330, + 128369, + 542 + ], + [ + 209859, + 132903, + 482 + ], + [ + 206270, + 130279, + 552 + ], + [ + 209806, + 132976, + 482 + ], + [ + 210497, + 133481, + 482 + ], + [ + 252854, + 164461, + 672 + ], + [ + 212865, + 135200, + 492 + ], + [ + 211599, + 134274, + 492 + ], + [ + 217093, + 137638, + 512 + ], + [ + 216891, + 137779, + 542 + ], + [ + 216776, + 137918, + 562 + ], + [ + 216728, + 137883, + 572 + ], + [ + 216915, + 137753, + 542 + ], + [ + 216941, + 137729, + 532 + ], + [ + 216969, + 137706, + 532 + ], + [ + 216998, + 137686, + 532 + ], + [ + 217028, + 137668, + 532 + ], + [ + 217060, + 137652, + 512 + ], + [ + 220818, + 140051, + 502 + ], + [ + 217127, + 137627, + 502 + ], + [ + 217474, + 137650, + 502 + ], + [ + 217161, + 137618, + 502 + ], + [ + 217196, + 137611, + 502 + ], + [ + 217231, + 137607, + 502 + ], + [ + 217267, + 137606, + 502 + ], + [ + 217303, + 137607, + 502 + ], + [ + 217338, + 137611, + 502 + ], + [ + 217407, + 137626, + 502 + ], + [ + 217373, + 137617, + 502 + ], + [ + 217441, + 137637, + 502 + ], + [ + 217506, + 137666, + 502 + ], + [ + 217537, + 137684, + 502 + ], + [ + 217566, + 137704, + 502 + ], + [ + 235877, + 151953, + 602 + ], + [ + 220843, + 140073, + 502 + ], + [ + 220867, + 140096, + 502 + ], + [ + 220889, + 140121, + 502 + ], + [ + 220909, + 140147, + 502 + ], + [ + 220928, + 140175, + 492 + ], + [ + 220945, + 140203, + 492 + ], + [ + 220960, + 140233, + 492 + ], + [ + 220992, + 140327, + 492 + ], + [ + 220999, + 140360, + 492 + ], + [ + 221003, + 140393, + 492 + ], + [ + 259396, + 169320, + 722 + ], + [ + 221005, + 140426, + 492 + ], + [ + 221005, + 140459, + 492 + ], + [ + 221003, + 140492, + 492 + ], + [ + 220999, + 140525, + 492 + ], + [ + 220992, + 140558, + 492 + ], + [ + 220960, + 140652, + 492 + ], + [ + 220945, + 140682, + 492 + ], + [ + 220929, + 140710, + 492 + ], + [ + 220910, + 140738, + 502 + ], + [ + 229344, + 147290, + 552 + ], + [ + 232724, + 149674, + 572 + ], + [ + 252842, + 164477, + 672 + ], + [ + 262542, + 171646, + 732 + ], + [ + 265991, + 174194, + 752 + ], + [ + 266506, + 174628, + 752 + ], + [ + 266473, + 174598, + 752 + ], + [ + 266567, + 174694, + 752 + ], + [ + 266538, + 174660, + 752 + ], + [ + 266594, + 174730, + 752 + ], + [ + 266618, + 174767, + 752 + ], + [ + 266640, + 174806, + 752 + ], + [ + 266660, + 174847, + 752 + ], + [ + 266676, + 174889, + 752 + ], + [ + 266690, + 174931, + 752 + ], + [ + 266701, + 174975, + 752 + ], + [ + 266709, + 175019, + 752 + ], + [ + 260858, + 183141, + 922 + ], + [ + 260913, + 183097, + 922 + ], + [ + 264493, + 187881, + 1022 + ], + [ + 260801, + 183182, + 922 + ], + [ + 260740, + 183218, + 922 + ], + [ + 260678, + 183251, + 922 + ], + [ + 260613, + 183279, + 932 + ], + [ + 260371, + 179736, + 832 + ], + [ + 259460, + 182988, + 892 + ], + [ + 257961, + 182977, + 832 + ], + [ + 256522, + 186946, + 982 + ], + [ + 260199, + 183348, + 922 + ], + [ + 260269, + 183348, + 922 + ], + [ + 260129, + 183343, + 922 + ], + [ + 258929, + 183685, + 892 + ], + [ + 259990, + 183318, + 922 + ], + [ + 260059, + 183333, + 922 + ], + [ + 259922, + 183298, + 922 + ], + [ + 259856, + 183274, + 902 + ], + [ + 259792, + 183245, + 902 + ], + [ + 259730, + 183212, + 892 + ], + [ + 259670, + 183175, + 892 + ], + [ + 259613, + 183134, + 892 + ], + [ + 259558, + 183089, + 892 + ], + [ + 259507, + 183040, + 892 + ], + [ + 261334, + 180452, + 962 + ], + [ + 260547, + 183302, + 932 + ], + [ + 249385, + 196614, + 1112 + ], + [ + 250198, + 197652, + 1112 + ], + [ + 249165, + 196912, + 1112 + ], + [ + 257426, + 197444, + 1102 + ], + [ + 255043, + 200668, + 1172 + ], + [ + 254823, + 200966, + 1172 + ], + [ + 265000, + 182896, + 982 + ], + [ + 265037, + 182926, + 992 + ], + [ + 267041, + 184434, + 1112 + ], + [ + 264965, + 182864, + 982 + ], + [ + 264932, + 182829, + 982 + ], + [ + 264902, + 182792, + 972 + ], + [ + 264874, + 182753, + 972 + ], + [ + 264849, + 182712, + 972 + ], + [ + 264827, + 182670, + 972 + ], + [ + 264808, + 182626, + 972 + ], + [ + 264792, + 182581, + 972 + ], + [ + 264779, + 182536, + 962 + ], + [ + 264769, + 182489, + 962 + ], + [ + 264762, + 182442, + 962 + ], + [ + 264759, + 182394, + 952 + ], + [ + 264758, + 182346, + 952 + ], + [ + 264761, + 182299, + 952 + ], + [ + 264768, + 182251, + 952 + ], + [ + 264898, + 181947, + 952 + ], + [ + 266580, + 175527, + 762 + ], + [ + 267309, + 178734, + 882 + ], + [ + 264777, + 182205, + 942 + ], + [ + 264790, + 182158, + 942 + ], + [ + 264806, + 182113, + 942 + ], + [ + 264824, + 182070, + 952 + ], + [ + 264846, + 182027, + 942 + ], + [ + 264871, + 181986, + 942 + ], + [ + 266714, + 175063, + 762 + ], + [ + 267339, + 178697, + 882 + ], + [ + 267372, + 178661, + 892 + ], + [ + 267407, + 178629, + 892 + ], + [ + 267444, + 178598, + 892 + ], + [ + 267483, + 178570, + 892 + ], + [ + 267524, + 178545, + 892 + ], + [ + 267566, + 178523, + 892 + ], + [ + 266606, + 175490, + 762 + ], + [ + 266683, + 175329, + 762 + ], + [ + 266668, + 175371, + 762 + ], + [ + 266696, + 175286, + 762 + ], + [ + 266705, + 175242, + 762 + ], + [ + 267892, + 178455, + 892 + ], + [ + 267844, + 178455, + 892 + ], + [ + 267796, + 178458, + 892 + ], + [ + 267940, + 178458, + 892 + ], + [ + 267988, + 178464, + 892 + ], + [ + 268035, + 178474, + 892 + ], + [ + 268081, + 178487, + 892 + ], + [ + 268126, + 178503, + 892 + ], + [ + 268170, + 178522, + 892 + ], + [ + 268254, + 178569, + 892 + ], + [ + 268213, + 178544, + 892 + ], + [ + 268293, + 178597, + 892 + ], + [ + 270253, + 180087, + 832 + ], + [ + 271547, + 178335, + 762 + ], + [ + 271710, + 178182, + 732 + ], + [ + 271580, + 178359, + 772 + ], + [ + 272535, + 179066, + 772 + ], + [ + 272666, + 178889, + 762 + ], + [ + 274839, + 180771, + 742 + ], + [ + 277156, + 182212, + 712 + ], + [ + 277025, + 182388, + 712 + ], + [ + 283431, + 186868, + 742 + ], + [ + 295247, + 195643, + 742 + ], + [ + 278872, + 183756, + 792 + ], + [ + 279003, + 183579, + 732 + ], + [ + 281071, + 185383, + 742 + ], + [ + 283306, + 187036, + 742 + ], + [ + 278064, + 182884, + 762 + ], + [ + 287812, + 190371, + 802 + ], + [ + 285362, + 188558, + 752 + ], + [ + 285487, + 188389, + 752 + ], + [ + 284328, + 187532, + 752 + ], + [ + 290300, + 191913, + 752 + ], + [ + 290157, + 192106, + 762 + ], + [ + 292085, + 193231, + 752 + ], + [ + 291942, + 193424, + 762 + ], + [ + 295126, + 195805, + 832 + ], + [ + 295958, + 196427, + 832 + ], + [ + 296079, + 196265, + 732 + ], + [ + 296660, + 196952, + 892 + ], + [ + 299623, + 198624, + 732 + ], + [ + 299367, + 198969, + 732 + ], + [ + 301147, + 199759, + 732 + ], + [ + 304746, + 202976, + 962 + ], + [ + 300890, + 200104, + 832 + ], + [ + 305257, + 203357, + 1002 + ], + [ + 306981, + 202087, + 942 + ], + [ + 305449, + 203549, + 1002 + ], + [ + 316409, + 166357, + 942 + ], + [ + 254067, + 190271, + 1012 + ], + [ + 260340, + 183344, + 922 + ], + [ + 260410, + 183335, + 922 + ], + [ + 260479, + 183321, + 922 + ], + [ + 262091, + 191131, + 1042 + ], + [ + 267749, + 178465, + 892 + ], + [ + 266716, + 175153, + 762 + ], + [ + 266716, + 175108, + 752 + ], + [ + 266712, + 175198, + 762 + ], + [ + 267702, + 178475, + 892 + ], + [ + 267656, + 178488, + 892 + ], + [ + 266650, + 175412, + 762 + ], + [ + 266629, + 175452, + 762 + ], + [ + 267610, + 178504, + 892 + ], + [ + 259762, + 194284, + 1122 + ], + [ + 251800, + 193342, + 1032 + ], + [ + 299507, + 64918, + 332 + ], + [ + 223334, + 99266, + 352 + ], + [ + 223042, + 98877, + 372 + ], + [ + 224503, + 97913, + 362 + ], + [ + 224778, + 98330, + 352 + ], + [ + 366155, + 65749, + 512 + ], + [ + 359264, + 61139, + 492 + ], + [ + 365845, + 66151, + 512 + ], + [ + 367650, + 67356, + 522 + ], + [ + 252428, + 98951, + 452 + ], + [ + 252378, + 98985, + 452 + ], + [ + 252482, + 98659, + 452 + ], + [ + 255596, + 96481, + 432 + ], + [ + 263460, + 86380, + 392 + ], + [ + 257498, + 95150, + 442 + ], + [ + 270215, + 86535, + 542 + ], + [ + 267332, + 88559, + 482 + ], + [ + 270460, + 86380, + 512 + ], + [ + 270715, + 86241, + 522 + ], + [ + 270978, + 86117, + 522 + ], + [ + 271248, + 86011, + 522 + ], + [ + 271805, + 85850, + 522 + ], + [ + 271524, + 85922, + 532 + ], + [ + 272090, + 85796, + 512 + ], + [ + 272378, + 85759, + 502 + ], + [ + 272668, + 85741, + 502 + ], + [ + 272958, + 85741, + 502 + ], + [ + 273248, + 85759, + 502 + ], + [ + 273536, + 85796, + 512 + ], + [ + 219752, + 120445, + 532 + ], + [ + 151306, + 157800, + 452 + ], + [ + 151226, + 157827, + 452 + ], + [ + 150041, + 154264, + 452 + ], + [ + 195848, + 135129, + 562 + ], + [ + 200118, + 128661, + 532 + ], + [ + 206474, + 125293, + 602 + ], + [ + 171790, + 147208, + 452 + ], + [ + 167587, + 149220, + 452 + ], + [ + 169022, + 144673, + 452 + ], + [ + 151147, + 157859, + 452 + ], + [ + 151098, + 157882, + 452 + ], + [ + 193853, + 131871, + 442 + ], + [ + 198805, + 129361, + 522 + ], + [ + 151050, + 157908, + 452 + ], + [ + 151003, + 157936, + 452 + ], + [ + 192521, + 132574, + 452 + ], + [ + 180781, + 142770, + 452 + ], + [ + 175639, + 141261, + 452 + ], + [ + 180548, + 138726, + 452 + ], + [ + 184873, + 140849, + 582 + ], + [ + 181886, + 138045, + 452 + ], + [ + 186763, + 135532, + 452 + ], + [ + 150958, + 157965, + 452 + ], + [ + 150914, + 157997, + 452 + ], + [ + 154931, + 155724, + 452 + ], + [ + 154872, + 155777, + 452 + ], + [ + 152626, + 153089, + 452 + ], + [ + 163996, + 147235, + 452 + ], + [ + 154637, + 156095, + 452 + ], + [ + 151365, + 153663, + 452 + ], + [ + 151557, + 157754, + 452 + ], + [ + 143624, + 157171, + 452 + ], + [ + 144974, + 156568, + 452 + ], + [ + 145217, + 160382, + 452 + ], + [ + 150830, + 158066, + 452 + ], + [ + 144993, + 160478, + 452 + ], + [ + 163703, + 151281, + 452 + ], + [ + 162677, + 147908, + 452 + ], + [ + 150871, + 158031, + 452 + ], + [ + 170322, + 143972, + 452 + ], + [ + 174348, + 141937, + 452 + ], + [ + 183469, + 141484, + 452 + ], + [ + 188053, + 134856, + 452 + ], + [ + 192335, + 137111, + 582 + ], + [ + 151389, + 157779, + 452 + ], + [ + 151472, + 157763, + 452 + ], + [ + 151642, + 157750, + 452 + ], + [ + 151727, + 157752, + 452 + ], + [ + 151812, + 157760, + 452 + ], + [ + 151896, + 157774, + 452 + ], + [ + 154574, + 156241, + 452 + ], + [ + 151978, + 157793, + 452 + ], + [ + 154551, + 156317, + 452 + ], + [ + 152060, + 157818, + 452 + ], + [ + 154532, + 156394, + 452 + ], + [ + 152139, + 157849, + 452 + ], + [ + 154519, + 156472, + 452 + ], + [ + 152216, + 157885, + 452 + ], + [ + 154511, + 156551, + 452 + ], + [ + 152290, + 157927, + 452 + ], + [ + 154509, + 156631, + 452 + ], + [ + 152362, + 157973, + 452 + ], + [ + 154511, + 156710, + 452 + ], + [ + 152430, + 158024, + 452 + ], + [ + 154520, + 156789, + 452 + ], + [ + 152494, + 158080, + 452 + ], + [ + 154533, + 156867, + 452 + ], + [ + 152554, + 158140, + 452 + ], + [ + 154551, + 156945, + 452 + ], + [ + 152610, + 158204, + 452 + ], + [ + 154575, + 157020, + 452 + ], + [ + 152661, + 158272, + 452 + ], + [ + 154604, + 157095, + 452 + ], + [ + 152708, + 158343, + 452 + ], + [ + 154638, + 157166, + 452 + ], + [ + 154676, + 157236, + 452 + ], + [ + 156440, + 151121, + 452 + ], + [ + 155059, + 155630, + 452 + ], + [ + 154603, + 156167, + 452 + ], + [ + 161766, + 152236, + 452 + ], + [ + 157729, + 150482, + 452 + ], + [ + 154675, + 156025, + 452 + ], + [ + 154718, + 155958, + 452 + ], + [ + 154765, + 155894, + 452 + ], + [ + 154816, + 155834, + 452 + ], + [ + 154993, + 155675, + 452 + ], + [ + 167633, + 149309, + 452 + ], + [ + 183909, + 142337, + 452 + ], + [ + 185313, + 141702, + 452 + ], + [ + 184091, + 142477, + 452 + ], + [ + 185396, + 141862, + 452 + ], + [ + 259207, + 94954, + 462 + ], + [ + 259756, + 94587, + 492 + ], + [ + 316441, + 195369, + 712 + ], + [ + 319146, + 198121, + 862 + ], + [ + 318791, + 198466, + 912 + ], + [ + 318585, + 198668, + 922 + ], + [ + 315921, + 195876, + 772 + ], + [ + 309955, + 60558, + 342 + ], + [ + 310884, + 60199, + 342 + ], + [ + 310137, + 61024, + 352 + ], + [ + 311063, + 60666, + 352 + ], + [ + 423570, + 26101, + 1872 + ], + [ + 424807, + 26973, + 1892 + ], + [ + 329938, + 122108, + 542 + ], + [ + 329634, + 122505, + 532 + ], + [ + 326579, + 120163, + 532 + ], + [ + 326883, + 119766, + 582 + ], + [ + 359046, + 159364, + 782 + ], + [ + 322026, + 195323, + 842 + ], + [ + 356367, + 156500, + 622 + ], + [ + 318866, + 193009, + 672 + ], + [ + 363678, + 149155, + 632 + ], + [ + 366223, + 152404, + 832 + ], + [ + 363152, + 149652, + 652 + ], + [ + 365999, + 152622, + 842 + ], + [ + 366540, + 152098, + 802 + ], + [ + 329586, + 54172, + 242 + ], + [ + 330542, + 53880, + 242 + ], + [ + 330688, + 54359, + 262 + ], + [ + 329731, + 54650, + 262 + ], + [ + 206755, + 123828, + 512 + ], + [ + 207029, + 124246, + 552 + ], + [ + 208303, + 122815, + 472 + ], + [ + 208577, + 123233, + 502 + ], + [ + 444290, + 46040, + 1992 + ], + [ + 443536, + 45499, + 2002 + ], + [ + 449333, + 53632, + 1692 + ], + [ + 449067, + 52743, + 1702 + ], + [ + 448743, + 51874, + 1742 + ], + [ + 448363, + 51027, + 1762 + ], + [ + 447928, + 50208, + 1782 + ], + [ + 447440, + 49418, + 1792 + ], + [ + 446902, + 48663, + 1832 + ], + [ + 446315, + 47944, + 1862 + ], + [ + 445682, + 47266, + 1892 + ], + [ + 445006, + 46630, + 1962 + ], + [ + 424931, + 33035, + 1952 + ], + [ + 449540, + 54536, + 1672 + ], + [ + 449774, + 56376, + 1572 + ], + [ + 449687, + 55453, + 1612 + ], + [ + 449800, + 57304, + 1542 + ], + [ + 449669, + 59154, + 1392 + ], + [ + 449765, + 58231, + 1452 + ], + [ + 449513, + 60068, + 1412 + ], + [ + 449022, + 61857, + 1282 + ], + [ + 449297, + 60971, + 1312 + ], + [ + 448690, + 62723, + 1252 + ], + [ + 447858, + 64381, + 1212 + ], + [ + 448301, + 63566, + 1222 + ], + [ + 447363, + 65166, + 1172 + ], + [ + 446817, + 65916, + 1162 + ], + [ + 435106, + 80948, + 882 + ], + [ + 434882, + 81223, + 872 + ], + [ + 434657, + 81497, + 872 + ], + [ + 434430, + 81769, + 872 + ], + [ + 434202, + 82041, + 862 + ], + [ + 433972, + 82311, + 862 + ], + [ + 433741, + 82579, + 902 + ], + [ + 433508, + 82847, + 912 + ], + [ + 325532, + 83333, + 522 + ], + [ + 326449, + 82121, + 502 + ], + [ + 343424, + 30584, + 1152 + ], + [ + 344465, + 31412, + 1092 + ], + [ + 344179, + 31591, + 1102 + ], + [ + 339575, + 31588, + 1312 + ], + [ + 338812, + 30725, + 1302 + ], + [ + 339045, + 31105, + 1312 + ], + [ + 338893, + 30920, + 1302 + ], + [ + 339210, + 31279, + 1302 + ], + [ + 339387, + 31440, + 1312 + ], + [ + 339773, + 31723, + 1302 + ], + [ + 339980, + 31843, + 1302 + ], + [ + 340196, + 31949, + 1292 + ], + [ + 340418, + 32039, + 1292 + ], + [ + 340646, + 32112, + 1272 + ], + [ + 340878, + 32170, + 1272 + ], + [ + 341114, + 32210, + 1262 + ], + [ + 341353, + 32234, + 1262 + ], + [ + 341592, + 32241, + 1252 + ], + [ + 341930, + 32240, + 1242 + ], + [ + 342267, + 32216, + 1212 + ], + [ + 342601, + 32168, + 1192 + ], + [ + 342931, + 32098, + 1162 + ], + [ + 343255, + 32004, + 1152 + ], + [ + 343573, + 31888, + 1122 + ], + [ + 343881, + 31750, + 1112 + ], + [ + 247227, + 102525, + 452 + ], + [ + 252197, + 99110, + 452 + ], + [ + 222150, + 100066, + 372 + ], + [ + 221357, + 100589, + 382 + ], + [ + 221874, + 99649, + 392 + ], + [ + 221081, + 100172, + 412 + ], + [ + 422965, + 34043, + 1962 + ], + [ + 424313, + 32620, + 1942 + ], + [ + 422671, + 33774, + 1952 + ], + [ + 422735, + 33822, + 1962 + ], + [ + 422796, + 33873, + 1962 + ], + [ + 422855, + 33927, + 1962 + ], + [ + 422911, + 33984, + 1962 + ], + [ + 426973, + 36090, + 2142 + ], + [ + 429671, + 39176, + 2272 + ], + [ + 430643, + 86045, + 902 + ], + [ + 432818, + 83617, + 922 + ], + [ + 302436, + 101751, + 652 + ], + [ + 302853, + 102692, + 612 + ], + [ + 278498, + 83124, + 552 + ], + [ + 278426, + 83524, + 552 + ], + [ + 278440, + 83333, + 552 + ], + [ + 278424, + 83716, + 552 + ], + [ + 278434, + 83907, + 562 + ], + [ + 278457, + 84098, + 562 + ], + [ + 278493, + 84286, + 562 + ], + [ + 278540, + 84472, + 562 + ], + [ + 278600, + 84654, + 562 + ], + [ + 278671, + 84832, + 562 + ], + [ + 278754, + 85005, + 562 + ], + [ + 278848, + 85172, + 562 + ], + [ + 278952, + 85333, + 562 + ], + [ + 279067, + 85487, + 562 + ], + [ + 279192, + 85632, + 562 + ], + [ + 279325, + 85770, + 562 + ], + [ + 279468, + 85898, + 572 + ], + [ + 279618, + 86017, + 572 + ], + [ + 279776, + 86126, + 572 + ], + [ + 303154, + 102293, + 622 + ], + [ + 350856, + 138826, + 632 + ], + [ + 337791, + 129711, + 502 + ], + [ + 329659, + 123529, + 472 + ], + [ + 329634, + 123513, + 472 + ], + [ + 329686, + 123543, + 472 + ], + [ + 329713, + 123556, + 472 + ], + [ + 329799, + 123582, + 472 + ], + [ + 329741, + 123567, + 472 + ], + [ + 329769, + 123575, + 472 + ], + [ + 330166, + 123495, + 472 + ], + [ + 329828, + 123587, + 472 + ], + [ + 329858, + 123590, + 472 + ], + [ + 329888, + 123591, + 472 + ], + [ + 329918, + 123590, + 472 + ], + [ + 329948, + 123587, + 472 + ], + [ + 330006, + 123575, + 472 + ], + [ + 329977, + 123582, + 472 + ], + [ + 330035, + 123566, + 472 + ], + [ + 330063, + 123556, + 472 + ], + [ + 330090, + 123543, + 472 + ], + [ + 330116, + 123529, + 472 + ], + [ + 330142, + 123513, + 472 + ], + [ + 330249, + 123409, + 482 + ], + [ + 330189, + 123475, + 472 + ], + [ + 330210, + 123455, + 472 + ], + [ + 330230, + 123432, + 482 + ], + [ + 337704, + 129082, + 492 + ], + [ + 338422, + 128116, + 552 + ], + [ + 337687, + 129110, + 492 + ], + [ + 337671, + 129139, + 492 + ], + [ + 337658, + 129170, + 492 + ], + [ + 337767, + 129689, + 502 + ], + [ + 337647, + 129201, + 492 + ], + [ + 337631, + 129265, + 492 + ], + [ + 337638, + 129232, + 492 + ], + [ + 337626, + 129298, + 492 + ], + [ + 337624, + 129331, + 492 + ], + [ + 337626, + 129397, + 492 + ], + [ + 337624, + 129364, + 492 + ], + [ + 337631, + 129429, + 502 + ], + [ + 337637, + 129462, + 502 + ], + [ + 337646, + 129494, + 502 + ], + [ + 337658, + 129525, + 502 + ], + [ + 337686, + 129584, + 502 + ], + [ + 337671, + 129555, + 502 + ], + [ + 337723, + 129639, + 502 + ], + [ + 337704, + 129612, + 502 + ], + [ + 337744, + 129665, + 502 + ], + [ + 351794, + 138926, + 652 + ], + [ + 352862, + 137530, + 692 + ], + [ + 353702, + 138240, + 702 + ], + [ + 351485, + 139320, + 642 + ], + [ + 359376, + 149595, + 712 + ], + [ + 358884, + 149070, + 692 + ], + [ + 359486, + 149727, + 712 + ], + [ + 359605, + 149850, + 712 + ], + [ + 359732, + 149965, + 712 + ], + [ + 359867, + 150070, + 712 + ], + [ + 360334, + 150303, + 712 + ], + [ + 360010, + 150166, + 712 + ], + [ + 360159, + 150251, + 712 + ], + [ + 360313, + 150326, + 712 + ], + [ + 355848, + 140053, + 702 + ], + [ + 354030, + 138517, + 702 + ], + [ + 355919, + 139969, + 702 + ], + [ + 354101, + 138433, + 722 + ], + [ + 351165, + 138432, + 642 + ], + [ + 353773, + 138156, + 722 + ], + [ + 352933, + 137446, + 692 + ], + [ + 352541, + 137259, + 682 + ], + [ + 343425, + 129873, + 632 + ], + [ + 343001, + 129549, + 632 + ], + [ + 344126, + 130214, + 632 + ], + [ + 343521, + 129760, + 632 + ], + [ + 353399, + 119443, + 822 + ], + [ + 340791, + 127816, + 612 + ], + [ + 341194, + 128125, + 612 + ], + [ + 340868, + 127673, + 652 + ], + [ + 330990, + 122460, + 532 + ], + [ + 356717, + 146927, + 632 + ], + [ + 279941, + 86224, + 572 + ], + [ + 302165, + 102163, + 622 + ], + [ + 362793, + 149991, + 652 + ], + [ + 362670, + 150085, + 662 + ], + [ + 362541, + 150170, + 662 + ], + [ + 362406, + 150247, + 662 + ], + [ + 363603, + 154945, + 872 + ], + [ + 362267, + 150315, + 662 + ], + [ + 362124, + 150374, + 662 + ], + [ + 361978, + 150424, + 662 + ], + [ + 361828, + 150464, + 662 + ], + [ + 361677, + 150495, + 672 + ], + [ + 361523, + 150515, + 672 + ], + [ + 361369, + 150526, + 682 + ], + [ + 361214, + 150527, + 682 + ], + [ + 361059, + 150518, + 682 + ], + [ + 359738, + 150964, + 702 + ], + [ + 360906, + 150499, + 692 + ], + [ + 360754, + 150470, + 692 + ], + [ + 360604, + 150432, + 692 + ], + [ + 360457, + 150383, + 712 + ], + [ + 294055, + 68338, + 422 + ], + [ + 291697, + 69046, + 442 + ], + [ + 294293, + 68778, + 412 + ], + [ + 292209, + 69338, + 432 + ], + [ + 292447, + 69777, + 402 + ], + [ + 428669, + 88250, + 802 + ], + [ + 418059, + 103217, + 922 + ], + [ + 411165, + 103390, + 762 + ], + [ + 429116, + 87750, + 842 + ], + [ + 432632, + 90982, + 962 + ], + [ + 403849, + 116096, + 892 + ], + [ + 406737, + 107414, + 842 + ], + [ + 406656, + 113482, + 912 + ], + [ + 409480, + 110886, + 922 + ], + [ + 407983, + 106244, + 792 + ], + [ + 412322, + 108310, + 922 + ], + [ + 415182, + 105754, + 922 + ], + [ + 410521, + 103952, + 762 + ], + [ + 401060, + 118730, + 892 + ], + [ + 398290, + 121383, + 862 + ], + [ + 409881, + 104519, + 772 + ], + [ + 409245, + 105090, + 792 + ], + [ + 408612, + 105665, + 772 + ], + [ + 407358, + 106827, + 812 + ], + [ + 364250, + 148615, + 632 + ], + [ + 429819, + 86966, + 882 + ], + [ + 289151, + 75734, + 432 + ], + [ + 290221, + 75093, + 442 + ], + [ + 290331, + 75121, + 442 + ], + [ + 290241, + 75084, + 442 + ], + [ + 290328, + 75116, + 442 + ], + [ + 290321, + 75108, + 442 + ], + [ + 290325, + 75112, + 442 + ], + [ + 290309, + 75097, + 442 + ], + [ + 290317, + 75104, + 442 + ], + [ + 290313, + 75100, + 442 + ], + [ + 290300, + 75091, + 442 + ], + [ + 290304, + 75094, + 442 + ], + [ + 290290, + 75086, + 442 + ], + [ + 290295, + 75088, + 442 + ], + [ + 290268, + 75082, + 442 + ], + [ + 290279, + 75083, + 442 + ], + [ + 290285, + 75085, + 442 + ], + [ + 290274, + 75082, + 442 + ], + [ + 290257, + 75082, + 442 + ], + [ + 290263, + 75082, + 442 + ], + [ + 290252, + 75082, + 442 + ], + [ + 290246, + 75083, + 442 + ], + [ + 290226, + 75090, + 442 + ], + [ + 290236, + 75086, + 442 + ], + [ + 290231, + 75088, + 442 + ], + [ + 253950, + 93075, + 402 + ], + [ + 254871, + 92473, + 432 + ], + [ + 255144, + 92891, + 442 + ], + [ + 254223, + 93493, + 412 + ], + [ + 306706, + 61398, + 322 + ], + [ + 307005, + 61271, + 322 + ], + [ + 311692, + 59414, + 352 + ], + [ + 311210, + 59594, + 332 + ], + [ + 310728, + 59777, + 332 + ], + [ + 310246, + 59962, + 332 + ], + [ + 309287, + 60338, + 332 + ], + [ + 309766, + 60149, + 332 + ], + [ + 308507, + 60650, + 332 + ], + [ + 308206, + 60773, + 332 + ], + [ + 307905, + 60896, + 332 + ], + [ + 307605, + 61020, + 332 + ], + [ + 307305, + 61145, + 322 + ], + [ + 305934, + 61751, + 302 + ], + [ + 304396, + 62473, + 292 + ], + [ + 305164, + 62109, + 292 + ], + [ + 303632, + 62842, + 302 + ], + [ + 302869, + 63217, + 282 + ], + [ + 302110, + 63597, + 312 + ], + [ + 308808, + 60529, + 332 + ], + [ + 206172, + 130208, + 552 + ], + [ + 200466, + 133622, + 622 + ], + [ + 196296, + 135922, + 612 + ], + [ + 196357, + 135946, + 612 + ], + [ + 196321, + 135967, + 612 + ], + [ + 196375, + 135981, + 612 + ], + [ + 394186, + 25234, + 682 + ], + [ + 394336, + 25809, + 662 + ], + [ + 393853, + 25935, + 682 + ], + [ + 393700, + 25354, + 1012 + ], + [ + 394186, + 25234, + 582 + ], + [ + 394336, + 25809, + 582 + ], + [ + 393853, + 25935, + 302 + ], + [ + 393700, + 25354, + 302 + ], + [ + 292875, + 74437, + 4272 + ], + [ + 376887, + 96647, + 4082 + ], + [ + 380852, + 92275, + 2962 + ], + [ + 353399, + 119443, + 852 + ], + [ + 393947, + 89661, + 2682 + ], + [ + 393914, + 89211, + 2632 + ], + [ + 398060, + 92763, + 2772 + ], + [ + 397763, + 92930, + 2622 + ], + [ + 109839, + 170332, + 1462 + ], + [ + 84315, + 182093, + 4622 + ], + [ + 56356, + 193967, + 1462 + ], + [ + 80933, + 183588, + 4622 + ], + [ + 79290, + 184314, + 4622 + ], + [ + 90847, + 179206, + 4622 + ], + [ + 85658, + 181499, + 4622 + ], + [ + 92227, + 178597, + 4622 + ], + [ + 97198, + 176400, + 4622 + ], + [ + 98554, + 175801, + 4622 + ], + [ + 105022, + 172942, + 4622 + ], + [ + 110018, + 170734, + 4622 + ], + [ + 110124, + 170687, + 4622 + ], + [ + 103661, + 173544, + 4622 + ], + [ + 116519, + 167817, + 4622 + ], + [ + 111466, + 170084, + 4622 + ], + [ + 117862, + 167214, + 4622 + ], + [ + 118387, + 166497, + 1462 + ], + [ + 118568, + 166898, + 4622 + ], + [ + 122966, + 164908, + 4622 + ], + [ + 122940, + 164437, + 1462 + ], + [ + 123121, + 164838, + 4622 + ], + [ + 124311, + 164300, + 4622 + ], + [ + 129417, + 161992, + 4622 + ], + [ + 130773, + 161379, + 4622 + ], + [ + 136520, + 158781, + 4622 + ], + [ + 137840, + 158184, + 4622 + ], + [ + 150645, + 151912, + 1462 + ], + [ + 143023, + 155841, + 4622 + ], + [ + 149442, + 152939, + 4622 + ], + [ + 144370, + 155232, + 4622 + ], + [ + 150767, + 152340, + 4622 + ], + [ + 151603, + 151960, + 4622 + ], + [ + 151411, + 151564, + 1462 + ], + [ + 155771, + 149819, + 4622 + ], + [ + 157051, + 149162, + 4622 + ], + [ + 162012, + 146614, + 4622 + ], + [ + 170859, + 141575, + 1462 + ], + [ + 163330, + 145937, + 4622 + ], + [ + 168347, + 143360, + 4622 + ], + [ + 169661, + 142685, + 4622 + ], + [ + 171061, + 141966, + 4622 + ], + [ + 173670, + 140621, + 4622 + ], + [ + 202997, + 125016, + 1462 + ], + [ + 187383, + 133556, + 4622 + ], + [ + 174966, + 139954, + 4622 + ], + [ + 179877, + 137423, + 4622 + ], + [ + 181212, + 136736, + 4622 + ], + [ + 186088, + 134223, + 4622 + ], + [ + 199440, + 127344, + 4262 + ], + [ + 203013, + 125062, + 1462 + ], + [ + 191843, + 131258, + 4622 + ], + [ + 193182, + 130568, + 3432 + ], + [ + 198117, + 128025, + 542 + ], + [ + 203223, + 125341, + 1442 + ], + [ + 203289, + 125360, + 1442 + ], + [ + 203051, + 125040, + 1512 + ], + [ + 45057, + 199557, + 1462 + ], + [ + 41760, + 201133, + 1462 + ], + [ + 41570, + 200736, + 1462 + ], + [ + 51565, + 196585, + 1462 + ], + [ + 47449, + 197938, + 1462 + ], + [ + 45237, + 199473, + 1462 + ], + [ + 44868, + 199160, + 1462 + ], + [ + 37528, + 200891, + 1462 + ], + [ + 37801, + 201385, + 1462 + ], + [ + 37291, + 200905, + 1462 + ], + [ + 37577, + 201848, + 1462 + ], + [ + 37063, + 200919, + 1462 + ], + [ + 47633, + 198338, + 1462 + ], + [ + 50215, + 197187, + 1462 + ], + [ + 56500, + 194385, + 1462 + ], + [ + 62904, + 191555, + 1462 + ], + [ + 57874, + 193778, + 1462 + ], + [ + 64241, + 190964, + 1462 + ], + [ + 69423, + 188674, + 1462 + ], + [ + 70776, + 188076, + 1462 + ], + [ + 77937, + 184911, + 1462 + ], + [ + 199440, + 127344, + 462 + ], + [ + 203013, + 125062, + 302 + ], + [ + 202997, + 125016, + 302 + ], + [ + 170859, + 141575, + 302 + ], + [ + 151411, + 151564, + 302 + ], + [ + 150645, + 151912, + 302 + ], + [ + 122940, + 164437, + 302 + ], + [ + 118387, + 166497, + 302 + ], + [ + 109839, + 170332, + 302 + ], + [ + 56356, + 193967, + 302 + ], + [ + 47449, + 197938, + 302 + ], + [ + 44868, + 199160, + 302 + ], + [ + 41570, + 200736, + 302 + ], + [ + 37801, + 201385, + 302 + ], + [ + 37528, + 200891, + 302 + ], + [ + 37291, + 200905, + 302 + ], + [ + 37063, + 200919, + 302 + ], + [ + 324056, + 155427, + 3832 + ], + [ + 324427, + 154656, + 3582 + ], + [ + 325475, + 153356, + 3422 + ], + [ + 325861, + 152562, + 2962 + ], + [ + 326068, + 152454, + 2962 + ], + [ + 322708, + 157380, + 4352 + ], + [ + 323304, + 156296, + 3782 + ], + [ + 323191, + 156461, + 3822 + ], + [ + 322619, + 157296, + 4352 + ], + [ + 324232, + 154764, + 3702 + ], + [ + 324344, + 154599, + 3582 + ], + [ + 324314, + 154821, + 3812 + ], + [ + 321870, + 158389, + 3532 + ], + [ + 320633, + 160196, + 3812 + ], + [ + 323108, + 156404, + 3742 + ], + [ + 323221, + 156239, + 3782 + ], + [ + 321989, + 158216, + 4222 + ], + [ + 321906, + 158160, + 4222 + ], + [ + 321787, + 158333, + 3522 + ], + [ + 343001, + 129549, + 812 + ], + [ + 343521, + 129760, + 1122 + ], + [ + 343425, + 129873, + 1122 + ], + [ + 343754, + 129442, + 2822 + ], + [ + 350233, + 122953, + 2682 + ], + [ + 344126, + 130214, + 652 + ], + [ + 350436, + 122705, + 2682 + ], + [ + 350357, + 122646, + 2682 + ], + [ + 350141, + 122886, + 2682 + ], + [ + 347282, + 126370, + 2702 + ], + [ + 346993, + 126549, + 2702 + ], + [ + 347205, + 126302, + 2722 + ], + [ + 347070, + 126618, + 2722 + ], + [ + 343653, + 129587, + 2822 + ], + [ + 397364, + 24448, + 8652 + ], + [ + 394079, + 24825, + 682 + ], + [ + 398116, + 23817, + 7612 + ], + [ + 400560, + 23612, + 8912 + ], + [ + 399599, + 23429, + 7692 + ], + [ + 401643, + 23328, + 6662 + ], + [ + 410684, + 22585, + 1972 + ], + [ + 411031, + 22219, + 1902 + ], + [ + 406967, + 21935, + 1302 + ], + [ + 406950, + 21506, + 1262 + ], + [ + 392956, + 25106, + 4452 + ], + [ + 391484, + 25470, + 4102 + ], + [ + 386273, + 26759, + 7522 + ], + [ + 384791, + 27125, + 7912 + ], + [ + 373210, + 29990, + 6682 + ], + [ + 358579, + 34042, + 722 + ], + [ + 371725, + 30357, + 7242 + ], + [ + 366354, + 31686, + 6762 + ], + [ + 364842, + 32061, + 6862 + ], + [ + 358289, + 33668, + 772 + ], + [ + 359821, + 33303, + 7232 + ], + [ + 353109, + 34868, + 1332 + ], + [ + 351652, + 35205, + 1022 + ], + [ + 344304, + 36909, + 1502 + ], + [ + 342060, + 37870, + 1582 + ], + [ + 342773, + 37263, + 1542 + ], + [ + 342081, + 37423, + 1572 + ], + [ + 337158, + 38508, + 1922 + ], + [ + 336865, + 38611, + 1962 + ], + [ + 336733, + 38425, + 1962 + ], + [ + 337058, + 38087, + 1892 + ], + [ + 336606, + 38246, + 1932 + ], + [ + 341984, + 37446, + 1572 + ], + [ + 379834, + 28352, + 7602 + ], + [ + 378352, + 28719, + 7852 + ], + [ + 397364, + 24448, + 582 + ], + [ + 400560, + 23612, + 582 + ], + [ + 401643, + 23328, + 582 + ], + [ + 406967, + 21935, + 582 + ], + [ + 410684, + 22585, + 582 + ], + [ + 341984, + 37446, + 1502 + ], + [ + 337058, + 38087, + 1812 + ], + [ + 336606, + 38246, + 1852 + ], + [ + 337158, + 38508, + 302 + ], + [ + 336865, + 38611, + 302 + ], + [ + 342060, + 37870, + 302 + ], + [ + 358579, + 34042, + 302 + ], + [ + 346486, + 145258, + 1022 + ], + [ + 346327, + 144995, + 982 + ], + [ + 346557, + 145188, + 972 + ], + [ + 346260, + 145069, + 992 + ], + [ + 344158, + 143185, + 1022 + ], + [ + 343975, + 142927, + 982 + ], + [ + 344225, + 143110, + 922 + ], + [ + 343910, + 143003, + 982 + ], + [ + 341797, + 141184, + 862 + ], + [ + 341607, + 140898, + 822 + ], + [ + 341862, + 141109, + 832 + ], + [ + 341543, + 140975, + 832 + ], + [ + 252428, + 98951, + 492 + ], + [ + 252482, + 98659, + 472 + ], + [ + 252378, + 98985, + 492 + ], + [ + 252197, + 99110, + 492 + ], + [ + 247227, + 102525, + 502 + ], + [ + 246886, + 102505, + 472 + ], + [ + 247054, + 102644, + 492 + ], + [ + 247005, + 102678, + 492 + ], + [ + 278221, + 135940, + 4842 + ], + [ + 276701, + 138123, + 5122 + ], + [ + 278139, + 135883, + 4842 + ], + [ + 276619, + 138066, + 5122 + ], + [ + 318001, + 163687, + 3052 + ], + [ + 316456, + 166290, + 3052 + ], + [ + 316353, + 166036, + 3012 + ], + [ + 320453, + 160191, + 3812 + ], + [ + 320135, + 159965, + 3812 + ], + [ + 320274, + 159942, + 3812 + ], + [ + 320192, + 159884, + 3812 + ], + [ + 319993, + 160846, + 3532 + ], + [ + 319903, + 160783, + 3502 + ], + [ + 320219, + 160332, + 3812 + ], + [ + 320309, + 160395, + 3542 + ], + [ + 318328, + 163220, + 3052 + ], + [ + 318238, + 163157, + 3072 + ], + [ + 317911, + 163623, + 3012 + ], + [ + 316131, + 166161, + 3012 + ], + [ + 316263, + 165973, + 3012 + ], + [ + 316409, + 166357, + 3052 + ], + [ + 279268, + 131691, + 3432 + ], + [ + 276896, + 134990, + 2602 + ], + [ + 279186, + 131634, + 3232 + ], + [ + 276815, + 134931, + 2602 + ], + [ + 272872, + 140416, + 2542 + ], + [ + 196359, + 117543, + 1772 + ], + [ + 196064, + 117531, + 1742 + ], + [ + 196194, + 117137, + 1722 + ], + [ + 195771, + 117500, + 1852 + ], + [ + 195934, + 117114, + 1722 + ], + [ + 195480, + 117450, + 1852 + ], + [ + 195676, + 117074, + 1722 + ], + [ + 195194, + 117381, + 1882 + ], + [ + 195421, + 117016, + 1772 + ], + [ + 194912, + 117293, + 1852 + ], + [ + 195171, + 116942, + 1772 + ], + [ + 194637, + 117187, + 1912 + ], + [ + 194927, + 116851, + 1852 + ], + [ + 194369, + 117064, + 1922 + ], + [ + 194689, + 116743, + 1852 + ], + [ + 193621, + 116593, + 1922 + ], + [ + 193060, + 116484, + 2032 + ], + [ + 193635, + 115984, + 1802 + ], + [ + 194237, + 116482, + 1882 + ], + [ + 194109, + 116923, + 1952 + ], + [ + 193860, + 116766, + 1952 + ], + [ + 194025, + 116330, + 1842 + ], + [ + 193824, + 116163, + 1822 + ], + [ + 194459, + 116620, + 1852 + ], + [ + 193226, + 116664, + 2032 + ], + [ + 193366, + 116816, + 2432 + ], + [ + 196454, + 117143, + 1722 + ], + [ + 196715, + 117131, + 1722 + ], + [ + 196654, + 117536, + 1772 + ], + [ + 196974, + 117102, + 1692 + ], + [ + 196948, + 117510, + 1772 + ], + [ + 197231, + 117055, + 1692 + ], + [ + 197239, + 117465, + 1772 + ], + [ + 197484, + 116991, + 1682 + ], + [ + 197527, + 117401, + 1942 + ], + [ + 197732, + 116911, + 1682 + ], + [ + 197810, + 117318, + 1942 + ], + [ + 197975, + 116814, + 1612 + ], + [ + 198087, + 117217, + 1942 + ], + [ + 198336, + 117042, + 1622 + ], + [ + 198357, + 117098, + 1622 + ], + [ + 198242, + 116788, + 1602 + ], + [ + 198210, + 116701, + 1602 + ], + [ + 193621, + 116593, + 302 + ], + [ + 193366, + 116816, + 302 + ], + [ + 193860, + 116766, + 302 + ], + [ + 194109, + 116923, + 302 + ], + [ + 194369, + 117064, + 302 + ], + [ + 194637, + 117187, + 302 + ], + [ + 194912, + 117293, + 302 + ], + [ + 195194, + 117381, + 302 + ], + [ + 195480, + 117450, + 302 + ], + [ + 195771, + 117500, + 302 + ], + [ + 196064, + 117531, + 302 + ], + [ + 196359, + 117543, + 302 + ], + [ + 196654, + 117536, + 302 + ], + [ + 196948, + 117510, + 302 + ], + [ + 197239, + 117465, + 302 + ], + [ + 197527, + 117401, + 302 + ], + [ + 197810, + 117318, + 302 + ], + [ + 198087, + 117217, + 302 + ], + [ + 303548, + 184296, + 3732 + ], + [ + 303384, + 184165, + 3732 + ], + [ + 330564, + 147826, + 3302 + ], + [ + 330394, + 147703, + 2992 + ], + [ + 403757, + 31323, + 4542 + ], + [ + 398913, + 32727, + 5392 + ], + [ + 396028, + 33106, + 1302 + ], + [ + 411897, + 27720, + 1962 + ], + [ + 411755, + 27133, + 2082 + ], + [ + 411963, + 27081, + 2302 + ], + [ + 412347, + 27795, + 1932 + ], + [ + 412163, + 27032, + 2302 + ], + [ + 411212, + 29149, + 1332 + ], + [ + 410963, + 28775, + 1382 + ], + [ + 409363, + 29697, + 1812 + ], + [ + 405190, + 30907, + 5162 + ], + [ + 385483, + 36720, + 4082 + ], + [ + 384109, + 37139, + 4082 + ], + [ + 387110, + 35764, + 1172 + ], + [ + 351518, + 47075, + 6702 + ], + [ + 350119, + 47501, + 4952 + ], + [ + 359329, + 44237, + 5552 + ], + [ + 327384, + 53964, + 6282 + ], + [ + 327057, + 54480, + 4972 + ], + [ + 326946, + 54054, + 6522 + ], + [ + 300430, + 64460, + 7352 + ], + [ + 300277, + 64541, + 7262 + ], + [ + 300405, + 64000, + 7482 + ], + [ + 307653, + 60546, + 332 + ], + [ + 307305, + 61145, + 342 + ], + [ + 306542, + 61011, + 332 + ], + [ + 305934, + 61751, + 1762 + ], + [ + 305508, + 61485, + 1762 + ], + [ + 299507, + 64918, + 6422 + ], + [ + 295953, + 66770, + 8512 + ], + [ + 299399, + 64531, + 6632 + ], + [ + 294609, + 67470, + 7702 + ], + [ + 294269, + 67219, + 6382 + ], + [ + 303453, + 62463, + 6912 + ], + [ + 302869, + 63217, + 6962 + ], + [ + 302432, + 62966, + 7332 + ], + [ + 302110, + 63597, + 7212 + ], + [ + 301416, + 63478, + 7482 + ], + [ + 301045, + 64140, + 7352 + ], + [ + 290167, + 69875, + 9532 + ], + [ + 288857, + 70586, + 7802 + ], + [ + 285501, + 71995, + 6632 + ], + [ + 272842, + 80283, + 412 + ], + [ + 263460, + 86380, + 5572 + ], + [ + 263220, + 86012, + 6322 + ], + [ + 261355, + 87756, + 6212 + ], + [ + 256738, + 90774, + 5452 + ], + [ + 228270, + 109388, + 4532 + ], + [ + 227022, + 110204, + 1522 + ], + [ + 233370, + 105523, + 5972 + ], + [ + 209394, + 121742, + 3952 + ], + [ + 205365, + 124379, + 1312 + ], + [ + 205339, + 124120, + 1462 + ], + [ + 205225, + 123793, + 1502 + ], + [ + 205296, + 123898, + 1312 + ], + [ + 205140, + 123842, + 1522 + ], + [ + 221192, + 114020, + 522 + ], + [ + 205312, + 124246, + 1462 + ], + [ + 205282, + 124282, + 1502 + ], + [ + 210623, + 120937, + 2842 + ], + [ + 215331, + 117856, + 5172 + ], + [ + 216567, + 117047, + 5392 + ], + [ + 222415, + 113219, + 5062 + ], + [ + 250479, + 94866, + 5132 + ], + [ + 232895, + 106360, + 4572 + ], + [ + 233611, + 105891, + 5582 + ], + [ + 234079, + 105586, + 5042 + ], + [ + 238778, + 102514, + 3372 + ], + [ + 239999, + 101716, + 4512 + ], + [ + 244621, + 98695, + 4132 + ], + [ + 245849, + 97892, + 4692 + ], + [ + 251710, + 94061, + 5462 + ], + [ + 255489, + 91591, + 4242 + ], + [ + 276003, + 77699, + 492 + ], + [ + 262577, + 86958, + 6112 + ], + [ + 283548, + 73531, + 6542 + ], + [ + 283175, + 73865, + 7042 + ], + [ + 278316, + 76815, + 362 + ], + [ + 276235, + 78078, + 392 + ], + [ + 283587, + 73615, + 6542 + ], + [ + 284422, + 73030, + 6942 + ], + [ + 285686, + 72305, + 6632 + ], + [ + 291697, + 69046, + 7772 + ], + [ + 299977, + 64688, + 6632 + ], + [ + 304478, + 61969, + 1792 + ], + [ + 304396, + 62473, + 1792 + ], + [ + 305164, + 62109, + 1782 + ], + [ + 308769, + 60092, + 8472 + ], + [ + 308507, + 60650, + 352 + ], + [ + 300584, + 64380, + 7352 + ], + [ + 300737, + 64300, + 7482 + ], + [ + 300891, + 64220, + 7482 + ], + [ + 301199, + 64061, + 7482 + ], + [ + 301353, + 63982, + 7392 + ], + [ + 310728, + 59777, + 7482 + ], + [ + 309889, + 59650, + 8252 + ], + [ + 311014, + 59219, + 7652 + ], + [ + 309287, + 60338, + 7142 + ], + [ + 303632, + 62842, + 6962 + ], + [ + 312143, + 58801, + 8192 + ], + [ + 311692, + 59414, + 7582 + ], + [ + 313629, + 58715, + 7672 + ], + [ + 313277, + 58394, + 8322 + ], + [ + 314415, + 57999, + 8212 + ], + [ + 312798, + 59010, + 7822 + ], + [ + 307005, + 61271, + 342 + ], + [ + 306706, + 61398, + 352 + ], + [ + 307605, + 61020, + 342 + ], + [ + 307905, + 60896, + 342 + ], + [ + 308206, + 60773, + 342 + ], + [ + 308808, + 60529, + 352 + ], + [ + 309766, + 60149, + 7872 + ], + [ + 310246, + 59962, + 7752 + ], + [ + 311210, + 59594, + 7322 + ], + [ + 312176, + 59236, + 7582 + ], + [ + 312383, + 59160, + 7582 + ], + [ + 312590, + 59085, + 6822 + ], + [ + 313005, + 58936, + 7582 + ], + [ + 313213, + 58862, + 7822 + ], + [ + 313421, + 58788, + 7482 + ], + [ + 343910, + 49392, + 5832 + ], + [ + 326210, + 54287, + 7422 + ], + [ + 318782, + 57059, + 8292 + ], + [ + 317337, + 57516, + 6562 + ], + [ + 324467, + 55302, + 6682 + ], + [ + 325914, + 54843, + 6832 + ], + [ + 326343, + 54707, + 6742 + ], + [ + 327492, + 54391, + 4112 + ], + [ + 330904, + 53352, + 5882 + ], + [ + 332323, + 52920, + 5952 + ], + [ + 337197, + 51436, + 5762 + ], + [ + 338607, + 51007, + 6172 + ], + [ + 345323, + 48962, + 5942 + ], + [ + 371884, + 40867, + 4622 + ], + [ + 356798, + 45467, + 5332 + ], + [ + 358217, + 45035, + 4862 + ], + [ + 359458, + 44658, + 5082 + ], + [ + 363674, + 43372, + 5072 + ], + [ + 365077, + 42944, + 5072 + ], + [ + 370493, + 41292, + 6282 + ], + [ + 377187, + 39250, + 4272 + ], + [ + 378610, + 38816, + 4362 + ], + [ + 394030, + 33685, + 5042 + ], + [ + 391301, + 34964, + 4582 + ], + [ + 387237, + 36185, + 1222 + ], + [ + 395538, + 33248, + 1252 + ], + [ + 394154, + 34107, + 1152 + ], + [ + 392697, + 34545, + 4972 + ], + [ + 396151, + 33529, + 1252 + ], + [ + 397487, + 33141, + 5242 + ], + [ + 411963, + 27081, + 582 + ], + [ + 411897, + 27720, + 582 + ], + [ + 410963, + 28775, + 582 + ], + [ + 396028, + 33106, + 582 + ], + [ + 394030, + 33685, + 302 + ], + [ + 395538, + 33248, + 302 + ], + [ + 387110, + 35764, + 302 + ], + [ + 359329, + 44237, + 302 + ], + [ + 327384, + 53964, + 302 + ], + [ + 326946, + 54054, + 302 + ], + [ + 326210, + 54287, + 302 + ], + [ + 314415, + 57999, + 302 + ], + [ + 313277, + 58394, + 302 + ], + [ + 312143, + 58801, + 302 + ], + [ + 311014, + 59219, + 302 + ], + [ + 309889, + 59650, + 302 + ], + [ + 308769, + 60092, + 302 + ], + [ + 307653, + 60546, + 302 + ], + [ + 306542, + 61011, + 302 + ], + [ + 305508, + 61485, + 302 + ], + [ + 304478, + 61969, + 302 + ], + [ + 303453, + 62463, + 302 + ], + [ + 302432, + 62966, + 302 + ], + [ + 301416, + 63478, + 302 + ], + [ + 300405, + 64000, + 302 + ], + [ + 299399, + 64531, + 302 + ], + [ + 294269, + 67219, + 302 + ], + [ + 285501, + 71995, + 302 + ], + [ + 276003, + 77699, + 302 + ], + [ + 263220, + 86012, + 302 + ], + [ + 233370, + 105523, + 302 + ], + [ + 205296, + 123898, + 302 + ], + [ + 205225, + 123793, + 302 + ], + [ + 326343, + 54707, + 272 + ], + [ + 327057, + 54480, + 252 + ], + [ + 327492, + 54391, + 242 + ], + [ + 359458, + 44658, + 222 + ], + [ + 387237, + 36185, + 202 + ], + [ + 394154, + 34107, + 622 + ], + [ + 396151, + 33529, + 622 + ], + [ + 285503, + 135734, + 2002 + ], + [ + 345801, + 92988, + 962 + ], + [ + 345545, + 91254, + 952 + ], + [ + 345569, + 91545, + 952 + ], + [ + 345687, + 92414, + 952 + ], + [ + 343601, + 93452, + 952 + ], + [ + 343436, + 92795, + 972 + ], + [ + 343259, + 91794, + 962 + ], + [ + 343514, + 93125, + 962 + ], + [ + 343368, + 92463, + 972 + ], + [ + 343309, + 92129, + 972 + ], + [ + 343219, + 91457, + 962 + ], + [ + 345640, + 92126, + 952 + ], + [ + 345601, + 91836, + 952 + ], + [ + 345740, + 92702, + 952 + ], + [ + 421120, + 33600, + 2062 + ], + [ + 410976, + 36624, + 2092 + ], + [ + 410949, + 37519, + 2242 + ], + [ + 422393, + 33622, + 2772 + ], + [ + 422501, + 33672, + 2782 + ], + [ + 422230, + 34029, + 2772 + ], + [ + 421232, + 33562, + 2052 + ], + [ + 422605, + 33729, + 2782 + ], + [ + 422305, + 34065, + 2782 + ], + [ + 422671, + 33774, + 2782 + ], + [ + 422735, + 33822, + 11882 + ], + [ + 422449, + 34150, + 2782 + ], + [ + 422796, + 33873, + 11882 + ], + [ + 422516, + 34200, + 11882 + ], + [ + 422855, + 33927, + 11882 + ], + [ + 422911, + 33984, + 11882 + ], + [ + 422965, + 34043, + 11882 + ], + [ + 422639, + 34312, + 11882 + ], + [ + 422169, + 33545, + 2282 + ], + [ + 422283, + 33580, + 2772 + ], + [ + 422378, + 34105, + 2782 + ], + [ + 422579, + 34254, + 11882 + ], + [ + 422695, + 34374, + 11882 + ], + [ + 422053, + 33519, + 2142 + ], + [ + 421936, + 33500, + 2122 + ], + [ + 421818, + 33490, + 2092 + ], + [ + 421700, + 33488, + 2082 + ], + [ + 421581, + 33494, + 2082 + ], + [ + 421463, + 33508, + 2052 + ], + [ + 421347, + 33531, + 2052 + ], + [ + 410361, + 36326, + 1962 + ], + [ + 393003, + 60152, + 2692 + ], + [ + 392796, + 60099, + 1862 + ], + [ + 393084, + 60846, + 2692 + ], + [ + 392896, + 60958, + 2692 + ], + [ + 340868, + 127673, + 662 + ], + [ + 341194, + 128125, + 652 + ], + [ + 340791, + 127816, + 752 + ], + [ + 362409, + 71034, + 2532 + ], + [ + 362380, + 70939, + 2532 + ], + [ + 352933, + 137446, + 932 + ], + [ + 352541, + 137259, + 842 + ], + [ + 352862, + 137530, + 842 + ], + [ + 354030, + 138517, + 872 + ], + [ + 353702, + 138240, + 842 + ], + [ + 354101, + 138433, + 3062 + ], + [ + 395891, + 40226, + 792 + ], + [ + 395949, + 40449, + 792 + ], + [ + 219752, + 120445, + 562 + ], + [ + 215919, + 122972, + 562 + ], + [ + 216008, + 123105, + 582 + ], + [ + 395875, + 32578, + 5362 + ], + [ + 395385, + 32720, + 992 + ], + [ + 395875, + 32578, + 582 + ], + [ + 395385, + 32720, + 302 + ], + [ + 289151, + 75734, + 452 + ], + [ + 289063, + 75588, + 442 + ], + [ + 290252, + 75082, + 452 + ], + [ + 290246, + 75083, + 452 + ], + [ + 290257, + 75082, + 452 + ], + [ + 290263, + 75082, + 452 + ], + [ + 290268, + 75082, + 452 + ], + [ + 290274, + 75082, + 452 + ], + [ + 290279, + 75083, + 452 + ], + [ + 290285, + 75085, + 452 + ], + [ + 290290, + 75086, + 452 + ], + [ + 290295, + 75088, + 452 + ], + [ + 290300, + 75091, + 452 + ], + [ + 290304, + 75094, + 452 + ], + [ + 290309, + 75097, + 452 + ], + [ + 290313, + 75100, + 452 + ], + [ + 290317, + 75104, + 452 + ], + [ + 290325, + 75112, + 452 + ], + [ + 290321, + 75108, + 452 + ], + [ + 290328, + 75116, + 452 + ], + [ + 290331, + 75121, + 452 + ], + [ + 290241, + 75084, + 452 + ], + [ + 290236, + 75086, + 452 + ], + [ + 409557, + 102259, + 4242 + ], + [ + 409292, + 102133, + 4242 + ], + [ + 409354, + 102068, + 4242 + ], + [ + 409227, + 102072, + 4242 + ], + [ + 326449, + 82121, + 3372 + ], + [ + 325532, + 83333, + 1492 + ], + [ + 325515, + 83193, + 2962 + ], + [ + 320326, + 78742, + 1472 + ], + [ + 320188, + 78913, + 1472 + ], + [ + 326387, + 82038, + 3372 + ], + [ + 250654, + 81315, + 6982 + ], + [ + 249072, + 82856, + 322 + ], + [ + 243330, + 86254, + 7102 + ], + [ + 218726, + 103261, + 1482 + ], + [ + 210468, + 108685, + 9322 + ], + [ + 213929, + 105898, + 8392 + ], + [ + 253209, + 80121, + 7272 + ], + [ + 251938, + 80455, + 7022 + ], + [ + 292383, + 57648, + 1112 + ], + [ + 279969, + 64367, + 342 + ], + [ + 288102, + 59478, + 472 + ], + [ + 295216, + 56078, + 452 + ], + [ + 294017, + 56283, + 362 + ], + [ + 301340, + 52800, + 552 + ], + [ + 300012, + 53061, + 562 + ], + [ + 302349, + 52290, + 1482 + ], + [ + 301369, + 52331, + 1582 + ], + [ + 305410, + 50826, + 512 + ], + [ + 304384, + 51303, + 462 + ], + [ + 306041, + 50155, + 582 + ], + [ + 327778, + 42095, + 1482 + ], + [ + 323319, + 43606, + 1152 + ], + [ + 324918, + 42610, + 4132 + ], + [ + 332366, + 40194, + 1482 + ], + [ + 332604, + 39878, + 1482 + ], + [ + 332733, + 40065, + 1482 + ], + [ + 327833, + 41607, + 1482 + ], + [ + 332212, + 39792, + 1482 + ], + [ + 332480, + 39698, + 1482 + ], + [ + 327627, + 41692, + 1482 + ], + [ + 326381, + 42114, + 1502 + ], + [ + 313297, + 47467, + 702 + ], + [ + 318349, + 45064, + 942 + ], + [ + 308517, + 49464, + 2062 + ], + [ + 312248, + 47460, + 702 + ], + [ + 323181, + 43199, + 1172 + ], + [ + 307476, + 49907, + 602 + ], + [ + 307421, + 49556, + 2062 + ], + [ + 319792, + 44507, + 1102 + ], + [ + 306440, + 50361, + 582 + ], + [ + 313690, + 46863, + 662 + ], + [ + 303364, + 51791, + 612 + ], + [ + 302789, + 51567, + 1532 + ], + [ + 276535, + 66305, + 432 + ], + [ + 277506, + 65264, + 452 + ], + [ + 295381, + 55550, + 452 + ], + [ + 289453, + 58746, + 472 + ], + [ + 262158, + 74373, + 1232 + ], + [ + 256699, + 77840, + 8672 + ], + [ + 259721, + 75576, + 412 + ], + [ + 283665, + 61879, + 492 + ], + [ + 282286, + 62626, + 452 + ], + [ + 279740, + 64003, + 432 + ], + [ + 276236, + 65983, + 452 + ], + [ + 271725, + 68603, + 442 + ], + [ + 270328, + 69414, + 442 + ], + [ + 265921, + 71975, + 1002 + ], + [ + 253177, + 80070, + 7272 + ], + [ + 256272, + 77590, + 7882 + ], + [ + 264641, + 72718, + 1042 + ], + [ + 262387, + 74028, + 1362 + ], + [ + 261987, + 74260, + 1302 + ], + [ + 252980, + 79757, + 7362 + ], + [ + 258320, + 76390, + 8642 + ], + [ + 252943, + 79698, + 7272 + ], + [ + 237103, + 90981, + 492 + ], + [ + 227216, + 97644, + 402 + ], + [ + 232240, + 93746, + 7662 + ], + [ + 221049, + 101212, + 6412 + ], + [ + 242225, + 87001, + 7102 + ], + [ + 237866, + 89947, + 7272 + ], + [ + 236637, + 90778, + 872 + ], + [ + 231033, + 94561, + 7882 + ], + [ + 226647, + 97516, + 6212 + ], + [ + 225485, + 98283, + 462 + ], + [ + 219784, + 102047, + 482 + ], + [ + 215127, + 105110, + 7172 + ], + [ + 209550, + 108771, + 8632 + ], + [ + 208333, + 109567, + 8212 + ], + [ + 207562, + 110595, + 872 + ], + [ + 204051, + 113059, + 7092 + ], + [ + 203798, + 112699, + 6512 + ], + [ + 203383, + 112990, + 6572 + ], + [ + 202163, + 113846, + 5912 + ], + [ + 200517, + 115538, + 1652 + ], + [ + 200264, + 115178, + 1572 + ], + [ + 200461, + 115548, + 1622 + ], + [ + 200510, + 115909, + 1662 + ], + [ + 200352, + 115606, + 1622 + ], + [ + 200203, + 115686, + 1622 + ], + [ + 200167, + 115804, + 1622 + ], + [ + 198606, + 116602, + 1602 + ], + [ + 198740, + 116640, + 1602 + ], + [ + 198628, + 116978, + 1632 + ], + [ + 198522, + 116952, + 1622 + ], + [ + 198469, + 116672, + 1612 + ], + [ + 198429, + 116827, + 1622 + ], + [ + 200641, + 115834, + 2422 + ], + [ + 218726, + 103261, + 302 + ], + [ + 210468, + 108685, + 302 + ], + [ + 227216, + 97644, + 302 + ], + [ + 237103, + 90981, + 302 + ], + [ + 249072, + 82856, + 302 + ], + [ + 253209, + 80121, + 302 + ], + [ + 253177, + 80070, + 302 + ], + [ + 256699, + 77840, + 302 + ], + [ + 276535, + 66305, + 302 + ], + [ + 279969, + 64367, + 302 + ], + [ + 292383, + 57648, + 302 + ], + [ + 295216, + 56078, + 302 + ], + [ + 301340, + 52800, + 302 + ], + [ + 302349, + 52290, + 302 + ], + [ + 303364, + 51791, + 302 + ], + [ + 304384, + 51303, + 302 + ], + [ + 305410, + 50826, + 302 + ], + [ + 306440, + 50361, + 302 + ], + [ + 307476, + 49907, + 302 + ], + [ + 308517, + 49464, + 302 + ], + [ + 313297, + 47467, + 302 + ], + [ + 323319, + 43606, + 302 + ], + [ + 327778, + 42095, + 302 + ], + [ + 332366, + 40194, + 302 + ], + [ + 332733, + 40065, + 302 + ], + [ + 259721, + 75576, + 372 + ], + [ + 252943, + 79698, + 312 + ], + [ + 252980, + 79757, + 312 + ], + [ + 200510, + 115909, + 302 + ], + [ + 200641, + 115834, + 302 + ], + [ + 200517, + 115538, + 302 + ], + [ + 204051, + 113059, + 302 + ], + [ + 207562, + 110595, + 302 + ], + [ + 402437, + 32695, + 762 + ], + [ + 403162, + 31964, + 802 + ], + [ + 402297, + 32215, + 762 + ], + [ + 403301, + 32444, + 802 + ], + [ + 356881, + 156000, + 642 + ], + [ + 359586, + 158840, + 812 + ], + [ + 359397, + 159023, + 792 + ], + [ + 312514, + 39997, + 752 + ], + [ + 307052, + 42634, + 562 + ], + [ + 327452, + 40504, + 1482 + ], + [ + 332020, + 39030, + 1482 + ], + [ + 317316, + 36796, + 932 + ], + [ + 317344, + 36669, + 932 + ], + [ + 317280, + 36920, + 922 + ], + [ + 317236, + 37043, + 922 + ], + [ + 317185, + 37162, + 932 + ], + [ + 317126, + 37277, + 922 + ], + [ + 316510, + 37939, + 902 + ], + [ + 317060, + 37389, + 922 + ], + [ + 316988, + 37497, + 922 + ], + [ + 316908, + 37599, + 902 + ], + [ + 316823, + 37697, + 902 + ], + [ + 316731, + 37789, + 902 + ], + [ + 316634, + 37875, + 902 + ], + [ + 291910, + 50575, + 522 + ], + [ + 291869, + 50536, + 522 + ], + [ + 295450, + 48711, + 522 + ], + [ + 300882, + 45763, + 562 + ], + [ + 285806, + 53958, + 482 + ], + [ + 280066, + 57336, + 432 + ], + [ + 276855, + 58770, + 452 + ], + [ + 276900, + 58206, + 452 + ], + [ + 276885, + 58144, + 452 + ], + [ + 276912, + 58269, + 452 + ], + [ + 276919, + 58332, + 452 + ], + [ + 276922, + 58396, + 452 + ], + [ + 276921, + 58459, + 452 + ], + [ + 276916, + 58523, + 452 + ], + [ + 276907, + 58586, + 452 + ], + [ + 276893, + 58648, + 452 + ], + [ + 276876, + 58710, + 452 + ], + [ + 276829, + 58828, + 452 + ], + [ + 276800, + 58885, + 452 + ], + [ + 276768, + 58940, + 452 + ], + [ + 276731, + 58992, + 452 + ], + [ + 276692, + 59043, + 452 + ], + [ + 276504, + 59214, + 452 + ], + [ + 269565, + 63254, + 452 + ], + [ + 276649, + 59090, + 452 + ], + [ + 276604, + 59134, + 452 + ], + [ + 276555, + 59176, + 452 + ], + [ + 259151, + 69528, + 452 + ], + [ + 258847, + 69711, + 452 + ], + [ + 257536, + 68940, + 472 + ], + [ + 311281, + 205817, + 1042 + ], + [ + 308337, + 203259, + 952 + ], + [ + 333384, + 30892, + 1522 + ], + [ + 333347, + 32278, + 1692 + ], + [ + 332412, + 32340, + 1832 + ], + [ + 331860, + 30939, + 1732 + ], + [ + 331565, + 31147, + 1792 + ], + [ + 333333, + 32422, + 1702 + ], + [ + 333120, + 33112, + 1792 + ], + [ + 333051, + 33240, + 1802 + ], + [ + 333181, + 32981, + 1772 + ], + [ + 333232, + 32845, + 1752 + ], + [ + 333275, + 32707, + 1732 + ], + [ + 333309, + 32565, + 1712 + ], + [ + 421829, + 19506, + 1692 + ], + [ + 358400, + 153532, + 652 + ], + [ + 358236, + 152829, + 662 + ], + [ + 358288, + 152965, + 662 + ], + [ + 358331, + 153103, + 652 + ], + [ + 358364, + 153244, + 652 + ], + [ + 358387, + 153387, + 652 + ], + [ + 358403, + 153677, + 652 + ], + [ + 358396, + 153821, + 652 + ], + [ + 358379, + 153965, + 652 + ], + [ + 358352, + 154108, + 652 + ], + [ + 358315, + 154248, + 662 + ], + [ + 358269, + 154385, + 662 + ], + [ + 358213, + 154519, + 662 + ], + [ + 358148, + 154648, + 662 + ], + [ + 358074, + 154773, + 662 + ], + [ + 357992, + 154893, + 672 + ], + [ + 357902, + 155006, + 662 + ], + [ + 393098, + 34882, + 582 + ], + [ + 394683, + 34423, + 632 + ], + [ + 394822, + 34903, + 632 + ], + [ + 393237, + 35363, + 592 + ], + [ + 348341, + 48356, + 232 + ], + [ + 349824, + 47905, + 252 + ], + [ + 349969, + 48383, + 272 + ], + [ + 348486, + 48835, + 242 + ], + [ + 230260, + 108503, + 382 + ], + [ + 228838, + 109434, + 372 + ], + [ + 229112, + 109852, + 402 + ], + [ + 230534, + 108921, + 402 + ], + [ + 213933, + 97525, + 532 + ], + [ + 213804, + 97510, + 532 + ], + [ + 213888, + 97456, + 532 + ], + [ + 213577, + 97525, + 532 + ], + [ + 213744, + 97418, + 532 + ], + [ + 213086, + 97997, + 532 + ], + [ + 213015, + 97887, + 532 + ], + [ + 212935, + 98117, + 532 + ], + [ + 212925, + 98100, + 532 + ], + [ + 212911, + 98134, + 532 + ], + [ + 374942, + 40458, + 252 + ], + [ + 375088, + 40936, + 252 + ], + [ + 375803, + 40195, + 242 + ], + [ + 375948, + 40673, + 252 + ], + [ + 380002, + 21941, + 612 + ], + [ + 398932, + 17371, + 902 + ], + [ + 404592, + 15331, + 1102 + ], + [ + 421828, + 13966, + 1252 + ], + [ + 430725, + 11517, + 802 + ], + [ + 431619, + 14278, + 722 + ], + [ + 421452, + 18085, + 1562 + ], + [ + 419912, + 12177, + 1262 + ], + [ + 421440, + 17888, + 1532 + ], + [ + 421445, + 18053, + 1552 + ], + [ + 421439, + 18020, + 1542 + ], + [ + 421436, + 17987, + 1542 + ], + [ + 421436, + 17954, + 1542 + ], + [ + 421437, + 17921, + 1532 + ], + [ + 421446, + 17855, + 1522 + ], + [ + 421454, + 17823, + 1522 + ], + [ + 421464, + 17792, + 1522 + ], + [ + 421476, + 17761, + 1522 + ], + [ + 421271, + 13747, + 1262 + ], + [ + 421490, + 17731, + 1522 + ], + [ + 421290, + 13775, + 1262 + ], + [ + 421506, + 17702, + 1522 + ], + [ + 421310, + 13802, + 1262 + ], + [ + 421524, + 17674, + 1512 + ], + [ + 421333, + 13827, + 1262 + ], + [ + 421544, + 17647, + 1512 + ], + [ + 421357, + 13851, + 1262 + ], + [ + 421565, + 17622, + 1512 + ], + [ + 421382, + 13873, + 1262 + ], + [ + 421588, + 17598, + 1512 + ], + [ + 421409, + 13893, + 1262 + ], + [ + 421613, + 17576, + 1512 + ], + [ + 421438, + 13912, + 1262 + ], + [ + 421639, + 17556, + 1512 + ], + [ + 421467, + 13928, + 1262 + ], + [ + 421666, + 17537, + 1512 + ], + [ + 421498, + 13943, + 1262 + ], + [ + 421695, + 17520, + 1512 + ], + [ + 421529, + 13955, + 1262 + ], + [ + 421724, + 17505, + 1512 + ], + [ + 421561, + 13965, + 1262 + ], + [ + 421755, + 17492, + 1502 + ], + [ + 421594, + 13973, + 1262 + ], + [ + 421786, + 17481, + 1502 + ], + [ + 431652, + 14381, + 722 + ], + [ + 421795, + 13974, + 1252 + ], + [ + 421762, + 13979, + 1252 + ], + [ + 421728, + 13983, + 1252 + ], + [ + 421694, + 13984, + 1262 + ], + [ + 421661, + 13982, + 1262 + ], + [ + 421627, + 13979, + 1262 + ], + [ + 420438, + 12403, + 1262 + ], + [ + 420401, + 12351, + 1262 + ], + [ + 420420, + 12376, + 1262 + ], + [ + 420380, + 12326, + 1262 + ], + [ + 420357, + 12304, + 1262 + ], + [ + 420008, + 12166, + 1272 + ], + [ + 420282, + 12244, + 1262 + ], + [ + 420333, + 12282, + 1262 + ], + [ + 420308, + 12262, + 1262 + ], + [ + 420225, + 12213, + 1262 + ], + [ + 420254, + 12228, + 1262 + ], + [ + 420103, + 12174, + 1272 + ], + [ + 420196, + 12201, + 1262 + ], + [ + 420166, + 12190, + 1272 + ], + [ + 420135, + 12181, + 1272 + ], + [ + 420040, + 12167, + 1272 + ], + [ + 420072, + 12170, + 1272 + ], + [ + 419944, + 12171, + 1262 + ], + [ + 419976, + 12168, + 1272 + ], + [ + 392042, + 18841, + 792 + ], + [ + 360992, + 27051, + 682 + ], + [ + 389862, + 19381, + 752 + ], + [ + 384952, + 20541, + 702 + ], + [ + 389822, + 19251, + 752 + ], + [ + 354082, + 28711, + 832 + ], + [ + 349983, + 29878, + 942 + ], + [ + 336523, + 37578, + 1772 + ], + [ + 336204, + 37681, + 1802 + ], + [ + 361864, + 160305, + 1002 + ], + [ + 361436, + 160726, + 1002 + ], + [ + 451507, + 24162, + 319 + ], + [ + 451276, + 24197, + 364 + ], + [ + 451207, + 23798, + 115 + ], + [ + 450480, + 23984, + 240 + ], + [ + 445669, + 22538, + 203 + ], + [ + 446415, + 22805, + 235 + ], + [ + 446652, + 22913, + 417 + ], + [ + 446213, + 22650, + 111 + ], + [ + 448925, + 23487, + 364 + ], + [ + 449970, + 23529, + 52 + ], + [ + 453115, + 24653, + 89 + ], + [ + 448466, + 23163, + 220 + ], + [ + 451780, + 24087, + 172 + ], + [ + 450167, + 23579, + 168 + ], + [ + 452901, + 24633, + 163 + ], + [ + 451080, + 23814, + 0 + ], + [ + 430321, + 23631, + 8722 + ], + [ + 430365, + 23803, + 8722 + ], + [ + 429996, + 23895, + 9072 + ], + [ + 429943, + 23728, + 8902 + ], + [ + 430321, + 23631, + 582 + ], + [ + 430365, + 23803, + 582 + ], + [ + 429943, + 23728, + 582 + ], + [ + 429996, + 23895, + 582 + ], + [ + 428710, + 24676, + 8372 + ], + [ + 435777, + 22464, + 2202 + ], + [ + 428593, + 24242, + 8462 + ], + [ + 427104, + 25150, + 8612 + ], + [ + 425008, + 25732, + 1932 + ], + [ + 428593, + 24242, + 582 + ], + [ + 336733, + 38425, + 1082 + ], + [ + 336204, + 37681, + 1632 + ], + [ + 331565, + 31147, + 1082 + ], + [ + 332412, + 32340, + 1102 + ], + [ + 328220, + 33512, + 1002 + ], + [ + 333051, + 33240, + 1112 + ], + [ + 332020, + 39030, + 622 + ], + [ + 331300, + 30774, + 1082 + ], + [ + 331444, + 30977, + 1082 + ], + [ + 327975, + 33156, + 1002 + ], + [ + 329258, + 35019, + 972 + ], + [ + 328101, + 33339, + 1002 + ], + [ + 332480, + 39698, + 452 + ], + [ + 332604, + 39878, + 382 + ], + [ + 200470, + 115660, + 1102 + ], + [ + 200548, + 115783, + 702 + ], + [ + 205033, + 123903, + 312 + ], + [ + 189816, + 119916, + 302 + ], + [ + 184492, + 123415, + 302 + ], + [ + 189294, + 120784, + 302 + ], + [ + 130253, + 151529, + 302 + ], + [ + 154810, + 138806, + 302 + ], + [ + 189620, + 120352, + 302 + ], + [ + 189750, + 119973, + 302 + ], + [ + 47154, + 189841, + 302 + ], + [ + 189519, + 120588, + 302 + ], + [ + 189542, + 120552, + 302 + ], + [ + 37358, + 194109, + 302 + ], + [ + 189563, + 120514, + 302 + ], + [ + 189597, + 120435, + 302 + ], + [ + 117795, + 157892, + 302 + ], + [ + 189610, + 120394, + 302 + ], + [ + 189582, + 120475, + 302 + ], + [ + 189493, + 120622, + 302 + ], + [ + 189465, + 120654, + 302 + ], + [ + 180927, + 125410, + 302 + ], + [ + 189434, + 120685, + 302 + ], + [ + 189402, + 120713, + 302 + ], + [ + 189367, + 120739, + 302 + ], + [ + 189332, + 120763, + 302 + ], + [ + 110457, + 161471, + 302 + ], + [ + 61038, + 183597, + 302 + ], + [ + 178390, + 126782, + 302 + ], + [ + 178358, + 126719, + 302 + ], + [ + 102613, + 165129, + 302 + ], + [ + 35137, + 196624, + 302 + ], + [ + 35370, + 197035, + 302 + ], + [ + 35133, + 197048, + 302 + ], + [ + 34109, + 201094, + 302 + ], + [ + 34902, + 197061, + 302 + ], + [ + 31427, + 197258, + 302 + ], + [ + 5140, + 198748, + 302 + ], + [ + 16726, + 198091, + 302 + ], + [ + 7604, + 202664, + 302 + ], + [ + 3818, + 198823, + 302 + ], + [ + 5816, + 202770, + 302 + ], + [ + 454, + 199013, + 302 + ], + [ + 2339, + 202976, + 302 + ], + [ + 0, + 199039, + 302 + ], + [ + 1893, + 203016, + 302 + ], + [ + 2116, + 202996, + 302 + ], + [ + 27862, + 197460, + 302 + ], + [ + 18284, + 202031, + 302 + ], + [ + 29109, + 197389, + 302 + ], + [ + 30429, + 201312, + 302 + ], + [ + 31374, + 201256, + 302 + ], + [ + 428717, + 18508, + 582 + ], + [ + 428329, + 18606, + 582 + ], + [ + 423565, + 19536, + 582 + ], + [ + 431330, + 17560, + 582 + ], + [ + 437539, + 20918, + 582 + ], + [ + 436053, + 17404, + 582 + ], + [ + 433494, + 16900, + 582 + ], + [ + 433831, + 16797, + 582 + ], + [ + 435571, + 16266, + 582 + ], + [ + 433830, + 16797, + 582 + ], + [ + 432702, + 17142, + 582 + ], + [ + 428649, + 18241, + 582 + ], + [ + 428262, + 18340, + 582 + ], + [ + 319540, + 199944, + 1102 + ], + [ + 312772, + 206610, + 1132 + ], + [ + 312422, + 206253, + 1112 + ], + [ + 319190, + 199587, + 1022 + ], + [ + 361264, + 160068, + 992 + ], + [ + 360916, + 159709, + 972 + ], + [ + 361598, + 159048, + 982 + ], + [ + 361946, + 159407, + 992 + ], + [ + 361224, + 161579, + 972 + ], + [ + 359400, + 159725, + 802 + ], + [ + 359374, + 159052, + 792 + ], + [ + 359335, + 159113, + 792 + ], + [ + 359354, + 159082, + 792 + ], + [ + 359319, + 159145, + 792 + ], + [ + 359293, + 159213, + 792 + ], + [ + 359305, + 159179, + 792 + ], + [ + 359283, + 159248, + 792 + ], + [ + 359269, + 159393, + 792 + ], + [ + 359276, + 159284, + 792 + ], + [ + 359272, + 159320, + 792 + ], + [ + 359269, + 159356, + 792 + ], + [ + 359272, + 159429, + 792 + ], + [ + 359284, + 159501, + 792 + ], + [ + 359277, + 159465, + 792 + ], + [ + 359294, + 159536, + 792 + ], + [ + 359377, + 159697, + 802 + ], + [ + 359338, + 159636, + 792 + ], + [ + 359306, + 159570, + 792 + ], + [ + 359321, + 159603, + 792 + ], + [ + 359356, + 159667, + 792 + ], + [ + 366248, + 152385, + 822 + ], + [ + 366273, + 152369, + 822 + ], + [ + 366300, + 152354, + 822 + ], + [ + 366328, + 152341, + 822 + ], + [ + 366357, + 152330, + 822 + ], + [ + 366387, + 152321, + 822 + ], + [ + 366417, + 152314, + 822 + ], + [ + 366447, + 152310, + 812 + ], + [ + 366478, + 152307, + 812 + ], + [ + 366509, + 152307, + 812 + ], + [ + 366540, + 152309, + 812 + ], + [ + 366570, + 152313, + 812 + ], + [ + 366600, + 152320, + 812 + ], + [ + 366630, + 152328, + 812 + ], + [ + 366659, + 152339, + 812 + ], + [ + 366687, + 152351, + 812 + ], + [ + 366714, + 152366, + 812 + ], + [ + 366740, + 152382, + 812 + ], + [ + 366765, + 152400, + 812 + ], + [ + 366789, + 152420, + 812 + ], + [ + 366811, + 152442, + 812 + ], + [ + 366831, + 152465, + 812 + ], + [ + 366850, + 152489, + 822 + ], + [ + 367402, + 153019, + 892 + ], + [ + 367421, + 153042, + 892 + ], + [ + 367463, + 153084, + 892 + ], + [ + 367441, + 153064, + 892 + ], + [ + 367535, + 153136, + 892 + ], + [ + 367485, + 153103, + 892 + ], + [ + 367510, + 153121, + 892 + ], + [ + 367673, + 153188, + 892 + ], + [ + 367588, + 153163, + 892 + ], + [ + 367561, + 153150, + 892 + ], + [ + 367616, + 153173, + 892 + ], + [ + 367644, + 153182, + 892 + ], + [ + 367762, + 153196, + 892 + ], + [ + 367703, + 153193, + 892 + ], + [ + 367732, + 153196, + 892 + ], + [ + 368101, + 153037, + 892 + ], + [ + 367851, + 153187, + 892 + ], + [ + 367792, + 153195, + 892 + ], + [ + 367821, + 153192, + 892 + ], + [ + 367908, + 153171, + 892 + ], + [ + 367879, + 153180, + 892 + ], + [ + 368013, + 153117, + 892 + ], + [ + 367935, + 153160, + 892 + ], + [ + 367962, + 153147, + 892 + ], + [ + 367988, + 153133, + 892 + ], + [ + 368060, + 153080, + 892 + ], + [ + 368037, + 153099, + 892 + ], + [ + 368081, + 153059, + 892 + ], + [ + 368119, + 153014, + 892 + ], + [ + 324524, + 199652, + 1122 + ], + [ + 326002, + 198234, + 1092 + ], + [ + 362088, + 162457, + 982 + ], + [ + 362183, + 162694, + 982 + ], + [ + 362108, + 162488, + 972 + ], + [ + 362126, + 162520, + 972 + ], + [ + 362142, + 162553, + 972 + ], + [ + 362155, + 162587, + 982 + ], + [ + 362167, + 162622, + 982 + ], + [ + 362176, + 162658, + 982 + ], + [ + 362187, + 162731, + 982 + ], + [ + 362189, + 162768, + 982 + ], + [ + 362188, + 162804, + 982 + ], + [ + 362185, + 162841, + 982 + ], + [ + 362180, + 162877, + 982 + ], + [ + 362172, + 162913, + 982 + ], + [ + 362162, + 162949, + 982 + ], + [ + 362150, + 162984, + 972 + ], + [ + 362135, + 163017, + 972 + ], + [ + 362118, + 163050, + 972 + ], + [ + 362099, + 163082, + 982 + ], + [ + 362079, + 163112, + 982 + ], + [ + 362056, + 163141, + 972 + ], + [ + 362031, + 163168, + 972 + ], + [ + 322313, + 201396, + 1152 + ], + [ + 324314, + 199437, + 1052 + ], + [ + 319480, + 198502, + 902 + ], + [ + 319457, + 198478, + 892 + ], + [ + 319432, + 198456, + 892 + ], + [ + 319350, + 198400, + 892 + ], + [ + 319406, + 198435, + 892 + ], + [ + 319378, + 198417, + 892 + ], + [ + 319193, + 198347, + 892 + ], + [ + 319320, + 198385, + 892 + ], + [ + 319257, + 198362, + 892 + ], + [ + 319289, + 198372, + 892 + ], + [ + 319225, + 198353, + 892 + ], + [ + 318872, + 198407, + 902 + ], + [ + 319160, + 198343, + 892 + ], + [ + 319093, + 198342, + 892 + ], + [ + 319126, + 198341, + 892 + ], + [ + 319027, + 198350, + 892 + ], + [ + 319060, + 198345, + 892 + ], + [ + 318963, + 198366, + 882 + ], + [ + 318994, + 198357, + 882 + ], + [ + 318931, + 198378, + 892 + ], + [ + 318901, + 198392, + 892 + ], + [ + 318843, + 198425, + 912 + ], + [ + 318817, + 198445, + 912 + ], + [ + 311356, + 205881, + 1062 + ], + [ + 425415, + 27382, + 1912 + ], + [ + 426537, + 28136, + 1952 + ], + [ + 453028, + 44443, + 2022 + ], + [ + 427092, + 28509, + 1962 + ], + [ + 366936, + 154569, + 982 + ], + [ + 365942, + 154836, + 962 + ], + [ + 366290, + 155195, + 982 + ], + [ + 366588, + 154210, + 962 + ], + [ + 317114, + 210987, + 1172 + ], + [ + 316786, + 210574, + 1182 + ], + [ + 316696, + 210515, + 1182 + ], + [ + 316742, + 210543, + 1182 + ], + [ + 316829, + 210607, + 1182 + ], + [ + 316980, + 210760, + 1182 + ], + [ + 317019, + 210813, + 1182 + ], + [ + 316870, + 210642, + 1182 + ], + [ + 317183, + 211242, + 1152 + ], + [ + 316909, + 210679, + 1182 + ], + [ + 316945, + 210719, + 1182 + ], + [ + 317055, + 210869, + 1172 + ], + [ + 317086, + 210927, + 1172 + ], + [ + 317138, + 211049, + 1162 + ], + [ + 317157, + 211112, + 1162 + ], + [ + 317173, + 211177, + 1162 + ], + [ + 317190, + 211308, + 1152 + ], + [ + 423228, + 19154, + 1682 + ] + ], + "transform": { + "scale": [ + 0.001, + 0.001, + 0.001 + ], + "translate": [ + 84616.468, + 447422.999, + -0.452 + ] + }, + "extensions": +{ + "Generic": + { + "url": "https://www.cityjson.org/extensions/download/generic.ext.json", + "version": "1.0" + } +} +} \ No newline at end of file diff --git a/tests/data/delft_1b.json b/tests/data/delft_1b.json index e034dc1..ef8777b 100644 --- a/tests/data/delft_1b.json +++ b/tests/data/delft_1b.json @@ -1 +1,1975 @@ -{"type":"CityJSON","version":"1.1","CityObjects":{"b1105d28c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-52.4)","identificatiebagpnd":"503100000000035","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027121)","inonderzoek":"0","lokaalid":"G0503.032e68eff7ec49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.0,"min-height-surface":-0.100000001490116,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85012.966 447473.243)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:6)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[0,1,2]],[[3,4,0]],[[5,6,7]],[[8,9,10]],[[8,11,12]],[[8,13,9]],[[5,7,14]],[[13,15,16]],[[17,13,12]],[[12,13,8]],[[18,15,19]],[[19,15,17]],[[19,17,20]],[[15,13,17]],[[6,21,22]],[[23,24,22]],[[24,25,26]],[[25,24,27]],[[28,25,27]],[[27,24,23]],[[29,27,23]],[[30,31,23]],[[23,22,21]],[[32,31,33]],[[34,32,35]],[[36,34,37]],[[37,34,35]],[[38,37,35]],[[35,32,39]],[[40,35,39]],[[41,40,39]],[[42,41,39]],[[39,32,33]],[[43,39,44]],[[44,39,45]],[[46,44,45]],[[47,46,48]],[[48,46,45]],[[45,39,49]],[[49,39,33]],[[33,31,50]],[[51,33,52]],[[52,33,50]],[[50,31,53]],[[53,31,30]],[[6,22,12]],[[3,0,14]],[[54,55,56]],[[54,30,21]],[[54,21,55]],[[30,23,21]],[[11,6,12]],[[11,7,6]],[[4,1,0]],[[5,14,0]],[[57,2,58]],[[59,2,57]],[[60,59,57]],[[60,57,61]],[[58,2,62]],[[63,58,64]],[[64,58,65]],[[66,64,65]],[[67,68,69]],[[65,67,70]],[[70,67,69]],[[69,68,71]],[[58,62,65]],[[65,72,67]],[[73,72,62]],[[72,73,74]],[[74,73,75]],[[72,65,62]],[[73,62,76]],[[2,1,62]],[[77,78,4]],[[4,78,1]],[[79,77,3]],[[3,77,4]],[[80,79,14]],[[14,79,3]],[[81,80,7]],[[7,80,14]],[[82,81,11]],[[11,81,7]],[[83,82,8]],[[8,82,11]],[[84,83,10]],[[10,83,8]],[[85,84,9]],[[9,84,10]],[[86,85,13]],[[13,85,9]],[[87,86,16]],[[16,86,13]],[[88,87,15]],[[15,87,16]],[[89,88,18]],[[18,88,15]],[[90,89,19]],[[19,89,18]],[[91,90,20]],[[20,90,19]],[[92,91,17]],[[17,91,20]],[[93,92,12]],[[12,92,17]],[[94,93,22]],[[22,93,12]],[[95,94,24]],[[24,94,22]],[[96,95,26]],[[26,95,24]],[[97,96,25]],[[25,96,26]],[[98,97,28]],[[28,97,25]],[[99,98,27]],[[27,98,28]],[[100,99,29]],[[29,99,27]],[[101,100,23]],[[23,100,29]],[[102,101,31]],[[31,101,23]],[[103,102,32]],[[32,102,31]],[[104,103,34]],[[34,103,32]],[[105,104,36]],[[36,104,34]],[[106,105,37]],[[37,105,36]],[[107,106,38]],[[38,106,37]],[[108,107,35]],[[35,107,38]],[[109,108,40]],[[40,108,35]],[[110,109,41]],[[41,109,40]],[[111,110,42]],[[42,110,41]],[[112,111,39]],[[39,111,42]],[[113,112,43]],[[43,112,39]],[[114,113,44]],[[44,113,43]],[[115,114,46]],[[46,114,44]],[[116,115,47]],[[47,115,46]],[[117,116,48]],[[48,116,47]],[[118,117,45]],[[45,117,48]],[[119,118,49]],[[49,118,45]],[[120,119,33]],[[33,119,49]],[[121,120,51]],[[51,120,33]],[[122,121,52]],[[52,121,51]],[[123,122,50]],[[50,122,52]],[[124,123,53]],[[53,123,50]],[[125,124,30]],[[30,124,53]],[[126,125,54]],[[54,125,30]],[[127,126,56]],[[56,126,54]],[[128,127,55]],[[55,127,56]],[[129,128,21]],[[21,128,55]],[[130,129,6]],[[6,129,21]],[[131,130,5]],[[5,130,6]],[[132,131,0]],[[0,131,5]],[[133,132,2]],[[2,132,0]],[[134,133,59]],[[59,133,2]],[[135,134,60]],[[60,134,59]],[[136,135,61]],[[61,135,60]],[[137,136,57]],[[57,136,61]],[[138,137,58]],[[58,137,57]],[[139,138,63]],[[63,138,58]],[[140,139,64]],[[64,139,63]],[[141,140,66]],[[66,140,64]],[[142,141,65]],[[65,141,66]],[[143,142,70]],[[70,142,65]],[[144,143,69]],[[69,143,70]],[[145,144,71]],[[71,144,69]],[[146,145,68]],[[68,145,71]],[[147,146,67]],[[67,146,68]],[[148,147,72]],[[72,147,67]],[[149,148,74]],[[74,148,72]],[[150,149,75]],[[75,149,74]],[[151,150,73]],[[73,150,75]],[[152,151,76]],[[76,151,73]],[[153,152,62]],[[62,152,76]],[[78,153,1]],[[1,153,62]]]],"lod":"1","type":"Solid"}],"type":"Building"}},"vertices":[[26518,19013,6100],[49272,20639,6100],[57336,40945,6100],[38163,12806,6100],[39145,13499,6100],[26355,18898,6100],[22390,16076,6100],[32181,8588,6100],[31078,6444,6100],[29186,47,6100],[29369,0,6100],[31367,7532,6100],[19781,3963,6100],[22749,1702,6100],[33059,9207,6100],[19449,2116,6100],[22637,1276,6100],[19414,2570,6100],[19131,2200,6100],[19182,2394,6100],[19240,2616,6100],[21097,17844,6100],[16883,4726,6100],[13197,4219,6100],[16516,3334,6100],[16632,3066,6100],[16690,3288,6100],[16272,2954,6100],[16581,2872,6100],[13084,3794,6100],[18537,20988,6100],[6817,5890,6100],[6807,5860,6100],[6391,5567,6100],[6795,5830,6100],[6727,5723,6100],[6781,5802,6100],[6765,5774,6100],[6747,5748,6100],[6632,5639,6100],[6705,5700,6100],[6682,5678,6100],[6658,5658,6100],[6604,5623,6100],[6576,5609,6100],[6454,5572,6100],[6547,5596,6100],[6516,5586,6100],[6486,5578,6100],[6423,5569,6100],[6296,5577,6100],[6359,5568,6100],[6327,5572,6100],[0,7244,6100],[18706,21113,6100],[22293,18731,6100],[19902,22000,6100],[60376,42626,6100],[62143,40097,6100],[60093,42805,6100],[60913,43391,6100],[61096,43129,6100],[57116,26169,6100],[62863,40600,6100],[63046,40338,6100],[67167,35574,6100],[63595,40712,6100],[72164,26398,6100],[72303,26207,6100],[73176,26930,6100],[73056,27103,6100],[73216,26873,6100],[66173,22180,6100],[65052,21349,6100],[66461,21771,6100],[65320,20968,6100],[62020,19214,6100],[39145,13499,0],[49272,20639,0],[38163,12806,0],[33059,9207,0],[32181,8588,0],[31367,7532,0],[31078,6444,0],[29369,0,0],[29186,47,0],[22749,1702,0],[22637,1276,0],[19449,2116,0],[19131,2200,0],[19182,2394,0],[19240,2616,0],[19414,2570,0],[19781,3963,0],[16883,4726,0],[16516,3334,0],[16690,3288,0],[16632,3066,0],[16581,2872,0],[16272,2954,0],[13084,3794,0],[13197,4219,0],[6817,5890,0],[6807,5860,0],[6795,5830,0],[6781,5802,0],[6765,5774,0],[6747,5748,0],[6727,5723,0],[6705,5700,0],[6682,5678,0],[6658,5658,0],[6632,5639,0],[6604,5623,0],[6576,5609,0],[6547,5596,0],[6516,5586,0],[6486,5578,0],[6454,5572,0],[6423,5569,0],[6391,5567,0],[6359,5568,0],[6327,5572,0],[6296,5577,0],[0,7244,0],[18537,20988,0],[18706,21113,0],[19902,22000,0],[22293,18731,0],[21097,17844,0],[22390,16076,0],[26355,18898,0],[26518,19013,0],[57336,40945,0],[60093,42805,0],[60913,43391,0],[61096,43129,0],[60376,42626,0],[62143,40097,0],[62863,40600,0],[63046,40338,0],[63595,40712,0],[67167,35574,0],[73056,27103,0],[73176,26930,0],[73216,26873,0],[72303,26207,0],[72164,26398,0],[66173,22180,0],[66461,21771,0],[65320,20968,0],[65052,21349,0],[62020,19214,0],[57116,26169,0]],"metadata":{"geographicalExtent":[84983.297,447463.655,-0.1,85056.513,447507.04600000003,6.000000000000001],"referenceSystem":"urn:ogc:def:crs:EPSG::7415","citymodelIdentifier":"ed26bd74-359b-417f-95af-28a3c9c8b7bd","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"delft_1b.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{"Building":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"1":1}}},"presentLoDs":{"1":1},"thematicModels":["Building"]},"transform":{"scale":[0.001,0.001,0.001],"translate":[84983.297,447463.655,-0.1]}} \ No newline at end of file +{ + "type": "CityJSON", + "version": "1.1", + "CityObjects": {"b1105d28c-00ba-11e6-b420-2bdcc4ab5d7f": { + "attributes": { + "bgt_status": "bestaand", + "bronhouder": "G0503", + "creationdate": "2014-07-09", + "eindregistratie": "", + "hoek": "(1:-52.4)", + "identificatiebagpnd": "503100000000035", + "identificatiebagvbohoogstehuisnummer": "", + "identificatiebagvbolaagstehuisnummer": "(1:503010000027121)", + "inonderzoek": "0", + "lokaalid": "G0503.032e68eff7ec49cce0532ee22091b28c", + "lv_publicatiedatum": "2016-04-12T11:54:23.000", + "measuredHeight": 6, + "min-height-surface": -0.100000001490116, + "namespace": "NL.IMGeo", + "plaatsingspunt": "(1:85012.966 447473.243)", + "plus_status": "geenWaarde", + "relatievehoogteligging": "0", + "tekst": "(1:6)", + "terminationdate": "", + "tijdstipregistratie": "2016-03-15T12:02:49.000" + }, + "geometry": [{ + "boundaries": [[ + [[ + 0, + 1, + 2 + ]], + [[ + 3, + 4, + 0 + ]], + [[ + 5, + 6, + 7 + ]], + [[ + 8, + 9, + 10 + ]], + [[ + 8, + 11, + 12 + ]], + [[ + 8, + 13, + 9 + ]], + [[ + 5, + 7, + 14 + ]], + [[ + 13, + 15, + 16 + ]], + [[ + 17, + 13, + 12 + ]], + [[ + 12, + 13, + 8 + ]], + [[ + 18, + 15, + 19 + ]], + [[ + 19, + 15, + 17 + ]], + [[ + 19, + 17, + 20 + ]], + [[ + 15, + 13, + 17 + ]], + [[ + 6, + 21, + 22 + ]], + [[ + 23, + 24, + 22 + ]], + [[ + 24, + 25, + 26 + ]], + [[ + 25, + 24, + 27 + ]], + [[ + 28, + 25, + 27 + ]], + [[ + 27, + 24, + 23 + ]], + [[ + 29, + 27, + 23 + ]], + [[ + 30, + 31, + 23 + ]], + [[ + 23, + 22, + 21 + ]], + [[ + 32, + 31, + 33 + ]], + [[ + 34, + 32, + 35 + ]], + [[ + 36, + 34, + 37 + ]], + [[ + 37, + 34, + 35 + ]], + [[ + 38, + 37, + 35 + ]], + [[ + 35, + 32, + 39 + ]], + [[ + 40, + 35, + 39 + ]], + [[ + 41, + 40, + 39 + ]], + [[ + 42, + 41, + 39 + ]], + [[ + 39, + 32, + 33 + ]], + [[ + 43, + 39, + 44 + ]], + [[ + 44, + 39, + 45 + ]], + [[ + 46, + 44, + 45 + ]], + [[ + 47, + 46, + 48 + ]], + [[ + 48, + 46, + 45 + ]], + [[ + 45, + 39, + 49 + ]], + [[ + 49, + 39, + 33 + ]], + [[ + 33, + 31, + 50 + ]], + [[ + 51, + 33, + 52 + ]], + [[ + 52, + 33, + 50 + ]], + [[ + 50, + 31, + 53 + ]], + [[ + 53, + 31, + 30 + ]], + [[ + 6, + 22, + 12 + ]], + [[ + 3, + 0, + 14 + ]], + [[ + 54, + 55, + 56 + ]], + [[ + 54, + 30, + 21 + ]], + [[ + 54, + 21, + 55 + ]], + [[ + 30, + 23, + 21 + ]], + [[ + 11, + 6, + 12 + ]], + [[ + 11, + 7, + 6 + ]], + [[ + 4, + 1, + 0 + ]], + [[ + 5, + 14, + 0 + ]], + [[ + 57, + 2, + 58 + ]], + [[ + 59, + 2, + 57 + ]], + [[ + 60, + 59, + 57 + ]], + [[ + 60, + 57, + 61 + ]], + [[ + 58, + 2, + 62 + ]], + [[ + 63, + 58, + 64 + ]], + [[ + 64, + 58, + 65 + ]], + [[ + 66, + 64, + 65 + ]], + [[ + 67, + 68, + 69 + ]], + [[ + 65, + 67, + 70 + ]], + [[ + 70, + 67, + 69 + ]], + [[ + 69, + 68, + 71 + ]], + [[ + 58, + 62, + 65 + ]], + [[ + 65, + 72, + 67 + ]], + [[ + 73, + 72, + 62 + ]], + [[ + 72, + 73, + 74 + ]], + [[ + 74, + 73, + 75 + ]], + [[ + 72, + 65, + 62 + ]], + [[ + 73, + 62, + 76 + ]], + [[ + 2, + 1, + 62 + ]], + [[ + 77, + 78, + 4 + ]], + [[ + 4, + 78, + 1 + ]], + [[ + 79, + 77, + 3 + ]], + [[ + 3, + 77, + 4 + ]], + [[ + 80, + 79, + 14 + ]], + [[ + 14, + 79, + 3 + ]], + [[ + 81, + 80, + 7 + ]], + [[ + 7, + 80, + 14 + ]], + [[ + 82, + 81, + 11 + ]], + [[ + 11, + 81, + 7 + ]], + [[ + 83, + 82, + 8 + ]], + [[ + 8, + 82, + 11 + ]], + [[ + 84, + 83, + 10 + ]], + [[ + 10, + 83, + 8 + ]], + [[ + 85, + 84, + 9 + ]], + [[ + 9, + 84, + 10 + ]], + [[ + 86, + 85, + 13 + ]], + [[ + 13, + 85, + 9 + ]], + [[ + 87, + 86, + 16 + ]], + [[ + 16, + 86, + 13 + ]], + [[ + 88, + 87, + 15 + ]], + [[ + 15, + 87, + 16 + ]], + [[ + 89, + 88, + 18 + ]], + [[ + 18, + 88, + 15 + ]], + [[ + 90, + 89, + 19 + ]], + [[ + 19, + 89, + 18 + ]], + [[ + 91, + 90, + 20 + ]], + [[ + 20, + 90, + 19 + ]], + [[ + 92, + 91, + 17 + ]], + [[ + 17, + 91, + 20 + ]], + [[ + 93, + 92, + 12 + ]], + [[ + 12, + 92, + 17 + ]], + [[ + 94, + 93, + 22 + ]], + [[ + 22, + 93, + 12 + ]], + [[ + 95, + 94, + 24 + ]], + [[ + 24, + 94, + 22 + ]], + [[ + 96, + 95, + 26 + ]], + [[ + 26, + 95, + 24 + ]], + [[ + 97, + 96, + 25 + ]], + [[ + 25, + 96, + 26 + ]], + [[ + 98, + 97, + 28 + ]], + [[ + 28, + 97, + 25 + ]], + [[ + 99, + 98, + 27 + ]], + [[ + 27, + 98, + 28 + ]], + [[ + 100, + 99, + 29 + ]], + [[ + 29, + 99, + 27 + ]], + [[ + 101, + 100, + 23 + ]], + [[ + 23, + 100, + 29 + ]], + [[ + 102, + 101, + 31 + ]], + [[ + 31, + 101, + 23 + ]], + [[ + 103, + 102, + 32 + ]], + [[ + 32, + 102, + 31 + ]], + [[ + 104, + 103, + 34 + ]], + [[ + 34, + 103, + 32 + ]], + [[ + 105, + 104, + 36 + ]], + [[ + 36, + 104, + 34 + ]], + [[ + 106, + 105, + 37 + ]], + [[ + 37, + 105, + 36 + ]], + [[ + 107, + 106, + 38 + ]], + [[ + 38, + 106, + 37 + ]], + [[ + 108, + 107, + 35 + ]], + [[ + 35, + 107, + 38 + ]], + [[ + 109, + 108, + 40 + ]], + [[ + 40, + 108, + 35 + ]], + [[ + 110, + 109, + 41 + ]], + [[ + 41, + 109, + 40 + ]], + [[ + 111, + 110, + 42 + ]], + [[ + 42, + 110, + 41 + ]], + [[ + 112, + 111, + 39 + ]], + [[ + 39, + 111, + 42 + ]], + [[ + 113, + 112, + 43 + ]], + [[ + 43, + 112, + 39 + ]], + [[ + 114, + 113, + 44 + ]], + [[ + 44, + 113, + 43 + ]], + [[ + 115, + 114, + 46 + ]], + [[ + 46, + 114, + 44 + ]], + [[ + 116, + 115, + 47 + ]], + [[ + 47, + 115, + 46 + ]], + [[ + 117, + 116, + 48 + ]], + [[ + 48, + 116, + 47 + ]], + [[ + 118, + 117, + 45 + ]], + [[ + 45, + 117, + 48 + ]], + [[ + 119, + 118, + 49 + ]], + [[ + 49, + 118, + 45 + ]], + [[ + 120, + 119, + 33 + ]], + [[ + 33, + 119, + 49 + ]], + [[ + 121, + 120, + 51 + ]], + [[ + 51, + 120, + 33 + ]], + [[ + 122, + 121, + 52 + ]], + [[ + 52, + 121, + 51 + ]], + [[ + 123, + 122, + 50 + ]], + [[ + 50, + 122, + 52 + ]], + [[ + 124, + 123, + 53 + ]], + [[ + 53, + 123, + 50 + ]], + [[ + 125, + 124, + 30 + ]], + [[ + 30, + 124, + 53 + ]], + [[ + 126, + 125, + 54 + ]], + [[ + 54, + 125, + 30 + ]], + [[ + 127, + 126, + 56 + ]], + [[ + 56, + 126, + 54 + ]], + [[ + 128, + 127, + 55 + ]], + [[ + 55, + 127, + 56 + ]], + [[ + 129, + 128, + 21 + ]], + [[ + 21, + 128, + 55 + ]], + [[ + 130, + 129, + 6 + ]], + [[ + 6, + 129, + 21 + ]], + [[ + 131, + 130, + 5 + ]], + [[ + 5, + 130, + 6 + ]], + [[ + 132, + 131, + 0 + ]], + [[ + 0, + 131, + 5 + ]], + [[ + 133, + 132, + 2 + ]], + [[ + 2, + 132, + 0 + ]], + [[ + 134, + 133, + 59 + ]], + [[ + 59, + 133, + 2 + ]], + [[ + 135, + 134, + 60 + ]], + [[ + 60, + 134, + 59 + ]], + [[ + 136, + 135, + 61 + ]], + [[ + 61, + 135, + 60 + ]], + [[ + 137, + 136, + 57 + ]], + [[ + 57, + 136, + 61 + ]], + [[ + 138, + 137, + 58 + ]], + [[ + 58, + 137, + 57 + ]], + [[ + 139, + 138, + 63 + ]], + [[ + 63, + 138, + 58 + ]], + [[ + 140, + 139, + 64 + ]], + [[ + 64, + 139, + 63 + ]], + [[ + 141, + 140, + 66 + ]], + [[ + 66, + 140, + 64 + ]], + [[ + 142, + 141, + 65 + ]], + [[ + 65, + 141, + 66 + ]], + [[ + 143, + 142, + 70 + ]], + [[ + 70, + 142, + 65 + ]], + [[ + 144, + 143, + 69 + ]], + [[ + 69, + 143, + 70 + ]], + [[ + 145, + 144, + 71 + ]], + [[ + 71, + 144, + 69 + ]], + [[ + 146, + 145, + 68 + ]], + [[ + 68, + 145, + 71 + ]], + [[ + 147, + 146, + 67 + ]], + [[ + 67, + 146, + 68 + ]], + [[ + 148, + 147, + 72 + ]], + [[ + 72, + 147, + 67 + ]], + [[ + 149, + 148, + 74 + ]], + [[ + 74, + 148, + 72 + ]], + [[ + 150, + 149, + 75 + ]], + [[ + 75, + 149, + 74 + ]], + [[ + 151, + 150, + 73 + ]], + [[ + 73, + 150, + 75 + ]], + [[ + 152, + 151, + 76 + ]], + [[ + 76, + 151, + 73 + ]], + [[ + 153, + 152, + 62 + ]], + [[ + 62, + 152, + 76 + ]], + [[ + 78, + 153, + 1 + ]], + [[ + 1, + 153, + 62 + ]] + ]], + "lod": "1", + "type": "Solid" + }], + "type": "Building" + }}, + "vertices": [ + [ + 26518, + 19013, + 6100 + ], + [ + 49272, + 20639, + 6100 + ], + [ + 57336, + 40945, + 6100 + ], + [ + 38163, + 12806, + 6100 + ], + [ + 39145, + 13499, + 6100 + ], + [ + 26355, + 18898, + 6100 + ], + [ + 22390, + 16076, + 6100 + ], + [ + 32181, + 8588, + 6100 + ], + [ + 31078, + 6444, + 6100 + ], + [ + 29186, + 47, + 6100 + ], + [ + 29369, + 0, + 6100 + ], + [ + 31367, + 7532, + 6100 + ], + [ + 19781, + 3963, + 6100 + ], + [ + 22749, + 1702, + 6100 + ], + [ + 33059, + 9207, + 6100 + ], + [ + 19449, + 2116, + 6100 + ], + [ + 22637, + 1276, + 6100 + ], + [ + 19414, + 2570, + 6100 + ], + [ + 19131, + 2200, + 6100 + ], + [ + 19182, + 2394, + 6100 + ], + [ + 19240, + 2616, + 6100 + ], + [ + 21097, + 17844, + 6100 + ], + [ + 16883, + 4726, + 6100 + ], + [ + 13197, + 4219, + 6100 + ], + [ + 16516, + 3334, + 6100 + ], + [ + 16632, + 3066, + 6100 + ], + [ + 16690, + 3288, + 6100 + ], + [ + 16272, + 2954, + 6100 + ], + [ + 16581, + 2872, + 6100 + ], + [ + 13084, + 3794, + 6100 + ], + [ + 18537, + 20988, + 6100 + ], + [ + 6817, + 5890, + 6100 + ], + [ + 6807, + 5860, + 6100 + ], + [ + 6391, + 5567, + 6100 + ], + [ + 6795, + 5830, + 6100 + ], + [ + 6727, + 5723, + 6100 + ], + [ + 6781, + 5802, + 6100 + ], + [ + 6765, + 5774, + 6100 + ], + [ + 6747, + 5748, + 6100 + ], + [ + 6632, + 5639, + 6100 + ], + [ + 6705, + 5700, + 6100 + ], + [ + 6682, + 5678, + 6100 + ], + [ + 6658, + 5658, + 6100 + ], + [ + 6604, + 5623, + 6100 + ], + [ + 6576, + 5609, + 6100 + ], + [ + 6454, + 5572, + 6100 + ], + [ + 6547, + 5596, + 6100 + ], + [ + 6516, + 5586, + 6100 + ], + [ + 6486, + 5578, + 6100 + ], + [ + 6423, + 5569, + 6100 + ], + [ + 6296, + 5577, + 6100 + ], + [ + 6359, + 5568, + 6100 + ], + [ + 6327, + 5572, + 6100 + ], + [ + 0, + 7244, + 6100 + ], + [ + 18706, + 21113, + 6100 + ], + [ + 22293, + 18731, + 6100 + ], + [ + 19902, + 22000, + 6100 + ], + [ + 60376, + 42626, + 6100 + ], + [ + 62143, + 40097, + 6100 + ], + [ + 60093, + 42805, + 6100 + ], + [ + 60913, + 43391, + 6100 + ], + [ + 61096, + 43129, + 6100 + ], + [ + 57116, + 26169, + 6100 + ], + [ + 62863, + 40600, + 6100 + ], + [ + 63046, + 40338, + 6100 + ], + [ + 67167, + 35574, + 6100 + ], + [ + 63595, + 40712, + 6100 + ], + [ + 72164, + 26398, + 6100 + ], + [ + 72303, + 26207, + 6100 + ], + [ + 73176, + 26930, + 6100 + ], + [ + 73056, + 27103, + 6100 + ], + [ + 73216, + 26873, + 6100 + ], + [ + 66173, + 22180, + 6100 + ], + [ + 65052, + 21349, + 6100 + ], + [ + 66461, + 21771, + 6100 + ], + [ + 65320, + 20968, + 6100 + ], + [ + 62020, + 19214, + 6100 + ], + [ + 39145, + 13499, + 0 + ], + [ + 49272, + 20639, + 0 + ], + [ + 38163, + 12806, + 0 + ], + [ + 33059, + 9207, + 0 + ], + [ + 32181, + 8588, + 0 + ], + [ + 31367, + 7532, + 0 + ], + [ + 31078, + 6444, + 0 + ], + [ + 29369, + 0, + 0 + ], + [ + 29186, + 47, + 0 + ], + [ + 22749, + 1702, + 0 + ], + [ + 22637, + 1276, + 0 + ], + [ + 19449, + 2116, + 0 + ], + [ + 19131, + 2200, + 0 + ], + [ + 19182, + 2394, + 0 + ], + [ + 19240, + 2616, + 0 + ], + [ + 19414, + 2570, + 0 + ], + [ + 19781, + 3963, + 0 + ], + [ + 16883, + 4726, + 0 + ], + [ + 16516, + 3334, + 0 + ], + [ + 16690, + 3288, + 0 + ], + [ + 16632, + 3066, + 0 + ], + [ + 16581, + 2872, + 0 + ], + [ + 16272, + 2954, + 0 + ], + [ + 13084, + 3794, + 0 + ], + [ + 13197, + 4219, + 0 + ], + [ + 6817, + 5890, + 0 + ], + [ + 6807, + 5860, + 0 + ], + [ + 6795, + 5830, + 0 + ], + [ + 6781, + 5802, + 0 + ], + [ + 6765, + 5774, + 0 + ], + [ + 6747, + 5748, + 0 + ], + [ + 6727, + 5723, + 0 + ], + [ + 6705, + 5700, + 0 + ], + [ + 6682, + 5678, + 0 + ], + [ + 6658, + 5658, + 0 + ], + [ + 6632, + 5639, + 0 + ], + [ + 6604, + 5623, + 0 + ], + [ + 6576, + 5609, + 0 + ], + [ + 6547, + 5596, + 0 + ], + [ + 6516, + 5586, + 0 + ], + [ + 6486, + 5578, + 0 + ], + [ + 6454, + 5572, + 0 + ], + [ + 6423, + 5569, + 0 + ], + [ + 6391, + 5567, + 0 + ], + [ + 6359, + 5568, + 0 + ], + [ + 6327, + 5572, + 0 + ], + [ + 6296, + 5577, + 0 + ], + [ + 0, + 7244, + 0 + ], + [ + 18537, + 20988, + 0 + ], + [ + 18706, + 21113, + 0 + ], + [ + 19902, + 22000, + 0 + ], + [ + 22293, + 18731, + 0 + ], + [ + 21097, + 17844, + 0 + ], + [ + 22390, + 16076, + 0 + ], + [ + 26355, + 18898, + 0 + ], + [ + 26518, + 19013, + 0 + ], + [ + 57336, + 40945, + 0 + ], + [ + 60093, + 42805, + 0 + ], + [ + 60913, + 43391, + 0 + ], + [ + 61096, + 43129, + 0 + ], + [ + 60376, + 42626, + 0 + ], + [ + 62143, + 40097, + 0 + ], + [ + 62863, + 40600, + 0 + ], + [ + 63046, + 40338, + 0 + ], + [ + 63595, + 40712, + 0 + ], + [ + 67167, + 35574, + 0 + ], + [ + 73056, + 27103, + 0 + ], + [ + 73176, + 26930, + 0 + ], + [ + 73216, + 26873, + 0 + ], + [ + 72303, + 26207, + 0 + ], + [ + 72164, + 26398, + 0 + ], + [ + 66173, + 22180, + 0 + ], + [ + 66461, + 21771, + 0 + ], + [ + 65320, + 20968, + 0 + ], + [ + 65052, + 21349, + 0 + ], + [ + 62020, + 19214, + 0 + ], + [ + 57116, + 26169, + 0 + ] + ], + "metadata": { + "geographicalExtent": [ + 84983.297, + 447463.655, + -0.1, + 85056.513, + 447507.04600000003, + 6.000000000000001 + ], + "referenceSystem": "https://www.opengis.net/def/crs/EPSG/0/7415" + }, + "transform": { + "scale": [ + 0.001, + 0.001, + 0.001 + ], + "translate": [ + 84983.297, + 447463.655, + -0.1 + ] + } +} \ No newline at end of file diff --git a/tests/data/dummy/composite_solid_with_material.json b/tests/data/dummy/composite_solid_with_material.json index 2e64625..ada088c 100644 --- a/tests/data/dummy/composite_solid_with_material.json +++ b/tests/data/dummy/composite_solid_with_material.json @@ -1,191 +1 @@ -{ - "type": "CityJSON", - "version": "1.0", - "CityObjects": { - "onebuilding": { - "type": "GenericCityObject", - "geometry": [ - { - "type": "CompositeSolid", - "lod": 1, - "boundaries": [ - [ - [ - [ - [ - 0, - 3, - 2, - 1 - ] - ], - [ - [ - 4, - 5, - 6, - 7 - ] - ], - [ - [ - 0, - 1, - 5, - 4 - ] - ], - [ - [ - 1, - 2, - 6, - 5 - ] - ], - [ - [ - 2, - 3, - 7, - 6 - ] - ], - [ - [ - 3, - 0, - 4, - 7 - ] - ] - ] - ], - [ - [ - [ - [ - 1, - 2, - 9, - 8 - ] - ], - [ - [ - 5, - 10, - 11, - 6 - ] - ], - [ - [ - 1, - 8, - 10, - 5 - ] - ], - [ - [ - 8, - 9, - 11, - 10 - ] - ], - [ - [ - 9, - 2, - 6, - 11 - ] - ], - [ - [ - 2, - 1, - 5, - 6 - ] - ] - ] - ] - ], - "material":{ - "irradiation": { - "values": [[[0, 0, 1, null,1,8]],[[0,1,1,2,3,4]]] - } - }, - "texture":{"rgbTexture":{ - "values":[[[[[0,1,1,2,3]],[[0,3,4,5,3]],[[1,4,1,6,7]],[[0,1,1,2,3]],[[0,1,1,2,3]],[[0,1,1,2,3]]]],[[[[4,1,1,2,3]],[[3,3,4,5,3]],[[2,4,1,6,7]],[[1,1,1,2,3]],[[0,1,1,2,3]],[[10,1,1,2,3]]]]]} - } - } - ] - } - }, - "vertices": [ - [ - 0.0, - 0.0, - 0.0 - ], - [ - 1.0, - 0.0, - 0.0 - ], - [ - 1.0, - 1.0, - 0.0 - ], - [ - 0.0, - 1.0, - 0.0 - ], - [ - 0.0, - 0.0, - 1.0 - ], - [ - 1.0, - 0.0, - 1.0 - ], - [ - 1.0, - 1.0, - 1.0 - ], - [ - 0.0, - 1.0, - 1.0 - ], - [ - 2.0, - 0.0, - 0.0 - ], - [ - 2.0, - 1.0, - 0.0 - ], - [ - 2.0, - 0.0, - 1.0 - ], - [ - 2.0, - 1.0, - 1.0 - ] - ] -} +{"type":"CityJSON","version":"1.1","CityObjects":{"onebuilding":{"type":"+GenericCityObject","geometry":[{"type":"CompositeSolid","lod":"1","boundaries":[[[[[0,1,2,3]],[[4,5,6,7]],[[0,3,5,4]],[[3,2,6,5]],[[2,1,7,6]],[[1,0,4,7]]]],[[[[3,2,8,9]],[[5,10,11,6]],[[3,9,10,5]],[[9,8,11,10]],[[8,2,6,11]],[[2,3,5,6]]]]],"material":{"irradiation":{"values":[[[0,0,1,null,1,8]],[[0,1,1,2,3,4]]]}},"texture":{"rgbTexture":{"values":[[[[[0,1,1,2,3]],[[0,3,4,5,3]],[[1,4,1,6,7]],[[0,1,1,2,3]],[[0,1,1,2,3]],[[0,1,1,2,3]]]],[[[[4,1,1,2,3]],[[3,3,4,5,3]],[[2,4,1,6,7]],[[1,1,1,2,3]],[[0,1,1,2,3]],[[10,1,1,2,3]]]]]}}}]}},"vertices":[[0,0,0],[0,1000,0],[1000,1000,0],[1000,0,0],[0,0,1000],[1000,0,1000],[1000,1000,1000],[0,1000,1000],[2000,1000,0],[2000,0,0],[2000,0,1000],[2000,1000,1000]],"transform":{"scale":[0.001,0.001,0.001],"translate":[0.0,0.0,0.0]},"extensions":{"Generic":{"url":"https://cityjson.org/extensions/download/generic.ext.json","version":"1.0"}}} \ No newline at end of file diff --git a/tests/data/dummy/dummy-triangulated.json b/tests/data/dummy/dummy-triangulated.json deleted file mode 100644 index afe6970..0000000 --- a/tests/data/dummy/dummy-triangulated.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"CityJSON","version":"1.0","metadata":{"referenceSystem":"urn:ogc:def:crs:EPSG::7415","geographicalExtent":[0.0,0.0,0.0,771.0,61.0,51.0],"fileIdentifier":"dummy-triangulated.json"},"CityObjects":{"mygroup1":{"type":"CityObjectGroup","members":["102636712","mylake"],"geometry":[{"type":"MultiSurface","lod":2,"boundaries":[[[2,4,5]]]}]},"102636712":{"type":"Building","attributes":{"measuredHeight":22.3,"roofType":"gable","yearOfConstruction":1904,"owner":"Elvis Presley"},"address":{"CountryName":"Canada","LocalityName":"Chibougamau","ThoroughfareNumber":"666","ThoroughfareName":"rue du Diable","PostalCode":"H0H 0H0"},"geometry":[{"type":"Solid","lod":1.1,"boundaries":[[[[6,7,4]],[[4,5,6]],[[7,6,3]],[[4,7,3]],[[3,0,4]]]],"semantics":{"surfaces":[{"type":"RoofSurface","slope":33.4},{"type":"RoofSurface","slope":66.6},{"type":"WallSurface","paint":"blue"},{"type":"WallSurface","children":[4],"paint":"red"},{"type":"Door","parent":3,"paint":"red"}],"values":[[1,1,2,3,3]]},"material":{"irradiation":{"values":[[0,0,2,2,2]]},"irradiation-2":{"value":1}}},{"type":"Solid","lod":2.1,"boundaries":[[[[6,7,4]],[[4,5,6]],[[7,6,3]],[[4,7,3]],[[3,0,4]]],[[[6,7,4]]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"WallSurface"}],"values":[[1,1,1,1,1],null]},"texture":{"winter-textures":{"values":[[[[null]],[[null]],[[1,7,6,3]],[[1,4,7,3]],[[1,3,0,4]]],[]]},"summer-textures":{"values":[[[[null]],[[null]],[[1,7,6,3]],[[1,4,7,3]],[[1,3,0,4]]],[]]}}}],"children":["2929"]},"2929":{"type":"BuildingPart","attributes":{"renovation":"2001/09/11"},"geometry":[{"type":"Solid","lod":2,"boundaries":[[[[6,7,4]],[[4,5,6]],[[7,6,3]],[[4,7,3]],[[3,0,4]]]]}],"parents":["102636712"]},"onebigtree-template":{"type":"SolitaryVegetationObject","geometry":[{"type":"GeometryInstance","template":0,"boundaries":[2],"transformationMatrix":[2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0]}]},"itcanbeastringtoo":{"type":"Building","attributes":{"measuredHeight":223},"geometry":[{"type":"MultiSurface","lod":2,"boundaries":[[[6,7,4]],[[4,5,6]],[[7,6,3]],[[4,7,3]],[[3,0,4]]],"material":{"blablabla":{"value":1}}}],"children":["801"]},"801":{"type":"BuildingInstallation","attributes":{"function":"balcony"},"geometry":[{"type":"MultiSurface","lod":2.2,"boundaries":[[[6,7,4]],[[4,5,6]],[[7,6,3]],[[4,7,3]],[[3,0,4]]]}],"parents":["itcanbeastringtoo"]},"myterrain01":{"type":"TINRelief","geometry":[{"type":"CompositeSurface","lod":2,"boundaries":[[[0,3,2]],[[4,5,6]],[[0,1,5]],[[1,2,6]],[[2,3,7]],[[3,0,4]]]}]},"mycanal":{"type":"WaterBody","geometry":[{"type":"CompositeSurface","lod":1,"boundaries":[[[6,8,4]],[[7,6,3]],[[4,7,3]]],"semantics":{"surfaces":[],"values":null}}]},"LondonTower":{"type":"Bridge","address":{"CountryName":"UK","LocalityName":"London"},"geometry":[{"type":"MultiSurface","lod":2,"boundaries":[[[6,7,4]],[[4,5,6]],[[7,6,3]],[[4,7,3]],[[3,0,4]]]}]},"mylake":{"type":"WaterBody","attributes":{"usage":"leisure","function":"leisure"},"geometry":[{"type":"MultiSurface","lod":1,"boundaries":[[[6,7,4]],[[4,5,6]],[[7,6,3]],[[4,7,3]],[[3,0,4]]],"semantics":{"surfaces":[{"type":"WaterSurface"},{"type":"WaterGroundSurface"}],"values":[0,0,1,1,1]}}],"geographicalExtent":[84710,446846,-5,84757,446944,40]}},"vertices":[[0.0,0.0,0.0],[1.0,0.0,0.0],[1.0,0.0,0.0],[1.0,0.0,0.0],[1.0,1.0,0.0],[0.0,1.0,0.0],[0.0,0.0,1.0],[1.0,0.0,1.0],[1.0,1.0,1.0],[11.0,11.0,11.0],[21.0,21.0,21.0],[31.0,31.0,31.0],[31.0,41.0,41.0],[31.0,51.0,51.0],[771.0,61.0,1.0],[0.0,1.0,1.0]],"something-else":{"this":1.0,"that":"blablabla"},"geometry-templates":{"templates":[{"type":"MultiSurface","lod":2,"boundaries":[[[0,3,2,1]],[[4,5,6,7]],[[0,1,5,4]]]},{"type":"MultiSurface","lod":2,"boundaries":[[[1,2,6,5]],[[2,3,7,6]],[[3,0,4,7]]]}],"vertices-templates":[[0.0,0.5,0.0],[1.0,0.0,0.0],[11.0,0.0,0.0],[11.0,10.0,0.0],[1.0,12.0,0.0],[1.0,40.0,0.0],[1.0,1.0,0.0],[0.0,1.0,0.0]]},"appearance":{"default-theme-texture":"summer-textures","default-theme-material":"irradiation","vertices-texture":[[0.0,0.5],[1.0,0.0],[1.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0]],"textures":[{"type":"PNG","image":"myfacade.png"},{"type":"JPG","image":"myroof.jpg"},{"type":"JPG","image":"mymymy.jpg"}],"materials":[{"name":"irradiation-0-50","ambientIntensity":0.75,"diffuseColor":[0.9,0.1,0.75],"specularColor":[0.9,0.1,0.75],"transparency":1.0},{"name":"irradiation-51-80","diffuseColor":[0.9,0.1,0.75],"shininess":0.0,"transparency":0.5,"isSmooth":true},{"name":"irradiation-81-100","diffuseColor":[0.19,0.11,0.175],"shininess":0.2,"transparency":0.9,"isSmooth":true}]}} \ No newline at end of file diff --git a/tests/data/dummy/dummy.json b/tests/data/dummy/dummy.json deleted file mode 100644 index 6f5d55b..0000000 --- a/tests/data/dummy/dummy.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"CityJSON","version":"1.1","metadata":{"referenceSystem":"urn:ogc:def:crs:EPSG::7415","geographicalExtent":[0.0,0.0,0.0,1.0,1.0,1.0],"citymodelIdentifier":"bbe078d4-9120-42a1-925a-86e624ad833f","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"dummy.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"present","materials":"present","cityfeatureMetadata":{"WaterBody":{"uniqueFeatureCount":2,"aggregateFeatureCount":2,"presentLoDs":{"1":2}},"Building":{"uniqueFeatureCount":2,"aggregateFeatureCount":3,"presentLoDs":{"1.1":1,"2.1":1,"2":1},"BuildingParts":1,"BuildingInstallations":1},"SolitaryVegetationObject":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"2":1}},"CityObjectGroup":{"uniqueFeatureCount":1,"presentLoDs":{"2":1}},"TINRelief":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"2":1},"triangleCount":6},"Bridge":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"2":1}}},"presentLoDs":{"1":2,"1.1":1,"2.1":1,"2":4},"thematicModels":["WaterBody","Building","SolitaryVegetationObject","CityObjectGroup","TINRelief","Bridge"]},"CityObjects":{"mygroup1":{"type":"CityObjectGroup","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[0,1,2]]]}],"children":["102636712","mylake"]},"102636712":{"type":"Building","attributes":{"measuredHeight":22.3,"roofType":"gable","yearOfConstruction":1904,"owner":"Elvis Presley"},"address":{"CountryName":"Canada","LocalityName":"Chibougamau","ThoroughfareNumber":"666","ThoroughfareName":"rue du Diable","PostalCode":"H0H 0H0"},"geometry":[{"type":"Solid","lod":"1.1","boundaries":[[[[3,0,0,0],[3,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]]],"semantics":{"surfaces":[{"type":"RoofSurface","slope":33.4},{"type":"RoofSurface","slope":66.6},{"type":"WallSurface","paint":"blue"},{"type":"WallSurface","children":[4],"paint":"red"},{"type":"Door","parent":3,"paint":"red"}],"values":[[0,1,null,4,2,3]]},"material":{"irradiation":{"values":[[0,0,null,null,2,2]]},"irradiation-2":{"value":1}}},{"type":"Solid","lod":"2.1","boundaries":[[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]],[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"WallSurface"}],"values":[[0,1,null,null,1,1],null]},"texture":{"winter-textures":{"values":[[[[0,10,13,12,19]],[[null]],[[null]],[[0,1,2,6,5]],[[0,2,3,7,6]],[[0,3,0,4,7]]],[[[null]],[[null]],[[0,0,1,5,4]],[[0,1,2,6,5]]]]},"summer-textures":{"values":[[[[1,7,3,2,1]],[[null]],[[null]],[[1,1,2,6,5]],[[1,2,3,7,6]],[[1,3,0,4,7]]],[[[null]],[[null]],[[1,0,1,5,4]],[[1,1,2,6,5]]]]}}}],"children":["2929"],"parents":["mygroup1"]},"2929":{"type":"BuildingPart","attributes":{"renovation":"2001/09/11"},"geometry":[{"type":"Solid","lod":"2","boundaries":[[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]]]}],"parents":["102636712"]},"onebigtree-template":{"type":"SolitaryVegetationObject","geometry":[{"type":"GeometryInstance","template":0,"boundaries":[0],"transformationMatrix":[2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0]}]},"itcanbeastringtoo":{"type":"Building","attributes":{"measuredHeight":223},"geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]],"material":{"blablabla":{"value":1}}}],"children":["801"]},"801":{"type":"BuildingInstallation","attributes":{"function":"balcony"},"geometry":[{"type":"MultiSurface","lod":"2.2","boundaries":[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]]}],"parents":["itcanbeastringtoo"]},"myterrain01":{"type":"TINRelief","geometry":[{"type":"CompositeSurface","lod":"2","boundaries":[[[3,0,0]],[[1,2,4]],[[3,0,2]],[[0,0,4]],[[0,0,5]],[[0,3,1]]]}]},"mycanal":{"type":"WaterBody","geometry":[{"type":"CompositeSurface","lod":"1","boundaries":[[[3,0,0,0]],[[1,2,4,6]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]],"semantics":{"surfaces":[],"values":null}}]},"LondonTower":{"type":"Bridge","address":{"CountryName":"UK","LocalityName":"London"},"geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]]}]},"mylake":{"type":"WaterBody","attributes":{"usage":"leisure","function":"leisure"},"geometry":[{"type":"MultiSurface","lod":"1","boundaries":[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]],"semantics":{"surfaces":[{"type":"WaterSurface"},{"type":"WaterGroundSurface"}],"values":[0,0,0,0,1,1]}}],"geographicalExtent":[84710,446846,-5,84757,446944,40],"parents":["mygroup1"]}},"vertices":[[1000,0,0],[1000,1000,0],[0,1000,0],[0,0,0],[0,0,1000],[1000,0,1000],[1000,1000,1000]],"something-else":{"this":1.0,"that":"blablabla"},"geometry-templates":{"templates":[{"type":"MultiSurface","lod":2,"boundaries":[[[0,3,2,1]],[[4,5,6,7]],[[0,1,5,4]]]},{"type":"MultiSurface","lod":2,"boundaries":[[[1,2,6,5]],[[2,3,7,6]],[[3,0,4,7]]]}],"vertices-templates":[[0.0,0.5,0.0],[1.0,0.0,0.0],[11.0,0.0,0.0],[11.0,10.0,0.0],[1.0,12.0,0.0],[1.0,40.0,0.0],[1.0,1.0,0.0],[0.0,1.0,0.0]]},"appearance":{"default-theme-texture":"summer-textures","default-theme-material":"irradiation","vertices-texture":[[0.0,0.5],[1.0,0.0],[1.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0]],"textures":[{"type":"PNG","image":"myfacade.png"},{"type":"JPG","image":"myroof.jpg"},{"type":"JPG","image":"mymymy.jpg"}],"materials":[{"name":"irradiation-0-50","ambientIntensity":0.75,"diffuseColor":[0.9,0.1,0.75],"specularColor":[0.9,0.1,0.75],"transparency":1.0},{"name":"irradiation-51-80","diffuseColor":[0.9,0.1,0.75],"shininess":0.0,"transparency":0.5,"isSmooth":true},{"name":"irradiation-81-100","diffuseColor":[0.19,0.11,0.175],"shininess":0.2,"transparency":0.9,"isSmooth":true}]},"transform":{"scale":[0.001,0.001,0.001],"translate":[0.0,0.0,0.0]}} \ No newline at end of file diff --git a/tests/data/dummy/dummy_noappearance.json b/tests/data/dummy/dummy_noappearance.json deleted file mode 100644 index d5cd0cf..0000000 --- a/tests/data/dummy/dummy_noappearance.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"CityJSON","version":"1.1","metadata":{"referenceSystem":"urn:ogc:def:crs:EPSG::7415","geographicalExtent":[0.0,0.0,0.0,1.0,1.0,1.0],"citymodelIdentifier":"ade999f0-317f-4a51-aede-bfcc148855e2","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"dummy_noappearance.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{"Bridge":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"2":1}},"Building":{"uniqueFeatureCount":2,"aggregateFeatureCount":3,"presentLoDs":{"1.1":1,"2.1":1,"2":1},"BuildingParts":1,"BuildingInstallations":1},"SolitaryVegetationObject":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"2":1}},"CityObjectGroup":{"uniqueFeatureCount":1,"presentLoDs":{"2":1}},"TINRelief":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"2":1},"triangleCount":6},"WaterBody":{"uniqueFeatureCount":2,"aggregateFeatureCount":2,"presentLoDs":{"1":2}}},"presentLoDs":{"2":4,"1.1":1,"2.1":1,"1":2},"thematicModels":["Bridge","Building","SolitaryVegetationObject","CityObjectGroup","TINRelief","WaterBody"]},"CityObjects":{"mygroup1":{"type":"CityObjectGroup","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[0,1,2]]]}],"children":["102636712","mylake"]},"102636712":{"type":"Building","attributes":{"measuredHeight":22.3,"roofType":"gable","yearOfConstruction":1904,"owner":"Elvis Presley"},"address":{"CountryName":"Canada","LocalityName":"Chibougamau","ThoroughfareNumber":"666","ThoroughfareName":"rue du Diable","PostalCode":"H0H 0H0"},"geometry":[{"type":"Solid","lod":"1.1","boundaries":[[[[3,0,0,0],[3,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]]],"semantics":{"surfaces":[{"type":"RoofSurface","slope":33.4},{"type":"RoofSurface","slope":66.6},{"type":"WallSurface","paint":"blue"},{"type":"WallSurface","paint":"red"}],"values":[[0,1,null,null,2,3]]},"material":{"irradiation":{"values":[[0,0,null,null,2,2]]},"irradiation-2":{"value":1}}},{"type":"Solid","lod":"2.1","boundaries":[[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]],[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"WallSurface"}],"values":[[0,1,null,null,1,1],null]},"texture":{"winter-textures":{"values":[[[[0,10,13,12,19]],[[null]],[[null]],[[0,1,2,6,5]],[[0,2,3,7,6]],[[0,3,0,4,7]]],[[[null]],[[null]],[[0,0,1,5,4]],[[0,1,2,6,5]]]]},"summer-textures":{"values":[[[[1,7,3,2,1]],[[null]],[[null]],[[1,1,2,6,5]],[[1,2,3,7,6]],[[1,3,0,4,7]]],[[[null]],[[null]],[[1,0,1,5,4]],[[1,1,2,6,5]]]]}}}],"children":["2929"],"parents":["mygroup1"]},"2929":{"type":"BuildingPart","attributes":{"renovation":"2001/09/11"},"geometry":[{"type":"Solid","lod":"2","boundaries":[[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]]]}],"parents":["102636712"]},"onebigtree-template":{"type":"SolitaryVegetationObject","geometry":[{"type":"GeometryInstance","template":0,"boundaries":[0],"transformationMatrix":[2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0]}]},"itcanbeastringtoo":{"type":"Building","attributes":{"measuredHeight":223},"geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]],"material":{"blablabla":{"value":1}}}],"children":["801"]},"801":{"type":"BuildingInstallation","attributes":{"function":"balcony"},"geometry":[{"type":"MultiSurface","lod":"2.2","boundaries":[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]]}],"parents":["itcanbeastringtoo"]},"myterrain01":{"type":"TINRelief","geometry":[{"type":"CompositeSurface","lod":"2","boundaries":[[[3,0,0]],[[1,2,4]],[[3,0,2]],[[0,0,4]],[[0,0,5]],[[0,3,1]]]}]},"mycanal":{"type":"WaterBody","geometry":[{"type":"CompositeSurface","lod":"1","boundaries":[[[3,0,0,0]],[[1,2,4,6]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]],"semantics":{"surfaces":[],"values":null}}]},"LondonTower":{"type":"Bridge","address":{"CountryName":"UK","LocalityName":"London"},"geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]]}]},"mylake":{"type":"WaterBody","attributes":{"usage":"leisure","function":"leisure"},"geometry":[{"type":"MultiSurface","lod":"1","boundaries":[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]],"semantics":{"surfaces":[{"type":"WaterSurface"},{"type":"WaterGroundSurface"}],"values":[0,0,0,0,1,1]}}],"geographicalExtent":[84710,446846,-5,84757,446944,40],"parents":["mygroup1"]}},"vertices":[[1000,0,0],[1000,1000,0],[0,1000,0],[0,0,0],[0,0,1000],[1000,0,1000],[1000,1000,1000]],"something-else":{"this":1.0,"that":"blablabla"},"geometry-templates":{"templates":[{"type":"MultiSurface","lod":2,"boundaries":[[[0,3,2,1]],[[4,5,6,7]],[[0,1,5,4]]]},{"type":"MultiSurface","lod":2,"boundaries":[[[1,2,6,5]],[[2,3,7,6]],[[3,0,4,7]]]}],"vertices-templates":[[0.0,0.5,0.0],[1.0,0.0,0.0],[11.0,0.0,0.0],[11.0,10.0,0.0],[1.0,12.0,0.0],[1.0,40.0,0.0],[1.0,1.0,0.0],[0.0,1.0,0.0]]},"transform":{"scale":[0.001,0.001,0.001],"translate":[0.0,0.0,0.0]}} \ No newline at end of file diff --git a/tests/data/dummy/multisurface_with_material.json b/tests/data/dummy/multisurface_with_material.json index a548e3e..b4011f2 100644 --- a/tests/data/dummy/multisurface_with_material.json +++ b/tests/data/dummy/multisurface_with_material.json @@ -1 +1 @@ -{"type":"CityJSON","version":"1.0","CityObjects":{"GMLID_6162422_289094_1279":{"type":"CityFurniture","attributes":{"function":"1090"},"geometry":[{"type":"MultiSurface","boundaries":[[[0,1,2,3]],[[1,0,4,5]],[[3,2,6,7]],[[2,1,5,6]],[[3,7,4,0]],[[8,9,10,11]],[[12,13,14,15]],[[13,8,11,14]],[[12,15,10,9]],[[16,17,18,19]],[[19,18,20,21]],[[22,23,21,20]],[[23,16,19,21]],[[22,20,18,17]],[[15,14,23,22]],[[15,22,17,10]],[[11,10,17,16]],[[7,12,9,4]],[[14,11,16,23]],[[6,5,8,13]],[[5,4,9,8]],[[7,6,13,12]],[[24,25,26,27]],[[28,29,30,31]],[[27,26,32,33]],[[34,35,29,28]],[[33,36,30,29,35,37,24,27]],[[34,28,31,38,32,26,25,39]],[[33,32,38,36]],[[39,37,35,34]],[[36,38,31,30]],[[25,24,37,39]],[[40,41,42,43]],[[44,45,42,41]],[[44,46,47,45]],[[46,40,43,47]],[[43,42,45,47]],[[40,46,44,41]],[[48,49,50,51]],[[51,50,52,53]],[[54,55,56,57]],[[58,59,55,54]],[[53,52,60,61]],[[53,61,56,55,59,62,48,51]],[[58,54,57,60,52,50,49,63]],[[61,60,57,56]],[[63,62,59,58]],[[49,48,62,63]],[[64,65,66,67]],[[65,68,69,66]],[[70,69,68,71]],[[64,71,68,65]],[[67,66,69,70]],[[67,70,71,64]],[[72,73,74,41]],[[72,75,76,73]],[[75,77,78,76]],[[77,41,74,78]],[[73,76,78,74]],[[72,41,77,75]],[[79,80,81,82]],[[83,81,82,84]],[[85,80,81,83]],[[86,79,80,85]],[[84,82,79,86]],[[87,88,89,90]],[[88,87,91,92]],[[92,91,93,94]],[[90,89,94,93]],[[89,88,92,94]],[[90,93,91,87]],[[95,96,97,98]],[[99,100,96,95]],[[101,102,100,99]],[[103,104,102,101]],[[104,103,105,106]],[[106,105,107,108]],[[108,107,109,110]],[[110,109,111,112]],[[112,111,113,114]],[[113,115,116,114]],[[116,115,117,118]],[[118,117,119,120]],[[121,122,120,119]],[[123,122,121,124]],[[125,126,123,124]],[[98,97,126,125]],[[116,118,120,122,123,126,97,96,100,102,104,106,108,110,112,114]],[[124,121,119,117,115,113,111,109,107,105,103,101,99,95,98,125]],[[86,127,84]],[[84,127,83]],[[83,127,85]],[[85,127,86]],[[128,129,130,131]],[[132,128,131,133]],[[134,132,133,135]],[[136,134,135,137]],[[137,138,139,136]],[[138,140,141,139]],[[140,142,143,141]],[[142,144,145,143]],[[144,146,147,145]],[[146,148,149,147]],[[148,150,151,149]],[[150,152,153,151]],[[154,153,152,155]],[[156,154,155,157]],[[158,156,157,159]],[[129,158,159,130]],[[157,155,152,150,148,146,144,142,140,138,137,135,133,131,130,159]],[[149,151,153,154,156,158,129,128,132,134,136,139,141,143,145,147]],[[160,161,162,163]],[[164,165,166,167]],[[167,166,168,169]],[[170,171,165,164]],[[172,173,171,170]],[[174,175,176,177]],[[178,179,180,181]],[[177,176,182,183]],[[184,185,162,161]],[[186,187,188,189]],[[190,164,167,191]],[[191,167,169,192]],[[193,194,195,196]],[[197,186,189,198]],[[199,200,201,202]],[[203,178,181,204]],[[205,195,194,206]],[[175,207,208,176]],[[176,208,209,182]],[[210,211,212,213]],[[214,172,170,215]],[[216,217,218,219]],[[215,170,164,190]],[[220,221,222,223]],[[217,224,225,218]],[[226,199,202,227]],[[224,228,229,225]],[[200,210,213,201]],[[230,226,227,231]],[[228,205,206,229]],[[198,230,231,197]],[[232,233,221,220]],[[204,181,234,235]],[[192,169,178,203]],[[184,236,236,237,214,215,190,191,192,203,204,235,209,208,207,238,185],[206,194,193,211,210,200,199,226,230,198,189,188,219,218,225,229],[233,233,239,240,222,222,221]],[[235,234,182,209]],[[241,237,236,242]],[[211,193,196,212]],[[243,244,240,239]],[[172,214,237,241]],[[169,168,179,178]],[[181,180,245,234]],[[234,245,183,182]],[[246,241,242,247]],[[173,172,241,246]],[[238,248,162,185]],[[248,238,207,175]],[[249,222,240,244]],[[222,249,223,222]],[[163,250,174,177,183,245,180,179,168,166,165,171,173,246,247,247,160]],[[248,250,163,162]],[[250,248,175,174]],[[247,251,161,160]],[[251,247,247,242]],[[251,236,184,161]],[[236,251,242,236]],[[233,252,243,239]],[[252,232,220,223,249,244,243]],[[232,252,233,233]],[[216,187,186,197,231,227,202,201,213,212,196,195,205,228,224,217]],[[219,188,187,216]],[[253,254,255,256]],[[257,258,259,260]],[[256,255,261,262]],[[263,264,258,257]],[[256,262,265,259,258,264,266,253]],[[257,260,267,261,255,254,268,263]],[[262,261,265]],[[261,267,265]],[[268,266,264,263]],[[260,259,265,267]],[[266,268,254,253]],[[269,270,271,272,273,274,275,276]],[[270,277,278,271]],[[279,280,278,277,281,282,283,284]],[[276,282,281,269]],[[269,281,277,270]],[[284,274,273,279]],[[275,283,282,276]],[[283,275,274,284]],[[280,272,271,278]],[[279,273,272,280]]],"material":{"visual":{"values":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,null,null,null,1,0,0,0,1,0,1,0,4,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0]},"vv":{"value":5}},"lod":3}]}},"vertices":[[9756,1614,532],[9751,1613,532],[9745,1622,532],[9748,1625,532],[9756,1614,584],[9751,1613,584],[9745,1622,584],[9748,1625,584],[9751,1613,636],[9756,1614,636],[9756,1614,687],[9751,1613,687],[9748,1625,636],[9745,1622,636],[9745,1622,687],[9748,1625,687],[9751,1613,740],[9756,1614,740],[9756,1614,792],[9751,1613,792],[9748,1625,792],[9745,1622,792],[9748,1625,740],[9745,1622,740],[9741,1611,854],[9744,1613,854],[9745,1610,856],[9743,1609,856],[9742,1617,863],[9738,1614,863],[9741,1611,866],[9744,1613,866],[9747,1609,860],[9744,1606,860],[9741,1618,860],[9737,1617,860],[9743,1609,863],[9738,1614,856],[9745,1610,863],[9742,1617,856],[9738,1625,419],[9742,1627,419],[9742,1627,856],[9738,1625,856],[9740,1630,419],[9740,1630,856],[9737,1629,419],[9737,1629,856],[9756,1605,822],[9753,1602,822],[9748,1608,827],[9753,1610,827],[9748,1609,833],[9751,1610,833],[9763,1589,844],[9766,1590,844],[9761,1597,849],[9759,1593,849],[9763,1588,838],[9766,1590,838],[9756,1598,849],[9759,1601,849],[9759,1601,822],[9756,1597,822],[9751,1605,837],[9740,1622,851],[9744,1623,851],[9754,1608,837],[9744,1617,860],[9747,1618,860],[9758,1602,844],[9754,1601,844],[9756,1608,419],[9756,1608,459],[9742,1627,459],[9776,1621,419],[9776,1621,459],[9761,1641,419],[9761,1641,459],[9756,1614,459],[9769,1623,459],[9761,1634,459],[9748,1625,459],[9761,1634,879],[9748,1625,879],[9769,1623,879],[9756,1614,879],[9756,1614,479],[9735,1601,479],[9729,1610,479],[9748,1625,479],[9756,1614,504],[9735,1601,504],[9748,1625,504],[9729,1610,504],[9740,1629,835],[9767,1589,835],[9766,1588,840],[9738,1627,840],[9743,1630,830],[9770,1590,830],[9747,1633,827],[9774,1593,827],[9751,1635,825],[9777,1596,825],[9754,1638,827],[9782,1598,827],[9759,1642,830],[9786,1601,830],[9761,1642,835],[9789,1604,835],[9763,1643,840],[9790,1604,840],[9761,1642,846],[9789,1604,846],[9759,1642,850],[9786,1601,850],[9754,1638,853],[9782,1598,853],[9751,1635,854],[9777,1596,854],[9747,1633,853],[9774,1593,853],[9770,1590,850],[9743,1630,850],[9740,1629,846],[9767,1589,846],[9759,1623,888],[9754,1614,857],[9756,1614,860],[9748,1609,860],[9748,1610,857],[9754,1615,856],[9748,1611,856],[9754,1617,854],[9747,1613,854],[9751,1619,854],[9745,1614,854],[9744,1617,854],[9751,1622,854],[9743,1618,856],[9750,1622,856],[9743,1619,857],[9748,1625,857],[9742,1619,860],[9748,1625,860],[9743,1619,863],[9748,1625,863],[9743,1618,865],[9750,1622,865],[9744,1617,866],[9751,1622,866],[9745,1614,866],[9751,1619,866],[9754,1617,866],[9747,1613,866],[9754,1615,865],[9748,1611,865],[9754,1614,863],[9748,1610,863],[9734,1631,851],[9732,1630,851],[9732,1630,866],[9734,1631,866],[9791,1544,851],[9793,1545,851],[9795,1542,854],[9793,1541,854],[9795,1542,859],[9793,1541,859],[9789,1548,847],[9791,1549,847],[9786,1550,847],[9788,1553,847],[9783,1560,867],[9782,1557,867],[9783,1554,870],[9786,1556,870],[9793,1541,863],[9795,1542,863],[9793,1545,867],[9791,1544,867],[9786,1550,870],[9788,1553,870],[9731,1630,851],[9731,1630,866],[9785,1553,851],[9783,1556,854],[9782,1554,854],[9783,1553,851],[9790,1542,851],[9791,1541,854],[9792,1540,859],[9786,1548,867],[9785,1549,867],[9786,1550,867],[9788,1549,867],[9786,1550,851],[9785,1549,851],[9789,1544,856],[9789,1544,859],[9791,1545,859],[9791,1545,856],[9791,1541,863],[9790,1542,867],[9785,1553,867],[9783,1553,867],[9780,1557,867],[9782,1553,870],[9785,1549,870],[9789,1544,862],[9788,1545,865],[9790,1546,865],[9791,1545,862],[9785,1549,847],[9788,1545,847],[9783,1557,856],[9782,1557,859],[9780,1557,859],[9780,1556,856],[9780,1561,859],[9777,1560,859],[9779,1558,863],[9780,1561,863],[9783,1557,862],[9780,1556,862],[9788,1545,854],[9790,1546,854],[9783,1556,865],[9782,1554,865],[9786,1548,851],[9788,1549,851],[9780,1561,854],[9779,1558,854],[9789,1548,870],[9788,1545,870],[9780,1557,851],[9782,1553,847],[9780,1557,866],[9732,1626,854],[9732,1626,863],[9783,1554,847],[9782,1557,851],[9735,1627,854],[9735,1627,863],[9791,1549,870],[9786,1556,847],[9783,1560,851],[9780,1558,866],[9780,1560,863],[9783,1560,866],[9780,1558,851],[9780,1560,854],[9753,1604,828],[9751,1602,828],[9750,1604,830],[9751,1605,830],[9754,1597,831],[9756,1597,831],[9754,1600,834],[9754,1598,834],[9750,1602,833],[9751,1604,833],[9754,1597,828],[9756,1598,828],[9754,1601,835],[9754,1601,827],[9751,1601,835],[9753,1600,827],[9756,1598,840],[9756,1597,843],[9758,1596,844],[9759,1593,844],[9760,1592,841],[9760,1593,838],[9758,1594,837],[9757,1597,837],[9754,1597,843],[9756,1594,844],[9759,1590,841],[9758,1593,844],[9754,1597,840],[9754,1597,837],[9757,1593,837],[9758,1592,838]],"transform":{"scale":[0.001,0.001,0.001],"translate":[0.56,0.64,7.579]},"appearance":{"materials":[{"name":"UUID_9bf2262a-054e-4054-b2b0-a0206db1a227","diffuseColor":[0.796875,0.0,0.0],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0},{"name":"UUID_8c940db7-0961-489c-84b6-9c87819fdf57","diffuseColor":[0.99609375,0.99609375,0.99609375],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0},{"name":"UUID_18756aa0-2d97-4399-b8cf-4c5499840cb7","diffuseColor":[0.19921875,0.19921875,0.19921875],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0},{"name":"UUID_79a9e956-70ed-4aa6-8883-3a2cb53166b0","diffuseColor":[0.49609375,0.49609375,0.49609375],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0},{"name":"UUID_c33c3767-e54d-4d3f-a5e5-c30608b2aeb5","diffuseColor":[0.0,0.296875,0.0],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0}]},"metadata":{"geographicalExtent":[10.289000000000001,2.18,7.997999999999999,10.355,2.283,8.467],"citymodelIdentifier":"340ea7fc-676a-4466-a346-0688a95f3419","datasetReferenceDate":"2021-08-10","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.0","spatialRepresentationType":"vector","fileIdentifier":"ss.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-08-10","textures":"absent","materials":"present","cityfeatureMetadata":{"CityFurniture":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"3":1}}},"presentLoDs":{"3":1},"thematicModels":["CityFurniture"]}} +{"type":"CityJSON","version":"1.1","CityObjects":{"GMLID_6162422_289094_1279":{"type":"CityFurniture","attributes":{"function":"1090"},"geometry":[{"type":"MultiSurface","boundaries":[[[0,1,2,3]],[[1,0,4,5]],[[3,2,6,7]],[[2,1,5,6]],[[3,7,4,0]],[[8,9,10,11]],[[12,13,14,15]],[[13,8,11,14]],[[12,15,10,9]],[[16,17,18,19]],[[19,18,20,21]],[[22,23,21,20]],[[23,16,19,21]],[[22,20,18,17]],[[15,14,23,22]],[[15,22,17,10]],[[11,10,17,16]],[[7,12,9,4]],[[14,11,16,23]],[[6,5,8,13]],[[5,4,9,8]],[[7,6,13,12]],[[24,25,26,27]],[[28,29,30,31]],[[27,26,32,33]],[[34,35,29,28]],[[33,36,30,29,35,37,24,27]],[[34,28,31,38,32,26,25,39]],[[33,32,38,36]],[[39,37,35,34]],[[36,38,31,30]],[[25,24,37,39]],[[40,41,42,43]],[[44,45,42,41]],[[44,46,47,45]],[[46,40,43,47]],[[43,42,45,47]],[[40,46,44,41]],[[48,49,50,51]],[[51,50,52,53]],[[54,55,56,57]],[[58,59,55,54]],[[53,52,60,61]],[[53,61,56,55,59,62,48,51]],[[58,54,57,60,52,50,49,63]],[[61,60,57,56]],[[63,62,59,58]],[[49,48,62,63]],[[64,65,66,67]],[[65,68,69,66]],[[70,69,68,71]],[[64,71,68,65]],[[67,66,69,70]],[[67,70,71,64]],[[72,73,74,41]],[[72,75,76,73]],[[75,77,78,76]],[[77,41,74,78]],[[73,76,78,74]],[[72,41,77,75]],[[79,80,81,82]],[[83,81,82,84]],[[85,80,81,83]],[[86,79,80,85]],[[84,82,79,86]],[[87,88,89,90]],[[88,87,91,92]],[[92,91,93,94]],[[90,89,94,93]],[[89,88,92,94]],[[90,93,91,87]],[[95,96,97,98]],[[99,100,96,95]],[[101,102,100,99]],[[103,104,102,101]],[[104,103,105,106]],[[106,105,107,108]],[[108,107,109,110]],[[110,109,111,112]],[[112,111,113,114]],[[113,115,116,114]],[[116,115,117,118]],[[118,117,119,120]],[[121,122,120,119]],[[123,122,121,124]],[[125,126,123,124]],[[98,97,126,125]],[[116,118,120,122,123,126,97,96,100,102,104,106,108,110,112,114]],[[124,121,119,117,115,113,111,109,107,105,103,101,99,95,98,125]],[[86,127,84]],[[84,127,83]],[[83,127,85]],[[85,127,86]],[[128,129,130,131]],[[132,128,131,133]],[[134,132,133,135]],[[136,134,135,137]],[[137,138,139,136]],[[138,140,141,139]],[[140,142,143,141]],[[142,144,145,143]],[[144,146,147,145]],[[146,148,149,147]],[[148,150,151,149]],[[150,152,153,151]],[[154,153,152,155]],[[156,154,155,157]],[[158,156,157,159]],[[129,158,159,130]],[[157,155,152,150,148,146,144,142,140,138,137,135,133,131,130,159]],[[149,151,153,154,156,158,129,128,132,134,136,139,141,143,145,147]],[[160,161,162,163]],[[164,165,166,167]],[[167,166,168,169]],[[170,171,165,164]],[[172,173,171,170]],[[174,175,176,177]],[[178,179,180,181]],[[177,176,182,183]],[[184,185,162,161]],[[186,187,188,189]],[[190,164,167,191]],[[191,167,169,192]],[[193,194,195,196]],[[197,186,189,198]],[[199,200,201,202]],[[203,178,181,204]],[[205,195,194,206]],[[175,207,208,176]],[[176,208,209,182]],[[210,211,212,213]],[[214,172,170,215]],[[216,217,218,219]],[[215,170,164,190]],[[220,221,222,223]],[[217,224,225,218]],[[226,199,202,227]],[[224,228,229,225]],[[200,210,213,201]],[[230,226,227,231]],[[228,205,206,229]],[[198,230,231,197]],[[232,233,221,220]],[[204,181,234,235]],[[192,169,178,203]],[[184,236,236,237,214,215,190,191,192,203,204,235,209,208,207,238,185],[206,194,193,211,210,200,199,226,230,198,189,188,219,218,225,229],[233,233,239,240,222,222,221]],[[235,234,182,209]],[[241,237,236,242]],[[211,193,196,212]],[[243,244,240,239]],[[172,214,237,241]],[[169,168,179,178]],[[181,180,245,234]],[[234,245,183,182]],[[246,241,242,247]],[[173,172,241,246]],[[238,248,162,185]],[[248,238,207,175]],[[249,222,240,244]],[[222,249,223,222]],[[163,250,174,177,183,245,180,179,168,166,165,171,173,246,247,247,160]],[[248,250,163,162]],[[250,248,175,174]],[[247,251,161,160]],[[251,247,247,242]],[[251,236,184,161]],[[236,251,242,236]],[[233,252,243,239]],[[252,232,220,223,249,244,243]],[[232,252,233,233]],[[216,187,186,197,231,227,202,201,213,212,196,195,205,228,224,217]],[[219,188,187,216]],[[253,254,255,256]],[[257,258,259,260]],[[256,255,261,262]],[[263,264,258,257]],[[256,262,265,259,258,264,266,253]],[[257,260,267,261,255,254,268,263]],[[262,261,265]],[[261,267,265]],[[268,266,264,263]],[[260,259,265,267]],[[266,268,254,253]],[[269,270,271,272,273,274,275,276]],[[270,277,278,271]],[[279,280,278,277,281,282,283,284]],[[276,282,281,269]],[[269,281,277,270]],[[284,274,273,279]],[[275,283,282,276]],[[283,275,274,284]],[[280,272,271,278]],[[279,273,272,280]]],"material":{"visual":{"values":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,null,null,null,1,0,0,0,1,0,1,0,4,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0]},"vv":{"value":5}},"lod":"3"}]}},"vertices":[[9756,1614,532],[9751,1613,532],[9745,1622,532],[9748,1625,532],[9756,1614,584],[9751,1613,584],[9745,1622,584],[9748,1625,584],[9751,1613,636],[9756,1614,636],[9756,1614,687],[9751,1613,687],[9748,1625,636],[9745,1622,636],[9745,1622,687],[9748,1625,687],[9751,1613,740],[9756,1614,740],[9756,1614,792],[9751,1613,792],[9748,1625,792],[9745,1622,792],[9748,1625,740],[9745,1622,740],[9741,1611,854],[9744,1613,854],[9745,1610,856],[9743,1609,856],[9742,1617,863],[9738,1614,863],[9741,1611,866],[9744,1613,866],[9747,1609,860],[9744,1606,860],[9741,1618,860],[9737,1617,860],[9743,1609,863],[9738,1614,856],[9745,1610,863],[9742,1617,856],[9738,1625,419],[9742,1627,419],[9742,1627,856],[9738,1625,856],[9740,1630,419],[9740,1630,856],[9737,1629,419],[9737,1629,856],[9756,1605,822],[9753,1602,822],[9748,1608,827],[9753,1610,827],[9748,1609,833],[9751,1610,833],[9763,1589,844],[9766,1590,844],[9761,1597,849],[9759,1593,849],[9763,1588,838],[9766,1590,838],[9756,1598,849],[9759,1601,849],[9759,1601,822],[9756,1597,822],[9751,1605,837],[9740,1622,851],[9744,1623,851],[9754,1608,837],[9744,1617,860],[9747,1618,860],[9758,1602,844],[9754,1601,844],[9756,1608,419],[9756,1608,459],[9742,1627,459],[9776,1621,419],[9776,1621,459],[9761,1641,419],[9761,1641,459],[9756,1614,459],[9769,1623,459],[9761,1634,459],[9748,1625,459],[9761,1634,879],[9748,1625,879],[9769,1623,879],[9756,1614,879],[9756,1614,479],[9735,1601,479],[9729,1610,479],[9748,1625,479],[9756,1614,504],[9735,1601,504],[9748,1625,504],[9729,1610,504],[9740,1629,835],[9767,1589,835],[9766,1588,840],[9738,1627,840],[9743,1630,830],[9770,1590,830],[9747,1633,827],[9774,1593,827],[9751,1635,825],[9777,1596,825],[9754,1638,827],[9782,1598,827],[9759,1642,830],[9786,1601,830],[9761,1642,835],[9789,1604,835],[9763,1643,840],[9790,1604,840],[9761,1642,846],[9789,1604,846],[9759,1642,850],[9786,1601,850],[9754,1638,853],[9782,1598,853],[9751,1635,854],[9777,1596,854],[9747,1633,853],[9774,1593,853],[9770,1590,850],[9743,1630,850],[9740,1629,846],[9767,1589,846],[9759,1623,888],[9754,1614,857],[9756,1614,860],[9748,1609,860],[9748,1610,857],[9754,1615,856],[9748,1611,856],[9754,1617,854],[9747,1613,854],[9751,1619,854],[9745,1614,854],[9744,1617,854],[9751,1622,854],[9743,1618,856],[9750,1622,856],[9743,1619,857],[9748,1625,857],[9742,1619,860],[9748,1625,860],[9743,1619,863],[9748,1625,863],[9743,1618,865],[9750,1622,865],[9744,1617,866],[9751,1622,866],[9745,1614,866],[9751,1619,866],[9754,1617,866],[9747,1613,866],[9754,1615,865],[9748,1611,865],[9754,1614,863],[9748,1610,863],[9734,1631,851],[9732,1630,851],[9732,1630,866],[9734,1631,866],[9791,1544,851],[9793,1545,851],[9795,1542,854],[9793,1541,854],[9795,1542,859],[9793,1541,859],[9789,1548,847],[9791,1549,847],[9786,1550,847],[9788,1553,847],[9783,1560,867],[9782,1557,867],[9783,1554,870],[9786,1556,870],[9793,1541,863],[9795,1542,863],[9793,1545,867],[9791,1544,867],[9786,1550,870],[9788,1553,870],[9731,1630,851],[9731,1630,866],[9785,1553,851],[9783,1556,854],[9782,1554,854],[9783,1553,851],[9790,1542,851],[9791,1541,854],[9792,1540,859],[9786,1548,867],[9785,1549,867],[9786,1550,867],[9788,1549,867],[9786,1550,851],[9785,1549,851],[9789,1544,856],[9789,1544,859],[9791,1545,859],[9791,1545,856],[9791,1541,863],[9790,1542,867],[9785,1553,867],[9783,1553,867],[9780,1557,867],[9782,1553,870],[9785,1549,870],[9789,1544,862],[9788,1545,865],[9790,1546,865],[9791,1545,862],[9785,1549,847],[9788,1545,847],[9783,1557,856],[9782,1557,859],[9780,1557,859],[9780,1556,856],[9780,1561,859],[9777,1560,859],[9779,1558,863],[9780,1561,863],[9783,1557,862],[9780,1556,862],[9788,1545,854],[9790,1546,854],[9783,1556,865],[9782,1554,865],[9786,1548,851],[9788,1549,851],[9780,1561,854],[9779,1558,854],[9789,1548,870],[9788,1545,870],[9780,1557,851],[9782,1553,847],[9780,1557,866],[9732,1626,854],[9732,1626,863],[9783,1554,847],[9782,1557,851],[9735,1627,854],[9735,1627,863],[9791,1549,870],[9786,1556,847],[9783,1560,851],[9780,1558,866],[9780,1560,863],[9783,1560,866],[9780,1558,851],[9780,1560,854],[9753,1604,828],[9751,1602,828],[9750,1604,830],[9751,1605,830],[9754,1597,831],[9756,1597,831],[9754,1600,834],[9754,1598,834],[9750,1602,833],[9751,1604,833],[9754,1597,828],[9756,1598,828],[9754,1601,835],[9754,1601,827],[9751,1601,835],[9753,1600,827],[9756,1598,840],[9756,1597,843],[9758,1596,844],[9759,1593,844],[9760,1592,841],[9760,1593,838],[9758,1594,837],[9757,1597,837],[9754,1597,843],[9756,1594,844],[9759,1590,841],[9758,1593,844],[9754,1597,840],[9754,1597,837],[9757,1593,837],[9758,1592,838]],"transform":{"scale":[0.001,0.001,0.001],"translate":[0.56,0.64,7.579]},"appearance":{"materials":[{"name":"UUID_9bf2262a-054e-4054-b2b0-a0206db1a227","diffuseColor":[0.796875,0.0,0.0],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0},{"name":"UUID_8c940db7-0961-489c-84b6-9c87819fdf57","diffuseColor":[0.99609375,0.99609375,0.99609375],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0},{"name":"UUID_18756aa0-2d97-4399-b8cf-4c5499840cb7","diffuseColor":[0.19921875,0.19921875,0.19921875],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0},{"name":"UUID_79a9e956-70ed-4aa6-8883-3a2cb53166b0","diffuseColor":[0.49609375,0.49609375,0.49609375],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0},{"name":"UUID_c33c3767-e54d-4d3f-a5e5-c30608b2aeb5","diffuseColor":[0.0,0.296875,0.0],"emissiveColor":[0.0,0.0,0.0],"specularColor":[1.0,1.0,1.0],"transparency":0.0}]},"metadata":{"identifier":"340ea7fc-676a-4466-a346-0688a95f3419","referenceDate":"2021-08-10","geographicalExtent":[10.289000000000001,2.18,7.997999999999999,10.355,2.283,8.467]},"+metadata-extended":{"datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.0","spatialRepresentationType":["vector"],"fileIdentifier":"ss.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-08-10","textures":"absent","materials":"present","cityfeatureMetadata":{"CityFurniture":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"3":1}}},"presentLoDs":{"3":1},"thematicModels":["CityFurniture"]},"extensions":{"MetadataExtended":{"url":"https://raw.githubusercontent.com/cityjson/metadata-extended/0.5/metadata-extended.ext.json","version":"0.5"}}} \ No newline at end of file diff --git a/tests/data/dummy/rectangle.json b/tests/data/dummy/rectangle.json index 89d0361..3faf082 100644 --- a/tests/data/dummy/rectangle.json +++ b/tests/data/dummy/rectangle.json @@ -1 +1,79 @@ -{"CityObjects":{"id-1":{"geometry":[{"boundaries":[[[0,1,2,3]]],"type":"MultiSurface","lod":"1"}],"type":"+GenericCityObject"}},"version":"1.1","type":"CityJSON","vertices":[[0,0,0],[0,1000,0],[1000,1000,0],[1000,0,0]],"metadata":{"geographicalExtent":[0.0,0.0,0.0,1.0,1.0,0.0],"citymodelIdentifier":"1e9620b5-1a9a-4c7d-84c8-4c7b3182b91a","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"rectangle.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{"+GenericCityObject":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"1":1}}},"presentLoDs":{"1":1},"thematicModels":["+GenericCityObject"]},"transform":{"scale":[0.001,0.001,0.001],"translate":[0.0,0.0,0.0]}} \ No newline at end of file +{ + "CityObjects": + { + "id-1": + { + "geometry": + [ + { + "boundaries": + [ + [ + [ + 0, + 1, + 2, + 3 + ] + ] + ], + "type": "MultiSurface", + "lod": "1.0" + } + ], + "type": "Building" + } + }, + "version": "1.1", + "type": "CityJSON", + "vertices": + [ + [ + 0, + 0, + 0 + ], + [ + 0, + 1000, + 0 + ], + [ + 1000, + 1000, + 0 + ], + [ + 1000, + 0, + 0 + ] + ], + "metadata": + { + "geographicalExtent": + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 0.0 + ] + }, + "transform": + { + "scale": + [ + 0.001, + 0.001, + 0.001 + ], + "translate": + [ + 0.0, + 0.0, + 0.0 + ] + } +} \ No newline at end of file diff --git a/tests/data/material/mt-1-triangulated.json b/tests/data/material/mt-1-triangulated.json index 323a483..bc95690 100644 --- a/tests/data/material/mt-1-triangulated.json +++ b/tests/data/material/mt-1-triangulated.json @@ -1 +1 @@ -{"type":"CityJSON","version":"1.0","CityObjects":{"NL.IMBAG.Pand.0518100001755018":{"attributes":{"dak_type":"horizontal","data_area":0.6550000309944153,"data_coverage":0.07970529049634933,"documentnummer":"VMG20179462","geconstateerd":false,"gid":1080982,"h_dak_50p":2.0320000648498535,"h_dak_70p":2.0360000133514404,"h_dak_max":2.059999942779541,"h_dak_min":1.9859999418258667,"h_maaiveld":-0.48899999260902405,"identificatie":"NL.IMBAG.Pand.0518100001755018","kas_warenhuis":false,"lod11_replace":false,"ondergronds_type":"above ground","oorspronkelijkbouwjaar":1980,"pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","reconstruction_skipped":false,"rmse_lod12":0.025784239172935486,"rmse_lod13":0.04050220176577568,"rmse_lod22":0.019489331170916557,"rn":1,"status":"Pand in gebruik","t_run":40.32099914550781,"val3dity_codes_lod12":"[]","val3dity_codes_lod13":"[]","val3dity_codes_lod22":"[]","voorkomenidentificatie":1},"children":["NL.IMBAG.Pand.0518100001755018-0"],"geometry":[],"type":"Building"},"NL.IMBAG.Pand.0518100001755018-0":{"attributes":{},"geometry":[{"boundaries":[[[[2,3,0]],[[0,1,2]],[[0,5,4]],[[4,1,0]],[[3,6,5]],[[5,0,3]],[[1,4,7]],[[7,2,1]],[[2,7,6]],[[6,3,2]],[[4,5,6]],[[6,7,4]]]],"lod":1.2,"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"on_footprint_edge":true,"type":"WallSurface"},{"on_footprint_edge":false,"type":"WallSurface"}],"values":[[0,0,2,2,2,2,2,2,2,2,1,1]]},"type":"Solid","material":{"default":{"value":0}}}],"parents":["NL.IMBAG.Pand.0518100001755018"],"type":"BuildingPart"}},"appearance":{"materials":[{"name":"wall","ambientIntensity":0.4,"diffuseColor":[0.1,0.1,0.9],"emissiveColor":[0.1,0.1,0.9],"specularColor":[0.9,0.1,0.75],"shininess":0.0,"transparency":0.5,"isSmooth":true}]},"vertices":[[339152,-40239,-489],[336150,-39020,-489],[337104,-36670,-489],[340106,-37889,-489],[336150,-39020,2009],[339152,-40239,2009],[340106,-37889,2009],[337104,-36670,2009]],"transform":{"scale":[0.001,0.001,0.001],"translate":[76364.556,451840.245,0.0]},"metadata":{"geographicalExtent":[76700.70599999999,451800.006,-0.489,76704.662,451803.575,2.009],"fileIdentifier":"mt-1-triangulate.json"}} \ No newline at end of file +{"type":"CityJSON","version":"1.1","CityObjects":{"NL.IMBAG.Pand.0518100001755018":{"attributes":{"dak_type":"horizontal","data_area":0.6550000309944153,"data_coverage":0.07970529049634933,"documentnummer":"VMG20179462","geconstateerd":false,"gid":1080982,"h_dak_50p":2.0320000648498535,"h_dak_70p":2.0360000133514404,"h_dak_max":2.059999942779541,"h_dak_min":1.9859999418258667,"h_maaiveld":-0.48899999260902405,"identificatie":"NL.IMBAG.Pand.0518100001755018","kas_warenhuis":false,"lod11_replace":false,"ondergronds_type":"above ground","oorspronkelijkbouwjaar":1980,"pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","reconstruction_skipped":false,"rmse_lod12":0.025784239172935486,"rmse_lod13":0.04050220176577568,"rmse_lod22":0.019489331170916557,"rn":1,"status":"Pand in gebruik","t_run":40.32099914550781,"val3dity_codes_lod12":"[]","val3dity_codes_lod13":"[]","val3dity_codes_lod22":"[]","voorkomenidentificatie":1},"children":["NL.IMBAG.Pand.0518100001755018-0"],"type":"Building"},"NL.IMBAG.Pand.0518100001755018-0":{"attributes":{},"geometry":[{"boundaries":[[[[2,3,0]],[[0,1,2]],[[0,5,4]],[[4,1,0]],[[3,6,5]],[[5,0,3]],[[1,4,7]],[[7,2,1]],[[2,7,6]],[[6,3,2]],[[4,5,6]],[[6,7,4]]]],"lod":"1.2","semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"on_footprint_edge":true,"type":"WallSurface"},{"on_footprint_edge":false,"type":"WallSurface"}],"values":[[0,0,2,2,2,2,2,2,2,2,1,1]]},"type":"Solid","material":{"default":{"value":0}}}],"parents":["NL.IMBAG.Pand.0518100001755018"],"type":"BuildingPart"}},"appearance":{"materials":[{"name":"wall","ambientIntensity":0.4,"diffuseColor":[0.1,0.1,0.9],"emissiveColor":[0.1,0.1,0.9],"specularColor":[0.9,0.1,0.75],"shininess":0.0,"transparency":0.5,"isSmooth":true}]},"vertices":[[339152,-40239,-489],[336150,-39020,-489],[337104,-36670,-489],[340106,-37889,-489],[336150,-39020,2009],[339152,-40239,2009],[340106,-37889,2009],[337104,-36670,2009]],"transform":{"scale":[0.001,0.001,0.001],"translate":[76364.556,451840.245,0.0]},"metadata":{"geographicalExtent":[76700.70599999999,451800.006,-0.489,76704.662,451803.575,2.009]},"+metadata-extended":{"fileIdentifier":"mt-1-triangulate.json"},"extensions":{"MetadataExtended":{"url":"https://raw.githubusercontent.com/cityjson/metadata-extended/0.5/metadata-extended.ext.json","version":"0.5"}}} \ No newline at end of file diff --git a/tests/data/material/mt-1.json b/tests/data/material/mt-1.json index 0f40af9..cdb20e4 100644 --- a/tests/data/material/mt-1.json +++ b/tests/data/material/mt-1.json @@ -1,221 +1 @@ -{ - "type": "CityJSON", - "version": "1.0", - "CityObjects": { - "NL.IMBAG.Pand.0518100001755018": { - "attributes": { - "dak_type": "horizontal", - "data_area": 0.6550000309944153, - "data_coverage": 0.07970529049634933, - "documentnummer": "VMG20179462", - "geconstateerd": false, - "gid": 1080982, - "h_dak_50p": 2.0320000648498535, - "h_dak_70p": 2.0360000133514404, - "h_dak_max": 2.059999942779541, - "h_dak_min": 1.9859999418258667, - "h_maaiveld": -0.48899999260902405, - "identificatie": "NL.IMBAG.Pand.0518100001755018", - "kas_warenhuis": false, - "lod11_replace": false, - "ondergronds_type": "above ground", - "oorspronkelijkbouwjaar": 1980, - "pw_actueel": "yes", - "pw_bron": "ahn3", - "reconstructie_methode": "tudelft3d-geoflow", - "reconstruction_skipped": false, - "rmse_lod12": 0.025784239172935486, - "rmse_lod13": 0.04050220176577568, - "rmse_lod22": 0.019489331170916557, - "rn": 1, - "status": "Pand in gebruik", - "t_run": 40.32099914550781, - "val3dity_codes_lod12": "[]", - "val3dity_codes_lod13": "[]", - "val3dity_codes_lod22": "[]", - "voorkomenidentificatie": 1 - }, - "children": [ - "NL.IMBAG.Pand.0518100001755018-0" - ], - "geometry": [], - "type": "Building" - }, - "NL.IMBAG.Pand.0518100001755018-0": { - "attributes": {}, - "geometry": [ - { - "boundaries": [ - [ - [ - [ - 0, - 1, - 2, - 3 - ] - ], - [ - [ - 4, - 1, - 0, - 5 - ] - ], - [ - [ - 5, - 0, - 3, - 6 - ] - ], - [ - [ - 7, - 2, - 1, - 4 - ] - ], - [ - [ - 6, - 3, - 2, - 7 - ] - ], - [ - [ - 6, - 7, - 4, - 5 - ] - ] - ] - ], - "lod": 1.2, - "semantics": { - "surfaces": [ - { - "type": "GroundSurface" - }, - { - "type": "RoofSurface" - }, - { - "on_footprint_edge": true, - "type": "WallSurface" - }, - { - "on_footprint_edge": false, - "type": "WallSurface" - } - ], - "values": [ - [ - 0, - 2, - 2, - 2, - 2, - 1 - ] - ] - }, - "type": "Solid", - "material": { - "default": { - "value": 0 - } - } - } - ], - "parents": [ - "NL.IMBAG.Pand.0518100001755018" - ], - "type": "BuildingPart" - } - }, - "appearance": { - "materials": [ - { - "name": "wall", - "ambientIntensity": 0.4000, - "diffuseColor": [0.1000, 0.1000, 0.9000], - "emissiveColor": [0.1000, 0.1000, 0.9000], - "specularColor": [0.9000, 0.1000, 0.7500], - "shininess": 0.0, - "transparency": 0.5, - "isSmooth": true - } - ] - }, - "vertices": [ - [ - 339152, - -40239, - -489 - ], - [ - 336150, - -39020, - -489 - ], - [ - 337104, - -36670, - -489 - ], - [ - 340106, - -37889, - -489 - ], - [ - 336150, - -39020, - 2009 - ], - [ - 339152, - -40239, - 2009 - ], - [ - 340106, - -37889, - 2009 - ], - [ - 337104, - -36670, - 2009 - ] - ], - "transform": { - "scale": [ - 0.001, - 0.001, - 0.001 - ], - "translate": [ - 76364.556, - 451840.245, - 0.0 - ] - }, - "metadata": { - "geographicalExtent": [ - 76700.70599999999, - 451800.006, - -0.489, - 76704.662, - 451803.575, - 2.009 - ] - } -} \ No newline at end of file +{"type":"CityJSON","version":"1.1","CityObjects":{"NL.IMBAG.Pand.0518100001755018":{"attributes":{"dak_type":"horizontal","data_area":0.6550000309944153,"data_coverage":0.07970529049634933,"documentnummer":"VMG20179462","geconstateerd":false,"gid":1080982,"h_dak_50p":2.0320000648498535,"h_dak_70p":2.0360000133514404,"h_dak_max":2.059999942779541,"h_dak_min":1.9859999418258667,"h_maaiveld":-0.48899999260902405,"identificatie":"NL.IMBAG.Pand.0518100001755018","kas_warenhuis":false,"lod11_replace":false,"ondergronds_type":"above ground","oorspronkelijkbouwjaar":1980,"pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","reconstruction_skipped":false,"rmse_lod12":0.025784239172935486,"rmse_lod13":0.04050220176577568,"rmse_lod22":0.019489331170916557,"rn":1,"status":"Pand in gebruik","t_run":40.32099914550781,"val3dity_codes_lod12":"[]","val3dity_codes_lod13":"[]","val3dity_codes_lod22":"[]","voorkomenidentificatie":1},"children":["NL.IMBAG.Pand.0518100001755018-0"],"type":"Building"},"NL.IMBAG.Pand.0518100001755018-0":{"attributes":{},"geometry":[{"boundaries":[[[[0,1,2,3]],[[4,1,0,5]],[[5,0,3,6]],[[7,2,1,4]],[[6,3,2,7]],[[6,7,4,5]]]],"lod":"1.2","semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"on_footprint_edge":true,"type":"WallSurface"},{"on_footprint_edge":false,"type":"WallSurface"}],"values":[[0,2,2,2,2,1]]},"type":"Solid","material":{"default":{"value":0}}}],"parents":["NL.IMBAG.Pand.0518100001755018"],"type":"BuildingPart"}},"appearance":{"materials":[{"name":"wall","ambientIntensity":0.4,"diffuseColor":[0.1,0.1,0.9],"emissiveColor":[0.1,0.1,0.9],"specularColor":[0.9,0.1,0.75],"shininess":0.0,"transparency":0.5,"isSmooth":true}]},"vertices":[[339152,-40239,-489],[336150,-39020,-489],[337104,-36670,-489],[340106,-37889,-489],[336150,-39020,2009],[339152,-40239,2009],[340106,-37889,2009],[337104,-36670,2009]],"transform":{"scale":[0.001,0.001,0.001],"translate":[76364.556,451840.245,0.0]},"metadata":{"geographicalExtent":[76700.70599999999,451800.006,-0.489,76704.662,451803.575,2.009]}} \ No newline at end of file diff --git a/tests/data/material/mt-2-triangulated.json b/tests/data/material/mt-2-triangulated.json index 87010fb..344a7a2 100644 --- a/tests/data/material/mt-2-triangulated.json +++ b/tests/data/material/mt-2-triangulated.json @@ -1 +1 @@ -{"type":"CityJSON","version":"1.0","CityObjects":{"NL.IMBAG.Pand.0518100001755019":{"attributes":{"dak_type":"horizontal","data_area":2.1875,"data_coverage":0.2661913335323334,"documentnummer":"VMG20179462","geconstateerd":false,"gid":1080983,"h_dak_50p":2.0309998989105225,"h_dak_70p":2.049999952316284,"h_dak_max":2.1110000610351562,"h_dak_min":1.9889999628067017,"h_maaiveld":-0.4860000014305115,"identificatie":"NL.IMBAG.Pand.0518100001755019","kas_warenhuis":false,"lod11_replace":false,"ondergronds_type":"above ground","oorspronkelijkbouwjaar":1980,"pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","reconstruction_skipped":false,"rmse_lod12":0.0315316803753376,"rmse_lod13":0.031793348491191864,"rmse_lod22":0.027490859851241112,"rn":1,"status":"Pand in gebruik","t_run":41.638999938964844,"val3dity_codes_lod12":"[]","val3dity_codes_lod13":"[]","val3dity_codes_lod22":"[]","voorkomenidentificatie":1},"children":["NL.IMBAG.Pand.0518100001755019-0"],"geometry":[],"type":"Building"},"NL.IMBAG.Pand.0518100001755019-0":{"attributes":{},"geometry":[{"boundaries":[[[[2,3,0]],[[0,1,2]],[[0,5,4]],[[4,1,0]],[[3,6,5]],[[5,0,3]],[[1,4,7]],[[7,2,1]],[[2,7,6]],[[6,3,2]],[[4,5,6]],[[6,7,4]]]],"lod":1.2,"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"on_footprint_edge":true,"type":"WallSurface"},{"on_footprint_edge":false,"type":"WallSurface"}],"values":[[0,0,2,2,2,2,2,2,2,2,1,1]]},"type":"Solid","material":{"color":{"values":[[0,0,0,0,0,0,0,0,0,0,0,0]]}}}],"parents":["NL.IMBAG.Pand.0518100001755019"],"type":"BuildingPart"}},"appearance":{"materials":[{"name":"roofandground","ambientIntensity":0.2,"diffuseColor":[0.9,0.1,0.75],"emissiveColor":[0.9,0.1,0.75],"specularColor":[0.9,0.1,0.75],"shininess":0.2,"transparency":0.5,"isSmooth":false}]},"vertices":[[338198,-42589,-486],[335196,-41370,-486],[336150,-39020,-486],[339152,-40239,-486],[335196,-41370,2041],[338198,-42589,2041],[339152,-40239,2041],[336150,-39020,2041]],"transform":{"scale":[0.001,0.001,0.001],"translate":[76364.556,451840.245,0.0]},"metadata":{"geographicalExtent":[76699.752,451797.656,-0.486,76703.708,451801.225,2.041],"fileIdentifier":"mt-2-triangulated.json"}} \ No newline at end of file +{"type":"CityJSON","version":"1.1","CityObjects":{"NL.IMBAG.Pand.0518100001755019":{"attributes":{"dak_type":"horizontal","data_area":2.1875,"data_coverage":0.2661913335323334,"documentnummer":"VMG20179462","geconstateerd":false,"gid":1080983,"h_dak_50p":2.0309998989105225,"h_dak_70p":2.049999952316284,"h_dak_max":2.1110000610351562,"h_dak_min":1.9889999628067017,"h_maaiveld":-0.4860000014305115,"identificatie":"NL.IMBAG.Pand.0518100001755019","kas_warenhuis":false,"lod11_replace":false,"ondergronds_type":"above ground","oorspronkelijkbouwjaar":1980,"pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","reconstruction_skipped":false,"rmse_lod12":0.0315316803753376,"rmse_lod13":0.031793348491191864,"rmse_lod22":0.027490859851241112,"rn":1,"status":"Pand in gebruik","t_run":41.638999938964844,"val3dity_codes_lod12":"[]","val3dity_codes_lod13":"[]","val3dity_codes_lod22":"[]","voorkomenidentificatie":1},"children":["NL.IMBAG.Pand.0518100001755019-0"],"type":"Building"},"NL.IMBAG.Pand.0518100001755019-0":{"attributes":{},"geometry":[{"boundaries":[[[[2,3,0]],[[0,1,2]],[[0,5,4]],[[4,1,0]],[[3,6,5]],[[5,0,3]],[[1,4,7]],[[7,2,1]],[[2,7,6]],[[6,3,2]],[[4,5,6]],[[6,7,4]]]],"lod":"1.2","semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"on_footprint_edge":true,"type":"WallSurface"},{"on_footprint_edge":false,"type":"WallSurface"}],"values":[[0,0,2,2,2,2,2,2,2,2,1,1]]},"type":"Solid","material":{"color":{"values":[[0,0,0,0,0,0,0,0,0,0,0,0]]}}}],"parents":["NL.IMBAG.Pand.0518100001755019"],"type":"BuildingPart"}},"appearance":{"materials":[{"name":"roofandground","ambientIntensity":0.2,"diffuseColor":[0.9,0.1,0.75],"emissiveColor":[0.9,0.1,0.75],"specularColor":[0.9,0.1,0.75],"shininess":0.2,"transparency":0.5,"isSmooth":false}]},"vertices":[[338198,-42589,-486],[335196,-41370,-486],[336150,-39020,-486],[339152,-40239,-486],[335196,-41370,2041],[338198,-42589,2041],[339152,-40239,2041],[336150,-39020,2041]],"transform":{"scale":[0.001,0.001,0.001],"translate":[76364.556,451840.245,0.0]},"metadata":{"geographicalExtent":[76699.752,451797.656,-0.486,76703.708,451801.225,2.041]},"+metadata-extended":{"fileIdentifier":"mt-2-triangulated.json"},"extensions":{"MetadataExtended":{"url":"https://raw.githubusercontent.com/cityjson/metadata-extended/0.5/metadata-extended.ext.json","version":"0.5"}}} \ No newline at end of file diff --git a/tests/data/material/mt-2.json b/tests/data/material/mt-2.json index 69bec0a..72c6809 100644 --- a/tests/data/material/mt-2.json +++ b/tests/data/material/mt-2.json @@ -1,230 +1 @@ -{ - "type": "CityJSON", - "version": "1.0", - "CityObjects": { - "NL.IMBAG.Pand.0518100001755019": { - "attributes": { - "dak_type": "horizontal", - "data_area": 2.1875, - "data_coverage": 0.2661913335323334, - "documentnummer": "VMG20179462", - "geconstateerd": false, - "gid": 1080983, - "h_dak_50p": 2.0309998989105225, - "h_dak_70p": 2.049999952316284, - "h_dak_max": 2.1110000610351562, - "h_dak_min": 1.9889999628067017, - "h_maaiveld": -0.4860000014305115, - "identificatie": "NL.IMBAG.Pand.0518100001755019", - "kas_warenhuis": false, - "lod11_replace": false, - "ondergronds_type": "above ground", - "oorspronkelijkbouwjaar": 1980, - "pw_actueel": "yes", - "pw_bron": "ahn3", - "reconstructie_methode": "tudelft3d-geoflow", - "reconstruction_skipped": false, - "rmse_lod12": 0.0315316803753376, - "rmse_lod13": 0.031793348491191864, - "rmse_lod22": 0.027490859851241112, - "rn": 1, - "status": "Pand in gebruik", - "t_run": 41.638999938964844, - "val3dity_codes_lod12": "[]", - "val3dity_codes_lod13": "[]", - "val3dity_codes_lod22": "[]", - "voorkomenidentificatie": 1 - }, - "children": [ - "NL.IMBAG.Pand.0518100001755019-0" - ], - "geometry": [], - "type": "Building" - }, - "NL.IMBAG.Pand.0518100001755019-0": { - "attributes": {}, - "geometry": [ - { - "boundaries": [ - [ - [ - [ - 0, - 1, - 2, - 3 - ] - ], - [ - [ - 4, - 1, - 0, - 5 - ] - ], - [ - [ - 5, - 0, - 3, - 6 - ] - ], - [ - [ - 7, - 2, - 1, - 4 - ] - ], - [ - [ - 6, - 3, - 2, - 7 - ] - ], - [ - [ - 6, - 7, - 4, - 5 - ] - ] - ] - ], - "lod": 1.2, - "semantics": { - "surfaces": [ - { - "type": "GroundSurface" - }, - { - "type": "RoofSurface" - }, - { - "on_footprint_edge": true, - "type": "WallSurface" - }, - { - "on_footprint_edge": false, - "type": "WallSurface" - } - ], - "values": [ - [ - 0, - 2, - 2, - 2, - 2, - 1 - ] - ] - }, - "type": "Solid", - "material": { - "color": { - "values": [ - [ - 0, - 0, - 0, - 0, - 0, - 0 - ] - ] - } - } - } - ], - "parents": [ - "NL.IMBAG.Pand.0518100001755019" - ], - "type": "BuildingPart" - } - }, - "appearance": { - "materials": [ - { - "name": "roofandground", - "ambientIntensity": 0.2000, - "diffuseColor": [0.9000, 0.1000, 0.7500], - "emissiveColor": [0.9000, 0.1000, 0.7500], - "specularColor": [0.9000, 0.1000, 0.7500], - "shininess": 0.2, - "transparency": 0.5, - "isSmooth": false - } - ] - }, - "vertices": [ - [ - 338198, - -42589, - -486 - ], - [ - 335196, - -41370, - -486 - ], - [ - 336150, - -39020, - -486 - ], - [ - 339152, - -40239, - -486 - ], - [ - 335196, - -41370, - 2041 - ], - [ - 338198, - -42589, - 2041 - ], - [ - 339152, - -40239, - 2041 - ], - [ - 336150, - -39020, - 2041 - ] - ], - "transform": { - "scale": [ - 0.001, - 0.001, - 0.001 - ], - "translate": [ - 76364.556, - 451840.245, - 0.0 - ] - }, - "metadata": { - "geographicalExtent": [ - 76699.752, - 451797.656, - -0.486, - 76703.708, - 451801.225, - 2.041 - ] - } -} \ No newline at end of file +{"type":"CityJSON","version":"1.1","CityObjects":{"NL.IMBAG.Pand.0518100001755019":{"attributes":{"dak_type":"horizontal","data_area":2.1875,"data_coverage":0.2661913335323334,"documentnummer":"VMG20179462","geconstateerd":false,"gid":1080983,"h_dak_50p":2.0309998989105225,"h_dak_70p":2.049999952316284,"h_dak_max":2.1110000610351562,"h_dak_min":1.9889999628067017,"h_maaiveld":-0.4860000014305115,"identificatie":"NL.IMBAG.Pand.0518100001755019","kas_warenhuis":false,"lod11_replace":false,"ondergronds_type":"above ground","oorspronkelijkbouwjaar":1980,"pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","reconstruction_skipped":false,"rmse_lod12":0.0315316803753376,"rmse_lod13":0.031793348491191864,"rmse_lod22":0.027490859851241112,"rn":1,"status":"Pand in gebruik","t_run":41.638999938964844,"val3dity_codes_lod12":"[]","val3dity_codes_lod13":"[]","val3dity_codes_lod22":"[]","voorkomenidentificatie":1},"children":["NL.IMBAG.Pand.0518100001755019-0"],"type":"Building"},"NL.IMBAG.Pand.0518100001755019-0":{"attributes":{},"geometry":[{"boundaries":[[[[0,1,2,3]],[[4,1,0,5]],[[5,0,3,6]],[[7,2,1,4]],[[6,3,2,7]],[[6,7,4,5]]]],"lod":"1.2","semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"on_footprint_edge":true,"type":"WallSurface"},{"on_footprint_edge":false,"type":"WallSurface"}],"values":[[0,2,2,2,2,1]]},"type":"Solid","material":{"color":{"values":[[0,0,0,0,0,0]]}}}],"parents":["NL.IMBAG.Pand.0518100001755019"],"type":"BuildingPart"}},"appearance":{"materials":[{"name":"roofandground","ambientIntensity":0.2,"diffuseColor":[0.9,0.1,0.75],"emissiveColor":[0.9,0.1,0.75],"specularColor":[0.9,0.1,0.75],"shininess":0.2,"transparency":0.5,"isSmooth":false}]},"vertices":[[338198,-42589,-486],[335196,-41370,-486],[336150,-39020,-486],[339152,-40239,-486],[335196,-41370,2041],[338198,-42589,2041],[339152,-40239,2041],[336150,-39020,2041]],"transform":{"scale":[0.001,0.001,0.001],"translate":[76364.556,451840.245,0.0]},"metadata":{"geographicalExtent":[76699.752,451797.656,-0.486,76703.708,451801.225,2.041]}} \ No newline at end of file diff --git a/tests/data/minimal.json b/tests/data/minimal.json index fa13181..95269a6 100644 --- a/tests/data/minimal.json +++ b/tests/data/minimal.json @@ -1 +1,23 @@ -{"type":"CityJSON","version":"1.1","CityObjects":{},"vertices":[],"transform":{"scale":[0.001,0.001,0.001],"translate":[9000000000.0,9000000000.0,9000000000.0]},"metadata":{"geographicalExtent":[0,0,0,0,0,0],"citymodelIdentifier":"95aa0dd4-1b84-4053-8f8d-9499819d4173","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"minimal.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{},"thematicModels":[]}} \ No newline at end of file +{ + "type": "CityJSON", + "version": "1.1", + "CityObjects": + {}, + "vertices": + [], + "transform": + { + "scale": + [ + 0.001, + 0.001, + 0.001 + ], + "translate": + [ + 9000000000.0, + 9000000000.0, + 9000000000.0 + ] + } +} \ No newline at end of file diff --git a/tests/data/multi_lod.json b/tests/data/multi_lod.json index 704657e..2552f3d 100644 --- a/tests/data/multi_lod.json +++ b/tests/data/multi_lod.json @@ -1 +1,8077 @@ -{"type":"CityJSON","version":"1.1","CityObjects":{"6751773":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[0,1,2]],[[2,1,3]],[[3,1,4]],[[5,1,6]],[[6,1,0]],[[7,3,8]],[[8,3,4]],[[6,0,9]],[[9,0,2]],[[8,4,5]],[[5,4,1]],[[9,2,7]],[[7,2,3]],[[9,7,5]],[[6,9,5]],[[5,7,8]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[0,1,2]],[[3,10,4]],[[4,10,11]],[[2,1,10]],[[10,1,11]],[[12,13,14]],[[14,13,1]],[[1,13,11]],[[14,1,15]],[[15,1,0]],[[16,17,12]],[[12,17,13]],[[18,3,19]],[[19,3,4]],[[20,2,17]],[[16,20,17]],[[17,2,10]],[[15,0,20]],[[20,0,2]],[[19,4,13]],[[13,4,11]],[[17,10,18]],[[18,10,3]],[[14,15,20]],[[12,14,16]],[[16,14,20]],[[17,18,19]],[[13,17,19]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[0,21,2]],[[4,10,11]],[[10,22,1]],[[3,10,4]],[[22,21,1]],[[2,21,22]],[[10,1,11]],[[23,24,25]],[[25,24,1]],[[1,24,11]],[[25,1,21]],[[26,25,21]],[[26,21,27]],[[27,21,0]],[[28,29,24]],[[23,28,24]],[[30,3,4]],[[31,30,4]],[[32,22,29]],[[28,32,29]],[[29,22,10]],[[27,0,2]],[[33,27,2]],[[33,2,22]],[[32,33,22]],[[31,4,11]],[[24,31,11]],[[29,10,30]],[[30,10,3]],[[33,32,26]],[[27,33,26]],[[25,28,23]],[[26,32,25]],[[25,32,28]],[[29,30,31]],[[24,29,31]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"},{"type":"WallSurface"}],"values":[[0,0,0,0,0,0,0,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1]]}}],"attributes":{"fid":730210,"identificatie":"NL.IMBAG.Pand.0796100000236261","oorspronkelijk_bouwjaar":1965,"status":"Pand in gebruik","geconstateerd":false,"documentdatum":"2019-01-09","documentnummer":"8618264","voorkomenidentificatie":2,"begingeldigheid":"2019-01-09","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2019-01-09T16:00:26.607000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":5.254,"dak_type":"slanted","pw_datum":"2016-12-01","pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}},"2128302":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[34,35,36]],[[34,37,35]],[[34,36,38]],[[39,37,40]],[[40,37,34]],[[40,34,41]],[[41,34,38]],[[42,36,43]],[[43,36,35]],[[41,38,42]],[[42,38,36]],[[43,35,39]],[[39,35,37]],[[40,43,39]],[[41,42,40]],[[40,42,43]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[34,35,36]],[[34,37,35]],[[34,36,38]],[[44,37,45]],[[45,37,34]],[[45,34,46]],[[46,34,38]],[[47,36,48]],[[48,36,35]],[[46,38,47]],[[47,38,36]],[[48,35,44]],[[44,35,37]],[[45,47,48]],[[45,46,47]],[[45,48,44]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[34,35,49]],[[34,37,35]],[[34,49,50]],[[49,36,50]],[[36,38,50]],[[51,37,34]],[[52,51,34]],[[52,34,50]],[[53,52,50]],[[54,49,55]],[[55,49,35]],[[56,38,36]],[[57,56,36]],[[53,50,56]],[[56,50,38]],[[57,36,49]],[[54,57,49]],[[55,35,37]],[[51,55,37]],[[57,54,53]],[[56,57,53]],[[55,51,52]],[[54,52,53]],[[54,55,52]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"}],"values":[[0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1]]}}],"attributes":{"fid":13745293,"identificatie":"NL.IMBAG.Pand.0796100000215775","oorspronkelijk_bouwjaar":1963,"status":"Pand in gebruik","geconstateerd":false,"documentdatum":"2020-11-13","documentnummer":"NL-HtGH-VERSEON-10534131","voorkomenidentificatie":2,"begingeldigheid":"2020-11-13","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2020-11-13T16:07:01.477000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":4.706,"dak_type":"slanted","pw_datum":"2016-12-01","pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}},"596872":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[58,59,60]],[[61,58,62]],[[61,63,58]],[[58,63,59]],[[64,58,65]],[[65,58,60]],[[66,63,67]],[[67,63,61]],[[65,60,68]],[[68,60,59]],[[69,62,64]],[[64,62,58]],[[68,59,66]],[[66,59,63]],[[67,61,69]],[[69,61,62]],[[68,66,64]],[[65,68,64]],[[69,64,67]],[[64,66,67]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[58,59,60]],[[61,58,62]],[[61,63,58]],[[58,63,59]],[[70,58,71]],[[71,58,60]],[[72,63,73]],[[73,63,61]],[[71,60,74]],[[74,60,59]],[[75,62,70]],[[70,62,58]],[[74,59,72]],[[72,59,63]],[[73,61,75]],[[75,61,62]],[[70,73,75]],[[74,70,71]],[[74,72,70]],[[70,72,73]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[63,59,76]],[[58,76,60]],[[77,63,76]],[[77,76,58]],[[78,58,79]],[[61,78,62]],[[77,58,78]],[[78,79,62]],[[80,58,60]],[[81,80,60]],[[82,63,77]],[[83,84,82]],[[82,84,63]],[[85,86,87]],[[87,86,59]],[[59,86,76]],[[82,77,78]],[[88,82,78]],[[89,79,80]],[[80,79,58]],[[87,59,84]],[[84,59,63]],[[83,82,86]],[[85,83,86]],[[81,60,86]],[[86,60,76]],[[88,78,90]],[[90,78,61]],[[90,61,91]],[[91,61,62]],[[91,62,79]],[[89,91,79]],[[88,89,80]],[[86,80,81]],[[82,88,80]],[[82,80,86]],[[90,91,88]],[[88,91,89]],[[87,84,85]],[[85,84,83]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"},{"type":"WallSurface"}],"values":[[0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1]]}}],"attributes":{"fid":8759559,"identificatie":"NL.IMBAG.Pand.0796100001008481","oorspronkelijk_bouwjaar":2017,"status":"Pand in gebruik","geconstateerd":false,"documentdatum":"2018-02-08","documentnummer":"7704563","voorkomenidentificatie":2,"begingeldigheid":"2018-02-08","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2018-02-08T10:01:08.773000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":4.691,"dak_type":"slanted","pw_datum":"2016-12-01","pw_actueel":"uncertain","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}},"408703":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[92,93,94]],[[95,96,97]],[[96,94,93]],[[97,96,93]],[[98,94,96]],[[99,98,100]],[[100,98,96]],[[101,92,102]],[[102,92,94]],[[103,97,104]],[[104,97,93]],[[104,93,101]],[[101,93,92]],[[102,94,99]],[[99,94,98]],[[105,95,103]],[[103,95,97]],[[100,96,105]],[[105,96,95]],[[99,100,102]],[[104,100,103]],[[103,100,105]],[[104,102,100]],[[101,102,104]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[92,93,94]],[[95,96,97]],[[96,94,93]],[[97,96,93]],[[98,94,96]],[[106,98,107]],[[107,98,96]],[[108,92,109]],[[109,92,94]],[[110,97,111]],[[111,97,93]],[[111,93,108]],[[108,93,92]],[[109,94,106]],[[106,94,98]],[[112,95,110]],[[110,95,97]],[[107,96,112]],[[112,96,95]],[[106,107,109]],[[111,107,110]],[[110,107,112]],[[111,109,107]],[[108,109,111]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[92,93,94]],[[95,96,97]],[[96,94,93]],[[97,96,93]],[[98,94,96]],[[113,98,96]],[[114,113,96]],[[115,92,116]],[[116,92,94]],[[117,97,118]],[[118,97,93]],[[118,93,115]],[[115,93,92]],[[116,94,98]],[[113,116,98]],[[119,95,97]],[[117,119,97]],[[114,96,95]],[[119,114,95]],[[113,114,116]],[[118,114,117]],[[117,114,119]],[[118,116,114]],[[115,116,118]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"}],"values":[[0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1]]}}],"attributes":{"fid":6348664,"identificatie":"NL.IMBAG.Pand.0796100000210250","oorspronkelijk_bouwjaar":1990,"status":"Pand in gebruik","geconstateerd":false,"documentdatum":"2010-04-20","documentnummer":"10.415","voorkomenidentificatie":1,"begingeldigheid":"2010-04-20","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2010-11-10T01:00:50.071000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":5.691,"dak_type":"single horizontal","pw_datum":"2016-12-01","pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}},"2499572":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[120,121,122]],[[123,120,122]],[[124,120,125]],[[125,120,123]],[[126,122,127]],[[127,122,121]],[[127,121,124]],[[124,121,120]],[[125,123,126]],[[126,123,122]],[[125,126,124]],[[124,126,127]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[120,121,122]],[[123,120,122]],[[128,120,129]],[[129,120,123]],[[130,122,131]],[[131,122,121]],[[131,121,128]],[[128,121,120]],[[129,123,130]],[[130,123,122]],[[129,130,128]],[[128,130,131]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[120,132,123]],[[122,133,121]],[[133,123,132]],[[121,133,132]],[[134,133,135]],[[135,133,122]],[[136,132,137]],[[137,132,120]],[[137,120,138]],[[138,120,123]],[[135,122,139]],[[139,122,121]],[[139,121,132]],[[136,139,132]],[[138,123,133]],[[134,138,133]],[[134,135,139]],[[136,134,139]],[[134,136,137]],[[138,134,137]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"}],"values":[[0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1]]}}],"attributes":{"fid":14518465,"identificatie":"NL.IMBAG.Pand.0796100000226180","oorspronkelijk_bouwjaar":1948,"status":"Pand in gebruik","geconstateerd":false,"documentdatum":"2009-10-06","documentnummer":"09.0875","voorkomenidentificatie":1,"begingeldigheid":"2009-10-06","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2010-11-10T00:01:37.012000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":4.611,"dak_type":"slanted","pw_datum":"2016-12-01","pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}},"3374155":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[140,141,142]],[[143,140,142]],[[144,143,145]],[[145,143,142]],[[146,141,147]],[[147,141,140]],[[147,140,144]],[[144,140,143]],[[145,142,146]],[[146,142,141]],[[147,144,145]],[[146,147,145]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[140,141,148]],[[143,149,142]],[[148,141,149]],[[148,149,143]],[[150,143,151]],[[151,143,142]],[[152,141,153]],[[153,141,140]],[[154,155,156]],[[156,155,157]],[[153,140,155]],[[154,153,155]],[[155,140,148]],[[156,157,152]],[[152,157,141]],[[141,157,149]],[[155,148,150]],[[150,148,143]],[[151,142,157]],[[157,142,149]],[[151,157,150]],[[150,157,155]],[[153,154,152]],[[152,154,156]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[140,141,158]],[[148,158,149]],[[159,140,158]],[[143,149,142]],[[148,149,143]],[[159,158,148]],[[160,159,161]],[[162,160,161]],[[161,159,148]],[[163,164,165]],[[165,164,158]],[[158,164,149]],[[166,143,142]],[[167,166,142]],[[168,141,169]],[[169,141,140]],[[162,161,164]],[[163,162,164]],[[170,171,172]],[[173,174,172]],[[169,140,159]],[[160,169,159]],[[165,158,168]],[[168,158,141]],[[175,176,170]],[[170,176,171]],[[177,178,174]],[[173,177,174]],[[161,148,166]],[[166,148,143]],[[167,142,149]],[[164,167,149]],[[179,180,181]],[[181,180,182]],[[181,182,177]],[[177,182,178]],[[183,184,179]],[[179,184,180]],[[176,175,185]],[[184,183,185]],[[167,164,166]],[[166,164,161]],[[165,168,170]],[[170,168,175]],[[175,168,169]],[[175,169,160]],[[172,165,170]],[[162,182,180]],[[178,163,174]],[[172,174,165]],[[162,178,182]],[[174,163,165]],[[162,163,178]],[[180,184,185]],[[160,180,185]],[[160,185,175]],[[162,180,160]],[[171,176,185]],[[172,171,183]],[[183,171,185]],[[181,183,179]],[[172,183,181]],[[173,181,177]],[[172,181,173]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"},{"type":"WallSurface"}],"values":[[0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,3,3,3,3,2,2,2,2,3,3,3,3,2,2,2,2,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]}}],"attributes":{"fid":14026539,"identificatie":"NL.IMBAG.Pand.0796100000256407","oorspronkelijk_bouwjaar":1965,"status":"Pand in gebruik","geconstateerd":false,"documentdatum":"2014-03-10","documentnummer":"3749388","voorkomenidentificatie":4,"begingeldigheid":"2014-03-10","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2014-03-18T10:34:14.729000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":5.194,"dak_type":"slanted","pw_datum":"2016-12-01","pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}},"7115146":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[186,187,188]],[[189,186,188]],[[190,186,191]],[[191,186,189]],[[191,189,192]],[[192,189,188]],[[193,187,190]],[[190,187,186]],[[192,188,193]],[[193,188,187]],[[191,192,190]],[[190,192,193]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[186,187,188]],[[189,186,188]],[[194,189,195]],[[195,189,188]],[[196,187,197]],[[197,187,186]],[[197,186,194]],[[194,186,189]],[[195,188,196]],[[196,188,187]],[[197,194,195]],[[196,197,195]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[186,187,198]],[[199,198,188]],[[199,186,198]],[[199,188,189]],[[200,199,201]],[[201,199,189]],[[202,188,198]],[[203,202,198]],[[201,189,202]],[[202,189,188]],[[204,187,205]],[[205,187,186]],[[205,186,199]],[[200,205,199]],[[203,198,204]],[[204,198,187]],[[201,202,200]],[[200,202,203]],[[203,204,200]],[[200,204,205]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"}],"values":[[0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1]]}}],"attributes":{"fid":6348693,"identificatie":"NL.IMBAG.Pand.0796100000210275","oorspronkelijk_bouwjaar":1956,"status":"Pand in gebruik","geconstateerd":false,"documentdatum":"2002-03-05","documentnummer":"SOB0200300","voorkomenidentificatie":1,"begingeldigheid":"2002-03-05","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2010-11-10T01:00:49.697000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":5.79,"dak_type":"slanted","pw_datum":"2016-12-01","pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}},"3194274":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[206,207,208]],[[208,207,209]],[[210,208,211]],[[211,208,209]],[[212,207,213]],[[213,207,206]],[[213,206,210]],[[210,206,208]],[[211,209,212]],[[212,209,207]],[[211,212,210]],[[210,212,213]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[206,207,208]],[[208,207,209]],[[214,208,215]],[[215,208,209]],[[216,207,217]],[[217,207,206]],[[217,206,214]],[[214,206,208]],[[215,209,216]],[[216,209,207]],[[215,216,214]],[[214,216,217]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[206,207,208]],[[208,207,209]],[[218,208,209]],[[219,218,209]],[[220,207,221]],[[221,207,206]],[[221,206,208]],[[218,221,208]],[[219,209,220]],[[220,209,207]],[[219,220,218]],[[218,220,221]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"}],"values":[[0,0,2,2,2,2,2,2,2,2,1,1]]}}],"attributes":{"fid":207623,"identificatie":"NL.IMBAG.Pand.0796100000265918","oorspronkelijk_bouwjaar":1985,"status":"Pand in gebruik","geconstateerd":false,"documentdatum":"2010-04-20","documentnummer":"10.415","voorkomenidentificatie":1,"begingeldigheid":"2010-04-20","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2010-11-09T23:00:31.848000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":4.208,"dak_type":"slanted","pw_datum":"2016-12-01","pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}},"2921895":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[222,223,224]],[[224,223,225]],[[226,227,228]],[[222,224,226]],[[222,226,229]],[[226,224,227]],[[226,230,229]],[[222,229,231]],[[232,229,233]],[[233,229,230]],[[234,226,235]],[[235,226,228]],[[236,225,237]],[[237,225,223]],[[238,231,232]],[[232,231,229]],[[239,222,238]],[[238,222,231]],[[233,230,234]],[[234,230,226]],[[240,227,241]],[[241,227,224]],[[235,228,240]],[[240,228,227]],[[237,223,239]],[[239,223,222]],[[241,224,236]],[[236,224,225]],[[236,237,241]],[[233,234,232]],[[241,234,240]],[[240,234,235]],[[241,239,234]],[[237,239,241]],[[239,232,234]],[[238,232,239]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[225,224,223]],[[227,226,224]],[[223,224,242]],[[242,224,226]],[[227,228,226]],[[226,229,222]],[[242,226,222]],[[229,231,222]],[[230,229,226]],[[243,229,244]],[[244,229,230]],[[245,242,246]],[[246,242,222]],[[247,248,249]],[[249,248,228]],[[228,248,226]],[[250,225,251]],[[251,225,223]],[[252,231,243]],[[243,231,229]],[[246,222,252]],[[252,222,231]],[[244,230,248]],[[248,230,226]],[[253,227,254]],[[254,227,224]],[[249,228,253]],[[253,228,227]],[[255,245,247]],[[247,245,248]],[[251,223,245]],[[255,251,245]],[[245,223,242]],[[254,224,250]],[[250,224,225]],[[244,248,243]],[[243,248,246]],[[246,248,245]],[[243,246,252]],[[251,255,254]],[[253,247,249]],[[253,254,247]],[[250,251,254]],[[254,255,247]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[256,224,257]],[[256,225,224]],[[224,226,257]],[[223,225,256]],[[226,224,227]],[[242,257,226]],[[227,228,226]],[[226,229,222]],[[242,226,222]],[[229,231,222]],[[230,229,226]],[[258,229,230]],[[259,258,230]],[[260,242,222]],[[261,260,222]],[[262,257,260]],[[263,262,260]],[[260,257,242]],[[264,265,266]],[[266,265,228]],[[228,265,226]],[[267,225,268]],[[268,225,223]],[[269,231,229]],[[258,269,229]],[[261,222,231]],[[269,261,231]],[[259,230,265]],[[265,230,226]],[[270,271,272]],[[273,270,272]],[[274,227,272]],[[272,227,224]],[[275,256,262]],[[276,275,262]],[[262,256,257]],[[276,262,277]],[[277,262,278]],[[266,228,227]],[[274,266,227]],[[279,280,271]],[[270,279,271]],[[277,278,280]],[[279,277,280]],[[263,260,265]],[[264,263,265]],[[268,223,256]],[[275,268,256]],[[273,272,267]],[[267,224,225]],[[267,272,224]],[[259,265,258]],[[258,265,261]],[[261,265,260]],[[258,261,269]],[[278,262,263]],[[278,263,264]],[[274,272,280]],[[278,264,266]],[[274,278,266]],[[280,278,274]],[[271,280,272]],[[273,267,270]],[[270,268,275]],[[270,267,268]],[[276,277,275]],[[275,279,270]],[[275,277,279]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"},{"type":"WallSurface"}],"values":[[0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3,3,2,2,3,3,3,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]}}],"attributes":{"fid":738411,"identificatie":"NL.IMBAG.Pand.0796100000242693","oorspronkelijk_bouwjaar":1961,"status":"Pand in gebruik (niet ingemeten)","geconstateerd":false,"documentdatum":"2019-01-03","documentnummer":"8600475","voorkomenidentificatie":2,"begingeldigheid":"2019-01-03","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2019-01-06T22:00:22.627000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":5.207,"dak_type":"slanted","pw_datum":"2016-12-01","pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}},"8049533":{"type":"Building","geometry":[{"type":"Solid","lod":"1.2","boundaries":[[[[281,282,283]],[[284,281,285]],[[284,286,281]],[[281,286,282]],[[287,282,288]],[[288,282,286]],[[289,281,290]],[[290,281,283]],[[291,284,292]],[[292,284,285]],[[288,286,291]],[[291,286,284]],[[290,283,287]],[[287,283,282]],[[292,285,289]],[[289,285,281]],[[289,290,287]],[[289,287,288]],[[289,288,291]],[[292,289,291]]]]},{"type":"Solid","lod":"1.3","boundaries":[[[[281,282,283]],[[293,281,294]],[[293,286,281]],[[281,286,282]],[[284,294,285]],[[293,294,284]],[[295,282,296]],[[296,282,286]],[[297,281,298]],[[298,281,283]],[[299,284,300]],[[300,284,285]],[[300,285,301]],[[301,285,294]],[[302,303,304]],[[304,303,301]],[[303,293,299]],[[299,293,284]],[[296,286,303]],[[302,296,303]],[[303,286,293]],[[298,283,295]],[[295,283,282]],[[304,301,297]],[[297,301,281]],[[281,301,294]],[[299,300,301]],[[303,299,301]],[[298,295,297]],[[297,296,302]],[[297,295,296]],[[297,302,304]]]]},{"type":"Solid","lod":"2.2","boundaries":[[[[286,282,305]],[[281,306,283]],[[305,282,306]],[[305,306,281]],[[284,293,294]],[[284,294,285]],[[293,281,294]],[[305,281,293]],[[307,283,306]],[[308,307,306]],[[309,282,310]],[[310,282,286]],[[311,281,283]],[[307,311,283]],[[312,284,313]],[[313,284,285]],[[313,285,294]],[[314,313,294]],[[315,305,316]],[[316,305,317]],[[317,305,293]],[[316,317,318]],[[318,317,314]],[[317,293,312]],[[312,293,284]],[[310,286,305]],[[315,310,305]],[[308,306,309]],[[309,306,282]],[[318,314,311]],[[311,314,281]],[[281,314,294]],[[312,313,314]],[[317,312,314]],[[308,309,315]],[[315,309,310]],[[311,307,308]],[[311,308,315]],[[311,315,316]],[[318,311,316]]]],"semantics":{"surfaces":[{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"WallSurface"},{"type":"WallSurface"}],"values":[[0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1]]}}],"attributes":{"fid":17752313,"identificatie":"NL.IMBAG.Pand.0796100000245196","oorspronkelijk_bouwjaar":1985,"status":"Pand in gebruik","geconstateerd":false,"documentdatum":"2010-04-20","documentnummer":"10.415","voorkomenidentificatie":1,"begingeldigheid":"2010-04-20","eindgeldigheid":null,"tijdstipinactief":null,"tijdstipregistratielv":"2010-11-09T23:31:24.334000+01:00","tijdstipeindregistratielv":null,"tijdstipinactieflv":null,"tijdstipnietbaglv":null,"h_maaiveld":4.702,"dak_type":"slanted","pw_datum":"2016-12-01","pw_actueel":"yes","pw_bron":"ahn3","reconstructie_methode":"tudelft3d-geoflow","versie_methode":"v21.03.1","kas_warenhuis":false,"ondergronds_type":"above ground","lod11_replace":false,"reconstruction_skipped":false}}},"vertices":[[410422,289580,2553],[416340,292700,2553],[413729,283318,2553],[423629,288481,2553],[420433,294788,2553],[416340,292700,9271],[410422,289580,9271],[423629,288481,9271],[420433,294788,9271],[413729,283318,9271],[419780,286474,2553],[416411,292736,2553],[416411,292736,9838],[416411,292736,5609],[416340,292700,9838],[410422,289580,9838],[419780,286474,9838],[419780,286474,5609],[423629,288481,5609],[420433,294788,5609],[413729,283318,9838],[413202,291046,2553],[416509,284768,2553],[416411,292736,7846],[416411,292736,5662],[416340,292700,7904],[413202,291046,10506],[410422,289580,8197],[419780,286474,7817],[419780,286474,5639],[423629,288481,5504],[420433,294788,5521],[416509,284768,10523],[413729,283318,8220],[531023,157704,2005],[536071,163168,2005],[540462,158599,2005],[530779,157956,2005],[535127,153398,2005],[530779,157956,9188],[531023,157704,9188],[535127,153398,9188],[540462,158599,9188],[536071,163168,9188],[530779,157956,9215],[531023,157704,9215],[535127,153398,9215],[540462,158599,9215],[536071,163168,9215],[538420,160723,2005],[533092,155534,2005],[530779,157956,7471],[531023,157704,7733],[533092,155534,9977],[538420,160723,9982],[536071,163168,7445],[535127,153398,7685],[540462,158599,7693],[291809,52321,1990],[292284,59308,1990],[294874,53757,1990],[288587,45263,1990],[293930,47753,1990],[283886,55387,1990],[291809,52321,7097],[294874,53757,7097],[283886,55387,7097],[288587,45263,7097],[292284,59308,7097],[293930,47753,7097],[291809,52321,6089],[294874,53757,6089],[283886,55387,6089],[288587,45263,6089],[292284,59308,6089],[293930,47753,6089],[293354,57015,1990],[284994,53001,1990],[286634,49469,1990],[291953,52011,1990],[291809,52321,8351],[294874,53757,8367],[284994,53001,5111],[284994,53001,6068],[283886,55387,5977],[293354,57015,6159],[293354,57015,5073],[292284,59308,6072],[286634,49469,8678],[291953,52011,8664],[288587,45263,4731],[293930,47753,4668],[100552,207962,2990],[101462,208090,2990],[101142,204000,2990],[106114,204858,2990],[105894,204828,2990],[106412,208790,2990],[105880,204669,2990],[105880,204669,5785],[105894,204828,5785],[100552,207962,5785],[101142,204000,5785],[106412,208790,5785],[101462,208090,5785],[106114,204858,5785],[105880,204669,5784],[105894,204828,5784],[100552,207962,5784],[101142,204000,5784],[106412,208790,5784],[101462,208090,5784],[106114,204858,5784],[105880,204669,5774],[105894,204828,5774],[100552,207962,5786],[101142,204000,5768],[106412,208790,5793],[101462,208090,5787],[106114,204858,5775],[318428,78782,1910],[322204,80102,1910],[325505,70663,1910],[321729,69342,1910],[318428,78782,6362],[321729,69342,6362],[325505,70663,6362],[322204,80102,6362],[318428,78782,6527],[321729,69342,6527],[325505,70663,6527],[322204,80102,6527],[320005,79333,1910],[323331,69902,1910],[323331,69902,7147],[325505,70663,4464],[320005,79333,7164],[318428,78782,5013],[321729,69342,4961],[322204,80102,4451],[409317,251365,2493],[412438,245461,2493],[403642,240835,2493],[400523,246741,2493],[400523,246741,9445],[403642,240835,9445],[412438,245461,9445],[409317,251365,9445],[402968,248026,2493],[406036,242094,2493],[400523,246741,5484],[403642,240835,5484],[412438,245461,9379],[409317,251365,9379],[402968,248026,9379],[402968,248026,5484],[406036,242094,9379],[406036,242094,5484],[409257,243788,2493],[406140,249694,2493],[406140,249694,10468],[402968,248026,5452],[402968,248026,7774],[406036,242094,7747],[406036,242094,5498],[409257,243788,10482],[400523,246741,5452],[403642,240835,5497],[412438,245461,7839],[409317,251365,7828],[408781,244690,10480],[408781,244690,10290],[408558,244577,10292],[406974,243775,10309],[406974,243775,8958],[407223,247643,10473],[407223,247643,10300],[405671,245672,10319],[405671,245672,8752],[406301,246876,10310],[406301,246876,9591],[405868,245923,10316],[405868,245923,8971],[406485,246706,10309],[406485,246706,9655],[407068,247447,10301],[303521,387014,3089],[310142,390536,3089],[313063,385045,3089],[306442,381522,3089],[303521,387014,8114],[306442,381522,8114],[313063,385045,8114],[310142,390536,8114],[306442,381522,8156],[313063,385045,8156],[310142,390536,8156],[303521,387014,8156],[311582,387829,3089],[304987,384257,3089],[304987,384257,9090],[306442,381522,6019],[313063,385045,5967],[311582,387829,9093],[310142,390536,6062],[303521,387014,6002],[237572,568900,1507],[240368,570226,1507],[238832,566230,1507],[241657,567575,1507],[238832,566230,4909],[241657,567575,4909],[240368,570226,4909],[237572,568900,4909],[238832,566230,4920],[241657,567575,4920],[240368,570226,4920],[237572,568900,4920],[238832,566230,5342],[241657,567575,5348],[240368,570226,3957],[237572,568900,3949],[566806,244864,2506],[563315,250254,2506],[571929,251100,2506],[569733,254314,2506],[573288,249111,2506],[572194,251268,2506],[573476,249229,2506],[571272,243350,2506],[575435,245968,2506],[568816,241760,2506],[571272,243350,9868],[575435,245968,9868],[573288,249111,9868],[573476,249229,9868],[569733,254314,9868],[563315,250254,9868],[568816,241760,9868],[566806,244864,9868],[572194,251268,9868],[571929,251100,9868],[566730,244982,2506],[571272,243350,5168],[575435,245968,5168],[566730,244982,5168],[566806,244864,5168],[573288,249111,10185],[573288,249111,5168],[573476,249229,10185],[569733,254314,10185],[563315,250254,10185],[568816,241760,5168],[572194,251268,10185],[571929,251100,10185],[566730,244982,10185],[565431,246987,2506],[566223,245764,2506],[571272,243350,5156],[575435,245968,5180],[566730,244982,5142],[566806,244864,5142],[566223,245764,8778],[566730,244982,8074],[573288,249111,8072],[573288,249111,5179],[573476,249229,8072],[569733,254314,8131],[563315,250254,8127],[568816,241760,5142],[571720,250968,11079],[571720,250968,9893],[571929,251100,9893],[571929,251100,11079],[572194,251268,9894],[565431,246987,11076],[566223,245764,10131],[572178,249478,10102],[572178,249478,8755],[571721,250626,10890],[571721,250626,9673],[214082,87180,2001],[213876,96957,2001],[217060,88254,2001],[212480,84977,2001],[214602,85740,2001],[208674,95050,2001],[213876,96957,10086],[208674,95050,10086],[214082,87180,10086],[217060,88254,10086],[212480,84977,10086],[214602,85740,10086],[212155,85838,2001],[214302,86571,2001],[213876,96957,10286],[208674,95050,10286],[214082,87180,10286],[217060,88254,10286],[212480,84977,5518],[214602,85740,5518],[214302,86571,5518],[212155,85838,10286],[212155,85838,5518],[214302,86571,10286],[210118,91228,2001],[215285,93106,2001],[217060,88254,7136],[215285,93106,11286],[213876,96957,8030],[208674,95050,8029],[214082,87180,7135],[212480,84977,4977],[214602,85740,4968],[214302,86571,5702],[210118,91228,11272],[212155,85838,6645],[212155,85838,5741],[214302,86571,6615]],"transform":{"scale":[0.001,0.001,0.001],"translate":[153200.84792065428,414118.209989502,2.7009999752044678]},"metadata":{"geographicalExtent":[153301.39992065428,414163.47298950196,4.2079999752044674,153776.28292065428,414688.435989502,13.986999975204467],"citymodelIdentifier":"eaec126a-6b10-4b06-9247-d3bdee47bebd","datasetReferenceDate":"2021-03-14","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent","cityfeatureMetadata":{"Building":{"uniqueFeatureCount":10,"aggregateFeatureCount":30,"presentLoDs":{"1.2":10,"1.3":10,"2.2":10}}},"presentLoDs":{"1.2":10,"1.3":10,"2.2":10},"thematicModels":["Building"],"referenceSystem":"urn:ogc:def:crs:EPSG::7415","fileIdentifier":"multilod.json","lineage":[{"processStep":{"description":"Random subset of fc92cf81-0e72-4dff-ac17-aacc2c7fdc75 (3dbag_v21031_7425c21b_6730.json)","stepDateTime":"2021-05-18T16:01:05.264117Z"},"featureIDs":["6751773","2128302","596872","408703","2499572","3374155","7115146","3194274","2921895","8049533"]}]}} \ No newline at end of file +{ + "type": "CityJSON", + "version": "1.1", + "CityObjects": + { + "6751773": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 0, + 1, + 2 + ] + ], + [ + [ + 2, + 1, + 3 + ] + ], + [ + [ + 3, + 1, + 4 + ] + ], + [ + [ + 5, + 1, + 6 + ] + ], + [ + [ + 6, + 1, + 0 + ] + ], + [ + [ + 7, + 3, + 8 + ] + ], + [ + [ + 8, + 3, + 4 + ] + ], + [ + [ + 6, + 0, + 9 + ] + ], + [ + [ + 9, + 0, + 2 + ] + ], + [ + [ + 8, + 4, + 5 + ] + ], + [ + [ + 5, + 4, + 1 + ] + ], + [ + [ + 9, + 2, + 7 + ] + ], + [ + [ + 7, + 2, + 3 + ] + ], + [ + [ + 9, + 7, + 5 + ] + ], + [ + [ + 6, + 9, + 5 + ] + ], + [ + [ + 5, + 7, + 8 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 0, + 1, + 2 + ] + ], + [ + [ + 3, + 10, + 4 + ] + ], + [ + [ + 4, + 10, + 11 + ] + ], + [ + [ + 2, + 1, + 10 + ] + ], + [ + [ + 10, + 1, + 11 + ] + ], + [ + [ + 12, + 13, + 14 + ] + ], + [ + [ + 14, + 13, + 1 + ] + ], + [ + [ + 1, + 13, + 11 + ] + ], + [ + [ + 14, + 1, + 15 + ] + ], + [ + [ + 15, + 1, + 0 + ] + ], + [ + [ + 16, + 17, + 12 + ] + ], + [ + [ + 12, + 17, + 13 + ] + ], + [ + [ + 18, + 3, + 19 + ] + ], + [ + [ + 19, + 3, + 4 + ] + ], + [ + [ + 20, + 2, + 17 + ] + ], + [ + [ + 16, + 20, + 17 + ] + ], + [ + [ + 17, + 2, + 10 + ] + ], + [ + [ + 15, + 0, + 20 + ] + ], + [ + [ + 20, + 0, + 2 + ] + ], + [ + [ + 19, + 4, + 13 + ] + ], + [ + [ + 13, + 4, + 11 + ] + ], + [ + [ + 17, + 10, + 18 + ] + ], + [ + [ + 18, + 10, + 3 + ] + ], + [ + [ + 14, + 15, + 20 + ] + ], + [ + [ + 12, + 14, + 16 + ] + ], + [ + [ + 16, + 14, + 20 + ] + ], + [ + [ + 17, + 18, + 19 + ] + ], + [ + [ + 13, + 17, + 19 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 0, + 21, + 2 + ] + ], + [ + [ + 4, + 10, + 11 + ] + ], + [ + [ + 10, + 22, + 1 + ] + ], + [ + [ + 3, + 10, + 4 + ] + ], + [ + [ + 22, + 21, + 1 + ] + ], + [ + [ + 2, + 21, + 22 + ] + ], + [ + [ + 10, + 1, + 11 + ] + ], + [ + [ + 23, + 24, + 25 + ] + ], + [ + [ + 25, + 24, + 1 + ] + ], + [ + [ + 1, + 24, + 11 + ] + ], + [ + [ + 25, + 1, + 21 + ] + ], + [ + [ + 26, + 25, + 21 + ] + ], + [ + [ + 26, + 21, + 27 + ] + ], + [ + [ + 27, + 21, + 0 + ] + ], + [ + [ + 28, + 29, + 24 + ] + ], + [ + [ + 23, + 28, + 24 + ] + ], + [ + [ + 30, + 3, + 4 + ] + ], + [ + [ + 31, + 30, + 4 + ] + ], + [ + [ + 32, + 22, + 29 + ] + ], + [ + [ + 28, + 32, + 29 + ] + ], + [ + [ + 29, + 22, + 10 + ] + ], + [ + [ + 27, + 0, + 2 + ] + ], + [ + [ + 33, + 27, + 2 + ] + ], + [ + [ + 33, + 2, + 22 + ] + ], + [ + [ + 32, + 33, + 22 + ] + ], + [ + [ + 31, + 4, + 11 + ] + ], + [ + [ + 24, + 31, + 11 + ] + ], + [ + [ + 29, + 10, + 30 + ] + ], + [ + [ + 30, + 10, + 3 + ] + ], + [ + [ + 33, + 32, + 26 + ] + ], + [ + [ + 27, + 33, + 26 + ] + ], + [ + [ + 25, + 28, + 23 + ] + ], + [ + [ + 26, + 32, + 25 + ] + ], + [ + [ + 25, + 32, + 28 + ] + ], + [ + [ + 29, + 30, + 31 + ] + ], + [ + [ + 24, + 29, + 31 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 730210, + "identificatie": "NL.IMBAG.Pand.0796100000236261", + "oorspronkelijk_bouwjaar": 1965, + "status": "Pand in gebruik", + "geconstateerd": false, + "documentdatum": "2019-01-09", + "documentnummer": "8618264", + "voorkomenidentificatie": 2, + "begingeldigheid": "2019-01-09", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2019-01-09T16:00:26.607000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 5.254, + "dak_type": "slanted", + "pw_datum": "2016-12-01", + "pw_actueel": "yes", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + }, + "2128302": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 34, + 35, + 36 + ] + ], + [ + [ + 34, + 37, + 35 + ] + ], + [ + [ + 34, + 36, + 38 + ] + ], + [ + [ + 39, + 37, + 40 + ] + ], + [ + [ + 40, + 37, + 34 + ] + ], + [ + [ + 40, + 34, + 41 + ] + ], + [ + [ + 41, + 34, + 38 + ] + ], + [ + [ + 42, + 36, + 43 + ] + ], + [ + [ + 43, + 36, + 35 + ] + ], + [ + [ + 41, + 38, + 42 + ] + ], + [ + [ + 42, + 38, + 36 + ] + ], + [ + [ + 43, + 35, + 39 + ] + ], + [ + [ + 39, + 35, + 37 + ] + ], + [ + [ + 40, + 43, + 39 + ] + ], + [ + [ + 41, + 42, + 40 + ] + ], + [ + [ + 40, + 42, + 43 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 34, + 35, + 36 + ] + ], + [ + [ + 34, + 37, + 35 + ] + ], + [ + [ + 34, + 36, + 38 + ] + ], + [ + [ + 44, + 37, + 45 + ] + ], + [ + [ + 45, + 37, + 34 + ] + ], + [ + [ + 45, + 34, + 46 + ] + ], + [ + [ + 46, + 34, + 38 + ] + ], + [ + [ + 47, + 36, + 48 + ] + ], + [ + [ + 48, + 36, + 35 + ] + ], + [ + [ + 46, + 38, + 47 + ] + ], + [ + [ + 47, + 38, + 36 + ] + ], + [ + [ + 48, + 35, + 44 + ] + ], + [ + [ + 44, + 35, + 37 + ] + ], + [ + [ + 45, + 47, + 48 + ] + ], + [ + [ + 45, + 46, + 47 + ] + ], + [ + [ + 45, + 48, + 44 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 34, + 35, + 49 + ] + ], + [ + [ + 34, + 37, + 35 + ] + ], + [ + [ + 34, + 49, + 50 + ] + ], + [ + [ + 49, + 36, + 50 + ] + ], + [ + [ + 36, + 38, + 50 + ] + ], + [ + [ + 51, + 37, + 34 + ] + ], + [ + [ + 52, + 51, + 34 + ] + ], + [ + [ + 52, + 34, + 50 + ] + ], + [ + [ + 53, + 52, + 50 + ] + ], + [ + [ + 54, + 49, + 55 + ] + ], + [ + [ + 55, + 49, + 35 + ] + ], + [ + [ + 56, + 38, + 36 + ] + ], + [ + [ + 57, + 56, + 36 + ] + ], + [ + [ + 53, + 50, + 56 + ] + ], + [ + [ + 56, + 50, + 38 + ] + ], + [ + [ + 57, + 36, + 49 + ] + ], + [ + [ + 54, + 57, + 49 + ] + ], + [ + [ + 55, + 35, + 37 + ] + ], + [ + [ + 51, + 55, + 37 + ] + ], + [ + [ + 57, + 54, + 53 + ] + ], + [ + [ + 56, + 57, + 53 + ] + ], + [ + [ + 55, + 51, + 52 + ] + ], + [ + [ + 54, + 52, + 53 + ] + ], + [ + [ + 54, + 55, + 52 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 0, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 13745293, + "identificatie": "NL.IMBAG.Pand.0796100000215775", + "oorspronkelijk_bouwjaar": 1963, + "status": "Pand in gebruik", + "geconstateerd": false, + "documentdatum": "2020-11-13", + "documentnummer": "NL-HtGH-VERSEON-10534131", + "voorkomenidentificatie": 2, + "begingeldigheid": "2020-11-13", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2020-11-13T16:07:01.477000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 4.706, + "dak_type": "slanted", + "pw_datum": "2016-12-01", + "pw_actueel": "yes", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + }, + "596872": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 58, + 59, + 60 + ] + ], + [ + [ + 61, + 58, + 62 + ] + ], + [ + [ + 61, + 63, + 58 + ] + ], + [ + [ + 58, + 63, + 59 + ] + ], + [ + [ + 64, + 58, + 65 + ] + ], + [ + [ + 65, + 58, + 60 + ] + ], + [ + [ + 66, + 63, + 67 + ] + ], + [ + [ + 67, + 63, + 61 + ] + ], + [ + [ + 65, + 60, + 68 + ] + ], + [ + [ + 68, + 60, + 59 + ] + ], + [ + [ + 69, + 62, + 64 + ] + ], + [ + [ + 64, + 62, + 58 + ] + ], + [ + [ + 68, + 59, + 66 + ] + ], + [ + [ + 66, + 59, + 63 + ] + ], + [ + [ + 67, + 61, + 69 + ] + ], + [ + [ + 69, + 61, + 62 + ] + ], + [ + [ + 68, + 66, + 64 + ] + ], + [ + [ + 65, + 68, + 64 + ] + ], + [ + [ + 69, + 64, + 67 + ] + ], + [ + [ + 64, + 66, + 67 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 58, + 59, + 60 + ] + ], + [ + [ + 61, + 58, + 62 + ] + ], + [ + [ + 61, + 63, + 58 + ] + ], + [ + [ + 58, + 63, + 59 + ] + ], + [ + [ + 70, + 58, + 71 + ] + ], + [ + [ + 71, + 58, + 60 + ] + ], + [ + [ + 72, + 63, + 73 + ] + ], + [ + [ + 73, + 63, + 61 + ] + ], + [ + [ + 71, + 60, + 74 + ] + ], + [ + [ + 74, + 60, + 59 + ] + ], + [ + [ + 75, + 62, + 70 + ] + ], + [ + [ + 70, + 62, + 58 + ] + ], + [ + [ + 74, + 59, + 72 + ] + ], + [ + [ + 72, + 59, + 63 + ] + ], + [ + [ + 73, + 61, + 75 + ] + ], + [ + [ + 75, + 61, + 62 + ] + ], + [ + [ + 70, + 73, + 75 + ] + ], + [ + [ + 74, + 70, + 71 + ] + ], + [ + [ + 74, + 72, + 70 + ] + ], + [ + [ + 70, + 72, + 73 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 63, + 59, + 76 + ] + ], + [ + [ + 58, + 76, + 60 + ] + ], + [ + [ + 77, + 63, + 76 + ] + ], + [ + [ + 77, + 76, + 58 + ] + ], + [ + [ + 78, + 58, + 79 + ] + ], + [ + [ + 61, + 78, + 62 + ] + ], + [ + [ + 77, + 58, + 78 + ] + ], + [ + [ + 78, + 79, + 62 + ] + ], + [ + [ + 80, + 58, + 60 + ] + ], + [ + [ + 81, + 80, + 60 + ] + ], + [ + [ + 82, + 63, + 77 + ] + ], + [ + [ + 83, + 84, + 82 + ] + ], + [ + [ + 82, + 84, + 63 + ] + ], + [ + [ + 85, + 86, + 87 + ] + ], + [ + [ + 87, + 86, + 59 + ] + ], + [ + [ + 59, + 86, + 76 + ] + ], + [ + [ + 82, + 77, + 78 + ] + ], + [ + [ + 88, + 82, + 78 + ] + ], + [ + [ + 89, + 79, + 80 + ] + ], + [ + [ + 80, + 79, + 58 + ] + ], + [ + [ + 87, + 59, + 84 + ] + ], + [ + [ + 84, + 59, + 63 + ] + ], + [ + [ + 83, + 82, + 86 + ] + ], + [ + [ + 85, + 83, + 86 + ] + ], + [ + [ + 81, + 60, + 86 + ] + ], + [ + [ + 86, + 60, + 76 + ] + ], + [ + [ + 88, + 78, + 90 + ] + ], + [ + [ + 90, + 78, + 61 + ] + ], + [ + [ + 90, + 61, + 91 + ] + ], + [ + [ + 91, + 61, + 62 + ] + ], + [ + [ + 91, + 62, + 79 + ] + ], + [ + [ + 89, + 91, + 79 + ] + ], + [ + [ + 88, + 89, + 80 + ] + ], + [ + [ + 86, + 80, + 81 + ] + ], + [ + [ + 82, + 88, + 80 + ] + ], + [ + [ + 82, + 80, + 86 + ] + ], + [ + [ + 90, + 91, + 88 + ] + ], + [ + [ + 88, + 91, + 89 + ] + ], + [ + [ + 87, + 84, + 85 + ] + ], + [ + [ + 85, + 84, + 83 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 8759559, + "identificatie": "NL.IMBAG.Pand.0796100001008481", + "oorspronkelijk_bouwjaar": 2017, + "status": "Pand in gebruik", + "geconstateerd": false, + "documentdatum": "2018-02-08", + "documentnummer": "7704563", + "voorkomenidentificatie": 2, + "begingeldigheid": "2018-02-08", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2018-02-08T10:01:08.773000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 4.691, + "dak_type": "slanted", + "pw_datum": "2016-12-01", + "pw_actueel": "uncertain", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + }, + "408703": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 92, + 93, + 94 + ] + ], + [ + [ + 95, + 96, + 97 + ] + ], + [ + [ + 96, + 94, + 93 + ] + ], + [ + [ + 97, + 96, + 93 + ] + ], + [ + [ + 98, + 94, + 96 + ] + ], + [ + [ + 99, + 98, + 100 + ] + ], + [ + [ + 100, + 98, + 96 + ] + ], + [ + [ + 101, + 92, + 102 + ] + ], + [ + [ + 102, + 92, + 94 + ] + ], + [ + [ + 103, + 97, + 104 + ] + ], + [ + [ + 104, + 97, + 93 + ] + ], + [ + [ + 104, + 93, + 101 + ] + ], + [ + [ + 101, + 93, + 92 + ] + ], + [ + [ + 102, + 94, + 99 + ] + ], + [ + [ + 99, + 94, + 98 + ] + ], + [ + [ + 105, + 95, + 103 + ] + ], + [ + [ + 103, + 95, + 97 + ] + ], + [ + [ + 100, + 96, + 105 + ] + ], + [ + [ + 105, + 96, + 95 + ] + ], + [ + [ + 99, + 100, + 102 + ] + ], + [ + [ + 104, + 100, + 103 + ] + ], + [ + [ + 103, + 100, + 105 + ] + ], + [ + [ + 104, + 102, + 100 + ] + ], + [ + [ + 101, + 102, + 104 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 92, + 93, + 94 + ] + ], + [ + [ + 95, + 96, + 97 + ] + ], + [ + [ + 96, + 94, + 93 + ] + ], + [ + [ + 97, + 96, + 93 + ] + ], + [ + [ + 98, + 94, + 96 + ] + ], + [ + [ + 106, + 98, + 107 + ] + ], + [ + [ + 107, + 98, + 96 + ] + ], + [ + [ + 108, + 92, + 109 + ] + ], + [ + [ + 109, + 92, + 94 + ] + ], + [ + [ + 110, + 97, + 111 + ] + ], + [ + [ + 111, + 97, + 93 + ] + ], + [ + [ + 111, + 93, + 108 + ] + ], + [ + [ + 108, + 93, + 92 + ] + ], + [ + [ + 109, + 94, + 106 + ] + ], + [ + [ + 106, + 94, + 98 + ] + ], + [ + [ + 112, + 95, + 110 + ] + ], + [ + [ + 110, + 95, + 97 + ] + ], + [ + [ + 107, + 96, + 112 + ] + ], + [ + [ + 112, + 96, + 95 + ] + ], + [ + [ + 106, + 107, + 109 + ] + ], + [ + [ + 111, + 107, + 110 + ] + ], + [ + [ + 110, + 107, + 112 + ] + ], + [ + [ + 111, + 109, + 107 + ] + ], + [ + [ + 108, + 109, + 111 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 92, + 93, + 94 + ] + ], + [ + [ + 95, + 96, + 97 + ] + ], + [ + [ + 96, + 94, + 93 + ] + ], + [ + [ + 97, + 96, + 93 + ] + ], + [ + [ + 98, + 94, + 96 + ] + ], + [ + [ + 113, + 98, + 96 + ] + ], + [ + [ + 114, + 113, + 96 + ] + ], + [ + [ + 115, + 92, + 116 + ] + ], + [ + [ + 116, + 92, + 94 + ] + ], + [ + [ + 117, + 97, + 118 + ] + ], + [ + [ + 118, + 97, + 93 + ] + ], + [ + [ + 118, + 93, + 115 + ] + ], + [ + [ + 115, + 93, + 92 + ] + ], + [ + [ + 116, + 94, + 98 + ] + ], + [ + [ + 113, + 116, + 98 + ] + ], + [ + [ + 119, + 95, + 97 + ] + ], + [ + [ + 117, + 119, + 97 + ] + ], + [ + [ + 114, + 96, + 95 + ] + ], + [ + [ + 119, + 114, + 95 + ] + ], + [ + [ + 113, + 114, + 116 + ] + ], + [ + [ + 118, + 114, + 117 + ] + ], + [ + [ + 117, + 114, + 119 + ] + ], + [ + [ + 118, + 116, + 114 + ] + ], + [ + [ + 115, + 116, + 118 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 0, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 6348664, + "identificatie": "NL.IMBAG.Pand.0796100000210250", + "oorspronkelijk_bouwjaar": 1990, + "status": "Pand in gebruik", + "geconstateerd": false, + "documentdatum": "2010-04-20", + "documentnummer": "10.415", + "voorkomenidentificatie": 1, + "begingeldigheid": "2010-04-20", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2010-11-10T01:00:50.071000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 5.691, + "dak_type": "single horizontal", + "pw_datum": "2016-12-01", + "pw_actueel": "yes", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + }, + "2499572": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 120, + 121, + 122 + ] + ], + [ + [ + 123, + 120, + 122 + ] + ], + [ + [ + 124, + 120, + 125 + ] + ], + [ + [ + 125, + 120, + 123 + ] + ], + [ + [ + 126, + 122, + 127 + ] + ], + [ + [ + 127, + 122, + 121 + ] + ], + [ + [ + 127, + 121, + 124 + ] + ], + [ + [ + 124, + 121, + 120 + ] + ], + [ + [ + 125, + 123, + 126 + ] + ], + [ + [ + 126, + 123, + 122 + ] + ], + [ + [ + 125, + 126, + 124 + ] + ], + [ + [ + 124, + 126, + 127 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 120, + 121, + 122 + ] + ], + [ + [ + 123, + 120, + 122 + ] + ], + [ + [ + 128, + 120, + 129 + ] + ], + [ + [ + 129, + 120, + 123 + ] + ], + [ + [ + 130, + 122, + 131 + ] + ], + [ + [ + 131, + 122, + 121 + ] + ], + [ + [ + 131, + 121, + 128 + ] + ], + [ + [ + 128, + 121, + 120 + ] + ], + [ + [ + 129, + 123, + 130 + ] + ], + [ + [ + 130, + 123, + 122 + ] + ], + [ + [ + 129, + 130, + 128 + ] + ], + [ + [ + 128, + 130, + 131 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 120, + 132, + 123 + ] + ], + [ + [ + 122, + 133, + 121 + ] + ], + [ + [ + 133, + 123, + 132 + ] + ], + [ + [ + 121, + 133, + 132 + ] + ], + [ + [ + 134, + 133, + 135 + ] + ], + [ + [ + 135, + 133, + 122 + ] + ], + [ + [ + 136, + 132, + 137 + ] + ], + [ + [ + 137, + 132, + 120 + ] + ], + [ + [ + 137, + 120, + 138 + ] + ], + [ + [ + 138, + 120, + 123 + ] + ], + [ + [ + 135, + 122, + 139 + ] + ], + [ + [ + 139, + 122, + 121 + ] + ], + [ + [ + 139, + 121, + 132 + ] + ], + [ + [ + 136, + 139, + 132 + ] + ], + [ + [ + 138, + 123, + 133 + ] + ], + [ + [ + 134, + 138, + 133 + ] + ], + [ + [ + 134, + 135, + 139 + ] + ], + [ + [ + 136, + 134, + 139 + ] + ], + [ + [ + 134, + 136, + 137 + ] + ], + [ + [ + 138, + 134, + 137 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 14518465, + "identificatie": "NL.IMBAG.Pand.0796100000226180", + "oorspronkelijk_bouwjaar": 1948, + "status": "Pand in gebruik", + "geconstateerd": false, + "documentdatum": "2009-10-06", + "documentnummer": "09.0875", + "voorkomenidentificatie": 1, + "begingeldigheid": "2009-10-06", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2010-11-10T00:01:37.012000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 4.611, + "dak_type": "slanted", + "pw_datum": "2016-12-01", + "pw_actueel": "yes", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + }, + "3374155": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 140, + 141, + 142 + ] + ], + [ + [ + 143, + 140, + 142 + ] + ], + [ + [ + 144, + 143, + 145 + ] + ], + [ + [ + 145, + 143, + 142 + ] + ], + [ + [ + 146, + 141, + 147 + ] + ], + [ + [ + 147, + 141, + 140 + ] + ], + [ + [ + 147, + 140, + 144 + ] + ], + [ + [ + 144, + 140, + 143 + ] + ], + [ + [ + 145, + 142, + 146 + ] + ], + [ + [ + 146, + 142, + 141 + ] + ], + [ + [ + 147, + 144, + 145 + ] + ], + [ + [ + 146, + 147, + 145 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 140, + 141, + 148 + ] + ], + [ + [ + 143, + 149, + 142 + ] + ], + [ + [ + 148, + 141, + 149 + ] + ], + [ + [ + 148, + 149, + 143 + ] + ], + [ + [ + 150, + 143, + 151 + ] + ], + [ + [ + 151, + 143, + 142 + ] + ], + [ + [ + 152, + 141, + 153 + ] + ], + [ + [ + 153, + 141, + 140 + ] + ], + [ + [ + 154, + 155, + 156 + ] + ], + [ + [ + 156, + 155, + 157 + ] + ], + [ + [ + 153, + 140, + 155 + ] + ], + [ + [ + 154, + 153, + 155 + ] + ], + [ + [ + 155, + 140, + 148 + ] + ], + [ + [ + 156, + 157, + 152 + ] + ], + [ + [ + 152, + 157, + 141 + ] + ], + [ + [ + 141, + 157, + 149 + ] + ], + [ + [ + 155, + 148, + 150 + ] + ], + [ + [ + 150, + 148, + 143 + ] + ], + [ + [ + 151, + 142, + 157 + ] + ], + [ + [ + 157, + 142, + 149 + ] + ], + [ + [ + 151, + 157, + 150 + ] + ], + [ + [ + 150, + 157, + 155 + ] + ], + [ + [ + 153, + 154, + 152 + ] + ], + [ + [ + 152, + 154, + 156 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 140, + 141, + 158 + ] + ], + [ + [ + 148, + 158, + 149 + ] + ], + [ + [ + 159, + 140, + 158 + ] + ], + [ + [ + 143, + 149, + 142 + ] + ], + [ + [ + 148, + 149, + 143 + ] + ], + [ + [ + 159, + 158, + 148 + ] + ], + [ + [ + 160, + 159, + 161 + ] + ], + [ + [ + 162, + 160, + 161 + ] + ], + [ + [ + 161, + 159, + 148 + ] + ], + [ + [ + 163, + 164, + 165 + ] + ], + [ + [ + 165, + 164, + 158 + ] + ], + [ + [ + 158, + 164, + 149 + ] + ], + [ + [ + 166, + 143, + 142 + ] + ], + [ + [ + 167, + 166, + 142 + ] + ], + [ + [ + 168, + 141, + 169 + ] + ], + [ + [ + 169, + 141, + 140 + ] + ], + [ + [ + 162, + 161, + 164 + ] + ], + [ + [ + 163, + 162, + 164 + ] + ], + [ + [ + 170, + 171, + 172 + ] + ], + [ + [ + 173, + 174, + 172 + ] + ], + [ + [ + 169, + 140, + 159 + ] + ], + [ + [ + 160, + 169, + 159 + ] + ], + [ + [ + 165, + 158, + 168 + ] + ], + [ + [ + 168, + 158, + 141 + ] + ], + [ + [ + 175, + 176, + 170 + ] + ], + [ + [ + 170, + 176, + 171 + ] + ], + [ + [ + 177, + 178, + 174 + ] + ], + [ + [ + 173, + 177, + 174 + ] + ], + [ + [ + 161, + 148, + 166 + ] + ], + [ + [ + 166, + 148, + 143 + ] + ], + [ + [ + 167, + 142, + 149 + ] + ], + [ + [ + 164, + 167, + 149 + ] + ], + [ + [ + 179, + 180, + 181 + ] + ], + [ + [ + 181, + 180, + 182 + ] + ], + [ + [ + 181, + 182, + 177 + ] + ], + [ + [ + 177, + 182, + 178 + ] + ], + [ + [ + 183, + 184, + 179 + ] + ], + [ + [ + 179, + 184, + 180 + ] + ], + [ + [ + 176, + 175, + 185 + ] + ], + [ + [ + 184, + 183, + 185 + ] + ], + [ + [ + 167, + 164, + 166 + ] + ], + [ + [ + 166, + 164, + 161 + ] + ], + [ + [ + 165, + 168, + 170 + ] + ], + [ + [ + 170, + 168, + 175 + ] + ], + [ + [ + 175, + 168, + 169 + ] + ], + [ + [ + 175, + 169, + 160 + ] + ], + [ + [ + 172, + 165, + 170 + ] + ], + [ + [ + 162, + 182, + 180 + ] + ], + [ + [ + 178, + 163, + 174 + ] + ], + [ + [ + 172, + 174, + 165 + ] + ], + [ + [ + 162, + 178, + 182 + ] + ], + [ + [ + 174, + 163, + 165 + ] + ], + [ + [ + 162, + 163, + 178 + ] + ], + [ + [ + 180, + 184, + 185 + ] + ], + [ + [ + 160, + 180, + 185 + ] + ], + [ + [ + 160, + 185, + 175 + ] + ], + [ + [ + 162, + 180, + 160 + ] + ], + [ + [ + 171, + 176, + 185 + ] + ], + [ + [ + 172, + 171, + 183 + ] + ], + [ + [ + 183, + 171, + 185 + ] + ], + [ + [ + 181, + 183, + 179 + ] + ], + [ + [ + 172, + 183, + 181 + ] + ], + [ + [ + 173, + 181, + 177 + ] + ], + [ + [ + 172, + 181, + 173 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 14026539, + "identificatie": "NL.IMBAG.Pand.0796100000256407", + "oorspronkelijk_bouwjaar": 1965, + "status": "Pand in gebruik", + "geconstateerd": false, + "documentdatum": "2014-03-10", + "documentnummer": "3749388", + "voorkomenidentificatie": 4, + "begingeldigheid": "2014-03-10", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2014-03-18T10:34:14.729000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 5.194, + "dak_type": "slanted", + "pw_datum": "2016-12-01", + "pw_actueel": "yes", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + }, + "7115146": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 186, + 187, + 188 + ] + ], + [ + [ + 189, + 186, + 188 + ] + ], + [ + [ + 190, + 186, + 191 + ] + ], + [ + [ + 191, + 186, + 189 + ] + ], + [ + [ + 191, + 189, + 192 + ] + ], + [ + [ + 192, + 189, + 188 + ] + ], + [ + [ + 193, + 187, + 190 + ] + ], + [ + [ + 190, + 187, + 186 + ] + ], + [ + [ + 192, + 188, + 193 + ] + ], + [ + [ + 193, + 188, + 187 + ] + ], + [ + [ + 191, + 192, + 190 + ] + ], + [ + [ + 190, + 192, + 193 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 186, + 187, + 188 + ] + ], + [ + [ + 189, + 186, + 188 + ] + ], + [ + [ + 194, + 189, + 195 + ] + ], + [ + [ + 195, + 189, + 188 + ] + ], + [ + [ + 196, + 187, + 197 + ] + ], + [ + [ + 197, + 187, + 186 + ] + ], + [ + [ + 197, + 186, + 194 + ] + ], + [ + [ + 194, + 186, + 189 + ] + ], + [ + [ + 195, + 188, + 196 + ] + ], + [ + [ + 196, + 188, + 187 + ] + ], + [ + [ + 197, + 194, + 195 + ] + ], + [ + [ + 196, + 197, + 195 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 186, + 187, + 198 + ] + ], + [ + [ + 199, + 198, + 188 + ] + ], + [ + [ + 199, + 186, + 198 + ] + ], + [ + [ + 199, + 188, + 189 + ] + ], + [ + [ + 200, + 199, + 201 + ] + ], + [ + [ + 201, + 199, + 189 + ] + ], + [ + [ + 202, + 188, + 198 + ] + ], + [ + [ + 203, + 202, + 198 + ] + ], + [ + [ + 201, + 189, + 202 + ] + ], + [ + [ + 202, + 189, + 188 + ] + ], + [ + [ + 204, + 187, + 205 + ] + ], + [ + [ + 205, + 187, + 186 + ] + ], + [ + [ + 205, + 186, + 199 + ] + ], + [ + [ + 200, + 205, + 199 + ] + ], + [ + [ + 203, + 198, + 204 + ] + ], + [ + [ + 204, + 198, + 187 + ] + ], + [ + [ + 201, + 202, + 200 + ] + ], + [ + [ + 200, + 202, + 203 + ] + ], + [ + [ + 203, + 204, + 200 + ] + ], + [ + [ + 200, + 204, + 205 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 6348693, + "identificatie": "NL.IMBAG.Pand.0796100000210275", + "oorspronkelijk_bouwjaar": 1956, + "status": "Pand in gebruik", + "geconstateerd": false, + "documentdatum": "2002-03-05", + "documentnummer": "SOB0200300", + "voorkomenidentificatie": 1, + "begingeldigheid": "2002-03-05", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2010-11-10T01:00:49.697000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 5.79, + "dak_type": "slanted", + "pw_datum": "2016-12-01", + "pw_actueel": "yes", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + }, + "3194274": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 206, + 207, + 208 + ] + ], + [ + [ + 208, + 207, + 209 + ] + ], + [ + [ + 210, + 208, + 211 + ] + ], + [ + [ + 211, + 208, + 209 + ] + ], + [ + [ + 212, + 207, + 213 + ] + ], + [ + [ + 213, + 207, + 206 + ] + ], + [ + [ + 213, + 206, + 210 + ] + ], + [ + [ + 210, + 206, + 208 + ] + ], + [ + [ + 211, + 209, + 212 + ] + ], + [ + [ + 212, + 209, + 207 + ] + ], + [ + [ + 211, + 212, + 210 + ] + ], + [ + [ + 210, + 212, + 213 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 206, + 207, + 208 + ] + ], + [ + [ + 208, + 207, + 209 + ] + ], + [ + [ + 214, + 208, + 215 + ] + ], + [ + [ + 215, + 208, + 209 + ] + ], + [ + [ + 216, + 207, + 217 + ] + ], + [ + [ + 217, + 207, + 206 + ] + ], + [ + [ + 217, + 206, + 214 + ] + ], + [ + [ + 214, + 206, + 208 + ] + ], + [ + [ + 215, + 209, + 216 + ] + ], + [ + [ + 216, + 209, + 207 + ] + ], + [ + [ + 215, + 216, + 214 + ] + ], + [ + [ + 214, + 216, + 217 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 206, + 207, + 208 + ] + ], + [ + [ + 208, + 207, + 209 + ] + ], + [ + [ + 218, + 208, + 209 + ] + ], + [ + [ + 219, + 218, + 209 + ] + ], + [ + [ + 220, + 207, + 221 + ] + ], + [ + [ + 221, + 207, + 206 + ] + ], + [ + [ + 221, + 206, + 208 + ] + ], + [ + [ + 218, + 221, + 208 + ] + ], + [ + [ + 219, + 209, + 220 + ] + ], + [ + [ + 220, + 209, + 207 + ] + ], + [ + [ + 219, + 220, + 218 + ] + ], + [ + [ + 218, + 220, + 221 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 207623, + "identificatie": "NL.IMBAG.Pand.0796100000265918", + "oorspronkelijk_bouwjaar": 1985, + "status": "Pand in gebruik", + "geconstateerd": false, + "documentdatum": "2010-04-20", + "documentnummer": "10.415", + "voorkomenidentificatie": 1, + "begingeldigheid": "2010-04-20", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2010-11-09T23:00:31.848000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 4.208, + "dak_type": "slanted", + "pw_datum": "2016-12-01", + "pw_actueel": "yes", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + }, + "2921895": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 222, + 223, + 224 + ] + ], + [ + [ + 224, + 223, + 225 + ] + ], + [ + [ + 226, + 227, + 228 + ] + ], + [ + [ + 222, + 224, + 226 + ] + ], + [ + [ + 222, + 226, + 229 + ] + ], + [ + [ + 226, + 224, + 227 + ] + ], + [ + [ + 226, + 230, + 229 + ] + ], + [ + [ + 222, + 229, + 231 + ] + ], + [ + [ + 232, + 229, + 233 + ] + ], + [ + [ + 233, + 229, + 230 + ] + ], + [ + [ + 234, + 226, + 235 + ] + ], + [ + [ + 235, + 226, + 228 + ] + ], + [ + [ + 236, + 225, + 237 + ] + ], + [ + [ + 237, + 225, + 223 + ] + ], + [ + [ + 238, + 231, + 232 + ] + ], + [ + [ + 232, + 231, + 229 + ] + ], + [ + [ + 239, + 222, + 238 + ] + ], + [ + [ + 238, + 222, + 231 + ] + ], + [ + [ + 233, + 230, + 234 + ] + ], + [ + [ + 234, + 230, + 226 + ] + ], + [ + [ + 240, + 227, + 241 + ] + ], + [ + [ + 241, + 227, + 224 + ] + ], + [ + [ + 235, + 228, + 240 + ] + ], + [ + [ + 240, + 228, + 227 + ] + ], + [ + [ + 237, + 223, + 239 + ] + ], + [ + [ + 239, + 223, + 222 + ] + ], + [ + [ + 241, + 224, + 236 + ] + ], + [ + [ + 236, + 224, + 225 + ] + ], + [ + [ + 236, + 237, + 241 + ] + ], + [ + [ + 233, + 234, + 232 + ] + ], + [ + [ + 241, + 234, + 240 + ] + ], + [ + [ + 240, + 234, + 235 + ] + ], + [ + [ + 241, + 239, + 234 + ] + ], + [ + [ + 237, + 239, + 241 + ] + ], + [ + [ + 239, + 232, + 234 + ] + ], + [ + [ + 238, + 232, + 239 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 225, + 224, + 223 + ] + ], + [ + [ + 227, + 226, + 224 + ] + ], + [ + [ + 223, + 224, + 242 + ] + ], + [ + [ + 242, + 224, + 226 + ] + ], + [ + [ + 227, + 228, + 226 + ] + ], + [ + [ + 226, + 229, + 222 + ] + ], + [ + [ + 242, + 226, + 222 + ] + ], + [ + [ + 229, + 231, + 222 + ] + ], + [ + [ + 230, + 229, + 226 + ] + ], + [ + [ + 243, + 229, + 244 + ] + ], + [ + [ + 244, + 229, + 230 + ] + ], + [ + [ + 245, + 242, + 246 + ] + ], + [ + [ + 246, + 242, + 222 + ] + ], + [ + [ + 247, + 248, + 249 + ] + ], + [ + [ + 249, + 248, + 228 + ] + ], + [ + [ + 228, + 248, + 226 + ] + ], + [ + [ + 250, + 225, + 251 + ] + ], + [ + [ + 251, + 225, + 223 + ] + ], + [ + [ + 252, + 231, + 243 + ] + ], + [ + [ + 243, + 231, + 229 + ] + ], + [ + [ + 246, + 222, + 252 + ] + ], + [ + [ + 252, + 222, + 231 + ] + ], + [ + [ + 244, + 230, + 248 + ] + ], + [ + [ + 248, + 230, + 226 + ] + ], + [ + [ + 253, + 227, + 254 + ] + ], + [ + [ + 254, + 227, + 224 + ] + ], + [ + [ + 249, + 228, + 253 + ] + ], + [ + [ + 253, + 228, + 227 + ] + ], + [ + [ + 255, + 245, + 247 + ] + ], + [ + [ + 247, + 245, + 248 + ] + ], + [ + [ + 251, + 223, + 245 + ] + ], + [ + [ + 255, + 251, + 245 + ] + ], + [ + [ + 245, + 223, + 242 + ] + ], + [ + [ + 254, + 224, + 250 + ] + ], + [ + [ + 250, + 224, + 225 + ] + ], + [ + [ + 244, + 248, + 243 + ] + ], + [ + [ + 243, + 248, + 246 + ] + ], + [ + [ + 246, + 248, + 245 + ] + ], + [ + [ + 243, + 246, + 252 + ] + ], + [ + [ + 251, + 255, + 254 + ] + ], + [ + [ + 253, + 247, + 249 + ] + ], + [ + [ + 253, + 254, + 247 + ] + ], + [ + [ + 250, + 251, + 254 + ] + ], + [ + [ + 254, + 255, + 247 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 256, + 224, + 257 + ] + ], + [ + [ + 256, + 225, + 224 + ] + ], + [ + [ + 224, + 226, + 257 + ] + ], + [ + [ + 223, + 225, + 256 + ] + ], + [ + [ + 226, + 224, + 227 + ] + ], + [ + [ + 242, + 257, + 226 + ] + ], + [ + [ + 227, + 228, + 226 + ] + ], + [ + [ + 226, + 229, + 222 + ] + ], + [ + [ + 242, + 226, + 222 + ] + ], + [ + [ + 229, + 231, + 222 + ] + ], + [ + [ + 230, + 229, + 226 + ] + ], + [ + [ + 258, + 229, + 230 + ] + ], + [ + [ + 259, + 258, + 230 + ] + ], + [ + [ + 260, + 242, + 222 + ] + ], + [ + [ + 261, + 260, + 222 + ] + ], + [ + [ + 262, + 257, + 260 + ] + ], + [ + [ + 263, + 262, + 260 + ] + ], + [ + [ + 260, + 257, + 242 + ] + ], + [ + [ + 264, + 265, + 266 + ] + ], + [ + [ + 266, + 265, + 228 + ] + ], + [ + [ + 228, + 265, + 226 + ] + ], + [ + [ + 267, + 225, + 268 + ] + ], + [ + [ + 268, + 225, + 223 + ] + ], + [ + [ + 269, + 231, + 229 + ] + ], + [ + [ + 258, + 269, + 229 + ] + ], + [ + [ + 261, + 222, + 231 + ] + ], + [ + [ + 269, + 261, + 231 + ] + ], + [ + [ + 259, + 230, + 265 + ] + ], + [ + [ + 265, + 230, + 226 + ] + ], + [ + [ + 270, + 271, + 272 + ] + ], + [ + [ + 273, + 270, + 272 + ] + ], + [ + [ + 274, + 227, + 272 + ] + ], + [ + [ + 272, + 227, + 224 + ] + ], + [ + [ + 275, + 256, + 262 + ] + ], + [ + [ + 276, + 275, + 262 + ] + ], + [ + [ + 262, + 256, + 257 + ] + ], + [ + [ + 276, + 262, + 277 + ] + ], + [ + [ + 277, + 262, + 278 + ] + ], + [ + [ + 266, + 228, + 227 + ] + ], + [ + [ + 274, + 266, + 227 + ] + ], + [ + [ + 279, + 280, + 271 + ] + ], + [ + [ + 270, + 279, + 271 + ] + ], + [ + [ + 277, + 278, + 280 + ] + ], + [ + [ + 279, + 277, + 280 + ] + ], + [ + [ + 263, + 260, + 265 + ] + ], + [ + [ + 264, + 263, + 265 + ] + ], + [ + [ + 268, + 223, + 256 + ] + ], + [ + [ + 275, + 268, + 256 + ] + ], + [ + [ + 273, + 272, + 267 + ] + ], + [ + [ + 267, + 224, + 225 + ] + ], + [ + [ + 267, + 272, + 224 + ] + ], + [ + [ + 259, + 265, + 258 + ] + ], + [ + [ + 258, + 265, + 261 + ] + ], + [ + [ + 261, + 265, + 260 + ] + ], + [ + [ + 258, + 261, + 269 + ] + ], + [ + [ + 278, + 262, + 263 + ] + ], + [ + [ + 278, + 263, + 264 + ] + ], + [ + [ + 274, + 272, + 280 + ] + ], + [ + [ + 278, + 264, + 266 + ] + ], + [ + [ + 274, + 278, + 266 + ] + ], + [ + [ + 280, + 278, + 274 + ] + ], + [ + [ + 271, + 280, + 272 + ] + ], + [ + [ + 273, + 267, + 270 + ] + ], + [ + [ + 270, + 268, + 275 + ] + ], + [ + [ + 270, + 267, + 268 + ] + ], + [ + [ + 276, + 277, + 275 + ] + ], + [ + [ + 275, + 279, + 270 + ] + ], + [ + [ + 275, + 277, + 279 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 738411, + "identificatie": "NL.IMBAG.Pand.0796100000242693", + "oorspronkelijk_bouwjaar": 1961, + "status": "Pand in gebruik (niet ingemeten)", + "geconstateerd": false, + "documentdatum": "2019-01-03", + "documentnummer": "8600475", + "voorkomenidentificatie": 2, + "begingeldigheid": "2019-01-03", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2019-01-06T22:00:22.627000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 5.207, + "dak_type": "slanted", + "pw_datum": "2016-12-01", + "pw_actueel": "yes", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + }, + "8049533": + { + "type": "Building", + "geometry": + [ + { + "type": "Solid", + "lod": "1.2", + "boundaries": + [ + [ + [ + [ + 281, + 282, + 283 + ] + ], + [ + [ + 284, + 281, + 285 + ] + ], + [ + [ + 284, + 286, + 281 + ] + ], + [ + [ + 281, + 286, + 282 + ] + ], + [ + [ + 287, + 282, + 288 + ] + ], + [ + [ + 288, + 282, + 286 + ] + ], + [ + [ + 289, + 281, + 290 + ] + ], + [ + [ + 290, + 281, + 283 + ] + ], + [ + [ + 291, + 284, + 292 + ] + ], + [ + [ + 292, + 284, + 285 + ] + ], + [ + [ + 288, + 286, + 291 + ] + ], + [ + [ + 291, + 286, + 284 + ] + ], + [ + [ + 290, + 283, + 287 + ] + ], + [ + [ + 287, + 283, + 282 + ] + ], + [ + [ + 292, + 285, + 289 + ] + ], + [ + [ + 289, + 285, + 281 + ] + ], + [ + [ + 289, + 290, + 287 + ] + ], + [ + [ + 289, + 287, + 288 + ] + ], + [ + [ + 289, + 288, + 291 + ] + ], + [ + [ + 292, + 289, + 291 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "1.3", + "boundaries": + [ + [ + [ + [ + 281, + 282, + 283 + ] + ], + [ + [ + 293, + 281, + 294 + ] + ], + [ + [ + 293, + 286, + 281 + ] + ], + [ + [ + 281, + 286, + 282 + ] + ], + [ + [ + 284, + 294, + 285 + ] + ], + [ + [ + 293, + 294, + 284 + ] + ], + [ + [ + 295, + 282, + 296 + ] + ], + [ + [ + 296, + 282, + 286 + ] + ], + [ + [ + 297, + 281, + 298 + ] + ], + [ + [ + 298, + 281, + 283 + ] + ], + [ + [ + 299, + 284, + 300 + ] + ], + [ + [ + 300, + 284, + 285 + ] + ], + [ + [ + 300, + 285, + 301 + ] + ], + [ + [ + 301, + 285, + 294 + ] + ], + [ + [ + 302, + 303, + 304 + ] + ], + [ + [ + 304, + 303, + 301 + ] + ], + [ + [ + 303, + 293, + 299 + ] + ], + [ + [ + 299, + 293, + 284 + ] + ], + [ + [ + 296, + 286, + 303 + ] + ], + [ + [ + 302, + 296, + 303 + ] + ], + [ + [ + 303, + 286, + 293 + ] + ], + [ + [ + 298, + 283, + 295 + ] + ], + [ + [ + 295, + 283, + 282 + ] + ], + [ + [ + 304, + 301, + 297 + ] + ], + [ + [ + 297, + 301, + 281 + ] + ], + [ + [ + 281, + 301, + 294 + ] + ], + [ + [ + 299, + 300, + 301 + ] + ], + [ + [ + 303, + 299, + 301 + ] + ], + [ + [ + 298, + 295, + 297 + ] + ], + [ + [ + 297, + 296, + 302 + ] + ], + [ + [ + 297, + 295, + 296 + ] + ], + [ + [ + 297, + 302, + 304 + ] + ] + ] + ] + }, + { + "type": "Solid", + "lod": "2.2", + "boundaries": + [ + [ + [ + [ + 286, + 282, + 305 + ] + ], + [ + [ + 281, + 306, + 283 + ] + ], + [ + [ + 305, + 282, + 306 + ] + ], + [ + [ + 305, + 306, + 281 + ] + ], + [ + [ + 284, + 293, + 294 + ] + ], + [ + [ + 284, + 294, + 285 + ] + ], + [ + [ + 293, + 281, + 294 + ] + ], + [ + [ + 305, + 281, + 293 + ] + ], + [ + [ + 307, + 283, + 306 + ] + ], + [ + [ + 308, + 307, + 306 + ] + ], + [ + [ + 309, + 282, + 310 + ] + ], + [ + [ + 310, + 282, + 286 + ] + ], + [ + [ + 311, + 281, + 283 + ] + ], + [ + [ + 307, + 311, + 283 + ] + ], + [ + [ + 312, + 284, + 313 + ] + ], + [ + [ + 313, + 284, + 285 + ] + ], + [ + [ + 313, + 285, + 294 + ] + ], + [ + [ + 314, + 313, + 294 + ] + ], + [ + [ + 315, + 305, + 316 + ] + ], + [ + [ + 316, + 305, + 317 + ] + ], + [ + [ + 317, + 305, + 293 + ] + ], + [ + [ + 316, + 317, + 318 + ] + ], + [ + [ + 318, + 317, + 314 + ] + ], + [ + [ + 317, + 293, + 312 + ] + ], + [ + [ + 312, + 293, + 284 + ] + ], + [ + [ + 310, + 286, + 305 + ] + ], + [ + [ + 315, + 310, + 305 + ] + ], + [ + [ + 308, + 306, + 309 + ] + ], + [ + [ + 309, + 306, + 282 + ] + ], + [ + [ + 318, + 314, + 311 + ] + ], + [ + [ + 311, + 314, + 281 + ] + ], + [ + [ + 281, + 314, + 294 + ] + ], + [ + [ + 312, + 313, + 314 + ] + ], + [ + [ + 317, + 312, + 314 + ] + ], + [ + [ + 308, + 309, + 315 + ] + ], + [ + [ + 315, + 309, + 310 + ] + ], + [ + [ + 311, + 307, + 308 + ] + ], + [ + [ + 311, + 308, + 315 + ] + ], + [ + [ + 311, + 315, + 316 + ] + ], + [ + [ + 318, + 311, + 316 + ] + ] + ] + ], + "semantics": + { + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ], + "values": + [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1 + ] + ] + } + } + ], + "attributes": + { + "fid": 17752313, + "identificatie": "NL.IMBAG.Pand.0796100000245196", + "oorspronkelijk_bouwjaar": 1985, + "status": "Pand in gebruik", + "geconstateerd": false, + "documentdatum": "2010-04-20", + "documentnummer": "10.415", + "voorkomenidentificatie": 1, + "begingeldigheid": "2010-04-20", + "eindgeldigheid": null, + "tijdstipinactief": null, + "tijdstipregistratielv": "2010-11-09T23:31:24.334000+01:00", + "tijdstipeindregistratielv": null, + "tijdstipinactieflv": null, + "tijdstipnietbaglv": null, + "h_maaiveld": 4.702, + "dak_type": "slanted", + "pw_datum": "2016-12-01", + "pw_actueel": "yes", + "pw_bron": "ahn3", + "reconstructie_methode": "tudelft3d-geoflow", + "versie_methode": "v21.03.1", + "kas_warenhuis": false, + "ondergronds_type": "above ground", + "lod11_replace": false, + "reconstruction_skipped": false + } + } + }, + "vertices": + [ + [ + 410422, + 289580, + 2553 + ], + [ + 416340, + 292700, + 2553 + ], + [ + 413729, + 283318, + 2553 + ], + [ + 423629, + 288481, + 2553 + ], + [ + 420433, + 294788, + 2553 + ], + [ + 416340, + 292700, + 9271 + ], + [ + 410422, + 289580, + 9271 + ], + [ + 423629, + 288481, + 9271 + ], + [ + 420433, + 294788, + 9271 + ], + [ + 413729, + 283318, + 9271 + ], + [ + 419780, + 286474, + 2553 + ], + [ + 416411, + 292736, + 2553 + ], + [ + 416411, + 292736, + 9838 + ], + [ + 416411, + 292736, + 5609 + ], + [ + 416340, + 292700, + 9838 + ], + [ + 410422, + 289580, + 9838 + ], + [ + 419780, + 286474, + 9838 + ], + [ + 419780, + 286474, + 5609 + ], + [ + 423629, + 288481, + 5609 + ], + [ + 420433, + 294788, + 5609 + ], + [ + 413729, + 283318, + 9838 + ], + [ + 413202, + 291046, + 2553 + ], + [ + 416509, + 284768, + 2553 + ], + [ + 416411, + 292736, + 7846 + ], + [ + 416411, + 292736, + 5662 + ], + [ + 416340, + 292700, + 7904 + ], + [ + 413202, + 291046, + 10506 + ], + [ + 410422, + 289580, + 8197 + ], + [ + 419780, + 286474, + 7817 + ], + [ + 419780, + 286474, + 5639 + ], + [ + 423629, + 288481, + 5504 + ], + [ + 420433, + 294788, + 5521 + ], + [ + 416509, + 284768, + 10523 + ], + [ + 413729, + 283318, + 8220 + ], + [ + 531023, + 157704, + 2005 + ], + [ + 536071, + 163168, + 2005 + ], + [ + 540462, + 158599, + 2005 + ], + [ + 530779, + 157956, + 2005 + ], + [ + 535127, + 153398, + 2005 + ], + [ + 530779, + 157956, + 9188 + ], + [ + 531023, + 157704, + 9188 + ], + [ + 535127, + 153398, + 9188 + ], + [ + 540462, + 158599, + 9188 + ], + [ + 536071, + 163168, + 9188 + ], + [ + 530779, + 157956, + 9215 + ], + [ + 531023, + 157704, + 9215 + ], + [ + 535127, + 153398, + 9215 + ], + [ + 540462, + 158599, + 9215 + ], + [ + 536071, + 163168, + 9215 + ], + [ + 538420, + 160723, + 2005 + ], + [ + 533092, + 155534, + 2005 + ], + [ + 530779, + 157956, + 7471 + ], + [ + 531023, + 157704, + 7733 + ], + [ + 533092, + 155534, + 9977 + ], + [ + 538420, + 160723, + 9982 + ], + [ + 536071, + 163168, + 7445 + ], + [ + 535127, + 153398, + 7685 + ], + [ + 540462, + 158599, + 7693 + ], + [ + 291809, + 52321, + 1990 + ], + [ + 292284, + 59308, + 1990 + ], + [ + 294874, + 53757, + 1990 + ], + [ + 288587, + 45263, + 1990 + ], + [ + 293930, + 47753, + 1990 + ], + [ + 283886, + 55387, + 1990 + ], + [ + 291809, + 52321, + 7097 + ], + [ + 294874, + 53757, + 7097 + ], + [ + 283886, + 55387, + 7097 + ], + [ + 288587, + 45263, + 7097 + ], + [ + 292284, + 59308, + 7097 + ], + [ + 293930, + 47753, + 7097 + ], + [ + 291809, + 52321, + 6089 + ], + [ + 294874, + 53757, + 6089 + ], + [ + 283886, + 55387, + 6089 + ], + [ + 288587, + 45263, + 6089 + ], + [ + 292284, + 59308, + 6089 + ], + [ + 293930, + 47753, + 6089 + ], + [ + 293354, + 57015, + 1990 + ], + [ + 284994, + 53001, + 1990 + ], + [ + 286634, + 49469, + 1990 + ], + [ + 291953, + 52011, + 1990 + ], + [ + 291809, + 52321, + 8351 + ], + [ + 294874, + 53757, + 8367 + ], + [ + 284994, + 53001, + 5111 + ], + [ + 284994, + 53001, + 6068 + ], + [ + 283886, + 55387, + 5977 + ], + [ + 293354, + 57015, + 6159 + ], + [ + 293354, + 57015, + 5073 + ], + [ + 292284, + 59308, + 6072 + ], + [ + 286634, + 49469, + 8678 + ], + [ + 291953, + 52011, + 8664 + ], + [ + 288587, + 45263, + 4731 + ], + [ + 293930, + 47753, + 4668 + ], + [ + 100552, + 207962, + 2990 + ], + [ + 101462, + 208090, + 2990 + ], + [ + 101142, + 204000, + 2990 + ], + [ + 106114, + 204858, + 2990 + ], + [ + 105894, + 204828, + 2990 + ], + [ + 106412, + 208790, + 2990 + ], + [ + 105880, + 204669, + 2990 + ], + [ + 105880, + 204669, + 5785 + ], + [ + 105894, + 204828, + 5785 + ], + [ + 100552, + 207962, + 5785 + ], + [ + 101142, + 204000, + 5785 + ], + [ + 106412, + 208790, + 5785 + ], + [ + 101462, + 208090, + 5785 + ], + [ + 106114, + 204858, + 5785 + ], + [ + 105880, + 204669, + 5784 + ], + [ + 105894, + 204828, + 5784 + ], + [ + 100552, + 207962, + 5784 + ], + [ + 101142, + 204000, + 5784 + ], + [ + 106412, + 208790, + 5784 + ], + [ + 101462, + 208090, + 5784 + ], + [ + 106114, + 204858, + 5784 + ], + [ + 105880, + 204669, + 5774 + ], + [ + 105894, + 204828, + 5774 + ], + [ + 100552, + 207962, + 5786 + ], + [ + 101142, + 204000, + 5768 + ], + [ + 106412, + 208790, + 5793 + ], + [ + 101462, + 208090, + 5787 + ], + [ + 106114, + 204858, + 5775 + ], + [ + 318428, + 78782, + 1910 + ], + [ + 322204, + 80102, + 1910 + ], + [ + 325505, + 70663, + 1910 + ], + [ + 321729, + 69342, + 1910 + ], + [ + 318428, + 78782, + 6362 + ], + [ + 321729, + 69342, + 6362 + ], + [ + 325505, + 70663, + 6362 + ], + [ + 322204, + 80102, + 6362 + ], + [ + 318428, + 78782, + 6527 + ], + [ + 321729, + 69342, + 6527 + ], + [ + 325505, + 70663, + 6527 + ], + [ + 322204, + 80102, + 6527 + ], + [ + 320005, + 79333, + 1910 + ], + [ + 323331, + 69902, + 1910 + ], + [ + 323331, + 69902, + 7147 + ], + [ + 325505, + 70663, + 4464 + ], + [ + 320005, + 79333, + 7164 + ], + [ + 318428, + 78782, + 5013 + ], + [ + 321729, + 69342, + 4961 + ], + [ + 322204, + 80102, + 4451 + ], + [ + 409317, + 251365, + 2493 + ], + [ + 412438, + 245461, + 2493 + ], + [ + 403642, + 240835, + 2493 + ], + [ + 400523, + 246741, + 2493 + ], + [ + 400523, + 246741, + 9445 + ], + [ + 403642, + 240835, + 9445 + ], + [ + 412438, + 245461, + 9445 + ], + [ + 409317, + 251365, + 9445 + ], + [ + 402968, + 248026, + 2493 + ], + [ + 406036, + 242094, + 2493 + ], + [ + 400523, + 246741, + 5484 + ], + [ + 403642, + 240835, + 5484 + ], + [ + 412438, + 245461, + 9379 + ], + [ + 409317, + 251365, + 9379 + ], + [ + 402968, + 248026, + 9379 + ], + [ + 402968, + 248026, + 5484 + ], + [ + 406036, + 242094, + 9379 + ], + [ + 406036, + 242094, + 5484 + ], + [ + 409257, + 243788, + 2493 + ], + [ + 406140, + 249694, + 2493 + ], + [ + 406140, + 249694, + 10468 + ], + [ + 402968, + 248026, + 5452 + ], + [ + 402968, + 248026, + 7774 + ], + [ + 406036, + 242094, + 7747 + ], + [ + 406036, + 242094, + 5498 + ], + [ + 409257, + 243788, + 10482 + ], + [ + 400523, + 246741, + 5452 + ], + [ + 403642, + 240835, + 5497 + ], + [ + 412438, + 245461, + 7839 + ], + [ + 409317, + 251365, + 7828 + ], + [ + 408781, + 244690, + 10480 + ], + [ + 408781, + 244690, + 10290 + ], + [ + 408558, + 244577, + 10292 + ], + [ + 406974, + 243775, + 10309 + ], + [ + 406974, + 243775, + 8958 + ], + [ + 407223, + 247643, + 10473 + ], + [ + 407223, + 247643, + 10300 + ], + [ + 405671, + 245672, + 10319 + ], + [ + 405671, + 245672, + 8752 + ], + [ + 406301, + 246876, + 10310 + ], + [ + 406301, + 246876, + 9591 + ], + [ + 405868, + 245923, + 10316 + ], + [ + 405868, + 245923, + 8971 + ], + [ + 406485, + 246706, + 10309 + ], + [ + 406485, + 246706, + 9655 + ], + [ + 407068, + 247447, + 10301 + ], + [ + 303521, + 387014, + 3089 + ], + [ + 310142, + 390536, + 3089 + ], + [ + 313063, + 385045, + 3089 + ], + [ + 306442, + 381522, + 3089 + ], + [ + 303521, + 387014, + 8114 + ], + [ + 306442, + 381522, + 8114 + ], + [ + 313063, + 385045, + 8114 + ], + [ + 310142, + 390536, + 8114 + ], + [ + 306442, + 381522, + 8156 + ], + [ + 313063, + 385045, + 8156 + ], + [ + 310142, + 390536, + 8156 + ], + [ + 303521, + 387014, + 8156 + ], + [ + 311582, + 387829, + 3089 + ], + [ + 304987, + 384257, + 3089 + ], + [ + 304987, + 384257, + 9090 + ], + [ + 306442, + 381522, + 6019 + ], + [ + 313063, + 385045, + 5967 + ], + [ + 311582, + 387829, + 9093 + ], + [ + 310142, + 390536, + 6062 + ], + [ + 303521, + 387014, + 6002 + ], + [ + 237572, + 568900, + 1507 + ], + [ + 240368, + 570226, + 1507 + ], + [ + 238832, + 566230, + 1507 + ], + [ + 241657, + 567575, + 1507 + ], + [ + 238832, + 566230, + 4909 + ], + [ + 241657, + 567575, + 4909 + ], + [ + 240368, + 570226, + 4909 + ], + [ + 237572, + 568900, + 4909 + ], + [ + 238832, + 566230, + 4920 + ], + [ + 241657, + 567575, + 4920 + ], + [ + 240368, + 570226, + 4920 + ], + [ + 237572, + 568900, + 4920 + ], + [ + 238832, + 566230, + 5342 + ], + [ + 241657, + 567575, + 5348 + ], + [ + 240368, + 570226, + 3957 + ], + [ + 237572, + 568900, + 3949 + ], + [ + 566806, + 244864, + 2506 + ], + [ + 563315, + 250254, + 2506 + ], + [ + 571929, + 251100, + 2506 + ], + [ + 569733, + 254314, + 2506 + ], + [ + 573288, + 249111, + 2506 + ], + [ + 572194, + 251268, + 2506 + ], + [ + 573476, + 249229, + 2506 + ], + [ + 571272, + 243350, + 2506 + ], + [ + 575435, + 245968, + 2506 + ], + [ + 568816, + 241760, + 2506 + ], + [ + 571272, + 243350, + 9868 + ], + [ + 575435, + 245968, + 9868 + ], + [ + 573288, + 249111, + 9868 + ], + [ + 573476, + 249229, + 9868 + ], + [ + 569733, + 254314, + 9868 + ], + [ + 563315, + 250254, + 9868 + ], + [ + 568816, + 241760, + 9868 + ], + [ + 566806, + 244864, + 9868 + ], + [ + 572194, + 251268, + 9868 + ], + [ + 571929, + 251100, + 9868 + ], + [ + 566730, + 244982, + 2506 + ], + [ + 571272, + 243350, + 5168 + ], + [ + 575435, + 245968, + 5168 + ], + [ + 566730, + 244982, + 5168 + ], + [ + 566806, + 244864, + 5168 + ], + [ + 573288, + 249111, + 10185 + ], + [ + 573288, + 249111, + 5168 + ], + [ + 573476, + 249229, + 10185 + ], + [ + 569733, + 254314, + 10185 + ], + [ + 563315, + 250254, + 10185 + ], + [ + 568816, + 241760, + 5168 + ], + [ + 572194, + 251268, + 10185 + ], + [ + 571929, + 251100, + 10185 + ], + [ + 566730, + 244982, + 10185 + ], + [ + 565431, + 246987, + 2506 + ], + [ + 566223, + 245764, + 2506 + ], + [ + 571272, + 243350, + 5156 + ], + [ + 575435, + 245968, + 5180 + ], + [ + 566730, + 244982, + 5142 + ], + [ + 566806, + 244864, + 5142 + ], + [ + 566223, + 245764, + 8778 + ], + [ + 566730, + 244982, + 8074 + ], + [ + 573288, + 249111, + 8072 + ], + [ + 573288, + 249111, + 5179 + ], + [ + 573476, + 249229, + 8072 + ], + [ + 569733, + 254314, + 8131 + ], + [ + 563315, + 250254, + 8127 + ], + [ + 568816, + 241760, + 5142 + ], + [ + 571720, + 250968, + 11079 + ], + [ + 571720, + 250968, + 9893 + ], + [ + 571929, + 251100, + 9893 + ], + [ + 571929, + 251100, + 11079 + ], + [ + 572194, + 251268, + 9894 + ], + [ + 565431, + 246987, + 11076 + ], + [ + 566223, + 245764, + 10131 + ], + [ + 572178, + 249478, + 10102 + ], + [ + 572178, + 249478, + 8755 + ], + [ + 571721, + 250626, + 10890 + ], + [ + 571721, + 250626, + 9673 + ], + [ + 214082, + 87180, + 2001 + ], + [ + 213876, + 96957, + 2001 + ], + [ + 217060, + 88254, + 2001 + ], + [ + 212480, + 84977, + 2001 + ], + [ + 214602, + 85740, + 2001 + ], + [ + 208674, + 95050, + 2001 + ], + [ + 213876, + 96957, + 10086 + ], + [ + 208674, + 95050, + 10086 + ], + [ + 214082, + 87180, + 10086 + ], + [ + 217060, + 88254, + 10086 + ], + [ + 212480, + 84977, + 10086 + ], + [ + 214602, + 85740, + 10086 + ], + [ + 212155, + 85838, + 2001 + ], + [ + 214302, + 86571, + 2001 + ], + [ + 213876, + 96957, + 10286 + ], + [ + 208674, + 95050, + 10286 + ], + [ + 214082, + 87180, + 10286 + ], + [ + 217060, + 88254, + 10286 + ], + [ + 212480, + 84977, + 5518 + ], + [ + 214602, + 85740, + 5518 + ], + [ + 214302, + 86571, + 5518 + ], + [ + 212155, + 85838, + 10286 + ], + [ + 212155, + 85838, + 5518 + ], + [ + 214302, + 86571, + 10286 + ], + [ + 210118, + 91228, + 2001 + ], + [ + 215285, + 93106, + 2001 + ], + [ + 217060, + 88254, + 7136 + ], + [ + 215285, + 93106, + 11286 + ], + [ + 213876, + 96957, + 8030 + ], + [ + 208674, + 95050, + 8029 + ], + [ + 214082, + 87180, + 7135 + ], + [ + 212480, + 84977, + 4977 + ], + [ + 214602, + 85740, + 4968 + ], + [ + 214302, + 86571, + 5702 + ], + [ + 210118, + 91228, + 11272 + ], + [ + 212155, + 85838, + 6645 + ], + [ + 212155, + 85838, + 5741 + ], + [ + 214302, + 86571, + 6615 + ] + ], + "transform": + { + "scale": + [ + 0.001, + 0.001, + 0.001 + ], + "translate": + [ + 153200.84792065428, + 414118.209989502, + 2.7009999752044678 + ] + } +} \ No newline at end of file diff --git a/tests/data/rotterdam/rotterdam_one.json b/tests/data/rotterdam/rotterdam_one.json index 8f3fb44..29011bf 100644 --- a/tests/data/rotterdam/rotterdam_one.json +++ b/tests/data/rotterdam/rotterdam_one.json @@ -1 +1,713 @@ -{"type":"CityJSON","version":"1.1","CityObjects":{"{CD98680D-A8DD-4106-A18E-15EE2A908D75}":{"type":"Building","attributes":{"TerrainHeight":2.93,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[0,1,2,3,4,5,6]],[[7,8,8,9,10]],[[11,12,13,14]],[[15,16,17,18]],[[1,0,19,15]],[[0,6,20,19]],[[6,5,12,11]],[[5,4,13,12]],[[3,2,7,10]],[[2,1,21,22]],[[9,8,18,17]],[[8,8,18,18]],[[8,7,23,24]],[[11,14,16,20]]],"semantics":{"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[0,0,1,2,3,4,5,6]],[[1,7,8,8,9,10]],[[2,11,12,13,14]],[[null]],[[1,15,16,17,18]],[[1,19,20,21,22]],[[3,23,24,25,26]],[[2,27,28,29,30]],[[1,31,32,33,34]],[[2,35,36,37,38]],[[4,39,40,41,42]],[[5,43,43,44,44]],[[3,45,46,47,48]],[[4,49,50,51,52]]]}},"lod":"2"}]}},"vertices":[[524038,209058,15311],[523657,208741,15311],[527714,203869,15311],[532519,207703,15311],[529417,211476,15311],[525121,207919,15311],[524122,209126,15311],[527714,203869,11136],[529970,201158,11136],[534759,204979,11136],[532519,207703,11136],[524122,209126,12869],[525121,207919,12869],[529417,211476,12869],[528421,212688,12869],[523657,208741,0],[528421,212688,0],[534759,204979,0],[529970,201158,0],[524038,209058,0],[524122,209126,0],[523657,208741,15151],[527714,203869,15151],[527714,203869,10976],[529970,201158,10976]],"transform":{"scale":[0.001,0.001,0.001],"translate":[90409.32,435440.44,0.0]},"appearance":{"textures":[{"type":"JPG","image":"appearances/0320_4_15.jpg"},{"type":"JPG","image":"appearances/0320_4_16.jpg"},{"type":"JPG","image":"appearances/0320_4_18.jpg"},{"type":"JPG","image":"appearances/0320_4_19.jpg"},{"type":"JPG","image":"appearances/0320_4_13.jpg"},{"type":"JPG","image":"appearances/0320_4_17.jpg"}],"vertices-texture":[[0.033,0.8854],[0.0372,0.8803],[0.1023,0.9349],[0.0507,0.9991],[0.0003,0.9573],[0.0482,0.9],[0.0321,0.8865],[0.314,0.3067],[0.2779,0.2764],[0.3291,0.2126],[0.3654,0.2427],[0.2542,0.25],[0.2703,0.2634],[0.2225,0.3206],[0.2064,0.3073],[0.455,0.0706],[0.4507,0.0756],[0.3687,0.0328],[0.3729,0.0279],[0.8032,0.3657],[0.8023,0.3668],[0.7203,0.3239],[0.7212,0.3228],[0.6559,0.4971],[0.6721,0.5104],[0.6587,0.5213],[0.6426,0.508],[0.5318,0.9429],[0.4835,0.9991],[0.4704,0.992],[0.5186,0.9359],[0.9671,0.1619],[0.9159,0.2256],[0.8889,0.222],[0.9399,0.1584],[0.1395,0.0753],[0.2038,0.1301],[0.2028,0.1305],[0.1385,0.0758],[0.1218,0.8882],[0.071,0.9515],[0.0,0.9421],[0.0504,0.8794],[0.7683,0.9476],[0.6973,0.9382],[0.4918,0.2573],[0.5275,0.2877],[0.5265,0.2881],[0.4908,0.2578],[0.4863,0.3843],[0.4381,0.4404],[0.3698,0.4039],[0.4175,0.3483]]},"metadata":{"referenceSystem":"urn:ogc:def:crs:EPSG::28992","geographicalExtent":[90932.97700000001,435641.598,0.0,90944.07900000001,435653.128,15.311],"citymodelIdentifier":"c8d5f7d1-393d-4539-a52c-efaf3694090d","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"rotterdam_one.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"present","materials":"absent","cityfeatureMetadata":{"Building":{"uniqueFeatureCount":1,"aggregateFeatureCount":1,"presentLoDs":{"2":1}}},"presentLoDs":{"2":1},"thematicModels":["Building"]}} \ No newline at end of file +{ + "type": "CityJSON", + "version": "1.1", + "CityObjects": + { + "{CD98680D-A8DD-4106-A18E-15EE2A908D75}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.93, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + ], + [ + [ + 7, + 8, + 8, + 9, + 10 + ] + ], + [ + [ + 11, + 12, + 13, + 14 + ] + ], + [ + [ + 15, + 16, + 17, + 18 + ] + ], + [ + [ + 1, + 0, + 19, + 15 + ] + ], + [ + [ + 0, + 6, + 20, + 19 + ] + ], + [ + [ + 6, + 5, + 12, + 11 + ] + ], + [ + [ + 5, + 4, + 13, + 12 + ] + ], + [ + [ + 3, + 2, + 7, + 10 + ] + ], + [ + [ + 2, + 1, + 21, + 22 + ] + ], + [ + [ + 9, + 8, + 18, + 17 + ] + ], + [ + [ + 8, + 8, + 18, + 18 + ] + ], + [ + [ + 8, + 7, + 23, + 24 + ] + ], + [ + [ + 11, + 14, + 16, + 20 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 0, + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + ], + [ + [ + 1, + 7, + 8, + 8, + 9, + 10 + ] + ], + [ + [ + 2, + 11, + 12, + 13, + 14 + ] + ], + [ + [ + null + ] + ], + [ + [ + 1, + 15, + 16, + 17, + 18 + ] + ], + [ + [ + 1, + 19, + 20, + 21, + 22 + ] + ], + [ + [ + 3, + 23, + 24, + 25, + 26 + ] + ], + [ + [ + 2, + 27, + 28, + 29, + 30 + ] + ], + [ + [ + 1, + 31, + 32, + 33, + 34 + ] + ], + [ + [ + 2, + 35, + 36, + 37, + 38 + ] + ], + [ + [ + 4, + 39, + 40, + 41, + 42 + ] + ], + [ + [ + 5, + 43, + 43, + 44, + 44 + ] + ], + [ + [ + 3, + 45, + 46, + 47, + 48 + ] + ], + [ + [ + 4, + 49, + 50, + 51, + 52 + ] + ] + ] + } + }, + "lod": "2" + } + ] + } + }, + "vertices": + [ + [ + 524038, + 209058, + 15311 + ], + [ + 523657, + 208741, + 15311 + ], + [ + 527714, + 203869, + 15311 + ], + [ + 532519, + 207703, + 15311 + ], + [ + 529417, + 211476, + 15311 + ], + [ + 525121, + 207919, + 15311 + ], + [ + 524122, + 209126, + 15311 + ], + [ + 527714, + 203869, + 11136 + ], + [ + 529970, + 201158, + 11136 + ], + [ + 534759, + 204979, + 11136 + ], + [ + 532519, + 207703, + 11136 + ], + [ + 524122, + 209126, + 12869 + ], + [ + 525121, + 207919, + 12869 + ], + [ + 529417, + 211476, + 12869 + ], + [ + 528421, + 212688, + 12869 + ], + [ + 523657, + 208741, + 0 + ], + [ + 528421, + 212688, + 0 + ], + [ + 534759, + 204979, + 0 + ], + [ + 529970, + 201158, + 0 + ], + [ + 524038, + 209058, + 0 + ], + [ + 524122, + 209126, + 0 + ], + [ + 523657, + 208741, + 15151 + ], + [ + 527714, + 203869, + 15151 + ], + [ + 527714, + 203869, + 10976 + ], + [ + 529970, + 201158, + 10976 + ] + ], + "transform": + { + "scale": + [ + 0.001, + 0.001, + 0.001 + ], + "translate": + [ + 90409.32, + 435440.44, + 0.0 + ] + }, + "appearance": + { + "textures": + [ + { + "type": "JPG", + "image": "appearances/0320_4_15.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_16.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_18.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_19.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_13.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_17.jpg" + } + ], + "vertices-texture": + [ + [ + 0.033, + 0.8854 + ], + [ + 0.0372, + 0.8803 + ], + [ + 0.1023, + 0.9349 + ], + [ + 0.0507, + 0.9991 + ], + [ + 0.0003, + 0.9573 + ], + [ + 0.0482, + 0.9 + ], + [ + 0.0321, + 0.8865 + ], + [ + 0.314, + 0.3067 + ], + [ + 0.2779, + 0.2764 + ], + [ + 0.3291, + 0.2126 + ], + [ + 0.3654, + 0.2427 + ], + [ + 0.2542, + 0.25 + ], + [ + 0.2703, + 0.2634 + ], + [ + 0.2225, + 0.3206 + ], + [ + 0.2064, + 0.3073 + ], + [ + 0.455, + 0.0706 + ], + [ + 0.4507, + 0.0756 + ], + [ + 0.3687, + 0.0328 + ], + [ + 0.3729, + 0.0279 + ], + [ + 0.8032, + 0.3657 + ], + [ + 0.8023, + 0.3668 + ], + [ + 0.7203, + 0.3239 + ], + [ + 0.7212, + 0.3228 + ], + [ + 0.6559, + 0.4971 + ], + [ + 0.6721, + 0.5104 + ], + [ + 0.6587, + 0.5213 + ], + [ + 0.6426, + 0.508 + ], + [ + 0.5318, + 0.9429 + ], + [ + 0.4835, + 0.9991 + ], + [ + 0.4704, + 0.992 + ], + [ + 0.5186, + 0.9359 + ], + [ + 0.9671, + 0.1619 + ], + [ + 0.9159, + 0.2256 + ], + [ + 0.8889, + 0.222 + ], + [ + 0.9399, + 0.1584 + ], + [ + 0.1395, + 0.0753 + ], + [ + 0.2038, + 0.1301 + ], + [ + 0.2028, + 0.1305 + ], + [ + 0.1385, + 0.0758 + ], + [ + 0.1218, + 0.8882 + ], + [ + 0.071, + 0.9515 + ], + [ + 0.0, + 0.9421 + ], + [ + 0.0504, + 0.8794 + ], + [ + 0.7683, + 0.9476 + ], + [ + 0.6973, + 0.9382 + ], + [ + 0.4918, + 0.2573 + ], + [ + 0.5275, + 0.2877 + ], + [ + 0.5265, + 0.2881 + ], + [ + 0.4908, + 0.2578 + ], + [ + 0.4863, + 0.3843 + ], + [ + 0.4381, + 0.4404 + ], + [ + 0.3698, + 0.4039 + ], + [ + 0.4175, + 0.3483 + ] + ] + }, + "metadata": + { + "referenceSystem": "https://www.opengis.net/def/crs/EPSG/0/7415", + "geographicalExtent": + [ + 90932.97700000001, + 435641.598, + 0.0, + 90944.07900000001, + 435653.128, + 15.311 + ] + } +} \ No newline at end of file diff --git a/tests/data/rotterdam/rotterdam_subset.json b/tests/data/rotterdam/rotterdam_subset.json index 0621734..2c347c9 100644 --- a/tests/data/rotterdam/rotterdam_subset.json +++ b/tests/data/rotterdam/rotterdam_subset.json @@ -1 +1,11695 @@ -{"type":"CityJSON","version":"1.1","CityObjects":{"{C9D4A5CF-094A-47DA-97E4-4A3BFD75D3AE}":{"type":"Building","attributes":{"TerrainHeight":3.03,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[0,1,2,3,4]],[[5,6,7,8,9,10,11,12,13,14,15]],[[16,17,18,19,20,21,22,23]],[[24,25,26,27,28,29,30,31,32,33,34,35]],[[3,2,35,36]],[[2,1,24,35]],[[12,11,18,17]],[[11,10,19,18]],[[10,9,34,33]],[[9,8,36,34]],[[8,7,4,3]],[[7,6,0,4]],[[5,15,26,25]],[[15,14,37,26]],[[14,13,27,37]],[[16,23,29,38]],[[23,22,30,29]],[[22,21,31,30]],[[21,20,32,31]],[[20,19,33,32]]],"semantics":{"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[0,0,1,2,3,4]],[[1,5,6,7,8,9,10,11,12,13,14,15]],[[0,16,17,18,19,20,21,22,23]],[[null]],[[0,24,25,26,27]],[[2,28,29,30,31]],[[0,32,33,34,35]],[[0,36,37,38,39]],[[3,40,41,42,43]],[[3,44,45,46,47]],[[0,48,49,50,51]],[[0,52,53,54,55]],[[4,56,57,58,59]],[[3,60,61,62,63]],[[3,64,65,66,67]],[[2,68,69,70,71]],[[2,72,73,74,75]],[[0,76,77,78,79]],[[3,80,81,82,83]],[[2,84,85,86,87]]]}},"lod":"2"}]},"{71B60053-BC28-404D-BAB9-8A642AAC0CF4}":{"type":"Building","attributes":{"TerrainHeight":2.68,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[39,40,41,42,43,44,45,46,47,48]],[[49,50,51,52,53]],[[54,55,56,57,58,59,60,61,62]],[[47,46,62,63]],[[46,45,54,62]],[[45,44,55,54]],[[44,43,56,55]],[[43,42,64,65]],[[42,41,58,57]],[[49,53,61,60]],[[53,52,63,61]],[[52,51,48,47]],[[51,50,39,48]]],"semantics":{"values":[0,0,1,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[5,88,89,90,91,92,93,94,95,96,97]],[[6,98,99,100,101,102]],[[null]],[[7,103,104,105,106]],[[8,107,108,109,110]],[[8,111,112,113,114]],[[7,115,116,117,118]],[[6,119,120,121,122]],[[9,123,124,125,126]],[[10,127,128,129,130]],[[8,131,132,133,134]],[[11,135,136,137,138]],[[11,139,140,141,142]]]}},"lod":"2"}]},"{6271F75F-E8D8-4EE4-AC46-9DB02771A031}":{"type":"Building","attributes":{"TerrainHeight":3.12,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[66,67,68,69,70,71,66]],[[72,73,74,75,76,77,78,79]],[[80,81,82,83,84,85,86,87]],[[68,67,75,74]],[[67,66,88,89]],[[66,66,84,84]],[[66,71,90,84]],[[71,70,85,90]],[[70,69,86,85]],[[73,72,91,87]],[[72,79,80,91]],[[79,78,81,80]],[[78,77,82,81]],[[77,76,92,93]],[[76,75,94,92]]],"semantics":{"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[12,143,144,145,146,147,148,143]],[[13,149,150,151,152,153,154,155,156]],[[null]],[[5,157,158,159,160]],[[11,161,162,163,164]],[[11,165,165,166,166]],[[9,167,168,169,170]],[[8,171,172,173,174]],[[5,175,176,177,178]],[[14,179,180,181,182]],[[14,183,184,185,186]],[[7,187,188,189,190]],[[15,191,192,193,194]],[[11,195,196,197,198]],[[16,199,200,201,202]]]}},"lod":"2"}]},"{DE77E78F-B110-43D2-A55C-8B61911192DE}":{"type":"Building","attributes":{"TerrainHeight":2.88,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[95,96,97,98,99,100,101,102]],[[103,104,105,106,107,108,109,110,111,112,113,114,115]],[[116,117,118,119,120,121,122,123,124,125,126,127]],[[100,99,105,104]],[[99,98,106,105]],[[98,97,107,106]],[[96,95,128,117]],[[95,102,118,128]],[[102,101,119,118]],[[101,100,129,130]],[[115,114,122,121]],[[114,113,123,122]],[[113,112,124,123]],[[112,111,125,124]],[[111,110,126,125]],[[110,109,127,126]],[[109,108,116,127]],[[104,103,131,132]],[[103,115,121,120]]],"semantics":{"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[17,203,204,205,206,207,208,209,210]],[[18,211,212,213,214,215,216,217,218,219,220,221,222,223]],[[null]],[[19,224,225,226,227]],[[20,228,229,230,231]],[[19,232,233,234,235]],[[21,236,237,238,239]],[[20,240,241,242,243]],[[21,244,245,246,247]],[[19,248,249,250,251]],[[22,252,253,254,255]],[[23,256,257,258,259]],[[23,260,261,262,263]],[[21,264,265,266,267]],[[23,268,269,270,271]],[[22,272,273,274,275]],[[22,276,277,278,279]],[[19,280,281,282,283]],[[20,284,285,286,287]]]}},"lod":"2"}]},"{19935DFC-F7B3-4D6E-92DD-C48EE1D1519A}":{"type":"Building","attributes":{"TerrainHeight":2.82,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[133,134,135,136,137,138]],[[139,140,141]],[[142,143,144,145,145,146,147,148,142]],[[149,150,151,152]],[[153,154,155,156,157,158,159]],[[133,138,144,143]],[[137,136,149,152]],[[136,135,141,140]],[[135,134,139,141]],[[134,133,160,161]],[[140,139,162,163]],[[142,142,158,158]],[[142,148,164,158]],[[148,147,159,164]],[[147,146,153,159]],[[146,145,165,153]],[[145,145,165,165]],[[143,142,166,167]],[[151,150,156,155]],[[150,149,157,156]]],"semantics":{"values":[0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[24,288,289,290,291,292,293]],[[25,294,295,296]],[[26,297,298,299,300,300,301,302,303,297]],[[27,304,305,306,307]],[[null]],[[26,308,309,310,311]],[[27,312,313,314,315]],[[28,316,317,318,319]],[[25,320,321,322,323]],[[25,324,325,326,327]],[[25,328,329,330,331]],[[29,332,332,333,333]],[[30,334,335,336,337]],[[29,338,339,340,341]],[[29,342,343,344,345]],[[27,346,347,348,349]],[[29,350,350,351,351]],[[31,352,353,354,355]],[[24,356,357,358,359]],[[32,360,361,362,363]]]}},"lod":"2"}]},"{953BC999-2F92-4B38-95CF-218F7E05AFA9}":{"type":"Building","attributes":{"TerrainHeight":2.66,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[168,169,170,171,172,173,174,175,176,177]],[[178,179,180,181,182]],[[183,184,185]],[[59,58,186,187,188,60]],[[170,169,181,180]],[[169,168,182,181]],[[168,177,188,189]],[[177,176,60,188]],[[174,173,40,39]],[[173,172,41,40]],[[172,171,186,58]],[[179,178,190,187]],[[178,182,189,190]],[[185,184,176,175]],[[184,183,50,49]],[[183,185,175,174]]],"semantics":{"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[33,364,365,366,367,368,369,370,371,372,373]],[[34,374,375,376,377,378]],[[35,379,380,381]],[[null]],[[35,382,383,384,385]],[[34,386,387,388,389]],[[33,390,391,392,393]],[[36,394,395,396,397]],[[37,398,399,400,401]],[[34,402,403,404,405]],[[38,406,407,408,409]],[[37,410,411,412,413]],[[39,414,415,416,417]],[[34,418,419,420,421]],[[35,422,423,424,425]],[[35,426,427,428,429]]]}},"lod":"2"}]},"{8D716FDE-18DD-4FB5-AB06-9D207377240E}":{"type":"Building","attributes":{"TerrainHeight":2.71,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[65,64,191,192,193,194,195,196,196,197,198,199]],[[200,201,202,203,204,205,57,56,206]],[[207,208,209,210]],[[208,208,203,203]],[[65,199,206,56]],[[199,198,200,206]],[[198,197,201,200]],[[197,196,202,201]],[[196,196,202,202]],[[196,195,211,212]],[[195,194,208,207]],[[194,193,204,203]],[[193,192,213,204]],[[192,191,205,213]],[[191,64,57,205]]],"semantics":{"values":[0,1,2,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[40,430,431,432,433,434,435,436,437,438,439,440,441]],[[null]],[[35,442,443,444,445]],[[34,446,446,447,447]],[[41,448,449,450,451]],[[37,452,453,454,455]],[[42,456,457,458,459]],[[43,460,461,462,463]],[[36,464,464,465,465]],[[44,466,467,468,469]],[[34,470,471,472,473]],[[38,474,475,476,477]],[[38,478,479,480,481]],[[38,482,483,484,485]],[[38,486,487,488,489]]]}},"lod":"2"}]},"{C6AAF95B-8C09-4130-AB4D-6777A2A18A2E}":{"type":"Building","attributes":{"TerrainHeight":2.94,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[214,215,216,217]],[[218,219,220,221,221,218]],[[222,28,27,223]],[[214,217,220,219]],[[217,216,13,12]],[[216,215,223,27]],[[218,218,222,222]],[[218,221,38,222]],[[221,221,38,38]],[[221,220,17,16]]],"semantics":{"values":[0,0,1,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[45,490,491,492,493]],[[30,494,495,496,497,497,494]],[[null]],[[46,498,499,500,501]],[[47,502,503,504,505]],[[48,506,507,508,509]],[[28,510,510,511,511]],[[49,512,513,514,515]],[[28,516,516,517,517]],[[25,518,519,520,521]]]}},"lod":"2"}]},"{72390BDE-903C-4C8C-8A3F-2DF5647CD9B4}":{"type":"Building","attributes":{"TerrainHeight":2.59,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[224,225,226,227]],[[228,229,230,231]],[[232,233,234,235,236,232]],[[187,186,237,238,239]],[[227,226,237,186]],[[226,225,238,237]],[[225,224,240,241]],[[228,231,234,233]],[[231,230,171,170]],[[230,229,224,227]],[[229,228,242,243]],[[232,232,239,239]],[[232,236,244,239]],[[236,235,187,244]],[[235,234,180,179]],[[233,232,245,246]]],"semantics":{"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[0,522,523,524,525]],[[3,526,527,528,529]],[[0,530,531,532,533,534,530]],[[null]],[[2,535,536,537,538]],[[4,539,540,541,542]],[[50,543,544,545,546]],[[0,547,548,549,550]],[[0,551,552,553,554]],[[2,555,556,557,558]],[[0,559,560,561,562]],[[0,563,563,564,564]],[[3,565,566,567,568]],[[2,569,570,571,572]],[[50,573,574,575,576]],[[50,577,578,579,580]]]}},"lod":"2"}]},"{8244B286-63E2-436E-9D4E-169B8ACFE9D0}":{"type":"Building","attributes":{"TerrainHeight":3.03,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[247,248,249,250,251,252]],[[253,254,255,256,257,258,259,260,261]],[[262,87,86,263,264,265,266,267,268]],[[248,247,269,270]],[[247,252,261,260]],[[252,251,253,261]],[[251,250,69,68]],[[250,249,263,86]],[[249,248,264,263]],[[260,259,271,272]],[[259,258,273,271]],[[258,257,267,266]],[[257,256,268,267]],[[256,255,262,268]],[[255,254,87,262]],[[254,253,74,73]]],"semantics":{"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[38,581,582,583,584,585,586]],[[41,587,588,589,590,591,592,593,594,595]],[[null]],[[34,596,597,598,599]],[[35,600,601,602,603]],[[43,604,605,606,607]],[[34,608,609,610,611]],[[43,612,613,614,615]],[[38,616,617,618,619]],[[35,620,621,622,623]],[[35,624,625,626,627]],[[39,628,629,630,631]],[[34,632,633,634,635]],[[37,636,637,638,639]],[[51,640,641,642,643]],[[35,644,645,646,647]]]}},"lod":"2"}]},"{87316D28-7574-4763-B9CE-BF6A2DF8092C}":{"type":"Building","attributes":{"TerrainHeight":3.31,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[130,129,274,89,88,275,276,277,130]],[[93,92,94,278,132,131]],[[120,119,279,280,281,84,83,82]],[[89,274,278,94]],[[274,129,132,278]],[[130,130,119,119]],[[130,277,279,119]],[[277,276,280,279]],[[276,275,281,280]],[[275,88,84,281]],[[93,131,120,82]]],"semantics":{"values":[0,0,1,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[20,648,649,650,651,652,653,654,655,656]],[[23,657,658,659,660,661,662]],[[null]],[[19,663,664,665,666]],[[19,667,668,669,670]],[[22,671,671,672,672]],[[18,673,674,675,676]],[[21,677,678,679,680]],[[20,681,682,683,684]],[[52,685,686,687,688]],[[23,689,690,691,692]]]}},"lod":"2"}]},"{CD98680D-A8DD-4106-A18E-15EE2A908D75}":{"type":"Building","attributes":{"TerrainHeight":2.93,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[282,283,284,161,160,285,286]],[[287,288,288,163,162]],[[289,290,167,166]],[[291,158,157,292]],[[283,282,293,291]],[[282,286,294,293]],[[286,285,290,289]],[[285,160,167,290]],[[161,284,287,162]],[[284,283,295,296]],[[163,288,292,157]],[[288,288,292,292]],[[288,287,297,298]],[[289,166,158,294]]],"semantics":{"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[53,693,694,695,696,697,698,699]],[[54,700,701,701,702,703]],[[55,704,705,706,707]],[[null]],[[54,708,709,710,711]],[[54,712,713,714,715]],[[56,716,717,718,719]],[[55,720,721,722,723]],[[54,724,725,726,727]],[[55,728,729,730,731]],[[57,732,733,734,735]],[[58,736,736,737,737]],[[56,738,739,740,741]],[[57,742,743,744,745]]]}},"lod":"2"}]},"{64A9018E-4F56-47CD-941F-43F6F0C4285B}":{"type":"Building","attributes":{"TerrainHeight":2.8,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[299,210,209,300,301,302,303,304,305]],[[212,211,306,307,308,309,310,310,311,312,313,314]],[[315,316,317,25,24,318,203,202]],[[303,302,1,0]],[[302,301,318,24]],[[301,300,319,318]],[[300,209,203,319]],[[212,314,320,202]],[[314,313,315,320]],[[313,312,316,315]],[[312,311,317,316]],[[311,310,25,317]],[[310,310,25,25]],[[310,309,6,5]],[[309,308,304,303]],[[308,307,305,304]],[[307,306,299,305]],[[306,211,210,299]]],"semantics":{"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[59,746,747,748,749,750,751,752,753,754]],[[60,755,756,757,758,759,760,761,761,762,763,764,765]],[[null]],[[61,766,767,768,769]],[[62,770,771,772,773]],[[63,774,775,776,777]],[[64,778,779,780,781]],[[63,782,783,784,785]],[[65,786,787,788,789]],[[66,790,791,792,793]],[[65,794,795,796,797]],[[62,798,799,800,801]],[[63,802,802,803,803]],[[61,804,805,806,807]],[[67,808,809,810,811]],[[63,812,813,814,815]],[[68,816,817,818,819]],[[67,820,821,822,823]]]}},"lod":"2"}]},"{459F183A-D0C2-4F8A-8B5F-C498EFDE366D}":{"type":"Building","attributes":{"TerrainHeight":2.8,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[321,241,241,240,322]],[[323,324,325,326,327,243,242]],[[328,329,246,245]],[[330,331,332,333]],[[154,239,238,334,335,155]],[[241,241,238,238]],[[241,321,334,238]],[[323,242,246,329]],[[243,327,322,240]],[[327,326,321,322]],[[326,325,336,334]],[[325,324,330,333]],[[324,323,138,137]],[[328,245,239,165]],[[329,328,145,144]],[[333,332,335,336]],[[332,331,155,335]],[[331,330,152,151]]],"semantics":{"values":[0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[67,824,825,825,826,827]],[[69,828,829,830,831,832,833,834]],[[70,835,836,837,838]],[[71,839,840,841,842]],[[null]],[[72,843,843,844,844]],[[72,845,846,847,848]],[[70,849,850,851,852]],[[67,853,854,855,856]],[[67,857,858,859,860]],[[63,861,862,863,864]],[[62,865,866,867,868]],[[72,869,870,871,872]],[[69,873,874,875,876]],[[67,877,878,879,880]],[[63,881,882,883,884]],[[69,885,886,887,888]],[[67,889,890,891,892]]]}},"lod":"2"}]},"{237D41CC-991E-4308-8986-42ABFB4F7431}":{"type":"Building","attributes":{"TerrainHeight":2.81,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[337,338,339,340,341]],[[342,343,344,345,346,347]],[[116,348,222,223,349,117]],[[337,341,345,344]],[[341,340,215,214]],[[340,339,349,223]],[[339,338,117,349]],[[338,337,97,96]],[[343,342,350,116]],[[342,347,348,350]],[[347,346,222,348]],[[346,345,219,218]],[[344,343,108,107]]],"semantics":{"values":[0,0,1,2,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[17,893,894,895,896,897]],[[22,898,899,900,901,902,903]],[[null]],[[23,904,905,906,907]],[[21,908,909,910,911]],[[21,912,913,914,915]],[[21,916,917,918,919]],[[21,920,921,922,923]],[[23,924,925,926,927]],[[23,928,929,930,931]],[[22,932,933,934,935]],[[19,936,937,938,939]],[[19,940,941,942,943]]]}},"lod":"2"}]},"{23D8CA22-0C82-4453-A11E-B3F2B3116DB4}":{"type":"Building","attributes":{"TerrainHeight":2.51,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1"},"geometry":[{"type":"MultiSurface","boundaries":[[[351,352,353,354,355]],[[355,354,356,357]],[[358,359,360,361,362,363]],[[359,364,365,366,360]],[[367,368,369,370,371,372,373]],[[353,352,374,375]],[[352,351,376,377]],[[359,358,378,379]],[[358,363,380,378]],[[363,362,368,380]],[[362,361,369,368]],[[364,359,379,367]],[[366,365,357,356]],[[365,364,381,382]]],"semantics":{"values":[0,0,0,0,1,2,2,2,2,2,2,2,2,2],"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}]},"texture":{"rgbTexture":{"values":[[[28,944,945,946,947,948]],[[28,949,950,951,952]],[[32,953,954,955,956,957,958]],[[32,959,960,961,962,963]],[[null]],[[31,964,965,966,967]],[[25,968,969,970,971]],[[28,972,973,974,975]],[[25,976,977,978,979]],[[29,980,981,982,983]],[[73,984,985,986,987]],[[28,988,989,990,991]],[[28,992,993,994,995]],[[31,996,997,998,999]]]}},"lod":"2"}]}},"vertices":[[579471,198217,10652],[578109,202330,10652],[577149,200650,10652],[576461,200406,10652],[577481,197515,10652],[580840,194082,15211],[579471,198217,15211],[577481,197515,15211],[576461,200406,15211],[572239,198909,15211],[571839,200119,15211],[571503,201071,15211],[566651,199359,15211],[569801,190223,15211],[573253,191430,15211],[574658,191922,15211],[565589,202439,11036],[566651,199359,11036],[571503,201071,11036],[571839,200119,11036],[573299,200640,11036],[572089,204029,11036],[570629,203440,11036],[570379,204150,11036],[578109,202330,0],[580840,194082,0],[574658,191922,0],[569801,190223,0],[565589,202440,0],[570379,204150,0],[570629,203440,0],[572089,204029,0],[573299,200640,0],[571839,200119,0],[572239,198909,0],[577149,200650,0],[576461,200406,0],[573253,191430,0],[565589,202439,0],[570797,243602,15561],[564168,237315,15561],[565729,234700,15561],[567699,232349,15561],[579939,236599,15561],[579639,237119,15561],[577849,240080,15561],[575628,242898,15561],[575278,243342,15561],[572730,241249,15561],[572229,244960,18270],[570797,243602,18270],[572730,241249,18270],[575278,243342,18270],[573319,245830,18270],[577849,240080,0],[579639,237119,0],[579939,236599,0],[567699,232349,0],[565729,234700,0],[564168,237315,0],[572229,244960,0],[573319,245830,0],[575628,242898,0],[575278,243342,0],[567699,232349,15531],[579939,236599,15531],[521651,178560,15121],[530436,181770,15121],[527055,191348,15121],[518108,188080,15121],[519835,183439,15121],[520545,181532,15121],[531045,190298,10946],[530288,192529,10946],[527055,191348,10946],[530436,181770,10946],[533309,182820,10946],[534679,185010,10946],[532500,186010,10946],[531878,187840,10946],[531878,187840,0],[532500,186010,0],[534679,185010,0],[533309,182820,0],[521651,178560,0],[519835,183439,0],[518108,188080,0],[530288,192529,0],[521651,178560,14931],[530436,181770,14931],[520545,181532,0],[531045,190298,0],[533309,182820,10756],[534679,185010,10756],[530436,181770,10756],[542775,180778,15361],[546168,181963,15361],[543041,191027,15361],[538693,189491,15361],[540661,183916,15361],[536798,182603,15361],[538000,179109,15361],[541468,180321,15361],[535839,185390,11186],[536798,182603,11186],[540661,183916,11186],[538693,189491,11186],[543041,191027,11186],[542009,194018,11186],[537309,192340,11186],[536539,194489,11186],[535119,194049,11186],[536439,190349,11186],[536229,190260,11186],[536439,189549,11186],[534809,188059,11186],[542009,194018,0],[546168,181963,0],[541468,180321,0],[538000,179109,0],[535839,185390,0],[534809,188059,0],[536439,189549,0],[536229,190260,0],[536439,190349,0],[535119,194049,0],[536539,194489,0],[537309,192340,0],[542775,180778,0],[536798,182603,14931],[538000,179109,14931],[535839,185390,10756],[536798,182603,10756],[529417,211476,15421],[532519,207703,15421],[532560,207735,15421],[534759,204979,15421],[546262,214643,15421],[540961,221032,15421],[532519,207703,11246],[534759,204979,11246],[532560,207735,11246],[528421,212688,12979],[529417,211476,12979],[540961,221032,12979],[539965,222232,12979],[532539,216080,12979],[532287,215891,12979],[532158,215783,12979],[534759,204979,11225],[536809,202539,11225],[548488,211961,11225],[546262,214643,11225],[532539,216080,0],[539965,222233,0],[548488,211961,0],[536809,202539,0],[534759,204979,0],[528421,212688,0],[532287,215891,0],[529417,211476,15311],[532519,207703,15311],[532519,207703,11136],[534759,204979,11136],[532158,215783,0],[539965,222232,0],[528421,212688,12869],[529417,211476,12869],[556944,236298,15581],[557943,235092,15581],[556547,233935,15581],[559739,229799,15581],[565729,234700,15581],[564168,237315,15581],[570797,243602,15581],[570721,243694,15581],[572229,244960,15581],[570319,247380,15581],[556770,236154,13139],[555589,235177,13139],[556547,233935,13139],[557943,235092,13139],[556944,236298,13139],[570797,243602,18290],[572229,244960,18290],[570721,243694,18290],[559739,229799,0],[555589,235177,0],[570319,247380,0],[556944,236298,0],[556770,236154,0],[569278,227795,15531],[570733,223601,15531],[572537,218398,15531],[574125,213820,15531],[574492,213938,15531],[586790,217907,15531],[585097,222739,15531],[581849,232010,15531],[581804,232118,15531],[581849,232010,0],[585097,222739,0],[586790,217907,0],[574125,213820,0],[572537,218398,0],[569278,227795,0],[581804,232118,0],[574492,213938,10972],[574125,213820,10972],[574125,213820,10882],[574492,213938,10882],[574492,213938,15441],[586790,217907,15441],[570733,223601,0],[552424,194337,15301],[555569,185250,15301],[569801,190223,15301],[566651,199359,15301],[551378,197364,11126],[552424,194337,11126],[566651,199359,11126],[565589,202439,11126],[551378,197364,0],[555569,185250,0],[555697,226500,11355],[557008,224920,11355],[560989,228169,11355],[559739,229799,11355],[552384,230489,15651],[555697,226500,15651],[559739,229799,15651],[556547,233935,15651],[551385,231692,13209],[552384,230489,13209],[556547,233935,13209],[555589,235177,13209],[553546,233483,13209],[560989,228169,0],[557008,224920,0],[551385,231692,0],[555697,226500,11145],[557008,224920,11145],[552384,230489,15441],[555697,226500,15441],[553546,233483,0],[551385,231692,12999],[552384,230489,12999],[523801,200746,15211],[514640,197401,15211],[516378,192729,15211],[518108,188080,15211],[527055,191348,15211],[523752,200707,15211],[527055,191348,11036],[530288,192529,11036],[528693,197230,11036],[528259,198510,11036],[528969,200359,11036],[529058,200430,11036],[526409,201700,11036],[523801,200746,11036],[523752,200707,11036],[528693,197230,0],[516378,192729,0],[514640,197401,0],[526409,201700,0],[529058,200430,0],[528969,200359,0],[528259,198510,0],[523801,200746,15151],[514640,197401,15151],[526409,201700,10976],[523801,200746,10976],[529058,200430,10976],[530855,180581,14931],[522689,175770,14931],[523979,176239,14931],[524639,174440,14931],[530855,180581,10756],[524639,174440,0],[523979,176239,0],[522689,175770,0],[524038,209058,15311],[523657,208741,15311],[527714,203869,15311],[525121,207919,15311],[524122,209126,15311],[527714,203869,11136],[529970,201158,11136],[524122,209126,12869],[525121,207919,12869],[523657,208741,0],[529970,201158,0],[524038,209058,0],[524122,209126,0],[523657,208741,15151],[527714,203869,15151],[527714,203869,10976],[529970,201158,10976],[577715,214978,10882],[575210,210689,10882],[575817,208939,10882],[578109,202330,10882],[579471,198217,10882],[579477,198219,10882],[581951,202977,10882],[577715,214978,15441],[581951,202977,15441],[579477,198219,15441],[579471,198217,15441],[580840,194082,15441],[592250,198070,15441],[593099,199900,15441],[588408,213289,15441],[587208,216715,15441],[588408,213289,0],[593099,199900,0],[592250,198070,0],[575817,208939,0],[575210,210689,0],[587208,216715,0],[556909,224840,11145],[555611,226430,11145],[540961,221032,15441],[546262,214643,15441],[557512,224096,15441],[556909,224840,15441],[555611,226430,15441],[539965,222232,12999],[540961,221032,12999],[546262,214643,11245],[548488,211961,11245],[559889,221159,11245],[557512,224096,11245],[556909,224840,0],[559889,221159,0],[557512,224096,0],[543041,191027,15431],[546168,181963,15431],[550917,183624,15431],[555569,185250,15431],[552424,194337,15431],[545329,195203,11256],[542009,194018,11256],[543041,191027,11256],[552424,194337,11256],[551378,197364,11256],[546750,195711,11256],[546750,195711,0],[550917,183624,0],[545329,195203,0],[44869,600609,3767],[46089,598799,3841],[46589,598049,3868],[47790,598782,5021],[46111,601511,5021],[49019,599531,3841],[47279,602359,3841],[50966,606004,9508],[50372,605634,10188],[52496,601650,10188],[55958,603760,6252],[53816,607777,6252],[51304,606215,9122],[46639,603309,5922],[47279,602359,6036],[49019,599531,6235],[46639,603309,0],[53816,607777,0],[55958,603760,0],[46589,598049,0],[46089,598799,0],[44869,600609,0],[47279,602359,0],[46089,598799,3687],[46589,598049,3709],[44869,600609,3426],[46089,598799,3477],[50966,606004,0],[50372,605634,0],[51304,606215,0],[46639,603309,5280],[47279,602359,5277]],"transform":{"scale":[0.001,0.001,0.001],"translate":[90409.32,435440.44,0.0]},"appearance":{"textures":[{"type":"JPG","image":"appearances/0320_7_8.jpg"},{"type":"JPG","image":"appearances/0320_7_4.jpg"},{"type":"JPG","image":"appearances/0320_7_7.jpg"},{"type":"JPG","image":"appearances/0320_7_6.jpg"},{"type":"JPG","image":"appearances/0320_7_5.jpg"},{"type":"JPG","image":"appearances/0320_5_8.jpg"},{"type":"JPG","image":"appearances/0320_5_16.jpg"},{"type":"JPG","image":"appearances/0320_5_14.jpg"},{"type":"JPG","image":"appearances/0320_5_11.jpg"},{"type":"JPG","image":"appearances/0320_5_10.jpg"},{"type":"JPG","image":"appearances/0320_5_12.jpg"},{"type":"JPG","image":"appearances/0320_5_17.jpg"},{"type":"JPG","image":"appearances/0320_5_7.jpg"},{"type":"JPG","image":"appearances/0320_5_9.jpg"},{"type":"JPG","image":"appearances/0320_5_13.jpg"},{"type":"JPG","image":"appearances/0320_5_15.jpg"},{"type":"JPG","image":"appearances/0320_5_18.jpg"},{"type":"JPG","image":"appearances/0320_0_14.jpg"},{"type":"JPG","image":"appearances/0320_0_15.jpg"},{"type":"JPG","image":"appearances/0320_0_21.jpg"},{"type":"JPG","image":"appearances/0320_0_18.jpg"},{"type":"JPG","image":"appearances/0320_0_17.jpg"},{"type":"JPG","image":"appearances/0320_0_19.jpg"},{"type":"JPG","image":"appearances/0320_0_20.jpg"},{"type":"JPG","image":"appearances/0320_3_5.jpg"},{"type":"JPG","image":"appearances/0320_3_18.jpg"},{"type":"JPG","image":"appearances/0320_3_9.jpg"},{"type":"JPG","image":"appearances/0320_3_8.jpg"},{"type":"JPG","image":"appearances/0320_3_17.jpg"},{"type":"JPG","image":"appearances/0320_3_16.jpg"},{"type":"JPG","image":"appearances/0320_3_12.jpg"},{"type":"JPG","image":"appearances/0320_3_19.jpg"},{"type":"JPG","image":"appearances/0320_3_13.jpg"},{"type":"JPG","image":"appearances/0320_6_3.jpg"},{"type":"JPG","image":"appearances/0320_6_17.jpg"},{"type":"JPG","image":"appearances/0320_6_18.jpg"},{"type":"JPG","image":"appearances/0320_6_12.jpg"},{"type":"JPG","image":"appearances/0320_6_14.jpg"},{"type":"JPG","image":"appearances/0320_6_7.jpg"},{"type":"JPG","image":"appearances/0320_6_15.jpg"},{"type":"JPG","image":"appearances/0320_6_2.jpg"},{"type":"JPG","image":"appearances/0320_6_9.jpg"},{"type":"JPG","image":"appearances/0320_6_4.jpg"},{"type":"JPG","image":"appearances/0320_6_8.jpg"},{"type":"JPG","image":"appearances/0320_6_16.jpg"},{"type":"JPG","image":"appearances/0320_3_6.jpg"},{"type":"JPG","image":"appearances/0320_3_14.jpg"},{"type":"JPG","image":"appearances/0320_3_11.jpg"},{"type":"JPG","image":"appearances/0320_3_7.jpg"},{"type":"JPG","image":"appearances/0320_3_10.jpg"},{"type":"JPG","image":"appearances/0320_7_9.jpg"},{"type":"JPG","image":"appearances/0320_6_10.jpg"},{"type":"JPG","image":"appearances/0320_0_16.jpg"},{"type":"JPG","image":"appearances/0320_4_15.jpg"},{"type":"JPG","image":"appearances/0320_4_16.jpg"},{"type":"JPG","image":"appearances/0320_4_18.jpg"},{"type":"JPG","image":"appearances/0320_4_19.jpg"},{"type":"JPG","image":"appearances/0320_4_13.jpg"},{"type":"JPG","image":"appearances/0320_4_17.jpg"},{"type":"JPG","image":"appearances/0320_1_6.jpg"},{"type":"JPG","image":"appearances/0320_1_4.jpg"},{"type":"JPG","image":"appearances/0320_1_16.jpg"},{"type":"JPG","image":"appearances/0320_1_10.jpg"},{"type":"JPG","image":"appearances/0320_1_14.jpg"},{"type":"JPG","image":"appearances/0320_1_13.jpg"},{"type":"JPG","image":"appearances/0320_1_12.jpg"},{"type":"JPG","image":"appearances/0320_1_5.jpg"},{"type":"JPG","image":"appearances/0320_1_17.jpg"},{"type":"JPG","image":"appearances/0320_1_8.jpg"},{"type":"JPG","image":"appearances/0320_1_7.jpg"},{"type":"JPG","image":"appearances/0320_1_11.jpg"},{"type":"JPG","image":"appearances/0320_1_9.jpg"},{"type":"JPG","image":"appearances/0320_1_15.jpg"},{"type":"JPG","image":"appearances/0320_3_15.jpg"}],"vertices-texture":[[0.1514,0.3331],[0.2061,0.3519],[0.1836,0.3645],[0.1802,0.3737],[0.1418,0.3596],[0.2068,0.0061],[0.262,0.025],[0.2523,0.0516],[0.2909,0.0657],[0.2704,0.1221],[0.2865,0.1276],[0.2992,0.1323],[0.2757,0.1971],[0.1538,0.1536],[0.1704,0.1075],[0.1771,0.0887],[0.1831,0.3304],[0.1422,0.3157],[0.1656,0.2511],[0.153,0.2465],[0.1601,0.2271],[0.2051,0.2437],[0.1971,0.2631],[0.2065,0.2666],[0.3389,0.6285],[0.3355,0.6375],[0.2778,0.6018],[0.2812,0.5928],[0.523,0.8407],[0.5006,0.853],[0.4431,0.8171],[0.4653,0.8049],[0.6267,0.1349],[0.6027,0.1989],[0.5798,0.185],[0.6038,0.1211],[0.8823,0.7641],[0.8951,0.7686],[0.8719,0.7851],[0.8592,0.7806],[0.6529,0.0342],[0.6691,0.0396],[0.5853,0.099],[0.5693,0.0937],[0.5656,0.5813],[0.5446,0.6371],[0.4619,0.586],[0.4826,0.5309],[0.1677,0.1938],[0.2064,0.2074],[0.181,0.2251],[0.1424,0.2115],[0.894,0.3789],[0.8841,0.4052],[0.859,0.3896],[0.8689,0.3634],[0.3953,0.2981],[0.3656,0.3807],[0.269,0.3203],[0.2983,0.2387],[0.5648,0.1698],[0.5581,0.1885],[0.4616,0.1279],[0.4682,0.1093],[0.2329,0.2559],[0.2163,0.3021],[0.12,0.2408],[0.1364,0.1952],[0.3546,0.6923],[0.3306,0.7553],[0.2712,0.7191],[0.295,0.6566],[0.9744,0.6729],[0.9839,0.6762],[0.9238,0.7193],[0.9144,0.716],[0.0684,0.6113],[0.0602,0.6305],[0.0008,0.5941],[0.0089,0.5751],[0.4106,0.1615],[0.4558,0.1776],[0.3954,0.2204],[0.3506,0.2044],[0.6034,0.8345],[0.5963,0.8539],[0.5255,0.8099],[0.5325,0.7906],[0.7893,0.9113],[0.7049,0.9998],[0.6699,0.9788],[0.6385,0.9523],[0.6959,0.7885],[0.7029,0.7925],[0.7425,0.8166],[0.7801,0.8465],[0.7861,0.8512],[0.7579,0.8853],[0.3469,0.3035],[0.3652,0.2844],[0.3967,0.3104],[0.3685,0.3445],[0.3352,0.3181],[0.3455,0.9351],[0.3514,0.9398],[0.2731,0.9999],[0.2673,0.9953],[0.6942,0.6107],[0.732,0.6404],[0.6532,0.7002],[0.6159,0.6708],[0.4537,0.2849],[0.4933,0.3089],[0.4141,0.3683],[0.3749,0.3447],[0.1701,0.8977],[0.1771,0.9018],[0.0977,0.9612],[0.0908,0.9572],[0.6469,0.7017],[0.5885,0.8653],[0.5883,0.8652],[0.6467,0.7016],[0.1048,0.6847],[0.1358,0.7112],[0.0309,0.7588],[0.0002,0.7325],[0.7683,0.5655],[0.7565,0.5798],[0.6657,0.519],[0.6774,0.5049],[0.0925,0.6306],[0.1259,0.6569],[0.0339,0.7277],[0.001,0.7019],[0.3617,0.0989],[0.3337,0.1328],[0.315,0.1317],[0.3429,0.0979],[0.127,0.9649],[0.1581,0.991],[0.1393,0.9995],[0.1082,0.9735],[0.368,0.3254],[0.4114,0.2079],[0.5396,0.2536],[0.4954,0.3734],[0.4333,0.35],[0.4078,0.3404],[0.2637,0.3797],[0.2935,0.3899],[0.2776,0.433],[0.1498,0.3874],[0.164,0.3491],[0.1933,0.3309],[0.2065,0.3601],[0.2309,0.3685],[0.5073,0.6934],[0.6356,0.7386],[0.6116,0.7569],[0.4838,0.7119],[0.5058,0.5947],[0.4626,0.7116],[0.4614,0.7114],[0.5046,0.5945],[0.8442,0.8452],[0.8779,0.8049],[0.368,0.9455],[0.4074,0.9606],[0.3139,0.9996],[0.2751,0.9846],[0.4679,0.0055],[0.4932,0.0153],[0.3995,0.0541],[0.3745,0.0445],[0.4199,0.9371],[0.4815,0.9608],[0.387,0.9994],[0.3262,0.976],[0.7522,0.7355],[0.782,0.7456],[0.7209,0.793],[0.6913,0.783],[0.4627,0.0073],[0.4955,0.0184],[0.4341,0.0658],[0.4015,0.0548],[0.2406,0.87],[0.265,0.8782],[0.2034,0.9255],[0.1792,0.9173],[0.2191,0.6312],[0.2325,0.6602],[0.1707,0.7073],[0.1575,0.6784],[0.9458,0.5137],[0.9164,0.5317],[0.9152,0.5309],[0.9446,0.5129],[0.2438,0.0921],[0.2298,0.1302],[0.2286,0.13],[0.2427,0.0919],[0.7252,0.3039],[0.7415,0.2586],[0.8624,0.3018],[0.8413,0.3599],[0.7669,0.3327],[0.7489,0.3844],[0.7023,0.3678],[0.7189,0.3214],[0.0379,0.5246],[0.0009,0.5114],[0.0189,0.4599],[0.093,0.487],[0.114,0.4291],[0.1538,0.4433],[0.1309,0.5059],[0.1594,0.5165],[0.1534,0.5354],[0.1042,0.5173],[0.103,0.5201],[0.0935,0.5172],[0.0734,0.5387],[0.7671,0.6161],[0.7486,0.6672],[0.7249,0.6546],[0.7434,0.6037],[0.6793,0.3834],[0.7532,0.4104],[0.7269,0.4221],[0.6532,0.3952],[0.7234,0.5234],[0.7018,0.5808],[0.6785,0.5682],[0.7,0.5109],[0.843,0.1394],[0.8267,0.1848],[0.7311,0.1185],[0.7472,0.0737],[0.65,0.9817],[0.6437,0.9991],[0.5481,0.9326],[0.5543,0.9154],[0.9582,0.9532],[0.9415,0.9996],[0.8461,0.9325],[0.8626,0.8867],[0.5293,0.9817],[0.5756,0.9982],[0.5729,0.9994],[0.5266,0.9829],[0.9124,0.4149],[0.8923,0.4361],[0.8303,0.4034],[0.8502,0.3824],[0.0702,0.6415],[0.0796,0.6444],[0.0097,0.675],[0.0004,0.6721],[0.9758,0.1109],[0.9745,0.1137],[0.9126,0.081],[0.9139,0.0782],[0.321,0.793],[0.3699,0.811],[0.2995,0.8415],[0.2511,0.8236],[0.7699,0.3091],[0.7637,0.3278],[0.7023,0.2951],[0.7085,0.2766],[0.353,0.3853],[0.3817,0.3956],[0.3195,0.4433],[0.2911,0.4332],[0.8289,0.9372],[0.8054,0.9991],[0.744,0.9657],[0.7673,0.9044],[0.7741,0.5195],[0.8109,0.5327],[0.8082,0.5339],[0.7714,0.5207],[0.4027,0.893],[0.438,0.9071],[0.3683,0.9375],[0.3334,0.9236],[0.3289,0.471],[0.2785,0.4293],[0.2789,0.4287],[0.2421,0.3991],[0.372,0.2455],[0.4574,0.3168],[0.6013,0.2603],[0.5649,0.2304],[0.6018,0.2597],[0.4695,0.9042],[0.4533,0.8908],[0.5816,0.7369],[0.5976,0.7503],[0.515,0.8493],[0.5125,0.8527],[0.511,0.8544],[0.0325,0.7906],[0.0001,0.7629],[0.1273,0.608],[0.1628,0.6382],[0.5958,0.3409],[0.4661,0.492],[0.4532,0.4847],[0.5827,0.3338],[0.4886,0.5166],[0.3578,0.6696],[0.3303,0.651],[0.4606,0.4985],[0.0964,0.3606],[0.1328,0.3902],[0.1056,0.4016],[0.0693,0.3721],[0.8465,0.4104],[0.846,0.4109],[0.8188,0.4075],[0.8192,0.4069],[0.0015,0.4992],[0.0513,0.541],[0.0506,0.5413],[0.0008,0.4995],[0.5654,0.1972],[0.6012,0.2274],[0.6005,0.2277],[0.5647,0.1976],[0.6005,0.645],[0.5309,0.655],[0.9508,0.7969],[0.9088,0.8457],[0.8404,0.8084],[0.8819,0.76],[0.6002,0.6406],[0.5988,0.6423],[0.5304,0.605],[0.5318,0.6033],[0.4543,0.0574],[0.4517,0.0607],[0.3833,0.0233],[0.3858,0.02],[0.9585,0.9025],[0.8752,0.9995],[0.8076,0.9611],[0.8901,0.8651],[0.7445,0.257],[0.6762,0.2653],[0.0235,0.8748],[0.0395,0.8882],[0.0388,0.8885],[0.0228,0.8751],[0.8812,0.0563],[0.7541,0.2111],[0.6818,0.1621],[0.8078,0.0086],[0.4023,0.5008],[0.4344,0.5284],[0.3625,0.5589],[0.3307,0.5316],[0.5825,0.7059],[0.5664,0.6925],[0.5509,0.7111],[0.4956,0.6682],[0.5615,0.5881],[0.5965,0.6092],[0.6809,0.5207],[0.6822,0.5217],[0.6992,0.5015],[0.7315,0.5272],[0.9445,0.4425],[0.9313,0.4582],[0.9149,0.4452],[0.9305,0.4267],[0.9465,0.4402],[0.1601,0.2307],[0.1418,0.2498],[0.1589,0.2296],[0.0291,0.1053],[0.0134,0.1236],[0.0009,0.1158],[0.0166,0.0976],[0.8951,0.064],[0.9111,0.0774],[0.8944,0.0848],[0.8785,0.0713],[0.9626,0.3434],[0.8121,0.5187],[0.7351,0.4675],[0.8838,0.2944],[0.1918,0.6324],[0.2242,0.658],[0.1461,0.7188],[0.1141,0.6935],[0.2591,0.7876],[0.1753,0.8753],[0.1752,0.8753],[0.259,0.7875],[0.8392,0.1682],[0.8743,0.189],[0.8742,0.1891],[0.8391,0.1682],[0.1725,0.5502],[0.1062,0.6299],[0.0009,0.5654],[0.0664,0.4868],[0.5103,0.2135],[0.497,0.2289],[0.4306,0.1877],[0.4437,0.1724],[0.9648,0.2113],[0.9628,0.2136],[0.8965,0.1724],[0.8984,0.1701],[0.9809,0.9793],[0.9636,0.9991],[0.95,0.99],[0.9672,0.9702],[0.1603,0.2082],[0.1422,0.2272],[0.142,0.2272],[0.1602,0.2081],[0.1366,0.1258],[0.1378,0.1268],[0.119,0.1353],[0.1178,0.1343],[0.3061,0.8355],[0.2477,0.9991],[0.187,0.9773],[0.131,0.9572],[0.0616,0.9323],[0.0005,0.9104],[0.0021,0.9054],[0.0567,0.741],[0.0567,0.7411],[0.1212,0.7644],[0.2449,0.8092],[0.2463,0.8099],[0.2394,0.393],[0.2378,0.3979],[0.2372,0.3975],[0.2388,0.3927],[0.9497,0.2053],[0.9784,0.2475],[0.3733,0.3002],[0.4334,0.3251],[0.3534,0.3841],[0.2941,0.3595],[0.3416,0.2382],[0.343,0.2388],[0.2631,0.2978],[0.2616,0.2972],[0.7405,0.898],[0.8647,0.9414],[0.7832,0.9998],[0.6605,0.957],[0.8627,0.0801],[0.9275,0.1027],[0.8451,0.1609],[0.7812,0.1385],[0.6593,0.1004],[0.5563,0.0407],[0.9591,0.4461],[0.9044,0.6105],[0.9038,0.6102],[0.9585,0.4458],[0.9464,0.7824],[0.9448,0.7873],[0.9145,0.769],[0.9161,0.7641],[0.6191,0.5652],[0.6797,0.587],[0.5777,0.6356],[0.5177,0.6141],[0.1026,0.7149],[0.1715,0.7397],[0.0686,0.788],[0.0005,0.7635],[0.7877,0.4936],[0.8433,0.5136],[0.7397,0.5616],[0.6848,0.5419],[0.6216,0.8485],[0.6819,0.8702],[0.5776,0.918],[0.518,0.8966],[0.322,0.9068],[0.2007,0.8634],[0.269,0.6731],[0.3909,0.7166],[0.8803,0.3976],[0.84,0.3832],[0.9088,0.1937],[0.9497,0.2083],[0.3868,0.8112],[0.3162,0.9991],[0.2932,0.9854],[0.3636,0.7981],[0.7773,0.3954],[0.8997,0.4375],[0.8992,0.4379],[0.7768,0.3958],[0.8735,0.7444],[0.8052,0.9347],[0.7091,0.8707],[0.7767,0.6828],[0.3951,0.6406],[0.3337,0.6464],[0.6844,0.1605],[0.6133,0.3475],[0.5533,0.3116],[0.6237,0.1262],[0.3944,0.6341],[0.3336,0.6382],[0.3497,0.6841],[0.3908,0.6983],[0.3903,0.6986],[0.3492,0.6845],[0.1632,0.6607],[0.1423,0.6429],[0.1861,0.5902],[0.2077,0.6071],[0.7278,0.8693],[0.6748,0.8243],[0.7194,0.7705],[0.7744,0.8139],[0.227,0.2484],[0.2111,0.2349],[0.2576,0.1796],[0.2741,0.1926],[0.2512,0.2197],[0.4164,0.1156],[0.4382,0.1322],[0.3795,0.1778],[0.3579,0.1612],[0.899,0.7659],[0.8552,0.8187],[0.7794,0.7716],[0.8228,0.7193],[0.0017,0.5458],[0.0225,0.5634],[0.0211,0.5641],[0.0003,0.5464],[0.4031,0.5899],[0.3563,0.6444],[0.3437,0.6366],[0.3904,0.5822],[0.4059,0.0886],[0.4613,0.1313],[0.461,0.1316],[0.4055,0.0889],[0.7595,0.3506],[0.7148,0.4044],[0.6857,0.3863],[0.7302,0.3327],[0.4664,0.4471],[0.519,0.4918],[0.5176,0.4924],[0.4649,0.4478],[0.0687,0.5179],[0.0008,0.5723],[0.9667,0.4134],[0.9424,0.4416],[0.8753,0.4007],[0.8993,0.3727],[0.0898,0.9065],[0.0669,0.9332],[0.0,0.8919],[0.0227,0.8655],[0.0271,0.8261],[0.0436,0.8388],[0.0433,0.8391],[0.0267,0.8264],[0.0279,0.8096],[0.0437,0.823],[0.0423,0.8236],[0.0265,0.8102],[0.3441,0.8768],[0.2989,0.9994],[0.2364,0.9759],[0.1741,0.9525],[0.2183,0.8327],[0.3436,0.8774],[0.2942,0.2182],[0.3101,0.1751],[0.3728,0.1966],[0.3899,0.2024],[0.4146,0.1931],[0.4156,0.1919],[0.4324,0.2273],[0.4196,0.2621],[0.419,0.2627],[0.4268,0.3052],[0.3799,0.4261],[0.3796,0.426],[0.4265,0.305],[0.0276,0.4192],[0.0271,0.4198],[0.0002,0.416],[0.0007,0.4153],[0.6515,0.6014],[0.7769,0.6456],[0.7533,0.6641],[0.6283,0.6201],[0.5731,0.247],[0.5291,0.3661],[0.5285,0.366],[0.5725,0.247],[0.0957,0.5712],[0.1573,0.5949],[0.0616,0.6334],[0.0007,0.61],[0.7804,0.2452],[0.8423,0.2691],[0.7458,0.3073],[0.6846,0.2838],[0.1968,0.4622],[0.1835,0.4965],[0.1832,0.4963],[0.1965,0.462],[0.1425,0.0374],[0.1594,0.0727],[0.1591,0.0729],[0.1421,0.0376],[0.6033,0.1706],[0.6024,0.1718],[0.5321,0.1624],[0.5331,0.1612],[0.167,0.7788],[0.1916,0.7692],[0.2187,0.8171],[0.1943,0.8267],[0.6538,0.2222],[0.6709,0.2279],[0.6101,0.2761],[0.5932,0.2703],[0.4512,0.8217],[0.5139,0.8429],[0.4526,0.8909],[0.3904,0.8698],[0.1796,0.5843],[0.1638,0.6271],[0.1632,0.6271],[0.179,0.5842],[0.0635,0.7802],[0.1103,0.7965],[0.083,0.8761],[0.0989,0.8817],[0.0555,0.9993],[0.0182,0.9852],[0.0245,0.968],[0.0004,0.959],[0.0635,0.7803],[0.9716,0.7303],[0.9423,0.7485],[0.9281,0.7869],[0.9123,0.7812],[0.9395,0.7019],[0.9767,0.7149],[0.7948,0.2386],[0.8107,0.2442],[0.7867,0.2625],[0.7708,0.2569],[0.4167,0.4204],[0.3882,0.4989],[0.3645,0.4866],[0.3928,0.4083],[0.2881,0.4446],[0.1962,0.4859],[0.4769,0.7758],[0.414,0.9536],[0.3228,0.9401],[0.3849,0.7645],[0.7051,0.5428],[0.729,0.5518],[0.6376,0.5909],[0.614,0.582],[0.8539,0.7448],[0.8475,0.762],[0.7561,0.7482],[0.7623,0.7312],[0.6454,0.1031],[0.6824,0.1173],[0.5907,0.156],[0.5541,0.142],[0.8402,0.2362],[0.8349,0.2515],[0.7748,0.2201],[0.7801,0.2049],[0.033,0.8854],[0.0372,0.8803],[0.1023,0.9349],[0.0507,0.9991],[0.0003,0.9573],[0.0482,0.9],[0.0321,0.8865],[0.314,0.3067],[0.2779,0.2764],[0.3291,0.2126],[0.3654,0.2427],[0.2542,0.25],[0.2703,0.2634],[0.2225,0.3206],[0.2064,0.3073],[0.455,0.0706],[0.4507,0.0756],[0.3687,0.0328],[0.3729,0.0279],[0.8032,0.3657],[0.8023,0.3668],[0.7203,0.3239],[0.7212,0.3228],[0.6559,0.4971],[0.6721,0.5104],[0.6587,0.5213],[0.6426,0.508],[0.5318,0.9429],[0.4835,0.9991],[0.4704,0.992],[0.5186,0.9359],[0.9671,0.1619],[0.9159,0.2256],[0.8889,0.222],[0.9399,0.1584],[0.1395,0.0753],[0.2038,0.1301],[0.2028,0.1305],[0.1385,0.0758],[0.1218,0.8882],[0.071,0.9515],[0.0,0.9421],[0.0504,0.8794],[0.7683,0.9476],[0.6973,0.9382],[0.4918,0.2573],[0.5275,0.2877],[0.5265,0.2881],[0.4908,0.2578],[0.4863,0.3843],[0.4381,0.4404],[0.3698,0.4039],[0.4175,0.3483],[0.9333,0.8237],[0.9191,0.8667],[0.9174,0.8715],[0.8758,0.8566],[0.8526,0.8483],[0.7647,0.8167],[0.71,0.798],[0.71,0.7979],[0.7738,0.7655],[0.6544,0.4119],[0.5998,0.5763],[0.6141,0.5333],[0.4539,0.4748],[0.39,0.5073],[0.3899,0.5074],[0.3347,0.4885],[0.3895,0.336],[0.4141,0.3249],[0.5928,0.3896],[0.6385,0.4062],[0.9348,0.7389],[0.9891,0.7576],[0.9876,0.7583],[0.9333,0.7396],[0.2352,0.157],[0.3225,0.1883],[0.2523,0.2227],[0.1658,0.1916],[0.5774,0.5965],[0.6004,0.6048],[0.5301,0.6391],[0.5072,0.6309],[0.4295,0.9056],[0.4709,0.9205],[0.4002,0.9546],[0.3592,0.9399],[0.2898,0.2707],[0.3058,0.2763],[0.2237,0.334],[0.2079,0.3285],[0.3517,0.1757],[0.3975,0.1917],[0.3149,0.2493],[0.2696,0.2334],[0.3917,0.2601],[0.5711,0.3228],[0.4862,0.3795],[0.309,0.3176],[0.7842,0.6979],[0.7596,0.7091],[0.6605,0.6507],[0.6848,0.6397],[0.6376,0.6622],[0.5828,0.8147],[0.4844,0.7544],[0.5385,0.6038],[0.4063,0.7493],[0.3088,0.799],[0.9346,0.717],[0.9894,0.7359],[0.988,0.7366],[0.9332,0.7178],[0.722,0.8993],[0.722,0.8994],[0.6969,0.8838],[0.6969,0.8837],[0.97,0.6396],[0.9064,0.6714],[0.8816,0.6557],[0.9449,0.624],[0.2228,0.9272],[0.3819,0.9853],[0.3518,1.0],[0.1934,0.942],[0.3123,0.1807],[0.298,0.2238],[0.2677,0.2055],[0.282,0.1626],[0.7242,0.9817],[0.7253,0.9804],[0.7463,0.9979],[0.7454,0.9991],[0.3078,0.9197],[0.2229,0.8477],[0.3508,0.6981],[0.3607,0.7063],[0.3819,0.7239],[0.3828,0.7228],[0.4358,0.7677],[0.1637,0.7877],[0.1478,0.7742],[0.2755,0.6225],[0.2915,0.6361],[0.7429,0.3159],[0.7074,0.2858],[0.8315,0.1346],[0.8703,0.1668],[0.8245,0.3598],[0.7507,0.3537],[0.7468,0.7406],[0.7457,0.7419],[0.6713,0.6956],[0.6723,0.6943],[0.4358,0.1795],[0.3074,0.3291],[0.2947,0.3215],[0.4229,0.1722],[0.6318,0.297],[0.6309,0.2981],[0.6017,0.28],[0.6027,0.2788],[0.3385,0.8621],[0.3598,0.8795],[0.3371,0.8971],[0.3159,0.8798],[0.684,0.0113],[0.694,0.0194],[0.6131,0.0821],[0.6033,0.0741],[0.4827,0.8494],[0.3548,0.9991],[0.3269,0.9809],[0.4543,0.8318],[0.0003,0.1824],[0.0847,0.2539],[0.0845,0.254],[0.0002,0.1824],[0.84,0.604],[0.7118,0.7532],[0.6455,0.7132],[0.7724,0.5655],[0.749,0.3506],[0.7648,0.364],[0.7647,0.3641],[0.7489,0.3507],[0.2665,0.5756],[0.3057,0.6073],[0.2467,0.6526],[0.2078,0.6212],[0.6361,0.0965],[0.512,0.2477],[0.4385,0.2],[0.5615,0.0502],[0.4901,0.4878],[0.5254,0.5177],[0.5253,0.5178],[0.49,0.4878],[0.4864,0.7178],[0.3655,0.6746],[0.3883,0.6111],[0.4107,0.5489],[0.5319,0.5923],[0.712,0.3024],[0.6958,0.3466],[0.656,0.3324],[0.7014,0.2074],[0.7416,0.2218],[0.719,0.2835],[0.7722,0.8757],[0.7256,0.9997],[0.7024,0.9866],[0.7488,0.8631],[0.1276,0.8094],[0.2494,0.8515],[0.2486,0.852],[0.1269,0.81],[0.4927,0.9376],[0.4703,0.9998],[0.3738,0.9345],[0.3958,0.8731],[0.4928,0.8074],[0.47,0.8709],[0.3737,0.8048],[0.3962,0.7421],[0.1266,0.3352],[0.2467,0.3781],[0.2463,0.3783],[0.1262,0.3354],[0.1619,0.043],[0.1453,0.0867],[0.0836,0.0528],[0.1,0.0095],[0.7713,0.5047],[0.7642,0.5234],[0.7025,0.4892],[0.7096,0.4707],[0.8286,0.3818],[0.8055,0.4427],[0.7441,0.408],[0.767,0.3476],[0.7259,0.1761],[0.7663,0.1901],[0.7656,0.1906],[0.7252,0.1767],[0.7711,0.1488],[0.8106,0.1629],[0.8101,0.1631],[0.7706,0.149],[0.8946,0.854],[0.918,0.8701],[0.9277,0.8767],[0.9105,0.894],[0.8744,0.8719],[0.9104,0.8517],[0.8744,0.8296],[0.89,0.8105],[0.9272,0.8333],[0.6043,0.1568],[0.5962,0.1663],[0.5435,0.1384],[0.5903,0.083],[0.6433,0.1111],[0.609,0.1513],[0.0002,0.1659],[0.0595,0.1114],[0.0713,0.12],[0.1074,0.1431],[0.053,0.194],[0.0879,0.8748],[0.0782,0.8682],[0.0792,0.868],[0.0889,0.8746],[0.9034,0.6778],[0.8799,0.6616],[0.8822,0.6613],[0.9058,0.6773],[0.7021,0.4862],[0.7104,0.479],[0.7572,0.4895],[0.7523,0.4974],[0.0541,0.231],[0.0589,0.2269],[0.1037,0.237],[0.1009,0.2415],[0.887,0.2757],[0.9219,0.2456],[0.9524,0.2527],[0.9318,0.2859],[0.2292,0.3464],[0.1762,0.3183],[0.2067,0.3034],[0.2594,0.3314],[0.3975,0.8852],[0.4072,0.8309],[0.4574,0.8421],[0.4267,0.8915],[0.9658,0.9575],[0.9297,0.9344],[0.9444,0.9319],[0.9818,0.9548],[0.0352,0.8172],[0.0234,0.8087],[0.0277,0.808],[0.0403,0.8164]]},"metadata":{"referenceSystem":"urn:ogc:def:crs:EPSG::7415","geographicalExtent":[90454.18900000001,435614.88,0.0,91002.41900000001,436048.217,18.29],"citymodelIdentifier":"4f1187eb-92e8-4a91-b73d-30df1f8b1655","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"rotterdam_subset.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"present","materials":"absent","cityfeatureMetadata":{"Building":{"uniqueFeatureCount":16,"aggregateFeatureCount":16,"presentLoDs":{"2":16}}},"presentLoDs":{"2":16},"thematicModels":["Building"]}} \ No newline at end of file +{ + "type": "CityJSON", + "version": "1.1", + "CityObjects": + { + "{C9D4A5CF-094A-47DA-97E4-4A3BFD75D3AE}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 3.03, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 0, + 1, + 2, + 3, + 4 + ] + ], + [ + [ + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + ], + [ + [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + ], + [ + [ + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ] + ], + [ + [ + 3, + 2, + 35, + 36 + ] + ], + [ + [ + 2, + 1, + 24, + 35 + ] + ], + [ + [ + 12, + 11, + 18, + 17 + ] + ], + [ + [ + 11, + 10, + 19, + 18 + ] + ], + [ + [ + 10, + 9, + 34, + 33 + ] + ], + [ + [ + 9, + 8, + 36, + 34 + ] + ], + [ + [ + 8, + 7, + 4, + 3 + ] + ], + [ + [ + 7, + 6, + 0, + 4 + ] + ], + [ + [ + 5, + 15, + 26, + 25 + ] + ], + [ + [ + 15, + 14, + 37, + 26 + ] + ], + [ + [ + 14, + 13, + 27, + 37 + ] + ], + [ + [ + 16, + 23, + 29, + 38 + ] + ], + [ + [ + 23, + 22, + 30, + 29 + ] + ], + [ + [ + 22, + 21, + 31, + 30 + ] + ], + [ + [ + 21, + 20, + 32, + 31 + ] + ], + [ + [ + 20, + 19, + 33, + 32 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 0, + 0, + 1, + 2, + 3, + 4 + ] + ], + [ + [ + 1, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + ], + [ + [ + 0, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + ], + [ + [ + null + ] + ], + [ + [ + 0, + 24, + 25, + 26, + 27 + ] + ], + [ + [ + 2, + 28, + 29, + 30, + 31 + ] + ], + [ + [ + 0, + 32, + 33, + 34, + 35 + ] + ], + [ + [ + 0, + 36, + 37, + 38, + 39 + ] + ], + [ + [ + 3, + 40, + 41, + 42, + 43 + ] + ], + [ + [ + 3, + 44, + 45, + 46, + 47 + ] + ], + [ + [ + 0, + 48, + 49, + 50, + 51 + ] + ], + [ + [ + 0, + 52, + 53, + 54, + 55 + ] + ], + [ + [ + 4, + 56, + 57, + 58, + 59 + ] + ], + [ + [ + 3, + 60, + 61, + 62, + 63 + ] + ], + [ + [ + 3, + 64, + 65, + 66, + 67 + ] + ], + [ + [ + 2, + 68, + 69, + 70, + 71 + ] + ], + [ + [ + 2, + 72, + 73, + 74, + 75 + ] + ], + [ + [ + 0, + 76, + 77, + 78, + 79 + ] + ], + [ + [ + 3, + 80, + 81, + 82, + 83 + ] + ], + [ + [ + 2, + 84, + 85, + 86, + 87 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{71B60053-BC28-404D-BAB9-8A642AAC0CF4}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.68, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48 + ] + ], + [ + [ + 49, + 50, + 51, + 52, + 53 + ] + ], + [ + [ + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62 + ] + ], + [ + [ + 47, + 46, + 62, + 63 + ] + ], + [ + [ + 46, + 45, + 54, + 62 + ] + ], + [ + [ + 45, + 44, + 55, + 54 + ] + ], + [ + [ + 44, + 43, + 56, + 55 + ] + ], + [ + [ + 43, + 42, + 64, + 65 + ] + ], + [ + [ + 42, + 41, + 58, + 57 + ] + ], + [ + [ + 49, + 53, + 61, + 60 + ] + ], + [ + [ + 53, + 52, + 63, + 61 + ] + ], + [ + [ + 52, + 51, + 48, + 47 + ] + ], + [ + [ + 51, + 50, + 39, + 48 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 5, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97 + ] + ], + [ + [ + 6, + 98, + 99, + 100, + 101, + 102 + ] + ], + [ + [ + null + ] + ], + [ + [ + 7, + 103, + 104, + 105, + 106 + ] + ], + [ + [ + 8, + 107, + 108, + 109, + 110 + ] + ], + [ + [ + 8, + 111, + 112, + 113, + 114 + ] + ], + [ + [ + 7, + 115, + 116, + 117, + 118 + ] + ], + [ + [ + 6, + 119, + 120, + 121, + 122 + ] + ], + [ + [ + 9, + 123, + 124, + 125, + 126 + ] + ], + [ + [ + 10, + 127, + 128, + 129, + 130 + ] + ], + [ + [ + 8, + 131, + 132, + 133, + 134 + ] + ], + [ + [ + 11, + 135, + 136, + 137, + 138 + ] + ], + [ + [ + 11, + 139, + 140, + 141, + 142 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{6271F75F-E8D8-4EE4-AC46-9DB02771A031}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 3.12, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 66, + 67, + 68, + 69, + 70, + 71, + 66 + ] + ], + [ + [ + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79 + ] + ], + [ + [ + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87 + ] + ], + [ + [ + 68, + 67, + 75, + 74 + ] + ], + [ + [ + 67, + 66, + 88, + 89 + ] + ], + [ + [ + 66, + 66, + 84, + 84 + ] + ], + [ + [ + 66, + 71, + 90, + 84 + ] + ], + [ + [ + 71, + 70, + 85, + 90 + ] + ], + [ + [ + 70, + 69, + 86, + 85 + ] + ], + [ + [ + 73, + 72, + 91, + 87 + ] + ], + [ + [ + 72, + 79, + 80, + 91 + ] + ], + [ + [ + 79, + 78, + 81, + 80 + ] + ], + [ + [ + 78, + 77, + 82, + 81 + ] + ], + [ + [ + 77, + 76, + 92, + 93 + ] + ], + [ + [ + 76, + 75, + 94, + 92 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 12, + 143, + 144, + 145, + 146, + 147, + 148, + 143 + ] + ], + [ + [ + 13, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156 + ] + ], + [ + [ + null + ] + ], + [ + [ + 5, + 157, + 158, + 159, + 160 + ] + ], + [ + [ + 11, + 161, + 162, + 163, + 164 + ] + ], + [ + [ + 11, + 165, + 165, + 166, + 166 + ] + ], + [ + [ + 9, + 167, + 168, + 169, + 170 + ] + ], + [ + [ + 8, + 171, + 172, + 173, + 174 + ] + ], + [ + [ + 5, + 175, + 176, + 177, + 178 + ] + ], + [ + [ + 14, + 179, + 180, + 181, + 182 + ] + ], + [ + [ + 14, + 183, + 184, + 185, + 186 + ] + ], + [ + [ + 7, + 187, + 188, + 189, + 190 + ] + ], + [ + [ + 15, + 191, + 192, + 193, + 194 + ] + ], + [ + [ + 11, + 195, + 196, + 197, + 198 + ] + ], + [ + [ + 16, + 199, + 200, + 201, + 202 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{DE77E78F-B110-43D2-A55C-8B61911192DE}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.88, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102 + ] + ], + [ + [ + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115 + ] + ], + [ + [ + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127 + ] + ], + [ + [ + 100, + 99, + 105, + 104 + ] + ], + [ + [ + 99, + 98, + 106, + 105 + ] + ], + [ + [ + 98, + 97, + 107, + 106 + ] + ], + [ + [ + 96, + 95, + 128, + 117 + ] + ], + [ + [ + 95, + 102, + 118, + 128 + ] + ], + [ + [ + 102, + 101, + 119, + 118 + ] + ], + [ + [ + 101, + 100, + 129, + 130 + ] + ], + [ + [ + 115, + 114, + 122, + 121 + ] + ], + [ + [ + 114, + 113, + 123, + 122 + ] + ], + [ + [ + 113, + 112, + 124, + 123 + ] + ], + [ + [ + 112, + 111, + 125, + 124 + ] + ], + [ + [ + 111, + 110, + 126, + 125 + ] + ], + [ + [ + 110, + 109, + 127, + 126 + ] + ], + [ + [ + 109, + 108, + 116, + 127 + ] + ], + [ + [ + 104, + 103, + 131, + 132 + ] + ], + [ + [ + 103, + 115, + 121, + 120 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 17, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210 + ] + ], + [ + [ + 18, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223 + ] + ], + [ + [ + null + ] + ], + [ + [ + 19, + 224, + 225, + 226, + 227 + ] + ], + [ + [ + 20, + 228, + 229, + 230, + 231 + ] + ], + [ + [ + 19, + 232, + 233, + 234, + 235 + ] + ], + [ + [ + 21, + 236, + 237, + 238, + 239 + ] + ], + [ + [ + 20, + 240, + 241, + 242, + 243 + ] + ], + [ + [ + 21, + 244, + 245, + 246, + 247 + ] + ], + [ + [ + 19, + 248, + 249, + 250, + 251 + ] + ], + [ + [ + 22, + 252, + 253, + 254, + 255 + ] + ], + [ + [ + 23, + 256, + 257, + 258, + 259 + ] + ], + [ + [ + 23, + 260, + 261, + 262, + 263 + ] + ], + [ + [ + 21, + 264, + 265, + 266, + 267 + ] + ], + [ + [ + 23, + 268, + 269, + 270, + 271 + ] + ], + [ + [ + 22, + 272, + 273, + 274, + 275 + ] + ], + [ + [ + 22, + 276, + 277, + 278, + 279 + ] + ], + [ + [ + 19, + 280, + 281, + 282, + 283 + ] + ], + [ + [ + 20, + 284, + 285, + 286, + 287 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{19935DFC-F7B3-4D6E-92DD-C48EE1D1519A}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.82, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 133, + 134, + 135, + 136, + 137, + 138 + ] + ], + [ + [ + 139, + 140, + 141 + ] + ], + [ + [ + 142, + 143, + 144, + 145, + 145, + 146, + 147, + 148, + 142 + ] + ], + [ + [ + 149, + 150, + 151, + 152 + ] + ], + [ + [ + 153, + 154, + 155, + 156, + 157, + 158, + 159 + ] + ], + [ + [ + 133, + 138, + 144, + 143 + ] + ], + [ + [ + 137, + 136, + 149, + 152 + ] + ], + [ + [ + 136, + 135, + 141, + 140 + ] + ], + [ + [ + 135, + 134, + 139, + 141 + ] + ], + [ + [ + 134, + 133, + 160, + 161 + ] + ], + [ + [ + 140, + 139, + 162, + 163 + ] + ], + [ + [ + 142, + 142, + 158, + 158 + ] + ], + [ + [ + 142, + 148, + 164, + 158 + ] + ], + [ + [ + 148, + 147, + 159, + 164 + ] + ], + [ + [ + 147, + 146, + 153, + 159 + ] + ], + [ + [ + 146, + 145, + 165, + 153 + ] + ], + [ + [ + 145, + 145, + 165, + 165 + ] + ], + [ + [ + 143, + 142, + 166, + 167 + ] + ], + [ + [ + 151, + 150, + 156, + 155 + ] + ], + [ + [ + 150, + 149, + 157, + 156 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 24, + 288, + 289, + 290, + 291, + 292, + 293 + ] + ], + [ + [ + 25, + 294, + 295, + 296 + ] + ], + [ + [ + 26, + 297, + 298, + 299, + 300, + 300, + 301, + 302, + 303, + 297 + ] + ], + [ + [ + 27, + 304, + 305, + 306, + 307 + ] + ], + [ + [ + null + ] + ], + [ + [ + 26, + 308, + 309, + 310, + 311 + ] + ], + [ + [ + 27, + 312, + 313, + 314, + 315 + ] + ], + [ + [ + 28, + 316, + 317, + 318, + 319 + ] + ], + [ + [ + 25, + 320, + 321, + 322, + 323 + ] + ], + [ + [ + 25, + 324, + 325, + 326, + 327 + ] + ], + [ + [ + 25, + 328, + 329, + 330, + 331 + ] + ], + [ + [ + 29, + 332, + 332, + 333, + 333 + ] + ], + [ + [ + 30, + 334, + 335, + 336, + 337 + ] + ], + [ + [ + 29, + 338, + 339, + 340, + 341 + ] + ], + [ + [ + 29, + 342, + 343, + 344, + 345 + ] + ], + [ + [ + 27, + 346, + 347, + 348, + 349 + ] + ], + [ + [ + 29, + 350, + 350, + 351, + 351 + ] + ], + [ + [ + 31, + 352, + 353, + 354, + 355 + ] + ], + [ + [ + 24, + 356, + 357, + 358, + 359 + ] + ], + [ + [ + 32, + 360, + 361, + 362, + 363 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{953BC999-2F92-4B38-95CF-218F7E05AFA9}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.66, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177 + ] + ], + [ + [ + 178, + 179, + 180, + 181, + 182 + ] + ], + [ + [ + 183, + 184, + 185 + ] + ], + [ + [ + 59, + 58, + 186, + 187, + 188, + 60 + ] + ], + [ + [ + 170, + 169, + 181, + 180 + ] + ], + [ + [ + 169, + 168, + 182, + 181 + ] + ], + [ + [ + 168, + 177, + 188, + 189 + ] + ], + [ + [ + 177, + 176, + 60, + 188 + ] + ], + [ + [ + 174, + 173, + 40, + 39 + ] + ], + [ + [ + 173, + 172, + 41, + 40 + ] + ], + [ + [ + 172, + 171, + 186, + 58 + ] + ], + [ + [ + 179, + 178, + 190, + 187 + ] + ], + [ + [ + 178, + 182, + 189, + 190 + ] + ], + [ + [ + 185, + 184, + 176, + 175 + ] + ], + [ + [ + 184, + 183, + 50, + 49 + ] + ], + [ + [ + 183, + 185, + 175, + 174 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 33, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373 + ] + ], + [ + [ + 34, + 374, + 375, + 376, + 377, + 378 + ] + ], + [ + [ + 35, + 379, + 380, + 381 + ] + ], + [ + [ + null + ] + ], + [ + [ + 35, + 382, + 383, + 384, + 385 + ] + ], + [ + [ + 34, + 386, + 387, + 388, + 389 + ] + ], + [ + [ + 33, + 390, + 391, + 392, + 393 + ] + ], + [ + [ + 36, + 394, + 395, + 396, + 397 + ] + ], + [ + [ + 37, + 398, + 399, + 400, + 401 + ] + ], + [ + [ + 34, + 402, + 403, + 404, + 405 + ] + ], + [ + [ + 38, + 406, + 407, + 408, + 409 + ] + ], + [ + [ + 37, + 410, + 411, + 412, + 413 + ] + ], + [ + [ + 39, + 414, + 415, + 416, + 417 + ] + ], + [ + [ + 34, + 418, + 419, + 420, + 421 + ] + ], + [ + [ + 35, + 422, + 423, + 424, + 425 + ] + ], + [ + [ + 35, + 426, + 427, + 428, + 429 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{8D716FDE-18DD-4FB5-AB06-9D207377240E}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.71, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 65, + 64, + 191, + 192, + 193, + 194, + 195, + 196, + 196, + 197, + 198, + 199 + ] + ], + [ + [ + 200, + 201, + 202, + 203, + 204, + 205, + 57, + 56, + 206 + ] + ], + [ + [ + 207, + 208, + 209, + 210 + ] + ], + [ + [ + 208, + 208, + 203, + 203 + ] + ], + [ + [ + 65, + 199, + 206, + 56 + ] + ], + [ + [ + 199, + 198, + 200, + 206 + ] + ], + [ + [ + 198, + 197, + 201, + 200 + ] + ], + [ + [ + 197, + 196, + 202, + 201 + ] + ], + [ + [ + 196, + 196, + 202, + 202 + ] + ], + [ + [ + 196, + 195, + 211, + 212 + ] + ], + [ + [ + 195, + 194, + 208, + 207 + ] + ], + [ + [ + 194, + 193, + 204, + 203 + ] + ], + [ + [ + 193, + 192, + 213, + 204 + ] + ], + [ + [ + 192, + 191, + 205, + 213 + ] + ], + [ + [ + 191, + 64, + 57, + 205 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 40, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441 + ] + ], + [ + [ + null + ] + ], + [ + [ + 35, + 442, + 443, + 444, + 445 + ] + ], + [ + [ + 34, + 446, + 446, + 447, + 447 + ] + ], + [ + [ + 41, + 448, + 449, + 450, + 451 + ] + ], + [ + [ + 37, + 452, + 453, + 454, + 455 + ] + ], + [ + [ + 42, + 456, + 457, + 458, + 459 + ] + ], + [ + [ + 43, + 460, + 461, + 462, + 463 + ] + ], + [ + [ + 36, + 464, + 464, + 465, + 465 + ] + ], + [ + [ + 44, + 466, + 467, + 468, + 469 + ] + ], + [ + [ + 34, + 470, + 471, + 472, + 473 + ] + ], + [ + [ + 38, + 474, + 475, + 476, + 477 + ] + ], + [ + [ + 38, + 478, + 479, + 480, + 481 + ] + ], + [ + [ + 38, + 482, + 483, + 484, + 485 + ] + ], + [ + [ + 38, + 486, + 487, + 488, + 489 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{C6AAF95B-8C09-4130-AB4D-6777A2A18A2E}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.94, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 214, + 215, + 216, + 217 + ] + ], + [ + [ + 218, + 219, + 220, + 221, + 221, + 218 + ] + ], + [ + [ + 222, + 28, + 27, + 223 + ] + ], + [ + [ + 214, + 217, + 220, + 219 + ] + ], + [ + [ + 217, + 216, + 13, + 12 + ] + ], + [ + [ + 216, + 215, + 223, + 27 + ] + ], + [ + [ + 218, + 218, + 222, + 222 + ] + ], + [ + [ + 218, + 221, + 38, + 222 + ] + ], + [ + [ + 221, + 221, + 38, + 38 + ] + ], + [ + [ + 221, + 220, + 17, + 16 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 45, + 490, + 491, + 492, + 493 + ] + ], + [ + [ + 30, + 494, + 495, + 496, + 497, + 497, + 494 + ] + ], + [ + [ + null + ] + ], + [ + [ + 46, + 498, + 499, + 500, + 501 + ] + ], + [ + [ + 47, + 502, + 503, + 504, + 505 + ] + ], + [ + [ + 48, + 506, + 507, + 508, + 509 + ] + ], + [ + [ + 28, + 510, + 510, + 511, + 511 + ] + ], + [ + [ + 49, + 512, + 513, + 514, + 515 + ] + ], + [ + [ + 28, + 516, + 516, + 517, + 517 + ] + ], + [ + [ + 25, + 518, + 519, + 520, + 521 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{72390BDE-903C-4C8C-8A3F-2DF5647CD9B4}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.59, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 224, + 225, + 226, + 227 + ] + ], + [ + [ + 228, + 229, + 230, + 231 + ] + ], + [ + [ + 232, + 233, + 234, + 235, + 236, + 232 + ] + ], + [ + [ + 187, + 186, + 237, + 238, + 239 + ] + ], + [ + [ + 227, + 226, + 237, + 186 + ] + ], + [ + [ + 226, + 225, + 238, + 237 + ] + ], + [ + [ + 225, + 224, + 240, + 241 + ] + ], + [ + [ + 228, + 231, + 234, + 233 + ] + ], + [ + [ + 231, + 230, + 171, + 170 + ] + ], + [ + [ + 230, + 229, + 224, + 227 + ] + ], + [ + [ + 229, + 228, + 242, + 243 + ] + ], + [ + [ + 232, + 232, + 239, + 239 + ] + ], + [ + [ + 232, + 236, + 244, + 239 + ] + ], + [ + [ + 236, + 235, + 187, + 244 + ] + ], + [ + [ + 235, + 234, + 180, + 179 + ] + ], + [ + [ + 233, + 232, + 245, + 246 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 0, + 522, + 523, + 524, + 525 + ] + ], + [ + [ + 3, + 526, + 527, + 528, + 529 + ] + ], + [ + [ + 0, + 530, + 531, + 532, + 533, + 534, + 530 + ] + ], + [ + [ + null + ] + ], + [ + [ + 2, + 535, + 536, + 537, + 538 + ] + ], + [ + [ + 4, + 539, + 540, + 541, + 542 + ] + ], + [ + [ + 50, + 543, + 544, + 545, + 546 + ] + ], + [ + [ + 0, + 547, + 548, + 549, + 550 + ] + ], + [ + [ + 0, + 551, + 552, + 553, + 554 + ] + ], + [ + [ + 2, + 555, + 556, + 557, + 558 + ] + ], + [ + [ + 0, + 559, + 560, + 561, + 562 + ] + ], + [ + [ + 0, + 563, + 563, + 564, + 564 + ] + ], + [ + [ + 3, + 565, + 566, + 567, + 568 + ] + ], + [ + [ + 2, + 569, + 570, + 571, + 572 + ] + ], + [ + [ + 50, + 573, + 574, + 575, + 576 + ] + ], + [ + [ + 50, + 577, + 578, + 579, + 580 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{8244B286-63E2-436E-9D4E-169B8ACFE9D0}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 3.03, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 247, + 248, + 249, + 250, + 251, + 252 + ] + ], + [ + [ + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261 + ] + ], + [ + [ + 262, + 87, + 86, + 263, + 264, + 265, + 266, + 267, + 268 + ] + ], + [ + [ + 248, + 247, + 269, + 270 + ] + ], + [ + [ + 247, + 252, + 261, + 260 + ] + ], + [ + [ + 252, + 251, + 253, + 261 + ] + ], + [ + [ + 251, + 250, + 69, + 68 + ] + ], + [ + [ + 250, + 249, + 263, + 86 + ] + ], + [ + [ + 249, + 248, + 264, + 263 + ] + ], + [ + [ + 260, + 259, + 271, + 272 + ] + ], + [ + [ + 259, + 258, + 273, + 271 + ] + ], + [ + [ + 258, + 257, + 267, + 266 + ] + ], + [ + [ + 257, + 256, + 268, + 267 + ] + ], + [ + [ + 256, + 255, + 262, + 268 + ] + ], + [ + [ + 255, + 254, + 87, + 262 + ] + ], + [ + [ + 254, + 253, + 74, + 73 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 38, + 581, + 582, + 583, + 584, + 585, + 586 + ] + ], + [ + [ + 41, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595 + ] + ], + [ + [ + null + ] + ], + [ + [ + 34, + 596, + 597, + 598, + 599 + ] + ], + [ + [ + 35, + 600, + 601, + 602, + 603 + ] + ], + [ + [ + 43, + 604, + 605, + 606, + 607 + ] + ], + [ + [ + 34, + 608, + 609, + 610, + 611 + ] + ], + [ + [ + 43, + 612, + 613, + 614, + 615 + ] + ], + [ + [ + 38, + 616, + 617, + 618, + 619 + ] + ], + [ + [ + 35, + 620, + 621, + 622, + 623 + ] + ], + [ + [ + 35, + 624, + 625, + 626, + 627 + ] + ], + [ + [ + 39, + 628, + 629, + 630, + 631 + ] + ], + [ + [ + 34, + 632, + 633, + 634, + 635 + ] + ], + [ + [ + 37, + 636, + 637, + 638, + 639 + ] + ], + [ + [ + 51, + 640, + 641, + 642, + 643 + ] + ], + [ + [ + 35, + 644, + 645, + 646, + 647 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{87316D28-7574-4763-B9CE-BF6A2DF8092C}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 3.31, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 130, + 129, + 274, + 89, + 88, + 275, + 276, + 277, + 130 + ] + ], + [ + [ + 93, + 92, + 94, + 278, + 132, + 131 + ] + ], + [ + [ + 120, + 119, + 279, + 280, + 281, + 84, + 83, + 82 + ] + ], + [ + [ + 89, + 274, + 278, + 94 + ] + ], + [ + [ + 274, + 129, + 132, + 278 + ] + ], + [ + [ + 130, + 130, + 119, + 119 + ] + ], + [ + [ + 130, + 277, + 279, + 119 + ] + ], + [ + [ + 277, + 276, + 280, + 279 + ] + ], + [ + [ + 276, + 275, + 281, + 280 + ] + ], + [ + [ + 275, + 88, + 84, + 281 + ] + ], + [ + [ + 93, + 131, + 120, + 82 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 20, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656 + ] + ], + [ + [ + 23, + 657, + 658, + 659, + 660, + 661, + 662 + ] + ], + [ + [ + null + ] + ], + [ + [ + 19, + 663, + 664, + 665, + 666 + ] + ], + [ + [ + 19, + 667, + 668, + 669, + 670 + ] + ], + [ + [ + 22, + 671, + 671, + 672, + 672 + ] + ], + [ + [ + 18, + 673, + 674, + 675, + 676 + ] + ], + [ + [ + 21, + 677, + 678, + 679, + 680 + ] + ], + [ + [ + 20, + 681, + 682, + 683, + 684 + ] + ], + [ + [ + 52, + 685, + 686, + 687, + 688 + ] + ], + [ + [ + 23, + 689, + 690, + 691, + 692 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{CD98680D-A8DD-4106-A18E-15EE2A908D75}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.93, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 282, + 283, + 284, + 161, + 160, + 285, + 286 + ] + ], + [ + [ + 287, + 288, + 288, + 163, + 162 + ] + ], + [ + [ + 289, + 290, + 167, + 166 + ] + ], + [ + [ + 291, + 158, + 157, + 292 + ] + ], + [ + [ + 283, + 282, + 293, + 291 + ] + ], + [ + [ + 282, + 286, + 294, + 293 + ] + ], + [ + [ + 286, + 285, + 290, + 289 + ] + ], + [ + [ + 285, + 160, + 167, + 290 + ] + ], + [ + [ + 161, + 284, + 287, + 162 + ] + ], + [ + [ + 284, + 283, + 295, + 296 + ] + ], + [ + [ + 163, + 288, + 292, + 157 + ] + ], + [ + [ + 288, + 288, + 292, + 292 + ] + ], + [ + [ + 288, + 287, + 297, + 298 + ] + ], + [ + [ + 289, + 166, + 158, + 294 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 53, + 693, + 694, + 695, + 696, + 697, + 698, + 699 + ] + ], + [ + [ + 54, + 700, + 701, + 701, + 702, + 703 + ] + ], + [ + [ + 55, + 704, + 705, + 706, + 707 + ] + ], + [ + [ + null + ] + ], + [ + [ + 54, + 708, + 709, + 710, + 711 + ] + ], + [ + [ + 54, + 712, + 713, + 714, + 715 + ] + ], + [ + [ + 56, + 716, + 717, + 718, + 719 + ] + ], + [ + [ + 55, + 720, + 721, + 722, + 723 + ] + ], + [ + [ + 54, + 724, + 725, + 726, + 727 + ] + ], + [ + [ + 55, + 728, + 729, + 730, + 731 + ] + ], + [ + [ + 57, + 732, + 733, + 734, + 735 + ] + ], + [ + [ + 58, + 736, + 736, + 737, + 737 + ] + ], + [ + [ + 56, + 738, + 739, + 740, + 741 + ] + ], + [ + [ + 57, + 742, + 743, + 744, + 745 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{64A9018E-4F56-47CD-941F-43F6F0C4285B}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.8, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 299, + 210, + 209, + 300, + 301, + 302, + 303, + 304, + 305 + ] + ], + [ + [ + 212, + 211, + 306, + 307, + 308, + 309, + 310, + 310, + 311, + 312, + 313, + 314 + ] + ], + [ + [ + 315, + 316, + 317, + 25, + 24, + 318, + 203, + 202 + ] + ], + [ + [ + 303, + 302, + 1, + 0 + ] + ], + [ + [ + 302, + 301, + 318, + 24 + ] + ], + [ + [ + 301, + 300, + 319, + 318 + ] + ], + [ + [ + 300, + 209, + 203, + 319 + ] + ], + [ + [ + 212, + 314, + 320, + 202 + ] + ], + [ + [ + 314, + 313, + 315, + 320 + ] + ], + [ + [ + 313, + 312, + 316, + 315 + ] + ], + [ + [ + 312, + 311, + 317, + 316 + ] + ], + [ + [ + 311, + 310, + 25, + 317 + ] + ], + [ + [ + 310, + 310, + 25, + 25 + ] + ], + [ + [ + 310, + 309, + 6, + 5 + ] + ], + [ + [ + 309, + 308, + 304, + 303 + ] + ], + [ + [ + 308, + 307, + 305, + 304 + ] + ], + [ + [ + 307, + 306, + 299, + 305 + ] + ], + [ + [ + 306, + 211, + 210, + 299 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 59, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754 + ] + ], + [ + [ + 60, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 761, + 762, + 763, + 764, + 765 + ] + ], + [ + [ + null + ] + ], + [ + [ + 61, + 766, + 767, + 768, + 769 + ] + ], + [ + [ + 62, + 770, + 771, + 772, + 773 + ] + ], + [ + [ + 63, + 774, + 775, + 776, + 777 + ] + ], + [ + [ + 64, + 778, + 779, + 780, + 781 + ] + ], + [ + [ + 63, + 782, + 783, + 784, + 785 + ] + ], + [ + [ + 65, + 786, + 787, + 788, + 789 + ] + ], + [ + [ + 66, + 790, + 791, + 792, + 793 + ] + ], + [ + [ + 65, + 794, + 795, + 796, + 797 + ] + ], + [ + [ + 62, + 798, + 799, + 800, + 801 + ] + ], + [ + [ + 63, + 802, + 802, + 803, + 803 + ] + ], + [ + [ + 61, + 804, + 805, + 806, + 807 + ] + ], + [ + [ + 67, + 808, + 809, + 810, + 811 + ] + ], + [ + [ + 63, + 812, + 813, + 814, + 815 + ] + ], + [ + [ + 68, + 816, + 817, + 818, + 819 + ] + ], + [ + [ + 67, + 820, + 821, + 822, + 823 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{459F183A-D0C2-4F8A-8B5F-C498EFDE366D}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.8, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 321, + 241, + 241, + 240, + 322 + ] + ], + [ + [ + 323, + 324, + 325, + 326, + 327, + 243, + 242 + ] + ], + [ + [ + 328, + 329, + 246, + 245 + ] + ], + [ + [ + 330, + 331, + 332, + 333 + ] + ], + [ + [ + 154, + 239, + 238, + 334, + 335, + 155 + ] + ], + [ + [ + 241, + 241, + 238, + 238 + ] + ], + [ + [ + 241, + 321, + 334, + 238 + ] + ], + [ + [ + 323, + 242, + 246, + 329 + ] + ], + [ + [ + 243, + 327, + 322, + 240 + ] + ], + [ + [ + 327, + 326, + 321, + 322 + ] + ], + [ + [ + 326, + 325, + 336, + 334 + ] + ], + [ + [ + 325, + 324, + 330, + 333 + ] + ], + [ + [ + 324, + 323, + 138, + 137 + ] + ], + [ + [ + 328, + 245, + 239, + 165 + ] + ], + [ + [ + 329, + 328, + 145, + 144 + ] + ], + [ + [ + 333, + 332, + 335, + 336 + ] + ], + [ + [ + 332, + 331, + 155, + 335 + ] + ], + [ + [ + 331, + 330, + 152, + 151 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 67, + 824, + 825, + 825, + 826, + 827 + ] + ], + [ + [ + 69, + 828, + 829, + 830, + 831, + 832, + 833, + 834 + ] + ], + [ + [ + 70, + 835, + 836, + 837, + 838 + ] + ], + [ + [ + 71, + 839, + 840, + 841, + 842 + ] + ], + [ + [ + null + ] + ], + [ + [ + 72, + 843, + 843, + 844, + 844 + ] + ], + [ + [ + 72, + 845, + 846, + 847, + 848 + ] + ], + [ + [ + 70, + 849, + 850, + 851, + 852 + ] + ], + [ + [ + 67, + 853, + 854, + 855, + 856 + ] + ], + [ + [ + 67, + 857, + 858, + 859, + 860 + ] + ], + [ + [ + 63, + 861, + 862, + 863, + 864 + ] + ], + [ + [ + 62, + 865, + 866, + 867, + 868 + ] + ], + [ + [ + 72, + 869, + 870, + 871, + 872 + ] + ], + [ + [ + 69, + 873, + 874, + 875, + 876 + ] + ], + [ + [ + 67, + 877, + 878, + 879, + 880 + ] + ], + [ + [ + 63, + 881, + 882, + 883, + 884 + ] + ], + [ + [ + 69, + 885, + 886, + 887, + 888 + ] + ], + [ + [ + 67, + 889, + 890, + 891, + 892 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{237D41CC-991E-4308-8986-42ABFB4F7431}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.81, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 337, + 338, + 339, + 340, + 341 + ] + ], + [ + [ + 342, + 343, + 344, + 345, + 346, + 347 + ] + ], + [ + [ + 116, + 348, + 222, + 223, + 349, + 117 + ] + ], + [ + [ + 337, + 341, + 345, + 344 + ] + ], + [ + [ + 341, + 340, + 215, + 214 + ] + ], + [ + [ + 340, + 339, + 349, + 223 + ] + ], + [ + [ + 339, + 338, + 117, + 349 + ] + ], + [ + [ + 338, + 337, + 97, + 96 + ] + ], + [ + [ + 343, + 342, + 350, + 116 + ] + ], + [ + [ + 342, + 347, + 348, + 350 + ] + ], + [ + [ + 347, + 346, + 222, + 348 + ] + ], + [ + [ + 346, + 345, + 219, + 218 + ] + ], + [ + [ + 344, + 343, + 108, + 107 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 17, + 893, + 894, + 895, + 896, + 897 + ] + ], + [ + [ + 22, + 898, + 899, + 900, + 901, + 902, + 903 + ] + ], + [ + [ + null + ] + ], + [ + [ + 23, + 904, + 905, + 906, + 907 + ] + ], + [ + [ + 21, + 908, + 909, + 910, + 911 + ] + ], + [ + [ + 21, + 912, + 913, + 914, + 915 + ] + ], + [ + [ + 21, + 916, + 917, + 918, + 919 + ] + ], + [ + [ + 21, + 920, + 921, + 922, + 923 + ] + ], + [ + [ + 23, + 924, + 925, + 926, + 927 + ] + ], + [ + [ + 23, + 928, + 929, + 930, + 931 + ] + ], + [ + [ + 22, + 932, + 933, + 934, + 935 + ] + ], + [ + [ + 19, + 936, + 937, + 938, + 939 + ] + ], + [ + [ + 19, + 940, + 941, + 942, + 943 + ] + ] + ] + } + }, + "lod": "2" + } + ] + }, + "{23D8CA22-0C82-4453-A11E-B3F2B3116DB4}": + { + "type": "Building", + "attributes": + { + "TerrainHeight": 2.51, + "bron_tex": "UltraCAM-X 10cm juni 2008", + "voll_tex": "complete", + "bron_geo": "Lidar 15-30 punten - nov. 2008", + "status": "1" + }, + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 351, + 352, + 353, + 354, + 355 + ] + ], + [ + [ + 355, + 354, + 356, + 357 + ] + ], + [ + [ + 358, + 359, + 360, + 361, + 362, + 363 + ] + ], + [ + [ + 359, + 364, + 365, + 366, + 360 + ] + ], + [ + [ + 367, + 368, + 369, + 370, + 371, + 372, + 373 + ] + ], + [ + [ + 353, + 352, + 374, + 375 + ] + ], + [ + [ + 352, + 351, + 376, + 377 + ] + ], + [ + [ + 359, + 358, + 378, + 379 + ] + ], + [ + [ + 358, + 363, + 380, + 378 + ] + ], + [ + [ + 363, + 362, + 368, + 380 + ] + ], + [ + [ + 362, + 361, + 369, + 368 + ] + ], + [ + [ + 364, + 359, + 379, + 367 + ] + ], + [ + [ + 366, + 365, + 357, + 356 + ] + ], + [ + [ + 365, + 364, + 381, + 382 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ], + "surfaces": + [ + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "texture": + { + "rgbTexture": + { + "values": + [ + [ + [ + 28, + 944, + 945, + 946, + 947, + 948 + ] + ], + [ + [ + 28, + 949, + 950, + 951, + 952 + ] + ], + [ + [ + 32, + 953, + 954, + 955, + 956, + 957, + 958 + ] + ], + [ + [ + 32, + 959, + 960, + 961, + 962, + 963 + ] + ], + [ + [ + null + ] + ], + [ + [ + 31, + 964, + 965, + 966, + 967 + ] + ], + [ + [ + 25, + 968, + 969, + 970, + 971 + ] + ], + [ + [ + 28, + 972, + 973, + 974, + 975 + ] + ], + [ + [ + 25, + 976, + 977, + 978, + 979 + ] + ], + [ + [ + 29, + 980, + 981, + 982, + 983 + ] + ], + [ + [ + 73, + 984, + 985, + 986, + 987 + ] + ], + [ + [ + 28, + 988, + 989, + 990, + 991 + ] + ], + [ + [ + 28, + 992, + 993, + 994, + 995 + ] + ], + [ + [ + 31, + 996, + 997, + 998, + 999 + ] + ] + ] + } + }, + "lod": "2" + } + ] + } + }, + "vertices": + [ + [ + 579471, + 198217, + 10652 + ], + [ + 578109, + 202330, + 10652 + ], + [ + 577149, + 200650, + 10652 + ], + [ + 576461, + 200406, + 10652 + ], + [ + 577481, + 197515, + 10652 + ], + [ + 580840, + 194082, + 15211 + ], + [ + 579471, + 198217, + 15211 + ], + [ + 577481, + 197515, + 15211 + ], + [ + 576461, + 200406, + 15211 + ], + [ + 572239, + 198909, + 15211 + ], + [ + 571839, + 200119, + 15211 + ], + [ + 571503, + 201071, + 15211 + ], + [ + 566651, + 199359, + 15211 + ], + [ + 569801, + 190223, + 15211 + ], + [ + 573253, + 191430, + 15211 + ], + [ + 574658, + 191922, + 15211 + ], + [ + 565589, + 202439, + 11036 + ], + [ + 566651, + 199359, + 11036 + ], + [ + 571503, + 201071, + 11036 + ], + [ + 571839, + 200119, + 11036 + ], + [ + 573299, + 200640, + 11036 + ], + [ + 572089, + 204029, + 11036 + ], + [ + 570629, + 203440, + 11036 + ], + [ + 570379, + 204150, + 11036 + ], + [ + 578109, + 202330, + 0 + ], + [ + 580840, + 194082, + 0 + ], + [ + 574658, + 191922, + 0 + ], + [ + 569801, + 190223, + 0 + ], + [ + 565589, + 202440, + 0 + ], + [ + 570379, + 204150, + 0 + ], + [ + 570629, + 203440, + 0 + ], + [ + 572089, + 204029, + 0 + ], + [ + 573299, + 200640, + 0 + ], + [ + 571839, + 200119, + 0 + ], + [ + 572239, + 198909, + 0 + ], + [ + 577149, + 200650, + 0 + ], + [ + 576461, + 200406, + 0 + ], + [ + 573253, + 191430, + 0 + ], + [ + 565589, + 202439, + 0 + ], + [ + 570797, + 243602, + 15561 + ], + [ + 564168, + 237315, + 15561 + ], + [ + 565729, + 234700, + 15561 + ], + [ + 567699, + 232349, + 15561 + ], + [ + 579939, + 236599, + 15561 + ], + [ + 579639, + 237119, + 15561 + ], + [ + 577849, + 240080, + 15561 + ], + [ + 575628, + 242898, + 15561 + ], + [ + 575278, + 243342, + 15561 + ], + [ + 572730, + 241249, + 15561 + ], + [ + 572229, + 244960, + 18270 + ], + [ + 570797, + 243602, + 18270 + ], + [ + 572730, + 241249, + 18270 + ], + [ + 575278, + 243342, + 18270 + ], + [ + 573319, + 245830, + 18270 + ], + [ + 577849, + 240080, + 0 + ], + [ + 579639, + 237119, + 0 + ], + [ + 579939, + 236599, + 0 + ], + [ + 567699, + 232349, + 0 + ], + [ + 565729, + 234700, + 0 + ], + [ + 564168, + 237315, + 0 + ], + [ + 572229, + 244960, + 0 + ], + [ + 573319, + 245830, + 0 + ], + [ + 575628, + 242898, + 0 + ], + [ + 575278, + 243342, + 0 + ], + [ + 567699, + 232349, + 15531 + ], + [ + 579939, + 236599, + 15531 + ], + [ + 521651, + 178560, + 15121 + ], + [ + 530436, + 181770, + 15121 + ], + [ + 527055, + 191348, + 15121 + ], + [ + 518108, + 188080, + 15121 + ], + [ + 519835, + 183439, + 15121 + ], + [ + 520545, + 181532, + 15121 + ], + [ + 531045, + 190298, + 10946 + ], + [ + 530288, + 192529, + 10946 + ], + [ + 527055, + 191348, + 10946 + ], + [ + 530436, + 181770, + 10946 + ], + [ + 533309, + 182820, + 10946 + ], + [ + 534679, + 185010, + 10946 + ], + [ + 532500, + 186010, + 10946 + ], + [ + 531878, + 187840, + 10946 + ], + [ + 531878, + 187840, + 0 + ], + [ + 532500, + 186010, + 0 + ], + [ + 534679, + 185010, + 0 + ], + [ + 533309, + 182820, + 0 + ], + [ + 521651, + 178560, + 0 + ], + [ + 519835, + 183439, + 0 + ], + [ + 518108, + 188080, + 0 + ], + [ + 530288, + 192529, + 0 + ], + [ + 521651, + 178560, + 14931 + ], + [ + 530436, + 181770, + 14931 + ], + [ + 520545, + 181532, + 0 + ], + [ + 531045, + 190298, + 0 + ], + [ + 533309, + 182820, + 10756 + ], + [ + 534679, + 185010, + 10756 + ], + [ + 530436, + 181770, + 10756 + ], + [ + 542775, + 180778, + 15361 + ], + [ + 546168, + 181963, + 15361 + ], + [ + 543041, + 191027, + 15361 + ], + [ + 538693, + 189491, + 15361 + ], + [ + 540661, + 183916, + 15361 + ], + [ + 536798, + 182603, + 15361 + ], + [ + 538000, + 179109, + 15361 + ], + [ + 541468, + 180321, + 15361 + ], + [ + 535839, + 185390, + 11186 + ], + [ + 536798, + 182603, + 11186 + ], + [ + 540661, + 183916, + 11186 + ], + [ + 538693, + 189491, + 11186 + ], + [ + 543041, + 191027, + 11186 + ], + [ + 542009, + 194018, + 11186 + ], + [ + 537309, + 192340, + 11186 + ], + [ + 536539, + 194489, + 11186 + ], + [ + 535119, + 194049, + 11186 + ], + [ + 536439, + 190349, + 11186 + ], + [ + 536229, + 190260, + 11186 + ], + [ + 536439, + 189549, + 11186 + ], + [ + 534809, + 188059, + 11186 + ], + [ + 542009, + 194018, + 0 + ], + [ + 546168, + 181963, + 0 + ], + [ + 541468, + 180321, + 0 + ], + [ + 538000, + 179109, + 0 + ], + [ + 535839, + 185390, + 0 + ], + [ + 534809, + 188059, + 0 + ], + [ + 536439, + 189549, + 0 + ], + [ + 536229, + 190260, + 0 + ], + [ + 536439, + 190349, + 0 + ], + [ + 535119, + 194049, + 0 + ], + [ + 536539, + 194489, + 0 + ], + [ + 537309, + 192340, + 0 + ], + [ + 542775, + 180778, + 0 + ], + [ + 536798, + 182603, + 14931 + ], + [ + 538000, + 179109, + 14931 + ], + [ + 535839, + 185390, + 10756 + ], + [ + 536798, + 182603, + 10756 + ], + [ + 529417, + 211476, + 15421 + ], + [ + 532519, + 207703, + 15421 + ], + [ + 532560, + 207735, + 15421 + ], + [ + 534759, + 204979, + 15421 + ], + [ + 546262, + 214643, + 15421 + ], + [ + 540961, + 221032, + 15421 + ], + [ + 532519, + 207703, + 11246 + ], + [ + 534759, + 204979, + 11246 + ], + [ + 532560, + 207735, + 11246 + ], + [ + 528421, + 212688, + 12979 + ], + [ + 529417, + 211476, + 12979 + ], + [ + 540961, + 221032, + 12979 + ], + [ + 539965, + 222232, + 12979 + ], + [ + 532539, + 216080, + 12979 + ], + [ + 532287, + 215891, + 12979 + ], + [ + 532158, + 215783, + 12979 + ], + [ + 534759, + 204979, + 11225 + ], + [ + 536809, + 202539, + 11225 + ], + [ + 548488, + 211961, + 11225 + ], + [ + 546262, + 214643, + 11225 + ], + [ + 532539, + 216080, + 0 + ], + [ + 539965, + 222233, + 0 + ], + [ + 548488, + 211961, + 0 + ], + [ + 536809, + 202539, + 0 + ], + [ + 534759, + 204979, + 0 + ], + [ + 528421, + 212688, + 0 + ], + [ + 532287, + 215891, + 0 + ], + [ + 529417, + 211476, + 15311 + ], + [ + 532519, + 207703, + 15311 + ], + [ + 532519, + 207703, + 11136 + ], + [ + 534759, + 204979, + 11136 + ], + [ + 532158, + 215783, + 0 + ], + [ + 539965, + 222232, + 0 + ], + [ + 528421, + 212688, + 12869 + ], + [ + 529417, + 211476, + 12869 + ], + [ + 556944, + 236298, + 15581 + ], + [ + 557943, + 235092, + 15581 + ], + [ + 556547, + 233935, + 15581 + ], + [ + 559739, + 229799, + 15581 + ], + [ + 565729, + 234700, + 15581 + ], + [ + 564168, + 237315, + 15581 + ], + [ + 570797, + 243602, + 15581 + ], + [ + 570721, + 243694, + 15581 + ], + [ + 572229, + 244960, + 15581 + ], + [ + 570319, + 247380, + 15581 + ], + [ + 556770, + 236154, + 13139 + ], + [ + 555589, + 235177, + 13139 + ], + [ + 556547, + 233935, + 13139 + ], + [ + 557943, + 235092, + 13139 + ], + [ + 556944, + 236298, + 13139 + ], + [ + 570797, + 243602, + 18290 + ], + [ + 572229, + 244960, + 18290 + ], + [ + 570721, + 243694, + 18290 + ], + [ + 559739, + 229799, + 0 + ], + [ + 555589, + 235177, + 0 + ], + [ + 570319, + 247380, + 0 + ], + [ + 556944, + 236298, + 0 + ], + [ + 556770, + 236154, + 0 + ], + [ + 569278, + 227795, + 15531 + ], + [ + 570733, + 223601, + 15531 + ], + [ + 572537, + 218398, + 15531 + ], + [ + 574125, + 213820, + 15531 + ], + [ + 574492, + 213938, + 15531 + ], + [ + 586790, + 217907, + 15531 + ], + [ + 585097, + 222739, + 15531 + ], + [ + 581849, + 232010, + 15531 + ], + [ + 581804, + 232118, + 15531 + ], + [ + 581849, + 232010, + 0 + ], + [ + 585097, + 222739, + 0 + ], + [ + 586790, + 217907, + 0 + ], + [ + 574125, + 213820, + 0 + ], + [ + 572537, + 218398, + 0 + ], + [ + 569278, + 227795, + 0 + ], + [ + 581804, + 232118, + 0 + ], + [ + 574492, + 213938, + 10972 + ], + [ + 574125, + 213820, + 10972 + ], + [ + 574125, + 213820, + 10882 + ], + [ + 574492, + 213938, + 10882 + ], + [ + 574492, + 213938, + 15441 + ], + [ + 586790, + 217907, + 15441 + ], + [ + 570733, + 223601, + 0 + ], + [ + 552424, + 194337, + 15301 + ], + [ + 555569, + 185250, + 15301 + ], + [ + 569801, + 190223, + 15301 + ], + [ + 566651, + 199359, + 15301 + ], + [ + 551378, + 197364, + 11126 + ], + [ + 552424, + 194337, + 11126 + ], + [ + 566651, + 199359, + 11126 + ], + [ + 565589, + 202439, + 11126 + ], + [ + 551378, + 197364, + 0 + ], + [ + 555569, + 185250, + 0 + ], + [ + 555697, + 226500, + 11355 + ], + [ + 557008, + 224920, + 11355 + ], + [ + 560989, + 228169, + 11355 + ], + [ + 559739, + 229799, + 11355 + ], + [ + 552384, + 230489, + 15651 + ], + [ + 555697, + 226500, + 15651 + ], + [ + 559739, + 229799, + 15651 + ], + [ + 556547, + 233935, + 15651 + ], + [ + 551385, + 231692, + 13209 + ], + [ + 552384, + 230489, + 13209 + ], + [ + 556547, + 233935, + 13209 + ], + [ + 555589, + 235177, + 13209 + ], + [ + 553546, + 233483, + 13209 + ], + [ + 560989, + 228169, + 0 + ], + [ + 557008, + 224920, + 0 + ], + [ + 551385, + 231692, + 0 + ], + [ + 555697, + 226500, + 11145 + ], + [ + 557008, + 224920, + 11145 + ], + [ + 552384, + 230489, + 15441 + ], + [ + 555697, + 226500, + 15441 + ], + [ + 553546, + 233483, + 0 + ], + [ + 551385, + 231692, + 12999 + ], + [ + 552384, + 230489, + 12999 + ], + [ + 523801, + 200746, + 15211 + ], + [ + 514640, + 197401, + 15211 + ], + [ + 516378, + 192729, + 15211 + ], + [ + 518108, + 188080, + 15211 + ], + [ + 527055, + 191348, + 15211 + ], + [ + 523752, + 200707, + 15211 + ], + [ + 527055, + 191348, + 11036 + ], + [ + 530288, + 192529, + 11036 + ], + [ + 528693, + 197230, + 11036 + ], + [ + 528259, + 198510, + 11036 + ], + [ + 528969, + 200359, + 11036 + ], + [ + 529058, + 200430, + 11036 + ], + [ + 526409, + 201700, + 11036 + ], + [ + 523801, + 200746, + 11036 + ], + [ + 523752, + 200707, + 11036 + ], + [ + 528693, + 197230, + 0 + ], + [ + 516378, + 192729, + 0 + ], + [ + 514640, + 197401, + 0 + ], + [ + 526409, + 201700, + 0 + ], + [ + 529058, + 200430, + 0 + ], + [ + 528969, + 200359, + 0 + ], + [ + 528259, + 198510, + 0 + ], + [ + 523801, + 200746, + 15151 + ], + [ + 514640, + 197401, + 15151 + ], + [ + 526409, + 201700, + 10976 + ], + [ + 523801, + 200746, + 10976 + ], + [ + 529058, + 200430, + 10976 + ], + [ + 530855, + 180581, + 14931 + ], + [ + 522689, + 175770, + 14931 + ], + [ + 523979, + 176239, + 14931 + ], + [ + 524639, + 174440, + 14931 + ], + [ + 530855, + 180581, + 10756 + ], + [ + 524639, + 174440, + 0 + ], + [ + 523979, + 176239, + 0 + ], + [ + 522689, + 175770, + 0 + ], + [ + 524038, + 209058, + 15311 + ], + [ + 523657, + 208741, + 15311 + ], + [ + 527714, + 203869, + 15311 + ], + [ + 525121, + 207919, + 15311 + ], + [ + 524122, + 209126, + 15311 + ], + [ + 527714, + 203869, + 11136 + ], + [ + 529970, + 201158, + 11136 + ], + [ + 524122, + 209126, + 12869 + ], + [ + 525121, + 207919, + 12869 + ], + [ + 523657, + 208741, + 0 + ], + [ + 529970, + 201158, + 0 + ], + [ + 524038, + 209058, + 0 + ], + [ + 524122, + 209126, + 0 + ], + [ + 523657, + 208741, + 15151 + ], + [ + 527714, + 203869, + 15151 + ], + [ + 527714, + 203869, + 10976 + ], + [ + 529970, + 201158, + 10976 + ], + [ + 577715, + 214978, + 10882 + ], + [ + 575210, + 210689, + 10882 + ], + [ + 575817, + 208939, + 10882 + ], + [ + 578109, + 202330, + 10882 + ], + [ + 579471, + 198217, + 10882 + ], + [ + 579477, + 198219, + 10882 + ], + [ + 581951, + 202977, + 10882 + ], + [ + 577715, + 214978, + 15441 + ], + [ + 581951, + 202977, + 15441 + ], + [ + 579477, + 198219, + 15441 + ], + [ + 579471, + 198217, + 15441 + ], + [ + 580840, + 194082, + 15441 + ], + [ + 592250, + 198070, + 15441 + ], + [ + 593099, + 199900, + 15441 + ], + [ + 588408, + 213289, + 15441 + ], + [ + 587208, + 216715, + 15441 + ], + [ + 588408, + 213289, + 0 + ], + [ + 593099, + 199900, + 0 + ], + [ + 592250, + 198070, + 0 + ], + [ + 575817, + 208939, + 0 + ], + [ + 575210, + 210689, + 0 + ], + [ + 587208, + 216715, + 0 + ], + [ + 556909, + 224840, + 11145 + ], + [ + 555611, + 226430, + 11145 + ], + [ + 540961, + 221032, + 15441 + ], + [ + 546262, + 214643, + 15441 + ], + [ + 557512, + 224096, + 15441 + ], + [ + 556909, + 224840, + 15441 + ], + [ + 555611, + 226430, + 15441 + ], + [ + 539965, + 222232, + 12999 + ], + [ + 540961, + 221032, + 12999 + ], + [ + 546262, + 214643, + 11245 + ], + [ + 548488, + 211961, + 11245 + ], + [ + 559889, + 221159, + 11245 + ], + [ + 557512, + 224096, + 11245 + ], + [ + 556909, + 224840, + 0 + ], + [ + 559889, + 221159, + 0 + ], + [ + 557512, + 224096, + 0 + ], + [ + 543041, + 191027, + 15431 + ], + [ + 546168, + 181963, + 15431 + ], + [ + 550917, + 183624, + 15431 + ], + [ + 555569, + 185250, + 15431 + ], + [ + 552424, + 194337, + 15431 + ], + [ + 545329, + 195203, + 11256 + ], + [ + 542009, + 194018, + 11256 + ], + [ + 543041, + 191027, + 11256 + ], + [ + 552424, + 194337, + 11256 + ], + [ + 551378, + 197364, + 11256 + ], + [ + 546750, + 195711, + 11256 + ], + [ + 546750, + 195711, + 0 + ], + [ + 550917, + 183624, + 0 + ], + [ + 545329, + 195203, + 0 + ], + [ + 44869, + 600609, + 3767 + ], + [ + 46089, + 598799, + 3841 + ], + [ + 46589, + 598049, + 3868 + ], + [ + 47790, + 598782, + 5021 + ], + [ + 46111, + 601511, + 5021 + ], + [ + 49019, + 599531, + 3841 + ], + [ + 47279, + 602359, + 3841 + ], + [ + 50966, + 606004, + 9508 + ], + [ + 50372, + 605634, + 10188 + ], + [ + 52496, + 601650, + 10188 + ], + [ + 55958, + 603760, + 6252 + ], + [ + 53816, + 607777, + 6252 + ], + [ + 51304, + 606215, + 9122 + ], + [ + 46639, + 603309, + 5922 + ], + [ + 47279, + 602359, + 6036 + ], + [ + 49019, + 599531, + 6235 + ], + [ + 46639, + 603309, + 0 + ], + [ + 53816, + 607777, + 0 + ], + [ + 55958, + 603760, + 0 + ], + [ + 46589, + 598049, + 0 + ], + [ + 46089, + 598799, + 0 + ], + [ + 44869, + 600609, + 0 + ], + [ + 47279, + 602359, + 0 + ], + [ + 46089, + 598799, + 3687 + ], + [ + 46589, + 598049, + 3709 + ], + [ + 44869, + 600609, + 3426 + ], + [ + 46089, + 598799, + 3477 + ], + [ + 50966, + 606004, + 0 + ], + [ + 50372, + 605634, + 0 + ], + [ + 51304, + 606215, + 0 + ], + [ + 46639, + 603309, + 5280 + ], + [ + 47279, + 602359, + 5277 + ] + ], + "transform": + { + "scale": + [ + 0.001, + 0.001, + 0.001 + ], + "translate": + [ + 90409.32, + 435440.44, + 0.0 + ] + }, + "appearance": + { + "textures": + [ + { + "type": "JPG", + "image": "appearances/0320_7_8.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_7_4.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_7_7.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_7_6.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_7_5.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_8.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_16.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_14.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_11.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_10.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_12.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_17.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_7.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_9.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_13.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_15.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_5_18.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_0_14.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_0_15.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_0_21.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_0_18.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_0_17.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_0_19.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_0_20.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_5.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_18.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_9.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_8.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_17.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_16.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_12.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_19.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_13.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_3.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_17.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_18.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_12.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_14.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_7.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_15.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_2.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_9.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_4.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_8.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_16.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_6.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_14.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_11.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_7.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_10.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_7_9.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_6_10.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_0_16.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_15.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_16.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_18.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_19.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_13.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_4_17.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_6.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_4.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_16.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_10.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_14.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_13.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_12.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_5.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_17.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_8.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_7.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_11.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_9.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_1_15.jpg" + }, + { + "type": "JPG", + "image": "appearances/0320_3_15.jpg" + } + ], + "vertices-texture": + [ + [ + 0.1514, + 0.3331 + ], + [ + 0.2061, + 0.3519 + ], + [ + 0.1836, + 0.3645 + ], + [ + 0.1802, + 0.3737 + ], + [ + 0.1418, + 0.3596 + ], + [ + 0.2068, + 0.0061 + ], + [ + 0.262, + 0.025 + ], + [ + 0.2523, + 0.0516 + ], + [ + 0.2909, + 0.0657 + ], + [ + 0.2704, + 0.1221 + ], + [ + 0.2865, + 0.1276 + ], + [ + 0.2992, + 0.1323 + ], + [ + 0.2757, + 0.1971 + ], + [ + 0.1538, + 0.1536 + ], + [ + 0.1704, + 0.1075 + ], + [ + 0.1771, + 0.0887 + ], + [ + 0.1831, + 0.3304 + ], + [ + 0.1422, + 0.3157 + ], + [ + 0.1656, + 0.2511 + ], + [ + 0.153, + 0.2465 + ], + [ + 0.1601, + 0.2271 + ], + [ + 0.2051, + 0.2437 + ], + [ + 0.1971, + 0.2631 + ], + [ + 0.2065, + 0.2666 + ], + [ + 0.3389, + 0.6285 + ], + [ + 0.3355, + 0.6375 + ], + [ + 0.2778, + 0.6018 + ], + [ + 0.2812, + 0.5928 + ], + [ + 0.523, + 0.8407 + ], + [ + 0.5006, + 0.853 + ], + [ + 0.4431, + 0.8171 + ], + [ + 0.4653, + 0.8049 + ], + [ + 0.6267, + 0.1349 + ], + [ + 0.6027, + 0.1989 + ], + [ + 0.5798, + 0.185 + ], + [ + 0.6038, + 0.1211 + ], + [ + 0.8823, + 0.7641 + ], + [ + 0.8951, + 0.7686 + ], + [ + 0.8719, + 0.7851 + ], + [ + 0.8592, + 0.7806 + ], + [ + 0.6529, + 0.0342 + ], + [ + 0.6691, + 0.0396 + ], + [ + 0.5853, + 0.099 + ], + [ + 0.5693, + 0.0937 + ], + [ + 0.5656, + 0.5813 + ], + [ + 0.5446, + 0.6371 + ], + [ + 0.4619, + 0.586 + ], + [ + 0.4826, + 0.5309 + ], + [ + 0.1677, + 0.1938 + ], + [ + 0.2064, + 0.2074 + ], + [ + 0.181, + 0.2251 + ], + [ + 0.1424, + 0.2115 + ], + [ + 0.894, + 0.3789 + ], + [ + 0.8841, + 0.4052 + ], + [ + 0.859, + 0.3896 + ], + [ + 0.8689, + 0.3634 + ], + [ + 0.3953, + 0.2981 + ], + [ + 0.3656, + 0.3807 + ], + [ + 0.269, + 0.3203 + ], + [ + 0.2983, + 0.2387 + ], + [ + 0.5648, + 0.1698 + ], + [ + 0.5581, + 0.1885 + ], + [ + 0.4616, + 0.1279 + ], + [ + 0.4682, + 0.1093 + ], + [ + 0.2329, + 0.2559 + ], + [ + 0.2163, + 0.3021 + ], + [ + 0.12, + 0.2408 + ], + [ + 0.1364, + 0.1952 + ], + [ + 0.3546, + 0.6923 + ], + [ + 0.3306, + 0.7553 + ], + [ + 0.2712, + 0.7191 + ], + [ + 0.295, + 0.6566 + ], + [ + 0.9744, + 0.6729 + ], + [ + 0.9839, + 0.6762 + ], + [ + 0.9238, + 0.7193 + ], + [ + 0.9144, + 0.716 + ], + [ + 0.0684, + 0.6113 + ], + [ + 0.0602, + 0.6305 + ], + [ + 0.0008, + 0.5941 + ], + [ + 0.0089, + 0.5751 + ], + [ + 0.4106, + 0.1615 + ], + [ + 0.4558, + 0.1776 + ], + [ + 0.3954, + 0.2204 + ], + [ + 0.3506, + 0.2044 + ], + [ + 0.6034, + 0.8345 + ], + [ + 0.5963, + 0.8539 + ], + [ + 0.5255, + 0.8099 + ], + [ + 0.5325, + 0.7906 + ], + [ + 0.7893, + 0.9113 + ], + [ + 0.7049, + 0.9998 + ], + [ + 0.6699, + 0.9788 + ], + [ + 0.6385, + 0.9523 + ], + [ + 0.6959, + 0.7885 + ], + [ + 0.7029, + 0.7925 + ], + [ + 0.7425, + 0.8166 + ], + [ + 0.7801, + 0.8465 + ], + [ + 0.7861, + 0.8512 + ], + [ + 0.7579, + 0.8853 + ], + [ + 0.3469, + 0.3035 + ], + [ + 0.3652, + 0.2844 + ], + [ + 0.3967, + 0.3104 + ], + [ + 0.3685, + 0.3445 + ], + [ + 0.3352, + 0.3181 + ], + [ + 0.3455, + 0.9351 + ], + [ + 0.3514, + 0.9398 + ], + [ + 0.2731, + 0.9999 + ], + [ + 0.2673, + 0.9953 + ], + [ + 0.6942, + 0.6107 + ], + [ + 0.732, + 0.6404 + ], + [ + 0.6532, + 0.7002 + ], + [ + 0.6159, + 0.6708 + ], + [ + 0.4537, + 0.2849 + ], + [ + 0.4933, + 0.3089 + ], + [ + 0.4141, + 0.3683 + ], + [ + 0.3749, + 0.3447 + ], + [ + 0.1701, + 0.8977 + ], + [ + 0.1771, + 0.9018 + ], + [ + 0.0977, + 0.9612 + ], + [ + 0.0908, + 0.9572 + ], + [ + 0.6469, + 0.7017 + ], + [ + 0.5885, + 0.8653 + ], + [ + 0.5883, + 0.8652 + ], + [ + 0.6467, + 0.7016 + ], + [ + 0.1048, + 0.6847 + ], + [ + 0.1358, + 0.7112 + ], + [ + 0.0309, + 0.7588 + ], + [ + 0.0002, + 0.7325 + ], + [ + 0.7683, + 0.5655 + ], + [ + 0.7565, + 0.5798 + ], + [ + 0.6657, + 0.519 + ], + [ + 0.6774, + 0.5049 + ], + [ + 0.0925, + 0.6306 + ], + [ + 0.1259, + 0.6569 + ], + [ + 0.0339, + 0.7277 + ], + [ + 0.001, + 0.7019 + ], + [ + 0.3617, + 0.0989 + ], + [ + 0.3337, + 0.1328 + ], + [ + 0.315, + 0.1317 + ], + [ + 0.3429, + 0.0979 + ], + [ + 0.127, + 0.9649 + ], + [ + 0.1581, + 0.991 + ], + [ + 0.1393, + 0.9995 + ], + [ + 0.1082, + 0.9735 + ], + [ + 0.368, + 0.3254 + ], + [ + 0.4114, + 0.2079 + ], + [ + 0.5396, + 0.2536 + ], + [ + 0.4954, + 0.3734 + ], + [ + 0.4333, + 0.35 + ], + [ + 0.4078, + 0.3404 + ], + [ + 0.2637, + 0.3797 + ], + [ + 0.2935, + 0.3899 + ], + [ + 0.2776, + 0.433 + ], + [ + 0.1498, + 0.3874 + ], + [ + 0.164, + 0.3491 + ], + [ + 0.1933, + 0.3309 + ], + [ + 0.2065, + 0.3601 + ], + [ + 0.2309, + 0.3685 + ], + [ + 0.5073, + 0.6934 + ], + [ + 0.6356, + 0.7386 + ], + [ + 0.6116, + 0.7569 + ], + [ + 0.4838, + 0.7119 + ], + [ + 0.5058, + 0.5947 + ], + [ + 0.4626, + 0.7116 + ], + [ + 0.4614, + 0.7114 + ], + [ + 0.5046, + 0.5945 + ], + [ + 0.8442, + 0.8452 + ], + [ + 0.8779, + 0.8049 + ], + [ + 0.368, + 0.9455 + ], + [ + 0.4074, + 0.9606 + ], + [ + 0.3139, + 0.9996 + ], + [ + 0.2751, + 0.9846 + ], + [ + 0.4679, + 0.0055 + ], + [ + 0.4932, + 0.0153 + ], + [ + 0.3995, + 0.0541 + ], + [ + 0.3745, + 0.0445 + ], + [ + 0.4199, + 0.9371 + ], + [ + 0.4815, + 0.9608 + ], + [ + 0.387, + 0.9994 + ], + [ + 0.3262, + 0.976 + ], + [ + 0.7522, + 0.7355 + ], + [ + 0.782, + 0.7456 + ], + [ + 0.7209, + 0.793 + ], + [ + 0.6913, + 0.783 + ], + [ + 0.4627, + 0.0073 + ], + [ + 0.4955, + 0.0184 + ], + [ + 0.4341, + 0.0658 + ], + [ + 0.4015, + 0.0548 + ], + [ + 0.2406, + 0.87 + ], + [ + 0.265, + 0.8782 + ], + [ + 0.2034, + 0.9255 + ], + [ + 0.1792, + 0.9173 + ], + [ + 0.2191, + 0.6312 + ], + [ + 0.2325, + 0.6602 + ], + [ + 0.1707, + 0.7073 + ], + [ + 0.1575, + 0.6784 + ], + [ + 0.9458, + 0.5137 + ], + [ + 0.9164, + 0.5317 + ], + [ + 0.9152, + 0.5309 + ], + [ + 0.9446, + 0.5129 + ], + [ + 0.2438, + 0.0921 + ], + [ + 0.2298, + 0.1302 + ], + [ + 0.2286, + 0.13 + ], + [ + 0.2427, + 0.0919 + ], + [ + 0.7252, + 0.3039 + ], + [ + 0.7415, + 0.2586 + ], + [ + 0.8624, + 0.3018 + ], + [ + 0.8413, + 0.3599 + ], + [ + 0.7669, + 0.3327 + ], + [ + 0.7489, + 0.3844 + ], + [ + 0.7023, + 0.3678 + ], + [ + 0.7189, + 0.3214 + ], + [ + 0.0379, + 0.5246 + ], + [ + 0.0009, + 0.5114 + ], + [ + 0.0189, + 0.4599 + ], + [ + 0.093, + 0.487 + ], + [ + 0.114, + 0.4291 + ], + [ + 0.1538, + 0.4433 + ], + [ + 0.1309, + 0.5059 + ], + [ + 0.1594, + 0.5165 + ], + [ + 0.1534, + 0.5354 + ], + [ + 0.1042, + 0.5173 + ], + [ + 0.103, + 0.5201 + ], + [ + 0.0935, + 0.5172 + ], + [ + 0.0734, + 0.5387 + ], + [ + 0.7671, + 0.6161 + ], + [ + 0.7486, + 0.6672 + ], + [ + 0.7249, + 0.6546 + ], + [ + 0.7434, + 0.6037 + ], + [ + 0.6793, + 0.3834 + ], + [ + 0.7532, + 0.4104 + ], + [ + 0.7269, + 0.4221 + ], + [ + 0.6532, + 0.3952 + ], + [ + 0.7234, + 0.5234 + ], + [ + 0.7018, + 0.5808 + ], + [ + 0.6785, + 0.5682 + ], + [ + 0.7, + 0.5109 + ], + [ + 0.843, + 0.1394 + ], + [ + 0.8267, + 0.1848 + ], + [ + 0.7311, + 0.1185 + ], + [ + 0.7472, + 0.0737 + ], + [ + 0.65, + 0.9817 + ], + [ + 0.6437, + 0.9991 + ], + [ + 0.5481, + 0.9326 + ], + [ + 0.5543, + 0.9154 + ], + [ + 0.9582, + 0.9532 + ], + [ + 0.9415, + 0.9996 + ], + [ + 0.8461, + 0.9325 + ], + [ + 0.8626, + 0.8867 + ], + [ + 0.5293, + 0.9817 + ], + [ + 0.5756, + 0.9982 + ], + [ + 0.5729, + 0.9994 + ], + [ + 0.5266, + 0.9829 + ], + [ + 0.9124, + 0.4149 + ], + [ + 0.8923, + 0.4361 + ], + [ + 0.8303, + 0.4034 + ], + [ + 0.8502, + 0.3824 + ], + [ + 0.0702, + 0.6415 + ], + [ + 0.0796, + 0.6444 + ], + [ + 0.0097, + 0.675 + ], + [ + 0.0004, + 0.6721 + ], + [ + 0.9758, + 0.1109 + ], + [ + 0.9745, + 0.1137 + ], + [ + 0.9126, + 0.081 + ], + [ + 0.9139, + 0.0782 + ], + [ + 0.321, + 0.793 + ], + [ + 0.3699, + 0.811 + ], + [ + 0.2995, + 0.8415 + ], + [ + 0.2511, + 0.8236 + ], + [ + 0.7699, + 0.3091 + ], + [ + 0.7637, + 0.3278 + ], + [ + 0.7023, + 0.2951 + ], + [ + 0.7085, + 0.2766 + ], + [ + 0.353, + 0.3853 + ], + [ + 0.3817, + 0.3956 + ], + [ + 0.3195, + 0.4433 + ], + [ + 0.2911, + 0.4332 + ], + [ + 0.8289, + 0.9372 + ], + [ + 0.8054, + 0.9991 + ], + [ + 0.744, + 0.9657 + ], + [ + 0.7673, + 0.9044 + ], + [ + 0.7741, + 0.5195 + ], + [ + 0.8109, + 0.5327 + ], + [ + 0.8082, + 0.5339 + ], + [ + 0.7714, + 0.5207 + ], + [ + 0.4027, + 0.893 + ], + [ + 0.438, + 0.9071 + ], + [ + 0.3683, + 0.9375 + ], + [ + 0.3334, + 0.9236 + ], + [ + 0.3289, + 0.471 + ], + [ + 0.2785, + 0.4293 + ], + [ + 0.2789, + 0.4287 + ], + [ + 0.2421, + 0.3991 + ], + [ + 0.372, + 0.2455 + ], + [ + 0.4574, + 0.3168 + ], + [ + 0.6013, + 0.2603 + ], + [ + 0.5649, + 0.2304 + ], + [ + 0.6018, + 0.2597 + ], + [ + 0.4695, + 0.9042 + ], + [ + 0.4533, + 0.8908 + ], + [ + 0.5816, + 0.7369 + ], + [ + 0.5976, + 0.7503 + ], + [ + 0.515, + 0.8493 + ], + [ + 0.5125, + 0.8527 + ], + [ + 0.511, + 0.8544 + ], + [ + 0.0325, + 0.7906 + ], + [ + 0.0001, + 0.7629 + ], + [ + 0.1273, + 0.608 + ], + [ + 0.1628, + 0.6382 + ], + [ + 0.5958, + 0.3409 + ], + [ + 0.4661, + 0.492 + ], + [ + 0.4532, + 0.4847 + ], + [ + 0.5827, + 0.3338 + ], + [ + 0.4886, + 0.5166 + ], + [ + 0.3578, + 0.6696 + ], + [ + 0.3303, + 0.651 + ], + [ + 0.4606, + 0.4985 + ], + [ + 0.0964, + 0.3606 + ], + [ + 0.1328, + 0.3902 + ], + [ + 0.1056, + 0.4016 + ], + [ + 0.0693, + 0.3721 + ], + [ + 0.8465, + 0.4104 + ], + [ + 0.846, + 0.4109 + ], + [ + 0.8188, + 0.4075 + ], + [ + 0.8192, + 0.4069 + ], + [ + 0.0015, + 0.4992 + ], + [ + 0.0513, + 0.541 + ], + [ + 0.0506, + 0.5413 + ], + [ + 0.0008, + 0.4995 + ], + [ + 0.5654, + 0.1972 + ], + [ + 0.6012, + 0.2274 + ], + [ + 0.6005, + 0.2277 + ], + [ + 0.5647, + 0.1976 + ], + [ + 0.6005, + 0.645 + ], + [ + 0.5309, + 0.655 + ], + [ + 0.9508, + 0.7969 + ], + [ + 0.9088, + 0.8457 + ], + [ + 0.8404, + 0.8084 + ], + [ + 0.8819, + 0.76 + ], + [ + 0.6002, + 0.6406 + ], + [ + 0.5988, + 0.6423 + ], + [ + 0.5304, + 0.605 + ], + [ + 0.5318, + 0.6033 + ], + [ + 0.4543, + 0.0574 + ], + [ + 0.4517, + 0.0607 + ], + [ + 0.3833, + 0.0233 + ], + [ + 0.3858, + 0.02 + ], + [ + 0.9585, + 0.9025 + ], + [ + 0.8752, + 0.9995 + ], + [ + 0.8076, + 0.9611 + ], + [ + 0.8901, + 0.8651 + ], + [ + 0.7445, + 0.257 + ], + [ + 0.6762, + 0.2653 + ], + [ + 0.0235, + 0.8748 + ], + [ + 0.0395, + 0.8882 + ], + [ + 0.0388, + 0.8885 + ], + [ + 0.0228, + 0.8751 + ], + [ + 0.8812, + 0.0563 + ], + [ + 0.7541, + 0.2111 + ], + [ + 0.6818, + 0.1621 + ], + [ + 0.8078, + 0.0086 + ], + [ + 0.4023, + 0.5008 + ], + [ + 0.4344, + 0.5284 + ], + [ + 0.3625, + 0.5589 + ], + [ + 0.3307, + 0.5316 + ], + [ + 0.5825, + 0.7059 + ], + [ + 0.5664, + 0.6925 + ], + [ + 0.5509, + 0.7111 + ], + [ + 0.4956, + 0.6682 + ], + [ + 0.5615, + 0.5881 + ], + [ + 0.5965, + 0.6092 + ], + [ + 0.6809, + 0.5207 + ], + [ + 0.6822, + 0.5217 + ], + [ + 0.6992, + 0.5015 + ], + [ + 0.7315, + 0.5272 + ], + [ + 0.9445, + 0.4425 + ], + [ + 0.9313, + 0.4582 + ], + [ + 0.9149, + 0.4452 + ], + [ + 0.9305, + 0.4267 + ], + [ + 0.9465, + 0.4402 + ], + [ + 0.1601, + 0.2307 + ], + [ + 0.1418, + 0.2498 + ], + [ + 0.1589, + 0.2296 + ], + [ + 0.0291, + 0.1053 + ], + [ + 0.0134, + 0.1236 + ], + [ + 0.0009, + 0.1158 + ], + [ + 0.0166, + 0.0976 + ], + [ + 0.8951, + 0.064 + ], + [ + 0.9111, + 0.0774 + ], + [ + 0.8944, + 0.0848 + ], + [ + 0.8785, + 0.0713 + ], + [ + 0.9626, + 0.3434 + ], + [ + 0.8121, + 0.5187 + ], + [ + 0.7351, + 0.4675 + ], + [ + 0.8838, + 0.2944 + ], + [ + 0.1918, + 0.6324 + ], + [ + 0.2242, + 0.658 + ], + [ + 0.1461, + 0.7188 + ], + [ + 0.1141, + 0.6935 + ], + [ + 0.2591, + 0.7876 + ], + [ + 0.1753, + 0.8753 + ], + [ + 0.1752, + 0.8753 + ], + [ + 0.259, + 0.7875 + ], + [ + 0.8392, + 0.1682 + ], + [ + 0.8743, + 0.189 + ], + [ + 0.8742, + 0.1891 + ], + [ + 0.8391, + 0.1682 + ], + [ + 0.1725, + 0.5502 + ], + [ + 0.1062, + 0.6299 + ], + [ + 0.0009, + 0.5654 + ], + [ + 0.0664, + 0.4868 + ], + [ + 0.5103, + 0.2135 + ], + [ + 0.497, + 0.2289 + ], + [ + 0.4306, + 0.1877 + ], + [ + 0.4437, + 0.1724 + ], + [ + 0.9648, + 0.2113 + ], + [ + 0.9628, + 0.2136 + ], + [ + 0.8965, + 0.1724 + ], + [ + 0.8984, + 0.1701 + ], + [ + 0.9809, + 0.9793 + ], + [ + 0.9636, + 0.9991 + ], + [ + 0.95, + 0.99 + ], + [ + 0.9672, + 0.9702 + ], + [ + 0.1603, + 0.2082 + ], + [ + 0.1422, + 0.2272 + ], + [ + 0.142, + 0.2272 + ], + [ + 0.1602, + 0.2081 + ], + [ + 0.1366, + 0.1258 + ], + [ + 0.1378, + 0.1268 + ], + [ + 0.119, + 0.1353 + ], + [ + 0.1178, + 0.1343 + ], + [ + 0.3061, + 0.8355 + ], + [ + 0.2477, + 0.9991 + ], + [ + 0.187, + 0.9773 + ], + [ + 0.131, + 0.9572 + ], + [ + 0.0616, + 0.9323 + ], + [ + 0.0005, + 0.9104 + ], + [ + 0.0021, + 0.9054 + ], + [ + 0.0567, + 0.741 + ], + [ + 0.0567, + 0.7411 + ], + [ + 0.1212, + 0.7644 + ], + [ + 0.2449, + 0.8092 + ], + [ + 0.2463, + 0.8099 + ], + [ + 0.2394, + 0.393 + ], + [ + 0.2378, + 0.3979 + ], + [ + 0.2372, + 0.3975 + ], + [ + 0.2388, + 0.3927 + ], + [ + 0.9497, + 0.2053 + ], + [ + 0.9784, + 0.2475 + ], + [ + 0.3733, + 0.3002 + ], + [ + 0.4334, + 0.3251 + ], + [ + 0.3534, + 0.3841 + ], + [ + 0.2941, + 0.3595 + ], + [ + 0.3416, + 0.2382 + ], + [ + 0.343, + 0.2388 + ], + [ + 0.2631, + 0.2978 + ], + [ + 0.2616, + 0.2972 + ], + [ + 0.7405, + 0.898 + ], + [ + 0.8647, + 0.9414 + ], + [ + 0.7832, + 0.9998 + ], + [ + 0.6605, + 0.957 + ], + [ + 0.8627, + 0.0801 + ], + [ + 0.9275, + 0.1027 + ], + [ + 0.8451, + 0.1609 + ], + [ + 0.7812, + 0.1385 + ], + [ + 0.6593, + 0.1004 + ], + [ + 0.5563, + 0.0407 + ], + [ + 0.9591, + 0.4461 + ], + [ + 0.9044, + 0.6105 + ], + [ + 0.9038, + 0.6102 + ], + [ + 0.9585, + 0.4458 + ], + [ + 0.9464, + 0.7824 + ], + [ + 0.9448, + 0.7873 + ], + [ + 0.9145, + 0.769 + ], + [ + 0.9161, + 0.7641 + ], + [ + 0.6191, + 0.5652 + ], + [ + 0.6797, + 0.587 + ], + [ + 0.5777, + 0.6356 + ], + [ + 0.5177, + 0.6141 + ], + [ + 0.1026, + 0.7149 + ], + [ + 0.1715, + 0.7397 + ], + [ + 0.0686, + 0.788 + ], + [ + 0.0005, + 0.7635 + ], + [ + 0.7877, + 0.4936 + ], + [ + 0.8433, + 0.5136 + ], + [ + 0.7397, + 0.5616 + ], + [ + 0.6848, + 0.5419 + ], + [ + 0.6216, + 0.8485 + ], + [ + 0.6819, + 0.8702 + ], + [ + 0.5776, + 0.918 + ], + [ + 0.518, + 0.8966 + ], + [ + 0.322, + 0.9068 + ], + [ + 0.2007, + 0.8634 + ], + [ + 0.269, + 0.6731 + ], + [ + 0.3909, + 0.7166 + ], + [ + 0.8803, + 0.3976 + ], + [ + 0.84, + 0.3832 + ], + [ + 0.9088, + 0.1937 + ], + [ + 0.9497, + 0.2083 + ], + [ + 0.3868, + 0.8112 + ], + [ + 0.3162, + 0.9991 + ], + [ + 0.2932, + 0.9854 + ], + [ + 0.3636, + 0.7981 + ], + [ + 0.7773, + 0.3954 + ], + [ + 0.8997, + 0.4375 + ], + [ + 0.8992, + 0.4379 + ], + [ + 0.7768, + 0.3958 + ], + [ + 0.8735, + 0.7444 + ], + [ + 0.8052, + 0.9347 + ], + [ + 0.7091, + 0.8707 + ], + [ + 0.7767, + 0.6828 + ], + [ + 0.3951, + 0.6406 + ], + [ + 0.3337, + 0.6464 + ], + [ + 0.6844, + 0.1605 + ], + [ + 0.6133, + 0.3475 + ], + [ + 0.5533, + 0.3116 + ], + [ + 0.6237, + 0.1262 + ], + [ + 0.3944, + 0.6341 + ], + [ + 0.3336, + 0.6382 + ], + [ + 0.3497, + 0.6841 + ], + [ + 0.3908, + 0.6983 + ], + [ + 0.3903, + 0.6986 + ], + [ + 0.3492, + 0.6845 + ], + [ + 0.1632, + 0.6607 + ], + [ + 0.1423, + 0.6429 + ], + [ + 0.1861, + 0.5902 + ], + [ + 0.2077, + 0.6071 + ], + [ + 0.7278, + 0.8693 + ], + [ + 0.6748, + 0.8243 + ], + [ + 0.7194, + 0.7705 + ], + [ + 0.7744, + 0.8139 + ], + [ + 0.227, + 0.2484 + ], + [ + 0.2111, + 0.2349 + ], + [ + 0.2576, + 0.1796 + ], + [ + 0.2741, + 0.1926 + ], + [ + 0.2512, + 0.2197 + ], + [ + 0.4164, + 0.1156 + ], + [ + 0.4382, + 0.1322 + ], + [ + 0.3795, + 0.1778 + ], + [ + 0.3579, + 0.1612 + ], + [ + 0.899, + 0.7659 + ], + [ + 0.8552, + 0.8187 + ], + [ + 0.7794, + 0.7716 + ], + [ + 0.8228, + 0.7193 + ], + [ + 0.0017, + 0.5458 + ], + [ + 0.0225, + 0.5634 + ], + [ + 0.0211, + 0.5641 + ], + [ + 0.0003, + 0.5464 + ], + [ + 0.4031, + 0.5899 + ], + [ + 0.3563, + 0.6444 + ], + [ + 0.3437, + 0.6366 + ], + [ + 0.3904, + 0.5822 + ], + [ + 0.4059, + 0.0886 + ], + [ + 0.4613, + 0.1313 + ], + [ + 0.461, + 0.1316 + ], + [ + 0.4055, + 0.0889 + ], + [ + 0.7595, + 0.3506 + ], + [ + 0.7148, + 0.4044 + ], + [ + 0.6857, + 0.3863 + ], + [ + 0.7302, + 0.3327 + ], + [ + 0.4664, + 0.4471 + ], + [ + 0.519, + 0.4918 + ], + [ + 0.5176, + 0.4924 + ], + [ + 0.4649, + 0.4478 + ], + [ + 0.0687, + 0.5179 + ], + [ + 0.0008, + 0.5723 + ], + [ + 0.9667, + 0.4134 + ], + [ + 0.9424, + 0.4416 + ], + [ + 0.8753, + 0.4007 + ], + [ + 0.8993, + 0.3727 + ], + [ + 0.0898, + 0.9065 + ], + [ + 0.0669, + 0.9332 + ], + [ + 0.0, + 0.8919 + ], + [ + 0.0227, + 0.8655 + ], + [ + 0.0271, + 0.8261 + ], + [ + 0.0436, + 0.8388 + ], + [ + 0.0433, + 0.8391 + ], + [ + 0.0267, + 0.8264 + ], + [ + 0.0279, + 0.8096 + ], + [ + 0.0437, + 0.823 + ], + [ + 0.0423, + 0.8236 + ], + [ + 0.0265, + 0.8102 + ], + [ + 0.3441, + 0.8768 + ], + [ + 0.2989, + 0.9994 + ], + [ + 0.2364, + 0.9759 + ], + [ + 0.1741, + 0.9525 + ], + [ + 0.2183, + 0.8327 + ], + [ + 0.3436, + 0.8774 + ], + [ + 0.2942, + 0.2182 + ], + [ + 0.3101, + 0.1751 + ], + [ + 0.3728, + 0.1966 + ], + [ + 0.3899, + 0.2024 + ], + [ + 0.4146, + 0.1931 + ], + [ + 0.4156, + 0.1919 + ], + [ + 0.4324, + 0.2273 + ], + [ + 0.4196, + 0.2621 + ], + [ + 0.419, + 0.2627 + ], + [ + 0.4268, + 0.3052 + ], + [ + 0.3799, + 0.4261 + ], + [ + 0.3796, + 0.426 + ], + [ + 0.4265, + 0.305 + ], + [ + 0.0276, + 0.4192 + ], + [ + 0.0271, + 0.4198 + ], + [ + 0.0002, + 0.416 + ], + [ + 0.0007, + 0.4153 + ], + [ + 0.6515, + 0.6014 + ], + [ + 0.7769, + 0.6456 + ], + [ + 0.7533, + 0.6641 + ], + [ + 0.6283, + 0.6201 + ], + [ + 0.5731, + 0.247 + ], + [ + 0.5291, + 0.3661 + ], + [ + 0.5285, + 0.366 + ], + [ + 0.5725, + 0.247 + ], + [ + 0.0957, + 0.5712 + ], + [ + 0.1573, + 0.5949 + ], + [ + 0.0616, + 0.6334 + ], + [ + 0.0007, + 0.61 + ], + [ + 0.7804, + 0.2452 + ], + [ + 0.8423, + 0.2691 + ], + [ + 0.7458, + 0.3073 + ], + [ + 0.6846, + 0.2838 + ], + [ + 0.1968, + 0.4622 + ], + [ + 0.1835, + 0.4965 + ], + [ + 0.1832, + 0.4963 + ], + [ + 0.1965, + 0.462 + ], + [ + 0.1425, + 0.0374 + ], + [ + 0.1594, + 0.0727 + ], + [ + 0.1591, + 0.0729 + ], + [ + 0.1421, + 0.0376 + ], + [ + 0.6033, + 0.1706 + ], + [ + 0.6024, + 0.1718 + ], + [ + 0.5321, + 0.1624 + ], + [ + 0.5331, + 0.1612 + ], + [ + 0.167, + 0.7788 + ], + [ + 0.1916, + 0.7692 + ], + [ + 0.2187, + 0.8171 + ], + [ + 0.1943, + 0.8267 + ], + [ + 0.6538, + 0.2222 + ], + [ + 0.6709, + 0.2279 + ], + [ + 0.6101, + 0.2761 + ], + [ + 0.5932, + 0.2703 + ], + [ + 0.4512, + 0.8217 + ], + [ + 0.5139, + 0.8429 + ], + [ + 0.4526, + 0.8909 + ], + [ + 0.3904, + 0.8698 + ], + [ + 0.1796, + 0.5843 + ], + [ + 0.1638, + 0.6271 + ], + [ + 0.1632, + 0.6271 + ], + [ + 0.179, + 0.5842 + ], + [ + 0.0635, + 0.7802 + ], + [ + 0.1103, + 0.7965 + ], + [ + 0.083, + 0.8761 + ], + [ + 0.0989, + 0.8817 + ], + [ + 0.0555, + 0.9993 + ], + [ + 0.0182, + 0.9852 + ], + [ + 0.0245, + 0.968 + ], + [ + 0.0004, + 0.959 + ], + [ + 0.0635, + 0.7803 + ], + [ + 0.9716, + 0.7303 + ], + [ + 0.9423, + 0.7485 + ], + [ + 0.9281, + 0.7869 + ], + [ + 0.9123, + 0.7812 + ], + [ + 0.9395, + 0.7019 + ], + [ + 0.9767, + 0.7149 + ], + [ + 0.7948, + 0.2386 + ], + [ + 0.8107, + 0.2442 + ], + [ + 0.7867, + 0.2625 + ], + [ + 0.7708, + 0.2569 + ], + [ + 0.4167, + 0.4204 + ], + [ + 0.3882, + 0.4989 + ], + [ + 0.3645, + 0.4866 + ], + [ + 0.3928, + 0.4083 + ], + [ + 0.2881, + 0.4446 + ], + [ + 0.1962, + 0.4859 + ], + [ + 0.4769, + 0.7758 + ], + [ + 0.414, + 0.9536 + ], + [ + 0.3228, + 0.9401 + ], + [ + 0.3849, + 0.7645 + ], + [ + 0.7051, + 0.5428 + ], + [ + 0.729, + 0.5518 + ], + [ + 0.6376, + 0.5909 + ], + [ + 0.614, + 0.582 + ], + [ + 0.8539, + 0.7448 + ], + [ + 0.8475, + 0.762 + ], + [ + 0.7561, + 0.7482 + ], + [ + 0.7623, + 0.7312 + ], + [ + 0.6454, + 0.1031 + ], + [ + 0.6824, + 0.1173 + ], + [ + 0.5907, + 0.156 + ], + [ + 0.5541, + 0.142 + ], + [ + 0.8402, + 0.2362 + ], + [ + 0.8349, + 0.2515 + ], + [ + 0.7748, + 0.2201 + ], + [ + 0.7801, + 0.2049 + ], + [ + 0.033, + 0.8854 + ], + [ + 0.0372, + 0.8803 + ], + [ + 0.1023, + 0.9349 + ], + [ + 0.0507, + 0.9991 + ], + [ + 0.0003, + 0.9573 + ], + [ + 0.0482, + 0.9 + ], + [ + 0.0321, + 0.8865 + ], + [ + 0.314, + 0.3067 + ], + [ + 0.2779, + 0.2764 + ], + [ + 0.3291, + 0.2126 + ], + [ + 0.3654, + 0.2427 + ], + [ + 0.2542, + 0.25 + ], + [ + 0.2703, + 0.2634 + ], + [ + 0.2225, + 0.3206 + ], + [ + 0.2064, + 0.3073 + ], + [ + 0.455, + 0.0706 + ], + [ + 0.4507, + 0.0756 + ], + [ + 0.3687, + 0.0328 + ], + [ + 0.3729, + 0.0279 + ], + [ + 0.8032, + 0.3657 + ], + [ + 0.8023, + 0.3668 + ], + [ + 0.7203, + 0.3239 + ], + [ + 0.7212, + 0.3228 + ], + [ + 0.6559, + 0.4971 + ], + [ + 0.6721, + 0.5104 + ], + [ + 0.6587, + 0.5213 + ], + [ + 0.6426, + 0.508 + ], + [ + 0.5318, + 0.9429 + ], + [ + 0.4835, + 0.9991 + ], + [ + 0.4704, + 0.992 + ], + [ + 0.5186, + 0.9359 + ], + [ + 0.9671, + 0.1619 + ], + [ + 0.9159, + 0.2256 + ], + [ + 0.8889, + 0.222 + ], + [ + 0.9399, + 0.1584 + ], + [ + 0.1395, + 0.0753 + ], + [ + 0.2038, + 0.1301 + ], + [ + 0.2028, + 0.1305 + ], + [ + 0.1385, + 0.0758 + ], + [ + 0.1218, + 0.8882 + ], + [ + 0.071, + 0.9515 + ], + [ + 0.0, + 0.9421 + ], + [ + 0.0504, + 0.8794 + ], + [ + 0.7683, + 0.9476 + ], + [ + 0.6973, + 0.9382 + ], + [ + 0.4918, + 0.2573 + ], + [ + 0.5275, + 0.2877 + ], + [ + 0.5265, + 0.2881 + ], + [ + 0.4908, + 0.2578 + ], + [ + 0.4863, + 0.3843 + ], + [ + 0.4381, + 0.4404 + ], + [ + 0.3698, + 0.4039 + ], + [ + 0.4175, + 0.3483 + ], + [ + 0.9333, + 0.8237 + ], + [ + 0.9191, + 0.8667 + ], + [ + 0.9174, + 0.8715 + ], + [ + 0.8758, + 0.8566 + ], + [ + 0.8526, + 0.8483 + ], + [ + 0.7647, + 0.8167 + ], + [ + 0.71, + 0.798 + ], + [ + 0.71, + 0.7979 + ], + [ + 0.7738, + 0.7655 + ], + [ + 0.6544, + 0.4119 + ], + [ + 0.5998, + 0.5763 + ], + [ + 0.6141, + 0.5333 + ], + [ + 0.4539, + 0.4748 + ], + [ + 0.39, + 0.5073 + ], + [ + 0.3899, + 0.5074 + ], + [ + 0.3347, + 0.4885 + ], + [ + 0.3895, + 0.336 + ], + [ + 0.4141, + 0.3249 + ], + [ + 0.5928, + 0.3896 + ], + [ + 0.6385, + 0.4062 + ], + [ + 0.9348, + 0.7389 + ], + [ + 0.9891, + 0.7576 + ], + [ + 0.9876, + 0.7583 + ], + [ + 0.9333, + 0.7396 + ], + [ + 0.2352, + 0.157 + ], + [ + 0.3225, + 0.1883 + ], + [ + 0.2523, + 0.2227 + ], + [ + 0.1658, + 0.1916 + ], + [ + 0.5774, + 0.5965 + ], + [ + 0.6004, + 0.6048 + ], + [ + 0.5301, + 0.6391 + ], + [ + 0.5072, + 0.6309 + ], + [ + 0.4295, + 0.9056 + ], + [ + 0.4709, + 0.9205 + ], + [ + 0.4002, + 0.9546 + ], + [ + 0.3592, + 0.9399 + ], + [ + 0.2898, + 0.2707 + ], + [ + 0.3058, + 0.2763 + ], + [ + 0.2237, + 0.334 + ], + [ + 0.2079, + 0.3285 + ], + [ + 0.3517, + 0.1757 + ], + [ + 0.3975, + 0.1917 + ], + [ + 0.3149, + 0.2493 + ], + [ + 0.2696, + 0.2334 + ], + [ + 0.3917, + 0.2601 + ], + [ + 0.5711, + 0.3228 + ], + [ + 0.4862, + 0.3795 + ], + [ + 0.309, + 0.3176 + ], + [ + 0.7842, + 0.6979 + ], + [ + 0.7596, + 0.7091 + ], + [ + 0.6605, + 0.6507 + ], + [ + 0.6848, + 0.6397 + ], + [ + 0.6376, + 0.6622 + ], + [ + 0.5828, + 0.8147 + ], + [ + 0.4844, + 0.7544 + ], + [ + 0.5385, + 0.6038 + ], + [ + 0.4063, + 0.7493 + ], + [ + 0.3088, + 0.799 + ], + [ + 0.9346, + 0.717 + ], + [ + 0.9894, + 0.7359 + ], + [ + 0.988, + 0.7366 + ], + [ + 0.9332, + 0.7178 + ], + [ + 0.722, + 0.8993 + ], + [ + 0.722, + 0.8994 + ], + [ + 0.6969, + 0.8838 + ], + [ + 0.6969, + 0.8837 + ], + [ + 0.97, + 0.6396 + ], + [ + 0.9064, + 0.6714 + ], + [ + 0.8816, + 0.6557 + ], + [ + 0.9449, + 0.624 + ], + [ + 0.2228, + 0.9272 + ], + [ + 0.3819, + 0.9853 + ], + [ + 0.3518, + 1.0 + ], + [ + 0.1934, + 0.942 + ], + [ + 0.3123, + 0.1807 + ], + [ + 0.298, + 0.2238 + ], + [ + 0.2677, + 0.2055 + ], + [ + 0.282, + 0.1626 + ], + [ + 0.7242, + 0.9817 + ], + [ + 0.7253, + 0.9804 + ], + [ + 0.7463, + 0.9979 + ], + [ + 0.7454, + 0.9991 + ], + [ + 0.3078, + 0.9197 + ], + [ + 0.2229, + 0.8477 + ], + [ + 0.3508, + 0.6981 + ], + [ + 0.3607, + 0.7063 + ], + [ + 0.3819, + 0.7239 + ], + [ + 0.3828, + 0.7228 + ], + [ + 0.4358, + 0.7677 + ], + [ + 0.1637, + 0.7877 + ], + [ + 0.1478, + 0.7742 + ], + [ + 0.2755, + 0.6225 + ], + [ + 0.2915, + 0.6361 + ], + [ + 0.7429, + 0.3159 + ], + [ + 0.7074, + 0.2858 + ], + [ + 0.8315, + 0.1346 + ], + [ + 0.8703, + 0.1668 + ], + [ + 0.8245, + 0.3598 + ], + [ + 0.7507, + 0.3537 + ], + [ + 0.7468, + 0.7406 + ], + [ + 0.7457, + 0.7419 + ], + [ + 0.6713, + 0.6956 + ], + [ + 0.6723, + 0.6943 + ], + [ + 0.4358, + 0.1795 + ], + [ + 0.3074, + 0.3291 + ], + [ + 0.2947, + 0.3215 + ], + [ + 0.4229, + 0.1722 + ], + [ + 0.6318, + 0.297 + ], + [ + 0.6309, + 0.2981 + ], + [ + 0.6017, + 0.28 + ], + [ + 0.6027, + 0.2788 + ], + [ + 0.3385, + 0.8621 + ], + [ + 0.3598, + 0.8795 + ], + [ + 0.3371, + 0.8971 + ], + [ + 0.3159, + 0.8798 + ], + [ + 0.684, + 0.0113 + ], + [ + 0.694, + 0.0194 + ], + [ + 0.6131, + 0.0821 + ], + [ + 0.6033, + 0.0741 + ], + [ + 0.4827, + 0.8494 + ], + [ + 0.3548, + 0.9991 + ], + [ + 0.3269, + 0.9809 + ], + [ + 0.4543, + 0.8318 + ], + [ + 0.0003, + 0.1824 + ], + [ + 0.0847, + 0.2539 + ], + [ + 0.0845, + 0.254 + ], + [ + 0.0002, + 0.1824 + ], + [ + 0.84, + 0.604 + ], + [ + 0.7118, + 0.7532 + ], + [ + 0.6455, + 0.7132 + ], + [ + 0.7724, + 0.5655 + ], + [ + 0.749, + 0.3506 + ], + [ + 0.7648, + 0.364 + ], + [ + 0.7647, + 0.3641 + ], + [ + 0.7489, + 0.3507 + ], + [ + 0.2665, + 0.5756 + ], + [ + 0.3057, + 0.6073 + ], + [ + 0.2467, + 0.6526 + ], + [ + 0.2078, + 0.6212 + ], + [ + 0.6361, + 0.0965 + ], + [ + 0.512, + 0.2477 + ], + [ + 0.4385, + 0.2 + ], + [ + 0.5615, + 0.0502 + ], + [ + 0.4901, + 0.4878 + ], + [ + 0.5254, + 0.5177 + ], + [ + 0.5253, + 0.5178 + ], + [ + 0.49, + 0.4878 + ], + [ + 0.4864, + 0.7178 + ], + [ + 0.3655, + 0.6746 + ], + [ + 0.3883, + 0.6111 + ], + [ + 0.4107, + 0.5489 + ], + [ + 0.5319, + 0.5923 + ], + [ + 0.712, + 0.3024 + ], + [ + 0.6958, + 0.3466 + ], + [ + 0.656, + 0.3324 + ], + [ + 0.7014, + 0.2074 + ], + [ + 0.7416, + 0.2218 + ], + [ + 0.719, + 0.2835 + ], + [ + 0.7722, + 0.8757 + ], + [ + 0.7256, + 0.9997 + ], + [ + 0.7024, + 0.9866 + ], + [ + 0.7488, + 0.8631 + ], + [ + 0.1276, + 0.8094 + ], + [ + 0.2494, + 0.8515 + ], + [ + 0.2486, + 0.852 + ], + [ + 0.1269, + 0.81 + ], + [ + 0.4927, + 0.9376 + ], + [ + 0.4703, + 0.9998 + ], + [ + 0.3738, + 0.9345 + ], + [ + 0.3958, + 0.8731 + ], + [ + 0.4928, + 0.8074 + ], + [ + 0.47, + 0.8709 + ], + [ + 0.3737, + 0.8048 + ], + [ + 0.3962, + 0.7421 + ], + [ + 0.1266, + 0.3352 + ], + [ + 0.2467, + 0.3781 + ], + [ + 0.2463, + 0.3783 + ], + [ + 0.1262, + 0.3354 + ], + [ + 0.1619, + 0.043 + ], + [ + 0.1453, + 0.0867 + ], + [ + 0.0836, + 0.0528 + ], + [ + 0.1, + 0.0095 + ], + [ + 0.7713, + 0.5047 + ], + [ + 0.7642, + 0.5234 + ], + [ + 0.7025, + 0.4892 + ], + [ + 0.7096, + 0.4707 + ], + [ + 0.8286, + 0.3818 + ], + [ + 0.8055, + 0.4427 + ], + [ + 0.7441, + 0.408 + ], + [ + 0.767, + 0.3476 + ], + [ + 0.7259, + 0.1761 + ], + [ + 0.7663, + 0.1901 + ], + [ + 0.7656, + 0.1906 + ], + [ + 0.7252, + 0.1767 + ], + [ + 0.7711, + 0.1488 + ], + [ + 0.8106, + 0.1629 + ], + [ + 0.8101, + 0.1631 + ], + [ + 0.7706, + 0.149 + ], + [ + 0.8946, + 0.854 + ], + [ + 0.918, + 0.8701 + ], + [ + 0.9277, + 0.8767 + ], + [ + 0.9105, + 0.894 + ], + [ + 0.8744, + 0.8719 + ], + [ + 0.9104, + 0.8517 + ], + [ + 0.8744, + 0.8296 + ], + [ + 0.89, + 0.8105 + ], + [ + 0.9272, + 0.8333 + ], + [ + 0.6043, + 0.1568 + ], + [ + 0.5962, + 0.1663 + ], + [ + 0.5435, + 0.1384 + ], + [ + 0.5903, + 0.083 + ], + [ + 0.6433, + 0.1111 + ], + [ + 0.609, + 0.1513 + ], + [ + 0.0002, + 0.1659 + ], + [ + 0.0595, + 0.1114 + ], + [ + 0.0713, + 0.12 + ], + [ + 0.1074, + 0.1431 + ], + [ + 0.053, + 0.194 + ], + [ + 0.0879, + 0.8748 + ], + [ + 0.0782, + 0.8682 + ], + [ + 0.0792, + 0.868 + ], + [ + 0.0889, + 0.8746 + ], + [ + 0.9034, + 0.6778 + ], + [ + 0.8799, + 0.6616 + ], + [ + 0.8822, + 0.6613 + ], + [ + 0.9058, + 0.6773 + ], + [ + 0.7021, + 0.4862 + ], + [ + 0.7104, + 0.479 + ], + [ + 0.7572, + 0.4895 + ], + [ + 0.7523, + 0.4974 + ], + [ + 0.0541, + 0.231 + ], + [ + 0.0589, + 0.2269 + ], + [ + 0.1037, + 0.237 + ], + [ + 0.1009, + 0.2415 + ], + [ + 0.887, + 0.2757 + ], + [ + 0.9219, + 0.2456 + ], + [ + 0.9524, + 0.2527 + ], + [ + 0.9318, + 0.2859 + ], + [ + 0.2292, + 0.3464 + ], + [ + 0.1762, + 0.3183 + ], + [ + 0.2067, + 0.3034 + ], + [ + 0.2594, + 0.3314 + ], + [ + 0.3975, + 0.8852 + ], + [ + 0.4072, + 0.8309 + ], + [ + 0.4574, + 0.8421 + ], + [ + 0.4267, + 0.8915 + ], + [ + 0.9658, + 0.9575 + ], + [ + 0.9297, + 0.9344 + ], + [ + 0.9444, + 0.9319 + ], + [ + 0.9818, + 0.9548 + ], + [ + 0.0352, + 0.8172 + ], + [ + 0.0234, + 0.8087 + ], + [ + 0.0277, + 0.808 + ], + [ + 0.0403, + 0.8164 + ] + ] + } +} \ No newline at end of file diff --git a/tests/data/rotterdam_subset_cjio_test.json b/tests/data/rotterdam_subset_cjio_test.json index 7afe50c..69933c0 100644 --- a/tests/data/rotterdam_subset_cjio_test.json +++ b/tests/data/rotterdam_subset_cjio_test.json @@ -1 +1 @@ -{"type":"CityJSON","version":"1.1","CityObjects":{"{C9D4A5CF-094A-47DA-97E4-4A3BFD75D3AE}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[0,1,2,3,4]],[[5,6,7,8,9,10,11,12,13,14,15]],[[16,17,18,19,20,21,22,23]],[[24,25,26,27,28,29,30,31,32,33,34,35]],[[3,2,35,36]],[[2,1,24,35]],[[12,11,18,17]],[[11,10,19,18]],[[10,9,34,33]],[[9,8,36,34]],[[8,7,4,3]],[[7,6,0,4]],[[5,15,26,25]],[[15,14,37,26]],[[14,13,27,37]],[[16,23,29,38]],[[23,22,30,29]],[[22,21,31,30]],[[21,20,32,31]],[[20,19,33,32]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":3.03,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{71B60053-BC28-404D-BAB9-8A642AAC0CF4}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[39,40,41,42,43,44,45,46,47,48]],[[49,50,51,52,53]],[[54,55,56,57,58,59,60,61,62]],[[47,46,62,63]],[[46,45,54,62]],[[45,44,55,54]],[[44,43,56,55]],[[43,42,64,65]],[[42,41,58,57]],[[49,53,61,60]],[[53,52,63,61]],[[52,51,48,47]],[[51,50,39,48]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.68,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{6271F75F-E8D8-4EE4-AC46-9DB02771A031}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[66,67,68,69,70,71,66]],[[72,73,74,75,76,77,78,79]],[[80,81,82,83,84,85,86,87]],[[68,67,75,74]],[[67,66,88,89]],[[66,66,84,84]],[[66,71,90,84]],[[71,70,85,90]],[[70,69,86,85]],[[73,72,91,87]],[[72,79,80,91]],[[79,78,81,80]],[[78,77,82,81]],[[77,76,92,93]],[[76,75,94,92]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":3.12,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{DE77E78F-B110-43D2-A55C-8B61911192DE}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[95,96,97,98,99,100,101,102]],[[103,104,105,106,107,108,109,110,111,112,113,114,115]],[[116,117,118,119,120,121,122,123,124,125,126,127]],[[100,99,105,104]],[[99,98,106,105]],[[98,97,107,106]],[[96,95,128,117]],[[95,102,118,128]],[[102,101,119,118]],[[101,100,129,130]],[[115,114,122,121]],[[114,113,123,122]],[[113,112,124,123]],[[112,111,125,124]],[[111,110,126,125]],[[110,109,127,126]],[[109,108,116,127]],[[104,103,131,132]],[[103,115,121,120]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.88,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{19935DFC-F7B3-4D6E-92DD-C48EE1D1519A}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[133,134,135,136,137,138]],[[139,140,141]],[[142,143,144,145,145,146,147,148,142]],[[149,150,151,152]],[[153,154,155,156,157,158,159]],[[133,138,144,143]],[[137,136,149,152]],[[136,135,141,140]],[[135,134,139,141]],[[134,133,160,161]],[[140,139,162,163]],[[142,142,158,158]],[[142,148,164,158]],[[148,147,159,164]],[[147,146,153,159]],[[146,145,165,153]],[[145,145,165,165]],[[143,142,166,167]],[[151,150,156,155]],[[150,149,157,156]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.82,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{953BC999-2F92-4B38-95CF-218F7E05AFA9}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[168,169,170,171,172,173,174,175,176,177]],[[178,179,180,181,182]],[[183,184,185]],[[59,58,186,187,188,60]],[[170,169,181,180]],[[169,168,182,181]],[[168,177,188,189]],[[177,176,60,188]],[[174,173,40,39]],[[173,172,41,40]],[[172,171,186,58]],[[179,178,190,187]],[[178,182,189,190]],[[185,184,176,175]],[[184,183,50,49]],[[183,185,175,174]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.66,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{8D716FDE-18DD-4FB5-AB06-9D207377240E}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[65,64,191,192,193,194,195,196,196,197,198,199]],[[200,201,202,203,204,205,57,56,206]],[[207,208,209,210]],[[208,208,203,203]],[[65,199,206,56]],[[199,198,200,206]],[[198,197,201,200]],[[197,196,202,201]],[[196,196,202,202]],[[196,195,211,212]],[[195,194,208,207]],[[194,193,204,203]],[[193,192,213,204]],[[192,191,205,213]],[[191,64,57,205]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,1,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.71,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{C6AAF95B-8C09-4130-AB4D-6777A2A18A2E}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[214,215,216,217]],[[218,219,220,221,221,218]],[[222,28,27,223]],[[214,217,220,219]],[[217,216,13,12]],[[216,215,223,27]],[[218,218,222,222]],[[218,221,38,222]],[[221,221,38,38]],[[221,220,17,16]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.94,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{72390BDE-903C-4C8C-8A3F-2DF5647CD9B4}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[224,225,226,227]],[[228,229,230,231]],[[232,233,234,235,236,232]],[[187,186,237,238,239]],[[227,226,237,186]],[[226,225,238,237]],[[225,224,240,241]],[[228,231,234,233]],[[231,230,171,170]],[[230,229,224,227]],[[229,228,242,243]],[[232,232,239,239]],[[232,236,244,239]],[[236,235,187,244]],[[235,234,180,179]],[[233,232,245,246]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.59,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{8244B286-63E2-436E-9D4E-169B8ACFE9D0}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[247,248,249,250,251,252]],[[253,254,255,256,257,258,259,260,261]],[[262,87,86,263,264,265,266,267,268]],[[248,247,269,270]],[[247,252,261,260]],[[252,251,253,261]],[[251,250,69,68]],[[250,249,263,86]],[[249,248,264,263]],[[260,259,271,272]],[[259,258,273,271]],[[258,257,267,266]],[[257,256,268,267]],[[256,255,262,268]],[[255,254,87,262]],[[254,253,74,73]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":3.03,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{87316D28-7574-4763-B9CE-BF6A2DF8092C}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[130,129,274,89,88,275,276,277,130]],[[93,92,94,278,132,131]],[[120,119,279,280,281,84,83,82]],[[89,274,278,94]],[[274,129,132,278]],[[130,130,119,119]],[[130,277,279,119]],[[277,276,280,279]],[[276,275,281,280]],[[275,88,84,281]],[[93,131,120,82]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":3.31,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{CD98680D-A8DD-4106-A18E-15EE2A908D75}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[282,283,284,161,160,285,286]],[[287,288,288,163,162]],[[289,290,167,166]],[[291,158,157,292]],[[283,282,293,291]],[[282,286,294,293]],[[286,285,290,289]],[[285,160,167,290]],[[161,284,287,162]],[[284,283,295,296]],[[163,288,292,157]],[[288,288,292,292]],[[288,287,297,298]],[[289,166,158,294]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.93,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{64A9018E-4F56-47CD-941F-43F6F0C4285B}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[299,210,209,300,301,302,303,304,305]],[[212,211,306,307,308,309,310,310,311,312,313,314]],[[315,316,317,25,24,318,203,202]],[[303,302,1,0]],[[302,301,318,24]],[[301,300,319,318]],[[300,209,203,319]],[[212,314,320,202]],[[314,313,315,320]],[[313,312,316,315]],[[312,311,317,316]],[[311,310,25,317]],[[310,310,25,25]],[[310,309,6,5]],[[309,308,304,303]],[[308,307,305,304]],[[307,306,299,305]],[[306,211,210,299]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.8,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{459F183A-D0C2-4F8A-8B5F-C498EFDE366D}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[321,241,241,240,322]],[[323,324,325,326,327,243,242]],[[328,329,246,245]],[[330,331,332,333]],[[154,239,238,334,335,155]],[[241,241,238,238]],[[241,321,334,238]],[[323,242,246,329]],[[243,327,322,240]],[[327,326,321,322]],[[326,325,336,334]],[[325,324,330,333]],[[324,323,138,137]],[[328,245,239,165]],[[329,328,145,144]],[[333,332,335,336]],[[332,331,155,335]],[[331,330,152,151]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.8,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{237D41CC-991E-4308-8986-42ABFB4F7431}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[337,338,339,340,341]],[[342,343,344,345,346,347]],[[116,348,222,223,349,117]],[[337,341,345,344]],[[341,340,215,214]],[[340,339,349,223]],[[339,338,117,349]],[[338,337,97,96]],[[343,342,350,116]],[[342,347,348,350]],[[347,346,222,348]],[[346,345,219,218]],[[344,343,108,107]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.81,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{23D8CA22-0C82-4453-A11E-B3F2B3116DB4}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[351,352,353,354,355]],[[355,354,356,357]],[[358,359,360,361,362,363]],[[359,364,365,366,360]],[[367,368,369,370,371,372,373]],[[353,352,374,375]],[[352,351,376,377]],[[359,358,378,379]],[[358,363,380,378]],[[363,362,368,380]],[[362,361,369,368]],[[364,359,379,367]],[[366,365,357,356]],[[365,364,381,382]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,0,1,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.51,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}}},"vertices":[[90988.79100000001,435638.657,10.652000000000001],[90987.429,435642.77,10.652000000000001],[90986.46900000001,435641.09,10.652000000000001],[90985.781,435640.846,10.652000000000001],[90986.801,435637.955,10.652000000000001],[90990.16,435634.522,15.211],[90988.79100000001,435638.657,15.211],[90986.801,435637.955,15.211],[90985.781,435640.846,15.211],[90981.55900000001,435639.349,15.211],[90981.15900000001,435640.559,15.211],[90980.823,435641.511,15.211],[90975.971,435639.799,15.211],[90979.12100000001,435630.663,15.211],[90982.573,435631.87,15.211],[90983.978,435632.362,15.211],[90974.90900000001,435642.879,11.036],[90975.971,435639.799,11.036],[90980.823,435641.511,11.036],[90981.15900000001,435640.559,11.036],[90982.619,435641.08,11.036],[90981.40900000001,435644.469,11.036],[90979.94900000001,435643.88,11.036],[90979.69900000001,435644.59,11.036],[90987.429,435642.77,0.0],[90990.16,435634.522,0.0],[90983.978,435632.362,0.0],[90979.12100000001,435630.663,0.0],[90974.90900000001,435642.88,0.0],[90979.69900000001,435644.59,0.0],[90979.94900000001,435643.88,0.0],[90981.40900000001,435644.469,0.0],[90982.619,435641.08,0.0],[90981.15900000001,435640.559,0.0],[90981.55900000001,435639.349,0.0],[90986.46900000001,435641.09,0.0],[90985.781,435640.846,0.0],[90982.573,435631.87,0.0],[90974.90900000001,435642.879,0.0],[90980.11700000001,435684.042,15.561],[90973.48800000001,435677.755,15.561],[90975.04900000001,435675.14,15.561],[90977.019,435672.789,15.561],[90989.259,435677.039,15.561],[90988.959,435677.559,15.561],[90987.16900000001,435680.52,15.561],[90984.948,435683.338,15.561],[90984.59800000001,435683.782,15.561],[90982.05,435681.689,15.561],[90981.54900000001,435685.4,18.27],[90980.11700000001,435684.042,18.27],[90982.05,435681.689,18.27],[90984.59800000001,435683.782,18.27],[90982.63900000001,435686.27,18.27],[90987.16900000001,435680.52,0.0],[90988.959,435677.559,0.0],[90989.259,435677.039,0.0],[90977.019,435672.789,0.0],[90975.04900000001,435675.14,0.0],[90973.48800000001,435677.755,0.0],[90981.54900000001,435685.4,0.0],[90982.63900000001,435686.27,0.0],[90984.948,435683.338,0.0],[90984.59800000001,435683.782,0.0],[90977.019,435672.789,15.531],[90989.259,435677.039,15.531],[90930.971,435619.0,15.121],[90939.75600000001,435622.21,15.121],[90936.375,435631.788,15.121],[90927.428,435628.52,15.121],[90929.15500000001,435623.879,15.121],[90929.865,435621.972,15.121],[90940.365,435630.738,10.946],[90939.60800000001,435632.969,10.946],[90936.375,435631.788,10.946],[90939.75600000001,435622.21,10.946],[90942.629,435623.26,10.946],[90943.99900000001,435625.45,10.946],[90941.82,435626.45,10.946],[90941.198,435628.28,10.946],[90941.198,435628.28,0.0],[90941.82,435626.45,0.0],[90943.99900000001,435625.45,0.0],[90942.629,435623.26,0.0],[90930.971,435619.0,0.0],[90929.15500000001,435623.879,0.0],[90927.428,435628.52,0.0],[90939.60800000001,435632.969,0.0],[90930.971,435619.0,14.931000000000001],[90939.75600000001,435622.21,14.931000000000001],[90929.865,435621.972,0.0],[90940.365,435630.738,0.0],[90942.629,435623.26,10.756],[90943.99900000001,435625.45,10.756],[90939.75600000001,435622.21,10.756],[90952.095,435621.218,15.361],[90955.48800000001,435622.403,15.361],[90952.361,435631.467,15.361],[90948.013,435629.931,15.361],[90949.981,435624.356,15.361],[90946.118,435623.043,15.361],[90947.32,435619.549,15.361],[90950.788,435620.761,15.361],[90945.15900000001,435625.83,11.186],[90946.118,435623.043,11.186],[90949.981,435624.356,11.186],[90948.013,435629.931,11.186],[90952.361,435631.467,11.186],[90951.32900000001,435634.458,11.186],[90946.629,435632.78,11.186],[90945.85900000001,435634.929,11.186],[90944.43900000001,435634.489,11.186],[90945.759,435630.789,11.186],[90945.54900000001,435630.7,11.186],[90945.759,435629.989,11.186],[90944.129,435628.499,11.186],[90951.32900000001,435634.458,0.0],[90955.48800000001,435622.403,0.0],[90950.788,435620.761,0.0],[90947.32,435619.549,0.0],[90945.15900000001,435625.83,0.0],[90944.129,435628.499,0.0],[90945.759,435629.989,0.0],[90945.54900000001,435630.7,0.0],[90945.759,435630.789,0.0],[90944.43900000001,435634.489,0.0],[90945.85900000001,435634.929,0.0],[90946.629,435632.78,0.0],[90952.095,435621.218,0.0],[90946.118,435623.043,14.931000000000001],[90947.32,435619.549,14.931000000000001],[90945.15900000001,435625.83,10.756],[90946.118,435623.043,10.756],[90938.73700000001,435651.916,15.421000000000001],[90941.839,435648.143,15.421000000000001],[90941.88,435648.175,15.421000000000001],[90944.07900000001,435645.419,15.421000000000001],[90955.58200000001,435655.083,15.421000000000001],[90950.281,435661.472,15.421000000000001],[90941.839,435648.143,11.246],[90944.07900000001,435645.419,11.246],[90941.88,435648.175,11.246],[90937.74100000001,435653.128,12.979000000000001],[90938.73700000001,435651.916,12.979000000000001],[90950.281,435661.472,12.979000000000001],[90949.285,435662.672,12.979000000000001],[90941.85900000001,435656.52,12.979000000000001],[90941.607,435656.331,12.979000000000001],[90941.478,435656.223,12.979000000000001],[90944.07900000001,435645.419,11.225],[90946.129,435642.979,11.225],[90957.808,435652.401,11.225],[90955.58200000001,435655.083,11.225],[90941.85900000001,435656.52,0.0],[90949.285,435662.673,0.0],[90957.808,435652.401,0.0],[90946.129,435642.979,0.0],[90944.07900000001,435645.419,0.0],[90937.74100000001,435653.128,0.0],[90941.607,435656.331,0.0],[90938.73700000001,435651.916,15.311],[90941.839,435648.143,15.311],[90941.839,435648.143,11.136000000000001],[90944.07900000001,435645.419,11.136000000000001],[90941.478,435656.223,0.0],[90949.285,435662.672,0.0],[90937.74100000001,435653.128,12.869],[90938.73700000001,435651.916,12.869],[90966.26400000001,435676.738,15.581],[90967.263,435675.532,15.581],[90965.86700000001,435674.375,15.581],[90969.05900000001,435670.239,15.581],[90975.04900000001,435675.14,15.581],[90973.48800000001,435677.755,15.581],[90980.11700000001,435684.042,15.581],[90980.04100000001,435684.134,15.581],[90981.54900000001,435685.4,15.581],[90979.63900000001,435687.82,15.581],[90966.09000000001,435676.594,13.139000000000001],[90964.90900000001,435675.617,13.139000000000001],[90965.86700000001,435674.375,13.139000000000001],[90967.263,435675.532,13.139000000000001],[90966.26400000001,435676.738,13.139000000000001],[90980.11700000001,435684.042,18.29],[90981.54900000001,435685.4,18.29],[90980.04100000001,435684.134,18.29],[90969.05900000001,435670.239,0.0],[90964.90900000001,435675.617,0.0],[90979.63900000001,435687.82,0.0],[90966.26400000001,435676.738,0.0],[90966.09000000001,435676.594,0.0],[90978.59800000001,435668.235,15.531],[90980.053,435664.041,15.531],[90981.857,435658.838,15.531],[90983.445,435654.26,15.531],[90983.812,435654.378,15.531],[90996.11,435658.347,15.531],[90994.417,435663.179,15.531],[90991.16900000001,435672.45,15.531],[90991.12400000001,435672.558,15.531],[90991.16900000001,435672.45,0.0],[90994.417,435663.179,0.0],[90996.11,435658.347,0.0],[90983.445,435654.26,0.0],[90981.857,435658.838,0.0],[90978.59800000001,435668.235,0.0],[90991.12400000001,435672.558,0.0],[90983.812,435654.378,10.972],[90983.445,435654.26,10.972],[90983.445,435654.26,10.882],[90983.812,435654.378,10.882],[90983.812,435654.378,15.441],[90996.11,435658.347,15.441],[90980.053,435664.041,0.0],[90961.744,435634.777,15.301],[90964.88900000001,435625.69,15.301],[90979.12100000001,435630.663,15.301],[90975.971,435639.799,15.301],[90960.698,435637.804,11.126],[90961.744,435634.777,11.126],[90975.971,435639.799,11.126],[90974.90900000001,435642.879,11.126],[90960.698,435637.804,0.0],[90964.88900000001,435625.69,0.0],[90965.017,435666.94,11.355],[90966.32800000001,435665.36,11.355],[90970.30900000001,435668.609,11.355],[90969.05900000001,435670.239,11.355],[90961.70400000001,435670.929,15.651],[90965.017,435666.94,15.651],[90969.05900000001,435670.239,15.651],[90965.86700000001,435674.375,15.651],[90960.705,435672.132,13.209],[90961.70400000001,435670.929,13.209],[90965.86700000001,435674.375,13.209],[90964.90900000001,435675.617,13.209],[90962.86600000001,435673.923,13.209],[90970.30900000001,435668.609,0.0],[90966.32800000001,435665.36,0.0],[90960.705,435672.132,0.0],[90965.017,435666.94,11.145],[90966.32800000001,435665.36,11.145],[90961.70400000001,435670.929,15.441],[90965.017,435666.94,15.441],[90962.86600000001,435673.923,0.0],[90960.705,435672.132,12.999],[90961.70400000001,435670.929,12.999],[90933.12100000001,435641.186,15.211],[90923.96,435637.841,15.211],[90925.698,435633.169,15.211],[90927.428,435628.52,15.211],[90936.375,435631.788,15.211],[90933.072,435641.147,15.211],[90936.375,435631.788,11.036],[90939.60800000001,435632.969,11.036],[90938.013,435637.67,11.036],[90937.57900000001,435638.95,11.036],[90938.289,435640.799,11.036],[90938.37800000001,435640.87,11.036],[90935.729,435642.14,11.036],[90933.12100000001,435641.186,11.036],[90933.072,435641.147,11.036],[90938.013,435637.67,0.0],[90925.698,435633.169,0.0],[90923.96,435637.841,0.0],[90935.729,435642.14,0.0],[90938.37800000001,435640.87,0.0],[90938.289,435640.799,0.0],[90937.57900000001,435638.95,0.0],[90933.12100000001,435641.186,15.151],[90923.96,435637.841,15.151],[90935.729,435642.14,10.976],[90933.12100000001,435641.186,10.976],[90938.37800000001,435640.87,10.976],[90940.175,435621.021,14.931000000000001],[90932.009,435616.21,14.931000000000001],[90933.29900000001,435616.679,14.931000000000001],[90933.959,435614.88,14.931000000000001],[90940.175,435621.021,10.756],[90933.959,435614.88,0.0],[90933.29900000001,435616.679,0.0],[90932.009,435616.21,0.0],[90933.35800000001,435649.498,15.311],[90932.97700000001,435649.181,15.311],[90937.03400000001,435644.309,15.311],[90934.441,435648.359,15.311],[90933.44200000001,435649.566,15.311],[90937.03400000001,435644.309,11.136000000000001],[90939.29000000001,435641.598,11.136000000000001],[90933.44200000001,435649.566,12.869],[90934.441,435648.359,12.869],[90932.97700000001,435649.181,0.0],[90939.29000000001,435641.598,0.0],[90933.35800000001,435649.498,0.0],[90933.44200000001,435649.566,0.0],[90932.97700000001,435649.181,15.151],[90937.03400000001,435644.309,15.151],[90937.03400000001,435644.309,10.976],[90939.29000000001,435641.598,10.976],[90987.035,435655.418,10.882],[90984.53000000001,435651.129,10.882],[90985.137,435649.379,10.882],[90987.429,435642.77,10.882],[90988.79100000001,435638.657,10.882],[90988.797,435638.659,10.882],[90991.27100000001,435643.417,10.882],[90987.035,435655.418,15.441],[90991.27100000001,435643.417,15.441],[90988.797,435638.659,15.441],[90988.79100000001,435638.657,15.441],[90990.16,435634.522,15.441],[91001.57,435638.51,15.441],[91002.41900000001,435640.34,15.441],[90997.728,435653.729,15.441],[90996.528,435657.155,15.441],[90997.728,435653.729,0.0],[91002.41900000001,435640.34,0.0],[91001.57,435638.51,0.0],[90985.137,435649.379,0.0],[90984.53000000001,435651.129,0.0],[90996.528,435657.155,0.0],[90966.229,435665.28,11.145],[90964.93100000001,435666.87,11.145],[90950.281,435661.472,15.441],[90955.58200000001,435655.083,15.441],[90966.83200000001,435664.536,15.441],[90966.229,435665.28,15.441],[90964.93100000001,435666.87,15.441],[90949.285,435662.672,12.999],[90950.281,435661.472,12.999],[90955.58200000001,435655.083,11.245000000000001],[90957.808,435652.401,11.245000000000001],[90969.209,435661.599,11.245000000000001],[90966.83200000001,435664.536,11.245000000000001],[90966.229,435665.28,0.0],[90969.209,435661.599,0.0],[90966.83200000001,435664.536,0.0],[90952.361,435631.467,15.431000000000001],[90955.48800000001,435622.403,15.431000000000001],[90960.23700000001,435624.064,15.431000000000001],[90964.88900000001,435625.69,15.431000000000001],[90961.744,435634.777,15.431000000000001],[90954.649,435635.643,11.256],[90951.32900000001,435634.458,11.256],[90952.361,435631.467,11.256],[90961.744,435634.777,11.256],[90960.698,435637.804,11.256],[90956.07,435636.151,11.256],[90956.07,435636.151,0.0],[90960.23700000001,435624.064,0.0],[90954.649,435635.643,0.0],[90454.18900000001,436041.049,3.767],[90455.40900000001,436039.239,3.841],[90455.90900000001,436038.489,3.868],[90457.11,436039.222,5.021],[90455.43100000001,436041.951,5.021],[90458.339,436039.971,3.841],[90456.599,436042.799,3.841],[90460.28600000001,436046.444,9.508000000000001],[90459.69200000001,436046.074,10.188],[90461.816,436042.09,10.188],[90465.278,436044.2,6.252],[90463.13600000001,436048.217,6.252],[90460.62400000001,436046.655,9.122],[90455.959,436043.749,5.922],[90456.599,436042.799,6.0360000000000005],[90458.339,436039.971,6.235],[90455.959,436043.749,0.0],[90463.13600000001,436048.217,0.0],[90465.278,436044.2,0.0],[90455.90900000001,436038.489,0.0],[90455.40900000001,436039.239,0.0],[90454.18900000001,436041.049,0.0],[90456.599,436042.799,0.0],[90455.40900000001,436039.239,3.6870000000000003],[90455.90900000001,436038.489,3.709],[90454.18900000001,436041.049,3.426],[90455.40900000001,436039.239,3.477],[90460.28600000001,436046.444,0.0],[90459.69200000001,436046.074,0.0],[90460.62400000001,436046.655,0.0],[90455.959,436043.749,5.28],[90456.599,436042.799,5.277]],"appearance":{"textures":[{"type":"JPG","image":"appearances/0320_7_8.jpg"},{"type":"JPG","image":"appearances/0320_7_4.jpg"},{"type":"JPG","image":"appearances/0320_7_7.jpg"},{"type":"JPG","image":"appearances/0320_7_6.jpg"},{"type":"JPG","image":"appearances/0320_7_5.jpg"},{"type":"JPG","image":"appearances/0320_5_8.jpg"},{"type":"JPG","image":"appearances/0320_5_16.jpg"},{"type":"JPG","image":"appearances/0320_5_14.jpg"},{"type":"JPG","image":"appearances/0320_5_11.jpg"},{"type":"JPG","image":"appearances/0320_5_10.jpg"},{"type":"JPG","image":"appearances/0320_5_12.jpg"},{"type":"JPG","image":"appearances/0320_5_17.jpg"},{"type":"JPG","image":"appearances/0320_5_7.jpg"},{"type":"JPG","image":"appearances/0320_5_9.jpg"},{"type":"JPG","image":"appearances/0320_5_13.jpg"},{"type":"JPG","image":"appearances/0320_5_15.jpg"},{"type":"JPG","image":"appearances/0320_5_18.jpg"},{"type":"JPG","image":"appearances/0320_0_14.jpg"},{"type":"JPG","image":"appearances/0320_0_15.jpg"},{"type":"JPG","image":"appearances/0320_0_21.jpg"},{"type":"JPG","image":"appearances/0320_0_18.jpg"},{"type":"JPG","image":"appearances/0320_0_17.jpg"},{"type":"JPG","image":"appearances/0320_0_19.jpg"},{"type":"JPG","image":"appearances/0320_0_20.jpg"},{"type":"JPG","image":"appearances/0320_3_5.jpg"},{"type":"JPG","image":"appearances/0320_3_18.jpg"},{"type":"JPG","image":"appearances/0320_3_9.jpg"},{"type":"JPG","image":"appearances/0320_3_8.jpg"},{"type":"JPG","image":"appearances/0320_3_17.jpg"},{"type":"JPG","image":"appearances/0320_3_16.jpg"},{"type":"JPG","image":"appearances/0320_3_12.jpg"},{"type":"JPG","image":"appearances/0320_3_19.jpg"},{"type":"JPG","image":"appearances/0320_3_13.jpg"},{"type":"JPG","image":"appearances/0320_6_3.jpg"},{"type":"JPG","image":"appearances/0320_6_17.jpg"},{"type":"JPG","image":"appearances/0320_6_18.jpg"},{"type":"JPG","image":"appearances/0320_6_12.jpg"},{"type":"JPG","image":"appearances/0320_6_14.jpg"},{"type":"JPG","image":"appearances/0320_6_7.jpg"},{"type":"JPG","image":"appearances/0320_6_15.jpg"},{"type":"JPG","image":"appearances/0320_6_2.jpg"},{"type":"JPG","image":"appearances/0320_6_9.jpg"},{"type":"JPG","image":"appearances/0320_6_4.jpg"},{"type":"JPG","image":"appearances/0320_6_8.jpg"},{"type":"JPG","image":"appearances/0320_6_16.jpg"},{"type":"JPG","image":"appearances/0320_3_6.jpg"},{"type":"JPG","image":"appearances/0320_3_14.jpg"},{"type":"JPG","image":"appearances/0320_3_11.jpg"},{"type":"JPG","image":"appearances/0320_3_7.jpg"},{"type":"JPG","image":"appearances/0320_3_10.jpg"},{"type":"JPG","image":"appearances/0320_7_9.jpg"},{"type":"JPG","image":"appearances/0320_6_10.jpg"},{"type":"JPG","image":"appearances/0320_0_16.jpg"},{"type":"JPG","image":"appearances/0320_4_15.jpg"},{"type":"JPG","image":"appearances/0320_4_16.jpg"},{"type":"JPG","image":"appearances/0320_4_18.jpg"},{"type":"JPG","image":"appearances/0320_4_19.jpg"},{"type":"JPG","image":"appearances/0320_4_13.jpg"},{"type":"JPG","image":"appearances/0320_4_17.jpg"},{"type":"JPG","image":"appearances/0320_1_6.jpg"},{"type":"JPG","image":"appearances/0320_1_4.jpg"},{"type":"JPG","image":"appearances/0320_1_16.jpg"},{"type":"JPG","image":"appearances/0320_1_10.jpg"},{"type":"JPG","image":"appearances/0320_1_14.jpg"},{"type":"JPG","image":"appearances/0320_1_13.jpg"},{"type":"JPG","image":"appearances/0320_1_12.jpg"},{"type":"JPG","image":"appearances/0320_1_5.jpg"},{"type":"JPG","image":"appearances/0320_1_17.jpg"},{"type":"JPG","image":"appearances/0320_1_8.jpg"},{"type":"JPG","image":"appearances/0320_1_7.jpg"},{"type":"JPG","image":"appearances/0320_1_11.jpg"},{"type":"JPG","image":"appearances/0320_1_9.jpg"},{"type":"JPG","image":"appearances/0320_1_15.jpg"},{"type":"JPG","image":"appearances/0320_3_15.jpg"}],"vertices-texture":[[0.1514,0.3331],[0.2061,0.3519],[0.1836,0.3645],[0.1802,0.3737],[0.1418,0.3596],[0.2068,0.0061],[0.262,0.025],[0.2523,0.0516],[0.2909,0.0657],[0.2704,0.1221],[0.2865,0.1276],[0.2992,0.1323],[0.2757,0.1971],[0.1538,0.1536],[0.1704,0.1075],[0.1771,0.0887],[0.1831,0.3304],[0.1422,0.3157],[0.1656,0.2511],[0.153,0.2465],[0.1601,0.2271],[0.2051,0.2437],[0.1971,0.2631],[0.2065,0.2666],[0.3389,0.6285],[0.3355,0.6375],[0.2778,0.6018],[0.2812,0.5928],[0.523,0.8407],[0.5006,0.853],[0.4431,0.8171],[0.4653,0.8049],[0.6267,0.1349],[0.6027,0.1989],[0.5798,0.185],[0.6038,0.1211],[0.8823,0.7641],[0.8951,0.7686],[0.8719,0.7851],[0.8592,0.7806],[0.6529,0.0342],[0.6691,0.0396],[0.5853,0.099],[0.5693,0.0937],[0.5656,0.5813],[0.5446,0.6371],[0.4619,0.586],[0.4826,0.5309],[0.1677,0.1938],[0.2064,0.2074],[0.181,0.2251],[0.1424,0.2115],[0.894,0.3789],[0.8841,0.4052],[0.859,0.3896],[0.8689,0.3634],[0.3953,0.2981],[0.3656,0.3807],[0.269,0.3203],[0.2983,0.2387],[0.5648,0.1698],[0.5581,0.1885],[0.4616,0.1279],[0.4682,0.1093],[0.2329,0.2559],[0.2163,0.3021],[0.12,0.2408],[0.1364,0.1952],[0.3546,0.6923],[0.3306,0.7553],[0.2712,0.7191],[0.295,0.6566],[0.9744,0.6729],[0.9839,0.6762],[0.9238,0.7193],[0.9144,0.716],[0.0684,0.6113],[0.0602,0.6305],[0.0008,0.5941],[0.0089,0.5751],[0.4106,0.1615],[0.4558,0.1776],[0.3954,0.2204],[0.3506,0.2044],[0.6034,0.8345],[0.5963,0.8539],[0.5255,0.8099],[0.5325,0.7906],[0.7893,0.9113],[0.7049,0.9998],[0.6699,0.9788],[0.6385,0.9523],[0.6959,0.7885],[0.7029,0.7925],[0.7425,0.8166],[0.7801,0.8465],[0.7861,0.8512],[0.7579,0.8853],[0.3469,0.3035],[0.3652,0.2844],[0.3967,0.3104],[0.3685,0.3445],[0.3352,0.3181],[0.3455,0.9351],[0.3514,0.9398],[0.2731,0.9999],[0.2673,0.9953],[0.6942,0.6107],[0.732,0.6404],[0.6532,0.7002],[0.6159,0.6708],[0.4537,0.2849],[0.4933,0.3089],[0.4141,0.3683],[0.3749,0.3447],[0.1701,0.8977],[0.1771,0.9018],[0.0977,0.9612],[0.0908,0.9572],[0.6469,0.7017],[0.5885,0.8653],[0.5883,0.8652],[0.6467,0.7016],[0.1048,0.6847],[0.1358,0.7112],[0.0309,0.7588],[0.0002,0.7325],[0.7683,0.5655],[0.7565,0.5798],[0.6657,0.519],[0.6774,0.5049],[0.0925,0.6306],[0.1259,0.6569],[0.0339,0.7277],[0.001,0.7019],[0.3617,0.0989],[0.3337,0.1328],[0.315,0.1317],[0.3429,0.0979],[0.127,0.9649],[0.1581,0.991],[0.1393,0.9995],[0.1082,0.9735],[0.368,0.3254],[0.4114,0.2079],[0.5396,0.2536],[0.4954,0.3734],[0.4333,0.35],[0.4078,0.3404],[0.2637,0.3797],[0.2935,0.3899],[0.2776,0.433],[0.1498,0.3874],[0.164,0.3491],[0.1933,0.3309],[0.2065,0.3601],[0.2309,0.3685],[0.5073,0.6934],[0.6356,0.7386],[0.6116,0.7569],[0.4838,0.7119],[0.5058,0.5947],[0.4626,0.7116],[0.4614,0.7114],[0.5046,0.5945],[0.8442,0.8452],[0.8779,0.8049],[0.368,0.9455],[0.4074,0.9606],[0.3139,0.9996],[0.2751,0.9846],[0.4679,0.0055],[0.4932,0.0153],[0.3995,0.0541],[0.3745,0.0445],[0.4199,0.9371],[0.4815,0.9608],[0.387,0.9994],[0.3262,0.976],[0.7522,0.7355],[0.782,0.7456],[0.7209,0.793],[0.6913,0.783],[0.4627,0.0073],[0.4955,0.0184],[0.4341,0.0658],[0.4015,0.0548],[0.2406,0.87],[0.265,0.8782],[0.2034,0.9255],[0.1792,0.9173],[0.2191,0.6312],[0.2325,0.6602],[0.1707,0.7073],[0.1575,0.6784],[0.9458,0.5137],[0.9164,0.5317],[0.9152,0.5309],[0.9446,0.5129],[0.2438,0.0921],[0.2298,0.1302],[0.2286,0.13],[0.2427,0.0919],[0.7252,0.3039],[0.7415,0.2586],[0.8624,0.3018],[0.8413,0.3599],[0.7669,0.3327],[0.7489,0.3844],[0.7023,0.3678],[0.7189,0.3214],[0.0379,0.5246],[0.0009,0.5114],[0.0189,0.4599],[0.093,0.487],[0.114,0.4291],[0.1538,0.4433],[0.1309,0.5059],[0.1594,0.5165],[0.1534,0.5354],[0.1042,0.5173],[0.103,0.5201],[0.0935,0.5172],[0.0734,0.5387],[0.7671,0.6161],[0.7486,0.6672],[0.7249,0.6546],[0.7434,0.6037],[0.6793,0.3834],[0.7532,0.4104],[0.7269,0.4221],[0.6532,0.3952],[0.7234,0.5234],[0.7018,0.5808],[0.6785,0.5682],[0.7,0.5109],[0.843,0.1394],[0.8267,0.1848],[0.7311,0.1185],[0.7472,0.0737],[0.65,0.9817],[0.6437,0.9991],[0.5481,0.9326],[0.5543,0.9154],[0.9582,0.9532],[0.9415,0.9996],[0.8461,0.9325],[0.8626,0.8867],[0.5293,0.9817],[0.5756,0.9982],[0.5729,0.9994],[0.5266,0.9829],[0.9124,0.4149],[0.8923,0.4361],[0.8303,0.4034],[0.8502,0.3824],[0.0702,0.6415],[0.0796,0.6444],[0.0097,0.675],[0.0004,0.6721],[0.9758,0.1109],[0.9745,0.1137],[0.9126,0.081],[0.9139,0.0782],[0.321,0.793],[0.3699,0.811],[0.2995,0.8415],[0.2511,0.8236],[0.7699,0.3091],[0.7637,0.3278],[0.7023,0.2951],[0.7085,0.2766],[0.353,0.3853],[0.3817,0.3956],[0.3195,0.4433],[0.2911,0.4332],[0.8289,0.9372],[0.8054,0.9991],[0.744,0.9657],[0.7673,0.9044],[0.7741,0.5195],[0.8109,0.5327],[0.8082,0.5339],[0.7714,0.5207],[0.4027,0.893],[0.438,0.9071],[0.3683,0.9375],[0.3334,0.9236],[0.3289,0.471],[0.2785,0.4293],[0.2789,0.4287],[0.2421,0.3991],[0.372,0.2455],[0.4574,0.3168],[0.6013,0.2603],[0.5649,0.2304],[0.6018,0.2597],[0.4695,0.9042],[0.4533,0.8908],[0.5816,0.7369],[0.5976,0.7503],[0.515,0.8493],[0.5125,0.8527],[0.511,0.8544],[0.0325,0.7906],[0.0001,0.7629],[0.1273,0.608],[0.1628,0.6382],[0.5958,0.3409],[0.4661,0.492],[0.4532,0.4847],[0.5827,0.3338],[0.4886,0.5166],[0.3578,0.6696],[0.3303,0.651],[0.4606,0.4985],[0.0964,0.3606],[0.1328,0.3902],[0.1056,0.4016],[0.0693,0.3721],[0.8465,0.4104],[0.846,0.4109],[0.8188,0.4075],[0.8192,0.4069],[0.0015,0.4992],[0.0513,0.541],[0.0506,0.5413],[0.0008,0.4995],[0.5654,0.1972],[0.6012,0.2274],[0.6005,0.2277],[0.5647,0.1976],[0.6005,0.645],[0.5309,0.655],[0.9508,0.7969],[0.9088,0.8457],[0.8404,0.8084],[0.8819,0.76],[0.6002,0.6406],[0.5988,0.6423],[0.5304,0.605],[0.5318,0.6033],[0.4543,0.0574],[0.4517,0.0607],[0.3833,0.0233],[0.3858,0.02],[0.9585,0.9025],[0.8752,0.9995],[0.8076,0.9611],[0.8901,0.8651],[0.7445,0.257],[0.6762,0.2653],[0.0235,0.8748],[0.0395,0.8882],[0.0388,0.8885],[0.0228,0.8751],[0.8812,0.0563],[0.7541,0.2111],[0.6818,0.1621],[0.8078,0.0086],[0.4023,0.5008],[0.4344,0.5284],[0.3625,0.5589],[0.3307,0.5316],[0.5825,0.7059],[0.5664,0.6925],[0.5509,0.7111],[0.4956,0.6682],[0.5615,0.5881],[0.5965,0.6092],[0.6809,0.5207],[0.6822,0.5217],[0.6992,0.5015],[0.7315,0.5272],[0.9445,0.4425],[0.9313,0.4582],[0.9149,0.4452],[0.9305,0.4267],[0.9465,0.4402],[0.1601,0.2307],[0.1418,0.2498],[0.1589,0.2296],[0.0291,0.1053],[0.0134,0.1236],[0.0009,0.1158],[0.0166,0.0976],[0.8951,0.064],[0.9111,0.0774],[0.8944,0.0848],[0.8785,0.0713],[0.9626,0.3434],[0.8121,0.5187],[0.7351,0.4675],[0.8838,0.2944],[0.1918,0.6324],[0.2242,0.658],[0.1461,0.7188],[0.1141,0.6935],[0.2591,0.7876],[0.1753,0.8753],[0.1752,0.8753],[0.259,0.7875],[0.8392,0.1682],[0.8743,0.189],[0.8742,0.1891],[0.8391,0.1682],[0.1725,0.5502],[0.1062,0.6299],[0.0009,0.5654],[0.0664,0.4868],[0.5103,0.2135],[0.497,0.2289],[0.4306,0.1877],[0.4437,0.1724],[0.9648,0.2113],[0.9628,0.2136],[0.8965,0.1724],[0.8984,0.1701],[0.9809,0.9793],[0.9636,0.9991],[0.95,0.99],[0.9672,0.9702],[0.1603,0.2082],[0.1422,0.2272],[0.142,0.2272],[0.1602,0.2081],[0.1366,0.1258],[0.1378,0.1268],[0.119,0.1353],[0.1178,0.1343],[0.3061,0.8355],[0.2477,0.9991],[0.187,0.9773],[0.131,0.9572],[0.0616,0.9323],[0.0005,0.9104],[0.0021,0.9054],[0.0567,0.741],[0.0567,0.7411],[0.1212,0.7644],[0.2449,0.8092],[0.2463,0.8099],[0.2394,0.393],[0.2378,0.3979],[0.2372,0.3975],[0.2388,0.3927],[0.9497,0.2053],[0.9784,0.2475],[0.3733,0.3002],[0.4334,0.3251],[0.3534,0.3841],[0.2941,0.3595],[0.3416,0.2382],[0.343,0.2388],[0.2631,0.2978],[0.2616,0.2972],[0.7405,0.898],[0.8647,0.9414],[0.7832,0.9998],[0.6605,0.957],[0.8627,0.0801],[0.9275,0.1027],[0.8451,0.1609],[0.7812,0.1385],[0.6593,0.1004],[0.5563,0.0407],[0.9591,0.4461],[0.9044,0.6105],[0.9038,0.6102],[0.9585,0.4458],[0.9464,0.7824],[0.9448,0.7873],[0.9145,0.769],[0.9161,0.7641],[0.6191,0.5652],[0.6797,0.587],[0.5777,0.6356],[0.5177,0.6141],[0.1026,0.7149],[0.1715,0.7397],[0.0686,0.788],[0.0005,0.7635],[0.7877,0.4936],[0.8433,0.5136],[0.7397,0.5616],[0.6848,0.5419],[0.6216,0.8485],[0.6819,0.8702],[0.5776,0.918],[0.518,0.8966],[0.322,0.9068],[0.2007,0.8634],[0.269,0.6731],[0.3909,0.7166],[0.8803,0.3976],[0.84,0.3832],[0.9088,0.1937],[0.9497,0.2083],[0.3868,0.8112],[0.3162,0.9991],[0.2932,0.9854],[0.3636,0.7981],[0.7773,0.3954],[0.8997,0.4375],[0.8992,0.4379],[0.7768,0.3958],[0.8735,0.7444],[0.8052,0.9347],[0.7091,0.8707],[0.7767,0.6828],[0.3951,0.6406],[0.3337,0.6464],[0.6844,0.1605],[0.6133,0.3475],[0.5533,0.3116],[0.6237,0.1262],[0.3944,0.6341],[0.3336,0.6382],[0.3497,0.6841],[0.3908,0.6983],[0.3903,0.6986],[0.3492,0.6845],[0.1632,0.6607],[0.1423,0.6429],[0.1861,0.5902],[0.2077,0.6071],[0.7278,0.8693],[0.6748,0.8243],[0.7194,0.7705],[0.7744,0.8139],[0.227,0.2484],[0.2111,0.2349],[0.2576,0.1796],[0.2741,0.1926],[0.2512,0.2197],[0.4164,0.1156],[0.4382,0.1322],[0.3795,0.1778],[0.3579,0.1612],[0.899,0.7659],[0.8552,0.8187],[0.7794,0.7716],[0.8228,0.7193],[0.0017,0.5458],[0.0225,0.5634],[0.0211,0.5641],[0.0003,0.5464],[0.4031,0.5899],[0.3563,0.6444],[0.3437,0.6366],[0.3904,0.5822],[0.4059,0.0886],[0.4613,0.1313],[0.461,0.1316],[0.4055,0.0889],[0.7595,0.3506],[0.7148,0.4044],[0.6857,0.3863],[0.7302,0.3327],[0.4664,0.4471],[0.519,0.4918],[0.5176,0.4924],[0.4649,0.4478],[0.0687,0.5179],[0.0008,0.5723],[0.9667,0.4134],[0.9424,0.4416],[0.8753,0.4007],[0.8993,0.3727],[0.0898,0.9065],[0.0669,0.9332],[0.0,0.8919],[0.0227,0.8655],[0.0271,0.8261],[0.0436,0.8388],[0.0433,0.8391],[0.0267,0.8264],[0.0279,0.8096],[0.0437,0.823],[0.0423,0.8236],[0.0265,0.8102],[0.3441,0.8768],[0.2989,0.9994],[0.2364,0.9759],[0.1741,0.9525],[0.2183,0.8327],[0.3436,0.8774],[0.2942,0.2182],[0.3101,0.1751],[0.3728,0.1966],[0.3899,0.2024],[0.4146,0.1931],[0.4156,0.1919],[0.4324,0.2273],[0.4196,0.2621],[0.419,0.2627],[0.4268,0.3052],[0.3799,0.4261],[0.3796,0.426],[0.4265,0.305],[0.0276,0.4192],[0.0271,0.4198],[0.0002,0.416],[0.0007,0.4153],[0.6515,0.6014],[0.7769,0.6456],[0.7533,0.6641],[0.6283,0.6201],[0.5731,0.247],[0.5291,0.3661],[0.5285,0.366],[0.5725,0.247],[0.0957,0.5712],[0.1573,0.5949],[0.0616,0.6334],[0.0007,0.61],[0.7804,0.2452],[0.8423,0.2691],[0.7458,0.3073],[0.6846,0.2838],[0.1968,0.4622],[0.1835,0.4965],[0.1832,0.4963],[0.1965,0.462],[0.1425,0.0374],[0.1594,0.0727],[0.1591,0.0729],[0.1421,0.0376],[0.6033,0.1706],[0.6024,0.1718],[0.5321,0.1624],[0.5331,0.1612],[0.167,0.7788],[0.1916,0.7692],[0.2187,0.8171],[0.1943,0.8267],[0.6538,0.2222],[0.6709,0.2279],[0.6101,0.2761],[0.5932,0.2703],[0.4512,0.8217],[0.5139,0.8429],[0.4526,0.8909],[0.3904,0.8698],[0.1796,0.5843],[0.1638,0.6271],[0.1632,0.6271],[0.179,0.5842],[0.0635,0.7802],[0.1103,0.7965],[0.083,0.8761],[0.0989,0.8817],[0.0555,0.9993],[0.0182,0.9852],[0.0245,0.968],[0.0004,0.959],[0.0635,0.7803],[0.9716,0.7303],[0.9423,0.7485],[0.9281,0.7869],[0.9123,0.7812],[0.9395,0.7019],[0.9767,0.7149],[0.7948,0.2386],[0.8107,0.2442],[0.7867,0.2625],[0.7708,0.2569],[0.4167,0.4204],[0.3882,0.4989],[0.3645,0.4866],[0.3928,0.4083],[0.2881,0.4446],[0.1962,0.4859],[0.4769,0.7758],[0.414,0.9536],[0.3228,0.9401],[0.3849,0.7645],[0.7051,0.5428],[0.729,0.5518],[0.6376,0.5909],[0.614,0.582],[0.8539,0.7448],[0.8475,0.762],[0.7561,0.7482],[0.7623,0.7312],[0.6454,0.1031],[0.6824,0.1173],[0.5907,0.156],[0.5541,0.142],[0.8402,0.2362],[0.8349,0.2515],[0.7748,0.2201],[0.7801,0.2049],[0.033,0.8854],[0.0372,0.8803],[0.1023,0.9349],[0.0507,0.9991],[0.0003,0.9573],[0.0482,0.9],[0.0321,0.8865],[0.314,0.3067],[0.2779,0.2764],[0.3291,0.2126],[0.3654,0.2427],[0.2542,0.25],[0.2703,0.2634],[0.2225,0.3206],[0.2064,0.3073],[0.455,0.0706],[0.4507,0.0756],[0.3687,0.0328],[0.3729,0.0279],[0.8032,0.3657],[0.8023,0.3668],[0.7203,0.3239],[0.7212,0.3228],[0.6559,0.4971],[0.6721,0.5104],[0.6587,0.5213],[0.6426,0.508],[0.5318,0.9429],[0.4835,0.9991],[0.4704,0.992],[0.5186,0.9359],[0.9671,0.1619],[0.9159,0.2256],[0.8889,0.222],[0.9399,0.1584],[0.1395,0.0753],[0.2038,0.1301],[0.2028,0.1305],[0.1385,0.0758],[0.1218,0.8882],[0.071,0.9515],[0.0,0.9421],[0.0504,0.8794],[0.7683,0.9476],[0.6973,0.9382],[0.4918,0.2573],[0.5275,0.2877],[0.5265,0.2881],[0.4908,0.2578],[0.4863,0.3843],[0.4381,0.4404],[0.3698,0.4039],[0.4175,0.3483],[0.9333,0.8237],[0.9191,0.8667],[0.9174,0.8715],[0.8758,0.8566],[0.8526,0.8483],[0.7647,0.8167],[0.71,0.798],[0.71,0.7979],[0.7738,0.7655],[0.6544,0.4119],[0.5998,0.5763],[0.6141,0.5333],[0.4539,0.4748],[0.39,0.5073],[0.3899,0.5074],[0.3347,0.4885],[0.3895,0.336],[0.4141,0.3249],[0.5928,0.3896],[0.6385,0.4062],[0.9348,0.7389],[0.9891,0.7576],[0.9876,0.7583],[0.9333,0.7396],[0.2352,0.157],[0.3225,0.1883],[0.2523,0.2227],[0.1658,0.1916],[0.5774,0.5965],[0.6004,0.6048],[0.5301,0.6391],[0.5072,0.6309],[0.4295,0.9056],[0.4709,0.9205],[0.4002,0.9546],[0.3592,0.9399],[0.2898,0.2707],[0.3058,0.2763],[0.2237,0.334],[0.2079,0.3285],[0.3517,0.1757],[0.3975,0.1917],[0.3149,0.2493],[0.2696,0.2334],[0.3917,0.2601],[0.5711,0.3228],[0.4862,0.3795],[0.309,0.3176],[0.7842,0.6979],[0.7596,0.7091],[0.6605,0.6507],[0.6848,0.6397],[0.6376,0.6622],[0.5828,0.8147],[0.4844,0.7544],[0.5385,0.6038],[0.4063,0.7493],[0.3088,0.799],[0.9346,0.717],[0.9894,0.7359],[0.988,0.7366],[0.9332,0.7178],[0.722,0.8993],[0.722,0.8994],[0.6969,0.8838],[0.6969,0.8837],[0.97,0.6396],[0.9064,0.6714],[0.8816,0.6557],[0.9449,0.624],[0.2228,0.9272],[0.3819,0.9853],[0.3518,1.0],[0.1934,0.942],[0.3123,0.1807],[0.298,0.2238],[0.2677,0.2055],[0.282,0.1626],[0.7242,0.9817],[0.7253,0.9804],[0.7463,0.9979],[0.7454,0.9991],[0.3078,0.9197],[0.2229,0.8477],[0.3508,0.6981],[0.3607,0.7063],[0.3819,0.7239],[0.3828,0.7228],[0.4358,0.7677],[0.1637,0.7877],[0.1478,0.7742],[0.2755,0.6225],[0.2915,0.6361],[0.7429,0.3159],[0.7074,0.2858],[0.8315,0.1346],[0.8703,0.1668],[0.8245,0.3598],[0.7507,0.3537],[0.7468,0.7406],[0.7457,0.7419],[0.6713,0.6956],[0.6723,0.6943],[0.4358,0.1795],[0.3074,0.3291],[0.2947,0.3215],[0.4229,0.1722],[0.6318,0.297],[0.6309,0.2981],[0.6017,0.28],[0.6027,0.2788],[0.3385,0.8621],[0.3598,0.8795],[0.3371,0.8971],[0.3159,0.8798],[0.684,0.0113],[0.694,0.0194],[0.6131,0.0821],[0.6033,0.0741],[0.4827,0.8494],[0.3548,0.9991],[0.3269,0.9809],[0.4543,0.8318],[0.0003,0.1824],[0.0847,0.2539],[0.0845,0.254],[0.0002,0.1824],[0.84,0.604],[0.7118,0.7532],[0.6455,0.7132],[0.7724,0.5655],[0.749,0.3506],[0.7648,0.364],[0.7647,0.3641],[0.7489,0.3507],[0.2665,0.5756],[0.3057,0.6073],[0.2467,0.6526],[0.2078,0.6212],[0.6361,0.0965],[0.512,0.2477],[0.4385,0.2],[0.5615,0.0502],[0.4901,0.4878],[0.5254,0.5177],[0.5253,0.5178],[0.49,0.4878],[0.4864,0.7178],[0.3655,0.6746],[0.3883,0.6111],[0.4107,0.5489],[0.5319,0.5923],[0.712,0.3024],[0.6958,0.3466],[0.656,0.3324],[0.7014,0.2074],[0.7416,0.2218],[0.719,0.2835],[0.7722,0.8757],[0.7256,0.9997],[0.7024,0.9866],[0.7488,0.8631],[0.1276,0.8094],[0.2494,0.8515],[0.2486,0.852],[0.1269,0.81],[0.4927,0.9376],[0.4703,0.9998],[0.3738,0.9345],[0.3958,0.8731],[0.4928,0.8074],[0.47,0.8709],[0.3737,0.8048],[0.3962,0.7421],[0.1266,0.3352],[0.2467,0.3781],[0.2463,0.3783],[0.1262,0.3354],[0.1619,0.043],[0.1453,0.0867],[0.0836,0.0528],[0.1,0.0095],[0.7713,0.5047],[0.7642,0.5234],[0.7025,0.4892],[0.7096,0.4707],[0.8286,0.3818],[0.8055,0.4427],[0.7441,0.408],[0.767,0.3476],[0.7259,0.1761],[0.7663,0.1901],[0.7656,0.1906],[0.7252,0.1767],[0.7711,0.1488],[0.8106,0.1629],[0.8101,0.1631],[0.7706,0.149],[0.8946,0.854],[0.918,0.8701],[0.9277,0.8767],[0.9105,0.894],[0.8744,0.8719],[0.9104,0.8517],[0.8744,0.8296],[0.89,0.8105],[0.9272,0.8333],[0.6043,0.1568],[0.5962,0.1663],[0.5435,0.1384],[0.5903,0.083],[0.6433,0.1111],[0.609,0.1513],[0.0002,0.1659],[0.0595,0.1114],[0.0713,0.12],[0.1074,0.1431],[0.053,0.194],[0.0879,0.8748],[0.0782,0.8682],[0.0792,0.868],[0.0889,0.8746],[0.9034,0.6778],[0.8799,0.6616],[0.8822,0.6613],[0.9058,0.6773],[0.7021,0.4862],[0.7104,0.479],[0.7572,0.4895],[0.7523,0.4974],[0.0541,0.231],[0.0589,0.2269],[0.1037,0.237],[0.1009,0.2415],[0.887,0.2757],[0.9219,0.2456],[0.9524,0.2527],[0.9318,0.2859],[0.2292,0.3464],[0.1762,0.3183],[0.2067,0.3034],[0.2594,0.3314],[0.3975,0.8852],[0.4072,0.8309],[0.4574,0.8421],[0.4267,0.8915],[0.9658,0.9575],[0.9297,0.9344],[0.9444,0.9319],[0.9818,0.9548],[0.0352,0.8172],[0.0234,0.8087],[0.0277,0.808],[0.0403,0.8164]]},"metadata":{"referenceSystem":"urn:ogc:def:crs:EPSG::7415","geographicalExtent":[90454.18900000001,435614.88,0.0,91002.41900000001,436048.217,18.29],"citymodelIdentifier":"4f1187eb-92e8-4a91-b73d-30df1f8b1655","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"rotterdam_subset.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"present","materials":"absent","cityfeatureMetadata":{"Building":{"uniqueFeatureCount":16,"aggregateFeatureCount":16,"presentLoDs":{"2":16}}},"presentLoDs":{"2":16},"thematicModels":["Building"]}} \ No newline at end of file +{"type":"CityJSON","version":"1.1","CityObjects":{"{C9D4A5CF-094A-47DA-97E4-4A3BFD75D3AE}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[0,1,2,3,4]],[[5,6,7,8,9,10,11,12,13,14,15]],[[16,17,18,19,20,21,22,23]],[[24,25,26,27,28,29,30,31,32,33,34,35]],[[3,2,35,36]],[[2,1,24,35]],[[12,11,18,17]],[[11,10,19,18]],[[10,9,34,33]],[[9,8,36,34]],[[8,7,4,3]],[[7,6,0,4]],[[5,15,26,25]],[[15,14,37,26]],[[14,13,27,37]],[[16,23,29,38]],[[23,22,30,29]],[[22,21,31,30]],[[21,20,32,31]],[[20,19,33,32]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":3.03,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{71B60053-BC28-404D-BAB9-8A642AAC0CF4}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[39,40,41,42,43,44,45,46,47,48]],[[49,50,51,52,53]],[[54,55,56,57,58,59,60,61,62]],[[47,46,62,63]],[[46,45,54,62]],[[45,44,55,54]],[[44,43,56,55]],[[43,42,64,65]],[[42,41,58,57]],[[49,53,61,60]],[[53,52,63,61]],[[52,51,48,47]],[[51,50,39,48]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.68,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{6271F75F-E8D8-4EE4-AC46-9DB02771A031}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[66,67,68,69,70,71,66]],[[72,73,74,75,76,77,78,79]],[[80,81,82,83,84,85,86,87]],[[68,67,75,74]],[[67,66,88,89]],[[66,66,84,84]],[[66,71,90,84]],[[71,70,85,90]],[[70,69,86,85]],[[73,72,91,87]],[[72,79,80,91]],[[79,78,81,80]],[[78,77,82,81]],[[77,76,92,93]],[[76,75,94,92]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":3.12,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{DE77E78F-B110-43D2-A55C-8B61911192DE}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[95,96,97,98,99,100,101,102]],[[103,104,105,106,107,108,109,110,111,112,113,114,115]],[[116,117,118,119,120,121,122,123,124,125,126,127]],[[100,99,105,104]],[[99,98,106,105]],[[98,97,107,106]],[[96,95,128,117]],[[95,102,118,128]],[[102,101,119,118]],[[101,100,129,130]],[[115,114,122,121]],[[114,113,123,122]],[[113,112,124,123]],[[112,111,125,124]],[[111,110,126,125]],[[110,109,127,126]],[[109,108,116,127]],[[104,103,131,132]],[[103,115,121,120]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.88,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{19935DFC-F7B3-4D6E-92DD-C48EE1D1519A}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[133,134,135,136,137,138]],[[139,140,141]],[[142,143,144,145,145,146,147,148,142]],[[149,150,151,152]],[[153,154,155,156,157,158,159]],[[133,138,144,143]],[[137,136,149,152]],[[136,135,141,140]],[[135,134,139,141]],[[134,133,160,161]],[[140,139,162,163]],[[142,142,158,158]],[[142,148,164,158]],[[148,147,159,164]],[[147,146,153,159]],[[146,145,165,153]],[[145,145,165,165]],[[143,142,166,167]],[[151,150,156,155]],[[150,149,157,156]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.82,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{953BC999-2F92-4B38-95CF-218F7E05AFA9}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[168,169,170,171,172,173,174,175,176,177]],[[178,179,180,181,182]],[[183,184,185]],[[59,58,186,187,188,60]],[[170,169,181,180]],[[169,168,182,181]],[[168,177,188,189]],[[177,176,60,188]],[[174,173,40,39]],[[173,172,41,40]],[[172,171,186,58]],[[179,178,190,187]],[[178,182,189,190]],[[185,184,176,175]],[[184,183,50,49]],[[183,185,175,174]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.66,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{8D716FDE-18DD-4FB5-AB06-9D207377240E}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[65,64,191,192,193,194,195,196,196,197,198,199]],[[200,201,202,203,204,205,57,56,206]],[[207,208,209,210]],[[208,208,203,203]],[[65,199,206,56]],[[199,198,200,206]],[[198,197,201,200]],[[197,196,202,201]],[[196,196,202,202]],[[196,195,211,212]],[[195,194,208,207]],[[194,193,204,203]],[[193,192,213,204]],[[192,191,205,213]],[[191,64,57,205]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,1,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.71,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{C6AAF95B-8C09-4130-AB4D-6777A2A18A2E}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[214,215,216,217]],[[218,219,220,221,221,218]],[[222,28,27,223]],[[214,217,220,219]],[[217,216,13,12]],[[216,215,223,27]],[[218,218,222,222]],[[218,221,38,222]],[[221,221,38,38]],[[221,220,17,16]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.94,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{72390BDE-903C-4C8C-8A3F-2DF5647CD9B4}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[224,225,226,227]],[[228,229,230,231]],[[232,233,234,235,236,232]],[[187,186,237,238,239]],[[227,226,237,186]],[[226,225,238,237]],[[225,224,240,241]],[[228,231,234,233]],[[231,230,171,170]],[[230,229,224,227]],[[229,228,242,243]],[[232,232,239,239]],[[232,236,244,239]],[[236,235,187,244]],[[235,234,180,179]],[[233,232,245,246]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.59,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{8244B286-63E2-436E-9D4E-169B8ACFE9D0}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[247,248,249,250,251,252]],[[253,254,255,256,257,258,259,260,261]],[[262,87,86,263,264,265,266,267,268]],[[248,247,269,270]],[[247,252,261,260]],[[252,251,253,261]],[[251,250,69,68]],[[250,249,263,86]],[[249,248,264,263]],[[260,259,271,272]],[[259,258,273,271]],[[258,257,267,266]],[[257,256,268,267]],[[256,255,262,268]],[[255,254,87,262]],[[254,253,74,73]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":3.03,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{87316D28-7574-4763-B9CE-BF6A2DF8092C}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[130,129,274,89,88,275,276,277,130]],[[93,92,94,278,132,131]],[[120,119,279,280,281,84,83,82]],[[89,274,278,94]],[[274,129,132,278]],[[130,130,119,119]],[[130,277,279,119]],[[277,276,280,279]],[[276,275,281,280]],[[275,88,84,281]],[[93,131,120,82]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":3.31,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{CD98680D-A8DD-4106-A18E-15EE2A908D75}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[282,283,284,161,160,285,286]],[[287,288,288,163,162]],[[289,290,167,166]],[[291,158,157,292]],[[283,282,293,291]],[[282,286,294,293]],[[286,285,290,289]],[[285,160,167,290]],[[161,284,287,162]],[[284,283,295,296]],[[163,288,292,157]],[[288,288,292,292]],[[288,287,297,298]],[[289,166,158,294]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,1,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.93,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{64A9018E-4F56-47CD-941F-43F6F0C4285B}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[299,210,209,300,301,302,303,304,305]],[[212,211,306,307,308,309,310,310,311,312,313,314]],[[315,316,317,25,24,318,203,202]],[[303,302,1,0]],[[302,301,318,24]],[[301,300,319,318]],[[300,209,203,319]],[[212,314,320,202]],[[314,313,315,320]],[[313,312,316,315]],[[312,311,317,316]],[[311,310,25,317]],[[310,310,25,25]],[[310,309,6,5]],[[309,308,304,303]],[[308,307,305,304]],[[307,306,299,305]],[[306,211,210,299]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.8,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{459F183A-D0C2-4F8A-8B5F-C498EFDE366D}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[321,241,241,240,322]],[[323,324,325,326,327,243,242]],[[328,329,246,245]],[[330,331,332,333]],[[154,239,238,334,335,155]],[[241,241,238,238]],[[241,321,334,238]],[[323,242,246,329]],[[243,327,322,240]],[[327,326,321,322]],[[326,325,336,334]],[[325,324,330,333]],[[324,323,138,137]],[[328,245,239,165]],[[329,328,145,144]],[[333,332,335,336]],[[332,331,155,335]],[[331,330,152,151]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.8,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{237D41CC-991E-4308-8986-42ABFB4F7431}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[337,338,339,340,341]],[[342,343,344,345,346,347]],[[116,348,222,223,349,117]],[[337,341,345,344]],[[341,340,215,214]],[[340,339,349,223]],[[339,338,117,349]],[[338,337,97,96]],[[343,342,350,116]],[[342,347,348,350]],[[347,346,222,348]],[[346,345,219,218]],[[344,343,108,107]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,1,2,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.81,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}},"{23D8CA22-0C82-4453-A11E-B3F2B3116DB4}":{"type":"Building","geometry":[{"type":"MultiSurface","lod":"2","boundaries":[[[351,352,353,354,355]],[[355,354,356,357]],[[358,359,360,361,362,363]],[[359,364,365,366,360]],[[367,368,369,370,371,372,373]],[[353,352,374,375]],[[352,351,376,377]],[[359,358,378,379]],[[358,363,380,378]],[[363,362,368,380]],[[362,361,369,368]],[[364,359,379,367]],[[366,365,357,356]],[[365,364,381,382]]],"semantics":{"surfaces":[{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"}],"values":[0,0,0,0,1,2,2,2,2,2,2,2,2,2]}}],"attributes":{"TerrainHeight":2.51,"bron_tex":"UltraCAM-X 10cm juni 2008","voll_tex":"complete","bron_geo":"Lidar 15-30 punten - nov. 2008","status":"1","cjio_test":"made by Bal\u00e1zs"}}},"vertices":[[534602,23777,10652],[533240,27890,10652],[532280,26210,10652],[531592,25966,10652],[532612,23075,10652],[535971,19642,15211],[534602,23777,15211],[532612,23075,15211],[531592,25966,15211],[527370,24469,15211],[526970,25679,15211],[526634,26631,15211],[521782,24919,15211],[524932,15783,15211],[528384,16990,15211],[529789,17482,15211],[520720,27999,11036],[521782,24919,11036],[526634,26631,11036],[526970,25679,11036],[528430,26200,11036],[527220,29589,11036],[525760,29000,11036],[525510,29710,11036],[533240,27890,0],[535971,19642,0],[529789,17482,0],[524932,15783,0],[520720,28000,0],[525510,29710,0],[525760,29000,0],[527220,29589,0],[528430,26200,0],[526970,25679,0],[527370,24469,0],[532280,26210,0],[531592,25966,0],[528384,16990,0],[520720,27999,0],[525928,69162,15561],[519299,62875,15561],[520860,60260,15561],[522830,57909,15561],[535070,62159,15561],[534770,62679,15561],[532980,65640,15561],[530759,68458,15561],[530409,68902,15561],[527861,66809,15561],[527360,70520,18270],[525928,69162,18270],[527861,66809,18270],[530409,68902,18270],[528450,71390,18270],[532980,65640,0],[534770,62679,0],[535070,62159,0],[522830,57909,0],[520860,60260,0],[519299,62875,0],[527360,70520,0],[528450,71390,0],[530759,68458,0],[530409,68902,0],[522830,57909,15531],[535070,62159,15531],[476782,4120,15121],[485567,7330,15121],[482186,16908,15121],[473239,13640,15121],[474966,8999,15121],[475676,7092,15121],[486176,15858,10946],[485419,18089,10946],[482186,16908,10946],[485567,7330,10946],[488440,8380,10946],[489810,10570,10946],[487631,11570,10946],[487009,13400,10946],[487009,13400,0],[487631,11570,0],[489810,10570,0],[488440,8380,0],[476782,4120,0],[474966,8999,0],[473239,13640,0],[485419,18089,0],[476782,4120,14931],[485567,7330,14931],[475676,7092,0],[486176,15858,0],[488440,8380,10756],[489810,10570,10756],[485567,7330,10756],[497906,6338,15361],[501299,7523,15361],[498172,16587,15361],[493824,15051,15361],[495792,9476,15361],[491929,8163,15361],[493131,4669,15361],[496599,5881,15361],[490970,10950,11186],[491929,8163,11186],[495792,9476,11186],[493824,15051,11186],[498172,16587,11186],[497140,19578,11186],[492440,17900,11186],[491670,20049,11186],[490250,19609,11186],[491570,15909,11186],[491360,15820,11186],[491570,15109,11186],[489940,13619,11186],[497140,19578,0],[501299,7523,0],[496599,5881,0],[493131,4669,0],[490970,10950,0],[489940,13619,0],[491570,15109,0],[491360,15820,0],[491570,15909,0],[490250,19609,0],[491670,20049,0],[492440,17900,0],[497906,6338,0],[491929,8163,14931],[493131,4669,14931],[490970,10950,10756],[491929,8163,10756],[484548,37036,15421],[487650,33263,15421],[487691,33295,15421],[489890,30539,15421],[501393,40203,15421],[496092,46592,15421],[487650,33263,11246],[489890,30539,11246],[487691,33295,11246],[483552,38248,12979],[484548,37036,12979],[496092,46592,12979],[495096,47792,12979],[487670,41640,12979],[487418,41451,12979],[487289,41343,12979],[489890,30539,11225],[491940,28099,11225],[503619,37521,11225],[501393,40203,11225],[487670,41640,0],[495096,47793,0],[503619,37521,0],[491940,28099,0],[489890,30539,0],[483552,38248,0],[487418,41451,0],[484548,37036,15311],[487650,33263,15311],[487650,33263,11136],[489890,30539,11136],[487289,41343,0],[495096,47792,0],[483552,38248,12869],[484548,37036,12869],[512075,61858,15581],[513074,60652,15581],[511678,59495,15581],[514870,55359,15581],[520860,60260,15581],[519299,62875,15581],[525928,69162,15581],[525852,69254,15581],[527360,70520,15581],[525450,72940,15581],[511901,61714,13139],[510720,60737,13139],[511678,59495,13139],[513074,60652,13139],[512075,61858,13139],[525928,69162,18290],[527360,70520,18290],[525852,69254,18290],[514870,55359,0],[510720,60737,0],[525450,72940,0],[512075,61858,0],[511901,61714,0],[524409,53355,15531],[525864,49161,15531],[527668,43958,15531],[529256,39380,15531],[529623,39498,15531],[541921,43467,15531],[540228,48299,15531],[536980,57570,15531],[536935,57678,15531],[536980,57570,0],[540228,48299,0],[541921,43467,0],[529256,39380,0],[527668,43958,0],[524409,53355,0],[536935,57678,0],[529623,39498,10972],[529256,39380,10972],[529256,39380,10882],[529623,39498,10882],[529623,39498,15441],[541921,43467,15441],[525864,49161,0],[507555,19897,15301],[510700,10810,15301],[524932,15783,15301],[521782,24919,15301],[506509,22924,11126],[507555,19897,11126],[521782,24919,11126],[520720,27999,11126],[506509,22924,0],[510700,10810,0],[510828,52060,11355],[512139,50480,11355],[516120,53729,11355],[514870,55359,11355],[507515,56049,15651],[510828,52060,15651],[514870,55359,15651],[511678,59495,15651],[506516,57252,13209],[507515,56049,13209],[511678,59495,13209],[510720,60737,13209],[508677,59043,13209],[516120,53729,0],[512139,50480,0],[506516,57252,0],[510828,52060,11145],[512139,50480,11145],[507515,56049,15441],[510828,52060,15441],[508677,59043,0],[506516,57252,12999],[507515,56049,12999],[478932,26306,15211],[469771,22961,15211],[471509,18289,15211],[473239,13640,15211],[482186,16908,15211],[478883,26267,15211],[482186,16908,11036],[485419,18089,11036],[483824,22790,11036],[483390,24070,11036],[484100,25919,11036],[484189,25990,11036],[481540,27260,11036],[478932,26306,11036],[478883,26267,11036],[483824,22790,0],[471509,18289,0],[469771,22961,0],[481540,27260,0],[484189,25990,0],[484100,25919,0],[483390,24070,0],[478932,26306,15151],[469771,22961,15151],[481540,27260,10976],[478932,26306,10976],[484189,25990,10976],[485986,6141,14931],[477820,1330,14931],[479110,1799,14931],[479770,0,14931],[485986,6141,10756],[479770,0,0],[479110,1799,0],[477820,1330,0],[479169,34618,15311],[478788,34301,15311],[482845,29429,15311],[480252,33479,15311],[479253,34686,15311],[482845,29429,11136],[485101,26718,11136],[479253,34686,12869],[480252,33479,12869],[478788,34301,0],[485101,26718,0],[479169,34618,0],[479253,34686,0],[478788,34301,15151],[482845,29429,15151],[482845,29429,10976],[485101,26718,10976],[532846,40538,10882],[530341,36249,10882],[530948,34499,10882],[533240,27890,10882],[534602,23777,10882],[534608,23779,10882],[537082,28537,10882],[532846,40538,15441],[537082,28537,15441],[534608,23779,15441],[534602,23777,15441],[535971,19642,15441],[547381,23630,15441],[548230,25460,15441],[543539,38849,15441],[542339,42275,15441],[543539,38849,0],[548230,25460,0],[547381,23630,0],[530948,34499,0],[530341,36249,0],[542339,42275,0],[512040,50400,11145],[510742,51990,11145],[496092,46592,15441],[501393,40203,15441],[512643,49656,15441],[512040,50400,15441],[510742,51990,15441],[495096,47792,12999],[496092,46592,12999],[501393,40203,11245],[503619,37521,11245],[515020,46719,11245],[512643,49656,11245],[512040,50400,0],[515020,46719,0],[512643,49656,0],[498172,16587,15431],[501299,7523,15431],[506048,9184,15431],[510700,10810,15431],[507555,19897,15431],[500460,20763,11256],[497140,19578,11256],[498172,16587,11256],[507555,19897,11256],[506509,22924,11256],[501881,21271,11256],[501881,21271,0],[506048,9184,0],[500460,20763,0],[0,426169,3767],[1220,424359,3841],[1720,423609,3868],[2921,424342,5021],[1242,427071,5021],[4150,425091,3841],[2410,427919,3841],[6097,431564,9508],[5503,431194,10188],[7627,427210,10188],[11089,429320,6252],[8947,433337,6252],[6435,431775,9122],[1770,428869,5922],[2410,427919,6036],[4150,425091,6235],[1770,428869,0],[8947,433337,0],[11089,429320,0],[1720,423609,0],[1220,424359,0],[0,426169,0],[2410,427919,0],[1220,424359,3687],[1720,423609,3709],[0,426169,3426],[1220,424359,3477],[6097,431564,0],[5503,431194,0],[6435,431775,0],[1770,428869,5280],[2410,427919,5277]],"appearance":{"textures":[{"type":"JPG","image":"appearances/0320_7_8.jpg"},{"type":"JPG","image":"appearances/0320_7_4.jpg"},{"type":"JPG","image":"appearances/0320_7_7.jpg"},{"type":"JPG","image":"appearances/0320_7_6.jpg"},{"type":"JPG","image":"appearances/0320_7_5.jpg"},{"type":"JPG","image":"appearances/0320_5_8.jpg"},{"type":"JPG","image":"appearances/0320_5_16.jpg"},{"type":"JPG","image":"appearances/0320_5_14.jpg"},{"type":"JPG","image":"appearances/0320_5_11.jpg"},{"type":"JPG","image":"appearances/0320_5_10.jpg"},{"type":"JPG","image":"appearances/0320_5_12.jpg"},{"type":"JPG","image":"appearances/0320_5_17.jpg"},{"type":"JPG","image":"appearances/0320_5_7.jpg"},{"type":"JPG","image":"appearances/0320_5_9.jpg"},{"type":"JPG","image":"appearances/0320_5_13.jpg"},{"type":"JPG","image":"appearances/0320_5_15.jpg"},{"type":"JPG","image":"appearances/0320_5_18.jpg"},{"type":"JPG","image":"appearances/0320_0_14.jpg"},{"type":"JPG","image":"appearances/0320_0_15.jpg"},{"type":"JPG","image":"appearances/0320_0_21.jpg"},{"type":"JPG","image":"appearances/0320_0_18.jpg"},{"type":"JPG","image":"appearances/0320_0_17.jpg"},{"type":"JPG","image":"appearances/0320_0_19.jpg"},{"type":"JPG","image":"appearances/0320_0_20.jpg"},{"type":"JPG","image":"appearances/0320_3_5.jpg"},{"type":"JPG","image":"appearances/0320_3_18.jpg"},{"type":"JPG","image":"appearances/0320_3_9.jpg"},{"type":"JPG","image":"appearances/0320_3_8.jpg"},{"type":"JPG","image":"appearances/0320_3_17.jpg"},{"type":"JPG","image":"appearances/0320_3_16.jpg"},{"type":"JPG","image":"appearances/0320_3_12.jpg"},{"type":"JPG","image":"appearances/0320_3_19.jpg"},{"type":"JPG","image":"appearances/0320_3_13.jpg"},{"type":"JPG","image":"appearances/0320_6_3.jpg"},{"type":"JPG","image":"appearances/0320_6_17.jpg"},{"type":"JPG","image":"appearances/0320_6_18.jpg"},{"type":"JPG","image":"appearances/0320_6_12.jpg"},{"type":"JPG","image":"appearances/0320_6_14.jpg"},{"type":"JPG","image":"appearances/0320_6_7.jpg"},{"type":"JPG","image":"appearances/0320_6_15.jpg"},{"type":"JPG","image":"appearances/0320_6_2.jpg"},{"type":"JPG","image":"appearances/0320_6_9.jpg"},{"type":"JPG","image":"appearances/0320_6_4.jpg"},{"type":"JPG","image":"appearances/0320_6_8.jpg"},{"type":"JPG","image":"appearances/0320_6_16.jpg"},{"type":"JPG","image":"appearances/0320_3_6.jpg"},{"type":"JPG","image":"appearances/0320_3_14.jpg"},{"type":"JPG","image":"appearances/0320_3_11.jpg"},{"type":"JPG","image":"appearances/0320_3_7.jpg"},{"type":"JPG","image":"appearances/0320_3_10.jpg"},{"type":"JPG","image":"appearances/0320_7_9.jpg"},{"type":"JPG","image":"appearances/0320_6_10.jpg"},{"type":"JPG","image":"appearances/0320_0_16.jpg"},{"type":"JPG","image":"appearances/0320_4_15.jpg"},{"type":"JPG","image":"appearances/0320_4_16.jpg"},{"type":"JPG","image":"appearances/0320_4_18.jpg"},{"type":"JPG","image":"appearances/0320_4_19.jpg"},{"type":"JPG","image":"appearances/0320_4_13.jpg"},{"type":"JPG","image":"appearances/0320_4_17.jpg"},{"type":"JPG","image":"appearances/0320_1_6.jpg"},{"type":"JPG","image":"appearances/0320_1_4.jpg"},{"type":"JPG","image":"appearances/0320_1_16.jpg"},{"type":"JPG","image":"appearances/0320_1_10.jpg"},{"type":"JPG","image":"appearances/0320_1_14.jpg"},{"type":"JPG","image":"appearances/0320_1_13.jpg"},{"type":"JPG","image":"appearances/0320_1_12.jpg"},{"type":"JPG","image":"appearances/0320_1_5.jpg"},{"type":"JPG","image":"appearances/0320_1_17.jpg"},{"type":"JPG","image":"appearances/0320_1_8.jpg"},{"type":"JPG","image":"appearances/0320_1_7.jpg"},{"type":"JPG","image":"appearances/0320_1_11.jpg"},{"type":"JPG","image":"appearances/0320_1_9.jpg"},{"type":"JPG","image":"appearances/0320_1_15.jpg"},{"type":"JPG","image":"appearances/0320_3_15.jpg"}],"vertices-texture":[[0.1514,0.3331],[0.2061,0.3519],[0.1836,0.3645],[0.1802,0.3737],[0.1418,0.3596],[0.2068,0.0061],[0.262,0.025],[0.2523,0.0516],[0.2909,0.0657],[0.2704,0.1221],[0.2865,0.1276],[0.2992,0.1323],[0.2757,0.1971],[0.1538,0.1536],[0.1704,0.1075],[0.1771,0.0887],[0.1831,0.3304],[0.1422,0.3157],[0.1656,0.2511],[0.153,0.2465],[0.1601,0.2271],[0.2051,0.2437],[0.1971,0.2631],[0.2065,0.2666],[0.3389,0.6285],[0.3355,0.6375],[0.2778,0.6018],[0.2812,0.5928],[0.523,0.8407],[0.5006,0.853],[0.4431,0.8171],[0.4653,0.8049],[0.6267,0.1349],[0.6027,0.1989],[0.5798,0.185],[0.6038,0.1211],[0.8823,0.7641],[0.8951,0.7686],[0.8719,0.7851],[0.8592,0.7806],[0.6529,0.0342],[0.6691,0.0396],[0.5853,0.099],[0.5693,0.0937],[0.5656,0.5813],[0.5446,0.6371],[0.4619,0.586],[0.4826,0.5309],[0.1677,0.1938],[0.2064,0.2074],[0.181,0.2251],[0.1424,0.2115],[0.894,0.3789],[0.8841,0.4052],[0.859,0.3896],[0.8689,0.3634],[0.3953,0.2981],[0.3656,0.3807],[0.269,0.3203],[0.2983,0.2387],[0.5648,0.1698],[0.5581,0.1885],[0.4616,0.1279],[0.4682,0.1093],[0.2329,0.2559],[0.2163,0.3021],[0.12,0.2408],[0.1364,0.1952],[0.3546,0.6923],[0.3306,0.7553],[0.2712,0.7191],[0.295,0.6566],[0.9744,0.6729],[0.9839,0.6762],[0.9238,0.7193],[0.9144,0.716],[0.0684,0.6113],[0.0602,0.6305],[0.0008,0.5941],[0.0089,0.5751],[0.4106,0.1615],[0.4558,0.1776],[0.3954,0.2204],[0.3506,0.2044],[0.6034,0.8345],[0.5963,0.8539],[0.5255,0.8099],[0.5325,0.7906],[0.7893,0.9113],[0.7049,0.9998],[0.6699,0.9788],[0.6385,0.9523],[0.6959,0.7885],[0.7029,0.7925],[0.7425,0.8166],[0.7801,0.8465],[0.7861,0.8512],[0.7579,0.8853],[0.3469,0.3035],[0.3652,0.2844],[0.3967,0.3104],[0.3685,0.3445],[0.3352,0.3181],[0.3455,0.9351],[0.3514,0.9398],[0.2731,0.9999],[0.2673,0.9953],[0.6942,0.6107],[0.732,0.6404],[0.6532,0.7002],[0.6159,0.6708],[0.4537,0.2849],[0.4933,0.3089],[0.4141,0.3683],[0.3749,0.3447],[0.1701,0.8977],[0.1771,0.9018],[0.0977,0.9612],[0.0908,0.9572],[0.6469,0.7017],[0.5885,0.8653],[0.5883,0.8652],[0.6467,0.7016],[0.1048,0.6847],[0.1358,0.7112],[0.0309,0.7588],[0.0002,0.7325],[0.7683,0.5655],[0.7565,0.5798],[0.6657,0.519],[0.6774,0.5049],[0.0925,0.6306],[0.1259,0.6569],[0.0339,0.7277],[0.001,0.7019],[0.3617,0.0989],[0.3337,0.1328],[0.315,0.1317],[0.3429,0.0979],[0.127,0.9649],[0.1581,0.991],[0.1393,0.9995],[0.1082,0.9735],[0.368,0.3254],[0.4114,0.2079],[0.5396,0.2536],[0.4954,0.3734],[0.4333,0.35],[0.4078,0.3404],[0.2637,0.3797],[0.2935,0.3899],[0.2776,0.433],[0.1498,0.3874],[0.164,0.3491],[0.1933,0.3309],[0.2065,0.3601],[0.2309,0.3685],[0.5073,0.6934],[0.6356,0.7386],[0.6116,0.7569],[0.4838,0.7119],[0.5058,0.5947],[0.4626,0.7116],[0.4614,0.7114],[0.5046,0.5945],[0.8442,0.8452],[0.8779,0.8049],[0.368,0.9455],[0.4074,0.9606],[0.3139,0.9996],[0.2751,0.9846],[0.4679,0.0055],[0.4932,0.0153],[0.3995,0.0541],[0.3745,0.0445],[0.4199,0.9371],[0.4815,0.9608],[0.387,0.9994],[0.3262,0.976],[0.7522,0.7355],[0.782,0.7456],[0.7209,0.793],[0.6913,0.783],[0.4627,0.0073],[0.4955,0.0184],[0.4341,0.0658],[0.4015,0.0548],[0.2406,0.87],[0.265,0.8782],[0.2034,0.9255],[0.1792,0.9173],[0.2191,0.6312],[0.2325,0.6602],[0.1707,0.7073],[0.1575,0.6784],[0.9458,0.5137],[0.9164,0.5317],[0.9152,0.5309],[0.9446,0.5129],[0.2438,0.0921],[0.2298,0.1302],[0.2286,0.13],[0.2427,0.0919],[0.7252,0.3039],[0.7415,0.2586],[0.8624,0.3018],[0.8413,0.3599],[0.7669,0.3327],[0.7489,0.3844],[0.7023,0.3678],[0.7189,0.3214],[0.0379,0.5246],[0.0009,0.5114],[0.0189,0.4599],[0.093,0.487],[0.114,0.4291],[0.1538,0.4433],[0.1309,0.5059],[0.1594,0.5165],[0.1534,0.5354],[0.1042,0.5173],[0.103,0.5201],[0.0935,0.5172],[0.0734,0.5387],[0.7671,0.6161],[0.7486,0.6672],[0.7249,0.6546],[0.7434,0.6037],[0.6793,0.3834],[0.7532,0.4104],[0.7269,0.4221],[0.6532,0.3952],[0.7234,0.5234],[0.7018,0.5808],[0.6785,0.5682],[0.7,0.5109],[0.843,0.1394],[0.8267,0.1848],[0.7311,0.1185],[0.7472,0.0737],[0.65,0.9817],[0.6437,0.9991],[0.5481,0.9326],[0.5543,0.9154],[0.9582,0.9532],[0.9415,0.9996],[0.8461,0.9325],[0.8626,0.8867],[0.5293,0.9817],[0.5756,0.9982],[0.5729,0.9994],[0.5266,0.9829],[0.9124,0.4149],[0.8923,0.4361],[0.8303,0.4034],[0.8502,0.3824],[0.0702,0.6415],[0.0796,0.6444],[0.0097,0.675],[0.0004,0.6721],[0.9758,0.1109],[0.9745,0.1137],[0.9126,0.081],[0.9139,0.0782],[0.321,0.793],[0.3699,0.811],[0.2995,0.8415],[0.2511,0.8236],[0.7699,0.3091],[0.7637,0.3278],[0.7023,0.2951],[0.7085,0.2766],[0.353,0.3853],[0.3817,0.3956],[0.3195,0.4433],[0.2911,0.4332],[0.8289,0.9372],[0.8054,0.9991],[0.744,0.9657],[0.7673,0.9044],[0.7741,0.5195],[0.8109,0.5327],[0.8082,0.5339],[0.7714,0.5207],[0.4027,0.893],[0.438,0.9071],[0.3683,0.9375],[0.3334,0.9236],[0.3289,0.471],[0.2785,0.4293],[0.2789,0.4287],[0.2421,0.3991],[0.372,0.2455],[0.4574,0.3168],[0.6013,0.2603],[0.5649,0.2304],[0.6018,0.2597],[0.4695,0.9042],[0.4533,0.8908],[0.5816,0.7369],[0.5976,0.7503],[0.515,0.8493],[0.5125,0.8527],[0.511,0.8544],[0.0325,0.7906],[0.0001,0.7629],[0.1273,0.608],[0.1628,0.6382],[0.5958,0.3409],[0.4661,0.492],[0.4532,0.4847],[0.5827,0.3338],[0.4886,0.5166],[0.3578,0.6696],[0.3303,0.651],[0.4606,0.4985],[0.0964,0.3606],[0.1328,0.3902],[0.1056,0.4016],[0.0693,0.3721],[0.8465,0.4104],[0.846,0.4109],[0.8188,0.4075],[0.8192,0.4069],[0.0015,0.4992],[0.0513,0.541],[0.0506,0.5413],[0.0008,0.4995],[0.5654,0.1972],[0.6012,0.2274],[0.6005,0.2277],[0.5647,0.1976],[0.6005,0.645],[0.5309,0.655],[0.9508,0.7969],[0.9088,0.8457],[0.8404,0.8084],[0.8819,0.76],[0.6002,0.6406],[0.5988,0.6423],[0.5304,0.605],[0.5318,0.6033],[0.4543,0.0574],[0.4517,0.0607],[0.3833,0.0233],[0.3858,0.02],[0.9585,0.9025],[0.8752,0.9995],[0.8076,0.9611],[0.8901,0.8651],[0.7445,0.257],[0.6762,0.2653],[0.0235,0.8748],[0.0395,0.8882],[0.0388,0.8885],[0.0228,0.8751],[0.8812,0.0563],[0.7541,0.2111],[0.6818,0.1621],[0.8078,0.0086],[0.4023,0.5008],[0.4344,0.5284],[0.3625,0.5589],[0.3307,0.5316],[0.5825,0.7059],[0.5664,0.6925],[0.5509,0.7111],[0.4956,0.6682],[0.5615,0.5881],[0.5965,0.6092],[0.6809,0.5207],[0.6822,0.5217],[0.6992,0.5015],[0.7315,0.5272],[0.9445,0.4425],[0.9313,0.4582],[0.9149,0.4452],[0.9305,0.4267],[0.9465,0.4402],[0.1601,0.2307],[0.1418,0.2498],[0.1589,0.2296],[0.0291,0.1053],[0.0134,0.1236],[0.0009,0.1158],[0.0166,0.0976],[0.8951,0.064],[0.9111,0.0774],[0.8944,0.0848],[0.8785,0.0713],[0.9626,0.3434],[0.8121,0.5187],[0.7351,0.4675],[0.8838,0.2944],[0.1918,0.6324],[0.2242,0.658],[0.1461,0.7188],[0.1141,0.6935],[0.2591,0.7876],[0.1753,0.8753],[0.1752,0.8753],[0.259,0.7875],[0.8392,0.1682],[0.8743,0.189],[0.8742,0.1891],[0.8391,0.1682],[0.1725,0.5502],[0.1062,0.6299],[0.0009,0.5654],[0.0664,0.4868],[0.5103,0.2135],[0.497,0.2289],[0.4306,0.1877],[0.4437,0.1724],[0.9648,0.2113],[0.9628,0.2136],[0.8965,0.1724],[0.8984,0.1701],[0.9809,0.9793],[0.9636,0.9991],[0.95,0.99],[0.9672,0.9702],[0.1603,0.2082],[0.1422,0.2272],[0.142,0.2272],[0.1602,0.2081],[0.1366,0.1258],[0.1378,0.1268],[0.119,0.1353],[0.1178,0.1343],[0.3061,0.8355],[0.2477,0.9991],[0.187,0.9773],[0.131,0.9572],[0.0616,0.9323],[0.0005,0.9104],[0.0021,0.9054],[0.0567,0.741],[0.0567,0.7411],[0.1212,0.7644],[0.2449,0.8092],[0.2463,0.8099],[0.2394,0.393],[0.2378,0.3979],[0.2372,0.3975],[0.2388,0.3927],[0.9497,0.2053],[0.9784,0.2475],[0.3733,0.3002],[0.4334,0.3251],[0.3534,0.3841],[0.2941,0.3595],[0.3416,0.2382],[0.343,0.2388],[0.2631,0.2978],[0.2616,0.2972],[0.7405,0.898],[0.8647,0.9414],[0.7832,0.9998],[0.6605,0.957],[0.8627,0.0801],[0.9275,0.1027],[0.8451,0.1609],[0.7812,0.1385],[0.6593,0.1004],[0.5563,0.0407],[0.9591,0.4461],[0.9044,0.6105],[0.9038,0.6102],[0.9585,0.4458],[0.9464,0.7824],[0.9448,0.7873],[0.9145,0.769],[0.9161,0.7641],[0.6191,0.5652],[0.6797,0.587],[0.5777,0.6356],[0.5177,0.6141],[0.1026,0.7149],[0.1715,0.7397],[0.0686,0.788],[0.0005,0.7635],[0.7877,0.4936],[0.8433,0.5136],[0.7397,0.5616],[0.6848,0.5419],[0.6216,0.8485],[0.6819,0.8702],[0.5776,0.918],[0.518,0.8966],[0.322,0.9068],[0.2007,0.8634],[0.269,0.6731],[0.3909,0.7166],[0.8803,0.3976],[0.84,0.3832],[0.9088,0.1937],[0.9497,0.2083],[0.3868,0.8112],[0.3162,0.9991],[0.2932,0.9854],[0.3636,0.7981],[0.7773,0.3954],[0.8997,0.4375],[0.8992,0.4379],[0.7768,0.3958],[0.8735,0.7444],[0.8052,0.9347],[0.7091,0.8707],[0.7767,0.6828],[0.3951,0.6406],[0.3337,0.6464],[0.6844,0.1605],[0.6133,0.3475],[0.5533,0.3116],[0.6237,0.1262],[0.3944,0.6341],[0.3336,0.6382],[0.3497,0.6841],[0.3908,0.6983],[0.3903,0.6986],[0.3492,0.6845],[0.1632,0.6607],[0.1423,0.6429],[0.1861,0.5902],[0.2077,0.6071],[0.7278,0.8693],[0.6748,0.8243],[0.7194,0.7705],[0.7744,0.8139],[0.227,0.2484],[0.2111,0.2349],[0.2576,0.1796],[0.2741,0.1926],[0.2512,0.2197],[0.4164,0.1156],[0.4382,0.1322],[0.3795,0.1778],[0.3579,0.1612],[0.899,0.7659],[0.8552,0.8187],[0.7794,0.7716],[0.8228,0.7193],[0.0017,0.5458],[0.0225,0.5634],[0.0211,0.5641],[0.0003,0.5464],[0.4031,0.5899],[0.3563,0.6444],[0.3437,0.6366],[0.3904,0.5822],[0.4059,0.0886],[0.4613,0.1313],[0.461,0.1316],[0.4055,0.0889],[0.7595,0.3506],[0.7148,0.4044],[0.6857,0.3863],[0.7302,0.3327],[0.4664,0.4471],[0.519,0.4918],[0.5176,0.4924],[0.4649,0.4478],[0.0687,0.5179],[0.0008,0.5723],[0.9667,0.4134],[0.9424,0.4416],[0.8753,0.4007],[0.8993,0.3727],[0.0898,0.9065],[0.0669,0.9332],[0.0,0.8919],[0.0227,0.8655],[0.0271,0.8261],[0.0436,0.8388],[0.0433,0.8391],[0.0267,0.8264],[0.0279,0.8096],[0.0437,0.823],[0.0423,0.8236],[0.0265,0.8102],[0.3441,0.8768],[0.2989,0.9994],[0.2364,0.9759],[0.1741,0.9525],[0.2183,0.8327],[0.3436,0.8774],[0.2942,0.2182],[0.3101,0.1751],[0.3728,0.1966],[0.3899,0.2024],[0.4146,0.1931],[0.4156,0.1919],[0.4324,0.2273],[0.4196,0.2621],[0.419,0.2627],[0.4268,0.3052],[0.3799,0.4261],[0.3796,0.426],[0.4265,0.305],[0.0276,0.4192],[0.0271,0.4198],[0.0002,0.416],[0.0007,0.4153],[0.6515,0.6014],[0.7769,0.6456],[0.7533,0.6641],[0.6283,0.6201],[0.5731,0.247],[0.5291,0.3661],[0.5285,0.366],[0.5725,0.247],[0.0957,0.5712],[0.1573,0.5949],[0.0616,0.6334],[0.0007,0.61],[0.7804,0.2452],[0.8423,0.2691],[0.7458,0.3073],[0.6846,0.2838],[0.1968,0.4622],[0.1835,0.4965],[0.1832,0.4963],[0.1965,0.462],[0.1425,0.0374],[0.1594,0.0727],[0.1591,0.0729],[0.1421,0.0376],[0.6033,0.1706],[0.6024,0.1718],[0.5321,0.1624],[0.5331,0.1612],[0.167,0.7788],[0.1916,0.7692],[0.2187,0.8171],[0.1943,0.8267],[0.6538,0.2222],[0.6709,0.2279],[0.6101,0.2761],[0.5932,0.2703],[0.4512,0.8217],[0.5139,0.8429],[0.4526,0.8909],[0.3904,0.8698],[0.1796,0.5843],[0.1638,0.6271],[0.1632,0.6271],[0.179,0.5842],[0.0635,0.7802],[0.1103,0.7965],[0.083,0.8761],[0.0989,0.8817],[0.0555,0.9993],[0.0182,0.9852],[0.0245,0.968],[0.0004,0.959],[0.0635,0.7803],[0.9716,0.7303],[0.9423,0.7485],[0.9281,0.7869],[0.9123,0.7812],[0.9395,0.7019],[0.9767,0.7149],[0.7948,0.2386],[0.8107,0.2442],[0.7867,0.2625],[0.7708,0.2569],[0.4167,0.4204],[0.3882,0.4989],[0.3645,0.4866],[0.3928,0.4083],[0.2881,0.4446],[0.1962,0.4859],[0.4769,0.7758],[0.414,0.9536],[0.3228,0.9401],[0.3849,0.7645],[0.7051,0.5428],[0.729,0.5518],[0.6376,0.5909],[0.614,0.582],[0.8539,0.7448],[0.8475,0.762],[0.7561,0.7482],[0.7623,0.7312],[0.6454,0.1031],[0.6824,0.1173],[0.5907,0.156],[0.5541,0.142],[0.8402,0.2362],[0.8349,0.2515],[0.7748,0.2201],[0.7801,0.2049],[0.033,0.8854],[0.0372,0.8803],[0.1023,0.9349],[0.0507,0.9991],[0.0003,0.9573],[0.0482,0.9],[0.0321,0.8865],[0.314,0.3067],[0.2779,0.2764],[0.3291,0.2126],[0.3654,0.2427],[0.2542,0.25],[0.2703,0.2634],[0.2225,0.3206],[0.2064,0.3073],[0.455,0.0706],[0.4507,0.0756],[0.3687,0.0328],[0.3729,0.0279],[0.8032,0.3657],[0.8023,0.3668],[0.7203,0.3239],[0.7212,0.3228],[0.6559,0.4971],[0.6721,0.5104],[0.6587,0.5213],[0.6426,0.508],[0.5318,0.9429],[0.4835,0.9991],[0.4704,0.992],[0.5186,0.9359],[0.9671,0.1619],[0.9159,0.2256],[0.8889,0.222],[0.9399,0.1584],[0.1395,0.0753],[0.2038,0.1301],[0.2028,0.1305],[0.1385,0.0758],[0.1218,0.8882],[0.071,0.9515],[0.0,0.9421],[0.0504,0.8794],[0.7683,0.9476],[0.6973,0.9382],[0.4918,0.2573],[0.5275,0.2877],[0.5265,0.2881],[0.4908,0.2578],[0.4863,0.3843],[0.4381,0.4404],[0.3698,0.4039],[0.4175,0.3483],[0.9333,0.8237],[0.9191,0.8667],[0.9174,0.8715],[0.8758,0.8566],[0.8526,0.8483],[0.7647,0.8167],[0.71,0.798],[0.71,0.7979],[0.7738,0.7655],[0.6544,0.4119],[0.5998,0.5763],[0.6141,0.5333],[0.4539,0.4748],[0.39,0.5073],[0.3899,0.5074],[0.3347,0.4885],[0.3895,0.336],[0.4141,0.3249],[0.5928,0.3896],[0.6385,0.4062],[0.9348,0.7389],[0.9891,0.7576],[0.9876,0.7583],[0.9333,0.7396],[0.2352,0.157],[0.3225,0.1883],[0.2523,0.2227],[0.1658,0.1916],[0.5774,0.5965],[0.6004,0.6048],[0.5301,0.6391],[0.5072,0.6309],[0.4295,0.9056],[0.4709,0.9205],[0.4002,0.9546],[0.3592,0.9399],[0.2898,0.2707],[0.3058,0.2763],[0.2237,0.334],[0.2079,0.3285],[0.3517,0.1757],[0.3975,0.1917],[0.3149,0.2493],[0.2696,0.2334],[0.3917,0.2601],[0.5711,0.3228],[0.4862,0.3795],[0.309,0.3176],[0.7842,0.6979],[0.7596,0.7091],[0.6605,0.6507],[0.6848,0.6397],[0.6376,0.6622],[0.5828,0.8147],[0.4844,0.7544],[0.5385,0.6038],[0.4063,0.7493],[0.3088,0.799],[0.9346,0.717],[0.9894,0.7359],[0.988,0.7366],[0.9332,0.7178],[0.722,0.8993],[0.722,0.8994],[0.6969,0.8838],[0.6969,0.8837],[0.97,0.6396],[0.9064,0.6714],[0.8816,0.6557],[0.9449,0.624],[0.2228,0.9272],[0.3819,0.9853],[0.3518,1.0],[0.1934,0.942],[0.3123,0.1807],[0.298,0.2238],[0.2677,0.2055],[0.282,0.1626],[0.7242,0.9817],[0.7253,0.9804],[0.7463,0.9979],[0.7454,0.9991],[0.3078,0.9197],[0.2229,0.8477],[0.3508,0.6981],[0.3607,0.7063],[0.3819,0.7239],[0.3828,0.7228],[0.4358,0.7677],[0.1637,0.7877],[0.1478,0.7742],[0.2755,0.6225],[0.2915,0.6361],[0.7429,0.3159],[0.7074,0.2858],[0.8315,0.1346],[0.8703,0.1668],[0.8245,0.3598],[0.7507,0.3537],[0.7468,0.7406],[0.7457,0.7419],[0.6713,0.6956],[0.6723,0.6943],[0.4358,0.1795],[0.3074,0.3291],[0.2947,0.3215],[0.4229,0.1722],[0.6318,0.297],[0.6309,0.2981],[0.6017,0.28],[0.6027,0.2788],[0.3385,0.8621],[0.3598,0.8795],[0.3371,0.8971],[0.3159,0.8798],[0.684,0.0113],[0.694,0.0194],[0.6131,0.0821],[0.6033,0.0741],[0.4827,0.8494],[0.3548,0.9991],[0.3269,0.9809],[0.4543,0.8318],[0.0003,0.1824],[0.0847,0.2539],[0.0845,0.254],[0.0002,0.1824],[0.84,0.604],[0.7118,0.7532],[0.6455,0.7132],[0.7724,0.5655],[0.749,0.3506],[0.7648,0.364],[0.7647,0.3641],[0.7489,0.3507],[0.2665,0.5756],[0.3057,0.6073],[0.2467,0.6526],[0.2078,0.6212],[0.6361,0.0965],[0.512,0.2477],[0.4385,0.2],[0.5615,0.0502],[0.4901,0.4878],[0.5254,0.5177],[0.5253,0.5178],[0.49,0.4878],[0.4864,0.7178],[0.3655,0.6746],[0.3883,0.6111],[0.4107,0.5489],[0.5319,0.5923],[0.712,0.3024],[0.6958,0.3466],[0.656,0.3324],[0.7014,0.2074],[0.7416,0.2218],[0.719,0.2835],[0.7722,0.8757],[0.7256,0.9997],[0.7024,0.9866],[0.7488,0.8631],[0.1276,0.8094],[0.2494,0.8515],[0.2486,0.852],[0.1269,0.81],[0.4927,0.9376],[0.4703,0.9998],[0.3738,0.9345],[0.3958,0.8731],[0.4928,0.8074],[0.47,0.8709],[0.3737,0.8048],[0.3962,0.7421],[0.1266,0.3352],[0.2467,0.3781],[0.2463,0.3783],[0.1262,0.3354],[0.1619,0.043],[0.1453,0.0867],[0.0836,0.0528],[0.1,0.0095],[0.7713,0.5047],[0.7642,0.5234],[0.7025,0.4892],[0.7096,0.4707],[0.8286,0.3818],[0.8055,0.4427],[0.7441,0.408],[0.767,0.3476],[0.7259,0.1761],[0.7663,0.1901],[0.7656,0.1906],[0.7252,0.1767],[0.7711,0.1488],[0.8106,0.1629],[0.8101,0.1631],[0.7706,0.149],[0.8946,0.854],[0.918,0.8701],[0.9277,0.8767],[0.9105,0.894],[0.8744,0.8719],[0.9104,0.8517],[0.8744,0.8296],[0.89,0.8105],[0.9272,0.8333],[0.6043,0.1568],[0.5962,0.1663],[0.5435,0.1384],[0.5903,0.083],[0.6433,0.1111],[0.609,0.1513],[0.0002,0.1659],[0.0595,0.1114],[0.0713,0.12],[0.1074,0.1431],[0.053,0.194],[0.0879,0.8748],[0.0782,0.8682],[0.0792,0.868],[0.0889,0.8746],[0.9034,0.6778],[0.8799,0.6616],[0.8822,0.6613],[0.9058,0.6773],[0.7021,0.4862],[0.7104,0.479],[0.7572,0.4895],[0.7523,0.4974],[0.0541,0.231],[0.0589,0.2269],[0.1037,0.237],[0.1009,0.2415],[0.887,0.2757],[0.9219,0.2456],[0.9524,0.2527],[0.9318,0.2859],[0.2292,0.3464],[0.1762,0.3183],[0.2067,0.3034],[0.2594,0.3314],[0.3975,0.8852],[0.4072,0.8309],[0.4574,0.8421],[0.4267,0.8915],[0.9658,0.9575],[0.9297,0.9344],[0.9444,0.9319],[0.9818,0.9548],[0.0352,0.8172],[0.0234,0.8087],[0.0277,0.808],[0.0403,0.8164]]},"transform":{"scale":[0.001,0.001,0.001],"translate":[90454.18900000001,435614.88,0.0]}} \ No newline at end of file diff --git a/tests/data/zurich/zurich_subset_lod2.json b/tests/data/zurich/zurich_subset_lod2.json index 9bc9689..43ed7d8 100644 --- a/tests/data/zurich/zurich_subset_lod2.json +++ b/tests/data/zurich/zurich_subset_lod2.json @@ -1 +1,51953 @@ -{"type":"CityJSON","version":"1.1","CityObjects":{"UUID_64efac00-00cd-455d-a8ac-9602bd232330":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684572.43,1246323.059,448.126,2684573.613,1246324.518,449.413],"parents":["UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91"],"geometry":[{"type":"MultiSurface","boundaries":[[[0,1,2]],[[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,2]],[[3,19,4]],[[20,12,11,21]],[[20,22,13,12]],[[22,23,14,13]],[[23,24,15,14]],[[24,25,16,15]],[[25,26,17,16]],[[26,27,18,17]],[[27,0,2,18]],[[28,5,4,19]],[[29,6,5,28]],[[29,30,7,6]],[[30,31,8,7]],[[31,32,9,8]],[[32,33,10,9]],[[33,21,11,10]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_f5697b2b-4cd0-42c9-b96d-ed29ac5f9817":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682716.608,1248408.924,403.0,2682741.196,1248432.913,423.456],"parents":["UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736"],"geometry":[{"type":"MultiSurface","boundaries":[[[34,35,36,37,38,39,40]],[[39,38,41,42]],[[38,37,43,41]],[[37,36,44,43]],[[36,35,45,44]],[[35,34,46,45]],[[34,40,47,46]],[[40,39,42,47]],[[48,49,50]],[[49,51,52,50]],[[53,52,51]],[[54,55,56,57,53,51,49,48,58]],[[54,57,59,60]],[[53,58,48,50,52]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_583c776f-5b0c-4d42-9c37-5b94e0c21a30":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":5,"GebaeudeStatus":1},"geographicalExtent":[2685094.36,1247519.89,501.0,2685115.971,1247541.809,515.969],"children":["UUID_5bd1cee6-b3f0-40fb-a6ae-833e88305e31","UUID_60ae78b4-7632-49ca-89ed-3d1616d5eb80"]},"UUID_1c91dd3a-aef6-41f6-990e-08aba3ca6933":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB07","Herkunft":"EE_LB_2007","QualitaetStatus":1,"Region":2,"FileCreationDate":"2012-02-23","GebaeudeStatus":1},"geographicalExtent":[2682225.316,1250206.88,468.957,2682228.942,1250211.805,475.291],"children":["UUID_fc830572-a447-49ed-8d91-943d230ff75e"]},"UUID_4766ed7f-2662-483c-b9cf-f90cfbe06737":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2684846.616,1251599.363,427.981,2684849.28,1251604.112,431.981],"parents":["UUID_5bc16499-446b-4903-b57c-5e25efb1c1fe"],"geometry":[{"type":"MultiSurface","boundaries":[[[61,62,63,64]],[[61,65,66,62]],[[64,67,65,61]],[[62,66,68,63]],[[63,68,67,64]],[[66,65,67,68]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_3b4f2683-65a3-458d-891b-86bb02cf803f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683546.571,1248595.443,475.073,2683548.278,1248596.938,477.226],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[69,70,71]],[[72,73,74]],[[69,71,74,73]],[[72,74,71,70]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_214e3763-326b-4899-97ef-22069b5d9e38":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2681682.171,1250087.352,444.332,2681701.164,1250102.479,461.991],"parents":["UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06"],"geometry":[{"type":"MultiSurface","boundaries":[[[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89]],[[78,77,90,91]],[[77,76,92,90]],[[76,75,93,92]],[[75,89,94,93]],[[89,88,95,94]],[[87,96,95,88]],[[86,97,96,87]],[[97,86,85,98]],[[85,84,99,98]],[[84,83,100,99]],[[83,82,101,100]],[[82,81,102,101]],[[81,80,103,102]],[[80,79,104,103]],[[79,78,91,104]],[[91,105,106,107]],[[108,109,105]],[[90,108,105,91]],[[90,92,109,108]],[[93,94,95,96,97,110,111,98,99,112,113,109,92]],[[105,109,113,106]],[[111,112,114,115]],[[116,110,117,118,119]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c82d2cc6-6c38-484c-8105-bb7cb6954b83":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":10,"GebaeudeStatus":1},"geographicalExtent":[2681950.74,1244136.236,451.496,2681959.311,1244146.156,462.846],"children":["UUID_944c7a78-bbcd-4872-8a64-983a5ef564be"]},"UUID_2acfe0fe-4f1b-43ea-95b6-39156292b736":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683711.537,1249298.925,507.931,2683714.532,1249301.123,510.057],"parents":["UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499"],"geometry":[{"type":"MultiSurface","boundaries":[[[120,121,122,123]],[[124,125,123,122]],[[126,125,124,127]],[[128,120,123,129]],[[129,123,125]],[[128,129,125,126]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_e02995c9-2a6f-4a76-93f5-f45d896bea93":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-19","Region":6,"GebaeudeStatus":1},"geographicalExtent":[2686103.386,1245900.364,518.088,2686115.579,1245912.038,533.89],"children":["UUID_4c5c6291-62c1-4a0d-9a15-2a2861388ce4","UUID_89681b0a-629d-4ff3-a512-1e0d7363f624","UUID_264490e7-5415-4353-8e9b-6f7e5998f561"]},"UUID_91e023f4-84c2-4f5f-af49-45a6cd87d0f1":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2687397.162,1246133.353,616.177,2687399.889,1246135.145,617.405],"parents":["UUID_29802826-7cf9-4d37-8cf3-46551947d383"],"geometry":[{"type":"MultiSurface","boundaries":[[[130,131,132,133,134]],[[132,135,133]],[[136,131,130]],[[137,134,133,135]],[[137,136,130,134]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_86cb892a-059a-4ee1-9b05-41beab140553":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2685696.529,1246012.3,485.878,2685708.844,1246029.112,501.046],"parents":["UUID_a662769f-e5bd-4977-9c19-13840f38fb11"],"geometry":[{"type":"MultiSurface","boundaries":[[[138,139,140,141,142,143,144,145,146,147,148,149]],[[150,151,152,153]],[[153,152,142,141,154]],[[141,140,155,154]],[[140,139,156,155]],[[139,138,157,156]],[[138,149,158,157]],[[149,148,159,158]],[[148,147,160,159]],[[147,146,150,160]],[[146,145,161,151]],[[145,144,162,161]],[[144,143,163,162]],[[142,152,163,143]],[[164,156,165,166]],[[156,155,167,165]],[[155,156,168]],[[158,168,156,164]],[[158,159,155,168]],[[159,169,167,155]],[[170,171,172,173,174]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_0752325e-f0e8-4d1c-9253-0309cfb599d4":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684318.201,1246589.272,443.493,2684319.894,1246591.004,444.776],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[175,176,177]],[[176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,177]],[[178,194,179]],[[195,187,186,196]],[[197,188,187,195]],[[198,189,188,197]],[[199,190,189,198]],[[199,200,191,190]],[[200,201,192,191]],[[201,202,193,192]],[[202,175,177,193]],[[203,180,179,194]],[[204,181,180,203]],[[205,182,181,204]],[[206,183,182,205]],[[207,184,183,206]],[[208,185,184,207]],[[196,186,185,208]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_44dcb74c-c74c-4c18-9747-e4adf5adb872":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":3,"GebaeudeStatus":1},"geographicalExtent":[2682537.579,1251790.762,439.0,2682553.581,1251815.555,457.552],"children":["UUID_64cc319a-4341-4087-b65b-ba29f964dbdd","UUID_7e400037-6c9f-4ec4-9833-afdabfc5043b"]},"UUID_bec0b187-99f5-463e-a0c3-a8b7f56dfef7":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2679947.374,1248706.606,402.743,2679966.608,1248724.724,424.113],"parents":["UUID_0f6c77bc-8464-49e1-8dd0-433a11ba5429"],"geometry":[{"type":"MultiSurface","boundaries":[[[209,210,211,212]],[[211,213,214,215]],[[213,210,216,214]],[[217,216,210,218]],[[217,218,209,219]],[[209,212,220,219]],[[212,221,222,220]],[[221,211,215,222]],[[223,217,224,225]],[[217,223,226,227]],[[223,225,226]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_44dbc8b0-9822-4bb7-8898-b0067732ca3f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2679962.824,1248710.995,423.73,2679963.662,1248711.857,424.761],"parents":["UUID_0f6c77bc-8464-49e1-8dd0-433a11ba5429"],"geometry":[{"type":"MultiSurface","boundaries":[[[228,229,230,231,232]],[[233,234,231,230]],[[235,236,234,233,217]],[[228,232,236,235]],[[231,234,236,232]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_7949827f-0330-4436-8265-e6347a3540ad":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683133.623,1243634.23,418.38,2683136.505,1243637.224,419.329],"parents":["UUID_889b7d4a-cbf4-4aa3-a9aa-2e20e87b080d"],"geometry":[{"type":"MultiSurface","boundaries":[[[237,238,239,240]],[[238,241,242,239]],[[243,237,240,244]],[[241,243,244,242]],[[244,240,239,242]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_ad20451e-e9bd-4896-b0c7-b9aba4490e33":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2684313.841,1246584.131,421.992,2684343.491,1246611.52,448.133],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[245,246,247,248]],[[246,249,250,247]],[[249,251,252,250]],[[251,253,254,252]],[[253,255,256,254]],[[255,257,258,256]],[[257,259,260,258]],[[259,261,262,260]],[[261,263,264,262]],[[263,265,266,264]],[[265,267,268,266]],[[267,269,270,268]],[[269,271,272,270]],[[271,273,274,272]],[[273,275,276,274]],[[275,277,278,276]],[[277,279,280,278]],[[279,281,282,280]],[[281,283,284,282]],[[283,285,286,284]],[[285,287,288,286]],[[287,289,290,288]],[[289,291,292,290]],[[291,293,294,292]],[[293,295,296,294]],[[295,297,298,296]],[[297,299,300,298]],[[299,301,302,300]],[[301,303,304,302]],[[303,305,306,304]],[[305,307,308,306]],[[307,309,310,308]],[[309,311,312,310]],[[311,313,314,312]],[[313,315,316,314]],[[315,317,318,316]],[[317,319,320,318]],[[319,321,322,320]],[[321,323,324,322]],[[323,325,326,324]],[[325,327,328,326]],[[327,329,330,328]],[[329,331,332,330]],[[331,333,334,332]],[[333,335,336,334]],[[335,337,338,336]],[[339,340,341,338]],[[341,340,342]],[[343,344,345]],[[346,347,348,349]],[[350,351,352,353,354,355,356]],[[357,358,359,360,361,342,340,339,362,363,364]],[[365,366,358,357]],[[367,368,369,358,366,370,371,372]],[[373,374,375,376,377,378,379,380]],[[381,382,383,384]],[[385,386,387,388,389,390,391,392]],[[393,394,395,396,397,398]],[[358,369,399,400,401,344,343,402,403,359]],[[404,405,406,407]],[[408,409,345]],[[410,409,408]],[[411,409,410]],[[412,409,411]],[[413,409,412]],[[414,409,413]],[[415,409,414]],[[416,409,415]],[[417,409,416]],[[338,409,417]],[[341,409,338]],[[342,361,409,341]],[[409,361,360]],[[343,345,409,402]],[[409,403,402]],[[360,359,403,409]],[[418,419,420,421,422,337,335,333,331,329,327,325,323,321,319,317,315,313,311,309,307,305,303,301,299,297,295,293,291,289,287,285,283,281,279,277,275,273,271,269,267,265,263,261,259,257,255,253,251,249,246,245,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455]],[[434,433,456,346]],[[433,432,457,456]],[[431,458,457,432]],[[444,443,459,460]],[[443,442,354,459]],[[453,452,350,356]],[[452,451,461,350]],[[451,450,462,461]],[[450,449,463,462]],[[449,448,464,463]],[[448,447,465,464]],[[447,446,466,465]],[[446,445,467,466]],[[445,444,460,467]],[[339,337,422,468]],[[422,421,469,468]],[[421,420,470,469]],[[420,419,471,470]],[[419,418,472,471]],[[418,455,357,472]],[[455,454,365,357]],[[365,393,398,366]],[[367,388,387,368]],[[438,437,369,368]],[[398,473,370,366]],[[474,390,371]],[[371,390,389,372]],[[372,389,388,367]],[[442,441,373,475]],[[441,440,374,373]],[[440,439,375,374]],[[476,397,378,377]],[[378,397,396,379]],[[379,396,395,383,382,380]],[[477,354,475,380]],[[383,395,394,384]],[[478,355,381,384]],[[355,477,382,381]],[[385,376,375,386]],[[439,438,387,386]],[[474,370,391]],[[473,476,392,391]],[[392,377,376,385]],[[454,453,479,393]],[[356,478,394,479]],[[437,436,480,369]],[[436,435,481,480]],[[435,434,482,481]],[[346,458,483,482]],[[458,431,430,484,483]],[[430,429,485,484]],[[429,428,486,485]],[[486,404,487,488]],[[425,424,489,488]],[[424,423,490,489]],[[428,427,491,404]],[[427,426,492,491]],[[426,425,487,492]],[[345,344,490,493]],[[423,245,248,493]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"}]},"lod":"2"}]},"UUID_4787fb9c-ddbf-4bfc-bc5c-3b5fdfbf4d2f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682069.062,1246051.309,436.411,2682070.27,1246052.086,437.917],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[494,495,496,497]],[[495,498,499,496]],[[500,501,499,498]],[[494,497,501,500]],[[496,499,501,497]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_11430239-5826-4a33-952a-9dd56926afa6":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682732.894,1248422.666,419.525,2682735.101,1248425.09,421.107],"parents":["UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736"],"geometry":[{"type":"MultiSurface","boundaries":[[[502,503,504,505,506]],[[504,507,505]],[[508,503,502]],[[509,506,505,507]],[[509,508,502,506]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_cadcdc56-6326-4d2a-97da-9efab40fa1d6":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2679103.095,1249381.644,407.274,2679104.063,1249382.924,409.04],"parents":["UUID_68e41ae6-0f82-4bc3-a20c-125b93c0eac4"],"geometry":[{"type":"MultiSurface","boundaries":[[[510,511,512,513]],[[511,510,514,515]],[[514,516,517,515]],[[513,512,517,516]],[[511,515,517,512]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_2c1fe1af-0627-4127-98c7-7ef4eb3310f2":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683937.981,1248488.208,510.825,2683939.753,1248490.085,512.84],"parents":["UUID_911f0603-2c4d-415f-b0ef-2203521c1571"],"geometry":[{"type":"MultiSurface","boundaries":[[[518,519,520,521,522]],[[520,523,521]],[[524,519,518]],[[523,525,522,521]],[[525,524,518,522]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_5ae33ec7-bfe4-4574-b6a9-3c87ee6c3e21":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2679009.261,1250828.998,440.451,2679010.604,1250830.358,441.987],"parents":["UUID_04153856-c970-4f34-a0cf-ff14691e3841"],"geometry":[{"type":"MultiSurface","boundaries":[[[526,527,528,529]],[[530,531,527,526]],[[532,533,531,530]],[[529,528,533,532]],[[531,533,528,527]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_77da0ac4-8ccc-4c27-a76c-24439c6df852":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2685582.125,1252118.148,423.898,2685592.437,1252129.141,435.63],"parents":["UUID_6ef0e1c5-f08e-410d-8172-3f5977e3b681"],"geometry":[{"type":"MultiSurface","boundaries":[[[534,535,536,537,538,539,540,541,542,543,544,545]],[[538,537,546,547]],[[537,536,548,546]],[[536,535,549,548]],[[535,534,550,549]],[[545,551,550,534]],[[551,545,544,552]],[[544,543,553,552]],[[543,542,554,553]],[[542,541,555,554]],[[541,540,556,555]],[[540,539,557,556]],[[539,538,547,557]],[[558,559,551,547]],[[554,560,547,551,552,553]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_82204fbd-861a-4852-bf75-33ce1e2599dd":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682729.801,1248425.172,419.522,2682732.012,1248427.6,421.107],"parents":["UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736"],"geometry":[{"type":"MultiSurface","boundaries":[[[561,562,563,564,565]],[[563,566,564]],[[567,562,561]],[[568,565,564,566]],[[568,567,561,565]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c1ae0895-722f-4328-8861-ea8c6680f92f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2683654.839,1246823.101,406.041,2683674.144,1246842.766,428.704],"parents":["UUID_942e02c4-45cc-4d51-bdde-625df1c81410"],"geometry":[{"type":"MultiSurface","boundaries":[[[569,570,571,572,573,574,575,576,577,578,579,580]],[[581,582,583]],[[581,583,584,585]],[[586,587,585,584,588,589]],[[590,589,588,591,592]],[[593,592,591,594]],[[595,593,594]],[[571,596,597,572]],[[598,599,587,586]],[[578,577,600,587]],[[577,576,601,600]],[[576,575,602,601]],[[603,580,579,604]],[[579,578,599,604]],[[575,574,605,602]],[[574,573,606,605]],[[573,572,597,606]],[[596,571,570,607]],[[570,569,608,607]],[[603,590,608,569,580]],[[589,590,603,609]],[[609,598,586,589]],[[591,588,584,583,582,610,595,594]],[[611,597,596,612]],[[613,611,612,610,582,581]],[[603,614,615,609]],[[606,597,611,613,616]],[[595,610,612,596,607,617,593]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c737f44b-b56e-4070-b0c3-b75194cda5e1":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683162.145,1249800.593,486.958,2683164.897,1249802.407,488.826],"parents":["UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e"],"geometry":[{"type":"MultiSurface","boundaries":[[[618,619,620,621]],[[618,622,619]],[[623,621,620]],[[623,620,619,622]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_a091883a-427d-4cb7-8f34-f42728d2254b":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682721.069,1248417.849,419.624,2682724.049,1248420.868,421.016],"parents":["UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736"],"geometry":[{"type":"MultiSurface","boundaries":[[[624,625,626,627]],[[624,628,625]],[[629,627,626]],[[628,629,626,625]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_df47c00c-fa20-43b9-903b-1368abe569cd":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683158.25,1249800.837,486.966,2683161.001,1249802.643,488.826],"parents":["UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e"],"geometry":[{"type":"MultiSurface","boundaries":[[[630,631,632,633]],[[630,634,631]],[[635,633,632]],[[635,632,631,634]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_49871a1e-8f11-432e-8a42-6fe31ff0f80b":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2679101.284,1249377.277,402.098,2679102.946,1249378.63,404.528],"parents":["UUID_68e41ae6-0f82-4bc3-a20c-125b93c0eac4"],"geometry":[{"type":"MultiSurface","boundaries":[[[636,637,638,639]],[[637,636,640,641]],[[642,643,641,640]],[[644,645,643,642]],[[638,646,647,645,644,639]],[[645,647,643]],[[646,641,643,647]],[[637,641,646,638]]],"semantics":{"values":[0,1,2,3,4,5,6,7],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_5911e8d0-2949-4c11-813b-9d7d068d827b":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2684570.569,1246307.802,427.998,2684588.664,1246331.424,452.009],"parents":["UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91"],"geometry":[{"type":"MultiSurface","boundaries":[[[648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670]],[[671,672,659,658]],[[664,663,673,674]],[[663,662,675,673]],[[662,661,676,675]],[[661,660,677,676]],[[659,672,677,660]],[[650,649,678,679]],[[649,648,680,678]],[[648,670,681,680]],[[670,669,682,681]],[[669,668,683,682]],[[668,667,684,683]],[[667,666,685,684]],[[666,665,686,685]],[[653,652,687,688]],[[652,651,689,687]],[[651,650,690,689]],[[690,679,686,691]],[[665,664,674,691]],[[671,658,657,692]],[[657,656,693,692]],[[656,655,694,693]],[[655,654,695,694]],[[654,653,688,695]],[[672,671,696,697,698,699]],[[699,698,700,701]],[[702,672,699,701]],[[703,704,705,706]],[[696,707,708,697]],[[708,700,698,697]],[[671,709,707,696]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_82037b5d-9af8-45b4-bc86-b3ad088690bc":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-04-10","Region":7,"GebaeudeStatus":1},"geographicalExtent":[2680155.209,1248634.331,404.0,2680178.417,1248659.099,415.871],"children":["UUID_c4e9cd26-20ab-4fed-a2e3-af22419f247f"]},"UUID_4f2a6fa6-ad34-48df-a9db-18af2f27c722":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2681492.841,1247290.828,411.501,2681510.139,1247307.933,433.322],"parents":["UUID_fcc74528-8be9-40b2-9e0b-50b7d124706f"],"geometry":[{"type":"MultiSurface","boundaries":[[[710,711,712,713]],[[714,715,716,717]],[[718,719,715,714]],[[717,716,720,721]],[[722,712,723,724]],[[712,711,725,723]],[[711,726,727,725]],[[728,729,719,730]],[[731,732,730,718]],[[733,734,735,736]],[[735,737,738,739]],[[734,710,740,737]],[[710,741,742,740]],[[732,731,722,743]],[[743,724,727,744]],[[726,733,736,744]],[[745,746,720,729,728]],[[747,739,738,742,748]],[[741,721,746,748]],[[715,719,729,720,716]],[[749,750,727,724]],[[730,732,736,735,739,747,745,728]],[[738,737,751,752,753,754]],[[732,743,744,736]],[[715,716,755,756]],[[747,757,758,745]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_cb878e1d-bbc7-4b38-b5e9-789e1136fa82":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682017.343,1243583.906,471.983,2682027.11,1243595.538,484.467],"parents":["UUID_72dfed05-23ab-4b21-95e9-c0afa66cc9a5"],"geometry":[{"type":"MultiSurface","boundaries":[[[759,760,761,762]],[[760,763,764,761]],[[765,766,767,768]],[[766,769,770,767]],[[771,759,762,772]],[[773,774,775,776]],[[772,770,769,771]],[[777,778,779,780,781]],[[782,778,777]],[[780,779,783]],[[784,785,786,787]],[[788,789,790]],[[790,789,775]],[[783,779,791,778,782,792,793,794,795,776,787,792]],[[796,770,797,798,793,786]],[[776,799,789,787]],[[800,801,770,787,789]],[[789,788,802,803,800]],[[792,782,777,781]],[[780,783,792,781]],[[763,760,771,769,766,804,805]],[[796,786,785]],[[796,785,784,770]],[[787,770,784]],[[788,806,805,802]],[[805,804,807,802]],[[804,765,768,807]],[[806,788,790,808]],[[774,808,790,775]],[[763,773,776,764]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"}]},"lod":"2"}]},"UUID_a70e2b37-fb06-4934-9b6f-2e8242cf9b5e":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683165.874,1249800.269,486.947,2683170.067,1249802.18,488.826],"parents":["UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e"],"geometry":[{"type":"MultiSurface","boundaries":[[[809,810,811,812]],[[809,813,810]],[[814,812,811]],[[814,811,810,813]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_f250cf3b-454e-4911-916d-98be59f30378":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684579.016,1246318.025,452.009,2684581.269,1246320.226,452.462],"parents":["UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91"],"geometry":[{"type":"MultiSurface","boundaries":[[[815,816,817,818]],[[819,820,816,815]],[[821,822,820,819]],[[818,817,822,821]],[[816,820,822,817]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_8b0217c1-4c57-4e86-a96e-6a2df434b2c4":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2680237.351,1248146.411,420.392,2680239.533,1248148.541,422.078],"parents":["UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0"],"geometry":[{"type":"MultiSurface","boundaries":[[[823,824,825,826]],[[827,828,824,823]],[[829,830,828,827]],[[826,825,830,829]],[[824,828,830,825]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_6413482a-d8c9-47e3-b408-37127b34e251":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2681881.438,1249600.367,402.889,2681909.709,1249628.16,413.634],"parents":["UUID_e2e378c6-c78f-4a9a-81df-9cf1281aaa95"],"geometry":[{"type":"MultiSurface","boundaries":[[[831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853]],[[834,854,855,835]],[[833,856,854,834]],[[832,857,856,833]],[[831,858,857,832]],[[853,859,858,831]],[[852,860,859,853]],[[851,861,860,852]],[[850,862,861,851]],[[849,863,862,850]],[[848,864,863,849]],[[847,865,864,848]],[[846,866,865,847]],[[835,855,867,836]],[[836,867,868,837]],[[837,868,869,838]],[[838,869,870,839]],[[839,870,871,840]],[[840,871,872,841]],[[841,872,873,842]],[[842,873,874,843]],[[843,874,875,844]],[[844,875,876,845]],[[845,876,866,846]],[[854,856,857,858,859,860,861,862,863,864,865,866,876,875,874,873,872,871,870,869,868,867,855]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_f260179d-ec13-4fc1-a73c-5c812d80b561":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2683705.7,1249297.241,494.245,2683725.799,1249313.857,513.941],"parents":["UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499"],"geometry":[{"type":"MultiSurface","boundaries":[[[877,878,879,880]],[[881,882,879,878,883]],[[882,881,884,885]],[[881,883,886,887]],[[886,888,889,887]],[[888,890,891,889]],[[892,891,893]],[[890,894,895,893]],[[894,896,897,895]],[[898,899,900,901]],[[896,902,903,897]],[[903,904,905]],[[902,906,907,904]],[[906,908,909,907]],[[908,910,911,909]],[[910,912,913,911]],[[912,914,915,913]],[[914,916,917,915]],[[916,918,919,917]],[[918,920,921,919]],[[920,922,923,921]],[[922,924,925,923]],[[926,927,928,929]],[[930,931,932,892]],[[926,933,934,927]],[[934,928,927]],[[926,929,935,901]],[[900,880,885,884,932,931]],[[880,936,937,885]],[[884,938,939,932]],[[892,932,939,940]],[[941,942,930,892]],[[943,942,941]],[[900,931,930,942,943,933,926,901]],[[944,905,945]],[[933,905,944,946]],[[933,946,947,934]],[[948,928,934,947]],[[886,883,878,877,899,898,949,924,922,920,918,916,914,912,910,908,906,902,896,894,890,888]],[[949,898,901,935]],[[935,925,924,949]],[[877,880,900,899]],[[948,950,929,928]],[[951,935,929,950]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_a410165b-acd2-4bb2-9aa1-49e19a8a11e5":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2684055.308,1251798.275,424.623,2684060.289,1251802.821,443.136],"parents":["UUID_c0961fd6-9cd2-48cb-9d3e-76a2d51f5ed6"],"geometry":[{"type":"MultiSurface","boundaries":[[[952,953,954,955]],[[954,953,956,957]],[[953,952,958,956]],[[952,955,959,958]],[[955,954,957,959]],[[958,959,957,956]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_12568183-2080-4683-ba1c-02a88e41c098":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683936.571,1248489.955,510.825,2683938.343,1248491.831,512.84],"parents":["UUID_911f0603-2c4d-415f-b0ef-2203521c1571"],"geometry":[{"type":"MultiSurface","boundaries":[[[960,961,962,963,964]],[[962,965,963]],[[966,961,960]],[[965,967,964,963]],[[967,966,960,964]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_95eed0ad-5544-4f61-bb4e-1fbc6c9b9126":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684572.205,1246327.069,447.39,2684573.706,1246328.532,449.359],"parents":["UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91"],"geometry":[{"type":"MultiSurface","boundaries":[[[968,969,970]],[[969,971,972,973,974,975,976,977,978,979,980,981,982,983,984,970]],[[971,985,972]],[[986,987,979,978]],[[988,980,979,987]],[[989,981,980,988]],[[990,982,981,989]],[[991,983,982,990]],[[991,992,984,983]],[[992,968,970,984]],[[993,973,972,985]],[[994,974,973,993]],[[995,975,974,994]],[[996,976,975,995]],[[997,977,976,996]],[[986,978,977,997]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_f76df3d0-4b15-4c4c-b56e-15fc5dafa091":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682072.796,1246041.637,432.496,2682074.839,1246042.904,434.971],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[998,999,1000,1001]],[[998,1002,999]],[[1003,1001,1000]],[[999,1002,1004,1005,1006]],[[1000,999,1006]],[[1005,1007,1003,1000,1006]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_549ea6f1-848d-4ff9-83c9-9f1623512d5e":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684331.991,1246599.612,442.686,2684334.208,1246601.808,444.481],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025]],[[1011,1010,1026,1027]],[[1008,1028,1029,1009]],[[1026,1029,1028,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1027]],[[1016,1039,1038,1017]],[[1015,1040,1039,1016]],[[1014,1041,1040,1015]],[[1013,1042,1041,1014]],[[1012,1043,1042,1013]],[[1011,1027,1043,1012]],[[1025,1030,1028,1008]],[[1024,1031,1030,1025]],[[1023,1032,1031,1024]],[[1022,1033,1032,1023]],[[1021,1034,1033,1022]],[[1020,1035,1034,1021]],[[1019,1036,1035,1020]],[[1018,1037,1036,1019]],[[1017,1038,1037,1018]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c4e9cd26-20ab-4fed-a2e3-af22419f247f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2680155.209,1248634.331,404.0,2680178.417,1248659.099,415.871],"parents":["UUID_82037b5d-9af8-45b4-bc86-b3ad088690bc"],"geometry":[{"type":"MultiSurface","boundaries":[[[1044,1045,1046,1047,1048,1049]],[[1044,1049,1050,1051]],[[1049,1048,1052,1050]],[[1048,1047,1053,1052]],[[1047,1046,1054,1053]],[[1046,1045,1055,1054]],[[1045,1044,1051,1055]],[[1056,1057,1058,1059]]],"semantics":{"values":[0,1,2,3,4,5,6,7],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_e2e378c6-c78f-4a9a-81df-9cf1281aaa95":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB00","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":2,"GebaeudeStatus":1},"geographicalExtent":[2681881.438,1249600.367,402.889,2681909.709,1249628.16,413.634],"children":["UUID_6413482a-d8c9-47e3-b408-37127b34e251"]},"UUID_924a2335-5cfc-4cf1-ac78-8f4941bccbe3":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2681684.467,1250088.676,456.996,2681688.025,1250090.804,458.99],"parents":["UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06"],"geometry":[{"type":"MultiSurface","boundaries":[[[95,96,1060,1061]],[[96,1062,1063,1060]],[[1062,1064,1063]],[[1065,95,1061]],[[1061,1060,1063,1066]],[[1067,1066,1063,1064]],[[1061,1066,1067,1065]]],"semantics":{"values":[0,1,2,3,4,5,6],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_72dfed05-23ab-4b21-95e9-c0afa66cc9a5":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":10,"GebaeudeStatus":1},"geographicalExtent":[2682017.343,1243583.906,471.983,2682027.11,1243595.538,484.467],"children":["UUID_cb878e1d-bbc7-4b38-b5e9-789e1136fa82"]},"UUID_17cd93ca-cac0-41a1-bcd1-effb2c2040c8":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2681897.823,1243533.057,455.28,2681906.584,1243541.868,461.492],"parents":["UUID_9556fbe1-9912-4c2a-bd00-ca9dc71f08b7"],"geometry":[{"type":"MultiSurface","boundaries":[[[1068,1069,1070,1071]],[[1068,1071,1072,1073]],[[1071,1070,1074,1072]],[[1070,1069,1075,1074]],[[1069,1068,1073,1075]],[[1076,1077,1078,1079]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_5bd1cee6-b3f0-40fb-a6ae-833e88305e31":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2685094.36,1247519.89,501.0,2685115.971,1247541.809,515.969],"parents":["UUID_583c776f-5b0c-4d42-9c37-5b94e0c21a30"],"geometry":[{"type":"MultiSurface","boundaries":[[[1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126]],[[1127,1128,1129]],[[1130,1131,1129,1128]],[[1130,1132,1131]],[[1133,1123,1122,1134]],[[1122,1121,1135,1134]],[[1121,1120,1136,1135]],[[1137,1133,1136,1138]],[[1120,1119,1139,1138]],[[1119,1118,1140,1139]],[[1118,1117,1141,1140]],[[1117,1116,1142,1141]],[[1116,1115,1143,1142]],[[1115,1114,1144,1143]],[[1114,1113,1145,1144]],[[1113,1112,1146,1145]],[[1146,1147,1148,1149]],[[1149,1148,1082,1081,1150]],[[1081,1080,1151,1150]],[[1080,1126,1152,1151]],[[1126,1125,1153,1152]],[[1125,1124,1154,1153]],[[1133,1137,1154,1124,1123]],[[1112,1111,1155,1147]],[[1111,1110,1156,1155]],[[1110,1109,1157,1156]],[[1109,1108,1158,1157]],[[1108,1107,1159,1158]],[[1107,1106,1160,1159]],[[1106,1105,1161,1160]],[[1105,1104,1162,1161]],[[1104,1103,1163,1162]],[[1103,1102,1164,1163]],[[1102,1101,1165,1164]],[[1101,1100,1166,1165]],[[1100,1099,1167,1166]],[[1099,1098,1168,1167]],[[1098,1097,1169,1168]],[[1097,1096,1170,1169]],[[1096,1095,1171,1170]],[[1095,1094,1172,1171]],[[1094,1093,1173,1172]],[[1093,1092,1174,1173]],[[1092,1091,1175,1174]],[[1091,1090,1176,1175]],[[1090,1089,1177,1176]],[[1089,1088,1178,1177]],[[1088,1087,1179,1178]],[[1087,1086,1180,1179]],[[1086,1085,1181,1180]],[[1085,1084,1182,1181]],[[1084,1083,1183,1182]],[[1082,1148,1183,1083]],[[1127,1129,1131,1132]],[[1184,1185,1186,1187]],[[1188,1189,1190,1191],[1127,1132,1130,1128]],[[1190,1192,1193,1191]],[[1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_35730751-f3a1-4736-b72c-2ee93a87de37":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2683538.794,1248584.096,457.682,2683560.797,1248599.835,481.056],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[1205,1206,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,1237,1238,1239,1240,1241]],[[1242,1243,1244,1245,1246]],[[1247,1248,1249,1244,1243]],[[1222,1250,1249,1223]],[[1240,1239,1251,1252]],[[1241,1240,1252,1253]],[[1239,1238,1254,1251]],[[1236,1235,1255,1256]],[[1235,1234,1257,1255]],[[1234,1233,1258,1257]],[[1259,1260,1261,1262]],[[1229,1228,1263,1262]],[[1260,1259,1258,1233,1232]],[[1260,1232,1231,1264]],[[1231,1230,1265,1264]],[[1230,1229,1261,1265]],[[1228,1227,1266,1263]],[[1227,1226,1267,1266]],[[1225,1224,1268,1269]],[[1224,1223,1248,1268]],[[1222,1221,1270,1250]],[[1270,1271,1272,1273]],[[1272,1246,1245,1273]],[[1221,1220,1274,1271]],[[1274,1275,1276,1277]],[[1219,1218,1278,1279]],[[1220,1219,1279,1275]],[[1218,1217,1280,1278]],[[1215,1214,1281,1282]],[[1214,1213,1283,1281]],[[1206,1205,1284,1285]],[[1205,1241,1253,1284]],[[1226,1225,1269,1267]],[[1217,1216,1286,1280]],[[1216,1215,1282,1286]],[[1212,1211,1287,1288]],[[1213,1212,1288,1283]],[[1211,1210,1289,1287]],[[1210,1209,1290,1289]],[[1209,1208,1291,1290]],[[1208,1207,1292,1291]],[[1207,1206,1285,1292]],[[1238,1237,1293,1254]],[[1237,1236,1256,1293]],[[1244,1249,1250,1245]],[[1294,1295,1296]],[[1297,1295,1294]],[[1298,1295,1297]],[[1242,1246,1295,1298]],[[1242,1298,1297,1299,1300,1247,1243]],[[1301,1302,1303]],[[1294,1296,1304,1305,1306,1303,1302]],[[1294,1302,1301,1307,1308,1309]],[[1294,1309,1310,1311,1299,1297]],[[1310,1312,1311]],[[1313,1314,1315,1316]],[[1299,1311,1312,1300]],[[1248,1247,1300,1317]],[[1273,1245,1250,1318]],[[1319,1277,1272,1320]],[[1276,1321,1322,1323,1324,1325,1326]],[[1277,1276,1326,1295]],[[1296,1295,1327,1328,1329,1304]],[[1304,1329,1330,1305]],[[1300,1312,1331,1317]],[[1331,1332,1317]],[[1324,1323,1317,1332]],[[1333,1327,1295,1326]],[[1334,1333,1326,1325]],[[1333,1335,1328,1327]],[[1336,1335,1333,1334]],[[1335,1336,1337,1330]],[[1328,1335,1330,1329]],[[1305,1330,1337,1306]],[[1309,1308,1338,1310]],[[1308,1307,1339,1338]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_76456584-176b-4955-a635-fc3d8e901997":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682062.422,1246036.175,417.356,2682089.998,1246056.828,437.882],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361]],[[1362,1341,1340,1363]],[[1340,1361,1364,1363]],[[1361,1360,1365,1364]],[[1359,1366,1365,1360]],[[1367,1368,1366,1369]],[[1369,1366,1359,1358,1370]],[[1358,1357,1371,1370]],[[1357,1356,1372,1371]],[[1356,1355,1373,1372]],[[1355,1354,1374,1373]],[[1351,1350,1375,1376]],[[1349,1377,1375,1350]],[[1378,1346,1345,1379]],[[1345,1344,1380,1379]],[[1344,1343,1381,1380]],[[1343,1342,1382,1381]],[[1362,1383,1382,1342,1341]],[[1383,1362,1368,1367]],[[1354,1353,1384,1374]],[[1353,1352,1385,1384]],[[1352,1351,1376,1385]],[[1377,1349,1348,1386]],[[1348,1347,1387,1386]],[[1346,1378,1387,1347]],[[1388,1389,1390,1391,1392,1368]],[[1393,1394,1395,1396]],[[1397,1398,1396,1395]],[[1399,1396,1398,1400]],[[1401,1399,1402]],[[1396,1399,1401,1393]],[[1398,1397,1367,1403]],[[1400,1404,1402,1399]],[[1404,1400,1405]],[[1403,1405,1400,1398]],[[1404,1405,1401,1402]],[[1401,1405,1403,1393]],[[1394,1393,1403,1367]],[[1395,1406,1407,1408]],[[1409,1395,1410,1411]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_5bc16499-446b-4903-b57c-5e25efb1c1fe":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB07","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":3,"GebaeudeStatus":1},"geographicalExtent":[2684846.616,1251599.363,427.981,2684849.28,1251604.112,431.981],"children":["UUID_4766ed7f-2662-483c-b9cf-f90cfbe06737"]},"UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-16","Region":4,"GebaeudeStatus":1},"geographicalExtent":[2683705.7,1249297.241,494.245,2683725.799,1249313.857,513.941],"children":["UUID_f260179d-ec13-4fc1-a73c-5c812d80b561","UUID_3a31a813-5b47-4595-b0a3-0c07cdca91c6","UUID_ca143bb9-070c-433f-8679-75352e8e1fcb","UUID_2acfe0fe-4f1b-43ea-95b6-39156292b736","UUID_f6cf4a7f-46ab-4560-aa8d-86c195dfe9cb"]},"UUID_3095c66a-c43c-4bea-b860-3ac0e85c215b":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2681695.703,1250090.606,457.171,2681699.244,1250092.625,458.99],"parents":["UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06"],"geometry":[{"type":"MultiSurface","boundaries":[[[1412,1413,1414,1415]],[[1413,1416,1414]],[[1417,1412,1415]],[[1418,1415,1414]],[[1419,1418,1414,1416]],[[1415,1418,1419,1417]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c9e68bc9-7e28-4d2d-9175-56f44aacbdbf":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683940.563,1248485.01,510.825,2683942.335,1248486.886,512.84],"parents":["UUID_911f0603-2c4d-415f-b0ef-2203521c1571"],"geometry":[{"type":"MultiSurface","boundaries":[[[1420,1421,1422,1423,1424]],[[1422,1425,1423]],[[1426,1421,1420]],[[1425,1427,1424,1423]],[[1427,1426,1420,1424]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_afc9afd9-f57d-4d69-ba56-3f7ad6066bd0":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683552.66,1248586.574,475.055,2683554.874,1248588.712,478.016],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[1428,1429,1430,1431]],[[1428,1432,1433,1429]],[[1431,1430,1434,1435]],[[1434,1430,1429,1433]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_8c2b73f1-d761-4882-b2ad-965a9860f968":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2681682.171,1250098.494,454.99,2681688.32,1250100.691,457.79],"parents":["UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06"],"geometry":[{"type":"MultiSurface","boundaries":[[[1436,1437,1438]],[[107,1439,1438,1437]],[[107,91,1439]],[[1438,1439,91,1436]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_7cca9830-a256-4064-9cdb-5a261f41cb78":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2683212.237,1253017.905,448.908,2683233.377,1253037.77,462.758],"parents":["UUID_2979810e-cbdf-43ba-89d5-ed338c7b3d18"],"geometry":[{"type":"MultiSurface","boundaries":[[[1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462]],[[1456,1455,1463,1464]],[[1455,1454,1465,1463]],[[1454,1453,1466,1465]],[[1453,1452,1467,1466]],[[1452,1451,1468,1467]],[[1451,1450,1469,1468]],[[1450,1449,1470,1469]],[[1449,1448,1471,1470]],[[1448,1447,1472,1471]],[[1447,1446,1473,1472]],[[1446,1445,1474,1473]],[[1457,1456,1464,1475]],[[1445,1444,1476,1474]],[[1444,1443,1477,1476]],[[1443,1442,1478,1477]],[[1442,1441,1479,1478]],[[1441,1440,1480,1479]],[[1440,1462,1481,1480]],[[1462,1461,1482,1481]],[[1461,1460,1483,1482]],[[1460,1459,1484,1483]],[[1459,1458,1485,1484]],[[1458,1457,1475,1485]],[[1463,1486,1487,1488,1464]],[[1484,1485,1475,1464,1488,1489,1490]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB00","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-22","Region":8,"GebaeudeStatus":1},"geographicalExtent":[2682716.608,1248408.924,403.0,2682741.196,1248432.913,423.637],"children":["UUID_860a5d7e-1c0a-45cf-925b-9755b3998d10","UUID_a091883a-427d-4cb7-8f34-f42728d2254b","UUID_11430239-5826-4a33-952a-9dd56926afa6","UUID_5579091c-2356-4115-b14c-a07d02416836","UUID_9db22f7a-fcbf-466e-8005-d1a497103ffa","UUID_f5697b2b-4cd0-42c9-b96d-ed29ac5f9817","UUID_c585e4f5-dc07-45ff-acc2-d17de5a6d4a3","UUID_82204fbd-861a-4852-bf75-33ce1e2599dd"]},"UUID_d054489f-3680-4e78-a745-7f3fb25417bd":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2681499.562,1245964.968,426.989,2681508.132,1245978.09,436.703],"parents":["UUID_c7f99502-54f7-44df-9930-c5e4e3eb87ff"],"geometry":[{"type":"MultiSurface","boundaries":[[[1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532]],[[1510,1533,1534,1511]],[[1509,1535,1533,1510]],[[1504,1536,1537,1505]],[[1503,1538,1536,1504]],[[1498,1539,1540,1499]],[[1497,1541,1539,1498]],[[1494,1542,1543,1495]],[[1491,1544,1545,1492]],[[1532,1546,1544,1491]],[[1531,1547,1546,1532]],[[1530,1548,1547,1531]],[[1529,1549,1548,1530]],[[1511,1534,1550,1512]],[[1512,1550,1551,1513]],[[1513,1551,1552,1514]],[[1514,1552,1553,1515]],[[1515,1553,1554,1516]],[[1516,1554,1555,1517]],[[1517,1555,1556,1518]],[[1518,1556,1557,1519]],[[1519,1557,1558,1520]],[[1520,1558,1559,1521]],[[1521,1559,1560,1522]],[[1522,1560,1561,1523]],[[1523,1561,1562,1524]],[[1524,1562,1563,1525]],[[1525,1563,1564,1526]],[[1526,1564,1565,1527]],[[1527,1565,1566,1528]],[[1528,1566,1549,1529]],[[1496,1495,1543,1567]],[[1567,1541,1497,1496]],[[1540,1568,1500,1499]],[[1568,1569,1501,1500]],[[1502,1501,1569,1570]],[[1570,1538,1503,1502]],[[1506,1505,1537,1571]],[[1572,1573,1508,1507]],[[1572,1507,1506,1571]],[[1509,1508,1573,1535]],[[1492,1545,1574,1493]],[[1574,1542,1494,1493]],[[1533,1535,1573,1572,1571,1537,1536,1538,1570,1569,1568,1540,1539,1541,1567,1543,1542,1574,1545,1544,1546,1547,1548,1549,1566,1565,1564,1563,1562,1561,1560,1559,1558,1557,1556,1555,1554,1553,1552,1551,1550,1534]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_1fd09737-9da2-4e8f-8d4a-817d404df06c":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682079.104,1246044.257,425.307,2682082.611,1246047.104,425.872],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[1575,1576,1577,1578]],[[1576,1575,1579,1580,1581]],[[1582,1583,1580,1579]],[[1583,1582,1578,1577,1584]],[[1583,1584,1581,1580]],[[1576,1581,1584,1577]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_55a37e02-05fb-4285-baad-e9c388fe0ff2":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684333.811,1246602.385,442.639,2684335.998,1246604.562,444.481],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602]],[[1588,1587,1603,1604]],[[1585,1605,1606,1586]],[[1603,1606,1605,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1604]],[[1593,1616,1615,1594]],[[1592,1617,1616,1593]],[[1591,1618,1617,1592]],[[1590,1619,1618,1591]],[[1589,1620,1619,1590]],[[1588,1604,1620,1589]],[[1602,1607,1605,1585]],[[1601,1608,1607,1602]],[[1600,1609,1608,1601]],[[1599,1610,1609,1600]],[[1598,1611,1610,1599]],[[1597,1612,1611,1598]],[[1596,1613,1612,1597]],[[1595,1614,1613,1596]],[[1594,1615,1614,1595]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_25548ad4-89b7-4bd7-9ab7-fcc74a245b91":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683666.27,1246837.679,424.494,2683668.371,1246839.854,426.451],"parents":["UUID_942e02c4-45cc-4d51-bdde-625df1c81410"],"geometry":[{"type":"MultiSurface","boundaries":[[[1621,1622,1623,1624,1625]],[[1623,1626,1624]],[[1627,1622,1621]],[[1628,1625,1624,1626]],[[1628,1627,1621,1625]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_d47435e1-2475-4f10-a0bf-3e28ad4400be":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2683596.689,1252091.962,432.417,2683611.046,1252112.337,454.632],"parents":["UUID_c383c4f4-4e35-458c-8907-ce1a332ebc12"],"geometry":[{"type":"MultiSurface","boundaries":[[[1629,1630,1631,1632,1633,1634,1635,1636]],[[1629,1636,1637,1638]],[[1636,1635,1639,1637]],[[1635,1640,1641,1639]],[[1640,1634,1642,1641]],[[1634,1633,1643,1642]],[[1633,1644,1645,1643]],[[1644,1632,1646,1645]],[[1632,1631,1647,1646]],[[1631,1648,1649,1647]],[[1648,1630,1650,1649]],[[1630,1651,1652,1650]],[[1651,1629,1638,1652]],[[1653,1654,1655,1656]],[[1653,1657,1658,1654]],[[1659,1655,1660]],[[1656,1655,1659,1661]],[[1655,1654,1662,1660]],[[1662,1654,1658]],[[1662,1658,1659,1660]],[[1657,1661,1659,1658]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c585e4f5-dc07-45ff-acc2-d17de5a6d4a3":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682725.358,1248420.722,422.297,2682726.714,1248422.073,423.637],"parents":["UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736"],"geometry":[{"type":"MultiSurface","boundaries":[[[1663,1664,1665,1666]],[[1667,1668,1664,1663]],[[1667,1669,1670,1668]],[[1669,1666,1665,1670]],[[1668,1670,1665,1664]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_b36e19bf-dd90-47cb-8309-d8e2cb7783bc":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682116.856,1243490.95,462.874,2682121.56,1243501.532,477.633],"parents":["UUID_1904fb85-3274-481a-bcbd-366964facdc6"],"geometry":[{"type":"MultiSurface","boundaries":[[[1671,1672,1673,1674]],[[1671,1675,1676,1677]],[[1678,1672,1679,1680]],[[1672,1671,1677,1679]],[[1675,1674,1681,1676]],[[1674,1673,1682,1681]],[[1673,1678,1680,1682]],[[1680,1683,1684,1676]],[[1685,1680,1676,1686]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_077df727-e8b0-4d36-832c-9bac78575f49":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684280.651,1248696.758,553.37,2684282.116,1248698.144,554.488],"parents":["UUID_9194ef74-d111-4fce-b364-3fc7c62402d5"],"geometry":[{"type":"MultiSurface","boundaries":[[[1687,1688,1689,1690]],[[1691,1692,1688,1687]],[[1693,1694,1692,1691]],[[1693,1690,1689,1694]],[[1692,1694,1689,1688]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_2089b901-844e-4532-9771-96b4c15c0bf8":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2679011.773,1250830.634,440.451,2679013.325,1250832.21,441.987],"parents":["UUID_04153856-c970-4f34-a0cf-ff14691e3841"],"geometry":[{"type":"MultiSurface","boundaries":[[[1695,1696,1697,1698]],[[1699,1700,1696,1695]],[[1701,1702,1700,1699]],[[1698,1697,1702,1701]],[[1700,1702,1697,1696]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_ca143bb9-070c-433f-8679-75352e8e1fcb":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683721.869,1249303.859,507.561,2683723.725,1249305.508,509.703],"parents":["UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499"],"geometry":[{"type":"MultiSurface","boundaries":[[[1703,1704,1705,1706]],[[1707,1704,1703,1708]],[[1709,1710,1706,1705]],[[1711,1705,1704]],[[1712,1709,1705,1711]],[[1712,1711,1704,1707]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c0961fd6-9cd2-48cb-9d3e-76a2d51f5ed6":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB07","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":3,"GebaeudeStatus":1},"geographicalExtent":[2684055.308,1251798.275,424.623,2684060.289,1251802.821,443.136],"children":["UUID_a410165b-acd2-4bb2-9aa1-49e19a8a11e5"]},"UUID_afb78d4b-2b41-4f11-9c40-7bd0303132ee":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682071.756,1246054.315,432.496,2682073.782,1246055.436,434.971],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[1713,1714,1715,1716]],[[1713,1717,1714]],[[1718,1716,1715]],[[1714,1717,1719,1720,1721]],[[1715,1714,1721]],[[1720,1722,1718,1715,1721]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_04153856-c970-4f34-a0cf-ff14691e3841":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":2,"GebaeudeStatus":1},"geographicalExtent":[2679005.129,1250821.007,423.863,2679026.756,1250840.951,441.987],"children":["UUID_1286cedd-d737-46d2-b67d-d9c3196e8a67","UUID_5ae33ec7-bfe4-4574-b6a9-3c87ee6c3e21","UUID_2089b901-844e-4532-9771-96b4c15c0bf8"]},"UUID_674df3e1-57ac-4be0-bcc2-d2928c4b6a0f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2683110.77,1252807.866,455.163,2683135.262,1252832.43,470.969],"parents":["UUID_b29ed28d-c905-4911-83a5-cc59d676d716"],"geometry":[{"type":"MultiSurface","boundaries":[[[1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740]],[[1738,1737,1741,1742]],[[1741,1743,1744,1745]],[[1745,1744,1746,1747]],[[1734,1733,1748,1747]],[[1733,1732,1749,1748]],[[1749,1750,1751,1752]],[[1752,1751,1753,1754]],[[1754,1753,1755,1756]],[[1756,1755,1757,1758]],[[1758,1757,1759,1760]],[[1724,1723,1761,1760]],[[1723,1740,1762,1761]],[[1740,1739,1763,1762]],[[1739,1738,1742,1763]],[[1732,1731,1764,1750]],[[1764,1765,1766,1767]],[[1767,1766,1768,1769]],[[1729,1728,1770,1769]],[[1770,1771,1772,1773]],[[1773,1772,1774,1775]],[[1726,1725,1776,1775]],[[1725,1724,1759,1776]],[[1728,1727,1777,1771]],[[1727,1726,1774,1777]],[[1731,1730,1778,1765]],[[1730,1729,1768,1778]],[[1737,1736,1779,1743]],[[1736,1735,1780,1779]],[[1735,1734,1746,1780]],[[1763,1742,1741,1745,1781,1782,1752,1754,1756,1758,1760,1783]],[[1755,1753,1751,1784,1785,1767,1786,1787,1773,1776,1759,1757]],[[1788,1772,1789,1790,1791,1792]],[[1793,1766,1794,1795,1796,1797]],[[1743,1779,1798,1799,1744]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_17773eca-757d-4b36-ad0d-c087084d14fd":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683546.366,1248592.21,477.42,2683547.945,1248593.861,479.439],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[1800,1801,1802,1803]],[[1800,1804,1801]],[[1805,1803,1802]],[[1804,1805,1802,1801]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_b29ed28d-c905-4911-83a5-cc59d676d716":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":1,"GebaeudeStatus":1},"geographicalExtent":[2683110.77,1252807.866,455.163,2683135.262,1252832.43,472.058],"children":["UUID_674df3e1-57ac-4be0-bcc2-d2928c4b6a0f","UUID_92eedd6b-7156-447a-975a-8f08c8b3406f"]},"UUID_0db71477-aeb0-4dbb-85a3-23974344f5a3":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2681698.38,1250093.38,454.99,2681700.602,1250100.44,457.79],"parents":["UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06"],"geometry":[{"type":"MultiSurface","boundaries":[[[1806,1807,1808]],[[1809,1810,1808,1807]],[[1809,1811,1810]],[[1808,1810,1811,1806]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_2979810e-cbdf-43ba-89d5-ed338c7b3d18":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":1,"GebaeudeStatus":1},"geographicalExtent":[2683212.237,1253017.905,448.908,2683233.377,1253037.77,462.758],"children":["UUID_7cca9830-a256-4064-9cdb-5a261f41cb78"]},"UUID_064d890c-6bf9-4a58-80b8-13bf3cb0f4ea":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683933.177,1248479.448,510.644,2683934.821,1248481.19,512.84],"parents":["UUID_911f0603-2c4d-415f-b0ef-2203521c1571"],"geometry":[{"type":"MultiSurface","boundaries":[[[1812,1813,1814]],[[1813,1815,1816,1814]],[[1817,1818,1819]],[[1817,1819,1816,1815]],[[1818,1820,1816,1819]],[[1820,1812,1814,1816]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_47f7da59-3360-475c-80d4-d612878f4166":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684330.369,1246597.101,442.728,2684332.587,1246599.314,444.481],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836]],[[1821,1837,1838,1822]],[[1839,1838,1837,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854]],[[1855,1839,1854]],[[1827,1849,1848,1828]],[[1826,1850,1849,1827]],[[1825,1851,1850,1826]],[[1824,1852,1851,1825]],[[1856,1853,1852,1824]],[[1823,1855,1854,1853,1856]],[[1836,1840,1837,1821]],[[1835,1841,1840,1836]],[[1834,1842,1841,1835]],[[1833,1843,1842,1834]],[[1832,1844,1843,1833]],[[1831,1845,1844,1832]],[[1830,1846,1845,1831]],[[1829,1847,1846,1830]],[[1828,1848,1847,1829]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c7f99502-54f7-44df-9930-c5e4e3eb87ff":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB00","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":10,"GebaeudeStatus":1},"geographicalExtent":[2681499.562,1245964.968,426.989,2681508.132,1245978.09,436.703],"children":["UUID_d054489f-3680-4e78-a745-7f3fb25417bd"]},"UUID_59174e25-a677-4351-897e-6576c95fe6b6":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2681688.155,1250089.31,457.054,2681691.707,1250091.402,458.99],"parents":["UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06"],"geometry":[{"type":"MultiSurface","boundaries":[[[1857,1858,1859,1860]],[[1858,1861,1859]],[[1862,1857,1860]],[[1863,1860,1859]],[[1864,1863,1859,1861]],[[1860,1863,1864,1862]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c7273bf9-6d42-4648-8e19-03dedda9ce9b":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2681691.92,1250089.956,457.113,2681695.466,1250092.012,458.99],"parents":["UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06"],"geometry":[{"type":"MultiSurface","boundaries":[[[1865,1866,1867]],[[1868,1869,1870]],[[1869,1865,1867,1870]],[[1871,1872,1867,1866]],[[1870,1872,1871,1868]],[[1872,1870,1867]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_944c7a78-bbcd-4872-8a64-983a5ef564be":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2681950.74,1244136.236,451.496,2681959.311,1244146.156,462.846],"parents":["UUID_c82d2cc6-6c38-484c-8105-bb7cb6954b83"],"geometry":[{"type":"MultiSurface","boundaries":[[[1873,1874,1875,1876]],[[1877,1874,1878,1879]],[[1874,1873,1880,1878]],[[1873,1881,1882,1880]],[[1881,1876,1883,1882]],[[1876,1875,1884,1883]],[[1875,1877,1879,1884]],[[1885,1886,1887,1879]],[[1879,1887,1888,1889]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_6891bc95-7cd5-432f-93f2-a2424dadb6b1":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683927.919,1248485.196,510.99,2683929.402,1248486.792,512.84],"parents":["UUID_911f0603-2c4d-415f-b0ef-2203521c1571"],"geometry":[{"type":"MultiSurface","boundaries":[[[1890,1891,1892]],[[1891,1893,1894,1892]],[[1895,1896,1897]],[[1895,1897,1894,1893]],[[1896,1898,1894,1897]],[[1898,1890,1892,1894]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_8eade562-27e6-4dfc-8c6d-a5f8294be7b3":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682572.256,1245115.106,411.0,2682593.725,1245129.021,427.18],"parents":["UUID_b20b4755-1dc3-4332-ad80-da83460c3e46"],"geometry":[{"type":"MultiSurface","boundaries":[[[1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917]],[[1899,1918,1919,1920]],[[1918,1917,1921,1919]],[[1917,1916,1922,1921]],[[1916,1915,1923,1922]],[[1915,1914,1924,1923]],[[1914,1913,1925,1924]],[[1913,1912,1926,1925]],[[1912,1911,1927,1926]],[[1911,1910,1928,1927]],[[1910,1909,1929,1928]],[[1909,1908,1930,1929]],[[1908,1931,1932,1930]],[[1931,1907,1933,1932]],[[1907,1906,1934,1933]],[[1906,1905,1935,1934]],[[1905,1904,1936,1935]],[[1904,1903,1937,1936]],[[1903,1902,1938,1937]],[[1902,1901,1939,1938]],[[1901,1900,1940,1939]],[[1900,1899,1920,1940]],[[1941,1942,1943,1932]],[[1932,1943,1944,1945]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_dce99fff-e3a0-4a01-bc00-f23dc3afd735":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682064.376,1246050.028,432.496,2682065.928,1246052.065,435.088],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[1946,1947,1948]],[[1946,1948,1949,1950]],[[1951,1950,1949]],[[1948,1947,1952,1953,1954]],[[1953,1955,1951,1949,1954]],[[1949,1948,1954]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_d44a2622-f6f4-43a1-8a72-18067e716fc9":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":2,"GebaeudeStatus":1},"geographicalExtent":[2678219.195,1252035.317,485.317,2678236.234,1252050.985,498.835],"children":["UUID_48894ad8-2580-49ad-9571-61dfbcdb8d18"]},"UUID_3a31a813-5b47-4595-b0a3-0c07cdca91c6":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683722.623,1249306.712,507.835,2683724.131,1249308.443,509.703],"parents":["UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499"],"geometry":[{"type":"MultiSurface","boundaries":[[[1956,1957,1958,1959]],[[1960,1961,1962,1963]],[[1960,1956,1959,1961]],[[1964,1962,1961,1965]],[[1964,1965,1959,1958]],[[1959,1965,1961]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_9556fbe1-9912-4c2a-bd00-ca9dc71f08b7":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB07","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":10,"GebaeudeStatus":1},"geographicalExtent":[2681897.823,1243533.057,455.28,2681906.584,1243541.868,461.492],"children":["UUID_17cd93ca-cac0-41a1-bcd1-effb2c2040c8"]},"UUID_fcebd366-e849-4042-9073-57ed98b30f40":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682118.109,1243492.092,474.227,2682120.679,1243494.327,476.039],"parents":["UUID_1904fb85-3274-481a-bcbd-366964facdc6"],"geometry":[{"type":"MultiSurface","boundaries":[[[1966,1967,1968]],[[1969,1970,1968,1967]],[[1971,1970,1969]],[[1968,1970,1971,1966]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_faa8baea-9ee8-4048-bdef-394fa71175d7":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2680447.57,1250733.297,500.658,2680451.377,1250737.01,501.658],"parents":["UUID_133abec6-0057-4789-bd9c-b80c8b477da0"],"geometry":[{"type":"MultiSurface","boundaries":[[[1972,1973,1974,1975]],[[1976,1977,1973,1972]],[[1978,1979,1977,1976]],[[1975,1974,1979,1978]],[[1973,1977,1979,1974]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_1286cedd-d737-46d2-b67d-d9c3196e8a67":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2679005.129,1250821.007,423.863,2679026.756,1250840.951,440.451],"parents":["UUID_04153856-c970-4f34-a0cf-ff14691e3841"],"geometry":[{"type":"MultiSurface","boundaries":[[[1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002]],[[2003,2004,2005,2006]],[[1994,1993,2007,2008]],[[1993,1992,2009,2007]],[[1992,1991,2010,2009]],[[1991,1990,2011,2010]],[[1990,1989,2012,2011]],[[1989,1988,2013,2012]],[[1988,1987,2014,2013]],[[1987,1986,2015,2014]],[[1986,1985,2016,2015]],[[1985,1984,2017,2016]],[[1984,1983,2018,2017]],[[2018,2019,2020,2021]],[[2021,2020,2022,2023]],[[2023,2022,2024,2025]],[[2025,2024,2026,2027]],[[2027,2026,2004,2003]],[[2028,2029,2006,2005]],[[2030,2031,2029,2028]],[[1995,1994,2008,2031]],[[1980,2002,2032,2033]],[[2002,2001,2034,2032]],[[2001,2000,2035,2034]],[[2000,1999,2036,2035]],[[1999,1998,2037,2036]],[[1998,1997,2038,2037]],[[1997,1996,2039,2038]],[[1996,1995,2030,2039]],[[1983,1982,2040,2019]],[[1982,1981,2041,2040]],[[1981,1980,2033,2041]],[[2003,2008,2042,2043,2044,2045,2017,2018,2021,2023,2025,2027]],[[2029,2031,2008,2006]],[[2005,2004,2026,2024,2022,2020,2046,2047,2033,2048,2030,2028]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_29802826-7cf9-4d37-8cf3-46551947d383":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-19","Region":6,"GebaeudeStatus":1},"geographicalExtent":[2687391.985,1246120.266,604.87,2687404.735,1246137.518,620.905],"children":["UUID_91e023f4-84c2-4f5f-af49-45a6cd87d0f1","UUID_06f9a78e-2816-4609-aff5-fcc55b5e9c7f"]},"UUID_ca2fbaa5-f962-4bdd-b1dc-0eb43e014a06":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684574.656,1246329.002,447.39,2684576.157,1246330.466,449.359],"parents":["UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91"],"geometry":[{"type":"MultiSurface","boundaries":[[[2049,2050,2051]],[[2050,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2051]],[[2052,2066,2053]],[[2067,2068,2060,2059]],[[2069,2061,2060,2068]],[[2070,2062,2061,2069]],[[2071,2063,2062,2070]],[[2072,2064,2063,2071]],[[2072,2073,2065,2064]],[[2073,2049,2051,2065]],[[2074,2054,2053,2066]],[[2075,2055,2054,2074]],[[2076,2056,2055,2075]],[[2077,2057,2056,2076]],[[2078,2058,2057,2077]],[[2067,2059,2058,2078]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_8fdb26d3-f1cb-454f-8a03-06d7fca0edfe":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683164.607,1249808.738,486.934,2683170.574,1249810.551,488.626],"parents":["UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e"],"geometry":[{"type":"MultiSurface","boundaries":[[[2079,2080,2081,2082]],[[2079,2083,2080]],[[2084,2082,2081]],[[2084,2081,2080,2083]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_8e32e3d7-1bc7-4155-b223-f928294d57e3":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2680649.599,1246617.838,438.22,2680666.02,1246634.07,451.59],"parents":["UUID_adad7dbf-a71d-4322-be0e-a5bb767c7f3f"],"geometry":[{"type":"MultiSurface","boundaries":[[[2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095]],[[2088,2087,2096,2097]],[[2087,2086,2098,2096]],[[2086,2085,2099,2098]],[[2085,2095,2100,2099]],[[2100,2101,2102,2103]],[[2103,2102,2104]],[[2095,2094,2105,2101]],[[2094,2093,2106,2105]],[[2093,2092,2107,2106]],[[2092,2091,2108,2107]],[[2091,2090,2109,2108]],[[2090,2089,2110,2109]],[[2089,2088,2097,2110]],[[2111,2112,2113,2100,2103,2104]],[[2101,2105,2114,2111,2104,2102]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-16","Region":4,"GebaeudeStatus":1},"geographicalExtent":[2683153.164,1249799.736,473.0,2683171.771,1249811.649,492.626],"children":["UUID_df47c00c-fa20-43b9-903b-1368abe569cd","UUID_f1abc1a4-5487-4f59-9936-3ee6f70203f0","UUID_a67dedb9-773d-4261-b5de-810b90351d9d","UUID_8fdb26d3-f1cb-454f-8a03-06d7fca0edfe","UUID_fc2e9617-555a-45ad-a020-d4e721e2a2c2","UUID_9cb7ad55-f016-4a9a-8868-c760a4fb9be5","UUID_c737f44b-b56e-4070-b0c3-b75194cda5e1","UUID_a70e2b37-fb06-4934-9b6f-2e8242cf9b5e"]},"UUID_9eabad9f-1452-49d4-b696-6ef3d266c427":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682075.729,1246048.115,432.496,2682077.264,1246049.807,435.088],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[2115,2116,2117,2118]],[[2115,2119,2116]],[[2120,2118,2117]],[[2121,2122,2116,2119]],[[2121,2120,2117,2122]],[[2116,2122,2117]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_28da16dc-70a3-49c8-a320-c3f108cf78ec":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684013.331,1251305.804,457.024,2684015.006,1251307.614,458.588],"parents":["UUID_2d11a43e-b755-4d8b-a83d-539bab78490e"],"geometry":[{"type":"MultiSurface","boundaries":[[[2123,2124,2125,2126,2127]],[[2125,2128,2126]],[[2129,2124,2123]],[[2130,2127,2126,2128]],[[2130,2129,2123,2127]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_a6f5f953-b380-473f-895d-6efa88199c5c":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683541.978,1248586.684,474.665,2683542.928,1248588.336,477.226],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[2131,2132,2133,2134]],[[2135,2136,2137]],[[2135,2137,2134,2133,1335]],[[2137,2136,2131,2134]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_311e0eac-ff2f-4bc7-a0a9-9eebb00f0746":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683540.713,1248588.517,474.665,2683542.313,1248590.313,477.226],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[2138,2139,2140]],[[2141,2142,2143]],[[2141,2143,2140,2139]],[[2143,2142,2138,2140]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_efc6cb18-618b-46e0-8f79-351f8c31e4f0":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682843.11,1244471.052,406.437,2682847.123,1244502.367,412.035],"parents":["UUID_c26a5f50-a9e1-463d-922e-41c4dfcc8cd1"],"geometry":[{"type":"MultiSurface","boundaries":[[[2144,2145,2146]],[[2147,2148,2144]],[[2147,2149,2148]],[[2147,2150,2149]],[[2144,2151,2147]],[[2144,2146,2151]],[[2152,2153,2151,2146]],[[2153,2154,2147,2151]],[[2154,2155,2150,2147]],[[2155,2156,2149,2150]],[[2156,2157,2148,2149]],[[2157,2158,2144,2148]],[[2158,2159,2145,2144]],[[2159,2152,2146,2145]],[[2157,2156,2155,2154,2153,2152,2159,2158]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],"surfaces":[{"type":"GroundSurface"},{"type":"GroundSurface"},{"type":"GroundSurface"},{"type":"GroundSurface"},{"type":"GroundSurface"},{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_4347681c-c8e8-40e4-bebd-1e87df01b402":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682066.614,1246053.678,432.496,2682068.64,1246054.799,434.971],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[2160,2161,2162,2163]],[[2160,2164,2161]],[[2165,2163,2162]],[[2161,2164,2166,2167,2168]],[[2162,2161,2168]],[[2167,2169,2165,2162,2168]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_d338f70b-5a9d-4a90-993e-49b9e06f6856":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682064.501,1246046.084,432.23,2682066.348,1246048.792,435.088],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[2170,2171,2172,2173]],[[2170,2173,2174,2175]],[[2175,2174,2176,2177]],[[2173,2172,2178,2179,2180]],[[2179,2181,2176,2174,2180]],[[2180,2174,2173]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c7ea47c1-5961-4f71-be4c-636ebf44be81":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684323.407,1246605.301,443.515,2684325.155,1246606.996,444.8],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[2182,2183,2184]],[[2183,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2184]],[[2185,2201,2186]],[[2202,2194,2193,2203]],[[2204,2195,2194,2202]],[[2205,2196,2195,2204]],[[2206,2197,2196,2205]],[[2206,2207,2198,2197]],[[2207,2208,2199,2198]],[[2208,2209,2200,2199]],[[2209,2182,2184,2200]],[[2210,2187,2186,2201]],[[2211,2188,2187,2210]],[[2212,2189,2188,2211]],[[2213,2190,2189,2212]],[[2214,2191,2190,2213]],[[2215,2192,2191,2214]],[[2203,2193,2192,2215]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c67fa6f8-264f-447d-af7b-661265e9dcbe":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684319.461,1246599.108,443.519,2684321.205,1246600.801,444.8],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[2216,2217,2218]],[[2217,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2218]],[[2219,2235,2220]],[[2236,2228,2227,2237]],[[2238,2229,2228,2236]],[[2239,2230,2229,2238]],[[2240,2231,2230,2239]],[[2240,2241,2232,2231]],[[2241,2242,2233,2232]],[[2242,2243,2234,2233]],[[2243,2216,2218,2234]],[[2244,2221,2220,2235]],[[2245,2222,2221,2244]],[[2246,2223,2222,2245]],[[2247,2224,2223,2246]],[[2248,2225,2224,2247]],[[2249,2226,2225,2248]],[[2237,2227,2226,2249]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_7ff7364e-5164-476a-a722-701955a3a37f":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-22","Region":8,"GebaeudeStatus":1},"geographicalExtent":[2682062.422,1246036.175,417.356,2682089.998,1246056.828,437.917],"children":["UUID_f76df3d0-4b15-4c4c-b56e-15fc5dafa091","UUID_4347681c-c8e8-40e4-bebd-1e87df01b402","UUID_44463af7-1041-4586-9f99-13d5f017ce3c","UUID_76456584-176b-4955-a635-fc3d8e901997","UUID_1fd09737-9da2-4e8f-8d4a-817d404df06c","UUID_989a7801-ba4d-4470-9577-3553237bb639","UUID_afb78d4b-2b41-4f11-9c40-7bd0303132ee","UUID_559a38f2-d13a-448c-97fe-bd2c0c06d880","UUID_4a91e242-f278-41bd-8998-7c922821d056","UUID_2de0fb0c-7707-4ca9-ab9f-87434f2d06d9","UUID_4787fb9c-ddbf-4bfc-bc5c-3b5fdfbf4d2f","UUID_dce99fff-e3a0-4a01-bc00-f23dc3afd735","UUID_d338f70b-5a9d-4a90-993e-49b9e06f6856","UUID_9eabad9f-1452-49d4-b696-6ef3d266c427"]},"UUID_44463af7-1041-4586-9f99-13d5f017ce3c":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682085.372,1246052.457,425.307,2682087.334,1246055.645,426.014],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[2250,2251,2252,2253]],[[2254,2255,2251,2250]],[[2256,2257,2255,2254]],[[2253,2252,2257,2256]],[[2255,2257,2252,2251]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_559a38f2-d13a-448c-97fe-bd2c0c06d880":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682076.201,1246044.413,432.496,2682077.736,1246046.105,435.088],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[2258,2259,2260,2261]],[[2258,2262,2259]],[[2263,2261,2260]],[[2264,2265,2259,2262]],[[2264,2263,2260,2265]],[[2259,2265,2260]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_ed4345d7-ef09-4503-a6bf-e14793b301d2":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2681959.258,1247027.549,410.324,2681985.776,1247044.698,432.625],"parents":["UUID_4ed5d1d4-fa69-4f0c-9600-f2e9f39af5f1"],"geometry":[{"type":"MultiSurface","boundaries":[[[2266,2267,2268,2269,2270,2271]],[[2272,2273,2268,2267]],[[2274,2275,2273,2272]],[[2276,2271,2270,2277,2275,2274]],[[2278,2279,2280,2281]],[[2282,2283,2284,2285]],[[2286,2287,2288,2289,2290,2291]],[[2290,2289,2292,2293]],[[2294,2295,2296,2297]],[[2297,2296,2298,2282]],[[2281,2299,2295,2294]],[[2293,2300,2301,2302]],[[2302,2301,2303,2278]],[[2304,2305,2306,2307]],[[2285,2308,2305,2304]],[[2307,2306,2309,2286]],[[2299,2280,2310,2311]],[[2311,2310,2312,2313]],[[2313,2312,2283,2298]],[[2300,2292,2314,2315]],[[2315,2314,2279,2303]],[[2308,2284,2316,2317,2318,2319]],[[2318,2317,2320,2321]],[[2321,2320,2287,2309]],[[2289,2288,2320,2317,2316,2312,2310,2314]],[[2269,2268,2273,2275,2277,2270]],[[2322,2323,2281,2294,2297,2282,2324,2325,2285,2304,2307,2286,2326,2327,2328,2293,2302,2278],[2272,2329,2267,2266,2271,2276,2274]],[[2330,2298,2296,2295,2299,2331,2332,2333]],[[2301,2300,2315,2334,2335,2303]],[[2336,2337,2338,2339,2306,2305,2308]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"GroundSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c26a5f50-a9e1-463d-922e-41c4dfcc8cd1":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"EO08","Herkunft":"NF_LB_2011","QualitaetStatus":1,"FileCreationDate":"2012-11-10","Region":10,"GebaeudeStatus":1},"geographicalExtent":[2682843.11,1244471.052,406.437,2682847.123,1244502.367,412.035],"children":["UUID_efc6cb18-618b-46e0-8f79-351f8c31e4f0"]},"UUID_4e8d66be-2f29-41fa-9b74-07fa8e8d7159":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684322.365,1246600.031,444.767,2684325.472,1246602.817,447.015],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[2340,2341,2342,2343]],[[2341,2344,2342]],[[2345,2340,2343]],[[2344,2345,2343,2342]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_8e204f89-6864-4a56-ab4a-1bd0d0007a10":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682805.317,1243078.725,466.13,2682819.656,1243097.714,479.051],"parents":["UUID_65839993-f5b4-47fc-be70-25abd427bc0b"],"geometry":[{"type":"MultiSurface","boundaries":[[[2346,2347,2348,2349]],[[2348,2350,2351,2352]],[[2353,2354,2355,2352]],[[2356,2357,2358,2359]],[[2360,2361,2362,2363]],[[2351,2364,2365,2366,2367,2368,2369,2370]],[[2355,2371,2372,2352]],[[2373,2374,2375,2376,2354,2377,2378,2379,2380,2381,2382]],[[2373,2346,2383,2384]],[[2383,2349,2355,2356]],[[2354,2376,2385,2356]],[[2376,2375,2386,2385]],[[2375,2374,2387,2386]],[[2374,2373,2384,2387]],[[2388,2360,2363,2389]],[[2369,2368,2361,2360,2388,2390]],[[2389,2363,2362,2379]],[[2379,2362,2361,2380]],[[2347,2382,2391,2350]],[[2382,2381,2392,2391]],[[2393,2367,2392,2381]],[[2367,2393,2380,2368]],[[2390,2377,2370,2369]],[[2377,2353,2351,2370]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"}]},"lod":"2"}]},"UUID_eb2a6e76-2ac8-41f9-a676-e741a87a7b09":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684286.705,1248699.303,553.37,2684288.17,1248700.69,554.488],"parents":["UUID_9194ef74-d111-4fce-b364-3fc7c62402d5"],"geometry":[{"type":"MultiSurface","boundaries":[[[2394,2395,2396,2397]],[[2398,2399,2395,2394]],[[2400,2401,2399,2398]],[[2400,2397,2396,2401]],[[2399,2401,2396,2395]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_8240267f-eccd-4400-ae0c-6f5380e52db0":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2678666.167,1250884.422,400.996,2678682.908,1250906.574,421.24],"parents":["UUID_601e5813-30d5-48f0-9649-cb0ff3d722dc"],"geometry":[{"type":"MultiSurface","boundaries":[[[2402,2403,2404,2405,2406,2407,2408,2409,2410]],[[2406,2405,2411,2412]],[[2405,2404,2413,2411]],[[2404,2403,2414,2413]],[[2403,2402,2415,2414]],[[2402,2410,2416,2415]],[[2410,2409,2417,2416]],[[2409,2408,2418,2417]],[[2408,2407,2419,2418]],[[2407,2406,2412,2419]],[[2420,2421,2422,2423]],[[2424,2425,2421,2420]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_89681b0a-629d-4ff3-a512-1e0d7363f624":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2686103.386,1245900.364,518.088,2686115.579,1245912.038,533.89],"parents":["UUID_e02995c9-2a6f-4a76-93f5-f45d896bea93"],"geometry":[{"type":"MultiSurface","boundaries":[[[2426,2427,2428,2429]],[[2430,2431,2432,2433]],[[2431,2434,2435,2432]],[[2434,2436,2437,2435]],[[2436,2438,2439,2437]],[[2440,2441,2442,2443]],[[2441,2444,2445,2446,2442]],[[2444,2447,2448,2449,2445]],[[2450,2451,2452,2453,2454,2447,2444,2441,2440,2455,2456,2457,2458,2459]],[[2453,2452,2460,2461]],[[2462,2460,2452,2451,2463,2464,2465]],[[2466,2467,2468,2469,2470,2471]],[[2428,2462,2472,2473,2429]],[[2435,2437,2439,2463,2433,2432]],[[2436,2434,2431,2474,2475,2476,2426,2477]],[[2459,2458,2445,2449]],[[2459,2449,2454]],[[2457,2446,2445,2458]],[[2455,2440,2443]],[[2446,2457,2455,2443,2442]],[[2478,2474,2479,2453]],[[2474,2480,2481,2479]],[[2482,2476,2483,2484]],[[2476,2475,2485,2483]],[[2475,2478,2453,2485]],[[2427,2482,2484,2428]],[[2480,2430,2433,2481]],[[2467,2464,2463,2439,2468]],[[2438,2477,2469,2468]],[[2477,2486,2470,2469]],[[2470,2473,2472,2471]],[[2471,2472,2462,2465,2466]],[[2466,2465,2464,2467]],[[2486,2426,2429,2473]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"}]},"lod":"2"}]},"UUID_48894ad8-2580-49ad-9571-61dfbcdb8d18":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2678219.195,1252035.317,485.317,2678236.234,1252050.985,498.835],"parents":["UUID_d44a2622-f6f4-43a1-8a72-18067e716fc9"],"geometry":[{"type":"MultiSurface","boundaries":[[[2487,2488,2489,2490,2491,2492,2493,2494,2495,2496]],[[2496,2495,2497,2498]],[[2495,2494,2499,2497]],[[2494,2493,2500,2499]],[[2493,2492,2501,2500]],[[2492,2491,2502,2501]],[[2502,2503,2504]],[[2491,2490,2505,2503]],[[2490,2489,2506,2505]],[[2489,2488,2507,2506]],[[2488,2487,2508,2507]],[[2487,2496,2509,2508]],[[2509,2498,2504]],[[2510,2504,2511,2512]],[[2504,2513,2514,2511]],[[2515,2516,2504,2517]],[[2516,2518,2519,2504]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c10d6310-5173-4ff7-81be-182e3a03f3b0":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683656.117,1246832.73,424.798,2683658.0,1246834.63,426.592],"parents":["UUID_942e02c4-45cc-4d51-bdde-625df1c81410"],"geometry":[{"type":"MultiSurface","boundaries":[[[2520,2521,2522,2523]],[[2524,2525,2522,2521]],[[2524,2526,2525]],[[2527,2520,2523]],[[2528,2522,2525,2526]],[[2528,2527,2523,2522]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":5,"GebaeudeStatus":1},"geographicalExtent":[2684313.841,1246584.131,421.992,2684343.491,1246611.52,448.133],"children":["UUID_4eb04298-eafd-48b3-8e78-19515db68005","UUID_ad20451e-e9bd-4896-b0c7-b9aba4490e33","UUID_7ac1410e-058c-44a7-83d3-261cc5f86d8b","UUID_c257957c-f1dd-4dc7-8b0d-9ee50a6f6305","UUID_0752325e-f0e8-4d1c-9253-0309cfb599d4","UUID_c7ea47c1-5961-4f71-be4c-636ebf44be81","UUID_47f7da59-3360-475c-80d4-d612878f4166","UUID_7efe3441-bcdd-4950-9a17-b4b04f95fa8a","UUID_549ea6f1-848d-4ff9-83c9-9f1623512d5e","UUID_4e8d66be-2f29-41fa-9b74-07fa8e8d7159","UUID_c67fa6f8-264f-447d-af7b-661265e9dcbe","UUID_55a37e02-05fb-4285-baad-e9c388fe0ff2"]},"UUID_0f6c77bc-8464-49e1-8dd0-433a11ba5429":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-04-10","Region":7,"GebaeudeStatus":1},"geographicalExtent":[2679947.374,1248706.606,402.743,2679966.608,1248724.724,424.761],"children":["UUID_bec0b187-99f5-463e-a0c3-a8b7f56dfef7","UUID_44dbc8b0-9822-4bb7-8898-b0067732ca3f","UUID_862dedae-0a64-4b6b-81cf-d2c5efa8a2d9"]},"UUID_5bc0c349-da6e-4caa-aea4-7f4e286416af":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683660.898,1246836.948,424.795,2683662.783,1246838.85,426.592],"parents":["UUID_942e02c4-45cc-4d51-bdde-625df1c81410"],"geometry":[{"type":"MultiSurface","boundaries":[[[2529,2530,2531,2532]],[[2533,2534,2531,2530]],[[2533,2535,2534]],[[2536,2529,2532]],[[2537,2531,2534,2535]],[[2537,2536,2532,2531]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_ea9716ec-8de7-4162-a755-6cc070dbeb21":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684302.303,1248711.664,556.796,2684303.641,1248712.948,557.869],"parents":["UUID_9194ef74-d111-4fce-b364-3fc7c62402d5"],"geometry":[{"type":"MultiSurface","boundaries":[[[2538,2539,2540,2541]],[[2542,2543,2540,2539]],[[2544,2545,2543,2542]],[[2538,2541,2545,2544]],[[2540,2543,2545,2541]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_dd1a3dae-6731-4f1e-9605-0a03f4a31b72":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683661.94,1246831.365,428.704,2683664.303,1246833.639,429.463],"parents":["UUID_942e02c4-45cc-4d51-bdde-625df1c81410"],"geometry":[{"type":"MultiSurface","boundaries":[[[2546,2547,2548,2549]],[[2550,2551,2547,2546]],[[2552,2553,2551,2550]],[[2549,2548,2553,2552]],[[2554,2551,2553]],[[2551,2554,2555,2547]],[[2554,2553,2548,2555]],[[2548,2547,2555]]],"semantics":{"values":[0,1,2,3,4,5,6,7],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_a0efba77-ccc0-4c21-a731-0e8f271230ae":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684574.934,1246324.438,452.009,2684577.169,1246326.68,452.456],"parents":["UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91"],"geometry":[{"type":"MultiSurface","boundaries":[[[2556,2557,2558,2559]],[[2560,2561,2557,2556]],[[2562,2563,2561,2560]],[[2559,2558,2563,2562]],[[2561,2563,2558,2557]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_64cc319a-4341-4087-b65b-ba29f964dbdd":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682537.579,1251790.762,439.0,2682553.581,1251815.555,456.945],"parents":["UUID_44dcb74c-c74c-4c18-9747-e4adf5adb872"],"geometry":[{"type":"MultiSurface","boundaries":[[[2564,2565,2566,2567]],[[2565,2568,2569,2566]],[[2570,2571,2569,2568]],[[2571,2570,2572,2573]],[[2572,2574,2575,2573]],[[2574,2576,2577,2575]],[[2576,2578,2579,2577]],[[2578,2580,2581,2579]],[[2580,2582,2583,2581]],[[2582,2584,2585,2583]],[[2584,2586,2587,2585]],[[2586,2588,2589,2587]],[[2590,2591,2592,2593,2571,2594,2595,2589,2596]],[[2586,2584,2582,2580,2578,2576,2574,2572,2570,2568,2565,2564,2597,2598,2599,2600,2588]],[[2588,2600,2596,2589]],[[2600,2599,2601,2596]],[[2599,2598,2602,2601]],[[2598,2597,2603,2602]],[[2597,2564,2567,2603]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"}]},"lod":"2"}]},"UUID_da963f89-5cc4-4924-a6cd-6d552c4cd728":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2685586.743,1252123.612,435.157,2685587.81,1252124.666,436.301],"parents":["UUID_6ef0e1c5-f08e-410d-8172-3f5977e3b681"],"geometry":[{"type":"MultiSurface","boundaries":[[[2604,2605,2606,2607]],[[2604,2608,2609,2605]],[[2610,2611,2609,2608]],[[2607,2606,2611,2610]],[[2605,2609,2611,2606]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_133abec6-0057-4789-bd9c-b80c8b477da0":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":2,"GebaeudeStatus":1},"geographicalExtent":[2680434.721,1250720.107,486.284,2680461.707,1250746.7,501.658],"children":["UUID_faa8baea-9ee8-4048-bdef-394fa71175d7","UUID_13135116-cb9d-48de-8f62-293927ec9e0e"]},"UUID_1904fb85-3274-481a-bcbd-366964facdc6":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":10,"GebaeudeStatus":1},"geographicalExtent":[2682116.856,1243490.95,462.874,2682121.56,1243501.532,477.633],"children":["UUID_fcebd366-e849-4042-9073-57ed98b30f40","UUID_b36e19bf-dd90-47cb-8309-d8e2cb7783bc"]},"UUID_1668915a-d927-40c9-b1d0-4383f4be204e":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683663.785,1246824.51,423.857,2683666.087,1246826.838,426.38],"parents":["UUID_942e02c4-45cc-4d51-bdde-625df1c81410"],"geometry":[{"type":"MultiSurface","boundaries":[[[2612,2613,2614,2615]],[[2612,2616,2613]],[[2617,2618,2619]],[[2618,2615,2614,2619]],[[2616,2620,2614,2613]],[[2620,2617,2619,2614]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_87ae3482-ac74-4e9d-8da6-ac2f0ae2e396":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683557.527,1248594.005,474.665,2683558.902,1248596.001,477.226],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[2621,2622,2623,2624]],[[2623,1317,1248,2625,2624]],[[1248,1247,2625]],[[2621,2624,2625,1247]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_07622d49-093f-4001-b30b-1aa86dcbdb3b":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684575.86,1246317.05,448.124,2684577.045,1246318.51,449.413],"parents":["UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91"],"geometry":[{"type":"MultiSurface","boundaries":[[[2626,2627,2628]],[[2627,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2628]],[[2629,2645,2630]],[[2646,2638,2637,2647]],[[2646,2648,2639,2638]],[[2648,2649,2640,2639]],[[2649,2650,2641,2640]],[[2650,2651,2642,2641]],[[2651,2652,2643,2642]],[[2652,2653,2644,2643]],[[2653,2626,2628,2644]],[[2654,2631,2630,2645]],[[2655,2632,2631,2654]],[[2655,2656,2633,2632]],[[2656,2657,2634,2633]],[[2657,2658,2635,2634]],[[2658,2659,2636,2635]],[[2659,2647,2637,2636]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_e54b7be9-34d7-4001-98c6-22c27fc6f8b9":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":9,"GebaeudeStatus":1},"geographicalExtent":[2680257.752,1247104.403,427.526,2680274.194,1247117.969,458.884],"children":["UUID_fe19b524-c55d-4aeb-933f-4cee7dbad15e"]},"UUID_24e51931-afcd-4f75-bb5f-cb3310e7be89":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683668.228,1246836.503,424.635,2683669.669,1246838.041,427.936],"parents":["UUID_942e02c4-45cc-4d51-bdde-625df1c81410"],"geometry":[{"type":"MultiSurface","boundaries":[[[2660,2661,2662,2663]],[[2661,2664,2665,2662]],[[2666,2667,2665,2664]],[[2660,2663,2667,2666]],[[2662,2665,2667,2663]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_2d11a43e-b755-4d8b-a83d-539bab78490e":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":3,"GebaeudeStatus":1},"geographicalExtent":[2684010.039,1251296.329,440.845,2684022.16,1251310.966,459.337],"children":["UUID_28da16dc-70a3-49c8-a320-c3f108cf78ec","UUID_6a50e7cd-04a6-44c4-8dd1-d52ab6d0c3a5"]},"UUID_f1abc1a4-5487-4f59-9936-3ee6f70203f0":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2683153.164,1249799.736,473.0,2683171.771,1249811.649,492.626],"parents":["UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e"],"geometry":[{"type":"MultiSurface","boundaries":[[[2668,2669,2670,2671,2672,2673]],[[2672,2671,2674,2675]],[[2671,2670,2676,2674]],[[2670,2669,2677,2676]],[[2669,2668,2678,2677]],[[2668,2673,2679,2678]],[[2673,2672,2675,2679]],[[2680,2681,2682,2676]],[[2676,2682,2683,2684]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_9194ef74-d111-4fce-b364-3fc7c62402d5":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-16","Region":4,"GebaeudeStatus":1},"geographicalExtent":[2684272.319,1248694.619,539.084,2684306.425,1248717.886,557.869],"children":["UUID_077df727-e8b0-4d36-832c-9bac78575f49","UUID_eb2a6e76-2ac8-41f9-a676-e741a87a7b09","UUID_a8c8e763-dfa5-4151-93ef-c51aed1cd54b","UUID_ea9716ec-8de7-4162-a755-6cc070dbeb21","UUID_bc41c673-1857-468f-ab59-7189d1a4f3a7","UUID_f7734e6b-e403-4f9f-85ff-cbbb567364ab"]},"UUID_adad7dbf-a71d-4322-be0e-a5bb767c7f3f":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":9,"GebaeudeStatus":1},"geographicalExtent":[2680649.599,1246617.838,438.22,2680666.02,1246634.07,451.59],"children":["UUID_8e32e3d7-1bc7-4155-b223-f928294d57e3"]},"UUID_7efe3441-bcdd-4950-9a17-b4b04f95fa8a":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684321.297,1246587.419,443.432,2684323.027,1246589.213,444.776],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[2685,2686,2687]],[[2686,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2687]],[[2688,2704,2689]],[[2705,2697,2696,2706]],[[2707,2698,2697,2705]],[[2708,2699,2698,2707]],[[2709,2700,2699,2708]],[[2709,2710,2701,2700]],[[2710,2711,2702,2701]],[[2711,2712,2703,2702]],[[2712,2685,2687,2703]],[[2713,2690,2689,2704]],[[2714,2691,2690,2713]],[[2715,2692,2691,2714]],[[2716,2693,2692,2715]],[[2717,2694,2693,2716]],[[2718,2695,2694,2717]],[[2706,2696,2695,2718]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_9db22f7a-fcbf-466e-8005-d1a497103ffa":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682730.278,1248422.741,421.509,2682731.08,1248423.557,423.637],"parents":["UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736"],"geometry":[{"type":"MultiSurface","boundaries":[[[2719,2720,2721,2722]],[[2723,2724,2721,2720]],[[2725,2726,2724,2723]],[[2725,2719,2722,2726]],[[2724,2726,2722,2721]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_f6cf4a7f-46ab-4560-aa8d-86c195dfe9cb":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683708.51,1249300.864,507.447,2683711.248,1249304.025,510.233],"parents":["UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499"],"geometry":[{"type":"MultiSurface","boundaries":[[[2727,2728,2729,2730]],[[2731,2732,2733,2734]],[[2727,2730,2732,2731]],[[2735,2733,2732,2736]],[[2736,2732,2730]],[[2735,2736,2730,2729]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_809c08c8-2739-4ffb-81c7-b94a58165f10":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684579.094,1246323.462,452.009,2684581.697,1246325.878,452.814],"parents":["UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91"],"geometry":[{"type":"MultiSurface","boundaries":[[[2737,2738,2739,2740]],[[2741,2742,2738,2737]],[[2743,2744,2742,2741]],[[2740,2739,2744,2743]],[[2742,2744,2739,2738]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_0a3c8831-4910-4ac1-a37c-0c5bf966706f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2683131.479,1243630.844,405.0,2683146.318,1243645.377,418.38],"parents":["UUID_889b7d4a-cbf4-4aa3-a9aa-2e20e87b080d"],"geometry":[{"type":"MultiSurface","boundaries":[[[2745,2746,2747,2748,2749,2750,2751,2752,2753,2754]],[[2750,2749,2755,2756]],[[2749,2748,2757,2755]],[[2758,2759,2760,2761]],[[2761,2760,2751,2750,2762]],[[2762,2756,2763,2764]],[[2764,2763,2757,2765]],[[2748,2747,2766,2765]],[[2747,2746,2767,2766]],[[2746,2745,2768,2767]],[[2745,2754,2769,2768]],[[2754,2753,2770,2769]],[[2770,2771,2759,2758]],[[2751,2760,2772,2752]],[[2753,2752,2772,2771]],[[2763,2773,2774,2775]],[[2767,2768,2769,2758,2776,2777,2764,2766]],[[2778,2779,2780,2759]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_506bcdde-bfff-416e-a296-9be9ff70801e":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-30","Geomtype":1},"geographicalExtent":[2681739.874,1243906.82,426.506,2681768.04,1243916.002,441.739],"parents":["UUID_37f3b52f-e267-4fd8-b344-ea8343643647"],"geometry":[{"type":"MultiSurface","boundaries":[[[2781,2782,2783,2784]],[[2785,2786,2787,2782,2781,2788]],[[2783,2789,2790,2791,2792,2784]],[[2793,2794,2795,2796]],[[2788,2792,2797,2798]],[[2799,2790,2800,2801]],[[2801,2800,2794,2793]],[[2786,2785,2788,2798,2796,2795]],[[2792,2791,2799,2797]],[[2792,2788,2781,2784]],[[2802,2803,2804,2805,2798,2797]],[[2786,2790,2783,2782]],[[2800,2790,2786,2795,2794]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,11],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"GroundSurface"}]},"lod":"2"}]},"UUID_49e3f540-778f-4fee-a4c1-2a3c64aadd32":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2685701.38,1246014.248,497.726,2685704.522,1246016.571,499.64],"parents":["UUID_a662769f-e5bd-4977-9c19-13840f38fb11"],"geometry":[{"type":"MultiSurface","boundaries":[[[2806,2807,2808]],[[2809,2810,2811]],[[2811,2810,2806,2808,2812]],[[2813,2812,2808,2807]],[[2809,2811,2812,2813]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c383c4f4-4e35-458c-8907-ce1a332ebc12":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":1,"GebaeudeStatus":1},"geographicalExtent":[2683596.689,1252091.962,432.417,2683611.046,1252112.337,454.632],"children":["UUID_d47435e1-2475-4f10-a0bf-3e28ad4400be"]},"UUID_4eb04298-eafd-48b3-8e78-19515db68005":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684317.601,1246596.188,443.522,2684319.342,1246597.879,444.8],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[2814,2815,2816]],[[2815,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2816]],[[2817,2833,2818]],[[2834,2826,2825,2835]],[[2836,2827,2826,2834]],[[2837,2828,2827,2836]],[[2838,2829,2828,2837]],[[2838,2839,2830,2829]],[[2839,2840,2831,2830]],[[2840,2841,2832,2831]],[[2841,2814,2816,2832]],[[2842,2819,2818,2833]],[[2843,2820,2819,2842]],[[2844,2821,2820,2843]],[[2845,2822,2821,2844]],[[2846,2823,2822,2845]],[[2847,2824,2823,2846]],[[2835,2825,2824,2847]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_e6833be8-1ded-4fe5-9cf0-bac095165038":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683549.244,1248596.898,474.665,2683550.674,1248597.814,477.034],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[2848,2849,2850,2851]],[[2848,2852,2849]],[[2853,2851,2850]],[[2854,2855,2849,2852]],[[2850,2849,2855]],[[2854,2853,2850,2855]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_4c5c6291-62c1-4a0d-9a15-2a2861388ce4":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2686103.439,1245908.23,528.891,2686106.49,1245910.864,531.451],"parents":["UUID_e02995c9-2a6f-4a76-93f5-f45d896bea93"],"geometry":[{"type":"MultiSurface","boundaries":[[[2856,2857,2858,2859]],[[2860,2861,2857,2856]],[[2862,2859,2858]],[[2860,2862,2858,2861]],[[2858,2857,2861]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_b20b4755-1dc3-4332-ad80-da83460c3e46":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":10,"GebaeudeStatus":1},"geographicalExtent":[2682572.256,1245115.106,411.0,2682593.725,1245129.021,427.18],"children":["UUID_8eade562-27e6-4dfc-8c6d-a5f8294be7b3"]},"UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":2,"GebaeudeStatus":1},"geographicalExtent":[2681682.171,1250087.352,444.332,2681701.164,1250102.479,461.991],"children":["UUID_8c2b73f1-d761-4882-b2ad-965a9860f968","UUID_35e061b2-98d2-498a-8063-c9da0905d955","UUID_3095c66a-c43c-4bea-b860-3ac0e85c215b","UUID_214e3763-326b-4899-97ef-22069b5d9e38","UUID_59174e25-a677-4351-897e-6576c95fe6b6","UUID_0db71477-aeb0-4dbb-85a3-23974344f5a3","UUID_c7273bf9-6d42-4648-8e19-03dedda9ce9b","UUID_924a2335-5cfc-4cf1-ac78-8f4941bccbe3"]},"UUID_35e061b2-98d2-498a-8063-c9da0905d955":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2681691.051,1250099.931,454.99,2681695.078,1250101.786,457.79],"parents":["UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06"],"geometry":[{"type":"MultiSurface","boundaries":[[[2863,2864,2865]],[[2866,2867,2868]],[[2863,2865,2868,2867]],[[2864,2866,2868,2865]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_4941ae6c-bac8-4520-a416-4bb48b889e29":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2683926.714,1248477.282,493.773,2683944.005,1248494.579,514.706],"parents":["UUID_911f0603-2c4d-415f-b0ef-2203521c1571"],"geometry":[{"type":"MultiSurface","boundaries":[[[2869,2870,2871,2872]],[[2873,2874,2875,2876]],[[2874,2877,2878,2875]],[[2879,2880,2881,2882]],[[2880,2873,2876,2881]],[[2883,2884,2885,2886]],[[2884,2879,2882,2885]],[[2887,2888,2889,2890]],[[2888,2883,2886,2889]],[[2891,2892,2893,2890,2894,2895]],[[2893,2892,2896,2897]],[[2891,2898,2896,2892]],[[2895,2899,2898,2891]],[[2900,2899,2895,2894]],[[2890,2901,2900,2894]],[[2874,2873,2880,2879,2884,2883,2888,2887,2902,2870,2869,2877]],[[2887,2890,2893,2902]],[[2870,2902,2893,2871]],[[2877,2869,2872,2878]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"}]},"lod":"2"}]},"UUID_f7734e6b-e403-4f9f-85ff-cbbb567364ab":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2684272.319,1248694.619,539.084,2684306.425,1248717.886,556.962],"parents":["UUID_9194ef74-d111-4fce-b364-3fc7c62402d5"],"geometry":[{"type":"MultiSurface","boundaries":[[[2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914]],[[2908,2907,2915,2916]],[[2907,2906,2917,2915]],[[2906,2905,2918,2917]],[[2905,2904,2919,2918]],[[2904,2903,2920,2919]],[[2903,2914,2921,2920]],[[2922,2921,2923,2924,2925]],[[2914,2913,2926,2923]],[[2913,2912,2542,2926]],[[2912,2911,2927,2542]],[[2911,2910,2928,2927]],[[2910,2909,2929,2928]],[[2909,2908,2930,2929]],[[2916,2925,2924,2930]],[[2931,2932,2933,2934,2935,2922]],[[2936,2922,2935,2937]],[[2938,2939,2924,2940]],[[2939,2941,2942,2924]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_fc830572-a447-49ed-8d91-943d230ff75e":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682225.316,1250206.88,468.957,2682228.942,1250211.805,475.291],"parents":["UUID_1c91dd3a-aef6-41f6-990e-08aba3ca6933"],"geometry":[{"type":"MultiSurface","boundaries":[[[2943,2944,2945,2946,2947,2948]],[[2947,2946,2949,2950]],[[2946,2945,2951,2949]],[[2945,2944,2952,2951]],[[2944,2943,2953,2952]],[[2943,2948,2954,2953]],[[2948,2947,2950,2954]],[[2955,2956,2957,2958]],[[2956,2959,2960,2957]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_3cc2b88f-802c-4388-9e23-78e0e741c474":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB00","Herkunft":"EE_LB_2007_KorrFlaechennormalenUVM2015","QualitaetStatus":1,"FileCreationDate":"2012-03-22","Region":8,"GebaeudeStatus":1},"geographicalExtent":[2682566.825,1248514.331,402.37,2682610.649,1248557.833,429.383],"children":["UUID_3d17c044-55ac-4a43-a694-d7a59a230342","UUID_f497b237-766b-4872-ba41-f7cde715d91f","UUID_d546b721-51bf-4da3-8a04-10bc885c75e5","UUID_d0c1b77f-675f-4fb2-a7b7-79036f819a8d"]},"UUID_4ed5d1d4-fa69-4f0c-9600-f2e9f39af5f1":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"NF_LB_2013","QualitaetStatus":1,"FileCreationDate":"2015-07-01","Region":9,"GebaeudeStatus":1},"geographicalExtent":[2681959.258,1247027.549,410.324,2681985.776,1247044.698,432.625],"children":["UUID_ed4345d7-ef09-4503-a6bf-e14793b301d2"]},"UUID_a0a4257a-b906-43c6-856d-01484dba0175":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2680250.349,1248160.292,420.392,2680252.515,1248162.405,422.026],"parents":["UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0"],"geometry":[{"type":"MultiSurface","boundaries":[[[2961,2962,2963,2964]],[[2965,2966,2962,2961]],[[2967,2968,2966,2965]],[[2964,2963,2968,2967]],[[2962,2966,2968,2963]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_5001323d-93d7-4a6e-af6d-380641a0cea2":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683938.449,1248480.369,510.502,2683940.314,1248482.179,512.723],"parents":["UUID_911f0603-2c4d-415f-b0ef-2203521c1571"],"geometry":[{"type":"MultiSurface","boundaries":[[[2969,2970,2971]],[[2970,2972,2973,2971]],[[2974,2975,2976]],[[2974,2976,2973,2972]],[[2975,2977,2973,2976]],[[2977,2969,2971,2973]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_889b7d4a-cbf4-4aa3-a9aa-2e20e87b080d":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"NF_LB_2011","QualitaetStatus":1,"FileCreationDate":"2012-11-10","Region":10,"GebaeudeStatus":1},"geographicalExtent":[2683131.479,1243630.844,405.0,2683146.318,1243645.377,419.329],"children":["UUID_7949827f-0330-4436-8265-e6347a3540ad","UUID_0a3c8831-4910-4ac1-a37c-0c5bf966706f"]},"UUID_989a7801-ba4d-4470-9577-3553237bb639":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682075.259,1246051.805,432.496,2682076.793,1246053.496,435.088],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[2978,2979,2980,2981]],[[2978,2982,2979]],[[2983,2981,2980]],[[2984,2985,2979,2982]],[[2984,2983,2980,2985]],[[2979,2985,2980]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_2946b6dd-ee5c-4293-87f6-4b0d6b722c44":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683658.607,1246834.926,424.797,2683660.491,1246836.827,426.592],"parents":["UUID_942e02c4-45cc-4d51-bdde-625df1c81410"],"geometry":[{"type":"MultiSurface","boundaries":[[[2986,2987,2988,2989]],[[2990,2991,2988,2987]],[[2990,2992,2991]],[[2993,2986,2989]],[[2994,2988,2991,2992]],[[2994,2993,2989,2988]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_dac19f63-e31c-4546-81bb-1eb4c1dcaf60":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684574.149,1246320.046,448.124,2684575.334,1246321.506,449.413],"parents":["UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91"],"geometry":[{"type":"MultiSurface","boundaries":[[[2995,2996,2997]],[[2996,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,2997]],[[2998,3014,2999]],[[3015,3007,3006,3016]],[[3015,3017,3008,3007]],[[3017,3018,3009,3008]],[[3018,3019,3010,3009]],[[3019,3020,3011,3010]],[[3020,3021,3012,3011]],[[3021,3022,3013,3012]],[[3022,2995,2997,3013]],[[3023,3000,2999,3014]],[[3024,3001,3000,3023]],[[3024,3025,3002,3001]],[[3025,3026,3003,3002]],[[3026,3027,3004,3003]],[[3027,3028,3005,3004]],[[3028,3016,3006,3005]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_85f5d0e7-6bf0-438f-a609-7b928f7a23e8":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683544.385,1248593.92,475.073,2683545.787,1248595.203,477.226],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[3029,3030,3031]],[[3029,3031,3032,3033]],[[3034,3033,3032]],[[3031,3030,3034,3032]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_264490e7-5415-4353-8e9b-6f7e5998f561":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2686107.377,1245908.741,528.916,2686110.453,1245911.195,531.388],"parents":["UUID_e02995c9-2a6f-4a76-93f5-f45d896bea93"],"geometry":[{"type":"MultiSurface","boundaries":[[[3035,3036,3037,3038]],[[3035,3039,3036]],[[3040,3038,3037]],[[3041,3042,3036,3039]],[[3036,3042,3037]],[[3041,3040,3037,3042]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_4a91e242-f278-41bd-8998-7c922821d056":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682068.668,1246041.127,432.496,2682070.712,1246042.394,434.971],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[3043,3044,3045,3046]],[[3043,3047,3044]],[[3048,3046,3045]],[[3044,3047,3049,3050,3051]],[[3045,3044,3051]],[[3050,3052,3048,3045,3051]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_f544d475-2950-4843-8102-6f45401c6714":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683930.081,1248482.558,510.99,2683931.613,1248484.194,512.956],"parents":["UUID_911f0603-2c4d-415f-b0ef-2203521c1571"],"geometry":[{"type":"MultiSurface","boundaries":[[[3053,3054,3055]],[[3054,3056,3057,3055]],[[3058,3059,3060]],[[3058,3060,3057,3056]],[[3059,3061,3057,3060]],[[3061,3053,3055,3057]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_e8344666-a15d-47ea-bbd6-e1261eb16af7":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB07","Herkunft":"NF_LB_2013","QualitaetStatus":1,"FileCreationDate":"2015-07-01","Region":3,"GebaeudeStatus":1},"geographicalExtent":[2684515.96,1250874.973,454.054,2684530.368,1250886.323,460.0],"children":["UUID_1cb08835-42f4-4f74-9cfa-ae069992b8d2"]},"UUID_a662769f-e5bd-4977-9c19-13840f38fb11":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":5,"GebaeudeStatus":1},"geographicalExtent":[2685696.529,1246012.3,485.878,2685708.844,1246029.112,501.046],"children":["UUID_86cb892a-059a-4ee1-9b05-41beab140553","UUID_49e3f540-778f-4fee-a4c1-2a3c64aadd32"]},"UUID_65839993-f5b4-47fc-be70-25abd427bc0b":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":10,"GebaeudeStatus":1},"geographicalExtent":[2682805.317,1243078.725,466.13,2682819.656,1243097.714,479.051],"children":["UUID_8e204f89-6864-4a56-ab4a-1bd0d0007a10"]},"UUID_5579091c-2356-4115-b14c-a07d02416836":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682726.662,1248427.716,419.518,2682728.877,1248430.149,421.107],"parents":["UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736"],"geometry":[{"type":"MultiSurface","boundaries":[[[3062,3063,3064,3065,3066]],[[3064,3067,3065]],[[3068,3063,3062]],[[3069,3066,3065,3067]],[[3069,3068,3062,3066]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":9,"GebaeudeStatus":1},"geographicalExtent":[2680230.637,1248140.879,408.0,2680258.314,1248168.992,422.078],"children":["UUID_3c3eba56-1cdb-474c-9663-718c3c0b8faf","UUID_8b0217c1-4c57-4e86-a96e-6a2df434b2c4","UUID_82a5e20d-91d3-418c-bde7-472d6c5238d0","UUID_44c49cdb-a5ab-44e4-bfa5-2978a625d872","UUID_a0a4257a-b906-43c6-856d-01484dba0175"]},"UUID_a67dedb9-773d-4261-b5de-810b90351d9d":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683154.108,1249801.096,486.975,2683156.859,1249802.895,488.826],"parents":["UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e"],"geometry":[{"type":"MultiSurface","boundaries":[[[3070,3071,3072,3073]],[[3070,3074,3071]],[[3075,3073,3072]],[[3075,3072,3071,3074]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_860a5d7e-1c0a-45cf-925b-9755b3998d10":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682735.966,1248420.176,419.529,2682738.169,1248422.596,421.107],"parents":["UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736"],"geometry":[{"type":"MultiSurface","boundaries":[[[3076,3077,3078,3079,3080]],[[3078,3081,3079]],[[3082,3077,3076]],[[3083,3080,3079,3081]],[[3083,3082,3076,3080]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_6ef0e1c5-f08e-410d-8172-3f5977e3b681":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":3,"GebaeudeStatus":1},"geographicalExtent":[2685582.125,1252118.148,423.898,2685592.437,1252129.141,436.301],"children":["UUID_77da0ac4-8ccc-4c27-a76c-24439c6df852","UUID_da963f89-5cc4-4924-a6cd-6d552c4cd728"]},"UUID_06f9a78e-2816-4609-aff5-fcc55b5e9c7f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2687391.985,1246120.266,604.87,2687404.735,1246137.518,620.905],"parents":["UUID_29802826-7cf9-4d37-8cf3-46551947d383"],"geometry":[{"type":"MultiSurface","boundaries":[[[3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101]],[[3086,3085,3102,3103]],[[3085,3084,3104,3102]],[[3084,3101,3105,3104]],[[3101,3100,3106,3105]],[[3100,3099,3107,3106]],[[3099,3098,3108,3107]],[[3098,3097,3109,3108]],[[3097,3096,3110,3109]],[[3095,3111,3110,3096]],[[3111,3095,3094,3112]],[[3094,3093,3113,3112]],[[3093,3092,3114,3113]],[[3092,3091,3115,3114]],[[3091,3090,3116,3115]],[[3090,3089,3117,3116]],[[3089,3088,3118,3117]],[[3088,3087,3119,3118]],[[3087,3086,3103,3119]],[[3120,3121,3122,3123]],[[3124,3125,3126,3116,3117,3122,3121,3127,3111,3128]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_c257957c-f1dd-4dc7-8b0d-9ee50a6f6305":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684324.343,1246585.597,443.371,2684326.109,1246587.451,444.776],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[3129,3130,3131]],[[3130,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3131]],[[3132,3148,3133]],[[3149,3141,3140,3150]],[[3151,3142,3141,3149]],[[3152,3143,3142,3151]],[[3153,3144,3143,3152]],[[3153,3154,3145,3144]],[[3154,3155,3146,3145]],[[3155,3156,3147,3146]],[[3156,3129,3131,3147]],[[3157,3134,3133,3148]],[[3158,3135,3134,3157]],[[3159,3136,3135,3158]],[[3160,3137,3136,3159]],[[3161,3138,3137,3160]],[[3162,3139,3138,3161]],[[3150,3140,3139,3162]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_7e400037-6c9f-4ec4-9833-afdabfc5043b":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682547.122,1251802.165,456.945,2682549.801,1251805.025,457.552],"parents":["UUID_44dcb74c-c74c-4c18-9747-e4adf5adb872"],"geometry":[{"type":"MultiSurface","boundaries":[[[3163,3164,3165,3166]],[[3167,3168,3164,3163]],[[3169,3170,3168,3167]],[[3166,3165,3170,3169]],[[3168,3170,3165,3164]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_862dedae-0a64-4b6b-81cf-d2c5efa8a2d9":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2679951.083,1248719.419,420.332,2679951.845,1248720.144,422.311],"parents":["UUID_0f6c77bc-8464-49e1-8dd0-433a11ba5429"],"geometry":[{"type":"MultiSurface","boundaries":[[[3171,3172,3173,3174]],[[3175,3176,3172,3171]],[[3175,3177,3178,3176]],[[3177,3174,3173,3178]],[[3172,3176,3178,3173]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_a8c8e763-dfa5-4151-93ef-c51aed1cd54b":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684300.843,1248705.246,556.03,2684302.308,1248706.633,557.127],"parents":["UUID_9194ef74-d111-4fce-b364-3fc7c62402d5"],"geometry":[{"type":"MultiSurface","boundaries":[[[3179,3180,3181,3182]],[[3183,3184,3180,3179]],[[3185,3186,3184,3183]],[[3185,3182,3181,3186]],[[3184,3186,3181,3180]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_3d17c044-55ac-4a43-a694-d7a59a230342":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682575.002,1248532.616,425.65,2682577.614,1248535.222,427.05],"parents":["UUID_3cc2b88f-802c-4388-9e23-78e0e741c474"],"geometry":[{"type":"MultiSurface","boundaries":[[[3187,3188,3189,3190]],[[3191,3192,3188,3187]],[[3193,3194,3192,3191]],[[3190,3189,3194,3193]],[[3188,3192,3194,3189]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_1cb08835-42f4-4f74-9cfa-ae069992b8d2":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2684515.96,1250874.973,454.054,2684530.368,1250886.323,460.0],"parents":["UUID_e8344666-a15d-47ea-bbd6-e1261eb16af7"],"geometry":[{"type":"MultiSurface","boundaries":[[[3195,3196,3197,3198,3199,3200,3201,3202]],[[3202,3201,3203,3204]],[[3204,3203,3205,3206]],[[3206,3205,3207,3208]],[[3208,3207,3209,3210,3211,3212,3213,3214,3215,3216]],[[3213,3212,3217,3218]],[[3218,3217,3219,3220]],[[3220,3219,3198,3197]],[[3203,3201,3199,3198,3219,3217,3212,3211,3207,3205]],[[3220,3197,3196,3195,3202,3204,3206,3208,3216,3215,3214,3213,3218]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"GroundSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_44c49cdb-a5ab-44e4-bfa5-2978a625d872":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2680247.236,1248156.291,420.392,2680248.227,1248157.278,421.604],"parents":["UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0"],"geometry":[{"type":"MultiSurface","boundaries":[[[3221,3222,3223,3224]],[[3225,3226,3222,3221]],[[3227,3228,3226,3225]],[[3224,3223,3228,3227]],[[3226,3228,3223,3222]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_13135116-cb9d-48de-8f62-293927ec9e0e":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2680434.721,1250720.107,486.284,2680461.707,1250746.7,500.658],"parents":["UUID_133abec6-0057-4789-bd9c-b80c8b477da0"],"geometry":[{"type":"MultiSurface","boundaries":[[[3229,3230,3231,3232,3233,3234,3235,3236,3237]],[[3238,3239,3235,3240]],[[3235,3241,3242,3240]],[[3243,3244,3245,3246]],[[3238,3247,3246,3248,3239]],[[3247,3238,3249,3250]],[[3250,3249,3242,3251]],[[3241,3252,3253,3251]],[[3253,3254,3255,3256]],[[3256,3255,3257,3258]],[[3258,3257,3259,3260]],[[3260,3259,3261,3262]],[[3230,3229,3263,3262]],[[3229,3237,3264,3263]],[[3265,3266,3264,3237,3267]],[[3266,3265,3244,3243]],[[3265,3267,3236,3268]],[[3236,3248,3245,3268]],[[3252,3234,3269,3254]],[[3234,3233,3270,3269]],[[3233,3232,3271,3270]],[[3232,3272,3273,3271]],[[3272,3231,3274,3273]],[[3231,3230,3261,3274]],[[3249,3238,3240,3242]],[[3266,3243,3246,3247,3250,3251,3253,3256,3258,3260,3262,3263,3264]],[[3265,3268,3245,3244]],[[3275,3276,3277,3261,3259,3257,3255,3254,3278,3279,3273,3274]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_911f0603-2c4d-415f-b0ef-2203521c1571":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-16","Region":4,"GebaeudeStatus":1},"geographicalExtent":[2683926.714,1248477.282,493.773,2683944.005,1248494.579,514.706],"children":["UUID_f544d475-2950-4843-8102-6f45401c6714","UUID_4941ae6c-bac8-4520-a416-4bb48b889e29","UUID_2c1fe1af-0627-4127-98c7-7ef4eb3310f2","UUID_6891bc95-7cd5-432f-93f2-a2424dadb6b1","UUID_064d890c-6bf9-4a58-80b8-13bf3cb0f4ea","UUID_5001323d-93d7-4a6e-af6d-380641a0cea2","UUID_12568183-2080-4683-ba1c-02a88e41c098","UUID_78b32fb9-0400-4aa7-a264-edb21f2e5398","UUID_c9e68bc9-7e28-4d2d-9175-56f44aacbdbf"]},"UUID_fcc74528-8be9-40b2-9e0b-50b7d124706f":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-28","Region":9,"GebaeudeStatus":1},"geographicalExtent":[2681492.841,1247290.828,411.501,2681510.139,1247307.933,433.322],"children":["UUID_4f2a6fa6-ad34-48df-a9db-18af2f27c722"]},"UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-19","Region":6,"GebaeudeStatus":1},"geographicalExtent":[2684570.569,1246307.802,427.998,2684588.664,1246331.424,452.814],"children":["UUID_5911e8d0-2949-4c11-813b-9d7d068d827b","UUID_809c08c8-2739-4ffb-81c7-b94a58165f10","UUID_dac19f63-e31c-4546-81bb-1eb4c1dcaf60","UUID_f250cf3b-454e-4911-916d-98be59f30378","UUID_64efac00-00cd-455d-a8ac-9602bd232330","UUID_07622d49-093f-4001-b30b-1aa86dcbdb3b","UUID_ca2fbaa5-f962-4bdd-b1dc-0eb43e014a06","UUID_a0efba77-ccc0-4c21-a731-0e8f271230ae","UUID_95eed0ad-5544-4f61-bb4e-1fbc6c9b9126"]},"UUID_d0c1b77f-675f-4fb2-a7b7-79036f819a8d":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682591.658,1248538.126,428.45,2682594.735,1248541.238,429.383],"parents":["UUID_3cc2b88f-802c-4388-9e23-78e0e741c474"],"geometry":[{"type":"MultiSurface","boundaries":[[[3280,3281,3282,3283]],[[3284,3285,3281,3280]],[[3286,3287,3285,3284]],[[3283,3282,3287,3286]],[[3282,3281,3285,3287]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_3c3eba56-1cdb-474c-9663-718c3c0b8faf":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2680244.036,1248153.528,420.392,2680245.824,1248155.335,420.813],"parents":["UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0"],"geometry":[{"type":"MultiSurface","boundaries":[[[3288,3289,3290,3291]],[[3292,3293,3289,3288]],[[3294,3295,3293,3292]],[[3291,3290,3295,3294]],[[3296,3293,3295]],[[3296,3289,3293]],[[3296,3290,3289]],[[3296,3295,3290]]],"semantics":{"values":[0,1,2,3,4,5,6,7],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_37f3b52f-e267-4fd8-b344-ea8343643647":{"type":"Building","attributes":{"creationDate":"2017-01-30","class":"BB05","Herkunft":"NF_LB_2015","QualitaetStatus":1,"Region":10,"FileCreationDate":"2017-01-16","GebaeudeStatus":1},"geographicalExtent":[2681739.874,1243906.82,426.506,2681768.04,1243916.002,441.739],"children":["UUID_506bcdde-bfff-416e-a296-9be9ff70801e"]},"UUID_6a50e7cd-04a6-44c4-8dd1-d52ab6d0c3a5":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2684010.039,1251296.329,440.845,2684022.16,1251310.966,459.337],"parents":["UUID_2d11a43e-b755-4d8b-a83d-539bab78490e"],"geometry":[{"type":"MultiSurface","boundaries":[[[3297,3298,3299,3300]],[[3301,3302,3303,3304]],[[3305,3306,3307,3308]],[[3306,3301,3304,3307]],[[3309,3310,3311,3312]],[[3310,3305,3308,3311]],[[3313,3314,3315]],[[3316,3317,3318,3314]],[[3317,3319,3320,3318]],[[3319,3321,3322,3320]],[[3323,3324,3325,3326]],[[3326,3327,3328,3322]],[[3325,3312,3329]],[[3315,3328,3330,3331,3332,3333,3313]],[[3334,3335,3330,3328]],[[3336,3334,3328,3327,3337]],[[3338,3336,3337,3329]],[[3339,3338,3329,3312]],[[3320,3340,3315,3314,3318]],[[3325,3329,3337,3327,3326]],[[3297,3302,3301,3306,3305,3310,3309,3324,3323,3321,3319,3317,3316,3341,3298]],[[3321,3323,3326,3322]],[[3309,3312,3325,3324]],[[3298,3341,3342,3299]],[[3341,3316,3313,3342]],[[3302,3297,3300,3303]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"}]},"lod":"2"}]},"UUID_fc2e9617-555a-45ad-a020-d4e721e2a2c2":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683154.114,1249809.375,486.934,2683160.082,1249811.189,488.626],"parents":["UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e"],"geometry":[{"type":"MultiSurface","boundaries":[[[3343,3344,3345,3346]],[[3343,3347,3344]],[[3348,3346,3345]],[[3348,3345,3344,3347]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_2de0fb0c-7707-4ca9-ab9f-87434f2d06d9":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682065.231,1246042.718,432.496,2682066.783,1246044.756,435.088],"parents":["UUID_7ff7364e-5164-476a-a722-701955a3a37f"],"geometry":[{"type":"MultiSurface","boundaries":[[[3349,3350,3351]],[[3349,3351,3352,3353]],[[3354,3353,3352]],[[3351,3350,3355,3356,3357]],[[3356,3358,3354,3352,3357]],[[3352,3351,3357]]],"semantics":{"values":[0,1,2,3,4,5],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_68e41ae6-0f82-4bc3-a20c-125b93c0eac4":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-04-10","Region":7,"GebaeudeStatus":1},"geographicalExtent":[2679101.239,1249375.105,395.786,2679111.733,1249389.311,409.04],"children":["UUID_49871a1e-8f11-432e-8a42-6fe31ff0f80b","UUID_ca11039d-995f-40c6-b429-ce46c1560b48","UUID_cadcdc56-6326-4d2a-97da-9efab40fa1d6"]},"UUID_077e49ca-1e03-44ef-bb3c-cd2168d06cf1":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683660.774,1246835.119,425.411,2683662.836,1246837.26,428.572],"parents":["UUID_942e02c4-45cc-4d51-bdde-625df1c81410"],"geometry":[{"type":"MultiSurface","boundaries":[[[3359,3360,3361,3362]],[[3360,3363,3364,3361]],[[3365,3366,3364,3363]],[[3359,3362,3366,3365]],[[3361,3364,3366,3362]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_82a5e20d-91d3-418c-bde7-472d6c5238d0":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2680230.637,1248140.879,408.0,2680258.314,1248168.992,420.392],"parents":["UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0"],"geometry":[{"type":"MultiSurface","boundaries":[[[3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386]],[[3375,3387,3388,3389]],[[3387,3374,3390,3388]],[[3374,3373,3391,3390]],[[3373,3372,3392,3391]],[[3372,3371,3393,3392]],[[3371,3370,3394,3393]],[[3370,3369,3395,3394]],[[3369,3368,3396,3395]],[[3368,3367,3397,3396]],[[3398,3399,3397,3367]],[[3399,3398,3386,3400]],[[3386,3385,3401,3400]],[[3385,3402,3403,3401]],[[3402,3384,3404,3403]],[[3384,3383,3405,3404]],[[3383,3382,3406,3405]],[[3382,3381,3407,3406]],[[3381,3380,3408,3407]],[[3380,3379,3409,3408]],[[3379,3378,3410,3409]],[[3378,3377,3411,3410]],[[3377,3412,3413,3411]],[[3412,3376,3414,3413]],[[3376,3375,3389,3414]],[[3389,3388,3415,3416,3391,3392,3417,3418,3395,3396,3419,3420,3399,3400,3401,3403,3421,3422,3405,3406,3423,3424,3409,3410,3425,3426,3413,3414]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_60ae78b4-7632-49ca-89ed-3d1616d5eb80":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2685107.632,1247529.088,512.423,2685111.247,1247532.64,514.965],"parents":["UUID_583c776f-5b0c-4d42-9c37-5b94e0c21a30"],"geometry":[{"type":"MultiSurface","boundaries":[[[3427,3428,3429]],[[3430,3431,3429,3428]],[[3430,3432,3431]],[[3427,3429,3431,3432]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_d546b721-51bf-4da3-8a04-10bc885c75e5":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2682566.825,1248514.331,402.37,2682610.649,1248557.833,428.45],"parents":["UUID_3cc2b88f-802c-4388-9e23-78e0e741c474"],"geometry":[{"type":"MultiSurface","boundaries":[[[3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445]],[[3446,3447,3448,3449]],[[3450,3451,3447,3446]],[[3450,3452,3453,3451]],[[3454,3455,3456,3457]],[[3458,3459,3460,3461]],[[3462,3455,3463,3464,3459]],[[3465,3466,3463,3454]],[[3448,3453,3467,3466,3465,3449]],[[3460,3464,3467,3452]],[[3445,3468,3469,3433]],[[3444,3470,3468,3445]],[[3443,3471,3470,3444]],[[3442,3472,3471,3443]],[[3441,3473,3472,3442]],[[3440,3474,3473,3441]],[[3439,3475,3474,3440]],[[3433,3469,3476,3434]],[[3434,3476,3477,3435]],[[3435,3477,3478,3436]],[[3436,3478,3479,3437]],[[3437,3479,3480,3438]],[[3438,3480,3475,3439]],[[3481,3482,3483,3484]],[[3457,3485,3482,3481]],[[3486,3485,3456]],[[3486,3458,3487]],[[3484,3483,3487,3461]],[[3451,3453,3448,3447]],[[3486,3456,3455,3462]],[[3462,3459,3458,3486]],[[3466,3467,3464,3463]],[[3476,3469,3468,3470,3471,3472,3473,3474,3475,3480,3479,3478,3477],[3449,3465,3454,3457,3481,3484,3461,3460,3452,3450,3446]],[[3485,3487,3483,3482]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_92eedd6b-7156-447a-975a-8f08c8b3406f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683121.735,1252818.448,470.969,2683124.775,1252821.083,472.058],"parents":["UUID_b29ed28d-c905-4911-83a5-cc59d676d716"],"geometry":[{"type":"MultiSurface","boundaries":[[[3488,3489,3490,3491]],[[3492,3493,3489,3488]],[[3494,3495,3493,3492]],[[3491,3490,3495,3494]],[[3489,3493,3495,3490]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_601e5813-30d5-48f0-9649-cb0ff3d722dc":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-02-23","Region":2,"GebaeudeStatus":1},"geographicalExtent":[2678666.167,1250884.422,400.996,2678682.908,1250906.574,421.24],"children":["UUID_8240267f-eccd-4400-ae0c-6f5380e52db0"]},"UUID_f497b237-766b-4872-ba41-f7cde715d91f":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2682590.429,1248545.496,425.65,2682592.194,1248547.205,426.117],"parents":["UUID_3cc2b88f-802c-4388-9e23-78e0e741c474"],"geometry":[{"type":"MultiSurface","boundaries":[[[3496,3497,3498,3499]],[[3500,3501,3497,3496]],[[3502,3503,3501,3500]],[[3499,3498,3503,3502]],[[3497,3501,3503,3498]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_9cb7ad55-f016-4a9a-8868-c760a4fb9be5":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683160.89,1249808.175,488.487,2683163.685,1249809.436,489.76],"parents":["UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e"],"geometry":[{"type":"MultiSurface","boundaries":[[[3504,3505,3506,3507]],[[3504,3508,3505]],[[3509,3507,3506]],[[3508,3509,3506,3505]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_fe19b524-c55d-4aeb-933f-4cee7dbad15e":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2680257.752,1247104.403,427.526,2680274.194,1247117.969,458.884],"parents":["UUID_e54b7be9-34d7-4001-98c6-22c27fc6f8b9"],"geometry":[{"type":"MultiSurface","boundaries":[[[3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538]],[[3536,3539,3540,3541]],[[3539,3535,3542,3540]],[[3535,3534,3543,3542]],[[3544,3543,3534,3533,3545]],[[3533,3532,3546,3545]],[[3532,3531,3547,3546]],[[3531,3530,3548,3547]],[[3530,3529,3549,3548]],[[3529,3528,3550,3549]],[[3528,3527,3551,3550]],[[3527,3526,3552,3551]],[[3526,3525,3553,3552]],[[3525,3524,3554,3553]],[[3524,3523,3555,3554]],[[3523,3522,3556,3555]],[[3522,3521,3557,3556]],[[3521,3520,3558,3557]],[[3520,3559,3560,3558]],[[3559,3519,3561,3560]],[[3519,3518,3562,3561]],[[3518,3517,3563,3562]],[[3517,3516,3564,3563]],[[3516,3515,3565,3564]],[[3515,3514,3566,3565]],[[3514,3567,3568,3566]],[[3567,3513,3569,3568]],[[3513,3512,3570,3569]],[[3512,3511,3571,3570]],[[3511,3510,3572,3571]],[[3510,3538,3573,3572]],[[3538,3537,3574,3573]],[[3537,3536,3541,3574]],[[3575,3576,3577,3578]],[[3543,3544,3579,3580,3581]],[[3582,3578,3577,3583]],[[3582,3583,3584,3585]],[[3585,3584,3579,3544]],[[3576,3586,3587,3588]],[[3589,3587,3590,3591]],[[3588,3589,3581,3580]],[[3591,3590,3592,3593]],[[3593,3592,3586,3575]],[[3562,3563,3568,3569,3570,3571,3572,3573,3574,3541,3540,3594,3546,3549,3550,3551,3552,3553,3554,3555,3560,3561],[3581,3589,3591,3593,3575,3578,3582,3585,3544]],[[3580,3579,3577,3576]],[[3577,3579,3584,3583]],[[3586,3592,3590,3587]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_78b32fb9-0400-4aa7-a264-edb21f2e5398":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683933.989,1248492.726,510.825,2683936.022,1248494.362,513.54],"parents":["UUID_911f0603-2c4d-415f-b0ef-2203521c1571"],"geometry":[{"type":"MultiSurface","boundaries":[[[3595,3596,3597]],[[3598,3599,3600]],[[3599,3595,3597,3600]],[[3596,3598,3600,3597]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_7ac1410e-058c-44a7-83d3-261cc5f86d8b":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684325.286,1246608.249,443.513,2684327.036,1246609.946,444.8],"parents":["UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb"],"geometry":[{"type":"MultiSurface","boundaries":[[[3601,3602,3603]],[[3602,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3603]],[[3604,3620,3605]],[[3621,3613,3612,3622]],[[3623,3614,3613,3621]],[[3624,3615,3614,3623]],[[3625,3616,3615,3624]],[[3625,3626,3617,3616]],[[3626,3627,3618,3617]],[[3627,3628,3619,3618]],[[3628,3601,3603,3619]],[[3629,3606,3605,3620]],[[3630,3607,3606,3629]],[[3631,3608,3607,3630]],[[3632,3609,3608,3631]],[[3633,3610,3609,3632]],[[3634,3611,3610,3633]],[[3622,3612,3611,3634]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_bc41c673-1857-468f-ab59-7189d1a4f3a7":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2684293.824,1248702.295,556.03,2684295.289,1248703.682,557.127],"parents":["UUID_9194ef74-d111-4fce-b364-3fc7c62402d5"],"geometry":[{"type":"MultiSurface","boundaries":[[[3635,3636,3637,3638]],[[3639,3640,3636,3635]],[[3641,3642,3640,3639]],[[3641,3638,3637,3642]],[[3640,3642,3637,3636]]],"semantics":{"values":[0,1,2,3,4],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_97dec70c-f60b-4380-adb1-73cd1e1bb165":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":2},"geographicalExtent":[2683555.408,1248587.057,475.055,2683557.245,1248588.795,477.724],"parents":["UUID_2e5320be-a782-4517-bd0e-ab2cc2407649"],"geometry":[{"type":"MultiSurface","boundaries":[[[3643,3644,3645,3646]],[[3643,3647,3648,3644]],[[3646,3645,3649,3650]],[[3649,3645,3644,3648]]],"semantics":{"values":[0,1,2,3],"surfaces":[{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_942e02c4-45cc-4d51-bdde-625df1c81410":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-22","Region":8,"GebaeudeStatus":1},"geographicalExtent":[2683654.839,1246823.101,406.041,2683674.144,1246842.766,429.463],"children":["UUID_dd1a3dae-6731-4f1e-9605-0a03f4a31b72","UUID_c10d6310-5173-4ff7-81be-182e3a03f3b0","UUID_2946b6dd-ee5c-4293-87f6-4b0d6b722c44","UUID_1668915a-d927-40c9-b1d0-4383f4be204e","UUID_5bc0c349-da6e-4caa-aea4-7f4e286416af","UUID_077e49ca-1e03-44ef-bb3c-cd2168d06cf1","UUID_c1ae0895-722f-4328-8861-ea8c6680f92f","UUID_25548ad4-89b7-4bd7-9ab7-fcc74a245b91","UUID_24e51931-afcd-4f75-bb5f-cb3310e7be89"]},"UUID_ca11039d-995f-40c6-b429-ce46c1560b48":{"type":"BuildingPart","attributes":{"creationDate":"2017-01-23","Geomtype":1},"geographicalExtent":[2679101.239,1249375.105,395.786,2679111.733,1249389.311,408.783],"parents":["UUID_68e41ae6-0f82-4bc3-a20c-125b93c0eac4"],"geometry":[{"type":"MultiSurface","boundaries":[[[3651,3652,3653,3654]],[[3655,639,3656,3657]],[[3658,3659,3660,3657]],[[3659,3654,3661,3660]],[[3654,3653,3662,3661]],[[3653,3663,3664,3662]],[[3663,3665,3655,3664]],[[3651,3658,3656,3666]],[[3665,3652,3667,639]],[[3652,3651,3666,3667]],[[3664,3660,3668,3669]],[[3655,3657,3660,3664]],[[639,3667,3666,3656]]],"semantics":{"values":[0,1,2,3,4,5,6,7,8,9,10,11,12],"surfaces":[{"type":"GroundSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"WallSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"},{"type":"RoofSurface"}]},"lod":"2"}]},"UUID_2e5320be-a782-4517-bd0e-ab2cc2407649":{"type":"Building","attributes":{"creationDate":"2017-01-23","class":"BB01","Herkunft":"EE_LB_2007","QualitaetStatus":1,"FileCreationDate":"2012-03-16","Region":4,"GebaeudeStatus":1},"geographicalExtent":[2683538.794,1248584.096,457.682,2683560.797,1248599.835,481.056],"children":["UUID_a6f5f953-b380-473f-895d-6efa88199c5c","UUID_e6833be8-1ded-4fe5-9cf0-bac095165038","UUID_35730751-f3a1-4736-b72c-2ee93a87de37","UUID_afc9afd9-f57d-4d69-ba56-3f7ad6066bd0","UUID_87ae3482-ac74-4e9d-8da6-ac2f0ae2e396","UUID_3b4f2683-65a3-458d-891b-86bb02cf803f","UUID_97dec70c-f60b-4380-adb1-73cd1e1bb165","UUID_311e0eac-ff2f-4bc7-a0a9-9eebb00f0746","UUID_85f5d0e7-6bf0-438f-a609-7b928f7a23e8","UUID_17773eca-757d-4b36-ad0d-c087084d14fd"]}},"vertices":[[7456404,4485477,448781],[7456055,4485278,448126],[7456055,4485278,448781],[7456765,4484033,448126],[7456765,4484033,448776],[7456751,4484059,448913],[7456723,4484107,449041],[7456685,4484175,449156],[7456634,4484261,449255],[7456578,4484362,449332],[7456513,4484474,449385],[7456445,4484593,449412],[7456376,4484714,449413],[7456308,4484833,449386],[7456243,4484945,449334],[7456186,4485047,449258],[7456137,4485134,449160],[7456097,4485202,449045],[7456069,4485251,448917],[7457112,4484232,448776],[7457063,4485107,449413],[7457132,4484986,449412],[7456981,4485218,449386],[7456890,4485315,449334],[7456791,4485393,449258],[7456688,4485450,449160],[7456589,4485484,449045],[7456492,4485493,448917],[7457171,4484299,448913],[7457212,4484386,449041],[7457234,4484489,449156],[7457237,4484606,449255],[7457222,4484729,449332],[7457186,4484858,449385],[5615140,6570864,403000],[5601104,6582335,403000],[5605469,6587624,403000],[5609839,6592920,403000],[5616845,6587241,403000],[5623858,6581526,403000],[5619526,6576229,403000],[5616845,6587241,419341],[5623858,6581526,419355],[5609839,6592920,419340],[5605469,6587624,423456],[5601104,6582335,419334],[5615140,6570864,419289],[5619526,6576229,423456],[5613850,6580829,423455],[5611246,6577584,420954],[5611246,6577584,423185],[5613180,6576033,420961],[5613180,6576033,423187],[5615776,6579271,423456],[5604964,6588032,423456],[5600233,6582194,418938],[5615402,6569899,418938],[5620104,6575762,423456],[5615259,6579688,423456],[5624820,6581641,418938],[5609711,6593888,418938],[7730563,9760337,427981],[7730240,9764922,427981],[7732581,9765087,427981],[7732904,9760498,427981],[7730563,9760337,431981],[7730240,9764922,431981],[7732904,9760498,431981],[7732581,9765087,431981],[6430195,6757013,475073],[6430611,6756418,477226],[6430195,6757013,476745],[6431902,6757318,477226],[6431487,6757913,475073],[6431487,6757913,476745],[4567703,8249570,444332],[4567617,8250068,444332],[4566810,8254782,444332],[4566007,8259469,444332],[4565878,8260227,444332],[4582172,8262868,444332],[4582220,8262581,444332],[4583944,8252364,444332],[4583674,8252318,444332],[4582757,8252160,444332],[4579262,8251559,444332],[4571578,8250237,444332],[4570671,8250081,444332],[4568171,8249651,444332],[4567825,8249591,444332],[4566810,8254782,461991],[4566007,8259469,457790],[4567617,8250068,457790],[4567703,8249570,456989],[4567825,8249591,456991],[4568171,8249651,456996],[4570671,8250081,457036],[4571578,8250237,457050],[4579262,8251559,457169],[4582757,8252160,457224],[4583674,8252318,457238],[4583944,8252364,456556],[4582220,8262581,456720],[4582172,8262868,456068],[4565878,8260227,456068],[4581875,8262041,457790],[4582780,8263454,454990],[4565796,8260702,454990],[4577669,8256542,461991],[4583399,8252626,457790],[4571797,8248957,454990],[4579483,8250202,454990],[4582983,8250769,454990],[4584788,8251062,454990],[4582757,8252160,454990],[4579262,8251559,454990],[4567915,8248327,454990],[4571578,8250237,454990],[4570671,8250081,454990],[4567703,8249570,454990],[6595162,7460509,508996],[6595225,7460347,508832],[6595401,7459900,507931],[6595401,7459900,508996],[6598157,7460983,507931],[6598157,7460983,508996],[6597918,7461592,508996],[6597981,7461430,508832],[6596129,7462097,510057],[6596328,7461591,510057],[10283317,4296120,616710],[10283317,4296120,616177],[10280787,4295300,616200],[10280787,4295300,616710],[10282052,4295711,617405],[10280973,4294722,616710],[10283513,4295515,616710],[10282500,4294327,617405],[8588932,4173993,485878],[8581123,4177393,485878],[8584319,4184649,485878],[8585126,4184295,485878],[8585356,4185099,485878],[8586225,4188136,485878],[8589320,4189052,485878],[8591697,4184975,485878],[8590401,4182876,485878],[8589962,4182168,485878],[8592131,4181215,485878],[8590516,4177570,485878],[8590401,4182876,496701],[8590401,4182876,494401],[8585356,4185099,494401],[8585356,4185099,496701],[8585126,4184295,497084],[8584319,4184649,497085],[8581123,4177393,497085],[8588932,4173993,497122],[8590516,4177570,501046],[8592131,4181215,497085],[8589962,4182168,497085],[8591697,4184975,494401],[8589320,4189052,494401],[8586225,4188136,494401],[8588916,4173959,497085],[8580154,4177002,496701],[8588614,4173275,496701],[8583987,4185702,496701],[8586325,4179417,501046],[8592469,4181965,496701],[8591160,4182541,494401],[8592334,4184608,494401],[8589549,4190087,494401],[8585478,4188568,494401],[8584581,4185440,494401],[7202220,4751626,444167],[7201825,4750968,443517],[7201825,4750968,444167],[7203030,4750247,443493],[7203030,4750247,444167],[7203004,4750263,444298],[7202956,4750291,444422],[7202890,4750331,444532],[7202805,4750381,444626],[7202708,4750440,444700],[7202600,4750504,444750],[7202487,4750573,444776],[7202370,4750641,444776],[7202256,4750710,444750],[7202149,4750775,444700],[7202050,4750833,444626],[7201967,4750883,444532],[7201899,4750924,444422],[7201853,4750952,444298],[7203438,4750929,444167],[7203140,4751928,444776],[7203257,4751860,444776],[7203009,4751968,444750],[7202868,4751979,444700],[7202725,4751961,444626],[7202583,4751914,444532],[7202449,4751841,444422],[7202325,4751744,444298],[7203492,4751077,444298],[7203518,4751229,444422],[7203518,4751381,444532],[7203490,4751524,444626],[7203436,4751655,444700],[7203356,4751768,444750],[2850007,6876336,402743],[2844151,6868094,402743],[2831723,6876962,402743],[2837558,6885168,402743],[2831836,6876880,402743],[2831836,6876880,420208],[2831723,6876962,420057],[2844151,6868094,420146],[2847012,6872120,424113],[2847012,6872120,402743],[2850007,6876336,419955],[2837558,6885168,419924],[2837435,6884994,402743],[2837435,6884994,420095],[2837609,6878756,424113],[2850233,6876653,419641],[2837416,6885699,419641],[2830998,6876607,419641],[2843788,6867581,419641],[2846830,6872832,423730],[2846554,6872444,424113],[2846449,6872297,423968],[2846449,6872297,424761],[2846830,6872832,424761],[2846905,6871970,423965],[2846905,6871970,424761],[2847287,6872505,423734],[2847287,6872505,424761],[6020129,1796226,418380],[6019151,1798199,418380],[6019151,1798199,419329],[6020129,1796226,419329],[6017248,1797164,418380],[6017248,1797164,419329],[6018254,1795205,418380],[6018254,1795205,419329],[7199898,4755987,421992],[7199825,4755874,421992],[7199825,4755874,444718],[7199898,4755987,444675],[7199626,4755849,421992],[7199626,4755849,444712],[7199432,4755806,421992],[7199432,4755806,444714],[7199240,4755746,421992],[7199240,4755746,444723],[7199055,4755668,421992],[7199055,4755668,444741],[7198879,4755576,421992],[7198879,4755576,444731],[7198709,4755469,421992],[7198709,4755469,444729],[7198552,4755346,421992],[7198552,4755346,444734],[7198404,4755210,421992],[7198404,4755210,444748],[7198375,4755178,421992],[7198375,4755178,444753],[7198270,4755062,421992],[7198270,4755062,444742],[7198149,4754903,421992],[7198149,4754903,444737],[7198043,4754733,421992],[7198043,4754733,444740],[7197952,4754555,421992],[7197952,4754555,444750],[7197919,4754475,421992],[7197919,4754475,444758],[7197876,4754369,421992],[7197876,4754369,444749],[7197819,4754178,421992],[7197819,4754178,444740],[7197777,4753982,421992],[7197777,4753982,444739],[7197754,4753783,421992],[7197754,4753783,444746],[7197750,4753656,421992],[7197750,4753656,444755],[7197748,4753583,421992],[7197748,4753583,444748],[7197759,4753384,421992],[7197759,4753384,444735],[7197788,4753185,421992],[7197788,4753185,444731],[7197833,4752991,421992],[7197833,4752991,444734],[7197890,4752824,421992],[7197890,4752824,444744],[7197898,4752800,421992],[7197898,4752800,444741],[7197976,4752618,421992],[7197976,4752618,444725],[7198072,4752442,421992],[7198072,4752442,444717],[7198183,4752275,421992],[7198183,4752275,444717],[7198308,4752119,421992],[7198308,4752119,444725],[7198333,4752092,421992],[7198333,4752092,444728],[7198447,4751974,421992],[7198447,4751974,444712],[7198598,4751842,421992],[7198598,4751842,444700],[7198759,4751724,421992],[7198759,4751724,444696],[7198930,4751621,421992],[7198930,4751621,444700],[7199033,4751570,421992],[7199033,4751570,444707],[7199109,4751533,421992],[7199109,4751533,444698],[7199296,4751461,421992],[7199296,4751461,444682],[7199490,4751406,421992],[7199490,4751406,444675],[7199694,4751367,421992],[7199694,4751367,444675],[7199904,4751347,421992],[7199904,4751347,444684],[7200112,4751346,421992],[7200112,4751346,444666],[7200322,4751364,421992],[7200322,4751364,444657],[7200527,4751403,421992],[7200527,4751403,444656],[7200729,4751459,421992],[7200729,4751459,444664],[7200825,4751402,421992],[7200825,4751402,444631],[7200825,4751402,443415],[7201617,4751935,444141],[7201617,4751935,444631],[7201938,4752417,444631],[7201396,4755523,444631],[7200828,4755903,444050],[7200828,4755903,444631],[7207334,4768984,437068],[7206334,4769620,437068],[7204445,4766622,437068],[7205449,4765989,437068],[7216123,4755221,428841],[7220408,4752646,428841],[7227115,4763087,428841],[7221013,4767010,428841],[7220325,4765913,428841],[7221697,4765036,428841],[7215921,4755337,428841],[7213143,4750674,448063],[7205893,4754914,448133],[7201024,4753706,445196],[7201074,4753656,445179],[7201612,4752945,444883],[7199904,4751225,442897],[7199469,4751310,442777],[7209828,4745106,442567],[7215117,4753986,442783],[7213439,4755005,442754],[7214575,4764834,446329],[7216643,4767962,446242],[7214839,4769116,448053],[7214160,4756193,442767],[7209949,4758976,447035],[7213905,4765256,446999],[7219666,4766333,443343],[7219529,4766121,443346],[7218941,4766497,443937],[7213899,4758867,444150],[7215262,4758003,442785],[7215311,4758084,442786],[7216072,4757625,442034],[7221101,4765416,441902],[7221697,4765036,432698],[7221101,4765416,432698],[7218836,4761906,432698],[7219544,4761421,432698],[7213899,4758867,444657],[7218941,4766497,444657],[7216643,4767962,444657],[7214575,4764834,444657],[7213905,4765256,444657],[7209949,4758976,444657],[7214160,4756193,444657],[7215262,4758003,444657],[7215117,4753986,430126],[7219544,4761421,430126],[7218836,4761906,430126],[7216072,4757625,430126],[7215311,4758084,430126],[7213439,4755005,430126],[7209546,4772495,442712],[7199112,4755932,442807],[7199898,4756087,443298],[7201359,4755117,444790],[7201179,4754185,445087],[7203526,4762937,437068],[7202665,4763484,437068],[7200410,4759906,437068],[7201273,4759361,437068],[7199898,4756087,444631],[7199898,4753656,445692],[7198958,4755901,444631],[7198177,4755375,444631],[7197651,4754586,444631],[7197466,4753656,444631],[7197651,4752725,444631],[7198177,4751935,444631],[7198967,4751408,444631],[7199904,4751225,444631],[7210228,4745777,421992],[7206862,4747791,421992],[7206470,4747135,421992],[7203688,4748797,421992],[7204080,4749454,421992],[7199953,4756076,421992],[7202353,4759847,421992],[7201800,4760199,421992],[7201665,4760285,421992],[7203402,4763015,421992],[7203526,4762937,421992],[7204091,4762577,421992],[7206214,4765915,421992],[7205634,4766283,421992],[7205515,4766358,421992],[7207228,4769052,421992],[7207334,4768984,421992],[7207927,4768607,421992],[7210154,4772108,421992],[7214839,4769116,421992],[7216643,4767962,421992],[7218941,4766497,421992],[7219529,4766121,421992],[7219666,4766333,421992],[7220325,4765913,421992],[7221004,4766996,421992],[7222783,4765843,421992],[7226908,4763171,421992],[7226402,4762399,421992],[7223708,4758504,421992],[7222686,4759141,421992],[7221192,4756658,421992],[7220089,4756412,421992],[7217805,4757922,421992],[7216123,4755221,421992],[7215921,4755337,421992],[7215117,4753986,421992],[7213143,4750674,421992],[7207228,4769052,437068],[7205515,4766358,437068],[7205634,4766283,437068],[7221004,4766996,428841],[7222783,4765843,428841],[7217805,4757922,428841],[7220089,4756412,428841],[7221192,4756658,428841],[7222686,4759141,428841],[7223708,4758504,428841],[7226402,4762399,428841],[7226908,4763171,428841],[7204080,4749454,443351],[7203688,4748797,442702],[7206470,4747135,442649],[7206862,4747791,443296],[7210228,4745777,443230],[7214160,4756193,430126],[7212296,4757425,444657],[7220325,4765913,442683],[7215262,4758003,430126],[7221101,4765416,428841],[7219544,4761421,428841],[7215921,4755337,430126],[7210154,4772108,443324],[7207927,4768607,443329],[7207334,4768984,442732],[7205634,4766283,442748],[7206214,4765915,443332],[7204091,4762577,443336],[7203526,4762937,442767],[7201800,4760199,437068],[7201800,4760199,442782],[7202353,4759847,443339],[7199953,4756076,443344],[7203402,4763015,437068],[7201665,4760285,437068],[7199953,4756076,444631],[4952686,4212991,436411],[4952729,4212283,436972],[4952729,4212283,437917],[4952686,4212991,437917],[4953895,4212354,437030],[4953895,4212354,437917],[4953851,4213060,436470],[4953851,4213060,437917],[5618725,6585318,420745],[5618725,6585318,419526],[5617807,6586065,419525],[5617807,6586065,420745],[5618276,6585683,421107],[5616518,6584489,420745],[5617438,6583744,420745],[5616608,6583641,421107],[1986720,7542837,407274],[1986720,7542837,409040],[1987160,7543899,409040],[1987160,7543899,408086],[1987246,7542619,407274],[1987246,7542619,409040],[1987688,7543680,408086],[1987688,7543680,409040],[6823378,6649780,512373],[6823378,6649780,510825],[6822345,6651060,510825],[6822345,6651060,512373],[6822858,6650424,512840],[6821606,6650462,512373],[6822638,6649183,512373],[6821896,6649647,512840],[1893410,8991333,440451],[1893410,8991333,441987],[1894228,8990835,441987],[1894228,8990835,440451],[1892885,8990471,440451],[1892885,8990471,441987],[1893705,8989972,440451],[1893705,8989972,441987],[8470987,10279300,423898],[8466018,10282804,423898],[8467967,10285488,423898],[8467779,10285620,423898],[8468325,10286401,423898],[8468805,10287085,423898],[8468996,10286969,423898],[8471117,10289984,423898],[8476061,10286504,423898],[8475990,10286412,423898],[8474638,10284465,423898],[8473529,10282897,423898],[8467779,10285620,435107],[8468325,10286401,435630],[8467967,10285488,435105],[8466018,10282804,433288],[8470987,10279300,433217],[8473529,10282897,435630],[8474638,10284465,434404],[8475990,10286412,432891],[8476061,10286504,432816],[8471117,10289984,432737],[8468996,10286969,435090],[8468805,10287085,435097],[8465750,10282726,433170],[8470861,10279123,433097],[8470930,10290116,432734],[5615637,6587827,420745],[5615637,6587827,419523],[5614717,6588575,419522],[5614717,6588575,420745],[5615188,6588193,421107],[5613425,6586996,420745],[5614347,6586250,420745],[5613515,6586147,421107],[6547353,4984401,406041],[6547299,4984461,406041],[6544620,4987504,406041],[6541705,4990818,406041],[6539021,4993867,406041],[6538995,4993897,406041],[6548959,5002692,406041],[6549169,5002877,406041],[6549229,5002808,406041],[6556401,4994577,406041],[6557478,4993342,406041],[6554790,4990967,406041],[6554222,4997701,424068],[6552486,4996216,426380],[6554222,4997701,426380],[6556697,4994837,426380],[6556697,4994837,424068],[6555299,4993618,425946],[6556401,4994577,424467],[6553712,4992236,426380],[6553712,4992236,425932],[6554790,4990967,423973],[6555134,4990560,426380],[6555134,4990560,423344],[6551847,4987716,423336],[6551847,4987716,426380],[6550149,4989664,426380],[6544620,4987504,428704],[6541705,4990818,428704],[6555299,4993618,423764],[6556401,4994577,423764],[6549229,5002808,424510],[6549169,5002877,424510],[6548959,5002692,424793],[6554790,4990967,423764],[6557478,4993342,423764],[6538995,4993897,424800],[6539021,4993867,424837],[6547299,4984461,423929],[6547353,4984401,423834],[6553712,4992236,423764],[6554733,4993617,426380],[6548748,4997028,428704],[6551703,4993610,428704],[6548998,5003741,424068],[6557768,4993597,423764],[6556697,4994837,423764],[6538464,4994452,424068],[6547637,4984076,423325],[6048418,7961568,486958],[6048418,7961568,488826],[6045770,7961734,488826],[6045770,7961734,486963],[6048521,7963221,488826],[6045873,7963381,488826],[5606202,6578824,419624],[5606202,6578824,421016],[5604694,6580065,421016],[5604694,6580065,419632],[5607674,6580613,421016],[5606155,6581843,421016],[6044523,7961812,486966],[6044523,7961812,488826],[6041875,7961978,488826],[6041875,7961978,486972],[6044626,7963458,488826],[6041978,7963618,488826],[1984908,7538484,402098],[1984908,7538484,404219],[1985376,7539604,404528],[1985376,7539604,402098],[1985466,7538252,402098],[1985466,7538252,404219],[1986526,7538826,402098],[1986526,7538826,404219],[1986570,7539109,402098],[1986570,7539109,404219],[1985396,7539596,404528],[1985564,7539527,404492],[7465024,4469859,427998],[7464896,4469880,427998],[7462641,4473758,427998],[7462379,4474208,427998],[7462254,4474425,427998],[7454830,4487418,427998],[7454797,4487477,427998],[7457092,4489228,427998],[7457081,4489356,427998],[7460600,4492131,427998],[7462050,4490308,427998],[7466046,4485280,427998],[7467595,4483331,427998],[7466785,4482560,427998],[7466583,4482368,427998],[7468776,4479582,427998],[7468854,4479482,427998],[7469166,4479086,427998],[7471530,4476082,427998],[7471439,4475964,427998],[7471850,4475510,427998],[7466095,4469939,427998],[7465632,4470437,427998],[7462050,4490308,452009],[7466046,4485280,452009],[7468776,4479582,448113],[7468854,4479482,448113],[7466583,4482368,448113],[7466785,4482560,447664],[7467595,4483331,447838],[7464896,4469880,440895],[7462641,4473758,440895],[7465024,4469859,440895],[7465632,4470437,440895],[7466095,4469939,440895],[7471850,4475510,440895],[7471439,4475964,440895],[7471530,4476082,440895],[7469166,4479086,440895],[7462254,4474425,448126],[7454830,4487418,448126],[7462379,4474208,448129],[7462641,4473758,447302],[7469166,4479086,447302],[7460600,4492131,447903],[7457081,4489356,447903],[7457092,4489228,448092],[7454797,4487477,448010],[7457833,4486981,452009],[7463041,4477863,452009],[7465478,4479853,452009],[7463058,4482927,452009],[7469557,4479405,447302],[7467097,4482530,447302],[7467794,4483080,447302],[7469557,4479405,440895],[7462239,4473429,440895],[7464896,4468777,440895],[7472288,4475934,440895],[7454194,4487512,447302],[7462239,4473429,447302],[7460388,4492399,447302],[4383447,5452214,411501],[4376813,5460180,411501],[4386725,5468511,411501],[4393399,5460545,411501],[4393399,5460547,411501],[4393399,5460547,427308],[4390078,5457764,427308],[4390078,5457764,411501],[4393143,5460851,411501],[4393143,5460851,427308],[4389717,5457462,427308],[4389717,5457462,411501],[4387296,5467830,411501],[4386725,5468511,427308],[4387296,5467830,427308],[4376813,5460180,427308],[4377433,5459434,411501],[4377433,5459434,427308],[4389487,5457737,429620],[4389487,5457737,427308],[4393143,5460851,429620],[4390191,5464374,411501],[4390191,5464374,433322],[4380319,5455969,411501],[4383260,5452437,411501],[4383260,5452437,429620],[4380319,5455969,433322],[4383260,5452437,427308],[4386893,5455529,427308],[4386893,5455529,429620],[4383447,5452214,427308],[4387104,5455275,411501],[4387104,5455275,427308],[4387296,5467830,429620],[4377433,5459434,429620],[4387012,5460694,432726],[4389717,5457462,430542],[4384399,5458508,432749],[4387104,5455275,430564],[4386393,5468908,427308],[4376466,5460597,427308],[4383788,5451803,427308],[4387592,5454970,427308],[4387337,5455275,427308],[4387200,5455161,427308],[4390433,5457337,427308],[4393763,5460111,427308],[4387200,5455161,430487],[4389813,5457347,430464],[4901979,1749715,471983],[4902692,1745466,471983],[4902692,1745466,480287],[4901979,1749715,484467],[4910640,1746791,471983],[4910640,1746791,480287],[4908257,1756276,471983],[4905313,1755849,471983],[4905313,1755849,481619],[4908257,1756276,484467],[4905640,1754178,471983],[4905640,1754178,481666],[4901348,1753477,471983],[4901348,1753477,481656],[4910262,1748948,471983],[4910083,1749971,471983],[4910083,1749971,482433],[4910262,1748948,482411],[4905719,1745971,481883],[4905719,1745971,480287],[4910327,1746739,480287],[4910327,1746739,482234],[4908333,1746406,484467],[4905449,1747593,481883],[4909996,1748718,482234],[4905640,1754178,482730],[4903376,1753808,482726],[4904003,1750052,484467],[4909151,1750910,484467],[4909399,1753883,482522],[4908998,1751833,484467],[4909737,1751960,484467],[4908333,1746406,480287],[4907625,1750656,484467],[4901709,1749670,484467],[4902507,1744881,479757],[4910734,1746253,479757],[4903376,1753808,481660],[4905504,1754876,481142],[4900967,1754120,481142],[4910083,1749971,482434],[4908237,1756393,484467],[4905304,1755891,481618],[4909029,1756008,482567],[4908939,1756513,482579],[4908964,1756378,471983],[4909029,1756008,471983],[4909399,1753883,471983],[4908964,1756378,482576],[4909737,1751960,471983],[6053587,7961244,486947],[6053587,7961244,488826],[6049498,7961500,488826],[6049498,7961500,486955],[6053691,7962907,488826],[6049603,7963155,488826],[7463523,4479000,452009],[7463523,4479000,452462],[7462640,4480121,452462],[7462640,4480121,452009],[7464893,4480079,452009],[7464893,4480079,452462],[7464012,4481201,452009],[7464012,4481201,452462],[3121555,6309516,420392],[3121555,6309516,422078],[3123157,6307997,422078],[3123157,6307997,420392],[3120975,6308905,420392],[3120975,6308905,422078],[3122578,6307386,420392],[3122578,6307386,422078],[4783430,7761342,402889],[4781154,7762406,402889],[4765063,7770023,402889],[4768325,7776972,402889],[4768904,7776698,402889],[4768959,7776809,402889],[4769646,7778206,402889],[4770194,7777962,402889],[4770915,7779471,402889],[4771493,7779222,402889],[4772223,7780748,402889],[4772824,7780498,402889],[4773547,7782035,402889],[4774162,7781780,402889],[4774859,7783303,402889],[4775455,7783031,402889],[4776195,7784592,402889],[4776791,7784344,402889],[4779066,7789135,402889],[4793333,7782323,402889],[4791875,7779233,402889],[4785649,7766045,402889],[4785362,7765434,402889],[4768325,7776972,413634],[4768904,7776698,413634],[4765063,7770023,413634],[4781154,7762406,413634],[4783430,7761342,413634],[4785362,7765434,413634],[4785649,7766045,413634],[4791875,7779233,413634],[4793333,7782323,413634],[4779066,7789135,413634],[4776791,7784344,413634],[4776195,7784592,413634],[4775455,7783031,413634],[4768959,7776809,413634],[4769646,7778206,413634],[4770194,7777962,413634],[4770915,7779471,413634],[4771493,7779222,413634],[4772223,7780748,413634],[4772824,7780498,413634],[4773547,7782035,413634],[4774162,7781780,413634],[4774859,7783303,413634],[6594958,7471247,494245],[6590313,7469424,494245],[6590313,7469424,512818],[6594958,7471247,512818],[6591848,7465368,507580],[6591848,7465368,509240],[6591848,7465368,494245],[6592629,7465674,508832],[6593035,7465833,509240],[6594109,7459391,494245],[6594109,7459391,507354],[6594469,7459533,494245],[6594469,7459533,507931],[6599453,7461492,494245],[6599453,7461492,507931],[6599273,7461937,508832],[6599453,7461492,508832],[6600274,7461815,494245],[6600274,7461815,509740],[6604114,7463324,494245],[6604114,7463324,509740],[6598699,7472714,494245],[6596074,7471685,494245],[6596074,7471685,513941],[6598699,7472714,511191],[6604981,7463664,494245],[6604981,7463664,508832],[6604981,7463664,507930],[6604799,7464110,508832],[6605334,7463803,494245],[6605334,7463803,507930],[6605319,7463841,494245],[6605319,7463841,508007],[6605037,7464506,494245],[6605037,7464506,508030],[6605237,7464589,494245],[6605237,7464589,507561],[6608532,7465930,494245],[6608532,7465930,507561],[6608495,7466024,494245],[6608495,7466024,507783],[6606470,7471201,494245],[6606470,7471201,507927],[6606376,7471441,494245],[6606376,7471441,507380],[6605294,7470994,494245],[6605294,7470994,507393],[6604910,7470835,494245],[6604910,7470835,508834],[6601350,7466180,511191],[6604853,7467604,511191],[6606253,7470652,508832],[6605168,7470211,508832],[6600774,7465918,511807],[6597887,7467216,513941],[6594850,7460199,508832],[6604478,7464901,508832],[6607901,7466293,508832],[6603373,7474548,508847],[6589325,7469036,512818],[6590955,7465016,509240],[6590955,7465016,506148],[6593714,7458216,506148],[6599810,7460611,506148],[6599810,7460611,508832],[6601328,7464554,511807],[6605337,7462783,508832],[6606487,7463235,506148],[6605337,7462783,506148],[6606078,7464242,506148],[6609424,7465603,506148],[6606899,7472281,506148],[6603373,7474548,494245],[6605402,7471675,506142],[6604095,7474832,506153],[6939287,9959250,424623],[6938933,9963405,424623],[6943521,9963796,424623],[6943913,9959646,424623],[6938933,9963405,443136],[6943521,9963796,443136],[6939287,9959250,443136],[6943913,9959646,443136],[6821967,6651527,512373],[6821967,6651527,510825],[6820935,6652806,510825],[6820935,6652806,512373],[6821447,6652171,512840],[6820195,6652210,512373],[6821228,6650930,512373],[6820486,6651394,512840],[7457314,4488859,448844],[7456804,4489506,447390],[7456804,4489506,448844],[7455830,4488738,447390],[7455830,4488738,448844],[7455859,4488762,448974],[7455910,4488802,449092],[7455979,4488856,449194],[7456063,4488923,449275],[7456160,4488999,449330],[7456263,4489081,449359],[7456370,4489164,449359],[7456473,4489246,449330],[7456569,4489322,449275],[7456654,4489389,449194],[7456723,4489443,449092],[7456774,4489483,448974],[7456341,4488090,448844],[7456955,4488204,449359],[7457061,4488287,449359],[7457154,4488381,449330],[7457231,4488482,449275],[7457288,4488585,449194],[7457322,4488685,449092],[7457330,4488778,448974],[7456416,4488056,448974],[7456507,4488043,449092],[7456612,4488053,449194],[7456726,4488084,449275],[7456842,4488135,449330],[4958464,4202854,432496],[4958464,4202854,434381],[4956500,4202612,434381],[4956500,4202612,432496],[4958384,4203492,434381],[4956421,4203250,434381],[4957983,4203524,434617],[4957339,4203879,434971],[4957438,4203089,434971],[4956804,4203378,434617],[7216487,4762783,444126],[7216487,4762783,444041],[7215615,4761465,444077],[7215615,4761465,444094],[7215660,4761532,444184],[7215709,4761607,444263],[7215763,4761690,444331],[7215822,4761778,444388],[7215884,4761871,444431],[7215947,4761968,444462],[7216013,4762068,444478],[7216080,4762168,444481],[7216146,4762268,444469],[7216211,4762364,444444],[7216273,4762460,444405],[7216333,4762550,444353],[7216388,4762635,444288],[7216439,4762712,444213],[7216975,4760587,442708],[7216975,4760587,444094],[7217833,4761914,444126],[7217833,4761914,442686],[7217787,4761843,444213],[7217737,4761765,444288],[7217682,4761680,444353],[7217623,4761589,444405],[7217561,4761493,444444],[7217498,4761395,444469],[7217433,4761293,444481],[7217367,4761194,444478],[7217302,4761094,444462],[7217240,4760996,444431],[7217180,4760902,444388],[7217121,4760813,444331],[7217069,4760729,444263],[7217020,4760654,444184],[3048825,6796406,404000],[3040135,6803155,404000],[3048660,6814117,404000],[3052421,6818954,404000],[3059254,6813654,404000],[3061120,6812208,404000],[3061120,6812208,415871],[3048825,6796406,415871],[3059254,6813654,415871],[3052421,6818954,415871],[3048660,6814117,415871],[3040135,6803155,415871],[3062041,6812337,415871],[3052134,6820074,415871],[3038833,6803043,415871],[3048740,6795306,415871],[4570671,8250081,457790],[4568171,8249651,457790],[4571649,8250250,457051],[4571649,8250250,457790],[4571575,8250710,457790],[4568092,8250145,457790],[4569788,8250819,458990],[4569632,8251779,458990],[4785012,1695467,455280],[4782983,1697011,455280],[4786229,1701396,455280],[4788287,1699823,455280],[4788287,1699823,460916],[4785012,1695467,460909],[4786229,1701396,461273],[4782983,1697011,461261],[4785339,1702843,461492],[4781447,1697759,461492],[4786317,1694032,460646],[4790208,1699114,460646],[7991040,5681629,501000],[7987532,5685249,501000],[7987078,5684812,501000],[7986817,5684563,501000],[7985453,5685989,501000],[7985248,5685920,501000],[7985038,5685869,501000],[7984825,5685837,501000],[7984609,5685825,501000],[7984393,5685832,501000],[7984179,5685858,501000],[7983967,5685903,501000],[7983760,5685967,501000],[7983561,5686050,501000],[7983368,5686150,501000],[7983186,5686266,501000],[7983015,5686399,501000],[7982858,5686546,501000],[7982712,5686707,501000],[7982583,5686881,501000],[7982470,5687065,501000],[7982373,5687258,501000],[7982294,5687460,501000],[7982234,5687668,501000],[7982194,5687880,501000],[7982171,5688095,501000],[7982169,5688310,501000],[7982185,5688527,501000],[7982220,5688739,501000],[7982276,5688949,501000],[7982348,5689153,501000],[7981009,5690540,501000],[7981325,5690856,501000],[7981708,5691241,501000],[7978483,5694593,501000],[7982490,5698472,501000],[7983646,5699592,501000],[7986276,5702139,501000],[7986425,5702283,501000],[7991438,5697067,501000],[7991873,5697485,501000],[7992680,5698264,501000],[7996473,5694342,501000],[7995637,5693530,501000],[7995268,5693171,501000],[7998966,5689324,501000],[7994930,5685406,501000],[7985554,5692873,514754],[7983015,5690457,512162],[7983015,5690457,514173],[7986541,5686753,512162],[7986541,5686753,514173],[7989080,5689168,514754],[7995637,5693530,508060],[7996473,5694342,508060],[7992680,5698264,508060],[7991873,5697485,508060],[7995637,5693530,511459],[7991873,5697485,511459],[7991438,5697067,511904],[7986425,5702283,511929],[7986276,5702139,512082],[7983646,5699592,514783],[7982490,5698472,515969],[7978483,5694593,511842],[7981708,5691241,511861],[7981325,5690856,511459],[7981325,5690856,508418],[7987078,5684812,508418],[7987078,5684812,511459],[7987532,5685249,511926],[7991040,5681629,511958],[7994930,5685406,515969],[7998966,5689324,511820],[7995268,5693171,511839],[7981009,5690540,508418],[7982348,5689153,508418],[7982276,5688949,508418],[7982220,5688739,508418],[7982185,5688527,508418],[7982169,5688310,508418],[7982171,5688095,508418],[7982194,5687880,508418],[7982234,5687668,508418],[7982294,5687460,508418],[7982373,5687258,508418],[7982470,5687065,508418],[7982583,5686881,508418],[7982712,5686707,508418],[7982858,5686546,508418],[7983015,5686399,508418],[7983186,5686266,508418],[7983368,5686150,508418],[7983561,5686050,508418],[7983760,5685967,508418],[7983967,5685903,508418],[7984179,5685858,508418],[7984393,5685832,508418],[7984609,5685825,508418],[7984825,5685837,508418],[7985038,5685869,508418],[7985248,5685920,508418],[7985453,5685989,508418],[7986817,5684563,508418],[7991256,5698133,508060],[7997709,5691353,508060],[7998780,5692389,508060],[7992271,5699116,508060],[7977984,5694364,511459],[7990836,5680864,511459],[7995209,5685112,515969],[7982399,5698569,515969],[7999595,5689371,511459],[7986828,5702783,511459],[7983603,5685700,508418],[7984691,5685584,508418],[7985422,5685797,508418],[7987078,5684065,508418],[7987450,5684421,508418],[7981087,5691104,508418],[7980507,5690552,508418],[7982026,5688956,508418],[7981907,5687952,508418],[7982092,5687199,508418],[7982881,5686194,508418],[6426720,6746147,457682],[6426658,6746479,457682],[6426169,6749099,457682],[6425942,6749124,457682],[6425899,6749187,457682],[6423830,6752179,457682],[6423895,6752224,457682],[6430533,6756854,457682],[6431452,6757003,457682],[6431765,6757054,457682],[6431814,6757256,457682],[6431956,6757830,457682],[6432024,6757854,457682],[6435066,6758967,457682],[6435712,6759204,457682],[6435856,6759229,457682],[6436662,6759377,457682],[6441598,6760280,457682],[6442202,6756976,457682],[6441916,6756896,457682],[6442253,6755019,457682],[6442381,6754302,457682],[6442479,6753749,457682],[6442535,6753718,457682],[6443302,6753283,457682],[6443581,6753125,457682],[6443967,6751091,457682],[6443748,6750839,457682],[6443211,6750222,457682],[6443200,6750209,457682],[6442779,6750131,457682],[6442885,6749572,457682],[6442981,6749066,457682],[6435709,6747761,457682],[6433694,6747399,457682],[6430509,6746827,457682],[6428509,6746468,457682],[6440149,6758618,477747],[6440532,6756672,477725],[6440532,6756672,477900],[6440055,6759091,477900],[6440055,6759091,477226],[6441151,6756785,477226],[6442202,6756976,474665],[6442202,6756976,477432],[6441598,6760280,477419],[6433694,6747399,478761],[6430509,6746827,478761],[6428509,6746468,475957],[6435709,6747761,475957],[6442779,6750131,477702],[6442885,6749572,477226],[6443200,6750209,477703],[6443211,6750222,477713],[6443748,6750839,477226],[6443748,6750839,473365],[6443302,6753283,473365],[6443302,6753283,477226],[6442535,6753718,477742],[6443967,6751091,473365],[6443581,6753125,473365],[6442479,6753749,477704],[6442381,6754302,477226],[6441916,6756896,475372],[6442253,6755019,475388],[6436662,6759377,477370],[6436662,6759377,476794],[6436848,6758445,477226],[6436848,6758445,477900],[6435856,6759229,476788],[6435856,6759229,474613],[6435876,6759130,474665],[6436046,6758285,477226],[6435066,6758967,474665],[6435712,6759204,474611],[6432024,6757854,476125],[6431765,6757054,477226],[6431814,6757256,477226],[6431452,6757003,477226],[6426720,6746147,475957],[6426658,6746479,476789],[6431956,6757830,476071],[6423895,6752224,476047],[6430533,6756854,476031],[6423830,6752179,475804],[6425899,6749187,475740],[6425942,6749124,475860],[6426169,6749099,476668],[6442981,6749066,475957],[6431169,6752042,480985],[6432175,6757506,477226],[6428495,6751522,477226],[6436899,6753157,481056],[6436615,6754797,481044],[6439734,6751299,479110],[6441641,6754101,477226],[6434825,6746697,477415],[6431824,6748559,480985],[6429714,6745779,477415],[6429319,6747137,477226],[6427685,6745786,474665],[6427586,6745397,474433],[6436970,6747082,474433],[6436736,6747411,474665],[6434703,6748103,477226],[6443944,6749763,477226],[6441032,6751591,479159],[6443081,6754492,477226],[6443117,6754296,473365],[6443805,6750523,473365],[6444421,6750635,473365],[6443733,6754408,473365],[6442492,6755380,474665],[6436640,6759483,477310],[6435837,6759320,476745],[6436640,6759483,476745],[6435837,6759320,474565],[6436640,6759483,474565],[6441598,6760280,474665],[6441929,6760810,474433],[6431631,6758741,474433],[6431825,6758316,474665],[6424433,6752114,477226],[6426251,6749513,477226],[6426745,6746675,477226],[6426240,6745527,474665],[6442899,6755491,474665],[6442868,6755658,474433],[6423265,6752352,474665],[6422419,6752324,474433],[6425643,6748952,474665],[6425200,6748349,474433],[6425770,6745070,474433],[6444132,6748739,474665],[6444197,6748379,474433],[4962092,4197624,417356],[4961490,4202282,417356],[4961399,4202989,417356],[4949149,4201476,417356],[4948992,4201457,417356],[4947745,4212112,417356],[4947239,4212512,417356],[4947009,4212694,417356],[4946771,4214728,417356],[4946953,4214961,417356],[4947399,4215533,417356],[4947924,4216208,417356],[4947978,4216278,417356],[4949959,4216524,417356],[4950029,4216469,417356],[4950765,4215896,417356],[4960191,4217065,417356],[4960223,4217069,417356],[4960396,4215649,417356],[4961046,4215729,417356],[4970870,4216958,417356],[4972936,4199032,417356],[4961490,4202282,425307],[4962092,4197624,425307],[4972936,4199032,425307],[4970870,4216958,425307],[4961046,4215729,425307],[4962742,4202437,431671],[4962742,4202437,425307],[4961046,4215729,431671],[4960396,4215649,432218],[4960223,4217069,432213],[4960191,4217065,432239],[4950765,4215896,432239],[4950029,4216469,431671],[4947399,4215533,432191],[4947924,4216208,431671],[4946953,4214961,431671],[4947239,4212512,431671],[4947745,4212112,432135],[4948992,4201457,432135],[4949149,4201476,432297],[4961399,4202989,432297],[4961490,4202282,431671],[4949959,4216524,431671],[4947978,4216278,431671],[4946771,4214728,431671],[4947009,4212694,431671],[4961171,4202243,425307],[4961819,4197150,425307],[4973623,4198654,425307],[4971237,4217364,425307],[4961006,4216050,425307],[4959924,4216731,432496],[4960782,4217803,431671],[4946822,4216070,431671],[4947737,4215220,432496],[4948623,4200692,431671],[4949316,4201724,432496],[4948450,4214742,434617],[4949881,4202523,434617],[4959364,4216096,434617],[4954361,4211347,437869],[4961643,4203247,432496],[4954873,4207158,437882],[4960919,4203887,434617],[4950845,4216570,431671],[4950183,4217108,431671],[4947378,4216691,431671],[4947317,4211837,431671],[4946046,4215206,431671],[4946396,4212225,431671],[4579390,8251581,457171],[4582868,8252179,457225],[4582868,8252179,457790],[4579390,8251581,457790],[4582811,8252531,457790],[4579328,8251966,457790],[4581003,8252773,458990],[4580868,8253600,458990],[6825959,6646581,512373],[6825959,6646581,510825],[6824927,6647861,510825],[6824927,6647861,512373],[6825441,6647225,512840],[6824188,6647264,512373],[6825220,6645985,512373],[6824478,6646449,512840],[6438498,6747889,475055],[6438498,6747889,477130],[6436608,6747549,477130],[6436608,6747549,475055],[6438342,6748756,477226],[6438175,6749687,478016],[6436285,6749347,478016],[6436452,6748417,477226],[4571944,8260431,457790],[4571745,8261666,454990],[4571745,8261666,457790],[4565796,8260702,457790],[6101651,11180188,448908],[6101399,11180772,448908],[6100470,11182923,448908],[6100058,11182766,448908],[6099750,11183483,448908],[6098871,11185475,448908],[6097734,11188050,448908],[6096797,11190174,448908],[6097055,11190285,448908],[6096938,11190657,448908],[6097998,11191158,448908],[6105032,11194272,448908],[6111001,11196897,448908],[6112095,11197370,448908],[6111544,11198650,448908],[6111770,11198743,448908],[6114608,11192395,448908],[6115490,11190423,448908],[6115419,11190393,448908],[6116879,11186942,448908],[6113490,11185466,448908],[6108904,11183439,448908],[6103320,11180932,448908],[6111770,11198743,459898],[6114608,11192395,462758],[6111544,11198650,459895],[6112095,11197370,460469],[6111001,11196897,460466],[6105032,11194272,460466],[6097998,11191158,460473],[6096938,11190657,460486],[6097055,11190285,460646],[6096797,11190174,460645],[6097734,11188050,461599],[6098871,11185475,462758],[6115490,11190423,461887],[6099750,11183483,461881],[6100058,11182766,461567],[6100470,11182923,461557],[6101399,11180772,460613],[6101651,11180188,460357],[6103320,11180932,460361],[6108904,11183439,460380],[6113490,11185466,460383],[6116879,11186942,460378],[6115419,11190393,461888],[6111759,11198745,459895],[6095862,11191754,459895],[6098663,11185383,462758],[6101523,11178880,459895],[6117001,11185687,459895],[4389180,4130222,426989],[4390401,4130068,426989],[4390529,4130053,426989],[4390657,4130027,426989],[4390782,4129989,426989],[4390904,4129942,426989],[4391020,4129883,426989],[4391129,4129814,426989],[4391234,4129735,426989],[4391330,4129648,426989],[4391418,4129552,426989],[4391496,4129448,426989],[4391566,4129337,426989],[4391626,4129222,426989],[4391674,4129101,426989],[4391712,4128977,426989],[4391739,4128849,426989],[4391754,4128720,426989],[4391757,4128589,426989],[4391748,4128460,426989],[4391728,4128331,426989],[4391695,4128205,426989],[4391654,4128082,426989],[4391600,4127962,426989],[4391535,4127850,426989],[4391461,4127742,426989],[4391379,4127641,426989],[4391287,4127550,426989],[4391186,4127467,426989],[4391080,4127391,426989],[4390967,4127327,426989],[4390848,4127274,426989],[4390725,4127231,426989],[4390598,4127199,426989],[4389975,4127138,426989],[4389791,4125943,426989],[4388606,4126072,426989],[4383186,4126660,426989],[4384614,4139065,426989],[4387990,4138670,426989],[4389827,4138456,426989],[4390084,4137939,426989],[4391748,4128460,436703],[4391728,4128331,436703],[4391757,4128589,436703],[4391626,4129222,436703],[4391674,4129101,436703],[4391566,4129337,436703],[4391129,4129814,436703],[4391234,4129735,436703],[4391020,4129883,436703],[4390657,4130027,436703],[4390782,4129989,436703],[4389180,4130222,436703],[4390401,4130068,436703],[4390084,4137939,436703],[4389827,4138456,436703],[4387990,4138670,436703],[4384614,4139065,436703],[4391695,4128205,436703],[4391654,4128082,436703],[4391600,4127962,436703],[4391535,4127850,436703],[4391461,4127742,436703],[4391379,4127641,436703],[4391287,4127550,436703],[4391186,4127467,436703],[4391080,4127391,436703],[4390967,4127327,436703],[4390848,4127274,436703],[4390725,4127231,436703],[4390598,4127199,436703],[4389975,4127138,436703],[4389791,4125943,436703],[4388606,4126072,436703],[4383186,4126660,436703],[4390904,4129942,436703],[4391330,4129648,436703],[4391418,4129552,436703],[4391496,4129448,436703],[4391712,4128977,436703],[4391739,4128849,436703],[4391754,4128720,436703],[4390529,4130053,436703],[4966236,4205639,425307],[4966236,4205639,425448],[4963040,4205232,425448],[4963040,4205232,425307],[4965924,4208079,425307],[4965924,4208079,425448],[4966080,4206859,425872],[4962728,4207671,425307],[4962728,4207671,425448],[4962884,4206452,425872],[7218307,4765537,444126],[7218307,4765537,443964],[7217436,4764219,444001],[7217436,4764219,444094],[7217479,4764286,444184],[7217529,4764361,444263],[7217583,4764444,444331],[7217643,4764532,444388],[7217703,4764625,444431],[7217768,4764722,444462],[7217833,4764822,444478],[7217899,4764922,444481],[7217966,4765022,444469],[7218030,4765119,444444],[7218092,4765214,444405],[7218152,4765305,444353],[7218208,4765389,444288],[7218259,4765467,444213],[7218766,4763360,442661],[7218766,4763360,444094],[7219623,4764687,444126],[7219623,4764687,442639],[7219578,4764617,444213],[7219526,4764538,444288],[7219472,4764452,444353],[7219413,4764362,444405],[7219351,4764266,444444],[7219288,4764168,444469],[7219223,4764068,444481],[7219157,4763967,444478],[7219094,4763867,444462],[7219030,4763769,444431],[7218970,4763675,444388],[7218912,4763586,444331],[7218859,4763503,444263],[7218810,4763428,444184],[6551995,4999634,425956],[6551995,4999634,424494],[6550953,5000829,424500],[6550953,5000829,425956],[6551476,5000229,426451],[6549895,4999853,425956],[6550933,4998654,425956],[6550055,4998918,426451],[6493811,10254152,432417],[6481703,10253979,432417],[6481393,10271738,432417],[6481390,10272022,432417],[6482779,10272021,432417],[6484550,10272049,432417],[6493546,10272175,432417],[6493615,10267501,432417],[6493615,10267501,449380],[6493811,10254152,449381],[6493546,10272175,449380],[6493262,10272172,432417],[6493262,10272172,449540],[6484550,10272049,449540],[6482779,10272021,449542],[6481526,10272022,432417],[6481526,10272022,449531],[6481390,10272022,449460],[6481393,10271738,449460],[6481703,10254064,432417],[6481703,10254064,449491],[6481703,10253979,449447],[6493686,10254150,432417],[6493686,10254150,449452],[6480598,10252937,448905],[6483296,10255689,450336],[6483084,10270620,450336],[6480313,10273114,448905],[6494671,10253127,448905],[6492089,10255808,450336],[6491868,10270744,450336],[6487657,10266200,454630],[6494373,10273312,448905],[6487746,10260042,454632],[5608983,6582361,422328],[5608983,6582361,423637],[5609601,6583048,423637],[5609601,6583048,422883],[5609720,6581697,422297],[5609720,6581697,423637],[5610339,6582383,422852],[5610339,6582383,423637],[5005180,1652231,462874],[5000658,1652178,462874],[5000490,1661852,462874],[5004956,1661993,462874],[5005066,1657250,462874],[5005066,1657250,477633],[5005180,1652231,473474],[5000572,1657153,462874],[5000658,1652178,473511],[5000572,1657153,477633],[5004956,1661993,473725],[5000490,1661852,473761],[5000663,1651925,473301],[5005185,1652023,473301],[5000481,1662411,473301],[5004945,1662506,473301],[7164276,6858668,553521],[7164276,6858668,554488],[7165347,6859119,554488],[7165347,6859119,553521],[7164669,6857733,553370],[7164669,6857733,554488],[7165740,6858183,553370],[7165740,6858183,554488],[1895990,8993185,440451],[1895990,8993185,441987],[1896950,8992627,441987],[1896950,8992627,440451],[1895398,8992166,440451],[1895398,8992166,441987],[1896359,8991609,440451],[1896359,8991609,441987],[6607350,7465449,507561],[6607350,7465449,509173],[6605839,7464834,509173],[6605839,7464834,507561],[6607004,7466298,509173],[6607134,7465981,508832],[6605493,7465683,509173],[6605623,7465366,508832],[6606308,7465847,509703],[6606049,7466483,509703],[4955381,4216168,432496],[4955381,4216168,434381],[4957345,4216411,434381],[4957345,4216411,432496],[4955441,4215672,434381],[4957407,4215916,434381],[4955842,4215658,434617],[4956487,4215290,434971],[4956415,4215870,434971],[4957021,4215805,434617],[6010412,10969019,455163],[6009185,10969068,455163],[5997654,10969523,455163],[5997779,10972472,455163],[5994794,10972557,455163],[5995117,10980278,455163],[5995302,10984692,455163],[5995643,10992876,455163],[5998640,10992752,455163],[6009995,10992281,455163],[6014010,10992114,455163],[6015899,10992037,455163],[6018862,10991914,455163],[6018438,10981270,455163],[6018313,10978367,455163],[6018026,10971675,455163],[6015027,10971817,455163],[6010527,10972029,455163],[6018313,10978367,470969],[6018026,10971675,470969],[6018313,10978367,468112],[6015358,10978485,468112],[6015358,10978485,470969],[6015899,10992037,468112],[6015899,10992037,470969],[6014010,10992114,470969],[6009995,10992281,470969],[6009995,10992281,469472],[6009669,10984160,469472],[6009669,10984160,470969],[6003538,10984362,469472],[6003538,10984362,470969],[6003282,10977402,469472],[6003282,10977402,470969],[6009484,10977173,469472],[6009484,10977173,470969],[6009185,10969068,469472],[6009185,10969068,470969],[6010412,10969019,470969],[6010527,10972029,470969],[6015027,10971817,470969],[5998640,10992752,469472],[5998640,10992752,466479],[5998293,10984566,466479],[5998293,10984566,469472],[5995302,10984692,466479],[5995302,10984692,469472],[5995117,10980278,469472],[5995117,10980278,466479],[5998106,10980152,466479],[5998106,10980152,469472],[5997779,10972472,466479],[5997779,10972472,469472],[5997654,10969523,469472],[5994794,10972557,466479],[5995643,10992876,466479],[6018438,10981270,468112],[6018862,10991914,468112],[6015921,10992616,470969],[6010018,10992860,470969],[6014919,10968841,470969],[6010018,10992860,469472],[5998663,10993331,469472],[5994950,10984707,469472],[5994765,10980293,469472],[5997654,10969523,466479],[5994765,10980293,466479],[5994395,10971433,466479],[5994919,10970081,466479],[5995629,10969603,466479],[5994950,10984707,466479],[5998663,10993331,466479],[5996888,10993405,466479],[5995740,10993116,466479],[5995152,10992026,466479],[6018887,10992493,468112],[6015921,10992616,468112],[6429990,6753756,477420],[6429990,6753756,479436],[6430666,6754836,479439],[6430666,6754836,477437],[6430901,6753185,479436],[6431569,6754269,479439],[4583120,8254354,457790],[4584226,8254533,454990],[4584226,8254533,457790],[4583112,8261415,454990],[4583112,8261415,457790],[4582004,8261236,457790],[6817515,6642165,512256],[6816802,6641582,510644],[6816802,6641582,512256],[6817262,6641020,510664],[6817262,6641020,512840],[6817751,6640423,510685],[6818445,6640991,512256],[6817751,6640423,512256],[6818223,6641807,512840],[7214839,4760289,444126],[7214839,4760289,444110],[7213993,4759011,444146],[7214061,4759114,444263],[7214117,4759195,444331],[7214174,4759285,444388],[7214237,4759378,444431],[7214300,4759475,444462],[7214365,4759574,444478],[7214433,4759674,444481],[7214498,4759774,444469],[7214563,4759872,444444],[7214626,4759967,444405],[7214685,4760057,444353],[7214740,4760141,444288],[7214793,4760220,444213],[7216211,4759403,444126],[7216211,4759403,442728],[7215354,4758076,442751],[7216166,4759333,444213],[7216115,4759254,444288],[7216061,4759168,444353],[7216001,4759077,444405],[7215941,4758983,444444],[7215876,4758884,444469],[7215811,4758783,444481],[7215746,4758683,444478],[7215683,4758583,444462],[7215618,4758485,444431],[7215558,4758391,444388],[7215501,4758302,444331],[7215447,4758219,444263],[7215399,4758144,444184],[7215354,4758076,444094],[7214021,4758938,444094],[7214012,4759039,444184],[4571853,8250285,457054],[4575331,8250883,457108],[4575331,8250883,457790],[4571853,8250285,457790],[4575262,8251308,457790],[4571779,8250743,457790],[4573481,8251381,458990],[4573320,8252377,458990],[4579091,8251530,457167],[4579027,8251918,457790],[4579091,8251530,457790],[4575544,8251353,457790],[4575612,8250931,457113],[4575612,8250931,457790],[4577086,8252987,458990],[4577228,8252104,458990],[4841009,2297805,451496],[4834461,2299068,451496],[4835933,2306610,451496],[4842452,2305248,451496],[4835200,2302856,451496],[4834461,2299068,460565],[4835200,2302856,462846],[4841009,2297805,460590],[4841734,2301553,451496],[4841734,2301553,462846],[4842452,2305248,460620],[4835933,2306610,460584],[4834365,2298581,460271],[4841231,2297211,460271],[4842083,2301484,462846],[4842936,2305754,460271],[4836035,2307131,460271],[6812077,6647766,512256],[6811544,6647330,510990],[6811544,6647330,512256],[6812004,6646768,510990],[6812004,6646768,512840],[6812493,6646171,510990],[6813026,6646608,512256],[6812493,6646171,512256],[6812782,6647406,512840],[5476501,3277735,411000],[5476274,3277737,411000],[5476259,3276408,411000],[5475075,3276423,411000],[5472265,3276457,411000],[5472095,3277787,411000],[5460341,3277925,411000],[5460203,3276599,411000],[5455884,3276651,411000],[5456015,3288800,411000],[5460194,3288751,411000],[5460191,3288402,411000],[5464609,3288349,411000],[5464612,3288610,411000],[5467487,3288576,411000],[5467484,3288316,411000],[5475208,3288222,411000],[5476615,3288206,411000],[5476615,3288089,411000],[5476558,3282881,411000],[5476558,3282881,427036],[5476501,3277735,425513],[5476615,3288089,425511],[5476615,3288206,425477],[5475208,3288222,425486],[5467484,3288316,425540],[5467487,3288576,425464],[5464612,3288610,425484],[5464609,3288349,425560],[5460191,3288402,425591],[5460194,3288751,425488],[5456015,3288800,425517],[5455955,3283125,411000],[5455955,3283125,427180],[5455884,3276651,425264],[5460203,3276599,425233],[5460341,3277925,425626],[5472095,3277787,425543],[5472265,3276457,425149],[5475075,3276423,425129],[5476259,3276408,425121],[5476274,3277737,425514],[5455881,3276332,425170],[5477188,3276081,425021],[5477268,3282874,427031],[5477350,3289745,425018],[5456029,3289996,425167],[4948231,4211003,432496],[4948842,4211074,434499],[4948231,4211003,434499],[4948001,4212969,434499],[4948001,4212969,432496],[4948612,4213040,434499],[4948856,4211275,434617],[4949552,4212154,435088],[4948598,4212042,435088],[4948671,4212847,434617],[6607168,7469418,507877],[6606779,7469259,508832],[6606625,7469197,508996],[6607168,7469418,508996],[6607756,7467915,507835],[6607756,7467915,508996],[6607195,7467687,508996],[6607350,7467749,508832],[6606248,7468173,509703],[6606844,7468416,509703],[5001734,1655253,476039],[5001782,1653067,474227],[5001782,1653067,476038],[5004304,1653122,474227],[5004304,1653122,476033],[5004256,1655302,476034],[3332612,8897985,500658],[3332612,8897985,501658],[3335001,8896371,501658],[3335001,8896371,500658],[3331194,8895886,500658],[3331194,8895886,501658],[3333584,8894272,500658],[3333584,8894272,501658],[1902515,8981982,423863],[1888953,8990497,423863],[1891223,8994136,423863],[1892379,8993408,423863],[1893092,8994582,423863],[1893166,8994702,423863],[1892904,8994860,423863],[1894401,8997272,423863],[1894544,8997502,423863],[1894825,8997335,423863],[1897504,9001621,423863],[1897408,9001657,423863],[1897441,9001707,423863],[1897547,9001871,423863],[1905424,8996862,423863],[1907098,8995797,423863],[1908765,8994736,423863],[1908632,8994522,423863],[1907956,8994897,423863],[1900859,8983528,423863],[1900941,8983476,423863],[1900782,8983232,423863],[1902569,8982064,423863],[1901064,8989690,440451],[1901064,8989690,437559],[1901884,8991040,437559],[1901884,8991040,440451],[1897547,9001871,440451],[1905424,8996862,440451],[1897441,9001707,440451],[1897408,9001657,440451],[1897504,9001621,440451],[1894825,8997335,440451],[1894544,8997502,440451],[1894401,8997272,440451],[1892904,8994860,440451],[1893166,8994702,440451],[1893092,8994582,440451],[1892379,8993408,440451],[1892379,8993408,437559],[1893847,8992487,437559],[1893847,8992487,440451],[1892493,8990261,437559],[1892493,8990261,440451],[1898429,8986654,437559],[1898429,8986654,440451],[1900487,8990041,437559],[1900487,8990041,440451],[1903580,8990009,437559],[1903580,8990009,439547],[1907098,8995797,437559],[1907098,8995797,439547],[1902569,8982064,437559],[1902515,8981982,437559],[1900782,8983232,437559],[1900941,8983476,437559],[1900859,8983528,437559],[1907956,8994897,437559],[1908632,8994522,437559],[1908765,8994736,437559],[1891223,8994136,437559],[1888953,8990497,437559],[1897461,9001925,440451],[1894717,8997535,440451],[1894512,8997657,440451],[1892697,8994793,440451],[1891024,8994261,437559],[1888754,8990622,437559],[1910381,8993709,437559],[7459765,4490793,448844],[7459254,4491441,447390],[7459254,4491441,448844],[7458280,4490672,447390],[7458280,4490672,448844],[7458311,4490695,448974],[7458361,4490735,449092],[7458430,4490790,449194],[7458515,4490857,449275],[7458612,4490933,449330],[7458714,4491014,449359],[7458820,4491097,449359],[7458924,4491179,449330],[7459021,4491255,449275],[7459104,4491322,449194],[7459174,4491377,449092],[7459225,4491417,448974],[7458791,4490024,448844],[7459407,4490137,449359],[7459512,4490221,449359],[7459606,4490315,449330],[7459683,4490416,449275],[7459739,4490519,449194],[7459773,4490619,449092],[7459782,4490711,448974],[7458867,4489989,448974],[7458959,4489977,449092],[7459064,4489987,449194],[7459177,4490016,449275],[7459294,4490068,449330],[6048319,7971526,486934],[6048319,7971526,488626],[6054199,7971168,488626],[6054199,7971168,486934],[6048231,7970070,488626],[6054111,7969712,488626],[3539774,4779121,438220],[3533910,4788671,438220],[3533847,4788776,438220],[3538395,4791550,438220],[3542708,4794181,438220],[3546205,4788484,438220],[3545757,4788209,438220],[3546794,4786520,438220],[3548262,4787406,438220],[3549645,4785141,438220],[3546061,4782956,438220],[3533847,4788776,447141],[3538395,4791550,450348],[3533910,4788671,447141],[3539774,4779121,447157],[3546061,4782956,451590],[3546061,4782956,449178],[3545936,4783161,449178],[3545936,4783161,451590],[3544174,4782085,450348],[3549645,4785141,446801],[3548262,4787406,446801],[3546794,4786520,447772],[3545757,4788209,447775],[3546205,4788484,447477],[3542708,4794181,447485],[3538254,4791782,450348],[3533223,4788711,446801],[3539268,4778813,446801],[3543598,4795045,446801],[4960683,4210782,432496],[4960683,4210782,434617],[4960888,4209171,434617],[4960888,4209171,432496],[4960050,4210701,434617],[4960257,4209090,434617],[4959353,4209793,435088],[4960361,4209922,435088],[6898631,9468192,457369],[6898631,9468192,457026],[6897120,9468589,457024],[6897120,9468589,457369],[6897893,9468386,457906],[6896955,9467959,457637],[6898467,9467565,457635],[6897470,9466779,458588],[6426287,6749310,477226],[6425970,6749252,476037],[6425603,6749185,474979],[6425603,6749185,476841],[6425868,6747658,474665],[6426552,6747783,477226],[6425868,6747658,476841],[6425009,6751288,477226],[6424337,6750818,474665],[6424337,6750818,477034],[6425265,6749492,474665],[6425938,6749962,477226],[6425265,6749492,477034],[5727026,2651981,408725],[5726734,2663342,410035],[5727868,2660810,409938],[5730175,2651592,409253],[5727199,2651640,408715],[5727603,2632039,406437],[5730748,2632027,407010],[5728828,2658671,409857],[5727868,2660810,411938],[5728828,2658671,411857],[5730175,2651592,411253],[5730748,2632027,409010],[5727603,2632039,408437],[5727199,2651640,410715],[5727026,2651981,410725],[5726734,2663342,412035],[4950239,4215530,432496],[4950239,4215530,434381],[4952203,4215774,434381],[4952203,4215774,432496],[4950299,4215035,434381],[4952265,4215278,434381],[4950700,4215022,434617],[4951345,4214653,434971],[4951273,4215233,434971],[4951879,4215168,434617],[4948430,4207059,432230],[4948688,4207089,432496],[4949300,4207161,434499],[4948430,4207059,434499],[4948126,4209665,434499],[4948126,4209665,432230],[4948995,4209766,434499],[4948384,4209695,432496],[4949307,4207425,434617],[4949973,4208560,435088],[4949126,4208461,435088],[4949063,4209510,434617],[7208427,4767560,444167],[7207780,4767971,443515],[7207780,4767971,444167],[7207032,4766796,443516],[7207032,4766796,444167],[7207046,4766818,444302],[7207074,4766862,444430],[7207115,4766925,444545],[7207166,4767008,444643],[7207228,4767104,444720],[7207296,4767212,444773],[7207368,4767326,444800],[7207444,4767442,444800],[7207515,4767556,444773],[7207584,4767664,444720],[7207646,4767760,444643],[7207697,4767842,444545],[7207739,4767906,444430],[7207766,4767950,444302],[7207677,4766385,444167],[7208717,4766630,444800],[7208643,4766514,444800],[7208763,4766761,444773],[7208779,4766902,444720],[7208765,4767047,444643],[7208720,4767191,444545],[7208646,4767327,444430],[7208547,4767452,444302],[7207825,4766320,444302],[7207981,4766283,444430],[7208135,4766276,444545],[7208285,4766295,444643],[7208422,4766343,444720],[7208544,4766417,444773],[7204476,4761367,444167],[7203834,4761776,443519],[7203834,4761776,444167],[7203086,4760601,443520],[7203086,4760601,444167],[7203100,4760623,444302],[7203128,4760666,444430],[7203169,4760729,444545],[7203220,4760812,444643],[7203282,4760908,444720],[7203350,4761016,444773],[7203424,4761130,444800],[7203498,4761247,444800],[7203569,4761361,444773],[7203638,4761468,444720],[7203700,4761565,444643],[7203751,4761646,444545],[7203793,4761711,444430],[7203820,4761754,444302],[7203726,4760193,444167],[7204768,4760438,444800],[7204694,4760320,444800],[7204813,4760569,444773],[7204830,4760710,444720],[7204814,4760854,444643],[7204770,4760999,444545],[7204695,4761135,444430],[7204597,4761260,444302],[7203876,4760129,444302],[7204029,4760092,444430],[7204186,4760083,444545],[7204334,4760103,444643],[7204473,4760151,444720],[7204594,4760224,444773],[4969376,4213432,425307],[4969376,4213432,426014],[4968996,4216418,426014],[4968996,4216418,425307],[4970958,4213633,425307],[4970958,4213633,426014],[4970580,4216620,425307],[4970580,4216620,426014],[4961154,4207080,432496],[4961154,4207080,434617],[4961361,4205469,434617],[4961361,4205469,432496],[4960523,4206999,434617],[4960728,4205388,434617],[4959825,4206092,435088],[4960833,4206220,435088],[4857850,5197404,431682],[4857516,5196227,431682],[4857516,5196227,432625],[4857850,5197404,432625],[4858179,5198569,432625],[4858179,5198569,431682],[4860050,5195510,431682],[4860050,5195510,432625],[4860712,5197852,431682],[4860712,5197852,432625],[4859046,5198324,431682],[4859046,5198324,432625],[4862302,5202279,431682],[4862302,5202279,410324],[4856692,5204030,410324],[4856692,5204030,431682],[4844225,5196983,431682],[4844225,5196983,410324],[4849356,5190769,410324],[4849356,5190769,431682],[4861822,5189837,431682],[4861822,5189837,410324],[4865700,5188633,410324],[4865773,5188610,410324],[4865773,5188610,431682],[4865700,5188633,431682],[4868787,5198195,410324],[4868787,5198195,431682],[4856077,5202131,431682],[4856077,5202131,428595],[4852145,5203349,428595],[4852145,5203349,431682],[4844225,5196983,428595],[4856692,5204030,428595],[4868787,5198195,428595],[4861723,5200381,428595],[4861723,5200381,431682],[4862302,5202279,428595],[4853981,5194430,431682],[4853981,5194430,428595],[4862422,5191763,428595],[4862422,5191763,431682],[4849356,5190769,428595],[4861822,5189837,428595],[4851700,5205589,410324],[4851700,5205589,428595],[4843032,5198428,410324],[4843032,5198428,428595],[4869376,5200070,410324],[4869376,5200070,428595],[4850481,5189404,410324],[4850663,5189185,410324],[4850663,5189185,428595],[4850481,5189404,428595],[4854308,5192173,410324],[4854308,5192173,428595],[4862328,5202363,431682],[4856731,5204151,431682],[4844151,5196923,431682],[4849277,5190707,431682],[4861797,5189762,431682],[4865745,5188524,431682],[4866276,5190210,431682],[4859188,5195754,431682],[4844151,5196923,428595],[4856731,5204151,428595],[4851689,5205673,428595],[4842882,5198451,428595],[4869401,5200147,428595],[4862328,5202363,428595],[4849277,5190707,428595],[4850677,5189059,428595],[4854296,5192097,428595],[4861797,5189762,428595],[7206859,4763792,444767],[7205990,4762410,444775],[7205990,4762410,446820],[7206859,4763792,446820],[7208219,4761006,447014],[7209097,4762383,447015],[5699805,1249070,466130],[5697640,1253766,466130],[5697640,1253766,472134],[5699805,1249070,472134],[5697640,1253766,471830],[5692021,1251202,471830],[5692021,1251202,472134],[5692021,1251202,466130],[5694353,1246603,466130],[5694353,1246603,472134],[5694353,1246603,472359],[5697126,1239700,472359],[5703280,1242484,472359],[5700209,1249253,472359],[5691055,1252418,479051],[5690245,1254470,479051],[5688941,1253965,479051],[5689774,1251918,479051],[5698046,1253952,471830],[5695884,1258689,471830],[5690063,1256022,471830],[5690379,1255243,471830],[5690245,1254470,471830],[5690805,1253049,471830],[5691038,1253143,471830],[5700209,1249253,472134],[5698046,1253952,472134],[5702660,1242877,466130],[5697595,1240585,466130],[5696995,1241982,466130],[5696314,1241721,466130],[5691038,1253143,466130],[5689526,1252528,466130],[5688941,1253965,466130],[5690245,1254470,466130],[5690552,1256246,466130],[5695461,1258495,466130],[5699805,1249070,472359],[5702660,1242877,472359],[5696314,1241721,472359],[5696995,1241982,472359],[5697595,1240585,472359],[5691055,1252418,466130],[5689774,1251918,466130],[5690805,1253049,466130],[5695461,1258495,471830],[5690552,1256246,471830],[5690379,1255243,466130],[7170330,6861214,553521],[7170330,6861214,554488],[7171401,6861665,554488],[7171401,6861665,553521],[7170723,6860278,553370],[7170723,6860278,554488],[7171794,6860728,553370],[7171794,6860728,554488],[1560867,9046306,400996],[1559651,9046637,400996],[1555947,9047586,400996],[1549978,9049114,400996],[1550061,9049454,400996],[1550947,9049234,400996],[1555336,9066842,400996],[1560342,9065560,400996],[1565370,9064273,400996],[1549978,9049114,418640],[1550061,9049454,418640],[1555947,9047586,421240],[1559651,9046637,419654],[1560867,9046306,419131],[1565370,9064273,419088],[1560342,9065560,421240],[1555336,9066842,419059],[1550947,9049234,419025],[1555776,9046887,421240],[1560458,9066029,421240],[1554487,9067549,418640],[1549791,9048350,418640],[1561865,9045397,418640],[1566532,9064483,418640],[8995705,4072318,518087],[8995490,4072300,518087],[8995490,4072300,528162],[8995705,4072318,528162],[8996296,4062756,518087],[8996490,4062773,518087],[8996490,4062773,528162],[8996296,4062756,528162],[8996609,4061339,518087],[8996609,4061339,528162],[8999203,4061556,518087],[8999203,4061556,528162],[8998722,4067384,518087],[8998722,4067384,528162],[8994575,4064942,531135],[8991796,4065003,531451],[8992032,4062407,531451],[8994787,4062633,531135],[8990248,4064706,531273],[8989199,4062790,531135],[8989251,4062178,531135],[8988143,4064528,531274],[8987612,4064482,531274],[8987751,4062663,531135],[8987833,4061597,528162],[8996334,4062317,528162],[8993197,4067397,533890],[8987425,4066908,533890],[8987612,4064482,531272],[8994787,4062633,528641],[8992032,4062407,528648],[8989251,4062178,528655],[8989199,4062790,529315],[8987751,4062663,529310],[8995430,4073013,528162],[8987010,4072302,528162],[8995771,4068979,528162],[8995924,4067161,528162],[8995242,4067107,529617],[8995038,4068921,529723],[8995038,4068921,530628],[8995242,4067107,530628],[8998722,4067384,530628],[8998297,4072518,530628],[8996804,4072402,530628],[8997067,4069082,530628],[8997067,4069082,528162],[8996804,4072402,528162],[8987799,4062059,518087],[8987063,4071620,518087],[8990063,4071846,518087],[8998297,4072518,518087],[8987425,4066908,518087],[8987799,4062059,528658],[8996074,4062738,518087],[8996074,4062738,528638],[8995134,4072270,518087],[8990063,4071846,528915],[8995134,4072270,528920],[8987063,4071620,528886],[8996804,4072402,518087],[1109098,10197279,485317],[1106439,10200758,485317],[1103584,10204492,485317],[1110118,10208897,485317],[1110324,10209039,485317],[1113376,10211170,485317],[1116262,10207438,485317],[1118952,10203962,485317],[1115441,10201592,485317],[1115404,10201567,485317],[1115441,10201592,495125],[1115404,10201567,495125],[1118952,10203962,495113],[1116262,10207438,498835],[1113376,10211170,494918],[1110324,10209039,494955],[1110324,10209039,495453],[1112945,10205183,498835],[1110118,10208897,495455],[1103584,10204492,495432],[1106439,10200758,498835],[1109098,10197279,495601],[1115404,10201567,495601],[1109871,10209704,494286],[1116557,10207638,498835],[1113188,10211960,494286],[1115961,10200750,494286],[1119859,10203401,494286],[1102819,10204908,494870],[1106146,10200558,498835],[1109871,10209704,494870],[1109405,10196292,494870],[1115961,10200750,494870],[6540930,4995604,424798],[6540339,4995082,424799],[6540339,4995082,426592],[6540930,4995604,425673],[6539742,4994556,424799],[6539742,4994556,425673],[6540368,4993884,425673],[6541558,4994933,425673],[6541625,4993705,426592],[6545711,4999825,424795],[6545120,4999302,424796],[6545120,4999302,426592],[6545711,4999825,425673],[6544523,4998776,424796],[6544523,4998776,425673],[6545151,4998102,425673],[6546342,4999151,425673],[6546407,4997923,426592],[7185927,6873512,556796],[7186294,6872639,556962],[7186294,6872639,557869],[7185927,6873512,557869],[7187265,6873048,556962],[7187265,6873048,557869],[7186904,6873923,556796],[7186904,6873923,557869],[6547174,4994614,428704],[6547174,4994614,429084],[6547927,4993758,429084],[6547927,4993758,428704],[6545564,4993195,428704],[6545564,4993195,429084],[6546319,4992340,428704],[6546319,4992340,429084],[6546347,4993094,429463],[6547200,4993847,429463],[7459558,4485413,452009],[7459558,4485413,452456],[7458558,4486679,452456],[7458558,4486679,452009],[7460794,4486388,452009],[7460794,4486388,452456],[7459794,4487655,452009],[7459794,4487655,452456],[5423941,9976431,439000],[5422699,9957944,439000],[5422699,9957944,456945],[5423941,9976431,456945],[5422504,9957957,439000],[5422504,9957957,456945],[5422484,9957636,439000],[5422484,9957636,456945],[5422248,9953793,439000],[5422248,9953793,456945],[5422518,9953779,439000],[5422518,9953779,456945],[5422532,9953894,439000],[5422532,9953894,456945],[5429052,9953440,439000],[5429052,9953440,456945],[5429109,9954341,439000],[5429109,9954341,456945],[5432561,9954101,439000],[5432561,9954101,456945],[5432493,9953109,439000],[5432493,9953109,456945],[5432763,9953083,439000],[5432763,9953083,456945],[5432978,9956370,439000],[5432978,9956370,456945],[5435944,9956780,456945],[5437205,9975543,456945],[5422467,9976530,456945],[5421203,9957714,456945],[5422165,9952434,456945],[5432674,9951737,456945],[5433020,9956974,456945],[5434095,9975752,439000],[5432847,9957238,439000],[5433037,9957225,439000],[5433020,9956974,439000],[5433037,9957225,456945],[5432847,9957238,456945],[5434095,9975752,456945],[8470782,10285641,435157],[8470782,10285641,436301],[8471435,10285201,436301],[8471435,10285201,435157],[8470367,10285027,435630],[8470367,10285027,436301],[8471020,10284587,435630],[8471020,10284587,436301],[6549711,4986484,423878],[6549711,4986484,425956],[6549166,4986003,426380],[6549166,4986003,423868],[6548552,4987813,425956],[6547410,4986827,425956],[6548580,4985485,423857],[6548580,4985485,425956],[6547765,4987610,426380],[6441481,6754979,477226],[6442345,6755158,475111],[6442526,6755195,475140],[6442526,6755195,477130],[6442202,6756976,477130],[7459836,4479470,448781],[7459484,4479269,448124],[7459484,4479269,448781],[7460195,4478025,448124],[7460195,4478025,448776],[7460180,4478050,448913],[7460154,4478097,449041],[7460115,4478167,449156],[7460066,4478253,449255],[7460007,4478354,449332],[7459944,4478466,449385],[7459876,4478585,449412],[7459807,4478706,449413],[7459739,4478825,449386],[7459674,4478938,449334],[7459617,4479039,449258],[7459566,4479126,449160],[7459527,4479195,449045],[7459500,4479243,448917],[7460544,4478225,448776],[7460495,4479100,449413],[7460564,4478978,449412],[7460413,4479211,449386],[7460322,4479307,449334],[7460223,4479385,449258],[7460120,4479442,449160],[7460020,4479476,449045],[7459924,4479485,448917],[7460603,4478291,448913],[7460643,4478378,449041],[7460666,4478482,449156],[7460669,4478597,449255],[7460654,4478722,449332],[7460617,4478851,449385],[6552345,4999016,424635],[6551853,4998599,425288],[6551853,4998599,427936],[6552345,4999016,427936],[6552802,4997478,425302],[6552802,4997478,427936],[6553294,4997895,424650],[6553294,4997895,427936],[6054393,7961193,473000],[6036820,7962295,473000],[6037138,7967288,473000],[6037452,7972187,473000],[6054998,7971120,473000],[6054700,7966221,473000],[6037452,7972187,486934],[6054998,7971120,486934],[6037138,7967288,492626],[6036820,7962295,486982],[6054393,7961193,486945],[6054700,7966221,492626],[6036788,7961802,486426],[6054737,7960711,486426],[6055072,7966198,492626],[6055396,7971535,486426],[6037479,7972624,486426],[7205353,4749835,444167],[7204921,4749114,443455],[7204921,4749114,444167],[7206128,4748394,443432],[7206128,4748394,444167],[7206100,4748410,444298],[7206052,4748439,444422],[7205986,4748479,444532],[7205902,4748529,444626],[7205805,4748587,444700],[7205697,4748652,444750],[7205583,4748720,444776],[7205467,4748789,444776],[7205353,4748858,444750],[7205245,4748922,444700],[7205146,4748981,444626],[7205063,4749031,444532],[7204996,4749070,444422],[7204949,4749099,444298],[7206572,4749138,444167],[7206273,4750137,444776],[7206390,4750070,444776],[7206141,4750177,444750],[7206001,4750188,444700],[7205859,4750170,444626],[7205717,4750124,444532],[7205583,4750050,444422],[7205459,4749952,444298],[7206625,4749287,444298],[7206651,4749439,444422],[7206651,4749590,444532],[7206623,4749733,444626],[7206569,4749864,444700],[7206490,4749978,444750],[5613902,6583965,421977],[5614163,6583716,421994],[5614163,6583716,423637],[5613902,6583965,423637],[5614705,6584283,421526],[5614705,6584283,423637],[5614444,6584532,421509],[5614444,6584532,423637],[6593183,7461839,507447],[6594044,7462188,508832],[6594205,7462254,508996],[6593183,7461839,508996],[6592134,7464611,507552],[6592134,7464611,508996],[6593092,7465000,508996],[6592930,7464934,508832],[6594873,7464123,510233],[6593973,7463758,510233],[7462719,4485402,452009],[7462719,4485402,452814],[7464563,4486853,452814],[7464563,4486853,452009],[7463478,4484437,452009],[7463478,4484437,452814],[7465322,4485889,452009],[7465322,4485889,452814],[6019995,1791819,405000],[6015103,1801337,405000],[6018072,1802875,405000],[6018216,1802587,405000],[6024158,1805644,405000],[6025118,1803779,405000],[6027609,1798945,405000],[6028760,1796709,405000],[6022833,1793641,405000],[6022978,1793363,405000],[6024158,1805644,414839],[6025118,1803779,414839],[6018216,1802587,414839],[6021703,1795817,418380],[6021703,1795817,414839],[6027609,1798945,414839],[6027609,1798945,418380],[6025118,1803779,418380],[6019162,1800695,414839],[6019162,1800695,418380],[6018216,1802587,418380],[6018072,1802875,418380],[6015103,1801337,418380],[6019995,1791819,418380],[6022978,1793363,418380],[6022833,1793641,418380],[6022833,1793641,414839],[6028760,1796709,414839],[6026171,1804323,414839],[6025120,1806352,414839],[6018140,1802738,414839],[6028711,1799530,418380],[6026171,1804323,418380],[6022918,1793481,414839],[6029942,1797202,414839],[6028711,1799530,414839],[4651655,2067916,439495],[4651655,2067916,426506],[4651665,2075127,426506],[4651665,2075127,439495],[4632703,2067906,439495],[4632703,2067906,426506],[4633336,2067906,426506],[4633336,2067906,439495],[4633358,2075137,426506],[4632706,2075137,426506],[4632706,2075137,439495],[4633358,2075137,439495],[4624223,2076702,440948],[4624223,2076702,426506],[4624188,2067901,426506],[4624188,2067901,440947],[4633358,2075137,441739],[4633336,2067906,441739],[4632706,2075137,441683],[4632711,2076672,426506],[4632711,2076672,441683],[4633362,2076949,441739],[4623524,2076977,440887],[4623498,2067823,440887],[4633336,2067795,441739],[8587634,4175222,497726],[8588146,4176387,499001],[8587634,4175222,499001],[8585516,4177546,499001],[8585004,4176381,497726],[8585004,4176381,499001],[8586336,4175795,499640],[8587106,4177542,499640],[7202614,4758447,444167],[7201973,4758854,443522],[7201973,4758854,444167],[7201225,4757679,443522],[7201225,4757679,444167],[7201239,4757701,444302],[7201266,4757745,444430],[7201308,4757809,444545],[7201359,4757891,444643],[7201421,4757987,444720],[7201490,4758094,444773],[7201563,4758209,444800],[7201637,4758325,444800],[7201709,4758439,444773],[7201777,4758546,444720],[7201839,4758643,444643],[7201891,4758725,444545],[7201932,4758789,444430],[7201959,4758833,444302],[7201865,4757272,444167],[7202904,4757516,444800],[7202830,4757401,444800],[7202950,4757648,444773],[7202967,4757789,444720],[7202952,4757934,444643],[7202907,4758077,444545],[7202833,4758215,444430],[7202734,4758339,444302],[7202012,4757208,444302],[7202166,4757171,444430],[7202322,4757163,444545],[7202472,4757182,444643],[7202609,4757229,444720],[7202731,4757304,444773],[6432868,6758526,474665],[6432868,6758526,476457],[6434180,6758789,476457],[6434180,6758789,474665],[6432987,6757935,476457],[6434299,6758198,476457],[6433668,6757873,477034],[6433641,6758000,477034],[8987063,4071616,528891],[8987063,4071616,530882],[8989972,4071839,530882],[8989972,4071839,528915],[8987248,4069205,531451],[8987177,4070141,531451],[8990115,4069987,530882],[4574675,8262141,454990],[4574876,8260906,457790],[4574675,8262141,457790],[4578703,8261527,457790],[4578503,8262761,454990],[4578503,8262761,457790],[6826966,6645182,493773],[6818785,6655248,493773],[6818785,6655248,511051],[6826966,6645182,510982],[6819228,6639296,493773],[6819560,6638902,493773],[6819560,6638902,510679],[6819228,6639296,511484],[6826919,6645143,493773],[6826919,6645143,511080],[6816253,6642609,493773],[6816367,6642697,493773],[6816367,6642697,511262],[6816253,6642609,511009],[6815811,6642437,493773],[6815896,6642334,493773],[6815896,6642334,511101],[6815811,6642437,511357],[6812188,6649733,493773],[6810791,6648564,493773],[6810791,6648564,511357],[6812188,6649733,514706],[6819381,6642063,514706],[6823728,6645554,514706],[6817064,6653809,514706],[6816021,6645056,514706],[6816580,6645592,514706],[6827629,6645050,510274],[6819151,6655554,510274],[6819171,6638256,510274],[6816188,6642016,510274],[6815742,6641590,510274],[6810339,6648185,510274],[6817064,6653809,493773],[7161711,6856489,539084],[7159646,6861398,539084],[7156546,6868766,539084],[7162691,6871325,539084],[7164245,6867635,539084],[7170564,6870283,539084],[7182606,6875332,539084],[7182080,6876621,539084],[7185254,6877920,539084],[7187265,6873048,539084],[7189311,6868091,539084],[7174163,6861722,539084],[7164245,6867635,553551],[7170564,6870283,553552],[7162691,6871325,552939],[7156546,6868766,552936],[7159646,6861398,554158],[7161711,6856489,553370],[7174163,6861722,553370],[7172100,6866633,554158],[7174163,6861722,556030],[7172086,6866666,556962],[7172086,6866666,554153],[7189311,6868091,556030],[7185254,6877920,556040],[7182080,6876621,556034],[7182606,6875332,556277],[7170564,6870283,556275],[7169711,6872315,553216],[7163708,6869791,553216],[7162754,6872062,552839],[7155944,6869200,552839],[7159287,6861247,554158],[7174475,6860979,553251],[7161663,6855594,553251],[7190049,6867526,555890],[7187658,6873212,556962],[7174475,6860979,555890],[7185285,6878861,555890],[7169711,6872315,555890],[5109973,8368222,468957],[5109294,8372136,468957],[5110341,8372290,468957],[5111501,8372460,468957],[5112214,8368584,468957],[5111020,8368391,468957],[5111501,8372460,474120],[5112214,8368584,474082],[5110341,8372290,475291],[5109294,8372136,474130],[5109973,8368222,474127],[5111020,8368391,475291],[5109712,8367854,473776],[5111072,8368092,475291],[5110300,8372520,475291],[5108941,8372283,473776],[5112566,8368353,473776],[5111794,8372780,473776],[3134552,6323380,420392],[3134552,6323380,422026],[3136140,6321879,422026],[3136140,6321879,420392],[3133973,6322768,420392],[3133973,6322768,422026],[3135561,6321266,420392],[3135561,6321266,422026],[6822074,6642216,512256],[6822763,6641344,510519],[6822763,6641344,512256],[6823333,6641795,510511],[6823333,6641795,512722],[6823938,6642274,510502],[6823242,6643154,512256],[6823938,6642274,512256],[6822455,6642905,512722],[4960212,4214471,432496],[4960212,4214471,434617],[4960418,4212860,434617],[4960418,4212860,432496],[4959580,4214391,434617],[4959785,4212780,434617],[4958884,4213483,435088],[4959890,4213612,435088],[6543419,4997802,424797],[6542828,4997280,424797],[6542828,4997280,426592],[6543419,4997802,425673],[6542231,4996753,424797],[6542231,4996753,425673],[6542859,4996081,425673],[6544049,4997129,425673],[6544115,4995901,426592],[7458125,4482465,448781],[7457774,4482265,448124],[7457774,4482265,448781],[7458484,4481021,448124],[7458484,4481021,448776],[7458470,4481046,448913],[7458442,4481094,449041],[7458404,4481162,449156],[7458354,4481248,449255],[7458296,4481349,449332],[7458233,4481461,449385],[7458165,4481580,449412],[7458095,4481702,449413],[7458027,4481820,449386],[7457964,4481933,449334],[7457905,4482035,449258],[7457856,4482121,449160],[7457816,4482190,449045],[7457788,4482239,448917],[7458833,4481220,448776],[7458785,4482095,449413],[7458853,4481974,449412],[7458703,4482206,449386],[7458609,4482303,449334],[7458512,4482381,449258],[7458410,4482438,449160],[7458308,4482472,449045],[7458212,4482481,448917],[7458891,4481287,448913],[7458933,4481374,449041],[7458955,4481477,449156],[7458958,4481594,449255],[7458942,4481718,449332],[7458907,4481846,449385],[6428009,6755489,475073],[6428424,6754895,477226],[6428009,6755489,476745],[6428996,6756178,476745],[6428996,6756178,475073],[6429412,6755582,477226],[8991001,4071924,528916],[8991001,4071924,531072],[8993936,4072170,531072],[8993936,4072170,528919],[8991141,4069894,531072],[8994078,4070141,531072],[8992587,4069716,531388],[8992501,4070957,531388],[4954336,4202345,432496],[4954336,4202345,434381],[4952371,4202102,434381],[4952371,4202102,432496],[4954257,4202982,434381],[4952293,4202739,434381],[4953854,4203014,434617],[4953212,4203369,434971],[4953310,4202579,434971],[4952675,4202868,434617],[6814288,6645168,512373],[6813705,6644692,510990],[6813705,6644692,512373],[6814166,6644130,510990],[6814166,6644130,512956],[6814655,6643533,510990],[6815237,6644010,512373],[6814655,6643533,512373],[6814993,6644808,512956],[5612501,6590377,420745],[5612501,6590377,419519],[5611583,6591124,419518],[5611583,6591124,420745],[5612052,6590742,421107],[5610287,6589540,420745],[5611206,6588793,420745],[5610376,6588691,421107],[6040381,7962070,486975],[6040381,7962070,488826],[6037733,7962237,488826],[6037733,7962237,486980],[6040484,7963709,488826],[6037836,7963870,488826],[5621794,6582824,420745],[5621794,6582824,419530],[5620875,6583570,419529],[5620875,6583570,420745],[5621345,6583188,421107],[5619591,6582000,420745],[5620510,6581254,420745],[5619680,6581151,421107],[10280910,4282440,604870],[10280527,4283620,604870],[10278839,4288807,604870],[10278237,4290656,604870],[10277117,4290303,604870],[10276925,4290827,604870],[10277121,4290887,604870],[10276072,4294413,604870],[10276998,4294716,604870],[10276966,4294837,604870],[10283695,4296920,604870],[10285348,4291812,604870],[10285634,4290927,604870],[10287672,4284624,604870],[10286708,4284276,604870],[10286748,4283985,604870],[10285438,4283560,604870],[10285348,4283779,604870],[10280527,4283620,616277],[10278839,4288807,620905],[10280910,4282440,615224],[10285348,4283779,615187],[10285438,4283560,614987],[10286748,4283985,614999],[10286708,4284276,615245],[10287672,4284624,615283],[10285634,4290927,620905],[10285348,4291812,620127],[10283695,4296920,615631],[10276966,4294837,615617],[10276998,4294716,615722],[10276072,4294413,615733],[10277121,4290887,618814],[10276925,4290827,618812],[10277117,4290303,619279],[10278237,4290656,619276],[10288359,4283715,614373],[10286041,4291054,620905],[10277785,4288478,620905],[10280432,4281241,614373],[10283879,4297894,614899],[10283689,4298493,614373],[10275609,4295971,614373],[10285760,4291941,620126],[10283429,4297746,614904],[7208435,4748073,444167],[7207967,4747293,443395],[7207967,4747293,444167],[7209174,4746572,443371],[7209174,4746572,444167],[7209146,4746587,444298],[7209098,4746616,444422],[7209032,4746656,444532],[7208947,4746706,444626],[7208850,4746765,444700],[7208742,4746829,444750],[7208629,4746897,444776],[7208512,4746967,444776],[7208399,4747035,444750],[7208291,4747100,444700],[7208192,4747158,444626],[7208109,4747208,444532],[7208043,4747248,444422],[7207995,4747277,444298],[7209654,4747376,444167],[7209356,4748375,444776],[7209473,4748308,444776],[7209225,4748415,444750],[7209084,4748425,444700],[7208941,4748408,444626],[7208799,4748362,444532],[7208665,4748289,444422],[7208541,4748191,444298],[7209708,4747525,444298],[7209734,4747678,444422],[7209734,4747827,444532],[7209705,4747972,444626],[7209651,4748103,444700],[7209572,4748216,444750],[5430929,9966000,456945],[5430929,9966000,457552],[5433425,9965832,457552],[5433425,9965832,456945],[5430746,9963308,456945],[5430746,9963308,457552],[5433245,9963140,456945],[5433245,9963140,457552],[2834972,6881119,420333],[2834972,6881119,422311],[2835470,6880765,422311],[2835470,6880765,420990],[2834708,6880749,420332],[2834708,6880749,422311],[2835205,6880394,420989],[2835205,6880394,422311],[7184467,6867157,556207],[7184467,6867157,557127],[7185538,6867608,557127],[7185538,6867608,556207],[7184862,6866221,556030],[7184862,6866221,557127],[7185933,6866671,556030],[7185933,6866671,557127],[5459830,6693591,425650],[5459830,6693591,427050],[5458626,6694847,427050],[5458626,6694847,425650],[5461239,6694940,425650],[5461239,6694940,427050],[5460035,6696197,425650],[5460035,6696197,427050],[7411299,9039040,460000],[7411620,9037638,460000],[7411682,9037371,460000],[7411682,9037371,454054],[7411620,9037638,454054],[7411299,9039040,454054],[7411268,9039175,454054],[7411268,9039175,460000],[7413992,9039766,454054],[7413992,9039766,460000],[7412291,9047298,454054],[7412291,9047298,460000],[7399584,9044440,454054],[7399584,9044440,460000],[7400871,9038604,454054],[7401169,9037261,454054],[7401182,9037201,454054],[7401231,9036979,454054],[7401231,9036979,460000],[7401182,9037201,460000],[7401169,9037261,460000],[7400871,9038604,460000],[7404959,9037766,454054],[7404959,9037766,460000],[7405368,9035948,454054],[7405368,9035948,460000],[3130861,6317783,420392],[3130861,6317783,421604],[3131305,6318253,421604],[3131305,6318253,420392],[3131407,6317266,420392],[3131407,6317266,421604],[3131851,6317736,420392],[3131851,6317736,421604],[3336660,8883612,486284],[3331555,8887025,486284],[3330672,8885705,486284],[3324256,8889995,486284],[3325134,8891310,486284],[3320055,8894707,486284],[3328709,8907675,486284],[3345331,8896582,486284],[3341123,8890286,486284],[3332851,8904911,497825],[3332851,8904911,486284],[3328709,8907675,497825],[3326995,8905107,486284],[3326995,8905107,497825],[3337021,8899032,500658],[3337021,8899032,497825],[3338461,8901167,497825],[3338461,8901167,500658],[3332851,8904911,500658],[3338461,8901167,486284],[3331151,8902300,497825],[3331151,8902300,500658],[3326995,8905107,500658],[3321677,8897139,486284],[3321677,8897139,500658],[3321677,8897139,497825],[3326686,8893756,497825],[3326686,8893756,500658],[3325768,8892397,497825],[3325768,8892397,500658],[3332229,8888033,497825],[3332229,8888033,500658],[3331555,8887025,497825],[3331555,8887025,500658],[3336660,8883612,500658],[3341123,8890286,500658],[3343875,8894403,497825],[3343875,8894403,500658],[3343875,8894403,486284],[3345331,8896582,497825],[3320055,8894707,497825],[3325134,8891310,497825],[3324256,8889995,497825],[3324578,8889779,486284],[3324578,8889779,497825],[3330672,8885705,497825],[3329851,8884478,497825],[3334879,8881082,497825],[3336660,8883612,497825],[3318345,8892147,497825],[3323740,8888540,497825],[5476953,6699101,428450],[5476953,6699101,429383],[5475282,6701014,429383],[5475282,6701014,428450],[5478359,6700327,428450],[5478359,6700327,429383],[5476714,6702212,428450],[5476714,6702212,429383],[3128413,6314503,420392],[3128413,6314503,420550],[3127660,6315214,420550],[3127660,6315214,420392],[3129449,6315597,420392],[3129449,6315597,420550],[3128695,6316310,420392],[3128695,6316310,420550],[3128555,6315406,420813],[6902106,9458109,440845],[6905001,9468933,440845],[6905001,9468933,454223],[6902106,9458109,454433],[6898075,9459141,440845],[6901890,9458165,440845],[6901890,9458165,455223],[6898075,9459141,458638],[6894236,9460123,440845],[6897515,9459283,440845],[6897515,9459283,458139],[6894236,9460123,455223],[6894055,9461056,440845],[6893837,9460224,440845],[6893837,9460224,452181],[6894055,9461056,452181],[6902563,9469923,453403],[6902563,9469923,454513],[6902370,9469192,455223],[6902563,9469923,440845],[6901984,9470072,440845],[6901984,9470072,454515],[6896768,9471415,440845],[6896768,9471415,454536],[6896583,9470709,440845],[6896583,9470709,455223],[6895475,9466479,440845],[6894311,9462031,440845],[6894311,9462031,455223],[6895475,9466479,459337],[6898925,9465575,459337],[6904623,9468603,455223],[6894708,9461925,455223],[6905785,9469614,452157],[6896904,9471941,452157],[6896768,9471415,453464],[6901984,9470072,453409],[6901720,9457516,455223],[6902561,9457304,452157],[6897904,9458486,458638],[6899507,9464614,458638],[6894063,9459461,455223],[6893663,9459562,452181],[6896583,9470709,455222],[6905092,9469272,440845],[6905092,9469272,453375],[6037828,7972164,486934],[6037828,7972164,488626],[6043706,7971806,488626],[6043706,7971806,486934],[6037739,7970707,488626],[6043618,7970350,488626],[4949086,4203693,432496],[4949699,4203765,434499],[4949086,4203693,434499],[4948856,4205660,434499],[4948856,4205660,432496],[4949469,4205731,434499],[4949711,4203966,434617],[4950407,4204845,435088],[4949453,4204733,435088],[4949527,4205539,434617],[6544885,4998235,425411],[6544399,4997780,425429],[6544399,4997780,428572],[6544885,4998235,428572],[6545973,4996094,427625],[6545973,4996094,428572],[6546461,4996548,427607],[6546461,4996548,428572],[3136354,6315738,408000],[3137452,6314731,408000],[3134966,6312091,408000],[3133865,6313139,408000],[3131049,6310153,408000],[3132177,6309165,408000],[3129702,6306565,408000],[3128592,6307577,408000],[3123129,6301854,408000],[3114262,6310260,408000],[3119702,6316008,408000],[3118683,6316968,408000],[3121115,6319584,408000],[3122225,6318591,408000],[3125009,6321569,408000],[3123936,6322563,408000],[3126432,6325197,408000],[3127546,6324198,408000],[3133089,6329967,408000],[3141938,6321600,408000],[3125771,6304622,408000],[3125771,6304622,420392],[3123129,6301854,420392],[3128592,6307577,420392],[3129702,6306565,420392],[3132177,6309165,420392],[3131049,6310153,420392],[3133865,6313139,420392],[3134966,6312091,420392],[3137452,6314731,420392],[3136354,6315738,420392],[3139155,6318678,408000],[3139155,6318678,420392],[3141938,6321600,420392],[3133089,6329967,420392],[3129384,6326112,408000],[3129384,6326112,420392],[3127546,6324198,420392],[3126432,6325197,420392],[3123936,6322563,420392],[3125009,6321569,420392],[3122225,6318591,420392],[3121115,6319584,420392],[3118683,6316968,420392],[3119702,6316008,420392],[3117813,6314012,408000],[3117813,6314012,420392],[3114262,6310260,420392],[3127211,6303250,420392],[3130058,6306239,420392],[3132543,6308846,420392],[3135302,6311743,420392],[3137824,6314390,420392],[3140598,6317303,420392],[3127881,6327556,420392],[3125992,6325590,420392],[3123478,6322974,420392],[3120634,6320014,420392],[3118174,6317454,420392],[3116268,6315469,420392],[7992376,5690063,514965],[7994871,5692439,512423],[7994871,5692439,514663],[7993753,5693614,512423],[7993753,5693614,514663],[7991257,5691239,514965],[5469373,6675306,402370],[5466770,6678202,402370],[5457679,6688367,402370],[5455149,6691162,402370],[5453029,6693513,402370],[5452078,6694573,402370],[5450788,6696002,402370],[5450450,6696353,402370],[5475296,6718808,402370],[5477899,6715923,402370],[5491691,6700683,402370],[5494274,6697826,402370],[5486680,6690958,402370],[5460158,6690922,425650],[5460158,6690922,426117],[5462208,6692755,427283],[5462208,6692755,425650],[5465145,6685347,425650],[5465145,6685347,426117],[5467194,6687181,425650],[5467194,6687181,427283],[5464378,6695087,425650],[5464378,6695087,426117],[5471345,6701371,426117],[5471345,6701371,425650],[5476481,6695488,426117],[5469558,6689295,426117],[5469558,6689295,425650],[5476481,6695488,425650],[5466913,6692253,428439],[5464378,6695087,428450],[5469558,6689295,428450],[5462012,6692972,425650],[5462012,6692972,428450],[5467194,6687181,428450],[5486680,6690958,425650],[5469373,6675306,425650],[5494274,6697826,425650],[5491691,6700683,425650],[5477899,6715923,425650],[5475296,6718808,425650],[5450450,6696353,425650],[5450788,6696002,425650],[5466770,6678202,425650],[5457679,6688367,425650],[5455149,6691162,425650],[5453029,6693513,425650],[5452078,6694573,425650],[5475029,6704587,425650],[5475029,6704587,428450],[5480126,6698748,428450],[5480126,6698748,425650],[5471345,6701371,428450],[5473859,6698491,428450],[5476481,6695488,428450],[6005444,10982058,470969],[6005444,10982058,472058],[6008399,10981961,472058],[6008399,10981961,470969],[6005359,10979520,470969],[6005359,10979520,472058],[6008316,10979423,470969],[6008316,10979423,472058],[5474675,6706471,425650],[5474675,6706471,426117],[5474054,6707189,426117],[5474054,6707189,425650],[5475819,6707462,425650],[5475819,6707462,426117],[5475197,6708180,425650],[5475197,6708180,426117],[6044581,7970411,488487],[6044581,7970411,489226],[6047310,7970246,489226],[6047310,7970246,488487],[6044515,7969316,489760],[6047242,7969150,489760],[3157563,5270951,427526],[3157138,5270986,427526],[3156856,5265378,427526],[3156490,5265399,427526],[3156549,5266837,427526],[3152808,5267027,427526],[3152714,5265762,427526],[3149134,5265952,427526],[3149131,5265808,427526],[3148797,5265827,427526],[3148947,5268279,427526],[3145212,5268488,427526],[3145112,5267147,427526],[3141586,5267350,427526],[3141578,5267220,427526],[3141376,5267229,427526],[3141953,5278643,427526],[3144370,5278479,427526],[3144416,5278944,427526],[3144802,5278916,427526],[3144723,5277524,427526],[3146669,5277429,427526],[3146762,5278820,427526],[3149836,5278671,427526],[3149711,5276245,427526],[3150938,5276166,427526],[3153388,5276023,427526],[3155509,5275906,427526],[3157819,5275776,427526],[3150967,5276164,427526],[3150967,5276164,456233],[3153388,5276023,456233],[3150938,5276166,456233],[3149711,5276245,456233],[3149722,5276435,456233],[3149836,5278671,456233],[3146762,5278820,456233],[3146669,5277429,456233],[3144723,5277524,456233],[3144802,5278916,456233],[3144416,5278944,456233],[3144370,5278479,456233],[3141953,5278643,456233],[3141376,5267229,456233],[3141578,5267220,456233],[3141586,5267350,456233],[3145112,5267147,456233],[3145212,5268488,456233],[3148947,5268279,456233],[3148865,5266931,427526],[3148865,5266931,456233],[3148797,5265827,456233],[3149131,5265808,456233],[3149134,5265952,456233],[3152714,5265762,456233],[3152808,5267027,456233],[3156549,5266837,456233],[3156495,5265560,427526],[3156495,5265560,456233],[3156490,5265399,456233],[3156856,5265378,456233],[3157138,5270986,456233],[3157563,5270951,456233],[3157819,5275776,456233],[3155509,5275906,456233],[3144944,5272528,456233],[3144944,5272528,458285],[3145114,5276626,458285],[3145114,5276626,456233],[3149722,5276435,458285],[3149509,5272340,458285],[3149509,5272340,456233],[3145149,5277503,456233],[3145149,5277503,457292],[3149765,5277278,457331],[3149765,5277278,456233],[3144944,5272528,458884],[3148365,5272387,458884],[3148365,5272387,458285],[3148365,5272387,456233],[3148257,5269769,458884],[3148257,5269769,456233],[3144836,5269911,458884],[3144836,5269911,456233],[3151092,5278609,456233],[6818891,6655337,510825],[6817614,6654268,513539],[6818891,6655337,513539],[6818808,6653701,512607],[6819646,6654402,510825],[6819646,6654402,512607],[7210308,4770508,444167],[7209660,4770921,443513],[7209660,4770921,444167],[7208910,4769746,443514],[7208910,4769746,444167],[7208924,4769768,444302],[7208953,4769812,444430],[7208993,4769876,444545],[7209046,4769958,444643],[7209106,4770054,444720],[7209175,4770162,444773],[7209248,4770276,444800],[7209322,4770391,444800],[7209395,4770506,444773],[7209464,4770614,444720],[7209524,4770710,444643],[7209577,4770792,444545],[7209617,4770856,444430],[7209646,4770900,444302],[7209558,4769334,444167],[7210598,4769579,444800],[7210524,4769462,444800],[7210645,4769710,444773],[7210660,4769851,444720],[7210646,4769996,444643],[7210600,4770140,444545],[7210526,4770277,444430],[7210427,4770401,444302],[7209706,4769270,444302],[7209862,4769233,444430],[7210016,4769224,444545],[7210166,4769244,444643],[7210304,4769292,444720],[7210424,4769366,444773],[7177449,6864207,556207],[7177449,6864207,557127],[7178520,6864657,557127],[7178520,6864657,556207],[7177842,6863270,556030],[7177842,6863270,557127],[7178913,6863720,556030],[7178913,6863720,557127],[6440870,6748314,475055],[6440870,6748314,476938],[6439294,6748032,476938],[6439294,6748032,475055],[6440714,6749183,477226],[6440609,6749770,477724],[6439032,6749487,477724],[6439138,6748900,477226],[1990418,7536080,395786],[1984864,7538375,395786],[1989532,7549606,395786],[1995075,7547309,395786],[1985376,7539604,404799],[1990925,7537304,402098],[1990925,7537304,404799],[1990925,7537304,395786],[1993086,7542510,395786],[1993086,7542510,408783],[1995075,7547309,405293],[1989532,7549606,405293],[1987538,7544809,395786],[1987538,7544809,408783],[1985376,7539604,395786],[1990418,7536080,402098],[1984864,7538375,402098],[1995358,7547988,404799],[1989816,7550286,404799]],"transform":{"scale":[0.001,0.001,0.001],"translate":[2677116.375,1241839.025,0.0]},"metadata":{"geographicalExtent":[2678219.194,1243078.7249999999,395.786,2687404.734,1253037.77,620.905],"presentLoDs":{"2.0":145865},"referenceSystem":"urn:ogc:def:crs:EPSG::2056","citymodelIdentifier":"3b952db3-f7d7-4ad3-a188-7fbde997043c","datasetReferenceDate":"2021-03-19","datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","distributionFormatVersion":"1.1","spatialRepresentationType":"vector","fileIdentifier":"zurich_subset_lod2.json","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2021-05-18","textures":"absent","materials":"absent"}} \ No newline at end of file +{ + "type": "CityJSON", + "version": "1.1", + "CityObjects": + { + "UUID_64efac00-00cd-455d-a8ac-9602bd232330": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684572.43, + 1246323.059, + 448.126, + 2684573.613, + 1246324.518, + 449.413 + ], + "parents": + [ + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 0, + 1, + 2 + ] + ], + [ + [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 2 + ] + ], + [ + [ + 3, + 19, + 4 + ] + ], + [ + [ + 20, + 12, + 11, + 21 + ] + ], + [ + [ + 20, + 22, + 13, + 12 + ] + ], + [ + [ + 22, + 23, + 14, + 13 + ] + ], + [ + [ + 23, + 24, + 15, + 14 + ] + ], + [ + [ + 24, + 25, + 16, + 15 + ] + ], + [ + [ + 25, + 26, + 17, + 16 + ] + ], + [ + [ + 26, + 27, + 18, + 17 + ] + ], + [ + [ + 27, + 0, + 2, + 18 + ] + ], + [ + [ + 28, + 5, + 4, + 19 + ] + ], + [ + [ + 29, + 6, + 5, + 28 + ] + ], + [ + [ + 29, + 30, + 7, + 6 + ] + ], + [ + [ + 30, + 31, + 8, + 7 + ] + ], + [ + [ + 31, + 32, + 9, + 8 + ] + ], + [ + [ + 32, + 33, + 10, + 9 + ] + ], + [ + [ + 33, + 21, + 11, + 10 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_f5697b2b-4cd0-42c9-b96d-ed29ac5f9817": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682716.608, + 1248408.924, + 403.0, + 2682741.196, + 1248432.913, + 423.456 + ], + "parents": + [ + "UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 34, + 35, + 36, + 37, + 38, + 39, + 40 + ] + ], + [ + [ + 39, + 38, + 41, + 42 + ] + ], + [ + [ + 38, + 37, + 43, + 41 + ] + ], + [ + [ + 37, + 36, + 44, + 43 + ] + ], + [ + [ + 36, + 35, + 45, + 44 + ] + ], + [ + [ + 35, + 34, + 46, + 45 + ] + ], + [ + [ + 34, + 40, + 47, + 46 + ] + ], + [ + [ + 40, + 39, + 42, + 47 + ] + ], + [ + [ + 48, + 49, + 50 + ] + ], + [ + [ + 49, + 51, + 52, + 50 + ] + ], + [ + [ + 53, + 52, + 51 + ] + ], + [ + [ + 54, + 55, + 56, + 57, + 53, + 51, + 49, + 48, + 58 + ] + ], + [ + [ + 54, + 57, + 59, + 60 + ] + ], + [ + [ + 53, + 58, + 48, + 50, + 52 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_583c776f-5b0c-4d42-9c37-5b94e0c21a30": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 5, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2685094.36, + 1247519.89, + 501.0, + 2685115.971, + 1247541.809, + 515.969 + ], + "children": + [ + "UUID_5bd1cee6-b3f0-40fb-a6ae-833e88305e31", + "UUID_60ae78b4-7632-49ca-89ed-3d1616d5eb80" + ] + }, + "UUID_1c91dd3a-aef6-41f6-990e-08aba3ca6933": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB07", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "Region": 2, + "FileCreationDate": "2012-02-23", + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682225.316, + 1250206.88, + 468.957, + 2682228.942, + 1250211.805, + 475.291 + ], + "children": + [ + "UUID_fc830572-a447-49ed-8d91-943d230ff75e" + ] + }, + "UUID_4766ed7f-2662-483c-b9cf-f90cfbe06737": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2684846.616, + 1251599.363, + 427.981, + 2684849.28, + 1251604.112, + 431.981 + ], + "parents": + [ + "UUID_5bc16499-446b-4903-b57c-5e25efb1c1fe" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 61, + 62, + 63, + 64 + ] + ], + [ + [ + 61, + 65, + 66, + 62 + ] + ], + [ + [ + 64, + 67, + 65, + 61 + ] + ], + [ + [ + 62, + 66, + 68, + 63 + ] + ], + [ + [ + 63, + 68, + 67, + 64 + ] + ], + [ + [ + 66, + 65, + 67, + 68 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_3b4f2683-65a3-458d-891b-86bb02cf803f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683546.571, + 1248595.443, + 475.073, + 2683548.278, + 1248596.938, + 477.226 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 69, + 70, + 71 + ] + ], + [ + [ + 72, + 73, + 74 + ] + ], + [ + [ + 69, + 71, + 74, + 73 + ] + ], + [ + [ + 72, + 74, + 71, + 70 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_214e3763-326b-4899-97ef-22069b5d9e38": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2681682.171, + 1250087.352, + 444.332, + 2681701.164, + 1250102.479, + 461.991 + ], + "parents": + [ + "UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89 + ] + ], + [ + [ + 78, + 77, + 90, + 91 + ] + ], + [ + [ + 77, + 76, + 92, + 90 + ] + ], + [ + [ + 76, + 75, + 93, + 92 + ] + ], + [ + [ + 75, + 89, + 94, + 93 + ] + ], + [ + [ + 89, + 88, + 95, + 94 + ] + ], + [ + [ + 87, + 96, + 95, + 88 + ] + ], + [ + [ + 86, + 97, + 96, + 87 + ] + ], + [ + [ + 97, + 86, + 85, + 98 + ] + ], + [ + [ + 85, + 84, + 99, + 98 + ] + ], + [ + [ + 84, + 83, + 100, + 99 + ] + ], + [ + [ + 83, + 82, + 101, + 100 + ] + ], + [ + [ + 82, + 81, + 102, + 101 + ] + ], + [ + [ + 81, + 80, + 103, + 102 + ] + ], + [ + [ + 80, + 79, + 104, + 103 + ] + ], + [ + [ + 79, + 78, + 91, + 104 + ] + ], + [ + [ + 91, + 105, + 106, + 107 + ] + ], + [ + [ + 108, + 109, + 105 + ] + ], + [ + [ + 90, + 108, + 105, + 91 + ] + ], + [ + [ + 90, + 92, + 109, + 108 + ] + ], + [ + [ + 93, + 94, + 95, + 96, + 97, + 110, + 111, + 98, + 99, + 112, + 113, + 109, + 92 + ] + ], + [ + [ + 105, + 109, + 113, + 106 + ] + ], + [ + [ + 111, + 112, + 114, + 115 + ] + ], + [ + [ + 116, + 110, + 117, + 118, + 119 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c82d2cc6-6c38-484c-8105-bb7cb6954b83": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 10, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2681950.74, + 1244136.236, + 451.496, + 2681959.311, + 1244146.156, + 462.846 + ], + "children": + [ + "UUID_944c7a78-bbcd-4872-8a64-983a5ef564be" + ] + }, + "UUID_2acfe0fe-4f1b-43ea-95b6-39156292b736": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683711.537, + 1249298.925, + 507.931, + 2683714.532, + 1249301.123, + 510.057 + ], + "parents": + [ + "UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 120, + 121, + 122, + 123 + ] + ], + [ + [ + 124, + 125, + 123, + 122 + ] + ], + [ + [ + 126, + 125, + 124, + 127 + ] + ], + [ + [ + 128, + 120, + 123, + 129 + ] + ], + [ + [ + 129, + 123, + 125 + ] + ], + [ + [ + 128, + 129, + 125, + 126 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_e02995c9-2a6f-4a76-93f5-f45d896bea93": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-19", + "Region": 6, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2686103.386, + 1245900.364, + 518.088, + 2686115.579, + 1245912.038, + 533.89 + ], + "children": + [ + "UUID_4c5c6291-62c1-4a0d-9a15-2a2861388ce4", + "UUID_89681b0a-629d-4ff3-a512-1e0d7363f624", + "UUID_264490e7-5415-4353-8e9b-6f7e5998f561" + ] + }, + "UUID_91e023f4-84c2-4f5f-af49-45a6cd87d0f1": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2687397.162, + 1246133.353, + 616.177, + 2687399.889, + 1246135.145, + 617.405 + ], + "parents": + [ + "UUID_29802826-7cf9-4d37-8cf3-46551947d383" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 130, + 131, + 132, + 133, + 134 + ] + ], + [ + [ + 132, + 135, + 133 + ] + ], + [ + [ + 136, + 131, + 130 + ] + ], + [ + [ + 137, + 134, + 133, + 135 + ] + ], + [ + [ + 137, + 136, + 130, + 134 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_86cb892a-059a-4ee1-9b05-41beab140553": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2685696.529, + 1246012.3, + 485.878, + 2685708.844, + 1246029.112, + 501.046 + ], + "parents": + [ + "UUID_a662769f-e5bd-4977-9c19-13840f38fb11" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149 + ] + ], + [ + [ + 150, + 151, + 152, + 153 + ] + ], + [ + [ + 153, + 152, + 142, + 141, + 154 + ] + ], + [ + [ + 141, + 140, + 155, + 154 + ] + ], + [ + [ + 140, + 139, + 156, + 155 + ] + ], + [ + [ + 139, + 138, + 157, + 156 + ] + ], + [ + [ + 138, + 149, + 158, + 157 + ] + ], + [ + [ + 149, + 148, + 159, + 158 + ] + ], + [ + [ + 148, + 147, + 160, + 159 + ] + ], + [ + [ + 147, + 146, + 150, + 160 + ] + ], + [ + [ + 146, + 145, + 161, + 151 + ] + ], + [ + [ + 145, + 144, + 162, + 161 + ] + ], + [ + [ + 144, + 143, + 163, + 162 + ] + ], + [ + [ + 142, + 152, + 163, + 143 + ] + ], + [ + [ + 164, + 156, + 165, + 166 + ] + ], + [ + [ + 156, + 155, + 167, + 165 + ] + ], + [ + [ + 155, + 156, + 168 + ] + ], + [ + [ + 158, + 168, + 156, + 164 + ] + ], + [ + [ + 158, + 159, + 155, + 168 + ] + ], + [ + [ + 159, + 169, + 167, + 155 + ] + ], + [ + [ + 170, + 171, + 172, + 173, + 174 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_0752325e-f0e8-4d1c-9253-0309cfb599d4": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684318.201, + 1246589.272, + 443.493, + 2684319.894, + 1246591.004, + 444.776 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 175, + 176, + 177 + ] + ], + [ + [ + 176, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 177 + ] + ], + [ + [ + 178, + 194, + 179 + ] + ], + [ + [ + 195, + 187, + 186, + 196 + ] + ], + [ + [ + 197, + 188, + 187, + 195 + ] + ], + [ + [ + 198, + 189, + 188, + 197 + ] + ], + [ + [ + 199, + 190, + 189, + 198 + ] + ], + [ + [ + 199, + 200, + 191, + 190 + ] + ], + [ + [ + 200, + 201, + 192, + 191 + ] + ], + [ + [ + 201, + 202, + 193, + 192 + ] + ], + [ + [ + 202, + 175, + 177, + 193 + ] + ], + [ + [ + 203, + 180, + 179, + 194 + ] + ], + [ + [ + 204, + 181, + 180, + 203 + ] + ], + [ + [ + 205, + 182, + 181, + 204 + ] + ], + [ + [ + 206, + 183, + 182, + 205 + ] + ], + [ + [ + 207, + 184, + 183, + 206 + ] + ], + [ + [ + 208, + 185, + 184, + 207 + ] + ], + [ + [ + 196, + 186, + 185, + 208 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_44dcb74c-c74c-4c18-9747-e4adf5adb872": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 3, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682537.579, + 1251790.762, + 439.0, + 2682553.581, + 1251815.555, + 457.552 + ], + "children": + [ + "UUID_64cc319a-4341-4087-b65b-ba29f964dbdd", + "UUID_7e400037-6c9f-4ec4-9833-afdabfc5043b" + ] + }, + "UUID_bec0b187-99f5-463e-a0c3-a8b7f56dfef7": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2679947.374, + 1248706.606, + 402.743, + 2679966.608, + 1248724.724, + 424.113 + ], + "parents": + [ + "UUID_0f6c77bc-8464-49e1-8dd0-433a11ba5429" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 209, + 210, + 211, + 212 + ] + ], + [ + [ + 211, + 213, + 214, + 215 + ] + ], + [ + [ + 213, + 210, + 216, + 214 + ] + ], + [ + [ + 217, + 216, + 210, + 218 + ] + ], + [ + [ + 217, + 218, + 209, + 219 + ] + ], + [ + [ + 209, + 212, + 220, + 219 + ] + ], + [ + [ + 212, + 221, + 222, + 220 + ] + ], + [ + [ + 221, + 211, + 215, + 222 + ] + ], + [ + [ + 223, + 217, + 224, + 225 + ] + ], + [ + [ + 217, + 223, + 226, + 227 + ] + ], + [ + [ + 223, + 225, + 226 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_44dbc8b0-9822-4bb7-8898-b0067732ca3f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2679962.824, + 1248710.995, + 423.73, + 2679963.662, + 1248711.857, + 424.761 + ], + "parents": + [ + "UUID_0f6c77bc-8464-49e1-8dd0-433a11ba5429" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 228, + 229, + 230, + 231, + 232 + ] + ], + [ + [ + 233, + 234, + 231, + 230 + ] + ], + [ + [ + 235, + 236, + 234, + 233, + 217 + ] + ], + [ + [ + 228, + 232, + 236, + 235 + ] + ], + [ + [ + 231, + 234, + 236, + 232 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_7949827f-0330-4436-8265-e6347a3540ad": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683133.623, + 1243634.23, + 418.38, + 2683136.505, + 1243637.224, + 419.329 + ], + "parents": + [ + "UUID_889b7d4a-cbf4-4aa3-a9aa-2e20e87b080d" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 237, + 238, + 239, + 240 + ] + ], + [ + [ + 238, + 241, + 242, + 239 + ] + ], + [ + [ + 243, + 237, + 240, + 244 + ] + ], + [ + [ + 241, + 243, + 244, + 242 + ] + ], + [ + [ + 244, + 240, + 239, + 242 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_ad20451e-e9bd-4896-b0c7-b9aba4490e33": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2684313.841, + 1246584.131, + 421.992, + 2684343.491, + 1246611.52, + 448.133 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 245, + 246, + 247, + 248 + ] + ], + [ + [ + 246, + 249, + 250, + 247 + ] + ], + [ + [ + 249, + 251, + 252, + 250 + ] + ], + [ + [ + 251, + 253, + 254, + 252 + ] + ], + [ + [ + 253, + 255, + 256, + 254 + ] + ], + [ + [ + 255, + 257, + 258, + 256 + ] + ], + [ + [ + 257, + 259, + 260, + 258 + ] + ], + [ + [ + 259, + 261, + 262, + 260 + ] + ], + [ + [ + 261, + 263, + 264, + 262 + ] + ], + [ + [ + 263, + 265, + 266, + 264 + ] + ], + [ + [ + 265, + 267, + 268, + 266 + ] + ], + [ + [ + 267, + 269, + 270, + 268 + ] + ], + [ + [ + 269, + 271, + 272, + 270 + ] + ], + [ + [ + 271, + 273, + 274, + 272 + ] + ], + [ + [ + 273, + 275, + 276, + 274 + ] + ], + [ + [ + 275, + 277, + 278, + 276 + ] + ], + [ + [ + 277, + 279, + 280, + 278 + ] + ], + [ + [ + 279, + 281, + 282, + 280 + ] + ], + [ + [ + 281, + 283, + 284, + 282 + ] + ], + [ + [ + 283, + 285, + 286, + 284 + ] + ], + [ + [ + 285, + 287, + 288, + 286 + ] + ], + [ + [ + 287, + 289, + 290, + 288 + ] + ], + [ + [ + 289, + 291, + 292, + 290 + ] + ], + [ + [ + 291, + 293, + 294, + 292 + ] + ], + [ + [ + 293, + 295, + 296, + 294 + ] + ], + [ + [ + 295, + 297, + 298, + 296 + ] + ], + [ + [ + 297, + 299, + 300, + 298 + ] + ], + [ + [ + 299, + 301, + 302, + 300 + ] + ], + [ + [ + 301, + 303, + 304, + 302 + ] + ], + [ + [ + 303, + 305, + 306, + 304 + ] + ], + [ + [ + 305, + 307, + 308, + 306 + ] + ], + [ + [ + 307, + 309, + 310, + 308 + ] + ], + [ + [ + 309, + 311, + 312, + 310 + ] + ], + [ + [ + 311, + 313, + 314, + 312 + ] + ], + [ + [ + 313, + 315, + 316, + 314 + ] + ], + [ + [ + 315, + 317, + 318, + 316 + ] + ], + [ + [ + 317, + 319, + 320, + 318 + ] + ], + [ + [ + 319, + 321, + 322, + 320 + ] + ], + [ + [ + 321, + 323, + 324, + 322 + ] + ], + [ + [ + 323, + 325, + 326, + 324 + ] + ], + [ + [ + 325, + 327, + 328, + 326 + ] + ], + [ + [ + 327, + 329, + 330, + 328 + ] + ], + [ + [ + 329, + 331, + 332, + 330 + ] + ], + [ + [ + 331, + 333, + 334, + 332 + ] + ], + [ + [ + 333, + 335, + 336, + 334 + ] + ], + [ + [ + 335, + 337, + 338, + 336 + ] + ], + [ + [ + 339, + 340, + 341, + 338 + ] + ], + [ + [ + 341, + 340, + 342 + ] + ], + [ + [ + 343, + 344, + 345 + ] + ], + [ + [ + 346, + 347, + 348, + 349 + ] + ], + [ + [ + 350, + 351, + 352, + 353, + 354, + 355, + 356 + ] + ], + [ + [ + 357, + 358, + 359, + 360, + 361, + 342, + 340, + 339, + 362, + 363, + 364 + ] + ], + [ + [ + 365, + 366, + 358, + 357 + ] + ], + [ + [ + 367, + 368, + 369, + 358, + 366, + 370, + 371, + 372 + ] + ], + [ + [ + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380 + ] + ], + [ + [ + 381, + 382, + 383, + 384 + ] + ], + [ + [ + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392 + ] + ], + [ + [ + 393, + 394, + 395, + 396, + 397, + 398 + ] + ], + [ + [ + 358, + 369, + 399, + 400, + 401, + 344, + 343, + 402, + 403, + 359 + ] + ], + [ + [ + 404, + 405, + 406, + 407 + ] + ], + [ + [ + 408, + 409, + 345 + ] + ], + [ + [ + 410, + 409, + 408 + ] + ], + [ + [ + 411, + 409, + 410 + ] + ], + [ + [ + 412, + 409, + 411 + ] + ], + [ + [ + 413, + 409, + 412 + ] + ], + [ + [ + 414, + 409, + 413 + ] + ], + [ + [ + 415, + 409, + 414 + ] + ], + [ + [ + 416, + 409, + 415 + ] + ], + [ + [ + 417, + 409, + 416 + ] + ], + [ + [ + 338, + 409, + 417 + ] + ], + [ + [ + 341, + 409, + 338 + ] + ], + [ + [ + 342, + 361, + 409, + 341 + ] + ], + [ + [ + 409, + 361, + 360 + ] + ], + [ + [ + 343, + 345, + 409, + 402 + ] + ], + [ + [ + 409, + 403, + 402 + ] + ], + [ + [ + 360, + 359, + 403, + 409 + ] + ], + [ + [ + 418, + 419, + 420, + 421, + 422, + 337, + 335, + 333, + 331, + 329, + 327, + 325, + 323, + 321, + 319, + 317, + 315, + 313, + 311, + 309, + 307, + 305, + 303, + 301, + 299, + 297, + 295, + 293, + 291, + 289, + 287, + 285, + 283, + 281, + 279, + 277, + 275, + 273, + 271, + 269, + 267, + 265, + 263, + 261, + 259, + 257, + 255, + 253, + 251, + 249, + 246, + 245, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455 + ] + ], + [ + [ + 434, + 433, + 456, + 346 + ] + ], + [ + [ + 433, + 432, + 457, + 456 + ] + ], + [ + [ + 431, + 458, + 457, + 432 + ] + ], + [ + [ + 444, + 443, + 459, + 460 + ] + ], + [ + [ + 443, + 442, + 354, + 459 + ] + ], + [ + [ + 453, + 452, + 350, + 356 + ] + ], + [ + [ + 452, + 451, + 461, + 350 + ] + ], + [ + [ + 451, + 450, + 462, + 461 + ] + ], + [ + [ + 450, + 449, + 463, + 462 + ] + ], + [ + [ + 449, + 448, + 464, + 463 + ] + ], + [ + [ + 448, + 447, + 465, + 464 + ] + ], + [ + [ + 447, + 446, + 466, + 465 + ] + ], + [ + [ + 446, + 445, + 467, + 466 + ] + ], + [ + [ + 445, + 444, + 460, + 467 + ] + ], + [ + [ + 339, + 337, + 422, + 468 + ] + ], + [ + [ + 422, + 421, + 469, + 468 + ] + ], + [ + [ + 421, + 420, + 470, + 469 + ] + ], + [ + [ + 420, + 419, + 471, + 470 + ] + ], + [ + [ + 419, + 418, + 472, + 471 + ] + ], + [ + [ + 418, + 455, + 357, + 472 + ] + ], + [ + [ + 455, + 454, + 365, + 357 + ] + ], + [ + [ + 365, + 393, + 398, + 366 + ] + ], + [ + [ + 367, + 388, + 387, + 368 + ] + ], + [ + [ + 438, + 437, + 369, + 368 + ] + ], + [ + [ + 398, + 473, + 370, + 366 + ] + ], + [ + [ + 474, + 390, + 371 + ] + ], + [ + [ + 371, + 390, + 389, + 372 + ] + ], + [ + [ + 372, + 389, + 388, + 367 + ] + ], + [ + [ + 442, + 441, + 373, + 475 + ] + ], + [ + [ + 441, + 440, + 374, + 373 + ] + ], + [ + [ + 440, + 439, + 375, + 374 + ] + ], + [ + [ + 476, + 397, + 378, + 377 + ] + ], + [ + [ + 378, + 397, + 396, + 379 + ] + ], + [ + [ + 379, + 396, + 395, + 383, + 382, + 380 + ] + ], + [ + [ + 477, + 354, + 475, + 380 + ] + ], + [ + [ + 383, + 395, + 394, + 384 + ] + ], + [ + [ + 478, + 355, + 381, + 384 + ] + ], + [ + [ + 355, + 477, + 382, + 381 + ] + ], + [ + [ + 385, + 376, + 375, + 386 + ] + ], + [ + [ + 439, + 438, + 387, + 386 + ] + ], + [ + [ + 474, + 370, + 391 + ] + ], + [ + [ + 473, + 476, + 392, + 391 + ] + ], + [ + [ + 392, + 377, + 376, + 385 + ] + ], + [ + [ + 454, + 453, + 479, + 393 + ] + ], + [ + [ + 356, + 478, + 394, + 479 + ] + ], + [ + [ + 437, + 436, + 480, + 369 + ] + ], + [ + [ + 436, + 435, + 481, + 480 + ] + ], + [ + [ + 435, + 434, + 482, + 481 + ] + ], + [ + [ + 346, + 458, + 483, + 482 + ] + ], + [ + [ + 458, + 431, + 430, + 484, + 483 + ] + ], + [ + [ + 430, + 429, + 485, + 484 + ] + ], + [ + [ + 429, + 428, + 486, + 485 + ] + ], + [ + [ + 486, + 404, + 487, + 488 + ] + ], + [ + [ + 425, + 424, + 489, + 488 + ] + ], + [ + [ + 424, + 423, + 490, + 489 + ] + ], + [ + [ + 428, + 427, + 491, + 404 + ] + ], + [ + [ + 427, + 426, + 492, + 491 + ] + ], + [ + [ + 426, + 425, + 487, + 492 + ] + ], + [ + [ + 345, + 344, + 490, + 493 + ] + ], + [ + [ + 423, + 245, + 248, + 493 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_4787fb9c-ddbf-4bfc-bc5c-3b5fdfbf4d2f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682069.062, + 1246051.309, + 436.411, + 2682070.27, + 1246052.086, + 437.917 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 494, + 495, + 496, + 497 + ] + ], + [ + [ + 495, + 498, + 499, + 496 + ] + ], + [ + [ + 500, + 501, + 499, + 498 + ] + ], + [ + [ + 494, + 497, + 501, + 500 + ] + ], + [ + [ + 496, + 499, + 501, + 497 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_11430239-5826-4a33-952a-9dd56926afa6": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682732.894, + 1248422.666, + 419.525, + 2682735.101, + 1248425.09, + 421.107 + ], + "parents": + [ + "UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 502, + 503, + 504, + 505, + 506 + ] + ], + [ + [ + 504, + 507, + 505 + ] + ], + [ + [ + 508, + 503, + 502 + ] + ], + [ + [ + 509, + 506, + 505, + 507 + ] + ], + [ + [ + 509, + 508, + 502, + 506 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_cadcdc56-6326-4d2a-97da-9efab40fa1d6": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2679103.095, + 1249381.644, + 407.274, + 2679104.063, + 1249382.924, + 409.04 + ], + "parents": + [ + "UUID_68e41ae6-0f82-4bc3-a20c-125b93c0eac4" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 510, + 511, + 512, + 513 + ] + ], + [ + [ + 511, + 510, + 514, + 515 + ] + ], + [ + [ + 514, + 516, + 517, + 515 + ] + ], + [ + [ + 513, + 512, + 517, + 516 + ] + ], + [ + [ + 511, + 515, + 517, + 512 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_2c1fe1af-0627-4127-98c7-7ef4eb3310f2": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683937.981, + 1248488.208, + 510.825, + 2683939.753, + 1248490.085, + 512.84 + ], + "parents": + [ + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 518, + 519, + 520, + 521, + 522 + ] + ], + [ + [ + 520, + 523, + 521 + ] + ], + [ + [ + 524, + 519, + 518 + ] + ], + [ + [ + 523, + 525, + 522, + 521 + ] + ], + [ + [ + 525, + 524, + 518, + 522 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_5ae33ec7-bfe4-4574-b6a9-3c87ee6c3e21": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2679009.261, + 1250828.998, + 440.451, + 2679010.604, + 1250830.358, + 441.987 + ], + "parents": + [ + "UUID_04153856-c970-4f34-a0cf-ff14691e3841" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 526, + 527, + 528, + 529 + ] + ], + [ + [ + 530, + 531, + 527, + 526 + ] + ], + [ + [ + 532, + 533, + 531, + 530 + ] + ], + [ + [ + 529, + 528, + 533, + 532 + ] + ], + [ + [ + 531, + 533, + 528, + 527 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_77da0ac4-8ccc-4c27-a76c-24439c6df852": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2685582.125, + 1252118.148, + 423.898, + 2685592.437, + 1252129.141, + 435.63 + ], + "parents": + [ + "UUID_6ef0e1c5-f08e-410d-8172-3f5977e3b681" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545 + ] + ], + [ + [ + 538, + 537, + 546, + 547 + ] + ], + [ + [ + 537, + 536, + 548, + 546 + ] + ], + [ + [ + 536, + 535, + 549, + 548 + ] + ], + [ + [ + 535, + 534, + 550, + 549 + ] + ], + [ + [ + 545, + 551, + 550, + 534 + ] + ], + [ + [ + 551, + 545, + 544, + 552 + ] + ], + [ + [ + 544, + 543, + 553, + 552 + ] + ], + [ + [ + 543, + 542, + 554, + 553 + ] + ], + [ + [ + 542, + 541, + 555, + 554 + ] + ], + [ + [ + 541, + 540, + 556, + 555 + ] + ], + [ + [ + 540, + 539, + 557, + 556 + ] + ], + [ + [ + 539, + 538, + 547, + 557 + ] + ], + [ + [ + 558, + 559, + 551, + 547 + ] + ], + [ + [ + 554, + 560, + 547, + 551, + 552, + 553 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_82204fbd-861a-4852-bf75-33ce1e2599dd": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682729.801, + 1248425.172, + 419.522, + 2682732.012, + 1248427.6, + 421.107 + ], + "parents": + [ + "UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 561, + 562, + 563, + 564, + 565 + ] + ], + [ + [ + 563, + 566, + 564 + ] + ], + [ + [ + 567, + 562, + 561 + ] + ], + [ + [ + 568, + 565, + 564, + 566 + ] + ], + [ + [ + 568, + 567, + 561, + 565 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c1ae0895-722f-4328-8861-ea8c6680f92f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2683654.839, + 1246823.101, + 406.041, + 2683674.144, + 1246842.766, + 428.704 + ], + "parents": + [ + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580 + ] + ], + [ + [ + 581, + 582, + 583 + ] + ], + [ + [ + 581, + 583, + 584, + 585 + ] + ], + [ + [ + 586, + 587, + 585, + 584, + 588, + 589 + ] + ], + [ + [ + 590, + 589, + 588, + 591, + 592 + ] + ], + [ + [ + 593, + 592, + 591, + 594 + ] + ], + [ + [ + 595, + 593, + 594 + ] + ], + [ + [ + 571, + 596, + 597, + 572 + ] + ], + [ + [ + 598, + 599, + 587, + 586 + ] + ], + [ + [ + 578, + 577, + 600, + 587 + ] + ], + [ + [ + 577, + 576, + 601, + 600 + ] + ], + [ + [ + 576, + 575, + 602, + 601 + ] + ], + [ + [ + 603, + 580, + 579, + 604 + ] + ], + [ + [ + 579, + 578, + 599, + 604 + ] + ], + [ + [ + 575, + 574, + 605, + 602 + ] + ], + [ + [ + 574, + 573, + 606, + 605 + ] + ], + [ + [ + 573, + 572, + 597, + 606 + ] + ], + [ + [ + 596, + 571, + 570, + 607 + ] + ], + [ + [ + 570, + 569, + 608, + 607 + ] + ], + [ + [ + 603, + 590, + 608, + 569, + 580 + ] + ], + [ + [ + 589, + 590, + 603, + 609 + ] + ], + [ + [ + 609, + 598, + 586, + 589 + ] + ], + [ + [ + 591, + 588, + 584, + 583, + 582, + 610, + 595, + 594 + ] + ], + [ + [ + 611, + 597, + 596, + 612 + ] + ], + [ + [ + 613, + 611, + 612, + 610, + 582, + 581 + ] + ], + [ + [ + 603, + 614, + 615, + 609 + ] + ], + [ + [ + 606, + 597, + 611, + 613, + 616 + ] + ], + [ + [ + 595, + 610, + 612, + 596, + 607, + 617, + 593 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c737f44b-b56e-4070-b0c3-b75194cda5e1": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683162.145, + 1249800.593, + 486.958, + 2683164.897, + 1249802.407, + 488.826 + ], + "parents": + [ + "UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 618, + 619, + 620, + 621 + ] + ], + [ + [ + 618, + 622, + 619 + ] + ], + [ + [ + 623, + 621, + 620 + ] + ], + [ + [ + 623, + 620, + 619, + 622 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_a091883a-427d-4cb7-8f34-f42728d2254b": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682721.069, + 1248417.849, + 419.624, + 2682724.049, + 1248420.868, + 421.016 + ], + "parents": + [ + "UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 624, + 625, + 626, + 627 + ] + ], + [ + [ + 624, + 628, + 625 + ] + ], + [ + [ + 629, + 627, + 626 + ] + ], + [ + [ + 628, + 629, + 626, + 625 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_df47c00c-fa20-43b9-903b-1368abe569cd": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683158.25, + 1249800.837, + 486.966, + 2683161.001, + 1249802.643, + 488.826 + ], + "parents": + [ + "UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 630, + 631, + 632, + 633 + ] + ], + [ + [ + 630, + 634, + 631 + ] + ], + [ + [ + 635, + 633, + 632 + ] + ], + [ + [ + 635, + 632, + 631, + 634 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_49871a1e-8f11-432e-8a42-6fe31ff0f80b": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2679101.284, + 1249377.277, + 402.098, + 2679102.946, + 1249378.63, + 404.528 + ], + "parents": + [ + "UUID_68e41ae6-0f82-4bc3-a20c-125b93c0eac4" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 636, + 637, + 638, + 639 + ] + ], + [ + [ + 637, + 636, + 640, + 641 + ] + ], + [ + [ + 642, + 643, + 641, + 640 + ] + ], + [ + [ + 644, + 645, + 643, + 642 + ] + ], + [ + [ + 638, + 646, + 647, + 645, + 644, + 639 + ] + ], + [ + [ + 645, + 647, + 643 + ] + ], + [ + [ + 646, + 641, + 643, + 647 + ] + ], + [ + [ + 637, + 641, + 646, + 638 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_5911e8d0-2949-4c11-813b-9d7d068d827b": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2684570.569, + 1246307.802, + 427.998, + 2684588.664, + 1246331.424, + 452.009 + ], + "parents": + [ + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670 + ] + ], + [ + [ + 671, + 672, + 659, + 658 + ] + ], + [ + [ + 664, + 663, + 673, + 674 + ] + ], + [ + [ + 663, + 662, + 675, + 673 + ] + ], + [ + [ + 662, + 661, + 676, + 675 + ] + ], + [ + [ + 661, + 660, + 677, + 676 + ] + ], + [ + [ + 659, + 672, + 677, + 660 + ] + ], + [ + [ + 650, + 649, + 678, + 679 + ] + ], + [ + [ + 649, + 648, + 680, + 678 + ] + ], + [ + [ + 648, + 670, + 681, + 680 + ] + ], + [ + [ + 670, + 669, + 682, + 681 + ] + ], + [ + [ + 669, + 668, + 683, + 682 + ] + ], + [ + [ + 668, + 667, + 684, + 683 + ] + ], + [ + [ + 667, + 666, + 685, + 684 + ] + ], + [ + [ + 666, + 665, + 686, + 685 + ] + ], + [ + [ + 653, + 652, + 687, + 688 + ] + ], + [ + [ + 652, + 651, + 689, + 687 + ] + ], + [ + [ + 651, + 650, + 690, + 689 + ] + ], + [ + [ + 690, + 679, + 686, + 691 + ] + ], + [ + [ + 665, + 664, + 674, + 691 + ] + ], + [ + [ + 671, + 658, + 657, + 692 + ] + ], + [ + [ + 657, + 656, + 693, + 692 + ] + ], + [ + [ + 656, + 655, + 694, + 693 + ] + ], + [ + [ + 655, + 654, + 695, + 694 + ] + ], + [ + [ + 654, + 653, + 688, + 695 + ] + ], + [ + [ + 672, + 671, + 696, + 697, + 698, + 699 + ] + ], + [ + [ + 699, + 698, + 700, + 701 + ] + ], + [ + [ + 702, + 672, + 699, + 701 + ] + ], + [ + [ + 703, + 704, + 705, + 706 + ] + ], + [ + [ + 696, + 707, + 708, + 697 + ] + ], + [ + [ + 708, + 700, + 698, + 697 + ] + ], + [ + [ + 671, + 709, + 707, + 696 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_82037b5d-9af8-45b4-bc86-b3ad088690bc": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-04-10", + "Region": 7, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2680155.209, + 1248634.331, + 404.0, + 2680178.417, + 1248659.099, + 415.871 + ], + "children": + [ + "UUID_c4e9cd26-20ab-4fed-a2e3-af22419f247f" + ] + }, + "UUID_4f2a6fa6-ad34-48df-a9db-18af2f27c722": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2681492.841, + 1247290.828, + 411.501, + 2681510.139, + 1247307.933, + 433.322 + ], + "parents": + [ + "UUID_fcc74528-8be9-40b2-9e0b-50b7d124706f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 710, + 711, + 712, + 713 + ] + ], + [ + [ + 714, + 715, + 716, + 717 + ] + ], + [ + [ + 718, + 719, + 715, + 714 + ] + ], + [ + [ + 717, + 716, + 720, + 721 + ] + ], + [ + [ + 722, + 712, + 723, + 724 + ] + ], + [ + [ + 712, + 711, + 725, + 723 + ] + ], + [ + [ + 711, + 726, + 727, + 725 + ] + ], + [ + [ + 728, + 729, + 719, + 730 + ] + ], + [ + [ + 731, + 732, + 730, + 718 + ] + ], + [ + [ + 733, + 734, + 735, + 736 + ] + ], + [ + [ + 735, + 737, + 738, + 739 + ] + ], + [ + [ + 734, + 710, + 740, + 737 + ] + ], + [ + [ + 710, + 741, + 742, + 740 + ] + ], + [ + [ + 732, + 731, + 722, + 743 + ] + ], + [ + [ + 743, + 724, + 727, + 744 + ] + ], + [ + [ + 726, + 733, + 736, + 744 + ] + ], + [ + [ + 745, + 746, + 720, + 729, + 728 + ] + ], + [ + [ + 747, + 739, + 738, + 742, + 748 + ] + ], + [ + [ + 741, + 721, + 746, + 748 + ] + ], + [ + [ + 715, + 719, + 729, + 720, + 716 + ] + ], + [ + [ + 749, + 750, + 727, + 724 + ] + ], + [ + [ + 730, + 732, + 736, + 735, + 739, + 747, + 745, + 728 + ] + ], + [ + [ + 738, + 737, + 751, + 752, + 753, + 754 + ] + ], + [ + [ + 732, + 743, + 744, + 736 + ] + ], + [ + [ + 715, + 716, + 755, + 756 + ] + ], + [ + [ + 747, + 757, + 758, + 745 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_cb878e1d-bbc7-4b38-b5e9-789e1136fa82": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682017.343, + 1243583.906, + 471.983, + 2682027.11, + 1243595.538, + 484.467 + ], + "parents": + [ + "UUID_72dfed05-23ab-4b21-95e9-c0afa66cc9a5" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 759, + 760, + 761, + 762 + ] + ], + [ + [ + 760, + 763, + 764, + 761 + ] + ], + [ + [ + 765, + 766, + 767, + 768 + ] + ], + [ + [ + 766, + 769, + 770, + 767 + ] + ], + [ + [ + 771, + 759, + 762, + 772 + ] + ], + [ + [ + 773, + 774, + 775, + 776 + ] + ], + [ + [ + 772, + 770, + 769, + 771 + ] + ], + [ + [ + 777, + 778, + 779, + 780, + 781 + ] + ], + [ + [ + 782, + 778, + 777 + ] + ], + [ + [ + 780, + 779, + 783 + ] + ], + [ + [ + 784, + 785, + 786, + 787 + ] + ], + [ + [ + 788, + 789, + 790 + ] + ], + [ + [ + 790, + 789, + 775 + ] + ], + [ + [ + 783, + 779, + 791, + 778, + 782, + 792, + 793, + 794, + 795, + 776, + 787, + 792 + ] + ], + [ + [ + 796, + 770, + 797, + 798, + 793, + 786 + ] + ], + [ + [ + 776, + 799, + 789, + 787 + ] + ], + [ + [ + 800, + 801, + 770, + 787, + 789 + ] + ], + [ + [ + 789, + 788, + 802, + 803, + 800 + ] + ], + [ + [ + 792, + 782, + 777, + 781 + ] + ], + [ + [ + 780, + 783, + 792, + 781 + ] + ], + [ + [ + 763, + 760, + 771, + 769, + 766, + 804, + 805 + ] + ], + [ + [ + 796, + 786, + 785 + ] + ], + [ + [ + 796, + 785, + 784, + 770 + ] + ], + [ + [ + 787, + 770, + 784 + ] + ], + [ + [ + 788, + 806, + 805, + 802 + ] + ], + [ + [ + 805, + 804, + 807, + 802 + ] + ], + [ + [ + 804, + 765, + 768, + 807 + ] + ], + [ + [ + 806, + 788, + 790, + 808 + ] + ], + [ + [ + 774, + 808, + 790, + 775 + ] + ], + [ + [ + 763, + 773, + 776, + 764 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_a70e2b37-fb06-4934-9b6f-2e8242cf9b5e": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683165.874, + 1249800.269, + 486.947, + 2683170.067, + 1249802.18, + 488.826 + ], + "parents": + [ + "UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 809, + 810, + 811, + 812 + ] + ], + [ + [ + 809, + 813, + 810 + ] + ], + [ + [ + 814, + 812, + 811 + ] + ], + [ + [ + 814, + 811, + 810, + 813 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_f250cf3b-454e-4911-916d-98be59f30378": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684579.016, + 1246318.025, + 452.009, + 2684581.269, + 1246320.226, + 452.462 + ], + "parents": + [ + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 815, + 816, + 817, + 818 + ] + ], + [ + [ + 819, + 820, + 816, + 815 + ] + ], + [ + [ + 821, + 822, + 820, + 819 + ] + ], + [ + [ + 818, + 817, + 822, + 821 + ] + ], + [ + [ + 816, + 820, + 822, + 817 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_8b0217c1-4c57-4e86-a96e-6a2df434b2c4": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2680237.351, + 1248146.411, + 420.392, + 2680239.533, + 1248148.541, + 422.078 + ], + "parents": + [ + "UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 823, + 824, + 825, + 826 + ] + ], + [ + [ + 827, + 828, + 824, + 823 + ] + ], + [ + [ + 829, + 830, + 828, + 827 + ] + ], + [ + [ + 826, + 825, + 830, + 829 + ] + ], + [ + [ + 824, + 828, + 830, + 825 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_6413482a-d8c9-47e3-b408-37127b34e251": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2681881.438, + 1249600.367, + 402.889, + 2681909.709, + 1249628.16, + 413.634 + ], + "parents": + [ + "UUID_e2e378c6-c78f-4a9a-81df-9cf1281aaa95" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853 + ] + ], + [ + [ + 834, + 854, + 855, + 835 + ] + ], + [ + [ + 833, + 856, + 854, + 834 + ] + ], + [ + [ + 832, + 857, + 856, + 833 + ] + ], + [ + [ + 831, + 858, + 857, + 832 + ] + ], + [ + [ + 853, + 859, + 858, + 831 + ] + ], + [ + [ + 852, + 860, + 859, + 853 + ] + ], + [ + [ + 851, + 861, + 860, + 852 + ] + ], + [ + [ + 850, + 862, + 861, + 851 + ] + ], + [ + [ + 849, + 863, + 862, + 850 + ] + ], + [ + [ + 848, + 864, + 863, + 849 + ] + ], + [ + [ + 847, + 865, + 864, + 848 + ] + ], + [ + [ + 846, + 866, + 865, + 847 + ] + ], + [ + [ + 835, + 855, + 867, + 836 + ] + ], + [ + [ + 836, + 867, + 868, + 837 + ] + ], + [ + [ + 837, + 868, + 869, + 838 + ] + ], + [ + [ + 838, + 869, + 870, + 839 + ] + ], + [ + [ + 839, + 870, + 871, + 840 + ] + ], + [ + [ + 840, + 871, + 872, + 841 + ] + ], + [ + [ + 841, + 872, + 873, + 842 + ] + ], + [ + [ + 842, + 873, + 874, + 843 + ] + ], + [ + [ + 843, + 874, + 875, + 844 + ] + ], + [ + [ + 844, + 875, + 876, + 845 + ] + ], + [ + [ + 845, + 876, + 866, + 846 + ] + ], + [ + [ + 854, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 876, + 875, + 874, + 873, + 872, + 871, + 870, + 869, + 868, + 867, + 855 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_f260179d-ec13-4fc1-a73c-5c812d80b561": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2683705.7, + 1249297.241, + 494.245, + 2683725.799, + 1249313.857, + 513.941 + ], + "parents": + [ + "UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 877, + 878, + 879, + 880 + ] + ], + [ + [ + 881, + 882, + 879, + 878, + 883 + ] + ], + [ + [ + 882, + 881, + 884, + 885 + ] + ], + [ + [ + 881, + 883, + 886, + 887 + ] + ], + [ + [ + 886, + 888, + 889, + 887 + ] + ], + [ + [ + 888, + 890, + 891, + 889 + ] + ], + [ + [ + 892, + 891, + 893 + ] + ], + [ + [ + 890, + 894, + 895, + 893 + ] + ], + [ + [ + 894, + 896, + 897, + 895 + ] + ], + [ + [ + 898, + 899, + 900, + 901 + ] + ], + [ + [ + 896, + 902, + 903, + 897 + ] + ], + [ + [ + 903, + 904, + 905 + ] + ], + [ + [ + 902, + 906, + 907, + 904 + ] + ], + [ + [ + 906, + 908, + 909, + 907 + ] + ], + [ + [ + 908, + 910, + 911, + 909 + ] + ], + [ + [ + 910, + 912, + 913, + 911 + ] + ], + [ + [ + 912, + 914, + 915, + 913 + ] + ], + [ + [ + 914, + 916, + 917, + 915 + ] + ], + [ + [ + 916, + 918, + 919, + 917 + ] + ], + [ + [ + 918, + 920, + 921, + 919 + ] + ], + [ + [ + 920, + 922, + 923, + 921 + ] + ], + [ + [ + 922, + 924, + 925, + 923 + ] + ], + [ + [ + 926, + 927, + 928, + 929 + ] + ], + [ + [ + 930, + 931, + 932, + 892 + ] + ], + [ + [ + 926, + 933, + 934, + 927 + ] + ], + [ + [ + 934, + 928, + 927 + ] + ], + [ + [ + 926, + 929, + 935, + 901 + ] + ], + [ + [ + 900, + 880, + 885, + 884, + 932, + 931 + ] + ], + [ + [ + 880, + 936, + 937, + 885 + ] + ], + [ + [ + 884, + 938, + 939, + 932 + ] + ], + [ + [ + 892, + 932, + 939, + 940 + ] + ], + [ + [ + 941, + 942, + 930, + 892 + ] + ], + [ + [ + 943, + 942, + 941 + ] + ], + [ + [ + 900, + 931, + 930, + 942, + 943, + 933, + 926, + 901 + ] + ], + [ + [ + 944, + 905, + 945 + ] + ], + [ + [ + 933, + 905, + 944, + 946 + ] + ], + [ + [ + 933, + 946, + 947, + 934 + ] + ], + [ + [ + 948, + 928, + 934, + 947 + ] + ], + [ + [ + 886, + 883, + 878, + 877, + 899, + 898, + 949, + 924, + 922, + 920, + 918, + 916, + 914, + 912, + 910, + 908, + 906, + 902, + 896, + 894, + 890, + 888 + ] + ], + [ + [ + 949, + 898, + 901, + 935 + ] + ], + [ + [ + 935, + 925, + 924, + 949 + ] + ], + [ + [ + 877, + 880, + 900, + 899 + ] + ], + [ + [ + 948, + 950, + 929, + 928 + ] + ], + [ + [ + 951, + 935, + 929, + 950 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_a410165b-acd2-4bb2-9aa1-49e19a8a11e5": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2684055.308, + 1251798.275, + 424.623, + 2684060.289, + 1251802.821, + 443.136 + ], + "parents": + [ + "UUID_c0961fd6-9cd2-48cb-9d3e-76a2d51f5ed6" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 952, + 953, + 954, + 955 + ] + ], + [ + [ + 954, + 953, + 956, + 957 + ] + ], + [ + [ + 953, + 952, + 958, + 956 + ] + ], + [ + [ + 952, + 955, + 959, + 958 + ] + ], + [ + [ + 955, + 954, + 957, + 959 + ] + ], + [ + [ + 958, + 959, + 957, + 956 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_12568183-2080-4683-ba1c-02a88e41c098": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683936.571, + 1248489.955, + 510.825, + 2683938.343, + 1248491.831, + 512.84 + ], + "parents": + [ + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 960, + 961, + 962, + 963, + 964 + ] + ], + [ + [ + 962, + 965, + 963 + ] + ], + [ + [ + 966, + 961, + 960 + ] + ], + [ + [ + 965, + 967, + 964, + 963 + ] + ], + [ + [ + 967, + 966, + 960, + 964 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_95eed0ad-5544-4f61-bb4e-1fbc6c9b9126": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684572.205, + 1246327.069, + 447.39, + 2684573.706, + 1246328.532, + 449.359 + ], + "parents": + [ + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 968, + 969, + 970 + ] + ], + [ + [ + 969, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 970 + ] + ], + [ + [ + 971, + 985, + 972 + ] + ], + [ + [ + 986, + 987, + 979, + 978 + ] + ], + [ + [ + 988, + 980, + 979, + 987 + ] + ], + [ + [ + 989, + 981, + 980, + 988 + ] + ], + [ + [ + 990, + 982, + 981, + 989 + ] + ], + [ + [ + 991, + 983, + 982, + 990 + ] + ], + [ + [ + 991, + 992, + 984, + 983 + ] + ], + [ + [ + 992, + 968, + 970, + 984 + ] + ], + [ + [ + 993, + 973, + 972, + 985 + ] + ], + [ + [ + 994, + 974, + 973, + 993 + ] + ], + [ + [ + 995, + 975, + 974, + 994 + ] + ], + [ + [ + 996, + 976, + 975, + 995 + ] + ], + [ + [ + 997, + 977, + 976, + 996 + ] + ], + [ + [ + 986, + 978, + 977, + 997 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_f76df3d0-4b15-4c4c-b56e-15fc5dafa091": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682072.796, + 1246041.637, + 432.496, + 2682074.839, + 1246042.904, + 434.971 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 998, + 999, + 1000, + 1001 + ] + ], + [ + [ + 998, + 1002, + 999 + ] + ], + [ + [ + 1003, + 1001, + 1000 + ] + ], + [ + [ + 999, + 1002, + 1004, + 1005, + 1006 + ] + ], + [ + [ + 1000, + 999, + 1006 + ] + ], + [ + [ + 1005, + 1007, + 1003, + 1000, + 1006 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_549ea6f1-848d-4ff9-83c9-9f1623512d5e": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684331.991, + 1246599.612, + 442.686, + 2684334.208, + 1246601.808, + 444.481 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025 + ] + ], + [ + [ + 1011, + 1010, + 1026, + 1027 + ] + ], + [ + [ + 1008, + 1028, + 1029, + 1009 + ] + ], + [ + [ + 1026, + 1029, + 1028, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1027 + ] + ], + [ + [ + 1016, + 1039, + 1038, + 1017 + ] + ], + [ + [ + 1015, + 1040, + 1039, + 1016 + ] + ], + [ + [ + 1014, + 1041, + 1040, + 1015 + ] + ], + [ + [ + 1013, + 1042, + 1041, + 1014 + ] + ], + [ + [ + 1012, + 1043, + 1042, + 1013 + ] + ], + [ + [ + 1011, + 1027, + 1043, + 1012 + ] + ], + [ + [ + 1025, + 1030, + 1028, + 1008 + ] + ], + [ + [ + 1024, + 1031, + 1030, + 1025 + ] + ], + [ + [ + 1023, + 1032, + 1031, + 1024 + ] + ], + [ + [ + 1022, + 1033, + 1032, + 1023 + ] + ], + [ + [ + 1021, + 1034, + 1033, + 1022 + ] + ], + [ + [ + 1020, + 1035, + 1034, + 1021 + ] + ], + [ + [ + 1019, + 1036, + 1035, + 1020 + ] + ], + [ + [ + 1018, + 1037, + 1036, + 1019 + ] + ], + [ + [ + 1017, + 1038, + 1037, + 1018 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c4e9cd26-20ab-4fed-a2e3-af22419f247f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2680155.209, + 1248634.331, + 404.0, + 2680178.417, + 1248659.099, + 415.871 + ], + "parents": + [ + "UUID_82037b5d-9af8-45b4-bc86-b3ad088690bc" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1044, + 1045, + 1046, + 1047, + 1048, + 1049 + ] + ], + [ + [ + 1044, + 1049, + 1050, + 1051 + ] + ], + [ + [ + 1049, + 1048, + 1052, + 1050 + ] + ], + [ + [ + 1048, + 1047, + 1053, + 1052 + ] + ], + [ + [ + 1047, + 1046, + 1054, + 1053 + ] + ], + [ + [ + 1046, + 1045, + 1055, + 1054 + ] + ], + [ + [ + 1045, + 1044, + 1051, + 1055 + ] + ], + [ + [ + 1056, + 1057, + 1058, + 1059 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_e2e378c6-c78f-4a9a-81df-9cf1281aaa95": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB00", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 2, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2681881.438, + 1249600.367, + 402.889, + 2681909.709, + 1249628.16, + 413.634 + ], + "children": + [ + "UUID_6413482a-d8c9-47e3-b408-37127b34e251" + ] + }, + "UUID_924a2335-5cfc-4cf1-ac78-8f4941bccbe3": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2681684.467, + 1250088.676, + 456.996, + 2681688.025, + 1250090.804, + 458.99 + ], + "parents": + [ + "UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 95, + 96, + 1060, + 1061 + ] + ], + [ + [ + 96, + 1062, + 1063, + 1060 + ] + ], + [ + [ + 1062, + 1064, + 1063 + ] + ], + [ + [ + 1065, + 95, + 1061 + ] + ], + [ + [ + 1061, + 1060, + 1063, + 1066 + ] + ], + [ + [ + 1067, + 1066, + 1063, + 1064 + ] + ], + [ + [ + 1061, + 1066, + 1067, + 1065 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_72dfed05-23ab-4b21-95e9-c0afa66cc9a5": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 10, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682017.343, + 1243583.906, + 471.983, + 2682027.11, + 1243595.538, + 484.467 + ], + "children": + [ + "UUID_cb878e1d-bbc7-4b38-b5e9-789e1136fa82" + ] + }, + "UUID_17cd93ca-cac0-41a1-bcd1-effb2c2040c8": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2681897.823, + 1243533.057, + 455.28, + 2681906.584, + 1243541.868, + 461.492 + ], + "parents": + [ + "UUID_9556fbe1-9912-4c2a-bd00-ca9dc71f08b7" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1068, + 1069, + 1070, + 1071 + ] + ], + [ + [ + 1068, + 1071, + 1072, + 1073 + ] + ], + [ + [ + 1071, + 1070, + 1074, + 1072 + ] + ], + [ + [ + 1070, + 1069, + 1075, + 1074 + ] + ], + [ + [ + 1069, + 1068, + 1073, + 1075 + ] + ], + [ + [ + 1076, + 1077, + 1078, + 1079 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_5bd1cee6-b3f0-40fb-a6ae-833e88305e31": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2685094.36, + 1247519.89, + 501.0, + 2685115.971, + 1247541.809, + 515.969 + ], + "parents": + [ + "UUID_583c776f-5b0c-4d42-9c37-5b94e0c21a30" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126 + ] + ], + [ + [ + 1127, + 1128, + 1129 + ] + ], + [ + [ + 1130, + 1131, + 1129, + 1128 + ] + ], + [ + [ + 1130, + 1132, + 1131 + ] + ], + [ + [ + 1133, + 1123, + 1122, + 1134 + ] + ], + [ + [ + 1122, + 1121, + 1135, + 1134 + ] + ], + [ + [ + 1121, + 1120, + 1136, + 1135 + ] + ], + [ + [ + 1137, + 1133, + 1136, + 1138 + ] + ], + [ + [ + 1120, + 1119, + 1139, + 1138 + ] + ], + [ + [ + 1119, + 1118, + 1140, + 1139 + ] + ], + [ + [ + 1118, + 1117, + 1141, + 1140 + ] + ], + [ + [ + 1117, + 1116, + 1142, + 1141 + ] + ], + [ + [ + 1116, + 1115, + 1143, + 1142 + ] + ], + [ + [ + 1115, + 1114, + 1144, + 1143 + ] + ], + [ + [ + 1114, + 1113, + 1145, + 1144 + ] + ], + [ + [ + 1113, + 1112, + 1146, + 1145 + ] + ], + [ + [ + 1146, + 1147, + 1148, + 1149 + ] + ], + [ + [ + 1149, + 1148, + 1082, + 1081, + 1150 + ] + ], + [ + [ + 1081, + 1080, + 1151, + 1150 + ] + ], + [ + [ + 1080, + 1126, + 1152, + 1151 + ] + ], + [ + [ + 1126, + 1125, + 1153, + 1152 + ] + ], + [ + [ + 1125, + 1124, + 1154, + 1153 + ] + ], + [ + [ + 1133, + 1137, + 1154, + 1124, + 1123 + ] + ], + [ + [ + 1112, + 1111, + 1155, + 1147 + ] + ], + [ + [ + 1111, + 1110, + 1156, + 1155 + ] + ], + [ + [ + 1110, + 1109, + 1157, + 1156 + ] + ], + [ + [ + 1109, + 1108, + 1158, + 1157 + ] + ], + [ + [ + 1108, + 1107, + 1159, + 1158 + ] + ], + [ + [ + 1107, + 1106, + 1160, + 1159 + ] + ], + [ + [ + 1106, + 1105, + 1161, + 1160 + ] + ], + [ + [ + 1105, + 1104, + 1162, + 1161 + ] + ], + [ + [ + 1104, + 1103, + 1163, + 1162 + ] + ], + [ + [ + 1103, + 1102, + 1164, + 1163 + ] + ], + [ + [ + 1102, + 1101, + 1165, + 1164 + ] + ], + [ + [ + 1101, + 1100, + 1166, + 1165 + ] + ], + [ + [ + 1100, + 1099, + 1167, + 1166 + ] + ], + [ + [ + 1099, + 1098, + 1168, + 1167 + ] + ], + [ + [ + 1098, + 1097, + 1169, + 1168 + ] + ], + [ + [ + 1097, + 1096, + 1170, + 1169 + ] + ], + [ + [ + 1096, + 1095, + 1171, + 1170 + ] + ], + [ + [ + 1095, + 1094, + 1172, + 1171 + ] + ], + [ + [ + 1094, + 1093, + 1173, + 1172 + ] + ], + [ + [ + 1093, + 1092, + 1174, + 1173 + ] + ], + [ + [ + 1092, + 1091, + 1175, + 1174 + ] + ], + [ + [ + 1091, + 1090, + 1176, + 1175 + ] + ], + [ + [ + 1090, + 1089, + 1177, + 1176 + ] + ], + [ + [ + 1089, + 1088, + 1178, + 1177 + ] + ], + [ + [ + 1088, + 1087, + 1179, + 1178 + ] + ], + [ + [ + 1087, + 1086, + 1180, + 1179 + ] + ], + [ + [ + 1086, + 1085, + 1181, + 1180 + ] + ], + [ + [ + 1085, + 1084, + 1182, + 1181 + ] + ], + [ + [ + 1084, + 1083, + 1183, + 1182 + ] + ], + [ + [ + 1082, + 1148, + 1183, + 1083 + ] + ], + [ + [ + 1127, + 1129, + 1131, + 1132 + ] + ], + [ + [ + 1184, + 1185, + 1186, + 1187 + ] + ], + [ + [ + 1188, + 1189, + 1190, + 1191 + ], + [ + 1127, + 1132, + 1130, + 1128 + ] + ], + [ + [ + 1190, + 1192, + 1193, + 1191 + ] + ], + [ + [ + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_35730751-f3a1-4736-b72c-2ee93a87de37": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2683538.794, + 1248584.096, + 457.682, + 2683560.797, + 1248599.835, + 481.056 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1205, + 1206, + 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, + 1237, + 1238, + 1239, + 1240, + 1241 + ] + ], + [ + [ + 1242, + 1243, + 1244, + 1245, + 1246 + ] + ], + [ + [ + 1247, + 1248, + 1249, + 1244, + 1243 + ] + ], + [ + [ + 1222, + 1250, + 1249, + 1223 + ] + ], + [ + [ + 1240, + 1239, + 1251, + 1252 + ] + ], + [ + [ + 1241, + 1240, + 1252, + 1253 + ] + ], + [ + [ + 1239, + 1238, + 1254, + 1251 + ] + ], + [ + [ + 1236, + 1235, + 1255, + 1256 + ] + ], + [ + [ + 1235, + 1234, + 1257, + 1255 + ] + ], + [ + [ + 1234, + 1233, + 1258, + 1257 + ] + ], + [ + [ + 1259, + 1260, + 1261, + 1262 + ] + ], + [ + [ + 1229, + 1228, + 1263, + 1262 + ] + ], + [ + [ + 1260, + 1259, + 1258, + 1233, + 1232 + ] + ], + [ + [ + 1260, + 1232, + 1231, + 1264 + ] + ], + [ + [ + 1231, + 1230, + 1265, + 1264 + ] + ], + [ + [ + 1230, + 1229, + 1261, + 1265 + ] + ], + [ + [ + 1228, + 1227, + 1266, + 1263 + ] + ], + [ + [ + 1227, + 1226, + 1267, + 1266 + ] + ], + [ + [ + 1225, + 1224, + 1268, + 1269 + ] + ], + [ + [ + 1224, + 1223, + 1248, + 1268 + ] + ], + [ + [ + 1222, + 1221, + 1270, + 1250 + ] + ], + [ + [ + 1270, + 1271, + 1272, + 1273 + ] + ], + [ + [ + 1272, + 1246, + 1245, + 1273 + ] + ], + [ + [ + 1221, + 1220, + 1274, + 1271 + ] + ], + [ + [ + 1274, + 1275, + 1276, + 1277 + ] + ], + [ + [ + 1219, + 1218, + 1278, + 1279 + ] + ], + [ + [ + 1220, + 1219, + 1279, + 1275 + ] + ], + [ + [ + 1218, + 1217, + 1280, + 1278 + ] + ], + [ + [ + 1215, + 1214, + 1281, + 1282 + ] + ], + [ + [ + 1214, + 1213, + 1283, + 1281 + ] + ], + [ + [ + 1206, + 1205, + 1284, + 1285 + ] + ], + [ + [ + 1205, + 1241, + 1253, + 1284 + ] + ], + [ + [ + 1226, + 1225, + 1269, + 1267 + ] + ], + [ + [ + 1217, + 1216, + 1286, + 1280 + ] + ], + [ + [ + 1216, + 1215, + 1282, + 1286 + ] + ], + [ + [ + 1212, + 1211, + 1287, + 1288 + ] + ], + [ + [ + 1213, + 1212, + 1288, + 1283 + ] + ], + [ + [ + 1211, + 1210, + 1289, + 1287 + ] + ], + [ + [ + 1210, + 1209, + 1290, + 1289 + ] + ], + [ + [ + 1209, + 1208, + 1291, + 1290 + ] + ], + [ + [ + 1208, + 1207, + 1292, + 1291 + ] + ], + [ + [ + 1207, + 1206, + 1285, + 1292 + ] + ], + [ + [ + 1238, + 1237, + 1293, + 1254 + ] + ], + [ + [ + 1237, + 1236, + 1256, + 1293 + ] + ], + [ + [ + 1244, + 1249, + 1250, + 1245 + ] + ], + [ + [ + 1294, + 1295, + 1296 + ] + ], + [ + [ + 1297, + 1295, + 1294 + ] + ], + [ + [ + 1298, + 1295, + 1297 + ] + ], + [ + [ + 1242, + 1246, + 1295, + 1298 + ] + ], + [ + [ + 1242, + 1298, + 1297, + 1299, + 1300, + 1247, + 1243 + ] + ], + [ + [ + 1301, + 1302, + 1303 + ] + ], + [ + [ + 1294, + 1296, + 1304, + 1305, + 1306, + 1303, + 1302 + ] + ], + [ + [ + 1294, + 1302, + 1301, + 1307, + 1308, + 1309 + ] + ], + [ + [ + 1294, + 1309, + 1310, + 1311, + 1299, + 1297 + ] + ], + [ + [ + 1310, + 1312, + 1311 + ] + ], + [ + [ + 1313, + 1314, + 1315, + 1316 + ] + ], + [ + [ + 1299, + 1311, + 1312, + 1300 + ] + ], + [ + [ + 1248, + 1247, + 1300, + 1317 + ] + ], + [ + [ + 1273, + 1245, + 1250, + 1318 + ] + ], + [ + [ + 1319, + 1277, + 1272, + 1320 + ] + ], + [ + [ + 1276, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326 + ] + ], + [ + [ + 1277, + 1276, + 1326, + 1295 + ] + ], + [ + [ + 1296, + 1295, + 1327, + 1328, + 1329, + 1304 + ] + ], + [ + [ + 1304, + 1329, + 1330, + 1305 + ] + ], + [ + [ + 1300, + 1312, + 1331, + 1317 + ] + ], + [ + [ + 1331, + 1332, + 1317 + ] + ], + [ + [ + 1324, + 1323, + 1317, + 1332 + ] + ], + [ + [ + 1333, + 1327, + 1295, + 1326 + ] + ], + [ + [ + 1334, + 1333, + 1326, + 1325 + ] + ], + [ + [ + 1333, + 1335, + 1328, + 1327 + ] + ], + [ + [ + 1336, + 1335, + 1333, + 1334 + ] + ], + [ + [ + 1335, + 1336, + 1337, + 1330 + ] + ], + [ + [ + 1328, + 1335, + 1330, + 1329 + ] + ], + [ + [ + 1305, + 1330, + 1337, + 1306 + ] + ], + [ + [ + 1309, + 1308, + 1338, + 1310 + ] + ], + [ + [ + 1308, + 1307, + 1339, + 1338 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_76456584-176b-4955-a635-fc3d8e901997": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682062.422, + 1246036.175, + 417.356, + 2682089.998, + 1246056.828, + 437.882 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361 + ] + ], + [ + [ + 1362, + 1341, + 1340, + 1363 + ] + ], + [ + [ + 1340, + 1361, + 1364, + 1363 + ] + ], + [ + [ + 1361, + 1360, + 1365, + 1364 + ] + ], + [ + [ + 1359, + 1366, + 1365, + 1360 + ] + ], + [ + [ + 1367, + 1368, + 1366, + 1369 + ] + ], + [ + [ + 1369, + 1366, + 1359, + 1358, + 1370 + ] + ], + [ + [ + 1358, + 1357, + 1371, + 1370 + ] + ], + [ + [ + 1357, + 1356, + 1372, + 1371 + ] + ], + [ + [ + 1356, + 1355, + 1373, + 1372 + ] + ], + [ + [ + 1355, + 1354, + 1374, + 1373 + ] + ], + [ + [ + 1351, + 1350, + 1375, + 1376 + ] + ], + [ + [ + 1349, + 1377, + 1375, + 1350 + ] + ], + [ + [ + 1378, + 1346, + 1345, + 1379 + ] + ], + [ + [ + 1345, + 1344, + 1380, + 1379 + ] + ], + [ + [ + 1344, + 1343, + 1381, + 1380 + ] + ], + [ + [ + 1343, + 1342, + 1382, + 1381 + ] + ], + [ + [ + 1362, + 1383, + 1382, + 1342, + 1341 + ] + ], + [ + [ + 1383, + 1362, + 1368, + 1367 + ] + ], + [ + [ + 1354, + 1353, + 1384, + 1374 + ] + ], + [ + [ + 1353, + 1352, + 1385, + 1384 + ] + ], + [ + [ + 1352, + 1351, + 1376, + 1385 + ] + ], + [ + [ + 1377, + 1349, + 1348, + 1386 + ] + ], + [ + [ + 1348, + 1347, + 1387, + 1386 + ] + ], + [ + [ + 1346, + 1378, + 1387, + 1347 + ] + ], + [ + [ + 1388, + 1389, + 1390, + 1391, + 1392, + 1368 + ] + ], + [ + [ + 1393, + 1394, + 1395, + 1396 + ] + ], + [ + [ + 1397, + 1398, + 1396, + 1395 + ] + ], + [ + [ + 1399, + 1396, + 1398, + 1400 + ] + ], + [ + [ + 1401, + 1399, + 1402 + ] + ], + [ + [ + 1396, + 1399, + 1401, + 1393 + ] + ], + [ + [ + 1398, + 1397, + 1367, + 1403 + ] + ], + [ + [ + 1400, + 1404, + 1402, + 1399 + ] + ], + [ + [ + 1404, + 1400, + 1405 + ] + ], + [ + [ + 1403, + 1405, + 1400, + 1398 + ] + ], + [ + [ + 1404, + 1405, + 1401, + 1402 + ] + ], + [ + [ + 1401, + 1405, + 1403, + 1393 + ] + ], + [ + [ + 1394, + 1393, + 1403, + 1367 + ] + ], + [ + [ + 1395, + 1406, + 1407, + 1408 + ] + ], + [ + [ + 1409, + 1395, + 1410, + 1411 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_5bc16499-446b-4903-b57c-5e25efb1c1fe": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB07", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 3, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2684846.616, + 1251599.363, + 427.981, + 2684849.28, + 1251604.112, + 431.981 + ], + "children": + [ + "UUID_4766ed7f-2662-483c-b9cf-f90cfbe06737" + ] + }, + "UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-16", + "Region": 4, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2683705.7, + 1249297.241, + 494.245, + 2683725.799, + 1249313.857, + 513.941 + ], + "children": + [ + "UUID_f260179d-ec13-4fc1-a73c-5c812d80b561", + "UUID_3a31a813-5b47-4595-b0a3-0c07cdca91c6", + "UUID_ca143bb9-070c-433f-8679-75352e8e1fcb", + "UUID_2acfe0fe-4f1b-43ea-95b6-39156292b736", + "UUID_f6cf4a7f-46ab-4560-aa8d-86c195dfe9cb" + ] + }, + "UUID_3095c66a-c43c-4bea-b860-3ac0e85c215b": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2681695.703, + 1250090.606, + 457.171, + 2681699.244, + 1250092.625, + 458.99 + ], + "parents": + [ + "UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1412, + 1413, + 1414, + 1415 + ] + ], + [ + [ + 1413, + 1416, + 1414 + ] + ], + [ + [ + 1417, + 1412, + 1415 + ] + ], + [ + [ + 1418, + 1415, + 1414 + ] + ], + [ + [ + 1419, + 1418, + 1414, + 1416 + ] + ], + [ + [ + 1415, + 1418, + 1419, + 1417 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c9e68bc9-7e28-4d2d-9175-56f44aacbdbf": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683940.563, + 1248485.01, + 510.825, + 2683942.335, + 1248486.886, + 512.84 + ], + "parents": + [ + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1420, + 1421, + 1422, + 1423, + 1424 + ] + ], + [ + [ + 1422, + 1425, + 1423 + ] + ], + [ + [ + 1426, + 1421, + 1420 + ] + ], + [ + [ + 1425, + 1427, + 1424, + 1423 + ] + ], + [ + [ + 1427, + 1426, + 1420, + 1424 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_afc9afd9-f57d-4d69-ba56-3f7ad6066bd0": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683552.66, + 1248586.574, + 475.055, + 2683554.874, + 1248588.712, + 478.016 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1428, + 1429, + 1430, + 1431 + ] + ], + [ + [ + 1428, + 1432, + 1433, + 1429 + ] + ], + [ + [ + 1431, + 1430, + 1434, + 1435 + ] + ], + [ + [ + 1434, + 1430, + 1429, + 1433 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_8c2b73f1-d761-4882-b2ad-965a9860f968": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2681682.171, + 1250098.494, + 454.99, + 2681688.32, + 1250100.691, + 457.79 + ], + "parents": + [ + "UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1436, + 1437, + 1438 + ] + ], + [ + [ + 107, + 1439, + 1438, + 1437 + ] + ], + [ + [ + 107, + 91, + 1439 + ] + ], + [ + [ + 1438, + 1439, + 91, + 1436 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_7cca9830-a256-4064-9cdb-5a261f41cb78": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2683212.237, + 1253017.905, + 448.908, + 2683233.377, + 1253037.77, + 462.758 + ], + "parents": + [ + "UUID_2979810e-cbdf-43ba-89d5-ed338c7b3d18" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462 + ] + ], + [ + [ + 1456, + 1455, + 1463, + 1464 + ] + ], + [ + [ + 1455, + 1454, + 1465, + 1463 + ] + ], + [ + [ + 1454, + 1453, + 1466, + 1465 + ] + ], + [ + [ + 1453, + 1452, + 1467, + 1466 + ] + ], + [ + [ + 1452, + 1451, + 1468, + 1467 + ] + ], + [ + [ + 1451, + 1450, + 1469, + 1468 + ] + ], + [ + [ + 1450, + 1449, + 1470, + 1469 + ] + ], + [ + [ + 1449, + 1448, + 1471, + 1470 + ] + ], + [ + [ + 1448, + 1447, + 1472, + 1471 + ] + ], + [ + [ + 1447, + 1446, + 1473, + 1472 + ] + ], + [ + [ + 1446, + 1445, + 1474, + 1473 + ] + ], + [ + [ + 1457, + 1456, + 1464, + 1475 + ] + ], + [ + [ + 1445, + 1444, + 1476, + 1474 + ] + ], + [ + [ + 1444, + 1443, + 1477, + 1476 + ] + ], + [ + [ + 1443, + 1442, + 1478, + 1477 + ] + ], + [ + [ + 1442, + 1441, + 1479, + 1478 + ] + ], + [ + [ + 1441, + 1440, + 1480, + 1479 + ] + ], + [ + [ + 1440, + 1462, + 1481, + 1480 + ] + ], + [ + [ + 1462, + 1461, + 1482, + 1481 + ] + ], + [ + [ + 1461, + 1460, + 1483, + 1482 + ] + ], + [ + [ + 1460, + 1459, + 1484, + 1483 + ] + ], + [ + [ + 1459, + 1458, + 1485, + 1484 + ] + ], + [ + [ + 1458, + 1457, + 1475, + 1485 + ] + ], + [ + [ + 1463, + 1486, + 1487, + 1488, + 1464 + ] + ], + [ + [ + 1484, + 1485, + 1475, + 1464, + 1488, + 1489, + 1490 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB00", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-22", + "Region": 8, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682716.608, + 1248408.924, + 403.0, + 2682741.196, + 1248432.913, + 423.637 + ], + "children": + [ + "UUID_860a5d7e-1c0a-45cf-925b-9755b3998d10", + "UUID_a091883a-427d-4cb7-8f34-f42728d2254b", + "UUID_11430239-5826-4a33-952a-9dd56926afa6", + "UUID_5579091c-2356-4115-b14c-a07d02416836", + "UUID_9db22f7a-fcbf-466e-8005-d1a497103ffa", + "UUID_f5697b2b-4cd0-42c9-b96d-ed29ac5f9817", + "UUID_c585e4f5-dc07-45ff-acc2-d17de5a6d4a3", + "UUID_82204fbd-861a-4852-bf75-33ce1e2599dd" + ] + }, + "UUID_d054489f-3680-4e78-a745-7f3fb25417bd": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2681499.562, + 1245964.968, + 426.989, + 2681508.132, + 1245978.09, + 436.703 + ], + "parents": + [ + "UUID_c7f99502-54f7-44df-9930-c5e4e3eb87ff" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532 + ] + ], + [ + [ + 1510, + 1533, + 1534, + 1511 + ] + ], + [ + [ + 1509, + 1535, + 1533, + 1510 + ] + ], + [ + [ + 1504, + 1536, + 1537, + 1505 + ] + ], + [ + [ + 1503, + 1538, + 1536, + 1504 + ] + ], + [ + [ + 1498, + 1539, + 1540, + 1499 + ] + ], + [ + [ + 1497, + 1541, + 1539, + 1498 + ] + ], + [ + [ + 1494, + 1542, + 1543, + 1495 + ] + ], + [ + [ + 1491, + 1544, + 1545, + 1492 + ] + ], + [ + [ + 1532, + 1546, + 1544, + 1491 + ] + ], + [ + [ + 1531, + 1547, + 1546, + 1532 + ] + ], + [ + [ + 1530, + 1548, + 1547, + 1531 + ] + ], + [ + [ + 1529, + 1549, + 1548, + 1530 + ] + ], + [ + [ + 1511, + 1534, + 1550, + 1512 + ] + ], + [ + [ + 1512, + 1550, + 1551, + 1513 + ] + ], + [ + [ + 1513, + 1551, + 1552, + 1514 + ] + ], + [ + [ + 1514, + 1552, + 1553, + 1515 + ] + ], + [ + [ + 1515, + 1553, + 1554, + 1516 + ] + ], + [ + [ + 1516, + 1554, + 1555, + 1517 + ] + ], + [ + [ + 1517, + 1555, + 1556, + 1518 + ] + ], + [ + [ + 1518, + 1556, + 1557, + 1519 + ] + ], + [ + [ + 1519, + 1557, + 1558, + 1520 + ] + ], + [ + [ + 1520, + 1558, + 1559, + 1521 + ] + ], + [ + [ + 1521, + 1559, + 1560, + 1522 + ] + ], + [ + [ + 1522, + 1560, + 1561, + 1523 + ] + ], + [ + [ + 1523, + 1561, + 1562, + 1524 + ] + ], + [ + [ + 1524, + 1562, + 1563, + 1525 + ] + ], + [ + [ + 1525, + 1563, + 1564, + 1526 + ] + ], + [ + [ + 1526, + 1564, + 1565, + 1527 + ] + ], + [ + [ + 1527, + 1565, + 1566, + 1528 + ] + ], + [ + [ + 1528, + 1566, + 1549, + 1529 + ] + ], + [ + [ + 1496, + 1495, + 1543, + 1567 + ] + ], + [ + [ + 1567, + 1541, + 1497, + 1496 + ] + ], + [ + [ + 1540, + 1568, + 1500, + 1499 + ] + ], + [ + [ + 1568, + 1569, + 1501, + 1500 + ] + ], + [ + [ + 1502, + 1501, + 1569, + 1570 + ] + ], + [ + [ + 1570, + 1538, + 1503, + 1502 + ] + ], + [ + [ + 1506, + 1505, + 1537, + 1571 + ] + ], + [ + [ + 1572, + 1573, + 1508, + 1507 + ] + ], + [ + [ + 1572, + 1507, + 1506, + 1571 + ] + ], + [ + [ + 1509, + 1508, + 1573, + 1535 + ] + ], + [ + [ + 1492, + 1545, + 1574, + 1493 + ] + ], + [ + [ + 1574, + 1542, + 1494, + 1493 + ] + ], + [ + [ + 1533, + 1535, + 1573, + 1572, + 1571, + 1537, + 1536, + 1538, + 1570, + 1569, + 1568, + 1540, + 1539, + 1541, + 1567, + 1543, + 1542, + 1574, + 1545, + 1544, + 1546, + 1547, + 1548, + 1549, + 1566, + 1565, + 1564, + 1563, + 1562, + 1561, + 1560, + 1559, + 1558, + 1557, + 1556, + 1555, + 1554, + 1553, + 1552, + 1551, + 1550, + 1534 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_1fd09737-9da2-4e8f-8d4a-817d404df06c": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682079.104, + 1246044.257, + 425.307, + 2682082.611, + 1246047.104, + 425.872 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1575, + 1576, + 1577, + 1578 + ] + ], + [ + [ + 1576, + 1575, + 1579, + 1580, + 1581 + ] + ], + [ + [ + 1582, + 1583, + 1580, + 1579 + ] + ], + [ + [ + 1583, + 1582, + 1578, + 1577, + 1584 + ] + ], + [ + [ + 1583, + 1584, + 1581, + 1580 + ] + ], + [ + [ + 1576, + 1581, + 1584, + 1577 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_55a37e02-05fb-4285-baad-e9c388fe0ff2": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684333.811, + 1246602.385, + 442.639, + 2684335.998, + 1246604.562, + 444.481 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602 + ] + ], + [ + [ + 1588, + 1587, + 1603, + 1604 + ] + ], + [ + [ + 1585, + 1605, + 1606, + 1586 + ] + ], + [ + [ + 1603, + 1606, + 1605, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1604 + ] + ], + [ + [ + 1593, + 1616, + 1615, + 1594 + ] + ], + [ + [ + 1592, + 1617, + 1616, + 1593 + ] + ], + [ + [ + 1591, + 1618, + 1617, + 1592 + ] + ], + [ + [ + 1590, + 1619, + 1618, + 1591 + ] + ], + [ + [ + 1589, + 1620, + 1619, + 1590 + ] + ], + [ + [ + 1588, + 1604, + 1620, + 1589 + ] + ], + [ + [ + 1602, + 1607, + 1605, + 1585 + ] + ], + [ + [ + 1601, + 1608, + 1607, + 1602 + ] + ], + [ + [ + 1600, + 1609, + 1608, + 1601 + ] + ], + [ + [ + 1599, + 1610, + 1609, + 1600 + ] + ], + [ + [ + 1598, + 1611, + 1610, + 1599 + ] + ], + [ + [ + 1597, + 1612, + 1611, + 1598 + ] + ], + [ + [ + 1596, + 1613, + 1612, + 1597 + ] + ], + [ + [ + 1595, + 1614, + 1613, + 1596 + ] + ], + [ + [ + 1594, + 1615, + 1614, + 1595 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_25548ad4-89b7-4bd7-9ab7-fcc74a245b91": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683666.27, + 1246837.679, + 424.494, + 2683668.371, + 1246839.854, + 426.451 + ], + "parents": + [ + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1621, + 1622, + 1623, + 1624, + 1625 + ] + ], + [ + [ + 1623, + 1626, + 1624 + ] + ], + [ + [ + 1627, + 1622, + 1621 + ] + ], + [ + [ + 1628, + 1625, + 1624, + 1626 + ] + ], + [ + [ + 1628, + 1627, + 1621, + 1625 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_d47435e1-2475-4f10-a0bf-3e28ad4400be": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2683596.689, + 1252091.962, + 432.417, + 2683611.046, + 1252112.337, + 454.632 + ], + "parents": + [ + "UUID_c383c4f4-4e35-458c-8907-ce1a332ebc12" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636 + ] + ], + [ + [ + 1629, + 1636, + 1637, + 1638 + ] + ], + [ + [ + 1636, + 1635, + 1639, + 1637 + ] + ], + [ + [ + 1635, + 1640, + 1641, + 1639 + ] + ], + [ + [ + 1640, + 1634, + 1642, + 1641 + ] + ], + [ + [ + 1634, + 1633, + 1643, + 1642 + ] + ], + [ + [ + 1633, + 1644, + 1645, + 1643 + ] + ], + [ + [ + 1644, + 1632, + 1646, + 1645 + ] + ], + [ + [ + 1632, + 1631, + 1647, + 1646 + ] + ], + [ + [ + 1631, + 1648, + 1649, + 1647 + ] + ], + [ + [ + 1648, + 1630, + 1650, + 1649 + ] + ], + [ + [ + 1630, + 1651, + 1652, + 1650 + ] + ], + [ + [ + 1651, + 1629, + 1638, + 1652 + ] + ], + [ + [ + 1653, + 1654, + 1655, + 1656 + ] + ], + [ + [ + 1653, + 1657, + 1658, + 1654 + ] + ], + [ + [ + 1659, + 1655, + 1660 + ] + ], + [ + [ + 1656, + 1655, + 1659, + 1661 + ] + ], + [ + [ + 1655, + 1654, + 1662, + 1660 + ] + ], + [ + [ + 1662, + 1654, + 1658 + ] + ], + [ + [ + 1662, + 1658, + 1659, + 1660 + ] + ], + [ + [ + 1657, + 1661, + 1659, + 1658 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c585e4f5-dc07-45ff-acc2-d17de5a6d4a3": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682725.358, + 1248420.722, + 422.297, + 2682726.714, + 1248422.073, + 423.637 + ], + "parents": + [ + "UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1663, + 1664, + 1665, + 1666 + ] + ], + [ + [ + 1667, + 1668, + 1664, + 1663 + ] + ], + [ + [ + 1667, + 1669, + 1670, + 1668 + ] + ], + [ + [ + 1669, + 1666, + 1665, + 1670 + ] + ], + [ + [ + 1668, + 1670, + 1665, + 1664 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_b36e19bf-dd90-47cb-8309-d8e2cb7783bc": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682116.856, + 1243490.95, + 462.874, + 2682121.56, + 1243501.532, + 477.633 + ], + "parents": + [ + "UUID_1904fb85-3274-481a-bcbd-366964facdc6" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1671, + 1672, + 1673, + 1674 + ] + ], + [ + [ + 1671, + 1675, + 1676, + 1677 + ] + ], + [ + [ + 1678, + 1672, + 1679, + 1680 + ] + ], + [ + [ + 1672, + 1671, + 1677, + 1679 + ] + ], + [ + [ + 1675, + 1674, + 1681, + 1676 + ] + ], + [ + [ + 1674, + 1673, + 1682, + 1681 + ] + ], + [ + [ + 1673, + 1678, + 1680, + 1682 + ] + ], + [ + [ + 1680, + 1683, + 1684, + 1676 + ] + ], + [ + [ + 1685, + 1680, + 1676, + 1686 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_077df727-e8b0-4d36-832c-9bac78575f49": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684280.651, + 1248696.758, + 553.37, + 2684282.116, + 1248698.144, + 554.488 + ], + "parents": + [ + "UUID_9194ef74-d111-4fce-b364-3fc7c62402d5" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1687, + 1688, + 1689, + 1690 + ] + ], + [ + [ + 1691, + 1692, + 1688, + 1687 + ] + ], + [ + [ + 1693, + 1694, + 1692, + 1691 + ] + ], + [ + [ + 1693, + 1690, + 1689, + 1694 + ] + ], + [ + [ + 1692, + 1694, + 1689, + 1688 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_2089b901-844e-4532-9771-96b4c15c0bf8": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2679011.773, + 1250830.634, + 440.451, + 2679013.325, + 1250832.21, + 441.987 + ], + "parents": + [ + "UUID_04153856-c970-4f34-a0cf-ff14691e3841" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1695, + 1696, + 1697, + 1698 + ] + ], + [ + [ + 1699, + 1700, + 1696, + 1695 + ] + ], + [ + [ + 1701, + 1702, + 1700, + 1699 + ] + ], + [ + [ + 1698, + 1697, + 1702, + 1701 + ] + ], + [ + [ + 1700, + 1702, + 1697, + 1696 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_ca143bb9-070c-433f-8679-75352e8e1fcb": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683721.869, + 1249303.859, + 507.561, + 2683723.725, + 1249305.508, + 509.703 + ], + "parents": + [ + "UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1703, + 1704, + 1705, + 1706 + ] + ], + [ + [ + 1707, + 1704, + 1703, + 1708 + ] + ], + [ + [ + 1709, + 1710, + 1706, + 1705 + ] + ], + [ + [ + 1711, + 1705, + 1704 + ] + ], + [ + [ + 1712, + 1709, + 1705, + 1711 + ] + ], + [ + [ + 1712, + 1711, + 1704, + 1707 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c0961fd6-9cd2-48cb-9d3e-76a2d51f5ed6": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB07", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 3, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2684055.308, + 1251798.275, + 424.623, + 2684060.289, + 1251802.821, + 443.136 + ], + "children": + [ + "UUID_a410165b-acd2-4bb2-9aa1-49e19a8a11e5" + ] + }, + "UUID_afb78d4b-2b41-4f11-9c40-7bd0303132ee": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682071.756, + 1246054.315, + 432.496, + 2682073.782, + 1246055.436, + 434.971 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1713, + 1714, + 1715, + 1716 + ] + ], + [ + [ + 1713, + 1717, + 1714 + ] + ], + [ + [ + 1718, + 1716, + 1715 + ] + ], + [ + [ + 1714, + 1717, + 1719, + 1720, + 1721 + ] + ], + [ + [ + 1715, + 1714, + 1721 + ] + ], + [ + [ + 1720, + 1722, + 1718, + 1715, + 1721 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_04153856-c970-4f34-a0cf-ff14691e3841": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 2, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2679005.129, + 1250821.007, + 423.863, + 2679026.756, + 1250840.951, + 441.987 + ], + "children": + [ + "UUID_1286cedd-d737-46d2-b67d-d9c3196e8a67", + "UUID_5ae33ec7-bfe4-4574-b6a9-3c87ee6c3e21", + "UUID_2089b901-844e-4532-9771-96b4c15c0bf8" + ] + }, + "UUID_674df3e1-57ac-4be0-bcc2-d2928c4b6a0f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2683110.77, + 1252807.866, + 455.163, + 2683135.262, + 1252832.43, + 470.969 + ], + "parents": + [ + "UUID_b29ed28d-c905-4911-83a5-cc59d676d716" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740 + ] + ], + [ + [ + 1738, + 1737, + 1741, + 1742 + ] + ], + [ + [ + 1741, + 1743, + 1744, + 1745 + ] + ], + [ + [ + 1745, + 1744, + 1746, + 1747 + ] + ], + [ + [ + 1734, + 1733, + 1748, + 1747 + ] + ], + [ + [ + 1733, + 1732, + 1749, + 1748 + ] + ], + [ + [ + 1749, + 1750, + 1751, + 1752 + ] + ], + [ + [ + 1752, + 1751, + 1753, + 1754 + ] + ], + [ + [ + 1754, + 1753, + 1755, + 1756 + ] + ], + [ + [ + 1756, + 1755, + 1757, + 1758 + ] + ], + [ + [ + 1758, + 1757, + 1759, + 1760 + ] + ], + [ + [ + 1724, + 1723, + 1761, + 1760 + ] + ], + [ + [ + 1723, + 1740, + 1762, + 1761 + ] + ], + [ + [ + 1740, + 1739, + 1763, + 1762 + ] + ], + [ + [ + 1739, + 1738, + 1742, + 1763 + ] + ], + [ + [ + 1732, + 1731, + 1764, + 1750 + ] + ], + [ + [ + 1764, + 1765, + 1766, + 1767 + ] + ], + [ + [ + 1767, + 1766, + 1768, + 1769 + ] + ], + [ + [ + 1729, + 1728, + 1770, + 1769 + ] + ], + [ + [ + 1770, + 1771, + 1772, + 1773 + ] + ], + [ + [ + 1773, + 1772, + 1774, + 1775 + ] + ], + [ + [ + 1726, + 1725, + 1776, + 1775 + ] + ], + [ + [ + 1725, + 1724, + 1759, + 1776 + ] + ], + [ + [ + 1728, + 1727, + 1777, + 1771 + ] + ], + [ + [ + 1727, + 1726, + 1774, + 1777 + ] + ], + [ + [ + 1731, + 1730, + 1778, + 1765 + ] + ], + [ + [ + 1730, + 1729, + 1768, + 1778 + ] + ], + [ + [ + 1737, + 1736, + 1779, + 1743 + ] + ], + [ + [ + 1736, + 1735, + 1780, + 1779 + ] + ], + [ + [ + 1735, + 1734, + 1746, + 1780 + ] + ], + [ + [ + 1763, + 1742, + 1741, + 1745, + 1781, + 1782, + 1752, + 1754, + 1756, + 1758, + 1760, + 1783 + ] + ], + [ + [ + 1755, + 1753, + 1751, + 1784, + 1785, + 1767, + 1786, + 1787, + 1773, + 1776, + 1759, + 1757 + ] + ], + [ + [ + 1788, + 1772, + 1789, + 1790, + 1791, + 1792 + ] + ], + [ + [ + 1793, + 1766, + 1794, + 1795, + 1796, + 1797 + ] + ], + [ + [ + 1743, + 1779, + 1798, + 1799, + 1744 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_17773eca-757d-4b36-ad0d-c087084d14fd": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683546.366, + 1248592.21, + 477.42, + 2683547.945, + 1248593.861, + 479.439 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1800, + 1801, + 1802, + 1803 + ] + ], + [ + [ + 1800, + 1804, + 1801 + ] + ], + [ + [ + 1805, + 1803, + 1802 + ] + ], + [ + [ + 1804, + 1805, + 1802, + 1801 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_b29ed28d-c905-4911-83a5-cc59d676d716": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 1, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2683110.77, + 1252807.866, + 455.163, + 2683135.262, + 1252832.43, + 472.058 + ], + "children": + [ + "UUID_674df3e1-57ac-4be0-bcc2-d2928c4b6a0f", + "UUID_92eedd6b-7156-447a-975a-8f08c8b3406f" + ] + }, + "UUID_0db71477-aeb0-4dbb-85a3-23974344f5a3": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2681698.38, + 1250093.38, + 454.99, + 2681700.602, + 1250100.44, + 457.79 + ], + "parents": + [ + "UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1806, + 1807, + 1808 + ] + ], + [ + [ + 1809, + 1810, + 1808, + 1807 + ] + ], + [ + [ + 1809, + 1811, + 1810 + ] + ], + [ + [ + 1808, + 1810, + 1811, + 1806 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_2979810e-cbdf-43ba-89d5-ed338c7b3d18": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 1, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2683212.237, + 1253017.905, + 448.908, + 2683233.377, + 1253037.77, + 462.758 + ], + "children": + [ + "UUID_7cca9830-a256-4064-9cdb-5a261f41cb78" + ] + }, + "UUID_064d890c-6bf9-4a58-80b8-13bf3cb0f4ea": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683933.177, + 1248479.448, + 510.644, + 2683934.821, + 1248481.19, + 512.84 + ], + "parents": + [ + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1812, + 1813, + 1814 + ] + ], + [ + [ + 1813, + 1815, + 1816, + 1814 + ] + ], + [ + [ + 1817, + 1818, + 1819 + ] + ], + [ + [ + 1817, + 1819, + 1816, + 1815 + ] + ], + [ + [ + 1818, + 1820, + 1816, + 1819 + ] + ], + [ + [ + 1820, + 1812, + 1814, + 1816 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_47f7da59-3360-475c-80d4-d612878f4166": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684330.369, + 1246597.101, + 442.728, + 2684332.587, + 1246599.314, + 444.481 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836 + ] + ], + [ + [ + 1821, + 1837, + 1838, + 1822 + ] + ], + [ + [ + 1839, + 1838, + 1837, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854 + ] + ], + [ + [ + 1855, + 1839, + 1854 + ] + ], + [ + [ + 1827, + 1849, + 1848, + 1828 + ] + ], + [ + [ + 1826, + 1850, + 1849, + 1827 + ] + ], + [ + [ + 1825, + 1851, + 1850, + 1826 + ] + ], + [ + [ + 1824, + 1852, + 1851, + 1825 + ] + ], + [ + [ + 1856, + 1853, + 1852, + 1824 + ] + ], + [ + [ + 1823, + 1855, + 1854, + 1853, + 1856 + ] + ], + [ + [ + 1836, + 1840, + 1837, + 1821 + ] + ], + [ + [ + 1835, + 1841, + 1840, + 1836 + ] + ], + [ + [ + 1834, + 1842, + 1841, + 1835 + ] + ], + [ + [ + 1833, + 1843, + 1842, + 1834 + ] + ], + [ + [ + 1832, + 1844, + 1843, + 1833 + ] + ], + [ + [ + 1831, + 1845, + 1844, + 1832 + ] + ], + [ + [ + 1830, + 1846, + 1845, + 1831 + ] + ], + [ + [ + 1829, + 1847, + 1846, + 1830 + ] + ], + [ + [ + 1828, + 1848, + 1847, + 1829 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c7f99502-54f7-44df-9930-c5e4e3eb87ff": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB00", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 10, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2681499.562, + 1245964.968, + 426.989, + 2681508.132, + 1245978.09, + 436.703 + ], + "children": + [ + "UUID_d054489f-3680-4e78-a745-7f3fb25417bd" + ] + }, + "UUID_59174e25-a677-4351-897e-6576c95fe6b6": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2681688.155, + 1250089.31, + 457.054, + 2681691.707, + 1250091.402, + 458.99 + ], + "parents": + [ + "UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1857, + 1858, + 1859, + 1860 + ] + ], + [ + [ + 1858, + 1861, + 1859 + ] + ], + [ + [ + 1862, + 1857, + 1860 + ] + ], + [ + [ + 1863, + 1860, + 1859 + ] + ], + [ + [ + 1864, + 1863, + 1859, + 1861 + ] + ], + [ + [ + 1860, + 1863, + 1864, + 1862 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c7273bf9-6d42-4648-8e19-03dedda9ce9b": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2681691.92, + 1250089.956, + 457.113, + 2681695.466, + 1250092.012, + 458.99 + ], + "parents": + [ + "UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1865, + 1866, + 1867 + ] + ], + [ + [ + 1868, + 1869, + 1870 + ] + ], + [ + [ + 1869, + 1865, + 1867, + 1870 + ] + ], + [ + [ + 1871, + 1872, + 1867, + 1866 + ] + ], + [ + [ + 1870, + 1872, + 1871, + 1868 + ] + ], + [ + [ + 1872, + 1870, + 1867 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_944c7a78-bbcd-4872-8a64-983a5ef564be": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2681950.74, + 1244136.236, + 451.496, + 2681959.311, + 1244146.156, + 462.846 + ], + "parents": + [ + "UUID_c82d2cc6-6c38-484c-8105-bb7cb6954b83" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1873, + 1874, + 1875, + 1876 + ] + ], + [ + [ + 1877, + 1874, + 1878, + 1879 + ] + ], + [ + [ + 1874, + 1873, + 1880, + 1878 + ] + ], + [ + [ + 1873, + 1881, + 1882, + 1880 + ] + ], + [ + [ + 1881, + 1876, + 1883, + 1882 + ] + ], + [ + [ + 1876, + 1875, + 1884, + 1883 + ] + ], + [ + [ + 1875, + 1877, + 1879, + 1884 + ] + ], + [ + [ + 1885, + 1886, + 1887, + 1879 + ] + ], + [ + [ + 1879, + 1887, + 1888, + 1889 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_6891bc95-7cd5-432f-93f2-a2424dadb6b1": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683927.919, + 1248485.196, + 510.99, + 2683929.402, + 1248486.792, + 512.84 + ], + "parents": + [ + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1890, + 1891, + 1892 + ] + ], + [ + [ + 1891, + 1893, + 1894, + 1892 + ] + ], + [ + [ + 1895, + 1896, + 1897 + ] + ], + [ + [ + 1895, + 1897, + 1894, + 1893 + ] + ], + [ + [ + 1896, + 1898, + 1894, + 1897 + ] + ], + [ + [ + 1898, + 1890, + 1892, + 1894 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_8eade562-27e6-4dfc-8c6d-a5f8294be7b3": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682572.256, + 1245115.106, + 411.0, + 2682593.725, + 1245129.021, + 427.18 + ], + "parents": + [ + "UUID_b20b4755-1dc3-4332-ad80-da83460c3e46" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917 + ] + ], + [ + [ + 1899, + 1918, + 1919, + 1920 + ] + ], + [ + [ + 1918, + 1917, + 1921, + 1919 + ] + ], + [ + [ + 1917, + 1916, + 1922, + 1921 + ] + ], + [ + [ + 1916, + 1915, + 1923, + 1922 + ] + ], + [ + [ + 1915, + 1914, + 1924, + 1923 + ] + ], + [ + [ + 1914, + 1913, + 1925, + 1924 + ] + ], + [ + [ + 1913, + 1912, + 1926, + 1925 + ] + ], + [ + [ + 1912, + 1911, + 1927, + 1926 + ] + ], + [ + [ + 1911, + 1910, + 1928, + 1927 + ] + ], + [ + [ + 1910, + 1909, + 1929, + 1928 + ] + ], + [ + [ + 1909, + 1908, + 1930, + 1929 + ] + ], + [ + [ + 1908, + 1931, + 1932, + 1930 + ] + ], + [ + [ + 1931, + 1907, + 1933, + 1932 + ] + ], + [ + [ + 1907, + 1906, + 1934, + 1933 + ] + ], + [ + [ + 1906, + 1905, + 1935, + 1934 + ] + ], + [ + [ + 1905, + 1904, + 1936, + 1935 + ] + ], + [ + [ + 1904, + 1903, + 1937, + 1936 + ] + ], + [ + [ + 1903, + 1902, + 1938, + 1937 + ] + ], + [ + [ + 1902, + 1901, + 1939, + 1938 + ] + ], + [ + [ + 1901, + 1900, + 1940, + 1939 + ] + ], + [ + [ + 1900, + 1899, + 1920, + 1940 + ] + ], + [ + [ + 1941, + 1942, + 1943, + 1932 + ] + ], + [ + [ + 1932, + 1943, + 1944, + 1945 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_dce99fff-e3a0-4a01-bc00-f23dc3afd735": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682064.376, + 1246050.028, + 432.496, + 2682065.928, + 1246052.065, + 435.088 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1946, + 1947, + 1948 + ] + ], + [ + [ + 1946, + 1948, + 1949, + 1950 + ] + ], + [ + [ + 1951, + 1950, + 1949 + ] + ], + [ + [ + 1948, + 1947, + 1952, + 1953, + 1954 + ] + ], + [ + [ + 1953, + 1955, + 1951, + 1949, + 1954 + ] + ], + [ + [ + 1949, + 1948, + 1954 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_d44a2622-f6f4-43a1-8a72-18067e716fc9": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 2, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2678219.195, + 1252035.317, + 485.317, + 2678236.234, + 1252050.985, + 498.835 + ], + "children": + [ + "UUID_48894ad8-2580-49ad-9571-61dfbcdb8d18" + ] + }, + "UUID_3a31a813-5b47-4595-b0a3-0c07cdca91c6": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683722.623, + 1249306.712, + 507.835, + 2683724.131, + 1249308.443, + 509.703 + ], + "parents": + [ + "UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1956, + 1957, + 1958, + 1959 + ] + ], + [ + [ + 1960, + 1961, + 1962, + 1963 + ] + ], + [ + [ + 1960, + 1956, + 1959, + 1961 + ] + ], + [ + [ + 1964, + 1962, + 1961, + 1965 + ] + ], + [ + [ + 1964, + 1965, + 1959, + 1958 + ] + ], + [ + [ + 1959, + 1965, + 1961 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_9556fbe1-9912-4c2a-bd00-ca9dc71f08b7": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB07", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 10, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2681897.823, + 1243533.057, + 455.28, + 2681906.584, + 1243541.868, + 461.492 + ], + "children": + [ + "UUID_17cd93ca-cac0-41a1-bcd1-effb2c2040c8" + ] + }, + "UUID_fcebd366-e849-4042-9073-57ed98b30f40": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682118.109, + 1243492.092, + 474.227, + 2682120.679, + 1243494.327, + 476.039 + ], + "parents": + [ + "UUID_1904fb85-3274-481a-bcbd-366964facdc6" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1966, + 1967, + 1968 + ] + ], + [ + [ + 1969, + 1970, + 1968, + 1967 + ] + ], + [ + [ + 1971, + 1970, + 1969 + ] + ], + [ + [ + 1968, + 1970, + 1971, + 1966 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_faa8baea-9ee8-4048-bdef-394fa71175d7": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2680447.57, + 1250733.297, + 500.658, + 2680451.377, + 1250737.01, + 501.658 + ], + "parents": + [ + "UUID_133abec6-0057-4789-bd9c-b80c8b477da0" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1972, + 1973, + 1974, + 1975 + ] + ], + [ + [ + 1976, + 1977, + 1973, + 1972 + ] + ], + [ + [ + 1978, + 1979, + 1977, + 1976 + ] + ], + [ + [ + 1975, + 1974, + 1979, + 1978 + ] + ], + [ + [ + 1973, + 1977, + 1979, + 1974 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_1286cedd-d737-46d2-b67d-d9c3196e8a67": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2679005.129, + 1250821.007, + 423.863, + 2679026.756, + 1250840.951, + 440.451 + ], + "parents": + [ + "UUID_04153856-c970-4f34-a0cf-ff14691e3841" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002 + ] + ], + [ + [ + 2003, + 2004, + 2005, + 2006 + ] + ], + [ + [ + 1994, + 1993, + 2007, + 2008 + ] + ], + [ + [ + 1993, + 1992, + 2009, + 2007 + ] + ], + [ + [ + 1992, + 1991, + 2010, + 2009 + ] + ], + [ + [ + 1991, + 1990, + 2011, + 2010 + ] + ], + [ + [ + 1990, + 1989, + 2012, + 2011 + ] + ], + [ + [ + 1989, + 1988, + 2013, + 2012 + ] + ], + [ + [ + 1988, + 1987, + 2014, + 2013 + ] + ], + [ + [ + 1987, + 1986, + 2015, + 2014 + ] + ], + [ + [ + 1986, + 1985, + 2016, + 2015 + ] + ], + [ + [ + 1985, + 1984, + 2017, + 2016 + ] + ], + [ + [ + 1984, + 1983, + 2018, + 2017 + ] + ], + [ + [ + 2018, + 2019, + 2020, + 2021 + ] + ], + [ + [ + 2021, + 2020, + 2022, + 2023 + ] + ], + [ + [ + 2023, + 2022, + 2024, + 2025 + ] + ], + [ + [ + 2025, + 2024, + 2026, + 2027 + ] + ], + [ + [ + 2027, + 2026, + 2004, + 2003 + ] + ], + [ + [ + 2028, + 2029, + 2006, + 2005 + ] + ], + [ + [ + 2030, + 2031, + 2029, + 2028 + ] + ], + [ + [ + 1995, + 1994, + 2008, + 2031 + ] + ], + [ + [ + 1980, + 2002, + 2032, + 2033 + ] + ], + [ + [ + 2002, + 2001, + 2034, + 2032 + ] + ], + [ + [ + 2001, + 2000, + 2035, + 2034 + ] + ], + [ + [ + 2000, + 1999, + 2036, + 2035 + ] + ], + [ + [ + 1999, + 1998, + 2037, + 2036 + ] + ], + [ + [ + 1998, + 1997, + 2038, + 2037 + ] + ], + [ + [ + 1997, + 1996, + 2039, + 2038 + ] + ], + [ + [ + 1996, + 1995, + 2030, + 2039 + ] + ], + [ + [ + 1983, + 1982, + 2040, + 2019 + ] + ], + [ + [ + 1982, + 1981, + 2041, + 2040 + ] + ], + [ + [ + 1981, + 1980, + 2033, + 2041 + ] + ], + [ + [ + 2003, + 2008, + 2042, + 2043, + 2044, + 2045, + 2017, + 2018, + 2021, + 2023, + 2025, + 2027 + ] + ], + [ + [ + 2029, + 2031, + 2008, + 2006 + ] + ], + [ + [ + 2005, + 2004, + 2026, + 2024, + 2022, + 2020, + 2046, + 2047, + 2033, + 2048, + 2030, + 2028 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_29802826-7cf9-4d37-8cf3-46551947d383": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-19", + "Region": 6, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2687391.985, + 1246120.266, + 604.87, + 2687404.735, + 1246137.518, + 620.905 + ], + "children": + [ + "UUID_91e023f4-84c2-4f5f-af49-45a6cd87d0f1", + "UUID_06f9a78e-2816-4609-aff5-fcc55b5e9c7f" + ] + }, + "UUID_ca2fbaa5-f962-4bdd-b1dc-0eb43e014a06": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684574.656, + 1246329.002, + 447.39, + 2684576.157, + 1246330.466, + 449.359 + ], + "parents": + [ + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2049, + 2050, + 2051 + ] + ], + [ + [ + 2050, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2051 + ] + ], + [ + [ + 2052, + 2066, + 2053 + ] + ], + [ + [ + 2067, + 2068, + 2060, + 2059 + ] + ], + [ + [ + 2069, + 2061, + 2060, + 2068 + ] + ], + [ + [ + 2070, + 2062, + 2061, + 2069 + ] + ], + [ + [ + 2071, + 2063, + 2062, + 2070 + ] + ], + [ + [ + 2072, + 2064, + 2063, + 2071 + ] + ], + [ + [ + 2072, + 2073, + 2065, + 2064 + ] + ], + [ + [ + 2073, + 2049, + 2051, + 2065 + ] + ], + [ + [ + 2074, + 2054, + 2053, + 2066 + ] + ], + [ + [ + 2075, + 2055, + 2054, + 2074 + ] + ], + [ + [ + 2076, + 2056, + 2055, + 2075 + ] + ], + [ + [ + 2077, + 2057, + 2056, + 2076 + ] + ], + [ + [ + 2078, + 2058, + 2057, + 2077 + ] + ], + [ + [ + 2067, + 2059, + 2058, + 2078 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_8fdb26d3-f1cb-454f-8a03-06d7fca0edfe": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683164.607, + 1249808.738, + 486.934, + 2683170.574, + 1249810.551, + 488.626 + ], + "parents": + [ + "UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2079, + 2080, + 2081, + 2082 + ] + ], + [ + [ + 2079, + 2083, + 2080 + ] + ], + [ + [ + 2084, + 2082, + 2081 + ] + ], + [ + [ + 2084, + 2081, + 2080, + 2083 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_8e32e3d7-1bc7-4155-b223-f928294d57e3": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2680649.599, + 1246617.838, + 438.22, + 2680666.02, + 1246634.07, + 451.59 + ], + "parents": + [ + "UUID_adad7dbf-a71d-4322-be0e-a5bb767c7f3f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095 + ] + ], + [ + [ + 2088, + 2087, + 2096, + 2097 + ] + ], + [ + [ + 2087, + 2086, + 2098, + 2096 + ] + ], + [ + [ + 2086, + 2085, + 2099, + 2098 + ] + ], + [ + [ + 2085, + 2095, + 2100, + 2099 + ] + ], + [ + [ + 2100, + 2101, + 2102, + 2103 + ] + ], + [ + [ + 2103, + 2102, + 2104 + ] + ], + [ + [ + 2095, + 2094, + 2105, + 2101 + ] + ], + [ + [ + 2094, + 2093, + 2106, + 2105 + ] + ], + [ + [ + 2093, + 2092, + 2107, + 2106 + ] + ], + [ + [ + 2092, + 2091, + 2108, + 2107 + ] + ], + [ + [ + 2091, + 2090, + 2109, + 2108 + ] + ], + [ + [ + 2090, + 2089, + 2110, + 2109 + ] + ], + [ + [ + 2089, + 2088, + 2097, + 2110 + ] + ], + [ + [ + 2111, + 2112, + 2113, + 2100, + 2103, + 2104 + ] + ], + [ + [ + 2101, + 2105, + 2114, + 2111, + 2104, + 2102 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-16", + "Region": 4, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2683153.164, + 1249799.736, + 473.0, + 2683171.771, + 1249811.649, + 492.626 + ], + "children": + [ + "UUID_df47c00c-fa20-43b9-903b-1368abe569cd", + "UUID_f1abc1a4-5487-4f59-9936-3ee6f70203f0", + "UUID_a67dedb9-773d-4261-b5de-810b90351d9d", + "UUID_8fdb26d3-f1cb-454f-8a03-06d7fca0edfe", + "UUID_fc2e9617-555a-45ad-a020-d4e721e2a2c2", + "UUID_9cb7ad55-f016-4a9a-8868-c760a4fb9be5", + "UUID_c737f44b-b56e-4070-b0c3-b75194cda5e1", + "UUID_a70e2b37-fb06-4934-9b6f-2e8242cf9b5e" + ] + }, + "UUID_9eabad9f-1452-49d4-b696-6ef3d266c427": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682075.729, + 1246048.115, + 432.496, + 2682077.264, + 1246049.807, + 435.088 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2115, + 2116, + 2117, + 2118 + ] + ], + [ + [ + 2115, + 2119, + 2116 + ] + ], + [ + [ + 2120, + 2118, + 2117 + ] + ], + [ + [ + 2121, + 2122, + 2116, + 2119 + ] + ], + [ + [ + 2121, + 2120, + 2117, + 2122 + ] + ], + [ + [ + 2116, + 2122, + 2117 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_28da16dc-70a3-49c8-a320-c3f108cf78ec": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684013.331, + 1251305.804, + 457.024, + 2684015.006, + 1251307.614, + 458.588 + ], + "parents": + [ + "UUID_2d11a43e-b755-4d8b-a83d-539bab78490e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2123, + 2124, + 2125, + 2126, + 2127 + ] + ], + [ + [ + 2125, + 2128, + 2126 + ] + ], + [ + [ + 2129, + 2124, + 2123 + ] + ], + [ + [ + 2130, + 2127, + 2126, + 2128 + ] + ], + [ + [ + 2130, + 2129, + 2123, + 2127 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_a6f5f953-b380-473f-895d-6efa88199c5c": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683541.978, + 1248586.684, + 474.665, + 2683542.928, + 1248588.336, + 477.226 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2131, + 2132, + 2133, + 2134 + ] + ], + [ + [ + 2135, + 2136, + 2137 + ] + ], + [ + [ + 2135, + 2137, + 2134, + 2133, + 1335 + ] + ], + [ + [ + 2137, + 2136, + 2131, + 2134 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_311e0eac-ff2f-4bc7-a0a9-9eebb00f0746": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683540.713, + 1248588.517, + 474.665, + 2683542.313, + 1248590.313, + 477.226 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2138, + 2139, + 2140 + ] + ], + [ + [ + 2141, + 2142, + 2143 + ] + ], + [ + [ + 2141, + 2143, + 2140, + 2139 + ] + ], + [ + [ + 2143, + 2142, + 2138, + 2140 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_efc6cb18-618b-46e0-8f79-351f8c31e4f0": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682843.11, + 1244471.052, + 406.437, + 2682847.123, + 1244502.367, + 412.035 + ], + "parents": + [ + "UUID_c26a5f50-a9e1-463d-922e-41c4dfcc8cd1" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2144, + 2145, + 2146 + ] + ], + [ + [ + 2147, + 2148, + 2144 + ] + ], + [ + [ + 2147, + 2149, + 2148 + ] + ], + [ + [ + 2147, + 2150, + 2149 + ] + ], + [ + [ + 2144, + 2151, + 2147 + ] + ], + [ + [ + 2144, + 2146, + 2151 + ] + ], + [ + [ + 2152, + 2153, + 2151, + 2146 + ] + ], + [ + [ + 2153, + 2154, + 2147, + 2151 + ] + ], + [ + [ + 2154, + 2155, + 2150, + 2147 + ] + ], + [ + [ + 2155, + 2156, + 2149, + 2150 + ] + ], + [ + [ + 2156, + 2157, + 2148, + 2149 + ] + ], + [ + [ + 2157, + 2158, + 2144, + 2148 + ] + ], + [ + [ + 2158, + 2159, + 2145, + 2144 + ] + ], + [ + [ + 2159, + 2152, + 2146, + 2145 + ] + ], + [ + [ + 2157, + 2156, + 2155, + 2154, + 2153, + 2152, + 2159, + 2158 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_4347681c-c8e8-40e4-bebd-1e87df01b402": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682066.614, + 1246053.678, + 432.496, + 2682068.64, + 1246054.799, + 434.971 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2160, + 2161, + 2162, + 2163 + ] + ], + [ + [ + 2160, + 2164, + 2161 + ] + ], + [ + [ + 2165, + 2163, + 2162 + ] + ], + [ + [ + 2161, + 2164, + 2166, + 2167, + 2168 + ] + ], + [ + [ + 2162, + 2161, + 2168 + ] + ], + [ + [ + 2167, + 2169, + 2165, + 2162, + 2168 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_d338f70b-5a9d-4a90-993e-49b9e06f6856": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682064.501, + 1246046.084, + 432.23, + 2682066.348, + 1246048.792, + 435.088 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2170, + 2171, + 2172, + 2173 + ] + ], + [ + [ + 2170, + 2173, + 2174, + 2175 + ] + ], + [ + [ + 2175, + 2174, + 2176, + 2177 + ] + ], + [ + [ + 2173, + 2172, + 2178, + 2179, + 2180 + ] + ], + [ + [ + 2179, + 2181, + 2176, + 2174, + 2180 + ] + ], + [ + [ + 2180, + 2174, + 2173 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c7ea47c1-5961-4f71-be4c-636ebf44be81": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684323.407, + 1246605.301, + 443.515, + 2684325.155, + 1246606.996, + 444.8 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2182, + 2183, + 2184 + ] + ], + [ + [ + 2183, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2184 + ] + ], + [ + [ + 2185, + 2201, + 2186 + ] + ], + [ + [ + 2202, + 2194, + 2193, + 2203 + ] + ], + [ + [ + 2204, + 2195, + 2194, + 2202 + ] + ], + [ + [ + 2205, + 2196, + 2195, + 2204 + ] + ], + [ + [ + 2206, + 2197, + 2196, + 2205 + ] + ], + [ + [ + 2206, + 2207, + 2198, + 2197 + ] + ], + [ + [ + 2207, + 2208, + 2199, + 2198 + ] + ], + [ + [ + 2208, + 2209, + 2200, + 2199 + ] + ], + [ + [ + 2209, + 2182, + 2184, + 2200 + ] + ], + [ + [ + 2210, + 2187, + 2186, + 2201 + ] + ], + [ + [ + 2211, + 2188, + 2187, + 2210 + ] + ], + [ + [ + 2212, + 2189, + 2188, + 2211 + ] + ], + [ + [ + 2213, + 2190, + 2189, + 2212 + ] + ], + [ + [ + 2214, + 2191, + 2190, + 2213 + ] + ], + [ + [ + 2215, + 2192, + 2191, + 2214 + ] + ], + [ + [ + 2203, + 2193, + 2192, + 2215 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c67fa6f8-264f-447d-af7b-661265e9dcbe": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684319.461, + 1246599.108, + 443.519, + 2684321.205, + 1246600.801, + 444.8 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2216, + 2217, + 2218 + ] + ], + [ + [ + 2217, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2218 + ] + ], + [ + [ + 2219, + 2235, + 2220 + ] + ], + [ + [ + 2236, + 2228, + 2227, + 2237 + ] + ], + [ + [ + 2238, + 2229, + 2228, + 2236 + ] + ], + [ + [ + 2239, + 2230, + 2229, + 2238 + ] + ], + [ + [ + 2240, + 2231, + 2230, + 2239 + ] + ], + [ + [ + 2240, + 2241, + 2232, + 2231 + ] + ], + [ + [ + 2241, + 2242, + 2233, + 2232 + ] + ], + [ + [ + 2242, + 2243, + 2234, + 2233 + ] + ], + [ + [ + 2243, + 2216, + 2218, + 2234 + ] + ], + [ + [ + 2244, + 2221, + 2220, + 2235 + ] + ], + [ + [ + 2245, + 2222, + 2221, + 2244 + ] + ], + [ + [ + 2246, + 2223, + 2222, + 2245 + ] + ], + [ + [ + 2247, + 2224, + 2223, + 2246 + ] + ], + [ + [ + 2248, + 2225, + 2224, + 2247 + ] + ], + [ + [ + 2249, + 2226, + 2225, + 2248 + ] + ], + [ + [ + 2237, + 2227, + 2226, + 2249 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_7ff7364e-5164-476a-a722-701955a3a37f": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-22", + "Region": 8, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682062.422, + 1246036.175, + 417.356, + 2682089.998, + 1246056.828, + 437.917 + ], + "children": + [ + "UUID_f76df3d0-4b15-4c4c-b56e-15fc5dafa091", + "UUID_4347681c-c8e8-40e4-bebd-1e87df01b402", + "UUID_44463af7-1041-4586-9f99-13d5f017ce3c", + "UUID_76456584-176b-4955-a635-fc3d8e901997", + "UUID_1fd09737-9da2-4e8f-8d4a-817d404df06c", + "UUID_989a7801-ba4d-4470-9577-3553237bb639", + "UUID_afb78d4b-2b41-4f11-9c40-7bd0303132ee", + "UUID_559a38f2-d13a-448c-97fe-bd2c0c06d880", + "UUID_4a91e242-f278-41bd-8998-7c922821d056", + "UUID_2de0fb0c-7707-4ca9-ab9f-87434f2d06d9", + "UUID_4787fb9c-ddbf-4bfc-bc5c-3b5fdfbf4d2f", + "UUID_dce99fff-e3a0-4a01-bc00-f23dc3afd735", + "UUID_d338f70b-5a9d-4a90-993e-49b9e06f6856", + "UUID_9eabad9f-1452-49d4-b696-6ef3d266c427" + ] + }, + "UUID_44463af7-1041-4586-9f99-13d5f017ce3c": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682085.372, + 1246052.457, + 425.307, + 2682087.334, + 1246055.645, + 426.014 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2250, + 2251, + 2252, + 2253 + ] + ], + [ + [ + 2254, + 2255, + 2251, + 2250 + ] + ], + [ + [ + 2256, + 2257, + 2255, + 2254 + ] + ], + [ + [ + 2253, + 2252, + 2257, + 2256 + ] + ], + [ + [ + 2255, + 2257, + 2252, + 2251 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_559a38f2-d13a-448c-97fe-bd2c0c06d880": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682076.201, + 1246044.413, + 432.496, + 2682077.736, + 1246046.105, + 435.088 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2258, + 2259, + 2260, + 2261 + ] + ], + [ + [ + 2258, + 2262, + 2259 + ] + ], + [ + [ + 2263, + 2261, + 2260 + ] + ], + [ + [ + 2264, + 2265, + 2259, + 2262 + ] + ], + [ + [ + 2264, + 2263, + 2260, + 2265 + ] + ], + [ + [ + 2259, + 2265, + 2260 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_ed4345d7-ef09-4503-a6bf-e14793b301d2": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2681959.258, + 1247027.549, + 410.324, + 2681985.776, + 1247044.698, + 432.625 + ], + "parents": + [ + "UUID_4ed5d1d4-fa69-4f0c-9600-f2e9f39af5f1" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2266, + 2267, + 2268, + 2269, + 2270, + 2271 + ] + ], + [ + [ + 2272, + 2273, + 2268, + 2267 + ] + ], + [ + [ + 2274, + 2275, + 2273, + 2272 + ] + ], + [ + [ + 2276, + 2271, + 2270, + 2277, + 2275, + 2274 + ] + ], + [ + [ + 2278, + 2279, + 2280, + 2281 + ] + ], + [ + [ + 2282, + 2283, + 2284, + 2285 + ] + ], + [ + [ + 2286, + 2287, + 2288, + 2289, + 2290, + 2291 + ] + ], + [ + [ + 2290, + 2289, + 2292, + 2293 + ] + ], + [ + [ + 2294, + 2295, + 2296, + 2297 + ] + ], + [ + [ + 2297, + 2296, + 2298, + 2282 + ] + ], + [ + [ + 2281, + 2299, + 2295, + 2294 + ] + ], + [ + [ + 2293, + 2300, + 2301, + 2302 + ] + ], + [ + [ + 2302, + 2301, + 2303, + 2278 + ] + ], + [ + [ + 2304, + 2305, + 2306, + 2307 + ] + ], + [ + [ + 2285, + 2308, + 2305, + 2304 + ] + ], + [ + [ + 2307, + 2306, + 2309, + 2286 + ] + ], + [ + [ + 2299, + 2280, + 2310, + 2311 + ] + ], + [ + [ + 2311, + 2310, + 2312, + 2313 + ] + ], + [ + [ + 2313, + 2312, + 2283, + 2298 + ] + ], + [ + [ + 2300, + 2292, + 2314, + 2315 + ] + ], + [ + [ + 2315, + 2314, + 2279, + 2303 + ] + ], + [ + [ + 2308, + 2284, + 2316, + 2317, + 2318, + 2319 + ] + ], + [ + [ + 2318, + 2317, + 2320, + 2321 + ] + ], + [ + [ + 2321, + 2320, + 2287, + 2309 + ] + ], + [ + [ + 2289, + 2288, + 2320, + 2317, + 2316, + 2312, + 2310, + 2314 + ] + ], + [ + [ + 2269, + 2268, + 2273, + 2275, + 2277, + 2270 + ] + ], + [ + [ + 2322, + 2323, + 2281, + 2294, + 2297, + 2282, + 2324, + 2325, + 2285, + 2304, + 2307, + 2286, + 2326, + 2327, + 2328, + 2293, + 2302, + 2278 + ], + [ + 2272, + 2329, + 2267, + 2266, + 2271, + 2276, + 2274 + ] + ], + [ + [ + 2330, + 2298, + 2296, + 2295, + 2299, + 2331, + 2332, + 2333 + ] + ], + [ + [ + 2301, + 2300, + 2315, + 2334, + 2335, + 2303 + ] + ], + [ + [ + 2336, + 2337, + 2338, + 2339, + 2306, + 2305, + 2308 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c26a5f50-a9e1-463d-922e-41c4dfcc8cd1": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "EO08", + "Herkunft": "NF_LB_2011", + "QualitaetStatus": 1, + "FileCreationDate": "2012-11-10", + "Region": 10, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682843.11, + 1244471.052, + 406.437, + 2682847.123, + 1244502.367, + 412.035 + ], + "children": + [ + "UUID_efc6cb18-618b-46e0-8f79-351f8c31e4f0" + ] + }, + "UUID_4e8d66be-2f29-41fa-9b74-07fa8e8d7159": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684322.365, + 1246600.031, + 444.767, + 2684325.472, + 1246602.817, + 447.015 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2340, + 2341, + 2342, + 2343 + ] + ], + [ + [ + 2341, + 2344, + 2342 + ] + ], + [ + [ + 2345, + 2340, + 2343 + ] + ], + [ + [ + 2344, + 2345, + 2343, + 2342 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_8e204f89-6864-4a56-ab4a-1bd0d0007a10": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682805.317, + 1243078.725, + 466.13, + 2682819.656, + 1243097.714, + 479.051 + ], + "parents": + [ + "UUID_65839993-f5b4-47fc-be70-25abd427bc0b" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2346, + 2347, + 2348, + 2349 + ] + ], + [ + [ + 2348, + 2350, + 2351, + 2352 + ] + ], + [ + [ + 2353, + 2354, + 2355, + 2352 + ] + ], + [ + [ + 2356, + 2357, + 2358, + 2359 + ] + ], + [ + [ + 2360, + 2361, + 2362, + 2363 + ] + ], + [ + [ + 2351, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370 + ] + ], + [ + [ + 2355, + 2371, + 2372, + 2352 + ] + ], + [ + [ + 2373, + 2374, + 2375, + 2376, + 2354, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382 + ] + ], + [ + [ + 2373, + 2346, + 2383, + 2384 + ] + ], + [ + [ + 2383, + 2349, + 2355, + 2356 + ] + ], + [ + [ + 2354, + 2376, + 2385, + 2356 + ] + ], + [ + [ + 2376, + 2375, + 2386, + 2385 + ] + ], + [ + [ + 2375, + 2374, + 2387, + 2386 + ] + ], + [ + [ + 2374, + 2373, + 2384, + 2387 + ] + ], + [ + [ + 2388, + 2360, + 2363, + 2389 + ] + ], + [ + [ + 2369, + 2368, + 2361, + 2360, + 2388, + 2390 + ] + ], + [ + [ + 2389, + 2363, + 2362, + 2379 + ] + ], + [ + [ + 2379, + 2362, + 2361, + 2380 + ] + ], + [ + [ + 2347, + 2382, + 2391, + 2350 + ] + ], + [ + [ + 2382, + 2381, + 2392, + 2391 + ] + ], + [ + [ + 2393, + 2367, + 2392, + 2381 + ] + ], + [ + [ + 2367, + 2393, + 2380, + 2368 + ] + ], + [ + [ + 2390, + 2377, + 2370, + 2369 + ] + ], + [ + [ + 2377, + 2353, + 2351, + 2370 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_eb2a6e76-2ac8-41f9-a676-e741a87a7b09": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684286.705, + 1248699.303, + 553.37, + 2684288.17, + 1248700.69, + 554.488 + ], + "parents": + [ + "UUID_9194ef74-d111-4fce-b364-3fc7c62402d5" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2394, + 2395, + 2396, + 2397 + ] + ], + [ + [ + 2398, + 2399, + 2395, + 2394 + ] + ], + [ + [ + 2400, + 2401, + 2399, + 2398 + ] + ], + [ + [ + 2400, + 2397, + 2396, + 2401 + ] + ], + [ + [ + 2399, + 2401, + 2396, + 2395 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_8240267f-eccd-4400-ae0c-6f5380e52db0": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2678666.167, + 1250884.422, + 400.996, + 2678682.908, + 1250906.574, + 421.24 + ], + "parents": + [ + "UUID_601e5813-30d5-48f0-9649-cb0ff3d722dc" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410 + ] + ], + [ + [ + 2406, + 2405, + 2411, + 2412 + ] + ], + [ + [ + 2405, + 2404, + 2413, + 2411 + ] + ], + [ + [ + 2404, + 2403, + 2414, + 2413 + ] + ], + [ + [ + 2403, + 2402, + 2415, + 2414 + ] + ], + [ + [ + 2402, + 2410, + 2416, + 2415 + ] + ], + [ + [ + 2410, + 2409, + 2417, + 2416 + ] + ], + [ + [ + 2409, + 2408, + 2418, + 2417 + ] + ], + [ + [ + 2408, + 2407, + 2419, + 2418 + ] + ], + [ + [ + 2407, + 2406, + 2412, + 2419 + ] + ], + [ + [ + 2420, + 2421, + 2422, + 2423 + ] + ], + [ + [ + 2424, + 2425, + 2421, + 2420 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_89681b0a-629d-4ff3-a512-1e0d7363f624": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2686103.386, + 1245900.364, + 518.088, + 2686115.579, + 1245912.038, + 533.89 + ], + "parents": + [ + "UUID_e02995c9-2a6f-4a76-93f5-f45d896bea93" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2426, + 2427, + 2428, + 2429 + ] + ], + [ + [ + 2430, + 2431, + 2432, + 2433 + ] + ], + [ + [ + 2431, + 2434, + 2435, + 2432 + ] + ], + [ + [ + 2434, + 2436, + 2437, + 2435 + ] + ], + [ + [ + 2436, + 2438, + 2439, + 2437 + ] + ], + [ + [ + 2440, + 2441, + 2442, + 2443 + ] + ], + [ + [ + 2441, + 2444, + 2445, + 2446, + 2442 + ] + ], + [ + [ + 2444, + 2447, + 2448, + 2449, + 2445 + ] + ], + [ + [ + 2450, + 2451, + 2452, + 2453, + 2454, + 2447, + 2444, + 2441, + 2440, + 2455, + 2456, + 2457, + 2458, + 2459 + ] + ], + [ + [ + 2453, + 2452, + 2460, + 2461 + ] + ], + [ + [ + 2462, + 2460, + 2452, + 2451, + 2463, + 2464, + 2465 + ] + ], + [ + [ + 2466, + 2467, + 2468, + 2469, + 2470, + 2471 + ] + ], + [ + [ + 2428, + 2462, + 2472, + 2473, + 2429 + ] + ], + [ + [ + 2435, + 2437, + 2439, + 2463, + 2433, + 2432 + ] + ], + [ + [ + 2436, + 2434, + 2431, + 2474, + 2475, + 2476, + 2426, + 2477 + ] + ], + [ + [ + 2459, + 2458, + 2445, + 2449 + ] + ], + [ + [ + 2459, + 2449, + 2454 + ] + ], + [ + [ + 2457, + 2446, + 2445, + 2458 + ] + ], + [ + [ + 2455, + 2440, + 2443 + ] + ], + [ + [ + 2446, + 2457, + 2455, + 2443, + 2442 + ] + ], + [ + [ + 2478, + 2474, + 2479, + 2453 + ] + ], + [ + [ + 2474, + 2480, + 2481, + 2479 + ] + ], + [ + [ + 2482, + 2476, + 2483, + 2484 + ] + ], + [ + [ + 2476, + 2475, + 2485, + 2483 + ] + ], + [ + [ + 2475, + 2478, + 2453, + 2485 + ] + ], + [ + [ + 2427, + 2482, + 2484, + 2428 + ] + ], + [ + [ + 2480, + 2430, + 2433, + 2481 + ] + ], + [ + [ + 2467, + 2464, + 2463, + 2439, + 2468 + ] + ], + [ + [ + 2438, + 2477, + 2469, + 2468 + ] + ], + [ + [ + 2477, + 2486, + 2470, + 2469 + ] + ], + [ + [ + 2470, + 2473, + 2472, + 2471 + ] + ], + [ + [ + 2471, + 2472, + 2462, + 2465, + 2466 + ] + ], + [ + [ + 2466, + 2465, + 2464, + 2467 + ] + ], + [ + [ + 2486, + 2426, + 2429, + 2473 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_48894ad8-2580-49ad-9571-61dfbcdb8d18": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2678219.195, + 1252035.317, + 485.317, + 2678236.234, + 1252050.985, + 498.835 + ], + "parents": + [ + "UUID_d44a2622-f6f4-43a1-8a72-18067e716fc9" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496 + ] + ], + [ + [ + 2496, + 2495, + 2497, + 2498 + ] + ], + [ + [ + 2495, + 2494, + 2499, + 2497 + ] + ], + [ + [ + 2494, + 2493, + 2500, + 2499 + ] + ], + [ + [ + 2493, + 2492, + 2501, + 2500 + ] + ], + [ + [ + 2492, + 2491, + 2502, + 2501 + ] + ], + [ + [ + 2502, + 2503, + 2504 + ] + ], + [ + [ + 2491, + 2490, + 2505, + 2503 + ] + ], + [ + [ + 2490, + 2489, + 2506, + 2505 + ] + ], + [ + [ + 2489, + 2488, + 2507, + 2506 + ] + ], + [ + [ + 2488, + 2487, + 2508, + 2507 + ] + ], + [ + [ + 2487, + 2496, + 2509, + 2508 + ] + ], + [ + [ + 2509, + 2498, + 2504 + ] + ], + [ + [ + 2510, + 2504, + 2511, + 2512 + ] + ], + [ + [ + 2504, + 2513, + 2514, + 2511 + ] + ], + [ + [ + 2515, + 2516, + 2504, + 2517 + ] + ], + [ + [ + 2516, + 2518, + 2519, + 2504 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c10d6310-5173-4ff7-81be-182e3a03f3b0": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683656.117, + 1246832.73, + 424.798, + 2683658.0, + 1246834.63, + 426.592 + ], + "parents": + [ + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2520, + 2521, + 2522, + 2523 + ] + ], + [ + [ + 2524, + 2525, + 2522, + 2521 + ] + ], + [ + [ + 2524, + 2526, + 2525 + ] + ], + [ + [ + 2527, + 2520, + 2523 + ] + ], + [ + [ + 2528, + 2522, + 2525, + 2526 + ] + ], + [ + [ + 2528, + 2527, + 2523, + 2522 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 5, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2684313.841, + 1246584.131, + 421.992, + 2684343.491, + 1246611.52, + 448.133 + ], + "children": + [ + "UUID_4eb04298-eafd-48b3-8e78-19515db68005", + "UUID_ad20451e-e9bd-4896-b0c7-b9aba4490e33", + "UUID_7ac1410e-058c-44a7-83d3-261cc5f86d8b", + "UUID_c257957c-f1dd-4dc7-8b0d-9ee50a6f6305", + "UUID_0752325e-f0e8-4d1c-9253-0309cfb599d4", + "UUID_c7ea47c1-5961-4f71-be4c-636ebf44be81", + "UUID_47f7da59-3360-475c-80d4-d612878f4166", + "UUID_7efe3441-bcdd-4950-9a17-b4b04f95fa8a", + "UUID_549ea6f1-848d-4ff9-83c9-9f1623512d5e", + "UUID_4e8d66be-2f29-41fa-9b74-07fa8e8d7159", + "UUID_c67fa6f8-264f-447d-af7b-661265e9dcbe", + "UUID_55a37e02-05fb-4285-baad-e9c388fe0ff2" + ] + }, + "UUID_0f6c77bc-8464-49e1-8dd0-433a11ba5429": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-04-10", + "Region": 7, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2679947.374, + 1248706.606, + 402.743, + 2679966.608, + 1248724.724, + 424.761 + ], + "children": + [ + "UUID_bec0b187-99f5-463e-a0c3-a8b7f56dfef7", + "UUID_44dbc8b0-9822-4bb7-8898-b0067732ca3f", + "UUID_862dedae-0a64-4b6b-81cf-d2c5efa8a2d9" + ] + }, + "UUID_5bc0c349-da6e-4caa-aea4-7f4e286416af": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683660.898, + 1246836.948, + 424.795, + 2683662.783, + 1246838.85, + 426.592 + ], + "parents": + [ + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2529, + 2530, + 2531, + 2532 + ] + ], + [ + [ + 2533, + 2534, + 2531, + 2530 + ] + ], + [ + [ + 2533, + 2535, + 2534 + ] + ], + [ + [ + 2536, + 2529, + 2532 + ] + ], + [ + [ + 2537, + 2531, + 2534, + 2535 + ] + ], + [ + [ + 2537, + 2536, + 2532, + 2531 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_ea9716ec-8de7-4162-a755-6cc070dbeb21": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684302.303, + 1248711.664, + 556.796, + 2684303.641, + 1248712.948, + 557.869 + ], + "parents": + [ + "UUID_9194ef74-d111-4fce-b364-3fc7c62402d5" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2538, + 2539, + 2540, + 2541 + ] + ], + [ + [ + 2542, + 2543, + 2540, + 2539 + ] + ], + [ + [ + 2544, + 2545, + 2543, + 2542 + ] + ], + [ + [ + 2538, + 2541, + 2545, + 2544 + ] + ], + [ + [ + 2540, + 2543, + 2545, + 2541 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_dd1a3dae-6731-4f1e-9605-0a03f4a31b72": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683661.94, + 1246831.365, + 428.704, + 2683664.303, + 1246833.639, + 429.463 + ], + "parents": + [ + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2546, + 2547, + 2548, + 2549 + ] + ], + [ + [ + 2550, + 2551, + 2547, + 2546 + ] + ], + [ + [ + 2552, + 2553, + 2551, + 2550 + ] + ], + [ + [ + 2549, + 2548, + 2553, + 2552 + ] + ], + [ + [ + 2554, + 2551, + 2553 + ] + ], + [ + [ + 2551, + 2554, + 2555, + 2547 + ] + ], + [ + [ + 2554, + 2553, + 2548, + 2555 + ] + ], + [ + [ + 2548, + 2547, + 2555 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_a0efba77-ccc0-4c21-a731-0e8f271230ae": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684574.934, + 1246324.438, + 452.009, + 2684577.169, + 1246326.68, + 452.456 + ], + "parents": + [ + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2556, + 2557, + 2558, + 2559 + ] + ], + [ + [ + 2560, + 2561, + 2557, + 2556 + ] + ], + [ + [ + 2562, + 2563, + 2561, + 2560 + ] + ], + [ + [ + 2559, + 2558, + 2563, + 2562 + ] + ], + [ + [ + 2561, + 2563, + 2558, + 2557 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_64cc319a-4341-4087-b65b-ba29f964dbdd": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682537.579, + 1251790.762, + 439.0, + 2682553.581, + 1251815.555, + 456.945 + ], + "parents": + [ + "UUID_44dcb74c-c74c-4c18-9747-e4adf5adb872" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2564, + 2565, + 2566, + 2567 + ] + ], + [ + [ + 2565, + 2568, + 2569, + 2566 + ] + ], + [ + [ + 2570, + 2571, + 2569, + 2568 + ] + ], + [ + [ + 2571, + 2570, + 2572, + 2573 + ] + ], + [ + [ + 2572, + 2574, + 2575, + 2573 + ] + ], + [ + [ + 2574, + 2576, + 2577, + 2575 + ] + ], + [ + [ + 2576, + 2578, + 2579, + 2577 + ] + ], + [ + [ + 2578, + 2580, + 2581, + 2579 + ] + ], + [ + [ + 2580, + 2582, + 2583, + 2581 + ] + ], + [ + [ + 2582, + 2584, + 2585, + 2583 + ] + ], + [ + [ + 2584, + 2586, + 2587, + 2585 + ] + ], + [ + [ + 2586, + 2588, + 2589, + 2587 + ] + ], + [ + [ + 2590, + 2591, + 2592, + 2593, + 2571, + 2594, + 2595, + 2589, + 2596 + ] + ], + [ + [ + 2586, + 2584, + 2582, + 2580, + 2578, + 2576, + 2574, + 2572, + 2570, + 2568, + 2565, + 2564, + 2597, + 2598, + 2599, + 2600, + 2588 + ] + ], + [ + [ + 2588, + 2600, + 2596, + 2589 + ] + ], + [ + [ + 2600, + 2599, + 2601, + 2596 + ] + ], + [ + [ + 2599, + 2598, + 2602, + 2601 + ] + ], + [ + [ + 2598, + 2597, + 2603, + 2602 + ] + ], + [ + [ + 2597, + 2564, + 2567, + 2603 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_da963f89-5cc4-4924-a6cd-6d552c4cd728": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2685586.743, + 1252123.612, + 435.157, + 2685587.81, + 1252124.666, + 436.301 + ], + "parents": + [ + "UUID_6ef0e1c5-f08e-410d-8172-3f5977e3b681" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2604, + 2605, + 2606, + 2607 + ] + ], + [ + [ + 2604, + 2608, + 2609, + 2605 + ] + ], + [ + [ + 2610, + 2611, + 2609, + 2608 + ] + ], + [ + [ + 2607, + 2606, + 2611, + 2610 + ] + ], + [ + [ + 2605, + 2609, + 2611, + 2606 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_133abec6-0057-4789-bd9c-b80c8b477da0": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 2, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2680434.721, + 1250720.107, + 486.284, + 2680461.707, + 1250746.7, + 501.658 + ], + "children": + [ + "UUID_faa8baea-9ee8-4048-bdef-394fa71175d7", + "UUID_13135116-cb9d-48de-8f62-293927ec9e0e" + ] + }, + "UUID_1904fb85-3274-481a-bcbd-366964facdc6": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 10, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682116.856, + 1243490.95, + 462.874, + 2682121.56, + 1243501.532, + 477.633 + ], + "children": + [ + "UUID_fcebd366-e849-4042-9073-57ed98b30f40", + "UUID_b36e19bf-dd90-47cb-8309-d8e2cb7783bc" + ] + }, + "UUID_1668915a-d927-40c9-b1d0-4383f4be204e": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683663.785, + 1246824.51, + 423.857, + 2683666.087, + 1246826.838, + 426.38 + ], + "parents": + [ + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2612, + 2613, + 2614, + 2615 + ] + ], + [ + [ + 2612, + 2616, + 2613 + ] + ], + [ + [ + 2617, + 2618, + 2619 + ] + ], + [ + [ + 2618, + 2615, + 2614, + 2619 + ] + ], + [ + [ + 2616, + 2620, + 2614, + 2613 + ] + ], + [ + [ + 2620, + 2617, + 2619, + 2614 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_87ae3482-ac74-4e9d-8da6-ac2f0ae2e396": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683557.527, + 1248594.005, + 474.665, + 2683558.902, + 1248596.001, + 477.226 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2621, + 2622, + 2623, + 2624 + ] + ], + [ + [ + 2623, + 1317, + 1248, + 2625, + 2624 + ] + ], + [ + [ + 1248, + 1247, + 2625 + ] + ], + [ + [ + 2621, + 2624, + 2625, + 1247 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_07622d49-093f-4001-b30b-1aa86dcbdb3b": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684575.86, + 1246317.05, + 448.124, + 2684577.045, + 1246318.51, + 449.413 + ], + "parents": + [ + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2626, + 2627, + 2628 + ] + ], + [ + [ + 2627, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2628 + ] + ], + [ + [ + 2629, + 2645, + 2630 + ] + ], + [ + [ + 2646, + 2638, + 2637, + 2647 + ] + ], + [ + [ + 2646, + 2648, + 2639, + 2638 + ] + ], + [ + [ + 2648, + 2649, + 2640, + 2639 + ] + ], + [ + [ + 2649, + 2650, + 2641, + 2640 + ] + ], + [ + [ + 2650, + 2651, + 2642, + 2641 + ] + ], + [ + [ + 2651, + 2652, + 2643, + 2642 + ] + ], + [ + [ + 2652, + 2653, + 2644, + 2643 + ] + ], + [ + [ + 2653, + 2626, + 2628, + 2644 + ] + ], + [ + [ + 2654, + 2631, + 2630, + 2645 + ] + ], + [ + [ + 2655, + 2632, + 2631, + 2654 + ] + ], + [ + [ + 2655, + 2656, + 2633, + 2632 + ] + ], + [ + [ + 2656, + 2657, + 2634, + 2633 + ] + ], + [ + [ + 2657, + 2658, + 2635, + 2634 + ] + ], + [ + [ + 2658, + 2659, + 2636, + 2635 + ] + ], + [ + [ + 2659, + 2647, + 2637, + 2636 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_e54b7be9-34d7-4001-98c6-22c27fc6f8b9": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 9, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2680257.752, + 1247104.403, + 427.526, + 2680274.194, + 1247117.969, + 458.884 + ], + "children": + [ + "UUID_fe19b524-c55d-4aeb-933f-4cee7dbad15e" + ] + }, + "UUID_24e51931-afcd-4f75-bb5f-cb3310e7be89": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683668.228, + 1246836.503, + 424.635, + 2683669.669, + 1246838.041, + 427.936 + ], + "parents": + [ + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2660, + 2661, + 2662, + 2663 + ] + ], + [ + [ + 2661, + 2664, + 2665, + 2662 + ] + ], + [ + [ + 2666, + 2667, + 2665, + 2664 + ] + ], + [ + [ + 2660, + 2663, + 2667, + 2666 + ] + ], + [ + [ + 2662, + 2665, + 2667, + 2663 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_2d11a43e-b755-4d8b-a83d-539bab78490e": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 3, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2684010.039, + 1251296.329, + 440.845, + 2684022.16, + 1251310.966, + 459.337 + ], + "children": + [ + "UUID_28da16dc-70a3-49c8-a320-c3f108cf78ec", + "UUID_6a50e7cd-04a6-44c4-8dd1-d52ab6d0c3a5" + ] + }, + "UUID_f1abc1a4-5487-4f59-9936-3ee6f70203f0": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2683153.164, + 1249799.736, + 473.0, + 2683171.771, + 1249811.649, + 492.626 + ], + "parents": + [ + "UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2668, + 2669, + 2670, + 2671, + 2672, + 2673 + ] + ], + [ + [ + 2672, + 2671, + 2674, + 2675 + ] + ], + [ + [ + 2671, + 2670, + 2676, + 2674 + ] + ], + [ + [ + 2670, + 2669, + 2677, + 2676 + ] + ], + [ + [ + 2669, + 2668, + 2678, + 2677 + ] + ], + [ + [ + 2668, + 2673, + 2679, + 2678 + ] + ], + [ + [ + 2673, + 2672, + 2675, + 2679 + ] + ], + [ + [ + 2680, + 2681, + 2682, + 2676 + ] + ], + [ + [ + 2676, + 2682, + 2683, + 2684 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_9194ef74-d111-4fce-b364-3fc7c62402d5": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-16", + "Region": 4, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2684272.319, + 1248694.619, + 539.084, + 2684306.425, + 1248717.886, + 557.869 + ], + "children": + [ + "UUID_077df727-e8b0-4d36-832c-9bac78575f49", + "UUID_eb2a6e76-2ac8-41f9-a676-e741a87a7b09", + "UUID_a8c8e763-dfa5-4151-93ef-c51aed1cd54b", + "UUID_ea9716ec-8de7-4162-a755-6cc070dbeb21", + "UUID_bc41c673-1857-468f-ab59-7189d1a4f3a7", + "UUID_f7734e6b-e403-4f9f-85ff-cbbb567364ab" + ] + }, + "UUID_adad7dbf-a71d-4322-be0e-a5bb767c7f3f": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 9, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2680649.599, + 1246617.838, + 438.22, + 2680666.02, + 1246634.07, + 451.59 + ], + "children": + [ + "UUID_8e32e3d7-1bc7-4155-b223-f928294d57e3" + ] + }, + "UUID_7efe3441-bcdd-4950-9a17-b4b04f95fa8a": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684321.297, + 1246587.419, + 443.432, + 2684323.027, + 1246589.213, + 444.776 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2685, + 2686, + 2687 + ] + ], + [ + [ + 2686, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2687 + ] + ], + [ + [ + 2688, + 2704, + 2689 + ] + ], + [ + [ + 2705, + 2697, + 2696, + 2706 + ] + ], + [ + [ + 2707, + 2698, + 2697, + 2705 + ] + ], + [ + [ + 2708, + 2699, + 2698, + 2707 + ] + ], + [ + [ + 2709, + 2700, + 2699, + 2708 + ] + ], + [ + [ + 2709, + 2710, + 2701, + 2700 + ] + ], + [ + [ + 2710, + 2711, + 2702, + 2701 + ] + ], + [ + [ + 2711, + 2712, + 2703, + 2702 + ] + ], + [ + [ + 2712, + 2685, + 2687, + 2703 + ] + ], + [ + [ + 2713, + 2690, + 2689, + 2704 + ] + ], + [ + [ + 2714, + 2691, + 2690, + 2713 + ] + ], + [ + [ + 2715, + 2692, + 2691, + 2714 + ] + ], + [ + [ + 2716, + 2693, + 2692, + 2715 + ] + ], + [ + [ + 2717, + 2694, + 2693, + 2716 + ] + ], + [ + [ + 2718, + 2695, + 2694, + 2717 + ] + ], + [ + [ + 2706, + 2696, + 2695, + 2718 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_9db22f7a-fcbf-466e-8005-d1a497103ffa": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682730.278, + 1248422.741, + 421.509, + 2682731.08, + 1248423.557, + 423.637 + ], + "parents": + [ + "UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2719, + 2720, + 2721, + 2722 + ] + ], + [ + [ + 2723, + 2724, + 2721, + 2720 + ] + ], + [ + [ + 2725, + 2726, + 2724, + 2723 + ] + ], + [ + [ + 2725, + 2719, + 2722, + 2726 + ] + ], + [ + [ + 2724, + 2726, + 2722, + 2721 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_f6cf4a7f-46ab-4560-aa8d-86c195dfe9cb": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683708.51, + 1249300.864, + 507.447, + 2683711.248, + 1249304.025, + 510.233 + ], + "parents": + [ + "UUID_4105dddd-89a5-4dfe-ba32-353c3b3b4499" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2727, + 2728, + 2729, + 2730 + ] + ], + [ + [ + 2731, + 2732, + 2733, + 2734 + ] + ], + [ + [ + 2727, + 2730, + 2732, + 2731 + ] + ], + [ + [ + 2735, + 2733, + 2732, + 2736 + ] + ], + [ + [ + 2736, + 2732, + 2730 + ] + ], + [ + [ + 2735, + 2736, + 2730, + 2729 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_809c08c8-2739-4ffb-81c7-b94a58165f10": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684579.094, + 1246323.462, + 452.009, + 2684581.697, + 1246325.878, + 452.814 + ], + "parents": + [ + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2737, + 2738, + 2739, + 2740 + ] + ], + [ + [ + 2741, + 2742, + 2738, + 2737 + ] + ], + [ + [ + 2743, + 2744, + 2742, + 2741 + ] + ], + [ + [ + 2740, + 2739, + 2744, + 2743 + ] + ], + [ + [ + 2742, + 2744, + 2739, + 2738 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_0a3c8831-4910-4ac1-a37c-0c5bf966706f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2683131.479, + 1243630.844, + 405.0, + 2683146.318, + 1243645.377, + 418.38 + ], + "parents": + [ + "UUID_889b7d4a-cbf4-4aa3-a9aa-2e20e87b080d" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754 + ] + ], + [ + [ + 2750, + 2749, + 2755, + 2756 + ] + ], + [ + [ + 2749, + 2748, + 2757, + 2755 + ] + ], + [ + [ + 2758, + 2759, + 2760, + 2761 + ] + ], + [ + [ + 2761, + 2760, + 2751, + 2750, + 2762 + ] + ], + [ + [ + 2762, + 2756, + 2763, + 2764 + ] + ], + [ + [ + 2764, + 2763, + 2757, + 2765 + ] + ], + [ + [ + 2748, + 2747, + 2766, + 2765 + ] + ], + [ + [ + 2747, + 2746, + 2767, + 2766 + ] + ], + [ + [ + 2746, + 2745, + 2768, + 2767 + ] + ], + [ + [ + 2745, + 2754, + 2769, + 2768 + ] + ], + [ + [ + 2754, + 2753, + 2770, + 2769 + ] + ], + [ + [ + 2770, + 2771, + 2759, + 2758 + ] + ], + [ + [ + 2751, + 2760, + 2772, + 2752 + ] + ], + [ + [ + 2753, + 2752, + 2772, + 2771 + ] + ], + [ + [ + 2763, + 2773, + 2774, + 2775 + ] + ], + [ + [ + 2767, + 2768, + 2769, + 2758, + 2776, + 2777, + 2764, + 2766 + ] + ], + [ + [ + 2778, + 2779, + 2780, + 2759 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_506bcdde-bfff-416e-a296-9be9ff70801e": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-30", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2681739.874, + 1243906.82, + 426.506, + 2681768.04, + 1243916.002, + 441.739 + ], + "parents": + [ + "UUID_37f3b52f-e267-4fd8-b344-ea8343643647" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2781, + 2782, + 2783, + 2784 + ] + ], + [ + [ + 2785, + 2786, + 2787, + 2782, + 2781, + 2788 + ] + ], + [ + [ + 2783, + 2789, + 2790, + 2791, + 2792, + 2784 + ] + ], + [ + [ + 2793, + 2794, + 2795, + 2796 + ] + ], + [ + [ + 2788, + 2792, + 2797, + 2798 + ] + ], + [ + [ + 2799, + 2790, + 2800, + 2801 + ] + ], + [ + [ + 2801, + 2800, + 2794, + 2793 + ] + ], + [ + [ + 2786, + 2785, + 2788, + 2798, + 2796, + 2795 + ] + ], + [ + [ + 2792, + 2791, + 2799, + 2797 + ] + ], + [ + [ + 2792, + 2788, + 2781, + 2784 + ] + ], + [ + [ + 2802, + 2803, + 2804, + 2805, + 2798, + 2797 + ] + ], + [ + [ + 2786, + 2790, + 2783, + 2782 + ] + ], + [ + [ + 2800, + 2790, + 2786, + 2795, + 2794 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 11 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_49e3f540-778f-4fee-a4c1-2a3c64aadd32": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2685701.38, + 1246014.248, + 497.726, + 2685704.522, + 1246016.571, + 499.64 + ], + "parents": + [ + "UUID_a662769f-e5bd-4977-9c19-13840f38fb11" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2806, + 2807, + 2808 + ] + ], + [ + [ + 2809, + 2810, + 2811 + ] + ], + [ + [ + 2811, + 2810, + 2806, + 2808, + 2812 + ] + ], + [ + [ + 2813, + 2812, + 2808, + 2807 + ] + ], + [ + [ + 2809, + 2811, + 2812, + 2813 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c383c4f4-4e35-458c-8907-ce1a332ebc12": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 1, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2683596.689, + 1252091.962, + 432.417, + 2683611.046, + 1252112.337, + 454.632 + ], + "children": + [ + "UUID_d47435e1-2475-4f10-a0bf-3e28ad4400be" + ] + }, + "UUID_4eb04298-eafd-48b3-8e78-19515db68005": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684317.601, + 1246596.188, + 443.522, + 2684319.342, + 1246597.879, + 444.8 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2814, + 2815, + 2816 + ] + ], + [ + [ + 2815, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2816 + ] + ], + [ + [ + 2817, + 2833, + 2818 + ] + ], + [ + [ + 2834, + 2826, + 2825, + 2835 + ] + ], + [ + [ + 2836, + 2827, + 2826, + 2834 + ] + ], + [ + [ + 2837, + 2828, + 2827, + 2836 + ] + ], + [ + [ + 2838, + 2829, + 2828, + 2837 + ] + ], + [ + [ + 2838, + 2839, + 2830, + 2829 + ] + ], + [ + [ + 2839, + 2840, + 2831, + 2830 + ] + ], + [ + [ + 2840, + 2841, + 2832, + 2831 + ] + ], + [ + [ + 2841, + 2814, + 2816, + 2832 + ] + ], + [ + [ + 2842, + 2819, + 2818, + 2833 + ] + ], + [ + [ + 2843, + 2820, + 2819, + 2842 + ] + ], + [ + [ + 2844, + 2821, + 2820, + 2843 + ] + ], + [ + [ + 2845, + 2822, + 2821, + 2844 + ] + ], + [ + [ + 2846, + 2823, + 2822, + 2845 + ] + ], + [ + [ + 2847, + 2824, + 2823, + 2846 + ] + ], + [ + [ + 2835, + 2825, + 2824, + 2847 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_e6833be8-1ded-4fe5-9cf0-bac095165038": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683549.244, + 1248596.898, + 474.665, + 2683550.674, + 1248597.814, + 477.034 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2848, + 2849, + 2850, + 2851 + ] + ], + [ + [ + 2848, + 2852, + 2849 + ] + ], + [ + [ + 2853, + 2851, + 2850 + ] + ], + [ + [ + 2854, + 2855, + 2849, + 2852 + ] + ], + [ + [ + 2850, + 2849, + 2855 + ] + ], + [ + [ + 2854, + 2853, + 2850, + 2855 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_4c5c6291-62c1-4a0d-9a15-2a2861388ce4": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2686103.439, + 1245908.23, + 528.891, + 2686106.49, + 1245910.864, + 531.451 + ], + "parents": + [ + "UUID_e02995c9-2a6f-4a76-93f5-f45d896bea93" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2856, + 2857, + 2858, + 2859 + ] + ], + [ + [ + 2860, + 2861, + 2857, + 2856 + ] + ], + [ + [ + 2862, + 2859, + 2858 + ] + ], + [ + [ + 2860, + 2862, + 2858, + 2861 + ] + ], + [ + [ + 2858, + 2857, + 2861 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_b20b4755-1dc3-4332-ad80-da83460c3e46": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 10, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682572.256, + 1245115.106, + 411.0, + 2682593.725, + 1245129.021, + 427.18 + ], + "children": + [ + "UUID_8eade562-27e6-4dfc-8c6d-a5f8294be7b3" + ] + }, + "UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 2, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2681682.171, + 1250087.352, + 444.332, + 2681701.164, + 1250102.479, + 461.991 + ], + "children": + [ + "UUID_8c2b73f1-d761-4882-b2ad-965a9860f968", + "UUID_35e061b2-98d2-498a-8063-c9da0905d955", + "UUID_3095c66a-c43c-4bea-b860-3ac0e85c215b", + "UUID_214e3763-326b-4899-97ef-22069b5d9e38", + "UUID_59174e25-a677-4351-897e-6576c95fe6b6", + "UUID_0db71477-aeb0-4dbb-85a3-23974344f5a3", + "UUID_c7273bf9-6d42-4648-8e19-03dedda9ce9b", + "UUID_924a2335-5cfc-4cf1-ac78-8f4941bccbe3" + ] + }, + "UUID_35e061b2-98d2-498a-8063-c9da0905d955": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2681691.051, + 1250099.931, + 454.99, + 2681695.078, + 1250101.786, + 457.79 + ], + "parents": + [ + "UUID_1a4588eb-00c0-4375-a5b5-7f163eaa2f06" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2863, + 2864, + 2865 + ] + ], + [ + [ + 2866, + 2867, + 2868 + ] + ], + [ + [ + 2863, + 2865, + 2868, + 2867 + ] + ], + [ + [ + 2864, + 2866, + 2868, + 2865 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_4941ae6c-bac8-4520-a416-4bb48b889e29": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2683926.714, + 1248477.282, + 493.773, + 2683944.005, + 1248494.579, + 514.706 + ], + "parents": + [ + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2869, + 2870, + 2871, + 2872 + ] + ], + [ + [ + 2873, + 2874, + 2875, + 2876 + ] + ], + [ + [ + 2874, + 2877, + 2878, + 2875 + ] + ], + [ + [ + 2879, + 2880, + 2881, + 2882 + ] + ], + [ + [ + 2880, + 2873, + 2876, + 2881 + ] + ], + [ + [ + 2883, + 2884, + 2885, + 2886 + ] + ], + [ + [ + 2884, + 2879, + 2882, + 2885 + ] + ], + [ + [ + 2887, + 2888, + 2889, + 2890 + ] + ], + [ + [ + 2888, + 2883, + 2886, + 2889 + ] + ], + [ + [ + 2891, + 2892, + 2893, + 2890, + 2894, + 2895 + ] + ], + [ + [ + 2893, + 2892, + 2896, + 2897 + ] + ], + [ + [ + 2891, + 2898, + 2896, + 2892 + ] + ], + [ + [ + 2895, + 2899, + 2898, + 2891 + ] + ], + [ + [ + 2900, + 2899, + 2895, + 2894 + ] + ], + [ + [ + 2890, + 2901, + 2900, + 2894 + ] + ], + [ + [ + 2874, + 2873, + 2880, + 2879, + 2884, + 2883, + 2888, + 2887, + 2902, + 2870, + 2869, + 2877 + ] + ], + [ + [ + 2887, + 2890, + 2893, + 2902 + ] + ], + [ + [ + 2870, + 2902, + 2893, + 2871 + ] + ], + [ + [ + 2877, + 2869, + 2872, + 2878 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_f7734e6b-e403-4f9f-85ff-cbbb567364ab": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2684272.319, + 1248694.619, + 539.084, + 2684306.425, + 1248717.886, + 556.962 + ], + "parents": + [ + "UUID_9194ef74-d111-4fce-b364-3fc7c62402d5" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914 + ] + ], + [ + [ + 2908, + 2907, + 2915, + 2916 + ] + ], + [ + [ + 2907, + 2906, + 2917, + 2915 + ] + ], + [ + [ + 2906, + 2905, + 2918, + 2917 + ] + ], + [ + [ + 2905, + 2904, + 2919, + 2918 + ] + ], + [ + [ + 2904, + 2903, + 2920, + 2919 + ] + ], + [ + [ + 2903, + 2914, + 2921, + 2920 + ] + ], + [ + [ + 2922, + 2921, + 2923, + 2924, + 2925 + ] + ], + [ + [ + 2914, + 2913, + 2926, + 2923 + ] + ], + [ + [ + 2913, + 2912, + 2542, + 2926 + ] + ], + [ + [ + 2912, + 2911, + 2927, + 2542 + ] + ], + [ + [ + 2911, + 2910, + 2928, + 2927 + ] + ], + [ + [ + 2910, + 2909, + 2929, + 2928 + ] + ], + [ + [ + 2909, + 2908, + 2930, + 2929 + ] + ], + [ + [ + 2916, + 2925, + 2924, + 2930 + ] + ], + [ + [ + 2931, + 2932, + 2933, + 2934, + 2935, + 2922 + ] + ], + [ + [ + 2936, + 2922, + 2935, + 2937 + ] + ], + [ + [ + 2938, + 2939, + 2924, + 2940 + ] + ], + [ + [ + 2939, + 2941, + 2942, + 2924 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_fc830572-a447-49ed-8d91-943d230ff75e": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682225.316, + 1250206.88, + 468.957, + 2682228.942, + 1250211.805, + 475.291 + ], + "parents": + [ + "UUID_1c91dd3a-aef6-41f6-990e-08aba3ca6933" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2943, + 2944, + 2945, + 2946, + 2947, + 2948 + ] + ], + [ + [ + 2947, + 2946, + 2949, + 2950 + ] + ], + [ + [ + 2946, + 2945, + 2951, + 2949 + ] + ], + [ + [ + 2945, + 2944, + 2952, + 2951 + ] + ], + [ + [ + 2944, + 2943, + 2953, + 2952 + ] + ], + [ + [ + 2943, + 2948, + 2954, + 2953 + ] + ], + [ + [ + 2948, + 2947, + 2950, + 2954 + ] + ], + [ + [ + 2955, + 2956, + 2957, + 2958 + ] + ], + [ + [ + 2956, + 2959, + 2960, + 2957 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_3cc2b88f-802c-4388-9e23-78e0e741c474": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB00", + "Herkunft": "EE_LB_2007_KorrFlaechennormalenUVM2015", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-22", + "Region": 8, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682566.825, + 1248514.331, + 402.37, + 2682610.649, + 1248557.833, + 429.383 + ], + "children": + [ + "UUID_3d17c044-55ac-4a43-a694-d7a59a230342", + "UUID_f497b237-766b-4872-ba41-f7cde715d91f", + "UUID_d546b721-51bf-4da3-8a04-10bc885c75e5", + "UUID_d0c1b77f-675f-4fb2-a7b7-79036f819a8d" + ] + }, + "UUID_4ed5d1d4-fa69-4f0c-9600-f2e9f39af5f1": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "NF_LB_2013", + "QualitaetStatus": 1, + "FileCreationDate": "2015-07-01", + "Region": 9, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2681959.258, + 1247027.549, + 410.324, + 2681985.776, + 1247044.698, + 432.625 + ], + "children": + [ + "UUID_ed4345d7-ef09-4503-a6bf-e14793b301d2" + ] + }, + "UUID_a0a4257a-b906-43c6-856d-01484dba0175": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2680250.349, + 1248160.292, + 420.392, + 2680252.515, + 1248162.405, + 422.026 + ], + "parents": + [ + "UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2961, + 2962, + 2963, + 2964 + ] + ], + [ + [ + 2965, + 2966, + 2962, + 2961 + ] + ], + [ + [ + 2967, + 2968, + 2966, + 2965 + ] + ], + [ + [ + 2964, + 2963, + 2968, + 2967 + ] + ], + [ + [ + 2962, + 2966, + 2968, + 2963 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_5001323d-93d7-4a6e-af6d-380641a0cea2": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683938.449, + 1248480.369, + 510.502, + 2683940.314, + 1248482.179, + 512.723 + ], + "parents": + [ + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2969, + 2970, + 2971 + ] + ], + [ + [ + 2970, + 2972, + 2973, + 2971 + ] + ], + [ + [ + 2974, + 2975, + 2976 + ] + ], + [ + [ + 2974, + 2976, + 2973, + 2972 + ] + ], + [ + [ + 2975, + 2977, + 2973, + 2976 + ] + ], + [ + [ + 2977, + 2969, + 2971, + 2973 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_889b7d4a-cbf4-4aa3-a9aa-2e20e87b080d": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "NF_LB_2011", + "QualitaetStatus": 1, + "FileCreationDate": "2012-11-10", + "Region": 10, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2683131.479, + 1243630.844, + 405.0, + 2683146.318, + 1243645.377, + 419.329 + ], + "children": + [ + "UUID_7949827f-0330-4436-8265-e6347a3540ad", + "UUID_0a3c8831-4910-4ac1-a37c-0c5bf966706f" + ] + }, + "UUID_989a7801-ba4d-4470-9577-3553237bb639": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682075.259, + 1246051.805, + 432.496, + 2682076.793, + 1246053.496, + 435.088 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2978, + 2979, + 2980, + 2981 + ] + ], + [ + [ + 2978, + 2982, + 2979 + ] + ], + [ + [ + 2983, + 2981, + 2980 + ] + ], + [ + [ + 2984, + 2985, + 2979, + 2982 + ] + ], + [ + [ + 2984, + 2983, + 2980, + 2985 + ] + ], + [ + [ + 2979, + 2985, + 2980 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_2946b6dd-ee5c-4293-87f6-4b0d6b722c44": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683658.607, + 1246834.926, + 424.797, + 2683660.491, + 1246836.827, + 426.592 + ], + "parents": + [ + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2986, + 2987, + 2988, + 2989 + ] + ], + [ + [ + 2990, + 2991, + 2988, + 2987 + ] + ], + [ + [ + 2990, + 2992, + 2991 + ] + ], + [ + [ + 2993, + 2986, + 2989 + ] + ], + [ + [ + 2994, + 2988, + 2991, + 2992 + ] + ], + [ + [ + 2994, + 2993, + 2989, + 2988 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_dac19f63-e31c-4546-81bb-1eb4c1dcaf60": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684574.149, + 1246320.046, + 448.124, + 2684575.334, + 1246321.506, + 449.413 + ], + "parents": + [ + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 2995, + 2996, + 2997 + ] + ], + [ + [ + 2996, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 2997 + ] + ], + [ + [ + 2998, + 3014, + 2999 + ] + ], + [ + [ + 3015, + 3007, + 3006, + 3016 + ] + ], + [ + [ + 3015, + 3017, + 3008, + 3007 + ] + ], + [ + [ + 3017, + 3018, + 3009, + 3008 + ] + ], + [ + [ + 3018, + 3019, + 3010, + 3009 + ] + ], + [ + [ + 3019, + 3020, + 3011, + 3010 + ] + ], + [ + [ + 3020, + 3021, + 3012, + 3011 + ] + ], + [ + [ + 3021, + 3022, + 3013, + 3012 + ] + ], + [ + [ + 3022, + 2995, + 2997, + 3013 + ] + ], + [ + [ + 3023, + 3000, + 2999, + 3014 + ] + ], + [ + [ + 3024, + 3001, + 3000, + 3023 + ] + ], + [ + [ + 3024, + 3025, + 3002, + 3001 + ] + ], + [ + [ + 3025, + 3026, + 3003, + 3002 + ] + ], + [ + [ + 3026, + 3027, + 3004, + 3003 + ] + ], + [ + [ + 3027, + 3028, + 3005, + 3004 + ] + ], + [ + [ + 3028, + 3016, + 3006, + 3005 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_85f5d0e7-6bf0-438f-a609-7b928f7a23e8": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683544.385, + 1248593.92, + 475.073, + 2683545.787, + 1248595.203, + 477.226 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3029, + 3030, + 3031 + ] + ], + [ + [ + 3029, + 3031, + 3032, + 3033 + ] + ], + [ + [ + 3034, + 3033, + 3032 + ] + ], + [ + [ + 3031, + 3030, + 3034, + 3032 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_264490e7-5415-4353-8e9b-6f7e5998f561": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2686107.377, + 1245908.741, + 528.916, + 2686110.453, + 1245911.195, + 531.388 + ], + "parents": + [ + "UUID_e02995c9-2a6f-4a76-93f5-f45d896bea93" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3035, + 3036, + 3037, + 3038 + ] + ], + [ + [ + 3035, + 3039, + 3036 + ] + ], + [ + [ + 3040, + 3038, + 3037 + ] + ], + [ + [ + 3041, + 3042, + 3036, + 3039 + ] + ], + [ + [ + 3036, + 3042, + 3037 + ] + ], + [ + [ + 3041, + 3040, + 3037, + 3042 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_4a91e242-f278-41bd-8998-7c922821d056": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682068.668, + 1246041.127, + 432.496, + 2682070.712, + 1246042.394, + 434.971 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3043, + 3044, + 3045, + 3046 + ] + ], + [ + [ + 3043, + 3047, + 3044 + ] + ], + [ + [ + 3048, + 3046, + 3045 + ] + ], + [ + [ + 3044, + 3047, + 3049, + 3050, + 3051 + ] + ], + [ + [ + 3045, + 3044, + 3051 + ] + ], + [ + [ + 3050, + 3052, + 3048, + 3045, + 3051 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_f544d475-2950-4843-8102-6f45401c6714": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683930.081, + 1248482.558, + 510.99, + 2683931.613, + 1248484.194, + 512.956 + ], + "parents": + [ + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3053, + 3054, + 3055 + ] + ], + [ + [ + 3054, + 3056, + 3057, + 3055 + ] + ], + [ + [ + 3058, + 3059, + 3060 + ] + ], + [ + [ + 3058, + 3060, + 3057, + 3056 + ] + ], + [ + [ + 3059, + 3061, + 3057, + 3060 + ] + ], + [ + [ + 3061, + 3053, + 3055, + 3057 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_e8344666-a15d-47ea-bbd6-e1261eb16af7": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB07", + "Herkunft": "NF_LB_2013", + "QualitaetStatus": 1, + "FileCreationDate": "2015-07-01", + "Region": 3, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2684515.96, + 1250874.973, + 454.054, + 2684530.368, + 1250886.323, + 460.0 + ], + "children": + [ + "UUID_1cb08835-42f4-4f74-9cfa-ae069992b8d2" + ] + }, + "UUID_a662769f-e5bd-4977-9c19-13840f38fb11": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 5, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2685696.529, + 1246012.3, + 485.878, + 2685708.844, + 1246029.112, + 501.046 + ], + "children": + [ + "UUID_86cb892a-059a-4ee1-9b05-41beab140553", + "UUID_49e3f540-778f-4fee-a4c1-2a3c64aadd32" + ] + }, + "UUID_65839993-f5b4-47fc-be70-25abd427bc0b": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 10, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2682805.317, + 1243078.725, + 466.13, + 2682819.656, + 1243097.714, + 479.051 + ], + "children": + [ + "UUID_8e204f89-6864-4a56-ab4a-1bd0d0007a10" + ] + }, + "UUID_5579091c-2356-4115-b14c-a07d02416836": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682726.662, + 1248427.716, + 419.518, + 2682728.877, + 1248430.149, + 421.107 + ], + "parents": + [ + "UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3062, + 3063, + 3064, + 3065, + 3066 + ] + ], + [ + [ + 3064, + 3067, + 3065 + ] + ], + [ + [ + 3068, + 3063, + 3062 + ] + ], + [ + [ + 3069, + 3066, + 3065, + 3067 + ] + ], + [ + [ + 3069, + 3068, + 3062, + 3066 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 9, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2680230.637, + 1248140.879, + 408.0, + 2680258.314, + 1248168.992, + 422.078 + ], + "children": + [ + "UUID_3c3eba56-1cdb-474c-9663-718c3c0b8faf", + "UUID_8b0217c1-4c57-4e86-a96e-6a2df434b2c4", + "UUID_82a5e20d-91d3-418c-bde7-472d6c5238d0", + "UUID_44c49cdb-a5ab-44e4-bfa5-2978a625d872", + "UUID_a0a4257a-b906-43c6-856d-01484dba0175" + ] + }, + "UUID_a67dedb9-773d-4261-b5de-810b90351d9d": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683154.108, + 1249801.096, + 486.975, + 2683156.859, + 1249802.895, + 488.826 + ], + "parents": + [ + "UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3070, + 3071, + 3072, + 3073 + ] + ], + [ + [ + 3070, + 3074, + 3071 + ] + ], + [ + [ + 3075, + 3073, + 3072 + ] + ], + [ + [ + 3075, + 3072, + 3071, + 3074 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_860a5d7e-1c0a-45cf-925b-9755b3998d10": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682735.966, + 1248420.176, + 419.529, + 2682738.169, + 1248422.596, + 421.107 + ], + "parents": + [ + "UUID_8ba3f32c-0a65-450c-8ed7-6bb37bbd3736" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3076, + 3077, + 3078, + 3079, + 3080 + ] + ], + [ + [ + 3078, + 3081, + 3079 + ] + ], + [ + [ + 3082, + 3077, + 3076 + ] + ], + [ + [ + 3083, + 3080, + 3079, + 3081 + ] + ], + [ + [ + 3083, + 3082, + 3076, + 3080 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_6ef0e1c5-f08e-410d-8172-3f5977e3b681": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 3, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2685582.125, + 1252118.148, + 423.898, + 2685592.437, + 1252129.141, + 436.301 + ], + "children": + [ + "UUID_77da0ac4-8ccc-4c27-a76c-24439c6df852", + "UUID_da963f89-5cc4-4924-a6cd-6d552c4cd728" + ] + }, + "UUID_06f9a78e-2816-4609-aff5-fcc55b5e9c7f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2687391.985, + 1246120.266, + 604.87, + 2687404.735, + 1246137.518, + 620.905 + ], + "parents": + [ + "UUID_29802826-7cf9-4d37-8cf3-46551947d383" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101 + ] + ], + [ + [ + 3086, + 3085, + 3102, + 3103 + ] + ], + [ + [ + 3085, + 3084, + 3104, + 3102 + ] + ], + [ + [ + 3084, + 3101, + 3105, + 3104 + ] + ], + [ + [ + 3101, + 3100, + 3106, + 3105 + ] + ], + [ + [ + 3100, + 3099, + 3107, + 3106 + ] + ], + [ + [ + 3099, + 3098, + 3108, + 3107 + ] + ], + [ + [ + 3098, + 3097, + 3109, + 3108 + ] + ], + [ + [ + 3097, + 3096, + 3110, + 3109 + ] + ], + [ + [ + 3095, + 3111, + 3110, + 3096 + ] + ], + [ + [ + 3111, + 3095, + 3094, + 3112 + ] + ], + [ + [ + 3094, + 3093, + 3113, + 3112 + ] + ], + [ + [ + 3093, + 3092, + 3114, + 3113 + ] + ], + [ + [ + 3092, + 3091, + 3115, + 3114 + ] + ], + [ + [ + 3091, + 3090, + 3116, + 3115 + ] + ], + [ + [ + 3090, + 3089, + 3117, + 3116 + ] + ], + [ + [ + 3089, + 3088, + 3118, + 3117 + ] + ], + [ + [ + 3088, + 3087, + 3119, + 3118 + ] + ], + [ + [ + 3087, + 3086, + 3103, + 3119 + ] + ], + [ + [ + 3120, + 3121, + 3122, + 3123 + ] + ], + [ + [ + 3124, + 3125, + 3126, + 3116, + 3117, + 3122, + 3121, + 3127, + 3111, + 3128 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_c257957c-f1dd-4dc7-8b0d-9ee50a6f6305": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684324.343, + 1246585.597, + 443.371, + 2684326.109, + 1246587.451, + 444.776 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3129, + 3130, + 3131 + ] + ], + [ + [ + 3130, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3131 + ] + ], + [ + [ + 3132, + 3148, + 3133 + ] + ], + [ + [ + 3149, + 3141, + 3140, + 3150 + ] + ], + [ + [ + 3151, + 3142, + 3141, + 3149 + ] + ], + [ + [ + 3152, + 3143, + 3142, + 3151 + ] + ], + [ + [ + 3153, + 3144, + 3143, + 3152 + ] + ], + [ + [ + 3153, + 3154, + 3145, + 3144 + ] + ], + [ + [ + 3154, + 3155, + 3146, + 3145 + ] + ], + [ + [ + 3155, + 3156, + 3147, + 3146 + ] + ], + [ + [ + 3156, + 3129, + 3131, + 3147 + ] + ], + [ + [ + 3157, + 3134, + 3133, + 3148 + ] + ], + [ + [ + 3158, + 3135, + 3134, + 3157 + ] + ], + [ + [ + 3159, + 3136, + 3135, + 3158 + ] + ], + [ + [ + 3160, + 3137, + 3136, + 3159 + ] + ], + [ + [ + 3161, + 3138, + 3137, + 3160 + ] + ], + [ + [ + 3162, + 3139, + 3138, + 3161 + ] + ], + [ + [ + 3150, + 3140, + 3139, + 3162 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_7e400037-6c9f-4ec4-9833-afdabfc5043b": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682547.122, + 1251802.165, + 456.945, + 2682549.801, + 1251805.025, + 457.552 + ], + "parents": + [ + "UUID_44dcb74c-c74c-4c18-9747-e4adf5adb872" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3163, + 3164, + 3165, + 3166 + ] + ], + [ + [ + 3167, + 3168, + 3164, + 3163 + ] + ], + [ + [ + 3169, + 3170, + 3168, + 3167 + ] + ], + [ + [ + 3166, + 3165, + 3170, + 3169 + ] + ], + [ + [ + 3168, + 3170, + 3165, + 3164 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_862dedae-0a64-4b6b-81cf-d2c5efa8a2d9": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2679951.083, + 1248719.419, + 420.332, + 2679951.845, + 1248720.144, + 422.311 + ], + "parents": + [ + "UUID_0f6c77bc-8464-49e1-8dd0-433a11ba5429" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3171, + 3172, + 3173, + 3174 + ] + ], + [ + [ + 3175, + 3176, + 3172, + 3171 + ] + ], + [ + [ + 3175, + 3177, + 3178, + 3176 + ] + ], + [ + [ + 3177, + 3174, + 3173, + 3178 + ] + ], + [ + [ + 3172, + 3176, + 3178, + 3173 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_a8c8e763-dfa5-4151-93ef-c51aed1cd54b": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684300.843, + 1248705.246, + 556.03, + 2684302.308, + 1248706.633, + 557.127 + ], + "parents": + [ + "UUID_9194ef74-d111-4fce-b364-3fc7c62402d5" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3179, + 3180, + 3181, + 3182 + ] + ], + [ + [ + 3183, + 3184, + 3180, + 3179 + ] + ], + [ + [ + 3185, + 3186, + 3184, + 3183 + ] + ], + [ + [ + 3185, + 3182, + 3181, + 3186 + ] + ], + [ + [ + 3184, + 3186, + 3181, + 3180 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_3d17c044-55ac-4a43-a694-d7a59a230342": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682575.002, + 1248532.616, + 425.65, + 2682577.614, + 1248535.222, + 427.05 + ], + "parents": + [ + "UUID_3cc2b88f-802c-4388-9e23-78e0e741c474" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3187, + 3188, + 3189, + 3190 + ] + ], + [ + [ + 3191, + 3192, + 3188, + 3187 + ] + ], + [ + [ + 3193, + 3194, + 3192, + 3191 + ] + ], + [ + [ + 3190, + 3189, + 3194, + 3193 + ] + ], + [ + [ + 3188, + 3192, + 3194, + 3189 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_1cb08835-42f4-4f74-9cfa-ae069992b8d2": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2684515.96, + 1250874.973, + 454.054, + 2684530.368, + 1250886.323, + 460.0 + ], + "parents": + [ + "UUID_e8344666-a15d-47ea-bbd6-e1261eb16af7" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202 + ] + ], + [ + [ + 3202, + 3201, + 3203, + 3204 + ] + ], + [ + [ + 3204, + 3203, + 3205, + 3206 + ] + ], + [ + [ + 3206, + 3205, + 3207, + 3208 + ] + ], + [ + [ + 3208, + 3207, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216 + ] + ], + [ + [ + 3213, + 3212, + 3217, + 3218 + ] + ], + [ + [ + 3218, + 3217, + 3219, + 3220 + ] + ], + [ + [ + 3220, + 3219, + 3198, + 3197 + ] + ], + [ + [ + 3203, + 3201, + 3199, + 3198, + 3219, + 3217, + 3212, + 3211, + 3207, + 3205 + ] + ], + [ + [ + 3220, + 3197, + 3196, + 3195, + 3202, + 3204, + 3206, + 3208, + 3216, + 3215, + 3214, + 3213, + 3218 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_44c49cdb-a5ab-44e4-bfa5-2978a625d872": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2680247.236, + 1248156.291, + 420.392, + 2680248.227, + 1248157.278, + 421.604 + ], + "parents": + [ + "UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3221, + 3222, + 3223, + 3224 + ] + ], + [ + [ + 3225, + 3226, + 3222, + 3221 + ] + ], + [ + [ + 3227, + 3228, + 3226, + 3225 + ] + ], + [ + [ + 3224, + 3223, + 3228, + 3227 + ] + ], + [ + [ + 3226, + 3228, + 3223, + 3222 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_13135116-cb9d-48de-8f62-293927ec9e0e": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2680434.721, + 1250720.107, + 486.284, + 2680461.707, + 1250746.7, + 500.658 + ], + "parents": + [ + "UUID_133abec6-0057-4789-bd9c-b80c8b477da0" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237 + ] + ], + [ + [ + 3238, + 3239, + 3235, + 3240 + ] + ], + [ + [ + 3235, + 3241, + 3242, + 3240 + ] + ], + [ + [ + 3243, + 3244, + 3245, + 3246 + ] + ], + [ + [ + 3238, + 3247, + 3246, + 3248, + 3239 + ] + ], + [ + [ + 3247, + 3238, + 3249, + 3250 + ] + ], + [ + [ + 3250, + 3249, + 3242, + 3251 + ] + ], + [ + [ + 3241, + 3252, + 3253, + 3251 + ] + ], + [ + [ + 3253, + 3254, + 3255, + 3256 + ] + ], + [ + [ + 3256, + 3255, + 3257, + 3258 + ] + ], + [ + [ + 3258, + 3257, + 3259, + 3260 + ] + ], + [ + [ + 3260, + 3259, + 3261, + 3262 + ] + ], + [ + [ + 3230, + 3229, + 3263, + 3262 + ] + ], + [ + [ + 3229, + 3237, + 3264, + 3263 + ] + ], + [ + [ + 3265, + 3266, + 3264, + 3237, + 3267 + ] + ], + [ + [ + 3266, + 3265, + 3244, + 3243 + ] + ], + [ + [ + 3265, + 3267, + 3236, + 3268 + ] + ], + [ + [ + 3236, + 3248, + 3245, + 3268 + ] + ], + [ + [ + 3252, + 3234, + 3269, + 3254 + ] + ], + [ + [ + 3234, + 3233, + 3270, + 3269 + ] + ], + [ + [ + 3233, + 3232, + 3271, + 3270 + ] + ], + [ + [ + 3232, + 3272, + 3273, + 3271 + ] + ], + [ + [ + 3272, + 3231, + 3274, + 3273 + ] + ], + [ + [ + 3231, + 3230, + 3261, + 3274 + ] + ], + [ + [ + 3249, + 3238, + 3240, + 3242 + ] + ], + [ + [ + 3266, + 3243, + 3246, + 3247, + 3250, + 3251, + 3253, + 3256, + 3258, + 3260, + 3262, + 3263, + 3264 + ] + ], + [ + [ + 3265, + 3268, + 3245, + 3244 + ] + ], + [ + [ + 3275, + 3276, + 3277, + 3261, + 3259, + 3257, + 3255, + 3254, + 3278, + 3279, + 3273, + 3274 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-16", + "Region": 4, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2683926.714, + 1248477.282, + 493.773, + 2683944.005, + 1248494.579, + 514.706 + ], + "children": + [ + "UUID_f544d475-2950-4843-8102-6f45401c6714", + "UUID_4941ae6c-bac8-4520-a416-4bb48b889e29", + "UUID_2c1fe1af-0627-4127-98c7-7ef4eb3310f2", + "UUID_6891bc95-7cd5-432f-93f2-a2424dadb6b1", + "UUID_064d890c-6bf9-4a58-80b8-13bf3cb0f4ea", + "UUID_5001323d-93d7-4a6e-af6d-380641a0cea2", + "UUID_12568183-2080-4683-ba1c-02a88e41c098", + "UUID_78b32fb9-0400-4aa7-a264-edb21f2e5398", + "UUID_c9e68bc9-7e28-4d2d-9175-56f44aacbdbf" + ] + }, + "UUID_fcc74528-8be9-40b2-9e0b-50b7d124706f": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-28", + "Region": 9, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2681492.841, + 1247290.828, + 411.501, + 2681510.139, + 1247307.933, + 433.322 + ], + "children": + [ + "UUID_4f2a6fa6-ad34-48df-a9db-18af2f27c722" + ] + }, + "UUID_2b587d1d-ef3d-4859-a9b9-a069396a2d91": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-19", + "Region": 6, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2684570.569, + 1246307.802, + 427.998, + 2684588.664, + 1246331.424, + 452.814 + ], + "children": + [ + "UUID_5911e8d0-2949-4c11-813b-9d7d068d827b", + "UUID_809c08c8-2739-4ffb-81c7-b94a58165f10", + "UUID_dac19f63-e31c-4546-81bb-1eb4c1dcaf60", + "UUID_f250cf3b-454e-4911-916d-98be59f30378", + "UUID_64efac00-00cd-455d-a8ac-9602bd232330", + "UUID_07622d49-093f-4001-b30b-1aa86dcbdb3b", + "UUID_ca2fbaa5-f962-4bdd-b1dc-0eb43e014a06", + "UUID_a0efba77-ccc0-4c21-a731-0e8f271230ae", + "UUID_95eed0ad-5544-4f61-bb4e-1fbc6c9b9126" + ] + }, + "UUID_d0c1b77f-675f-4fb2-a7b7-79036f819a8d": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682591.658, + 1248538.126, + 428.45, + 2682594.735, + 1248541.238, + 429.383 + ], + "parents": + [ + "UUID_3cc2b88f-802c-4388-9e23-78e0e741c474" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3280, + 3281, + 3282, + 3283 + ] + ], + [ + [ + 3284, + 3285, + 3281, + 3280 + ] + ], + [ + [ + 3286, + 3287, + 3285, + 3284 + ] + ], + [ + [ + 3283, + 3282, + 3287, + 3286 + ] + ], + [ + [ + 3282, + 3281, + 3285, + 3287 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_3c3eba56-1cdb-474c-9663-718c3c0b8faf": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2680244.036, + 1248153.528, + 420.392, + 2680245.824, + 1248155.335, + 420.813 + ], + "parents": + [ + "UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3288, + 3289, + 3290, + 3291 + ] + ], + [ + [ + 3292, + 3293, + 3289, + 3288 + ] + ], + [ + [ + 3294, + 3295, + 3293, + 3292 + ] + ], + [ + [ + 3291, + 3290, + 3295, + 3294 + ] + ], + [ + [ + 3296, + 3293, + 3295 + ] + ], + [ + [ + 3296, + 3289, + 3293 + ] + ], + [ + [ + 3296, + 3290, + 3289 + ] + ], + [ + [ + 3296, + 3295, + 3290 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_37f3b52f-e267-4fd8-b344-ea8343643647": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-30", + "class": "BB05", + "Herkunft": "NF_LB_2015", + "QualitaetStatus": 1, + "Region": 10, + "FileCreationDate": "2017-01-16", + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2681739.874, + 1243906.82, + 426.506, + 2681768.04, + 1243916.002, + 441.739 + ], + "children": + [ + "UUID_506bcdde-bfff-416e-a296-9be9ff70801e" + ] + }, + "UUID_6a50e7cd-04a6-44c4-8dd1-d52ab6d0c3a5": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2684010.039, + 1251296.329, + 440.845, + 2684022.16, + 1251310.966, + 459.337 + ], + "parents": + [ + "UUID_2d11a43e-b755-4d8b-a83d-539bab78490e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3297, + 3298, + 3299, + 3300 + ] + ], + [ + [ + 3301, + 3302, + 3303, + 3304 + ] + ], + [ + [ + 3305, + 3306, + 3307, + 3308 + ] + ], + [ + [ + 3306, + 3301, + 3304, + 3307 + ] + ], + [ + [ + 3309, + 3310, + 3311, + 3312 + ] + ], + [ + [ + 3310, + 3305, + 3308, + 3311 + ] + ], + [ + [ + 3313, + 3314, + 3315 + ] + ], + [ + [ + 3316, + 3317, + 3318, + 3314 + ] + ], + [ + [ + 3317, + 3319, + 3320, + 3318 + ] + ], + [ + [ + 3319, + 3321, + 3322, + 3320 + ] + ], + [ + [ + 3323, + 3324, + 3325, + 3326 + ] + ], + [ + [ + 3326, + 3327, + 3328, + 3322 + ] + ], + [ + [ + 3325, + 3312, + 3329 + ] + ], + [ + [ + 3315, + 3328, + 3330, + 3331, + 3332, + 3333, + 3313 + ] + ], + [ + [ + 3334, + 3335, + 3330, + 3328 + ] + ], + [ + [ + 3336, + 3334, + 3328, + 3327, + 3337 + ] + ], + [ + [ + 3338, + 3336, + 3337, + 3329 + ] + ], + [ + [ + 3339, + 3338, + 3329, + 3312 + ] + ], + [ + [ + 3320, + 3340, + 3315, + 3314, + 3318 + ] + ], + [ + [ + 3325, + 3329, + 3337, + 3327, + 3326 + ] + ], + [ + [ + 3297, + 3302, + 3301, + 3306, + 3305, + 3310, + 3309, + 3324, + 3323, + 3321, + 3319, + 3317, + 3316, + 3341, + 3298 + ] + ], + [ + [ + 3321, + 3323, + 3326, + 3322 + ] + ], + [ + [ + 3309, + 3312, + 3325, + 3324 + ] + ], + [ + [ + 3298, + 3341, + 3342, + 3299 + ] + ], + [ + [ + 3341, + 3316, + 3313, + 3342 + ] + ], + [ + [ + 3302, + 3297, + 3300, + 3303 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_fc2e9617-555a-45ad-a020-d4e721e2a2c2": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683154.114, + 1249809.375, + 486.934, + 2683160.082, + 1249811.189, + 488.626 + ], + "parents": + [ + "UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3343, + 3344, + 3345, + 3346 + ] + ], + [ + [ + 3343, + 3347, + 3344 + ] + ], + [ + [ + 3348, + 3346, + 3345 + ] + ], + [ + [ + 3348, + 3345, + 3344, + 3347 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_2de0fb0c-7707-4ca9-ab9f-87434f2d06d9": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682065.231, + 1246042.718, + 432.496, + 2682066.783, + 1246044.756, + 435.088 + ], + "parents": + [ + "UUID_7ff7364e-5164-476a-a722-701955a3a37f" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3349, + 3350, + 3351 + ] + ], + [ + [ + 3349, + 3351, + 3352, + 3353 + ] + ], + [ + [ + 3354, + 3353, + 3352 + ] + ], + [ + [ + 3351, + 3350, + 3355, + 3356, + 3357 + ] + ], + [ + [ + 3356, + 3358, + 3354, + 3352, + 3357 + ] + ], + [ + [ + 3352, + 3351, + 3357 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_68e41ae6-0f82-4bc3-a20c-125b93c0eac4": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-04-10", + "Region": 7, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2679101.239, + 1249375.105, + 395.786, + 2679111.733, + 1249389.311, + 409.04 + ], + "children": + [ + "UUID_49871a1e-8f11-432e-8a42-6fe31ff0f80b", + "UUID_ca11039d-995f-40c6-b429-ce46c1560b48", + "UUID_cadcdc56-6326-4d2a-97da-9efab40fa1d6" + ] + }, + "UUID_077e49ca-1e03-44ef-bb3c-cd2168d06cf1": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683660.774, + 1246835.119, + 425.411, + 2683662.836, + 1246837.26, + 428.572 + ], + "parents": + [ + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3359, + 3360, + 3361, + 3362 + ] + ], + [ + [ + 3360, + 3363, + 3364, + 3361 + ] + ], + [ + [ + 3365, + 3366, + 3364, + 3363 + ] + ], + [ + [ + 3359, + 3362, + 3366, + 3365 + ] + ], + [ + [ + 3361, + 3364, + 3366, + 3362 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_82a5e20d-91d3-418c-bde7-472d6c5238d0": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2680230.637, + 1248140.879, + 408.0, + 2680258.314, + 1248168.992, + 420.392 + ], + "parents": + [ + "UUID_c5847f76-d8dd-4e1d-a2a0-c005c58752a0" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386 + ] + ], + [ + [ + 3375, + 3387, + 3388, + 3389 + ] + ], + [ + [ + 3387, + 3374, + 3390, + 3388 + ] + ], + [ + [ + 3374, + 3373, + 3391, + 3390 + ] + ], + [ + [ + 3373, + 3372, + 3392, + 3391 + ] + ], + [ + [ + 3372, + 3371, + 3393, + 3392 + ] + ], + [ + [ + 3371, + 3370, + 3394, + 3393 + ] + ], + [ + [ + 3370, + 3369, + 3395, + 3394 + ] + ], + [ + [ + 3369, + 3368, + 3396, + 3395 + ] + ], + [ + [ + 3368, + 3367, + 3397, + 3396 + ] + ], + [ + [ + 3398, + 3399, + 3397, + 3367 + ] + ], + [ + [ + 3399, + 3398, + 3386, + 3400 + ] + ], + [ + [ + 3386, + 3385, + 3401, + 3400 + ] + ], + [ + [ + 3385, + 3402, + 3403, + 3401 + ] + ], + [ + [ + 3402, + 3384, + 3404, + 3403 + ] + ], + [ + [ + 3384, + 3383, + 3405, + 3404 + ] + ], + [ + [ + 3383, + 3382, + 3406, + 3405 + ] + ], + [ + [ + 3382, + 3381, + 3407, + 3406 + ] + ], + [ + [ + 3381, + 3380, + 3408, + 3407 + ] + ], + [ + [ + 3380, + 3379, + 3409, + 3408 + ] + ], + [ + [ + 3379, + 3378, + 3410, + 3409 + ] + ], + [ + [ + 3378, + 3377, + 3411, + 3410 + ] + ], + [ + [ + 3377, + 3412, + 3413, + 3411 + ] + ], + [ + [ + 3412, + 3376, + 3414, + 3413 + ] + ], + [ + [ + 3376, + 3375, + 3389, + 3414 + ] + ], + [ + [ + 3389, + 3388, + 3415, + 3416, + 3391, + 3392, + 3417, + 3418, + 3395, + 3396, + 3419, + 3420, + 3399, + 3400, + 3401, + 3403, + 3421, + 3422, + 3405, + 3406, + 3423, + 3424, + 3409, + 3410, + 3425, + 3426, + 3413, + 3414 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_60ae78b4-7632-49ca-89ed-3d1616d5eb80": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2685107.632, + 1247529.088, + 512.423, + 2685111.247, + 1247532.64, + 514.965 + ], + "parents": + [ + "UUID_583c776f-5b0c-4d42-9c37-5b94e0c21a30" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3427, + 3428, + 3429 + ] + ], + [ + [ + 3430, + 3431, + 3429, + 3428 + ] + ], + [ + [ + 3430, + 3432, + 3431 + ] + ], + [ + [ + 3427, + 3429, + 3431, + 3432 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_d546b721-51bf-4da3-8a04-10bc885c75e5": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2682566.825, + 1248514.331, + 402.37, + 2682610.649, + 1248557.833, + 428.45 + ], + "parents": + [ + "UUID_3cc2b88f-802c-4388-9e23-78e0e741c474" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445 + ] + ], + [ + [ + 3446, + 3447, + 3448, + 3449 + ] + ], + [ + [ + 3450, + 3451, + 3447, + 3446 + ] + ], + [ + [ + 3450, + 3452, + 3453, + 3451 + ] + ], + [ + [ + 3454, + 3455, + 3456, + 3457 + ] + ], + [ + [ + 3458, + 3459, + 3460, + 3461 + ] + ], + [ + [ + 3462, + 3455, + 3463, + 3464, + 3459 + ] + ], + [ + [ + 3465, + 3466, + 3463, + 3454 + ] + ], + [ + [ + 3448, + 3453, + 3467, + 3466, + 3465, + 3449 + ] + ], + [ + [ + 3460, + 3464, + 3467, + 3452 + ] + ], + [ + [ + 3445, + 3468, + 3469, + 3433 + ] + ], + [ + [ + 3444, + 3470, + 3468, + 3445 + ] + ], + [ + [ + 3443, + 3471, + 3470, + 3444 + ] + ], + [ + [ + 3442, + 3472, + 3471, + 3443 + ] + ], + [ + [ + 3441, + 3473, + 3472, + 3442 + ] + ], + [ + [ + 3440, + 3474, + 3473, + 3441 + ] + ], + [ + [ + 3439, + 3475, + 3474, + 3440 + ] + ], + [ + [ + 3433, + 3469, + 3476, + 3434 + ] + ], + [ + [ + 3434, + 3476, + 3477, + 3435 + ] + ], + [ + [ + 3435, + 3477, + 3478, + 3436 + ] + ], + [ + [ + 3436, + 3478, + 3479, + 3437 + ] + ], + [ + [ + 3437, + 3479, + 3480, + 3438 + ] + ], + [ + [ + 3438, + 3480, + 3475, + 3439 + ] + ], + [ + [ + 3481, + 3482, + 3483, + 3484 + ] + ], + [ + [ + 3457, + 3485, + 3482, + 3481 + ] + ], + [ + [ + 3486, + 3485, + 3456 + ] + ], + [ + [ + 3486, + 3458, + 3487 + ] + ], + [ + [ + 3484, + 3483, + 3487, + 3461 + ] + ], + [ + [ + 3451, + 3453, + 3448, + 3447 + ] + ], + [ + [ + 3486, + 3456, + 3455, + 3462 + ] + ], + [ + [ + 3462, + 3459, + 3458, + 3486 + ] + ], + [ + [ + 3466, + 3467, + 3464, + 3463 + ] + ], + [ + [ + 3476, + 3469, + 3468, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3480, + 3479, + 3478, + 3477 + ], + [ + 3449, + 3465, + 3454, + 3457, + 3481, + 3484, + 3461, + 3460, + 3452, + 3450, + 3446 + ] + ], + [ + [ + 3485, + 3487, + 3483, + 3482 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_92eedd6b-7156-447a-975a-8f08c8b3406f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683121.735, + 1252818.448, + 470.969, + 2683124.775, + 1252821.083, + 472.058 + ], + "parents": + [ + "UUID_b29ed28d-c905-4911-83a5-cc59d676d716" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3488, + 3489, + 3490, + 3491 + ] + ], + [ + [ + 3492, + 3493, + 3489, + 3488 + ] + ], + [ + [ + 3494, + 3495, + 3493, + 3492 + ] + ], + [ + [ + 3491, + 3490, + 3495, + 3494 + ] + ], + [ + [ + 3489, + 3493, + 3495, + 3490 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_601e5813-30d5-48f0-9649-cb0ff3d722dc": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-02-23", + "Region": 2, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2678666.167, + 1250884.422, + 400.996, + 2678682.908, + 1250906.574, + 421.24 + ], + "children": + [ + "UUID_8240267f-eccd-4400-ae0c-6f5380e52db0" + ] + }, + "UUID_f497b237-766b-4872-ba41-f7cde715d91f": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2682590.429, + 1248545.496, + 425.65, + 2682592.194, + 1248547.205, + 426.117 + ], + "parents": + [ + "UUID_3cc2b88f-802c-4388-9e23-78e0e741c474" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3496, + 3497, + 3498, + 3499 + ] + ], + [ + [ + 3500, + 3501, + 3497, + 3496 + ] + ], + [ + [ + 3502, + 3503, + 3501, + 3500 + ] + ], + [ + [ + 3499, + 3498, + 3503, + 3502 + ] + ], + [ + [ + 3497, + 3501, + 3503, + 3498 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_9cb7ad55-f016-4a9a-8868-c760a4fb9be5": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683160.89, + 1249808.175, + 488.487, + 2683163.685, + 1249809.436, + 489.76 + ], + "parents": + [ + "UUID_ad0c816f-d7c9-457f-9504-0ebf36a6bd5e" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3504, + 3505, + 3506, + 3507 + ] + ], + [ + [ + 3504, + 3508, + 3505 + ] + ], + [ + [ + 3509, + 3507, + 3506 + ] + ], + [ + [ + 3508, + 3509, + 3506, + 3505 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_fe19b524-c55d-4aeb-933f-4cee7dbad15e": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2680257.752, + 1247104.403, + 427.526, + 2680274.194, + 1247117.969, + 458.884 + ], + "parents": + [ + "UUID_e54b7be9-34d7-4001-98c6-22c27fc6f8b9" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538 + ] + ], + [ + [ + 3536, + 3539, + 3540, + 3541 + ] + ], + [ + [ + 3539, + 3535, + 3542, + 3540 + ] + ], + [ + [ + 3535, + 3534, + 3543, + 3542 + ] + ], + [ + [ + 3544, + 3543, + 3534, + 3533, + 3545 + ] + ], + [ + [ + 3533, + 3532, + 3546, + 3545 + ] + ], + [ + [ + 3532, + 3531, + 3547, + 3546 + ] + ], + [ + [ + 3531, + 3530, + 3548, + 3547 + ] + ], + [ + [ + 3530, + 3529, + 3549, + 3548 + ] + ], + [ + [ + 3529, + 3528, + 3550, + 3549 + ] + ], + [ + [ + 3528, + 3527, + 3551, + 3550 + ] + ], + [ + [ + 3527, + 3526, + 3552, + 3551 + ] + ], + [ + [ + 3526, + 3525, + 3553, + 3552 + ] + ], + [ + [ + 3525, + 3524, + 3554, + 3553 + ] + ], + [ + [ + 3524, + 3523, + 3555, + 3554 + ] + ], + [ + [ + 3523, + 3522, + 3556, + 3555 + ] + ], + [ + [ + 3522, + 3521, + 3557, + 3556 + ] + ], + [ + [ + 3521, + 3520, + 3558, + 3557 + ] + ], + [ + [ + 3520, + 3559, + 3560, + 3558 + ] + ], + [ + [ + 3559, + 3519, + 3561, + 3560 + ] + ], + [ + [ + 3519, + 3518, + 3562, + 3561 + ] + ], + [ + [ + 3518, + 3517, + 3563, + 3562 + ] + ], + [ + [ + 3517, + 3516, + 3564, + 3563 + ] + ], + [ + [ + 3516, + 3515, + 3565, + 3564 + ] + ], + [ + [ + 3515, + 3514, + 3566, + 3565 + ] + ], + [ + [ + 3514, + 3567, + 3568, + 3566 + ] + ], + [ + [ + 3567, + 3513, + 3569, + 3568 + ] + ], + [ + [ + 3513, + 3512, + 3570, + 3569 + ] + ], + [ + [ + 3512, + 3511, + 3571, + 3570 + ] + ], + [ + [ + 3511, + 3510, + 3572, + 3571 + ] + ], + [ + [ + 3510, + 3538, + 3573, + 3572 + ] + ], + [ + [ + 3538, + 3537, + 3574, + 3573 + ] + ], + [ + [ + 3537, + 3536, + 3541, + 3574 + ] + ], + [ + [ + 3575, + 3576, + 3577, + 3578 + ] + ], + [ + [ + 3543, + 3544, + 3579, + 3580, + 3581 + ] + ], + [ + [ + 3582, + 3578, + 3577, + 3583 + ] + ], + [ + [ + 3582, + 3583, + 3584, + 3585 + ] + ], + [ + [ + 3585, + 3584, + 3579, + 3544 + ] + ], + [ + [ + 3576, + 3586, + 3587, + 3588 + ] + ], + [ + [ + 3589, + 3587, + 3590, + 3591 + ] + ], + [ + [ + 3588, + 3589, + 3581, + 3580 + ] + ], + [ + [ + 3591, + 3590, + 3592, + 3593 + ] + ], + [ + [ + 3593, + 3592, + 3586, + 3575 + ] + ], + [ + [ + 3562, + 3563, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3541, + 3540, + 3594, + 3546, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3560, + 3561 + ], + [ + 3581, + 3589, + 3591, + 3593, + 3575, + 3578, + 3582, + 3585, + 3544 + ] + ], + [ + [ + 3580, + 3579, + 3577, + 3576 + ] + ], + [ + [ + 3577, + 3579, + 3584, + 3583 + ] + ], + [ + [ + 3586, + 3592, + 3590, + 3587 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_78b32fb9-0400-4aa7-a264-edb21f2e5398": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683933.989, + 1248492.726, + 510.825, + 2683936.022, + 1248494.362, + 513.54 + ], + "parents": + [ + "UUID_911f0603-2c4d-415f-b0ef-2203521c1571" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3595, + 3596, + 3597 + ] + ], + [ + [ + 3598, + 3599, + 3600 + ] + ], + [ + [ + 3599, + 3595, + 3597, + 3600 + ] + ], + [ + [ + 3596, + 3598, + 3600, + 3597 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_7ac1410e-058c-44a7-83d3-261cc5f86d8b": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684325.286, + 1246608.249, + 443.513, + 2684327.036, + 1246609.946, + 444.8 + ], + "parents": + [ + "UUID_55249da9-4f96-499b-9645-d2f9a3cab1bb" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3601, + 3602, + 3603 + ] + ], + [ + [ + 3602, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3603 + ] + ], + [ + [ + 3604, + 3620, + 3605 + ] + ], + [ + [ + 3621, + 3613, + 3612, + 3622 + ] + ], + [ + [ + 3623, + 3614, + 3613, + 3621 + ] + ], + [ + [ + 3624, + 3615, + 3614, + 3623 + ] + ], + [ + [ + 3625, + 3616, + 3615, + 3624 + ] + ], + [ + [ + 3625, + 3626, + 3617, + 3616 + ] + ], + [ + [ + 3626, + 3627, + 3618, + 3617 + ] + ], + [ + [ + 3627, + 3628, + 3619, + 3618 + ] + ], + [ + [ + 3628, + 3601, + 3603, + 3619 + ] + ], + [ + [ + 3629, + 3606, + 3605, + 3620 + ] + ], + [ + [ + 3630, + 3607, + 3606, + 3629 + ] + ], + [ + [ + 3631, + 3608, + 3607, + 3630 + ] + ], + [ + [ + 3632, + 3609, + 3608, + 3631 + ] + ], + [ + [ + 3633, + 3610, + 3609, + 3632 + ] + ], + [ + [ + 3634, + 3611, + 3610, + 3633 + ] + ], + [ + [ + 3622, + 3612, + 3611, + 3634 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_bc41c673-1857-468f-ab59-7189d1a4f3a7": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2684293.824, + 1248702.295, + 556.03, + 2684295.289, + 1248703.682, + 557.127 + ], + "parents": + [ + "UUID_9194ef74-d111-4fce-b364-3fc7c62402d5" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3635, + 3636, + 3637, + 3638 + ] + ], + [ + [ + 3639, + 3640, + 3636, + 3635 + ] + ], + [ + [ + 3641, + 3642, + 3640, + 3639 + ] + ], + [ + [ + 3641, + 3638, + 3637, + 3642 + ] + ], + [ + [ + 3640, + 3642, + 3637, + 3636 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_97dec70c-f60b-4380-adb1-73cd1e1bb165": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 2 + }, + "geographicalExtent": + [ + 2683555.408, + 1248587.057, + 475.055, + 2683557.245, + 1248588.795, + 477.724 + ], + "parents": + [ + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3643, + 3644, + 3645, + 3646 + ] + ], + [ + [ + 3643, + 3647, + 3648, + 3644 + ] + ], + [ + [ + 3646, + 3645, + 3649, + 3650 + ] + ], + [ + [ + 3649, + 3645, + 3644, + 3648 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3 + ], + "surfaces": + [ + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_942e02c4-45cc-4d51-bdde-625df1c81410": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-22", + "Region": 8, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2683654.839, + 1246823.101, + 406.041, + 2683674.144, + 1246842.766, + 429.463 + ], + "children": + [ + "UUID_dd1a3dae-6731-4f1e-9605-0a03f4a31b72", + "UUID_c10d6310-5173-4ff7-81be-182e3a03f3b0", + "UUID_2946b6dd-ee5c-4293-87f6-4b0d6b722c44", + "UUID_1668915a-d927-40c9-b1d0-4383f4be204e", + "UUID_5bc0c349-da6e-4caa-aea4-7f4e286416af", + "UUID_077e49ca-1e03-44ef-bb3c-cd2168d06cf1", + "UUID_c1ae0895-722f-4328-8861-ea8c6680f92f", + "UUID_25548ad4-89b7-4bd7-9ab7-fcc74a245b91", + "UUID_24e51931-afcd-4f75-bb5f-cb3310e7be89" + ] + }, + "UUID_ca11039d-995f-40c6-b429-ce46c1560b48": + { + "type": "BuildingPart", + "attributes": + { + "creationDate": "2017-01-23", + "Geomtype": 1 + }, + "geographicalExtent": + [ + 2679101.239, + 1249375.105, + 395.786, + 2679111.733, + 1249389.311, + 408.783 + ], + "parents": + [ + "UUID_68e41ae6-0f82-4bc3-a20c-125b93c0eac4" + ], + "geometry": + [ + { + "type": "MultiSurface", + "boundaries": + [ + [ + [ + 3651, + 3652, + 3653, + 3654 + ] + ], + [ + [ + 3655, + 639, + 3656, + 3657 + ] + ], + [ + [ + 3658, + 3659, + 3660, + 3657 + ] + ], + [ + [ + 3659, + 3654, + 3661, + 3660 + ] + ], + [ + [ + 3654, + 3653, + 3662, + 3661 + ] + ], + [ + [ + 3653, + 3663, + 3664, + 3662 + ] + ], + [ + [ + 3663, + 3665, + 3655, + 3664 + ] + ], + [ + [ + 3651, + 3658, + 3656, + 3666 + ] + ], + [ + [ + 3665, + 3652, + 3667, + 639 + ] + ], + [ + [ + 3652, + 3651, + 3666, + 3667 + ] + ], + [ + [ + 3664, + 3660, + 3668, + 3669 + ] + ], + [ + [ + 3655, + 3657, + 3660, + 3664 + ] + ], + [ + [ + 639, + 3667, + 3666, + 3656 + ] + ] + ], + "semantics": + { + "values": + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "surfaces": + [ + { + "type": "GroundSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "WallSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + }, + { + "type": "RoofSurface" + } + ] + }, + "lod": "2" + } + ] + }, + "UUID_2e5320be-a782-4517-bd0e-ab2cc2407649": + { + "type": "Building", + "attributes": + { + "creationDate": "2017-01-23", + "class": "BB01", + "Herkunft": "EE_LB_2007", + "QualitaetStatus": 1, + "FileCreationDate": "2012-03-16", + "Region": 4, + "GebaeudeStatus": 1 + }, + "geographicalExtent": + [ + 2683538.794, + 1248584.096, + 457.682, + 2683560.797, + 1248599.835, + 481.056 + ], + "children": + [ + "UUID_a6f5f953-b380-473f-895d-6efa88199c5c", + "UUID_e6833be8-1ded-4fe5-9cf0-bac095165038", + "UUID_35730751-f3a1-4736-b72c-2ee93a87de37", + "UUID_afc9afd9-f57d-4d69-ba56-3f7ad6066bd0", + "UUID_87ae3482-ac74-4e9d-8da6-ac2f0ae2e396", + "UUID_3b4f2683-65a3-458d-891b-86bb02cf803f", + "UUID_97dec70c-f60b-4380-adb1-73cd1e1bb165", + "UUID_311e0eac-ff2f-4bc7-a0a9-9eebb00f0746", + "UUID_85f5d0e7-6bf0-438f-a609-7b928f7a23e8", + "UUID_17773eca-757d-4b36-ad0d-c087084d14fd" + ] + } + }, + "vertices": + [ + [ + 7456404, + 4485477, + 448781 + ], + [ + 7456055, + 4485278, + 448126 + ], + [ + 7456055, + 4485278, + 448781 + ], + [ + 7456765, + 4484033, + 448126 + ], + [ + 7456765, + 4484033, + 448776 + ], + [ + 7456751, + 4484059, + 448913 + ], + [ + 7456723, + 4484107, + 449041 + ], + [ + 7456685, + 4484175, + 449156 + ], + [ + 7456634, + 4484261, + 449255 + ], + [ + 7456578, + 4484362, + 449332 + ], + [ + 7456513, + 4484474, + 449385 + ], + [ + 7456445, + 4484593, + 449412 + ], + [ + 7456376, + 4484714, + 449413 + ], + [ + 7456308, + 4484833, + 449386 + ], + [ + 7456243, + 4484945, + 449334 + ], + [ + 7456186, + 4485047, + 449258 + ], + [ + 7456137, + 4485134, + 449160 + ], + [ + 7456097, + 4485202, + 449045 + ], + [ + 7456069, + 4485251, + 448917 + ], + [ + 7457112, + 4484232, + 448776 + ], + [ + 7457063, + 4485107, + 449413 + ], + [ + 7457132, + 4484986, + 449412 + ], + [ + 7456981, + 4485218, + 449386 + ], + [ + 7456890, + 4485315, + 449334 + ], + [ + 7456791, + 4485393, + 449258 + ], + [ + 7456688, + 4485450, + 449160 + ], + [ + 7456589, + 4485484, + 449045 + ], + [ + 7456492, + 4485493, + 448917 + ], + [ + 7457171, + 4484299, + 448913 + ], + [ + 7457212, + 4484386, + 449041 + ], + [ + 7457234, + 4484489, + 449156 + ], + [ + 7457237, + 4484606, + 449255 + ], + [ + 7457222, + 4484729, + 449332 + ], + [ + 7457186, + 4484858, + 449385 + ], + [ + 5615140, + 6570864, + 403000 + ], + [ + 5601104, + 6582335, + 403000 + ], + [ + 5605469, + 6587624, + 403000 + ], + [ + 5609839, + 6592920, + 403000 + ], + [ + 5616845, + 6587241, + 403000 + ], + [ + 5623858, + 6581526, + 403000 + ], + [ + 5619526, + 6576229, + 403000 + ], + [ + 5616845, + 6587241, + 419341 + ], + [ + 5623858, + 6581526, + 419355 + ], + [ + 5609839, + 6592920, + 419340 + ], + [ + 5605469, + 6587624, + 423456 + ], + [ + 5601104, + 6582335, + 419334 + ], + [ + 5615140, + 6570864, + 419289 + ], + [ + 5619526, + 6576229, + 423456 + ], + [ + 5613850, + 6580829, + 423455 + ], + [ + 5611246, + 6577584, + 420954 + ], + [ + 5611246, + 6577584, + 423185 + ], + [ + 5613180, + 6576033, + 420961 + ], + [ + 5613180, + 6576033, + 423187 + ], + [ + 5615776, + 6579271, + 423456 + ], + [ + 5604964, + 6588032, + 423456 + ], + [ + 5600233, + 6582194, + 418938 + ], + [ + 5615402, + 6569899, + 418938 + ], + [ + 5620104, + 6575762, + 423456 + ], + [ + 5615259, + 6579688, + 423456 + ], + [ + 5624820, + 6581641, + 418938 + ], + [ + 5609711, + 6593888, + 418938 + ], + [ + 7730563, + 9760337, + 427981 + ], + [ + 7730240, + 9764922, + 427981 + ], + [ + 7732581, + 9765087, + 427981 + ], + [ + 7732904, + 9760498, + 427981 + ], + [ + 7730563, + 9760337, + 431981 + ], + [ + 7730240, + 9764922, + 431981 + ], + [ + 7732904, + 9760498, + 431981 + ], + [ + 7732581, + 9765087, + 431981 + ], + [ + 6430195, + 6757013, + 475073 + ], + [ + 6430611, + 6756418, + 477226 + ], + [ + 6430195, + 6757013, + 476745 + ], + [ + 6431902, + 6757318, + 477226 + ], + [ + 6431487, + 6757913, + 475073 + ], + [ + 6431487, + 6757913, + 476745 + ], + [ + 4567703, + 8249570, + 444332 + ], + [ + 4567617, + 8250068, + 444332 + ], + [ + 4566810, + 8254782, + 444332 + ], + [ + 4566007, + 8259469, + 444332 + ], + [ + 4565878, + 8260227, + 444332 + ], + [ + 4582172, + 8262868, + 444332 + ], + [ + 4582220, + 8262581, + 444332 + ], + [ + 4583944, + 8252364, + 444332 + ], + [ + 4583674, + 8252318, + 444332 + ], + [ + 4582757, + 8252160, + 444332 + ], + [ + 4579262, + 8251559, + 444332 + ], + [ + 4571578, + 8250237, + 444332 + ], + [ + 4570671, + 8250081, + 444332 + ], + [ + 4568171, + 8249651, + 444332 + ], + [ + 4567825, + 8249591, + 444332 + ], + [ + 4566810, + 8254782, + 461991 + ], + [ + 4566007, + 8259469, + 457790 + ], + [ + 4567617, + 8250068, + 457790 + ], + [ + 4567703, + 8249570, + 456989 + ], + [ + 4567825, + 8249591, + 456991 + ], + [ + 4568171, + 8249651, + 456996 + ], + [ + 4570671, + 8250081, + 457036 + ], + [ + 4571578, + 8250237, + 457050 + ], + [ + 4579262, + 8251559, + 457169 + ], + [ + 4582757, + 8252160, + 457224 + ], + [ + 4583674, + 8252318, + 457238 + ], + [ + 4583944, + 8252364, + 456556 + ], + [ + 4582220, + 8262581, + 456720 + ], + [ + 4582172, + 8262868, + 456068 + ], + [ + 4565878, + 8260227, + 456068 + ], + [ + 4581875, + 8262041, + 457790 + ], + [ + 4582780, + 8263454, + 454990 + ], + [ + 4565796, + 8260702, + 454990 + ], + [ + 4577669, + 8256542, + 461991 + ], + [ + 4583399, + 8252626, + 457790 + ], + [ + 4571797, + 8248957, + 454990 + ], + [ + 4579483, + 8250202, + 454990 + ], + [ + 4582983, + 8250769, + 454990 + ], + [ + 4584788, + 8251062, + 454990 + ], + [ + 4582757, + 8252160, + 454990 + ], + [ + 4579262, + 8251559, + 454990 + ], + [ + 4567915, + 8248327, + 454990 + ], + [ + 4571578, + 8250237, + 454990 + ], + [ + 4570671, + 8250081, + 454990 + ], + [ + 4567703, + 8249570, + 454990 + ], + [ + 6595162, + 7460509, + 508996 + ], + [ + 6595225, + 7460347, + 508832 + ], + [ + 6595401, + 7459900, + 507931 + ], + [ + 6595401, + 7459900, + 508996 + ], + [ + 6598157, + 7460983, + 507931 + ], + [ + 6598157, + 7460983, + 508996 + ], + [ + 6597918, + 7461592, + 508996 + ], + [ + 6597981, + 7461430, + 508832 + ], + [ + 6596129, + 7462097, + 510057 + ], + [ + 6596328, + 7461591, + 510057 + ], + [ + 10283317, + 4296120, + 616710 + ], + [ + 10283317, + 4296120, + 616177 + ], + [ + 10280787, + 4295300, + 616200 + ], + [ + 10280787, + 4295300, + 616710 + ], + [ + 10282052, + 4295711, + 617405 + ], + [ + 10280973, + 4294722, + 616710 + ], + [ + 10283513, + 4295515, + 616710 + ], + [ + 10282500, + 4294327, + 617405 + ], + [ + 8588932, + 4173993, + 485878 + ], + [ + 8581123, + 4177393, + 485878 + ], + [ + 8584319, + 4184649, + 485878 + ], + [ + 8585126, + 4184295, + 485878 + ], + [ + 8585356, + 4185099, + 485878 + ], + [ + 8586225, + 4188136, + 485878 + ], + [ + 8589320, + 4189052, + 485878 + ], + [ + 8591697, + 4184975, + 485878 + ], + [ + 8590401, + 4182876, + 485878 + ], + [ + 8589962, + 4182168, + 485878 + ], + [ + 8592131, + 4181215, + 485878 + ], + [ + 8590516, + 4177570, + 485878 + ], + [ + 8590401, + 4182876, + 496701 + ], + [ + 8590401, + 4182876, + 494401 + ], + [ + 8585356, + 4185099, + 494401 + ], + [ + 8585356, + 4185099, + 496701 + ], + [ + 8585126, + 4184295, + 497084 + ], + [ + 8584319, + 4184649, + 497085 + ], + [ + 8581123, + 4177393, + 497085 + ], + [ + 8588932, + 4173993, + 497122 + ], + [ + 8590516, + 4177570, + 501046 + ], + [ + 8592131, + 4181215, + 497085 + ], + [ + 8589962, + 4182168, + 497085 + ], + [ + 8591697, + 4184975, + 494401 + ], + [ + 8589320, + 4189052, + 494401 + ], + [ + 8586225, + 4188136, + 494401 + ], + [ + 8588916, + 4173959, + 497085 + ], + [ + 8580154, + 4177002, + 496701 + ], + [ + 8588614, + 4173275, + 496701 + ], + [ + 8583987, + 4185702, + 496701 + ], + [ + 8586325, + 4179417, + 501046 + ], + [ + 8592469, + 4181965, + 496701 + ], + [ + 8591160, + 4182541, + 494401 + ], + [ + 8592334, + 4184608, + 494401 + ], + [ + 8589549, + 4190087, + 494401 + ], + [ + 8585478, + 4188568, + 494401 + ], + [ + 8584581, + 4185440, + 494401 + ], + [ + 7202220, + 4751626, + 444167 + ], + [ + 7201825, + 4750968, + 443517 + ], + [ + 7201825, + 4750968, + 444167 + ], + [ + 7203030, + 4750247, + 443493 + ], + [ + 7203030, + 4750247, + 444167 + ], + [ + 7203004, + 4750263, + 444298 + ], + [ + 7202956, + 4750291, + 444422 + ], + [ + 7202890, + 4750331, + 444532 + ], + [ + 7202805, + 4750381, + 444626 + ], + [ + 7202708, + 4750440, + 444700 + ], + [ + 7202600, + 4750504, + 444750 + ], + [ + 7202487, + 4750573, + 444776 + ], + [ + 7202370, + 4750641, + 444776 + ], + [ + 7202256, + 4750710, + 444750 + ], + [ + 7202149, + 4750775, + 444700 + ], + [ + 7202050, + 4750833, + 444626 + ], + [ + 7201967, + 4750883, + 444532 + ], + [ + 7201899, + 4750924, + 444422 + ], + [ + 7201853, + 4750952, + 444298 + ], + [ + 7203438, + 4750929, + 444167 + ], + [ + 7203140, + 4751928, + 444776 + ], + [ + 7203257, + 4751860, + 444776 + ], + [ + 7203009, + 4751968, + 444750 + ], + [ + 7202868, + 4751979, + 444700 + ], + [ + 7202725, + 4751961, + 444626 + ], + [ + 7202583, + 4751914, + 444532 + ], + [ + 7202449, + 4751841, + 444422 + ], + [ + 7202325, + 4751744, + 444298 + ], + [ + 7203492, + 4751077, + 444298 + ], + [ + 7203518, + 4751229, + 444422 + ], + [ + 7203518, + 4751381, + 444532 + ], + [ + 7203490, + 4751524, + 444626 + ], + [ + 7203436, + 4751655, + 444700 + ], + [ + 7203356, + 4751768, + 444750 + ], + [ + 2850007, + 6876336, + 402743 + ], + [ + 2844151, + 6868094, + 402743 + ], + [ + 2831723, + 6876962, + 402743 + ], + [ + 2837558, + 6885168, + 402743 + ], + [ + 2831836, + 6876880, + 402743 + ], + [ + 2831836, + 6876880, + 420208 + ], + [ + 2831723, + 6876962, + 420057 + ], + [ + 2844151, + 6868094, + 420146 + ], + [ + 2847012, + 6872120, + 424113 + ], + [ + 2847012, + 6872120, + 402743 + ], + [ + 2850007, + 6876336, + 419955 + ], + [ + 2837558, + 6885168, + 419924 + ], + [ + 2837435, + 6884994, + 402743 + ], + [ + 2837435, + 6884994, + 420095 + ], + [ + 2837609, + 6878756, + 424113 + ], + [ + 2850233, + 6876653, + 419641 + ], + [ + 2837416, + 6885699, + 419641 + ], + [ + 2830998, + 6876607, + 419641 + ], + [ + 2843788, + 6867581, + 419641 + ], + [ + 2846830, + 6872832, + 423730 + ], + [ + 2846554, + 6872444, + 424113 + ], + [ + 2846449, + 6872297, + 423968 + ], + [ + 2846449, + 6872297, + 424761 + ], + [ + 2846830, + 6872832, + 424761 + ], + [ + 2846905, + 6871970, + 423965 + ], + [ + 2846905, + 6871970, + 424761 + ], + [ + 2847287, + 6872505, + 423734 + ], + [ + 2847287, + 6872505, + 424761 + ], + [ + 6020129, + 1796226, + 418380 + ], + [ + 6019151, + 1798199, + 418380 + ], + [ + 6019151, + 1798199, + 419329 + ], + [ + 6020129, + 1796226, + 419329 + ], + [ + 6017248, + 1797164, + 418380 + ], + [ + 6017248, + 1797164, + 419329 + ], + [ + 6018254, + 1795205, + 418380 + ], + [ + 6018254, + 1795205, + 419329 + ], + [ + 7199898, + 4755987, + 421992 + ], + [ + 7199825, + 4755874, + 421992 + ], + [ + 7199825, + 4755874, + 444718 + ], + [ + 7199898, + 4755987, + 444675 + ], + [ + 7199626, + 4755849, + 421992 + ], + [ + 7199626, + 4755849, + 444712 + ], + [ + 7199432, + 4755806, + 421992 + ], + [ + 7199432, + 4755806, + 444714 + ], + [ + 7199240, + 4755746, + 421992 + ], + [ + 7199240, + 4755746, + 444723 + ], + [ + 7199055, + 4755668, + 421992 + ], + [ + 7199055, + 4755668, + 444741 + ], + [ + 7198879, + 4755576, + 421992 + ], + [ + 7198879, + 4755576, + 444731 + ], + [ + 7198709, + 4755469, + 421992 + ], + [ + 7198709, + 4755469, + 444729 + ], + [ + 7198552, + 4755346, + 421992 + ], + [ + 7198552, + 4755346, + 444734 + ], + [ + 7198404, + 4755210, + 421992 + ], + [ + 7198404, + 4755210, + 444748 + ], + [ + 7198375, + 4755178, + 421992 + ], + [ + 7198375, + 4755178, + 444753 + ], + [ + 7198270, + 4755062, + 421992 + ], + [ + 7198270, + 4755062, + 444742 + ], + [ + 7198149, + 4754903, + 421992 + ], + [ + 7198149, + 4754903, + 444737 + ], + [ + 7198043, + 4754733, + 421992 + ], + [ + 7198043, + 4754733, + 444740 + ], + [ + 7197952, + 4754555, + 421992 + ], + [ + 7197952, + 4754555, + 444750 + ], + [ + 7197919, + 4754475, + 421992 + ], + [ + 7197919, + 4754475, + 444758 + ], + [ + 7197876, + 4754369, + 421992 + ], + [ + 7197876, + 4754369, + 444749 + ], + [ + 7197819, + 4754178, + 421992 + ], + [ + 7197819, + 4754178, + 444740 + ], + [ + 7197777, + 4753982, + 421992 + ], + [ + 7197777, + 4753982, + 444739 + ], + [ + 7197754, + 4753783, + 421992 + ], + [ + 7197754, + 4753783, + 444746 + ], + [ + 7197750, + 4753656, + 421992 + ], + [ + 7197750, + 4753656, + 444755 + ], + [ + 7197748, + 4753583, + 421992 + ], + [ + 7197748, + 4753583, + 444748 + ], + [ + 7197759, + 4753384, + 421992 + ], + [ + 7197759, + 4753384, + 444735 + ], + [ + 7197788, + 4753185, + 421992 + ], + [ + 7197788, + 4753185, + 444731 + ], + [ + 7197833, + 4752991, + 421992 + ], + [ + 7197833, + 4752991, + 444734 + ], + [ + 7197890, + 4752824, + 421992 + ], + [ + 7197890, + 4752824, + 444744 + ], + [ + 7197898, + 4752800, + 421992 + ], + [ + 7197898, + 4752800, + 444741 + ], + [ + 7197976, + 4752618, + 421992 + ], + [ + 7197976, + 4752618, + 444725 + ], + [ + 7198072, + 4752442, + 421992 + ], + [ + 7198072, + 4752442, + 444717 + ], + [ + 7198183, + 4752275, + 421992 + ], + [ + 7198183, + 4752275, + 444717 + ], + [ + 7198308, + 4752119, + 421992 + ], + [ + 7198308, + 4752119, + 444725 + ], + [ + 7198333, + 4752092, + 421992 + ], + [ + 7198333, + 4752092, + 444728 + ], + [ + 7198447, + 4751974, + 421992 + ], + [ + 7198447, + 4751974, + 444712 + ], + [ + 7198598, + 4751842, + 421992 + ], + [ + 7198598, + 4751842, + 444700 + ], + [ + 7198759, + 4751724, + 421992 + ], + [ + 7198759, + 4751724, + 444696 + ], + [ + 7198930, + 4751621, + 421992 + ], + [ + 7198930, + 4751621, + 444700 + ], + [ + 7199033, + 4751570, + 421992 + ], + [ + 7199033, + 4751570, + 444707 + ], + [ + 7199109, + 4751533, + 421992 + ], + [ + 7199109, + 4751533, + 444698 + ], + [ + 7199296, + 4751461, + 421992 + ], + [ + 7199296, + 4751461, + 444682 + ], + [ + 7199490, + 4751406, + 421992 + ], + [ + 7199490, + 4751406, + 444675 + ], + [ + 7199694, + 4751367, + 421992 + ], + [ + 7199694, + 4751367, + 444675 + ], + [ + 7199904, + 4751347, + 421992 + ], + [ + 7199904, + 4751347, + 444684 + ], + [ + 7200112, + 4751346, + 421992 + ], + [ + 7200112, + 4751346, + 444666 + ], + [ + 7200322, + 4751364, + 421992 + ], + [ + 7200322, + 4751364, + 444657 + ], + [ + 7200527, + 4751403, + 421992 + ], + [ + 7200527, + 4751403, + 444656 + ], + [ + 7200729, + 4751459, + 421992 + ], + [ + 7200729, + 4751459, + 444664 + ], + [ + 7200825, + 4751402, + 421992 + ], + [ + 7200825, + 4751402, + 444631 + ], + [ + 7200825, + 4751402, + 443415 + ], + [ + 7201617, + 4751935, + 444141 + ], + [ + 7201617, + 4751935, + 444631 + ], + [ + 7201938, + 4752417, + 444631 + ], + [ + 7201396, + 4755523, + 444631 + ], + [ + 7200828, + 4755903, + 444050 + ], + [ + 7200828, + 4755903, + 444631 + ], + [ + 7207334, + 4768984, + 437068 + ], + [ + 7206334, + 4769620, + 437068 + ], + [ + 7204445, + 4766622, + 437068 + ], + [ + 7205449, + 4765989, + 437068 + ], + [ + 7216123, + 4755221, + 428841 + ], + [ + 7220408, + 4752646, + 428841 + ], + [ + 7227115, + 4763087, + 428841 + ], + [ + 7221013, + 4767010, + 428841 + ], + [ + 7220325, + 4765913, + 428841 + ], + [ + 7221697, + 4765036, + 428841 + ], + [ + 7215921, + 4755337, + 428841 + ], + [ + 7213143, + 4750674, + 448063 + ], + [ + 7205893, + 4754914, + 448133 + ], + [ + 7201024, + 4753706, + 445196 + ], + [ + 7201074, + 4753656, + 445179 + ], + [ + 7201612, + 4752945, + 444883 + ], + [ + 7199904, + 4751225, + 442897 + ], + [ + 7199469, + 4751310, + 442777 + ], + [ + 7209828, + 4745106, + 442567 + ], + [ + 7215117, + 4753986, + 442783 + ], + [ + 7213439, + 4755005, + 442754 + ], + [ + 7214575, + 4764834, + 446329 + ], + [ + 7216643, + 4767962, + 446242 + ], + [ + 7214839, + 4769116, + 448053 + ], + [ + 7214160, + 4756193, + 442767 + ], + [ + 7209949, + 4758976, + 447035 + ], + [ + 7213905, + 4765256, + 446999 + ], + [ + 7219666, + 4766333, + 443343 + ], + [ + 7219529, + 4766121, + 443346 + ], + [ + 7218941, + 4766497, + 443937 + ], + [ + 7213899, + 4758867, + 444150 + ], + [ + 7215262, + 4758003, + 442785 + ], + [ + 7215311, + 4758084, + 442786 + ], + [ + 7216072, + 4757625, + 442034 + ], + [ + 7221101, + 4765416, + 441902 + ], + [ + 7221697, + 4765036, + 432698 + ], + [ + 7221101, + 4765416, + 432698 + ], + [ + 7218836, + 4761906, + 432698 + ], + [ + 7219544, + 4761421, + 432698 + ], + [ + 7213899, + 4758867, + 444657 + ], + [ + 7218941, + 4766497, + 444657 + ], + [ + 7216643, + 4767962, + 444657 + ], + [ + 7214575, + 4764834, + 444657 + ], + [ + 7213905, + 4765256, + 444657 + ], + [ + 7209949, + 4758976, + 444657 + ], + [ + 7214160, + 4756193, + 444657 + ], + [ + 7215262, + 4758003, + 444657 + ], + [ + 7215117, + 4753986, + 430126 + ], + [ + 7219544, + 4761421, + 430126 + ], + [ + 7218836, + 4761906, + 430126 + ], + [ + 7216072, + 4757625, + 430126 + ], + [ + 7215311, + 4758084, + 430126 + ], + [ + 7213439, + 4755005, + 430126 + ], + [ + 7209546, + 4772495, + 442712 + ], + [ + 7199112, + 4755932, + 442807 + ], + [ + 7199898, + 4756087, + 443298 + ], + [ + 7201359, + 4755117, + 444790 + ], + [ + 7201179, + 4754185, + 445087 + ], + [ + 7203526, + 4762937, + 437068 + ], + [ + 7202665, + 4763484, + 437068 + ], + [ + 7200410, + 4759906, + 437068 + ], + [ + 7201273, + 4759361, + 437068 + ], + [ + 7199898, + 4756087, + 444631 + ], + [ + 7199898, + 4753656, + 445692 + ], + [ + 7198958, + 4755901, + 444631 + ], + [ + 7198177, + 4755375, + 444631 + ], + [ + 7197651, + 4754586, + 444631 + ], + [ + 7197466, + 4753656, + 444631 + ], + [ + 7197651, + 4752725, + 444631 + ], + [ + 7198177, + 4751935, + 444631 + ], + [ + 7198967, + 4751408, + 444631 + ], + [ + 7199904, + 4751225, + 444631 + ], + [ + 7210228, + 4745777, + 421992 + ], + [ + 7206862, + 4747791, + 421992 + ], + [ + 7206470, + 4747135, + 421992 + ], + [ + 7203688, + 4748797, + 421992 + ], + [ + 7204080, + 4749454, + 421992 + ], + [ + 7199953, + 4756076, + 421992 + ], + [ + 7202353, + 4759847, + 421992 + ], + [ + 7201800, + 4760199, + 421992 + ], + [ + 7201665, + 4760285, + 421992 + ], + [ + 7203402, + 4763015, + 421992 + ], + [ + 7203526, + 4762937, + 421992 + ], + [ + 7204091, + 4762577, + 421992 + ], + [ + 7206214, + 4765915, + 421992 + ], + [ + 7205634, + 4766283, + 421992 + ], + [ + 7205515, + 4766358, + 421992 + ], + [ + 7207228, + 4769052, + 421992 + ], + [ + 7207334, + 4768984, + 421992 + ], + [ + 7207927, + 4768607, + 421992 + ], + [ + 7210154, + 4772108, + 421992 + ], + [ + 7214839, + 4769116, + 421992 + ], + [ + 7216643, + 4767962, + 421992 + ], + [ + 7218941, + 4766497, + 421992 + ], + [ + 7219529, + 4766121, + 421992 + ], + [ + 7219666, + 4766333, + 421992 + ], + [ + 7220325, + 4765913, + 421992 + ], + [ + 7221004, + 4766996, + 421992 + ], + [ + 7222783, + 4765843, + 421992 + ], + [ + 7226908, + 4763171, + 421992 + ], + [ + 7226402, + 4762399, + 421992 + ], + [ + 7223708, + 4758504, + 421992 + ], + [ + 7222686, + 4759141, + 421992 + ], + [ + 7221192, + 4756658, + 421992 + ], + [ + 7220089, + 4756412, + 421992 + ], + [ + 7217805, + 4757922, + 421992 + ], + [ + 7216123, + 4755221, + 421992 + ], + [ + 7215921, + 4755337, + 421992 + ], + [ + 7215117, + 4753986, + 421992 + ], + [ + 7213143, + 4750674, + 421992 + ], + [ + 7207228, + 4769052, + 437068 + ], + [ + 7205515, + 4766358, + 437068 + ], + [ + 7205634, + 4766283, + 437068 + ], + [ + 7221004, + 4766996, + 428841 + ], + [ + 7222783, + 4765843, + 428841 + ], + [ + 7217805, + 4757922, + 428841 + ], + [ + 7220089, + 4756412, + 428841 + ], + [ + 7221192, + 4756658, + 428841 + ], + [ + 7222686, + 4759141, + 428841 + ], + [ + 7223708, + 4758504, + 428841 + ], + [ + 7226402, + 4762399, + 428841 + ], + [ + 7226908, + 4763171, + 428841 + ], + [ + 7204080, + 4749454, + 443351 + ], + [ + 7203688, + 4748797, + 442702 + ], + [ + 7206470, + 4747135, + 442649 + ], + [ + 7206862, + 4747791, + 443296 + ], + [ + 7210228, + 4745777, + 443230 + ], + [ + 7214160, + 4756193, + 430126 + ], + [ + 7212296, + 4757425, + 444657 + ], + [ + 7220325, + 4765913, + 442683 + ], + [ + 7215262, + 4758003, + 430126 + ], + [ + 7221101, + 4765416, + 428841 + ], + [ + 7219544, + 4761421, + 428841 + ], + [ + 7215921, + 4755337, + 430126 + ], + [ + 7210154, + 4772108, + 443324 + ], + [ + 7207927, + 4768607, + 443329 + ], + [ + 7207334, + 4768984, + 442732 + ], + [ + 7205634, + 4766283, + 442748 + ], + [ + 7206214, + 4765915, + 443332 + ], + [ + 7204091, + 4762577, + 443336 + ], + [ + 7203526, + 4762937, + 442767 + ], + [ + 7201800, + 4760199, + 437068 + ], + [ + 7201800, + 4760199, + 442782 + ], + [ + 7202353, + 4759847, + 443339 + ], + [ + 7199953, + 4756076, + 443344 + ], + [ + 7203402, + 4763015, + 437068 + ], + [ + 7201665, + 4760285, + 437068 + ], + [ + 7199953, + 4756076, + 444631 + ], + [ + 4952686, + 4212991, + 436411 + ], + [ + 4952729, + 4212283, + 436972 + ], + [ + 4952729, + 4212283, + 437917 + ], + [ + 4952686, + 4212991, + 437917 + ], + [ + 4953895, + 4212354, + 437030 + ], + [ + 4953895, + 4212354, + 437917 + ], + [ + 4953851, + 4213060, + 436470 + ], + [ + 4953851, + 4213060, + 437917 + ], + [ + 5618725, + 6585318, + 420745 + ], + [ + 5618725, + 6585318, + 419526 + ], + [ + 5617807, + 6586065, + 419525 + ], + [ + 5617807, + 6586065, + 420745 + ], + [ + 5618276, + 6585683, + 421107 + ], + [ + 5616518, + 6584489, + 420745 + ], + [ + 5617438, + 6583744, + 420745 + ], + [ + 5616608, + 6583641, + 421107 + ], + [ + 1986720, + 7542837, + 407274 + ], + [ + 1986720, + 7542837, + 409040 + ], + [ + 1987160, + 7543899, + 409040 + ], + [ + 1987160, + 7543899, + 408086 + ], + [ + 1987246, + 7542619, + 407274 + ], + [ + 1987246, + 7542619, + 409040 + ], + [ + 1987688, + 7543680, + 408086 + ], + [ + 1987688, + 7543680, + 409040 + ], + [ + 6823378, + 6649780, + 512373 + ], + [ + 6823378, + 6649780, + 510825 + ], + [ + 6822345, + 6651060, + 510825 + ], + [ + 6822345, + 6651060, + 512373 + ], + [ + 6822858, + 6650424, + 512840 + ], + [ + 6821606, + 6650462, + 512373 + ], + [ + 6822638, + 6649183, + 512373 + ], + [ + 6821896, + 6649647, + 512840 + ], + [ + 1893410, + 8991333, + 440451 + ], + [ + 1893410, + 8991333, + 441987 + ], + [ + 1894228, + 8990835, + 441987 + ], + [ + 1894228, + 8990835, + 440451 + ], + [ + 1892885, + 8990471, + 440451 + ], + [ + 1892885, + 8990471, + 441987 + ], + [ + 1893705, + 8989972, + 440451 + ], + [ + 1893705, + 8989972, + 441987 + ], + [ + 8470987, + 10279300, + 423898 + ], + [ + 8466018, + 10282804, + 423898 + ], + [ + 8467967, + 10285488, + 423898 + ], + [ + 8467779, + 10285620, + 423898 + ], + [ + 8468325, + 10286401, + 423898 + ], + [ + 8468805, + 10287085, + 423898 + ], + [ + 8468996, + 10286969, + 423898 + ], + [ + 8471117, + 10289984, + 423898 + ], + [ + 8476061, + 10286504, + 423898 + ], + [ + 8475990, + 10286412, + 423898 + ], + [ + 8474638, + 10284465, + 423898 + ], + [ + 8473529, + 10282897, + 423898 + ], + [ + 8467779, + 10285620, + 435107 + ], + [ + 8468325, + 10286401, + 435630 + ], + [ + 8467967, + 10285488, + 435105 + ], + [ + 8466018, + 10282804, + 433288 + ], + [ + 8470987, + 10279300, + 433217 + ], + [ + 8473529, + 10282897, + 435630 + ], + [ + 8474638, + 10284465, + 434404 + ], + [ + 8475990, + 10286412, + 432891 + ], + [ + 8476061, + 10286504, + 432816 + ], + [ + 8471117, + 10289984, + 432737 + ], + [ + 8468996, + 10286969, + 435090 + ], + [ + 8468805, + 10287085, + 435097 + ], + [ + 8465750, + 10282726, + 433170 + ], + [ + 8470861, + 10279123, + 433097 + ], + [ + 8470930, + 10290116, + 432734 + ], + [ + 5615637, + 6587827, + 420745 + ], + [ + 5615637, + 6587827, + 419523 + ], + [ + 5614717, + 6588575, + 419522 + ], + [ + 5614717, + 6588575, + 420745 + ], + [ + 5615188, + 6588193, + 421107 + ], + [ + 5613425, + 6586996, + 420745 + ], + [ + 5614347, + 6586250, + 420745 + ], + [ + 5613515, + 6586147, + 421107 + ], + [ + 6547353, + 4984401, + 406041 + ], + [ + 6547299, + 4984461, + 406041 + ], + [ + 6544620, + 4987504, + 406041 + ], + [ + 6541705, + 4990818, + 406041 + ], + [ + 6539021, + 4993867, + 406041 + ], + [ + 6538995, + 4993897, + 406041 + ], + [ + 6548959, + 5002692, + 406041 + ], + [ + 6549169, + 5002877, + 406041 + ], + [ + 6549229, + 5002808, + 406041 + ], + [ + 6556401, + 4994577, + 406041 + ], + [ + 6557478, + 4993342, + 406041 + ], + [ + 6554790, + 4990967, + 406041 + ], + [ + 6554222, + 4997701, + 424068 + ], + [ + 6552486, + 4996216, + 426380 + ], + [ + 6554222, + 4997701, + 426380 + ], + [ + 6556697, + 4994837, + 426380 + ], + [ + 6556697, + 4994837, + 424068 + ], + [ + 6555299, + 4993618, + 425946 + ], + [ + 6556401, + 4994577, + 424467 + ], + [ + 6553712, + 4992236, + 426380 + ], + [ + 6553712, + 4992236, + 425932 + ], + [ + 6554790, + 4990967, + 423973 + ], + [ + 6555134, + 4990560, + 426380 + ], + [ + 6555134, + 4990560, + 423344 + ], + [ + 6551847, + 4987716, + 423336 + ], + [ + 6551847, + 4987716, + 426380 + ], + [ + 6550149, + 4989664, + 426380 + ], + [ + 6544620, + 4987504, + 428704 + ], + [ + 6541705, + 4990818, + 428704 + ], + [ + 6555299, + 4993618, + 423764 + ], + [ + 6556401, + 4994577, + 423764 + ], + [ + 6549229, + 5002808, + 424510 + ], + [ + 6549169, + 5002877, + 424510 + ], + [ + 6548959, + 5002692, + 424793 + ], + [ + 6554790, + 4990967, + 423764 + ], + [ + 6557478, + 4993342, + 423764 + ], + [ + 6538995, + 4993897, + 424800 + ], + [ + 6539021, + 4993867, + 424837 + ], + [ + 6547299, + 4984461, + 423929 + ], + [ + 6547353, + 4984401, + 423834 + ], + [ + 6553712, + 4992236, + 423764 + ], + [ + 6554733, + 4993617, + 426380 + ], + [ + 6548748, + 4997028, + 428704 + ], + [ + 6551703, + 4993610, + 428704 + ], + [ + 6548998, + 5003741, + 424068 + ], + [ + 6557768, + 4993597, + 423764 + ], + [ + 6556697, + 4994837, + 423764 + ], + [ + 6538464, + 4994452, + 424068 + ], + [ + 6547637, + 4984076, + 423325 + ], + [ + 6048418, + 7961568, + 486958 + ], + [ + 6048418, + 7961568, + 488826 + ], + [ + 6045770, + 7961734, + 488826 + ], + [ + 6045770, + 7961734, + 486963 + ], + [ + 6048521, + 7963221, + 488826 + ], + [ + 6045873, + 7963381, + 488826 + ], + [ + 5606202, + 6578824, + 419624 + ], + [ + 5606202, + 6578824, + 421016 + ], + [ + 5604694, + 6580065, + 421016 + ], + [ + 5604694, + 6580065, + 419632 + ], + [ + 5607674, + 6580613, + 421016 + ], + [ + 5606155, + 6581843, + 421016 + ], + [ + 6044523, + 7961812, + 486966 + ], + [ + 6044523, + 7961812, + 488826 + ], + [ + 6041875, + 7961978, + 488826 + ], + [ + 6041875, + 7961978, + 486972 + ], + [ + 6044626, + 7963458, + 488826 + ], + [ + 6041978, + 7963618, + 488826 + ], + [ + 1984908, + 7538484, + 402098 + ], + [ + 1984908, + 7538484, + 404219 + ], + [ + 1985376, + 7539604, + 404528 + ], + [ + 1985376, + 7539604, + 402098 + ], + [ + 1985466, + 7538252, + 402098 + ], + [ + 1985466, + 7538252, + 404219 + ], + [ + 1986526, + 7538826, + 402098 + ], + [ + 1986526, + 7538826, + 404219 + ], + [ + 1986570, + 7539109, + 402098 + ], + [ + 1986570, + 7539109, + 404219 + ], + [ + 1985396, + 7539596, + 404528 + ], + [ + 1985564, + 7539527, + 404492 + ], + [ + 7465024, + 4469859, + 427998 + ], + [ + 7464896, + 4469880, + 427998 + ], + [ + 7462641, + 4473758, + 427998 + ], + [ + 7462379, + 4474208, + 427998 + ], + [ + 7462254, + 4474425, + 427998 + ], + [ + 7454830, + 4487418, + 427998 + ], + [ + 7454797, + 4487477, + 427998 + ], + [ + 7457092, + 4489228, + 427998 + ], + [ + 7457081, + 4489356, + 427998 + ], + [ + 7460600, + 4492131, + 427998 + ], + [ + 7462050, + 4490308, + 427998 + ], + [ + 7466046, + 4485280, + 427998 + ], + [ + 7467595, + 4483331, + 427998 + ], + [ + 7466785, + 4482560, + 427998 + ], + [ + 7466583, + 4482368, + 427998 + ], + [ + 7468776, + 4479582, + 427998 + ], + [ + 7468854, + 4479482, + 427998 + ], + [ + 7469166, + 4479086, + 427998 + ], + [ + 7471530, + 4476082, + 427998 + ], + [ + 7471439, + 4475964, + 427998 + ], + [ + 7471850, + 4475510, + 427998 + ], + [ + 7466095, + 4469939, + 427998 + ], + [ + 7465632, + 4470437, + 427998 + ], + [ + 7462050, + 4490308, + 452009 + ], + [ + 7466046, + 4485280, + 452009 + ], + [ + 7468776, + 4479582, + 448113 + ], + [ + 7468854, + 4479482, + 448113 + ], + [ + 7466583, + 4482368, + 448113 + ], + [ + 7466785, + 4482560, + 447664 + ], + [ + 7467595, + 4483331, + 447838 + ], + [ + 7464896, + 4469880, + 440895 + ], + [ + 7462641, + 4473758, + 440895 + ], + [ + 7465024, + 4469859, + 440895 + ], + [ + 7465632, + 4470437, + 440895 + ], + [ + 7466095, + 4469939, + 440895 + ], + [ + 7471850, + 4475510, + 440895 + ], + [ + 7471439, + 4475964, + 440895 + ], + [ + 7471530, + 4476082, + 440895 + ], + [ + 7469166, + 4479086, + 440895 + ], + [ + 7462254, + 4474425, + 448126 + ], + [ + 7454830, + 4487418, + 448126 + ], + [ + 7462379, + 4474208, + 448129 + ], + [ + 7462641, + 4473758, + 447302 + ], + [ + 7469166, + 4479086, + 447302 + ], + [ + 7460600, + 4492131, + 447903 + ], + [ + 7457081, + 4489356, + 447903 + ], + [ + 7457092, + 4489228, + 448092 + ], + [ + 7454797, + 4487477, + 448010 + ], + [ + 7457833, + 4486981, + 452009 + ], + [ + 7463041, + 4477863, + 452009 + ], + [ + 7465478, + 4479853, + 452009 + ], + [ + 7463058, + 4482927, + 452009 + ], + [ + 7469557, + 4479405, + 447302 + ], + [ + 7467097, + 4482530, + 447302 + ], + [ + 7467794, + 4483080, + 447302 + ], + [ + 7469557, + 4479405, + 440895 + ], + [ + 7462239, + 4473429, + 440895 + ], + [ + 7464896, + 4468777, + 440895 + ], + [ + 7472288, + 4475934, + 440895 + ], + [ + 7454194, + 4487512, + 447302 + ], + [ + 7462239, + 4473429, + 447302 + ], + [ + 7460388, + 4492399, + 447302 + ], + [ + 4383447, + 5452214, + 411501 + ], + [ + 4376813, + 5460180, + 411501 + ], + [ + 4386725, + 5468511, + 411501 + ], + [ + 4393399, + 5460545, + 411501 + ], + [ + 4393399, + 5460547, + 411501 + ], + [ + 4393399, + 5460547, + 427308 + ], + [ + 4390078, + 5457764, + 427308 + ], + [ + 4390078, + 5457764, + 411501 + ], + [ + 4393143, + 5460851, + 411501 + ], + [ + 4393143, + 5460851, + 427308 + ], + [ + 4389717, + 5457462, + 427308 + ], + [ + 4389717, + 5457462, + 411501 + ], + [ + 4387296, + 5467830, + 411501 + ], + [ + 4386725, + 5468511, + 427308 + ], + [ + 4387296, + 5467830, + 427308 + ], + [ + 4376813, + 5460180, + 427308 + ], + [ + 4377433, + 5459434, + 411501 + ], + [ + 4377433, + 5459434, + 427308 + ], + [ + 4389487, + 5457737, + 429620 + ], + [ + 4389487, + 5457737, + 427308 + ], + [ + 4393143, + 5460851, + 429620 + ], + [ + 4390191, + 5464374, + 411501 + ], + [ + 4390191, + 5464374, + 433322 + ], + [ + 4380319, + 5455969, + 411501 + ], + [ + 4383260, + 5452437, + 411501 + ], + [ + 4383260, + 5452437, + 429620 + ], + [ + 4380319, + 5455969, + 433322 + ], + [ + 4383260, + 5452437, + 427308 + ], + [ + 4386893, + 5455529, + 427308 + ], + [ + 4386893, + 5455529, + 429620 + ], + [ + 4383447, + 5452214, + 427308 + ], + [ + 4387104, + 5455275, + 411501 + ], + [ + 4387104, + 5455275, + 427308 + ], + [ + 4387296, + 5467830, + 429620 + ], + [ + 4377433, + 5459434, + 429620 + ], + [ + 4387012, + 5460694, + 432726 + ], + [ + 4389717, + 5457462, + 430542 + ], + [ + 4384399, + 5458508, + 432749 + ], + [ + 4387104, + 5455275, + 430564 + ], + [ + 4386393, + 5468908, + 427308 + ], + [ + 4376466, + 5460597, + 427308 + ], + [ + 4383788, + 5451803, + 427308 + ], + [ + 4387592, + 5454970, + 427308 + ], + [ + 4387337, + 5455275, + 427308 + ], + [ + 4387200, + 5455161, + 427308 + ], + [ + 4390433, + 5457337, + 427308 + ], + [ + 4393763, + 5460111, + 427308 + ], + [ + 4387200, + 5455161, + 430487 + ], + [ + 4389813, + 5457347, + 430464 + ], + [ + 4901979, + 1749715, + 471983 + ], + [ + 4902692, + 1745466, + 471983 + ], + [ + 4902692, + 1745466, + 480287 + ], + [ + 4901979, + 1749715, + 484467 + ], + [ + 4910640, + 1746791, + 471983 + ], + [ + 4910640, + 1746791, + 480287 + ], + [ + 4908257, + 1756276, + 471983 + ], + [ + 4905313, + 1755849, + 471983 + ], + [ + 4905313, + 1755849, + 481619 + ], + [ + 4908257, + 1756276, + 484467 + ], + [ + 4905640, + 1754178, + 471983 + ], + [ + 4905640, + 1754178, + 481666 + ], + [ + 4901348, + 1753477, + 471983 + ], + [ + 4901348, + 1753477, + 481656 + ], + [ + 4910262, + 1748948, + 471983 + ], + [ + 4910083, + 1749971, + 471983 + ], + [ + 4910083, + 1749971, + 482433 + ], + [ + 4910262, + 1748948, + 482411 + ], + [ + 4905719, + 1745971, + 481883 + ], + [ + 4905719, + 1745971, + 480287 + ], + [ + 4910327, + 1746739, + 480287 + ], + [ + 4910327, + 1746739, + 482234 + ], + [ + 4908333, + 1746406, + 484467 + ], + [ + 4905449, + 1747593, + 481883 + ], + [ + 4909996, + 1748718, + 482234 + ], + [ + 4905640, + 1754178, + 482730 + ], + [ + 4903376, + 1753808, + 482726 + ], + [ + 4904003, + 1750052, + 484467 + ], + [ + 4909151, + 1750910, + 484467 + ], + [ + 4909399, + 1753883, + 482522 + ], + [ + 4908998, + 1751833, + 484467 + ], + [ + 4909737, + 1751960, + 484467 + ], + [ + 4908333, + 1746406, + 480287 + ], + [ + 4907625, + 1750656, + 484467 + ], + [ + 4901709, + 1749670, + 484467 + ], + [ + 4902507, + 1744881, + 479757 + ], + [ + 4910734, + 1746253, + 479757 + ], + [ + 4903376, + 1753808, + 481660 + ], + [ + 4905504, + 1754876, + 481142 + ], + [ + 4900967, + 1754120, + 481142 + ], + [ + 4910083, + 1749971, + 482434 + ], + [ + 4908237, + 1756393, + 484467 + ], + [ + 4905304, + 1755891, + 481618 + ], + [ + 4909029, + 1756008, + 482567 + ], + [ + 4908939, + 1756513, + 482579 + ], + [ + 4908964, + 1756378, + 471983 + ], + [ + 4909029, + 1756008, + 471983 + ], + [ + 4909399, + 1753883, + 471983 + ], + [ + 4908964, + 1756378, + 482576 + ], + [ + 4909737, + 1751960, + 471983 + ], + [ + 6053587, + 7961244, + 486947 + ], + [ + 6053587, + 7961244, + 488826 + ], + [ + 6049498, + 7961500, + 488826 + ], + [ + 6049498, + 7961500, + 486955 + ], + [ + 6053691, + 7962907, + 488826 + ], + [ + 6049603, + 7963155, + 488826 + ], + [ + 7463523, + 4479000, + 452009 + ], + [ + 7463523, + 4479000, + 452462 + ], + [ + 7462640, + 4480121, + 452462 + ], + [ + 7462640, + 4480121, + 452009 + ], + [ + 7464893, + 4480079, + 452009 + ], + [ + 7464893, + 4480079, + 452462 + ], + [ + 7464012, + 4481201, + 452009 + ], + [ + 7464012, + 4481201, + 452462 + ], + [ + 3121555, + 6309516, + 420392 + ], + [ + 3121555, + 6309516, + 422078 + ], + [ + 3123157, + 6307997, + 422078 + ], + [ + 3123157, + 6307997, + 420392 + ], + [ + 3120975, + 6308905, + 420392 + ], + [ + 3120975, + 6308905, + 422078 + ], + [ + 3122578, + 6307386, + 420392 + ], + [ + 3122578, + 6307386, + 422078 + ], + [ + 4783430, + 7761342, + 402889 + ], + [ + 4781154, + 7762406, + 402889 + ], + [ + 4765063, + 7770023, + 402889 + ], + [ + 4768325, + 7776972, + 402889 + ], + [ + 4768904, + 7776698, + 402889 + ], + [ + 4768959, + 7776809, + 402889 + ], + [ + 4769646, + 7778206, + 402889 + ], + [ + 4770194, + 7777962, + 402889 + ], + [ + 4770915, + 7779471, + 402889 + ], + [ + 4771493, + 7779222, + 402889 + ], + [ + 4772223, + 7780748, + 402889 + ], + [ + 4772824, + 7780498, + 402889 + ], + [ + 4773547, + 7782035, + 402889 + ], + [ + 4774162, + 7781780, + 402889 + ], + [ + 4774859, + 7783303, + 402889 + ], + [ + 4775455, + 7783031, + 402889 + ], + [ + 4776195, + 7784592, + 402889 + ], + [ + 4776791, + 7784344, + 402889 + ], + [ + 4779066, + 7789135, + 402889 + ], + [ + 4793333, + 7782323, + 402889 + ], + [ + 4791875, + 7779233, + 402889 + ], + [ + 4785649, + 7766045, + 402889 + ], + [ + 4785362, + 7765434, + 402889 + ], + [ + 4768325, + 7776972, + 413634 + ], + [ + 4768904, + 7776698, + 413634 + ], + [ + 4765063, + 7770023, + 413634 + ], + [ + 4781154, + 7762406, + 413634 + ], + [ + 4783430, + 7761342, + 413634 + ], + [ + 4785362, + 7765434, + 413634 + ], + [ + 4785649, + 7766045, + 413634 + ], + [ + 4791875, + 7779233, + 413634 + ], + [ + 4793333, + 7782323, + 413634 + ], + [ + 4779066, + 7789135, + 413634 + ], + [ + 4776791, + 7784344, + 413634 + ], + [ + 4776195, + 7784592, + 413634 + ], + [ + 4775455, + 7783031, + 413634 + ], + [ + 4768959, + 7776809, + 413634 + ], + [ + 4769646, + 7778206, + 413634 + ], + [ + 4770194, + 7777962, + 413634 + ], + [ + 4770915, + 7779471, + 413634 + ], + [ + 4771493, + 7779222, + 413634 + ], + [ + 4772223, + 7780748, + 413634 + ], + [ + 4772824, + 7780498, + 413634 + ], + [ + 4773547, + 7782035, + 413634 + ], + [ + 4774162, + 7781780, + 413634 + ], + [ + 4774859, + 7783303, + 413634 + ], + [ + 6594958, + 7471247, + 494245 + ], + [ + 6590313, + 7469424, + 494245 + ], + [ + 6590313, + 7469424, + 512818 + ], + [ + 6594958, + 7471247, + 512818 + ], + [ + 6591848, + 7465368, + 507580 + ], + [ + 6591848, + 7465368, + 509240 + ], + [ + 6591848, + 7465368, + 494245 + ], + [ + 6592629, + 7465674, + 508832 + ], + [ + 6593035, + 7465833, + 509240 + ], + [ + 6594109, + 7459391, + 494245 + ], + [ + 6594109, + 7459391, + 507354 + ], + [ + 6594469, + 7459533, + 494245 + ], + [ + 6594469, + 7459533, + 507931 + ], + [ + 6599453, + 7461492, + 494245 + ], + [ + 6599453, + 7461492, + 507931 + ], + [ + 6599273, + 7461937, + 508832 + ], + [ + 6599453, + 7461492, + 508832 + ], + [ + 6600274, + 7461815, + 494245 + ], + [ + 6600274, + 7461815, + 509740 + ], + [ + 6604114, + 7463324, + 494245 + ], + [ + 6604114, + 7463324, + 509740 + ], + [ + 6598699, + 7472714, + 494245 + ], + [ + 6596074, + 7471685, + 494245 + ], + [ + 6596074, + 7471685, + 513941 + ], + [ + 6598699, + 7472714, + 511191 + ], + [ + 6604981, + 7463664, + 494245 + ], + [ + 6604981, + 7463664, + 508832 + ], + [ + 6604981, + 7463664, + 507930 + ], + [ + 6604799, + 7464110, + 508832 + ], + [ + 6605334, + 7463803, + 494245 + ], + [ + 6605334, + 7463803, + 507930 + ], + [ + 6605319, + 7463841, + 494245 + ], + [ + 6605319, + 7463841, + 508007 + ], + [ + 6605037, + 7464506, + 494245 + ], + [ + 6605037, + 7464506, + 508030 + ], + [ + 6605237, + 7464589, + 494245 + ], + [ + 6605237, + 7464589, + 507561 + ], + [ + 6608532, + 7465930, + 494245 + ], + [ + 6608532, + 7465930, + 507561 + ], + [ + 6608495, + 7466024, + 494245 + ], + [ + 6608495, + 7466024, + 507783 + ], + [ + 6606470, + 7471201, + 494245 + ], + [ + 6606470, + 7471201, + 507927 + ], + [ + 6606376, + 7471441, + 494245 + ], + [ + 6606376, + 7471441, + 507380 + ], + [ + 6605294, + 7470994, + 494245 + ], + [ + 6605294, + 7470994, + 507393 + ], + [ + 6604910, + 7470835, + 494245 + ], + [ + 6604910, + 7470835, + 508834 + ], + [ + 6601350, + 7466180, + 511191 + ], + [ + 6604853, + 7467604, + 511191 + ], + [ + 6606253, + 7470652, + 508832 + ], + [ + 6605168, + 7470211, + 508832 + ], + [ + 6600774, + 7465918, + 511807 + ], + [ + 6597887, + 7467216, + 513941 + ], + [ + 6594850, + 7460199, + 508832 + ], + [ + 6604478, + 7464901, + 508832 + ], + [ + 6607901, + 7466293, + 508832 + ], + [ + 6603373, + 7474548, + 508847 + ], + [ + 6589325, + 7469036, + 512818 + ], + [ + 6590955, + 7465016, + 509240 + ], + [ + 6590955, + 7465016, + 506148 + ], + [ + 6593714, + 7458216, + 506148 + ], + [ + 6599810, + 7460611, + 506148 + ], + [ + 6599810, + 7460611, + 508832 + ], + [ + 6601328, + 7464554, + 511807 + ], + [ + 6605337, + 7462783, + 508832 + ], + [ + 6606487, + 7463235, + 506148 + ], + [ + 6605337, + 7462783, + 506148 + ], + [ + 6606078, + 7464242, + 506148 + ], + [ + 6609424, + 7465603, + 506148 + ], + [ + 6606899, + 7472281, + 506148 + ], + [ + 6603373, + 7474548, + 494245 + ], + [ + 6605402, + 7471675, + 506142 + ], + [ + 6604095, + 7474832, + 506153 + ], + [ + 6939287, + 9959250, + 424623 + ], + [ + 6938933, + 9963405, + 424623 + ], + [ + 6943521, + 9963796, + 424623 + ], + [ + 6943913, + 9959646, + 424623 + ], + [ + 6938933, + 9963405, + 443136 + ], + [ + 6943521, + 9963796, + 443136 + ], + [ + 6939287, + 9959250, + 443136 + ], + [ + 6943913, + 9959646, + 443136 + ], + [ + 6821967, + 6651527, + 512373 + ], + [ + 6821967, + 6651527, + 510825 + ], + [ + 6820935, + 6652806, + 510825 + ], + [ + 6820935, + 6652806, + 512373 + ], + [ + 6821447, + 6652171, + 512840 + ], + [ + 6820195, + 6652210, + 512373 + ], + [ + 6821228, + 6650930, + 512373 + ], + [ + 6820486, + 6651394, + 512840 + ], + [ + 7457314, + 4488859, + 448844 + ], + [ + 7456804, + 4489506, + 447390 + ], + [ + 7456804, + 4489506, + 448844 + ], + [ + 7455830, + 4488738, + 447390 + ], + [ + 7455830, + 4488738, + 448844 + ], + [ + 7455859, + 4488762, + 448974 + ], + [ + 7455910, + 4488802, + 449092 + ], + [ + 7455979, + 4488856, + 449194 + ], + [ + 7456063, + 4488923, + 449275 + ], + [ + 7456160, + 4488999, + 449330 + ], + [ + 7456263, + 4489081, + 449359 + ], + [ + 7456370, + 4489164, + 449359 + ], + [ + 7456473, + 4489246, + 449330 + ], + [ + 7456569, + 4489322, + 449275 + ], + [ + 7456654, + 4489389, + 449194 + ], + [ + 7456723, + 4489443, + 449092 + ], + [ + 7456774, + 4489483, + 448974 + ], + [ + 7456341, + 4488090, + 448844 + ], + [ + 7456955, + 4488204, + 449359 + ], + [ + 7457061, + 4488287, + 449359 + ], + [ + 7457154, + 4488381, + 449330 + ], + [ + 7457231, + 4488482, + 449275 + ], + [ + 7457288, + 4488585, + 449194 + ], + [ + 7457322, + 4488685, + 449092 + ], + [ + 7457330, + 4488778, + 448974 + ], + [ + 7456416, + 4488056, + 448974 + ], + [ + 7456507, + 4488043, + 449092 + ], + [ + 7456612, + 4488053, + 449194 + ], + [ + 7456726, + 4488084, + 449275 + ], + [ + 7456842, + 4488135, + 449330 + ], + [ + 4958464, + 4202854, + 432496 + ], + [ + 4958464, + 4202854, + 434381 + ], + [ + 4956500, + 4202612, + 434381 + ], + [ + 4956500, + 4202612, + 432496 + ], + [ + 4958384, + 4203492, + 434381 + ], + [ + 4956421, + 4203250, + 434381 + ], + [ + 4957983, + 4203524, + 434617 + ], + [ + 4957339, + 4203879, + 434971 + ], + [ + 4957438, + 4203089, + 434971 + ], + [ + 4956804, + 4203378, + 434617 + ], + [ + 7216487, + 4762783, + 444126 + ], + [ + 7216487, + 4762783, + 444041 + ], + [ + 7215615, + 4761465, + 444077 + ], + [ + 7215615, + 4761465, + 444094 + ], + [ + 7215660, + 4761532, + 444184 + ], + [ + 7215709, + 4761607, + 444263 + ], + [ + 7215763, + 4761690, + 444331 + ], + [ + 7215822, + 4761778, + 444388 + ], + [ + 7215884, + 4761871, + 444431 + ], + [ + 7215947, + 4761968, + 444462 + ], + [ + 7216013, + 4762068, + 444478 + ], + [ + 7216080, + 4762168, + 444481 + ], + [ + 7216146, + 4762268, + 444469 + ], + [ + 7216211, + 4762364, + 444444 + ], + [ + 7216273, + 4762460, + 444405 + ], + [ + 7216333, + 4762550, + 444353 + ], + [ + 7216388, + 4762635, + 444288 + ], + [ + 7216439, + 4762712, + 444213 + ], + [ + 7216975, + 4760587, + 442708 + ], + [ + 7216975, + 4760587, + 444094 + ], + [ + 7217833, + 4761914, + 444126 + ], + [ + 7217833, + 4761914, + 442686 + ], + [ + 7217787, + 4761843, + 444213 + ], + [ + 7217737, + 4761765, + 444288 + ], + [ + 7217682, + 4761680, + 444353 + ], + [ + 7217623, + 4761589, + 444405 + ], + [ + 7217561, + 4761493, + 444444 + ], + [ + 7217498, + 4761395, + 444469 + ], + [ + 7217433, + 4761293, + 444481 + ], + [ + 7217367, + 4761194, + 444478 + ], + [ + 7217302, + 4761094, + 444462 + ], + [ + 7217240, + 4760996, + 444431 + ], + [ + 7217180, + 4760902, + 444388 + ], + [ + 7217121, + 4760813, + 444331 + ], + [ + 7217069, + 4760729, + 444263 + ], + [ + 7217020, + 4760654, + 444184 + ], + [ + 3048825, + 6796406, + 404000 + ], + [ + 3040135, + 6803155, + 404000 + ], + [ + 3048660, + 6814117, + 404000 + ], + [ + 3052421, + 6818954, + 404000 + ], + [ + 3059254, + 6813654, + 404000 + ], + [ + 3061120, + 6812208, + 404000 + ], + [ + 3061120, + 6812208, + 415871 + ], + [ + 3048825, + 6796406, + 415871 + ], + [ + 3059254, + 6813654, + 415871 + ], + [ + 3052421, + 6818954, + 415871 + ], + [ + 3048660, + 6814117, + 415871 + ], + [ + 3040135, + 6803155, + 415871 + ], + [ + 3062041, + 6812337, + 415871 + ], + [ + 3052134, + 6820074, + 415871 + ], + [ + 3038833, + 6803043, + 415871 + ], + [ + 3048740, + 6795306, + 415871 + ], + [ + 4570671, + 8250081, + 457790 + ], + [ + 4568171, + 8249651, + 457790 + ], + [ + 4571649, + 8250250, + 457051 + ], + [ + 4571649, + 8250250, + 457790 + ], + [ + 4571575, + 8250710, + 457790 + ], + [ + 4568092, + 8250145, + 457790 + ], + [ + 4569788, + 8250819, + 458990 + ], + [ + 4569632, + 8251779, + 458990 + ], + [ + 4785012, + 1695467, + 455280 + ], + [ + 4782983, + 1697011, + 455280 + ], + [ + 4786229, + 1701396, + 455280 + ], + [ + 4788287, + 1699823, + 455280 + ], + [ + 4788287, + 1699823, + 460916 + ], + [ + 4785012, + 1695467, + 460909 + ], + [ + 4786229, + 1701396, + 461273 + ], + [ + 4782983, + 1697011, + 461261 + ], + [ + 4785339, + 1702843, + 461492 + ], + [ + 4781447, + 1697759, + 461492 + ], + [ + 4786317, + 1694032, + 460646 + ], + [ + 4790208, + 1699114, + 460646 + ], + [ + 7991040, + 5681629, + 501000 + ], + [ + 7987532, + 5685249, + 501000 + ], + [ + 7987078, + 5684812, + 501000 + ], + [ + 7986817, + 5684563, + 501000 + ], + [ + 7985453, + 5685989, + 501000 + ], + [ + 7985248, + 5685920, + 501000 + ], + [ + 7985038, + 5685869, + 501000 + ], + [ + 7984825, + 5685837, + 501000 + ], + [ + 7984609, + 5685825, + 501000 + ], + [ + 7984393, + 5685832, + 501000 + ], + [ + 7984179, + 5685858, + 501000 + ], + [ + 7983967, + 5685903, + 501000 + ], + [ + 7983760, + 5685967, + 501000 + ], + [ + 7983561, + 5686050, + 501000 + ], + [ + 7983368, + 5686150, + 501000 + ], + [ + 7983186, + 5686266, + 501000 + ], + [ + 7983015, + 5686399, + 501000 + ], + [ + 7982858, + 5686546, + 501000 + ], + [ + 7982712, + 5686707, + 501000 + ], + [ + 7982583, + 5686881, + 501000 + ], + [ + 7982470, + 5687065, + 501000 + ], + [ + 7982373, + 5687258, + 501000 + ], + [ + 7982294, + 5687460, + 501000 + ], + [ + 7982234, + 5687668, + 501000 + ], + [ + 7982194, + 5687880, + 501000 + ], + [ + 7982171, + 5688095, + 501000 + ], + [ + 7982169, + 5688310, + 501000 + ], + [ + 7982185, + 5688527, + 501000 + ], + [ + 7982220, + 5688739, + 501000 + ], + [ + 7982276, + 5688949, + 501000 + ], + [ + 7982348, + 5689153, + 501000 + ], + [ + 7981009, + 5690540, + 501000 + ], + [ + 7981325, + 5690856, + 501000 + ], + [ + 7981708, + 5691241, + 501000 + ], + [ + 7978483, + 5694593, + 501000 + ], + [ + 7982490, + 5698472, + 501000 + ], + [ + 7983646, + 5699592, + 501000 + ], + [ + 7986276, + 5702139, + 501000 + ], + [ + 7986425, + 5702283, + 501000 + ], + [ + 7991438, + 5697067, + 501000 + ], + [ + 7991873, + 5697485, + 501000 + ], + [ + 7992680, + 5698264, + 501000 + ], + [ + 7996473, + 5694342, + 501000 + ], + [ + 7995637, + 5693530, + 501000 + ], + [ + 7995268, + 5693171, + 501000 + ], + [ + 7998966, + 5689324, + 501000 + ], + [ + 7994930, + 5685406, + 501000 + ], + [ + 7985554, + 5692873, + 514754 + ], + [ + 7983015, + 5690457, + 512162 + ], + [ + 7983015, + 5690457, + 514173 + ], + [ + 7986541, + 5686753, + 512162 + ], + [ + 7986541, + 5686753, + 514173 + ], + [ + 7989080, + 5689168, + 514754 + ], + [ + 7995637, + 5693530, + 508060 + ], + [ + 7996473, + 5694342, + 508060 + ], + [ + 7992680, + 5698264, + 508060 + ], + [ + 7991873, + 5697485, + 508060 + ], + [ + 7995637, + 5693530, + 511459 + ], + [ + 7991873, + 5697485, + 511459 + ], + [ + 7991438, + 5697067, + 511904 + ], + [ + 7986425, + 5702283, + 511929 + ], + [ + 7986276, + 5702139, + 512082 + ], + [ + 7983646, + 5699592, + 514783 + ], + [ + 7982490, + 5698472, + 515969 + ], + [ + 7978483, + 5694593, + 511842 + ], + [ + 7981708, + 5691241, + 511861 + ], + [ + 7981325, + 5690856, + 511459 + ], + [ + 7981325, + 5690856, + 508418 + ], + [ + 7987078, + 5684812, + 508418 + ], + [ + 7987078, + 5684812, + 511459 + ], + [ + 7987532, + 5685249, + 511926 + ], + [ + 7991040, + 5681629, + 511958 + ], + [ + 7994930, + 5685406, + 515969 + ], + [ + 7998966, + 5689324, + 511820 + ], + [ + 7995268, + 5693171, + 511839 + ], + [ + 7981009, + 5690540, + 508418 + ], + [ + 7982348, + 5689153, + 508418 + ], + [ + 7982276, + 5688949, + 508418 + ], + [ + 7982220, + 5688739, + 508418 + ], + [ + 7982185, + 5688527, + 508418 + ], + [ + 7982169, + 5688310, + 508418 + ], + [ + 7982171, + 5688095, + 508418 + ], + [ + 7982194, + 5687880, + 508418 + ], + [ + 7982234, + 5687668, + 508418 + ], + [ + 7982294, + 5687460, + 508418 + ], + [ + 7982373, + 5687258, + 508418 + ], + [ + 7982470, + 5687065, + 508418 + ], + [ + 7982583, + 5686881, + 508418 + ], + [ + 7982712, + 5686707, + 508418 + ], + [ + 7982858, + 5686546, + 508418 + ], + [ + 7983015, + 5686399, + 508418 + ], + [ + 7983186, + 5686266, + 508418 + ], + [ + 7983368, + 5686150, + 508418 + ], + [ + 7983561, + 5686050, + 508418 + ], + [ + 7983760, + 5685967, + 508418 + ], + [ + 7983967, + 5685903, + 508418 + ], + [ + 7984179, + 5685858, + 508418 + ], + [ + 7984393, + 5685832, + 508418 + ], + [ + 7984609, + 5685825, + 508418 + ], + [ + 7984825, + 5685837, + 508418 + ], + [ + 7985038, + 5685869, + 508418 + ], + [ + 7985248, + 5685920, + 508418 + ], + [ + 7985453, + 5685989, + 508418 + ], + [ + 7986817, + 5684563, + 508418 + ], + [ + 7991256, + 5698133, + 508060 + ], + [ + 7997709, + 5691353, + 508060 + ], + [ + 7998780, + 5692389, + 508060 + ], + [ + 7992271, + 5699116, + 508060 + ], + [ + 7977984, + 5694364, + 511459 + ], + [ + 7990836, + 5680864, + 511459 + ], + [ + 7995209, + 5685112, + 515969 + ], + [ + 7982399, + 5698569, + 515969 + ], + [ + 7999595, + 5689371, + 511459 + ], + [ + 7986828, + 5702783, + 511459 + ], + [ + 7983603, + 5685700, + 508418 + ], + [ + 7984691, + 5685584, + 508418 + ], + [ + 7985422, + 5685797, + 508418 + ], + [ + 7987078, + 5684065, + 508418 + ], + [ + 7987450, + 5684421, + 508418 + ], + [ + 7981087, + 5691104, + 508418 + ], + [ + 7980507, + 5690552, + 508418 + ], + [ + 7982026, + 5688956, + 508418 + ], + [ + 7981907, + 5687952, + 508418 + ], + [ + 7982092, + 5687199, + 508418 + ], + [ + 7982881, + 5686194, + 508418 + ], + [ + 6426720, + 6746147, + 457682 + ], + [ + 6426658, + 6746479, + 457682 + ], + [ + 6426169, + 6749099, + 457682 + ], + [ + 6425942, + 6749124, + 457682 + ], + [ + 6425899, + 6749187, + 457682 + ], + [ + 6423830, + 6752179, + 457682 + ], + [ + 6423895, + 6752224, + 457682 + ], + [ + 6430533, + 6756854, + 457682 + ], + [ + 6431452, + 6757003, + 457682 + ], + [ + 6431765, + 6757054, + 457682 + ], + [ + 6431814, + 6757256, + 457682 + ], + [ + 6431956, + 6757830, + 457682 + ], + [ + 6432024, + 6757854, + 457682 + ], + [ + 6435066, + 6758967, + 457682 + ], + [ + 6435712, + 6759204, + 457682 + ], + [ + 6435856, + 6759229, + 457682 + ], + [ + 6436662, + 6759377, + 457682 + ], + [ + 6441598, + 6760280, + 457682 + ], + [ + 6442202, + 6756976, + 457682 + ], + [ + 6441916, + 6756896, + 457682 + ], + [ + 6442253, + 6755019, + 457682 + ], + [ + 6442381, + 6754302, + 457682 + ], + [ + 6442479, + 6753749, + 457682 + ], + [ + 6442535, + 6753718, + 457682 + ], + [ + 6443302, + 6753283, + 457682 + ], + [ + 6443581, + 6753125, + 457682 + ], + [ + 6443967, + 6751091, + 457682 + ], + [ + 6443748, + 6750839, + 457682 + ], + [ + 6443211, + 6750222, + 457682 + ], + [ + 6443200, + 6750209, + 457682 + ], + [ + 6442779, + 6750131, + 457682 + ], + [ + 6442885, + 6749572, + 457682 + ], + [ + 6442981, + 6749066, + 457682 + ], + [ + 6435709, + 6747761, + 457682 + ], + [ + 6433694, + 6747399, + 457682 + ], + [ + 6430509, + 6746827, + 457682 + ], + [ + 6428509, + 6746468, + 457682 + ], + [ + 6440149, + 6758618, + 477747 + ], + [ + 6440532, + 6756672, + 477725 + ], + [ + 6440532, + 6756672, + 477900 + ], + [ + 6440055, + 6759091, + 477900 + ], + [ + 6440055, + 6759091, + 477226 + ], + [ + 6441151, + 6756785, + 477226 + ], + [ + 6442202, + 6756976, + 474665 + ], + [ + 6442202, + 6756976, + 477432 + ], + [ + 6441598, + 6760280, + 477419 + ], + [ + 6433694, + 6747399, + 478761 + ], + [ + 6430509, + 6746827, + 478761 + ], + [ + 6428509, + 6746468, + 475957 + ], + [ + 6435709, + 6747761, + 475957 + ], + [ + 6442779, + 6750131, + 477702 + ], + [ + 6442885, + 6749572, + 477226 + ], + [ + 6443200, + 6750209, + 477703 + ], + [ + 6443211, + 6750222, + 477713 + ], + [ + 6443748, + 6750839, + 477226 + ], + [ + 6443748, + 6750839, + 473365 + ], + [ + 6443302, + 6753283, + 473365 + ], + [ + 6443302, + 6753283, + 477226 + ], + [ + 6442535, + 6753718, + 477742 + ], + [ + 6443967, + 6751091, + 473365 + ], + [ + 6443581, + 6753125, + 473365 + ], + [ + 6442479, + 6753749, + 477704 + ], + [ + 6442381, + 6754302, + 477226 + ], + [ + 6441916, + 6756896, + 475372 + ], + [ + 6442253, + 6755019, + 475388 + ], + [ + 6436662, + 6759377, + 477370 + ], + [ + 6436662, + 6759377, + 476794 + ], + [ + 6436848, + 6758445, + 477226 + ], + [ + 6436848, + 6758445, + 477900 + ], + [ + 6435856, + 6759229, + 476788 + ], + [ + 6435856, + 6759229, + 474613 + ], + [ + 6435876, + 6759130, + 474665 + ], + [ + 6436046, + 6758285, + 477226 + ], + [ + 6435066, + 6758967, + 474665 + ], + [ + 6435712, + 6759204, + 474611 + ], + [ + 6432024, + 6757854, + 476125 + ], + [ + 6431765, + 6757054, + 477226 + ], + [ + 6431814, + 6757256, + 477226 + ], + [ + 6431452, + 6757003, + 477226 + ], + [ + 6426720, + 6746147, + 475957 + ], + [ + 6426658, + 6746479, + 476789 + ], + [ + 6431956, + 6757830, + 476071 + ], + [ + 6423895, + 6752224, + 476047 + ], + [ + 6430533, + 6756854, + 476031 + ], + [ + 6423830, + 6752179, + 475804 + ], + [ + 6425899, + 6749187, + 475740 + ], + [ + 6425942, + 6749124, + 475860 + ], + [ + 6426169, + 6749099, + 476668 + ], + [ + 6442981, + 6749066, + 475957 + ], + [ + 6431169, + 6752042, + 480985 + ], + [ + 6432175, + 6757506, + 477226 + ], + [ + 6428495, + 6751522, + 477226 + ], + [ + 6436899, + 6753157, + 481056 + ], + [ + 6436615, + 6754797, + 481044 + ], + [ + 6439734, + 6751299, + 479110 + ], + [ + 6441641, + 6754101, + 477226 + ], + [ + 6434825, + 6746697, + 477415 + ], + [ + 6431824, + 6748559, + 480985 + ], + [ + 6429714, + 6745779, + 477415 + ], + [ + 6429319, + 6747137, + 477226 + ], + [ + 6427685, + 6745786, + 474665 + ], + [ + 6427586, + 6745397, + 474433 + ], + [ + 6436970, + 6747082, + 474433 + ], + [ + 6436736, + 6747411, + 474665 + ], + [ + 6434703, + 6748103, + 477226 + ], + [ + 6443944, + 6749763, + 477226 + ], + [ + 6441032, + 6751591, + 479159 + ], + [ + 6443081, + 6754492, + 477226 + ], + [ + 6443117, + 6754296, + 473365 + ], + [ + 6443805, + 6750523, + 473365 + ], + [ + 6444421, + 6750635, + 473365 + ], + [ + 6443733, + 6754408, + 473365 + ], + [ + 6442492, + 6755380, + 474665 + ], + [ + 6436640, + 6759483, + 477310 + ], + [ + 6435837, + 6759320, + 476745 + ], + [ + 6436640, + 6759483, + 476745 + ], + [ + 6435837, + 6759320, + 474565 + ], + [ + 6436640, + 6759483, + 474565 + ], + [ + 6441598, + 6760280, + 474665 + ], + [ + 6441929, + 6760810, + 474433 + ], + [ + 6431631, + 6758741, + 474433 + ], + [ + 6431825, + 6758316, + 474665 + ], + [ + 6424433, + 6752114, + 477226 + ], + [ + 6426251, + 6749513, + 477226 + ], + [ + 6426745, + 6746675, + 477226 + ], + [ + 6426240, + 6745527, + 474665 + ], + [ + 6442899, + 6755491, + 474665 + ], + [ + 6442868, + 6755658, + 474433 + ], + [ + 6423265, + 6752352, + 474665 + ], + [ + 6422419, + 6752324, + 474433 + ], + [ + 6425643, + 6748952, + 474665 + ], + [ + 6425200, + 6748349, + 474433 + ], + [ + 6425770, + 6745070, + 474433 + ], + [ + 6444132, + 6748739, + 474665 + ], + [ + 6444197, + 6748379, + 474433 + ], + [ + 4962092, + 4197624, + 417356 + ], + [ + 4961490, + 4202282, + 417356 + ], + [ + 4961399, + 4202989, + 417356 + ], + [ + 4949149, + 4201476, + 417356 + ], + [ + 4948992, + 4201457, + 417356 + ], + [ + 4947745, + 4212112, + 417356 + ], + [ + 4947239, + 4212512, + 417356 + ], + [ + 4947009, + 4212694, + 417356 + ], + [ + 4946771, + 4214728, + 417356 + ], + [ + 4946953, + 4214961, + 417356 + ], + [ + 4947399, + 4215533, + 417356 + ], + [ + 4947924, + 4216208, + 417356 + ], + [ + 4947978, + 4216278, + 417356 + ], + [ + 4949959, + 4216524, + 417356 + ], + [ + 4950029, + 4216469, + 417356 + ], + [ + 4950765, + 4215896, + 417356 + ], + [ + 4960191, + 4217065, + 417356 + ], + [ + 4960223, + 4217069, + 417356 + ], + [ + 4960396, + 4215649, + 417356 + ], + [ + 4961046, + 4215729, + 417356 + ], + [ + 4970870, + 4216958, + 417356 + ], + [ + 4972936, + 4199032, + 417356 + ], + [ + 4961490, + 4202282, + 425307 + ], + [ + 4962092, + 4197624, + 425307 + ], + [ + 4972936, + 4199032, + 425307 + ], + [ + 4970870, + 4216958, + 425307 + ], + [ + 4961046, + 4215729, + 425307 + ], + [ + 4962742, + 4202437, + 431671 + ], + [ + 4962742, + 4202437, + 425307 + ], + [ + 4961046, + 4215729, + 431671 + ], + [ + 4960396, + 4215649, + 432218 + ], + [ + 4960223, + 4217069, + 432213 + ], + [ + 4960191, + 4217065, + 432239 + ], + [ + 4950765, + 4215896, + 432239 + ], + [ + 4950029, + 4216469, + 431671 + ], + [ + 4947399, + 4215533, + 432191 + ], + [ + 4947924, + 4216208, + 431671 + ], + [ + 4946953, + 4214961, + 431671 + ], + [ + 4947239, + 4212512, + 431671 + ], + [ + 4947745, + 4212112, + 432135 + ], + [ + 4948992, + 4201457, + 432135 + ], + [ + 4949149, + 4201476, + 432297 + ], + [ + 4961399, + 4202989, + 432297 + ], + [ + 4961490, + 4202282, + 431671 + ], + [ + 4949959, + 4216524, + 431671 + ], + [ + 4947978, + 4216278, + 431671 + ], + [ + 4946771, + 4214728, + 431671 + ], + [ + 4947009, + 4212694, + 431671 + ], + [ + 4961171, + 4202243, + 425307 + ], + [ + 4961819, + 4197150, + 425307 + ], + [ + 4973623, + 4198654, + 425307 + ], + [ + 4971237, + 4217364, + 425307 + ], + [ + 4961006, + 4216050, + 425307 + ], + [ + 4959924, + 4216731, + 432496 + ], + [ + 4960782, + 4217803, + 431671 + ], + [ + 4946822, + 4216070, + 431671 + ], + [ + 4947737, + 4215220, + 432496 + ], + [ + 4948623, + 4200692, + 431671 + ], + [ + 4949316, + 4201724, + 432496 + ], + [ + 4948450, + 4214742, + 434617 + ], + [ + 4949881, + 4202523, + 434617 + ], + [ + 4959364, + 4216096, + 434617 + ], + [ + 4954361, + 4211347, + 437869 + ], + [ + 4961643, + 4203247, + 432496 + ], + [ + 4954873, + 4207158, + 437882 + ], + [ + 4960919, + 4203887, + 434617 + ], + [ + 4950845, + 4216570, + 431671 + ], + [ + 4950183, + 4217108, + 431671 + ], + [ + 4947378, + 4216691, + 431671 + ], + [ + 4947317, + 4211837, + 431671 + ], + [ + 4946046, + 4215206, + 431671 + ], + [ + 4946396, + 4212225, + 431671 + ], + [ + 4579390, + 8251581, + 457171 + ], + [ + 4582868, + 8252179, + 457225 + ], + [ + 4582868, + 8252179, + 457790 + ], + [ + 4579390, + 8251581, + 457790 + ], + [ + 4582811, + 8252531, + 457790 + ], + [ + 4579328, + 8251966, + 457790 + ], + [ + 4581003, + 8252773, + 458990 + ], + [ + 4580868, + 8253600, + 458990 + ], + [ + 6825959, + 6646581, + 512373 + ], + [ + 6825959, + 6646581, + 510825 + ], + [ + 6824927, + 6647861, + 510825 + ], + [ + 6824927, + 6647861, + 512373 + ], + [ + 6825441, + 6647225, + 512840 + ], + [ + 6824188, + 6647264, + 512373 + ], + [ + 6825220, + 6645985, + 512373 + ], + [ + 6824478, + 6646449, + 512840 + ], + [ + 6438498, + 6747889, + 475055 + ], + [ + 6438498, + 6747889, + 477130 + ], + [ + 6436608, + 6747549, + 477130 + ], + [ + 6436608, + 6747549, + 475055 + ], + [ + 6438342, + 6748756, + 477226 + ], + [ + 6438175, + 6749687, + 478016 + ], + [ + 6436285, + 6749347, + 478016 + ], + [ + 6436452, + 6748417, + 477226 + ], + [ + 4571944, + 8260431, + 457790 + ], + [ + 4571745, + 8261666, + 454990 + ], + [ + 4571745, + 8261666, + 457790 + ], + [ + 4565796, + 8260702, + 457790 + ], + [ + 6101651, + 11180188, + 448908 + ], + [ + 6101399, + 11180772, + 448908 + ], + [ + 6100470, + 11182923, + 448908 + ], + [ + 6100058, + 11182766, + 448908 + ], + [ + 6099750, + 11183483, + 448908 + ], + [ + 6098871, + 11185475, + 448908 + ], + [ + 6097734, + 11188050, + 448908 + ], + [ + 6096797, + 11190174, + 448908 + ], + [ + 6097055, + 11190285, + 448908 + ], + [ + 6096938, + 11190657, + 448908 + ], + [ + 6097998, + 11191158, + 448908 + ], + [ + 6105032, + 11194272, + 448908 + ], + [ + 6111001, + 11196897, + 448908 + ], + [ + 6112095, + 11197370, + 448908 + ], + [ + 6111544, + 11198650, + 448908 + ], + [ + 6111770, + 11198743, + 448908 + ], + [ + 6114608, + 11192395, + 448908 + ], + [ + 6115490, + 11190423, + 448908 + ], + [ + 6115419, + 11190393, + 448908 + ], + [ + 6116879, + 11186942, + 448908 + ], + [ + 6113490, + 11185466, + 448908 + ], + [ + 6108904, + 11183439, + 448908 + ], + [ + 6103320, + 11180932, + 448908 + ], + [ + 6111770, + 11198743, + 459898 + ], + [ + 6114608, + 11192395, + 462758 + ], + [ + 6111544, + 11198650, + 459895 + ], + [ + 6112095, + 11197370, + 460469 + ], + [ + 6111001, + 11196897, + 460466 + ], + [ + 6105032, + 11194272, + 460466 + ], + [ + 6097998, + 11191158, + 460473 + ], + [ + 6096938, + 11190657, + 460486 + ], + [ + 6097055, + 11190285, + 460646 + ], + [ + 6096797, + 11190174, + 460645 + ], + [ + 6097734, + 11188050, + 461599 + ], + [ + 6098871, + 11185475, + 462758 + ], + [ + 6115490, + 11190423, + 461887 + ], + [ + 6099750, + 11183483, + 461881 + ], + [ + 6100058, + 11182766, + 461567 + ], + [ + 6100470, + 11182923, + 461557 + ], + [ + 6101399, + 11180772, + 460613 + ], + [ + 6101651, + 11180188, + 460357 + ], + [ + 6103320, + 11180932, + 460361 + ], + [ + 6108904, + 11183439, + 460380 + ], + [ + 6113490, + 11185466, + 460383 + ], + [ + 6116879, + 11186942, + 460378 + ], + [ + 6115419, + 11190393, + 461888 + ], + [ + 6111759, + 11198745, + 459895 + ], + [ + 6095862, + 11191754, + 459895 + ], + [ + 6098663, + 11185383, + 462758 + ], + [ + 6101523, + 11178880, + 459895 + ], + [ + 6117001, + 11185687, + 459895 + ], + [ + 4389180, + 4130222, + 426989 + ], + [ + 4390401, + 4130068, + 426989 + ], + [ + 4390529, + 4130053, + 426989 + ], + [ + 4390657, + 4130027, + 426989 + ], + [ + 4390782, + 4129989, + 426989 + ], + [ + 4390904, + 4129942, + 426989 + ], + [ + 4391020, + 4129883, + 426989 + ], + [ + 4391129, + 4129814, + 426989 + ], + [ + 4391234, + 4129735, + 426989 + ], + [ + 4391330, + 4129648, + 426989 + ], + [ + 4391418, + 4129552, + 426989 + ], + [ + 4391496, + 4129448, + 426989 + ], + [ + 4391566, + 4129337, + 426989 + ], + [ + 4391626, + 4129222, + 426989 + ], + [ + 4391674, + 4129101, + 426989 + ], + [ + 4391712, + 4128977, + 426989 + ], + [ + 4391739, + 4128849, + 426989 + ], + [ + 4391754, + 4128720, + 426989 + ], + [ + 4391757, + 4128589, + 426989 + ], + [ + 4391748, + 4128460, + 426989 + ], + [ + 4391728, + 4128331, + 426989 + ], + [ + 4391695, + 4128205, + 426989 + ], + [ + 4391654, + 4128082, + 426989 + ], + [ + 4391600, + 4127962, + 426989 + ], + [ + 4391535, + 4127850, + 426989 + ], + [ + 4391461, + 4127742, + 426989 + ], + [ + 4391379, + 4127641, + 426989 + ], + [ + 4391287, + 4127550, + 426989 + ], + [ + 4391186, + 4127467, + 426989 + ], + [ + 4391080, + 4127391, + 426989 + ], + [ + 4390967, + 4127327, + 426989 + ], + [ + 4390848, + 4127274, + 426989 + ], + [ + 4390725, + 4127231, + 426989 + ], + [ + 4390598, + 4127199, + 426989 + ], + [ + 4389975, + 4127138, + 426989 + ], + [ + 4389791, + 4125943, + 426989 + ], + [ + 4388606, + 4126072, + 426989 + ], + [ + 4383186, + 4126660, + 426989 + ], + [ + 4384614, + 4139065, + 426989 + ], + [ + 4387990, + 4138670, + 426989 + ], + [ + 4389827, + 4138456, + 426989 + ], + [ + 4390084, + 4137939, + 426989 + ], + [ + 4391748, + 4128460, + 436703 + ], + [ + 4391728, + 4128331, + 436703 + ], + [ + 4391757, + 4128589, + 436703 + ], + [ + 4391626, + 4129222, + 436703 + ], + [ + 4391674, + 4129101, + 436703 + ], + [ + 4391566, + 4129337, + 436703 + ], + [ + 4391129, + 4129814, + 436703 + ], + [ + 4391234, + 4129735, + 436703 + ], + [ + 4391020, + 4129883, + 436703 + ], + [ + 4390657, + 4130027, + 436703 + ], + [ + 4390782, + 4129989, + 436703 + ], + [ + 4389180, + 4130222, + 436703 + ], + [ + 4390401, + 4130068, + 436703 + ], + [ + 4390084, + 4137939, + 436703 + ], + [ + 4389827, + 4138456, + 436703 + ], + [ + 4387990, + 4138670, + 436703 + ], + [ + 4384614, + 4139065, + 436703 + ], + [ + 4391695, + 4128205, + 436703 + ], + [ + 4391654, + 4128082, + 436703 + ], + [ + 4391600, + 4127962, + 436703 + ], + [ + 4391535, + 4127850, + 436703 + ], + [ + 4391461, + 4127742, + 436703 + ], + [ + 4391379, + 4127641, + 436703 + ], + [ + 4391287, + 4127550, + 436703 + ], + [ + 4391186, + 4127467, + 436703 + ], + [ + 4391080, + 4127391, + 436703 + ], + [ + 4390967, + 4127327, + 436703 + ], + [ + 4390848, + 4127274, + 436703 + ], + [ + 4390725, + 4127231, + 436703 + ], + [ + 4390598, + 4127199, + 436703 + ], + [ + 4389975, + 4127138, + 436703 + ], + [ + 4389791, + 4125943, + 436703 + ], + [ + 4388606, + 4126072, + 436703 + ], + [ + 4383186, + 4126660, + 436703 + ], + [ + 4390904, + 4129942, + 436703 + ], + [ + 4391330, + 4129648, + 436703 + ], + [ + 4391418, + 4129552, + 436703 + ], + [ + 4391496, + 4129448, + 436703 + ], + [ + 4391712, + 4128977, + 436703 + ], + [ + 4391739, + 4128849, + 436703 + ], + [ + 4391754, + 4128720, + 436703 + ], + [ + 4390529, + 4130053, + 436703 + ], + [ + 4966236, + 4205639, + 425307 + ], + [ + 4966236, + 4205639, + 425448 + ], + [ + 4963040, + 4205232, + 425448 + ], + [ + 4963040, + 4205232, + 425307 + ], + [ + 4965924, + 4208079, + 425307 + ], + [ + 4965924, + 4208079, + 425448 + ], + [ + 4966080, + 4206859, + 425872 + ], + [ + 4962728, + 4207671, + 425307 + ], + [ + 4962728, + 4207671, + 425448 + ], + [ + 4962884, + 4206452, + 425872 + ], + [ + 7218307, + 4765537, + 444126 + ], + [ + 7218307, + 4765537, + 443964 + ], + [ + 7217436, + 4764219, + 444001 + ], + [ + 7217436, + 4764219, + 444094 + ], + [ + 7217479, + 4764286, + 444184 + ], + [ + 7217529, + 4764361, + 444263 + ], + [ + 7217583, + 4764444, + 444331 + ], + [ + 7217643, + 4764532, + 444388 + ], + [ + 7217703, + 4764625, + 444431 + ], + [ + 7217768, + 4764722, + 444462 + ], + [ + 7217833, + 4764822, + 444478 + ], + [ + 7217899, + 4764922, + 444481 + ], + [ + 7217966, + 4765022, + 444469 + ], + [ + 7218030, + 4765119, + 444444 + ], + [ + 7218092, + 4765214, + 444405 + ], + [ + 7218152, + 4765305, + 444353 + ], + [ + 7218208, + 4765389, + 444288 + ], + [ + 7218259, + 4765467, + 444213 + ], + [ + 7218766, + 4763360, + 442661 + ], + [ + 7218766, + 4763360, + 444094 + ], + [ + 7219623, + 4764687, + 444126 + ], + [ + 7219623, + 4764687, + 442639 + ], + [ + 7219578, + 4764617, + 444213 + ], + [ + 7219526, + 4764538, + 444288 + ], + [ + 7219472, + 4764452, + 444353 + ], + [ + 7219413, + 4764362, + 444405 + ], + [ + 7219351, + 4764266, + 444444 + ], + [ + 7219288, + 4764168, + 444469 + ], + [ + 7219223, + 4764068, + 444481 + ], + [ + 7219157, + 4763967, + 444478 + ], + [ + 7219094, + 4763867, + 444462 + ], + [ + 7219030, + 4763769, + 444431 + ], + [ + 7218970, + 4763675, + 444388 + ], + [ + 7218912, + 4763586, + 444331 + ], + [ + 7218859, + 4763503, + 444263 + ], + [ + 7218810, + 4763428, + 444184 + ], + [ + 6551995, + 4999634, + 425956 + ], + [ + 6551995, + 4999634, + 424494 + ], + [ + 6550953, + 5000829, + 424500 + ], + [ + 6550953, + 5000829, + 425956 + ], + [ + 6551476, + 5000229, + 426451 + ], + [ + 6549895, + 4999853, + 425956 + ], + [ + 6550933, + 4998654, + 425956 + ], + [ + 6550055, + 4998918, + 426451 + ], + [ + 6493811, + 10254152, + 432417 + ], + [ + 6481703, + 10253979, + 432417 + ], + [ + 6481393, + 10271738, + 432417 + ], + [ + 6481390, + 10272022, + 432417 + ], + [ + 6482779, + 10272021, + 432417 + ], + [ + 6484550, + 10272049, + 432417 + ], + [ + 6493546, + 10272175, + 432417 + ], + [ + 6493615, + 10267501, + 432417 + ], + [ + 6493615, + 10267501, + 449380 + ], + [ + 6493811, + 10254152, + 449381 + ], + [ + 6493546, + 10272175, + 449380 + ], + [ + 6493262, + 10272172, + 432417 + ], + [ + 6493262, + 10272172, + 449540 + ], + [ + 6484550, + 10272049, + 449540 + ], + [ + 6482779, + 10272021, + 449542 + ], + [ + 6481526, + 10272022, + 432417 + ], + [ + 6481526, + 10272022, + 449531 + ], + [ + 6481390, + 10272022, + 449460 + ], + [ + 6481393, + 10271738, + 449460 + ], + [ + 6481703, + 10254064, + 432417 + ], + [ + 6481703, + 10254064, + 449491 + ], + [ + 6481703, + 10253979, + 449447 + ], + [ + 6493686, + 10254150, + 432417 + ], + [ + 6493686, + 10254150, + 449452 + ], + [ + 6480598, + 10252937, + 448905 + ], + [ + 6483296, + 10255689, + 450336 + ], + [ + 6483084, + 10270620, + 450336 + ], + [ + 6480313, + 10273114, + 448905 + ], + [ + 6494671, + 10253127, + 448905 + ], + [ + 6492089, + 10255808, + 450336 + ], + [ + 6491868, + 10270744, + 450336 + ], + [ + 6487657, + 10266200, + 454630 + ], + [ + 6494373, + 10273312, + 448905 + ], + [ + 6487746, + 10260042, + 454632 + ], + [ + 5608983, + 6582361, + 422328 + ], + [ + 5608983, + 6582361, + 423637 + ], + [ + 5609601, + 6583048, + 423637 + ], + [ + 5609601, + 6583048, + 422883 + ], + [ + 5609720, + 6581697, + 422297 + ], + [ + 5609720, + 6581697, + 423637 + ], + [ + 5610339, + 6582383, + 422852 + ], + [ + 5610339, + 6582383, + 423637 + ], + [ + 5005180, + 1652231, + 462874 + ], + [ + 5000658, + 1652178, + 462874 + ], + [ + 5000490, + 1661852, + 462874 + ], + [ + 5004956, + 1661993, + 462874 + ], + [ + 5005066, + 1657250, + 462874 + ], + [ + 5005066, + 1657250, + 477633 + ], + [ + 5005180, + 1652231, + 473474 + ], + [ + 5000572, + 1657153, + 462874 + ], + [ + 5000658, + 1652178, + 473511 + ], + [ + 5000572, + 1657153, + 477633 + ], + [ + 5004956, + 1661993, + 473725 + ], + [ + 5000490, + 1661852, + 473761 + ], + [ + 5000663, + 1651925, + 473301 + ], + [ + 5005185, + 1652023, + 473301 + ], + [ + 5000481, + 1662411, + 473301 + ], + [ + 5004945, + 1662506, + 473301 + ], + [ + 7164276, + 6858668, + 553521 + ], + [ + 7164276, + 6858668, + 554488 + ], + [ + 7165347, + 6859119, + 554488 + ], + [ + 7165347, + 6859119, + 553521 + ], + [ + 7164669, + 6857733, + 553370 + ], + [ + 7164669, + 6857733, + 554488 + ], + [ + 7165740, + 6858183, + 553370 + ], + [ + 7165740, + 6858183, + 554488 + ], + [ + 1895990, + 8993185, + 440451 + ], + [ + 1895990, + 8993185, + 441987 + ], + [ + 1896950, + 8992627, + 441987 + ], + [ + 1896950, + 8992627, + 440451 + ], + [ + 1895398, + 8992166, + 440451 + ], + [ + 1895398, + 8992166, + 441987 + ], + [ + 1896359, + 8991609, + 440451 + ], + [ + 1896359, + 8991609, + 441987 + ], + [ + 6607350, + 7465449, + 507561 + ], + [ + 6607350, + 7465449, + 509173 + ], + [ + 6605839, + 7464834, + 509173 + ], + [ + 6605839, + 7464834, + 507561 + ], + [ + 6607004, + 7466298, + 509173 + ], + [ + 6607134, + 7465981, + 508832 + ], + [ + 6605493, + 7465683, + 509173 + ], + [ + 6605623, + 7465366, + 508832 + ], + [ + 6606308, + 7465847, + 509703 + ], + [ + 6606049, + 7466483, + 509703 + ], + [ + 4955381, + 4216168, + 432496 + ], + [ + 4955381, + 4216168, + 434381 + ], + [ + 4957345, + 4216411, + 434381 + ], + [ + 4957345, + 4216411, + 432496 + ], + [ + 4955441, + 4215672, + 434381 + ], + [ + 4957407, + 4215916, + 434381 + ], + [ + 4955842, + 4215658, + 434617 + ], + [ + 4956487, + 4215290, + 434971 + ], + [ + 4956415, + 4215870, + 434971 + ], + [ + 4957021, + 4215805, + 434617 + ], + [ + 6010412, + 10969019, + 455163 + ], + [ + 6009185, + 10969068, + 455163 + ], + [ + 5997654, + 10969523, + 455163 + ], + [ + 5997779, + 10972472, + 455163 + ], + [ + 5994794, + 10972557, + 455163 + ], + [ + 5995117, + 10980278, + 455163 + ], + [ + 5995302, + 10984692, + 455163 + ], + [ + 5995643, + 10992876, + 455163 + ], + [ + 5998640, + 10992752, + 455163 + ], + [ + 6009995, + 10992281, + 455163 + ], + [ + 6014010, + 10992114, + 455163 + ], + [ + 6015899, + 10992037, + 455163 + ], + [ + 6018862, + 10991914, + 455163 + ], + [ + 6018438, + 10981270, + 455163 + ], + [ + 6018313, + 10978367, + 455163 + ], + [ + 6018026, + 10971675, + 455163 + ], + [ + 6015027, + 10971817, + 455163 + ], + [ + 6010527, + 10972029, + 455163 + ], + [ + 6018313, + 10978367, + 470969 + ], + [ + 6018026, + 10971675, + 470969 + ], + [ + 6018313, + 10978367, + 468112 + ], + [ + 6015358, + 10978485, + 468112 + ], + [ + 6015358, + 10978485, + 470969 + ], + [ + 6015899, + 10992037, + 468112 + ], + [ + 6015899, + 10992037, + 470969 + ], + [ + 6014010, + 10992114, + 470969 + ], + [ + 6009995, + 10992281, + 470969 + ], + [ + 6009995, + 10992281, + 469472 + ], + [ + 6009669, + 10984160, + 469472 + ], + [ + 6009669, + 10984160, + 470969 + ], + [ + 6003538, + 10984362, + 469472 + ], + [ + 6003538, + 10984362, + 470969 + ], + [ + 6003282, + 10977402, + 469472 + ], + [ + 6003282, + 10977402, + 470969 + ], + [ + 6009484, + 10977173, + 469472 + ], + [ + 6009484, + 10977173, + 470969 + ], + [ + 6009185, + 10969068, + 469472 + ], + [ + 6009185, + 10969068, + 470969 + ], + [ + 6010412, + 10969019, + 470969 + ], + [ + 6010527, + 10972029, + 470969 + ], + [ + 6015027, + 10971817, + 470969 + ], + [ + 5998640, + 10992752, + 469472 + ], + [ + 5998640, + 10992752, + 466479 + ], + [ + 5998293, + 10984566, + 466479 + ], + [ + 5998293, + 10984566, + 469472 + ], + [ + 5995302, + 10984692, + 466479 + ], + [ + 5995302, + 10984692, + 469472 + ], + [ + 5995117, + 10980278, + 469472 + ], + [ + 5995117, + 10980278, + 466479 + ], + [ + 5998106, + 10980152, + 466479 + ], + [ + 5998106, + 10980152, + 469472 + ], + [ + 5997779, + 10972472, + 466479 + ], + [ + 5997779, + 10972472, + 469472 + ], + [ + 5997654, + 10969523, + 469472 + ], + [ + 5994794, + 10972557, + 466479 + ], + [ + 5995643, + 10992876, + 466479 + ], + [ + 6018438, + 10981270, + 468112 + ], + [ + 6018862, + 10991914, + 468112 + ], + [ + 6015921, + 10992616, + 470969 + ], + [ + 6010018, + 10992860, + 470969 + ], + [ + 6014919, + 10968841, + 470969 + ], + [ + 6010018, + 10992860, + 469472 + ], + [ + 5998663, + 10993331, + 469472 + ], + [ + 5994950, + 10984707, + 469472 + ], + [ + 5994765, + 10980293, + 469472 + ], + [ + 5997654, + 10969523, + 466479 + ], + [ + 5994765, + 10980293, + 466479 + ], + [ + 5994395, + 10971433, + 466479 + ], + [ + 5994919, + 10970081, + 466479 + ], + [ + 5995629, + 10969603, + 466479 + ], + [ + 5994950, + 10984707, + 466479 + ], + [ + 5998663, + 10993331, + 466479 + ], + [ + 5996888, + 10993405, + 466479 + ], + [ + 5995740, + 10993116, + 466479 + ], + [ + 5995152, + 10992026, + 466479 + ], + [ + 6018887, + 10992493, + 468112 + ], + [ + 6015921, + 10992616, + 468112 + ], + [ + 6429990, + 6753756, + 477420 + ], + [ + 6429990, + 6753756, + 479436 + ], + [ + 6430666, + 6754836, + 479439 + ], + [ + 6430666, + 6754836, + 477437 + ], + [ + 6430901, + 6753185, + 479436 + ], + [ + 6431569, + 6754269, + 479439 + ], + [ + 4583120, + 8254354, + 457790 + ], + [ + 4584226, + 8254533, + 454990 + ], + [ + 4584226, + 8254533, + 457790 + ], + [ + 4583112, + 8261415, + 454990 + ], + [ + 4583112, + 8261415, + 457790 + ], + [ + 4582004, + 8261236, + 457790 + ], + [ + 6817515, + 6642165, + 512256 + ], + [ + 6816802, + 6641582, + 510644 + ], + [ + 6816802, + 6641582, + 512256 + ], + [ + 6817262, + 6641020, + 510664 + ], + [ + 6817262, + 6641020, + 512840 + ], + [ + 6817751, + 6640423, + 510685 + ], + [ + 6818445, + 6640991, + 512256 + ], + [ + 6817751, + 6640423, + 512256 + ], + [ + 6818223, + 6641807, + 512840 + ], + [ + 7214839, + 4760289, + 444126 + ], + [ + 7214839, + 4760289, + 444110 + ], + [ + 7213993, + 4759011, + 444146 + ], + [ + 7214061, + 4759114, + 444263 + ], + [ + 7214117, + 4759195, + 444331 + ], + [ + 7214174, + 4759285, + 444388 + ], + [ + 7214237, + 4759378, + 444431 + ], + [ + 7214300, + 4759475, + 444462 + ], + [ + 7214365, + 4759574, + 444478 + ], + [ + 7214433, + 4759674, + 444481 + ], + [ + 7214498, + 4759774, + 444469 + ], + [ + 7214563, + 4759872, + 444444 + ], + [ + 7214626, + 4759967, + 444405 + ], + [ + 7214685, + 4760057, + 444353 + ], + [ + 7214740, + 4760141, + 444288 + ], + [ + 7214793, + 4760220, + 444213 + ], + [ + 7216211, + 4759403, + 444126 + ], + [ + 7216211, + 4759403, + 442728 + ], + [ + 7215354, + 4758076, + 442751 + ], + [ + 7216166, + 4759333, + 444213 + ], + [ + 7216115, + 4759254, + 444288 + ], + [ + 7216061, + 4759168, + 444353 + ], + [ + 7216001, + 4759077, + 444405 + ], + [ + 7215941, + 4758983, + 444444 + ], + [ + 7215876, + 4758884, + 444469 + ], + [ + 7215811, + 4758783, + 444481 + ], + [ + 7215746, + 4758683, + 444478 + ], + [ + 7215683, + 4758583, + 444462 + ], + [ + 7215618, + 4758485, + 444431 + ], + [ + 7215558, + 4758391, + 444388 + ], + [ + 7215501, + 4758302, + 444331 + ], + [ + 7215447, + 4758219, + 444263 + ], + [ + 7215399, + 4758144, + 444184 + ], + [ + 7215354, + 4758076, + 444094 + ], + [ + 7214021, + 4758938, + 444094 + ], + [ + 7214012, + 4759039, + 444184 + ], + [ + 4571853, + 8250285, + 457054 + ], + [ + 4575331, + 8250883, + 457108 + ], + [ + 4575331, + 8250883, + 457790 + ], + [ + 4571853, + 8250285, + 457790 + ], + [ + 4575262, + 8251308, + 457790 + ], + [ + 4571779, + 8250743, + 457790 + ], + [ + 4573481, + 8251381, + 458990 + ], + [ + 4573320, + 8252377, + 458990 + ], + [ + 4579091, + 8251530, + 457167 + ], + [ + 4579027, + 8251918, + 457790 + ], + [ + 4579091, + 8251530, + 457790 + ], + [ + 4575544, + 8251353, + 457790 + ], + [ + 4575612, + 8250931, + 457113 + ], + [ + 4575612, + 8250931, + 457790 + ], + [ + 4577086, + 8252987, + 458990 + ], + [ + 4577228, + 8252104, + 458990 + ], + [ + 4841009, + 2297805, + 451496 + ], + [ + 4834461, + 2299068, + 451496 + ], + [ + 4835933, + 2306610, + 451496 + ], + [ + 4842452, + 2305248, + 451496 + ], + [ + 4835200, + 2302856, + 451496 + ], + [ + 4834461, + 2299068, + 460565 + ], + [ + 4835200, + 2302856, + 462846 + ], + [ + 4841009, + 2297805, + 460590 + ], + [ + 4841734, + 2301553, + 451496 + ], + [ + 4841734, + 2301553, + 462846 + ], + [ + 4842452, + 2305248, + 460620 + ], + [ + 4835933, + 2306610, + 460584 + ], + [ + 4834365, + 2298581, + 460271 + ], + [ + 4841231, + 2297211, + 460271 + ], + [ + 4842083, + 2301484, + 462846 + ], + [ + 4842936, + 2305754, + 460271 + ], + [ + 4836035, + 2307131, + 460271 + ], + [ + 6812077, + 6647766, + 512256 + ], + [ + 6811544, + 6647330, + 510990 + ], + [ + 6811544, + 6647330, + 512256 + ], + [ + 6812004, + 6646768, + 510990 + ], + [ + 6812004, + 6646768, + 512840 + ], + [ + 6812493, + 6646171, + 510990 + ], + [ + 6813026, + 6646608, + 512256 + ], + [ + 6812493, + 6646171, + 512256 + ], + [ + 6812782, + 6647406, + 512840 + ], + [ + 5476501, + 3277735, + 411000 + ], + [ + 5476274, + 3277737, + 411000 + ], + [ + 5476259, + 3276408, + 411000 + ], + [ + 5475075, + 3276423, + 411000 + ], + [ + 5472265, + 3276457, + 411000 + ], + [ + 5472095, + 3277787, + 411000 + ], + [ + 5460341, + 3277925, + 411000 + ], + [ + 5460203, + 3276599, + 411000 + ], + [ + 5455884, + 3276651, + 411000 + ], + [ + 5456015, + 3288800, + 411000 + ], + [ + 5460194, + 3288751, + 411000 + ], + [ + 5460191, + 3288402, + 411000 + ], + [ + 5464609, + 3288349, + 411000 + ], + [ + 5464612, + 3288610, + 411000 + ], + [ + 5467487, + 3288576, + 411000 + ], + [ + 5467484, + 3288316, + 411000 + ], + [ + 5475208, + 3288222, + 411000 + ], + [ + 5476615, + 3288206, + 411000 + ], + [ + 5476615, + 3288089, + 411000 + ], + [ + 5476558, + 3282881, + 411000 + ], + [ + 5476558, + 3282881, + 427036 + ], + [ + 5476501, + 3277735, + 425513 + ], + [ + 5476615, + 3288089, + 425511 + ], + [ + 5476615, + 3288206, + 425477 + ], + [ + 5475208, + 3288222, + 425486 + ], + [ + 5467484, + 3288316, + 425540 + ], + [ + 5467487, + 3288576, + 425464 + ], + [ + 5464612, + 3288610, + 425484 + ], + [ + 5464609, + 3288349, + 425560 + ], + [ + 5460191, + 3288402, + 425591 + ], + [ + 5460194, + 3288751, + 425488 + ], + [ + 5456015, + 3288800, + 425517 + ], + [ + 5455955, + 3283125, + 411000 + ], + [ + 5455955, + 3283125, + 427180 + ], + [ + 5455884, + 3276651, + 425264 + ], + [ + 5460203, + 3276599, + 425233 + ], + [ + 5460341, + 3277925, + 425626 + ], + [ + 5472095, + 3277787, + 425543 + ], + [ + 5472265, + 3276457, + 425149 + ], + [ + 5475075, + 3276423, + 425129 + ], + [ + 5476259, + 3276408, + 425121 + ], + [ + 5476274, + 3277737, + 425514 + ], + [ + 5455881, + 3276332, + 425170 + ], + [ + 5477188, + 3276081, + 425021 + ], + [ + 5477268, + 3282874, + 427031 + ], + [ + 5477350, + 3289745, + 425018 + ], + [ + 5456029, + 3289996, + 425167 + ], + [ + 4948231, + 4211003, + 432496 + ], + [ + 4948842, + 4211074, + 434499 + ], + [ + 4948231, + 4211003, + 434499 + ], + [ + 4948001, + 4212969, + 434499 + ], + [ + 4948001, + 4212969, + 432496 + ], + [ + 4948612, + 4213040, + 434499 + ], + [ + 4948856, + 4211275, + 434617 + ], + [ + 4949552, + 4212154, + 435088 + ], + [ + 4948598, + 4212042, + 435088 + ], + [ + 4948671, + 4212847, + 434617 + ], + [ + 6607168, + 7469418, + 507877 + ], + [ + 6606779, + 7469259, + 508832 + ], + [ + 6606625, + 7469197, + 508996 + ], + [ + 6607168, + 7469418, + 508996 + ], + [ + 6607756, + 7467915, + 507835 + ], + [ + 6607756, + 7467915, + 508996 + ], + [ + 6607195, + 7467687, + 508996 + ], + [ + 6607350, + 7467749, + 508832 + ], + [ + 6606248, + 7468173, + 509703 + ], + [ + 6606844, + 7468416, + 509703 + ], + [ + 5001734, + 1655253, + 476039 + ], + [ + 5001782, + 1653067, + 474227 + ], + [ + 5001782, + 1653067, + 476038 + ], + [ + 5004304, + 1653122, + 474227 + ], + [ + 5004304, + 1653122, + 476033 + ], + [ + 5004256, + 1655302, + 476034 + ], + [ + 3332612, + 8897985, + 500658 + ], + [ + 3332612, + 8897985, + 501658 + ], + [ + 3335001, + 8896371, + 501658 + ], + [ + 3335001, + 8896371, + 500658 + ], + [ + 3331194, + 8895886, + 500658 + ], + [ + 3331194, + 8895886, + 501658 + ], + [ + 3333584, + 8894272, + 500658 + ], + [ + 3333584, + 8894272, + 501658 + ], + [ + 1902515, + 8981982, + 423863 + ], + [ + 1888953, + 8990497, + 423863 + ], + [ + 1891223, + 8994136, + 423863 + ], + [ + 1892379, + 8993408, + 423863 + ], + [ + 1893092, + 8994582, + 423863 + ], + [ + 1893166, + 8994702, + 423863 + ], + [ + 1892904, + 8994860, + 423863 + ], + [ + 1894401, + 8997272, + 423863 + ], + [ + 1894544, + 8997502, + 423863 + ], + [ + 1894825, + 8997335, + 423863 + ], + [ + 1897504, + 9001621, + 423863 + ], + [ + 1897408, + 9001657, + 423863 + ], + [ + 1897441, + 9001707, + 423863 + ], + [ + 1897547, + 9001871, + 423863 + ], + [ + 1905424, + 8996862, + 423863 + ], + [ + 1907098, + 8995797, + 423863 + ], + [ + 1908765, + 8994736, + 423863 + ], + [ + 1908632, + 8994522, + 423863 + ], + [ + 1907956, + 8994897, + 423863 + ], + [ + 1900859, + 8983528, + 423863 + ], + [ + 1900941, + 8983476, + 423863 + ], + [ + 1900782, + 8983232, + 423863 + ], + [ + 1902569, + 8982064, + 423863 + ], + [ + 1901064, + 8989690, + 440451 + ], + [ + 1901064, + 8989690, + 437559 + ], + [ + 1901884, + 8991040, + 437559 + ], + [ + 1901884, + 8991040, + 440451 + ], + [ + 1897547, + 9001871, + 440451 + ], + [ + 1905424, + 8996862, + 440451 + ], + [ + 1897441, + 9001707, + 440451 + ], + [ + 1897408, + 9001657, + 440451 + ], + [ + 1897504, + 9001621, + 440451 + ], + [ + 1894825, + 8997335, + 440451 + ], + [ + 1894544, + 8997502, + 440451 + ], + [ + 1894401, + 8997272, + 440451 + ], + [ + 1892904, + 8994860, + 440451 + ], + [ + 1893166, + 8994702, + 440451 + ], + [ + 1893092, + 8994582, + 440451 + ], + [ + 1892379, + 8993408, + 440451 + ], + [ + 1892379, + 8993408, + 437559 + ], + [ + 1893847, + 8992487, + 437559 + ], + [ + 1893847, + 8992487, + 440451 + ], + [ + 1892493, + 8990261, + 437559 + ], + [ + 1892493, + 8990261, + 440451 + ], + [ + 1898429, + 8986654, + 437559 + ], + [ + 1898429, + 8986654, + 440451 + ], + [ + 1900487, + 8990041, + 437559 + ], + [ + 1900487, + 8990041, + 440451 + ], + [ + 1903580, + 8990009, + 437559 + ], + [ + 1903580, + 8990009, + 439547 + ], + [ + 1907098, + 8995797, + 437559 + ], + [ + 1907098, + 8995797, + 439547 + ], + [ + 1902569, + 8982064, + 437559 + ], + [ + 1902515, + 8981982, + 437559 + ], + [ + 1900782, + 8983232, + 437559 + ], + [ + 1900941, + 8983476, + 437559 + ], + [ + 1900859, + 8983528, + 437559 + ], + [ + 1907956, + 8994897, + 437559 + ], + [ + 1908632, + 8994522, + 437559 + ], + [ + 1908765, + 8994736, + 437559 + ], + [ + 1891223, + 8994136, + 437559 + ], + [ + 1888953, + 8990497, + 437559 + ], + [ + 1897461, + 9001925, + 440451 + ], + [ + 1894717, + 8997535, + 440451 + ], + [ + 1894512, + 8997657, + 440451 + ], + [ + 1892697, + 8994793, + 440451 + ], + [ + 1891024, + 8994261, + 437559 + ], + [ + 1888754, + 8990622, + 437559 + ], + [ + 1910381, + 8993709, + 437559 + ], + [ + 7459765, + 4490793, + 448844 + ], + [ + 7459254, + 4491441, + 447390 + ], + [ + 7459254, + 4491441, + 448844 + ], + [ + 7458280, + 4490672, + 447390 + ], + [ + 7458280, + 4490672, + 448844 + ], + [ + 7458311, + 4490695, + 448974 + ], + [ + 7458361, + 4490735, + 449092 + ], + [ + 7458430, + 4490790, + 449194 + ], + [ + 7458515, + 4490857, + 449275 + ], + [ + 7458612, + 4490933, + 449330 + ], + [ + 7458714, + 4491014, + 449359 + ], + [ + 7458820, + 4491097, + 449359 + ], + [ + 7458924, + 4491179, + 449330 + ], + [ + 7459021, + 4491255, + 449275 + ], + [ + 7459104, + 4491322, + 449194 + ], + [ + 7459174, + 4491377, + 449092 + ], + [ + 7459225, + 4491417, + 448974 + ], + [ + 7458791, + 4490024, + 448844 + ], + [ + 7459407, + 4490137, + 449359 + ], + [ + 7459512, + 4490221, + 449359 + ], + [ + 7459606, + 4490315, + 449330 + ], + [ + 7459683, + 4490416, + 449275 + ], + [ + 7459739, + 4490519, + 449194 + ], + [ + 7459773, + 4490619, + 449092 + ], + [ + 7459782, + 4490711, + 448974 + ], + [ + 7458867, + 4489989, + 448974 + ], + [ + 7458959, + 4489977, + 449092 + ], + [ + 7459064, + 4489987, + 449194 + ], + [ + 7459177, + 4490016, + 449275 + ], + [ + 7459294, + 4490068, + 449330 + ], + [ + 6048319, + 7971526, + 486934 + ], + [ + 6048319, + 7971526, + 488626 + ], + [ + 6054199, + 7971168, + 488626 + ], + [ + 6054199, + 7971168, + 486934 + ], + [ + 6048231, + 7970070, + 488626 + ], + [ + 6054111, + 7969712, + 488626 + ], + [ + 3539774, + 4779121, + 438220 + ], + [ + 3533910, + 4788671, + 438220 + ], + [ + 3533847, + 4788776, + 438220 + ], + [ + 3538395, + 4791550, + 438220 + ], + [ + 3542708, + 4794181, + 438220 + ], + [ + 3546205, + 4788484, + 438220 + ], + [ + 3545757, + 4788209, + 438220 + ], + [ + 3546794, + 4786520, + 438220 + ], + [ + 3548262, + 4787406, + 438220 + ], + [ + 3549645, + 4785141, + 438220 + ], + [ + 3546061, + 4782956, + 438220 + ], + [ + 3533847, + 4788776, + 447141 + ], + [ + 3538395, + 4791550, + 450348 + ], + [ + 3533910, + 4788671, + 447141 + ], + [ + 3539774, + 4779121, + 447157 + ], + [ + 3546061, + 4782956, + 451590 + ], + [ + 3546061, + 4782956, + 449178 + ], + [ + 3545936, + 4783161, + 449178 + ], + [ + 3545936, + 4783161, + 451590 + ], + [ + 3544174, + 4782085, + 450348 + ], + [ + 3549645, + 4785141, + 446801 + ], + [ + 3548262, + 4787406, + 446801 + ], + [ + 3546794, + 4786520, + 447772 + ], + [ + 3545757, + 4788209, + 447775 + ], + [ + 3546205, + 4788484, + 447477 + ], + [ + 3542708, + 4794181, + 447485 + ], + [ + 3538254, + 4791782, + 450348 + ], + [ + 3533223, + 4788711, + 446801 + ], + [ + 3539268, + 4778813, + 446801 + ], + [ + 3543598, + 4795045, + 446801 + ], + [ + 4960683, + 4210782, + 432496 + ], + [ + 4960683, + 4210782, + 434617 + ], + [ + 4960888, + 4209171, + 434617 + ], + [ + 4960888, + 4209171, + 432496 + ], + [ + 4960050, + 4210701, + 434617 + ], + [ + 4960257, + 4209090, + 434617 + ], + [ + 4959353, + 4209793, + 435088 + ], + [ + 4960361, + 4209922, + 435088 + ], + [ + 6898631, + 9468192, + 457369 + ], + [ + 6898631, + 9468192, + 457026 + ], + [ + 6897120, + 9468589, + 457024 + ], + [ + 6897120, + 9468589, + 457369 + ], + [ + 6897893, + 9468386, + 457906 + ], + [ + 6896955, + 9467959, + 457637 + ], + [ + 6898467, + 9467565, + 457635 + ], + [ + 6897470, + 9466779, + 458588 + ], + [ + 6426287, + 6749310, + 477226 + ], + [ + 6425970, + 6749252, + 476037 + ], + [ + 6425603, + 6749185, + 474979 + ], + [ + 6425603, + 6749185, + 476841 + ], + [ + 6425868, + 6747658, + 474665 + ], + [ + 6426552, + 6747783, + 477226 + ], + [ + 6425868, + 6747658, + 476841 + ], + [ + 6425009, + 6751288, + 477226 + ], + [ + 6424337, + 6750818, + 474665 + ], + [ + 6424337, + 6750818, + 477034 + ], + [ + 6425265, + 6749492, + 474665 + ], + [ + 6425938, + 6749962, + 477226 + ], + [ + 6425265, + 6749492, + 477034 + ], + [ + 5727026, + 2651981, + 408725 + ], + [ + 5726734, + 2663342, + 410035 + ], + [ + 5727868, + 2660810, + 409938 + ], + [ + 5730175, + 2651592, + 409253 + ], + [ + 5727199, + 2651640, + 408715 + ], + [ + 5727603, + 2632039, + 406437 + ], + [ + 5730748, + 2632027, + 407010 + ], + [ + 5728828, + 2658671, + 409857 + ], + [ + 5727868, + 2660810, + 411938 + ], + [ + 5728828, + 2658671, + 411857 + ], + [ + 5730175, + 2651592, + 411253 + ], + [ + 5730748, + 2632027, + 409010 + ], + [ + 5727603, + 2632039, + 408437 + ], + [ + 5727199, + 2651640, + 410715 + ], + [ + 5727026, + 2651981, + 410725 + ], + [ + 5726734, + 2663342, + 412035 + ], + [ + 4950239, + 4215530, + 432496 + ], + [ + 4950239, + 4215530, + 434381 + ], + [ + 4952203, + 4215774, + 434381 + ], + [ + 4952203, + 4215774, + 432496 + ], + [ + 4950299, + 4215035, + 434381 + ], + [ + 4952265, + 4215278, + 434381 + ], + [ + 4950700, + 4215022, + 434617 + ], + [ + 4951345, + 4214653, + 434971 + ], + [ + 4951273, + 4215233, + 434971 + ], + [ + 4951879, + 4215168, + 434617 + ], + [ + 4948430, + 4207059, + 432230 + ], + [ + 4948688, + 4207089, + 432496 + ], + [ + 4949300, + 4207161, + 434499 + ], + [ + 4948430, + 4207059, + 434499 + ], + [ + 4948126, + 4209665, + 434499 + ], + [ + 4948126, + 4209665, + 432230 + ], + [ + 4948995, + 4209766, + 434499 + ], + [ + 4948384, + 4209695, + 432496 + ], + [ + 4949307, + 4207425, + 434617 + ], + [ + 4949973, + 4208560, + 435088 + ], + [ + 4949126, + 4208461, + 435088 + ], + [ + 4949063, + 4209510, + 434617 + ], + [ + 7208427, + 4767560, + 444167 + ], + [ + 7207780, + 4767971, + 443515 + ], + [ + 7207780, + 4767971, + 444167 + ], + [ + 7207032, + 4766796, + 443516 + ], + [ + 7207032, + 4766796, + 444167 + ], + [ + 7207046, + 4766818, + 444302 + ], + [ + 7207074, + 4766862, + 444430 + ], + [ + 7207115, + 4766925, + 444545 + ], + [ + 7207166, + 4767008, + 444643 + ], + [ + 7207228, + 4767104, + 444720 + ], + [ + 7207296, + 4767212, + 444773 + ], + [ + 7207368, + 4767326, + 444800 + ], + [ + 7207444, + 4767442, + 444800 + ], + [ + 7207515, + 4767556, + 444773 + ], + [ + 7207584, + 4767664, + 444720 + ], + [ + 7207646, + 4767760, + 444643 + ], + [ + 7207697, + 4767842, + 444545 + ], + [ + 7207739, + 4767906, + 444430 + ], + [ + 7207766, + 4767950, + 444302 + ], + [ + 7207677, + 4766385, + 444167 + ], + [ + 7208717, + 4766630, + 444800 + ], + [ + 7208643, + 4766514, + 444800 + ], + [ + 7208763, + 4766761, + 444773 + ], + [ + 7208779, + 4766902, + 444720 + ], + [ + 7208765, + 4767047, + 444643 + ], + [ + 7208720, + 4767191, + 444545 + ], + [ + 7208646, + 4767327, + 444430 + ], + [ + 7208547, + 4767452, + 444302 + ], + [ + 7207825, + 4766320, + 444302 + ], + [ + 7207981, + 4766283, + 444430 + ], + [ + 7208135, + 4766276, + 444545 + ], + [ + 7208285, + 4766295, + 444643 + ], + [ + 7208422, + 4766343, + 444720 + ], + [ + 7208544, + 4766417, + 444773 + ], + [ + 7204476, + 4761367, + 444167 + ], + [ + 7203834, + 4761776, + 443519 + ], + [ + 7203834, + 4761776, + 444167 + ], + [ + 7203086, + 4760601, + 443520 + ], + [ + 7203086, + 4760601, + 444167 + ], + [ + 7203100, + 4760623, + 444302 + ], + [ + 7203128, + 4760666, + 444430 + ], + [ + 7203169, + 4760729, + 444545 + ], + [ + 7203220, + 4760812, + 444643 + ], + [ + 7203282, + 4760908, + 444720 + ], + [ + 7203350, + 4761016, + 444773 + ], + [ + 7203424, + 4761130, + 444800 + ], + [ + 7203498, + 4761247, + 444800 + ], + [ + 7203569, + 4761361, + 444773 + ], + [ + 7203638, + 4761468, + 444720 + ], + [ + 7203700, + 4761565, + 444643 + ], + [ + 7203751, + 4761646, + 444545 + ], + [ + 7203793, + 4761711, + 444430 + ], + [ + 7203820, + 4761754, + 444302 + ], + [ + 7203726, + 4760193, + 444167 + ], + [ + 7204768, + 4760438, + 444800 + ], + [ + 7204694, + 4760320, + 444800 + ], + [ + 7204813, + 4760569, + 444773 + ], + [ + 7204830, + 4760710, + 444720 + ], + [ + 7204814, + 4760854, + 444643 + ], + [ + 7204770, + 4760999, + 444545 + ], + [ + 7204695, + 4761135, + 444430 + ], + [ + 7204597, + 4761260, + 444302 + ], + [ + 7203876, + 4760129, + 444302 + ], + [ + 7204029, + 4760092, + 444430 + ], + [ + 7204186, + 4760083, + 444545 + ], + [ + 7204334, + 4760103, + 444643 + ], + [ + 7204473, + 4760151, + 444720 + ], + [ + 7204594, + 4760224, + 444773 + ], + [ + 4969376, + 4213432, + 425307 + ], + [ + 4969376, + 4213432, + 426014 + ], + [ + 4968996, + 4216418, + 426014 + ], + [ + 4968996, + 4216418, + 425307 + ], + [ + 4970958, + 4213633, + 425307 + ], + [ + 4970958, + 4213633, + 426014 + ], + [ + 4970580, + 4216620, + 425307 + ], + [ + 4970580, + 4216620, + 426014 + ], + [ + 4961154, + 4207080, + 432496 + ], + [ + 4961154, + 4207080, + 434617 + ], + [ + 4961361, + 4205469, + 434617 + ], + [ + 4961361, + 4205469, + 432496 + ], + [ + 4960523, + 4206999, + 434617 + ], + [ + 4960728, + 4205388, + 434617 + ], + [ + 4959825, + 4206092, + 435088 + ], + [ + 4960833, + 4206220, + 435088 + ], + [ + 4857850, + 5197404, + 431682 + ], + [ + 4857516, + 5196227, + 431682 + ], + [ + 4857516, + 5196227, + 432625 + ], + [ + 4857850, + 5197404, + 432625 + ], + [ + 4858179, + 5198569, + 432625 + ], + [ + 4858179, + 5198569, + 431682 + ], + [ + 4860050, + 5195510, + 431682 + ], + [ + 4860050, + 5195510, + 432625 + ], + [ + 4860712, + 5197852, + 431682 + ], + [ + 4860712, + 5197852, + 432625 + ], + [ + 4859046, + 5198324, + 431682 + ], + [ + 4859046, + 5198324, + 432625 + ], + [ + 4862302, + 5202279, + 431682 + ], + [ + 4862302, + 5202279, + 410324 + ], + [ + 4856692, + 5204030, + 410324 + ], + [ + 4856692, + 5204030, + 431682 + ], + [ + 4844225, + 5196983, + 431682 + ], + [ + 4844225, + 5196983, + 410324 + ], + [ + 4849356, + 5190769, + 410324 + ], + [ + 4849356, + 5190769, + 431682 + ], + [ + 4861822, + 5189837, + 431682 + ], + [ + 4861822, + 5189837, + 410324 + ], + [ + 4865700, + 5188633, + 410324 + ], + [ + 4865773, + 5188610, + 410324 + ], + [ + 4865773, + 5188610, + 431682 + ], + [ + 4865700, + 5188633, + 431682 + ], + [ + 4868787, + 5198195, + 410324 + ], + [ + 4868787, + 5198195, + 431682 + ], + [ + 4856077, + 5202131, + 431682 + ], + [ + 4856077, + 5202131, + 428595 + ], + [ + 4852145, + 5203349, + 428595 + ], + [ + 4852145, + 5203349, + 431682 + ], + [ + 4844225, + 5196983, + 428595 + ], + [ + 4856692, + 5204030, + 428595 + ], + [ + 4868787, + 5198195, + 428595 + ], + [ + 4861723, + 5200381, + 428595 + ], + [ + 4861723, + 5200381, + 431682 + ], + [ + 4862302, + 5202279, + 428595 + ], + [ + 4853981, + 5194430, + 431682 + ], + [ + 4853981, + 5194430, + 428595 + ], + [ + 4862422, + 5191763, + 428595 + ], + [ + 4862422, + 5191763, + 431682 + ], + [ + 4849356, + 5190769, + 428595 + ], + [ + 4861822, + 5189837, + 428595 + ], + [ + 4851700, + 5205589, + 410324 + ], + [ + 4851700, + 5205589, + 428595 + ], + [ + 4843032, + 5198428, + 410324 + ], + [ + 4843032, + 5198428, + 428595 + ], + [ + 4869376, + 5200070, + 410324 + ], + [ + 4869376, + 5200070, + 428595 + ], + [ + 4850481, + 5189404, + 410324 + ], + [ + 4850663, + 5189185, + 410324 + ], + [ + 4850663, + 5189185, + 428595 + ], + [ + 4850481, + 5189404, + 428595 + ], + [ + 4854308, + 5192173, + 410324 + ], + [ + 4854308, + 5192173, + 428595 + ], + [ + 4862328, + 5202363, + 431682 + ], + [ + 4856731, + 5204151, + 431682 + ], + [ + 4844151, + 5196923, + 431682 + ], + [ + 4849277, + 5190707, + 431682 + ], + [ + 4861797, + 5189762, + 431682 + ], + [ + 4865745, + 5188524, + 431682 + ], + [ + 4866276, + 5190210, + 431682 + ], + [ + 4859188, + 5195754, + 431682 + ], + [ + 4844151, + 5196923, + 428595 + ], + [ + 4856731, + 5204151, + 428595 + ], + [ + 4851689, + 5205673, + 428595 + ], + [ + 4842882, + 5198451, + 428595 + ], + [ + 4869401, + 5200147, + 428595 + ], + [ + 4862328, + 5202363, + 428595 + ], + [ + 4849277, + 5190707, + 428595 + ], + [ + 4850677, + 5189059, + 428595 + ], + [ + 4854296, + 5192097, + 428595 + ], + [ + 4861797, + 5189762, + 428595 + ], + [ + 7206859, + 4763792, + 444767 + ], + [ + 7205990, + 4762410, + 444775 + ], + [ + 7205990, + 4762410, + 446820 + ], + [ + 7206859, + 4763792, + 446820 + ], + [ + 7208219, + 4761006, + 447014 + ], + [ + 7209097, + 4762383, + 447015 + ], + [ + 5699805, + 1249070, + 466130 + ], + [ + 5697640, + 1253766, + 466130 + ], + [ + 5697640, + 1253766, + 472134 + ], + [ + 5699805, + 1249070, + 472134 + ], + [ + 5697640, + 1253766, + 471830 + ], + [ + 5692021, + 1251202, + 471830 + ], + [ + 5692021, + 1251202, + 472134 + ], + [ + 5692021, + 1251202, + 466130 + ], + [ + 5694353, + 1246603, + 466130 + ], + [ + 5694353, + 1246603, + 472134 + ], + [ + 5694353, + 1246603, + 472359 + ], + [ + 5697126, + 1239700, + 472359 + ], + [ + 5703280, + 1242484, + 472359 + ], + [ + 5700209, + 1249253, + 472359 + ], + [ + 5691055, + 1252418, + 479051 + ], + [ + 5690245, + 1254470, + 479051 + ], + [ + 5688941, + 1253965, + 479051 + ], + [ + 5689774, + 1251918, + 479051 + ], + [ + 5698046, + 1253952, + 471830 + ], + [ + 5695884, + 1258689, + 471830 + ], + [ + 5690063, + 1256022, + 471830 + ], + [ + 5690379, + 1255243, + 471830 + ], + [ + 5690245, + 1254470, + 471830 + ], + [ + 5690805, + 1253049, + 471830 + ], + [ + 5691038, + 1253143, + 471830 + ], + [ + 5700209, + 1249253, + 472134 + ], + [ + 5698046, + 1253952, + 472134 + ], + [ + 5702660, + 1242877, + 466130 + ], + [ + 5697595, + 1240585, + 466130 + ], + [ + 5696995, + 1241982, + 466130 + ], + [ + 5696314, + 1241721, + 466130 + ], + [ + 5691038, + 1253143, + 466130 + ], + [ + 5689526, + 1252528, + 466130 + ], + [ + 5688941, + 1253965, + 466130 + ], + [ + 5690245, + 1254470, + 466130 + ], + [ + 5690552, + 1256246, + 466130 + ], + [ + 5695461, + 1258495, + 466130 + ], + [ + 5699805, + 1249070, + 472359 + ], + [ + 5702660, + 1242877, + 472359 + ], + [ + 5696314, + 1241721, + 472359 + ], + [ + 5696995, + 1241982, + 472359 + ], + [ + 5697595, + 1240585, + 472359 + ], + [ + 5691055, + 1252418, + 466130 + ], + [ + 5689774, + 1251918, + 466130 + ], + [ + 5690805, + 1253049, + 466130 + ], + [ + 5695461, + 1258495, + 471830 + ], + [ + 5690552, + 1256246, + 471830 + ], + [ + 5690379, + 1255243, + 466130 + ], + [ + 7170330, + 6861214, + 553521 + ], + [ + 7170330, + 6861214, + 554488 + ], + [ + 7171401, + 6861665, + 554488 + ], + [ + 7171401, + 6861665, + 553521 + ], + [ + 7170723, + 6860278, + 553370 + ], + [ + 7170723, + 6860278, + 554488 + ], + [ + 7171794, + 6860728, + 553370 + ], + [ + 7171794, + 6860728, + 554488 + ], + [ + 1560867, + 9046306, + 400996 + ], + [ + 1559651, + 9046637, + 400996 + ], + [ + 1555947, + 9047586, + 400996 + ], + [ + 1549978, + 9049114, + 400996 + ], + [ + 1550061, + 9049454, + 400996 + ], + [ + 1550947, + 9049234, + 400996 + ], + [ + 1555336, + 9066842, + 400996 + ], + [ + 1560342, + 9065560, + 400996 + ], + [ + 1565370, + 9064273, + 400996 + ], + [ + 1549978, + 9049114, + 418640 + ], + [ + 1550061, + 9049454, + 418640 + ], + [ + 1555947, + 9047586, + 421240 + ], + [ + 1559651, + 9046637, + 419654 + ], + [ + 1560867, + 9046306, + 419131 + ], + [ + 1565370, + 9064273, + 419088 + ], + [ + 1560342, + 9065560, + 421240 + ], + [ + 1555336, + 9066842, + 419059 + ], + [ + 1550947, + 9049234, + 419025 + ], + [ + 1555776, + 9046887, + 421240 + ], + [ + 1560458, + 9066029, + 421240 + ], + [ + 1554487, + 9067549, + 418640 + ], + [ + 1549791, + 9048350, + 418640 + ], + [ + 1561865, + 9045397, + 418640 + ], + [ + 1566532, + 9064483, + 418640 + ], + [ + 8995705, + 4072318, + 518087 + ], + [ + 8995490, + 4072300, + 518087 + ], + [ + 8995490, + 4072300, + 528162 + ], + [ + 8995705, + 4072318, + 528162 + ], + [ + 8996296, + 4062756, + 518087 + ], + [ + 8996490, + 4062773, + 518087 + ], + [ + 8996490, + 4062773, + 528162 + ], + [ + 8996296, + 4062756, + 528162 + ], + [ + 8996609, + 4061339, + 518087 + ], + [ + 8996609, + 4061339, + 528162 + ], + [ + 8999203, + 4061556, + 518087 + ], + [ + 8999203, + 4061556, + 528162 + ], + [ + 8998722, + 4067384, + 518087 + ], + [ + 8998722, + 4067384, + 528162 + ], + [ + 8994575, + 4064942, + 531135 + ], + [ + 8991796, + 4065003, + 531451 + ], + [ + 8992032, + 4062407, + 531451 + ], + [ + 8994787, + 4062633, + 531135 + ], + [ + 8990248, + 4064706, + 531273 + ], + [ + 8989199, + 4062790, + 531135 + ], + [ + 8989251, + 4062178, + 531135 + ], + [ + 8988143, + 4064528, + 531274 + ], + [ + 8987612, + 4064482, + 531274 + ], + [ + 8987751, + 4062663, + 531135 + ], + [ + 8987833, + 4061597, + 528162 + ], + [ + 8996334, + 4062317, + 528162 + ], + [ + 8993197, + 4067397, + 533890 + ], + [ + 8987425, + 4066908, + 533890 + ], + [ + 8987612, + 4064482, + 531272 + ], + [ + 8994787, + 4062633, + 528641 + ], + [ + 8992032, + 4062407, + 528648 + ], + [ + 8989251, + 4062178, + 528655 + ], + [ + 8989199, + 4062790, + 529315 + ], + [ + 8987751, + 4062663, + 529310 + ], + [ + 8995430, + 4073013, + 528162 + ], + [ + 8987010, + 4072302, + 528162 + ], + [ + 8995771, + 4068979, + 528162 + ], + [ + 8995924, + 4067161, + 528162 + ], + [ + 8995242, + 4067107, + 529617 + ], + [ + 8995038, + 4068921, + 529723 + ], + [ + 8995038, + 4068921, + 530628 + ], + [ + 8995242, + 4067107, + 530628 + ], + [ + 8998722, + 4067384, + 530628 + ], + [ + 8998297, + 4072518, + 530628 + ], + [ + 8996804, + 4072402, + 530628 + ], + [ + 8997067, + 4069082, + 530628 + ], + [ + 8997067, + 4069082, + 528162 + ], + [ + 8996804, + 4072402, + 528162 + ], + [ + 8987799, + 4062059, + 518087 + ], + [ + 8987063, + 4071620, + 518087 + ], + [ + 8990063, + 4071846, + 518087 + ], + [ + 8998297, + 4072518, + 518087 + ], + [ + 8987425, + 4066908, + 518087 + ], + [ + 8987799, + 4062059, + 528658 + ], + [ + 8996074, + 4062738, + 518087 + ], + [ + 8996074, + 4062738, + 528638 + ], + [ + 8995134, + 4072270, + 518087 + ], + [ + 8990063, + 4071846, + 528915 + ], + [ + 8995134, + 4072270, + 528920 + ], + [ + 8987063, + 4071620, + 528886 + ], + [ + 8996804, + 4072402, + 518087 + ], + [ + 1109098, + 10197279, + 485317 + ], + [ + 1106439, + 10200758, + 485317 + ], + [ + 1103584, + 10204492, + 485317 + ], + [ + 1110118, + 10208897, + 485317 + ], + [ + 1110324, + 10209039, + 485317 + ], + [ + 1113376, + 10211170, + 485317 + ], + [ + 1116262, + 10207438, + 485317 + ], + [ + 1118952, + 10203962, + 485317 + ], + [ + 1115441, + 10201592, + 485317 + ], + [ + 1115404, + 10201567, + 485317 + ], + [ + 1115441, + 10201592, + 495125 + ], + [ + 1115404, + 10201567, + 495125 + ], + [ + 1118952, + 10203962, + 495113 + ], + [ + 1116262, + 10207438, + 498835 + ], + [ + 1113376, + 10211170, + 494918 + ], + [ + 1110324, + 10209039, + 494955 + ], + [ + 1110324, + 10209039, + 495453 + ], + [ + 1112945, + 10205183, + 498835 + ], + [ + 1110118, + 10208897, + 495455 + ], + [ + 1103584, + 10204492, + 495432 + ], + [ + 1106439, + 10200758, + 498835 + ], + [ + 1109098, + 10197279, + 495601 + ], + [ + 1115404, + 10201567, + 495601 + ], + [ + 1109871, + 10209704, + 494286 + ], + [ + 1116557, + 10207638, + 498835 + ], + [ + 1113188, + 10211960, + 494286 + ], + [ + 1115961, + 10200750, + 494286 + ], + [ + 1119859, + 10203401, + 494286 + ], + [ + 1102819, + 10204908, + 494870 + ], + [ + 1106146, + 10200558, + 498835 + ], + [ + 1109871, + 10209704, + 494870 + ], + [ + 1109405, + 10196292, + 494870 + ], + [ + 1115961, + 10200750, + 494870 + ], + [ + 6540930, + 4995604, + 424798 + ], + [ + 6540339, + 4995082, + 424799 + ], + [ + 6540339, + 4995082, + 426592 + ], + [ + 6540930, + 4995604, + 425673 + ], + [ + 6539742, + 4994556, + 424799 + ], + [ + 6539742, + 4994556, + 425673 + ], + [ + 6540368, + 4993884, + 425673 + ], + [ + 6541558, + 4994933, + 425673 + ], + [ + 6541625, + 4993705, + 426592 + ], + [ + 6545711, + 4999825, + 424795 + ], + [ + 6545120, + 4999302, + 424796 + ], + [ + 6545120, + 4999302, + 426592 + ], + [ + 6545711, + 4999825, + 425673 + ], + [ + 6544523, + 4998776, + 424796 + ], + [ + 6544523, + 4998776, + 425673 + ], + [ + 6545151, + 4998102, + 425673 + ], + [ + 6546342, + 4999151, + 425673 + ], + [ + 6546407, + 4997923, + 426592 + ], + [ + 7185927, + 6873512, + 556796 + ], + [ + 7186294, + 6872639, + 556962 + ], + [ + 7186294, + 6872639, + 557869 + ], + [ + 7185927, + 6873512, + 557869 + ], + [ + 7187265, + 6873048, + 556962 + ], + [ + 7187265, + 6873048, + 557869 + ], + [ + 7186904, + 6873923, + 556796 + ], + [ + 7186904, + 6873923, + 557869 + ], + [ + 6547174, + 4994614, + 428704 + ], + [ + 6547174, + 4994614, + 429084 + ], + [ + 6547927, + 4993758, + 429084 + ], + [ + 6547927, + 4993758, + 428704 + ], + [ + 6545564, + 4993195, + 428704 + ], + [ + 6545564, + 4993195, + 429084 + ], + [ + 6546319, + 4992340, + 428704 + ], + [ + 6546319, + 4992340, + 429084 + ], + [ + 6546347, + 4993094, + 429463 + ], + [ + 6547200, + 4993847, + 429463 + ], + [ + 7459558, + 4485413, + 452009 + ], + [ + 7459558, + 4485413, + 452456 + ], + [ + 7458558, + 4486679, + 452456 + ], + [ + 7458558, + 4486679, + 452009 + ], + [ + 7460794, + 4486388, + 452009 + ], + [ + 7460794, + 4486388, + 452456 + ], + [ + 7459794, + 4487655, + 452009 + ], + [ + 7459794, + 4487655, + 452456 + ], + [ + 5423941, + 9976431, + 439000 + ], + [ + 5422699, + 9957944, + 439000 + ], + [ + 5422699, + 9957944, + 456945 + ], + [ + 5423941, + 9976431, + 456945 + ], + [ + 5422504, + 9957957, + 439000 + ], + [ + 5422504, + 9957957, + 456945 + ], + [ + 5422484, + 9957636, + 439000 + ], + [ + 5422484, + 9957636, + 456945 + ], + [ + 5422248, + 9953793, + 439000 + ], + [ + 5422248, + 9953793, + 456945 + ], + [ + 5422518, + 9953779, + 439000 + ], + [ + 5422518, + 9953779, + 456945 + ], + [ + 5422532, + 9953894, + 439000 + ], + [ + 5422532, + 9953894, + 456945 + ], + [ + 5429052, + 9953440, + 439000 + ], + [ + 5429052, + 9953440, + 456945 + ], + [ + 5429109, + 9954341, + 439000 + ], + [ + 5429109, + 9954341, + 456945 + ], + [ + 5432561, + 9954101, + 439000 + ], + [ + 5432561, + 9954101, + 456945 + ], + [ + 5432493, + 9953109, + 439000 + ], + [ + 5432493, + 9953109, + 456945 + ], + [ + 5432763, + 9953083, + 439000 + ], + [ + 5432763, + 9953083, + 456945 + ], + [ + 5432978, + 9956370, + 439000 + ], + [ + 5432978, + 9956370, + 456945 + ], + [ + 5435944, + 9956780, + 456945 + ], + [ + 5437205, + 9975543, + 456945 + ], + [ + 5422467, + 9976530, + 456945 + ], + [ + 5421203, + 9957714, + 456945 + ], + [ + 5422165, + 9952434, + 456945 + ], + [ + 5432674, + 9951737, + 456945 + ], + [ + 5433020, + 9956974, + 456945 + ], + [ + 5434095, + 9975752, + 439000 + ], + [ + 5432847, + 9957238, + 439000 + ], + [ + 5433037, + 9957225, + 439000 + ], + [ + 5433020, + 9956974, + 439000 + ], + [ + 5433037, + 9957225, + 456945 + ], + [ + 5432847, + 9957238, + 456945 + ], + [ + 5434095, + 9975752, + 456945 + ], + [ + 8470782, + 10285641, + 435157 + ], + [ + 8470782, + 10285641, + 436301 + ], + [ + 8471435, + 10285201, + 436301 + ], + [ + 8471435, + 10285201, + 435157 + ], + [ + 8470367, + 10285027, + 435630 + ], + [ + 8470367, + 10285027, + 436301 + ], + [ + 8471020, + 10284587, + 435630 + ], + [ + 8471020, + 10284587, + 436301 + ], + [ + 6549711, + 4986484, + 423878 + ], + [ + 6549711, + 4986484, + 425956 + ], + [ + 6549166, + 4986003, + 426380 + ], + [ + 6549166, + 4986003, + 423868 + ], + [ + 6548552, + 4987813, + 425956 + ], + [ + 6547410, + 4986827, + 425956 + ], + [ + 6548580, + 4985485, + 423857 + ], + [ + 6548580, + 4985485, + 425956 + ], + [ + 6547765, + 4987610, + 426380 + ], + [ + 6441481, + 6754979, + 477226 + ], + [ + 6442345, + 6755158, + 475111 + ], + [ + 6442526, + 6755195, + 475140 + ], + [ + 6442526, + 6755195, + 477130 + ], + [ + 6442202, + 6756976, + 477130 + ], + [ + 7459836, + 4479470, + 448781 + ], + [ + 7459484, + 4479269, + 448124 + ], + [ + 7459484, + 4479269, + 448781 + ], + [ + 7460195, + 4478025, + 448124 + ], + [ + 7460195, + 4478025, + 448776 + ], + [ + 7460180, + 4478050, + 448913 + ], + [ + 7460154, + 4478097, + 449041 + ], + [ + 7460115, + 4478167, + 449156 + ], + [ + 7460066, + 4478253, + 449255 + ], + [ + 7460007, + 4478354, + 449332 + ], + [ + 7459944, + 4478466, + 449385 + ], + [ + 7459876, + 4478585, + 449412 + ], + [ + 7459807, + 4478706, + 449413 + ], + [ + 7459739, + 4478825, + 449386 + ], + [ + 7459674, + 4478938, + 449334 + ], + [ + 7459617, + 4479039, + 449258 + ], + [ + 7459566, + 4479126, + 449160 + ], + [ + 7459527, + 4479195, + 449045 + ], + [ + 7459500, + 4479243, + 448917 + ], + [ + 7460544, + 4478225, + 448776 + ], + [ + 7460495, + 4479100, + 449413 + ], + [ + 7460564, + 4478978, + 449412 + ], + [ + 7460413, + 4479211, + 449386 + ], + [ + 7460322, + 4479307, + 449334 + ], + [ + 7460223, + 4479385, + 449258 + ], + [ + 7460120, + 4479442, + 449160 + ], + [ + 7460020, + 4479476, + 449045 + ], + [ + 7459924, + 4479485, + 448917 + ], + [ + 7460603, + 4478291, + 448913 + ], + [ + 7460643, + 4478378, + 449041 + ], + [ + 7460666, + 4478482, + 449156 + ], + [ + 7460669, + 4478597, + 449255 + ], + [ + 7460654, + 4478722, + 449332 + ], + [ + 7460617, + 4478851, + 449385 + ], + [ + 6552345, + 4999016, + 424635 + ], + [ + 6551853, + 4998599, + 425288 + ], + [ + 6551853, + 4998599, + 427936 + ], + [ + 6552345, + 4999016, + 427936 + ], + [ + 6552802, + 4997478, + 425302 + ], + [ + 6552802, + 4997478, + 427936 + ], + [ + 6553294, + 4997895, + 424650 + ], + [ + 6553294, + 4997895, + 427936 + ], + [ + 6054393, + 7961193, + 473000 + ], + [ + 6036820, + 7962295, + 473000 + ], + [ + 6037138, + 7967288, + 473000 + ], + [ + 6037452, + 7972187, + 473000 + ], + [ + 6054998, + 7971120, + 473000 + ], + [ + 6054700, + 7966221, + 473000 + ], + [ + 6037452, + 7972187, + 486934 + ], + [ + 6054998, + 7971120, + 486934 + ], + [ + 6037138, + 7967288, + 492626 + ], + [ + 6036820, + 7962295, + 486982 + ], + [ + 6054393, + 7961193, + 486945 + ], + [ + 6054700, + 7966221, + 492626 + ], + [ + 6036788, + 7961802, + 486426 + ], + [ + 6054737, + 7960711, + 486426 + ], + [ + 6055072, + 7966198, + 492626 + ], + [ + 6055396, + 7971535, + 486426 + ], + [ + 6037479, + 7972624, + 486426 + ], + [ + 7205353, + 4749835, + 444167 + ], + [ + 7204921, + 4749114, + 443455 + ], + [ + 7204921, + 4749114, + 444167 + ], + [ + 7206128, + 4748394, + 443432 + ], + [ + 7206128, + 4748394, + 444167 + ], + [ + 7206100, + 4748410, + 444298 + ], + [ + 7206052, + 4748439, + 444422 + ], + [ + 7205986, + 4748479, + 444532 + ], + [ + 7205902, + 4748529, + 444626 + ], + [ + 7205805, + 4748587, + 444700 + ], + [ + 7205697, + 4748652, + 444750 + ], + [ + 7205583, + 4748720, + 444776 + ], + [ + 7205467, + 4748789, + 444776 + ], + [ + 7205353, + 4748858, + 444750 + ], + [ + 7205245, + 4748922, + 444700 + ], + [ + 7205146, + 4748981, + 444626 + ], + [ + 7205063, + 4749031, + 444532 + ], + [ + 7204996, + 4749070, + 444422 + ], + [ + 7204949, + 4749099, + 444298 + ], + [ + 7206572, + 4749138, + 444167 + ], + [ + 7206273, + 4750137, + 444776 + ], + [ + 7206390, + 4750070, + 444776 + ], + [ + 7206141, + 4750177, + 444750 + ], + [ + 7206001, + 4750188, + 444700 + ], + [ + 7205859, + 4750170, + 444626 + ], + [ + 7205717, + 4750124, + 444532 + ], + [ + 7205583, + 4750050, + 444422 + ], + [ + 7205459, + 4749952, + 444298 + ], + [ + 7206625, + 4749287, + 444298 + ], + [ + 7206651, + 4749439, + 444422 + ], + [ + 7206651, + 4749590, + 444532 + ], + [ + 7206623, + 4749733, + 444626 + ], + [ + 7206569, + 4749864, + 444700 + ], + [ + 7206490, + 4749978, + 444750 + ], + [ + 5613902, + 6583965, + 421977 + ], + [ + 5614163, + 6583716, + 421994 + ], + [ + 5614163, + 6583716, + 423637 + ], + [ + 5613902, + 6583965, + 423637 + ], + [ + 5614705, + 6584283, + 421526 + ], + [ + 5614705, + 6584283, + 423637 + ], + [ + 5614444, + 6584532, + 421509 + ], + [ + 5614444, + 6584532, + 423637 + ], + [ + 6593183, + 7461839, + 507447 + ], + [ + 6594044, + 7462188, + 508832 + ], + [ + 6594205, + 7462254, + 508996 + ], + [ + 6593183, + 7461839, + 508996 + ], + [ + 6592134, + 7464611, + 507552 + ], + [ + 6592134, + 7464611, + 508996 + ], + [ + 6593092, + 7465000, + 508996 + ], + [ + 6592930, + 7464934, + 508832 + ], + [ + 6594873, + 7464123, + 510233 + ], + [ + 6593973, + 7463758, + 510233 + ], + [ + 7462719, + 4485402, + 452009 + ], + [ + 7462719, + 4485402, + 452814 + ], + [ + 7464563, + 4486853, + 452814 + ], + [ + 7464563, + 4486853, + 452009 + ], + [ + 7463478, + 4484437, + 452009 + ], + [ + 7463478, + 4484437, + 452814 + ], + [ + 7465322, + 4485889, + 452009 + ], + [ + 7465322, + 4485889, + 452814 + ], + [ + 6019995, + 1791819, + 405000 + ], + [ + 6015103, + 1801337, + 405000 + ], + [ + 6018072, + 1802875, + 405000 + ], + [ + 6018216, + 1802587, + 405000 + ], + [ + 6024158, + 1805644, + 405000 + ], + [ + 6025118, + 1803779, + 405000 + ], + [ + 6027609, + 1798945, + 405000 + ], + [ + 6028760, + 1796709, + 405000 + ], + [ + 6022833, + 1793641, + 405000 + ], + [ + 6022978, + 1793363, + 405000 + ], + [ + 6024158, + 1805644, + 414839 + ], + [ + 6025118, + 1803779, + 414839 + ], + [ + 6018216, + 1802587, + 414839 + ], + [ + 6021703, + 1795817, + 418380 + ], + [ + 6021703, + 1795817, + 414839 + ], + [ + 6027609, + 1798945, + 414839 + ], + [ + 6027609, + 1798945, + 418380 + ], + [ + 6025118, + 1803779, + 418380 + ], + [ + 6019162, + 1800695, + 414839 + ], + [ + 6019162, + 1800695, + 418380 + ], + [ + 6018216, + 1802587, + 418380 + ], + [ + 6018072, + 1802875, + 418380 + ], + [ + 6015103, + 1801337, + 418380 + ], + [ + 6019995, + 1791819, + 418380 + ], + [ + 6022978, + 1793363, + 418380 + ], + [ + 6022833, + 1793641, + 418380 + ], + [ + 6022833, + 1793641, + 414839 + ], + [ + 6028760, + 1796709, + 414839 + ], + [ + 6026171, + 1804323, + 414839 + ], + [ + 6025120, + 1806352, + 414839 + ], + [ + 6018140, + 1802738, + 414839 + ], + [ + 6028711, + 1799530, + 418380 + ], + [ + 6026171, + 1804323, + 418380 + ], + [ + 6022918, + 1793481, + 414839 + ], + [ + 6029942, + 1797202, + 414839 + ], + [ + 6028711, + 1799530, + 414839 + ], + [ + 4651655, + 2067916, + 439495 + ], + [ + 4651655, + 2067916, + 426506 + ], + [ + 4651665, + 2075127, + 426506 + ], + [ + 4651665, + 2075127, + 439495 + ], + [ + 4632703, + 2067906, + 439495 + ], + [ + 4632703, + 2067906, + 426506 + ], + [ + 4633336, + 2067906, + 426506 + ], + [ + 4633336, + 2067906, + 439495 + ], + [ + 4633358, + 2075137, + 426506 + ], + [ + 4632706, + 2075137, + 426506 + ], + [ + 4632706, + 2075137, + 439495 + ], + [ + 4633358, + 2075137, + 439495 + ], + [ + 4624223, + 2076702, + 440948 + ], + [ + 4624223, + 2076702, + 426506 + ], + [ + 4624188, + 2067901, + 426506 + ], + [ + 4624188, + 2067901, + 440947 + ], + [ + 4633358, + 2075137, + 441739 + ], + [ + 4633336, + 2067906, + 441739 + ], + [ + 4632706, + 2075137, + 441683 + ], + [ + 4632711, + 2076672, + 426506 + ], + [ + 4632711, + 2076672, + 441683 + ], + [ + 4633362, + 2076949, + 441739 + ], + [ + 4623524, + 2076977, + 440887 + ], + [ + 4623498, + 2067823, + 440887 + ], + [ + 4633336, + 2067795, + 441739 + ], + [ + 8587634, + 4175222, + 497726 + ], + [ + 8588146, + 4176387, + 499001 + ], + [ + 8587634, + 4175222, + 499001 + ], + [ + 8585516, + 4177546, + 499001 + ], + [ + 8585004, + 4176381, + 497726 + ], + [ + 8585004, + 4176381, + 499001 + ], + [ + 8586336, + 4175795, + 499640 + ], + [ + 8587106, + 4177542, + 499640 + ], + [ + 7202614, + 4758447, + 444167 + ], + [ + 7201973, + 4758854, + 443522 + ], + [ + 7201973, + 4758854, + 444167 + ], + [ + 7201225, + 4757679, + 443522 + ], + [ + 7201225, + 4757679, + 444167 + ], + [ + 7201239, + 4757701, + 444302 + ], + [ + 7201266, + 4757745, + 444430 + ], + [ + 7201308, + 4757809, + 444545 + ], + [ + 7201359, + 4757891, + 444643 + ], + [ + 7201421, + 4757987, + 444720 + ], + [ + 7201490, + 4758094, + 444773 + ], + [ + 7201563, + 4758209, + 444800 + ], + [ + 7201637, + 4758325, + 444800 + ], + [ + 7201709, + 4758439, + 444773 + ], + [ + 7201777, + 4758546, + 444720 + ], + [ + 7201839, + 4758643, + 444643 + ], + [ + 7201891, + 4758725, + 444545 + ], + [ + 7201932, + 4758789, + 444430 + ], + [ + 7201959, + 4758833, + 444302 + ], + [ + 7201865, + 4757272, + 444167 + ], + [ + 7202904, + 4757516, + 444800 + ], + [ + 7202830, + 4757401, + 444800 + ], + [ + 7202950, + 4757648, + 444773 + ], + [ + 7202967, + 4757789, + 444720 + ], + [ + 7202952, + 4757934, + 444643 + ], + [ + 7202907, + 4758077, + 444545 + ], + [ + 7202833, + 4758215, + 444430 + ], + [ + 7202734, + 4758339, + 444302 + ], + [ + 7202012, + 4757208, + 444302 + ], + [ + 7202166, + 4757171, + 444430 + ], + [ + 7202322, + 4757163, + 444545 + ], + [ + 7202472, + 4757182, + 444643 + ], + [ + 7202609, + 4757229, + 444720 + ], + [ + 7202731, + 4757304, + 444773 + ], + [ + 6432868, + 6758526, + 474665 + ], + [ + 6432868, + 6758526, + 476457 + ], + [ + 6434180, + 6758789, + 476457 + ], + [ + 6434180, + 6758789, + 474665 + ], + [ + 6432987, + 6757935, + 476457 + ], + [ + 6434299, + 6758198, + 476457 + ], + [ + 6433668, + 6757873, + 477034 + ], + [ + 6433641, + 6758000, + 477034 + ], + [ + 8987063, + 4071616, + 528891 + ], + [ + 8987063, + 4071616, + 530882 + ], + [ + 8989972, + 4071839, + 530882 + ], + [ + 8989972, + 4071839, + 528915 + ], + [ + 8987248, + 4069205, + 531451 + ], + [ + 8987177, + 4070141, + 531451 + ], + [ + 8990115, + 4069987, + 530882 + ], + [ + 4574675, + 8262141, + 454990 + ], + [ + 4574876, + 8260906, + 457790 + ], + [ + 4574675, + 8262141, + 457790 + ], + [ + 4578703, + 8261527, + 457790 + ], + [ + 4578503, + 8262761, + 454990 + ], + [ + 4578503, + 8262761, + 457790 + ], + [ + 6826966, + 6645182, + 493773 + ], + [ + 6818785, + 6655248, + 493773 + ], + [ + 6818785, + 6655248, + 511051 + ], + [ + 6826966, + 6645182, + 510982 + ], + [ + 6819228, + 6639296, + 493773 + ], + [ + 6819560, + 6638902, + 493773 + ], + [ + 6819560, + 6638902, + 510679 + ], + [ + 6819228, + 6639296, + 511484 + ], + [ + 6826919, + 6645143, + 493773 + ], + [ + 6826919, + 6645143, + 511080 + ], + [ + 6816253, + 6642609, + 493773 + ], + [ + 6816367, + 6642697, + 493773 + ], + [ + 6816367, + 6642697, + 511262 + ], + [ + 6816253, + 6642609, + 511009 + ], + [ + 6815811, + 6642437, + 493773 + ], + [ + 6815896, + 6642334, + 493773 + ], + [ + 6815896, + 6642334, + 511101 + ], + [ + 6815811, + 6642437, + 511357 + ], + [ + 6812188, + 6649733, + 493773 + ], + [ + 6810791, + 6648564, + 493773 + ], + [ + 6810791, + 6648564, + 511357 + ], + [ + 6812188, + 6649733, + 514706 + ], + [ + 6819381, + 6642063, + 514706 + ], + [ + 6823728, + 6645554, + 514706 + ], + [ + 6817064, + 6653809, + 514706 + ], + [ + 6816021, + 6645056, + 514706 + ], + [ + 6816580, + 6645592, + 514706 + ], + [ + 6827629, + 6645050, + 510274 + ], + [ + 6819151, + 6655554, + 510274 + ], + [ + 6819171, + 6638256, + 510274 + ], + [ + 6816188, + 6642016, + 510274 + ], + [ + 6815742, + 6641590, + 510274 + ], + [ + 6810339, + 6648185, + 510274 + ], + [ + 6817064, + 6653809, + 493773 + ], + [ + 7161711, + 6856489, + 539084 + ], + [ + 7159646, + 6861398, + 539084 + ], + [ + 7156546, + 6868766, + 539084 + ], + [ + 7162691, + 6871325, + 539084 + ], + [ + 7164245, + 6867635, + 539084 + ], + [ + 7170564, + 6870283, + 539084 + ], + [ + 7182606, + 6875332, + 539084 + ], + [ + 7182080, + 6876621, + 539084 + ], + [ + 7185254, + 6877920, + 539084 + ], + [ + 7187265, + 6873048, + 539084 + ], + [ + 7189311, + 6868091, + 539084 + ], + [ + 7174163, + 6861722, + 539084 + ], + [ + 7164245, + 6867635, + 553551 + ], + [ + 7170564, + 6870283, + 553552 + ], + [ + 7162691, + 6871325, + 552939 + ], + [ + 7156546, + 6868766, + 552936 + ], + [ + 7159646, + 6861398, + 554158 + ], + [ + 7161711, + 6856489, + 553370 + ], + [ + 7174163, + 6861722, + 553370 + ], + [ + 7172100, + 6866633, + 554158 + ], + [ + 7174163, + 6861722, + 556030 + ], + [ + 7172086, + 6866666, + 556962 + ], + [ + 7172086, + 6866666, + 554153 + ], + [ + 7189311, + 6868091, + 556030 + ], + [ + 7185254, + 6877920, + 556040 + ], + [ + 7182080, + 6876621, + 556034 + ], + [ + 7182606, + 6875332, + 556277 + ], + [ + 7170564, + 6870283, + 556275 + ], + [ + 7169711, + 6872315, + 553216 + ], + [ + 7163708, + 6869791, + 553216 + ], + [ + 7162754, + 6872062, + 552839 + ], + [ + 7155944, + 6869200, + 552839 + ], + [ + 7159287, + 6861247, + 554158 + ], + [ + 7174475, + 6860979, + 553251 + ], + [ + 7161663, + 6855594, + 553251 + ], + [ + 7190049, + 6867526, + 555890 + ], + [ + 7187658, + 6873212, + 556962 + ], + [ + 7174475, + 6860979, + 555890 + ], + [ + 7185285, + 6878861, + 555890 + ], + [ + 7169711, + 6872315, + 555890 + ], + [ + 5109973, + 8368222, + 468957 + ], + [ + 5109294, + 8372136, + 468957 + ], + [ + 5110341, + 8372290, + 468957 + ], + [ + 5111501, + 8372460, + 468957 + ], + [ + 5112214, + 8368584, + 468957 + ], + [ + 5111020, + 8368391, + 468957 + ], + [ + 5111501, + 8372460, + 474120 + ], + [ + 5112214, + 8368584, + 474082 + ], + [ + 5110341, + 8372290, + 475291 + ], + [ + 5109294, + 8372136, + 474130 + ], + [ + 5109973, + 8368222, + 474127 + ], + [ + 5111020, + 8368391, + 475291 + ], + [ + 5109712, + 8367854, + 473776 + ], + [ + 5111072, + 8368092, + 475291 + ], + [ + 5110300, + 8372520, + 475291 + ], + [ + 5108941, + 8372283, + 473776 + ], + [ + 5112566, + 8368353, + 473776 + ], + [ + 5111794, + 8372780, + 473776 + ], + [ + 3134552, + 6323380, + 420392 + ], + [ + 3134552, + 6323380, + 422026 + ], + [ + 3136140, + 6321879, + 422026 + ], + [ + 3136140, + 6321879, + 420392 + ], + [ + 3133973, + 6322768, + 420392 + ], + [ + 3133973, + 6322768, + 422026 + ], + [ + 3135561, + 6321266, + 420392 + ], + [ + 3135561, + 6321266, + 422026 + ], + [ + 6822074, + 6642216, + 512256 + ], + [ + 6822763, + 6641344, + 510519 + ], + [ + 6822763, + 6641344, + 512256 + ], + [ + 6823333, + 6641795, + 510511 + ], + [ + 6823333, + 6641795, + 512722 + ], + [ + 6823938, + 6642274, + 510502 + ], + [ + 6823242, + 6643154, + 512256 + ], + [ + 6823938, + 6642274, + 512256 + ], + [ + 6822455, + 6642905, + 512722 + ], + [ + 4960212, + 4214471, + 432496 + ], + [ + 4960212, + 4214471, + 434617 + ], + [ + 4960418, + 4212860, + 434617 + ], + [ + 4960418, + 4212860, + 432496 + ], + [ + 4959580, + 4214391, + 434617 + ], + [ + 4959785, + 4212780, + 434617 + ], + [ + 4958884, + 4213483, + 435088 + ], + [ + 4959890, + 4213612, + 435088 + ], + [ + 6543419, + 4997802, + 424797 + ], + [ + 6542828, + 4997280, + 424797 + ], + [ + 6542828, + 4997280, + 426592 + ], + [ + 6543419, + 4997802, + 425673 + ], + [ + 6542231, + 4996753, + 424797 + ], + [ + 6542231, + 4996753, + 425673 + ], + [ + 6542859, + 4996081, + 425673 + ], + [ + 6544049, + 4997129, + 425673 + ], + [ + 6544115, + 4995901, + 426592 + ], + [ + 7458125, + 4482465, + 448781 + ], + [ + 7457774, + 4482265, + 448124 + ], + [ + 7457774, + 4482265, + 448781 + ], + [ + 7458484, + 4481021, + 448124 + ], + [ + 7458484, + 4481021, + 448776 + ], + [ + 7458470, + 4481046, + 448913 + ], + [ + 7458442, + 4481094, + 449041 + ], + [ + 7458404, + 4481162, + 449156 + ], + [ + 7458354, + 4481248, + 449255 + ], + [ + 7458296, + 4481349, + 449332 + ], + [ + 7458233, + 4481461, + 449385 + ], + [ + 7458165, + 4481580, + 449412 + ], + [ + 7458095, + 4481702, + 449413 + ], + [ + 7458027, + 4481820, + 449386 + ], + [ + 7457964, + 4481933, + 449334 + ], + [ + 7457905, + 4482035, + 449258 + ], + [ + 7457856, + 4482121, + 449160 + ], + [ + 7457816, + 4482190, + 449045 + ], + [ + 7457788, + 4482239, + 448917 + ], + [ + 7458833, + 4481220, + 448776 + ], + [ + 7458785, + 4482095, + 449413 + ], + [ + 7458853, + 4481974, + 449412 + ], + [ + 7458703, + 4482206, + 449386 + ], + [ + 7458609, + 4482303, + 449334 + ], + [ + 7458512, + 4482381, + 449258 + ], + [ + 7458410, + 4482438, + 449160 + ], + [ + 7458308, + 4482472, + 449045 + ], + [ + 7458212, + 4482481, + 448917 + ], + [ + 7458891, + 4481287, + 448913 + ], + [ + 7458933, + 4481374, + 449041 + ], + [ + 7458955, + 4481477, + 449156 + ], + [ + 7458958, + 4481594, + 449255 + ], + [ + 7458942, + 4481718, + 449332 + ], + [ + 7458907, + 4481846, + 449385 + ], + [ + 6428009, + 6755489, + 475073 + ], + [ + 6428424, + 6754895, + 477226 + ], + [ + 6428009, + 6755489, + 476745 + ], + [ + 6428996, + 6756178, + 476745 + ], + [ + 6428996, + 6756178, + 475073 + ], + [ + 6429412, + 6755582, + 477226 + ], + [ + 8991001, + 4071924, + 528916 + ], + [ + 8991001, + 4071924, + 531072 + ], + [ + 8993936, + 4072170, + 531072 + ], + [ + 8993936, + 4072170, + 528919 + ], + [ + 8991141, + 4069894, + 531072 + ], + [ + 8994078, + 4070141, + 531072 + ], + [ + 8992587, + 4069716, + 531388 + ], + [ + 8992501, + 4070957, + 531388 + ], + [ + 4954336, + 4202345, + 432496 + ], + [ + 4954336, + 4202345, + 434381 + ], + [ + 4952371, + 4202102, + 434381 + ], + [ + 4952371, + 4202102, + 432496 + ], + [ + 4954257, + 4202982, + 434381 + ], + [ + 4952293, + 4202739, + 434381 + ], + [ + 4953854, + 4203014, + 434617 + ], + [ + 4953212, + 4203369, + 434971 + ], + [ + 4953310, + 4202579, + 434971 + ], + [ + 4952675, + 4202868, + 434617 + ], + [ + 6814288, + 6645168, + 512373 + ], + [ + 6813705, + 6644692, + 510990 + ], + [ + 6813705, + 6644692, + 512373 + ], + [ + 6814166, + 6644130, + 510990 + ], + [ + 6814166, + 6644130, + 512956 + ], + [ + 6814655, + 6643533, + 510990 + ], + [ + 6815237, + 6644010, + 512373 + ], + [ + 6814655, + 6643533, + 512373 + ], + [ + 6814993, + 6644808, + 512956 + ], + [ + 5612501, + 6590377, + 420745 + ], + [ + 5612501, + 6590377, + 419519 + ], + [ + 5611583, + 6591124, + 419518 + ], + [ + 5611583, + 6591124, + 420745 + ], + [ + 5612052, + 6590742, + 421107 + ], + [ + 5610287, + 6589540, + 420745 + ], + [ + 5611206, + 6588793, + 420745 + ], + [ + 5610376, + 6588691, + 421107 + ], + [ + 6040381, + 7962070, + 486975 + ], + [ + 6040381, + 7962070, + 488826 + ], + [ + 6037733, + 7962237, + 488826 + ], + [ + 6037733, + 7962237, + 486980 + ], + [ + 6040484, + 7963709, + 488826 + ], + [ + 6037836, + 7963870, + 488826 + ], + [ + 5621794, + 6582824, + 420745 + ], + [ + 5621794, + 6582824, + 419530 + ], + [ + 5620875, + 6583570, + 419529 + ], + [ + 5620875, + 6583570, + 420745 + ], + [ + 5621345, + 6583188, + 421107 + ], + [ + 5619591, + 6582000, + 420745 + ], + [ + 5620510, + 6581254, + 420745 + ], + [ + 5619680, + 6581151, + 421107 + ], + [ + 10280910, + 4282440, + 604870 + ], + [ + 10280527, + 4283620, + 604870 + ], + [ + 10278839, + 4288807, + 604870 + ], + [ + 10278237, + 4290656, + 604870 + ], + [ + 10277117, + 4290303, + 604870 + ], + [ + 10276925, + 4290827, + 604870 + ], + [ + 10277121, + 4290887, + 604870 + ], + [ + 10276072, + 4294413, + 604870 + ], + [ + 10276998, + 4294716, + 604870 + ], + [ + 10276966, + 4294837, + 604870 + ], + [ + 10283695, + 4296920, + 604870 + ], + [ + 10285348, + 4291812, + 604870 + ], + [ + 10285634, + 4290927, + 604870 + ], + [ + 10287672, + 4284624, + 604870 + ], + [ + 10286708, + 4284276, + 604870 + ], + [ + 10286748, + 4283985, + 604870 + ], + [ + 10285438, + 4283560, + 604870 + ], + [ + 10285348, + 4283779, + 604870 + ], + [ + 10280527, + 4283620, + 616277 + ], + [ + 10278839, + 4288807, + 620905 + ], + [ + 10280910, + 4282440, + 615224 + ], + [ + 10285348, + 4283779, + 615187 + ], + [ + 10285438, + 4283560, + 614987 + ], + [ + 10286748, + 4283985, + 614999 + ], + [ + 10286708, + 4284276, + 615245 + ], + [ + 10287672, + 4284624, + 615283 + ], + [ + 10285634, + 4290927, + 620905 + ], + [ + 10285348, + 4291812, + 620127 + ], + [ + 10283695, + 4296920, + 615631 + ], + [ + 10276966, + 4294837, + 615617 + ], + [ + 10276998, + 4294716, + 615722 + ], + [ + 10276072, + 4294413, + 615733 + ], + [ + 10277121, + 4290887, + 618814 + ], + [ + 10276925, + 4290827, + 618812 + ], + [ + 10277117, + 4290303, + 619279 + ], + [ + 10278237, + 4290656, + 619276 + ], + [ + 10288359, + 4283715, + 614373 + ], + [ + 10286041, + 4291054, + 620905 + ], + [ + 10277785, + 4288478, + 620905 + ], + [ + 10280432, + 4281241, + 614373 + ], + [ + 10283879, + 4297894, + 614899 + ], + [ + 10283689, + 4298493, + 614373 + ], + [ + 10275609, + 4295971, + 614373 + ], + [ + 10285760, + 4291941, + 620126 + ], + [ + 10283429, + 4297746, + 614904 + ], + [ + 7208435, + 4748073, + 444167 + ], + [ + 7207967, + 4747293, + 443395 + ], + [ + 7207967, + 4747293, + 444167 + ], + [ + 7209174, + 4746572, + 443371 + ], + [ + 7209174, + 4746572, + 444167 + ], + [ + 7209146, + 4746587, + 444298 + ], + [ + 7209098, + 4746616, + 444422 + ], + [ + 7209032, + 4746656, + 444532 + ], + [ + 7208947, + 4746706, + 444626 + ], + [ + 7208850, + 4746765, + 444700 + ], + [ + 7208742, + 4746829, + 444750 + ], + [ + 7208629, + 4746897, + 444776 + ], + [ + 7208512, + 4746967, + 444776 + ], + [ + 7208399, + 4747035, + 444750 + ], + [ + 7208291, + 4747100, + 444700 + ], + [ + 7208192, + 4747158, + 444626 + ], + [ + 7208109, + 4747208, + 444532 + ], + [ + 7208043, + 4747248, + 444422 + ], + [ + 7207995, + 4747277, + 444298 + ], + [ + 7209654, + 4747376, + 444167 + ], + [ + 7209356, + 4748375, + 444776 + ], + [ + 7209473, + 4748308, + 444776 + ], + [ + 7209225, + 4748415, + 444750 + ], + [ + 7209084, + 4748425, + 444700 + ], + [ + 7208941, + 4748408, + 444626 + ], + [ + 7208799, + 4748362, + 444532 + ], + [ + 7208665, + 4748289, + 444422 + ], + [ + 7208541, + 4748191, + 444298 + ], + [ + 7209708, + 4747525, + 444298 + ], + [ + 7209734, + 4747678, + 444422 + ], + [ + 7209734, + 4747827, + 444532 + ], + [ + 7209705, + 4747972, + 444626 + ], + [ + 7209651, + 4748103, + 444700 + ], + [ + 7209572, + 4748216, + 444750 + ], + [ + 5430929, + 9966000, + 456945 + ], + [ + 5430929, + 9966000, + 457552 + ], + [ + 5433425, + 9965832, + 457552 + ], + [ + 5433425, + 9965832, + 456945 + ], + [ + 5430746, + 9963308, + 456945 + ], + [ + 5430746, + 9963308, + 457552 + ], + [ + 5433245, + 9963140, + 456945 + ], + [ + 5433245, + 9963140, + 457552 + ], + [ + 2834972, + 6881119, + 420333 + ], + [ + 2834972, + 6881119, + 422311 + ], + [ + 2835470, + 6880765, + 422311 + ], + [ + 2835470, + 6880765, + 420990 + ], + [ + 2834708, + 6880749, + 420332 + ], + [ + 2834708, + 6880749, + 422311 + ], + [ + 2835205, + 6880394, + 420989 + ], + [ + 2835205, + 6880394, + 422311 + ], + [ + 7184467, + 6867157, + 556207 + ], + [ + 7184467, + 6867157, + 557127 + ], + [ + 7185538, + 6867608, + 557127 + ], + [ + 7185538, + 6867608, + 556207 + ], + [ + 7184862, + 6866221, + 556030 + ], + [ + 7184862, + 6866221, + 557127 + ], + [ + 7185933, + 6866671, + 556030 + ], + [ + 7185933, + 6866671, + 557127 + ], + [ + 5459830, + 6693591, + 425650 + ], + [ + 5459830, + 6693591, + 427050 + ], + [ + 5458626, + 6694847, + 427050 + ], + [ + 5458626, + 6694847, + 425650 + ], + [ + 5461239, + 6694940, + 425650 + ], + [ + 5461239, + 6694940, + 427050 + ], + [ + 5460035, + 6696197, + 425650 + ], + [ + 5460035, + 6696197, + 427050 + ], + [ + 7411299, + 9039040, + 460000 + ], + [ + 7411620, + 9037638, + 460000 + ], + [ + 7411682, + 9037371, + 460000 + ], + [ + 7411682, + 9037371, + 454054 + ], + [ + 7411620, + 9037638, + 454054 + ], + [ + 7411299, + 9039040, + 454054 + ], + [ + 7411268, + 9039175, + 454054 + ], + [ + 7411268, + 9039175, + 460000 + ], + [ + 7413992, + 9039766, + 454054 + ], + [ + 7413992, + 9039766, + 460000 + ], + [ + 7412291, + 9047298, + 454054 + ], + [ + 7412291, + 9047298, + 460000 + ], + [ + 7399584, + 9044440, + 454054 + ], + [ + 7399584, + 9044440, + 460000 + ], + [ + 7400871, + 9038604, + 454054 + ], + [ + 7401169, + 9037261, + 454054 + ], + [ + 7401182, + 9037201, + 454054 + ], + [ + 7401231, + 9036979, + 454054 + ], + [ + 7401231, + 9036979, + 460000 + ], + [ + 7401182, + 9037201, + 460000 + ], + [ + 7401169, + 9037261, + 460000 + ], + [ + 7400871, + 9038604, + 460000 + ], + [ + 7404959, + 9037766, + 454054 + ], + [ + 7404959, + 9037766, + 460000 + ], + [ + 7405368, + 9035948, + 454054 + ], + [ + 7405368, + 9035948, + 460000 + ], + [ + 3130861, + 6317783, + 420392 + ], + [ + 3130861, + 6317783, + 421604 + ], + [ + 3131305, + 6318253, + 421604 + ], + [ + 3131305, + 6318253, + 420392 + ], + [ + 3131407, + 6317266, + 420392 + ], + [ + 3131407, + 6317266, + 421604 + ], + [ + 3131851, + 6317736, + 420392 + ], + [ + 3131851, + 6317736, + 421604 + ], + [ + 3336660, + 8883612, + 486284 + ], + [ + 3331555, + 8887025, + 486284 + ], + [ + 3330672, + 8885705, + 486284 + ], + [ + 3324256, + 8889995, + 486284 + ], + [ + 3325134, + 8891310, + 486284 + ], + [ + 3320055, + 8894707, + 486284 + ], + [ + 3328709, + 8907675, + 486284 + ], + [ + 3345331, + 8896582, + 486284 + ], + [ + 3341123, + 8890286, + 486284 + ], + [ + 3332851, + 8904911, + 497825 + ], + [ + 3332851, + 8904911, + 486284 + ], + [ + 3328709, + 8907675, + 497825 + ], + [ + 3326995, + 8905107, + 486284 + ], + [ + 3326995, + 8905107, + 497825 + ], + [ + 3337021, + 8899032, + 500658 + ], + [ + 3337021, + 8899032, + 497825 + ], + [ + 3338461, + 8901167, + 497825 + ], + [ + 3338461, + 8901167, + 500658 + ], + [ + 3332851, + 8904911, + 500658 + ], + [ + 3338461, + 8901167, + 486284 + ], + [ + 3331151, + 8902300, + 497825 + ], + [ + 3331151, + 8902300, + 500658 + ], + [ + 3326995, + 8905107, + 500658 + ], + [ + 3321677, + 8897139, + 486284 + ], + [ + 3321677, + 8897139, + 500658 + ], + [ + 3321677, + 8897139, + 497825 + ], + [ + 3326686, + 8893756, + 497825 + ], + [ + 3326686, + 8893756, + 500658 + ], + [ + 3325768, + 8892397, + 497825 + ], + [ + 3325768, + 8892397, + 500658 + ], + [ + 3332229, + 8888033, + 497825 + ], + [ + 3332229, + 8888033, + 500658 + ], + [ + 3331555, + 8887025, + 497825 + ], + [ + 3331555, + 8887025, + 500658 + ], + [ + 3336660, + 8883612, + 500658 + ], + [ + 3341123, + 8890286, + 500658 + ], + [ + 3343875, + 8894403, + 497825 + ], + [ + 3343875, + 8894403, + 500658 + ], + [ + 3343875, + 8894403, + 486284 + ], + [ + 3345331, + 8896582, + 497825 + ], + [ + 3320055, + 8894707, + 497825 + ], + [ + 3325134, + 8891310, + 497825 + ], + [ + 3324256, + 8889995, + 497825 + ], + [ + 3324578, + 8889779, + 486284 + ], + [ + 3324578, + 8889779, + 497825 + ], + [ + 3330672, + 8885705, + 497825 + ], + [ + 3329851, + 8884478, + 497825 + ], + [ + 3334879, + 8881082, + 497825 + ], + [ + 3336660, + 8883612, + 497825 + ], + [ + 3318345, + 8892147, + 497825 + ], + [ + 3323740, + 8888540, + 497825 + ], + [ + 5476953, + 6699101, + 428450 + ], + [ + 5476953, + 6699101, + 429383 + ], + [ + 5475282, + 6701014, + 429383 + ], + [ + 5475282, + 6701014, + 428450 + ], + [ + 5478359, + 6700327, + 428450 + ], + [ + 5478359, + 6700327, + 429383 + ], + [ + 5476714, + 6702212, + 428450 + ], + [ + 5476714, + 6702212, + 429383 + ], + [ + 3128413, + 6314503, + 420392 + ], + [ + 3128413, + 6314503, + 420550 + ], + [ + 3127660, + 6315214, + 420550 + ], + [ + 3127660, + 6315214, + 420392 + ], + [ + 3129449, + 6315597, + 420392 + ], + [ + 3129449, + 6315597, + 420550 + ], + [ + 3128695, + 6316310, + 420392 + ], + [ + 3128695, + 6316310, + 420550 + ], + [ + 3128555, + 6315406, + 420813 + ], + [ + 6902106, + 9458109, + 440845 + ], + [ + 6905001, + 9468933, + 440845 + ], + [ + 6905001, + 9468933, + 454223 + ], + [ + 6902106, + 9458109, + 454433 + ], + [ + 6898075, + 9459141, + 440845 + ], + [ + 6901890, + 9458165, + 440845 + ], + [ + 6901890, + 9458165, + 455223 + ], + [ + 6898075, + 9459141, + 458638 + ], + [ + 6894236, + 9460123, + 440845 + ], + [ + 6897515, + 9459283, + 440845 + ], + [ + 6897515, + 9459283, + 458139 + ], + [ + 6894236, + 9460123, + 455223 + ], + [ + 6894055, + 9461056, + 440845 + ], + [ + 6893837, + 9460224, + 440845 + ], + [ + 6893837, + 9460224, + 452181 + ], + [ + 6894055, + 9461056, + 452181 + ], + [ + 6902563, + 9469923, + 453403 + ], + [ + 6902563, + 9469923, + 454513 + ], + [ + 6902370, + 9469192, + 455223 + ], + [ + 6902563, + 9469923, + 440845 + ], + [ + 6901984, + 9470072, + 440845 + ], + [ + 6901984, + 9470072, + 454515 + ], + [ + 6896768, + 9471415, + 440845 + ], + [ + 6896768, + 9471415, + 454536 + ], + [ + 6896583, + 9470709, + 440845 + ], + [ + 6896583, + 9470709, + 455223 + ], + [ + 6895475, + 9466479, + 440845 + ], + [ + 6894311, + 9462031, + 440845 + ], + [ + 6894311, + 9462031, + 455223 + ], + [ + 6895475, + 9466479, + 459337 + ], + [ + 6898925, + 9465575, + 459337 + ], + [ + 6904623, + 9468603, + 455223 + ], + [ + 6894708, + 9461925, + 455223 + ], + [ + 6905785, + 9469614, + 452157 + ], + [ + 6896904, + 9471941, + 452157 + ], + [ + 6896768, + 9471415, + 453464 + ], + [ + 6901984, + 9470072, + 453409 + ], + [ + 6901720, + 9457516, + 455223 + ], + [ + 6902561, + 9457304, + 452157 + ], + [ + 6897904, + 9458486, + 458638 + ], + [ + 6899507, + 9464614, + 458638 + ], + [ + 6894063, + 9459461, + 455223 + ], + [ + 6893663, + 9459562, + 452181 + ], + [ + 6896583, + 9470709, + 455222 + ], + [ + 6905092, + 9469272, + 440845 + ], + [ + 6905092, + 9469272, + 453375 + ], + [ + 6037828, + 7972164, + 486934 + ], + [ + 6037828, + 7972164, + 488626 + ], + [ + 6043706, + 7971806, + 488626 + ], + [ + 6043706, + 7971806, + 486934 + ], + [ + 6037739, + 7970707, + 488626 + ], + [ + 6043618, + 7970350, + 488626 + ], + [ + 4949086, + 4203693, + 432496 + ], + [ + 4949699, + 4203765, + 434499 + ], + [ + 4949086, + 4203693, + 434499 + ], + [ + 4948856, + 4205660, + 434499 + ], + [ + 4948856, + 4205660, + 432496 + ], + [ + 4949469, + 4205731, + 434499 + ], + [ + 4949711, + 4203966, + 434617 + ], + [ + 4950407, + 4204845, + 435088 + ], + [ + 4949453, + 4204733, + 435088 + ], + [ + 4949527, + 4205539, + 434617 + ], + [ + 6544885, + 4998235, + 425411 + ], + [ + 6544399, + 4997780, + 425429 + ], + [ + 6544399, + 4997780, + 428572 + ], + [ + 6544885, + 4998235, + 428572 + ], + [ + 6545973, + 4996094, + 427625 + ], + [ + 6545973, + 4996094, + 428572 + ], + [ + 6546461, + 4996548, + 427607 + ], + [ + 6546461, + 4996548, + 428572 + ], + [ + 3136354, + 6315738, + 408000 + ], + [ + 3137452, + 6314731, + 408000 + ], + [ + 3134966, + 6312091, + 408000 + ], + [ + 3133865, + 6313139, + 408000 + ], + [ + 3131049, + 6310153, + 408000 + ], + [ + 3132177, + 6309165, + 408000 + ], + [ + 3129702, + 6306565, + 408000 + ], + [ + 3128592, + 6307577, + 408000 + ], + [ + 3123129, + 6301854, + 408000 + ], + [ + 3114262, + 6310260, + 408000 + ], + [ + 3119702, + 6316008, + 408000 + ], + [ + 3118683, + 6316968, + 408000 + ], + [ + 3121115, + 6319584, + 408000 + ], + [ + 3122225, + 6318591, + 408000 + ], + [ + 3125009, + 6321569, + 408000 + ], + [ + 3123936, + 6322563, + 408000 + ], + [ + 3126432, + 6325197, + 408000 + ], + [ + 3127546, + 6324198, + 408000 + ], + [ + 3133089, + 6329967, + 408000 + ], + [ + 3141938, + 6321600, + 408000 + ], + [ + 3125771, + 6304622, + 408000 + ], + [ + 3125771, + 6304622, + 420392 + ], + [ + 3123129, + 6301854, + 420392 + ], + [ + 3128592, + 6307577, + 420392 + ], + [ + 3129702, + 6306565, + 420392 + ], + [ + 3132177, + 6309165, + 420392 + ], + [ + 3131049, + 6310153, + 420392 + ], + [ + 3133865, + 6313139, + 420392 + ], + [ + 3134966, + 6312091, + 420392 + ], + [ + 3137452, + 6314731, + 420392 + ], + [ + 3136354, + 6315738, + 420392 + ], + [ + 3139155, + 6318678, + 408000 + ], + [ + 3139155, + 6318678, + 420392 + ], + [ + 3141938, + 6321600, + 420392 + ], + [ + 3133089, + 6329967, + 420392 + ], + [ + 3129384, + 6326112, + 408000 + ], + [ + 3129384, + 6326112, + 420392 + ], + [ + 3127546, + 6324198, + 420392 + ], + [ + 3126432, + 6325197, + 420392 + ], + [ + 3123936, + 6322563, + 420392 + ], + [ + 3125009, + 6321569, + 420392 + ], + [ + 3122225, + 6318591, + 420392 + ], + [ + 3121115, + 6319584, + 420392 + ], + [ + 3118683, + 6316968, + 420392 + ], + [ + 3119702, + 6316008, + 420392 + ], + [ + 3117813, + 6314012, + 408000 + ], + [ + 3117813, + 6314012, + 420392 + ], + [ + 3114262, + 6310260, + 420392 + ], + [ + 3127211, + 6303250, + 420392 + ], + [ + 3130058, + 6306239, + 420392 + ], + [ + 3132543, + 6308846, + 420392 + ], + [ + 3135302, + 6311743, + 420392 + ], + [ + 3137824, + 6314390, + 420392 + ], + [ + 3140598, + 6317303, + 420392 + ], + [ + 3127881, + 6327556, + 420392 + ], + [ + 3125992, + 6325590, + 420392 + ], + [ + 3123478, + 6322974, + 420392 + ], + [ + 3120634, + 6320014, + 420392 + ], + [ + 3118174, + 6317454, + 420392 + ], + [ + 3116268, + 6315469, + 420392 + ], + [ + 7992376, + 5690063, + 514965 + ], + [ + 7994871, + 5692439, + 512423 + ], + [ + 7994871, + 5692439, + 514663 + ], + [ + 7993753, + 5693614, + 512423 + ], + [ + 7993753, + 5693614, + 514663 + ], + [ + 7991257, + 5691239, + 514965 + ], + [ + 5469373, + 6675306, + 402370 + ], + [ + 5466770, + 6678202, + 402370 + ], + [ + 5457679, + 6688367, + 402370 + ], + [ + 5455149, + 6691162, + 402370 + ], + [ + 5453029, + 6693513, + 402370 + ], + [ + 5452078, + 6694573, + 402370 + ], + [ + 5450788, + 6696002, + 402370 + ], + [ + 5450450, + 6696353, + 402370 + ], + [ + 5475296, + 6718808, + 402370 + ], + [ + 5477899, + 6715923, + 402370 + ], + [ + 5491691, + 6700683, + 402370 + ], + [ + 5494274, + 6697826, + 402370 + ], + [ + 5486680, + 6690958, + 402370 + ], + [ + 5460158, + 6690922, + 425650 + ], + [ + 5460158, + 6690922, + 426117 + ], + [ + 5462208, + 6692755, + 427283 + ], + [ + 5462208, + 6692755, + 425650 + ], + [ + 5465145, + 6685347, + 425650 + ], + [ + 5465145, + 6685347, + 426117 + ], + [ + 5467194, + 6687181, + 425650 + ], + [ + 5467194, + 6687181, + 427283 + ], + [ + 5464378, + 6695087, + 425650 + ], + [ + 5464378, + 6695087, + 426117 + ], + [ + 5471345, + 6701371, + 426117 + ], + [ + 5471345, + 6701371, + 425650 + ], + [ + 5476481, + 6695488, + 426117 + ], + [ + 5469558, + 6689295, + 426117 + ], + [ + 5469558, + 6689295, + 425650 + ], + [ + 5476481, + 6695488, + 425650 + ], + [ + 5466913, + 6692253, + 428439 + ], + [ + 5464378, + 6695087, + 428450 + ], + [ + 5469558, + 6689295, + 428450 + ], + [ + 5462012, + 6692972, + 425650 + ], + [ + 5462012, + 6692972, + 428450 + ], + [ + 5467194, + 6687181, + 428450 + ], + [ + 5486680, + 6690958, + 425650 + ], + [ + 5469373, + 6675306, + 425650 + ], + [ + 5494274, + 6697826, + 425650 + ], + [ + 5491691, + 6700683, + 425650 + ], + [ + 5477899, + 6715923, + 425650 + ], + [ + 5475296, + 6718808, + 425650 + ], + [ + 5450450, + 6696353, + 425650 + ], + [ + 5450788, + 6696002, + 425650 + ], + [ + 5466770, + 6678202, + 425650 + ], + [ + 5457679, + 6688367, + 425650 + ], + [ + 5455149, + 6691162, + 425650 + ], + [ + 5453029, + 6693513, + 425650 + ], + [ + 5452078, + 6694573, + 425650 + ], + [ + 5475029, + 6704587, + 425650 + ], + [ + 5475029, + 6704587, + 428450 + ], + [ + 5480126, + 6698748, + 428450 + ], + [ + 5480126, + 6698748, + 425650 + ], + [ + 5471345, + 6701371, + 428450 + ], + [ + 5473859, + 6698491, + 428450 + ], + [ + 5476481, + 6695488, + 428450 + ], + [ + 6005444, + 10982058, + 470969 + ], + [ + 6005444, + 10982058, + 472058 + ], + [ + 6008399, + 10981961, + 472058 + ], + [ + 6008399, + 10981961, + 470969 + ], + [ + 6005359, + 10979520, + 470969 + ], + [ + 6005359, + 10979520, + 472058 + ], + [ + 6008316, + 10979423, + 470969 + ], + [ + 6008316, + 10979423, + 472058 + ], + [ + 5474675, + 6706471, + 425650 + ], + [ + 5474675, + 6706471, + 426117 + ], + [ + 5474054, + 6707189, + 426117 + ], + [ + 5474054, + 6707189, + 425650 + ], + [ + 5475819, + 6707462, + 425650 + ], + [ + 5475819, + 6707462, + 426117 + ], + [ + 5475197, + 6708180, + 425650 + ], + [ + 5475197, + 6708180, + 426117 + ], + [ + 6044581, + 7970411, + 488487 + ], + [ + 6044581, + 7970411, + 489226 + ], + [ + 6047310, + 7970246, + 489226 + ], + [ + 6047310, + 7970246, + 488487 + ], + [ + 6044515, + 7969316, + 489760 + ], + [ + 6047242, + 7969150, + 489760 + ], + [ + 3157563, + 5270951, + 427526 + ], + [ + 3157138, + 5270986, + 427526 + ], + [ + 3156856, + 5265378, + 427526 + ], + [ + 3156490, + 5265399, + 427526 + ], + [ + 3156549, + 5266837, + 427526 + ], + [ + 3152808, + 5267027, + 427526 + ], + [ + 3152714, + 5265762, + 427526 + ], + [ + 3149134, + 5265952, + 427526 + ], + [ + 3149131, + 5265808, + 427526 + ], + [ + 3148797, + 5265827, + 427526 + ], + [ + 3148947, + 5268279, + 427526 + ], + [ + 3145212, + 5268488, + 427526 + ], + [ + 3145112, + 5267147, + 427526 + ], + [ + 3141586, + 5267350, + 427526 + ], + [ + 3141578, + 5267220, + 427526 + ], + [ + 3141376, + 5267229, + 427526 + ], + [ + 3141953, + 5278643, + 427526 + ], + [ + 3144370, + 5278479, + 427526 + ], + [ + 3144416, + 5278944, + 427526 + ], + [ + 3144802, + 5278916, + 427526 + ], + [ + 3144723, + 5277524, + 427526 + ], + [ + 3146669, + 5277429, + 427526 + ], + [ + 3146762, + 5278820, + 427526 + ], + [ + 3149836, + 5278671, + 427526 + ], + [ + 3149711, + 5276245, + 427526 + ], + [ + 3150938, + 5276166, + 427526 + ], + [ + 3153388, + 5276023, + 427526 + ], + [ + 3155509, + 5275906, + 427526 + ], + [ + 3157819, + 5275776, + 427526 + ], + [ + 3150967, + 5276164, + 427526 + ], + [ + 3150967, + 5276164, + 456233 + ], + [ + 3153388, + 5276023, + 456233 + ], + [ + 3150938, + 5276166, + 456233 + ], + [ + 3149711, + 5276245, + 456233 + ], + [ + 3149722, + 5276435, + 456233 + ], + [ + 3149836, + 5278671, + 456233 + ], + [ + 3146762, + 5278820, + 456233 + ], + [ + 3146669, + 5277429, + 456233 + ], + [ + 3144723, + 5277524, + 456233 + ], + [ + 3144802, + 5278916, + 456233 + ], + [ + 3144416, + 5278944, + 456233 + ], + [ + 3144370, + 5278479, + 456233 + ], + [ + 3141953, + 5278643, + 456233 + ], + [ + 3141376, + 5267229, + 456233 + ], + [ + 3141578, + 5267220, + 456233 + ], + [ + 3141586, + 5267350, + 456233 + ], + [ + 3145112, + 5267147, + 456233 + ], + [ + 3145212, + 5268488, + 456233 + ], + [ + 3148947, + 5268279, + 456233 + ], + [ + 3148865, + 5266931, + 427526 + ], + [ + 3148865, + 5266931, + 456233 + ], + [ + 3148797, + 5265827, + 456233 + ], + [ + 3149131, + 5265808, + 456233 + ], + [ + 3149134, + 5265952, + 456233 + ], + [ + 3152714, + 5265762, + 456233 + ], + [ + 3152808, + 5267027, + 456233 + ], + [ + 3156549, + 5266837, + 456233 + ], + [ + 3156495, + 5265560, + 427526 + ], + [ + 3156495, + 5265560, + 456233 + ], + [ + 3156490, + 5265399, + 456233 + ], + [ + 3156856, + 5265378, + 456233 + ], + [ + 3157138, + 5270986, + 456233 + ], + [ + 3157563, + 5270951, + 456233 + ], + [ + 3157819, + 5275776, + 456233 + ], + [ + 3155509, + 5275906, + 456233 + ], + [ + 3144944, + 5272528, + 456233 + ], + [ + 3144944, + 5272528, + 458285 + ], + [ + 3145114, + 5276626, + 458285 + ], + [ + 3145114, + 5276626, + 456233 + ], + [ + 3149722, + 5276435, + 458285 + ], + [ + 3149509, + 5272340, + 458285 + ], + [ + 3149509, + 5272340, + 456233 + ], + [ + 3145149, + 5277503, + 456233 + ], + [ + 3145149, + 5277503, + 457292 + ], + [ + 3149765, + 5277278, + 457331 + ], + [ + 3149765, + 5277278, + 456233 + ], + [ + 3144944, + 5272528, + 458884 + ], + [ + 3148365, + 5272387, + 458884 + ], + [ + 3148365, + 5272387, + 458285 + ], + [ + 3148365, + 5272387, + 456233 + ], + [ + 3148257, + 5269769, + 458884 + ], + [ + 3148257, + 5269769, + 456233 + ], + [ + 3144836, + 5269911, + 458884 + ], + [ + 3144836, + 5269911, + 456233 + ], + [ + 3151092, + 5278609, + 456233 + ], + [ + 6818891, + 6655337, + 510825 + ], + [ + 6817614, + 6654268, + 513539 + ], + [ + 6818891, + 6655337, + 513539 + ], + [ + 6818808, + 6653701, + 512607 + ], + [ + 6819646, + 6654402, + 510825 + ], + [ + 6819646, + 6654402, + 512607 + ], + [ + 7210308, + 4770508, + 444167 + ], + [ + 7209660, + 4770921, + 443513 + ], + [ + 7209660, + 4770921, + 444167 + ], + [ + 7208910, + 4769746, + 443514 + ], + [ + 7208910, + 4769746, + 444167 + ], + [ + 7208924, + 4769768, + 444302 + ], + [ + 7208953, + 4769812, + 444430 + ], + [ + 7208993, + 4769876, + 444545 + ], + [ + 7209046, + 4769958, + 444643 + ], + [ + 7209106, + 4770054, + 444720 + ], + [ + 7209175, + 4770162, + 444773 + ], + [ + 7209248, + 4770276, + 444800 + ], + [ + 7209322, + 4770391, + 444800 + ], + [ + 7209395, + 4770506, + 444773 + ], + [ + 7209464, + 4770614, + 444720 + ], + [ + 7209524, + 4770710, + 444643 + ], + [ + 7209577, + 4770792, + 444545 + ], + [ + 7209617, + 4770856, + 444430 + ], + [ + 7209646, + 4770900, + 444302 + ], + [ + 7209558, + 4769334, + 444167 + ], + [ + 7210598, + 4769579, + 444800 + ], + [ + 7210524, + 4769462, + 444800 + ], + [ + 7210645, + 4769710, + 444773 + ], + [ + 7210660, + 4769851, + 444720 + ], + [ + 7210646, + 4769996, + 444643 + ], + [ + 7210600, + 4770140, + 444545 + ], + [ + 7210526, + 4770277, + 444430 + ], + [ + 7210427, + 4770401, + 444302 + ], + [ + 7209706, + 4769270, + 444302 + ], + [ + 7209862, + 4769233, + 444430 + ], + [ + 7210016, + 4769224, + 444545 + ], + [ + 7210166, + 4769244, + 444643 + ], + [ + 7210304, + 4769292, + 444720 + ], + [ + 7210424, + 4769366, + 444773 + ], + [ + 7177449, + 6864207, + 556207 + ], + [ + 7177449, + 6864207, + 557127 + ], + [ + 7178520, + 6864657, + 557127 + ], + [ + 7178520, + 6864657, + 556207 + ], + [ + 7177842, + 6863270, + 556030 + ], + [ + 7177842, + 6863270, + 557127 + ], + [ + 7178913, + 6863720, + 556030 + ], + [ + 7178913, + 6863720, + 557127 + ], + [ + 6440870, + 6748314, + 475055 + ], + [ + 6440870, + 6748314, + 476938 + ], + [ + 6439294, + 6748032, + 476938 + ], + [ + 6439294, + 6748032, + 475055 + ], + [ + 6440714, + 6749183, + 477226 + ], + [ + 6440609, + 6749770, + 477724 + ], + [ + 6439032, + 6749487, + 477724 + ], + [ + 6439138, + 6748900, + 477226 + ], + [ + 1990418, + 7536080, + 395786 + ], + [ + 1984864, + 7538375, + 395786 + ], + [ + 1989532, + 7549606, + 395786 + ], + [ + 1995075, + 7547309, + 395786 + ], + [ + 1985376, + 7539604, + 404799 + ], + [ + 1990925, + 7537304, + 402098 + ], + [ + 1990925, + 7537304, + 404799 + ], + [ + 1990925, + 7537304, + 395786 + ], + [ + 1993086, + 7542510, + 395786 + ], + [ + 1993086, + 7542510, + 408783 + ], + [ + 1995075, + 7547309, + 405293 + ], + [ + 1989532, + 7549606, + 405293 + ], + [ + 1987538, + 7544809, + 395786 + ], + [ + 1987538, + 7544809, + 408783 + ], + [ + 1985376, + 7539604, + 395786 + ], + [ + 1990418, + 7536080, + 402098 + ], + [ + 1984864, + 7538375, + 402098 + ], + [ + 1995358, + 7547988, + 404799 + ], + [ + 1989816, + 7550286, + 404799 + ] + ], + "transform": + { + "scale": + [ + 0.001, + 0.001, + 0.001 + ], + "translate": + [ + 2677116.375, + 1241839.025, + 0.0 + ] + }, + "metadata": + { + "geographicalExtent": + [ + 2678219.194, + 1243078.7249999999, + 395.786, + 2687404.734, + 1253037.77, + 620.905 + ], + "referenceSystem": "https://www.opengis.net/def/crs/EPSG/0/2056" + } +} \ No newline at end of file From 10db3c1554d6c0df25593e3f52a1ad247cceb080 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 10:48:38 +0200 Subject: [PATCH 71/90] Add python script to upgrade all test files --- tests/data/upgrade_all.py | 17 +++++++++++++++++ tests/data/upgrade_all.sh | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 tests/data/upgrade_all.py diff --git a/tests/data/upgrade_all.py b/tests/data/upgrade_all.py new file mode 100644 index 0000000..dc4a238 --- /dev/null +++ b/tests/data/upgrade_all.py @@ -0,0 +1,17 @@ +import glob +from cjio import cityjson + +to_upgrade_to = '1.1' + +for f in glob.glob('./**/*.json', recursive=True): + # print(f) + cj_file = open(f, 'r') + cm = cityjson.reader(file=cj_file) + if cm.get_version() != to_upgrade_to: + print(f) + cm.upgrade_version(to_upgrade_to, 3) + cityjson.save(cm, f) + # re = cm.validate() + # print(re) + # print(cm) + # break diff --git a/tests/data/upgrade_all.sh b/tests/data/upgrade_all.sh index 1fd054e..2a8c8d2 100644 --- a/tests/data/upgrade_all.sh +++ b/tests/data/upgrade_all.sh @@ -19,7 +19,7 @@ do mv "$filepath" "$oldfilepath" # save upgraded files with names of original files - cjio "$oldfilepath" upgrade_version save "$filepath" >> $LOG_PATH + cjio "$oldfilepath" upgrade save "$filepath" >> $LOG_PATH echo -e "\n ========== \n" >> $LOG_PATH From dc7711ff0938f26f85d4b16b1d43de09dbb8ea3c Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 10:48:53 +0200 Subject: [PATCH 72/90] Comment out some unused things for the API, caused issues --- cjio/cityjson.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 2f8fea9..a775172 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -111,9 +111,9 @@ def save(citymodel, path: str, indent: bool = False): :param path: Absolute path to a CityJSON file """ citymodel.add_to_j() - if citymodel.is_transformed: - # FIXME: here should be compression, however the current compression does not work with immutable tuples, but requires mutable lists for the points - pass + # if citymodel.is_transformed: + # # FIXME: here should be compression, however the current compression does not work with immutable tuples, but requires mutable lists for the points + # pass citymodel.remove_duplicate_vertices() citymodel.remove_orphan_vertices() try: From 5fadf94a8d514e55d5d34c25a897cfa6695ce132 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 11:14:31 +0200 Subject: [PATCH 73/90] Fix bug when geometry property not present --- cjio/cityjson.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index a775172..639f1c5 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -1278,7 +1278,7 @@ def merge(self, lsCMs): self.j["appearance"]["materials"].append(m) #-- update the "material" in each Geometry for theid in cm.j["CityObjects"]: - for g in self.j['CityObjects'][theid]['geometry']: + for g in self.j['CityObjects'][theid].get('geometry',[]): if 'material' in g: for m in g['material']: if 'values' in g['material'][m]: @@ -1306,7 +1306,7 @@ def merge(self, lsCMs): self.j["appearance"]["textures"].append(t) #-- update the "texture" in each Geometry for theid in cm.j["CityObjects"]: - for g in self.j['CityObjects'][theid]['geometry']: + for g in self.j['CityObjects'][theid].get('geometry',[]): if 'texture' in g: for m in g['texture']: if 'values' in g['texture'][m]: From 718f62691dd0755de853f6bd0ebc5123fcd369a9 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 11:14:49 +0200 Subject: [PATCH 74/90] Add back dummy and dummy_noappearance for the pytest --- tests/data/dummy/dummy.json | 719 +++++++++++++++++++++++ tests/data/dummy/dummy_noappearance.json | 1 + 2 files changed, 720 insertions(+) create mode 100644 tests/data/dummy/dummy.json create mode 100644 tests/data/dummy/dummy_noappearance.json diff --git a/tests/data/dummy/dummy.json b/tests/data/dummy/dummy.json new file mode 100644 index 0000000..9135e8d --- /dev/null +++ b/tests/data/dummy/dummy.json @@ -0,0 +1,719 @@ +{ + "type": "CityJSON", + "version": "1.1", + "metadata": + { + "referenceSystem": "https://www.opengis.net/def/crs/EPSG/0/7415", + "geographicalExtent": + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0 + ] + }, + "CityObjects": + { + "102636712": + { + "type": "Building", + "attributes": + { + "measuredHeight": 22.3, + "roofType": "gable", + "yearOfConstruction": 1904, + "owner": "Elvis Presley" + }, + "geometry": + [ + { + "type": "Solid", + "lod": "1.1", + "boundaries": + [ + [ + [ + [ + 3, + 0, + 0, + 0 + ], + [ + 3, + 0, + 0 + ] + ], + [ + [ + 1, + 2, + 4, + 5 + ] + ], + [ + [ + 3, + 0, + 2, + 1 + ] + ], + [ + [ + 0, + 0, + 4, + 2 + ] + ], + [ + [ + 0, + 0, + 5, + 4 + ] + ], + [ + [ + 0, + 3, + 1, + 5 + ] + ] + ] + ], + "material": + { + "irradiation": + { + "values": + [ + [ + 0, + 0, + null, + null, + 2, + 2 + ] + ] + }, + "irradiation-2": + { + "value": 1 + } + } + }, + { + "type": "Solid", + "lod": "2.1", + "boundaries": + [ + [ + [ + [ + 3, + 0, + 0, + 0 + ] + ], + [ + [ + 1, + 2, + 4, + 5 + ] + ], + [ + [ + 3, + 0, + 2, + 1 + ] + ], + [ + [ + 0, + 0, + 4, + 2 + ] + ], + [ + [ + 0, + 0, + 5, + 4 + ] + ], + [ + [ + 0, + 3, + 1, + 5 + ] + ] + ], + [ + [ + [ + 3, + 0, + 0, + 0 + ] + ], + [ + [ + 1, + 2, + 4, + 5 + ] + ], + [ + [ + 3, + 0, + 2, + 1 + ] + ], + [ + [ + 0, + 0, + 4, + 2 + ] + ] + ] + ], + "texture": + { + "winter-textures": + { + "values": + [ + [ + [ + [ + 0, + 10, + 13, + 12, + 19 + ] + ], + [ + [ + null + ] + ], + [ + [ + null + ] + ], + [ + [ + 0, + 1, + 2, + 6, + 5 + ] + ], + [ + [ + 0, + 2, + 3, + 7, + 6 + ] + ], + [ + [ + 0, + 3, + 0, + 4, + 7 + ] + ] + ], + [ + [ + [ + null + ] + ], + [ + [ + null + ] + ], + [ + [ + 0, + 0, + 1, + 5, + 4 + ] + ], + [ + [ + 0, + 1, + 2, + 6, + 5 + ] + ] + ] + ] + }, + "summer-textures": + { + "values": + [ + [ + [ + [ + 1, + 7, + 3, + 2, + 1 + ] + ], + [ + [ + null + ] + ], + [ + [ + null + ] + ], + [ + [ + 1, + 1, + 2, + 6, + 5 + ] + ], + [ + [ + 1, + 2, + 3, + 7, + 6 + ] + ], + [ + [ + 1, + 3, + 0, + 4, + 7 + ] + ] + ], + [ + [ + [ + null + ] + ], + [ + [ + null + ] + ], + [ + [ + 1, + 0, + 1, + 5, + 4 + ] + ], + [ + [ + 1, + 1, + 2, + 6, + 5 + ] + ] + ] + ] + } + } + } + ] + } + }, + "vertices": + [ + [ + 1000, + 0, + 0 + ], + [ + 1000, + 1000, + 0 + ], + [ + 0, + 1000, + 0 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0, + 1000 + ], + [ + 1000, + 0, + 1000 + ], + [ + 1000, + 1000, + 1000 + ] + ], + "something-else": + { + "this": 1.0, + "that": "blablabla" + }, + "geometry-templates": + { + "templates": + [ + { + "type": "MultiSurface", + "lod": "2", + "boundaries": + [ + [ + [ + 0, + 3, + 2, + 1 + ] + ], + [ + [ + 4, + 5, + 6, + 7 + ] + ], + [ + [ + 0, + 1, + 5, + 4 + ] + ] + ] + }, + { + "type": "MultiSurface", + "lod": "2", + "boundaries": + [ + [ + [ + 1, + 2, + 6, + 5 + ] + ], + [ + [ + 2, + 3, + 7, + 6 + ] + ], + [ + [ + 3, + 0, + 4, + 7 + ] + ] + ] + } + ], + "vertices-templates": + [ + [ + 0.0, + 0.5, + 0.0 + ], + [ + 1.0, + 0.0, + 0.0 + ], + [ + 11.0, + 0.0, + 0.0 + ], + [ + 11.0, + 10.0, + 0.0 + ], + [ + 1.0, + 12.0, + 0.0 + ], + [ + 1.0, + 40.0, + 0.0 + ], + [ + 1.0, + 1.0, + 0.0 + ], + [ + 0.0, + 1.0, + 0.0 + ] + ] + }, + "appearance": + { + "default-theme-texture": "summer-textures", + "default-theme-material": "irradiation", + "vertices-texture": + [ + [ + 0.0, + 0.5 + ], + [ + 1.0, + 0.0 + ], + [ + 1.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ], + [ + 0.0, + 1.0 + ] + ], + "textures": + [ + { + "type": "PNG", + "image": "myfacade.png" + }, + { + "type": "JPG", + "image": "myroof.jpg" + }, + { + "type": "JPG", + "image": "mymymy.jpg" + } + ], + "materials": + [ + { + "name": "irradiation-0-50", + "ambientIntensity": 0.75, + "diffuseColor": + [ + 0.9, + 0.1, + 0.75 + ], + "specularColor": + [ + 0.9, + 0.1, + 0.75 + ], + "transparency": 1.0 + }, + { + "name": "irradiation-51-80", + "diffuseColor": + [ + 0.9, + 0.1, + 0.75 + ], + "shininess": 0.0, + "transparency": 0.5, + "isSmooth": true + }, + { + "name": "irradiation-81-100", + "diffuseColor": + [ + 0.19, + 0.11, + 0.175 + ], + "shininess": 0.2, + "transparency": 0.9, + "isSmooth": true + } + ] + }, + "transform": + { + "scale": + [ + 0.001, + 0.001, + 0.001 + ], + "translate": + [ + 0.0, + 0.0, + 0.0 + ] + } +} \ No newline at end of file diff --git a/tests/data/dummy/dummy_noappearance.json b/tests/data/dummy/dummy_noappearance.json new file mode 100644 index 0000000..df6024f --- /dev/null +++ b/tests/data/dummy/dummy_noappearance.json @@ -0,0 +1 @@ +{"type":"CityJSON","version":"1.1","metadata":{"referenceSystem":"https://www.opengis.net/def/crs/EPSG/0/7415","geographicalExtent":[0.0,0.0,0.0,1.0,1.0,1.0]},"CityObjects":{"102636712":{"type":"Building","attributes":{"measuredHeight":22.3,"roofType":"gable","yearOfConstruction":1904,"owner":"Elvis Presley"},"geometry":[{"type":"Solid","lod":"1.1","boundaries":[[[[3,0,0,0],[3,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]]]},{"type":"Solid","lod":"2.1","boundaries":[[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]],[[0,0,5,4]],[[0,3,1,5]]],[[[3,0,0,0]],[[1,2,4,5]],[[3,0,2,1]],[[0,0,4,2]]]]}]}},"vertices":[[1000,0,0],[1000,1000,0],[0,1000,0],[0,0,0],[0,0,1000],[1000,0,1000],[1000,1000,1000]],"something-else":{"this":1.0,"that":"blablabla"},"geometry-templates":{"templates":[{"type":"MultiSurface","lod":"2","boundaries":[[[0,3,2,1]],[[4,5,6,7]],[[0,1,5,4]]]},{"type":"MultiSurface","lod":"2","boundaries":[[[1,2,6,5]],[[2,3,7,6]],[[3,0,4,7]]]}],"vertices-templates":[[0.0,0.5,0.0],[1.0,0.0,0.0],[11.0,0.0,0.0],[11.0,10.0,0.0],[1.0,12.0,0.0],[1.0,40.0,0.0],[1.0,1.0,0.0],[0.0,1.0,0.0]]},"appearance":{"vertices-texture":[[0.0,0.5],[1.0,0.0],[1.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0],[0.0,1.0]]},"transform":{"scale":[0.001,0.001,0.001],"translate":[0.0,0.0,0.0]}} \ No newline at end of file From 514f7cc66e6c4831ff8923fa20583d8ae6413120 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 11:22:43 +0200 Subject: [PATCH 75/90] Fix pytest about metadata generation those fucking metadata will kill I swear --- tests/data/delft.json | 288550 +------------------------------------- tests/test_metadata.py | 3 - 2 files changed, 1 insertion(+), 288552 deletions(-) diff --git a/tests/data/delft.json b/tests/data/delft.json index b27da1a..395bf6c 100644 --- a/tests/data/delft.json +++ b/tests/data/delft.json @@ -1,288549 +1 @@ -{ - "CityObjects": { - "b0a8da4cc-2d2a-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "dek", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoortbijtypeoverbrugging": "waardeOnbekend", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f09d7049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "overbruggingisbeweegbaar": "0", - "plus_status": "geenWaarde", - "relatievehoogteligging": "1", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 0, - 1, - 2 - ]], - [[ - 0, - 3, - 1 - ]], - [[ - 4, - 5, - 6 - ]], - [[ - 4, - 7, - 5 - ]], - [[ - 8, - 3, - 0 - ]], - [[ - 4, - 9, - 7 - ]], - [[ - 7, - 10, - 11 - ]], - [[ - 11, - 12, - 13 - ]], - [[ - 13, - 14, - 15 - ]], - [[ - 13, - 12, - 14 - ]], - [[ - 11, - 10, - 12 - ]], - [[ - 7, - 9, - 10 - ]], - [[ - 16, - 4, - 3 - ]], - [[ - 9, - 16, - 17 - ]], - [[ - 9, - 4, - 16 - ]], - [[ - 18, - 8, - 0 - ]], - [[ - 16, - 3, - 8 - ]], - [[ - 0, - 19, - 18 - ]], - [[ - 0, - 20, - 19 - ]], - [[ - 21, - 1, - 3 - ]], - [[ - 22, - 1, - 21 - ]], - [[ - 23, - 3, - 4 - ]], - [[ - 21, - 3, - 23 - ]], - [[ - 24, - 4, - 6 - ]], - [[ - 23, - 4, - 24 - ]], - [[ - 25, - 6, - 5 - ]], - [[ - 24, - 6, - 25 - ]], - [[ - 26, - 5, - 7 - ]], - [[ - 25, - 5, - 26 - ]], - [[ - 27, - 7, - 11 - ]], - [[ - 26, - 7, - 27 - ]], - [[ - 28, - 11, - 13 - ]], - [[ - 27, - 11, - 28 - ]], - [[ - 29, - 27, - 28 - ]], - [[ - 30, - 13, - 15 - ]], - [[ - 28, - 13, - 30 - ]], - [[ - 31, - 10, - 9 - ]], - [[ - 32, - 10, - 31 - ]], - [[ - 33, - 9, - 17 - ]], - [[ - 31, - 9, - 33 - ]], - [[ - 34, - 17, - 16 - ]], - [[ - 33, - 17, - 34 - ]], - [[ - 35, - 16, - 8 - ]], - [[ - 34, - 16, - 35 - ]], - [[ - 36, - 8, - 18 - ]], - [[ - 35, - 8, - 36 - ]], - [[ - 37, - 18, - 19 - ]], - [[ - 36, - 18, - 37 - ]], - [[ - 38, - 36, - 37 - ]], - [[ - 39, - 19, - 20 - ]], - [[ - 37, - 19, - 39 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Bridge" - }, - "b1105d28c-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-52.4)", - "identificatiebagpnd": "503100000000035", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027121)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff7ec49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 6, - "min-height-surface": -0.100000001490116, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85012.966 447473.243)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:6)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 40, - 41, - 42 - ]], - [[ - 43, - 44, - 40 - ]], - [[ - 45, - 46, - 47 - ]], - [[ - 48, - 49, - 50 - ]], - [[ - 48, - 51, - 52 - ]], - [[ - 48, - 53, - 49 - ]], - [[ - 45, - 47, - 54 - ]], - [[ - 53, - 55, - 56 - ]], - [[ - 57, - 53, - 52 - ]], - [[ - 52, - 53, - 48 - ]], - [[ - 58, - 55, - 59 - ]], - [[ - 59, - 55, - 57 - ]], - [[ - 59, - 57, - 60 - ]], - [[ - 55, - 53, - 57 - ]], - [[ - 46, - 61, - 62 - ]], - [[ - 63, - 64, - 62 - ]], - [[ - 64, - 65, - 66 - ]], - [[ - 65, - 64, - 67 - ]], - [[ - 68, - 65, - 67 - ]], - [[ - 67, - 64, - 63 - ]], - [[ - 69, - 67, - 63 - ]], - [[ - 70, - 71, - 63 - ]], - [[ - 63, - 62, - 61 - ]], - [[ - 72, - 71, - 73 - ]], - [[ - 74, - 72, - 75 - ]], - [[ - 76, - 74, - 77 - ]], - [[ - 77, - 74, - 75 - ]], - [[ - 78, - 77, - 75 - ]], - [[ - 75, - 72, - 79 - ]], - [[ - 80, - 75, - 79 - ]], - [[ - 81, - 80, - 79 - ]], - [[ - 82, - 81, - 79 - ]], - [[ - 79, - 72, - 73 - ]], - [[ - 83, - 79, - 84 - ]], - [[ - 84, - 79, - 85 - ]], - [[ - 86, - 84, - 85 - ]], - [[ - 87, - 86, - 88 - ]], - [[ - 88, - 86, - 85 - ]], - [[ - 85, - 79, - 89 - ]], - [[ - 89, - 79, - 73 - ]], - [[ - 73, - 71, - 90 - ]], - [[ - 91, - 73, - 92 - ]], - [[ - 92, - 73, - 90 - ]], - [[ - 90, - 71, - 93 - ]], - [[ - 93, - 71, - 70 - ]], - [[ - 46, - 62, - 52 - ]], - [[ - 43, - 40, - 54 - ]], - [[ - 94, - 95, - 96 - ]], - [[ - 94, - 70, - 61 - ]], - [[ - 94, - 61, - 95 - ]], - [[ - 70, - 63, - 61 - ]], - [[ - 51, - 46, - 52 - ]], - [[ - 51, - 47, - 46 - ]], - [[ - 44, - 41, - 40 - ]], - [[ - 45, - 54, - 40 - ]], - [[ - 97, - 42, - 98 - ]], - [[ - 99, - 42, - 97 - ]], - [[ - 100, - 99, - 97 - ]], - [[ - 100, - 97, - 101 - ]], - [[ - 98, - 42, - 102 - ]], - [[ - 103, - 98, - 104 - ]], - [[ - 104, - 98, - 105 - ]], - [[ - 106, - 104, - 105 - ]], - [[ - 107, - 108, - 109 - ]], - [[ - 105, - 107, - 110 - ]], - [[ - 110, - 107, - 109 - ]], - [[ - 109, - 108, - 111 - ]], - [[ - 98, - 102, - 105 - ]], - [[ - 105, - 112, - 107 - ]], - [[ - 113, - 112, - 102 - ]], - [[ - 112, - 113, - 114 - ]], - [[ - 114, - 113, - 115 - ]], - [[ - 112, - 105, - 102 - ]], - [[ - 113, - 102, - 116 - ]], - [[ - 42, - 41, - 102 - ]], - [[ - 117, - 118, - 44 - ]], - [[ - 44, - 118, - 41 - ]], - [[ - 119, - 117, - 43 - ]], - [[ - 43, - 117, - 44 - ]], - [[ - 120, - 119, - 54 - ]], - [[ - 54, - 119, - 43 - ]], - [[ - 121, - 120, - 47 - ]], - [[ - 47, - 120, - 54 - ]], - [[ - 122, - 121, - 51 - ]], - [[ - 51, - 121, - 47 - ]], - [[ - 123, - 122, - 48 - ]], - [[ - 48, - 122, - 51 - ]], - [[ - 124, - 123, - 50 - ]], - [[ - 50, - 123, - 48 - ]], - [[ - 125, - 124, - 49 - ]], - [[ - 49, - 124, - 50 - ]], - [[ - 126, - 125, - 53 - ]], - [[ - 53, - 125, - 49 - ]], - [[ - 127, - 126, - 56 - ]], - [[ - 56, - 126, - 53 - ]], - [[ - 128, - 127, - 55 - ]], - [[ - 55, - 127, - 56 - ]], - [[ - 129, - 128, - 58 - ]], - [[ - 58, - 128, - 55 - ]], - [[ - 130, - 129, - 59 - ]], - [[ - 59, - 129, - 58 - ]], - [[ - 131, - 130, - 60 - ]], - [[ - 60, - 130, - 59 - ]], - [[ - 132, - 131, - 57 - ]], - [[ - 57, - 131, - 60 - ]], - [[ - 133, - 132, - 52 - ]], - [[ - 52, - 132, - 57 - ]], - [[ - 134, - 133, - 62 - ]], - [[ - 62, - 133, - 52 - ]], - [[ - 135, - 134, - 64 - ]], - [[ - 64, - 134, - 62 - ]], - [[ - 136, - 135, - 66 - ]], - [[ - 66, - 135, - 64 - ]], - [[ - 137, - 136, - 65 - ]], - [[ - 65, - 136, - 66 - ]], - [[ - 138, - 137, - 68 - ]], - [[ - 68, - 137, - 65 - ]], - [[ - 139, - 138, - 67 - ]], - [[ - 67, - 138, - 68 - ]], - [[ - 140, - 139, - 69 - ]], - [[ - 69, - 139, - 67 - ]], - [[ - 141, - 140, - 63 - ]], - [[ - 63, - 140, - 69 - ]], - [[ - 142, - 141, - 71 - ]], - [[ - 71, - 141, - 63 - ]], - [[ - 143, - 142, - 72 - ]], - [[ - 72, - 142, - 71 - ]], - [[ - 144, - 143, - 74 - ]], - [[ - 74, - 143, - 72 - ]], - [[ - 145, - 144, - 76 - ]], - [[ - 76, - 144, - 74 - ]], - [[ - 146, - 145, - 77 - ]], - [[ - 77, - 145, - 76 - ]], - [[ - 147, - 146, - 78 - ]], - [[ - 78, - 146, - 77 - ]], - [[ - 148, - 147, - 75 - ]], - [[ - 75, - 147, - 78 - ]], - [[ - 149, - 148, - 80 - ]], - [[ - 80, - 148, - 75 - ]], - [[ - 150, - 149, - 81 - ]], - [[ - 81, - 149, - 80 - ]], - [[ - 151, - 150, - 82 - ]], - [[ - 82, - 150, - 81 - ]], - [[ - 152, - 151, - 79 - ]], - [[ - 79, - 151, - 82 - ]], - [[ - 153, - 152, - 83 - ]], - [[ - 83, - 152, - 79 - ]], - [[ - 154, - 153, - 84 - ]], - [[ - 84, - 153, - 83 - ]], - [[ - 155, - 154, - 86 - ]], - [[ - 86, - 154, - 84 - ]], - [[ - 156, - 155, - 87 - ]], - [[ - 87, - 155, - 86 - ]], - [[ - 157, - 156, - 88 - ]], - [[ - 88, - 156, - 87 - ]], - [[ - 158, - 157, - 85 - ]], - [[ - 85, - 157, - 88 - ]], - [[ - 159, - 158, - 89 - ]], - [[ - 89, - 158, - 85 - ]], - [[ - 160, - 159, - 73 - ]], - [[ - 73, - 159, - 89 - ]], - [[ - 161, - 160, - 91 - ]], - [[ - 91, - 160, - 73 - ]], - [[ - 162, - 161, - 92 - ]], - [[ - 92, - 161, - 91 - ]], - [[ - 163, - 162, - 90 - ]], - [[ - 90, - 162, - 92 - ]], - [[ - 164, - 163, - 93 - ]], - [[ - 93, - 163, - 90 - ]], - [[ - 165, - 164, - 70 - ]], - [[ - 70, - 164, - 93 - ]], - [[ - 166, - 165, - 94 - ]], - [[ - 94, - 165, - 70 - ]], - [[ - 167, - 166, - 96 - ]], - [[ - 96, - 166, - 94 - ]], - [[ - 168, - 167, - 95 - ]], - [[ - 95, - 167, - 96 - ]], - [[ - 169, - 168, - 61 - ]], - [[ - 61, - 168, - 95 - ]], - [[ - 170, - 169, - 46 - ]], - [[ - 46, - 169, - 61 - ]], - [[ - 171, - 170, - 45 - ]], - [[ - 45, - 170, - 46 - ]], - [[ - 172, - 171, - 40 - ]], - [[ - 40, - 171, - 45 - ]], - [[ - 173, - 172, - 42 - ]], - [[ - 42, - 172, - 40 - ]], - [[ - 174, - 173, - 99 - ]], - [[ - 99, - 173, - 42 - ]], - [[ - 175, - 174, - 100 - ]], - [[ - 100, - 174, - 99 - ]], - [[ - 176, - 175, - 101 - ]], - [[ - 101, - 175, - 100 - ]], - [[ - 177, - 176, - 97 - ]], - [[ - 97, - 176, - 101 - ]], - [[ - 178, - 177, - 98 - ]], - [[ - 98, - 177, - 97 - ]], - [[ - 179, - 178, - 103 - ]], - [[ - 103, - 178, - 98 - ]], - [[ - 180, - 179, - 104 - ]], - [[ - 104, - 179, - 103 - ]], - [[ - 181, - 180, - 106 - ]], - [[ - 106, - 180, - 104 - ]], - [[ - 182, - 181, - 105 - ]], - [[ - 105, - 181, - 106 - ]], - [[ - 183, - 182, - 110 - ]], - [[ - 110, - 182, - 105 - ]], - [[ - 184, - 183, - 109 - ]], - [[ - 109, - 183, - 110 - ]], - [[ - 185, - 184, - 111 - ]], - [[ - 111, - 184, - 109 - ]], - [[ - 186, - 185, - 108 - ]], - [[ - 108, - 185, - 111 - ]], - [[ - 187, - 186, - 107 - ]], - [[ - 107, - 186, - 108 - ]], - [[ - 188, - 187, - 112 - ]], - [[ - 112, - 187, - 107 - ]], - [[ - 189, - 188, - 114 - ]], - [[ - 114, - 188, - 112 - ]], - [[ - 190, - 189, - 115 - ]], - [[ - 115, - 189, - 114 - ]], - [[ - 191, - 190, - 113 - ]], - [[ - 113, - 190, - 115 - ]], - [[ - 192, - 191, - 116 - ]], - [[ - 116, - 191, - 113 - ]], - [[ - 193, - 192, - 102 - ]], - [[ - 102, - 192, - 116 - ]], - [[ - 118, - 193, - 41 - ]], - [[ - 41, - 193, - 102 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b11267a1d-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000004048", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027095)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0085849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.89000010490417, - "min-height-surface": -0.0199999995529652, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84841.951 447542.723)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:168)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 194, - 195, - 196 - ]], - [[ - 195, - 197, - 196 - ]], - [[ - 197, - 198, - 199 - ]], - [[ - 197, - 195, - 198 - ]], - [[ - 195, - 200, - 198 - ]], - [[ - 198, - 200, - 201 - ]], - [[ - 202, - 203, - 204 - ]], - [[ - 204, - 203, - 205 - ]], - [[ - 204, - 205, - 194 - ]], - [[ - 194, - 205, - 206 - ]], - [[ - 194, - 206, - 207 - ]], - [[ - 194, - 207, - 195 - ]], - [[ - 208, - 202, - 209 - ]], - [[ - 209, - 202, - 204 - ]], - [[ - 209, - 204, - 196 - ]], - [[ - 196, - 204, - 194 - ]], - [[ - 210, - 208, - 197 - ]], - [[ - 197, - 208, - 209 - ]], - [[ - 197, - 209, - 196 - ]], - [[ - 211, - 210, - 199 - ]], - [[ - 199, - 210, - 197 - ]], - [[ - 212, - 211, - 198 - ]], - [[ - 198, - 211, - 199 - ]], - [[ - 213, - 212, - 201 - ]], - [[ - 201, - 212, - 198 - ]], - [[ - 214, - 213, - 215 - ]], - [[ - 215, - 213, - 216 - ]], - [[ - 216, - 213, - 200 - ]], - [[ - 200, - 213, - 201 - ]], - [[ - 203, - 214, - 205 - ]], - [[ - 205, - 214, - 206 - ]], - [[ - 206, - 214, - 215 - ]], - [[ - 206, - 215, - 207 - ]], - [[ - 207, - 215, - 216 - ]], - [[ - 207, - 216, - 195 - ]], - [[ - 195, - 216, - 200 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1126a169-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000032718", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027096)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0086549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.86999988555908, - "min-height-surface": 0, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84835.527 447547.038)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:170)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 217, - 207, - 218 - ]], - [[ - 218, - 207, - 219 - ]], - [[ - 217, - 216, - 207 - ]], - [[ - 217, - 220, - 221 - ]], - [[ - 216, - 217, - 221 - ]], - [[ - 222, - 223, - 220 - ]], - [[ - 221, - 220, - 223 - ]], - [[ - 224, - 223, - 225 - ]], - [[ - 226, - 222, - 220 - ]], - [[ - 225, - 223, - 222 - ]], - [[ - 227, - 226, - 220 - ]], - [[ - 228, - 226, - 227 - ]], - [[ - 229, - 228, - 227 - ]], - [[ - 230, - 231, - 217 - ]], - [[ - 217, - 231, - 232 - ]], - [[ - 217, - 232, - 233 - ]], - [[ - 217, - 233, - 220 - ]], - [[ - 234, - 230, - 235 - ]], - [[ - 235, - 230, - 218 - ]], - [[ - 218, - 230, - 217 - ]], - [[ - 236, - 234, - 237 - ]], - [[ - 237, - 234, - 235 - ]], - [[ - 237, - 235, - 219 - ]], - [[ - 219, - 235, - 218 - ]], - [[ - 206, - 236, - 207 - ]], - [[ - 207, - 236, - 237 - ]], - [[ - 207, - 237, - 219 - ]], - [[ - 215, - 206, - 216 - ]], - [[ - 216, - 206, - 207 - ]], - [[ - 238, - 215, - 221 - ]], - [[ - 221, - 215, - 216 - ]], - [[ - 239, - 238, - 223 - ]], - [[ - 223, - 238, - 221 - ]], - [[ - 240, - 239, - 224 - ]], - [[ - 224, - 239, - 223 - ]], - [[ - 241, - 240, - 225 - ]], - [[ - 225, - 240, - 224 - ]], - [[ - 242, - 241, - 222 - ]], - [[ - 222, - 241, - 225 - ]], - [[ - 243, - 242, - 226 - ]], - [[ - 226, - 242, - 222 - ]], - [[ - 244, - 243, - 228 - ]], - [[ - 228, - 243, - 226 - ]], - [[ - 245, - 244, - 229 - ]], - [[ - 229, - 244, - 228 - ]], - [[ - 246, - 245, - 247 - ]], - [[ - 247, - 245, - 248 - ]], - [[ - 248, - 245, - 227 - ]], - [[ - 227, - 245, - 229 - ]], - [[ - 231, - 246, - 232 - ]], - [[ - 232, - 246, - 247 - ]], - [[ - 232, - 247, - 233 - ]], - [[ - 233, - 247, - 248 - ]], - [[ - 233, - 248, - 220 - ]], - [[ - 220, - 248, - 227 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1126c87e-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000026153", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027097)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0086649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.49000000953674, - "min-height-surface": 0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84830.424 447550.641)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:172)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 233, - 249, - 248 - ]], - [[ - 248, - 249, - 250 - ]], - [[ - 250, - 251, - 252 - ]], - [[ - 250, - 253, - 251 - ]], - [[ - 254, - 255, - 253 - ]], - [[ - 249, - 254, - 253 - ]], - [[ - 249, - 233, - 256 - ]], - [[ - 250, - 249, - 253 - ]], - [[ - 233, - 257, - 256 - ]], - [[ - 232, - 258, - 233 - ]], - [[ - 233, - 258, - 259 - ]], - [[ - 233, - 259, - 260 - ]], - [[ - 233, - 260, - 257 - ]], - [[ - 247, - 232, - 248 - ]], - [[ - 248, - 232, - 233 - ]], - [[ - 261, - 247, - 250 - ]], - [[ - 250, - 247, - 248 - ]], - [[ - 262, - 261, - 252 - ]], - [[ - 252, - 261, - 250 - ]], - [[ - 263, - 262, - 251 - ]], - [[ - 251, - 262, - 252 - ]], - [[ - 264, - 263, - 253 - ]], - [[ - 253, - 263, - 251 - ]], - [[ - 265, - 264, - 255 - ]], - [[ - 255, - 264, - 253 - ]], - [[ - 266, - 265, - 254 - ]], - [[ - 254, - 265, - 255 - ]], - [[ - 267, - 266, - 249 - ]], - [[ - 249, - 266, - 254 - ]], - [[ - 268, - 267, - 269 - ]], - [[ - 269, - 267, - 270 - ]], - [[ - 270, - 267, - 256 - ]], - [[ - 256, - 267, - 249 - ]], - [[ - 258, - 268, - 259 - ]], - [[ - 259, - 268, - 269 - ]], - [[ - 259, - 269, - 260 - ]], - [[ - 260, - 269, - 270 - ]], - [[ - 260, - 270, - 257 - ]], - [[ - 257, - 270, - 256 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1126c883-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.6)", - "identificatiebagpnd": "503100000026154", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027023)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0086749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.48000001907349, - "min-height-surface": 0.0599999986588955, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84843.704 447561.474)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:1)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 271, - 272, - 270 - ]], - [[ - 271, - 270, - 260 - ]], - [[ - 272, - 273, - 270 - ]], - [[ - 272, - 274, - 273 - ]], - [[ - 275, - 276, - 277 - ]], - [[ - 277, - 276, - 278 - ]], - [[ - 277, - 278, - 271 - ]], - [[ - 271, - 278, - 272 - ]], - [[ - 259, - 275, - 260 - ]], - [[ - 260, - 275, - 277 - ]], - [[ - 260, - 277, - 271 - ]], - [[ - 269, - 259, - 270 - ]], - [[ - 270, - 259, - 260 - ]], - [[ - 279, - 269, - 273 - ]], - [[ - 273, - 269, - 270 - ]], - [[ - 280, - 279, - 274 - ]], - [[ - 274, - 279, - 273 - ]], - [[ - 276, - 280, - 278 - ]], - [[ - 278, - 280, - 272 - ]], - [[ - 272, - 280, - 274 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b112715ef-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000026151", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000061493)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0087749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.29999995231628, - "min-height-surface": -0.00999999977648258, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84850.858 447537.122)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:164)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 281, - 282, - 283 - ]], - [[ - 281, - 284, - 282 - ]], - [[ - 281, - 285, - 284 - ]], - [[ - 281, - 286, - 285 - ]], - [[ - 281, - 287, - 288 - ]], - [[ - 286, - 281, - 289 - ]], - [[ - 289, - 281, - 288 - ]], - [[ - 288, - 287, - 290 - ]], - [[ - 291, - 292, - 281 - ]], - [[ - 281, - 292, - 287 - ]], - [[ - 293, - 291, - 294 - ]], - [[ - 294, - 291, - 283 - ]], - [[ - 283, - 291, - 281 - ]], - [[ - 295, - 293, - 296 - ]], - [[ - 296, - 293, - 294 - ]], - [[ - 296, - 294, - 282 - ]], - [[ - 282, - 294, - 283 - ]], - [[ - 297, - 295, - 284 - ]], - [[ - 284, - 295, - 296 - ]], - [[ - 284, - 296, - 282 - ]], - [[ - 298, - 297, - 285 - ]], - [[ - 285, - 297, - 284 - ]], - [[ - 299, - 298, - 286 - ]], - [[ - 286, - 298, - 285 - ]], - [[ - 300, - 299, - 301 - ]], - [[ - 301, - 299, - 289 - ]], - [[ - 289, - 299, - 286 - ]], - [[ - 302, - 300, - 303 - ]], - [[ - 303, - 300, - 301 - ]], - [[ - 303, - 301, - 288 - ]], - [[ - 288, - 301, - 289 - ]], - [[ - 304, - 302, - 290 - ]], - [[ - 290, - 302, - 303 - ]], - [[ - 290, - 303, - 288 - ]], - [[ - 292, - 304, - 287 - ]], - [[ - 287, - 304, - 290 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b112715f4-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000026152", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027094)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0087849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.04999995231628, - "min-height-surface": -0.00999999977648258, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84845.575 447540.308)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:166)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 301, - 303, - 305 - ]], - [[ - 301, - 306, - 307 - ]], - [[ - 301, - 305, - 306 - ]], - [[ - 305, - 308, - 309 - ]], - [[ - 305, - 310, - 308 - ]], - [[ - 308, - 310, - 311 - ]], - [[ - 311, - 310, - 312 - ]], - [[ - 305, - 303, - 310 - ]], - [[ - 300, - 302, - 301 - ]], - [[ - 301, - 302, - 303 - ]], - [[ - 313, - 300, - 307 - ]], - [[ - 307, - 300, - 301 - ]], - [[ - 209, - 313, - 196 - ]], - [[ - 196, - 313, - 306 - ]], - [[ - 306, - 313, - 307 - ]], - [[ - 204, - 209, - 194 - ]], - [[ - 194, - 209, - 196 - ]], - [[ - 194, - 196, - 305 - ]], - [[ - 305, - 196, - 306 - ]], - [[ - 205, - 204, - 206 - ]], - [[ - 206, - 204, - 207 - ]], - [[ - 207, - 204, - 195 - ]], - [[ - 195, - 204, - 194 - ]], - [[ - 195, - 194, - 309 - ]], - [[ - 309, - 194, - 305 - ]], - [[ - 314, - 205, - 236 - ]], - [[ - 236, - 205, - 206 - ]], - [[ - 236, - 206, - 237 - ]], - [[ - 237, - 206, - 219 - ]], - [[ - 219, - 206, - 207 - ]], - [[ - 219, - 207, - 315 - ]], - [[ - 315, - 207, - 308 - ]], - [[ - 308, - 207, - 195 - ]], - [[ - 308, - 195, - 309 - ]], - [[ - 316, - 314, - 317 - ]], - [[ - 317, - 314, - 236 - ]], - [[ - 317, - 236, - 237 - ]], - [[ - 317, - 237, - 318 - ]], - [[ - 318, - 237, - 219 - ]], - [[ - 318, - 219, - 315 - ]], - [[ - 318, - 315, - 311 - ]], - [[ - 311, - 315, - 308 - ]], - [[ - 319, - 316, - 312 - ]], - [[ - 312, - 316, - 317 - ]], - [[ - 312, - 317, - 318 - ]], - [[ - 312, - 318, - 311 - ]], - [[ - 320, - 319, - 310 - ]], - [[ - 310, - 319, - 312 - ]], - [[ - 302, - 320, - 303 - ]], - [[ - 303, - 320, - 310 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b112715fe-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:56.3)", - "identificatiebagpnd": "503100000026156", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027033)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0087a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.0699999332428, - "min-height-surface": 0.439999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84883.885 447560.978)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:19A)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 321, - 322, - 323 - ]], - [[ - 323, - 324, - 325 - ]], - [[ - 323, - 326, - 321 - ]], - [[ - 325, - 327, - 328 - ]], - [[ - 326, - 325, - 328 - ]], - [[ - 323, - 325, - 326 - ]], - [[ - 323, - 329, - 324 - ]], - [[ - 329, - 330, - 331 - ]], - [[ - 324, - 329, - 332 - ]], - [[ - 332, - 329, - 331 - ]], - [[ - 331, - 330, - 333 - ]], - [[ - 334, - 331, - 333 - ]], - [[ - 335, - 336, - 337 - ]], - [[ - 337, - 336, - 338 - ]], - [[ - 337, - 338, - 329 - ]], - [[ - 329, - 338, - 330 - ]], - [[ - 339, - 335, - 340 - ]], - [[ - 340, - 335, - 341 - ]], - [[ - 341, - 335, - 337 - ]], - [[ - 341, - 337, - 323 - ]], - [[ - 323, - 337, - 329 - ]], - [[ - 342, - 339, - 343 - ]], - [[ - 343, - 339, - 340 - ]], - [[ - 343, - 340, - 322 - ]], - [[ - 322, - 340, - 341 - ]], - [[ - 322, - 341, - 323 - ]], - [[ - 344, - 342, - 321 - ]], - [[ - 321, - 342, - 343 - ]], - [[ - 321, - 343, - 322 - ]], - [[ - 345, - 344, - 326 - ]], - [[ - 326, - 344, - 321 - ]], - [[ - 346, - 345, - 328 - ]], - [[ - 328, - 345, - 326 - ]], - [[ - 347, - 346, - 327 - ]], - [[ - 327, - 346, - 328 - ]], - [[ - 348, - 347, - 325 - ]], - [[ - 325, - 347, - 327 - ]], - [[ - 349, - 348, - 324 - ]], - [[ - 324, - 348, - 325 - ]], - [[ - 350, - 349, - 332 - ]], - [[ - 332, - 349, - 324 - ]], - [[ - 351, - 350, - 331 - ]], - [[ - 331, - 350, - 332 - ]], - [[ - 352, - 351, - 334 - ]], - [[ - 334, - 351, - 331 - ]], - [[ - 353, - 352, - 333 - ]], - [[ - 333, - 352, - 334 - ]], - [[ - 336, - 353, - 338 - ]], - [[ - 338, - 353, - 330 - ]], - [[ - 330, - 353, - 333 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b11271601-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000005344", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0087b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.97000002861023, - "min-height-surface": 0.490000009536743, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 354, - 355, - 356 - ]], - [[ - 357, - 356, - 358 - ]], - [[ - 357, - 358, - 359 - ]], - [[ - 359, - 358, - 360 - ]], - [[ - 356, - 361, - 358 - ]], - [[ - 358, - 361, - 362 - ]], - [[ - 356, - 363, - 361 - ]], - [[ - 356, - 355, - 363 - ]], - [[ - 364, - 365, - 357 - ]], - [[ - 357, - 365, - 356 - ]], - [[ - 366, - 364, - 359 - ]], - [[ - 359, - 364, - 357 - ]], - [[ - 367, - 366, - 360 - ]], - [[ - 360, - 366, - 359 - ]], - [[ - 368, - 367, - 358 - ]], - [[ - 358, - 367, - 360 - ]], - [[ - 343, - 368, - 322 - ]], - [[ - 322, - 368, - 362 - ]], - [[ - 362, - 368, - 358 - ]], - [[ - 340, - 343, - 341 - ]], - [[ - 341, - 343, - 323 - ]], - [[ - 323, - 343, - 322 - ]], - [[ - 323, - 322, - 361 - ]], - [[ - 361, - 322, - 362 - ]], - [[ - 369, - 340, - 370 - ]], - [[ - 370, - 340, - 341 - ]], - [[ - 370, - 341, - 363 - ]], - [[ - 363, - 341, - 323 - ]], - [[ - 363, - 323, - 361 - ]], - [[ - 371, - 369, - 372 - ]], - [[ - 372, - 369, - 370 - ]], - [[ - 372, - 370, - 355 - ]], - [[ - 355, - 370, - 363 - ]], - [[ - 373, - 371, - 354 - ]], - [[ - 354, - 371, - 372 - ]], - [[ - 354, - 372, - 355 - ]], - [[ - 365, - 373, - 356 - ]], - [[ - 356, - 373, - 354 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1127160e-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000026155", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0087e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.01999998092651, - "min-height-surface": 0.0799999982118607, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 374, - 375, - 376 - ]], - [[ - 318, - 377, - 376 - ]], - [[ - 375, - 378, - 376 - ]], - [[ - 376, - 379, - 318 - ]], - [[ - 318, - 379, - 315 - ]], - [[ - 376, - 378, - 379 - ]], - [[ - 375, - 380, - 378 - ]], - [[ - 381, - 382, - 383 - ]], - [[ - 383, - 382, - 384 - ]], - [[ - 383, - 384, - 374 - ]], - [[ - 374, - 384, - 375 - ]], - [[ - 385, - 381, - 376 - ]], - [[ - 376, - 381, - 383 - ]], - [[ - 376, - 383, - 374 - ]], - [[ - 386, - 385, - 377 - ]], - [[ - 377, - 385, - 376 - ]], - [[ - 317, - 386, - 318 - ]], - [[ - 318, - 386, - 377 - ]], - [[ - 237, - 317, - 219 - ]], - [[ - 219, - 317, - 315 - ]], - [[ - 315, - 317, - 318 - ]], - [[ - 235, - 237, - 218 - ]], - [[ - 218, - 237, - 219 - ]], - [[ - 218, - 219, - 379 - ]], - [[ - 379, - 219, - 315 - ]], - [[ - 277, - 235, - 271 - ]], - [[ - 271, - 235, - 378 - ]], - [[ - 378, - 235, - 218 - ]], - [[ - 378, - 218, - 379 - ]], - [[ - 278, - 277, - 272 - ]], - [[ - 272, - 277, - 271 - ]], - [[ - 272, - 271, - 380 - ]], - [[ - 380, - 271, - 378 - ]], - [[ - 382, - 278, - 384 - ]], - [[ - 384, - 278, - 375 - ]], - [[ - 375, - 278, - 272 - ]], - [[ - 375, - 272, - 380 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1127b2f3-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:17.1)", - "identificatiebagpnd": "503100000004630", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027131)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0093c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.07999992370605, - "min-height-surface": -0.0799999982118607, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84941.813 447486.436)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:76)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 387, - 388, - 389 - ]], - [[ - 387, - 389, - 390 - ]], - [[ - 390, - 389, - 391 - ]], - [[ - 389, - 388, - 392 - ]], - [[ - 389, - 393, - 394 - ]], - [[ - 389, - 392, - 393 - ]], - [[ - 388, - 395, - 392 - ]], - [[ - 396, - 397, - 398 - ]], - [[ - 398, - 397, - 399 - ]], - [[ - 398, - 399, - 387 - ]], - [[ - 387, - 399, - 388 - ]], - [[ - 400, - 396, - 401 - ]], - [[ - 401, - 396, - 398 - ]], - [[ - 401, - 398, - 390 - ]], - [[ - 390, - 398, - 387 - ]], - [[ - 402, - 400, - 403 - ]], - [[ - 403, - 400, - 404 - ]], - [[ - 404, - 400, - 391 - ]], - [[ - 391, - 400, - 401 - ]], - [[ - 391, - 401, - 390 - ]], - [[ - 405, - 402, - 406 - ]], - [[ - 406, - 402, - 403 - ]], - [[ - 406, - 403, - 407 - ]], - [[ - 407, - 403, - 404 - ]], - [[ - 407, - 404, - 389 - ]], - [[ - 389, - 404, - 391 - ]], - [[ - 408, - 405, - 409 - ]], - [[ - 409, - 405, - 406 - ]], - [[ - 409, - 406, - 410 - ]], - [[ - 410, - 406, - 407 - ]], - [[ - 410, - 407, - 394 - ]], - [[ - 394, - 407, - 389 - ]], - [[ - 411, - 408, - 412 - ]], - [[ - 412, - 408, - 409 - ]], - [[ - 412, - 409, - 413 - ]], - [[ - 413, - 409, - 410 - ]], - [[ - 413, - 410, - 393 - ]], - [[ - 393, - 410, - 394 - ]], - [[ - 414, - 411, - 392 - ]], - [[ - 392, - 411, - 412 - ]], - [[ - 392, - 412, - 413 - ]], - [[ - 392, - 413, - 393 - ]], - [[ - 415, - 414, - 416 - ]], - [[ - 416, - 414, - 395 - ]], - [[ - 395, - 414, - 392 - ]], - [[ - 397, - 415, - 399 - ]], - [[ - 399, - 415, - 416 - ]], - [[ - 399, - 416, - 388 - ]], - [[ - 388, - 416, - 395 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1128005c-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:17.1)", - "identificatiebagpnd": "503100000004571", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027130)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0094c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.97000002861023, - "min-height-surface": -0.100000001490116, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84948.166 447484.337)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:74)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 417, - 418, - 398 - ]], - [[ - 417, - 398, - 419 - ]], - [[ - 419, - 398, - 401 - ]], - [[ - 398, - 418, - 420 - ]], - [[ - 398, - 416, - 399 - ]], - [[ - 398, - 420, - 416 - ]], - [[ - 418, - 421, - 420 - ]], - [[ - 422, - 423, - 424 - ]], - [[ - 424, - 423, - 425 - ]], - [[ - 424, - 425, - 417 - ]], - [[ - 417, - 425, - 418 - ]], - [[ - 426, - 422, - 427 - ]], - [[ - 427, - 422, - 424 - ]], - [[ - 427, - 424, - 419 - ]], - [[ - 419, - 424, - 417 - ]], - [[ - 428, - 426, - 400 - ]], - [[ - 400, - 426, - 401 - ]], - [[ - 401, - 426, - 427 - ]], - [[ - 401, - 427, - 419 - ]], - [[ - 429, - 428, - 396 - ]], - [[ - 396, - 428, - 400 - ]], - [[ - 396, - 400, - 398 - ]], - [[ - 398, - 400, - 401 - ]], - [[ - 430, - 429, - 397 - ]], - [[ - 397, - 429, - 396 - ]], - [[ - 397, - 396, - 399 - ]], - [[ - 399, - 396, - 398 - ]], - [[ - 431, - 430, - 415 - ]], - [[ - 415, - 430, - 397 - ]], - [[ - 415, - 397, - 416 - ]], - [[ - 416, - 397, - 399 - ]], - [[ - 432, - 431, - 420 - ]], - [[ - 420, - 431, - 415 - ]], - [[ - 420, - 415, - 416 - ]], - [[ - 433, - 432, - 434 - ]], - [[ - 434, - 432, - 421 - ]], - [[ - 421, - 432, - 420 - ]], - [[ - 423, - 433, - 425 - ]], - [[ - 425, - 433, - 434 - ]], - [[ - 425, - 434, - 418 - ]], - [[ - 418, - 434, - 421 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b11280066-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.6)", - "identificatiebagpnd": "503100000027887", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027074)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027073)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0094e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.78999996185303, - "min-height-surface": 0.140000000596046, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84920.286 447536.887)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:24-26)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 435, - 436, - 437 - ]], - [[ - 438, - 439, - 440 - ]], - [[ - 438, - 440, - 441 - ]], - [[ - 437, - 442, - 443 - ]], - [[ - 443, - 438, - 441 - ]], - [[ - 436, - 442, - 437 - ]], - [[ - 443, - 444, - 445 - ]], - [[ - 438, - 443, - 445 - ]], - [[ - 441, - 437, - 443 - ]], - [[ - 436, - 446, - 442 - ]], - [[ - 447, - 448, - 449 - ]], - [[ - 449, - 448, - 450 - ]], - [[ - 449, - 450, - 435 - ]], - [[ - 435, - 450, - 436 - ]], - [[ - 451, - 447, - 452 - ]], - [[ - 452, - 447, - 449 - ]], - [[ - 452, - 449, - 437 - ]], - [[ - 437, - 449, - 435 - ]], - [[ - 453, - 451, - 454 - ]], - [[ - 454, - 451, - 452 - ]], - [[ - 454, - 452, - 441 - ]], - [[ - 441, - 452, - 437 - ]], - [[ - 455, - 453, - 456 - ]], - [[ - 456, - 453, - 454 - ]], - [[ - 456, - 454, - 440 - ]], - [[ - 440, - 454, - 441 - ]], - [[ - 457, - 455, - 458 - ]], - [[ - 458, - 455, - 456 - ]], - [[ - 458, - 456, - 439 - ]], - [[ - 439, - 456, - 440 - ]], - [[ - 459, - 457, - 438 - ]], - [[ - 438, - 457, - 458 - ]], - [[ - 438, - 458, - 439 - ]], - [[ - 460, - 459, - 461 - ]], - [[ - 461, - 459, - 445 - ]], - [[ - 445, - 459, - 438 - ]], - [[ - 462, - 460, - 463 - ]], - [[ - 463, - 460, - 461 - ]], - [[ - 463, - 461, - 444 - ]], - [[ - 444, - 461, - 445 - ]], - [[ - 464, - 462, - 443 - ]], - [[ - 443, - 462, - 463 - ]], - [[ - 443, - 463, - 444 - ]], - [[ - 465, - 464, - 442 - ]], - [[ - 442, - 464, - 443 - ]], - [[ - 466, - 465, - 446 - ]], - [[ - 446, - 465, - 442 - ]], - [[ - 448, - 466, - 450 - ]], - [[ - 450, - 466, - 436 - ]], - [[ - 436, - 466, - 446 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1128006b-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.6)", - "identificatiebagpnd": "503100000004642", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027075)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0094f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.78999996185303, - "min-height-surface": 0.150000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84924.277 447540.160)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:28)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 467, - 468, - 469 - ]], - [[ - 468, - 467, - 470 - ]], - [[ - 467, - 439, - 470 - ]], - [[ - 435, - 440, - 471 - ]], - [[ - 439, - 467, - 471 - ]], - [[ - 441, - 440, - 435 - ]], - [[ - 437, - 441, - 435 - ]], - [[ - 435, - 471, - 472 - ]], - [[ - 436, - 435, - 472 - ]], - [[ - 439, - 471, - 440 - ]], - [[ - 467, - 473, - 471 - ]], - [[ - 474, - 475, - 467 - ]], - [[ - 467, - 475, - 473 - ]], - [[ - 476, - 474, - 469 - ]], - [[ - 469, - 474, - 467 - ]], - [[ - 477, - 476, - 468 - ]], - [[ - 468, - 476, - 469 - ]], - [[ - 478, - 477, - 470 - ]], - [[ - 470, - 477, - 468 - ]], - [[ - 458, - 478, - 439 - ]], - [[ - 439, - 478, - 470 - ]], - [[ - 456, - 458, - 440 - ]], - [[ - 440, - 458, - 439 - ]], - [[ - 454, - 456, - 441 - ]], - [[ - 441, - 456, - 440 - ]], - [[ - 452, - 454, - 437 - ]], - [[ - 437, - 454, - 441 - ]], - [[ - 449, - 452, - 435 - ]], - [[ - 435, - 452, - 437 - ]], - [[ - 450, - 449, - 436 - ]], - [[ - 436, - 449, - 435 - ]], - [[ - 479, - 450, - 472 - ]], - [[ - 472, - 450, - 436 - ]], - [[ - 480, - 479, - 471 - ]], - [[ - 471, - 479, - 472 - ]], - [[ - 475, - 480, - 473 - ]], - [[ - 473, - 480, - 471 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b11280070-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000026299", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027112)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027111)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.16000008583069, - "min-height-surface": 0.0199999995529652, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84945.216 447536.460)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:33-35)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 481, - 482, - 483 - ]], - [[ - 481, - 484, - 485 - ]], - [[ - 482, - 481, - 485 - ]], - [[ - 486, - 482, - 485 - ]], - [[ - 485, - 484, - 487 - ]], - [[ - 488, - 485, - 487 - ]], - [[ - 487, - 484, - 489 - ]], - [[ - 490, - 491, - 492 - ]], - [[ - 492, - 491, - 493 - ]], - [[ - 492, - 493, - 494 - ]], - [[ - 494, - 493, - 495 - ]], - [[ - 494, - 495, - 481 - ]], - [[ - 481, - 495, - 484 - ]], - [[ - 496, - 490, - 497 - ]], - [[ - 497, - 490, - 492 - ]], - [[ - 497, - 492, - 498 - ]], - [[ - 498, - 492, - 494 - ]], - [[ - 498, - 494, - 483 - ]], - [[ - 483, - 494, - 481 - ]], - [[ - 499, - 496, - 500 - ]], - [[ - 500, - 496, - 497 - ]], - [[ - 500, - 497, - 501 - ]], - [[ - 501, - 497, - 498 - ]], - [[ - 501, - 498, - 482 - ]], - [[ - 482, - 498, - 483 - ]], - [[ - 502, - 499, - 486 - ]], - [[ - 486, - 499, - 500 - ]], - [[ - 486, - 500, - 501 - ]], - [[ - 486, - 501, - 482 - ]], - [[ - 503, - 502, - 485 - ]], - [[ - 485, - 502, - 486 - ]], - [[ - 504, - 503, - 488 - ]], - [[ - 488, - 503, - 485 - ]], - [[ - 505, - 504, - 487 - ]], - [[ - 487, - 504, - 488 - ]], - [[ - 506, - 505, - 489 - ]], - [[ - 489, - 505, - 487 - ]], - [[ - 491, - 506, - 493 - ]], - [[ - 493, - 506, - 495 - ]], - [[ - 495, - 506, - 484 - ]], - [[ - 484, - 506, - 489 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b11280075-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000026298", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000060272)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.09999990463257, - "min-height-surface": 0.0799999982118607, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84949.097 447541.631)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:37)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 498, - 507, - 494 - ]], - [[ - 507, - 498, - 508 - ]], - [[ - 508, - 498, - 501 - ]], - [[ - 507, - 509, - 494 - ]], - [[ - 509, - 510, - 494 - ]], - [[ - 494, - 510, - 495 - ]], - [[ - 510, - 509, - 511 - ]], - [[ - 509, - 512, - 511 - ]], - [[ - 513, - 514, - 515 - ]], - [[ - 515, - 514, - 516 - ]], - [[ - 515, - 516, - 507 - ]], - [[ - 507, - 516, - 509 - ]], - [[ - 517, - 513, - 508 - ]], - [[ - 508, - 513, - 515 - ]], - [[ - 508, - 515, - 507 - ]], - [[ - 500, - 517, - 501 - ]], - [[ - 501, - 517, - 508 - ]], - [[ - 497, - 500, - 498 - ]], - [[ - 498, - 500, - 501 - ]], - [[ - 492, - 497, - 494 - ]], - [[ - 494, - 497, - 498 - ]], - [[ - 493, - 492, - 495 - ]], - [[ - 495, - 492, - 494 - ]], - [[ - 518, - 493, - 510 - ]], - [[ - 510, - 493, - 495 - ]], - [[ - 519, - 518, - 511 - ]], - [[ - 511, - 518, - 510 - ]], - [[ - 520, - 519, - 512 - ]], - [[ - 512, - 519, - 511 - ]], - [[ - 514, - 520, - 516 - ]], - [[ - 516, - 520, - 509 - ]], - [[ - 509, - 520, - 512 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1128007a-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000004647", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003297)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.10999989509583, - "min-height-surface": 0.159999996423721, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84949.891 447597.257)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:37)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 521, - 522, - 523 - ]], - [[ - 523, - 524, - 525 - ]], - [[ - 524, - 526, - 527 - ]], - [[ - 524, - 523, - 528 - ]], - [[ - 524, - 528, - 526 - ]], - [[ - 529, - 530, - 531 - ]], - [[ - 528, - 529, - 531 - ]], - [[ - 523, - 532, - 528 - ]], - [[ - 528, - 532, - 529 - ]], - [[ - 523, - 522, - 532 - ]], - [[ - 532, - 522, - 533 - ]], - [[ - 534, - 535, - 536 - ]], - [[ - 536, - 535, - 537 - ]], - [[ - 536, - 537, - 521 - ]], - [[ - 521, - 537, - 522 - ]], - [[ - 538, - 534, - 523 - ]], - [[ - 523, - 534, - 536 - ]], - [[ - 523, - 536, - 521 - ]], - [[ - 539, - 538, - 525 - ]], - [[ - 525, - 538, - 523 - ]], - [[ - 540, - 539, - 524 - ]], - [[ - 524, - 539, - 525 - ]], - [[ - 541, - 540, - 527 - ]], - [[ - 527, - 540, - 524 - ]], - [[ - 542, - 541, - 526 - ]], - [[ - 526, - 541, - 527 - ]], - [[ - 543, - 542, - 528 - ]], - [[ - 528, - 542, - 526 - ]], - [[ - 544, - 543, - 531 - ]], - [[ - 531, - 543, - 528 - ]], - [[ - 545, - 544, - 530 - ]], - [[ - 530, - 544, - 531 - ]], - [[ - 546, - 545, - 529 - ]], - [[ - 529, - 545, - 530 - ]], - [[ - 547, - 546, - 532 - ]], - [[ - 532, - 546, - 529 - ]], - [[ - 548, - 547, - 533 - ]], - [[ - 533, - 547, - 532 - ]], - [[ - 535, - 548, - 537 - ]], - [[ - 537, - 548, - 522 - ]], - [[ - 522, - 548, - 533 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1128007f-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37.4)", - "identificatiebagpnd": "503100000004637", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027084)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027076)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 6.1100001335144, - "min-height-surface": 0.200000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84940.274 447558.360)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:30-46)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 549, - 550, - 551 - ]], - [[ - 550, - 552, - 551 - ]], - [[ - 550, - 553, - 552 - ]], - [[ - 552, - 553, - 554 - ]], - [[ - 555, - 556, - 549 - ]], - [[ - 549, - 556, - 550 - ]], - [[ - 557, - 555, - 551 - ]], - [[ - 551, - 555, - 549 - ]], - [[ - 558, - 557, - 552 - ]], - [[ - 552, - 557, - 551 - ]], - [[ - 559, - 558, - 554 - ]], - [[ - 554, - 558, - 552 - ]], - [[ - 560, - 559, - 553 - ]], - [[ - 553, - 559, - 554 - ]], - [[ - 556, - 560, - 550 - ]], - [[ - 550, - 560, - 553 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b11282794-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000004645", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003305)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 6.15999984741211, - "min-height-surface": 0.209999993443489, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84996.140 447550.544)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:45)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 561, - 562, - 563 - ]], - [[ - 564, - 565, - 566 - ]], - [[ - 566, - 565, - 567 - ]], - [[ - 564, - 562, - 561 - ]], - [[ - 565, - 564, - 561 - ]], - [[ - 561, - 568, - 569 - ]], - [[ - 561, - 570, - 568 - ]], - [[ - 570, - 561, - 571 - ]], - [[ - 572, - 561, - 569 - ]], - [[ - 572, - 565, - 561 - ]], - [[ - 573, - 574, - 575 - ]], - [[ - 575, - 574, - 576 - ]], - [[ - 575, - 576, - 564 - ]], - [[ - 564, - 576, - 562 - ]], - [[ - 577, - 573, - 578 - ]], - [[ - 578, - 573, - 566 - ]], - [[ - 566, - 573, - 575 - ]], - [[ - 566, - 575, - 564 - ]], - [[ - 579, - 577, - 580 - ]], - [[ - 580, - 577, - 578 - ]], - [[ - 580, - 578, - 567 - ]], - [[ - 567, - 578, - 566 - ]], - [[ - 581, - 579, - 565 - ]], - [[ - 565, - 579, - 580 - ]], - [[ - 565, - 580, - 567 - ]], - [[ - 582, - 581, - 572 - ]], - [[ - 572, - 581, - 565 - ]], - [[ - 583, - 582, - 569 - ]], - [[ - 569, - 582, - 572 - ]], - [[ - 584, - 583, - 568 - ]], - [[ - 568, - 583, - 569 - ]], - [[ - 585, - 584, - 570 - ]], - [[ - 570, - 584, - 568 - ]], - [[ - 586, - 585, - 571 - ]], - [[ - 571, - 585, - 570 - ]], - [[ - 587, - 586, - 561 - ]], - [[ - 561, - 586, - 571 - ]], - [[ - 588, - 587, - 563 - ]], - [[ - 563, - 587, - 561 - ]], - [[ - 574, - 588, - 576 - ]], - [[ - 576, - 588, - 562 - ]], - [[ - 562, - 588, - 563 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b11282799-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000025336", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003307)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 6.67000007629395, - "min-height-surface": 0.219999998807907, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85001.101 447546.689)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:47)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 589, - 590, - 591 - ]], - [[ - 592, - 591, - 590 - ]], - [[ - 590, - 589, - 593 - ]], - [[ - 593, - 589, - 594 - ]], - [[ - 595, - 596, - 594 - ]], - [[ - 589, - 595, - 594 - ]], - [[ - 589, - 597, - 595 - ]], - [[ - 589, - 598, - 597 - ]], - [[ - 597, - 598, - 599 - ]], - [[ - 600, - 601, - 602 - ]], - [[ - 602, - 601, - 603 - ]], - [[ - 602, - 603, - 604 - ]], - [[ - 604, - 603, - 605 - ]], - [[ - 604, - 605, - 589 - ]], - [[ - 589, - 605, - 598 - ]], - [[ - 606, - 600, - 607 - ]], - [[ - 607, - 600, - 602 - ]], - [[ - 607, - 602, - 608 - ]], - [[ - 608, - 602, - 604 - ]], - [[ - 608, - 604, - 591 - ]], - [[ - 591, - 604, - 589 - ]], - [[ - 609, - 606, - 592 - ]], - [[ - 592, - 606, - 607 - ]], - [[ - 592, - 607, - 608 - ]], - [[ - 592, - 608, - 591 - ]], - [[ - 610, - 609, - 590 - ]], - [[ - 590, - 609, - 592 - ]], - [[ - 575, - 610, - 564 - ]], - [[ - 564, - 610, - 593 - ]], - [[ - 593, - 610, - 590 - ]], - [[ - 576, - 575, - 562 - ]], - [[ - 562, - 575, - 564 - ]], - [[ - 562, - 564, - 594 - ]], - [[ - 594, - 564, - 593 - ]], - [[ - 611, - 576, - 596 - ]], - [[ - 596, - 576, - 562 - ]], - [[ - 596, - 562, - 594 - ]], - [[ - 612, - 611, - 595 - ]], - [[ - 595, - 611, - 596 - ]], - [[ - 613, - 612, - 597 - ]], - [[ - 597, - 612, - 595 - ]], - [[ - 614, - 613, - 599 - ]], - [[ - 599, - 613, - 597 - ]], - [[ - 601, - 614, - 603 - ]], - [[ - 603, - 614, - 605 - ]], - [[ - 605, - 614, - 598 - ]], - [[ - 598, - 614, - 599 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b1128279e-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000004646", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027115)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.95000004768372, - "min-height-surface": 0.0700000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84953.045 447544.630)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:39)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 615, - 616, - 617 - ]], - [[ - 617, - 616, - 618 - ]], - [[ - 616, - 615, - 515 - ]], - [[ - 615, - 516, - 515 - ]], - [[ - 615, - 619, - 516 - ]], - [[ - 615, - 620, - 619 - ]], - [[ - 621, - 622, - 623 - ]], - [[ - 623, - 622, - 624 - ]], - [[ - 623, - 624, - 615 - ]], - [[ - 615, - 624, - 620 - ]], - [[ - 625, - 621, - 617 - ]], - [[ - 617, - 621, - 623 - ]], - [[ - 617, - 623, - 615 - ]], - [[ - 626, - 625, - 618 - ]], - [[ - 618, - 625, - 617 - ]], - [[ - 627, - 626, - 616 - ]], - [[ - 616, - 626, - 618 - ]], - [[ - 628, - 627, - 513 - ]], - [[ - 513, - 627, - 515 - ]], - [[ - 515, - 627, - 616 - ]], - [[ - 629, - 628, - 514 - ]], - [[ - 514, - 628, - 513 - ]], - [[ - 514, - 513, - 516 - ]], - [[ - 516, - 513, - 515 - ]], - [[ - 630, - 629, - 619 - ]], - [[ - 619, - 629, - 514 - ]], - [[ - 619, - 514, - 516 - ]], - [[ - 622, - 630, - 624 - ]], - [[ - 624, - 630, - 620 - ]], - [[ - 620, - 630, - 619 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b112827a3-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000004644", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027117)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.46000003814697, - "min-height-surface": 0.0799999982118607, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84957.402 447548.205)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:45)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 631, - 632, - 633 - ]], - [[ - 631, - 634, - 632 - ]], - [[ - 631, - 635, - 636 - ]], - [[ - 634, - 631, - 636 - ]], - [[ - 636, - 635, - 637 - ]], - [[ - 637, - 635, - 638 - ]], - [[ - 639, - 637, - 640 - ]], - [[ - 640, - 637, - 638 - ]], - [[ - 641, - 640, - 642 - ]], - [[ - 642, - 640, - 638 - ]], - [[ - 643, - 644, - 631 - ]], - [[ - 631, - 644, - 635 - ]], - [[ - 645, - 643, - 633 - ]], - [[ - 633, - 643, - 631 - ]], - [[ - 646, - 645, - 632 - ]], - [[ - 632, - 645, - 633 - ]], - [[ - 647, - 646, - 634 - ]], - [[ - 634, - 646, - 632 - ]], - [[ - 623, - 647, - 615 - ]], - [[ - 615, - 647, - 636 - ]], - [[ - 636, - 647, - 634 - ]], - [[ - 624, - 623, - 620 - ]], - [[ - 620, - 623, - 615 - ]], - [[ - 620, - 615, - 637 - ]], - [[ - 637, - 615, - 636 - ]], - [[ - 648, - 624, - 639 - ]], - [[ - 639, - 624, - 620 - ]], - [[ - 639, - 620, - 637 - ]], - [[ - 649, - 648, - 640 - ]], - [[ - 640, - 648, - 639 - ]], - [[ - 650, - 649, - 641 - ]], - [[ - 641, - 649, - 640 - ]], - [[ - 651, - 650, - 642 - ]], - [[ - 642, - 650, - 641 - ]], - [[ - 652, - 651, - 638 - ]], - [[ - 638, - 651, - 642 - ]], - [[ - 644, - 652, - 635 - ]], - [[ - 635, - 652, - 638 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b112827a8-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000004636", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003304)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.95000004768372, - "min-height-surface": 0.159999996423721, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84988.378 447559.512)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:44)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 653, - 654, - 655 - ]], - [[ - 656, - 657, - 658 - ]], - [[ - 656, - 659, - 657 - ]], - [[ - 659, - 660, - 661 - ]], - [[ - 662, - 663, - 664 - ]], - [[ - 660, - 662, - 664 - ]], - [[ - 665, - 662, - 660 - ]], - [[ - 659, - 653, - 660 - ]], - [[ - 662, - 665, - 666 - ]], - [[ - 659, - 656, - 653 - ]], - [[ - 660, - 653, - 665 - ]], - [[ - 656, - 654, - 653 - ]], - [[ - 667, - 668, - 669 - ]], - [[ - 669, - 668, - 670 - ]], - [[ - 669, - 670, - 656 - ]], - [[ - 656, - 670, - 654 - ]], - [[ - 671, - 667, - 672 - ]], - [[ - 672, - 667, - 669 - ]], - [[ - 672, - 669, - 658 - ]], - [[ - 658, - 669, - 656 - ]], - [[ - 673, - 671, - 657 - ]], - [[ - 657, - 671, - 672 - ]], - [[ - 657, - 672, - 658 - ]], - [[ - 674, - 673, - 659 - ]], - [[ - 659, - 673, - 657 - ]], - [[ - 675, - 674, - 661 - ]], - [[ - 661, - 674, - 659 - ]], - [[ - 676, - 675, - 660 - ]], - [[ - 660, - 675, - 661 - ]], - [[ - 677, - 676, - 664 - ]], - [[ - 664, - 676, - 660 - ]], - [[ - 678, - 677, - 663 - ]], - [[ - 663, - 677, - 664 - ]], - [[ - 679, - 678, - 662 - ]], - [[ - 662, - 678, - 663 - ]], - [[ - 680, - 679, - 666 - ]], - [[ - 666, - 679, - 662 - ]], - [[ - 681, - 680, - 665 - ]], - [[ - 665, - 680, - 666 - ]], - [[ - 682, - 681, - 653 - ]], - [[ - 653, - 681, - 665 - ]], - [[ - 683, - 682, - 655 - ]], - [[ - 655, - 682, - 653 - ]], - [[ - 668, - 683, - 670 - ]], - [[ - 670, - 683, - 654 - ]], - [[ - 654, - 683, - 655 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b112827ad-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000004640", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003305)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 6.05999994277954, - "min-height-surface": 0.170000001788139, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84991.913 447554.453)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:45)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 684, - 685, - 686 - ]], - [[ - 687, - 688, - 689 - ]], - [[ - 686, - 690, - 684 - ]], - [[ - 686, - 691, - 690 - ]], - [[ - 690, - 689, - 692 - ]], - [[ - 689, - 693, - 694 - ]], - [[ - 689, - 688, - 693 - ]], - [[ - 689, - 690, - 691 - ]], - [[ - 695, - 687, - 689 - ]], - [[ - 696, - 695, - 689 - ]], - [[ - 691, - 696, - 689 - ]], - [[ - 578, - 691, - 686 - ]], - [[ - 578, - 580, - 691 - ]], - [[ - 697, - 698, - 577 - ]], - [[ - 577, - 698, - 579 - ]], - [[ - 577, - 579, - 578 - ]], - [[ - 578, - 579, - 580 - ]], - [[ - 699, - 697, - 686 - ]], - [[ - 686, - 697, - 577 - ]], - [[ - 686, - 577, - 578 - ]], - [[ - 700, - 699, - 685 - ]], - [[ - 685, - 699, - 686 - ]], - [[ - 672, - 700, - 658 - ]], - [[ - 658, - 700, - 684 - ]], - [[ - 684, - 700, - 685 - ]], - [[ - 669, - 672, - 656 - ]], - [[ - 656, - 672, - 658 - ]], - [[ - 656, - 658, - 690 - ]], - [[ - 690, - 658, - 684 - ]], - [[ - 670, - 669, - 654 - ]], - [[ - 654, - 669, - 656 - ]], - [[ - 654, - 656, - 692 - ]], - [[ - 692, - 656, - 690 - ]], - [[ - 701, - 670, - 689 - ]], - [[ - 689, - 670, - 654 - ]], - [[ - 689, - 654, - 692 - ]], - [[ - 702, - 701, - 694 - ]], - [[ - 694, - 701, - 689 - ]], - [[ - 703, - 702, - 693 - ]], - [[ - 693, - 702, - 694 - ]], - [[ - 704, - 703, - 688 - ]], - [[ - 688, - 703, - 693 - ]], - [[ - 705, - 704, - 687 - ]], - [[ - 687, - 704, - 688 - ]], - [[ - 706, - 705, - 695 - ]], - [[ - 695, - 705, - 687 - ]], - [[ - 707, - 706, - 696 - ]], - [[ - 696, - 706, - 695 - ]], - [[ - 708, - 707, - 691 - ]], - [[ - 691, - 707, - 696 - ]], - [[ - 698, - 708, - 579 - ]], - [[ - 579, - 708, - 580 - ]], - [[ - 580, - 708, - 691 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b112827b2-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000028346", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003299)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.00999999046326, - "min-height-surface": 0.129999995231628, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84958.769 447588.042)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:39)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 709, - 710, - 711 - ]], - [[ - 712, - 713, - 714 - ]], - [[ - 711, - 712, - 714 - ]], - [[ - 712, - 715, - 713 - ]], - [[ - 712, - 716, - 715 - ]], - [[ - 712, - 717, - 716 - ]], - [[ - 712, - 718, - 717 - ]], - [[ - 712, - 719, - 718 - ]], - [[ - 712, - 720, - 719 - ]], - [[ - 712, - 721, - 720 - ]], - [[ - 712, - 722, - 721 - ]], - [[ - 712, - 723, - 722 - ]], - [[ - 712, - 724, - 723 - ]], - [[ - 712, - 725, - 724 - ]], - [[ - 712, - 726, - 725 - ]], - [[ - 712, - 727, - 726 - ]], - [[ - 712, - 728, - 727 - ]], - [[ - 712, - 729, - 728 - ]], - [[ - 729, - 712, - 730 - ]], - [[ - 730, - 712, - 731 - ]], - [[ - 731, - 712, - 732 - ]], - [[ - 732, - 712, - 733 - ]], - [[ - 733, - 712, - 734 - ]], - [[ - 734, - 712, - 735 - ]], - [[ - 735, - 712, - 736 - ]], - [[ - 736, - 712, - 737 - ]], - [[ - 711, - 738, - 712 - ]], - [[ - 739, - 740, - 738 - ]], - [[ - 711, - 739, - 738 - ]], - [[ - 711, - 710, - 741 - ]], - [[ - 711, - 741, - 739 - ]], - [[ - 710, - 742, - 741 - ]], - [[ - 710, - 743, - 742 - ]], - [[ - 744, - 745, - 746 - ]], - [[ - 746, - 745, - 747 - ]], - [[ - 746, - 747, - 709 - ]], - [[ - 709, - 747, - 710 - ]], - [[ - 748, - 744, - 711 - ]], - [[ - 711, - 744, - 746 - ]], - [[ - 711, - 746, - 709 - ]], - [[ - 749, - 748, - 714 - ]], - [[ - 714, - 748, - 711 - ]], - [[ - 750, - 749, - 713 - ]], - [[ - 713, - 749, - 714 - ]], - [[ - 751, - 750, - 715 - ]], - [[ - 715, - 750, - 713 - ]], - [[ - 752, - 751, - 716 - ]], - [[ - 716, - 751, - 715 - ]], - [[ - 753, - 752, - 717 - ]], - [[ - 717, - 752, - 716 - ]], - [[ - 754, - 753, - 718 - ]], - [[ - 718, - 753, - 717 - ]], - [[ - 755, - 754, - 719 - ]], - [[ - 719, - 754, - 718 - ]], - [[ - 756, - 755, - 720 - ]], - [[ - 720, - 755, - 719 - ]], - [[ - 757, - 756, - 721 - ]], - [[ - 721, - 756, - 720 - ]], - [[ - 758, - 757, - 722 - ]], - [[ - 722, - 757, - 721 - ]], - [[ - 759, - 758, - 723 - ]], - [[ - 723, - 758, - 722 - ]], - [[ - 760, - 759, - 724 - ]], - [[ - 724, - 759, - 723 - ]], - [[ - 761, - 760, - 725 - ]], - [[ - 725, - 760, - 724 - ]], - [[ - 762, - 761, - 726 - ]], - [[ - 726, - 761, - 725 - ]], - [[ - 763, - 762, - 727 - ]], - [[ - 727, - 762, - 726 - ]], - [[ - 764, - 763, - 728 - ]], - [[ - 728, - 763, - 727 - ]], - [[ - 765, - 764, - 729 - ]], - [[ - 729, - 764, - 728 - ]], - [[ - 766, - 765, - 730 - ]], - [[ - 730, - 765, - 729 - ]], - [[ - 767, - 766, - 731 - ]], - [[ - 731, - 766, - 730 - ]], - [[ - 768, - 767, - 732 - ]], - [[ - 732, - 767, - 731 - ]], - [[ - 769, - 768, - 733 - ]], - [[ - 733, - 768, - 732 - ]], - [[ - 770, - 769, - 734 - ]], - [[ - 734, - 769, - 733 - ]], - [[ - 771, - 770, - 735 - ]], - [[ - 735, - 770, - 734 - ]], - [[ - 772, - 771, - 736 - ]], - [[ - 736, - 771, - 735 - ]], - [[ - 773, - 772, - 774 - ]], - [[ - 774, - 772, - 737 - ]], - [[ - 737, - 772, - 736 - ]], - [[ - 775, - 773, - 776 - ]], - [[ - 776, - 773, - 774 - ]], - [[ - 776, - 774, - 712 - ]], - [[ - 712, - 774, - 737 - ]], - [[ - 777, - 775, - 778 - ]], - [[ - 778, - 775, - 776 - ]], - [[ - 778, - 776, - 738 - ]], - [[ - 738, - 776, - 712 - ]], - [[ - 779, - 777, - 740 - ]], - [[ - 740, - 777, - 778 - ]], - [[ - 740, - 778, - 738 - ]], - [[ - 780, - 779, - 739 - ]], - [[ - 739, - 779, - 740 - ]], - [[ - 781, - 780, - 741 - ]], - [[ - 741, - 780, - 739 - ]], - [[ - 782, - 781, - 742 - ]], - [[ - 742, - 781, - 741 - ]], - [[ - 783, - 782, - 743 - ]], - [[ - 743, - 782, - 742 - ]], - [[ - 745, - 783, - 747 - ]], - [[ - 747, - 783, - 710 - ]], - [[ - 710, - 783, - 743 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b112827b7-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000004643", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003298)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0095b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.00999999046326, - "min-height-surface": 0.140000000596046, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84955.890 447590.722)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:38)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 712, - 784, - 737 - ]], - [[ - 737, - 785, - 786 - ]], - [[ - 737, - 787, - 785 - ]], - [[ - 737, - 788, - 787 - ]], - [[ - 737, - 789, - 788 - ]], - [[ - 737, - 790, - 789 - ]], - [[ - 737, - 791, - 790 - ]], - [[ - 737, - 792, - 791 - ]], - [[ - 737, - 793, - 792 - ]], - [[ - 737, - 794, - 793 - ]], - [[ - 737, - 784, - 794 - ]], - [[ - 712, - 795, - 784 - ]], - [[ - 712, - 796, - 795 - ]], - [[ - 712, - 797, - 796 - ]], - [[ - 712, - 798, - 797 - ]], - [[ - 712, - 799, - 798 - ]], - [[ - 712, - 800, - 799 - ]], - [[ - 712, - 801, - 800 - ]], - [[ - 712, - 802, - 801 - ]], - [[ - 712, - 803, - 802 - ]], - [[ - 712, - 804, - 803 - ]], - [[ - 712, - 805, - 804 - ]], - [[ - 712, - 806, - 805 - ]], - [[ - 712, - 807, - 806 - ]], - [[ - 712, - 738, - 807 - ]], - [[ - 807, - 536, - 808 - ]], - [[ - 807, - 809, - 536 - ]], - [[ - 809, - 810, - 537 - ]], - [[ - 536, - 809, - 537 - ]], - [[ - 810, - 809, - 811 - ]], - [[ - 812, - 738, - 813 - ]], - [[ - 807, - 812, - 809 - ]], - [[ - 807, - 738, - 812 - ]], - [[ - 776, - 778, - 712 - ]], - [[ - 712, - 778, - 738 - ]], - [[ - 774, - 776, - 737 - ]], - [[ - 737, - 776, - 712 - ]], - [[ - 814, - 774, - 786 - ]], - [[ - 786, - 774, - 737 - ]], - [[ - 815, - 814, - 785 - ]], - [[ - 785, - 814, - 786 - ]], - [[ - 816, - 815, - 787 - ]], - [[ - 787, - 815, - 785 - ]], - [[ - 817, - 816, - 788 - ]], - [[ - 788, - 816, - 787 - ]], - [[ - 818, - 817, - 789 - ]], - [[ - 789, - 817, - 788 - ]], - [[ - 819, - 818, - 790 - ]], - [[ - 790, - 818, - 789 - ]], - [[ - 820, - 819, - 791 - ]], - [[ - 791, - 819, - 790 - ]], - [[ - 821, - 820, - 792 - ]], - [[ - 792, - 820, - 791 - ]], - [[ - 822, - 821, - 793 - ]], - [[ - 793, - 821, - 792 - ]], - [[ - 823, - 822, - 794 - ]], - [[ - 794, - 822, - 793 - ]], - [[ - 824, - 823, - 784 - ]], - [[ - 784, - 823, - 794 - ]], - [[ - 825, - 824, - 795 - ]], - [[ - 795, - 824, - 784 - ]], - [[ - 826, - 825, - 796 - ]], - [[ - 796, - 825, - 795 - ]], - [[ - 827, - 826, - 797 - ]], - [[ - 797, - 826, - 796 - ]], - [[ - 828, - 827, - 798 - ]], - [[ - 798, - 827, - 797 - ]], - [[ - 829, - 828, - 799 - ]], - [[ - 799, - 828, - 798 - ]], - [[ - 830, - 829, - 800 - ]], - [[ - 800, - 829, - 799 - ]], - [[ - 831, - 830, - 801 - ]], - [[ - 801, - 830, - 800 - ]], - [[ - 832, - 831, - 802 - ]], - [[ - 802, - 831, - 801 - ]], - [[ - 833, - 832, - 803 - ]], - [[ - 803, - 832, - 802 - ]], - [[ - 834, - 833, - 804 - ]], - [[ - 804, - 833, - 803 - ]], - [[ - 835, - 834, - 805 - ]], - [[ - 805, - 834, - 804 - ]], - [[ - 836, - 835, - 806 - ]], - [[ - 806, - 835, - 805 - ]], - [[ - 837, - 836, - 807 - ]], - [[ - 807, - 836, - 806 - ]], - [[ - 838, - 837, - 808 - ]], - [[ - 808, - 837, - 807 - ]], - [[ - 839, - 838, - 534 - ]], - [[ - 534, - 838, - 536 - ]], - [[ - 536, - 838, - 808 - ]], - [[ - 840, - 839, - 535 - ]], - [[ - 535, - 839, - 534 - ]], - [[ - 535, - 534, - 537 - ]], - [[ - 537, - 534, - 536 - ]], - [[ - 841, - 840, - 810 - ]], - [[ - 810, - 840, - 535 - ]], - [[ - 810, - 535, - 537 - ]], - [[ - 842, - 841, - 811 - ]], - [[ - 811, - 841, - 810 - ]], - [[ - 843, - 842, - 809 - ]], - [[ - 809, - 842, - 811 - ]], - [[ - 844, - 843, - 812 - ]], - [[ - 812, - 843, - 809 - ]], - [[ - 845, - 844, - 813 - ]], - [[ - 813, - 844, - 812 - ]], - [[ - 778, - 845, - 738 - ]], - [[ - 738, - 845, - 813 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b22139d30-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cfd49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 846, - 847, - 848 - ]], - [[ - 849, - 850, - 851 - ]], - [[ - 852, - 853, - 164 - ]], - [[ - 164, - 853, - 854 - ]], - [[ - 855, - 856, - 164 - ]], - [[ - 857, - 858, - 859 - ]], - [[ - 860, - 861, - 862 - ]], - [[ - 857, - 852, - 863 - ]], - [[ - 864, - 865, - 866 - ]], - [[ - 867, - 868, - 869 - ]], - [[ - 870, - 871, - 872 - ]], - [[ - 870, - 865, - 873 - ]], - [[ - 874, - 875, - 876 - ]], - [[ - 871, - 875, - 872 - ]], - [[ - 877, - 878, - 864 - ]], - [[ - 879, - 880, - 881 - ]], - [[ - 882, - 883, - 884 - ]], - [[ - 885, - 886, - 887 - ]], - [[ - 888, - 889, - 890 - ]], - [[ - 891, - 892, - 893 - ]], - [[ - 894, - 895, - 896 - ]], - [[ - 890, - 889, - 897 - ]], - [[ - 898, - 899, - 900 - ]], - [[ - 901, - 902, - 899 - ]], - [[ - 903, - 896, - 904 - ]], - [[ - 896, - 901, - 898 - ]], - [[ - 905, - 894, - 906 - ]], - [[ - 848, - 847, - 907 - ]], - [[ - 908, - 909, - 847 - ]], - [[ - 910, - 911, - 912 - ]], - [[ - 913, - 846, - 911 - ]], - [[ - 911, - 914, - 912 - ]], - [[ - 915, - 916, - 917 - ]], - [[ - 918, - 915, - 917 - ]], - [[ - 919, - 885, - 920 - ]], - [[ - 921, - 887, - 886 - ]], - [[ - 922, - 923, - 895 - ]], - [[ - 924, - 902, - 901 - ]], - [[ - 897, - 850, - 882 - ]], - [[ - 916, - 914, - 925 - ]], - [[ - 846, - 908, - 847 - ]], - [[ - 913, - 909, - 908 - ]], - [[ - 926, - 849, - 851 - ]], - [[ - 884, - 927, - 928 - ]], - [[ - 929, - 869, - 868 - ]], - [[ - 883, - 930, - 919 - ]], - [[ - 878, - 873, - 865 - ]], - [[ - 931, - 932, - 873 - ]], - [[ - 869, - 877, - 864 - ]], - [[ - 878, - 865, - 864 - ]], - [[ - 933, - 905, - 934 - ]], - [[ - 906, - 891, - 893 - ]], - [[ - 935, - 936, - 937 - ]], - [[ - 938, - 846, - 939 - ]], - [[ - 876, - 932, - 880 - ]], - [[ - 876, - 875, - 871 - ]], - [[ - 881, - 931, - 877 - ]], - [[ - 881, - 932, - 931 - ]], - [[ - 849, - 930, - 883 - ]], - [[ - 885, - 915, - 920 - ]], - [[ - 940, - 864, - 866 - ]], - [[ - 941, - 942, - 943 - ]], - [[ - 879, - 881, - 877 - ]], - [[ - 880, - 932, - 881 - ]], - [[ - 927, - 944, - 916 - ]], - [[ - 916, - 925, - 927 - ]], - [[ - 945, - 946, - 947 - ]], - [[ - 929, - 948, - 949 - ]], - [[ - 950, - 951, - 877 - ]], - [[ - 951, - 880, - 879 - ]], - [[ - 871, - 870, - 873 - ]], - [[ - 872, - 865, - 870 - ]], - [[ - 952, - 928, - 925 - ]], - [[ - 925, - 914, - 952 - ]], - [[ - 953, - 897, - 889 - ]], - [[ - 850, - 883, - 882 - ]], - [[ - 938, - 954, - 846 - ]], - [[ - 955, - 884, - 928 - ]], - [[ - 956, - 910, - 912 - ]], - [[ - 954, - 928, - 952 - ]], - [[ - 888, - 936, - 934 - ]], - [[ - 954, - 911, - 846 - ]], - [[ - 848, - 939, - 846 - ]], - [[ - 895, - 904, - 896 - ]], - [[ - 933, - 922, - 895 - ]], - [[ - 957, - 958, - 923 - ]], - [[ - 959, - 863, - 852 - ]], - [[ - 856, - 960, - 858 - ]], - [[ - 959, - 852, - 856 - ]], - [[ - 961, - 864, - 962 - ]], - [[ - 947, - 963, - 953 - ]], - [[ - 851, - 850, - 897 - ]], - [[ - 906, - 893, - 964 - ]], - [[ - 892, - 889, - 893 - ]], - [[ - 939, - 848, - 907 - ]], - [[ - 939, - 965, - 938 - ]], - [[ - 894, - 905, - 966 - ]], - [[ - 906, - 964, - 905 - ]], - [[ - 967, - 968, - 941 - ]], - [[ - 969, - 943, - 942 - ]], - [[ - 955, - 970, - 971 - ]], - [[ - 888, - 964, - 893 - ]], - [[ - 972, - 958, - 957 - ]], - [[ - 973, - 904, - 958 - ]], - [[ - 849, - 883, - 850 - ]], - [[ - 919, - 918, - 883 - ]], - [[ - 954, - 955, - 928 - ]], - [[ - 883, - 917, - 944 - ]], - [[ - 928, - 927, - 925 - ]], - [[ - 944, - 917, - 916 - ]], - [[ - 858, - 857, - 863 - ]], - [[ - 859, - 852, - 857 - ]], - [[ - 950, - 945, - 947 - ]], - [[ - 974, - 877, - 945 - ]], - [[ - 932, - 871, - 873 - ]], - [[ - 932, - 876, - 871 - ]], - [[ - 931, - 878, - 877 - ]], - [[ - 931, - 873, - 878 - ]], - [[ - 968, - 868, - 975 - ]], - [[ - 862, - 941, - 976 - ]], - [[ - 926, - 977, - 849 - ]], - [[ - 867, - 978, - 868 - ]], - [[ - 919, - 886, - 885 - ]], - [[ - 862, - 976, - 921 - ]], - [[ - 911, - 952, - 914 - ]], - [[ - 911, - 954, - 952 - ]], - [[ - 883, - 918, - 917 - ]], - [[ - 920, - 915, - 918 - ]], - [[ - 905, - 933, - 966 - ]], - [[ - 905, - 964, - 934 - ]], - [[ - 858, - 940, - 866 - ]], - [[ - 962, - 864, - 940 - ]], - [[ - 898, - 901, - 899 - ]], - [[ - 895, - 894, - 966 - ]], - [[ - 973, - 924, - 903 - ]], - [[ - 924, - 901, - 903 - ]], - [[ - 901, - 896, - 903 - ]], - [[ - 898, - 894, - 896 - ]], - [[ - 904, - 973, - 903 - ]], - [[ - 979, - 902, - 924 - ]], - [[ - 856, - 858, - 863 - ]], - [[ - 866, - 859, - 858 - ]], - [[ - 980, - 981, - 982 - ]], - [[ - 165, - 943, - 969 - ]], - [[ - 918, - 919, - 920 - ]], - [[ - 930, - 886, - 919 - ]], - [[ - 846, - 913, - 908 - ]], - [[ - 956, - 909, - 913 - ]], - [[ - 164, - 856, - 852 - ]], - [[ - 960, - 962, - 940 - ]], - [[ - 983, - 973, - 972 - ]], - [[ - 979, - 924, - 973 - ]], - [[ - 984, - 985, - 961 - ]], - [[ - 986, - 867, - 987 - ]], - [[ - 165, - 855, - 164 - ]], - [[ - 988, - 980, - 942 - ]], - [[ - 986, - 978, - 867 - ]], - [[ - 982, - 165, - 969 - ]], - [[ - 989, - 948, - 929 - ]], - [[ - 978, - 981, - 975 - ]], - [[ - 855, - 981, - 978 - ]], - [[ - 855, - 165, - 981 - ]], - [[ - 980, - 975, - 981 - ]], - [[ - 868, - 978, - 975 - ]], - [[ - 947, - 851, - 963 - ]], - [[ - 947, - 926, - 851 - ]], - [[ - 990, - 938, - 965 - ]], - [[ - 922, - 933, - 934 - ]], - [[ - 991, - 992, - 937 - ]], - [[ - 882, - 884, - 955 - ]], - [[ - 877, - 951, - 879 - ]], - [[ - 950, - 880, - 951 - ]], - [[ - 890, - 897, - 882 - ]], - [[ - 963, - 851, - 897 - ]], - [[ - 993, - 984, - 961 - ]], - [[ - 987, - 867, - 961 - ]], - [[ - 946, - 926, - 947 - ]], - [[ - 946, - 977, - 926 - ]], - [[ - 994, - 939, - 907 - ]], - [[ - 983, - 972, - 935 - ]], - [[ - 967, - 929, - 868 - ]], - [[ - 869, - 864, - 961 - ]], - [[ - 977, - 948, - 989 - ]], - [[ - 945, - 877, - 869 - ]], - [[ - 849, - 989, - 930 - ]], - [[ - 849, - 977, - 989 - ]], - [[ - 867, - 869, - 961 - ]], - [[ - 949, - 977, - 945 - ]], - [[ - 945, - 977, - 946 - ]], - [[ - 945, - 869, - 949 - ]], - [[ - 941, - 988, - 942 - ]], - [[ - 968, - 975, - 988 - ]], - [[ - 884, - 944, - 927 - ]], - [[ - 884, - 883, - 944 - ]], - [[ - 959, - 856, - 863 - ]], - [[ - 985, - 987, - 961 - ]], - [[ - 942, - 980, - 969 - ]], - [[ - 988, - 975, - 980 - ]], - [[ - 935, - 937, - 992 - ]], - [[ - 888, - 934, - 964 - ]], - [[ - 972, - 957, - 935 - ]], - [[ - 922, - 934, - 936 - ]], - [[ - 971, - 970, - 937 - ]], - [[ - 935, - 957, - 936 - ]], - [[ - 889, - 888, - 893 - ]], - [[ - 890, - 936, - 888 - ]], - [[ - 890, - 937, - 936 - ]], - [[ - 991, - 954, - 938 - ]], - [[ - 890, - 971, - 937 - ]], - [[ - 955, - 954, - 970 - ]], - [[ - 947, - 953, - 889 - ]], - [[ - 963, - 897, - 953 - ]], - [[ - 930, - 861, - 886 - ]], - [[ - 930, - 967, - 861 - ]], - [[ - 886, - 860, - 921 - ]], - [[ - 861, - 941, - 862 - ]], - [[ - 976, - 941, - 943 - ]], - [[ - 861, - 967, - 941 - ]], - [[ - 936, - 957, - 922 - ]], - [[ - 935, - 992, - 990 - ]], - [[ - 962, - 993, - 961 - ]], - [[ - 985, - 855, - 987 - ]], - [[ - 856, - 985, - 984 - ]], - [[ - 856, - 855, - 985 - ]], - [[ - 994, - 979, - 973 - ]], - [[ - 994, - 902, - 979 - ]], - [[ - 957, - 923, - 922 - ]], - [[ - 958, - 904, - 923 - ]], - [[ - 933, - 895, - 966 - ]], - [[ - 923, - 904, - 895 - ]], - [[ - 855, - 986, - 987 - ]], - [[ - 855, - 978, - 986 - ]], - [[ - 990, - 992, - 938 - ]], - [[ - 937, - 970, - 991 - ]], - [[ - 913, - 910, - 956 - ]], - [[ - 913, - 911, - 910 - ]], - [[ - 950, - 974, - 945 - ]], - [[ - 950, - 877, - 974 - ]], - [[ - 939, - 983, - 965 - ]], - [[ - 973, - 958, - 972 - ]], - [[ - 983, - 990, - 965 - ]], - [[ - 983, - 935, - 990 - ]], - [[ - 994, - 983, - 939 - ]], - [[ - 994, - 973, - 983 - ]], - [[ - 858, - 960, - 940 - ]], - [[ - 856, - 984, - 993 - ]], - [[ - 929, - 949, - 869 - ]], - [[ - 948, - 977, - 949 - ]], - [[ - 882, - 971, - 890 - ]], - [[ - 882, - 955, - 971 - ]], - [[ - 989, - 967, - 930 - ]], - [[ - 989, - 929, - 967 - ]], - [[ - 941, - 968, - 988 - ]], - [[ - 967, - 868, - 968 - ]], - [[ - 954, - 991, - 970 - ]], - [[ - 938, - 992, - 991 - ]], - [[ - 921, - 860, - 862 - ]], - [[ - 886, - 861, - 860 - ]], - [[ - 960, - 993, - 962 - ]], - [[ - 960, - 856, - 993 - ]], - [[ - 980, - 982, - 969 - ]], - [[ - 981, - 165, - 982 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2214d56a-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef8a4149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 995, - 176, - 177 - ]], - [[ - 995, - 177, - 178 - ]], - [[ - 179, - 995, - 178 - ]], - [[ - 179, - 176, - 995 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b22183104-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef608549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 996, - 997, - 998 - ]], - [[ - 999, - 1000, - 1001 - ]], - [[ - 999, - 996, - 1000 - ]], - [[ - 1000, - 996, - 1002 - ]], - [[ - 999, - 997, - 996 - ]], - [[ - 998, - 997, - 1003 - ]], - [[ - 998, - 1004, - 1005 - ]], - [[ - 998, - 1003, - 1004 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b221a544c-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef8a4349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1006, - 1007, - 1008 - ]], - [[ - 1009, - 1010, - 1011 - ]], - [[ - 1012, - 1013, - 1014 - ]], - [[ - 1015, - 1008, - 1010 - ]], - [[ - 1016, - 1017, - 1011 - ]], - [[ - 1016, - 1018, - 1017 - ]], - [[ - 1016, - 1008, - 1019 - ]], - [[ - 1018, - 1016, - 1020 - ]], - [[ - 1013, - 1020, - 1021 - ]], - [[ - 1022, - 1009, - 1011 - ]], - [[ - 1014, - 1021, - 1023 - ]], - [[ - 1012, - 1022, - 1011 - ]], - [[ - 1017, - 1012, - 1011 - ]], - [[ - 1017, - 1013, - 1012 - ]], - [[ - 1015, - 1023, - 1006 - ]], - [[ - 1014, - 1013, - 1021 - ]], - [[ - 1020, - 1019, - 1021 - ]], - [[ - 1020, - 1016, - 1019 - ]], - [[ - 1019, - 1008, - 1007 - ]], - [[ - 1015, - 1006, - 1008 - ]], - [[ - 1024, - 1025, - 1010 - ]], - [[ - 1023, - 1021, - 1006 - ]], - [[ - 1009, - 1024, - 1010 - ]], - [[ - 1009, - 1014, - 1023 - ]], - [[ - 1024, - 1009, - 1023 - ]], - [[ - 1025, - 1015, - 1010 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b221b16fc-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "onverhard", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef947849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1026, - 1027, - 1028 - ]], - [[ - 1029, - 1030, - 1031 - ]], - [[ - 1032, - 1027, - 1033 - ]], - [[ - 1032, - 1028, - 1027 - ]], - [[ - 1032, - 1034, - 1028 - ]], - [[ - 1032, - 1035, - 1034 - ]], - [[ - 1032, - 1036, - 1035 - ]], - [[ - 1031, - 1037, - 1038 - ]], - [[ - 1039, - 1040, - 1041 - ]], - [[ - 1042, - 1043, - 1044 - ]], - [[ - 1045, - 1042, - 1044 - ]], - [[ - 1045, - 1046, - 1042 - ]], - [[ - 1047, - 1045, - 1044 - ]], - [[ - 1048, - 1049, - 1050 - ]], - [[ - 1029, - 1031, - 1051 - ]], - [[ - 1052, - 1053, - 1054 - ]], - [[ - 1052, - 1038, - 1053 - ]], - [[ - 1052, - 1031, - 1038 - ]], - [[ - 1039, - 1041, - 1032 - ]], - [[ - 1032, - 1041, - 1036 - ]], - [[ - 1030, - 1029, - 1055 - ]], - [[ - 1056, - 1030, - 1055 - ]], - [[ - 1055, - 1029, - 1047 - ]], - [[ - 1057, - 1055, - 1058 - ]], - [[ - 1058, - 1055, - 1059 - ]], - [[ - 1059, - 1055, - 1060 - ]], - [[ - 1060, - 1055, - 1032 - ]], - [[ - 1060, - 1033, - 1061 - ]], - [[ - 1045, - 1029, - 1051 - ]], - [[ - 1047, - 1048, - 1050 - ]], - [[ - 1062, - 1055, - 1057 - ]], - [[ - 1055, - 1047, - 1050 - ]], - [[ - 1048, - 1047, - 1044 - ]], - [[ - 1029, - 1045, - 1047 - ]], - [[ - 1049, - 1039, - 1050 - ]], - [[ - 1049, - 1040, - 1039 - ]], - [[ - 1051, - 1052, - 1054 - ]], - [[ - 1051, - 1031, - 1052 - ]], - [[ - 1032, - 1055, - 1050 - ]], - [[ - 1062, - 1056, - 1055 - ]], - [[ - 1060, - 1032, - 1033 - ]], - [[ - 1050, - 1039, - 1032 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b221b8c65-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cb149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1063, - 1064, - 1065 - ]], - [[ - 1064, - 1066, - 1065 - ]], - [[ - 1064, - 1067, - 1066 - ]], - [[ - 1068, - 1065, - 1066 - ]], - [[ - 1066, - 1069, - 1070 - ]], - [[ - 1071, - 1066, - 1072 - ]], - [[ - 1072, - 1066, - 1073 - ]], - [[ - 1073, - 1066, - 1074 - ]], - [[ - 1074, - 1066, - 1075 - ]], - [[ - 1075, - 1066, - 1076 - ]], - [[ - 1076, - 1066, - 1077 - ]], - [[ - 1077, - 1066, - 1078 - ]], - [[ - 1078, - 1066, - 1079 - ]], - [[ - 1079, - 1066, - 1080 - ]], - [[ - 1080, - 1066, - 1081 - ]], - [[ - 1081, - 1066, - 1082 - ]], - [[ - 1082, - 1083, - 1084 - ]], - [[ - 1084, - 1083, - 1085 - ]], - [[ - 1085, - 1083, - 1086 - ]], - [[ - 1086, - 1083, - 1087 - ]], - [[ - 1087, - 1083, - 1088 - ]], - [[ - 1088, - 1083, - 1089 - ]], - [[ - 1089, - 1083, - 1090 - ]], - [[ - 1090, - 1083, - 1091 - ]], - [[ - 1091, - 1083, - 1092 - ]], - [[ - 1092, - 1083, - 1093 - ]], - [[ - 1083, - 1082, - 1066 - ]], - [[ - 1083, - 1066, - 1070 - ]], - [[ - 1094, - 1066, - 1071 - ]], - [[ - 1094, - 1068, - 1066 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b221d3a47-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2015-04-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.22217ab858564a8fa4707f2a0b468ec2", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1095, - 1096, - 1097 - ]], - [[ - 1098, - 1099, - 1100 - ]], - [[ - 1099, - 1095, - 1100 - ]], - [[ - 1101, - 1100, - 1102 - ]], - [[ - 1103, - 1104, - 1099 - ]], - [[ - 1096, - 1095, - 1104 - ]], - [[ - 1105, - 1106, - 1104 - ]], - [[ - 1106, - 1097, - 1096 - ]], - [[ - 1101, - 1098, - 1100 - ]], - [[ - 1104, - 1095, - 1099 - ]], - [[ - 1103, - 1098, - 1101 - ]], - [[ - 1103, - 1099, - 1098 - ]], - [[ - 1105, - 1103, - 1101 - ]], - [[ - 1105, - 1104, - 1103 - ]], - [[ - 1104, - 1106, - 1096 - ]], - [[ - 1105, - 1097, - 1106 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b221dafb6-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef4b0449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1107, - 1108, - 1109 - ]], - [[ - 1110, - 1111, - 1112 - ]], - [[ - 1113, - 1114, - 1115 - ]], - [[ - 1116, - 1117, - 1118 - ]], - [[ - 1119, - 1120, - 1121 - ]], - [[ - 1121, - 1122, - 1119 - ]], - [[ - 1123, - 1120, - 1124 - ]], - [[ - 1124, - 1120, - 1125 - ]], - [[ - 1125, - 1120, - 1126 - ]], - [[ - 1117, - 1127, - 1118 - ]], - [[ - 1128, - 1126, - 1119 - ]], - [[ - 1129, - 1130, - 1131 - ]], - [[ - 1132, - 1133, - 1115 - ]], - [[ - 1134, - 1135, - 1136 - ]], - [[ - 1137, - 1107, - 1138 - ]], - [[ - 1138, - 1139, - 1137 - ]], - [[ - 1140, - 1109, - 1141 - ]], - [[ - 1142, - 1143, - 1144 - ]], - [[ - 1145, - 1146, - 1147 - ]], - [[ - 1148, - 433, - 1149 - ]], - [[ - 1147, - 1150, - 1151 - ]], - [[ - 1152, - 415, - 432 - ]], - [[ - 1153, - 412, - 414 - ]], - [[ - 1154, - 1155, - 1156 - ]], - [[ - 1157, - 1158, - 1159 - ]], - [[ - 1160, - 1161, - 1162 - ]], - [[ - 1163, - 1164, - 1165 - ]], - [[ - 1166, - 1167, - 1168 - ]], - [[ - 1169, - 1154, - 1156 - ]], - [[ - 1170, - 1171, - 1167 - ]], - [[ - 1172, - 1160, - 1162 - ]], - [[ - 1162, - 1161, - 1173 - ]], - [[ - 1174, - 1172, - 1162 - ]], - [[ - 1175, - 1176, - 1177 - ]], - [[ - 1175, - 1178, - 1172 - ]], - [[ - 1179, - 1180, - 1181 - ]], - [[ - 1182, - 1183, - 1149 - ]], - [[ - 1184, - 1185, - 1177 - ]], - [[ - 1186, - 1187, - 1145 - ]], - [[ - 1145, - 1187, - 1188 - ]], - [[ - 1189, - 432, - 1190 - ]], - [[ - 1151, - 1191, - 1192 - ]], - [[ - 1193, - 1194, - 1195 - ]], - [[ - 1186, - 1192, - 1196 - ]], - [[ - 1197, - 1198, - 1199 - ]], - [[ - 1200, - 1201, - 1199 - ]], - [[ - 1202, - 1203, - 1197 - ]], - [[ - 1201, - 1204, - 1197 - ]], - [[ - 1197, - 1204, - 1202 - ]], - [[ - 1205, - 1206, - 1207 - ]], - [[ - 1199, - 1201, - 1197 - ]], - [[ - 1208, - 1209, - 1210 - ]], - [[ - 1189, - 1195, - 432 - ]], - [[ - 1211, - 1212, - 1213 - ]], - [[ - 1214, - 1215, - 1207 - ]], - [[ - 1206, - 1216, - 1211 - ]], - [[ - 1211, - 1217, - 1218 - ]], - [[ - 1217, - 1211, - 1216 - ]], - [[ - 1213, - 1206, - 1211 - ]], - [[ - 1219, - 1149, - 1220 - ]], - [[ - 1221, - 1222, - 1223 - ]], - [[ - 1224, - 1225, - 1226 - ]], - [[ - 1227, - 1111, - 1115 - ]], - [[ - 1228, - 1110, - 1225 - ]], - [[ - 1225, - 1110, - 1229 - ]], - [[ - 1111, - 1230, - 1112 - ]], - [[ - 1231, - 1232, - 1163 - ]], - [[ - 1163, - 1233, - 1158 - ]], - [[ - 1234, - 1235, - 1236 - ]], - [[ - 1222, - 1228, - 1223 - ]], - [[ - 1237, - 1238, - 1134 - ]], - [[ - 1128, - 1130, - 1129 - ]], - [[ - 1189, - 1214, - 1201 - ]], - [[ - 1239, - 433, - 1148 - ]], - [[ - 1235, - 1240, - 1144 - ]], - [[ - 1240, - 1241, - 1142 - ]], - [[ - 1180, - 1242, - 414 - ]], - [[ - 1243, - 1244, - 1153 - ]], - [[ - 1245, - 1138, - 1109 - ]], - [[ - 1245, - 1139, - 1138 - ]], - [[ - 1137, - 1246, - 1107 - ]], - [[ - 1141, - 1247, - 1140 - ]], - [[ - 1131, - 1248, - 1139 - ]], - [[ - 1249, - 1238, - 1248 - ]], - [[ - 1165, - 1164, - 1157 - ]], - [[ - 1165, - 1231, - 1163 - ]], - [[ - 1220, - 1250, - 1219 - ]], - [[ - 1251, - 1215, - 1252 - ]], - [[ - 1253, - 1254, - 1144 - ]], - [[ - 1221, - 1223, - 1224 - ]], - [[ - 1255, - 1113, - 1221 - ]], - [[ - 1132, - 1256, - 1133 - ]], - [[ - 1195, - 1194, - 1257 - ]], - [[ - 1258, - 1259, - 1260 - ]], - [[ - 1157, - 1261, - 1166 - ]], - [[ - 1262, - 1263, - 1233 - ]], - [[ - 1168, - 1171, - 1231 - ]], - [[ - 1171, - 1264, - 1231 - ]], - [[ - 1164, - 1163, - 1158 - ]], - [[ - 1233, - 1263, - 1158 - ]], - [[ - 1174, - 1154, - 1265 - ]], - [[ - 1266, - 1232, - 1231 - ]], - [[ - 1267, - 1184, - 1243 - ]], - [[ - 1268, - 415, - 1152 - ]], - [[ - 1115, - 1222, - 1113 - ]], - [[ - 1115, - 1110, - 1228 - ]], - [[ - 1237, - 1269, - 1246 - ]], - [[ - 1270, - 1247, - 1141 - ]], - [[ - 1189, - 1271, - 1272 - ]], - [[ - 1210, - 433, - 1273 - ]], - [[ - 1234, - 1250, - 1274 - ]], - [[ - 1275, - 1143, - 1142 - ]], - [[ - 1131, - 1249, - 1248 - ]], - [[ - 1276, - 1277, - 1249 - ]], - [[ - 1249, - 1277, - 1238 - ]], - [[ - 1278, - 1122, - 1133 - ]], - [[ - 1238, - 1277, - 1279 - ]], - [[ - 1131, - 1280, - 1129 - ]], - [[ - 1281, - 1282, - 1283 - ]], - [[ - 1284, - 412, - 1244 - ]], - [[ - 1242, - 1285, - 414 - ]], - [[ - 1286, - 1243, - 1153 - ]], - [[ - 1193, - 1195, - 1189 - ]], - [[ - 1194, - 1258, - 1260 - ]], - [[ - 1147, - 1151, - 1192 - ]], - [[ - 1185, - 1178, - 1177 - ]], - [[ - 1132, - 1287, - 1256 - ]], - [[ - 1127, - 1288, - 1118 - ]], - [[ - 1289, - 1136, - 1290 - ]], - [[ - 1237, - 1248, - 1238 - ]], - [[ - 1185, - 1184, - 1291 - ]], - [[ - 1242, - 1180, - 1292 - ]], - [[ - 1248, - 1137, - 1139 - ]], - [[ - 1248, - 1237, - 1137 - ]], - [[ - 1186, - 1293, - 1294 - ]], - [[ - 1186, - 1196, - 1292 - ]], - [[ - 1242, - 1267, - 1286 - ]], - [[ - 1282, - 1176, - 1283 - ]], - [[ - 1221, - 1224, - 1226 - ]], - [[ - 1223, - 1225, - 1224 - ]], - [[ - 1149, - 1183, - 1148 - ]], - [[ - 1271, - 1190, - 1210 - ]], - [[ - 1295, - 1140, - 1247 - ]], - [[ - 1295, - 1109, - 1140 - ]], - [[ - 1264, - 1296, - 1266 - ]], - [[ - 1296, - 1232, - 1266 - ]], - [[ - 1296, - 1169, - 1233 - ]], - [[ - 1169, - 1263, - 1262 - ]], - [[ - 1289, - 1269, - 1136 - ]], - [[ - 1108, - 1246, - 1269 - ]], - [[ - 1170, - 1175, - 1265 - ]], - [[ - 1172, - 1174, - 1265 - ]], - [[ - 1236, - 1235, - 1144 - ]], - [[ - 1297, - 1113, - 1255 - ]], - [[ - 1288, - 1279, - 1118 - ]], - [[ - 1279, - 1130, - 1118 - ]], - [[ - 1287, - 1117, - 1116 - ]], - [[ - 1279, - 1277, - 1130 - ]], - [[ - 1255, - 1221, - 1226 - ]], - [[ - 1113, - 1222, - 1221 - ]], - [[ - 1240, - 1142, - 1144 - ]], - [[ - 1250, - 1226, - 1298 - ]], - [[ - 1276, - 1130, - 1277 - ]], - [[ - 1129, - 1126, - 1128 - ]], - [[ - 1149, - 1274, - 1220 - ]], - [[ - 1149, - 1143, - 1274 - ]], - [[ - 1253, - 1270, - 1290 - ]], - [[ - 1141, - 1108, - 1289 - ]], - [[ - 1285, - 1153, - 414 - ]], - [[ - 1285, - 1286, - 1153 - ]], - [[ - 1254, - 1290, - 1299 - ]], - [[ - 1136, - 1135, - 1117 - ]], - [[ - 1144, - 1300, - 1236 - ]], - [[ - 1290, - 1117, - 1299 - ]], - [[ - 1283, - 1176, - 1159 - ]], - [[ - 1176, - 1170, - 1261 - ]], - [[ - 1117, - 1135, - 1127 - ]], - [[ - 1134, - 1238, - 1301 - ]], - [[ - 1299, - 1117, - 1287 - ]], - [[ - 1290, - 1136, - 1117 - ]], - [[ - 1191, - 1185, - 1291 - ]], - [[ - 1191, - 1178, - 1185 - ]], - [[ - 1270, - 1253, - 1144 - ]], - [[ - 1270, - 1289, - 1290 - ]], - [[ - 1181, - 1259, - 1258 - ]], - [[ - 414, - 415, - 1259 - ]], - [[ - 1302, - 1258, - 1194 - ]], - [[ - 1179, - 1181, - 1258 - ]], - [[ - 1189, - 1190, - 1271 - ]], - [[ - 432, - 433, - 1190 - ]], - [[ - 1142, - 1234, - 1274 - ]], - [[ - 1241, - 1235, - 1234 - ]], - [[ - 1250, - 1255, - 1226 - ]], - [[ - 1234, - 1236, - 1297 - ]], - [[ - 1257, - 1152, - 432 - ]], - [[ - 1260, - 1259, - 1152 - ]], - [[ - 1274, - 1275, - 1142 - ]], - [[ - 1274, - 1143, - 1275 - ]], - [[ - 1159, - 1176, - 1303 - ]], - [[ - 1282, - 1243, - 1177 - ]], - [[ - 1223, - 1228, - 1225 - ]], - [[ - 1222, - 1115, - 1228 - ]], - [[ - 1231, - 1264, - 1266 - ]], - [[ - 1169, - 1262, - 1233 - ]], - [[ - 1300, - 1299, - 1114 - ]], - [[ - 1287, - 1304, - 1256 - ]], - [[ - 1132, - 1299, - 1287 - ]], - [[ - 1300, - 1254, - 1299 - ]], - [[ - 1297, - 1114, - 1113 - ]], - [[ - 1236, - 1300, - 1114 - ]], - [[ - 1305, - 1306, - 1252 - ]], - [[ - 1252, - 1215, - 1272 - ]], - [[ - 1278, - 1128, - 1122 - ]], - [[ - 1126, - 1120, - 1119 - ]], - [[ - 1128, - 1116, - 1118 - ]], - [[ - 1304, - 1287, - 1116 - ]], - [[ - 1232, - 1233, - 1163 - ]], - [[ - 1232, - 1296, - 1233 - ]], - [[ - 1210, - 1307, - 1271 - ]], - [[ - 1209, - 1308, - 1307 - ]], - [[ - 1309, - 1200, - 1199 - ]], - [[ - 1310, - 1193, - 1200 - ]], - [[ - 1234, - 1297, - 1255 - ]], - [[ - 1236, - 1114, - 1297 - ]], - [[ - 1172, - 1265, - 1175 - ]], - [[ - 1311, - 1296, - 1264 - ]], - [[ - 1142, - 1241, - 1234 - ]], - [[ - 1240, - 1235, - 1241 - ]], - [[ - 1289, - 1108, - 1269 - ]], - [[ - 1141, - 1109, - 1108 - ]], - [[ - 1138, - 1107, - 1109 - ]], - [[ - 1246, - 1108, - 1107 - ]], - [[ - 1308, - 1208, - 1148 - ]], - [[ - 1273, - 433, - 1239 - ]], - [[ - 1208, - 1210, - 1239 - ]], - [[ - 1239, - 1210, - 1273 - ]], - [[ - 1130, - 1128, - 1118 - ]], - [[ - 1119, - 1122, - 1128 - ]], - [[ - 1293, - 1312, - 1294 - ]], - [[ - 1293, - 1186, - 1292 - ]], - [[ - 1259, - 1268, - 1152 - ]], - [[ - 1259, - 415, - 1268 - ]], - [[ - 1131, - 1276, - 1249 - ]], - [[ - 1131, - 1130, - 1276 - ]], - [[ - 1302, - 1179, - 1258 - ]], - [[ - 1312, - 1293, - 1292 - ]], - [[ - 1179, - 1292, - 1180 - ]], - [[ - 1179, - 1312, - 1292 - ]], - [[ - 1184, - 1242, - 1292 - ]], - [[ - 1286, - 1285, - 1242 - ]], - [[ - 1184, - 1177, - 1243 - ]], - [[ - 1178, - 1175, - 1177 - ]], - [[ - 1146, - 1145, - 1188 - ]], - [[ - 1147, - 1186, - 1145 - ]], - [[ - 1200, - 1193, - 1201 - ]], - [[ - 1294, - 1312, - 1302 - ]], - [[ - 1257, - 1194, - 1260 - ]], - [[ - 1302, - 1312, - 1179 - ]], - [[ - 1247, - 1270, - 1144 - ]], - [[ - 1141, - 1289, - 1270 - ]], - [[ - 1274, - 1250, - 1220 - ]], - [[ - 1234, - 1255, - 1250 - ]], - [[ - 1307, - 1210, - 1209 - ]], - [[ - 1190, - 433, - 1210 - ]], - [[ - 1307, - 1272, - 1271 - ]], - [[ - 1307, - 1183, - 1252 - ]], - [[ - 1307, - 1252, - 1272 - ]], - [[ - 1207, - 1206, - 1213 - ]], - [[ - 1306, - 1251, - 1252 - ]], - [[ - 1215, - 1214, - 1272 - ]], - [[ - 1207, - 1215, - 1251 - ]], - [[ - 1207, - 1213, - 1214 - ]], - [[ - 1305, - 1182, - 1313 - ]], - [[ - 1313, - 1314, - 1306 - ]], - [[ - 1171, - 1170, - 1265 - ]], - [[ - 1176, - 1175, - 1170 - ]], - [[ - 1303, - 1261, - 1159 - ]], - [[ - 1303, - 1176, - 1261 - ]], - [[ - 1165, - 1166, - 1231 - ]], - [[ - 1261, - 1170, - 1167 - ]], - [[ - 1157, - 1166, - 1165 - ]], - [[ - 1261, - 1167, - 1166 - ]], - [[ - 1176, - 1282, - 1177 - ]], - [[ - 1243, - 1284, - 1244 - ]], - [[ - 1153, - 1244, - 412 - ]], - [[ - 1243, - 1282, - 1281 - ]], - [[ - 1214, - 1189, - 1272 - ]], - [[ - 1201, - 1193, - 1189 - ]], - [[ - 1265, - 1311, - 1171 - ]], - [[ - 1265, - 1154, - 1311 - ]], - [[ - 1193, - 1302, - 1194 - ]], - [[ - 1193, - 1310, - 1302 - ]], - [[ - 1115, - 1111, - 1110 - ]], - [[ - 1227, - 1230, - 1111 - ]], - [[ - 1166, - 1168, - 1231 - ]], - [[ - 1167, - 1171, - 1168 - ]], - [[ - 1192, - 1191, - 1291 - ]], - [[ - 1151, - 1178, - 1191 - ]], - [[ - 1196, - 1192, - 1291 - ]], - [[ - 1186, - 1147, - 1192 - ]], - [[ - 1184, - 1196, - 1291 - ]], - [[ - 1184, - 1292, - 1196 - ]], - [[ - 1114, - 1132, - 1115 - ]], - [[ - 1114, - 1299, - 1132 - ]], - [[ - 1304, - 1278, - 1133 - ]], - [[ - 1116, - 1128, - 1278 - ]], - [[ - 414, - 1181, - 1180 - ]], - [[ - 414, - 1259, - 1181 - ]], - [[ - 1306, - 1314, - 1251 - ]], - [[ - 1205, - 1250, - 1298 - ]], - [[ - 1205, - 1298, - 1206 - ]], - [[ - 1226, - 1206, - 1298 - ]], - [[ - 1313, - 1219, - 1314 - ]], - [[ - 1314, - 1219, - 1205 - ]], - [[ - 1296, - 1311, - 1169 - ]], - [[ - 1174, - 1155, - 1154 - ]], - [[ - 1315, - 1129, - 1280 - ]], - [[ - 1315, - 1126, - 1129 - ]], - [[ - 1313, - 1182, - 1149 - ]], - [[ - 1313, - 1306, - 1305 - ]], - [[ - 1183, - 1305, - 1252 - ]], - [[ - 1183, - 1182, - 1305 - ]], - [[ - 1261, - 1157, - 1159 - ]], - [[ - 1164, - 1158, - 1157 - ]], - [[ - 1183, - 1308, - 1148 - ]], - [[ - 1183, - 1307, - 1308 - ]], - [[ - 1148, - 1208, - 1239 - ]], - [[ - 1308, - 1209, - 1208 - ]], - [[ - 1294, - 1309, - 1199 - ]], - [[ - 1294, - 1302, - 1309 - ]], - [[ - 1309, - 1310, - 1200 - ]], - [[ - 1309, - 1302, - 1310 - ]], - [[ - 1286, - 1267, - 1243 - ]], - [[ - 1242, - 1184, - 1267 - ]], - [[ - 1135, - 1301, - 1127 - ]], - [[ - 1238, - 1279, - 1288 - ]], - [[ - 1288, - 1301, - 1238 - ]], - [[ - 1288, - 1127, - 1301 - ]], - [[ - 1135, - 1134, - 1301 - ]], - [[ - 1136, - 1269, - 1237 - ]], - [[ - 1137, - 1237, - 1246 - ]], - [[ - 1134, - 1136, - 1237 - ]], - [[ - 1195, - 1257, - 432 - ]], - [[ - 1260, - 1152, - 1257 - ]], - [[ - 1171, - 1311, - 1264 - ]], - [[ - 1154, - 1169, - 1311 - ]], - [[ - 1159, - 1281, - 1283 - ]], - [[ - 1284, - 1243, - 1281 - ]], - [[ - 1159, - 1284, - 1281 - ]], - [[ - 1159, - 412, - 1284 - ]], - [[ - 1278, - 1304, - 1116 - ]], - [[ - 1133, - 1256, - 1304 - ]], - [[ - 1205, - 1219, - 1250 - ]], - [[ - 1313, - 1149, - 1219 - ]], - [[ - 1207, - 1314, - 1205 - ]], - [[ - 1207, - 1251, - 1314 - ]], - [[ - 1144, - 1254, - 1300 - ]], - [[ - 1253, - 1290, - 1254 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b221e7287-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef505549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1316, - 1317, - 1318 - ]], - [[ - 1319, - 1320, - 1321 - ]], - [[ - 1322, - 1323, - 1324 - ]], - [[ - 1325, - 1326, - 1327 - ]], - [[ - 1328, - 1329, - 1330 - ]], - [[ - 1331, - 1332, - 1333 - ]], - [[ - 1334, - 1335, - 1336 - ]], - [[ - 1337, - 1338, - 1339 - ]], - [[ - 1340, - 1341, - 1342 - ]], - [[ - 1343, - 1337, - 1344 - ]], - [[ - 1340, - 1345, - 1341 - ]], - [[ - 1345, - 1346, - 1341 - ]], - [[ - 1345, - 1347, - 1346 - ]], - [[ - 1348, - 1347, - 1343 - ]], - [[ - 1349, - 1350, - 1351 - ]], - [[ - 1335, - 1352, - 1353 - ]], - [[ - 1354, - 1355, - 1356 - ]], - [[ - 1357, - 1358, - 1359 - ]], - [[ - 1360, - 1361, - 1362 - ]], - [[ - 1363, - 1364, - 1365 - ]], - [[ - 1359, - 1358, - 1366 - ]], - [[ - 1336, - 1335, - 1367 - ]], - [[ - 1368, - 1369, - 1370 - ]], - [[ - 1371, - 1372, - 1373 - ]], - [[ - 1374, - 1375, - 1376 - ]], - [[ - 1375, - 1377, - 1376 - ]], - [[ - 1368, - 1378, - 1379 - ]], - [[ - 1380, - 1381, - 1382 - ]], - [[ - 1383, - 1384, - 1385 - ]], - [[ - 1386, - 1387, - 1388 - ]], - [[ - 1386, - 1388, - 1389 - ]], - [[ - 1390, - 1391, - 1392 - ]], - [[ - 1387, - 1393, - 1388 - ]], - [[ - 1394, - 1395, - 1396 - ]], - [[ - 1397, - 1398, - 1393 - ]], - [[ - 1399, - 1381, - 1400 - ]], - [[ - 1392, - 1401, - 1398 - ]], - [[ - 1402, - 1403, - 1323 - ]], - [[ - 1404, - 1405, - 1406 - ]], - [[ - 1407, - 1408, - 1409 - ]], - [[ - 1410, - 1411, - 1409 - ]], - [[ - 1412, - 1404, - 1413 - ]], - [[ - 1414, - 1415, - 1416 - ]], - [[ - 1415, - 1417, - 1416 - ]], - [[ - 1418, - 1419, - 1420 - ]], - [[ - 1421, - 1422, - 1423 - ]], - [[ - 1424, - 673, - 674 - ]], - [[ - 1425, - 1426, - 1427 - ]], - [[ - 1428, - 1318, - 1429 - ]], - [[ - 1430, - 1431, - 1432 - ]], - [[ - 1433, - 1434, - 1435 - ]], - [[ - 1436, - 699, - 700 - ]], - [[ - 1437, - 1438, - 1439 - ]], - [[ - 610, - 575, - 1440 - ]], - [[ - 1441, - 1438, - 1442 - ]], - [[ - 1443, - 1375, - 1444 - ]], - [[ - 1445, - 1446, - 1447 - ]], - [[ - 1448, - 1449, - 1450 - ]], - [[ - 1377, - 1324, - 1323 - ]], - [[ - 1377, - 1451, - 1324 - ]], - [[ - 1377, - 1375, - 1451 - ]], - [[ - 1402, - 1452, - 1403 - ]], - [[ - 1453, - 575, - 577 - ]], - [[ - 1454, - 1455, - 1456 - ]], - [[ - 1457, - 1458, - 1459 - ]], - [[ - 1460, - 1461, - 1425 - ]], - [[ - 1462, - 1463, - 1457 - ]], - [[ - 1464, - 1465, - 1466 - ]], - [[ - 1467, - 1468, - 1402 - ]], - [[ - 1469, - 1470, - 1471 - ]], - [[ - 1472, - 1473, - 1474 - ]], - [[ - 1362, - 1475, - 1476 - ]], - [[ - 1477, - 1478, - 1455 - ]], - [[ - 1479, - 1465, - 1478 - ]], - [[ - 1454, - 1480, - 1467 - ]], - [[ - 1481, - 1482, - 1483 - ]], - [[ - 1484, - 1485, - 1486 - ]], - [[ - 1487, - 1488, - 1489 - ]], - [[ - 1485, - 1490, - 1486 - ]], - [[ - 1491, - 1492, - 1493 - ]], - [[ - 1373, - 1494, - 1495 - ]], - [[ - 1495, - 1353, - 1372 - ]], - [[ - 1371, - 1373, - 1495 - ]], - [[ - 1367, - 1353, - 1496 - ]], - [[ - 1371, - 1495, - 1372 - ]], - [[ - 1496, - 1353, - 1495 - ]], - [[ - 1495, - 1494, - 1497 - ]], - [[ - 1484, - 1486, - 1498 - ]], - [[ - 1499, - 1411, - 1413 - ]], - [[ - 1410, - 1500, - 1501 - ]], - [[ - 1502, - 1373, - 1372 - ]], - [[ - 1502, - 1503, - 1329 - ]], - [[ - 1504, - 1505, - 1506 - ]], - [[ - 1481, - 1507, - 607 - ]], - [[ - 1508, - 1509, - 1510 - ]], - [[ - 1511, - 1455, - 1512 - ]], - [[ - 1513, - 1514, - 1515 - ]], - [[ - 1516, - 1491, - 1488 - ]], - [[ - 1440, - 1517, - 1518 - ]], - [[ - 1510, - 1509, - 1519 - ]], - [[ - 1520, - 1433, - 1521 - ]], - [[ - 1522, - 1523, - 1400 - ]], - [[ - 1449, - 1524, - 1471 - ]], - [[ - 1370, - 1369, - 1525 - ]], - [[ - 1526, - 1498, - 1486 - ]], - [[ - 1527, - 1469, - 1370 - ]], - [[ - 1528, - 1529, - 1463 - ]], - [[ - 1468, - 1467, - 1530 - ]], - [[ - 1468, - 1529, - 1438 - ]], - [[ - 1468, - 1463, - 1529 - ]], - [[ - 1444, - 1531, - 1532 - ]], - [[ - 1533, - 1534, - 1535 - ]], - [[ - 1329, - 1536, - 1330 - ]], - [[ - 1537, - 1538, - 1539 - ]], - [[ - 1503, - 1540, - 1325 - ]], - [[ - 1541, - 1542, - 1320 - ]], - [[ - 1543, - 1336, - 1329 - ]], - [[ - 1543, - 1329, - 1328 - ]], - [[ - 1330, - 1503, - 1485 - ]], - [[ - 1320, - 1319, - 1544 - ]], - [[ - 1506, - 1545, - 1509 - ]], - [[ - 1519, - 1360, - 1362 - ]], - [[ - 1459, - 1454, - 1504 - ]], - [[ - 1546, - 1547, - 1456 - ]], - [[ - 1504, - 1547, - 1505 - ]], - [[ - 1547, - 1454, - 1456 - ]], - [[ - 1494, - 1336, - 1548 - ]], - [[ - 1549, - 1550, - 1334 - ]], - [[ - 1551, - 1552, - 1518 - ]], - [[ - 1553, - 1529, - 1528 - ]], - [[ - 1554, - 1555, - 1436 - ]], - [[ - 577, - 699, - 1555 - ]], - [[ - 1556, - 1347, - 1350 - ]], - [[ - 1556, - 1346, - 1347 - ]], - [[ - 1557, - 1546, - 1456 - ]], - [[ - 1456, - 1455, - 1558 - ]], - [[ - 1559, - 1560, - 1407 - ]], - [[ - 1561, - 1562, - 1563 - ]], - [[ - 1446, - 1464, - 1322 - ]], - [[ - 1512, - 1465, - 1464 - ]], - [[ - 1564, - 1558, - 1565 - ]], - [[ - 1511, - 1512, - 1566 - ]], - [[ - 1567, - 1568, - 1569 - ]], - [[ - 1570, - 1506, - 1509 - ]], - [[ - 1358, - 1344, - 1339 - ]], - [[ - 1358, - 1357, - 1344 - ]], - [[ - 1329, - 1503, - 1536 - ]], - [[ - 1571, - 1538, - 1572 - ]], - [[ - 1447, - 1487, - 1445 - ]], - [[ - 1512, - 1445, - 1566 - ]], - [[ - 1573, - 1504, - 1506 - ]], - [[ - 1459, - 1574, - 1454 - ]], - [[ - 1548, - 1336, - 1367 - ]], - [[ - 1494, - 1329, - 1336 - ]], - [[ - 1373, - 1329, - 1494 - ]], - [[ - 1373, - 1502, - 1329 - ]], - [[ - 1575, - 1576, - 1317 - ]], - [[ - 1577, - 1424, - 674 - ]], - [[ - 1501, - 1413, - 1411 - ]], - [[ - 1578, - 1579, - 1580 - ]], - [[ - 1411, - 1581, - 1409 - ]], - [[ - 1417, - 1420, - 1416 - ]], - [[ - 1582, - 1362, - 1476 - ]], - [[ - 1519, - 1583, - 1360 - ]], - [[ - 1584, - 1585, - 1586 - ]], - [[ - 1515, - 1583, - 1519 - ]], - [[ - 1585, - 1483, - 1586 - ]], - [[ - 1508, - 1587, - 1570 - ]], - [[ - 1470, - 1469, - 1588 - ]], - [[ - 1353, - 1367, - 1335 - ]], - [[ - 1428, - 1429, - 1589 - ]], - [[ - 1385, - 1590, - 1591 - ]], - [[ - 1382, - 1384, - 1429 - ]], - [[ - 1385, - 1591, - 1592 - ]], - [[ - 1446, - 1322, - 1324 - ]], - [[ - 1466, - 1323, - 1322 - ]], - [[ - 1593, - 1594, - 1595 - ]], - [[ - 1578, - 1596, - 1579 - ]], - [[ - 672, - 1595, - 700 - ]], - [[ - 672, - 673, - 1597 - ]], - [[ - 1598, - 1394, - 1396 - ]], - [[ - 1318, - 1428, - 1433 - ]], - [[ - 1520, - 1434, - 1433 - ]], - [[ - 1599, - 1578, - 1404 - ]], - [[ - 1600, - 1430, - 1426 - ]], - [[ - 1437, - 1403, - 1452 - ]], - [[ - 1601, - 1602, - 1430 - ]], - [[ - 1427, - 1437, - 1603 - ]], - [[ - 1554, - 1436, - 700 - ]], - [[ - 1555, - 699, - 1436 - ]], - [[ - 1446, - 1445, - 1464 - ]], - [[ - 1512, - 1464, - 1445 - ]], - [[ - 1604, - 1350, - 1348 - ]], - [[ - 1605, - 1349, - 1606 - ]], - [[ - 1607, - 1608, - 1609 - ]], - [[ - 1609, - 1608, - 1472 - ]], - [[ - 1332, - 1610, - 1611 - ]], - [[ - 1442, - 1438, - 1529 - ]], - [[ - 1612, - 1613, - 1527 - ]], - [[ - 1348, - 1344, - 1357 - ]], - [[ - 1509, - 1515, - 1519 - ]], - [[ - 1509, - 1545, - 1513 - ]], - [[ - 1614, - 1615, - 1453 - ]], - [[ - 1616, - 1617, - 1472 - ]], - [[ - 1524, - 1448, - 1618 - ]], - [[ - 1531, - 1619, - 1620 - ]], - [[ - 1353, - 1352, - 1621 - ]], - [[ - 1358, - 1622, - 1366 - ]], - [[ - 1623, - 1345, - 1340 - ]], - [[ - 1623, - 1624, - 1345 - ]], - [[ - 1625, - 1626, - 1627 - ]], - [[ - 1532, - 1628, - 1629 - ]], - [[ - 1507, - 1544, - 1630 - ]], - [[ - 1631, - 1326, - 1540 - ]], - [[ - 1630, - 1544, - 1319 - ]], - [[ - 1542, - 1541, - 1632 - ]], - [[ - 1555, - 1554, - 577 - ]], - [[ - 1431, - 1633, - 1634 - ]], - [[ - 1635, - 1636, - 1637 - ]], - [[ - 1584, - 1510, - 1519 - ]], - [[ - 607, - 1638, - 1474 - ]], - [[ - 1639, - 1637, - 1640 - ]], - [[ - 1380, - 1400, - 1381 - ]], - [[ - 1591, - 1403, - 1592 - ]], - [[ - 1477, - 1467, - 1402 - ]], - [[ - 1477, - 1454, - 1467 - ]], - [[ - 1476, - 1475, - 1641 - ]], - [[ - 1362, - 1361, - 1475 - ]], - [[ - 1361, - 1360, - 1642 - ]], - [[ - 1558, - 1511, - 1489 - ]], - [[ - 1643, - 1479, - 1478 - ]], - [[ - 1323, - 1465, - 1479 - ]], - [[ - 1564, - 1456, - 1558 - ]], - [[ - 1454, - 1574, - 1480 - ]], - [[ - 577, - 1644, - 1614 - ]], - [[ - 1645, - 1461, - 1617 - ]], - [[ - 1646, - 1482, - 1647 - ]], - [[ - 1648, - 1649, - 1482 - ]], - [[ - 1338, - 1623, - 1650 - ]], - [[ - 1338, - 1624, - 1623 - ]], - [[ - 1361, - 1641, - 1475 - ]], - [[ - 1491, - 1565, - 1488 - ]], - [[ - 1429, - 1522, - 1382 - ]], - [[ - 1399, - 1391, - 1381 - ]], - [[ - 1651, - 1652, - 1653 - ]], - [[ - 1654, - 1563, - 1655 - ]], - [[ - 1415, - 1560, - 1559 - ]], - [[ - 1407, - 1581, - 1417 - ]], - [[ - 1581, - 1411, - 1499 - ]], - [[ - 1656, - 1657, - 1658 - ]], - [[ - 1328, - 1330, - 1485 - ]], - [[ - 1536, - 1503, - 1330 - ]], - [[ - 1413, - 1404, - 1578 - ]], - [[ - 1412, - 1501, - 1656 - ]], - [[ - 1406, - 1405, - 1659 - ]], - [[ - 1576, - 1395, - 1317 - ]], - [[ - 1474, - 1647, - 607 - ]], - [[ - 1482, - 1649, - 1483 - ]], - [[ - 1660, - 1592, - 1403 - ]], - [[ - 1385, - 1384, - 1590 - ]], - [[ - 1661, - 1662, - 1602 - ]], - [[ - 1521, - 1589, - 1662 - ]], - [[ - 1663, - 1442, - 1664 - ]], - [[ - 1638, - 1472, - 1474 - ]], - [[ - 1327, - 1476, - 1665 - ]], - [[ - 1493, - 1564, - 1565 - ]], - [[ - 1666, - 1447, - 1667 - ]], - [[ - 1668, - 1669, - 1670 - ]], - [[ - 1671, - 1572, - 1631 - ]], - [[ - 1321, - 1630, - 1319 - ]], - [[ - 1540, - 1671, - 1631 - ]], - [[ - 1538, - 1502, - 1539 - ]], - [[ - 1507, - 1672, - 1541 - ]], - [[ - 1537, - 1539, - 1321 - ]], - [[ - 1538, - 1537, - 1572 - ]], - [[ - 1673, - 1674, - 1675 - ]], - [[ - 1327, - 1326, - 1582 - ]], - [[ - 1673, - 1676, - 1537 - ]], - [[ - 1674, - 1673, - 1321 - ]], - [[ - 1631, - 1572, - 1537 - ]], - [[ - 1632, - 1674, - 1542 - ]], - [[ - 1539, - 1630, - 1321 - ]], - [[ - 1344, - 1337, - 1339 - ]], - [[ - 1343, - 1347, - 1345 - ]], - [[ - 1468, - 1677, - 1463 - ]], - [[ - 1678, - 1574, - 1677 - ]], - [[ - 1427, - 1602, - 1679 - ]], - [[ - 1662, - 1385, - 1679 - ]], - [[ - 1625, - 1666, - 1667 - ]], - [[ - 1626, - 1444, - 1627 - ]], - [[ - 1497, - 1496, - 1495 - ]], - [[ - 1497, - 1548, - 1496 - ]], - [[ - 1635, - 1680, - 1636 - ]], - [[ - 1611, - 1664, - 1462 - ]], - [[ - 1542, - 1674, - 1321 - ]], - [[ - 1676, - 1326, - 1631 - ]], - [[ - 1647, - 1481, - 607 - ]], - [[ - 1647, - 1482, - 1481 - ]], - [[ - 1681, - 1660, - 1403 - ]], - [[ - 1681, - 1682, - 1660 - ]], - [[ - 1509, - 1513, - 1515 - ]], - [[ - 1545, - 1557, - 1514 - ]], - [[ - 1407, - 1560, - 1408 - ]], - [[ - 1651, - 1416, - 1683 - ]], - [[ - 1684, - 1575, - 1317 - ]], - [[ - 1404, - 1406, - 1576 - ]], - [[ - 1468, - 1530, - 1677 - ]], - [[ - 1467, - 1480, - 1530 - ]], - [[ - 1581, - 1407, - 1409 - ]], - [[ - 1581, - 1685, - 1417 - ]], - [[ - 1490, - 1327, - 1526 - ]], - [[ - 1326, - 1675, - 1582 - ]], - [[ - 1486, - 1490, - 1526 - ]], - [[ - 1485, - 1503, - 1325 - ]], - [[ - 1582, - 1476, - 1327 - ]], - [[ - 1641, - 1493, - 1476 - ]], - [[ - 1667, - 1446, - 1324 - ]], - [[ - 1667, - 1447, - 1446 - ]], - [[ - 1686, - 1607, - 1609 - ]], - [[ - 1440, - 575, - 1517 - ]], - [[ - 675, - 1577, - 674 - ]], - [[ - 1419, - 1687, - 1420 - ]], - [[ - 1530, - 1678, - 1677 - ]], - [[ - 1530, - 1480, - 1678 - ]], - [[ - 1351, - 1355, - 1354 - ]], - [[ - 1356, - 1688, - 1354 - ]], - [[ - 1640, - 1474, - 1689 - ]], - [[ - 1638, - 607, - 609 - ]], - [[ - 1411, - 1410, - 1501 - ]], - [[ - 1408, - 1560, - 1690 - ]], - [[ - 1691, - 1661, - 1692 - ]], - [[ - 1693, - 1634, - 1633 - ]], - [[ - 1570, - 1573, - 1506 - ]], - [[ - 1333, - 1694, - 1573 - ]], - [[ - 1570, - 1587, - 1695 - ]], - [[ - 1611, - 1696, - 1664 - ]], - [[ - 1697, - 1370, - 1469 - ]], - [[ - 1370, - 1525, - 1612 - ]], - [[ - 1550, - 1698, - 1699 - ]], - [[ - 1700, - 1701, - 1702 - ]], - [[ - 1352, - 1335, - 1703 - ]], - [[ - 1704, - 1526, - 1665 - ]], - [[ - 1705, - 1706, - 1702 - ]], - [[ - 1669, - 1668, - 1625 - ]], - [[ - 1699, - 1703, - 1550 - ]], - [[ - 1471, - 1524, - 1697 - ]], - [[ - 1707, - 1708, - 1699 - ]], - [[ - 1708, - 1588, - 1621 - ]], - [[ - 1328, - 1709, - 1543 - ]], - [[ - 1703, - 1335, - 1334 - ]], - [[ - 1709, - 1549, - 1543 - ]], - [[ - 1334, - 1336, - 1543 - ]], - [[ - 1470, - 1710, - 1471 - ]], - [[ - 1697, - 1711, - 1370 - ]], - [[ - 1621, - 1527, - 1359 - ]], - [[ - 1588, - 1469, - 1527 - ]], - [[ - 1359, - 1527, - 1357 - ]], - [[ - 1359, - 1366, - 1621 - ]], - [[ - 1435, - 1693, - 1712 - ]], - [[ - 673, - 1424, - 1577 - ]], - [[ - 1481, - 1483, - 1507 - ]], - [[ - 1567, - 1636, - 1568 - ]], - [[ - 1713, - 1444, - 1626 - ]], - [[ - 1629, - 1714, - 1524 - ]], - [[ - 1507, - 1541, - 1544 - ]], - [[ - 1542, - 1321, - 1320 - ]], - [[ - 1462, - 1528, - 1463 - ]], - [[ - 1664, - 1442, - 1553 - ]], - [[ - 1664, - 1553, - 1528 - ]], - [[ - 1442, - 1529, - 1553 - ]], - [[ - 1679, - 1385, - 1592 - ]], - [[ - 1383, - 1429, - 1384 - ]], - [[ - 1589, - 1383, - 1385 - ]], - [[ - 1589, - 1429, - 1383 - ]], - [[ - 1627, - 1444, - 1715 - ]], - [[ - 1713, - 1443, - 1444 - ]], - [[ - 1438, - 1441, - 1439 - ]], - [[ - 1461, - 1552, - 1425 - ]], - [[ - 1483, - 1716, - 1507 - ]], - [[ - 1717, - 1718, - 1582 - ]], - [[ - 1544, - 1541, - 1320 - ]], - [[ - 1672, - 1632, - 1541 - ]], - [[ - 1323, - 1477, - 1402 - ]], - [[ - 1643, - 1478, - 1477 - ]], - [[ - 1621, - 1352, - 1708 - ]], - [[ - 1621, - 1622, - 1353 - ]], - [[ - 1451, - 1443, - 1713 - ]], - [[ - 1451, - 1375, - 1443 - ]], - [[ - 1407, - 1417, - 1559 - ]], - [[ - 1580, - 1719, - 1720 - ]], - [[ - 1655, - 1562, - 1690 - ]], - [[ - 1561, - 1500, - 1721 - ]], - [[ - 1450, - 1627, - 1448 - ]], - [[ - 1618, - 1629, - 1524 - ]], - [[ - 1722, - 1441, - 1442 - ]], - [[ - 1439, - 1603, - 1437 - ]], - [[ - 1659, - 1658, - 1657 - ]], - [[ - 1723, - 1404, - 1656 - ]], - [[ - 1723, - 1656, - 1658 - ]], - [[ - 1501, - 1657, - 1656 - ]], - [[ - 1345, - 1624, - 1343 - ]], - [[ - 1338, - 1337, - 1624 - ]], - [[ - 1431, - 1634, - 1724 - ]], - [[ - 1691, - 1521, - 1662 - ]], - [[ - 1689, - 1474, - 1473 - ]], - [[ - 1646, - 1647, - 1474 - ]], - [[ - 1564, - 1725, - 1726 - ]], - [[ - 1642, - 1641, - 1361 - ]], - [[ - 1725, - 1642, - 1360 - ]], - [[ - 1493, - 1641, - 1642 - ]], - [[ - 1714, - 1697, - 1524 - ]], - [[ - 1711, - 1368, - 1370 - ]], - [[ - 1671, - 1571, - 1572 - ]], - [[ - 1671, - 1540, - 1571 - ]], - [[ - 1649, - 1586, - 1483 - ]], - [[ - 1727, - 1510, - 1584 - ]], - [[ - 1628, - 1728, - 1714 - ]], - [[ - 1620, - 1619, - 1369 - ]], - [[ - 1410, - 1721, - 1500 - ]], - [[ - 1410, - 1409, - 1408 - ]], - [[ - 1729, - 1597, - 673 - ]], - [[ - 1594, - 1693, - 1730 - ]], - [[ - 1597, - 1593, - 672 - ]], - [[ - 1594, - 1712, - 1693 - ]], - [[ - 1435, - 1731, - 1316 - ]], - [[ - 1432, - 1692, - 1601 - ]], - [[ - 1577, - 1732, - 673 - ]], - [[ - 1595, - 1733, - 700 - ]], - [[ - 1597, - 1729, - 1712 - ]], - [[ - 1316, - 1684, - 1317 - ]], - [[ - 1731, - 1734, - 1316 - ]], - [[ - 1735, - 1421, - 1423 - ]], - [[ - 1575, - 1599, - 1404 - ]], - [[ - 1596, - 1422, - 1421 - ]], - [[ - 1520, - 1724, - 1634 - ]], - [[ - 1520, - 1521, - 1691 - ]], - [[ - 1378, - 1728, - 1379 - ]], - [[ - 1531, - 1375, - 1619 - ]], - [[ - 1736, - 1435, - 1712 - ]], - [[ - 1434, - 1520, - 1634 - ]], - [[ - 1633, - 1733, - 1730 - ]], - [[ - 1693, - 1434, - 1634 - ]], - [[ - 1368, - 1379, - 1369 - ]], - [[ - 1728, - 1628, - 1379 - ]], - [[ - 1558, - 1737, - 1511 - ]], - [[ - 1558, - 1455, - 1737 - ]], - [[ - 1425, - 1439, - 1738 - ]], - [[ - 1722, - 1609, - 1472 - ]], - [[ - 1460, - 1617, - 1461 - ]], - [[ - 1460, - 1722, - 1617 - ]], - [[ - 1645, - 1616, - 1518 - ]], - [[ - 1739, - 610, - 1440 - ]], - [[ - 1323, - 1643, - 1477 - ]], - [[ - 1323, - 1479, - 1643 - ]], - [[ - 1365, - 1604, - 1740 - ]], - [[ - 1350, - 1347, - 1348 - ]], - [[ - 1357, - 1740, - 1348 - ]], - [[ - 1365, - 1364, - 1351 - ]], - [[ - 1741, - 1740, - 1357 - ]], - [[ - 1604, - 1348, - 1740 - ]], - [[ - 1534, - 1364, - 1363 - ]], - [[ - 1364, - 1356, - 1351 - ]], - [[ - 1632, - 1675, - 1674 - ]], - [[ - 1632, - 1672, - 1742 - ]], - [[ - 1604, - 1351, - 1350 - ]], - [[ - 1604, - 1365, - 1351 - ]], - [[ - 1743, - 1744, - 1615 - ]], - [[ - 1426, - 1425, - 1552 - ]], - [[ - 1659, - 1723, - 1658 - ]], - [[ - 1405, - 1404, - 1723 - ]], - [[ - 1707, - 1745, - 1470 - ]], - [[ - 1707, - 1701, - 1745 - ]], - [[ - 1654, - 1655, - 1652 - ]], - [[ - 1563, - 1562, - 1655 - ]], - [[ - 1651, - 1654, - 1652 - ]], - [[ - 1683, - 1563, - 1654 - ]], - [[ - 1390, - 1392, - 1398 - ]], - [[ - 1746, - 1401, - 1392 - ]], - [[ - 1638, - 1739, - 1440 - ]], - [[ - 609, - 610, - 1739 - ]], - [[ - 1382, - 1590, - 1384 - ]], - [[ - 1382, - 1381, - 1591 - ]], - [[ - 1382, - 1591, - 1590 - ]], - [[ - 1381, - 1403, - 1591 - ]], - [[ - 1633, - 1554, - 700 - ]], - [[ - 1747, - 1644, - 1554 - ]], - [[ - 1334, - 1550, - 1703 - ]], - [[ - 1550, - 1549, - 1748 - ]], - [[ - 1458, - 1677, - 1574 - ]], - [[ - 1678, - 1480, - 1574 - ]], - [[ - 1749, - 1459, - 1504 - ]], - [[ - 1458, - 1463, - 1677 - ]], - [[ - 1749, - 1457, - 1459 - ]], - [[ - 1611, - 1610, - 1750 - ]], - [[ - 1694, - 1749, - 1504 - ]], - [[ - 1332, - 1457, - 1749 - ]], - [[ - 1568, - 1750, - 1695 - ]], - [[ - 1695, - 1573, - 1570 - ]], - [[ - 1742, - 1582, - 1675 - ]], - [[ - 1672, - 1507, - 1716 - ]], - [[ - 1687, - 1419, - 1751 - ]], - [[ - 1751, - 1752, - 1577 - ]], - [[ - 1711, - 1378, - 1368 - ]], - [[ - 1714, - 1728, - 1378 - ]], - [[ - 1449, - 1448, - 1524 - ]], - [[ - 1627, - 1715, - 1618 - ]], - [[ - 1492, - 1665, - 1476 - ]], - [[ - 1753, - 1669, - 1450 - ]], - [[ - 1449, - 1754, - 1755 - ]], - [[ - 1487, - 1489, - 1445 - ]], - [[ - 1702, - 1706, - 1704 - ]], - [[ - 1526, - 1327, - 1665 - ]], - [[ - 1707, - 1705, - 1701 - ]], - [[ - 1498, - 1526, - 1706 - ]], - [[ - 1698, - 1748, - 1705 - ]], - [[ - 1498, - 1706, - 1705 - ]], - [[ - 1702, - 1704, - 1756 - ]], - [[ - 1706, - 1526, - 1704 - ]], - [[ - 1705, - 1748, - 1498 - ]], - [[ - 1705, - 1707, - 1698 - ]], - [[ - 1627, - 1618, - 1448 - ]], - [[ - 1629, - 1628, - 1714 - ]], - [[ - 1459, - 1458, - 1574 - ]], - [[ - 1457, - 1463, - 1458 - ]], - [[ - 1332, - 1611, - 1457 - ]], - [[ - 1664, - 1528, - 1462 - ]], - [[ - 1663, - 1609, - 1442 - ]], - [[ - 1439, - 1425, - 1603 - ]], - [[ - 1650, - 1340, - 1342 - ]], - [[ - 1650, - 1623, - 1340 - ]], - [[ - 1499, - 1578, - 1685 - ]], - [[ - 1757, - 1734, - 1596 - ]], - [[ - 1757, - 1596, - 1578 - ]], - [[ - 1734, - 1732, - 1596 - ]], - [[ - 1607, - 1686, - 1696 - ]], - [[ - 1686, - 1663, - 1696 - ]], - [[ - 1432, - 1601, - 1430 - ]], - [[ - 1692, - 1724, - 1691 - ]], - [[ - 1427, - 1681, - 1437 - ]], - [[ - 1682, - 1592, - 1660 - ]], - [[ - 1715, - 1532, - 1618 - ]], - [[ - 1531, - 1444, - 1375 - ]], - [[ - 1731, - 1435, - 1736 - ]], - [[ - 1434, - 1693, - 1435 - ]], - [[ - 1689, - 1607, - 1639 - ]], - [[ - 1689, - 1608, - 1607 - ]], - [[ - 1720, - 1719, - 1418 - ]], - [[ - 1758, - 1735, - 1423 - ]], - [[ - 1719, - 1579, - 1418 - ]], - [[ - 1596, - 1421, - 1579 - ]], - [[ - 1321, - 1673, - 1537 - ]], - [[ - 1675, - 1326, - 1676 - ]], - [[ - 1537, - 1676, - 1631 - ]], - [[ - 1673, - 1675, - 1676 - ]], - [[ - 1655, - 1690, - 1652 - ]], - [[ - 1562, - 1408, - 1690 - ]], - [[ - 1560, - 1415, - 1690 - ]], - [[ - 1559, - 1417, - 1415 - ]], - [[ - 1714, - 1711, - 1697 - ]], - [[ - 1714, - 1378, - 1711 - ]], - [[ - 1725, - 1564, - 1493 - ]], - [[ - 1726, - 1456, - 1564 - ]], - [[ - 1642, - 1725, - 1493 - ]], - [[ - 1726, - 1583, - 1456 - ]], - [[ - 1360, - 1726, - 1725 - ]], - [[ - 1360, - 1583, - 1726 - ]], - [[ - 1357, - 1527, - 1613 - ]], - [[ - 1527, - 1370, - 1612 - ]], - [[ - 1740, - 1741, - 1363 - ]], - [[ - 1613, - 1525, - 1741 - ]], - [[ - 1740, - 1363, - 1365 - ]], - [[ - 1741, - 1525, - 1363 - ]], - [[ - 1745, - 1754, - 1470 - ]], - [[ - 1745, - 1701, - 1754 - ]], - [[ - 1710, - 1754, - 1449 - ]], - [[ - 1710, - 1470, - 1754 - ]], - [[ - 1640, - 1689, - 1639 - ]], - [[ - 1473, - 1608, - 1689 - ]], - [[ - 1713, - 1625, - 1667 - ]], - [[ - 1713, - 1626, - 1625 - ]], - [[ - 1351, - 1356, - 1355 - ]], - [[ - 1364, - 1688, - 1356 - ]], - [[ - 1759, - 1331, - 1573 - ]], - [[ - 1332, - 1749, - 1694 - ]], - [[ - 1573, - 1694, - 1504 - ]], - [[ - 1333, - 1332, - 1694 - ]], - [[ - 1573, - 1331, - 1333 - ]], - [[ - 1759, - 1610, - 1760 - ]], - [[ - 1598, - 1522, - 1429 - ]], - [[ - 1523, - 1401, - 1399 - ]], - [[ - 1598, - 1523, - 1522 - ]], - [[ - 1598, - 1401, - 1523 - ]], - [[ - 1500, - 1561, - 1563 - ]], - [[ - 1721, - 1562, - 1561 - ]], - [[ - 1583, - 1557, - 1456 - ]], - [[ - 1557, - 1545, - 1505 - ]], - [[ - 1460, - 1738, - 1722 - ]], - [[ - 1460, - 1425, - 1738 - ]], - [[ - 1751, - 1577, - 675 - ]], - [[ - 1752, - 1422, - 1596 - ]], - [[ - 1729, - 1732, - 1731 - ]], - [[ - 1752, - 1596, - 1732 - ]], - [[ - 1516, - 1756, - 1491 - ]], - [[ - 1489, - 1566, - 1445 - ]], - [[ - 1670, - 1761, - 1516 - ]], - [[ - 1492, - 1476, - 1493 - ]], - [[ - 1762, - 1743, - 1615 - ]], - [[ - 1633, - 700, - 1733 - ]], - [[ - 1615, - 1744, - 1552 - ]], - [[ - 1743, - 1633, - 1431 - ]], - [[ - 1747, - 1633, - 1743 - ]], - [[ - 1747, - 1554, - 1633 - ]], - [[ - 1406, - 1659, - 1657 - ]], - [[ - 1405, - 1723, - 1659 - ]], - [[ - 1470, - 1708, - 1707 - ]], - [[ - 1352, - 1703, - 1699 - ]], - [[ - 1739, - 1638, - 609 - ]], - [[ - 1440, - 1472, - 1638 - ]], - [[ - 1632, - 1742, - 1675 - ]], - [[ - 1585, - 1716, - 1483 - ]], - [[ - 1763, - 1717, - 1742 - ]], - [[ - 1718, - 1362, - 1582 - ]], - [[ - 1722, - 1472, - 1617 - ]], - [[ - 1608, - 1473, - 1472 - ]], - [[ - 1523, - 1399, - 1400 - ]], - [[ - 1401, - 1746, - 1399 - ]], - [[ - 1597, - 1594, - 1593 - ]], - [[ - 1693, - 1633, - 1730 - ]], - [[ - 1595, - 1594, - 1730 - ]], - [[ - 1597, - 1712, - 1594 - ]], - [[ - 1607, - 1696, - 1680 - ]], - [[ - 1686, - 1764, - 1663 - ]], - [[ - 1760, - 1610, - 1332 - ]], - [[ - 1508, - 1570, - 1509 - ]], - [[ - 1759, - 1695, - 1610 - ]], - [[ - 1759, - 1573, - 1695 - ]], - [[ - 1331, - 1760, - 1332 - ]], - [[ - 1331, - 1759, - 1760 - ]], - [[ - 1695, - 1750, - 1610 - ]], - [[ - 1680, - 1696, - 1611 - ]], - [[ - 1457, - 1611, - 1462 - ]], - [[ - 1750, - 1680, - 1611 - ]], - [[ - 1601, - 1661, - 1602 - ]], - [[ - 1601, - 1692, - 1661 - ]], - [[ - 1644, - 1762, - 1615 - ]], - [[ - 1615, - 1551, - 1453 - ]], - [[ - 1600, - 1431, - 1430 - ]], - [[ - 1724, - 1692, - 1432 - ]], - [[ - 1690, - 1653, - 1652 - ]], - [[ - 1690, - 1415, - 1414 - ]], - [[ - 1654, - 1651, - 1683 - ]], - [[ - 1653, - 1414, - 1651 - ]], - [[ - 1651, - 1414, - 1416 - ]], - [[ - 1653, - 1690, - 1414 - ]], - [[ - 1661, - 1691, - 1662 - ]], - [[ - 1724, - 1520, - 1691 - ]], - [[ - 1455, - 1454, - 1477 - ]], - [[ - 1547, - 1504, - 1454 - ]], - [[ - 1722, - 1439, - 1441 - ]], - [[ - 1722, - 1738, - 1439 - ]], - [[ - 1753, - 1761, - 1670 - ]], - [[ - 1701, - 1705, - 1702 - ]], - [[ - 1668, - 1516, - 1488 - ]], - [[ - 1761, - 1702, - 1516 - ]], - [[ - 1516, - 1702, - 1756 - ]], - [[ - 1761, - 1755, - 1702 - ]], - [[ - 1669, - 1753, - 1670 - ]], - [[ - 1755, - 1754, - 1700 - ]], - [[ - 1579, - 1765, - 1418 - ]], - [[ - 1579, - 1421, - 1735 - ]], - [[ - 1599, - 1757, - 1578 - ]], - [[ - 1599, - 1684, - 1757 - ]], - [[ - 1751, - 1758, - 1423 - ]], - [[ - 1765, - 1579, - 1735 - ]], - [[ - 1687, - 1751, - 675 - ]], - [[ - 1752, - 1732, - 1577 - ]], - [[ - 1640, - 1646, - 1474 - ]], - [[ - 1640, - 1648, - 1646 - ]], - [[ - 1357, - 1613, - 1741 - ]], - [[ - 1612, - 1525, - 1613 - ]], - [[ - 1516, - 1668, - 1670 - ]], - [[ - 1625, - 1627, - 1669 - ]], - [[ - 1487, - 1668, - 1488 - ]], - [[ - 1666, - 1625, - 1668 - ]], - [[ - 1755, - 1700, - 1702 - ]], - [[ - 1754, - 1701, - 1700 - ]], - [[ - 1593, - 1595, - 672 - ]], - [[ - 1730, - 1733, - 1595 - ]], - [[ - 1442, - 1609, - 1722 - ]], - [[ - 1764, - 1686, - 1609 - ]], - [[ - 575, - 1453, - 1517 - ]], - [[ - 1615, - 1552, - 1551 - ]], - [[ - 1614, - 1453, - 577 - ]], - [[ - 1551, - 1517, - 1453 - ]], - [[ - 1325, - 1540, - 1326 - ]], - [[ - 1503, - 1571, - 1540 - ]], - [[ - 1519, - 1718, - 1717 - ]], - [[ - 1519, - 1362, - 1718 - ]], - [[ - 1527, - 1621, - 1588 - ]], - [[ - 1366, - 1622, - 1621 - ]], - [[ - 1727, - 1584, - 1586 - ]], - [[ - 1519, - 1717, - 1584 - ]], - [[ - 1649, - 1567, - 1586 - ]], - [[ - 1569, - 1508, - 1727 - ]], - [[ - 1489, - 1511, - 1566 - ]], - [[ - 1737, - 1455, - 1511 - ]], - [[ - 1696, - 1663, - 1664 - ]], - [[ - 1764, - 1609, - 1663 - ]], - [[ - 1618, - 1532, - 1629 - ]], - [[ - 1715, - 1444, - 1532 - ]], - [[ - 1549, - 1709, - 1498 - ]], - [[ - 1328, - 1485, - 1484 - ]], - [[ - 1748, - 1549, - 1498 - ]], - [[ - 1334, - 1543, - 1549 - ]], - [[ - 1484, - 1709, - 1328 - ]], - [[ - 1484, - 1498, - 1709 - ]], - [[ - 1396, - 1406, - 1657 - ]], - [[ - 1766, - 1395, - 1576 - ]], - [[ - 1666, - 1487, - 1447 - ]], - [[ - 1666, - 1668, - 1487 - ]], - [[ - 1464, - 1466, - 1322 - ]], - [[ - 1465, - 1323, - 1466 - ]], - [[ - 1387, - 1390, - 1398 - ]], - [[ - 1387, - 1391, - 1390 - ]], - [[ - 1765, - 1419, - 1418 - ]], - [[ - 1765, - 1735, - 1758 - ]], - [[ - 1419, - 1758, - 1751 - ]], - [[ - 1419, - 1765, - 1758 - ]], - [[ - 1614, - 1644, - 1615 - ]], - [[ - 1747, - 1743, - 1762 - ]], - [[ - 1554, - 1644, - 577 - ]], - [[ - 1747, - 1762, - 1644 - ]], - [[ - 1712, - 1729, - 1736 - ]], - [[ - 673, - 1732, - 1729 - ]], - [[ - 1379, - 1620, - 1369 - ]], - [[ - 1379, - 1628, - 1620 - ]], - [[ - 1628, - 1531, - 1620 - ]], - [[ - 1628, - 1532, - 1531 - ]], - [[ - 1522, - 1380, - 1382 - ]], - [[ - 1522, - 1400, - 1380 - ]], - [[ - 1503, - 1538, - 1571 - ]], - [[ - 1503, - 1502, - 1538 - ]], - [[ - 1506, - 1505, - 1545 - ]], - [[ - 1547, - 1546, - 1505 - ]], - [[ - 1546, - 1557, - 1505 - ]], - [[ - 1514, - 1513, - 1545 - ]], - [[ - 1583, - 1514, - 1557 - ]], - [[ - 1583, - 1515, - 1514 - ]], - [[ - 1551, - 1518, - 1517 - ]], - [[ - 1552, - 1461, - 1518 - ]], - [[ - 1616, - 1645, - 1617 - ]], - [[ - 1518, - 1461, - 1645 - ]], - [[ - 1440, - 1616, - 1472 - ]], - [[ - 1440, - 1518, - 1616 - ]], - [[ - 1432, - 1431, - 1724 - ]], - [[ - 1744, - 1743, - 1431 - ]], - [[ - 1767, - 1755, - 1761 - ]], - [[ - 1767, - 1449, - 1755 - ]], - [[ - 1704, - 1492, - 1756 - ]], - [[ - 1493, - 1565, - 1491 - ]], - [[ - 1756, - 1492, - 1491 - ]], - [[ - 1704, - 1665, - 1492 - ]], - [[ - 1699, - 1708, - 1352 - ]], - [[ - 1470, - 1588, - 1708 - ]], - [[ - 1404, - 1412, - 1656 - ]], - [[ - 1413, - 1501, - 1412 - ]], - [[ - 1420, - 1720, - 1418 - ]], - [[ - 1580, - 1579, - 1719 - ]], - [[ - 1417, - 1720, - 1420 - ]], - [[ - 1417, - 1685, - 1720 - ]], - [[ - 1685, - 1580, - 1720 - ]], - [[ - 1685, - 1578, - 1580 - ]], - [[ - 1391, - 1746, - 1392 - ]], - [[ - 1391, - 1399, - 1746 - ]], - [[ - 1423, - 1752, - 1751 - ]], - [[ - 1423, - 1422, - 1752 - ]], - [[ - 1565, - 1489, - 1488 - ]], - [[ - 1565, - 1558, - 1489 - ]], - [[ - 1490, - 1325, - 1327 - ]], - [[ - 1490, - 1485, - 1325 - ]], - [[ - 1581, - 1499, - 1685 - ]], - [[ - 1413, - 1578, - 1499 - ]], - [[ - 1727, - 1567, - 1569 - ]], - [[ - 1680, - 1750, - 1568 - ]], - [[ - 1568, - 1587, - 1569 - ]], - [[ - 1568, - 1695, - 1587 - ]], - [[ - 1727, - 1508, - 1510 - ]], - [[ - 1569, - 1587, - 1508 - ]], - [[ - 1637, - 1636, - 1649 - ]], - [[ - 1680, - 1568, - 1636 - ]], - [[ - 1586, - 1567, - 1727 - ]], - [[ - 1649, - 1636, - 1567 - ]], - [[ - 1767, - 1450, - 1449 - ]], - [[ - 1669, - 1627, - 1450 - ]], - [[ - 1767, - 1753, - 1450 - ]], - [[ - 1767, - 1761, - 1753 - ]], - [[ - 1435, - 1316, - 1433 - ]], - [[ - 1684, - 1599, - 1575 - ]], - [[ - 1734, - 1684, - 1316 - ]], - [[ - 1734, - 1757, - 1684 - ]], - [[ - 1662, - 1589, - 1385 - ]], - [[ - 1521, - 1433, - 1428 - ]], - [[ - 1521, - 1428, - 1589 - ]], - [[ - 1433, - 1316, - 1318 - ]], - [[ - 1598, - 1318, - 1317 - ]], - [[ - 1598, - 1429, - 1318 - ]], - [[ - 1469, - 1471, - 1697 - ]], - [[ - 1710, - 1449, - 1471 - ]], - [[ - 1349, - 1605, - 1556 - ]], - [[ - 1606, - 1346, - 1605 - ]], - [[ - 1349, - 1556, - 1350 - ]], - [[ - 1605, - 1346, - 1556 - ]], - [[ - 1425, - 1427, - 1603 - ]], - [[ - 1430, - 1602, - 1427 - ]], - [[ - 1427, - 1679, - 1681 - ]], - [[ - 1602, - 1662, - 1679 - ]], - [[ - 1679, - 1682, - 1681 - ]], - [[ - 1679, - 1592, - 1682 - ]], - [[ - 1496, - 1548, - 1367 - ]], - [[ - 1497, - 1494, - 1548 - ]], - [[ - 1729, - 1731, - 1736 - ]], - [[ - 1732, - 1734, - 1731 - ]], - [[ - 1534, - 1533, - 1364 - ]], - [[ - 1535, - 1364, - 1533 - ]], - [[ - 1525, - 1534, - 1363 - ]], - [[ - 1525, - 1535, - 1534 - ]], - [[ - 1387, - 1397, - 1393 - ]], - [[ - 1387, - 1398, - 1397 - ]], - [[ - 1744, - 1600, - 1552 - ]], - [[ - 1430, - 1427, - 1426 - ]], - [[ - 1337, - 1343, - 1624 - ]], - [[ - 1344, - 1348, - 1343 - ]], - [[ - 1699, - 1698, - 1707 - ]], - [[ - 1550, - 1748, - 1698 - ]], - [[ - 1404, - 1576, - 1575 - ]], - [[ - 1766, - 1396, - 1395 - ]], - [[ - 1406, - 1766, - 1576 - ]], - [[ - 1406, - 1396, - 1766 - ]], - [[ - 1354, - 1349, - 1351 - ]], - [[ - 1354, - 1606, - 1349 - ]], - [[ - 1721, - 1408, - 1562 - ]], - [[ - 1721, - 1410, - 1408 - ]], - [[ - 1648, - 1637, - 1649 - ]], - [[ - 1639, - 1607, - 1635 - ]], - [[ - 1639, - 1635, - 1637 - ]], - [[ - 1607, - 1680, - 1635 - ]], - [[ - 1317, - 1394, - 1598 - ]], - [[ - 1317, - 1395, - 1394 - ]], - [[ - 1716, - 1585, - 1672 - ]], - [[ - 1717, - 1582, - 1742 - ]], - [[ - 1763, - 1585, - 1584 - ]], - [[ - 1742, - 1672, - 1585 - ]], - [[ - 1585, - 1763, - 1742 - ]], - [[ - 1584, - 1717, - 1763 - ]], - [[ - 1552, - 1600, - 1426 - ]], - [[ - 1744, - 1431, - 1600 - ]], - [[ - 1646, - 1648, - 1482 - ]], - [[ - 1640, - 1637, - 1648 - ]], - [[ - 1438, - 1437, - 1452 - ]], - [[ - 1681, - 1403, - 1437 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b22204791-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef814749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1768, - 1769, - 1770 - ]], - [[ - 1771, - 1772, - 1773 - ]], - [[ - 1774, - 1775, - 1776 - ]], - [[ - 1777, - 1778, - 1779 - ]], - [[ - 1780, - 1781, - 1782 - ]], - [[ - 1783, - 1784, - 1778 - ]], - [[ - 1785, - 1783, - 1778 - ]], - [[ - 1786, - 1787, - 1783 - ]], - [[ - 1788, - 1789, - 1790 - ]], - [[ - 1791, - 1786, - 1783 - ]], - [[ - 1792, - 1793, - 1786 - ]], - [[ - 1794, - 1792, - 1786 - ]], - [[ - 1795, - 1796, - 1792 - ]], - [[ - 1794, - 1797, - 1792 - ]], - [[ - 1795, - 1792, - 1797 - ]], - [[ - 1798, - 1799, - 1800 - ]], - [[ - 1791, - 1794, - 1786 - ]], - [[ - 1801, - 1797, - 1794 - ]], - [[ - 1802, - 1794, - 1791 - ]], - [[ - 1785, - 1791, - 1783 - ]], - [[ - 1803, - 1802, - 1791 - ]], - [[ - 1804, - 1785, - 1805 - ]], - [[ - 1798, - 1800, - 1806 - ]], - [[ - 1807, - 1808, - 1799 - ]], - [[ - 1799, - 1808, - 1800 - ]], - [[ - 1809, - 1810, - 1774 - ]], - [[ - 1811, - 1809, - 1812 - ]], - [[ - 1813, - 1814, - 1815 - ]], - [[ - 1812, - 1816, - 1811 - ]], - [[ - 1812, - 1815, - 1816 - ]], - [[ - 1812, - 1813, - 1815 - ]], - [[ - 1813, - 1817, - 1814 - ]], - [[ - 1818, - 1772, - 1817 - ]], - [[ - 1771, - 1770, - 1772 - ]], - [[ - 1771, - 1768, - 1770 - ]], - [[ - 1768, - 1819, - 1769 - ]], - [[ - 1820, - 1821, - 1822 - ]], - [[ - 1820, - 1782, - 1823 - ]], - [[ - 1821, - 1820, - 1823 - ]], - [[ - 1823, - 1782, - 1781 - ]], - [[ - 1788, - 1780, - 1782 - ]], - [[ - 1788, - 1790, - 1780 - ]], - [[ - 1824, - 1825, - 1789 - ]], - [[ - 1826, - 1825, - 1824 - ]], - [[ - 1827, - 1789, - 1788 - ]], - [[ - 1776, - 1775, - 1828 - ]], - [[ - 1810, - 1828, - 1775 - ]], - [[ - 1776, - 1829, - 1808 - ]], - [[ - 1776, - 1828, - 1829 - ]], - [[ - 1812, - 1774, - 1830 - ]], - [[ - 1830, - 1774, - 1776 - ]], - [[ - 1820, - 1819, - 1771 - ]], - [[ - 1819, - 1822, - 1769 - ]], - [[ - 1827, - 1824, - 1789 - ]], - [[ - 1827, - 1831, - 1824 - ]], - [[ - 1807, - 1799, - 1779 - ]], - [[ - 1800, - 1808, - 1828 - ]], - [[ - 1832, - 1804, - 1777 - ]], - [[ - 1785, - 1778, - 1777 - ]], - [[ - 1798, - 1832, - 1779 - ]], - [[ - 1805, - 1785, - 1777 - ]], - [[ - 1773, - 1818, - 1817 - ]], - [[ - 1773, - 1772, - 1818 - ]], - [[ - 1809, - 1774, - 1812 - ]], - [[ - 1810, - 1775, - 1774 - ]], - [[ - 1777, - 1804, - 1805 - ]], - [[ - 1806, - 1785, - 1804 - ]], - [[ - 1830, - 1807, - 1779 - ]], - [[ - 1808, - 1829, - 1828 - ]], - [[ - 1830, - 1808, - 1807 - ]], - [[ - 1830, - 1776, - 1808 - ]], - [[ - 1771, - 1819, - 1768 - ]], - [[ - 1820, - 1822, - 1819 - ]], - [[ - 1773, - 1813, - 1812 - ]], - [[ - 1773, - 1817, - 1813 - ]], - [[ - 1831, - 1826, - 1824 - ]], - [[ - 1831, - 1825, - 1826 - ]], - [[ - 1832, - 1798, - 1806 - ]], - [[ - 1779, - 1799, - 1798 - ]], - [[ - 1804, - 1832, - 1806 - ]], - [[ - 1777, - 1779, - 1832 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b22206eb6-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cfa49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1833, - 1834, - 1835 - ]], - [[ - 1836, - 1837, - 1838 - ]], - [[ - 1839, - 174, - 1840 - ]], - [[ - 1841, - 1842, - 172 - ]], - [[ - 1837, - 172, - 1843 - ]], - [[ - 1844, - 1845, - 1843 - ]], - [[ - 1846, - 172, - 173 - ]], - [[ - 1847, - 1848, - 1846 - ]], - [[ - 1849, - 1850, - 1851 - ]], - [[ - 1846, - 1843, - 172 - ]], - [[ - 1834, - 173, - 1835 - ]], - [[ - 1852, - 1853, - 1835 - ]], - [[ - 1835, - 173, - 1840 - ]], - [[ - 173, - 1839, - 1840 - ]], - [[ - 173, - 174, - 1839 - ]], - [[ - 1845, - 1837, - 1843 - ]], - [[ - 1845, - 1838, - 1837 - ]], - [[ - 1854, - 1853, - 1852 - ]], - [[ - 1855, - 1856, - 1857 - ]], - [[ - 1848, - 1858, - 1846 - ]], - [[ - 1846, - 1858, - 1843 - ]], - [[ - 1835, - 1853, - 1833 - ]], - [[ - 1849, - 1851, - 1846 - ]], - [[ - 1855, - 1857, - 1849 - ]], - [[ - 1851, - 1847, - 1846 - ]], - [[ - 1833, - 1846, - 173 - ]], - [[ - 1849, - 1857, - 1850 - ]], - [[ - 172, - 1836, - 1841 - ]], - [[ - 172, - 1837, - 1836 - ]], - [[ - 1859, - 1850, - 1857 - ]], - [[ - 1859, - 1851, - 1850 - ]], - [[ - 1834, - 1833, - 173 - ]], - [[ - 1853, - 1846, - 1833 - ]], - [[ - 1853, - 1849, - 1846 - ]], - [[ - 1856, - 1860, - 1859 - ]], - [[ - 1860, - 1854, - 1852 - ]], - [[ - 1860, - 1853, - 1854 - ]], - [[ - 1853, - 1855, - 1849 - ]], - [[ - 1853, - 1860, - 1855 - ]], - [[ - 1857, - 1856, - 1859 - ]], - [[ - 1855, - 1860, - 1856 - ]], - [[ - 1858, - 1844, - 1843 - ]], - [[ - 1858, - 1845, - 1844 - ]], - [[ - 1838, - 1841, - 1836 - ]], - [[ - 1838, - 1842, - 1841 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222095f0-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cb249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1861, - 1862, - 1863 - ]], - [[ - 1864, - 1865, - 1866 - ]], - [[ - 1867, - 1868, - 1865 - ]], - [[ - 1869, - 1870, - 1871 - ]], - [[ - 1872, - 1873, - 1870 - ]], - [[ - 1874, - 1875, - 1876 - ]], - [[ - 1877, - 1869, - 1871 - ]], - [[ - 1863, - 1873, - 1867 - ]], - [[ - 1863, - 1878, - 1873 - ]], - [[ - 1862, - 1879, - 1878 - ]], - [[ - 1868, - 1875, - 1874 - ]], - [[ - 1867, - 1873, - 1876 - ]], - [[ - 1876, - 1869, - 1877 - ]], - [[ - 1872, - 1870, - 1869 - ]], - [[ - 1867, - 1864, - 1863 - ]], - [[ - 1866, - 1863, - 1864 - ]], - [[ - 1874, - 1876, - 1877 - ]], - [[ - 1875, - 1867, - 1876 - ]], - [[ - 1861, - 1863, - 1866 - ]], - [[ - 1862, - 1878, - 1863 - ]], - [[ - 1876, - 1872, - 1869 - ]], - [[ - 1876, - 1873, - 1872 - ]], - [[ - 1864, - 1867, - 1865 - ]], - [[ - 1875, - 1868, - 1867 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2221a6f3-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef660449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1880, - 1881, - 1882 - ]], - [[ - 1880, - 1882, - 1883 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2221ce24-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2015-01-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.35f5257403d44b2da79b759adfef6652", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1884, - 1885, - 1886 - ]], - [[ - 1884, - 1886, - 1887 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2222df3c-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef8a4249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1888, - 1889, - 1890 - ]], - [[ - 1888, - 1891, - 1892 - ]], - [[ - 1888, - 1893, - 1891 - ]], - [[ - 1888, - 1894, - 1893 - ]], - [[ - 1888, - 1890, - 1894 - ]], - [[ - 1889, - 1895, - 1890 - ]], - [[ - 1889, - 1896, - 1895 - ]], - [[ - 1889, - 1897, - 1896 - ]], - [[ - 1898, - 1899, - 1889 - ]], - [[ - 1900, - 1898, - 1889 - ]], - [[ - 1901, - 1900, - 1889 - ]], - [[ - 1902, - 1901, - 1889 - ]], - [[ - 1902, - 1903, - 1901 - ]], - [[ - 1902, - 1904, - 1903 - ]], - [[ - 1902, - 1905, - 1904 - ]], - [[ - 1902, - 1906, - 1905 - ]], - [[ - 1907, - 1908, - 1902 - ]], - [[ - 1902, - 1908, - 1909 - ]], - [[ - 1910, - 1907, - 1911 - ]], - [[ - 1911, - 1907, - 1912 - ]], - [[ - 1912, - 1907, - 1902 - ]], - [[ - 1913, - 1914, - 1912 - ]], - [[ - 1915, - 1913, - 1912 - ]], - [[ - 1912, - 1916, - 1917 - ]], - [[ - 1918, - 1919, - 1912 - ]], - [[ - 1920, - 1918, - 1912 - ]], - [[ - 1921, - 1920, - 1912 - ]], - [[ - 1922, - 1921, - 1917 - ]], - [[ - 1917, - 1916, - 1923 - ]], - [[ - 1924, - 1917, - 1923 - ]], - [[ - 1925, - 1926, - 1917 - ]], - [[ - 1927, - 1925, - 1917 - ]], - [[ - 1928, - 1927, - 1917 - ]], - [[ - 1923, - 122, - 123 - ]], - [[ - 1916, - 121, - 122 - ]], - [[ - 1888, - 1892, - 120 - ]], - [[ - 121, - 1888, - 120 - ]], - [[ - 1924, - 1923, - 123 - ]], - [[ - 1924, - 1928, - 1917 - ]], - [[ - 1923, - 1916, - 122 - ]], - [[ - 1907, - 1929, - 1908 - ]], - [[ - 1912, - 1914, - 1911 - ]], - [[ - 1910, - 1929, - 1907 - ]], - [[ - 1902, - 1889, - 1916 - ]], - [[ - 1899, - 1897, - 1889 - ]], - [[ - 1912, - 1902, - 1916 - ]], - [[ - 1909, - 1906, - 1902 - ]], - [[ - 1916, - 1888, - 121 - ]], - [[ - 1916, - 1889, - 1888 - ]], - [[ - 1930, - 1917, - 1926 - ]], - [[ - 1930, - 1922, - 1917 - ]], - [[ - 1921, - 1912, - 1917 - ]], - [[ - 1919, - 1915, - 1912 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2223065e-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef501749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1931, - 1932, - 1933 - ]], - [[ - 1934, - 350, - 351 - ]], - [[ - 1935, - 347, - 348 - ]], - [[ - 347, - 1936, - 346 - ]], - [[ - 1937, - 1938, - 1939 - ]], - [[ - 1940, - 1941, - 1942 - ]], - [[ - 1943, - 1941, - 1940 - ]], - [[ - 1944, - 1945, - 1946 - ]], - [[ - 1947, - 1948, - 1949 - ]], - [[ - 1950, - 1951, - 1952 - ]], - [[ - 1953, - 1954, - 1955 - ]], - [[ - 1956, - 1957, - 1958 - ]], - [[ - 1959, - 1960, - 1961 - ]], - [[ - 1962, - 1963, - 1959 - ]], - [[ - 1964, - 1962, - 1959 - ]], - [[ - 1965, - 1961, - 1966 - ]], - [[ - 1967, - 1968, - 1969 - ]], - [[ - 1970, - 1971, - 1972 - ]], - [[ - 1973, - 1974, - 1975 - ]], - [[ - 1976, - 292, - 291 - ]], - [[ - 1959, - 1961, - 1977 - ]], - [[ - 1978, - 1979, - 1980 - ]], - [[ - 1981, - 1982, - 1983 - ]], - [[ - 1984, - 319, - 320 - ]], - [[ - 1985, - 304, - 1986 - ]], - [[ - 1987, - 1988, - 1989 - ]], - [[ - 1990, - 386, - 1989 - ]], - [[ - 386, - 1991, - 385 - ]], - [[ - 385, - 1991, - 383 - ]], - [[ - 383, - 1991, - 1992 - ]], - [[ - 1993, - 1994, - 1995 - ]], - [[ - 1996, - 1997, - 1998 - ]], - [[ - 1999, - 2000, - 2001 - ]], - [[ - 2002, - 2003, - 2000 - ]], - [[ - 2004, - 2005, - 2006 - ]], - [[ - 2007, - 2008, - 2009 - ]], - [[ - 2010, - 2011, - 2012 - ]], - [[ - 2013, - 2014, - 2015 - ]], - [[ - 1933, - 1932, - 2016 - ]], - [[ - 2011, - 2017, - 2018 - ]], - [[ - 2018, - 2019, - 2011 - ]], - [[ - 2019, - 2018, - 2020 - ]], - [[ - 2021, - 2022, - 2023 - ]], - [[ - 2024, - 2025, - 2026 - ]], - [[ - 2027, - 2028, - 352 - ]], - [[ - 2029, - 2030, - 2031 - ]], - [[ - 2032, - 2002, - 2033 - ]], - [[ - 1989, - 386, - 317 - ]], - [[ - 1980, - 2034, - 2035 - ]], - [[ - 2035, - 350, - 1980 - ]], - [[ - 2013, - 2036, - 2037 - ]], - [[ - 1985, - 1982, - 304 - ]], - [[ - 1963, - 2038, - 2039 - ]], - [[ - 2040, - 2041, - 2042 - ]], - [[ - 2043, - 2044, - 1983 - ]], - [[ - 2045, - 2046, - 2047 - ]], - [[ - 2007, - 2048, - 2008 - ]], - [[ - 2049, - 2050, - 2051 - ]], - [[ - 2052, - 2053, - 2054 - ]], - [[ - 2055, - 2056, - 2057 - ]], - [[ - 2020, - 2009, - 2058 - ]], - [[ - 2059, - 2060, - 350 - ]], - [[ - 2061, - 1974, - 2062 - ]], - [[ - 2063, - 2064, - 1960 - ]], - [[ - 2065, - 1975, - 2066 - ]], - [[ - 2067, - 292, - 1976 - ]], - [[ - 347, - 1947, - 2068 - ]], - [[ - 2069, - 2070, - 2071 - ]], - [[ - 2045, - 1994, - 1993 - ]], - [[ - 2072, - 2073, - 1982 - ]], - [[ - 2074, - 2071, - 2075 - ]], - [[ - 2076, - 2077, - 2078 - ]], - [[ - 2046, - 1984, - 320 - ]], - [[ - 2046, - 2045, - 1984 - ]], - [[ - 2079, - 2080, - 2081 - ]], - [[ - 2082, - 2081, - 2083 - ]], - [[ - 292, - 1986, - 304 - ]], - [[ - 2084, - 2052, - 2054 - ]], - [[ - 349, - 2085, - 2086 - ]], - [[ - 2057, - 1947, - 347 - ]], - [[ - 2087, - 2067, - 1976 - ]], - [[ - 2088, - 2052, - 2067 - ]], - [[ - 2060, - 2089, - 1978 - ]], - [[ - 2090, - 2091, - 2092 - ]], - [[ - 2093, - 2094, - 2001 - ]], - [[ - 2008, - 2095, - 2096 - ]], - [[ - 2097, - 2098, - 2099 - ]], - [[ - 2037, - 2100, - 2101 - ]], - [[ - 2102, - 2033, - 2103 - ]], - [[ - 2104, - 2097, - 2001 - ]], - [[ - 2105, - 2106, - 2107 - ]], - [[ - 2108, - 2109, - 2110 - ]], - [[ - 2111, - 2078, - 2112 - ]], - [[ - 2074, - 1945, - 1943 - ]], - [[ - 2113, - 2114, - 2075 - ]], - [[ - 1953, - 1950, - 1954 - ]], - [[ - 2028, - 2115, - 2116 - ]], - [[ - 1997, - 2117, - 2118 - ]], - [[ - 2088, - 2061, - 2062 - ]], - [[ - 2119, - 2062, - 1974 - ]], - [[ - 2067, - 2052, - 292 - ]], - [[ - 2088, - 2120, - 2052 - ]], - [[ - 2087, - 2061, - 2088 - ]], - [[ - 2121, - 1961, - 1969 - ]], - [[ - 293, - 2065, - 291 - ]], - [[ - 2065, - 1973, - 1975 - ]], - [[ - 2122, - 2123, - 1963 - ]], - [[ - 2124, - 2120, - 2088 - ]], - [[ - 2125, - 2041, - 2126 - ]], - [[ - 2040, - 2127, - 2120 - ]], - [[ - 1961, - 1960, - 1967 - ]], - [[ - 2042, - 2041, - 2125 - ]], - [[ - 2128, - 2129, - 352 - ]], - [[ - 2116, - 2130, - 2080 - ]], - [[ - 1935, - 2057, - 347 - ]], - [[ - 1958, - 1936, - 1956 - ]], - [[ - 2057, - 2056, - 2131 - ]], - [[ - 2132, - 2127, - 1948 - ]], - [[ - 2037, - 2110, - 2100 - ]], - [[ - 2133, - 2093, - 2109 - ]], - [[ - 2032, - 2033, - 2048 - ]], - [[ - 2134, - 2015, - 2135 - ]], - [[ - 2004, - 2136, - 2000 - ]], - [[ - 2032, - 2048, - 2007 - ]], - [[ - 2137, - 2138, - 2038 - ]], - [[ - 2139, - 2140, - 2042 - ]], - [[ - 1986, - 2054, - 1985 - ]], - [[ - 2084, - 292, - 2052 - ]], - [[ - 2141, - 1981, - 2142 - ]], - [[ - 2143, - 2053, - 2144 - ]], - [[ - 1979, - 2145, - 2034 - ]], - [[ - 349, - 350, - 2146 - ]], - [[ - 1991, - 2109, - 2093 - ]], - [[ - 1991, - 386, - 2109 - ]], - [[ - 2147, - 2137, - 2038 - ]], - [[ - 2148, - 2138, - 2137 - ]], - [[ - 2124, - 2149, - 2120 - ]], - [[ - 2039, - 2122, - 1963 - ]], - [[ - 2052, - 2120, - 2053 - ]], - [[ - 2088, - 2062, - 2124 - ]], - [[ - 2106, - 2150, - 2151 - ]], - [[ - 2097, - 1999, - 2001 - ]], - [[ - 2152, - 2153, - 2154 - ]], - [[ - 2006, - 2136, - 2004 - ]], - [[ - 320, - 2155, - 2047 - ]], - [[ - 2156, - 304, - 1982 - ]], - [[ - 2157, - 2156, - 2073 - ]], - [[ - 2158, - 304, - 2156 - ]], - [[ - 2086, - 2085, - 2057 - ]], - [[ - 2159, - 2146, - 1937 - ]], - [[ - 2160, - 2155, - 320 - ]], - [[ - 2161, - 2158, - 2162 - ]], - [[ - 2163, - 2164, - 2165 - ]], - [[ - 2166, - 1941, - 2165 - ]], - [[ - 2167, - 2168, - 2157 - ]], - [[ - 2158, - 302, - 304 - ]], - [[ - 2169, - 2170, - 2161 - ]], - [[ - 2169, - 2160, - 2170 - ]], - [[ - 2103, - 2033, - 2171 - ]], - [[ - 2103, - 2150, - 2134 - ]], - [[ - 2172, - 2144, - 2053 - ]], - [[ - 2173, - 1983, - 1982 - ]], - [[ - 1994, - 2073, - 2072 - ]], - [[ - 2110, - 2109, - 1990 - ]], - [[ - 2060, - 1978, - 350 - ]], - [[ - 2089, - 1979, - 1978 - ]], - [[ - 2174, - 2175, - 2051 - ]], - [[ - 2176, - 2011, - 2019 - ]], - [[ - 2177, - 2178, - 1952 - ]], - [[ - 2112, - 1954, - 1950 - ]], - [[ - 2153, - 2179, - 2154 - ]], - [[ - 2005, - 2004, - 1999 - ]], - [[ - 2139, - 2180, - 2069 - ]], - [[ - 2070, - 1951, - 2071 - ]], - [[ - 2181, - 1940, - 1942 - ]], - [[ - 2182, - 1948, - 2127 - ]], - [[ - 1968, - 2040, - 2120 - ]], - [[ - 1958, - 1943, - 1940 - ]], - [[ - 2183, - 2184, - 2154 - ]], - [[ - 2179, - 2153, - 2098 - ]], - [[ - 2010, - 2012, - 2016 - ]], - [[ - 2011, - 2176, - 2185 - ]], - [[ - 2147, - 1962, - 1964 - ]], - [[ - 2147, - 2038, - 1963 - ]], - [[ - 1998, - 2118, - 2020 - ]], - [[ - 2009, - 2017, - 2007 - ]], - [[ - 1996, - 2029, - 2031 - ]], - [[ - 2020, - 2186, - 2009 - ]], - [[ - 2009, - 2008, - 2058 - ]], - [[ - 2048, - 2102, - 2008 - ]], - [[ - 2013, - 2187, - 2014 - ]], - [[ - 2014, - 2135, - 2015 - ]], - [[ - 2003, - 2032, - 2007 - ]], - [[ - 2003, - 2002, - 2032 - ]], - [[ - 2066, - 1975, - 2061 - ]], - [[ - 2065, - 2188, - 1973 - ]], - [[ - 2189, - 1950, - 1952 - ]], - [[ - 2189, - 2112, - 1950 - ]], - [[ - 2129, - 2027, - 352 - ]], - [[ - 2129, - 2115, - 2027 - ]], - [[ - 1968, - 1967, - 2040 - ]], - [[ - 1960, - 2123, - 2063 - ]], - [[ - 2190, - 1995, - 1994 - ]], - [[ - 319, - 1984, - 1993 - ]], - [[ - 291, - 2191, - 1976 - ]], - [[ - 2192, - 2065, - 2191 - ]], - [[ - 2108, - 2133, - 2109 - ]], - [[ - 2104, - 2193, - 2179 - ]], - [[ - 2036, - 2108, - 2110 - ]], - [[ - 2036, - 2015, - 2107 - ]], - [[ - 1960, - 1959, - 2123 - ]], - [[ - 1962, - 2147, - 1963 - ]], - [[ - 2049, - 2194, - 2118 - ]], - [[ - 2175, - 2174, - 2176 - ]], - [[ - 2155, - 2169, - 2162 - ]], - [[ - 2170, - 302, - 2158 - ]], - [[ - 1987, - 1989, - 317 - ]], - [[ - 1988, - 1990, - 1989 - ]], - [[ - 2195, - 2118, - 2117 - ]], - [[ - 2186, - 2017, - 2009 - ]], - [[ - 320, - 2047, - 2046 - ]], - [[ - 2155, - 2196, - 2047 - ]], - [[ - 2026, - 2197, - 1934 - ]], - [[ - 2198, - 2030, - 2199 - ]], - [[ - 2200, - 2128, - 2023 - ]], - [[ - 2117, - 2021, - 2195 - ]], - [[ - 2199, - 2030, - 2029 - ]], - [[ - 2083, - 2201, - 2117 - ]], - [[ - 2028, - 2116, - 2202 - ]], - [[ - 2203, - 2197, - 2204 - ]], - [[ - 2119, - 2205, - 2062 - ]], - [[ - 2119, - 1961, - 2121 - ]], - [[ - 1964, - 1959, - 1977 - ]], - [[ - 1963, - 2123, - 1959 - ]], - [[ - 1999, - 2004, - 2000 - ]], - [[ - 1999, - 2097, - 2005 - ]], - [[ - 2086, - 2057, - 2206 - ]], - [[ - 2085, - 349, - 2055 - ]], - [[ - 2193, - 2207, - 2183 - ]], - [[ - 2154, - 2208, - 2152 - ]], - [[ - 2058, - 2096, - 2014 - ]], - [[ - 2058, - 2008, - 2096 - ]], - [[ - 2167, - 2073, - 1994 - ]], - [[ - 2156, - 1982, - 2073 - ]], - [[ - 2195, - 2050, - 2118 - ]], - [[ - 2051, - 2175, - 2049 - ]], - [[ - 2095, - 2102, - 2134 - ]], - [[ - 2102, - 2103, - 2134 - ]], - [[ - 2135, - 2095, - 2134 - ]], - [[ - 2048, - 2033, - 2102 - ]], - [[ - 2034, - 1938, - 2209 - ]], - [[ - 2085, - 2055, - 2057 - ]], - [[ - 2209, - 1938, - 1937 - ]], - [[ - 2210, - 2053, - 1971 - ]], - [[ - 2131, - 2056, - 1970 - ]], - [[ - 2127, - 2053, - 2120 - ]], - [[ - 2131, - 1970, - 2132 - ]], - [[ - 2172, - 1939, - 1938 - ]], - [[ - 2025, - 2116, - 2204 - ]], - [[ - 2130, - 2129, - 2211 - ]], - [[ - 2025, - 2202, - 2116 - ]], - [[ - 351, - 2028, - 2202 - ]], - [[ - 2136, - 2002, - 2000 - ]], - [[ - 2171, - 2033, - 2002 - ]], - [[ - 1947, - 2131, - 1948 - ]], - [[ - 1947, - 2057, - 2131 - ]], - [[ - 2146, - 2212, - 2213 - ]], - [[ - 2146, - 2034, - 2212 - ]], - [[ - 2175, - 2176, - 2194 - ]], - [[ - 2174, - 2185, - 2176 - ]], - [[ - 2162, - 2158, - 2156 - ]], - [[ - 2161, - 2170, - 2158 - ]], - [[ - 2164, - 2166, - 2165 - ]], - [[ - 2214, - 1941, - 2166 - ]], - [[ - 319, - 1987, - 317 - ]], - [[ - 319, - 1988, - 1987 - ]], - [[ - 2215, - 1983, - 2044 - ]], - [[ - 2072, - 2190, - 1994 - ]], - [[ - 2216, - 2044, - 2217 - ]], - [[ - 2092, - 2215, - 2044 - ]], - [[ - 2053, - 2143, - 2054 - ]], - [[ - 2217, - 2044, - 2043 - ]], - [[ - 2143, - 1985, - 2054 - ]], - [[ - 2143, - 2173, - 1985 - ]], - [[ - 2218, - 2215, - 2092 - ]], - [[ - 2141, - 2110, - 1981 - ]], - [[ - 2219, - 2220, - 2221 - ]], - [[ - 2220, - 2222, - 2164 - ]], - [[ - 2223, - 2196, - 2167 - ]], - [[ - 2155, - 2162, - 2168 - ]], - [[ - 2223, - 2167, - 1994 - ]], - [[ - 2157, - 2162, - 2156 - ]], - [[ - 2201, - 2022, - 2117 - ]], - [[ - 2200, - 2023, - 2022 - ]], - [[ - 2082, - 2083, - 2224 - ]], - [[ - 2130, - 2116, - 2115 - ]], - [[ - 2094, - 2104, - 2001 - ]], - [[ - 2133, - 2108, - 2193 - ]], - [[ - 2133, - 2193, - 2104 - ]], - [[ - 2108, - 2107, - 2207 - ]], - [[ - 2056, - 2225, - 1970 - ]], - [[ - 2172, - 1938, - 2145 - ]], - [[ - 351, - 2024, - 1934 - ]], - [[ - 2204, - 2197, - 2026 - ]], - [[ - 2113, - 2163, - 2165 - ]], - [[ - 2222, - 2214, - 2166 - ]], - [[ - 2226, - 2199, - 2029 - ]], - [[ - 2100, - 2218, - 2091 - ]], - [[ - 2183, - 2154, - 2179 - ]], - [[ - 2184, - 2208, - 2154 - ]], - [[ - 2122, - 2063, - 2123 - ]], - [[ - 2122, - 2125, - 2126 - ]], - [[ - 2199, - 2090, - 2089 - ]], - [[ - 2227, - 2228, - 2145 - ]], - [[ - 2146, - 2035, - 2034 - ]], - [[ - 2146, - 350, - 2035 - ]], - [[ - 2142, - 1981, - 1983 - ]], - [[ - 1995, - 1988, - 319 - ]], - [[ - 302, - 2160, - 320 - ]], - [[ - 302, - 2170, - 2160 - ]], - [[ - 2185, - 1931, - 2229 - ]], - [[ - 2174, - 1932, - 1931 - ]], - [[ - 2069, - 2074, - 2230 - ]], - [[ - 1945, - 1941, - 1943 - ]], - [[ - 2231, - 2068, - 2232 - ]], - [[ - 1956, - 347, - 2068 - ]], - [[ - 2233, - 2230, - 2234 - ]], - [[ - 2068, - 1947, - 1949 - ]], - [[ - 2232, - 1949, - 2231 - ]], - [[ - 2230, - 2074, - 1943 - ]], - [[ - 2235, - 2076, - 2236 - ]], - [[ - 2237, - 2164, - 2163 - ]], - [[ - 2159, - 2055, - 349 - ]], - [[ - 2159, - 1939, - 2055 - ]], - [[ - 2191, - 2066, - 1976 - ]], - [[ - 2191, - 2065, - 2066 - ]], - [[ - 293, - 2188, - 2065 - ]], - [[ - 293, - 2119, - 1973 - ]], - [[ - 2205, - 2121, - 2149 - ]], - [[ - 2205, - 2119, - 2121 - ]], - [[ - 2205, - 2124, - 2062 - ]], - [[ - 2205, - 2149, - 2124 - ]], - [[ - 2096, - 2095, - 2135 - ]], - [[ - 2008, - 2102, - 2095 - ]], - [[ - 2116, - 2203, - 2204 - ]], - [[ - 2081, - 2082, - 2203 - ]], - [[ - 2058, - 2014, - 2187 - ]], - [[ - 2096, - 2135, - 2014 - ]], - [[ - 2148, - 2139, - 2138 - ]], - [[ - 2148, - 2180, - 2139 - ]], - [[ - 291, - 2192, - 2191 - ]], - [[ - 291, - 2065, - 2192 - ]], - [[ - 2113, - 2075, - 2163 - ]], - [[ - 1955, - 1954, - 2078 - ]], - [[ - 2071, - 2077, - 2075 - ]], - [[ - 2076, - 2237, - 2163 - ]], - [[ - 2197, - 2030, - 2059 - ]], - [[ - 2199, - 2089, - 2198 - ]], - [[ - 2238, - 2030, - 2198 - ]], - [[ - 2197, - 2203, - 2082 - ]], - [[ - 2227, - 2239, - 2228 - ]], - [[ - 2092, - 2044, - 2216 - ]], - [[ - 2034, - 2145, - 1938 - ]], - [[ - 2228, - 2144, - 2145 - ]], - [[ - 2104, - 2098, - 2097 - ]], - [[ - 2104, - 2179, - 2098 - ]], - [[ - 2133, - 2094, - 2093 - ]], - [[ - 2133, - 2104, - 2094 - ]], - [[ - 1998, - 2020, - 2058 - ]], - [[ - 2118, - 2019, - 2020 - ]], - [[ - 2018, - 2186, - 2020 - ]], - [[ - 2018, - 2017, - 2186 - ]], - [[ - 2081, - 2080, - 2083 - ]], - [[ - 2211, - 2128, - 2240 - ]], - [[ - 2201, - 2200, - 2022 - ]], - [[ - 2240, - 2128, - 2200 - ]], - [[ - 2200, - 2241, - 2240 - ]], - [[ - 2081, - 2203, - 2079 - ]], - [[ - 1941, - 1946, - 2165 - ]], - [[ - 1945, - 2074, - 1946 - ]], - [[ - 1978, - 1980, - 350 - ]], - [[ - 1979, - 2034, - 1980 - ]], - [[ - 2242, - 2190, - 2072 - ]], - [[ - 1995, - 319, - 1993 - ]], - [[ - 1981, - 2072, - 1982 - ]], - [[ - 1981, - 2110, - 2242 - ]], - [[ - 1981, - 2242, - 2072 - ]], - [[ - 2110, - 1988, - 2242 - ]], - [[ - 2242, - 1995, - 2190 - ]], - [[ - 2242, - 1988, - 1995 - ]], - [[ - 2110, - 1990, - 1988 - ]], - [[ - 2109, - 386, - 1990 - ]], - [[ - 2036, - 2107, - 2108 - ]], - [[ - 2015, - 2105, - 2107 - ]], - [[ - 2080, - 2130, - 2240 - ]], - [[ - 2129, - 2128, - 2211 - ]], - [[ - 2080, - 2241, - 2083 - ]], - [[ - 2080, - 2240, - 2241 - ]], - [[ - 2149, - 1969, - 2120 - ]], - [[ - 2149, - 2121, - 1969 - ]], - [[ - 1969, - 1968, - 2120 - ]], - [[ - 1969, - 1961, - 1967 - ]], - [[ - 2056, - 1939, - 2225 - ]], - [[ - 2056, - 2055, - 1939 - ]], - [[ - 2162, - 2169, - 2161 - ]], - [[ - 2155, - 2160, - 2169 - ]], - [[ - 2030, - 2238, - 2059 - ]], - [[ - 2198, - 2089, - 2060 - ]], - [[ - 1934, - 2059, - 350 - ]], - [[ - 2238, - 2198, - 2060 - ]], - [[ - 1994, - 2045, - 2047 - ]], - [[ - 1993, - 1984, - 2045 - ]], - [[ - 2213, - 2209, - 1937 - ]], - [[ - 2212, - 2034, - 2209 - ]], - [[ - 2067, - 2087, - 2088 - ]], - [[ - 2243, - 2066, - 2061 - ]], - [[ - 2178, - 2189, - 1952 - ]], - [[ - 2178, - 2112, - 2189 - ]], - [[ - 1949, - 2182, - 2231 - ]], - [[ - 1957, - 1956, - 2068 - ]], - [[ - 293, - 1973, - 2188 - ]], - [[ - 2119, - 1974, - 1973 - ]], - [[ - 1946, - 2114, - 2165 - ]], - [[ - 2114, - 2074, - 2075 - ]], - [[ - 2064, - 2244, - 1960 - ]], - [[ - 2040, - 2042, - 2127 - ]], - [[ - 1939, - 2159, - 1937 - ]], - [[ - 349, - 2146, - 2159 - ]], - [[ - 2012, - 2229, - 2016 - ]], - [[ - 2229, - 1931, - 1933 - ]], - [[ - 2016, - 2229, - 1933 - ]], - [[ - 2185, - 2174, - 1931 - ]], - [[ - 2245, - 2111, - 2112 - ]], - [[ - 2077, - 2076, - 2163 - ]], - [[ - 2178, - 2245, - 2112 - ]], - [[ - 2236, - 2076, - 2111 - ]], - [[ - 2244, - 2040, - 1967 - ]], - [[ - 2126, - 2063, - 2122 - ]], - [[ - 2091, - 2218, - 2092 - ]], - [[ - 2100, - 2110, - 2218 - ]], - [[ - 2239, - 2090, - 2092 - ]], - [[ - 2199, - 2226, - 2091 - ]], - [[ - 2196, - 2168, - 2167 - ]], - [[ - 2196, - 2155, - 2168 - ]], - [[ - 2215, - 2142, - 1983 - ]], - [[ - 2215, - 2218, - 2141 - ]], - [[ - 2215, - 2141, - 2142 - ]], - [[ - 2218, - 2110, - 2141 - ]], - [[ - 2241, - 2201, - 2083 - ]], - [[ - 2241, - 2200, - 2201 - ]], - [[ - 2184, - 2107, - 2106 - ]], - [[ - 2153, - 2099, - 2098 - ]], - [[ - 2208, - 2106, - 2152 - ]], - [[ - 2006, - 2099, - 2153 - ]], - [[ - 2151, - 2153, - 2152 - ]], - [[ - 2151, - 2006, - 2153 - ]], - [[ - 2134, - 2105, - 2015 - ]], - [[ - 2106, - 2151, - 2152 - ]], - [[ - 2134, - 2150, - 2105 - ]], - [[ - 2103, - 2151, - 2150 - ]], - [[ - 2237, - 2221, - 2164 - ]], - [[ - 2219, - 2177, - 2214 - ]], - [[ - 2164, - 2221, - 2220 - ]], - [[ - 2246, - 2235, - 2219 - ]], - [[ - 2164, - 2222, - 2166 - ]], - [[ - 2220, - 2214, - 2222 - ]], - [[ - 2247, - 2230, - 2233 - ]], - [[ - 2234, - 2231, - 2182 - ]], - [[ - 1976, - 2243, - 2087 - ]], - [[ - 1975, - 1974, - 2061 - ]], - [[ - 2139, - 2042, - 2125 - ]], - [[ - 2040, - 2064, - 2041 - ]], - [[ - 2138, - 2125, - 2038 - ]], - [[ - 2138, - 2139, - 2125 - ]], - [[ - 1985, - 2173, - 1982 - ]], - [[ - 2143, - 2144, - 2217 - ]], - [[ - 2184, - 2106, - 2208 - ]], - [[ - 2105, - 2150, - 2106 - ]], - [[ - 2144, - 2172, - 2145 - ]], - [[ - 2225, - 1939, - 2172 - ]], - [[ - 352, - 2028, - 351 - ]], - [[ - 2027, - 2115, - 2028 - ]], - [[ - 2225, - 2210, - 1970 - ]], - [[ - 2210, - 2172, - 2053 - ]], - [[ - 2132, - 1972, - 2127 - ]], - [[ - 1971, - 2053, - 1972 - ]], - [[ - 2247, - 2127, - 2042 - ]], - [[ - 1972, - 2053, - 2127 - ]], - [[ - 1998, - 1997, - 2118 - ]], - [[ - 2224, - 2083, - 2117 - ]], - [[ - 2224, - 2117, - 1997 - ]], - [[ - 2022, - 2021, - 2117 - ]], - [[ - 2100, - 2226, - 2029 - ]], - [[ - 2100, - 2091, - 2226 - ]], - [[ - 2187, - 1998, - 2058 - ]], - [[ - 2187, - 2248, - 1998 - ]], - [[ - 2051, - 2195, - 2021 - ]], - [[ - 2051, - 2050, - 2195 - ]], - [[ - 2112, - 2078, - 1954 - ]], - [[ - 2111, - 2076, - 2078 - ]], - [[ - 1936, - 2181, - 1942 - ]], - [[ - 1936, - 1940, - 2181 - ]], - [[ - 2068, - 1949, - 2232 - ]], - [[ - 1948, - 2182, - 1949 - ]], - [[ - 1970, - 2210, - 1971 - ]], - [[ - 2225, - 2172, - 2210 - ]], - [[ - 2173, - 2043, - 1983 - ]], - [[ - 2173, - 2143, - 2043 - ]], - [[ - 2143, - 2217, - 2043 - ]], - [[ - 2144, - 2228, - 2216 - ]], - [[ - 2131, - 2132, - 1948 - ]], - [[ - 1970, - 1972, - 2132 - ]], - [[ - 2245, - 2236, - 2111 - ]], - [[ - 2177, - 2219, - 2235 - ]], - [[ - 2029, - 2248, - 2100 - ]], - [[ - 2029, - 1996, - 2248 - ]], - [[ - 1997, - 1996, - 2224 - ]], - [[ - 2030, - 2197, - 2031 - ]], - [[ - 2224, - 1996, - 2031 - ]], - [[ - 1998, - 2248, - 1996 - ]], - [[ - 2031, - 2082, - 2224 - ]], - [[ - 2031, - 2197, - 2082 - ]], - [[ - 347, - 1956, - 1936 - ]], - [[ - 2068, - 2231, - 1957 - ]], - [[ - 2234, - 1957, - 2231 - ]], - [[ - 1958, - 1940, - 1936 - ]], - [[ - 2177, - 2235, - 2236 - ]], - [[ - 2237, - 2076, - 2235 - ]], - [[ - 2089, - 2090, - 1979 - ]], - [[ - 2092, - 2228, - 2239 - ]], - [[ - 2227, - 2090, - 2239 - ]], - [[ - 2199, - 2091, - 2090 - ]], - [[ - 1979, - 2227, - 2145 - ]], - [[ - 1979, - 2090, - 2227 - ]], - [[ - 2220, - 2219, - 2214 - ]], - [[ - 2246, - 2237, - 2235 - ]], - [[ - 2221, - 2246, - 2219 - ]], - [[ - 2221, - 2237, - 2246 - ]], - [[ - 2108, - 2207, - 2193 - ]], - [[ - 2107, - 2184, - 2207 - ]], - [[ - 2193, - 2183, - 2179 - ]], - [[ - 2207, - 2184, - 2183 - ]], - [[ - 2026, - 2025, - 2204 - ]], - [[ - 2026, - 1934, - 2024 - ]], - [[ - 2202, - 2024, - 351 - ]], - [[ - 2202, - 2025, - 2024 - ]], - [[ - 2167, - 2157, - 2073 - ]], - [[ - 2168, - 2162, - 2157 - ]], - [[ - 2234, - 1958, - 1957 - ]], - [[ - 2234, - 1943, - 1958 - ]], - [[ - 2099, - 2005, - 2097 - ]], - [[ - 2099, - 2006, - 2005 - ]], - [[ - 2177, - 2245, - 2178 - ]], - [[ - 2177, - 2236, - 2245 - ]], - [[ - 1986, - 2084, - 2054 - ]], - [[ - 1986, - 292, - 2084 - ]], - [[ - 2136, - 2171, - 2002 - ]], - [[ - 2136, - 2006, - 2171 - ]], - [[ - 2148, - 2147, - 1964 - ]], - [[ - 2148, - 2137, - 2147 - ]], - [[ - 348, - 2086, - 2206 - ]], - [[ - 348, - 349, - 2086 - ]], - [[ - 2248, - 2101, - 2100 - ]], - [[ - 2248, - 2187, - 2101 - ]], - [[ - 2110, - 2037, - 2036 - ]], - [[ - 2101, - 2187, - 2037 - ]], - [[ - 2187, - 2013, - 2037 - ]], - [[ - 2015, - 2036, - 2013 - ]], - [[ - 2087, - 2243, - 2061 - ]], - [[ - 1976, - 2066, - 2243 - ]], - [[ - 2047, - 2223, - 1994 - ]], - [[ - 2047, - 2196, - 2223 - ]], - [[ - 1941, - 1944, - 1946 - ]], - [[ - 1941, - 1945, - 1944 - ]], - [[ - 2234, - 2230, - 1943 - ]], - [[ - 2069, - 2071, - 2074 - ]], - [[ - 2165, - 2114, - 2113 - ]], - [[ - 1946, - 2074, - 2114 - ]], - [[ - 2182, - 2233, - 2234 - ]], - [[ - 2140, - 2139, - 2069 - ]], - [[ - 2127, - 2247, - 2182 - ]], - [[ - 2247, - 2140, - 2230 - ]], - [[ - 2140, - 2069, - 2230 - ]], - [[ - 2180, - 2070, - 2069 - ]], - [[ - 2182, - 2247, - 2233 - ]], - [[ - 2042, - 2140, - 2247 - ]], - [[ - 2071, - 1953, - 2077 - ]], - [[ - 2071, - 1951, - 1953 - ]], - [[ - 2077, - 1953, - 1955 - ]], - [[ - 1951, - 1950, - 1953 - ]], - [[ - 2075, - 2077, - 2163 - ]], - [[ - 1955, - 2078, - 2077 - ]], - [[ - 2197, - 2059, - 1934 - ]], - [[ - 2238, - 2060, - 2059 - ]], - [[ - 1977, - 1965, - 1966 - ]], - [[ - 1977, - 1961, - 1965 - ]], - [[ - 2116, - 2079, - 2203 - ]], - [[ - 2116, - 2080, - 2079 - ]], - [[ - 2012, - 2185, - 2229 - ]], - [[ - 2012, - 2011, - 2185 - ]], - [[ - 2144, - 2216, - 2217 - ]], - [[ - 2228, - 2092, - 2216 - ]], - [[ - 2103, - 2006, - 2151 - ]], - [[ - 2103, - 2171, - 2006 - ]], - [[ - 2206, - 1935, - 348 - ]], - [[ - 2206, - 2057, - 1935 - ]], - [[ - 2125, - 2039, - 2038 - ]], - [[ - 2125, - 2122, - 2039 - ]], - [[ - 1960, - 2244, - 1967 - ]], - [[ - 2064, - 2040, - 2244 - ]], - [[ - 2194, - 2019, - 2118 - ]], - [[ - 2194, - 2176, - 2019 - ]], - [[ - 2064, - 2126, - 2041 - ]], - [[ - 2064, - 2063, - 2126 - ]], - [[ - 2129, - 2130, - 2115 - ]], - [[ - 2211, - 2240, - 2130 - ]], - [[ - 2148, - 2070, - 2180 - ]], - [[ - 2148, - 1951, - 2070 - ]], - [[ - 2194, - 2049, - 2175 - ]], - [[ - 2118, - 2050, - 2049 - ]], - [[ - 2146, - 2213, - 1937 - ]], - [[ - 2212, - 2209, - 2213 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222354ba-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef8a0e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2249, - 2250, - 2251 - ]], - [[ - 2249, - 2251, - 2252 - ]], - [[ - 2252, - 2251, - 2253 - ]], - [[ - 2251, - 344, - 345 - ]], - [[ - 2253, - 2251, - 345 - ]], - [[ - 2250, - 344, - 2251 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222465d8-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef68e649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2254, - 2255, - 2256 - ]], - [[ - 2257, - 2254, - 2256 - ]], - [[ - 2258, - 2254, - 2257 - ]], - [[ - 2258, - 2259, - 2254 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b22250278-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cb349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2260, - 2261, - 2262 - ]], - [[ - 2263, - 2264, - 2265 - ]], - [[ - 2266, - 2267, - 2268 - ]], - [[ - 2269, - 2270, - 2271 - ]], - [[ - 2272, - 2273, - 2274 - ]], - [[ - 2272, - 2274, - 2275 - ]], - [[ - 2276, - 2277, - 2270 - ]], - [[ - 2277, - 2273, - 2270 - ]], - [[ - 2278, - 2279, - 2280 - ]], - [[ - 2281, - 2274, - 2282 - ]], - [[ - 2283, - 2284, - 2285 - ]], - [[ - 2286, - 2287, - 2288 - ]], - [[ - 2289, - 2281, - 2284 - ]], - [[ - 2290, - 2291, - 2292 - ]], - [[ - 2293, - 2294, - 2295 - ]], - [[ - 2296, - 2290, - 2297 - ]], - [[ - 2298, - 2296, - 2297 - ]], - [[ - 2299, - 2292, - 2300 - ]], - [[ - 2301, - 2302, - 2303 - ]], - [[ - 2304, - 2305, - 2306 - ]], - [[ - 2307, - 2308, - 2309 - ]], - [[ - 2310, - 2311, - 2312 - ]], - [[ - 2313, - 2314, - 2312 - ]], - [[ - 2315, - 2316, - 2317 - ]], - [[ - 2318, - 2319, - 2320 - ]], - [[ - 2321, - 2322, - 2323 - ]], - [[ - 2318, - 2324, - 2319 - ]], - [[ - 2319, - 2324, - 2325 - ]], - [[ - 2326, - 2327, - 2328 - ]], - [[ - 2328, - 2329, - 2330 - ]], - [[ - 2331, - 2311, - 2310 - ]], - [[ - 2314, - 2313, - 2332 - ]], - [[ - 2333, - 2334, - 2335 - ]], - [[ - 2336, - 2308, - 2322 - ]], - [[ - 2337, - 2338, - 2339 - ]], - [[ - 2340, - 2341, - 2342 - ]], - [[ - 2343, - 2344, - 2345 - ]], - [[ - 2346, - 2347, - 2348 - ]], - [[ - 2349, - 2350, - 2351 - ]], - [[ - 2352, - 2353, - 2354 - ]], - [[ - 2353, - 2352, - 2355 - ]], - [[ - 2356, - 2357, - 2358 - ]], - [[ - 2359, - 2360, - 2358 - ]], - [[ - 2361, - 2362, - 2363 - ]], - [[ - 2360, - 2348, - 2364 - ]], - [[ - 2365, - 2366, - 2367 - ]], - [[ - 2365, - 2368, - 2366 - ]], - [[ - 2365, - 2369, - 2370 - ]], - [[ - 2345, - 2371, - 2343 - ]], - [[ - 2345, - 2344, - 2372 - ]], - [[ - 2373, - 2374, - 2375 - ]], - [[ - 2363, - 2362, - 2376 - ]], - [[ - 2377, - 2378, - 2379 - ]], - [[ - 2380, - 2381, - 2382 - ]], - [[ - 2375, - 2374, - 2377 - ]], - [[ - 2377, - 2380, - 2378 - ]], - [[ - 2341, - 2383, - 2342 - ]], - [[ - 2384, - 2385, - 2386 - ]], - [[ - 2385, - 2387, - 2388 - ]], - [[ - 2384, - 2373, - 2389 - ]], - [[ - 2390, - 2385, - 2391 - ]], - [[ - 2383, - 2392, - 2393 - ]], - [[ - 2394, - 2387, - 2395 - ]], - [[ - 2396, - 2335, - 2397 - ]], - [[ - 2398, - 2399, - 2400 - ]], - [[ - 2401, - 2402, - 2403 - ]], - [[ - 2401, - 2404, - 2402 - ]], - [[ - 2405, - 2400, - 2335 - ]], - [[ - 2406, - 2405, - 2335 - ]], - [[ - 2407, - 2408, - 2409 - ]], - [[ - 2410, - 2411, - 2412 - ]], - [[ - 2412, - 2411, - 2413 - ]], - [[ - 2339, - 2338, - 2414 - ]], - [[ - 2411, - 2415, - 2416 - ]], - [[ - 2417, - 2418, - 2419 - ]], - [[ - 2420, - 2421, - 2422 - ]], - [[ - 2423, - 2424, - 2425 - ]], - [[ - 2423, - 2426, - 2424 - ]], - [[ - 2427, - 2424, - 2428 - ]], - [[ - 2429, - 2430, - 2431 - ]], - [[ - 2432, - 2433, - 2434 - ]], - [[ - 2435, - 2436, - 2437 - ]], - [[ - 2306, - 2438, - 2439 - ]], - [[ - 2440, - 2441, - 2442 - ]], - [[ - 2443, - 2444, - 2445 - ]], - [[ - 2443, - 2446, - 2447 - ]], - [[ - 2448, - 2445, - 2449 - ]], - [[ - 2450, - 2451, - 2438 - ]], - [[ - 2452, - 2453, - 2454 - ]], - [[ - 2455, - 2456, - 2457 - ]], - [[ - 2458, - 2444, - 2459 - ]], - [[ - 2460, - 2461, - 2462 - ]], - [[ - 2463, - 2464, - 2465 - ]], - [[ - 2466, - 2467, - 2468 - ]], - [[ - 2452, - 2440, - 2453 - ]], - [[ - 2469, - 2470, - 2471 - ]], - [[ - 2472, - 2264, - 2473 - ]], - [[ - 2266, - 2474, - 2267 - ]], - [[ - 2475, - 2268, - 2267 - ]], - [[ - 2475, - 2476, - 2268 - ]], - [[ - 2475, - 2477, - 2476 - ]], - [[ - 2466, - 2478, - 2475 - ]], - [[ - 2475, - 2478, - 2477 - ]], - [[ - 2466, - 2468, - 2478 - ]], - [[ - 2466, - 2479, - 2467 - ]], - [[ - 2480, - 2481, - 2479 - ]], - [[ - 2479, - 2481, - 2467 - ]], - [[ - 2480, - 2482, - 2483 - ]], - [[ - 2481, - 2480, - 2483 - ]], - [[ - 2484, - 2482, - 2485 - ]], - [[ - 2486, - 2487, - 2303 - ]], - [[ - 2488, - 2489, - 2490 - ]], - [[ - 2491, - 2492, - 2488 - ]], - [[ - 2493, - 2494, - 2495 - ]], - [[ - 2496, - 2497, - 2489 - ]], - [[ - 2498, - 2499, - 2496 - ]], - [[ - 2500, - 2501, - 2502 - ]], - [[ - 2503, - 2504, - 2500 - ]], - [[ - 2505, - 2506, - 2507 - ]], - [[ - 2419, - 2418, - 2508 - ]], - [[ - 2469, - 2487, - 2486 - ]], - [[ - 2509, - 2260, - 2510 - ]], - [[ - 2511, - 2469, - 2486 - ]], - [[ - 2510, - 2302, - 2301 - ]], - [[ - 2302, - 2486, - 2303 - ]], - [[ - 2261, - 2260, - 2509 - ]], - [[ - 2260, - 2302, - 2510 - ]], - [[ - 2509, - 2483, - 2261 - ]], - [[ - 2483, - 2484, - 2261 - ]], - [[ - 2483, - 2482, - 2484 - ]], - [[ - 2512, - 2513, - 2514 - ]], - [[ - 2465, - 2515, - 2516 - ]], - [[ - 2517, - 2485, - 2518 - ]], - [[ - 2516, - 2485, - 2482 - ]], - [[ - 2516, - 2518, - 2485 - ]], - [[ - 2519, - 2520, - 2521 - ]], - [[ - 2522, - 2523, - 2524 - ]], - [[ - 2455, - 2457, - 2441 - ]], - [[ - 2525, - 2526, - 2527 - ]], - [[ - 2528, - 2451, - 2450 - ]], - [[ - 2450, - 2438, - 2306 - ]], - [[ - 2529, - 2530, - 2531 - ]], - [[ - 2532, - 2533, - 2534 - ]], - [[ - 2535, - 2536, - 2537 - ]], - [[ - 2538, - 2419, - 2539 - ]], - [[ - 2540, - 2541, - 2542 - ]], - [[ - 2534, - 2430, - 2543 - ]], - [[ - 2544, - 2545, - 2501 - ]], - [[ - 2546, - 2507, - 2502 - ]], - [[ - 2547, - 2536, - 2530 - ]], - [[ - 2548, - 2549, - 2420 - ]], - [[ - 2415, - 2541, - 2550 - ]], - [[ - 2551, - 2552, - 2553 - ]], - [[ - 2287, - 2286, - 2295 - ]], - [[ - 2295, - 2554, - 2293 - ]], - [[ - 2293, - 2554, - 2555 - ]], - [[ - 2282, - 2274, - 2556 - ]], - [[ - 2294, - 2557, - 2290 - ]], - [[ - 2555, - 2554, - 2557 - ]], - [[ - 2300, - 2558, - 2556 - ]], - [[ - 2282, - 2554, - 2288 - ]], - [[ - 2352, - 2356, - 2358 - ]], - [[ - 2348, - 2360, - 2359 - ]], - [[ - 2528, - 2459, - 2451 - ]], - [[ - 2459, - 2444, - 2451 - ]], - [[ - 2559, - 2560, - 2561 - ]], - [[ - 2501, - 2546, - 2502 - ]], - [[ - 2561, - 2544, - 2501 - ]], - [[ - 2562, - 2545, - 2544 - ]], - [[ - 2563, - 2564, - 2565 - ]], - [[ - 2566, - 2567, - 2568 - ]], - [[ - 2569, - 2570, - 2571 - ]], - [[ - 2436, - 2542, - 2572 - ]], - [[ - 2264, - 2573, - 2265 - ]], - [[ - 2501, - 2545, - 2546 - ]], - [[ - 2574, - 2434, - 2306 - ]], - [[ - 2420, - 2575, - 2548 - ]], - [[ - 2417, - 2419, - 2576 - ]], - [[ - 2493, - 2495, - 2562 - ]], - [[ - 2577, - 2578, - 2579 - ]], - [[ - 2580, - 2316, - 2324 - ]], - [[ - 2333, - 2581, - 2572 - ]], - [[ - 2582, - 2583, - 2584 - ]], - [[ - 2402, - 2398, - 2405 - ]], - [[ - 2399, - 2404, - 2585 - ]], - [[ - 2586, - 2587, - 2588 - ]], - [[ - 2589, - 2495, - 2494 - ]], - [[ - 2590, - 2591, - 2592 - ]], - [[ - 2588, - 2593, - 2594 - ]], - [[ - 2553, - 2537, - 2536 - ]], - [[ - 2595, - 2508, - 2596 - ]], - [[ - 2535, - 2597, - 2582 - ]], - [[ - 2338, - 2322, - 2414 - ]], - [[ - 2598, - 2599, - 2349 - ]], - [[ - 2599, - 2600, - 2601 - ]], - [[ - 2602, - 2381, - 2603 - ]], - [[ - 2602, - 2362, - 2382 - ]], - [[ - 2474, - 2604, - 2605 - ]], - [[ - 2474, - 2269, - 2267 - ]], - [[ - 2471, - 2473, - 2469 - ]], - [[ - 2264, - 2487, - 2473 - ]], - [[ - 2606, - 2607, - 2608 - ]], - [[ - 2609, - 2610, - 2489 - ]], - [[ - 2611, - 2612, - 2613 - ]], - [[ - 2614, - 2615, - 2338 - ]], - [[ - 2616, - 2442, - 2525 - ]], - [[ - 2617, - 2618, - 2619 - ]], - [[ - 2620, - 2266, - 2263 - ]], - [[ - 2268, - 2264, - 2263 - ]], - [[ - 2557, - 2554, - 2282 - ]], - [[ - 2288, - 2281, - 2282 - ]], - [[ - 2357, - 2359, - 2358 - ]], - [[ - 2357, - 2348, - 2359 - ]], - [[ - 2356, - 2346, - 2357 - ]], - [[ - 2367, - 2621, - 2622 - ]], - [[ - 2598, - 2349, - 2351 - ]], - [[ - 2601, - 2350, - 2349 - ]], - [[ - 2305, - 2543, - 2429 - ]], - [[ - 2623, - 2534, - 2543 - ]], - [[ - 2557, - 2291, - 2290 - ]], - [[ - 2557, - 2558, - 2291 - ]], - [[ - 2381, - 2380, - 2603 - ]], - [[ - 2382, - 2362, - 2361 - ]], - [[ - 2624, - 2574, - 2439 - ]], - [[ - 2304, - 2623, - 2543 - ]], - [[ - 2379, - 2622, - 2621 - ]], - [[ - 2361, - 2363, - 2622 - ]], - [[ - 2625, - 2626, - 2279 - ]], - [[ - 2626, - 2627, - 2283 - ]], - [[ - 2628, - 2629, - 2524 - ]], - [[ - 2630, - 2440, - 2442 - ]], - [[ - 2294, - 2555, - 2557 - ]], - [[ - 2294, - 2293, - 2555 - ]], - [[ - 2398, - 2402, - 2399 - ]], - [[ - 2392, - 2631, - 2395 - ]], - [[ - 2632, - 2512, - 2633 - ]], - [[ - 2634, - 2516, - 2482 - ]], - [[ - 2521, - 2635, - 2464 - ]], - [[ - 2617, - 2619, - 2515 - ]], - [[ - 2290, - 2636, - 2505 - ]], - [[ - 2299, - 2300, - 2637 - ]], - [[ - 2507, - 2506, - 2502 - ]], - [[ - 2607, - 2638, - 2639 - ]], - [[ - 2471, - 2640, - 2472 - ]], - [[ - 2640, - 2641, - 2620 - ]], - [[ - 2642, - 2643, - 2644 - ]], - [[ - 2500, - 2502, - 2643 - ]], - [[ - 2515, - 2465, - 2635 - ]], - [[ - 2521, - 2464, - 2632 - ]], - [[ - 2561, - 2645, - 2493 - ]], - [[ - 2594, - 2494, - 2645 - ]], - [[ - 2444, - 2458, - 2445 - ]], - [[ - 2456, - 2646, - 2458 - ]], - [[ - 2379, - 2378, - 2622 - ]], - [[ - 2377, - 2647, - 2380 - ]], - [[ - 2648, - 2534, - 2623 - ]], - [[ - 2533, - 2649, - 2430 - ]], - [[ - 2650, - 2651, - 2623 - ]], - [[ - 2596, - 2649, - 2648 - ]], - [[ - 2369, - 2652, - 2371 - ]], - [[ - 2371, - 2652, - 2343 - ]], - [[ - 2344, - 2363, - 2376 - ]], - [[ - 2344, - 2652, - 2363 - ]], - [[ - 2635, - 2653, - 2464 - ]], - [[ - 2654, - 2655, - 2656 - ]], - [[ - 2464, - 2513, - 2632 - ]], - [[ - 2512, - 2628, - 2657 - ]], - [[ - 2434, - 2304, - 2306 - ]], - [[ - 2433, - 2432, - 2658 - ]], - [[ - 2433, - 2658, - 2304 - ]], - [[ - 2432, - 2426, - 2658 - ]], - [[ - 2428, - 2426, - 2432 - ]], - [[ - 2423, - 2659, - 2575 - ]], - [[ - 2610, - 2660, - 2496 - ]], - [[ - 2499, - 2497, - 2496 - ]], - [[ - 2416, - 2415, - 2661 - ]], - [[ - 2411, - 2410, - 2334 - ]], - [[ - 2319, - 2325, - 2328 - ]], - [[ - 2662, - 2316, - 2663 - ]], - [[ - 2603, - 2647, - 2374 - ]], - [[ - 2603, - 2380, - 2647 - ]], - [[ - 2664, - 2307, - 2309 - ]], - [[ - 2307, - 2312, - 2308 - ]], - [[ - 2647, - 2377, - 2374 - ]], - [[ - 2377, - 2379, - 2375 - ]], - [[ - 2498, - 2665, - 2666 - ]], - [[ - 2498, - 2660, - 2665 - ]], - [[ - 2667, - 2565, - 2331 - ]], - [[ - 2564, - 2566, - 2668 - ]], - [[ - 2493, - 2562, - 2544 - ]], - [[ - 2669, - 2545, - 2562 - ]], - [[ - 2655, - 2616, - 2527 - ]], - [[ - 2657, - 2670, - 2671 - ]], - [[ - 2340, - 2375, - 2672 - ]], - [[ - 2340, - 2373, - 2375 - ]], - [[ - 2290, - 2292, - 2636 - ]], - [[ - 2673, - 2558, - 2300 - ]], - [[ - 2445, - 2674, - 2454 - ]], - [[ - 2445, - 2646, - 2674 - ]], - [[ - 2263, - 2266, - 2268 - ]], - [[ - 2263, - 2265, - 2620 - ]], - [[ - 2392, - 2585, - 2675 - ]], - [[ - 2390, - 2387, - 2385 - ]], - [[ - 2676, - 2396, - 2397 - ]], - [[ - 2677, - 2406, - 2335 - ]], - [[ - 2678, - 2611, - 2583 - ]], - [[ - 2591, - 2588, - 2576 - ]], - [[ - 2586, - 2679, - 2680 - ]], - [[ - 2418, - 2681, - 2682 - ]], - [[ - 2645, - 2683, - 2594 - ]], - [[ - 2660, - 2498, - 2496 - ]], - [[ - 2684, - 2683, - 2645 - ]], - [[ - 2587, - 2685, - 2576 - ]], - [[ - 2684, - 2560, - 2559 - ]], - [[ - 2684, - 2645, - 2560 - ]], - [[ - 2380, - 2382, - 2378 - ]], - [[ - 2381, - 2602, - 2382 - ]], - [[ - 2437, - 2436, - 2572 - ]], - [[ - 2334, - 2677, - 2335 - ]], - [[ - 2552, - 2686, - 2437 - ]], - [[ - 2435, - 2687, - 2436 - ]], - [[ - 2651, - 2650, - 2540 - ]], - [[ - 2548, - 2575, - 2661 - ]], - [[ - 2542, - 2688, - 2540 - ]], - [[ - 2569, - 2689, - 2690 - ]], - [[ - 2687, - 2691, - 2688 - ]], - [[ - 2623, - 2304, - 2692 - ]], - [[ - 2540, - 2691, - 2651 - ]], - [[ - 2686, - 2552, - 2693 - ]], - [[ - 2572, - 2542, - 2541 - ]], - [[ - 2436, - 2687, - 2542 - ]], - [[ - 2694, - 2570, - 2695 - ]], - [[ - 2571, - 2693, - 2569 - ]], - [[ - 2354, - 2353, - 2351 - ]], - [[ - 2352, - 2358, - 2355 - ]], - [[ - 2677, - 2410, - 2412 - ]], - [[ - 2677, - 2334, - 2410 - ]], - [[ - 2594, - 2696, - 2589 - ]], - [[ - 2414, - 2669, - 2696 - ]], - [[ - 2697, - 2563, - 2565 - ]], - [[ - 2698, - 2564, - 2563 - ]], - [[ - 2699, - 2583, - 2611 - ]], - [[ - 2613, - 2337, - 2591 - ]], - [[ - 2415, - 2334, - 2541 - ]], - [[ - 2415, - 2411, - 2334 - ]], - [[ - 2294, - 2296, - 2298 - ]], - [[ - 2294, - 2290, - 2296 - ]], - [[ - 2593, - 2339, - 2696 - ]], - [[ - 2593, - 2696, - 2594 - ]], - [[ - 2696, - 2339, - 2414 - ]], - [[ - 2588, - 2591, - 2337 - ]], - [[ - 2504, - 2559, - 2501 - ]], - [[ - 2606, - 2608, - 2700 - ]], - [[ - 2323, - 2701, - 2437 - ]], - [[ - 2702, - 2547, - 2689 - ]], - [[ - 2628, - 2524, - 2523 - ]], - [[ - 2525, - 2441, - 2461 - ]], - [[ - 2557, - 2556, - 2558 - ]], - [[ - 2274, - 2273, - 2556 - ]], - [[ - 2400, - 2585, - 2397 - ]], - [[ - 2404, - 2675, - 2585 - ]], - [[ - 2635, - 2465, - 2653 - ]], - [[ - 2516, - 2634, - 2463 - ]], - [[ - 2666, - 2638, - 2607 - ]], - [[ - 2665, - 2639, - 2638 - ]], - [[ - 2541, - 2333, - 2572 - ]], - [[ - 2541, - 2334, - 2333 - ]], - [[ - 2703, - 2704, - 2470 - ]], - [[ - 2705, - 2666, - 2607 - ]], - [[ - 2639, - 2660, - 2706 - ]], - [[ - 2639, - 2665, - 2660 - ]], - [[ - 2540, - 2549, - 2550 - ]], - [[ - 2707, - 2692, - 2421 - ]], - [[ - 2520, - 2519, - 2708 - ]], - [[ - 2632, - 2513, - 2512 - ]], - [[ - 2709, - 2629, - 2634 - ]], - [[ - 2657, - 2523, - 2670 - ]], - [[ - 2710, - 2369, - 2371 - ]], - [[ - 2370, - 2368, - 2365 - ]], - [[ - 2648, - 2695, - 2596 - ]], - [[ - 2648, - 2694, - 2695 - ]], - [[ - 2415, - 2550, - 2661 - ]], - [[ - 2541, - 2540, - 2550 - ]], - [[ - 2582, - 2678, - 2583 - ]], - [[ - 2597, - 2612, - 2678 - ]], - [[ - 2539, - 2611, - 2711 - ]], - [[ - 2678, - 2612, - 2611 - ]], - [[ - 2333, - 2712, - 2581 - ]], - [[ - 2407, - 2664, - 2309 - ]], - [[ - 2572, - 2581, - 2437 - ]], - [[ - 2321, - 2336, - 2322 - ]], - [[ - 2581, - 2323, - 2437 - ]], - [[ - 2321, - 2713, - 2407 - ]], - [[ - 2279, - 2626, - 2285 - ]], - [[ - 2279, - 2278, - 2625 - ]], - [[ - 2514, - 2629, - 2628 - ]], - [[ - 2514, - 2634, - 2629 - ]], - [[ - 2714, - 2520, - 2708 - ]], - [[ - 2714, - 2618, - 2520 - ]], - [[ - 2715, - 2698, - 2697 - ]], - [[ - 2715, - 2564, - 2698 - ]], - [[ - 2460, - 2671, - 2670 - ]], - [[ - 2716, - 2708, - 2633 - ]], - [[ - 2460, - 2462, - 2671 - ]], - [[ - 2714, - 2708, - 2671 - ]], - [[ - 2716, - 2512, - 2657 - ]], - [[ - 2628, - 2523, - 2657 - ]], - [[ - 2470, - 2469, - 2511 - ]], - [[ - 2473, - 2487, - 2469 - ]], - [[ - 2623, - 2651, - 2570 - ]], - [[ - 2691, - 2686, - 2717 - ]], - [[ - 2571, - 2651, - 2691 - ]], - [[ - 2571, - 2570, - 2651 - ]], - [[ - 2571, - 2717, - 2693 - ]], - [[ - 2571, - 2691, - 2717 - ]], - [[ - 2718, - 2319, - 2328 - ]], - [[ - 2718, - 2578, - 2719 - ]], - [[ - 2669, - 2546, - 2545 - ]], - [[ - 2669, - 2507, - 2546 - ]], - [[ - 2706, - 2608, - 2639 - ]], - [[ - 2720, - 2705, - 2607 - ]], - [[ - 2639, - 2608, - 2607 - ]], - [[ - 2700, - 2683, - 2684 - ]], - [[ - 2437, - 2721, - 2552 - ]], - [[ - 2701, - 2615, - 2722 - ]], - [[ - 2721, - 2701, - 2722 - ]], - [[ - 2323, - 2322, - 2723 - ]], - [[ - 2537, - 2721, - 2722 - ]], - [[ - 2437, - 2701, - 2721 - ]], - [[ - 2724, - 2427, - 2428 - ]], - [[ - 2725, - 2659, - 2425 - ]], - [[ - 2331, - 2726, - 2311 - ]], - [[ - 2317, - 2311, - 2727 - ]], - [[ - 2728, - 2567, - 2564 - ]], - [[ - 2568, - 2315, - 2317 - ]], - [[ - 2564, - 2668, - 2565 - ]], - [[ - 2726, - 2727, - 2311 - ]], - [[ - 2430, - 2429, - 2543 - ]], - [[ - 2528, - 2729, - 2459 - ]], - [[ - 2554, - 2286, - 2288 - ]], - [[ - 2554, - 2295, - 2286 - ]], - [[ - 2521, - 2617, - 2635 - ]], - [[ - 2619, - 2518, - 2515 - ]], - [[ - 2644, - 2730, - 2642 - ]], - [[ - 2620, - 2265, - 2573 - ]], - [[ - 2502, - 2506, - 2643 - ]], - [[ - 2507, - 2290, - 2505 - ]], - [[ - 2731, - 2505, - 2636 - ]], - [[ - 2732, - 2506, - 2505 - ]], - [[ - 2674, - 2733, - 2734 - ]], - [[ - 2456, - 2458, - 2457 - ]], - [[ - 2695, - 2569, - 2596 - ]], - [[ - 2695, - 2570, - 2569 - ]], - [[ - 2691, - 2540, - 2688 - ]], - [[ - 2650, - 2707, - 2540 - ]], - [[ - 2542, - 2687, - 2688 - ]], - [[ - 2686, - 2691, - 2687 - ]], - [[ - 2703, - 2641, - 2704 - ]], - [[ - 2573, - 2264, - 2472 - ]], - [[ - 2471, - 2472, - 2473 - ]], - [[ - 2471, - 2470, - 2704 - ]], - [[ - 2471, - 2704, - 2640 - ]], - [[ - 2735, - 2500, - 2642 - ]], - [[ - 2643, - 2642, - 2500 - ]], - [[ - 2730, - 2736, - 2737 - ]], - [[ - 2650, - 2692, - 2707 - ]], - [[ - 2658, - 2426, - 2423 - ]], - [[ - 2633, - 2519, - 2632 - ]], - [[ - 2520, - 2618, - 2521 - ]], - [[ - 2428, - 2424, - 2426 - ]], - [[ - 2427, - 2724, - 2725 - ]], - [[ - 2648, - 2532, - 2534 - ]], - [[ - 2648, - 2649, - 2532 - ]], - [[ - 2660, - 2610, - 2706 - ]], - [[ - 2489, - 2488, - 2609 - ]], - [[ - 2738, - 2735, - 2641 - ]], - [[ - 2642, - 2730, - 2735 - ]], - [[ - 2566, - 2726, - 2668 - ]], - [[ - 2566, - 2568, - 2726 - ]], - [[ - 2285, - 2626, - 2283 - ]], - [[ - 2625, - 2280, - 2627 - ]], - [[ - 2283, - 2289, - 2284 - ]], - [[ - 2283, - 2627, - 2289 - ]], - [[ - 2623, - 2692, - 2650 - ]], - [[ - 2421, - 2658, - 2422 - ]], - [[ - 2739, - 2394, - 2631 - ]], - [[ - 2739, - 2387, - 2394 - ]], - [[ - 2623, - 2694, - 2648 - ]], - [[ - 2623, - 2570, - 2694 - ]], - [[ - 2559, - 2561, - 2501 - ]], - [[ - 2560, - 2645, - 2561 - ]], - [[ - 2397, - 2341, - 2340 - ]], - [[ - 2397, - 2585, - 2341 - ]], - [[ - 2600, - 2355, - 2350 - ]], - [[ - 2358, - 2350, - 2355 - ]], - [[ - 2386, - 2385, - 2388 - ]], - [[ - 2384, - 2389, - 2391 - ]], - [[ - 2329, - 2715, - 2740 - ]], - [[ - 2728, - 2564, - 2715 - ]], - [[ - 2439, - 2574, - 2306 - ]], - [[ - 2434, - 2433, - 2304 - ]], - [[ - 2564, - 2567, - 2566 - ]], - [[ - 2327, - 2326, - 2316 - ]], - [[ - 2349, - 2599, - 2601 - ]], - [[ - 2353, - 2355, - 2599 - ]], - [[ - 2400, - 2399, - 2585 - ]], - [[ - 2402, - 2404, - 2399 - ]], - [[ - 2584, - 2531, - 2530 - ]], - [[ - 2690, - 2689, - 2547 - ]], - [[ - 2690, - 2547, - 2529 - ]], - [[ - 2551, - 2693, - 2552 - ]], - [[ - 2584, - 2530, - 2536 - ]], - [[ - 2529, - 2547, - 2530 - ]], - [[ - 2392, - 2395, - 2390 - ]], - [[ - 2631, - 2394, - 2395 - ]], - [[ - 2401, - 2675, - 2404 - ]], - [[ - 2401, - 2631, - 2675 - ]], - [[ - 2550, - 2548, - 2661 - ]], - [[ - 2550, - 2549, - 2548 - ]], - [[ - 2741, - 2697, - 2667 - ]], - [[ - 2698, - 2563, - 2697 - ]], - [[ - 2557, - 2282, - 2556 - ]], - [[ - 2288, - 2287, - 2281 - ]], - [[ - 2635, - 2617, - 2515 - ]], - [[ - 2521, - 2618, - 2617 - ]], - [[ - 2680, - 2679, - 2706 - ]], - [[ - 2682, - 2742, - 2609 - ]], - [[ - 2561, - 2493, - 2544 - ]], - [[ - 2645, - 2494, - 2493 - ]], - [[ - 2743, - 2370, - 2369 - ]], - [[ - 2710, - 2368, - 2370 - ]], - [[ - 2630, - 2656, - 2709 - ]], - [[ - 2630, - 2442, - 2654 - ]], - [[ - 2606, - 2700, - 2559 - ]], - [[ - 2700, - 2608, - 2679 - ]], - [[ - 2559, - 2700, - 2684 - ]], - [[ - 2608, - 2706, - 2679 - ]], - [[ - 2491, - 2488, - 2490 - ]], - [[ - 2609, - 2742, - 2610 - ]], - [[ - 2537, - 2553, - 2552 - ]], - [[ - 2536, - 2547, - 2553 - ]], - [[ - 2721, - 2537, - 2552 - ]], - [[ - 2722, - 2597, - 2535 - ]], - [[ - 2624, - 2434, - 2574 - ]], - [[ - 2624, - 2432, - 2434 - ]], - [[ - 2580, - 2318, - 2579 - ]], - [[ - 2320, - 2718, - 2719 - ]], - [[ - 2273, - 2637, - 2556 - ]], - [[ - 2292, - 2291, - 2673 - ]], - [[ - 2636, - 2299, - 2277 - ]], - [[ - 2300, - 2556, - 2637 - ]], - [[ - 2277, - 2299, - 2637 - ]], - [[ - 2636, - 2292, - 2299 - ]], - [[ - 2685, - 2417, - 2576 - ]], - [[ - 2685, - 2681, - 2418 - ]], - [[ - 2335, - 2400, - 2397 - ]], - [[ - 2405, - 2398, - 2400 - ]], - [[ - 2445, - 2458, - 2646 - ]], - [[ - 2455, - 2441, - 2440 - ]], - [[ - 2700, - 2679, - 2683 - ]], - [[ - 2586, - 2680, - 2587 - ]], - [[ - 2588, - 2587, - 2576 - ]], - [[ - 2588, - 2594, - 2586 - ]], - [[ - 2273, - 2277, - 2637 - ]], - [[ - 2636, - 2276, - 2731 - ]], - [[ - 2306, - 2305, - 2450 - ]], - [[ - 2304, - 2543, - 2305 - ]], - [[ - 2277, - 2276, - 2636 - ]], - [[ - 2732, - 2505, - 2731 - ]], - [[ - 2422, - 2423, - 2575 - ]], - [[ - 2424, - 2427, - 2725 - ]], - [[ - 2659, - 2423, - 2425 - ]], - [[ - 2422, - 2658, - 2423 - ]], - [[ - 2514, - 2464, - 2634 - ]], - [[ - 2464, - 2653, - 2465 - ]], - [[ - 2634, - 2464, - 2463 - ]], - [[ - 2514, - 2513, - 2464 - ]], - [[ - 2534, - 2533, - 2430 - ]], - [[ - 2532, - 2649, - 2533 - ]], - [[ - 2744, - 2745, - 2352 - ]], - [[ - 2746, - 2621, - 2367 - ]], - [[ - 2357, - 2346, - 2348 - ]], - [[ - 2745, - 2744, - 2747 - ]], - [[ - 2366, - 2364, - 2367 - ]], - [[ - 2348, - 2347, - 2364 - ]], - [[ - 2747, - 2347, - 2346 - ]], - [[ - 2744, - 2621, - 2347 - ]], - [[ - 2652, - 2367, - 2622 - ]], - [[ - 2364, - 2746, - 2367 - ]], - [[ - 2363, - 2652, - 2622 - ]], - [[ - 2344, - 2343, - 2652 - ]], - [[ - 2307, - 2313, - 2312 - ]], - [[ - 2332, - 2740, - 2314 - ]], - [[ - 2748, - 2314, - 2740 - ]], - [[ - 2565, - 2668, - 2331 - ]], - [[ - 2314, - 2310, - 2312 - ]], - [[ - 2314, - 2667, - 2331 - ]], - [[ - 2314, - 2331, - 2310 - ]], - [[ - 2668, - 2726, - 2331 - ]], - [[ - 2336, - 2407, - 2309 - ]], - [[ - 2332, - 2313, - 2307 - ]], - [[ - 2332, - 2664, - 2409 - ]], - [[ - 2332, - 2307, - 2664 - ]], - [[ - 2465, - 2516, - 2463 - ]], - [[ - 2515, - 2518, - 2516 - ]], - [[ - 2672, - 2379, - 2621 - ]], - [[ - 2672, - 2375, - 2379 - ]], - [[ - 2459, - 2729, - 2458 - ]], - [[ - 2431, - 2441, - 2457 - ]], - [[ - 2338, - 2723, - 2322 - ]], - [[ - 2701, - 2323, - 2723 - ]], - [[ - 2722, - 2615, - 2597 - ]], - [[ - 2701, - 2723, - 2615 - ]], - [[ - 2726, - 2568, - 2727 - ]], - [[ - 2315, - 2327, - 2316 - ]], - [[ - 2749, - 2272, - 2275 - ]], - [[ - 2749, - 2273, - 2272 - ]], - [[ - 2347, - 2746, - 2364 - ]], - [[ - 2347, - 2621, - 2746 - ]], - [[ - 2292, - 2673, - 2300 - ]], - [[ - 2291, - 2558, - 2673 - ]], - [[ - 2732, - 2276, - 2736 - ]], - [[ - 2750, - 2605, - 2604 - ]], - [[ - 2640, - 2620, - 2573 - ]], - [[ - 2737, - 2604, - 2620 - ]], - [[ - 2447, - 2446, - 2448 - ]], - [[ - 2443, - 2445, - 2446 - ]], - [[ - 2652, - 2365, - 2367 - ]], - [[ - 2652, - 2369, - 2365 - ]], - [[ - 2498, - 2666, - 2470 - ]], - [[ - 2665, - 2638, - 2666 - ]], - [[ - 2590, - 2613, - 2591 - ]], - [[ - 2612, - 2597, - 2614 - ]], - [[ - 2613, - 2338, - 2337 - ]], - [[ - 2615, - 2723, - 2338 - ]], - [[ - 2613, - 2614, - 2338 - ]], - [[ - 2597, - 2615, - 2614 - ]], - [[ - 2611, - 2613, - 2711 - ]], - [[ - 2612, - 2614, - 2613 - ]], - [[ - 2594, - 2589, - 2494 - ]], - [[ - 2495, - 2669, - 2562 - ]], - [[ - 2611, - 2539, - 2699 - ]], - [[ - 2751, - 2531, - 2584 - ]], - [[ - 2583, - 2751, - 2584 - ]], - [[ - 2419, - 2508, - 2595 - ]], - [[ - 2678, - 2582, - 2597 - ]], - [[ - 2584, - 2536, - 2535 - ]], - [[ - 2722, - 2535, - 2537 - ]], - [[ - 2582, - 2584, - 2535 - ]], - [[ - 2407, - 2336, - 2321 - ]], - [[ - 2309, - 2308, - 2336 - ]], - [[ - 2408, - 2407, - 2713 - ]], - [[ - 2409, - 2664, - 2407 - ]], - [[ - 2581, - 2321, - 2323 - ]], - [[ - 2581, - 2713, - 2321 - ]], - [[ - 2738, - 2641, - 2705 - ]], - [[ - 2735, - 2730, - 2737 - ]], - [[ - 2735, - 2752, - 2500 - ]], - [[ - 2720, - 2606, - 2503 - ]], - [[ - 2568, - 2317, - 2727 - ]], - [[ - 2316, - 2311, - 2317 - ]], - [[ - 2304, - 2421, - 2692 - ]], - [[ - 2304, - 2658, - 2421 - ]], - [[ - 2753, - 2448, - 2449 - ]], - [[ - 2446, - 2445, - 2448 - ]], - [[ - 2683, - 2586, - 2594 - ]], - [[ - 2683, - 2679, - 2586 - ]], - [[ - 2686, - 2435, - 2437 - ]], - [[ - 2686, - 2687, - 2435 - ]], - [[ - 2284, - 2281, - 2287 - ]], - [[ - 2289, - 2627, - 2281 - ]], - [[ - 2409, - 2408, - 2397 - ]], - [[ - 2712, - 2333, - 2396 - ]], - [[ - 2676, - 2408, - 2713 - ]], - [[ - 2676, - 2397, - 2408 - ]], - [[ - 2713, - 2712, - 2676 - ]], - [[ - 2333, - 2335, - 2396 - ]], - [[ - 2754, - 2531, - 2755 - ]], - [[ - 2699, - 2539, - 2419 - ]], - [[ - 2595, - 2755, - 2419 - ]], - [[ - 2531, - 2751, - 2755 - ]], - [[ - 2601, - 2600, - 2350 - ]], - [[ - 2599, - 2355, - 2600 - ]], - [[ - 2714, - 2462, - 2461 - ]], - [[ - 2714, - 2671, - 2462 - ]], - [[ - 2342, - 2383, - 2393 - ]], - [[ - 2341, - 2585, - 2392 - ]], - [[ - 2391, - 2342, - 2393 - ]], - [[ - 2389, - 2340, - 2342 - ]], - [[ - 2305, - 2528, - 2450 - ]], - [[ - 2729, - 2431, - 2457 - ]], - [[ - 2429, - 2528, - 2305 - ]], - [[ - 2429, - 2431, - 2528 - ]], - [[ - 2745, - 2356, - 2352 - ]], - [[ - 2745, - 2346, - 2356 - ]], - [[ - 2353, - 2598, - 2351 - ]], - [[ - 2353, - 2599, - 2598 - ]], - [[ - 2741, - 2748, - 2740 - ]], - [[ - 2697, - 2565, - 2667 - ]], - [[ - 2748, - 2667, - 2314 - ]], - [[ - 2748, - 2741, - 2667 - ]], - [[ - 2750, - 2276, - 2270 - ]], - [[ - 2604, - 2736, - 2276 - ]], - [[ - 2337, - 2593, - 2588 - ]], - [[ - 2337, - 2339, - 2593 - ]], - [[ - 2666, - 2705, - 2470 - ]], - [[ - 2752, - 2503, - 2500 - ]], - [[ - 2752, - 2738, - 2705 - ]], - [[ - 2752, - 2735, - 2738 - ]], - [[ - 2720, - 2752, - 2705 - ]], - [[ - 2720, - 2503, - 2752 - ]], - [[ - 2705, - 2703, - 2470 - ]], - [[ - 2705, - 2641, - 2703 - ]], - [[ - 2504, - 2606, - 2559 - ]], - [[ - 2720, - 2607, - 2606 - ]], - [[ - 2715, - 2741, - 2740 - ]], - [[ - 2715, - 2697, - 2741 - ]], - [[ - 2734, - 2733, - 2456 - ]], - [[ - 2674, - 2646, - 2733 - ]], - [[ - 2500, - 2504, - 2501 - ]], - [[ - 2503, - 2606, - 2504 - ]], - [[ - 2576, - 2592, - 2591 - ]], - [[ - 2576, - 2419, - 2592 - ]], - [[ - 2590, - 2538, - 2539 - ]], - [[ - 2592, - 2419, - 2538 - ]], - [[ - 2644, - 2732, - 2730 - ]], - [[ - 2731, - 2276, - 2732 - ]], - [[ - 2452, - 2455, - 2440 - ]], - [[ - 2455, - 2734, - 2456 - ]], - [[ - 2452, - 2734, - 2455 - ]], - [[ - 2733, - 2646, - 2456 - ]], - [[ - 2424, - 2725, - 2425 - ]], - [[ - 2724, - 2659, - 2725 - ]], - [[ - 2506, - 2644, - 2643 - ]], - [[ - 2506, - 2732, - 2644 - ]], - [[ - 2274, - 2627, - 2280 - ]], - [[ - 2274, - 2281, - 2627 - ]], - [[ - 2626, - 2625, - 2627 - ]], - [[ - 2278, - 2280, - 2625 - ]], - [[ - 2756, - 2718, - 2328 - ]], - [[ - 2756, - 2578, - 2718 - ]], - [[ - 2529, - 2754, - 2596 - ]], - [[ - 2529, - 2531, - 2754 - ]], - [[ - 2569, - 2693, - 2689 - ]], - [[ - 2553, - 2547, - 2702 - ]], - [[ - 2689, - 2693, - 2551 - ]], - [[ - 2717, - 2686, - 2693 - ]], - [[ - 2702, - 2551, - 2553 - ]], - [[ - 2702, - 2689, - 2551 - ]], - [[ - 2676, - 2712, - 2396 - ]], - [[ - 2713, - 2581, - 2712 - ]], - [[ - 2632, - 2519, - 2521 - ]], - [[ - 2633, - 2708, - 2519 - ]], - [[ - 2590, - 2539, - 2711 - ]], - [[ - 2419, - 2755, - 2699 - ]], - [[ - 2751, - 2699, - 2755 - ]], - [[ - 2751, - 2583, - 2699 - ]], - [[ - 2696, - 2495, - 2589 - ]], - [[ - 2696, - 2669, - 2495 - ]], - [[ - 2472, - 2640, - 2573 - ]], - [[ - 2704, - 2641, - 2640 - ]], - [[ - 2737, - 2736, - 2604 - ]], - [[ - 2730, - 2732, - 2736 - ]], - [[ - 2276, - 2750, - 2604 - ]], - [[ - 2270, - 2269, - 2757 - ]], - [[ - 2620, - 2604, - 2474 - ]], - [[ - 2750, - 2270, - 2757 - ]], - [[ - 2605, - 2757, - 2474 - ]], - [[ - 2605, - 2750, - 2757 - ]], - [[ - 2620, - 2474, - 2266 - ]], - [[ - 2757, - 2269, - 2474 - ]], - [[ - 2707, - 2420, - 2549 - ]], - [[ - 2422, - 2575, - 2420 - ]], - [[ - 2420, - 2707, - 2421 - ]], - [[ - 2549, - 2540, - 2707 - ]], - [[ - 2587, - 2681, - 2685 - ]], - [[ - 2706, - 2742, - 2682 - ]], - [[ - 2508, - 2418, - 2492 - ]], - [[ - 2417, - 2685, - 2418 - ]], - [[ - 2492, - 2609, - 2488 - ]], - [[ - 2492, - 2682, - 2609 - ]], - [[ - 2671, - 2716, - 2657 - ]], - [[ - 2514, - 2628, - 2512 - ]], - [[ - 2708, - 2716, - 2671 - ]], - [[ - 2633, - 2512, - 2716 - ]], - [[ - 2418, - 2682, - 2492 - ]], - [[ - 2681, - 2706, - 2682 - ]], - [[ - 2523, - 2522, - 2670 - ]], - [[ - 2654, - 2656, - 2630 - ]], - [[ - 2522, - 2460, - 2670 - ]], - [[ - 2522, - 2526, - 2460 - ]], - [[ - 2524, - 2527, - 2522 - ]], - [[ - 2442, - 2441, - 2525 - ]], - [[ - 2526, - 2525, - 2461 - ]], - [[ - 2527, - 2616, - 2525 - ]], - [[ - 2460, - 2526, - 2461 - ]], - [[ - 2522, - 2527, - 2526 - ]], - [[ - 2524, - 2655, - 2527 - ]], - [[ - 2524, - 2629, - 2655 - ]], - [[ - 2709, - 2655, - 2629 - ]], - [[ - 2709, - 2656, - 2655 - ]], - [[ - 2616, - 2654, - 2442 - ]], - [[ - 2616, - 2655, - 2654 - ]], - [[ - 2641, - 2737, - 2620 - ]], - [[ - 2641, - 2735, - 2737 - ]], - [[ - 2489, - 2610, - 2496 - ]], - [[ - 2742, - 2706, - 2610 - ]], - [[ - 2613, - 2590, - 2711 - ]], - [[ - 2592, - 2538, - 2590 - ]], - [[ - 2378, - 2361, - 2622 - ]], - [[ - 2378, - 2382, - 2361 - ]], - [[ - 2663, - 2326, - 2328 - ]], - [[ - 2663, - 2316, - 2326 - ]], - [[ - 2728, - 2327, - 2567 - ]], - [[ - 2329, - 2328, - 2327 - ]], - [[ - 2567, - 2315, - 2568 - ]], - [[ - 2567, - 2327, - 2315 - ]], - [[ - 2325, - 2663, - 2328 - ]], - [[ - 2662, - 2324, - 2316 - ]], - [[ - 2325, - 2662, - 2663 - ]], - [[ - 2325, - 2324, - 2662 - ]], - [[ - 2447, - 2753, - 2449 - ]], - [[ - 2447, - 2448, - 2753 - ]], - [[ - 2454, - 2734, - 2452 - ]], - [[ - 2454, - 2674, - 2734 - ]], - [[ - 2329, - 2728, - 2715 - ]], - [[ - 2329, - 2327, - 2728 - ]], - [[ - 2754, - 2595, - 2596 - ]], - [[ - 2754, - 2755, - 2595 - ]], - [[ - 2391, - 2389, - 2342 - ]], - [[ - 2373, - 2340, - 2389 - ]], - [[ - 2392, - 2390, - 2393 - ]], - [[ - 2385, - 2384, - 2391 - ]], - [[ - 2393, - 2390, - 2391 - ]], - [[ - 2395, - 2387, - 2390 - ]], - [[ - 2458, - 2729, - 2457 - ]], - [[ - 2528, - 2431, - 2729 - ]], - [[ - 2745, - 2747, - 2346 - ]], - [[ - 2744, - 2347, - 2747 - ]], - [[ - 2579, - 2320, - 2719 - ]], - [[ - 2319, - 2718, - 2320 - ]], - [[ - 2579, - 2318, - 2320 - ]], - [[ - 2580, - 2324, - 2318 - ]], - [[ - 2710, - 2743, - 2369 - ]], - [[ - 2710, - 2370, - 2743 - ]], - [[ - 2596, - 2690, - 2529 - ]], - [[ - 2596, - 2569, - 2690 - ]], - [[ - 2341, - 2392, - 2383 - ]], - [[ - 2675, - 2631, - 2392 - ]], - [[ - 2719, - 2577, - 2579 - ]], - [[ - 2719, - 2578, - 2577 - ]], - [[ - 2360, - 2366, - 2368 - ]], - [[ - 2360, - 2364, - 2366 - ]], - [[ - 2681, - 2680, - 2706 - ]], - [[ - 2681, - 2587, - 2680 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222836f6-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cff49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2758, - 2759, - 2760 - ]], - [[ - 2761, - 2762, - 2763 - ]], - [[ - 2764, - 2765, - 2766 - ]], - [[ - 2767, - 2768, - 2769 - ]], - [[ - 2766, - 2770, - 2771 - ]], - [[ - 2772, - 2761, - 2763 - ]], - [[ - 2773, - 2774, - 2775 - ]], - [[ - 2776, - 2773, - 2777 - ]], - [[ - 2775, - 2774, - 2778 - ]], - [[ - 2770, - 2772, - 2776 - ]], - [[ - 2779, - 2780, - 2781 - ]], - [[ - 2779, - 2782, - 2783 - ]], - [[ - 2774, - 2784, - 2785 - ]], - [[ - 2786, - 2787, - 2788 - ]], - [[ - 2789, - 2790, - 2786 - ]], - [[ - 2776, - 2774, - 2773 - ]], - [[ - 2791, - 2792, - 2758 - ]], - [[ - 2791, - 2793, - 2794 - ]], - [[ - 2795, - 2794, - 2793 - ]], - [[ - 2784, - 2796, - 2763 - ]], - [[ - 2774, - 2797, - 2782 - ]], - [[ - 2796, - 2776, - 2772 - ]], - [[ - 2762, - 2794, - 2763 - ]], - [[ - 2758, - 2795, - 2793 - ]], - [[ - 2798, - 2794, - 2795 - ]], - [[ - 2767, - 2759, - 2758 - ]], - [[ - 2798, - 2795, - 2760 - ]], - [[ - 2799, - 2800, - 2789 - ]], - [[ - 2780, - 2779, - 2800 - ]], - [[ - 2759, - 2798, - 2760 - ]], - [[ - 2760, - 2795, - 2758 - ]], - [[ - 2762, - 2791, - 2794 - ]], - [[ - 2758, - 2793, - 2791 - ]], - [[ - 2774, - 2785, - 2797 - ]], - [[ - 2797, - 2783, - 2782 - ]], - [[ - 2801, - 2802, - 2803 - ]], - [[ - 2802, - 2768, - 2767 - ]], - [[ - 2800, - 2790, - 2789 - ]], - [[ - 2800, - 2783, - 2790 - ]], - [[ - 2771, - 2770, - 2777 - ]], - [[ - 2801, - 2803, - 2761 - ]], - [[ - 2796, - 2772, - 2763 - ]], - [[ - 2801, - 2765, - 2802 - ]], - [[ - 2803, - 2762, - 2761 - ]], - [[ - 2803, - 2792, - 2762 - ]], - [[ - 2762, - 2792, - 2791 - ]], - [[ - 2803, - 2802, - 2767 - ]], - [[ - 2792, - 2767, - 2758 - ]], - [[ - 2792, - 2803, - 2767 - ]], - [[ - 2769, - 2759, - 2767 - ]], - [[ - 2769, - 2798, - 2759 - ]], - [[ - 2784, - 2804, - 2785 - ]], - [[ - 2783, - 2800, - 2779 - ]], - [[ - 2804, - 2797, - 2785 - ]], - [[ - 2805, - 2787, - 2783 - ]], - [[ - 2765, - 2764, - 2802 - ]], - [[ - 2764, - 2768, - 2802 - ]], - [[ - 2772, - 2801, - 2761 - ]], - [[ - 2772, - 2770, - 2801 - ]], - [[ - 2770, - 2765, - 2801 - ]], - [[ - 2770, - 2766, - 2765 - ]], - [[ - 2805, - 2783, - 2797 - ]], - [[ - 2787, - 2790, - 2783 - ]], - [[ - 2799, - 2780, - 2800 - ]], - [[ - 2799, - 2781, - 2780 - ]], - [[ - 2789, - 2786, - 2788 - ]], - [[ - 2790, - 2787, - 2786 - ]], - [[ - 2787, - 2784, - 2763 - ]], - [[ - 2787, - 2804, - 2784 - ]], - [[ - 2770, - 2776, - 2777 - ]], - [[ - 2796, - 2784, - 2774 - ]], - [[ - 2778, - 2774, - 2782 - ]], - [[ - 2776, - 2796, - 2774 - ]], - [[ - 2804, - 2805, - 2797 - ]], - [[ - 2804, - 2787, - 2805 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2228f9ca-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef607d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2806, - 242, - 243 - ]], - [[ - 244, - 2807, - 2806 - ]], - [[ - 2807, - 241, - 2806 - ]], - [[ - 245, - 2808, - 244 - ]], - [[ - 2809, - 2810, - 2811 - ]], - [[ - 2812, - 215, - 238 - ]], - [[ - 2810, - 2813, - 238 - ]], - [[ - 2814, - 213, - 215 - ]], - [[ - 241, - 2807, - 2809 - ]], - [[ - 2812, - 2813, - 2815 - ]], - [[ - 2809, - 2807, - 2813 - ]], - [[ - 245, - 247, - 261 - ]], - [[ - 2807, - 244, - 2808 - ]], - [[ - 2808, - 245, - 261 - ]], - [[ - 2811, - 2810, - 238 - ]], - [[ - 239, - 240, - 2809 - ]], - [[ - 2814, - 2812, - 2815 - ]], - [[ - 238, - 2813, - 2812 - ]], - [[ - 213, - 2814, - 2815 - ]], - [[ - 215, - 2812, - 2814 - ]], - [[ - 244, - 2806, - 243 - ]], - [[ - 241, - 242, - 2806 - ]], - [[ - 2810, - 2809, - 2813 - ]], - [[ - 240, - 241, - 2809 - ]], - [[ - 239, - 2811, - 238 - ]], - [[ - 239, - 2809, - 2811 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222920fb-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2015-01-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.2a5997ebc5054d16864de6fe20493984", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2816, - 2817, - 2818 - ]], - [[ - 2819, - 2818, - 2820 - ]], - [[ - 2821, - 2822, - 2820 - ]], - [[ - 2817, - 2822, - 2818 - ]], - [[ - 2819, - 2817, - 2823 - ]], - [[ - 2822, - 2824, - 2818 - ]], - [[ - 2819, - 2816, - 2818 - ]], - [[ - 2823, - 2817, - 2816 - ]], - [[ - 2822, - 2819, - 2820 - ]], - [[ - 2823, - 2816, - 2819 - ]], - [[ - 2819, - 2822, - 2817 - ]], - [[ - 2821, - 2824, - 2822 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222b6a92-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5d1a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2825, - 2826, - 2827 - ]], - [[ - 2827, - 2828, - 183 - ]], - [[ - 2829, - 2828, - 2830 - ]], - [[ - 2829, - 2831, - 2828 - ]], - [[ - 2832, - 2827, - 183 - ]], - [[ - 2828, - 182, - 183 - ]], - [[ - 2826, - 2830, - 2828 - ]], - [[ - 2833, - 2829, - 2834 - ]], - [[ - 2835, - 2832, - 183 - ]], - [[ - 2835, - 2827, - 2832 - ]], - [[ - 182, - 2836, - 2834 - ]], - [[ - 182, - 2831, - 2836 - ]], - [[ - 2826, - 2828, - 2827 - ]], - [[ - 2831, - 182, - 2828 - ]], - [[ - 2825, - 2835, - 183 - ]], - [[ - 2825, - 2827, - 2835 - ]], - [[ - 2836, - 2833, - 2834 - ]], - [[ - 2836, - 2831, - 2829 - ]], - [[ - 2834, - 2829, - 2830 - ]], - [[ - 2833, - 2836, - 2829 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222c557f-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cb049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2837, - 2838, - 2839 - ]], - [[ - 2840, - 2841, - 2839 - ]], - [[ - 2838, - 2842, - 2839 - ]], - [[ - 2839, - 2843, - 2840 - ]], - [[ - 2843, - 2839, - 2842 - ]], - [[ - 2844, - 2845, - 2846 - ]], - [[ - 2844, - 2843, - 2842 - ]], - [[ - 2844, - 2847, - 2845 - ]], - [[ - 2844, - 2848, - 2847 - ]], - [[ - 2849, - 2847, - 2848 - ]], - [[ - 2850, - 2851, - 2852 - ]], - [[ - 2852, - 2851, - 2853 - ]], - [[ - 2850, - 2849, - 2848 - ]], - [[ - 2851, - 2850, - 2848 - ]], - [[ - 2851, - 2854, - 2855 - ]], - [[ - 2851, - 2848, - 2854 - ]], - [[ - 2854, - 2848, - 2856 - ]], - [[ - 2844, - 2842, - 2848 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222ddc12-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef505149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2857, - 184, - 185 - ]], - [[ - 2857, - 185, - 2858 - ]], - [[ - 185, - 186, - 2859 - ]], - [[ - 2859, - 2860, - 185 - ]], - [[ - 2861, - 2862, - 2863 - ]], - [[ - 2864, - 2865, - 2866 - ]], - [[ - 2867, - 2868, - 191 - ]], - [[ - 2869, - 2870, - 2871 - ]], - [[ - 2872, - 2873, - 2874 - ]], - [[ - 2875, - 2876, - 2877 - ]], - [[ - 2878, - 2879, - 2880 - ]], - [[ - 2879, - 2881, - 2882 - ]], - [[ - 2883, - 2873, - 2884 - ]], - [[ - 2885, - 2886, - 2887 - ]], - [[ - 2887, - 2886, - 2888 - ]], - [[ - 2889, - 2890, - 2891 - ]], - [[ - 2892, - 2893, - 2894 - ]], - [[ - 2895, - 192, - 2894 - ]], - [[ - 2896, - 2897, - 2898 - ]], - [[ - 192, - 2867, - 191 - ]], - [[ - 2870, - 2869, - 2899 - ]], - [[ - 2900, - 2901, - 2902 - ]], - [[ - 2903, - 2904, - 2905 - ]], - [[ - 2906, - 189, - 2907 - ]], - [[ - 2898, - 186, - 187 - ]], - [[ - 2908, - 2909, - 2910 - ]], - [[ - 2858, - 185, - 2860 - ]], - [[ - 2911, - 2912, - 2913 - ]], - [[ - 2914, - 2915, - 2916 - ]], - [[ - 2917, - 2918, - 188 - ]], - [[ - 188, - 189, - 2906 - ]], - [[ - 2919, - 2920, - 2874 - ]], - [[ - 2921, - 2922, - 2923 - ]], - [[ - 2924, - 2925, - 2867 - ]], - [[ - 2926, - 2927, - 2928 - ]], - [[ - 2929, - 2930, - 2907 - ]], - [[ - 2931, - 190, - 2932 - ]], - [[ - 2933, - 2934, - 2928 - ]], - [[ - 2935, - 2936, - 2937 - ]], - [[ - 2893, - 2923, - 2938 - ]], - [[ - 2939, - 2913, - 2912 - ]], - [[ - 2940, - 2941, - 2942 - ]], - [[ - 2942, - 2872, - 2920 - ]], - [[ - 190, - 2943, - 189 - ]], - [[ - 2929, - 2907, - 189 - ]], - [[ - 2944, - 2945, - 2946 - ]], - [[ - 2908, - 2910, - 2947 - ]], - [[ - 2920, - 2872, - 2874 - ]], - [[ - 2942, - 2921, - 2923 - ]], - [[ - 2938, - 2875, - 2948 - ]], - [[ - 2876, - 2913, - 2877 - ]], - [[ - 2880, - 2882, - 2887 - ]], - [[ - 2884, - 2941, - 2940 - ]], - [[ - 2862, - 2906, - 2907 - ]], - [[ - 2949, - 188, - 2906 - ]], - [[ - 2876, - 2950, - 2874 - ]], - [[ - 2951, - 2922, - 2950 - ]], - [[ - 2881, - 2884, - 2952 - ]], - [[ - 2940, - 2942, - 2923 - ]], - [[ - 2911, - 2953, - 2954 - ]], - [[ - 2911, - 2955, - 2953 - ]], - [[ - 2938, - 2923, - 2875 - ]], - [[ - 2877, - 2913, - 2948 - ]], - [[ - 2896, - 2861, - 2956 - ]], - [[ - 2957, - 2909, - 2908 - ]], - [[ - 2876, - 2951, - 2950 - ]], - [[ - 2876, - 2875, - 2951 - ]], - [[ - 190, - 2931, - 2943 - ]], - [[ - 2924, - 2867, - 192 - ]], - [[ - 2950, - 2919, - 2874 - ]], - [[ - 2950, - 2921, - 2919 - ]], - [[ - 2958, - 2944, - 2959 - ]], - [[ - 2958, - 2945, - 2944 - ]], - [[ - 2921, - 2942, - 2920 - ]], - [[ - 2960, - 2872, - 2942 - ]], - [[ - 186, - 2898, - 2859 - ]], - [[ - 2917, - 188, - 2862 - ]], - [[ - 2895, - 2961, - 2962 - ]], - [[ - 2892, - 2963, - 2964 - ]], - [[ - 2945, - 2965, - 2909 - ]], - [[ - 2958, - 2910, - 2965 - ]], - [[ - 2885, - 2889, - 2886 - ]], - [[ - 2885, - 2881, - 2952 - ]], - [[ - 2895, - 2966, - 192 - ]], - [[ - 2967, - 2968, - 2969 - ]], - [[ - 2943, - 2929, - 189 - ]], - [[ - 2943, - 2930, - 2929 - ]], - [[ - 2862, - 2949, - 2906 - ]], - [[ - 2862, - 188, - 2949 - ]], - [[ - 2944, - 2903, - 2959 - ]], - [[ - 2970, - 2900, - 2971 - ]], - [[ - 2972, - 2973, - 2964 - ]], - [[ - 2871, - 2948, - 2974 - ]], - [[ - 2882, - 2881, - 2885 - ]], - [[ - 2883, - 2884, - 2881 - ]], - [[ - 2941, - 2960, - 2942 - ]], - [[ - 2873, - 2872, - 2960 - ]], - [[ - 2933, - 2869, - 2912 - ]], - [[ - 2925, - 2868, - 2867 - ]], - [[ - 2969, - 2865, - 2975 - ]], - [[ - 2948, - 2913, - 2974 - ]], - [[ - 187, - 2918, - 2898 - ]], - [[ - 187, - 188, - 2918 - ]], - [[ - 2879, - 2883, - 2881 - ]], - [[ - 2879, - 2873, - 2883 - ]], - [[ - 2961, - 2895, - 2894 - ]], - [[ - 2976, - 2966, - 2895 - ]], - [[ - 2954, - 2933, - 2912 - ]], - [[ - 2934, - 2955, - 2928 - ]], - [[ - 2945, - 2909, - 2977 - ]], - [[ - 2965, - 2910, - 2909 - ]], - [[ - 2858, - 2860, - 2947 - ]], - [[ - 2860, - 2900, - 2902 - ]], - [[ - 2946, - 2945, - 2977 - ]], - [[ - 2958, - 2965, - 2945 - ]], - [[ - 2971, - 2978, - 2979 - ]], - [[ - 2946, - 2903, - 2944 - ]], - [[ - 2930, - 2932, - 2980 - ]], - [[ - 2905, - 2959, - 2903 - ]], - [[ - 2936, - 2905, - 2981 - ]], - [[ - 2936, - 2959, - 2905 - ]], - [[ - 2869, - 2939, - 2912 - ]], - [[ - 2974, - 2913, - 2939 - ]], - [[ - 2873, - 2941, - 2884 - ]], - [[ - 2873, - 2960, - 2941 - ]], - [[ - 2937, - 2982, - 2935 - ]], - [[ - 2983, - 2915, - 2914 - ]], - [[ - 2984, - 2916, - 2864 - ]], - [[ - 2985, - 2981, - 2904 - ]], - [[ - 2865, - 2864, - 2975 - ]], - [[ - 2915, - 2983, - 2986 - ]], - [[ - 2987, - 2932, - 2975 - ]], - [[ - 190, - 191, - 2868 - ]], - [[ - 2930, - 2931, - 2932 - ]], - [[ - 2930, - 2943, - 2931 - ]], - [[ - 2940, - 2923, - 2964 - ]], - [[ - 2922, - 2951, - 2875 - ]], - [[ - 2948, - 2875, - 2877 - ]], - [[ - 2923, - 2922, - 2875 - ]], - [[ - 2988, - 2967, - 2969 - ]], - [[ - 2864, - 2987, - 2975 - ]], - [[ - 2916, - 2915, - 2864 - ]], - [[ - 2986, - 2932, - 2987 - ]], - [[ - 2864, - 2915, - 2987 - ]], - [[ - 2914, - 2984, - 2989 - ]], - [[ - 2933, - 2928, - 2990 - ]], - [[ - 2991, - 2982, - 2985 - ]], - [[ - 2992, - 2978, - 2993 - ]], - [[ - 2992, - 2979, - 2978 - ]], - [[ - 2868, - 2925, - 2994 - ]], - [[ - 2871, - 2870, - 2938 - ]], - [[ - 2907, - 2863, - 2862 - ]], - [[ - 2896, - 2898, - 2918 - ]], - [[ - 2995, - 2996, - 2927 - ]], - [[ - 2955, - 2911, - 2928 - ]], - [[ - 2990, - 2928, - 2996 - ]], - [[ - 2911, - 2936, - 2926 - ]], - [[ - 2997, - 2908, - 2947 - ]], - [[ - 2997, - 2957, - 2908 - ]], - [[ - 2899, - 2990, - 2995 - ]], - [[ - 2869, - 2933, - 2990 - ]], - [[ - 2893, - 2892, - 2964 - ]], - [[ - 2894, - 2963, - 2892 - ]], - [[ - 2919, - 2921, - 2920 - ]], - [[ - 2950, - 2922, - 2921 - ]], - [[ - 2973, - 2890, - 2952 - ]], - [[ - 2889, - 2885, - 2952 - ]], - [[ - 2886, - 2891, - 2963 - ]], - [[ - 2886, - 2889, - 2891 - ]], - [[ - 2995, - 2998, - 2926 - ]], - [[ - 2999, - 2926, - 2991 - ]], - [[ - 2971, - 2986, - 2978 - ]], - [[ - 3000, - 3001, - 2999 - ]], - [[ - 3001, - 3000, - 2989 - ]], - [[ - 3002, - 2978, - 2983 - ]], - [[ - 2904, - 2901, - 2985 - ]], - [[ - 2980, - 2907, - 2930 - ]], - [[ - 2985, - 2901, - 2992 - ]], - [[ - 2863, - 2907, - 2980 - ]], - [[ - 2995, - 2926, - 3001 - ]], - [[ - 2989, - 2995, - 3001 - ]], - [[ - 2891, - 2890, - 2973 - ]], - [[ - 2952, - 2884, - 2940 - ]], - [[ - 2991, - 2926, - 2982 - ]], - [[ - 2928, - 2911, - 2926 - ]], - [[ - 2984, - 2995, - 2989 - ]], - [[ - 2927, - 2926, - 2998 - ]], - [[ - 2899, - 2995, - 2984 - ]], - [[ - 2990, - 2996, - 2995 - ]], - [[ - 2981, - 2937, - 2936 - ]], - [[ - 2981, - 2985, - 2937 - ]], - [[ - 2900, - 2970, - 2901 - ]], - [[ - 2904, - 2903, - 2946 - ]], - [[ - 2901, - 2970, - 2992 - ]], - [[ - 2981, - 2905, - 2904 - ]], - [[ - 2992, - 2970, - 2979 - ]], - [[ - 3003, - 2946, - 2977 - ]], - [[ - 2977, - 2902, - 3003 - ]], - [[ - 2902, - 2957, - 2860 - ]], - [[ - 2904, - 3003, - 2901 - ]], - [[ - 2860, - 2997, - 2947 - ]], - [[ - 2977, - 2957, - 2902 - ]], - [[ - 2977, - 2909, - 2957 - ]], - [[ - 2997, - 2860, - 2957 - ]], - [[ - 2859, - 2897, - 2860 - ]], - [[ - 2954, - 2934, - 2933 - ]], - [[ - 2953, - 2955, - 2934 - ]], - [[ - 2983, - 2978, - 2986 - ]], - [[ - 2863, - 2971, - 2861 - ]], - [[ - 2986, - 2863, - 2980 - ]], - [[ - 2897, - 2900, - 2860 - ]], - [[ - 2986, - 2971, - 2863 - ]], - [[ - 2979, - 2970, - 2971 - ]], - [[ - 2932, - 2986, - 2980 - ]], - [[ - 2987, - 2915, - 2986 - ]], - [[ - 2911, - 2954, - 2912 - ]], - [[ - 2953, - 2934, - 2954 - ]], - [[ - 2983, - 3000, - 3002 - ]], - [[ - 3001, - 2926, - 2999 - ]], - [[ - 2973, - 2952, - 2940 - ]], - [[ - 2890, - 2889, - 2952 - ]], - [[ - 2964, - 2973, - 2940 - ]], - [[ - 2964, - 2963, - 2972 - ]], - [[ - 2891, - 2972, - 2963 - ]], - [[ - 2891, - 2973, - 2972 - ]], - [[ - 2899, - 2866, - 2968 - ]], - [[ - 2984, - 2864, - 2866 - ]], - [[ - 2865, - 2968, - 2866 - ]], - [[ - 2962, - 2961, - 2938 - ]], - [[ - 2926, - 2935, - 2982 - ]], - [[ - 2926, - 2936, - 2935 - ]], - [[ - 2932, - 2868, - 2994 - ]], - [[ - 2932, - 190, - 2868 - ]], - [[ - 2966, - 2988, - 3004 - ]], - [[ - 2994, - 2975, - 2932 - ]], - [[ - 2966, - 3004, - 192 - ]], - [[ - 2967, - 2976, - 2962 - ]], - [[ - 3004, - 2988, - 2925 - ]], - [[ - 2968, - 2865, - 2969 - ]], - [[ - 2994, - 2988, - 2969 - ]], - [[ - 2966, - 2976, - 2988 - ]], - [[ - 2901, - 3003, - 2902 - ]], - [[ - 2904, - 2946, - 3003 - ]], - [[ - 2984, - 2914, - 2916 - ]], - [[ - 2989, - 2983, - 2914 - ]], - [[ - 3002, - 2993, - 2978 - ]], - [[ - 2982, - 2937, - 2985 - ]], - [[ - 2993, - 2985, - 2992 - ]], - [[ - 2993, - 2991, - 2985 - ]], - [[ - 3002, - 2991, - 2993 - ]], - [[ - 3002, - 2999, - 2991 - ]], - [[ - 2887, - 2882, - 2885 - ]], - [[ - 2880, - 2879, - 2882 - ]], - [[ - 2988, - 2994, - 2925 - ]], - [[ - 2969, - 2975, - 2994 - ]], - [[ - 3002, - 3000, - 2999 - ]], - [[ - 2983, - 2989, - 3000 - ]], - [[ - 2971, - 2956, - 2861 - ]], - [[ - 2971, - 2900, - 2956 - ]], - [[ - 2990, - 2899, - 2869 - ]], - [[ - 2984, - 2866, - 2899 - ]], - [[ - 2948, - 2871, - 2938 - ]], - [[ - 2899, - 2968, - 2962 - ]], - [[ - 2962, - 2938, - 2870 - ]], - [[ - 2961, - 2893, - 2938 - ]], - [[ - 2895, - 2962, - 2976 - ]], - [[ - 2870, - 2899, - 2962 - ]], - [[ - 2976, - 2967, - 2988 - ]], - [[ - 2962, - 2968, - 2967 - ]], - [[ - 2939, - 2871, - 2974 - ]], - [[ - 2939, - 2869, - 2871 - ]], - [[ - 2900, - 2897, - 2956 - ]], - [[ - 2918, - 2861, - 2896 - ]], - [[ - 2898, - 2897, - 2859 - ]], - [[ - 2896, - 2956, - 2897 - ]], - [[ - 2861, - 2917, - 2862 - ]], - [[ - 2861, - 2918, - 2917 - ]], - [[ - 3004, - 2924, - 192 - ]], - [[ - 3004, - 2925, - 2924 - ]], - [[ - 2923, - 2893, - 2964 - ]], - [[ - 2961, - 2894, - 2893 - ]], - [[ - 2995, - 2927, - 2998 - ]], - [[ - 2996, - 2928, - 2927 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222e2a53-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cae49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3005, - 3006, - 3007 - ]], - [[ - 3005, - 3007, - 3008 - ]], - [[ - 3008, - 3009, - 3010 - ]], - [[ - 3008, - 3011, - 3009 - ]], - [[ - 3008, - 3007, - 3011 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b222ec5e4-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef660549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3012, - 3013, - 3014 - ]], - [[ - 3013, - 3015, - 3014 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2230c204-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cf949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3016, - 3017, - 3018 - ]], - [[ - 3016, - 3019, - 3020 - ]], - [[ - 3020, - 3019, - 3021 - ]], - [[ - 3021, - 3019, - 3022 - ]], - [[ - 3022, - 3019, - 3023 - ]], - [[ - 3016, - 3018, - 3019 - ]], - [[ - 3017, - 3024, - 3018 - ]], - [[ - 3025, - 3026, - 3024 - ]], - [[ - 3024, - 3026, - 3027 - ]], - [[ - 3028, - 3025, - 3024 - ]], - [[ - 3017, - 3028, - 3024 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2231105d-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cf849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3029, - 3030, - 3031 - ]], - [[ - 3030, - 3032, - 3031 - ]], - [[ - 3031, - 3033, - 3034 - ]], - [[ - 3031, - 3032, - 3033 - ]], - [[ - 3033, - 3032, - 3035 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2231d343-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2015-01-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.21ab1c490f1540238f61717fe02159de", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3036, - 3037, - 3038 - ]], - [[ - 3036, - 3038, - 3039 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2232218d-00b5-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef749949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3040, - 3041, - 3042 - ]], - [[ - 3043, - 3044, - 3045 - ]], - [[ - 3045, - 3046, - 3047 - ]], - [[ - 2257, - 3043, - 2258 - ]], - [[ - 2256, - 3048, - 3049 - ]], - [[ - 3048, - 2256, - 3050 - ]], - [[ - 3051, - 2256, - 2255 - ]], - [[ - 3052, - 2256, - 3053 - ]], - [[ - 3052, - 3050, - 2256 - ]], - [[ - 3054, - 2256, - 3055 - ]], - [[ - 2259, - 3056, - 3057 - ]], - [[ - 3058, - 3059, - 3060 - ]], - [[ - 3061, - 2256, - 3062 - ]], - [[ - 3059, - 1788, - 1782 - ]], - [[ - 3063, - 2256, - 3064 - ]], - [[ - 3063, - 3062, - 2256 - ]], - [[ - 3065, - 2256, - 3051 - ]], - [[ - 3065, - 3064, - 2256 - ]], - [[ - 3066, - 3051, - 2255 - ]], - [[ - 3067, - 3066, - 2255 - ]], - [[ - 3068, - 2255, - 3069 - ]], - [[ - 3069, - 3070, - 3071 - ]], - [[ - 3071, - 3072, - 3073 - ]], - [[ - 3073, - 3072, - 3074 - ]], - [[ - 3074, - 3075, - 3076 - ]], - [[ - 3058, - 3060, - 3077 - ]], - [[ - 3059, - 1782, - 3060 - ]], - [[ - 3076, - 3078, - 3077 - ]], - [[ - 3061, - 3079, - 2256 - ]], - [[ - 2256, - 3079, - 3080 - ]], - [[ - 3078, - 3058, - 3077 - ]], - [[ - 3080, - 3055, - 2256 - ]], - [[ - 3078, - 3076, - 3075 - ]], - [[ - 3075, - 3074, - 3072 - ]], - [[ - 3072, - 3071, - 3070 - ]], - [[ - 3070, - 3069, - 3081 - ]], - [[ - 3081, - 3069, - 2255 - ]], - [[ - 2255, - 3082, - 3083 - ]], - [[ - 3083, - 3081, - 2255 - ]], - [[ - 2259, - 3084, - 3082 - ]], - [[ - 2259, - 3085, - 3084 - ]], - [[ - 2259, - 3086, - 3085 - ]], - [[ - 2259, - 3087, - 3086 - ]], - [[ - 2259, - 3088, - 3087 - ]], - [[ - 2259, - 3089, - 3088 - ]], - [[ - 2259, - 3057, - 3089 - ]], - [[ - 3090, - 3056, - 2259 - ]], - [[ - 3091, - 3090, - 2259 - ]], - [[ - 3092, - 3091, - 2259 - ]], - [[ - 3047, - 3093, - 3043 - ]], - [[ - 2259, - 3094, - 3092 - ]], - [[ - 2259, - 3095, - 3094 - ]], - [[ - 2259, - 3096, - 3095 - ]], - [[ - 2259, - 3097, - 3096 - ]], - [[ - 2259, - 3098, - 3097 - ]], - [[ - 2259, - 2258, - 3098 - ]], - [[ - 3043, - 3093, - 3099 - ]], - [[ - 3045, - 3047, - 3043 - ]], - [[ - 3045, - 3042, - 3046 - ]], - [[ - 3100, - 3101, - 3102 - ]], - [[ - 3100, - 3041, - 3101 - ]], - [[ - 3046, - 3103, - 3104 - ]], - [[ - 3105, - 3106, - 3107 - ]], - [[ - 3108, - 3103, - 3046 - ]], - [[ - 3105, - 3109, - 3106 - ]], - [[ - 3103, - 3110, - 3111 - ]], - [[ - 3103, - 3112, - 3110 - ]], - [[ - 3041, - 3100, - 3042 - ]], - [[ - 3112, - 3113, - 3114 - ]], - [[ - 3115, - 3116, - 3117 - ]], - [[ - 3115, - 3118, - 3116 - ]], - [[ - 3119, - 3120, - 3121 - ]], - [[ - 3122, - 3123, - 3124 - ]], - [[ - 3125, - 3126, - 3127 - ]], - [[ - 3128, - 3129, - 3126 - ]], - [[ - 3130, - 3131, - 3129 - ]], - [[ - 3132, - 3133, - 3134 - ]], - [[ - 3135, - 1830, - 1779 - ]], - [[ - 3136, - 3137, - 3138 - ]], - [[ - 3138, - 3139, - 3140 - ]], - [[ - 3140, - 3141, - 3142 - ]], - [[ - 3142, - 3143, - 3144 - ]], - [[ - 3144, - 3145, - 3146 - ]], - [[ - 3146, - 3122, - 3147 - ]], - [[ - 3147, - 3122, - 3124 - ]], - [[ - 3124, - 3123, - 3148 - ]], - [[ - 3135, - 1779, - 3149 - ]], - [[ - 3148, - 3150, - 3149 - ]], - [[ - 3151, - 3152, - 3136 - ]], - [[ - 3151, - 3132, - 3153 - ]], - [[ - 3149, - 3150, - 3135 - ]], - [[ - 3133, - 3131, - 3154 - ]], - [[ - 3155, - 3156, - 3127 - ]], - [[ - 3150, - 3148, - 3123 - ]], - [[ - 3157, - 3156, - 3155 - ]], - [[ - 3157, - 3119, - 3158 - ]], - [[ - 3146, - 3145, - 3122 - ]], - [[ - 3120, - 3118, - 3115 - ]], - [[ - 3145, - 3144, - 3143 - ]], - [[ - 3139, - 3141, - 3140 - ]], - [[ - 3143, - 3142, - 3141 - ]], - [[ - 3137, - 3139, - 3138 - ]], - [[ - 3152, - 3137, - 3136 - ]], - [[ - 3159, - 3160, - 3161 - ]], - [[ - 3162, - 3163, - 3117 - ]], - [[ - 3162, - 3160, - 3163 - ]], - [[ - 3152, - 3151, - 3153 - ]], - [[ - 3153, - 3132, - 3134 - ]], - [[ - 3130, - 3154, - 3131 - ]], - [[ - 3134, - 3133, - 3154 - ]], - [[ - 3128, - 3130, - 3129 - ]], - [[ - 3125, - 3128, - 3126 - ]], - [[ - 3156, - 3125, - 3127 - ]], - [[ - 3158, - 3156, - 3157 - ]], - [[ - 3121, - 3158, - 3119 - ]], - [[ - 3115, - 3121, - 3120 - ]], - [[ - 3163, - 3115, - 3117 - ]], - [[ - 3113, - 3164, - 3161 - ]], - [[ - 3160, - 3159, - 3163 - ]], - [[ - 3164, - 3113, - 3102 - ]], - [[ - 3161, - 3164, - 3159 - ]], - [[ - 3108, - 3165, - 3103 - ]], - [[ - 3101, - 3041, - 3166 - ]], - [[ - 3164, - 3101, - 3167 - ]], - [[ - 3168, - 3169, - 3170 - ]], - [[ - 3171, - 3172, - 3173 - ]], - [[ - 3174, - 3175, - 3176 - ]], - [[ - 3177, - 3178, - 3179 - ]], - [[ - 3175, - 3180, - 3179 - ]], - [[ - 3181, - 3182, - 3183 - ]], - [[ - 3184, - 3185, - 3186 - ]], - [[ - 3187, - 3188, - 3189 - ]], - [[ - 3190, - 1771, - 1773 - ]], - [[ - 3191, - 3192, - 3193 - ]], - [[ - 3188, - 3194, - 3193 - ]], - [[ - 3192, - 3195, - 3196 - ]], - [[ - 3196, - 3171, - 3173 - ]], - [[ - 3173, - 3172, - 3197 - ]], - [[ - 3198, - 3199, - 3200 - ]], - [[ - 3190, - 1773, - 3199 - ]], - [[ - 3197, - 3201, - 3200 - ]], - [[ - 3202, - 3203, - 3189 - ]], - [[ - 3202, - 3183, - 3204 - ]], - [[ - 3199, - 3198, - 3190 - ]], - [[ - 3181, - 3185, - 3205 - ]], - [[ - 3200, - 3201, - 3198 - ]], - [[ - 3186, - 3178, - 3206 - ]], - [[ - 3207, - 3208, - 3176 - ]], - [[ - 3201, - 3197, - 3172 - ]], - [[ - 3209, - 3210, - 3207 - ]], - [[ - 3209, - 3211, - 3212 - ]], - [[ - 3196, - 3195, - 3171 - ]], - [[ - 3211, - 3169, - 3213 - ]], - [[ - 3195, - 3192, - 3191 - ]], - [[ - 3191, - 3193, - 3194 - ]], - [[ - 3194, - 3188, - 3187 - ]], - [[ - 3204, - 3203, - 3202 - ]], - [[ - 3187, - 3189, - 3203 - ]], - [[ - 3182, - 3204, - 3183 - ]], - [[ - 3205, - 3182, - 3181 - ]], - [[ - 3166, - 3214, - 3170 - ]], - [[ - 3185, - 3184, - 3205 - ]], - [[ - 3186, - 3206, - 3184 - ]], - [[ - 3178, - 3177, - 3206 - ]], - [[ - 3179, - 3180, - 3177 - ]], - [[ - 3175, - 3174, - 3180 - ]], - [[ - 3176, - 3208, - 3174 - ]], - [[ - 3207, - 3210, - 3208 - ]], - [[ - 3209, - 3212, - 3210 - ]], - [[ - 3211, - 3213, - 3212 - ]], - [[ - 3169, - 3168, - 3213 - ]], - [[ - 3170, - 3214, - 3168 - ]], - [[ - 3166, - 3041, - 3214 - ]], - [[ - 3054, - 3053, - 2256 - ]], - [[ - 2258, - 3099, - 3098 - ]], - [[ - 3215, - 3216, - 2257 - ]], - [[ - 2255, - 3068, - 3067 - ]], - [[ - 2259, - 2255, - 2254 - ]], - [[ - 2259, - 3082, - 2255 - ]], - [[ - 3215, - 2257, - 3049 - ]], - [[ - 3049, - 2257, - 2256 - ]], - [[ - 3216, - 3043, - 2257 - ]], - [[ - 3043, - 3099, - 2258 - ]], - [[ - 3164, - 3102, - 3101 - ]], - [[ - 3113, - 3112, - 3165 - ]], - [[ - 3113, - 3165, - 3102 - ]], - [[ - 3112, - 3103, - 3165 - ]], - [[ - 3042, - 3100, - 3046 - ]], - [[ - 3108, - 3046, - 3100 - ]], - [[ - 3109, - 3217, - 3107 - ]], - [[ - 3109, - 3110, - 3106 - ]], - [[ - 3111, - 3109, - 3107 - ]], - [[ - 3111, - 3110, - 3109 - ]], - [[ - 3217, - 3105, - 3107 - ]], - [[ - 3217, - 3109, - 3105 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b2c15e416-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efc86849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3218, - 3219, - 3220 - ]], - [[ - 3221, - 3222, - 3223 - ]], - [[ - 3224, - 3225, - 3226 - ]], - [[ - 3227, - 3228, - 3221 - ]], - [[ - 3229, - 3230, - 3231 - ]], - [[ - 3232, - 3233, - 3234 - ]], - [[ - 3235, - 3236, - 3237 - ]], - [[ - 3238, - 3239, - 3240 - ]], - [[ - 3241, - 3242, - 3243 - ]], - [[ - 3243, - 3244, - 3241 - ]], - [[ - 3241, - 3244, - 3245 - ]], - [[ - 3246, - 3247, - 3248 - ]], - [[ - 3249, - 3245, - 3250 - ]], - [[ - 3251, - 3247, - 3252 - ]], - [[ - 3253, - 3254, - 3255 - ]], - [[ - 3256, - 3252, - 3257 - ]], - [[ - 3256, - 3251, - 3252 - ]], - [[ - 3245, - 3258, - 3259 - ]], - [[ - 3260, - 3261, - 3218 - ]], - [[ - 3262, - 3225, - 3263 - ]], - [[ - 3264, - 3220, - 3265 - ]], - [[ - 3266, - 3265, - 3220 - ]], - [[ - 3267, - 3268, - 3266 - ]], - [[ - 3269, - 3267, - 3270 - ]], - [[ - 3271, - 3269, - 3270 - ]], - [[ - 3272, - 3271, - 3273 - ]], - [[ - 3274, - 3272, - 3275 - ]], - [[ - 3276, - 3277, - 3278 - ]], - [[ - 3279, - 3280, - 3281 - ]], - [[ - 3282, - 3283, - 3284 - ]], - [[ - 3285, - 3286, - 3287 - ]], - [[ - 3288, - 3289, - 3290 - ]], - [[ - 3291, - 3292, - 3293 - ]], - [[ - 3294, - 3295, - 3296 - ]], - [[ - 3297, - 3298, - 3299 - ]], - [[ - 3297, - 3294, - 3300 - ]], - [[ - 3297, - 3301, - 3298 - ]], - [[ - 3297, - 3302, - 3301 - ]], - [[ - 3296, - 3295, - 3303 - ]], - [[ - 3297, - 3304, - 3302 - ]], - [[ - 3297, - 3300, - 3304 - ]], - [[ - 3294, - 3305, - 3300 - ]], - [[ - 3306, - 3289, - 3307 - ]], - [[ - 3295, - 3308, - 3303 - ]], - [[ - 3308, - 3309, - 3310 - ]], - [[ - 3291, - 3311, - 3309 - ]], - [[ - 3293, - 3312, - 3311 - ]], - [[ - 3313, - 3314, - 3315 - ]], - [[ - 3306, - 3292, - 3289 - ]], - [[ - 3289, - 3288, - 3307 - ]], - [[ - 3316, - 3317, - 3288 - ]], - [[ - 3318, - 3319, - 3320 - ]], - [[ - 3321, - 3287, - 3317 - ]], - [[ - 3319, - 3322, - 3323 - ]], - [[ - 3324, - 3318, - 3320 - ]], - [[ - 3325, - 3326, - 3327 - ]], - [[ - 3319, - 3323, - 3320 - ]], - [[ - 3328, - 3329, - 3330 - ]], - [[ - 3322, - 3331, - 3332 - ]], - [[ - 3329, - 3333, - 3330 - ]], - [[ - 3334, - 3282, - 3335 - ]], - [[ - 3336, - 3337, - 3338 - ]], - [[ - 3284, - 3339, - 3335 - ]], - [[ - 3340, - 3276, - 3341 - ]], - [[ - 3330, - 3342, - 3343 - ]], - [[ - 3278, - 3344, - 3274 - ]], - [[ - 3345, - 3341, - 3346 - ]], - [[ - 3278, - 3347, - 3341 - ]], - [[ - 3274, - 3275, - 3347 - ]], - [[ - 3272, - 3273, - 3275 - ]], - [[ - 3271, - 3348, - 3273 - ]], - [[ - 3271, - 3270, - 3348 - ]], - [[ - 3267, - 3349, - 3270 - ]], - [[ - 3267, - 3266, - 3349 - ]], - [[ - 3268, - 3265, - 3266 - ]], - [[ - 3350, - 3220, - 3264 - ]], - [[ - 3218, - 3351, - 3219 - ]], - [[ - 3352, - 3242, - 3241 - ]], - [[ - 3352, - 3353, - 3354 - ]], - [[ - 3355, - 3234, - 3242 - ]], - [[ - 3356, - 3357, - 3358 - ]], - [[ - 3359, - 3238, - 3240 - ]], - [[ - 3227, - 3360, - 3361 - ]], - [[ - 3244, - 3258, - 3245 - ]], - [[ - 3333, - 3362, - 3330 - ]], - [[ - 3363, - 3337, - 3336 - ]], - [[ - 3343, - 3364, - 3346 - ]], - [[ - 3365, - 3366, - 3340 - ]], - [[ - 3346, - 3364, - 3367 - ]], - [[ - 3368, - 3333, - 3363 - ]], - [[ - 3282, - 3284, - 3335 - ]], - [[ - 3369, - 3329, - 3339 - ]], - [[ - 3335, - 3339, - 3370 - ]], - [[ - 3284, - 3369, - 3339 - ]], - [[ - 3327, - 3334, - 3335 - ]], - [[ - 3283, - 3369, - 3284 - ]], - [[ - 3343, - 3363, - 3364 - ]], - [[ - 3333, - 3337, - 3363 - ]], - [[ - 3371, - 3338, - 3346 - ]], - [[ - 3366, - 3276, - 3340 - ]], - [[ - 3372, - 3338, - 3373 - ]], - [[ - 3371, - 3336, - 3338 - ]], - [[ - 3287, - 3324, - 3320 - ]], - [[ - 3324, - 3319, - 3318 - ]], - [[ - 3316, - 3314, - 3317 - ]], - [[ - 3315, - 3285, - 3374 - ]], - [[ - 3337, - 3280, - 3373 - ]], - [[ - 3337, - 3366, - 3280 - ]], - [[ - 3313, - 3321, - 3317 - ]], - [[ - 3374, - 3287, - 3321 - ]], - [[ - 3367, - 3371, - 3346 - ]], - [[ - 3367, - 3336, - 3371 - ]], - [[ - 3375, - 3246, - 3376 - ]], - [[ - 3359, - 3259, - 3238 - ]], - [[ - 3328, - 3330, - 3370 - ]], - [[ - 3343, - 3346, - 3370 - ]], - [[ - 3364, - 3336, - 3367 - ]], - [[ - 3364, - 3363, - 3336 - ]], - [[ - 3253, - 3377, - 3254 - ]], - [[ - 3375, - 3378, - 3379 - ]], - [[ - 3365, - 3281, - 3366 - ]], - [[ - 3280, - 3366, - 3281 - ]], - [[ - 3380, - 3331, - 3322 - ]], - [[ - 3322, - 3381, - 3380 - ]], - [[ - 3382, - 3334, - 3327 - ]], - [[ - 3381, - 3369, - 3334 - ]], - [[ - 3345, - 3340, - 3341 - ]], - [[ - 3383, - 3365, - 3340 - ]], - [[ - 3384, - 3279, - 3281 - ]], - [[ - 3373, - 3280, - 3279 - ]], - [[ - 3372, - 3373, - 3279 - ]], - [[ - 3338, - 3337, - 3373 - ]], - [[ - 3253, - 3255, - 3385 - ]], - [[ - 3248, - 3247, - 3386 - ]], - [[ - 3253, - 3387, - 3251 - ]], - [[ - 3386, - 3247, - 3251 - ]], - [[ - 3376, - 3388, - 3389 - ]], - [[ - 3376, - 3246, - 3254 - ]], - [[ - 3389, - 3253, - 3251 - ]], - [[ - 3254, - 3246, - 3248 - ]], - [[ - 3290, - 3316, - 3288 - ]], - [[ - 3290, - 3314, - 3316 - ]], - [[ - 3286, - 3324, - 3287 - ]], - [[ - 3286, - 3319, - 3324 - ]], - [[ - 3390, - 3384, - 3365 - ]], - [[ - 3346, - 3338, - 3384 - ]], - [[ - 3314, - 3313, - 3317 - ]], - [[ - 3314, - 3290, - 3315 - ]], - [[ - 3362, - 3342, - 3330 - ]], - [[ - 3362, - 3363, - 3343 - ]], - [[ - 3389, - 3251, - 3256 - ]], - [[ - 3387, - 3386, - 3251 - ]], - [[ - 3362, - 3368, - 3363 - ]], - [[ - 3362, - 3333, - 3368 - ]], - [[ - 3389, - 3377, - 3253 - ]], - [[ - 3388, - 3376, - 3377 - ]], - [[ - 3255, - 3254, - 3248 - ]], - [[ - 3377, - 3376, - 3254 - ]], - [[ - 3334, - 3283, - 3282 - ]], - [[ - 3334, - 3369, - 3283 - ]], - [[ - 3390, - 3345, - 3346 - ]], - [[ - 3383, - 3340, - 3345 - ]], - [[ - 3323, - 3332, - 3327 - ]], - [[ - 3332, - 3331, - 3325 - ]], - [[ - 3330, - 3343, - 3370 - ]], - [[ - 3342, - 3362, - 3343 - ]], - [[ - 3390, - 3365, - 3383 - ]], - [[ - 3384, - 3281, - 3365 - ]], - [[ - 3361, - 3360, - 3224 - ]], - [[ - 3361, - 3224, - 3227 - ]], - [[ - 3391, - 3392, - 3393 - ]], - [[ - 3394, - 3395, - 3396 - ]], - [[ - 3397, - 3398, - 3399 - ]], - [[ - 3228, - 3400, - 3221 - ]], - [[ - 3382, - 3380, - 3381 - ]], - [[ - 3326, - 3331, - 3380 - ]], - [[ - 3227, - 3401, - 3360 - ]], - [[ - 3401, - 3227, - 3223 - ]], - [[ - 3384, - 3372, - 3279 - ]], - [[ - 3384, - 3338, - 3372 - ]], - [[ - 3250, - 3379, - 3402 - ]], - [[ - 3224, - 3401, - 3225 - ]], - [[ - 3354, - 3355, - 3242 - ]], - [[ - 3354, - 3234, - 3355 - ]], - [[ - 3250, - 3245, - 3259 - ]], - [[ - 3378, - 3402, - 3379 - ]], - [[ - 3244, - 3259, - 3258 - ]], - [[ - 3375, - 3379, - 3246 - ]], - [[ - 3403, - 3238, - 3244 - ]], - [[ - 3243, - 3403, - 3244 - ]], - [[ - 3352, - 3354, - 3242 - ]], - [[ - 3353, - 3234, - 3354 - ]], - [[ - 3345, - 3390, - 3383 - ]], - [[ - 3346, - 3384, - 3390 - ]], - [[ - 3313, - 3315, - 3321 - ]], - [[ - 3290, - 3285, - 3315 - ]], - [[ - 3404, - 3245, - 3249 - ]], - [[ - 3404, - 3241, - 3245 - ]], - [[ - 3315, - 3374, - 3321 - ]], - [[ - 3285, - 3287, - 3374 - ]], - [[ - 3385, - 3386, - 3387 - ]], - [[ - 3255, - 3248, - 3386 - ]], - [[ - 3224, - 3228, - 3227 - ]], - [[ - 3405, - 3406, - 3407 - ]], - [[ - 3393, - 3392, - 3408 - ]], - [[ - 3399, - 3398, - 3234 - ]], - [[ - 3231, - 3237, - 3229 - ]], - [[ - 3393, - 3358, - 3391 - ]], - [[ - 3222, - 3221, - 3357 - ]], - [[ - 3223, - 3227, - 3221 - ]], - [[ - 3351, - 3223, - 3407 - ]], - [[ - 3223, - 3263, - 3401 - ]], - [[ - 3409, - 3405, - 3410 - ]], - [[ - 3411, - 3261, - 3260 - ]], - [[ - 3350, - 3262, - 3218 - ]], - [[ - 3218, - 3262, - 3260 - ]], - [[ - 3400, - 3228, - 3230 - ]], - [[ - 3412, - 3232, - 3413 - ]], - [[ - 3233, - 3232, - 3230 - ]], - [[ - 3234, - 3353, - 3232 - ]], - [[ - 3253, - 3385, - 3387 - ]], - [[ - 3255, - 3386, - 3385 - ]], - [[ - 3350, - 3218, - 3220 - ]], - [[ - 3261, - 3411, - 3218 - ]], - [[ - 3230, - 3232, - 3231 - ]], - [[ - 3353, - 3413, - 3232 - ]], - [[ - 3263, - 3260, - 3262 - ]], - [[ - 3223, - 3351, - 3260 - ]], - [[ - 3351, - 3411, - 3260 - ]], - [[ - 3351, - 3218, - 3411 - ]], - [[ - 3391, - 3358, - 3357 - ]], - [[ - 3414, - 3415, - 3406 - ]], - [[ - 3416, - 3237, - 3412 - ]], - [[ - 3231, - 3232, - 3237 - ]], - [[ - 3357, - 3356, - 3222 - ]], - [[ - 3417, - 3406, - 3405 - ]], - [[ - 3410, - 3405, - 3407 - ]], - [[ - 3223, - 3222, - 3409 - ]], - [[ - 3406, - 3417, - 3418 - ]], - [[ - 3419, - 3420, - 3229 - ]], - [[ - 3236, - 3229, - 3237 - ]], - [[ - 3236, - 3421, - 3419 - ]], - [[ - 3358, - 3396, - 3356 - ]], - [[ - 3422, - 3393, - 3421 - ]], - [[ - 3327, - 3332, - 3325 - ]], - [[ - 3323, - 3322, - 3332 - ]], - [[ - 3382, - 3326, - 3380 - ]], - [[ - 3325, - 3331, - 3326 - ]], - [[ - 3356, - 3409, - 3222 - ]], - [[ - 3395, - 3394, - 3409 - ]], - [[ - 3244, - 3238, - 3259 - ]], - [[ - 3240, - 3225, - 3247 - ]], - [[ - 3416, - 3412, - 3413 - ]], - [[ - 3237, - 3232, - 3412 - ]], - [[ - 3415, - 3235, - 3413 - ]], - [[ - 3415, - 3423, - 3235 - ]], - [[ - 3419, - 3421, - 3393 - ]], - [[ - 3423, - 3415, - 3414 - ]], - [[ - 3418, - 3414, - 3406 - ]], - [[ - 3421, - 3424, - 3414 - ]], - [[ - 3405, - 3394, - 3417 - ]], - [[ - 3405, - 3409, - 3394 - ]], - [[ - 3420, - 3419, - 3408 - ]], - [[ - 3229, - 3236, - 3419 - ]], - [[ - 3416, - 3235, - 3237 - ]], - [[ - 3424, - 3421, - 3236 - ]], - [[ - 3394, - 3396, - 3417 - ]], - [[ - 3358, - 3393, - 3422 - ]], - [[ - 3356, - 3395, - 3409 - ]], - [[ - 3356, - 3396, - 3395 - ]], - [[ - 3398, - 3397, - 3243 - ]], - [[ - 3243, - 3397, - 3425 - ]], - [[ - 3221, - 3391, - 3357 - ]], - [[ - 3221, - 3392, - 3391 - ]], - [[ - 3233, - 3399, - 3234 - ]], - [[ - 3233, - 3230, - 3228 - ]], - [[ - 3228, - 3397, - 3233 - ]], - [[ - 3426, - 3427, - 3425 - ]], - [[ - 3276, - 3278, - 3341 - ]], - [[ - 3277, - 3344, - 3278 - ]], - [[ - 3326, - 3382, - 3327 - ]], - [[ - 3381, - 3334, - 3382 - ]], - [[ - 3413, - 3235, - 3416 - ]], - [[ - 3423, - 3236, - 3235 - ]], - [[ - 3291, - 3293, - 3311 - ]], - [[ - 3292, - 3312, - 3293 - ]], - [[ - 3312, - 3306, - 3307 - ]], - [[ - 3312, - 3292, - 3306 - ]], - [[ - 3419, - 3393, - 3408 - ]], - [[ - 3421, - 3414, - 3422 - ]], - [[ - 3396, - 3418, - 3417 - ]], - [[ - 3396, - 3358, - 3422 - ]], - [[ - 3418, - 3422, - 3414 - ]], - [[ - 3418, - 3396, - 3422 - ]], - [[ - 3339, - 3328, - 3370 - ]], - [[ - 3339, - 3329, - 3328 - ]], - [[ - 3308, - 3291, - 3309 - ]], - [[ - 3295, - 3292, - 3291 - ]], - [[ - 3223, - 3410, - 3407 - ]], - [[ - 3223, - 3409, - 3410 - ]], - [[ - 3278, - 3274, - 3347 - ]], - [[ - 3344, - 3272, - 3274 - ]], - [[ - 3239, - 3427, - 3240 - ]], - [[ - 3226, - 3225, - 3240 - ]], - [[ - 3246, - 3379, - 3247 - ]], - [[ - 3427, - 3226, - 3240 - ]], - [[ - 3233, - 3397, - 3399 - ]], - [[ - 3425, - 3403, - 3243 - ]], - [[ - 3426, - 3425, - 3397 - ]], - [[ - 3427, - 3239, - 3425 - ]], - [[ - 3376, - 3389, - 3256 - ]], - [[ - 3388, - 3377, - 3389 - ]], - [[ - 3305, - 3296, - 3303 - ]], - [[ - 3305, - 3294, - 3296 - ]], - [[ - 3426, - 3226, - 3427 - ]], - [[ - 3428, - 3228, - 3224 - ]], - [[ - 3428, - 3224, - 3226 - ]], - [[ - 3360, - 3401, - 3224 - ]], - [[ - 3429, - 3250, - 3402 - ]], - [[ - 3429, - 3249, - 3250 - ]], - [[ - 3397, - 3228, - 3428 - ]], - [[ - 3230, - 3420, - 3400 - ]], - [[ - 3303, - 3308, - 3310 - ]], - [[ - 3295, - 3291, - 3308 - ]], - [[ - 3423, - 3424, - 3236 - ]], - [[ - 3423, - 3414, - 3424 - ]], - [[ - 3401, - 3263, - 3225 - ]], - [[ - 3223, - 3260, - 3263 - ]], - [[ - 3428, - 3426, - 3397 - ]], - [[ - 3428, - 3226, - 3426 - ]], - [[ - 3403, - 3239, - 3238 - ]], - [[ - 3403, - 3425, - 3239 - ]], - [[ - 3392, - 3420, - 3408 - ]], - [[ - 3230, - 3229, - 3420 - ]], - [[ - 3392, - 3400, - 3420 - ]], - [[ - 3392, - 3221, - 3400 - ]], - [[ - 3379, - 3240, - 3247 - ]], - [[ - 3379, - 3250, - 3359 - ]], - [[ - 3379, - 3359, - 3240 - ]], - [[ - 3250, - 3259, - 3359 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b2c160b4a-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efebf249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3430, - 3431, - 3432 - ]], - [[ - 3433, - 3434, - 3435 - ]], - [[ - 3436, - 3437, - 3438 - ]], - [[ - 3439, - 3440, - 3441 - ]], - [[ - 3442, - 3443, - 3444 - ]], - [[ - 3445, - 3446, - 3447 - ]], - [[ - 3448, - 3449, - 3450 - ]], - [[ - 3451, - 3452, - 3453 - ]], - [[ - 3454, - 3455, - 3456 - ]], - [[ - 3457, - 3456, - 3458 - ]], - [[ - 3459, - 3458, - 3460 - ]], - [[ - 3461, - 3462, - 3463 - ]], - [[ - 3464, - 3465, - 3466 - ]], - [[ - 3467, - 3468, - 3469 - ]], - [[ - 3470, - 3471, - 3472 - ]], - [[ - 3473, - 3474, - 3475 - ]], - [[ - 3476, - 3477, - 3478 - ]], - [[ - 3479, - 3437, - 3452 - ]], - [[ - 3480, - 3481, - 3482 - ]], - [[ - 3483, - 3484, - 3485 - ]], - [[ - 3486, - 3487, - 3488 - ]], - [[ - 3489, - 3490, - 3491 - ]], - [[ - 3492, - 3493, - 3494 - ]], - [[ - 3495, - 3496, - 3497 - ]], - [[ - 3498, - 3499, - 3500 - ]], - [[ - 3437, - 3501, - 3502 - ]], - [[ - 3503, - 3504, - 3505 - ]], - [[ - 3506, - 3507, - 3508 - ]], - [[ - 3509, - 3510, - 3511 - ]], - [[ - 3472, - 3471, - 3512 - ]], - [[ - 3513, - 3431, - 3514 - ]], - [[ - 3515, - 3512, - 3471 - ]], - [[ - 3516, - 3517, - 3518 - ]], - [[ - 3519, - 3520, - 3521 - ]], - [[ - 3522, - 3520, - 3519 - ]], - [[ - 3478, - 3440, - 3523 - ]], - [[ - 3466, - 3524, - 3525 - ]], - [[ - 3526, - 3478, - 3477 - ]], - [[ - 3527, - 3519, - 3528 - ]], - [[ - 3529, - 3530, - 3531 - ]], - [[ - 3532, - 3469, - 3533 - ]], - [[ - 3534, - 3476, - 3535 - ]], - [[ - 3536, - 3517, - 3516 - ]], - [[ - 3537, - 3538, - 3539 - ]], - [[ - 3540, - 3541, - 3542 - ]], - [[ - 3541, - 3543, - 3544 - ]], - [[ - 3545, - 3546, - 3547 - ]], - [[ - 3533, - 3548, - 3532 - ]], - [[ - 3542, - 3541, - 3549 - ]], - [[ - 3550, - 3544, - 3551 - ]], - [[ - 3543, - 3552, - 3467 - ]], - [[ - 3553, - 3525, - 3554 - ]], - [[ - 3534, - 3522, - 3519 - ]], - [[ - 3555, - 3517, - 3556 - ]], - [[ - 3543, - 3557, - 3544 - ]], - [[ - 3467, - 3469, - 3557 - ]], - [[ - 3557, - 3543, - 3467 - ]], - [[ - 3548, - 3468, - 3554 - ]], - [[ - 3552, - 3543, - 3541 - ]], - [[ - 3552, - 3558, - 3467 - ]], - [[ - 3559, - 3560, - 3523 - ]], - [[ - 3520, - 3478, - 3530 - ]], - [[ - 3561, - 3562, - 3530 - ]], - [[ - 3529, - 3520, - 3530 - ]], - [[ - 3562, - 3521, - 3531 - ]], - [[ - 3521, - 3520, - 3529 - ]], - [[ - 3545, - 3547, - 3563 - ]], - [[ - 3538, - 3478, - 3539 - ]], - [[ - 3564, - 3526, - 3477 - ]], - [[ - 3539, - 3478, - 3526 - ]], - [[ - 3541, - 3544, - 3550 - ]], - [[ - 3557, - 3469, - 3565 - ]], - [[ - 3541, - 3550, - 3549 - ]], - [[ - 3544, - 3557, - 3551 - ]], - [[ - 3527, - 3546, - 3566 - ]], - [[ - 3547, - 3567, - 3563 - ]], - [[ - 3568, - 3549, - 3550 - ]], - [[ - 3539, - 3542, - 3549 - ]], - [[ - 3565, - 3537, - 3569 - ]], - [[ - 3539, - 3549, - 3568 - ]], - [[ - 3536, - 3525, - 3570 - ]], - [[ - 3525, - 3553, - 3466 - ]], - [[ - 3555, - 3571, - 3537 - ]], - [[ - 3568, - 3550, - 3551 - ]], - [[ - 3534, - 3535, - 3522 - ]], - [[ - 3468, - 3553, - 3554 - ]], - [[ - 3561, - 3572, - 3562 - ]], - [[ - 3562, - 3531, - 3530 - ]], - [[ - 3541, - 3540, - 3552 - ]], - [[ - 3527, - 3468, - 3558 - ]], - [[ - 3468, - 3467, - 3558 - ]], - [[ - 3468, - 3533, - 3469 - ]], - [[ - 3468, - 3548, - 3533 - ]], - [[ - 3518, - 3517, - 3532 - ]], - [[ - 3563, - 3567, - 3542 - ]], - [[ - 3547, - 3558, - 3540 - ]], - [[ - 3573, - 3574, - 3575 - ]], - [[ - 3576, - 3577, - 3431 - ]], - [[ - 3439, - 3560, - 3559 - ]], - [[ - 3523, - 3530, - 3478 - ]], - [[ - 3527, - 3534, - 3519 - ]], - [[ - 3478, - 3520, - 3522 - ]], - [[ - 3578, - 3466, - 3553 - ]], - [[ - 3578, - 3464, - 3466 - ]], - [[ - 3566, - 3476, - 3534 - ]], - [[ - 3478, - 3522, - 3535 - ]], - [[ - 3579, - 3580, - 3553 - ]], - [[ - 3581, - 3582, - 3583 - ]], - [[ - 3584, - 3582, - 3581 - ]], - [[ - 3585, - 3586, - 3570 - ]], - [[ - 3555, - 3537, - 3565 - ]], - [[ - 3551, - 3557, - 3565 - ]], - [[ - 3528, - 3587, - 3441 - ]], - [[ - 3521, - 3529, - 3531 - ]], - [[ - 3588, - 3577, - 3576 - ]], - [[ - 3589, - 3431, - 3577 - ]], - [[ - 3575, - 3590, - 3573 - ]], - [[ - 3432, - 3574, - 3430 - ]], - [[ - 3591, - 3592, - 3593 - ]], - [[ - 3591, - 3594, - 3575 - ]], - [[ - 3595, - 3596, - 3597 - ]], - [[ - 3598, - 3590, - 3594 - ]], - [[ - 3515, - 3471, - 3599 - ]], - [[ - 3600, - 3601, - 3602 - ]], - [[ - 3575, - 3594, - 3590 - ]], - [[ - 3603, - 3434, - 3433 - ]], - [[ - 3472, - 3604, - 3470 - ]], - [[ - 3605, - 3513, - 3604 - ]], - [[ - 3606, - 3596, - 3607 - ]], - [[ - 3470, - 3608, - 3434 - ]], - [[ - 3553, - 3464, - 3578 - ]], - [[ - 3609, - 3584, - 3581 - ]], - [[ - 3553, - 3609, - 3464 - ]], - [[ - 3584, - 3610, - 3582 - ]], - [[ - 3611, - 3610, - 3584 - ]], - [[ - 3538, - 3583, - 3610 - ]], - [[ - 3580, - 3611, - 3584 - ]], - [[ - 3611, - 3538, - 3610 - ]], - [[ - 3526, - 3563, - 3539 - ]], - [[ - 3526, - 3564, - 3563 - ]], - [[ - 3546, - 3612, - 3566 - ]], - [[ - 3546, - 3564, - 3477 - ]], - [[ - 3465, - 3581, - 3583 - ]], - [[ - 3465, - 3609, - 3581 - ]], - [[ - 3609, - 3580, - 3584 - ]], - [[ - 3613, - 3579, - 3614 - ]], - [[ - 3553, - 3580, - 3609 - ]], - [[ - 3613, - 3611, - 3580 - ]], - [[ - 3563, - 3542, - 3539 - ]], - [[ - 3540, - 3558, - 3552 - ]], - [[ - 3567, - 3540, - 3542 - ]], - [[ - 3567, - 3547, - 3540 - ]], - [[ - 3579, - 3613, - 3580 - ]], - [[ - 3579, - 3615, - 3614 - ]], - [[ - 3616, - 3617, - 3618 - ]], - [[ - 3561, - 3530, - 3619 - ]], - [[ - 3620, - 3621, - 3622 - ]], - [[ - 3623, - 3624, - 3625 - ]], - [[ - 3554, - 3518, - 3548 - ]], - [[ - 3554, - 3516, - 3518 - ]], - [[ - 3439, - 3559, - 3440 - ]], - [[ - 3560, - 3618, - 3523 - ]], - [[ - 3532, - 3565, - 3469 - ]], - [[ - 3465, - 3464, - 3609 - ]], - [[ - 3537, - 3571, - 3586 - ]], - [[ - 3556, - 3536, - 3571 - ]], - [[ - 3570, - 3586, - 3536 - ]], - [[ - 3556, - 3517, - 3536 - ]], - [[ - 3569, - 3551, - 3565 - ]], - [[ - 3571, - 3536, - 3586 - ]], - [[ - 3568, - 3537, - 3539 - ]], - [[ - 3586, - 3538, - 3537 - ]], - [[ - 3565, - 3532, - 3555 - ]], - [[ - 3548, - 3518, - 3532 - ]], - [[ - 3610, - 3583, - 3582 - ]], - [[ - 3538, - 3586, - 3583 - ]], - [[ - 3587, - 3562, - 3572 - ]], - [[ - 3587, - 3521, - 3562 - ]], - [[ - 3593, - 3515, - 3626 - ]], - [[ - 3470, - 3599, - 3471 - ]], - [[ - 3612, - 3546, - 3477 - ]], - [[ - 3545, - 3563, - 3564 - ]], - [[ - 3525, - 3516, - 3554 - ]], - [[ - 3525, - 3536, - 3516 - ]], - [[ - 3432, - 3591, - 3575 - ]], - [[ - 3605, - 3512, - 3515 - ]], - [[ - 3524, - 3570, - 3525 - ]], - [[ - 3524, - 3585, - 3570 - ]], - [[ - 3441, - 3468, - 3528 - ]], - [[ - 3441, - 3553, - 3468 - ]], - [[ - 3593, - 3592, - 3515 - ]], - [[ - 3592, - 3605, - 3515 - ]], - [[ - 3595, - 3513, - 3514 - ]], - [[ - 3605, - 3591, - 3513 - ]], - [[ - 3616, - 3627, - 3441 - ]], - [[ - 3618, - 3560, - 3627 - ]], - [[ - 3528, - 3521, - 3587 - ]], - [[ - 3528, - 3519, - 3521 - ]], - [[ - 3628, - 3465, - 3583 - ]], - [[ - 3524, - 3466, - 3465 - ]], - [[ - 3589, - 3629, - 3431 - ]], - [[ - 3630, - 3431, - 3629 - ]], - [[ - 3591, - 3432, - 3431 - ]], - [[ - 3575, - 3574, - 3432 - ]], - [[ - 3517, - 3555, - 3532 - ]], - [[ - 3556, - 3571, - 3555 - ]], - [[ - 3461, - 3463, - 3460 - ]], - [[ - 3631, - 3632, - 3484 - ]], - [[ - 3483, - 3633, - 3634 - ]], - [[ - 3635, - 3485, - 3636 - ]], - [[ - 3637, - 3480, - 3638 - ]], - [[ - 3639, - 3579, - 3632 - ]], - [[ - 3640, - 3600, - 3641 - ]], - [[ - 3642, - 3434, - 3603 - ]], - [[ - 3643, - 3501, - 3644 - ]], - [[ - 3502, - 3434, - 3437 - ]], - [[ - 3645, - 3646, - 3438 - ]], - [[ - 3647, - 3648, - 3436 - ]], - [[ - 3649, - 3650, - 3651 - ]], - [[ - 3652, - 3653, - 3654 - ]], - [[ - 3546, - 3527, - 3558 - ]], - [[ - 3528, - 3468, - 3527 - ]], - [[ - 3547, - 3546, - 3558 - ]], - [[ - 3545, - 3564, - 3546 - ]], - [[ - 3655, - 3656, - 3657 - ]], - [[ - 3658, - 3637, - 3638 - ]], - [[ - 3659, - 3660, - 3661 - ]], - [[ - 3625, - 3629, - 3589 - ]], - [[ - 3662, - 3663, - 3648 - ]], - [[ - 3644, - 3437, - 3664 - ]], - [[ - 3665, - 3666, - 3667 - ]], - [[ - 3661, - 3660, - 3603 - ]], - [[ - 3668, - 3669, - 3670 - ]], - [[ - 3671, - 3606, - 3607 - ]], - [[ - 3577, - 3588, - 3672 - ]], - [[ - 3621, - 3660, - 3659 - ]], - [[ - 3673, - 3446, - 3674 - ]], - [[ - 3675, - 3444, - 3676 - ]], - [[ - 3445, - 3677, - 3446 - ]], - [[ - 3678, - 3679, - 3673 - ]], - [[ - 3461, - 3460, - 3458 - ]], - [[ - 3680, - 3484, - 3483 - ]], - [[ - 3674, - 3681, - 3452 - ]], - [[ - 3682, - 3683, - 3684 - ]], - [[ - 3674, - 3449, - 3685 - ]], - [[ - 3686, - 3681, - 3687 - ]], - [[ - 3688, - 3453, - 3452 - ]], - [[ - 3689, - 3690, - 3691 - ]], - [[ - 3451, - 3683, - 3692 - ]], - [[ - 3495, - 3688, - 3496 - ]], - [[ - 3693, - 3645, - 3694 - ]], - [[ - 3695, - 3497, - 3496 - ]], - [[ - 3445, - 3450, - 3677 - ]], - [[ - 3674, - 3446, - 3677 - ]], - [[ - 3696, - 3448, - 3450 - ]], - [[ - 3674, - 3677, - 3450 - ]], - [[ - 3446, - 3697, - 3447 - ]], - [[ - 3698, - 3699, - 3700 - ]], - [[ - 3701, - 3448, - 3696 - ]], - [[ - 3702, - 3703, - 3704 - ]], - [[ - 3705, - 3706, - 3445 - ]], - [[ - 3448, - 3701, - 3707 - ]], - [[ - 3447, - 3697, - 3493 - ]], - [[ - 3446, - 3673, - 3679 - ]], - [[ - 3628, - 3585, - 3524 - ]], - [[ - 3583, - 3586, - 3585 - ]], - [[ - 3505, - 3708, - 3709 - ]], - [[ - 3710, - 3504, - 3711 - ]], - [[ - 3712, - 3713, - 3714 - ]], - [[ - 3715, - 3716, - 3717 - ]], - [[ - 3718, - 3719, - 3720 - ]], - [[ - 3721, - 3722, - 3650 - ]], - [[ - 3723, - 3724, - 3725 - ]], - [[ - 3726, - 3727, - 3717 - ]], - [[ - 3718, - 3503, - 3719 - ]], - [[ - 3711, - 3728, - 3729 - ]], - [[ - 3725, - 3724, - 3730 - ]], - [[ - 3503, - 3731, - 3504 - ]], - [[ - 3732, - 3733, - 3734 - ]], - [[ - 3587, - 3572, - 3733 - ]], - [[ - 3735, - 3736, - 3737 - ]], - [[ - 3737, - 3510, - 3738 - ]], - [[ - 3739, - 3740, - 3698 - ]], - [[ - 3741, - 3446, - 3679 - ]], - [[ - 3699, - 3704, - 3700 - ]], - [[ - 3703, - 3697, - 3741 - ]], - [[ - 3465, - 3628, - 3524 - ]], - [[ - 3583, - 3585, - 3628 - ]], - [[ - 3742, - 3449, - 3448 - ]], - [[ - 3674, - 3450, - 3449 - ]], - [[ - 3742, - 3743, - 3685 - ]], - [[ - 3744, - 3496, - 3688 - ]], - [[ - 3745, - 3690, - 3746 - ]], - [[ - 3689, - 3747, - 3748 - ]], - [[ - 3749, - 3750, - 3751 - ]], - [[ - 3752, - 3753, - 3754 - ]], - [[ - 3740, - 3442, - 3444 - ]], - [[ - 3443, - 3755, - 3444 - ]], - [[ - 3739, - 3756, - 3757 - ]], - [[ - 3700, - 3679, - 3756 - ]], - [[ - 3493, - 3492, - 3447 - ]], - [[ - 3758, - 3696, - 3705 - ]], - [[ - 3759, - 3760, - 3761 - ]], - [[ - 3718, - 3720, - 3762 - ]], - [[ - 3763, - 3704, - 3699 - ]], - [[ - 3700, - 3756, - 3698 - ]], - [[ - 3686, - 3764, - 3765 - ]], - [[ - 3689, - 3748, - 3695 - ]], - [[ - 3597, - 3596, - 3766 - ]], - [[ - 3767, - 3768, - 3769 - ]], - [[ - 3770, - 3771, - 3772 - ]], - [[ - 3773, - 3774, - 3713 - ]], - [[ - 3775, - 3776, - 3777 - ]], - [[ - 3778, - 3779, - 3780 - ]], - [[ - 3781, - 3514, - 3776 - ]], - [[ - 3641, - 3600, - 3782 - ]], - [[ - 3783, - 3784, - 3785 - ]], - [[ - 3786, - 3752, - 3751 - ]], - [[ - 3787, - 3784, - 3776 - ]], - [[ - 3788, - 3775, - 3789 - ]], - [[ - 3790, - 3791, - 3714 - ]], - [[ - 3709, - 3708, - 3710 - ]], - [[ - 3790, - 3792, - 3793 - ]], - [[ - 3794, - 3795, - 3761 - ]], - [[ - 3796, - 3431, - 3430 - ]], - [[ - 3797, - 3798, - 3796 - ]], - [[ - 3799, - 3573, - 3590 - ]], - [[ - 3430, - 3574, - 3573 - ]], - [[ - 3800, - 3707, - 3676 - ]], - [[ - 3707, - 3800, - 3742 - ]], - [[ - 3636, - 3801, - 3802 - ]], - [[ - 3803, - 3456, - 3457 - ]], - [[ - 3804, - 3635, - 3486 - ]], - [[ - 3805, - 3801, - 3806 - ]], - [[ - 3807, - 3483, - 3804 - ]], - [[ - 3802, - 3801, - 3808 - ]], - [[ - 3633, - 3807, - 3487 - ]], - [[ - 3488, - 3804, - 3486 - ]], - [[ - 3635, - 3802, - 3486 - ]], - [[ - 3809, - 3810, - 3811 - ]], - [[ - 3487, - 3457, - 3458 - ]], - [[ - 3812, - 3802, - 3808 - ]], - [[ - 3803, - 3813, - 3456 - ]], - [[ - 3809, - 3811, - 3806 - ]], - [[ - 3706, - 3696, - 3450 - ]], - [[ - 3742, - 3800, - 3743 - ]], - [[ - 3641, - 3814, - 3815 - ]], - [[ - 3816, - 3817, - 3818 - ]], - [[ - 3819, - 3820, - 3814 - ]], - [[ - 3816, - 3818, - 3821 - ]], - [[ - 3779, - 3822, - 3823 - ]], - [[ - 3819, - 3814, - 3641 - ]], - [[ - 3823, - 3824, - 3820 - ]], - [[ - 3825, - 3814, - 3826 - ]], - [[ - 3705, - 3696, - 3706 - ]], - [[ - 3701, - 3676, - 3707 - ]], - [[ - 3605, - 3604, - 3472 - ]], - [[ - 3513, - 3827, - 3604 - ]], - [[ - 3605, - 3472, - 3512 - ]], - [[ - 3604, - 3827, - 3470 - ]], - [[ - 3828, - 3829, - 3631 - ]], - [[ - 3830, - 3831, - 3632 - ]], - [[ - 3692, - 3683, - 3832 - ]], - [[ - 3684, - 3497, - 3833 - ]], - [[ - 3834, - 3835, - 3682 - ]], - [[ - 3682, - 3832, - 3683 - ]], - [[ - 3495, - 3451, - 3453 - ]], - [[ - 3684, - 3683, - 3451 - ]], - [[ - 3836, - 3835, - 3498 - ]], - [[ - 3646, - 3436, - 3438 - ]], - [[ - 3442, - 3739, - 3837 - ]], - [[ - 3756, - 3679, - 3757 - ]], - [[ - 3456, - 3838, - 3673 - ]], - [[ - 3839, - 3811, - 3840 - ]], - [[ - 3841, - 3842, - 3455 - ]], - [[ - 3843, - 3844, - 3845 - ]], - [[ - 3846, - 3489, - 3491 - ]], - [[ - 3847, - 3842, - 3841 - ]], - [[ - 3848, - 3845, - 3844 - ]], - [[ - 3848, - 3849, - 3845 - ]], - [[ - 3850, - 3841, - 3851 - ]], - [[ - 3852, - 3845, - 3849 - ]], - [[ - 3839, - 3850, - 3853 - ]], - [[ - 3847, - 3854, - 3852 - ]], - [[ - 3850, - 3855, - 3841 - ]], - [[ - 3856, - 3490, - 3844 - ]], - [[ - 3786, - 3789, - 3753 - ]], - [[ - 3775, - 3857, - 3776 - ]], - [[ - 3858, - 3816, - 3859 - ]], - [[ - 3774, - 3792, - 3790 - ]], - [[ - 3859, - 3816, - 3821 - ]], - [[ - 3858, - 3817, - 3816 - ]], - [[ - 3860, - 3629, - 3625 - ]], - [[ - 3430, - 3573, - 3799 - ]], - [[ - 3861, - 3862, - 3863 - ]], - [[ - 3796, - 3576, - 3431 - ]], - [[ - 3457, - 3812, - 3808 - ]], - [[ - 3635, - 3636, - 3802 - ]], - [[ - 3662, - 3644, - 3663 - ]], - [[ - 3501, - 3437, - 3644 - ]], - [[ - 3808, - 3805, - 3457 - ]], - [[ - 3808, - 3801, - 3805 - ]], - [[ - 3783, - 3864, - 3865 - ]], - [[ - 3865, - 3866, - 3867 - ]], - [[ - 3608, - 3771, - 3867 - ]], - [[ - 3868, - 3514, - 3781 - ]], - [[ - 3865, - 3864, - 3866 - ]], - [[ - 3713, - 3716, - 3715 - ]], - [[ - 3594, - 3593, - 3598 - ]], - [[ - 3470, - 3434, - 3799 - ]], - [[ - 3513, - 3597, - 3827 - ]], - [[ - 3626, - 3515, - 3599 - ]], - [[ - 3867, - 3866, - 3434 - ]], - [[ - 3864, - 3869, - 3866 - ]], - [[ - 3788, - 3789, - 3786 - ]], - [[ - 3870, - 3778, - 3780 - ]], - [[ - 3869, - 3871, - 3866 - ]], - [[ - 3869, - 3857, - 3871 - ]], - [[ - 3686, - 3765, - 3745 - ]], - [[ - 3687, - 3681, - 3685 - ]], - [[ - 3616, - 3618, - 3627 - ]], - [[ - 3872, - 3523, - 3618 - ]], - [[ - 3566, - 3534, - 3527 - ]], - [[ - 3566, - 3612, - 3476 - ]], - [[ - 3635, - 3483, - 3485 - ]], - [[ - 3634, - 3873, - 3680 - ]], - [[ - 3498, - 3874, - 3499 - ]], - [[ - 3438, - 3479, - 3694 - ]], - [[ - 3875, - 3876, - 3661 - ]], - [[ - 3877, - 3621, - 3863 - ]], - [[ - 3433, - 3875, - 3661 - ]], - [[ - 3661, - 3876, - 3659 - ]], - [[ - 3878, - 3879, - 3880 - ]], - [[ - 3666, - 3876, - 3875 - ]], - [[ - 3667, - 3666, - 3875 - ]], - [[ - 3622, - 3630, - 3620 - ]], - [[ - 3700, - 3741, - 3679 - ]], - [[ - 3697, - 3446, - 3741 - ]], - [[ - 3881, - 3763, - 3699 - ]], - [[ - 3704, - 3741, - 3700 - ]], - [[ - 3568, - 3569, - 3537 - ]], - [[ - 3568, - 3551, - 3569 - ]], - [[ - 3737, - 3654, - 3759 - ]], - [[ - 3882, - 3883, - 3509 - ]], - [[ - 3650, - 3649, - 3884 - ]], - [[ - 3883, - 3735, - 3738 - ]], - [[ - 3650, - 3884, - 3736 - ]], - [[ - 3649, - 3736, - 3884 - ]], - [[ - 3496, - 3744, - 3690 - ]], - [[ - 3744, - 3681, - 3746 - ]], - [[ - 3811, - 3853, - 3456 - ]], - [[ - 3455, - 3838, - 3456 - ]], - [[ - 3806, - 3811, - 3456 - ]], - [[ - 3810, - 3840, - 3811 - ]], - [[ - 3451, - 3495, - 3497 - ]], - [[ - 3453, - 3688, - 3495 - ]], - [[ - 3601, - 3826, - 3602 - ]], - [[ - 3885, - 3886, - 3887 - ]], - [[ - 3653, - 3888, - 3711 - ]], - [[ - 3721, - 3650, - 3888 - ]], - [[ - 3874, - 3693, - 3694 - ]], - [[ - 3647, - 3646, - 3645 - ]], - [[ - 3599, - 3470, - 3626 - ]], - [[ - 3766, - 3608, - 3470 - ]], - [[ - 3889, - 3890, - 3502 - ]], - [[ - 3435, - 3434, - 3502 - ]], - [[ - 3891, - 3892, - 3893 - ]], - [[ - 3880, - 3666, - 3665 - ]], - [[ - 3435, - 3665, - 3667 - ]], - [[ - 3880, - 3894, - 3666 - ]], - [[ - 3895, - 3673, - 3896 - ]], - [[ - 3846, - 3896, - 3489 - ]], - [[ - 3837, - 3897, - 3442 - ]], - [[ - 3491, - 3755, - 3443 - ]], - [[ - 3898, - 3782, - 3859 - ]], - [[ - 3899, - 3774, - 3773 - ]], - [[ - 3714, - 3900, - 3790 - ]], - [[ - 3901, - 3885, - 3887 - ]], - [[ - 3902, - 3759, - 3761 - ]], - [[ - 3762, - 3720, - 3710 - ]], - [[ - 3653, - 3711, - 3729 - ]], - [[ - 3888, - 3903, - 3711 - ]], - [[ - 3720, - 3719, - 3709 - ]], - [[ - 3904, - 3710, - 3708 - ]], - [[ - 3723, - 3710, - 3794 - ]], - [[ - 3761, - 3723, - 3794 - ]], - [[ - 3434, - 3773, - 3903 - ]], - [[ - 3714, - 3791, - 3712 - ]], - [[ - 3794, - 3710, - 3711 - ]], - [[ - 3711, - 3903, - 3713 - ]], - [[ - 3641, - 3782, - 3866 - ]], - [[ - 3600, - 3885, - 3901 - ]], - [[ - 3903, - 3773, - 3713 - ]], - [[ - 3905, - 3906, - 3898 - ]], - [[ - 3866, - 3773, - 3434 - ]], - [[ - 3866, - 3782, - 3773 - ]], - [[ - 3907, - 3899, - 3906 - ]], - [[ - 3773, - 3782, - 3898 - ]], - [[ - 3792, - 3899, - 3907 - ]], - [[ - 3908, - 3905, - 3821 - ]], - [[ - 3858, - 3901, - 3887 - ]], - [[ - 3782, - 3600, - 3901 - ]], - [[ - 3793, - 3792, - 3909 - ]], - [[ - 3774, - 3899, - 3792 - ]], - [[ - 3827, - 3766, - 3470 - ]], - [[ - 3608, - 3867, - 3434 - ]], - [[ - 3910, - 3615, - 3579 - ]], - [[ - 3614, - 3611, - 3613 - ]], - [[ - 3911, - 3481, - 3480 - ]], - [[ - 3911, - 3615, - 3481 - ]], - [[ - 3910, - 3482, - 3481 - ]], - [[ - 3481, - 3615, - 3910 - ]], - [[ - 3912, - 3913, - 3658 - ]], - [[ - 3480, - 3482, - 3638 - ]], - [[ - 3914, - 3912, - 3658 - ]], - [[ - 3473, - 3637, - 3913 - ]], - [[ - 3915, - 3914, - 3639 - ]], - [[ - 3638, - 3482, - 3639 - ]], - [[ - 3631, - 3830, - 3632 - ]], - [[ - 3916, - 3473, - 3913 - ]], - [[ - 3758, - 3675, - 3676 - ]], - [[ - 3758, - 3705, - 3675 - ]], - [[ - 3764, - 3800, - 3676 - ]], - [[ - 3745, - 3691, - 3690 - ]], - [[ - 3800, - 3917, - 3743 - ]], - [[ - 3800, - 3764, - 3917 - ]], - [[ - 3904, - 3504, - 3710 - ]], - [[ - 3505, - 3719, - 3503 - ]], - [[ - 3794, - 3711, - 3713 - ]], - [[ - 3728, - 3731, - 3729 - ]], - [[ - 3784, - 3783, - 3670 - ]], - [[ - 3781, - 3918, - 3868 - ]], - [[ - 3770, - 3772, - 3919 - ]], - [[ - 3920, - 3606, - 3671 - ]], - [[ - 3771, - 3918, - 3772 - ]], - [[ - 3769, - 3768, - 3868 - ]], - [[ - 3771, - 3921, - 3918 - ]], - [[ - 3769, - 3608, - 3767 - ]], - [[ - 3781, - 3669, - 3919 - ]], - [[ - 3669, - 3922, - 3770 - ]], - [[ - 3771, - 3770, - 3867 - ]], - [[ - 3919, - 3669, - 3770 - ]], - [[ - 3787, - 3869, - 3785 - ]], - [[ - 3865, - 3668, - 3670 - ]], - [[ - 3868, - 3768, - 3514 - ]], - [[ - 3769, - 3921, - 3608 - ]], - [[ - 3772, - 3918, - 3781 - ]], - [[ - 3918, - 3921, - 3868 - ]], - [[ - 3625, - 3589, - 3623 - ]], - [[ - 3923, - 3623, - 3672 - ]], - [[ - 3923, - 3588, - 3798 - ]], - [[ - 3923, - 3672, - 3588 - ]], - [[ - 3430, - 3799, - 3797 - ]], - [[ - 3626, - 3470, - 3799 - ]], - [[ - 3799, - 3624, - 3797 - ]], - [[ - 3624, - 3623, - 3923 - ]], - [[ - 3873, - 3924, - 3484 - ]], - [[ - 3462, - 3461, - 3655 - ]], - [[ - 3639, - 3658, - 3638 - ]], - [[ - 3913, - 3637, - 3658 - ]], - [[ - 3838, - 3896, - 3673 - ]], - [[ - 3838, - 3848, - 3489 - ]], - [[ - 3443, - 3925, - 3491 - ]], - [[ - 3443, - 3897, - 3925 - ]], - [[ - 3704, - 3703, - 3741 - ]], - [[ - 3493, - 3697, - 3703 - ]], - [[ - 3731, - 3654, - 3653 - ]], - [[ - 3654, - 3722, - 3721 - ]], - [[ - 3898, - 3859, - 3821 - ]], - [[ - 3782, - 3858, - 3859 - ]], - [[ - 3926, - 3734, - 3619 - ]], - [[ - 3733, - 3572, - 3561 - ]], - [[ - 3734, - 3561, - 3619 - ]], - [[ - 3734, - 3733, - 3561 - ]], - [[ - 3459, - 3460, - 3634 - ]], - [[ - 3463, - 3924, - 3460 - ]], - [[ - 3893, - 3892, - 3643 - ]], - [[ - 3890, - 3927, - 3879 - ]], - [[ - 3501, - 3889, - 3502 - ]], - [[ - 3501, - 3892, - 3891 - ]], - [[ - 3747, - 3764, - 3676 - ]], - [[ - 3747, - 3691, - 3765 - ]], - [[ - 3460, - 3873, - 3634 - ]], - [[ - 3460, - 3924, - 3873 - ]], - [[ - 3745, - 3765, - 3691 - ]], - [[ - 3764, - 3747, - 3765 - ]], - [[ - 3698, - 3740, - 3444 - ]], - [[ - 3698, - 3756, - 3739 - ]], - [[ - 3853, - 3851, - 3454 - ]], - [[ - 3849, - 3838, - 3455 - ]], - [[ - 3538, - 3637, - 3475 - ]], - [[ - 3911, - 3480, - 3637 - ]], - [[ - 3928, - 3736, - 3649 - ]], - [[ - 3654, - 3737, - 3736 - ]], - [[ - 3489, - 3848, - 3844 - ]], - [[ - 3838, - 3849, - 3848 - ]], - [[ - 3715, - 3717, - 3929 - ]], - [[ - 3716, - 3713, - 3726 - ]], - [[ - 3930, - 3759, - 3931 - ]], - [[ - 3909, - 3737, - 3759 - ]], - [[ - 3723, - 3760, - 3724 - ]], - [[ - 3759, - 3724, - 3760 - ]], - [[ - 3730, - 3724, - 3503 - ]], - [[ - 3503, - 3654, - 3731 - ]], - [[ - 3698, - 3881, - 3699 - ]], - [[ - 3763, - 3702, - 3704 - ]], - [[ - 3826, - 3814, - 3824 - ]], - [[ - 3908, - 3909, - 3907 - ]], - [[ - 3780, - 3823, - 3820 - ]], - [[ - 3886, - 3817, - 3887 - ]], - [[ - 3820, - 3824, - 3814 - ]], - [[ - 3776, - 3909, - 3818 - ]], - [[ - 3870, - 3932, - 3778 - ]], - [[ - 3779, - 3932, - 3822 - ]], - [[ - 3933, - 3750, - 3822 - ]], - [[ - 3823, - 3780, - 3779 - ]], - [[ - 3933, - 3932, - 3870 - ]], - [[ - 3779, - 3778, - 3932 - ]], - [[ - 3917, - 3686, - 3687 - ]], - [[ - 3917, - 3764, - 3686 - ]], - [[ - 3837, - 3739, - 3757 - ]], - [[ - 3442, - 3740, - 3739 - ]], - [[ - 3678, - 3837, - 3757 - ]], - [[ - 3897, - 3443, - 3442 - ]], - [[ - 3678, - 3897, - 3837 - ]], - [[ - 3895, - 3896, - 3846 - ]], - [[ - 3805, - 3803, - 3457 - ]], - [[ - 3813, - 3806, - 3456 - ]], - [[ - 3801, - 3809, - 3806 - ]], - [[ - 3801, - 3810, - 3809 - ]], - [[ - 3732, - 3616, - 3441 - ]], - [[ - 3732, - 3734, - 3926 - ]], - [[ - 3618, - 3617, - 3872 - ]], - [[ - 3617, - 3732, - 3926 - ]], - [[ - 3872, - 3619, - 3523 - ]], - [[ - 3872, - 3926, - 3619 - ]], - [[ - 3825, - 3826, - 3601 - ]], - [[ - 3824, - 3776, - 3818 - ]], - [[ - 3934, - 3647, - 3693 - ]], - [[ - 3648, - 3663, - 3436 - ]], - [[ - 3875, - 3433, - 3667 - ]], - [[ - 3661, - 3603, - 3433 - ]], - [[ - 3883, - 3935, - 3735 - ]], - [[ - 3936, - 3650, - 3736 - ]], - [[ - 3738, - 3735, - 3737 - ]], - [[ - 3937, - 3507, - 3936 - ]], - [[ - 3882, - 3508, - 3935 - ]], - [[ - 3650, - 3722, - 3651 - ]], - [[ - 3735, - 3936, - 3736 - ]], - [[ - 3937, - 3935, - 3507 - ]], - [[ - 3832, - 3835, - 3836 - ]], - [[ - 3834, - 3498, - 3835 - ]], - [[ - 3938, - 3682, - 3833 - ]], - [[ - 3747, - 3834, - 3682 - ]], - [[ - 3923, - 3798, - 3797 - ]], - [[ - 3588, - 3576, - 3798 - ]], - [[ - 3797, - 3796, - 3430 - ]], - [[ - 3798, - 3576, - 3796 - ]], - [[ - 3894, - 3876, - 3666 - ]], - [[ - 3894, - 3630, - 3876 - ]], - [[ - 3715, - 3939, - 3713 - ]], - [[ - 3939, - 3929, - 3930 - ]], - [[ - 3939, - 3795, - 3794 - ]], - [[ - 3931, - 3759, - 3902 - ]], - [[ - 3713, - 3939, - 3794 - ]], - [[ - 3715, - 3929, - 3939 - ]], - [[ - 3922, - 3668, - 3865 - ]], - [[ - 3922, - 3669, - 3668 - ]], - [[ - 3851, - 3853, - 3850 - ]], - [[ - 3454, - 3456, - 3853 - ]], - [[ - 3827, - 3597, - 3766 - ]], - [[ - 3513, - 3595, - 3597 - ]], - [[ - 3637, - 3473, - 3475 - ]], - [[ - 3913, - 3831, - 3916 - ]], - [[ - 3893, - 3643, - 3662 - ]], - [[ - 3892, - 3501, - 3643 - ]], - [[ - 3893, - 3662, - 3934 - ]], - [[ - 3643, - 3644, - 3662 - ]], - [[ - 3707, - 3742, - 3448 - ]], - [[ - 3685, - 3449, - 3742 - ]], - [[ - 3500, - 3479, - 3452 - ]], - [[ - 3438, - 3437, - 3479 - ]], - [[ - 3940, - 3498, - 3834 - ]], - [[ - 3499, - 3479, - 3500 - ]], - [[ - 3915, - 3639, - 3632 - ]], - [[ - 3914, - 3658, - 3639 - ]], - [[ - 3940, - 3874, - 3498 - ]], - [[ - 3694, - 3479, - 3499 - ]], - [[ - 3925, - 3846, - 3491 - ]], - [[ - 3925, - 3897, - 3895 - ]], - [[ - 3807, - 3804, - 3488 - ]], - [[ - 3483, - 3635, - 3804 - ]], - [[ - 3487, - 3807, - 3488 - ]], - [[ - 3633, - 3483, - 3807 - ]], - [[ - 3871, - 3788, - 3866 - ]], - [[ - 3871, - 3857, - 3775 - ]], - [[ - 3828, - 3631, - 3484 - ]], - [[ - 3657, - 3474, - 3830 - ]], - [[ - 3475, - 3461, - 3458 - ]], - [[ - 3656, - 3474, - 3657 - ]], - [[ - 3829, - 3941, - 3462 - ]], - [[ - 3461, - 3475, - 3655 - ]], - [[ - 3652, - 3721, - 3888 - ]], - [[ - 3652, - 3654, - 3721 - ]], - [[ - 3433, - 3435, - 3667 - ]], - [[ - 3502, - 3879, - 3878 - ]], - [[ - 3587, - 3732, - 3441 - ]], - [[ - 3587, - 3733, - 3732 - ]], - [[ - 3878, - 3880, - 3665 - ]], - [[ - 3879, - 3927, - 3880 - ]], - [[ - 3600, - 3640, - 3601 - ]], - [[ - 3815, - 3814, - 3825 - ]], - [[ - 3886, - 3602, - 3817 - ]], - [[ - 3602, - 3824, - 3818 - ]], - [[ - 3654, - 3928, - 3722 - ]], - [[ - 3722, - 3928, - 3651 - ]], - [[ - 3868, - 3921, - 3769 - ]], - [[ - 3771, - 3608, - 3921 - ]], - [[ - 3600, - 3886, - 3885 - ]], - [[ - 3600, - 3602, - 3886 - ]], - [[ - 3857, - 3869, - 3787 - ]], - [[ - 3670, - 3669, - 3781 - ]], - [[ - 3864, - 3785, - 3869 - ]], - [[ - 3864, - 3783, - 3785 - ]], - [[ - 3486, - 3812, - 3457 - ]], - [[ - 3486, - 3802, - 3812 - ]], - [[ - 3620, - 3861, - 3863 - ]], - [[ - 3630, - 3629, - 3861 - ]], - [[ - 3817, - 3858, - 3887 - ]], - [[ - 3782, - 3901, - 3858 - ]], - [[ - 3839, - 3855, - 3850 - ]], - [[ - 3854, - 3843, - 3852 - ]], - [[ - 3508, - 3650, - 3506 - ]], - [[ - 3508, - 3888, - 3650 - ]], - [[ - 3451, - 3692, - 3452 - ]], - [[ - 3836, - 3498, - 3500 - ]], - [[ - 3500, - 3692, - 3836 - ]], - [[ - 3500, - 3452, - 3692 - ]], - [[ - 3795, - 3902, - 3761 - ]], - [[ - 3795, - 3931, - 3902 - ]], - [[ - 3681, - 3744, - 3688 - ]], - [[ - 3746, - 3690, - 3744 - ]], - [[ - 3872, - 3617, - 3926 - ]], - [[ - 3616, - 3732, - 3617 - ]], - [[ - 3903, - 3882, - 3511 - ]], - [[ - 3903, - 3508, - 3882 - ]], - [[ - 3855, - 3847, - 3841 - ]], - [[ - 3843, - 3845, - 3852 - ]], - [[ - 3842, - 3847, - 3852 - ]], - [[ - 3854, - 3856, - 3843 - ]], - [[ - 3805, - 3813, - 3803 - ]], - [[ - 3805, - 3806, - 3813 - ]], - [[ - 3867, - 3922, - 3865 - ]], - [[ - 3867, - 3770, - 3922 - ]], - [[ - 3490, - 3489, - 3844 - ]], - [[ - 3896, - 3838, - 3489 - ]], - [[ - 3843, - 3856, - 3844 - ]], - [[ - 3755, - 3491, - 3490 - ]], - [[ - 3598, - 3593, - 3626 - ]], - [[ - 3594, - 3591, - 3593 - ]], - [[ - 3504, - 3728, - 3711 - ]], - [[ - 3504, - 3731, - 3728 - ]], - [[ - 3786, - 3780, - 3866 - ]], - [[ - 3751, - 3750, - 3870 - ]], - [[ - 3751, - 3870, - 3780 - ]], - [[ - 3750, - 3933, - 3870 - ]], - [[ - 3820, - 3819, - 3780 - ]], - [[ - 3815, - 3825, - 3640 - ]], - [[ - 3780, - 3641, - 3866 - ]], - [[ - 3780, - 3819, - 3641 - ]], - [[ - 3815, - 3640, - 3641 - ]], - [[ - 3825, - 3601, - 3640 - ]], - [[ - 3510, - 3509, - 3738 - ]], - [[ - 3882, - 3935, - 3883 - ]], - [[ - 3717, - 3727, - 3929 - ]], - [[ - 3942, - 3759, - 3727 - ]], - [[ - 3726, - 3712, - 3727 - ]], - [[ - 3909, - 3759, - 3942 - ]], - [[ - 3943, - 3944, - 3791 - ]], - [[ - 3945, - 3727, - 3712 - ]], - [[ - 3716, - 3726, - 3717 - ]], - [[ - 3713, - 3712, - 3726 - ]], - [[ - 3944, - 3712, - 3791 - ]], - [[ - 3944, - 3945, - 3712 - ]], - [[ - 3934, - 3648, - 3647 - ]], - [[ - 3934, - 3662, - 3648 - ]], - [[ - 3831, - 3915, - 3632 - ]], - [[ - 3831, - 3913, - 3912 - ]], - [[ - 3538, - 3911, - 3637 - ]], - [[ - 3614, - 3615, - 3911 - ]], - [[ - 3790, - 3943, - 3791 - ]], - [[ - 3942, - 3944, - 3943 - ]], - [[ - 3842, - 3849, - 3455 - ]], - [[ - 3842, - 3852, - 3849 - ]], - [[ - 3497, - 3938, - 3833 - ]], - [[ - 3748, - 3682, - 3938 - ]], - [[ - 3497, - 3695, - 3938 - ]], - [[ - 3747, - 3682, - 3748 - ]], - [[ - 3634, - 3680, - 3483 - ]], - [[ - 3873, - 3484, - 3680 - ]], - [[ - 3788, - 3786, - 3866 - ]], - [[ - 3751, - 3780, - 3786 - ]], - [[ - 3672, - 3589, - 3577 - ]], - [[ - 3672, - 3623, - 3589 - ]], - [[ - 3939, - 3930, - 3795 - ]], - [[ - 3795, - 3930, - 3931 - ]], - [[ - 3904, - 3505, - 3504 - ]], - [[ - 3904, - 3708, - 3505 - ]], - [[ - 3789, - 3777, - 3753 - ]], - [[ - 3822, - 3824, - 3823 - ]], - [[ - 3789, - 3775, - 3777 - ]], - [[ - 3788, - 3871, - 3775 - ]], - [[ - 3777, - 3754, - 3753 - ]], - [[ - 3822, - 3750, - 3749 - ]], - [[ - 3751, - 3754, - 3749 - ]], - [[ - 3933, - 3822, - 3932 - ]], - [[ - 3749, - 3754, - 3822 - ]], - [[ - 3777, - 3776, - 3822 - ]], - [[ - 3894, - 3893, - 3934 - ]], - [[ - 3894, - 3891, - 3893 - ]], - [[ - 3773, - 3906, - 3899 - ]], - [[ - 3773, - 3898, - 3906 - ]], - [[ - 3663, - 3664, - 3436 - ]], - [[ - 3663, - 3644, - 3664 - ]], - [[ - 3694, - 3645, - 3438 - ]], - [[ - 3693, - 3647, - 3645 - ]], - [[ - 3444, - 3946, - 3881 - ]], - [[ - 3702, - 3493, - 3703 - ]], - [[ - 3862, - 3877, - 3863 - ]], - [[ - 3862, - 3624, - 3877 - ]], - [[ - 3877, - 3947, - 3621 - ]], - [[ - 3660, - 3642, - 3603 - ]], - [[ - 3622, - 3621, - 3659 - ]], - [[ - 3947, - 3660, - 3621 - ]], - [[ - 3942, - 3945, - 3944 - ]], - [[ - 3942, - 3727, - 3945 - ]], - [[ - 3690, - 3689, - 3496 - ]], - [[ - 3748, - 3938, - 3695 - ]], - [[ - 3496, - 3689, - 3695 - ]], - [[ - 3691, - 3747, - 3689 - ]], - [[ - 3627, - 3439, - 3441 - ]], - [[ - 3627, - 3560, - 3439 - ]], - [[ - 3878, - 3435, - 3502 - ]], - [[ - 3878, - 3665, - 3435 - ]], - [[ - 3818, - 3908, - 3821 - ]], - [[ - 3909, - 3792, - 3907 - ]], - [[ - 3784, - 3781, - 3776 - ]], - [[ - 3919, - 3772, - 3781 - ]], - [[ - 3784, - 3670, - 3781 - ]], - [[ - 3783, - 3865, - 3670 - ]], - [[ - 3861, - 3860, - 3862 - ]], - [[ - 3861, - 3629, - 3860 - ]], - [[ - 3671, - 3595, - 3514 - ]], - [[ - 3607, - 3596, - 3595 - ]], - [[ - 3915, - 3912, - 3914 - ]], - [[ - 3915, - 3831, - 3912 - ]], - [[ - 3727, - 3930, - 3929 - ]], - [[ - 3727, - 3759, - 3930 - ]], - [[ - 3830, - 3916, - 3831 - ]], - [[ - 3474, - 3473, - 3916 - ]], - [[ - 3924, - 3828, - 3484 - ]], - [[ - 3924, - 3463, - 3941 - ]], - [[ - 3657, - 3829, - 3655 - ]], - [[ - 3828, - 3924, - 3941 - ]], - [[ - 3829, - 3462, - 3655 - ]], - [[ - 3941, - 3463, - 3462 - ]], - [[ - 3631, - 3829, - 3657 - ]], - [[ - 3828, - 3941, - 3829 - ]], - [[ - 3840, - 3856, - 3855 - ]], - [[ - 3755, - 3490, - 3856 - ]], - [[ - 3855, - 3854, - 3847 - ]], - [[ - 3855, - 3856, - 3854 - ]], - [[ - 3759, - 3503, - 3724 - ]], - [[ - 3759, - 3654, - 3503 - ]], - [[ - 3651, - 3928, - 3649 - ]], - [[ - 3654, - 3736, - 3928 - ]], - [[ - 3497, - 3684, - 3451 - ]], - [[ - 3833, - 3682, - 3684 - ]], - [[ - 3595, - 3671, - 3607 - ]], - [[ - 3514, - 3768, - 3920 - ]], - [[ - 3514, - 3920, - 3671 - ]], - [[ - 3768, - 3606, - 3920 - ]], - [[ - 3927, - 3891, - 3894 - ]], - [[ - 3889, - 3501, - 3891 - ]], - [[ - 3880, - 3927, - 3894 - ]], - [[ - 3879, - 3502, - 3890 - ]], - [[ - 3891, - 3890, - 3889 - ]], - [[ - 3891, - 3927, - 3890 - ]], - [[ - 3810, - 3636, - 3485 - ]], - [[ - 3810, - 3801, - 3636 - ]], - [[ - 3861, - 3620, - 3630 - ]], - [[ - 3863, - 3621, - 3620 - ]], - [[ - 3777, - 3822, - 3754 - ]], - [[ - 3776, - 3824, - 3822 - ]], - [[ - 3647, - 3436, - 3646 - ]], - [[ - 3664, - 3437, - 3436 - ]], - [[ - 3947, - 3642, - 3660 - ]], - [[ - 3947, - 3877, - 3642 - ]], - [[ - 3718, - 3730, - 3503 - ]], - [[ - 3718, - 3762, - 3730 - ]], - [[ - 3657, - 3830, - 3631 - ]], - [[ - 3474, - 3916, - 3830 - ]], - [[ - 3452, - 3681, - 3688 - ]], - [[ - 3674, - 3685, - 3681 - ]], - [[ - 3743, - 3687, - 3685 - ]], - [[ - 3743, - 3917, - 3687 - ]], - [[ - 3681, - 3745, - 3746 - ]], - [[ - 3681, - 3686, - 3745 - ]], - [[ - 3633, - 3459, - 3634 - ]], - [[ - 3633, - 3458, - 3459 - ]], - [[ - 3935, - 3508, - 3507 - ]], - [[ - 3903, - 3888, - 3508 - ]], - [[ - 3639, - 3910, - 3579 - ]], - [[ - 3639, - 3482, - 3910 - ]], - [[ - 3596, - 3608, - 3766 - ]], - [[ - 3596, - 3606, - 3767 - ]], - [[ - 3596, - 3767, - 3608 - ]], - [[ - 3606, - 3768, - 3767 - ]], - [[ - 3942, - 3793, - 3909 - ]], - [[ - 3942, - 3943, - 3793 - ]], - [[ - 3774, - 3790, - 3900 - ]], - [[ - 3793, - 3943, - 3790 - ]], - [[ - 3817, - 3602, - 3818 - ]], - [[ - 3826, - 3824, - 3602 - ]], - [[ - 3559, - 3523, - 3440 - ]], - [[ - 3619, - 3530, - 3523 - ]], - [[ - 3720, - 3709, - 3710 - ]], - [[ - 3719, - 3505, - 3709 - ]], - [[ - 3758, - 3701, - 3696 - ]], - [[ - 3758, - 3676, - 3701 - ]], - [[ - 3725, - 3762, - 3723 - ]], - [[ - 3725, - 3730, - 3762 - ]], - [[ - 3731, - 3653, - 3729 - ]], - [[ - 3652, - 3888, - 3653 - ]], - [[ - 3444, - 3881, - 3698 - ]], - [[ - 3946, - 3675, - 3494 - ]], - [[ - 3475, - 3656, - 3655 - ]], - [[ - 3475, - 3474, - 3656 - ]], - [[ - 3946, - 3702, - 3763 - ]], - [[ - 3494, - 3493, - 3702 - ]], - [[ - 3881, - 3946, - 3763 - ]], - [[ - 3675, - 3705, - 3492 - ]], - [[ - 3851, - 3455, - 3454 - ]], - [[ - 3851, - 3841, - 3455 - ]], - [[ - 3774, - 3714, - 3713 - ]], - [[ - 3774, - 3900, - 3714 - ]], - [[ - 3797, - 3624, - 3923 - ]], - [[ - 3799, - 3434, - 3624 - ]], - [[ - 3624, - 3642, - 3877 - ]], - [[ - 3624, - 3434, - 3642 - ]], - [[ - 3538, - 3614, - 3911 - ]], - [[ - 3538, - 3611, - 3614 - ]], - [[ - 3513, - 3591, - 3431 - ]], - [[ - 3605, - 3592, - 3591 - ]], - [[ - 3936, - 3506, - 3650 - ]], - [[ - 3936, - 3507, - 3506 - ]], - [[ - 3906, - 3905, - 3907 - ]], - [[ - 3818, - 3909, - 3908 - ]], - [[ - 3821, - 3905, - 3898 - ]], - [[ - 3908, - 3907, - 3905 - ]], - [[ - 3705, - 3445, - 3447 - ]], - [[ - 3706, - 3450, - 3445 - ]], - [[ - 3934, - 3940, - 3834 - ]], - [[ - 3934, - 3693, - 3940 - ]], - [[ - 3499, - 3874, - 3694 - ]], - [[ - 3940, - 3693, - 3874 - ]], - [[ - 3633, - 3487, - 3458 - ]], - [[ - 3486, - 3457, - 3487 - ]], - [[ - 3799, - 3598, - 3626 - ]], - [[ - 3799, - 3590, - 3598 - ]], - [[ - 3876, - 3622, - 3659 - ]], - [[ - 3876, - 3630, - 3622 - ]], - [[ - 3751, - 3752, - 3754 - ]], - [[ - 3786, - 3753, - 3752 - ]], - [[ - 3755, - 3840, - 3810 - ]], - [[ - 3755, - 3856, - 3840 - ]], - [[ - 3811, - 3839, - 3853 - ]], - [[ - 3840, - 3855, - 3839 - ]], - [[ - 3760, - 3723, - 3761 - ]], - [[ - 3762, - 3710, - 3723 - ]], - [[ - 3862, - 3625, - 3624 - ]], - [[ - 3862, - 3860, - 3625 - ]], - [[ - 3535, - 3476, - 3478 - ]], - [[ - 3612, - 3477, - 3476 - ]], - [[ - 3675, - 3492, - 3494 - ]], - [[ - 3705, - 3447, - 3492 - ]], - [[ - 3882, - 3509, - 3511 - ]], - [[ - 3883, - 3738, - 3509 - ]], - [[ - 3735, - 3937, - 3936 - ]], - [[ - 3735, - 3935, - 3937 - ]], - [[ - 3925, - 3895, - 3846 - ]], - [[ - 3897, - 3673, - 3895 - ]], - [[ - 3702, - 3946, - 3494 - ]], - [[ - 3444, - 3675, - 3946 - ]], - [[ - 3679, - 3678, - 3757 - ]], - [[ - 3673, - 3897, - 3678 - ]], - [[ - 3692, - 3832, - 3836 - ]], - [[ - 3682, - 3835, - 3832 - ]], - [[ - 3857, - 3787, - 3776 - ]], - [[ - 3785, - 3784, - 3787 - ]], - [[ - 3948, - 3458, - 3456 - ]], - [[ - 3949, - 3948, - 3673 - ]], - [[ - 3673, - 3948, - 3456 - ]], - [[ - 3950, - 3949, - 3674 - ]], - [[ - 3674, - 3949, - 3673 - ]], - [[ - 3951, - 3950, - 3452 - ]], - [[ - 3452, - 3950, - 3674 - ]], - [[ - 3437, - 3951, - 3452 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b2c160b4d-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efc5ef49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:55:21.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3952, - 3953, - 3954 - ]], - [[ - 3955, - 3956, - 3957 - ]], - [[ - 3957, - 3958, - 3955 - ]], - [[ - 3959, - 3960, - 3954 - ]], - [[ - 3960, - 3956, - 3954 - ]], - [[ - 3961, - 3962, - 3963 - ]], - [[ - 3961, - 3963, - 3964 - ]], - [[ - 3965, - 3966, - 3967 - ]], - [[ - 3968, - 3969, - 3970 - ]], - [[ - 3971, - 3972, - 3973 - ]], - [[ - 3971, - 3974, - 3972 - ]], - [[ - 3975, - 3976, - 3977 - ]], - [[ - 3978, - 3979, - 3974 - ]], - [[ - 3980, - 3981, - 3982 - ]], - [[ - 3971, - 3973, - 3983 - ]], - [[ - 3972, - 3984, - 3973 - ]], - [[ - 3985, - 3986, - 3987 - ]], - [[ - 3988, - 3989, - 3990 - ]], - [[ - 3991, - 3992, - 3993 - ]], - [[ - 3994, - 3995, - 3996 - ]], - [[ - 3997, - 3998, - 3999 - ]], - [[ - 3994, - 4000, - 4001 - ]], - [[ - 4002, - 4003, - 4004 - ]], - [[ - 4005, - 4006, - 4007 - ]], - [[ - 3967, - 3981, - 3965 - ]], - [[ - 3967, - 4008, - 3990 - ]], - [[ - 4009, - 3990, - 4008 - ]], - [[ - 4010, - 4011, - 3982 - ]], - [[ - 4012, - 3965, - 3981 - ]], - [[ - 4013, - 4014, - 3981 - ]], - [[ - 4015, - 4016, - 4010 - ]], - [[ - 4013, - 3981, - 3980 - ]], - [[ - 3980, - 3982, - 4017 - ]], - [[ - 4017, - 3982, - 4018 - ]], - [[ - 4018, - 3982, - 4011 - ]], - [[ - 4011, - 4010, - 4016 - ]], - [[ - 4019, - 4015, - 4010 - ]], - [[ - 4020, - 4019, - 4010 - ]], - [[ - 4021, - 4020, - 4010 - ]], - [[ - 4022, - 4021, - 4010 - ]], - [[ - 4023, - 4024, - 4025 - ]], - [[ - 4010, - 4026, - 4022 - ]], - [[ - 4010, - 4027, - 4026 - ]], - [[ - 4024, - 4028, - 4029 - ]], - [[ - 4030, - 4031, - 4032 - ]], - [[ - 4033, - 4034, - 4035 - ]], - [[ - 4036, - 4037, - 4038 - ]], - [[ - 4039, - 4040, - 4041 - ]], - [[ - 4042, - 4043, - 4044 - ]], - [[ - 4044, - 4045, - 4046 - ]], - [[ - 4047, - 4048, - 4049 - ]], - [[ - 4050, - 4051, - 4052 - ]], - [[ - 4035, - 4053, - 4054 - ]], - [[ - 4055, - 4056, - 4057 - ]], - [[ - 4035, - 4054, - 4058 - ]], - [[ - 4056, - 4059, - 4024 - ]], - [[ - 4060, - 4024, - 4029 - ]], - [[ - 4061, - 4058, - 4027 - ]], - [[ - 4062, - 4024, - 4023 - ]], - [[ - 4026, - 4027, - 4058 - ]], - [[ - 4061, - 4063, - 4064 - ]], - [[ - 4027, - 4065, - 4061 - ]], - [[ - 4066, - 4027, - 4010 - ]], - [[ - 4067, - 4066, - 4010 - ]], - [[ - 4068, - 4067, - 4010 - ]], - [[ - 4068, - 4069, - 4067 - ]], - [[ - 4070, - 4071, - 4072 - ]], - [[ - 4073, - 4074, - 4075 - ]], - [[ - 4076, - 4077, - 4074 - ]], - [[ - 4078, - 4079, - 4080 - ]], - [[ - 4081, - 4082, - 4083 - ]], - [[ - 4084, - 3962, - 4085 - ]], - [[ - 3963, - 3962, - 4084 - ]], - [[ - 4085, - 3962, - 4086 - ]], - [[ - 4086, - 3962, - 4087 - ]], - [[ - 4088, - 4089, - 4078 - ]], - [[ - 4080, - 4088, - 4078 - ]], - [[ - 4090, - 4091, - 4079 - ]], - [[ - 4079, - 4092, - 4080 - ]], - [[ - 4079, - 4093, - 4092 - ]], - [[ - 4079, - 4094, - 4093 - ]], - [[ - 4095, - 4096, - 4097 - ]], - [[ - 4079, - 4098, - 4094 - ]], - [[ - 4079, - 4091, - 4098 - ]], - [[ - 4090, - 4099, - 4091 - ]], - [[ - 4090, - 4100, - 4099 - ]], - [[ - 4090, - 4101, - 4100 - ]], - [[ - 4101, - 4090, - 4102 - ]], - [[ - 4102, - 4090, - 4103 - ]], - [[ - 4090, - 4104, - 4103 - ]], - [[ - 4090, - 4105, - 4104 - ]], - [[ - 4090, - 4106, - 4105 - ]], - [[ - 4090, - 4107, - 4106 - ]], - [[ - 4090, - 4108, - 4107 - ]], - [[ - 4090, - 4097, - 4096 - ]], - [[ - 4108, - 4090, - 4109 - ]], - [[ - 4109, - 4090, - 4110 - ]], - [[ - 4110, - 4090, - 4111 - ]], - [[ - 4111, - 4090, - 4096 - ]], - [[ - 4095, - 4112, - 4096 - ]], - [[ - 4113, - 4114, - 4112 - ]], - [[ - 4115, - 4116, - 4114 - ]], - [[ - 4115, - 4114, - 4117 - ]], - [[ - 4117, - 4114, - 4118 - ]], - [[ - 4118, - 4114, - 4113 - ]], - [[ - 4119, - 4118, - 4120 - ]], - [[ - 4120, - 4118, - 4121 - ]], - [[ - 4095, - 4113, - 4112 - ]], - [[ - 4121, - 4118, - 4113 - ]], - [[ - 4122, - 4095, - 4097 - ]], - [[ - 4123, - 4124, - 4097 - ]], - [[ - 4097, - 4125, - 4122 - ]], - [[ - 4097, - 4126, - 4125 - ]], - [[ - 4097, - 4127, - 4126 - ]], - [[ - 4097, - 4128, - 4127 - ]], - [[ - 4128, - 4097, - 4129 - ]], - [[ - 4129, - 4097, - 4130 - ]], - [[ - 4097, - 4131, - 4130 - ]], - [[ - 4097, - 4124, - 4131 - ]], - [[ - 4132, - 4123, - 4097 - ]], - [[ - 4133, - 4134, - 4097 - ]], - [[ - 4097, - 4134, - 4132 - ]], - [[ - 4133, - 4135, - 4136 - ]], - [[ - 4133, - 4136, - 4134 - ]], - [[ - 4135, - 4137, - 4136 - ]], - [[ - 4137, - 4138, - 4136 - ]], - [[ - 4137, - 3954, - 4138 - ]], - [[ - 3954, - 3953, - 4138 - ]], - [[ - 3954, - 3956, - 3952 - ]], - [[ - 3955, - 3952, - 3956 - ]], - [[ - 4139, - 4140, - 3958 - ]], - [[ - 4141, - 4142, - 4143 - ]], - [[ - 3958, - 4140, - 3955 - ]], - [[ - 4139, - 4142, - 4141 - ]], - [[ - 4140, - 4139, - 4144 - ]], - [[ - 4144, - 4139, - 4141 - ]], - [[ - 4145, - 4146, - 4147 - ]], - [[ - 4148, - 4149, - 4150 - ]], - [[ - 4001, - 4151, - 3994 - ]], - [[ - 4152, - 4003, - 3995 - ]], - [[ - 4153, - 3972, - 4154 - ]], - [[ - 4155, - 4003, - 4002 - ]], - [[ - 4073, - 4156, - 4071 - ]], - [[ - 4157, - 4158, - 4159 - ]], - [[ - 4009, - 4160, - 3988 - ]], - [[ - 4009, - 4161, - 4160 - ]], - [[ - 4145, - 4162, - 4163 - ]], - [[ - 4164, - 4165, - 4166 - ]], - [[ - 4167, - 4168, - 4169 - ]], - [[ - 4170, - 4171, - 4172 - ]], - [[ - 4147, - 4171, - 4164 - ]], - [[ - 4163, - 4006, - 4005 - ]], - [[ - 4173, - 4174, - 4175 - ]], - [[ - 4176, - 4177, - 4178 - ]], - [[ - 3997, - 4179, - 3998 - ]], - [[ - 4180, - 4181, - 4182 - ]], - [[ - 4183, - 4184, - 4185 - ]], - [[ - 4154, - 4003, - 4186 - ]], - [[ - 4187, - 4002, - 4000 - ]], - [[ - 4000, - 4004, - 4001 - ]], - [[ - 4185, - 4184, - 4188 - ]], - [[ - 4189, - 4190, - 4191 - ]], - [[ - 4152, - 3994, - 4151 - ]], - [[ - 3996, - 4000, - 3994 - ]], - [[ - 4192, - 4193, - 4194 - ]], - [[ - 4195, - 4196, - 4197 - ]], - [[ - 4150, - 4198, - 4199 - ]], - [[ - 4200, - 4168, - 4201 - ]], - [[ - 4202, - 4200, - 4201 - ]], - [[ - 4168, - 4166, - 4169 - ]], - [[ - 4164, - 4203, - 4165 - ]], - [[ - 4204, - 3996, - 3989 - ]], - [[ - 4165, - 4169, - 4166 - ]], - [[ - 4150, - 3996, - 4148 - ]], - [[ - 4175, - 4205, - 4173 - ]], - [[ - 4161, - 4009, - 4173 - ]], - [[ - 4164, - 4168, - 4200 - ]], - [[ - 4164, - 4166, - 4168 - ]], - [[ - 4183, - 4185, - 4206 - ]], - [[ - 4188, - 4154, - 4185 - ]], - [[ - 3968, - 3970, - 4186 - ]], - [[ - 4186, - 4003, - 3968 - ]], - [[ - 4207, - 4203, - 4171 - ]], - [[ - 4208, - 4162, - 4161 - ]], - [[ - 4203, - 4209, - 4165 - ]], - [[ - 4172, - 4171, - 4147 - ]], - [[ - 4179, - 4210, - 3969 - ]], - [[ - 4211, - 4179, - 3969 - ]], - [[ - 4001, - 4004, - 4151 - ]], - [[ - 4003, - 3989, - 3995 - ]], - [[ - 3988, - 4147, - 3989 - ]], - [[ - 4005, - 4007, - 4147 - ]], - [[ - 4147, - 4212, - 3989 - ]], - [[ - 4147, - 4200, - 4212 - ]], - [[ - 4213, - 4214, - 4215 - ]], - [[ - 4215, - 4214, - 4149 - ]], - [[ - 4216, - 4217, - 4218 - ]], - [[ - 4167, - 4198, - 4202 - ]], - [[ - 4187, - 4219, - 4002 - ]], - [[ - 4220, - 4221, - 4211 - ]], - [[ - 4222, - 4158, - 4071 - ]], - [[ - 4223, - 4224, - 4077 - ]], - [[ - 4073, - 4072, - 4225 - ]], - [[ - 4070, - 4073, - 4071 - ]], - [[ - 4197, - 4226, - 4074 - ]], - [[ - 4227, - 4228, - 4229 - ]], - [[ - 4207, - 4171, - 4170 - ]], - [[ - 4176, - 4007, - 4006 - ]], - [[ - 4230, - 4177, - 4176 - ]], - [[ - 4230, - 4231, - 4177 - ]], - [[ - 4232, - 4233, - 4170 - ]], - [[ - 4207, - 4175, - 4174 - ]], - [[ - 4175, - 4233, - 4205 - ]], - [[ - 4232, - 4234, - 4231 - ]], - [[ - 4216, - 4235, - 4236 - ]], - [[ - 4237, - 4236, - 4212 - ]], - [[ - 4150, - 4238, - 4198 - ]], - [[ - 4238, - 4214, - 4237 - ]], - [[ - 4239, - 4076, - 4074 - ]], - [[ - 4229, - 4240, - 4227 - ]], - [[ - 4241, - 3991, - 3999 - ]], - [[ - 4185, - 4210, - 4242 - ]], - [[ - 4242, - 3997, - 4206 - ]], - [[ - 4190, - 4243, - 4181 - ]], - [[ - 4244, - 4245, - 4220 - ]], - [[ - 4179, - 4245, - 4244 - ]], - [[ - 4246, - 3968, - 4155 - ]], - [[ - 4211, - 3969, - 3968 - ]], - [[ - 4247, - 4248, - 4249 - ]], - [[ - 4158, - 4072, - 4071 - ]], - [[ - 3985, - 4250, - 4182 - ]], - [[ - 3992, - 3991, - 4241 - ]], - [[ - 4184, - 4251, - 4188 - ]], - [[ - 3984, - 3986, - 3985 - ]], - [[ - 4160, - 4145, - 3988 - ]], - [[ - 4162, - 4208, - 4163 - ]], - [[ - 4249, - 4222, - 4193 - ]], - [[ - 4249, - 4158, - 4222 - ]], - [[ - 4068, - 4249, - 4248 - ]], - [[ - 4252, - 4253, - 4254 - ]], - [[ - 4255, - 4244, - 4220 - ]], - [[ - 3998, - 4255, - 3999 - ]], - [[ - 4255, - 3998, - 4244 - ]], - [[ - 4243, - 4241, - 3999 - ]], - [[ - 4256, - 4248, - 4247 - ]], - [[ - 4257, - 4258, - 4259 - ]], - [[ - 4220, - 4245, - 4221 - ]], - [[ - 4244, - 3998, - 4179 - ]], - [[ - 4072, - 4157, - 4225 - ]], - [[ - 4197, - 4074, - 4225 - ]], - [[ - 4194, - 4193, - 4260 - ]], - [[ - 4222, - 4260, - 4193 - ]], - [[ - 4161, - 4176, - 4208 - ]], - [[ - 4176, - 4178, - 4007 - ]], - [[ - 4261, - 4032, - 4262 - ]], - [[ - 4229, - 4263, - 4264 - ]], - [[ - 4265, - 4082, - 4081 - ]], - [[ - 4083, - 4082, - 4266 - ]], - [[ - 4267, - 4030, - 4032 - ]], - [[ - 4268, - 4269, - 4270 - ]], - [[ - 4074, - 4226, - 4239 - ]], - [[ - 4076, - 4271, - 4224 - ]], - [[ - 4263, - 4272, - 4273 - ]], - [[ - 4253, - 4274, - 4082 - ]], - [[ - 3964, - 4274, - 4253 - ]], - [[ - 3964, - 3963, - 4269 - ]], - [[ - 4275, - 4276, - 4082 - ]], - [[ - 4274, - 3964, - 4269 - ]], - [[ - 4259, - 4277, - 4257 - ]], - [[ - 4256, - 4278, - 4248 - ]], - [[ - 4279, - 4280, - 4249 - ]], - [[ - 4281, - 4256, - 4247 - ]], - [[ - 4158, - 4226, - 4159 - ]], - [[ - 4077, - 4076, - 4223 - ]], - [[ - 4159, - 4226, - 4196 - ]], - [[ - 4239, - 4249, - 4076 - ]], - [[ - 4202, - 4198, - 4282 - ]], - [[ - 4238, - 4149, - 4214 - ]], - [[ - 4237, - 4214, - 4213 - ]], - [[ - 4215, - 4217, - 4236 - ]], - [[ - 4273, - 4264, - 4263 - ]], - [[ - 4283, - 4253, - 4276 - ]], - [[ - 4284, - 4283, - 4276 - ]], - [[ - 4253, - 4082, - 4276 - ]], - [[ - 4217, - 4216, - 4236 - ]], - [[ - 4285, - 4286, - 4287 - ]], - [[ - 4198, - 4238, - 4237 - ]], - [[ - 4236, - 3989, - 4212 - ]], - [[ - 4229, - 4030, - 4240 - ]], - [[ - 4261, - 4288, - 4289 - ]], - [[ - 4264, - 4031, - 4229 - ]], - [[ - 4290, - 4270, - 4077 - ]], - [[ - 4030, - 4229, - 4031 - ]], - [[ - 4264, - 4273, - 4270 - ]], - [[ - 4270, - 4290, - 4262 - ]], - [[ - 4290, - 4077, - 4271 - ]], - [[ - 4204, - 4285, - 4291 - ]], - [[ - 4292, - 4216, - 4293 - ]], - [[ - 4204, - 4236, - 4285 - ]], - [[ - 4286, - 4293, - 4294 - ]], - [[ - 4152, - 3995, - 3994 - ]], - [[ - 3989, - 3996, - 3995 - ]], - [[ - 4295, - 3993, - 4189 - ]], - [[ - 4180, - 4182, - 4250 - ]], - [[ - 4296, - 3985, - 4182 - ]], - [[ - 3984, - 4153, - 3987 - ]], - [[ - 4000, - 4002, - 4004 - ]], - [[ - 4219, - 4155, - 4002 - ]], - [[ - 3964, - 4068, - 4010 - ]], - [[ - 3964, - 4271, - 4068 - ]], - [[ - 4278, - 4256, - 4277 - ]], - [[ - 4278, - 4068, - 4248 - ]], - [[ - 4263, - 4228, - 4297 - ]], - [[ - 4284, - 4276, - 4275 - ]], - [[ - 4220, - 4298, - 4000 - ]], - [[ - 4298, - 4211, - 3968 - ]], - [[ - 4246, - 4298, - 3968 - ]], - [[ - 4221, - 4245, - 4211 - ]], - [[ - 4191, - 4180, - 4250 - ]], - [[ - 4191, - 4181, - 4180 - ]], - [[ - 4251, - 4153, - 4154 - ]], - [[ - 3993, - 4184, - 4183 - ]], - [[ - 4222, - 4156, - 4260 - ]], - [[ - 4222, - 4071, - 4156 - ]], - [[ - 4215, - 4236, - 4213 - ]], - [[ - 4235, - 4285, - 4236 - ]], - [[ - 4225, - 4157, - 4159 - ]], - [[ - 4072, - 4158, - 4157 - ]], - [[ - 4251, - 4154, - 4188 - ]], - [[ - 3972, - 4003, - 4154 - ]], - [[ - 4147, - 4232, - 4172 - ]], - [[ - 4233, - 4175, - 4170 - ]], - [[ - 4053, - 4035, - 4034 - ]], - [[ - 4024, - 4064, - 4025 - ]], - [[ - 3973, - 3984, - 4296 - ]], - [[ - 4296, - 3984, - 3985 - ]], - [[ - 4281, - 4247, - 4249 - ]], - [[ - 4281, - 4277, - 4256 - ]], - [[ - 4280, - 4281, - 4249 - ]], - [[ - 4258, - 4257, - 4281 - ]], - [[ - 4299, - 4055, - 4045 - ]], - [[ - 4055, - 4047, - 4049 - ]], - [[ - 4168, - 4167, - 4201 - ]], - [[ - 4199, - 4198, - 4167 - ]], - [[ - 4255, - 4243, - 3999 - ]], - [[ - 4190, - 4300, - 3992 - ]], - [[ - 4272, - 4283, - 4301 - ]], - [[ - 4297, - 4228, - 4254 - ]], - [[ - 4280, - 4258, - 4281 - ]], - [[ - 4280, - 4279, - 4259 - ]], - [[ - 4281, - 4257, - 4277 - ]], - [[ - 4258, - 4280, - 4259 - ]], - [[ - 4282, - 4237, - 4212 - ]], - [[ - 4213, - 4236, - 4237 - ]], - [[ - 4295, - 4302, - 4153 - ]], - [[ - 4302, - 3985, - 3987 - ]], - [[ - 4251, - 3993, - 4295 - ]], - [[ - 4250, - 3985, - 4303 - ]], - [[ - 4246, - 4155, - 4219 - ]], - [[ - 3968, - 4003, - 4155 - ]], - [[ - 3991, - 4206, - 3997 - ]], - [[ - 4206, - 4185, - 4242 - ]], - [[ - 3991, - 3997, - 3999 - ]], - [[ - 4242, - 4210, - 4179 - ]], - [[ - 4304, - 4037, - 4050 - ]], - [[ - 4305, - 4052, - 4306 - ]], - [[ - 4189, - 4300, - 4190 - ]], - [[ - 4189, - 4303, - 4295 - ]], - [[ - 3993, - 3992, - 4300 - ]], - [[ - 4241, - 4243, - 3992 - ]], - [[ - 4189, - 3993, - 4300 - ]], - [[ - 4251, - 4184, - 3993 - ]], - [[ - 4250, - 4189, - 4191 - ]], - [[ - 4250, - 4303, - 4189 - ]], - [[ - 4050, - 4037, - 4051 - ]], - [[ - 4041, - 4307, - 4033 - ]], - [[ - 4062, - 4308, - 4024 - ]], - [[ - 4051, - 4061, - 4052 - ]], - [[ - 4227, - 4254, - 4228 - ]], - [[ - 4272, - 4254, - 4283 - ]], - [[ - 4051, - 4037, - 4309 - ]], - [[ - 4050, - 4052, - 4310 - ]], - [[ - 4311, - 4312, - 4046 - ]], - [[ - 4313, - 4038, - 4304 - ]], - [[ - 4061, - 4035, - 4058 - ]], - [[ - 4314, - 4309, - 4315 - ]], - [[ - 4192, - 4279, - 4249 - ]], - [[ - 4075, - 4259, - 4279 - ]], - [[ - 4284, - 4301, - 4283 - ]], - [[ - 4272, - 4297, - 4254 - ]], - [[ - 4316, - 4040, - 4317 - ]], - [[ - 4318, - 4317, - 4319 - ]], - [[ - 4320, - 4056, - 4049 - ]], - [[ - 4056, - 4060, - 4057 - ]], - [[ - 4044, - 4306, - 4045 - ]], - [[ - 4305, - 4042, - 4310 - ]], - [[ - 4148, - 4293, - 4218 - ]], - [[ - 4217, - 4215, - 4149 - ]], - [[ - 4148, - 4218, - 4149 - ]], - [[ - 4293, - 4216, - 4218 - ]], - [[ - 4150, - 4149, - 4238 - ]], - [[ - 4218, - 4217, - 4149 - ]], - [[ - 4235, - 4292, - 4285 - ]], - [[ - 4235, - 4216, - 4292 - ]], - [[ - 4287, - 4294, - 3996 - ]], - [[ - 4286, - 4292, - 4293 - ]], - [[ - 4287, - 4286, - 4294 - ]], - [[ - 4285, - 4292, - 4286 - ]], - [[ - 4261, - 4262, - 4288 - ]], - [[ - 4321, - 4267, - 4261 - ]], - [[ - 4288, - 4262, - 4322 - ]], - [[ - 4032, - 4270, - 4262 - ]], - [[ - 4290, - 4271, - 4322 - ]], - [[ - 4323, - 4030, - 4267 - ]], - [[ - 4322, - 4271, - 4288 - ]], - [[ - 4254, - 4253, - 4283 - ]], - [[ - 4042, - 4044, - 4046 - ]], - [[ - 4324, - 4306, - 4044 - ]], - [[ - 4294, - 4148, - 3996 - ]], - [[ - 4294, - 4293, - 4148 - ]], - [[ - 4081, - 4272, - 4301 - ]], - [[ - 4081, - 4325, - 4272 - ]], - [[ - 4055, - 4049, - 4056 - ]], - [[ - 4048, - 4320, - 4049 - ]], - [[ - 4299, - 4326, - 4055 - ]], - [[ - 4327, - 4047, - 4055 - ]], - [[ - 4048, - 4328, - 4320 - ]], - [[ - 4056, - 4024, - 4060 - ]], - [[ - 4251, - 4295, - 4153 - ]], - [[ - 4302, - 3987, - 4153 - ]], - [[ - 4317, - 4329, - 4319 - ]], - [[ - 4318, - 4319, - 4041 - ]], - [[ - 4330, - 4316, - 4318 - ]], - [[ - 4319, - 4307, - 4041 - ]], - [[ - 4316, - 4317, - 4318 - ]], - [[ - 4331, - 4039, - 4035 - ]], - [[ - 4073, - 4070, - 4072 - ]], - [[ - 4073, - 4260, - 4156 - ]], - [[ - 4262, - 4290, - 4322 - ]], - [[ - 4077, - 4224, - 4271 - ]], - [[ - 4052, - 4047, - 4306 - ]], - [[ - 4052, - 4061, - 4047 - ]], - [[ - 4325, - 4081, - 4268 - ]], - [[ - 4082, - 4274, - 4266 - ]], - [[ - 4273, - 4325, - 4270 - ]], - [[ - 4269, - 3963, - 4270 - ]], - [[ - 4270, - 4325, - 4268 - ]], - [[ - 4273, - 4272, - 4325 - ]], - [[ - 4268, - 4083, - 4266 - ]], - [[ - 4268, - 4081, - 4083 - ]], - [[ - 4202, - 4282, - 4212 - ]], - [[ - 4198, - 4237, - 4282 - ]], - [[ - 4200, - 4202, - 4212 - ]], - [[ - 4201, - 4167, - 4202 - ]], - [[ - 3991, - 4183, - 4206 - ]], - [[ - 3991, - 3993, - 4183 - ]], - [[ - 4035, - 4041, - 4033 - ]], - [[ - 4330, - 4318, - 4041 - ]], - [[ - 4236, - 4204, - 3989 - ]], - [[ - 4291, - 4287, - 4204 - ]], - [[ - 4288, - 4271, - 4289 - ]], - [[ - 4289, - 4321, - 4332 - ]], - [[ - 4311, - 4333, - 4312 - ]], - [[ - 4329, - 4317, - 4333 - ]], - [[ - 4209, - 4203, - 4207 - ]], - [[ - 4230, - 4161, - 4173 - ]], - [[ - 4082, - 4265, - 4275 - ]], - [[ - 4265, - 4301, - 4284 - ]], - [[ - 4301, - 4265, - 4081 - ]], - [[ - 4284, - 4275, - 4265 - ]], - [[ - 4172, - 4232, - 4170 - ]], - [[ - 4231, - 4205, - 4233 - ]], - [[ - 4234, - 4232, - 4147 - ]], - [[ - 4231, - 4233, - 4232 - ]], - [[ - 4007, - 4234, - 4147 - ]], - [[ - 4007, - 4178, - 4234 - ]], - [[ - 4181, - 4255, - 4220 - ]], - [[ - 4181, - 4243, - 4255 - ]], - [[ - 4045, - 4055, - 4057 - ]], - [[ - 4326, - 4327, - 4055 - ]], - [[ - 4328, - 4059, - 4334 - ]], - [[ - 4024, - 4308, - 4028 - ]], - [[ - 4047, - 4328, - 4048 - ]], - [[ - 4334, - 4056, - 4320 - ]], - [[ - 4328, - 4024, - 4059 - ]], - [[ - 4061, - 4064, - 4024 - ]], - [[ - 4311, - 4319, - 4329 - ]], - [[ - 4046, - 4307, - 4319 - ]], - [[ - 4252, - 4030, - 4323 - ]], - [[ - 4252, - 4240, - 4030 - ]], - [[ - 4279, - 4192, - 4075 - ]], - [[ - 4249, - 4193, - 4192 - ]], - [[ - 4046, - 4312, - 4042 - ]], - [[ - 4315, - 4309, - 4037 - ]], - [[ - 4036, - 4315, - 4037 - ]], - [[ - 4335, - 4314, - 4315 - ]], - [[ - 4040, - 4316, - 4041 - ]], - [[ - 4335, - 4315, - 4036 - ]], - [[ - 4223, - 4076, - 4224 - ]], - [[ - 4271, - 3964, - 4321 - ]], - [[ - 4336, - 4313, - 4042 - ]], - [[ - 4336, - 4036, - 4038 - ]], - [[ - 4204, - 4287, - 3996 - ]], - [[ - 4291, - 4285, - 4287 - ]], - [[ - 4231, - 4178, - 4177 - ]], - [[ - 4231, - 4234, - 4178 - ]], - [[ - 4306, - 4327, - 4045 - ]], - [[ - 4306, - 4047, - 4327 - ]], - [[ - 4041, - 4316, - 4330 - ]], - [[ - 4312, - 4036, - 4336 - ]], - [[ - 4035, - 4039, - 4041 - ]], - [[ - 4331, - 4335, - 4312 - ]], - [[ - 4063, - 4061, - 4065 - ]], - [[ - 4314, - 4035, - 4061 - ]], - [[ - 4324, - 4043, - 4306 - ]], - [[ - 4324, - 4044, - 4043 - ]], - [[ - 4073, - 4194, - 4260 - ]], - [[ - 4075, - 4192, - 4194 - ]], - [[ - 4042, - 4312, - 4336 - ]], - [[ - 4333, - 4317, - 4312 - ]], - [[ - 4205, - 4230, - 4173 - ]], - [[ - 4205, - 4231, - 4230 - ]], - [[ - 4174, - 4173, - 4150 - ]], - [[ - 4009, - 3996, - 4173 - ]], - [[ - 4165, - 4174, - 4169 - ]], - [[ - 4165, - 4209, - 4174 - ]], - [[ - 4175, - 4207, - 4170 - ]], - [[ - 4174, - 4209, - 4207 - ]], - [[ - 4331, - 4040, - 4039 - ]], - [[ - 4312, - 4317, - 4040 - ]], - [[ - 4271, - 4321, - 4289 - ]], - [[ - 3964, - 4253, - 4321 - ]], - [[ - 4252, - 4323, - 4253 - ]], - [[ - 4321, - 4253, - 4323 - ]], - [[ - 4261, - 4267, - 4032 - ]], - [[ - 4321, - 4323, - 4267 - ]], - [[ - 4327, - 4299, - 4045 - ]], - [[ - 4327, - 4326, - 4299 - ]], - [[ - 4228, - 4263, - 4229 - ]], - [[ - 4297, - 4272, - 4263 - ]], - [[ - 4169, - 4199, - 4167 - ]], - [[ - 4169, - 4150, - 4199 - ]], - [[ - 4194, - 4073, - 4075 - ]], - [[ - 4225, - 4074, - 4073 - ]], - [[ - 4335, - 4331, - 4035 - ]], - [[ - 4312, - 4040, - 4331 - ]], - [[ - 4145, - 4163, - 4146 - ]], - [[ - 4208, - 4006, - 4163 - ]], - [[ - 4158, - 4239, - 4226 - ]], - [[ - 4158, - 4249, - 4239 - ]], - [[ - 4160, - 4162, - 4145 - ]], - [[ - 4160, - 4161, - 4162 - ]], - [[ - 4312, - 4335, - 4036 - ]], - [[ - 4035, - 4314, - 4335 - ]], - [[ - 4009, - 3988, - 3990 - ]], - [[ - 4145, - 4147, - 3988 - ]], - [[ - 4051, - 4314, - 4061 - ]], - [[ - 4051, - 4309, - 4314 - ]], - [[ - 4319, - 4311, - 4046 - ]], - [[ - 4329, - 4333, - 4311 - ]], - [[ - 4249, - 4271, - 4076 - ]], - [[ - 4249, - 4068, - 4271 - ]], - [[ - 4061, - 4328, - 4047 - ]], - [[ - 4061, - 4024, - 4328 - ]], - [[ - 4147, - 4164, - 4200 - ]], - [[ - 4171, - 4203, - 4164 - ]], - [[ - 4174, - 4150, - 4169 - ]], - [[ - 4173, - 3996, - 4150 - ]], - [[ - 3969, - 4210, - 4186 - ]], - [[ - 4185, - 4154, - 4210 - ]], - [[ - 4245, - 4179, - 4211 - ]], - [[ - 3997, - 4242, - 4179 - ]], - [[ - 4304, - 4038, - 4037 - ]], - [[ - 4313, - 4336, - 4038 - ]], - [[ - 4310, - 4337, - 4050 - ]], - [[ - 4337, - 4313, - 4304 - ]], - [[ - 4328, - 4334, - 4320 - ]], - [[ - 4059, - 4056, - 4334 - ]], - [[ - 4159, - 4195, - 4225 - ]], - [[ - 4159, - 4196, - 4195 - ]], - [[ - 4004, - 4152, - 4151 - ]], - [[ - 4004, - 4003, - 4152 - ]], - [[ - 4032, - 4264, - 4270 - ]], - [[ - 4032, - 4031, - 4264 - ]], - [[ - 4305, - 4310, - 4052 - ]], - [[ - 4337, - 4304, - 4050 - ]], - [[ - 4153, - 3984, - 3972 - ]], - [[ - 3987, - 3986, - 3984 - ]], - [[ - 4043, - 4305, - 4306 - ]], - [[ - 4043, - 4042, - 4305 - ]], - [[ - 4243, - 4190, - 3992 - ]], - [[ - 4181, - 4191, - 4190 - ]], - [[ - 4042, - 4337, - 4310 - ]], - [[ - 4042, - 4313, - 4337 - ]], - [[ - 4187, - 4246, - 4219 - ]], - [[ - 4187, - 4000, - 4298 - ]], - [[ - 4187, - 4298, - 4246 - ]], - [[ - 4220, - 4211, - 4298 - ]], - [[ - 4266, - 4269, - 4268 - ]], - [[ - 4266, - 4274, - 4269 - ]], - [[ - 3969, - 4186, - 3970 - ]], - [[ - 4210, - 4154, - 4186 - ]], - [[ - 4303, - 4302, - 4295 - ]], - [[ - 4303, - 3985, - 4302 - ]], - [[ - 4195, - 4197, - 4225 - ]], - [[ - 4196, - 4226, - 4197 - ]], - [[ - 4208, - 4176, - 4006 - ]], - [[ - 4161, - 4230, - 4176 - ]], - [[ - 4227, - 4252, - 4254 - ]], - [[ - 4227, - 4240, - 4252 - ]], - [[ - 4332, - 4261, - 4289 - ]], - [[ - 4332, - 4321, - 4261 - ]], - [[ - 4069, - 4278, - 4277 - ]], - [[ - 4069, - 4068, - 4278 - ]], - [[ - 4069, - 4259, - 4075 - ]], - [[ - 4069, - 4277, - 4259 - ]], - [[ - 4146, - 4005, - 4147 - ]], - [[ - 4146, - 4163, - 4005 - ]], - [[ - 4078, - 4087, - 3962 - ]], - [[ - 3964, - 4079, - 3962 - ]], - [[ - 4338, - 4087, - 4078 - ]], - [[ - 4339, - 3964, - 3962 - ]], - [[ - 4340, - 3978, - 3983 - ]], - [[ - 3978, - 3974, - 3971 - ]], - [[ - 4339, - 3961, - 3964 - ]], - [[ - 4339, - 3962, - 3961 - ]], - [[ - 3979, - 3977, - 4341 - ]], - [[ - 3976, - 3974, - 4341 - ]], - [[ - 3975, - 3977, - 4340 - ]], - [[ - 3976, - 4341, - 3977 - ]], - [[ - 3983, - 3978, - 3971 - ]], - [[ - 4340, - 3977, - 3979 - ]], - [[ - 3974, - 3979, - 4341 - ]], - [[ - 3978, - 4340, - 3979 - ]], - [[ - 4338, - 4078, - 4089 - ]], - [[ - 3962, - 4079, - 4078 - ]], - [[ - 4014, - 4012, - 3981 - ]], - [[ - 4014, - 3965, - 4012 - ]], - [[ - 4008, - 3967, - 3966 - ]], - [[ - 3990, - 3981, - 3967 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b2c1659af-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efe75149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:55:22.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 4342, - 4343, - 4344 - ]], - [[ - 4345, - 4346, - 4342 - ]], - [[ - 4345, - 4342, - 4344 - ]], - [[ - 4344, - 4343, - 4347 - ]], - [[ - 4347, - 4343, - 4348 - ]], - [[ - 4349, - 4350, - 4346 - ]], - [[ - 4346, - 4351, - 4342 - ]], - [[ - 4346, - 4352, - 4351 - ]], - [[ - 4346, - 4353, - 4352 - ]], - [[ - 4346, - 4354, - 4353 - ]], - [[ - 4346, - 4355, - 4354 - ]], - [[ - 4346, - 4350, - 4355 - ]], - [[ - 4349, - 4356, - 4350 - ]], - [[ - 4357, - 4358, - 4359 - ]], - [[ - 4349, - 4360, - 4356 - ]], - [[ - 4361, - 4362, - 4363 - ]], - [[ - 4364, - 4365, - 4360 - ]], - [[ - 4366, - 4367, - 4368 - ]], - [[ - 4369, - 4370, - 4365 - ]], - [[ - 4371, - 4372, - 4373 - ]], - [[ - 4374, - 4375, - 4376 - ]], - [[ - 4376, - 4377, - 4378 - ]], - [[ - 4379, - 4380, - 4362 - ]], - [[ - 4381, - 4382, - 4383 - ]], - [[ - 4384, - 4385, - 4386 - ]], - [[ - 4387, - 4388, - 4389 - ]], - [[ - 4390, - 4391, - 4392 - ]], - [[ - 4393, - 4394, - 4395 - ]], - [[ - 4396, - 4397, - 4398 - ]], - [[ - 4396, - 4399, - 4400 - ]], - [[ - 4401, - 4402, - 4403 - ]], - [[ - 4400, - 4404, - 4370 - ]], - [[ - 4368, - 4405, - 4406 - ]], - [[ - 4399, - 4396, - 4406 - ]], - [[ - 4407, - 4408, - 4382 - ]], - [[ - 4409, - 4410, - 4411 - ]], - [[ - 4412, - 4413, - 4414 - ]], - [[ - 4369, - 4349, - 4413 - ]], - [[ - 4415, - 4416, - 4417 - ]], - [[ - 4367, - 4416, - 4368 - ]], - [[ - 4415, - 4418, - 4414 - ]], - [[ - 4416, - 4349, - 4368 - ]], - [[ - 4419, - 4372, - 4420 - ]], - [[ - 4421, - 4422, - 4423 - ]], - [[ - 4424, - 4372, - 4371 - ]], - [[ - 4425, - 4426, - 4427 - ]], - [[ - 4428, - 4429, - 4430 - ]], - [[ - 4431, - 4426, - 4403 - ]], - [[ - 4432, - 4433, - 4434 - ]], - [[ - 4426, - 4435, - 4427 - ]], - [[ - 4374, - 4436, - 4375 - ]], - [[ - 4436, - 4437, - 4438 - ]], - [[ - 4427, - 4435, - 4439 - ]], - [[ - 4435, - 4426, - 4431 - ]], - [[ - 4414, - 4418, - 4370 - ]], - [[ - 4415, - 4413, - 4416 - ]], - [[ - 4440, - 4401, - 4374 - ]], - [[ - 4437, - 4426, - 4425 - ]], - [[ - 4377, - 4376, - 4375 - ]], - [[ - 4375, - 4436, - 4438 - ]], - [[ - 4397, - 4396, - 4400 - ]], - [[ - 4373, - 4441, - 4442 - ]], - [[ - 4418, - 4443, - 4370 - ]], - [[ - 4398, - 4366, - 4396 - ]], - [[ - 4349, - 4444, - 4445 - ]], - [[ - 4430, - 4411, - 4403 - ]], - [[ - 4438, - 4446, - 4434 - ]], - [[ - 4435, - 4431, - 4439 - ]], - [[ - 4447, - 4448, - 4387 - ]], - [[ - 4449, - 4358, - 4450 - ]], - [[ - 4451, - 4440, - 4374 - ]], - [[ - 4375, - 4438, - 4433 - ]], - [[ - 4433, - 4452, - 4377 - ]], - [[ - 4375, - 4433, - 4377 - ]], - [[ - 4442, - 4371, - 4373 - ]], - [[ - 4420, - 4429, - 4428 - ]], - [[ - 4453, - 4451, - 4376 - ]], - [[ - 4454, - 4455, - 4456 - ]], - [[ - 4428, - 4430, - 4403 - ]], - [[ - 4457, - 4349, - 4458 - ]], - [[ - 4459, - 4460, - 4429 - ]], - [[ - 4461, - 4462, - 4349 - ]], - [[ - 4463, - 4389, - 4388 - ]], - [[ - 4464, - 4465, - 4466 - ]], - [[ - 4368, - 4371, - 4405 - ]], - [[ - 4371, - 4445, - 4424 - ]], - [[ - 4409, - 4460, - 4467 - ]], - [[ - 4468, - 4469, - 4390 - ]], - [[ - 4406, - 4396, - 4366 - ]], - [[ - 4405, - 4371, - 4399 - ]], - [[ - 4374, - 4401, - 4436 - ]], - [[ - 4403, - 4426, - 4437 - ]], - [[ - 4357, - 4447, - 4470 - ]], - [[ - 4471, - 4472, - 4340 - ]], - [[ - 4401, - 4440, - 4402 - ]], - [[ - 4473, - 4474, - 4444 - ]], - [[ - 4372, - 4473, - 4420 - ]], - [[ - 4372, - 4424, - 4473 - ]], - [[ - 4376, - 4451, - 4374 - ]], - [[ - 4402, - 4428, - 4403 - ]], - [[ - 4455, - 4451, - 4453 - ]], - [[ - 4428, - 4454, - 4420 - ]], - [[ - 4404, - 4456, - 4453 - ]], - [[ - 4404, - 4441, - 4475 - ]], - [[ - 4445, - 4444, - 4474 - ]], - [[ - 4349, - 4460, - 4461 - ]], - [[ - 4359, - 4449, - 4388 - ]], - [[ - 4476, - 4477, - 4478 - ]], - [[ - 4479, - 4450, - 4480 - ]], - [[ - 4481, - 4482, - 4463 - ]], - [[ - 4438, - 4425, - 4446 - ]], - [[ - 4438, - 4437, - 4425 - ]], - [[ - 4366, - 4398, - 4367 - ]], - [[ - 4443, - 4418, - 4415 - ]], - [[ - 4483, - 4484, - 4485 - ]], - [[ - 4486, - 4480, - 4358 - ]], - [[ - 4388, - 4387, - 4448 - ]], - [[ - 4389, - 4487, - 4387 - ]], - [[ - 4486, - 4479, - 4480 - ]], - [[ - 4488, - 4489, - 4490 - ]], - [[ - 4491, - 4449, - 4450 - ]], - [[ - 4479, - 4486, - 4492 - ]], - [[ - 4357, - 4486, - 4358 - ]], - [[ - 4493, - 4494, - 4495 - ]], - [[ - 4496, - 4497, - 4498 - ]], - [[ - 4499, - 4500, - 4498 - ]], - [[ - 4417, - 4416, - 4367 - ]], - [[ - 4413, - 4349, - 4416 - ]], - [[ - 4442, - 4441, - 4404 - ]], - [[ - 4373, - 4372, - 4475 - ]], - [[ - 4370, - 4369, - 4414 - ]], - [[ - 4414, - 4369, - 4412 - ]], - [[ - 4501, - 4502, - 4503 - ]], - [[ - 4504, - 4505, - 4506 - ]], - [[ - 4448, - 4359, - 4388 - ]], - [[ - 4480, - 4450, - 4358 - ]], - [[ - 4507, - 4432, - 4434 - ]], - [[ - 4508, - 4509, - 4510 - ]], - [[ - 4463, - 4511, - 4481 - ]], - [[ - 4472, - 3975, - 4340 - ]], - [[ - 4512, - 4340, - 4482 - ]], - [[ - 4513, - 4495, - 4494 - ]], - [[ - 4481, - 4511, - 4449 - ]], - [[ - 4463, - 4388, - 4449 - ]], - [[ - 4491, - 4481, - 4449 - ]], - [[ - 4511, - 4463, - 4449 - ]], - [[ - 4437, - 4401, - 4403 - ]], - [[ - 4437, - 4436, - 4401 - ]], - [[ - 4427, - 4446, - 4425 - ]], - [[ - 4431, - 4403, - 4411 - ]], - [[ - 4479, - 4493, - 4450 - ]], - [[ - 4514, - 4515, - 3975 - ]], - [[ - 4450, - 4493, - 4495 - ]], - [[ - 4516, - 4500, - 4517 - ]], - [[ - 4489, - 4495, - 4513 - ]], - [[ - 4493, - 4479, - 4492 - ]], - [[ - 4368, - 4445, - 4371 - ]], - [[ - 4474, - 4473, - 4424 - ]], - [[ - 4368, - 4406, - 4366 - ]], - [[ - 4405, - 4399, - 4406 - ]], - [[ - 4463, - 4487, - 4389 - ]], - [[ - 4340, - 4477, - 4487 - ]], - [[ - 4512, - 4471, - 4340 - ]], - [[ - 4518, - 4519, - 4471 - ]], - [[ - 4518, - 4512, - 4519 - ]], - [[ - 4482, - 4487, - 4463 - ]], - [[ - 4471, - 4512, - 4518 - ]], - [[ - 4482, - 4481, - 4491 - ]], - [[ - 4442, - 4399, - 4371 - ]], - [[ - 4442, - 4400, - 4399 - ]], - [[ - 4451, - 4402, - 4440 - ]], - [[ - 4451, - 4455, - 4402 - ]], - [[ - 4454, - 4419, - 4420 - ]], - [[ - 4520, - 4462, - 4461 - ]], - [[ - 4424, - 4445, - 4474 - ]], - [[ - 4368, - 4349, - 4445 - ]], - [[ - 4413, - 4415, - 4414 - ]], - [[ - 4417, - 4443, - 4415 - ]], - [[ - 4449, - 4359, - 4358 - ]], - [[ - 4448, - 4447, - 4357 - ]], - [[ - 4446, - 4521, - 4434 - ]], - [[ - 4522, - 4439, - 4431 - ]], - [[ - 4523, - 4524, - 4525 - ]], - [[ - 4526, - 4527, - 4528 - ]], - [[ - 4443, - 4397, - 4370 - ]], - [[ - 4442, - 4404, - 4400 - ]], - [[ - 4370, - 4397, - 4400 - ]], - [[ - 4443, - 4417, - 4397 - ]], - [[ - 4529, - 4530, - 4531 - ]], - [[ - 4496, - 4499, - 4497 - ]], - [[ - 4532, - 4533, - 4534 - ]], - [[ - 4535, - 4536, - 4537 - ]], - [[ - 4538, - 4539, - 4540 - ]], - [[ - 4541, - 4542, - 4543 - ]], - [[ - 4544, - 4545, - 4546 - ]], - [[ - 4547, - 4548, - 4549 - ]], - [[ - 4550, - 4551, - 4552 - ]], - [[ - 4553, - 4554, - 4395 - ]], - [[ - 4555, - 4510, - 4556 - ]], - [[ - 4557, - 4558, - 4559 - ]], - [[ - 4560, - 4550, - 4561 - ]], - [[ - 4408, - 4562, - 4361 - ]], - [[ - 4523, - 4361, - 4363 - ]], - [[ - 4563, - 4548, - 4547 - ]], - [[ - 4509, - 4564, - 4565 - ]], - [[ - 4392, - 4391, - 4566 - ]], - [[ - 4567, - 4509, - 4565 - ]], - [[ - 4411, - 4522, - 4431 - ]], - [[ - 4568, - 4569, - 4570 - ]], - [[ - 4468, - 4392, - 4571 - ]], - [[ - 4363, - 4572, - 4523 - ]], - [[ - 4523, - 4572, - 4524 - ]], - [[ - 4573, - 4574, - 4565 - ]], - [[ - 4575, - 4521, - 4446 - ]], - [[ - 4556, - 4510, - 4567 - ]], - [[ - 4576, - 4577, - 4421 - ]], - [[ - 4510, - 4509, - 4567 - ]], - [[ - 4508, - 4578, - 4577 - ]], - [[ - 4421, - 4423, - 4564 - ]], - [[ - 4579, - 4580, - 4581 - ]], - [[ - 4582, - 4583, - 4584 - ]], - [[ - 4585, - 4586, - 4386 - ]], - [[ - 4531, - 4587, - 4588 - ]], - [[ - 4386, - 4586, - 4589 - ]], - [[ - 4590, - 4591, - 4543 - ]], - [[ - 4534, - 4592, - 4532 - ]], - [[ - 4593, - 4594, - 4595 - ]], - [[ - 4596, - 4589, - 4586 - ]], - [[ - 4564, - 4423, - 4597 - ]], - [[ - 4566, - 4598, - 4362 - ]], - [[ - 4580, - 4423, - 4581 - ]], - [[ - 4599, - 4600, - 4580 - ]], - [[ - 4380, - 4566, - 4362 - ]], - [[ - 4391, - 4601, - 4602 - ]], - [[ - 4574, - 4469, - 4603 - ]], - [[ - 4565, - 4564, - 4597 - ]], - [[ - 4604, - 4597, - 4600 - ]], - [[ - 4521, - 4605, - 4507 - ]], - [[ - 4605, - 4422, - 4507 - ]], - [[ - 4601, - 4606, - 4607 - ]], - [[ - 4429, - 4460, - 4409 - ]], - [[ - 4522, - 4608, - 4439 - ]], - [[ - 4598, - 4609, - 4363 - ]], - [[ - 4610, - 4590, - 4611 - ]], - [[ - 4609, - 4602, - 4612 - ]], - [[ - 4613, - 4614, - 4615 - ]], - [[ - 4525, - 4524, - 4614 - ]], - [[ - 4616, - 4586, - 4585 - ]], - [[ - 4608, - 4617, - 4618 - ]], - [[ - 4363, - 4612, - 4572 - ]], - [[ - 4612, - 4524, - 4572 - ]], - [[ - 4619, - 4620, - 4534 - ]], - [[ - 4541, - 4621, - 4622 - ]], - [[ - 4623, - 4624, - 4625 - ]], - [[ - 4362, - 4598, - 4363 - ]], - [[ - 4626, - 4391, - 4602 - ]], - [[ - 4627, - 4628, - 4623 - ]], - [[ - 4629, - 4630, - 4631 - ]], - [[ - 4632, - 4559, - 4525 - ]], - [[ - 4523, - 4558, - 4361 - ]], - [[ - 4621, - 4594, - 4620 - ]], - [[ - 4536, - 4484, - 4633 - ]], - [[ - 4634, - 4635, - 4636 - ]], - [[ - 4385, - 4585, - 4386 - ]], - [[ - 4637, - 4638, - 4639 - ]], - [[ - 4385, - 4640, - 4641 - ]], - [[ - 4362, - 4562, - 4379 - ]], - [[ - 4642, - 4643, - 4644 - ]], - [[ - 4601, - 4645, - 4606 - ]], - [[ - 4469, - 4574, - 4573 - ]], - [[ - 4377, - 4452, - 4378 - ]], - [[ - 4646, - 4507, - 4422 - ]], - [[ - 4612, - 4614, - 4524 - ]], - [[ - 4584, - 4647, - 4582 - ]], - [[ - 4648, - 4594, - 4591 - ]], - [[ - 4649, - 4650, - 4651 - ]], - [[ - 4652, - 4653, - 4579 - ]], - [[ - 4654, - 4655, - 4606 - ]], - [[ - 4656, - 4384, - 4386 - ]], - [[ - 4628, - 4627, - 4532 - ]], - [[ - 4640, - 4657, - 4588 - ]], - [[ - 4386, - 4589, - 4656 - ]], - [[ - 4658, - 4464, - 4384 - ]], - [[ - 4659, - 4529, - 4660 - ]], - [[ - 4466, - 4661, - 4464 - ]], - [[ - 4637, - 4662, - 4660 - ]], - [[ - 4663, - 4664, - 4656 - ]], - [[ - 4665, - 4657, - 4385 - ]], - [[ - 4648, - 4591, - 4590 - ]], - [[ - 4594, - 4621, - 4591 - ]], - [[ - 4609, - 4612, - 4363 - ]], - [[ - 4648, - 4614, - 4612 - ]], - [[ - 4666, - 4667, - 4668 - ]], - [[ - 4669, - 4648, - 4610 - ]], - [[ - 4670, - 4671, - 4672 - ]], - [[ - 4548, - 4673, - 4549 - ]], - [[ - 4674, - 4675, - 4526 - ]], - [[ - 4676, - 4610, - 4611 - ]], - [[ - 4540, - 4677, - 4678 - ]], - [[ - 4679, - 4680, - 4681 - ]], - [[ - 4682, - 4539, - 4683 - ]], - [[ - 4684, - 4685, - 4686 - ]], - [[ - 4667, - 4526, - 4668 - ]], - [[ - 4528, - 4683, - 4687 - ]], - [[ - 4688, - 4675, - 4674 - ]], - [[ - 4526, - 4528, - 4674 - ]], - [[ - 4561, - 4689, - 4560 - ]], - [[ - 4668, - 4526, - 4689 - ]], - [[ - 4690, - 4560, - 4688 - ]], - [[ - 4688, - 4674, - 4691 - ]], - [[ - 4527, - 4682, - 4683 - ]], - [[ - 4538, - 4634, - 4686 - ]], - [[ - 4686, - 4685, - 4538 - ]], - [[ - 4687, - 4674, - 4528 - ]], - [[ - 4539, - 4538, - 4685 - ]], - [[ - 4635, - 4659, - 4636 - ]], - [[ - 4527, - 4683, - 4528 - ]], - [[ - 4539, - 4685, - 4683 - ]], - [[ - 4529, - 4531, - 4660 - ]], - [[ - 4692, - 4532, - 4531 - ]], - [[ - 4693, - 4694, - 4530 - ]], - [[ - 4624, - 4592, - 4593 - ]], - [[ - 4693, - 4677, - 4694 - ]], - [[ - 4695, - 4611, - 4696 - ]], - [[ - 4538, - 4540, - 4678 - ]], - [[ - 4697, - 4540, - 4539 - ]], - [[ - 4574, - 4556, - 4567 - ]], - [[ - 4698, - 4452, - 4432 - ]], - [[ - 4699, - 4676, - 4611 - ]], - [[ - 4668, - 4689, - 4700 - ]], - [[ - 4701, - 4702, - 4703 - ]], - [[ - 4537, - 4633, - 4663 - ]], - [[ - 4651, - 4704, - 4484 - ]], - [[ - 4705, - 4706, - 4476 - ]], - [[ - 4650, - 4707, - 4708 - ]], - [[ - 4709, - 4499, - 4496 - ]], - [[ - 4704, - 4485, - 4484 - ]], - [[ - 4702, - 4483, - 4485 - ]], - [[ - 4710, - 4711, - 4702 - ]], - [[ - 4663, - 4589, - 4537 - ]], - [[ - 4514, - 4506, - 4505 - ]], - [[ - 4712, - 4713, - 4492 - ]], - [[ - 4657, - 4660, - 4588 - ]], - [[ - 4660, - 4531, - 4588 - ]], - [[ - 4384, - 4665, - 4385 - ]], - [[ - 4588, - 4587, - 4640 - ]], - [[ - 4552, - 4714, - 4382 - ]], - [[ - 4552, - 4715, - 4716 - ]], - [[ - 4656, - 4658, - 4384 - ]], - [[ - 4478, - 4717, - 4476 - ]], - [[ - 4656, - 4664, - 4658 - ]], - [[ - 4710, - 4702, - 4718 - ]], - [[ - 4665, - 4464, - 4661 - ]], - [[ - 4658, - 4664, - 4719 - ]], - [[ - 4720, - 4721, - 4722 - ]], - [[ - 4702, - 4485, - 4703 - ]], - [[ - 4723, - 4503, - 4701 - ]], - [[ - 4724, - 4722, - 4721 - ]], - [[ - 4387, - 4720, - 4447 - ]], - [[ - 4701, - 4703, - 4723 - ]], - [[ - 4357, - 4496, - 4486 - ]], - [[ - 4704, - 4723, - 4703 - ]], - [[ - 4704, - 4725, - 4723 - ]], - [[ - 4726, - 4727, - 4728 - ]], - [[ - 4725, - 4729, - 4726 - ]], - [[ - 4728, - 4730, - 4731 - ]], - [[ - 4516, - 4732, - 4500 - ]], - [[ - 4731, - 4709, - 4733 - ]], - [[ - 4734, - 4735, - 4556 - ]], - [[ - 4644, - 4736, - 4642 - ]], - [[ - 4603, - 4734, - 4556 - ]], - [[ - 4735, - 4644, - 4555 - ]], - [[ - 4556, - 4735, - 4555 - ]], - [[ - 4546, - 4545, - 4736 - ]], - [[ - 4731, - 4737, - 4728 - ]], - [[ - 4627, - 4623, - 4585 - ]], - [[ - 4728, - 4737, - 4726 - ]], - [[ - 4470, - 4709, - 4496 - ]], - [[ - 4707, - 4727, - 4729 - ]], - [[ - 4727, - 4738, - 4739 - ]], - [[ - 4729, - 4708, - 4707 - ]], - [[ - 4596, - 4535, - 4537 - ]], - [[ - 4658, - 4719, - 4465 - ]], - [[ - 4705, - 4710, - 4718 - ]], - [[ - 4740, - 4741, - 4618 - ]], - [[ - 4581, - 4423, - 4422 - ]], - [[ - 4741, - 4575, - 4618 - ]], - [[ - 4521, - 4507, - 4434 - ]], - [[ - 4740, - 4605, - 4741 - ]], - [[ - 4581, - 4422, - 4605 - ]], - [[ - 4740, - 4581, - 4605 - ]], - [[ - 4579, - 4653, - 4599 - ]], - [[ - 4742, - 4634, - 4636 - ]], - [[ - 4538, - 4678, - 4634 - ]], - [[ - 4678, - 4635, - 4634 - ]], - [[ - 4678, - 4693, - 4529 - ]], - [[ - 4510, - 4743, - 4508 - ]], - [[ - 4393, - 4453, - 4378 - ]], - [[ - 4378, - 4698, - 4577 - ]], - [[ - 4432, - 4507, - 4698 - ]], - [[ - 4618, - 4617, - 4744 - ]], - [[ - 4604, - 4654, - 4645 - ]], - [[ - 4745, - 4522, - 4410 - ]], - [[ - 4655, - 4607, - 4606 - ]], - [[ - 4740, - 4579, - 4581 - ]], - [[ - 4740, - 4652, - 4579 - ]], - [[ - 4590, - 4543, - 4542 - ]], - [[ - 4591, - 4621, - 4543 - ]], - [[ - 4635, - 4529, - 4659 - ]], - [[ - 4635, - 4678, - 4529 - ]], - [[ - 4685, - 4684, - 4683 - ]], - [[ - 4691, - 4674, - 4687 - ]], - [[ - 4746, - 4491, - 4450 - ]], - [[ - 4519, - 4512, - 4491 - ]], - [[ - 4618, - 4744, - 4740 - ]], - [[ - 4744, - 4458, - 4652 - ]], - [[ - 4592, - 4534, - 4620 - ]], - [[ - 4694, - 4695, - 4747 - ]], - [[ - 4529, - 4693, - 4530 - ]], - [[ - 4678, - 4677, - 4693 - ]], - [[ - 4434, - 4433, - 4438 - ]], - [[ - 4432, - 4452, - 4433 - ]], - [[ - 4394, - 4577, - 4578 - ]], - [[ - 4646, - 4422, - 4421 - ]], - [[ - 4689, - 4675, - 4560 - ]], - [[ - 4689, - 4526, - 4675 - ]], - [[ - 4655, - 4599, - 4653 - ]], - [[ - 4580, - 4597, - 4423 - ]], - [[ - 4748, - 4749, - 4631 - ]], - [[ - 4750, - 4751, - 4707 - ]], - [[ - 4623, - 4625, - 4752 - ]], - [[ - 4536, - 4753, - 4649 - ]], - [[ - 4641, - 4627, - 4585 - ]], - [[ - 4592, - 4620, - 4593 - ]], - [[ - 4743, - 4644, - 4554 - ]], - [[ - 4570, - 4545, - 4754 - ]], - [[ - 4735, - 4736, - 4644 - ]], - [[ - 4735, - 4734, - 4546 - ]], - [[ - 4545, - 4755, - 4736 - ]], - [[ - 4756, - 4757, - 4643 - ]], - [[ - 4756, - 4755, - 4545 - ]], - [[ - 4642, - 4736, - 4755 - ]], - [[ - 4570, - 4756, - 4545 - ]], - [[ - 4642, - 4755, - 4756 - ]], - [[ - 4735, - 4546, - 4736 - ]], - [[ - 4571, - 4380, - 4544 - ]], - [[ - 4599, - 4654, - 4600 - ]], - [[ - 4604, - 4573, - 4597 - ]], - [[ - 4599, - 4655, - 4654 - ]], - [[ - 4573, - 4565, - 4597 - ]], - [[ - 4503, - 4724, - 4701 - ]], - [[ - 4758, - 4487, - 4477 - ]], - [[ - 4759, - 4720, - 4722 - ]], - [[ - 4760, - 4487, - 4758 - ]], - [[ - 4701, - 4718, - 4702 - ]], - [[ - 4701, - 4724, - 4718 - ]], - [[ - 4720, - 4759, - 4447 - ]], - [[ - 4733, - 4737, - 4731 - ]], - [[ - 4739, - 4761, - 4730 - ]], - [[ - 4762, - 4515, - 4732 - ]], - [[ - 4542, - 4696, - 4611 - ]], - [[ - 4694, - 4677, - 4695 - ]], - [[ - 4763, - 4764, - 4765 - ]], - [[ - 4766, - 4712, - 4492 - ]], - [[ - 4517, - 4730, - 4516 - ]], - [[ - 4761, - 4762, - 4732 - ]], - [[ - 4662, - 4639, - 4767 - ]], - [[ - 4768, - 4742, - 4636 - ]], - [[ - 4470, - 4733, - 4709 - ]], - [[ - 4731, - 4517, - 4709 - ]], - [[ - 4749, - 4750, - 4650 - ]], - [[ - 4650, - 4750, - 4707 - ]], - [[ - 4456, - 4419, - 4454 - ]], - [[ - 4475, - 4372, - 4419 - ]], - [[ - 4402, - 4454, - 4428 - ]], - [[ - 4402, - 4455, - 4454 - ]], - [[ - 4483, - 4633, - 4484 - ]], - [[ - 4483, - 4711, - 4769 - ]], - [[ - 4658, - 4465, - 4464 - ]], - [[ - 4466, - 4465, - 4478 - ]], - [[ - 4770, - 4407, - 4714 - ]], - [[ - 4568, - 4570, - 4754 - ]], - [[ - 4771, - 4700, - 4563 - ]], - [[ - 4557, - 4383, - 4558 - ]], - [[ - 4679, - 4551, - 4772 - ]], - [[ - 4552, - 4382, - 4381 - ]], - [[ - 4715, - 4551, - 4679 - ]], - [[ - 4772, - 4550, - 4773 - ]], - [[ - 4694, - 4533, - 4530 - ]], - [[ - 4694, - 4747, - 4533 - ]], - [[ - 4530, - 4692, - 4531 - ]], - [[ - 4530, - 4533, - 4692 - ]], - [[ - 4531, - 4532, - 4587 - ]], - [[ - 4692, - 4533, - 4532 - ]], - [[ - 4690, - 4688, - 4691 - ]], - [[ - 4560, - 4675, - 4688 - ]], - [[ - 4549, - 4673, - 4583 - ]], - [[ - 4548, - 4559, - 4632 - ]], - [[ - 4774, - 4775, - 4472 - ]], - [[ - 4519, - 4746, - 4488 - ]], - [[ - 4556, - 4574, - 4603 - ]], - [[ - 4567, - 4565, - 4574 - ]], - [[ - 4652, - 4458, - 4653 - ]], - [[ - 4653, - 4458, - 4655 - ]], - [[ - 4770, - 4568, - 4754 - ]], - [[ - 4714, - 4552, - 4716 - ]], - [[ - 4776, - 4647, - 4669 - ]], - [[ - 4583, - 4673, - 4615 - ]], - [[ - 4719, - 4717, - 4465 - ]], - [[ - 4719, - 4664, - 4777 - ]], - [[ - 4719, - 4777, - 4778 - ]], - [[ - 4769, - 4663, - 4633 - ]], - [[ - 4385, - 4657, - 4640 - ]], - [[ - 4661, - 4779, - 4639 - ]], - [[ - 4575, - 4608, - 4618 - ]], - [[ - 4575, - 4427, - 4608 - ]], - [[ - 4716, - 4715, - 4681 - ]], - [[ - 4552, - 4551, - 4715 - ]], - [[ - 4569, - 4716, - 4681 - ]], - [[ - 4568, - 4714, - 4716 - ]], - [[ - 4478, - 4779, - 4466 - ]], - [[ - 4660, - 4662, - 4659 - ]], - [[ - 4768, - 4639, - 4779 - ]], - [[ - 4662, - 4636, - 4659 - ]], - [[ - 4657, - 4637, - 4660 - ]], - [[ - 4638, - 4661, - 4639 - ]], - [[ - 4661, - 4466, - 4779 - ]], - [[ - 4465, - 4717, - 4478 - ]], - [[ - 4381, - 4383, - 4780 - ]], - [[ - 4408, - 4361, - 4558 - ]], - [[ - 4563, - 4557, - 4548 - ]], - [[ - 4383, - 4408, - 4558 - ]], - [[ - 4781, - 4557, - 4563 - ]], - [[ - 4780, - 4383, - 4557 - ]], - [[ - 4768, - 4478, - 4477 - ]], - [[ - 4768, - 4779, - 4478 - ]], - [[ - 4629, - 4631, - 4535 - ]], - [[ - 4749, - 4650, - 4649 - ]], - [[ - 4680, - 4686, - 4742 - ]], - [[ - 4782, - 4691, - 4687 - ]], - [[ - 4676, - 4671, - 4776 - ]], - [[ - 4783, - 4549, - 4582 - ]], - [[ - 4468, - 4390, - 4392 - ]], - [[ - 4469, - 4645, - 4601 - ]], - [[ - 4762, - 4648, - 4458 - ]], - [[ - 4762, - 4594, - 4648 - ]], - [[ - 4607, - 4602, - 4601 - ]], - [[ - 4648, - 4612, - 4602 - ]], - [[ - 4762, - 4458, - 4349 - ]], - [[ - 4648, - 4602, - 4458 - ]], - [[ - 4740, - 4744, - 4652 - ]], - [[ - 4617, - 4458, - 4744 - ]], - [[ - 4617, - 4522, - 4745 - ]], - [[ - 4460, - 4349, - 4467 - ]], - [[ - 4385, - 4641, - 4585 - ]], - [[ - 4640, - 4587, - 4641 - ]], - [[ - 4491, - 4746, - 4519 - ]], - [[ - 4450, - 4495, - 4746 - ]], - [[ - 4508, - 4553, - 4578 - ]], - [[ - 4554, - 4453, - 4393 - ]], - [[ - 4444, - 4462, - 4473 - ]], - [[ - 4444, - 4349, - 4462 - ]], - [[ - 4420, - 4459, - 4429 - ]], - [[ - 4520, - 4473, - 4462 - ]], - [[ - 4420, - 4520, - 4459 - ]], - [[ - 4420, - 4473, - 4520 - ]], - [[ - 4515, - 4784, - 4732 - ]], - [[ - 4498, - 4497, - 4499 - ]], - [[ - 4492, - 4498, - 4766 - ]], - [[ - 4486, - 4496, - 4498 - ]], - [[ - 4698, - 4646, - 4577 - ]], - [[ - 4698, - 4507, - 4646 - ]], - [[ - 4464, - 4665, - 4384 - ]], - [[ - 4661, - 4638, - 4665 - ]], - [[ - 4472, - 4785, - 4786 - ]], - [[ - 4787, - 4774, - 4488 - ]], - [[ - 4788, - 4774, - 4787 - ]], - [[ - 4746, - 4495, - 4489 - ]], - [[ - 4620, - 4622, - 4621 - ]], - [[ - 4696, - 4542, - 4541 - ]], - [[ - 4490, - 4489, - 4506 - ]], - [[ - 4488, - 4746, - 4489 - ]], - [[ - 4789, - 4490, - 4506 - ]], - [[ - 4789, - 4787, - 4490 - ]], - [[ - 4781, - 4700, - 4561 - ]], - [[ - 4563, - 4547, - 4771 - ]], - [[ - 4666, - 4771, - 4547 - ]], - [[ - 4668, - 4700, - 4771 - ]], - [[ - 4608, - 4427, - 4439 - ]], - [[ - 4575, - 4446, - 4427 - ]], - [[ - 4456, - 4475, - 4419 - ]], - [[ - 4441, - 4373, - 4475 - ]], - [[ - 4768, - 4767, - 4639 - ]], - [[ - 4768, - 4636, - 4767 - ]], - [[ - 4724, - 4721, - 4790 - ]], - [[ - 4720, - 4387, - 4760 - ]], - [[ - 4645, - 4573, - 4604 - ]], - [[ - 4645, - 4469, - 4573 - ]], - [[ - 4722, - 4502, - 4759 - ]], - [[ - 4503, - 4723, - 4501 - ]], - [[ - 4748, - 4631, - 4630 - ]], - [[ - 4749, - 4753, - 4631 - ]], - [[ - 4506, - 4713, - 4504 - ]], - [[ - 4492, - 4494, - 4493 - ]], - [[ - 4468, - 4734, - 4603 - ]], - [[ - 4571, - 4546, - 4734 - ]], - [[ - 4615, - 4584, - 4583 - ]], - [[ - 4648, - 4669, - 4584 - ]], - [[ - 4376, - 4378, - 4453 - ]], - [[ - 4452, - 4698, - 4378 - ]], - [[ - 4394, - 4393, - 4378 - ]], - [[ - 4395, - 4554, - 4393 - ]], - [[ - 4791, - 4504, - 4712 - ]], - [[ - 4513, - 4494, - 4713 - ]], - [[ - 4390, - 4601, - 4391 - ]], - [[ - 4390, - 4469, - 4601 - ]], - [[ - 4684, - 4782, - 4687 - ]], - [[ - 4680, - 4690, - 4691 - ]], - [[ - 4765, - 4789, - 4506 - ]], - [[ - 4788, - 4775, - 4774 - ]], - [[ - 4514, - 4763, - 4765 - ]], - [[ - 4764, - 4785, - 4788 - ]], - [[ - 4786, - 4792, - 4763 - ]], - [[ - 4786, - 4785, - 4792 - ]], - [[ - 4509, - 4576, - 4564 - ]], - [[ - 4577, - 4646, - 4421 - ]], - [[ - 4561, - 4550, - 4780 - ]], - [[ - 4560, - 4773, - 4550 - ]], - [[ - 4550, - 4381, - 4780 - ]], - [[ - 4550, - 4552, - 4381 - ]], - [[ - 4519, - 4774, - 4471 - ]], - [[ - 4519, - 4488, - 4774 - ]], - [[ - 4599, - 4580, - 4579 - ]], - [[ - 4600, - 4597, - 4580 - ]], - [[ - 4514, - 4765, - 4506 - ]], - [[ - 4763, - 4792, - 4764 - ]], - [[ - 4726, - 4501, - 4725 - ]], - [[ - 4737, - 4502, - 4501 - ]], - [[ - 4723, - 4725, - 4501 - ]], - [[ - 4708, - 4729, - 4725 - ]], - [[ - 4727, - 4726, - 4729 - ]], - [[ - 4737, - 4501, - 4726 - ]], - [[ - 4502, - 4733, - 4759 - ]], - [[ - 4502, - 4737, - 4733 - ]], - [[ - 4382, - 4408, - 4383 - ]], - [[ - 4382, - 4714, - 4407 - ]], - [[ - 4747, - 4619, - 4533 - ]], - [[ - 4619, - 4622, - 4620 - ]], - [[ - 4776, - 4669, - 4610 - ]], - [[ - 4647, - 4584, - 4669 - ]], - [[ - 4484, - 4536, - 4651 - ]], - [[ - 4753, - 4749, - 4649 - ]], - [[ - 4554, - 4643, - 4681 - ]], - [[ - 4643, - 4642, - 4756 - ]], - [[ - 4716, - 4569, - 4568 - ]], - [[ - 4757, - 4756, - 4570 - ]], - [[ - 4506, - 4513, - 4713 - ]], - [[ - 4506, - 4489, - 4513 - ]], - [[ - 4757, - 4569, - 4681 - ]], - [[ - 4757, - 4570, - 4569 - ]], - [[ - 4762, - 4748, - 4594 - ]], - [[ - 4750, - 4749, - 4748 - ]], - [[ - 4762, - 4738, - 4748 - ]], - [[ - 4751, - 4727, - 4707 - ]], - [[ - 4759, - 4470, - 4447 - ]], - [[ - 4759, - 4733, - 4470 - ]], - [[ - 4448, - 4357, - 4359 - ]], - [[ - 4470, - 4496, - 4357 - ]], - [[ - 4793, - 4705, - 4476 - ]], - [[ - 4790, - 4721, - 4758 - ]], - [[ - 4718, - 4706, - 4705 - ]], - [[ - 4721, - 4720, - 4760 - ]], - [[ - 4616, - 4629, - 4596 - ]], - [[ - 4631, - 4753, - 4535 - ]], - [[ - 4636, - 4662, - 4767 - ]], - [[ - 4637, - 4639, - 4662 - ]], - [[ - 4576, - 4508, - 4577 - ]], - [[ - 4510, - 4555, - 4743 - ]], - [[ - 4673, - 4613, - 4615 - ]], - [[ - 4525, - 4614, - 4613 - ]], - [[ - 4763, - 4514, - 3975 - ]], - [[ - 4515, - 4762, - 3975 - ]], - [[ - 4621, - 4541, - 4543 - ]], - [[ - 4622, - 4696, - 4541 - ]], - [[ - 4577, - 4394, - 4378 - ]], - [[ - 4578, - 4395, - 4394 - ]], - [[ - 4794, - 4758, - 4477 - ]], - [[ - 4706, - 4790, - 4758 - ]], - [[ - 4721, - 4760, - 4758 - ]], - [[ - 4387, - 4487, - 4760 - ]], - [[ - 4722, - 4503, - 4502 - ]], - [[ - 4722, - 4724, - 4503 - ]], - [[ - 4719, - 4778, - 4717 - ]], - [[ - 4711, - 4483, - 4702 - ]], - [[ - 4613, - 4632, - 4525 - ]], - [[ - 4548, - 4557, - 4559 - ]], - [[ - 4673, - 4632, - 4613 - ]], - [[ - 4673, - 4548, - 4632 - ]], - [[ - 4667, - 4672, - 4527 - ]], - [[ - 4540, - 4697, - 4677 - ]], - [[ - 4526, - 4667, - 4527 - ]], - [[ - 4666, - 4547, - 4783 - ]], - [[ - 4533, - 4619, - 4534 - ]], - [[ - 4747, - 4622, - 4619 - ]], - [[ - 4566, - 4626, - 4598 - ]], - [[ - 4566, - 4391, - 4626 - ]], - [[ - 4453, - 4456, - 4455 - ]], - [[ - 4404, - 4475, - 4456 - ]], - [[ - 4512, - 4482, - 4491 - ]], - [[ - 4340, - 4487, - 4482 - ]], - [[ - 4680, - 4742, - 4768 - ]], - [[ - 4686, - 4634, - 4742 - ]], - [[ - 4747, - 4696, - 4622 - ]], - [[ - 4747, - 4695, - 4696 - ]], - [[ - 4793, - 4476, - 4717 - ]], - [[ - 4706, - 4794, - 4476 - ]], - [[ - 4611, - 4590, - 4542 - ]], - [[ - 4610, - 4648, - 4590 - ]], - [[ - 4784, - 4515, - 4791 - ]], - [[ - 4712, - 4784, - 4791 - ]], - [[ - 4568, - 4770, - 4714 - ]], - [[ - 4380, - 4571, - 4392 - ]], - [[ - 4417, - 4398, - 4397 - ]], - [[ - 4417, - 4367, - 4398 - ]], - [[ - 4505, - 4515, - 4514 - ]], - [[ - 4505, - 4791, - 4515 - ]], - [[ - 4766, - 4784, - 4712 - ]], - [[ - 4766, - 4498, - 4500 - ]], - [[ - 4583, - 4582, - 4549 - ]], - [[ - 4647, - 4776, - 4582 - ]], - [[ - 4498, - 4492, - 4486 - ]], - [[ - 4713, - 4494, - 4492 - ]], - [[ - 3975, - 4786, - 4763 - ]], - [[ - 3975, - 4472, - 4786 - ]], - [[ - 4695, - 4697, - 4699 - ]], - [[ - 4682, - 4527, - 4672 - ]], - [[ - 4670, - 4672, - 4667 - ]], - [[ - 4795, - 4682, - 4672 - ]], - [[ - 4704, - 4708, - 4725 - ]], - [[ - 4651, - 4650, - 4708 - ]], - [[ - 4784, - 4500, - 4732 - ]], - [[ - 4784, - 4766, - 4500 - ]], - [[ - 4748, - 4595, - 4594 - ]], - [[ - 4625, - 4630, - 4752 - ]], - [[ - 4748, - 4625, - 4595 - ]], - [[ - 4748, - 4630, - 4625 - ]], - [[ - 4727, - 4739, - 4728 - ]], - [[ - 4761, - 4732, - 4516 - ]], - [[ - 4499, - 4517, - 4500 - ]], - [[ - 4730, - 4761, - 4516 - ]], - [[ - 4709, - 4517, - 4499 - ]], - [[ - 4731, - 4730, - 4517 - ]], - [[ - 4683, - 4684, - 4687 - ]], - [[ - 4782, - 4680, - 4691 - ]], - [[ - 4686, - 4782, - 4684 - ]], - [[ - 4686, - 4680, - 4782 - ]], - [[ - 4361, - 4562, - 4362 - ]], - [[ - 4408, - 4407, - 4562 - ]], - [[ - 4778, - 4793, - 4717 - ]], - [[ - 4778, - 4710, - 4793 - ]], - [[ - 4715, - 4679, - 4681 - ]], - [[ - 4773, - 4680, - 4679 - ]], - [[ - 4379, - 4796, - 4380 - ]], - [[ - 4754, - 4545, - 4544 - ]], - [[ - 4571, - 4544, - 4546 - ]], - [[ - 4796, - 4754, - 4544 - ]], - [[ - 4549, - 4783, - 4547 - ]], - [[ - 4783, - 4776, - 4671 - ]], - [[ - 4667, - 4666, - 4670 - ]], - [[ - 4668, - 4771, - 4666 - ]], - [[ - 4793, - 4710, - 4705 - ]], - [[ - 4778, - 4777, - 4711 - ]], - [[ - 4778, - 4711, - 4710 - ]], - [[ - 4777, - 4664, - 4769 - ]], - [[ - 4682, - 4697, - 4539 - ]], - [[ - 4682, - 4795, - 4697 - ]], - [[ - 4490, - 4787, - 4488 - ]], - [[ - 4788, - 4785, - 4775 - ]], - [[ - 4789, - 4788, - 4787 - ]], - [[ - 4789, - 4764, - 4788 - ]], - [[ - 4679, - 4772, - 4773 - ]], - [[ - 4551, - 4550, - 4772 - ]], - [[ - 4485, - 4704, - 4703 - ]], - [[ - 4651, - 4708, - 4704 - ]], - [[ - 4559, - 4523, - 4525 - ]], - [[ - 4559, - 4558, - 4523 - ]], - [[ - 4738, - 4751, - 4750 - ]], - [[ - 4738, - 4761, - 4739 - ]], - [[ - 4753, - 4536, - 4535 - ]], - [[ - 4649, - 4651, - 4536 - ]], - [[ - 4645, - 4654, - 4606 - ]], - [[ - 4604, - 4600, - 4654 - ]], - [[ - 4564, - 4576, - 4421 - ]], - [[ - 4509, - 4508, - 4576 - ]], - [[ - 4566, - 4380, - 4392 - ]], - [[ - 4796, - 4544, - 4380 - ]], - [[ - 4508, - 4743, - 4553 - ]], - [[ - 4555, - 4644, - 4743 - ]], - [[ - 4578, - 4553, - 4395 - ]], - [[ - 4743, - 4554, - 4553 - ]], - [[ - 4699, - 4697, - 4795 - ]], - [[ - 4695, - 4677, - 4697 - ]], - [[ - 4734, - 4468, - 4571 - ]], - [[ - 4603, - 4469, - 4468 - ]], - [[ - 4728, - 4739, - 4730 - ]], - [[ - 4727, - 4751, - 4738 - ]], - [[ - 4648, - 4615, - 4614 - ]], - [[ - 4648, - 4584, - 4615 - ]], - [[ - 4672, - 4671, - 4795 - ]], - [[ - 4670, - 4783, - 4671 - ]], - [[ - 4781, - 4561, - 4780 - ]], - [[ - 4700, - 4689, - 4561 - ]], - [[ - 4774, - 4472, - 4471 - ]], - [[ - 4775, - 4785, - 4472 - ]], - [[ - 4349, - 4369, - 4360 - ]], - [[ - 4413, - 4412, - 4369 - ]], - [[ - 4718, - 4790, - 4706 - ]], - [[ - 4718, - 4724, - 4790 - ]], - [[ - 4741, - 4521, - 4575 - ]], - [[ - 4741, - 4605, - 4521 - ]], - [[ - 4557, - 4781, - 4780 - ]], - [[ - 4563, - 4700, - 4781 - ]], - [[ - 4586, - 4616, - 4596 - ]], - [[ - 4752, - 4630, - 4616 - ]], - [[ - 4596, - 4629, - 4535 - ]], - [[ - 4616, - 4630, - 4629 - ]], - [[ - 4712, - 4504, - 4713 - ]], - [[ - 4791, - 4505, - 4504 - ]], - [[ - 4624, - 4628, - 4592 - ]], - [[ - 4532, - 4592, - 4628 - ]], - [[ - 4587, - 4627, - 4641 - ]], - [[ - 4587, - 4532, - 4627 - ]], - [[ - 4616, - 4623, - 4752 - ]], - [[ - 4616, - 4585, - 4623 - ]], - [[ - 4626, - 4609, - 4598 - ]], - [[ - 4626, - 4602, - 4609 - ]], - [[ - 4409, - 4457, - 4410 - ]], - [[ - 4617, - 4608, - 4522 - ]], - [[ - 4797, - 4745, - 4457 - ]], - [[ - 4409, - 4411, - 4430 - ]], - [[ - 4773, - 4690, - 4680 - ]], - [[ - 4773, - 4560, - 4690 - ]], - [[ - 4695, - 4699, - 4611 - ]], - [[ - 4795, - 4671, - 4676 - ]], - [[ - 4797, - 4457, - 4458 - ]], - [[ - 4467, - 4349, - 4457 - ]], - [[ - 4476, - 4794, - 4477 - ]], - [[ - 4706, - 4758, - 4794 - ]], - [[ - 4748, - 4738, - 4750 - ]], - [[ - 4762, - 4761, - 4738 - ]], - [[ - 4407, - 4379, - 4562 - ]], - [[ - 4407, - 4770, - 4379 - ]], - [[ - 4458, - 4607, - 4655 - ]], - [[ - 4458, - 4602, - 4607 - ]], - [[ - 4369, - 4364, - 4360 - ]], - [[ - 4369, - 4365, - 4364 - ]], - [[ - 4596, - 4537, - 4589 - ]], - [[ - 4536, - 4633, - 4537 - ]], - [[ - 4625, - 4624, - 4595 - ]], - [[ - 4623, - 4628, - 4624 - ]], - [[ - 4745, - 4410, - 4457 - ]], - [[ - 4522, - 4411, - 4410 - ]], - [[ - 4429, - 4409, - 4430 - ]], - [[ - 4467, - 4457, - 4409 - ]], - [[ - 4459, - 4461, - 4460 - ]], - [[ - 4459, - 4520, - 4461 - ]], - [[ - 4681, - 4643, - 4757 - ]], - [[ - 4554, - 4644, - 4643 - ]], - [[ - 4624, - 4593, - 4595 - ]], - [[ - 4620, - 4594, - 4593 - ]], - [[ - 4617, - 4797, - 4458 - ]], - [[ - 4617, - 4745, - 4797 - ]], - [[ - 4610, - 4676, - 4776 - ]], - [[ - 4699, - 4795, - 4676 - ]], - [[ - 4483, - 4769, - 4633 - ]], - [[ - 4656, - 4589, - 4663 - ]], - [[ - 4777, - 4769, - 4711 - ]], - [[ - 4664, - 4663, - 4769 - ]], - [[ - 4657, - 4638, - 4637 - ]], - [[ - 4657, - 4665, - 4638 - ]], - [[ - 4765, - 4764, - 4789 - ]], - [[ - 4792, - 4785, - 4764 - ]], - [[ - 4776, - 4783, - 4582 - ]], - [[ - 4670, - 4666, - 4783 - ]], - [[ - 4796, - 4770, - 4754 - ]], - [[ - 4796, - 4379, - 4770 - ]], - [[ - 4798, - 4345, - 4344 - ]], - [[ - 4347, - 4798, - 4344 - ]], - [[ - 4799, - 4347, - 4348 - ]], - [[ - 4800, - 4365, - 4370 - ]], - [[ - 4404, - 4800, - 4370 - ]], - [[ - 4801, - 4453, - 4554 - ]], - [[ - 4681, - 4801, - 4554 - ]], - [[ - 4802, - 4681, - 4680 - ]], - [[ - 4768, - 4802, - 4680 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b2c16cf36-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efebf149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:55:22.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 4803, - 4804, - 4805 - ]], - [[ - 4806, - 4807, - 4808 - ]], - [[ - 4809, - 4810, - 4811 - ]], - [[ - 4812, - 4813, - 4810 - ]], - [[ - 4810, - 4814, - 4815 - ]], - [[ - 4816, - 4817, - 4814 - ]], - [[ - 4818, - 4819, - 4816 - ]], - [[ - 4820, - 4821, - 4818 - ]], - [[ - 4822, - 4823, - 4824 - ]], - [[ - 4825, - 4826, - 4820 - ]], - [[ - 4827, - 4828, - 4829 - ]], - [[ - 4830, - 4831, - 4832 - ]], - [[ - 4828, - 4833, - 4834 - ]], - [[ - 4831, - 4835, - 4836 - ]], - [[ - 4837, - 4831, - 4838 - ]], - [[ - 4836, - 4825, - 4831 - ]], - [[ - 4839, - 4840, - 4841 - ]], - [[ - 4839, - 4842, - 4840 - ]], - [[ - 4839, - 4843, - 4842 - ]], - [[ - 4844, - 4845, - 4839 - ]], - [[ - 4846, - 4847, - 4848 - ]], - [[ - 4839, - 4849, - 4844 - ]], - [[ - 4850, - 4849, - 4839 - ]], - [[ - 4851, - 4852, - 4849 - ]], - [[ - 4853, - 4854, - 4850 - ]], - [[ - 4855, - 4853, - 4850 - ]], - [[ - 4848, - 4855, - 4850 - ]], - [[ - 4848, - 4856, - 4855 - ]], - [[ - 4857, - 4858, - 4848 - ]], - [[ - 4846, - 4859, - 4860 - ]], - [[ - 4861, - 4862, - 4848 - ]], - [[ - 4863, - 4846, - 4860 - ]], - [[ - 4864, - 4865, - 4847 - ]], - [[ - 4866, - 4864, - 4847 - ]], - [[ - 4848, - 4867, - 4846 - ]], - [[ - 4868, - 4869, - 4866 - ]], - [[ - 4870, - 4871, - 4868 - ]], - [[ - 4872, - 4870, - 4868 - ]], - [[ - 4872, - 4873, - 4870 - ]], - [[ - 4874, - 4875, - 4872 - ]], - [[ - 4874, - 4876, - 4875 - ]], - [[ - 4877, - 4878, - 4879 - ]], - [[ - 4879, - 4878, - 4880 - ]], - [[ - 4880, - 4878, - 4881 - ]], - [[ - 4882, - 4880, - 4881 - ]], - [[ - 4866, - 4883, - 4864 - ]], - [[ - 4884, - 4885, - 4886 - ]], - [[ - 4887, - 4888, - 4889 - ]], - [[ - 4890, - 4891, - 4892 - ]], - [[ - 4893, - 4894, - 4895 - ]], - [[ - 4896, - 4885, - 4884 - ]], - [[ - 4884, - 4897, - 4898 - ]], - [[ - 4899, - 4900, - 4901 - ]], - [[ - 4902, - 4903, - 4904 - ]], - [[ - 4905, - 4906, - 4907 - ]], - [[ - 4908, - 4909, - 4910 - ]], - [[ - 4911, - 4912, - 4904 - ]], - [[ - 4907, - 4913, - 4914 - ]], - [[ - 4908, - 4915, - 4916 - ]], - [[ - 4917, - 4918, - 4919 - ]], - [[ - 4920, - 4921, - 4922 - ]], - [[ - 4923, - 4924, - 4919 - ]], - [[ - 4913, - 4903, - 4902 - ]], - [[ - 4925, - 4890, - 4926 - ]], - [[ - 4927, - 4928, - 4889 - ]], - [[ - 4902, - 4929, - 4913 - ]], - [[ - 4930, - 4931, - 4932 - ]], - [[ - 4933, - 4934, - 4935 - ]], - [[ - 4936, - 4937, - 4938 - ]], - [[ - 4923, - 4919, - 4939 - ]], - [[ - 4940, - 4941, - 4942 - ]], - [[ - 4936, - 4943, - 4937 - ]], - [[ - 4878, - 4944, - 4945 - ]], - [[ - 4946, - 4947, - 4941 - ]], - [[ - 4948, - 4949, - 4881 - ]], - [[ - 4950, - 4874, - 4878 - ]], - [[ - 4881, - 4945, - 4948 - ]], - [[ - 4944, - 4874, - 4872 - ]], - [[ - 4868, - 4951, - 4872 - ]], - [[ - 4952, - 4944, - 4951 - ]], - [[ - 4953, - 4951, - 4954 - ]], - [[ - 4868, - 4871, - 4869 - ]], - [[ - 4846, - 4863, - 4847 - ]], - [[ - 4862, - 4857, - 4848 - ]], - [[ - 4847, - 4861, - 4848 - ]], - [[ - 4955, - 4956, - 4957 - ]], - [[ - 4958, - 4959, - 4841 - ]], - [[ - 4960, - 4961, - 4962 - ]], - [[ - 4963, - 4964, - 4965 - ]], - [[ - 4966, - 4967, - 4968 - ]], - [[ - 4820, - 4969, - 4827 - ]], - [[ - 4970, - 4971, - 4972 - ]], - [[ - 4973, - 4974, - 4975 - ]], - [[ - 4820, - 4976, - 4821 - ]], - [[ - 4977, - 4837, - 4978 - ]], - [[ - 4979, - 4980, - 4981 - ]], - [[ - 4982, - 4983, - 4984 - ]], - [[ - 4985, - 4986, - 4827 - ]], - [[ - 4987, - 4988, - 4989 - ]], - [[ - 4990, - 4991, - 4830 - ]], - [[ - 4992, - 4838, - 4833 - ]], - [[ - 4993, - 4994, - 4995 - ]], - [[ - 4994, - 4996, - 4997 - ]], - [[ - 4998, - 4999, - 5000 - ]], - [[ - 4836, - 5001, - 4825 - ]], - [[ - 4824, - 5002, - 5003 - ]], - [[ - 4822, - 4824, - 5003 - ]], - [[ - 5004, - 4979, - 5005 - ]], - [[ - 5005, - 5006, - 5004 - ]], - [[ - 5007, - 5008, - 4972 - ]], - [[ - 4969, - 5009, - 4827 - ]], - [[ - 5010, - 5011, - 5012 - ]], - [[ - 5013, - 5014, - 4980 - ]], - [[ - 5005, - 5015, - 5006 - ]], - [[ - 4824, - 5016, - 5017 - ]], - [[ - 5018, - 5019, - 5020 - ]], - [[ - 5021, - 5022, - 5023 - ]], - [[ - 5024, - 5025, - 5026 - ]], - [[ - 4831, - 4830, - 4835 - ]], - [[ - 5027, - 5010, - 5028 - ]], - [[ - 5029, - 5030, - 5031 - ]], - [[ - 4830, - 5032, - 5033 - ]], - [[ - 4838, - 4978, - 4837 - ]], - [[ - 5034, - 5016, - 4824 - ]], - [[ - 5035, - 5016, - 5034 - ]], - [[ - 5036, - 5037, - 5029 - ]], - [[ - 5038, - 4978, - 5039 - ]], - [[ - 5000, - 4972, - 5030 - ]], - [[ - 5040, - 4983, - 4989 - ]], - [[ - 5041, - 4837, - 4977 - ]], - [[ - 5030, - 5037, - 4998 - ]], - [[ - 4998, - 5000, - 5030 - ]], - [[ - 5042, - 4984, - 5031 - ]], - [[ - 5038, - 5041, - 4977 - ]], - [[ - 4984, - 4983, - 5029 - ]], - [[ - 4988, - 4957, - 4990 - ]], - [[ - 5043, - 5044, - 5045 - ]], - [[ - 5046, - 5008, - 5026 - ]], - [[ - 5047, - 5048, - 5049 - ]], - [[ - 5050, - 5051, - 5052 - ]], - [[ - 4999, - 5053, - 5054 - ]], - [[ - 5055, - 5035, - 5056 - ]], - [[ - 4823, - 5034, - 4824 - ]], - [[ - 5054, - 5053, - 5035 - ]], - [[ - 5015, - 5057, - 5058 - ]], - [[ - 5046, - 5059, - 5008 - ]], - [[ - 5041, - 4832, - 4837 - ]], - [[ - 4830, - 4991, - 5060 - ]], - [[ - 5061, - 5008, - 5007 - ]], - [[ - 5006, - 5062, - 5063 - ]], - [[ - 4823, - 4822, - 5000 - ]], - [[ - 4972, - 5008, - 5030 - ]], - [[ - 4970, - 4822, - 5064 - ]], - [[ - 5065, - 5048, - 5019 - ]], - [[ - 5066, - 4822, - 5003 - ]], - [[ - 4970, - 5000, - 4822 - ]], - [[ - 5067, - 5068, - 4983 - ]], - [[ - 4998, - 5037, - 5068 - ]], - [[ - 5069, - 5070, - 5071 - ]], - [[ - 5052, - 5072, - 4804 - ]], - [[ - 5073, - 5074, - 5075 - ]], - [[ - 5076, - 5077, - 5078 - ]], - [[ - 5052, - 5051, - 5072 - ]], - [[ - 5079, - 5080, - 5081 - ]], - [[ - 5082, - 5083, - 5072 - ]], - [[ - 5084, - 5069, - 5077 - ]], - [[ - 5049, - 4994, - 5047 - ]], - [[ - 5072, - 5051, - 5082 - ]], - [[ - 5085, - 5086, - 5087 - ]], - [[ - 4810, - 4815, - 4811 - ]], - [[ - 5085, - 5087, - 4969 - ]], - [[ - 5088, - 4996, - 5089 - ]], - [[ - 4803, - 5075, - 4804 - ]], - [[ - 4803, - 5073, - 5075 - ]], - [[ - 4984, - 5029, - 5031 - ]], - [[ - 4983, - 5036, - 5029 - ]], - [[ - 4994, - 4993, - 5090 - ]], - [[ - 5078, - 5077, - 5091 - ]], - [[ - 5020, - 5092, - 5090 - ]], - [[ - 5019, - 5048, - 5092 - ]], - [[ - 5090, - 5047, - 4994 - ]], - [[ - 5092, - 5048, - 5047 - ]], - [[ - 5093, - 5094, - 5095 - ]], - [[ - 4811, - 4804, - 5072 - ]], - [[ - 5096, - 4929, - 5097 - ]], - [[ - 5098, - 4919, - 4918 - ]], - [[ - 5066, - 5064, - 4822 - ]], - [[ - 5099, - 4970, - 5064 - ]], - [[ - 5100, - 5028, - 5101 - ]], - [[ - 5053, - 4998, - 5068 - ]], - [[ - 5102, - 5027, - 5028 - ]], - [[ - 5017, - 5002, - 4824 - ]], - [[ - 5103, - 4820, - 4826 - ]], - [[ - 4986, - 4833, - 4828 - ]], - [[ - 5104, - 5090, - 4993 - ]], - [[ - 5092, - 5047, - 5090 - ]], - [[ - 5105, - 5106, - 5107 - ]], - [[ - 5108, - 4904, - 5109 - ]], - [[ - 5110, - 5111, - 5112 - ]], - [[ - 5113, - 5114, - 5115 - ]], - [[ - 5116, - 5117, - 5118 - ]], - [[ - 5119, - 5120, - 5121 - ]], - [[ - 4838, - 4992, - 5122 - ]], - [[ - 4833, - 4986, - 4992 - ]], - [[ - 5123, - 5124, - 5125 - ]], - [[ - 5126, - 4894, - 5127 - ]], - [[ - 4995, - 5128, - 4993 - ]], - [[ - 5129, - 5130, - 5131 - ]], - [[ - 4813, - 4812, - 5128 - ]], - [[ - 5076, - 5072, - 5083 - ]], - [[ - 5049, - 4996, - 4994 - ]], - [[ - 4813, - 5132, - 4810 - ]], - [[ - 5098, - 5133, - 4943 - ]], - [[ - 5134, - 5096, - 4886 - ]], - [[ - 5032, - 4974, - 5135 - ]], - [[ - 5136, - 4956, - 4974 - ]], - [[ - 5064, - 4806, - 5099 - ]], - [[ - 5137, - 5138, - 5139 - ]], - [[ - 4807, - 5137, - 5139 - ]], - [[ - 5019, - 5092, - 5020 - ]], - [[ - 5139, - 5138, - 5140 - ]], - [[ - 5137, - 5003, - 5138 - ]], - [[ - 4820, - 4818, - 4969 - ]], - [[ - 4819, - 4817, - 4816 - ]], - [[ - 5041, - 4989, - 4990 - ]], - [[ - 4988, - 4955, - 4957 - ]], - [[ - 4956, - 5060, - 4991 - ]], - [[ - 4956, - 5136, - 5060 - ]], - [[ - 5059, - 5042, - 5031 - ]], - [[ - 4982, - 4989, - 4983 - ]], - [[ - 5141, - 5134, - 5142 - ]], - [[ - 4895, - 4896, - 5143 - ]], - [[ - 5068, - 5036, - 4983 - ]], - [[ - 5068, - 5037, - 5036 - ]], - [[ - 5031, - 5030, - 5008 - ]], - [[ - 5029, - 5037, - 5030 - ]], - [[ - 4911, - 4904, - 4903 - ]], - [[ - 5144, - 4899, - 5145 - ]], - [[ - 4901, - 4900, - 4912 - ]], - [[ - 4898, - 5146, - 5147 - ]], - [[ - 5148, - 5149, - 5145 - ]], - [[ - 5109, - 4904, - 4900 - ]], - [[ - 5099, - 4971, - 4970 - ]], - [[ - 5099, - 5150, - 4971 - ]], - [[ - 4829, - 4820, - 4827 - ]], - [[ - 5103, - 4976, - 4820 - ]], - [[ - 5151, - 5152, - 5049 - ]], - [[ - 5153, - 5027, - 5102 - ]], - [[ - 5154, - 5049, - 5048 - ]], - [[ - 5101, - 5155, - 5156 - ]], - [[ - 5157, - 5100, - 5158 - ]], - [[ - 5154, - 5016, - 5158 - ]], - [[ - 5156, - 5089, - 5101 - ]], - [[ - 4997, - 5132, - 4813 - ]], - [[ - 4929, - 4914, - 4913 - ]], - [[ - 5117, - 5159, - 5118 - ]], - [[ - 5160, - 5161, - 5119 - ]], - [[ - 5162, - 4939, - 4919 - ]], - [[ - 5163, - 5164, - 5165 - ]], - [[ - 5165, - 5164, - 5166 - ]], - [[ - 5141, - 5167, - 5134 - ]], - [[ - 5160, - 4929, - 5167 - ]], - [[ - 5168, - 5169, - 5170 - ]], - [[ - 5171, - 5045, - 5172 - ]], - [[ - 5026, - 5170, - 5173 - ]], - [[ - 5169, - 5174, - 5024 - ]], - [[ - 5080, - 5079, - 5018 - ]], - [[ - 5019, - 5138, - 5003 - ]], - [[ - 5091, - 5080, - 5175 - ]], - [[ - 5020, - 5090, - 5131 - ]], - [[ - 5018, - 5140, - 5019 - ]], - [[ - 5176, - 5177, - 5139 - ]], - [[ - 5138, - 5019, - 5140 - ]], - [[ - 5003, - 5002, - 5065 - ]], - [[ - 5090, - 5104, - 5129 - ]], - [[ - 4993, - 5128, - 4812 - ]], - [[ - 4993, - 5094, - 5104 - ]], - [[ - 5178, - 4809, - 5095 - ]], - [[ - 4886, - 5097, - 5179 - ]], - [[ - 4886, - 5180, - 5142 - ]], - [[ - 5143, - 4893, - 4895 - ]], - [[ - 5112, - 5117, - 5180 - ]], - [[ - 4990, - 4989, - 4988 - ]], - [[ - 5040, - 5067, - 4983 - ]], - [[ - 5181, - 5182, - 5183 - ]], - [[ - 5184, - 5142, - 5185 - ]], - [[ - 5131, - 5175, - 5080 - ]], - [[ - 5177, - 4808, - 5139 - ]], - [[ - 5078, - 5091, - 5175 - ]], - [[ - 5081, - 4805, - 5079 - ]], - [[ - 5186, - 5187, - 4893 - ]], - [[ - 5159, - 5188, - 5189 - ]], - [[ - 4896, - 4895, - 4885 - ]], - [[ - 4894, - 5126, - 5190 - ]], - [[ - 5080, - 5018, - 5020 - ]], - [[ - 5139, - 4808, - 4807 - ]], - [[ - 5045, - 5044, - 5172 - ]], - [[ - 4987, - 4989, - 4982 - ]], - [[ - 5097, - 4929, - 4902 - ]], - [[ - 4914, - 5191, - 4907 - ]], - [[ - 5077, - 5081, - 5091 - ]], - [[ - 5077, - 5069, - 5081 - ]], - [[ - 5192, - 5193, - 5120 - ]], - [[ - 5192, - 5194, - 5193 - ]], - [[ - 5195, - 5196, - 5197 - ]], - [[ - 5198, - 5164, - 5163 - ]], - [[ - 5078, - 5093, - 5076 - ]], - [[ - 4809, - 4811, - 5072 - ]], - [[ - 5173, - 5169, - 5024 - ]], - [[ - 5199, - 5062, - 5200 - ]], - [[ - 4806, - 4808, - 5099 - ]], - [[ - 5201, - 4964, - 4963 - ]], - [[ - 5099, - 4808, - 5150 - ]], - [[ - 5202, - 4964, - 5203 - ]], - [[ - 5079, - 5177, - 5176 - ]], - [[ - 5079, - 4805, - 5177 - ]], - [[ - 5023, - 5022, - 5204 - ]], - [[ - 5168, - 5061, - 5205 - ]], - [[ - 5026, - 5173, - 5024 - ]], - [[ - 5170, - 5169, - 5173 - ]], - [[ - 5200, - 5062, - 5206 - ]], - [[ - 5170, - 5026, - 5061 - ]], - [[ - 5017, - 5154, - 5048 - ]], - [[ - 5100, - 5157, - 5102 - ]], - [[ - 5155, - 5101, - 5028 - ]], - [[ - 5089, - 5152, - 5151 - ]], - [[ - 5207, - 5208, - 5192 - ]], - [[ - 5207, - 5167, - 5141 - ]], - [[ - 5123, - 5209, - 5124 - ]], - [[ - 5125, - 5210, - 5211 - ]], - [[ - 5212, - 5213, - 5214 - ]], - [[ - 5214, - 5184, - 5185 - ]], - [[ - 5215, - 5216, - 5217 - ]], - [[ - 5218, - 5219, - 5220 - ]], - [[ - 5075, - 5052, - 4804 - ]], - [[ - 5075, - 5074, - 5050 - ]], - [[ - 5075, - 5050, - 5052 - ]], - [[ - 5074, - 5070, - 5082 - ]], - [[ - 5097, - 4886, - 5096 - ]], - [[ - 5112, - 5111, - 5159 - ]], - [[ - 5085, - 4816, - 5086 - ]], - [[ - 4819, - 4821, - 5221 - ]], - [[ - 4901, - 4912, - 5222 - ]], - [[ - 4900, - 4904, - 4912 - ]], - [[ - 5223, - 5222, - 5224 - ]], - [[ - 5223, - 4901, - 5222 - ]], - [[ - 4995, - 4813, - 5128 - ]], - [[ - 5086, - 4816, - 4810 - ]], - [[ - 4809, - 4812, - 4810 - ]], - [[ - 5094, - 4993, - 4812 - ]], - [[ - 4994, - 4997, - 4995 - ]], - [[ - 5049, - 5152, - 4996 - ]], - [[ - 5112, - 5159, - 5117 - ]], - [[ - 5213, - 5212, - 5225 - ]], - [[ - 5042, - 5059, - 5171 - ]], - [[ - 5031, - 5008, - 5059 - ]], - [[ - 5149, - 5179, - 5108 - ]], - [[ - 5097, - 4902, - 5108 - ]], - [[ - 5145, - 5109, - 5144 - ]], - [[ - 5108, - 4902, - 4904 - ]], - [[ - 5032, - 5136, - 4974 - ]], - [[ - 5032, - 5060, - 5136 - ]], - [[ - 5226, - 5124, - 5209 - ]], - [[ - 5220, - 5227, - 5228 - ]], - [[ - 5229, - 5106, - 5230 - ]], - [[ - 5105, - 5124, - 5226 - ]], - [[ - 5225, - 5231, - 5232 - ]], - [[ - 5233, - 5234, - 5232 - ]], - [[ - 5235, - 5236, - 5230 - ]], - [[ - 5114, - 4947, - 4946 - ]], - [[ - 5237, - 5238, - 5239 - ]], - [[ - 5240, - 5241, - 5209 - ]], - [[ - 5239, - 5242, - 5237 - ]], - [[ - 5241, - 5230, - 5226 - ]], - [[ - 5237, - 5243, - 5238 - ]], - [[ - 5244, - 5236, - 5235 - ]], - [[ - 5245, - 5246, - 5217 - ]], - [[ - 4942, - 5247, - 5238 - ]], - [[ - 5248, - 5245, - 5217 - ]], - [[ - 5249, - 5115, - 4946 - ]], - [[ - 5250, - 5107, - 5106 - ]], - [[ - 5251, - 5252, - 5210 - ]], - [[ - 5253, - 5254, - 5255 - ]], - [[ - 5207, - 5160, - 5167 - ]], - [[ - 5194, - 5256, - 5193 - ]], - [[ - 5257, - 5253, - 5258 - ]], - [[ - 5254, - 5253, - 5257 - ]], - [[ - 5259, - 5260, - 4920 - ]], - [[ - 5184, - 5261, - 5207 - ]], - [[ - 5183, - 5182, - 5194 - ]], - [[ - 5261, - 5262, - 5208 - ]], - [[ - 5183, - 5194, - 5263 - ]], - [[ - 5081, - 5069, - 5264 - ]], - [[ - 5077, - 5083, - 5084 - ]], - [[ - 5082, - 5070, - 5083 - ]], - [[ - 5070, - 5069, - 5084 - ]], - [[ - 5083, - 5070, - 5084 - ]], - [[ - 5074, - 5071, - 5070 - ]], - [[ - 5154, - 5151, - 5049 - ]], - [[ - 5089, - 5265, - 5088 - ]], - [[ - 5089, - 4996, - 5152 - ]], - [[ - 5088, - 5132, - 4997 - ]], - [[ - 5149, - 4886, - 5179 - ]], - [[ - 4885, - 5110, - 5112 - ]], - [[ - 5140, - 5176, - 5139 - ]], - [[ - 4805, - 4808, - 5177 - ]], - [[ - 5266, - 4940, - 5243 - ]], - [[ - 5267, - 5248, - 5268 - ]], - [[ - 5122, - 5269, - 4978 - ]], - [[ - 5056, - 5068, - 5067 - ]], - [[ - 5038, - 5067, - 5040 - ]], - [[ - 5039, - 5055, - 5056 - ]], - [[ - 5041, - 5040, - 4989 - ]], - [[ - 5041, - 5038, - 5040 - ]], - [[ - 5046, - 5026, - 5025 - ]], - [[ - 5008, - 5061, - 5026 - ]], - [[ - 4942, - 5244, - 5247 - ]], - [[ - 5270, - 5271, - 5272 - ]], - [[ - 5111, - 5188, - 5159 - ]], - [[ - 5211, - 5210, - 5252 - ]], - [[ - 5118, - 5273, - 5212 - ]], - [[ - 5231, - 5233, - 5232 - ]], - [[ - 5118, - 5212, - 5116 - ]], - [[ - 5214, - 5234, - 5261 - ]], - [[ - 5273, - 5225, - 5212 - ]], - [[ - 5232, - 5234, - 5213 - ]], - [[ - 4970, - 4972, - 5000 - ]], - [[ - 4971, - 5007, - 4972 - ]], - [[ - 5274, - 5275, - 5276 - ]], - [[ - 5160, - 5119, - 4914 - ]], - [[ - 5142, - 5134, - 4886 - ]], - [[ - 5167, - 5096, - 5134 - ]], - [[ - 5124, - 5105, - 5210 - ]], - [[ - 5277, - 5278, - 5252 - ]], - [[ - 5187, - 5216, - 5218 - ]], - [[ - 5219, - 5240, - 5220 - ]], - [[ - 5279, - 5242, - 5239 - ]], - [[ - 5242, - 5216, - 5243 - ]], - [[ - 5147, - 5143, - 4884 - ]], - [[ - 5280, - 5281, - 5282 - ]], - [[ - 5283, - 4916, - 5284 - ]], - [[ - 5285, - 5224, - 5286 - ]], - [[ - 5287, - 5283, - 5284 - ]], - [[ - 5288, - 5289, - 5253 - ]], - [[ - 5282, - 5187, - 5186 - ]], - [[ - 5127, - 4894, - 4893 - ]], - [[ - 5290, - 5145, - 4899 - ]], - [[ - 5290, - 5146, - 5291 - ]], - [[ - 5034, - 5054, - 5035 - ]], - [[ - 5034, - 4823, - 4999 - ]], - [[ - 5190, - 5228, - 5188 - ]], - [[ - 5227, - 5125, - 5211 - ]], - [[ - 4915, - 4908, - 5292 - ]], - [[ - 4916, - 5283, - 5293 - ]], - [[ - 4916, - 4909, - 4908 - ]], - [[ - 5294, - 5191, - 5295 - ]], - [[ - 5296, - 5297, - 5197 - ]], - [[ - 5298, - 5256, - 5194 - ]], - [[ - 5299, - 5300, - 5301 - ]], - [[ - 5298, - 5254, - 5256 - ]], - [[ - 4887, - 5302, - 5301 - ]], - [[ - 5255, - 5288, - 5253 - ]], - [[ - 5303, - 5165, - 5166 - ]], - [[ - 5304, - 4935, - 4934 - ]], - [[ - 5305, - 5306, - 5307 - ]], - [[ - 5308, - 5304, - 4934 - ]], - [[ - 5307, - 5233, - 5231 - ]], - [[ - 5278, - 5231, - 5225 - ]], - [[ - 5309, - 5277, - 5251 - ]], - [[ - 5233, - 5306, - 5182 - ]], - [[ - 5181, - 5233, - 5182 - ]], - [[ - 5306, - 5298, - 5182 - ]], - [[ - 5263, - 5194, - 5310 - ]], - [[ - 5182, - 5298, - 5194 - ]], - [[ - 5255, - 5311, - 5288 - ]], - [[ - 5312, - 4934, - 5313 - ]], - [[ - 5250, - 5307, - 5314 - ]], - [[ - 5250, - 5229, - 5113 - ]], - [[ - 5305, - 5315, - 5311 - ]], - [[ - 4934, - 5312, - 5308 - ]], - [[ - 5255, - 5298, - 5306 - ]], - [[ - 5255, - 5254, - 5298 - ]], - [[ - 5311, - 5289, - 5288 - ]], - [[ - 5316, - 5317, - 5318 - ]], - [[ - 5258, - 5121, - 5193 - ]], - [[ - 5295, - 5191, - 5119 - ]], - [[ - 5319, - 4931, - 4907 - ]], - [[ - 5312, - 5289, - 5311 - ]], - [[ - 5094, - 5178, - 5095 - ]], - [[ - 5094, - 4812, - 5178 - ]], - [[ - 5110, - 5188, - 5111 - ]], - [[ - 5110, - 5190, - 5188 - ]], - [[ - 4886, - 5112, - 5180 - ]], - [[ - 4886, - 4885, - 5112 - ]], - [[ - 4978, - 5038, - 4977 - ]], - [[ - 5039, - 5067, - 5038 - ]], - [[ - 5041, - 4990, - 4832 - ]], - [[ - 4830, - 5060, - 5032 - ]], - [[ - 4957, - 4991, - 4990 - ]], - [[ - 4957, - 4956, - 4991 - ]], - [[ - 5181, - 5262, - 5261 - ]], - [[ - 5208, - 5263, - 5310 - ]], - [[ - 5320, - 4931, - 5319 - ]], - [[ - 4903, - 4913, - 4907 - ]], - [[ - 5131, - 5080, - 5020 - ]], - [[ - 5091, - 5081, - 5080 - ]], - [[ - 4920, - 5319, - 5295 - ]], - [[ - 4907, - 5191, - 5294 - ]], - [[ - 5292, - 4943, - 5321 - ]], - [[ - 4933, - 5162, - 5322 - ]], - [[ - 5095, - 4809, - 5072 - ]], - [[ - 5178, - 4812, - 4809 - ]], - [[ - 5018, - 5176, - 5140 - ]], - [[ - 5018, - 5079, - 5176 - ]], - [[ - 5133, - 5323, - 5321 - ]], - [[ - 5284, - 4916, - 4915 - ]], - [[ - 4887, - 4889, - 5302 - ]], - [[ - 5255, - 5306, - 5311 - ]], - [[ - 5305, - 5311, - 5306 - ]], - [[ - 5308, - 5324, - 5304 - ]], - [[ - 5325, - 4926, - 4890 - ]], - [[ - 5326, - 5327, - 5328 - ]], - [[ - 5024, - 5046, - 5025 - ]], - [[ - 5024, - 5174, - 5046 - ]], - [[ - 5109, - 5145, - 5149 - ]], - [[ - 5329, - 5146, - 4897 - ]], - [[ - 4886, - 5149, - 4884 - ]], - [[ - 5329, - 5330, - 5291 - ]], - [[ - 5189, - 5211, - 5118 - ]], - [[ - 5278, - 5314, - 5231 - ]], - [[ - 5331, - 5332, - 5224 - ]], - [[ - 5286, - 4912, - 4911 - ]], - [[ - 5113, - 5307, - 5250 - ]], - [[ - 5306, - 5233, - 5307 - ]], - [[ - 5088, - 4810, - 5132 - ]], - [[ - 4816, - 4814, - 4810 - ]], - [[ - 5010, - 4985, - 5009 - ]], - [[ - 5087, - 5086, - 5265 - ]], - [[ - 5153, - 5011, - 5027 - ]], - [[ - 4992, - 4986, - 4985 - ]], - [[ - 4985, - 5010, - 4992 - ]], - [[ - 5155, - 5028, - 5010 - ]], - [[ - 5016, - 5055, - 5102 - ]], - [[ - 5011, - 5010, - 5027 - ]], - [[ - 4838, - 5122, - 4978 - ]], - [[ - 5012, - 5011, - 5153 - ]], - [[ - 4992, - 5012, - 5122 - ]], - [[ - 4992, - 5010, - 5012 - ]], - [[ - 5172, - 5333, - 4987 - ]], - [[ - 4982, - 4984, - 5042 - ]], - [[ - 5292, - 4937, - 4943 - ]], - [[ - 5334, - 5335, - 5317 - ]], - [[ - 5336, - 5334, - 5317 - ]], - [[ - 4910, - 4930, - 5337 - ]], - [[ - 5338, - 5318, - 5335 - ]], - [[ - 4910, - 4909, - 5339 - ]], - [[ - 5063, - 5340, - 5004 - ]], - [[ - 4808, - 4805, - 5341 - ]], - [[ - 5086, - 5088, - 5265 - ]], - [[ - 5086, - 4810, - 5088 - ]], - [[ - 5342, - 5331, - 5274 - ]], - [[ - 5133, - 5321, - 4943 - ]], - [[ - 5098, - 4918, - 5287 - ]], - [[ - 4918, - 4917, - 5343 - ]], - [[ - 5210, - 5105, - 5309 - ]], - [[ - 5250, - 5314, - 5309 - ]], - [[ - 5309, - 5314, - 5277 - ]], - [[ - 5307, - 5231, - 5314 - ]], - [[ - 5252, - 5278, - 5273 - ]], - [[ - 5277, - 5314, - 5278 - ]], - [[ - 4942, - 4941, - 5244 - ]], - [[ - 5344, - 5271, - 4941 - ]], - [[ - 5117, - 5116, - 5185 - ]], - [[ - 5184, - 5141, - 5142 - ]], - [[ - 5234, - 5181, - 5261 - ]], - [[ - 5183, - 5263, - 5262 - ]], - [[ - 5233, - 5181, - 5234 - ]], - [[ - 5183, - 5262, - 5181 - ]], - [[ - 5259, - 5289, - 5260 - ]], - [[ - 5311, - 5315, - 5312 - ]], - [[ - 5289, - 5345, - 4921 - ]], - [[ - 5345, - 5313, - 5338 - ]], - [[ - 4920, - 4922, - 5346 - ]], - [[ - 4922, - 5347, - 5348 - ]], - [[ - 5294, - 5295, - 5319 - ]], - [[ - 5348, - 5347, - 5338 - ]], - [[ - 4922, - 4921, - 5347 - ]], - [[ - 5260, - 5289, - 4921 - ]], - [[ - 5056, - 5053, - 5068 - ]], - [[ - 5054, - 5034, - 4999 - ]], - [[ - 5294, - 5319, - 4907 - ]], - [[ - 5339, - 5349, - 4910 - ]], - [[ - 5350, - 5316, - 5318 - ]], - [[ - 5351, - 4921, - 5345 - ]], - [[ - 5352, - 5353, - 5354 - ]], - [[ - 5355, - 5196, - 5163 - ]], - [[ - 5123, - 5125, - 5227 - ]], - [[ - 5124, - 5210, - 5125 - ]], - [[ - 5035, - 5055, - 5016 - ]], - [[ - 5153, - 5122, - 5012 - ]], - [[ - 5344, - 5267, - 5268 - ]], - [[ - 5248, - 5271, - 5268 - ]], - [[ - 5042, - 5172, - 4982 - ]], - [[ - 4955, - 4988, - 4987 - ]], - [[ - 4890, - 5305, - 4891 - ]], - [[ - 5324, - 4935, - 5304 - ]], - [[ - 5350, - 4938, - 5316 - ]], - [[ - 4937, - 5292, - 5336 - ]], - [[ - 5196, - 5165, - 5354 - ]], - [[ - 5356, - 4939, - 5162 - ]], - [[ - 5246, - 5357, - 5217 - ]], - [[ - 5246, - 5245, - 5266 - ]], - [[ - 5357, - 5215, - 5217 - ]], - [[ - 5243, - 4942, - 5238 - ]], - [[ - 4834, - 4838, - 4831 - ]], - [[ - 5001, - 4826, - 4825 - ]], - [[ - 5326, - 5163, - 5195 - ]], - [[ - 5296, - 5196, - 5358 - ]], - [[ - 4971, - 5150, - 5007 - ]], - [[ - 4808, - 5341, - 5061 - ]], - [[ - 4995, - 4997, - 4813 - ]], - [[ - 4996, - 5088, - 4997 - ]], - [[ - 5118, - 5211, - 5273 - ]], - [[ - 5359, - 5228, - 5211 - ]], - [[ - 5209, - 5241, - 5226 - ]], - [[ - 5230, - 5106, - 5226 - ]], - [[ - 5346, - 4932, - 5319 - ]], - [[ - 5348, - 5338, - 5337 - ]], - [[ - 5247, - 5360, - 5241 - ]], - [[ - 5236, - 5229, - 5230 - ]], - [[ - 5163, - 5165, - 5355 - ]], - [[ - 5303, - 5356, - 5353 - ]], - [[ - 5258, - 5361, - 5121 - ]], - [[ - 5260, - 4921, - 4920 - ]], - [[ - 5319, - 4920, - 5346 - ]], - [[ - 5361, - 5259, - 4920 - ]], - [[ - 5361, - 5295, - 5121 - ]], - [[ - 5361, - 4920, - 5295 - ]], - [[ - 5126, - 5218, - 5220 - ]], - [[ - 5219, - 5238, - 5241 - ]], - [[ - 5239, - 5219, - 5218 - ]], - [[ - 5239, - 5238, - 5219 - ]], - [[ - 4937, - 5316, - 4938 - ]], - [[ - 5312, - 5345, - 5289 - ]], - [[ - 4937, - 5317, - 5316 - ]], - [[ - 5335, - 5337, - 5338 - ]], - [[ - 5214, - 5116, - 5212 - ]], - [[ - 5185, - 5180, - 5117 - ]], - [[ - 5362, - 5323, - 5098 - ]], - [[ - 4917, - 4924, - 5275 - ]], - [[ - 5287, - 5362, - 5098 - ]], - [[ - 5323, - 4915, - 5321 - ]], - [[ - 5098, - 5323, - 5133 - ]], - [[ - 5362, - 4915, - 5323 - ]], - [[ - 4884, - 5143, - 4896 - ]], - [[ - 5363, - 5281, - 5280 - ]], - [[ - 5064, - 5066, - 4806 - ]], - [[ - 5003, - 5137, - 4807 - ]], - [[ - 5184, - 5207, - 5141 - ]], - [[ - 5208, - 5310, - 5192 - ]], - [[ - 5213, - 5225, - 5232 - ]], - [[ - 5273, - 5278, - 5225 - ]], - [[ - 5322, - 5350, - 5313 - ]], - [[ - 5317, - 5335, - 5318 - ]], - [[ - 4907, - 4931, - 4905 - ]], - [[ - 4906, - 4903, - 4907 - ]], - [[ - 4930, - 5364, - 4931 - ]], - [[ - 4911, - 4906, - 5364 - ]], - [[ - 5364, - 4906, - 4905 - ]], - [[ - 4911, - 4903, - 4906 - ]], - [[ - 5234, - 5214, - 5213 - ]], - [[ - 5261, - 5184, - 5214 - ]], - [[ - 4900, - 5144, - 5109 - ]], - [[ - 4900, - 4899, - 5144 - ]], - [[ - 5218, - 5216, - 5242 - ]], - [[ - 5215, - 5243, - 5216 - ]], - [[ - 5333, - 4975, - 4987 - ]], - [[ - 4974, - 4956, - 4975 - ]], - [[ - 5357, - 5243, - 5215 - ]], - [[ - 5357, - 5246, - 5266 - ]], - [[ - 5016, - 5157, - 5158 - ]], - [[ - 5102, - 5028, - 5100 - ]], - [[ - 5365, - 5282, - 5281 - ]], - [[ - 5366, - 5216, - 5282 - ]], - [[ - 4893, - 5187, - 5127 - ]], - [[ - 5282, - 5216, - 5187 - ]], - [[ - 5149, - 5108, - 5109 - ]], - [[ - 5179, - 5097, - 5108 - ]], - [[ - 4933, - 5322, - 4934 - ]], - [[ - 5162, - 4936, - 5322 - ]], - [[ - 5338, - 5313, - 5318 - ]], - [[ - 5322, - 4938, - 5350 - ]], - [[ - 4915, - 5292, - 5321 - ]], - [[ - 4908, - 4910, - 5336 - ]], - [[ - 4937, - 5336, - 5317 - ]], - [[ - 5292, - 4908, - 5336 - ]], - [[ - 5187, - 5218, - 5127 - ]], - [[ - 5279, - 5239, - 5218 - ]], - [[ - 4807, - 5066, - 5003 - ]], - [[ - 4807, - 4806, - 5066 - ]], - [[ - 4932, - 5348, - 5337 - ]], - [[ - 5347, - 5351, - 5338 - ]], - [[ - 5346, - 5348, - 4932 - ]], - [[ - 5346, - 4922, - 5348 - ]], - [[ - 5154, - 5017, - 5016 - ]], - [[ - 5048, - 5065, - 5017 - ]], - [[ - 5359, - 5188, - 5228 - ]], - [[ - 5189, - 5118, - 5159 - ]], - [[ - 5333, - 4973, - 4975 - ]], - [[ - 5135, - 4974, - 4973 - ]], - [[ - 5217, - 5366, - 5281 - ]], - [[ - 5217, - 5216, - 5366 - ]], - [[ - 5366, - 5365, - 5281 - ]], - [[ - 5366, - 5282, - 5365 - ]], - [[ - 5073, - 5071, - 5074 - ]], - [[ - 5264, - 5069, - 5071 - ]], - [[ - 4805, - 5073, - 4803 - ]], - [[ - 4805, - 5071, - 5073 - ]], - [[ - 5211, - 5252, - 5273 - ]], - [[ - 5251, - 5277, - 5252 - ]], - [[ - 4932, - 5320, - 5319 - ]], - [[ - 4932, - 5337, - 4930 - ]], - [[ - 5106, - 5229, - 5250 - ]], - [[ - 5236, - 5244, - 5114 - ]], - [[ - 5236, - 5114, - 5113 - ]], - [[ - 5244, - 4941, - 4947 - ]], - [[ - 5207, - 5161, - 5160 - ]], - [[ - 5119, - 5121, - 5295 - ]], - [[ - 5207, - 5192, - 5367 - ]], - [[ - 5193, - 5121, - 5120 - ]], - [[ - 5367, - 5192, - 5120 - ]], - [[ - 5310, - 5194, - 5192 - ]], - [[ - 5210, - 5309, - 5251 - ]], - [[ - 5107, - 5250, - 5309 - ]], - [[ - 5368, - 5342, - 5276 - ]], - [[ - 5293, - 4909, - 4916 - ]], - [[ - 5274, - 5283, - 5287 - ]], - [[ - 5369, - 5368, - 5224 - ]], - [[ - 5119, - 5367, - 5120 - ]], - [[ - 5161, - 5207, - 5367 - ]], - [[ - 5085, - 4818, - 4816 - ]], - [[ - 5085, - 4969, - 4818 - ]], - [[ - 4895, - 5190, - 4885 - ]], - [[ - 5190, - 5126, - 5220 - ]], - [[ - 5322, - 5313, - 4934 - ]], - [[ - 5350, - 5318, - 5313 - ]], - [[ - 5257, - 5258, - 5193 - ]], - [[ - 5253, - 5259, - 5258 - ]], - [[ - 5357, - 5266, - 5243 - ]], - [[ - 5245, - 5248, - 5267 - ]], - [[ - 4914, - 5119, - 5191 - ]], - [[ - 5161, - 5367, - 5119 - ]], - [[ - 5150, - 5061, - 5007 - ]], - [[ - 5150, - 4808, - 5061 - ]], - [[ - 5244, - 4947, - 5114 - ]], - [[ - 4941, - 5271, - 5270 - ]], - [[ - 5261, - 5208, - 5207 - ]], - [[ - 5262, - 5263, - 5208 - ]], - [[ - 5218, - 5126, - 5127 - ]], - [[ - 5220, - 5228, - 5190 - ]], - [[ - 5305, - 5308, - 5315 - ]], - [[ - 5305, - 5324, - 5308 - ]], - [[ - 5342, - 5274, - 5276 - ]], - [[ - 5287, - 4918, - 5274 - ]], - [[ - 5325, - 5327, - 5370 - ]], - [[ - 5326, - 5328, - 5371 - ]], - [[ - 5370, - 5195, - 5197 - ]], - [[ - 5355, - 5165, - 5196 - ]], - [[ - 5106, - 5105, - 5226 - ]], - [[ - 5107, - 5309, - 5105 - ]], - [[ - 5322, - 4936, - 4938 - ]], - [[ - 5162, - 4919, - 4936 - ]], - [[ - 5372, - 5058, - 5057 - ]], - [[ - 5373, - 5374, - 5206 - ]], - [[ - 5169, - 5168, - 5204 - ]], - [[ - 4980, - 5341, - 5013 - ]], - [[ - 5000, - 4999, - 4823 - ]], - [[ - 4998, - 5053, - 4999 - ]], - [[ - 4905, - 4931, - 5364 - ]], - [[ - 5320, - 4932, - 4931 - ]], - [[ - 4890, - 5324, - 5305 - ]], - [[ - 4890, - 4925, - 5324 - ]], - [[ - 5274, - 5343, - 5275 - ]], - [[ - 5274, - 4918, - 5343 - ]], - [[ - 5375, - 5372, - 5057 - ]], - [[ - 5058, - 5376, - 5373 - ]], - [[ - 5274, - 5293, - 5283 - ]], - [[ - 5349, - 4911, - 5364 - ]], - [[ - 5050, - 5082, - 5051 - ]], - [[ - 5050, - 5074, - 5082 - ]], - [[ - 5214, - 5185, - 5116 - ]], - [[ - 5142, - 5180, - 5185 - ]], - [[ - 5147, - 5363, - 5143 - ]], - [[ - 5147, - 5281, - 5363 - ]], - [[ - 5016, - 5102, - 5157 - ]], - [[ - 5055, - 5269, - 5153 - ]], - [[ - 5130, - 5078, - 5175 - ]], - [[ - 5076, - 5083, - 5077 - ]], - [[ - 5256, - 5257, - 5193 - ]], - [[ - 5256, - 5254, - 5257 - ]], - [[ - 4832, - 4831, - 4837 - ]], - [[ - 4834, - 4833, - 4838 - ]], - [[ - 5090, - 5129, - 5131 - ]], - [[ - 5104, - 5094, - 5129 - ]], - [[ - 5299, - 5327, - 5300 - ]], - [[ - 5299, - 5328, - 5327 - ]], - [[ - 5151, - 5100, - 5101 - ]], - [[ - 5154, - 5158, - 5100 - ]], - [[ - 5006, - 5063, - 5004 - ]], - [[ - 5021, - 5205, - 5063 - ]], - [[ - 5205, - 5021, - 5023 - ]], - [[ - 5063, - 5062, - 5021 - ]], - [[ - 5204, - 5022, - 5169 - ]], - [[ - 5021, - 5062, - 5022 - ]], - [[ - 5327, - 5195, - 5370 - ]], - [[ - 5377, - 5358, - 5378 - ]], - [[ - 5039, - 5269, - 5055 - ]], - [[ - 5039, - 4978, - 5269 - ]], - [[ - 5342, - 5332, - 5331 - ]], - [[ - 5368, - 5223, - 5224 - ]], - [[ - 5293, - 5379, - 4909 - ]], - [[ - 5286, - 5222, - 4912 - ]], - [[ - 5331, - 5224, - 5285 - ]], - [[ - 5332, - 5369, - 5224 - ]], - [[ - 5380, - 5372, - 5375 - ]], - [[ - 5135, - 5376, - 5372 - ]], - [[ - 5003, - 5065, - 5019 - ]], - [[ - 5002, - 5017, - 5065 - ]], - [[ - 5378, - 4925, - 4926 - ]], - [[ - 5354, - 5165, - 5352 - ]], - [[ - 5271, - 5344, - 5268 - ]], - [[ - 5266, - 5245, - 5267 - ]], - [[ - 4975, - 4955, - 4987 - ]], - [[ - 4975, - 4956, - 4955 - ]], - [[ - 5372, - 5376, - 5058 - ]], - [[ - 5381, - 5382, - 5333 - ]], - [[ - 5241, - 5360, - 5235 - ]], - [[ - 5247, - 5244, - 5360 - ]], - [[ - 5143, - 5186, - 4893 - ]], - [[ - 5280, - 5282, - 5186 - ]], - [[ - 5379, - 5331, - 5285 - ]], - [[ - 5293, - 5274, - 5331 - ]], - [[ - 4954, - 5383, - 4860 - ]], - [[ - 4954, - 4951, - 5383 - ]], - [[ - 5148, - 5384, - 4897 - ]], - [[ - 5330, - 5145, - 5290 - ]], - [[ - 5174, - 5199, - 5043 - ]], - [[ - 5043, - 5381, - 5044 - ]], - [[ - 5204, - 5168, - 5023 - ]], - [[ - 5061, - 5341, - 5205 - ]], - [[ - 5023, - 5168, - 5205 - ]], - [[ - 5170, - 5061, - 5168 - ]], - [[ - 5006, - 5015, - 5062 - ]], - [[ - 5333, - 5382, - 4973 - ]], - [[ - 5062, - 5015, - 5206 - ]], - [[ - 5005, - 5057, - 5015 - ]], - [[ - 5022, - 5062, - 5199 - ]], - [[ - 5382, - 5376, - 5135 - ]], - [[ - 5385, - 5303, - 5166 - ]], - [[ - 5385, - 4939, - 5356 - ]], - [[ - 4878, - 4874, - 4944 - ]], - [[ - 4950, - 4876, - 4874 - ]], - [[ - 5143, - 5280, - 5186 - ]], - [[ - 5143, - 5363, - 5280 - ]], - [[ - 5199, - 5381, - 5043 - ]], - [[ - 5382, - 5374, - 5376 - ]], - [[ - 5338, - 5351, - 5345 - ]], - [[ - 5347, - 4921, - 5351 - ]], - [[ - 5148, - 5145, - 5329 - ]], - [[ - 5330, - 5290, - 5291 - ]], - [[ - 4982, - 5172, - 4987 - ]], - [[ - 5044, - 5381, - 5333 - ]], - [[ - 5386, - 5387, - 5201 - ]], - [[ - 4961, - 5388, - 4867 - ]], - [[ - 4817, - 4819, - 5221 - ]], - [[ - 4818, - 4821, - 4819 - ]], - [[ - 4909, - 5379, - 5285 - ]], - [[ - 5293, - 5331, - 5379 - ]], - [[ - 5258, - 5259, - 5361 - ]], - [[ - 5253, - 5289, - 5259 - ]], - [[ - 5046, - 5171, - 5059 - ]], - [[ - 5046, - 5045, - 5171 - ]], - [[ - 5378, - 4933, - 4925 - ]], - [[ - 4935, - 5324, - 4925 - ]], - [[ - 5228, - 5227, - 5211 - ]], - [[ - 5220, - 5240, - 5123 - ]], - [[ - 5220, - 5123, - 5227 - ]], - [[ - 5240, - 5209, - 5123 - ]], - [[ - 5146, - 5329, - 5291 - ]], - [[ - 5329, - 5145, - 5330 - ]], - [[ - 5384, - 5329, - 4897 - ]], - [[ - 5384, - 5148, - 5329 - ]], - [[ - 4943, - 4919, - 5098 - ]], - [[ - 4943, - 4936, - 4919 - ]], - [[ - 5343, - 4917, - 5275 - ]], - [[ - 4919, - 4924, - 4917 - ]], - [[ - 4884, - 4898, - 5147 - ]], - [[ - 4897, - 5146, - 4898 - ]], - [[ - 5378, - 5354, - 4933 - ]], - [[ - 5353, - 5162, - 5354 - ]], - [[ - 5389, - 5149, - 5148 - ]], - [[ - 5389, - 4884, - 5149 - ]], - [[ - 4897, - 5389, - 5148 - ]], - [[ - 4897, - 4884, - 5389 - ]], - [[ - 5055, - 5153, - 5102 - ]], - [[ - 5269, - 5122, - 5153 - ]], - [[ - 5131, - 5130, - 5175 - ]], - [[ - 5093, - 5095, - 5076 - ]], - [[ - 5241, - 5235, - 5230 - ]], - [[ - 5360, - 5244, - 5235 - ]], - [[ - 5100, - 5151, - 5154 - ]], - [[ - 5101, - 5089, - 5151 - ]], - [[ - 5045, - 5174, - 5043 - ]], - [[ - 5200, - 5206, - 5374 - ]], - [[ - 5339, - 5286, - 4911 - ]], - [[ - 5224, - 5222, - 5286 - ]], - [[ - 4891, - 5249, - 5272 - ]], - [[ - 4946, - 4941, - 5270 - ]], - [[ - 4885, - 5190, - 5110 - ]], - [[ - 4895, - 4894, - 5190 - ]], - [[ - 4944, - 4872, - 4951 - ]], - [[ - 4875, - 4873, - 4872 - ]], - [[ - 5290, - 4901, - 5223 - ]], - [[ - 5290, - 4899, - 4901 - ]], - [[ - 5010, - 5156, - 5155 - ]], - [[ - 5265, - 5089, - 5156 - ]], - [[ - 5305, - 5115, - 4891 - ]], - [[ - 5305, - 5307, - 5115 - ]], - [[ - 5236, - 5113, - 5229 - ]], - [[ - 5115, - 5307, - 5113 - ]], - [[ - 5087, - 5009, - 4969 - ]], - [[ - 4986, - 4828, - 4827 - ]], - [[ - 5285, - 5339, - 4909 - ]], - [[ - 5285, - 5286, - 5339 - ]], - [[ - 5335, - 4910, - 5337 - ]], - [[ - 5349, - 5364, - 4930 - ]], - [[ - 5284, - 5362, - 5287 - ]], - [[ - 5284, - 4915, - 5362 - ]], - [[ - 4963, - 5390, - 5391 - ]], - [[ - 4841, - 5392, - 4839 - ]], - [[ - 5393, - 5394, - 5395 - ]], - [[ - 5396, - 5397, - 5388 - ]], - [[ - 5398, - 5399, - 5386 - ]], - [[ - 5400, - 4840, - 5401 - ]], - [[ - 4850, - 4851, - 4849 - ]], - [[ - 4854, - 4852, - 4851 - ]], - [[ - 5167, - 4929, - 5096 - ]], - [[ - 5160, - 4914, - 4929 - ]], - [[ - 5199, - 5374, - 5381 - ]], - [[ - 5206, - 5015, - 5373 - ]], - [[ - 5058, - 5373, - 5015 - ]], - [[ - 5376, - 5374, - 5373 - ]], - [[ - 4825, - 4829, - 4828 - ]], - [[ - 4825, - 4820, - 4829 - ]], - [[ - 5342, - 5369, - 5332 - ]], - [[ - 5342, - 5368, - 5369 - ]], - [[ - 4973, - 5382, - 5135 - ]], - [[ - 5381, - 5374, - 5382 - ]], - [[ - 5303, - 5352, - 5165 - ]], - [[ - 5303, - 5353, - 5352 - ]], - [[ - 4863, - 4866, - 4847 - ]], - [[ - 4869, - 4883, - 4866 - ]], - [[ - 5396, - 5388, - 5394 - ]], - [[ - 5402, - 4867, - 5388 - ]], - [[ - 5249, - 4946, - 5270 - ]], - [[ - 5115, - 5114, - 4946 - ]], - [[ - 5205, - 5340, - 5063 - ]], - [[ - 5403, - 5341, - 4979 - ]], - [[ - 5009, - 4985, - 4827 - ]], - [[ - 5009, - 5156, - 5010 - ]], - [[ - 5404, - 5405, - 4967 - ]], - [[ - 5406, - 5380, - 5014 - ]], - [[ - 5265, - 5009, - 5087 - ]], - [[ - 5265, - 5156, - 5009 - ]], - [[ - 5359, - 5189, - 5188 - ]], - [[ - 5359, - 5211, - 5189 - ]], - [[ - 5340, - 4979, - 5004 - ]], - [[ - 5340, - 5205, - 5403 - ]], - [[ - 4892, - 5300, - 4890 - ]], - [[ - 5300, - 5327, - 5325 - ]], - [[ - 4850, - 4839, - 4962 - ]], - [[ - 4843, - 5407, - 4842 - ]], - [[ - 5408, - 5201, - 5387 - ]], - [[ - 4958, - 4841, - 5400 - ]], - [[ - 5386, - 5409, - 5387 - ]], - [[ - 5410, - 5411, - 5412 - ]], - [[ - 5039, - 5056, - 5067 - ]], - [[ - 5035, - 5053, - 5056 - ]], - [[ - 4910, - 5349, - 4930 - ]], - [[ - 5339, - 4911, - 5349 - ]], - [[ - 5413, - 4980, - 5014 - ]], - [[ - 5414, - 5415, - 5416 - ]], - [[ - 5417, - 5401, - 5418 - ]], - [[ - 5013, - 5341, - 5419 - ]], - [[ - 5334, - 4910, - 5335 - ]], - [[ - 5334, - 5336, - 4910 - ]], - [[ - 4881, - 4878, - 4945 - ]], - [[ - 4877, - 4950, - 4878 - ]], - [[ - 5325, - 5377, - 4926 - ]], - [[ - 5196, - 5354, - 5420 - ]], - [[ - 5397, - 5402, - 5388 - ]], - [[ - 5397, - 4867, - 5402 - ]], - [[ - 5421, - 4959, - 4958 - ]], - [[ - 5422, - 5394, - 5388 - ]], - [[ - 5392, - 4959, - 5423 - ]], - [[ - 5395, - 5394, - 5424 - ]], - [[ - 5425, - 5421, - 4958 - ]], - [[ - 5423, - 5424, - 5426 - ]], - [[ - 5400, - 4841, - 4840 - ]], - [[ - 5426, - 5424, - 5422 - ]], - [[ - 5427, - 5391, - 5421 - ]], - [[ - 5391, - 5423, - 5421 - ]], - [[ - 4839, - 5392, - 4962 - ]], - [[ - 5424, - 5394, - 5422 - ]], - [[ - 4960, - 5392, - 5426 - ]], - [[ - 4841, - 4959, - 5392 - ]], - [[ - 4863, - 5428, - 4866 - ]], - [[ - 5383, - 4951, - 4868 - ]], - [[ - 5022, - 5199, - 5169 - ]], - [[ - 5200, - 5374, - 5199 - ]], - [[ - 5046, - 5174, - 5045 - ]], - [[ - 5169, - 5199, - 5174 - ]], - [[ - 5404, - 5013, - 5419 - ]], - [[ - 5404, - 5406, - 5013 - ]], - [[ - 4890, - 5300, - 5325 - ]], - [[ - 4892, - 4927, - 4888 - ]], - [[ - 5409, - 5410, - 5387 - ]], - [[ - 5202, - 5429, - 5430 - ]], - [[ - 5386, - 5201, - 5398 - ]], - [[ - 5203, - 4964, - 5201 - ]], - [[ - 4851, - 4850, - 4854 - ]], - [[ - 4962, - 4867, - 4850 - ]], - [[ - 5421, - 5423, - 4959 - ]], - [[ - 5390, - 5395, - 5423 - ]], - [[ - 4960, - 5426, - 5422 - ]], - [[ - 5392, - 5423, - 5426 - ]], - [[ - 5431, - 5432, - 5415 - ]], - [[ - 5202, - 5203, - 5408 - ]], - [[ - 5387, - 5410, - 5408 - ]], - [[ - 5416, - 5432, - 5430 - ]], - [[ - 5171, - 5172, - 5042 - ]], - [[ - 5044, - 5333, - 5172 - ]], - [[ - 5433, - 4847, - 4865 - ]], - [[ - 5433, - 4861, - 4847 - ]], - [[ - 5404, - 4966, - 5406 - ]], - [[ - 5380, - 5135, - 5372 - ]], - [[ - 5406, - 4966, - 5434 - ]], - [[ - 5404, - 5419, - 5405 - ]], - [[ - 5418, - 4967, - 5415 - ]], - [[ - 4966, - 5404, - 4967 - ]], - [[ - 4968, - 5418, - 5401 - ]], - [[ - 4968, - 4967, - 5418 - ]], - [[ - 5393, - 4963, - 4965 - ]], - [[ - 5393, - 5395, - 5390 - ]], - [[ - 5340, - 5403, - 4979 - ]], - [[ - 5205, - 5341, - 5403 - ]], - [[ - 5413, - 4981, - 4980 - ]], - [[ - 4979, - 5341, - 4980 - ]], - [[ - 5005, - 4981, - 5375 - ]], - [[ - 5005, - 4979, - 4981 - ]], - [[ - 4805, - 5264, - 5071 - ]], - [[ - 4805, - 5081, - 5264 - ]], - [[ - 4856, - 4848, - 4858 - ]], - [[ - 4850, - 4867, - 4848 - ]], - [[ - 5392, - 4960, - 4962 - ]], - [[ - 5422, - 5388, - 4961 - ]], - [[ - 5408, - 5203, - 5201 - ]], - [[ - 5408, - 5435, - 5202 - ]], - [[ - 5380, - 5406, - 5434 - ]], - [[ - 5014, - 5013, - 5406 - ]], - [[ - 5353, - 5356, - 5162 - ]], - [[ - 5303, - 5385, - 5356 - ]], - [[ - 5408, - 5410, - 5435 - ]], - [[ - 5436, - 5401, - 5417 - ]], - [[ - 5418, - 5412, - 5417 - ]], - [[ - 5410, - 5409, - 5436 - ]], - [[ - 5415, - 5412, - 5418 - ]], - [[ - 5436, - 5409, - 5401 - ]], - [[ - 5380, - 5375, - 5014 - ]], - [[ - 5375, - 4981, - 5413 - ]], - [[ - 4966, - 4968, - 5434 - ]], - [[ - 5401, - 5135, - 4968 - ]], - [[ - 5430, - 5419, - 5341 - ]], - [[ - 5430, - 5432, - 5405 - ]], - [[ - 5130, - 5093, - 5078 - ]], - [[ - 5095, - 5072, - 5076 - ]], - [[ - 5326, - 5195, - 5327 - ]], - [[ - 5163, - 5196, - 5195 - ]], - [[ - 5383, - 5428, - 4860 - ]], - [[ - 5428, - 4868, - 4866 - ]], - [[ - 4925, - 4933, - 4935 - ]], - [[ - 5354, - 5162, - 4933 - ]], - [[ - 5425, - 5386, - 5399 - ]], - [[ - 4958, - 5409, - 5386 - ]], - [[ - 5129, - 5093, - 5130 - ]], - [[ - 5129, - 5094, - 5093 - ]], - [[ - 4860, - 5428, - 4863 - ]], - [[ - 5383, - 4868, - 5428 - ]], - [[ - 5377, - 5296, - 5358 - ]], - [[ - 5197, - 5196, - 5296 - ]], - [[ - 5410, - 5429, - 5435 - ]], - [[ - 5415, - 5432, - 5416 - ]], - [[ - 5429, - 5414, - 5430 - ]], - [[ - 5414, - 5412, - 5415 - ]], - [[ - 4963, - 5398, - 5201 - ]], - [[ - 5427, - 5421, - 5399 - ]], - [[ - 5219, - 5241, - 5240 - ]], - [[ - 5238, - 5247, - 5241 - ]], - [[ - 4892, - 4888, - 5300 - ]], - [[ - 4927, - 4889, - 4888 - ]], - [[ - 5423, - 5395, - 5424 - ]], - [[ - 5390, - 4963, - 5393 - ]], - [[ - 4805, - 5430, - 5341 - ]], - [[ - 4805, - 4964, - 5430 - ]], - [[ - 4968, - 5380, - 5434 - ]], - [[ - 4968, - 5135, - 5380 - ]], - [[ - 4882, - 4881, - 4949 - ]], - [[ - 4945, - 5272, - 4948 - ]], - [[ - 5378, - 5420, - 5354 - ]], - [[ - 5358, - 5196, - 5420 - ]], - [[ - 5377, - 5378, - 4926 - ]], - [[ - 5358, - 5420, - 5378 - ]], - [[ - 4963, - 5391, - 5427 - ]], - [[ - 5390, - 5423, - 5391 - ]], - [[ - 5396, - 5393, - 4965 - ]], - [[ - 5396, - 5394, - 5393 - ]], - [[ - 5272, - 5249, - 5270 - ]], - [[ - 4891, - 5115, - 5249 - ]], - [[ - 5271, - 4948, - 5272 - ]], - [[ - 5271, - 4949, - 4948 - ]], - [[ - 5243, - 4940, - 4942 - ]], - [[ - 5266, - 5267, - 4940 - ]], - [[ - 5005, - 5375, - 5057 - ]], - [[ - 5413, - 5014, - 5375 - ]], - [[ - 5421, - 5425, - 5399 - ]], - [[ - 4958, - 5386, - 5425 - ]], - [[ - 5431, - 5405, - 5432 - ]], - [[ - 5419, - 5430, - 5405 - ]], - [[ - 5409, - 5400, - 5401 - ]], - [[ - 5409, - 4958, - 5400 - ]], - [[ - 4940, - 5344, - 4941 - ]], - [[ - 4940, - 5267, - 5344 - ]], - [[ - 5429, - 5202, - 5435 - ]], - [[ - 5430, - 4964, - 5202 - ]], - [[ - 4835, - 4830, - 5033 - ]], - [[ - 4832, - 4990, - 4830 - ]], - [[ - 4828, - 4831, - 4825 - ]], - [[ - 4828, - 4834, - 4831 - ]], - [[ - 5297, - 5377, - 5325 - ]], - [[ - 5297, - 5296, - 5377 - ]], - [[ - 5370, - 5297, - 5325 - ]], - [[ - 5370, - 5197, - 5297 - ]], - [[ - 5410, - 5412, - 5414 - ]], - [[ - 5411, - 5417, - 5412 - ]], - [[ - 5430, - 5414, - 5416 - ]], - [[ - 5429, - 5410, - 5414 - ]], - [[ - 5398, - 5427, - 5399 - ]], - [[ - 5398, - 4963, - 5427 - ]], - [[ - 4967, - 5431, - 5415 - ]], - [[ - 4967, - 5405, - 5431 - ]], - [[ - 5198, - 5326, - 5371 - ]], - [[ - 5198, - 5163, - 5326 - ]], - [[ - 4962, - 4961, - 4867 - ]], - [[ - 4960, - 5422, - 4961 - ]], - [[ - 4845, - 4843, - 4839 - ]], - [[ - 4845, - 5407, - 4843 - ]], - [[ - 5308, - 5312, - 5315 - ]], - [[ - 5313, - 5345, - 5312 - ]], - [[ - 5237, - 5242, - 5243 - ]], - [[ - 5279, - 5218, - 5242 - ]], - [[ - 5411, - 5436, - 5417 - ]], - [[ - 5411, - 5410, - 5436 - ]], - [[ - 5300, - 4887, - 5301 - ]], - [[ - 5300, - 4888, - 4887 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b2c1743cc-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efcc0b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:56:35.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 4879, - 4880, - 5437 - ]], - [[ - 5438, - 5439, - 5385 - ]], - [[ - 5440, - 5441, - 5442 - ]], - [[ - 5440, - 5443, - 5444 - ]], - [[ - 5445, - 5446, - 5447 - ]], - [[ - 5448, - 5449, - 5446 - ]], - [[ - 5450, - 5451, - 5452 - ]], - [[ - 5450, - 5453, - 5454 - ]], - [[ - 5455, - 5456, - 5457 - ]], - [[ - 5455, - 5457, - 5458 - ]], - [[ - 5459, - 5460, - 5461 - ]], - [[ - 5460, - 5462, - 5461 - ]], - [[ - 5463, - 5464, - 5465 - ]], - [[ - 5466, - 5467, - 5468 - ]], - [[ - 5467, - 5469, - 5468 - ]], - [[ - 5470, - 5471, - 5472 - ]], - [[ - 5473, - 5474, - 5475 - ]], - [[ - 5476, - 5459, - 5461 - ]], - [[ - 5466, - 5468, - 5465 - ]], - [[ - 5469, - 4343, - 5468 - ]], - [[ - 5461, - 5463, - 5465 - ]], - [[ - 5477, - 5478, - 5479 - ]], - [[ - 5464, - 5466, - 5465 - ]], - [[ - 5480, - 5481, - 5482 - ]], - [[ - 5462, - 5463, - 5461 - ]], - [[ - 5483, - 5482, - 5484 - ]], - [[ - 5485, - 5486, - 5487 - ]], - [[ - 5459, - 5458, - 5460 - ]], - [[ - 5455, - 5454, - 5456 - ]], - [[ - 5450, - 5452, - 5453 - ]], - [[ - 5488, - 5475, - 5489 - ]], - [[ - 5446, - 5490, - 5448 - ]], - [[ - 5490, - 5446, - 5491 - ]], - [[ - 5491, - 5446, - 5445 - ]], - [[ - 5447, - 5440, - 5492 - ]], - [[ - 5440, - 5442, - 5443 - ]], - [[ - 5488, - 5493, - 5441 - ]], - [[ - 5493, - 5488, - 5494 - ]], - [[ - 5488, - 5489, - 5495 - ]], - [[ - 5475, - 5496, - 5489 - ]], - [[ - 5497, - 5498, - 5499 - ]], - [[ - 5496, - 5475, - 5500 - ]], - [[ - 5500, - 5475, - 5474 - ]], - [[ - 5475, - 5501, - 5473 - ]], - [[ - 5475, - 5502, - 5501 - ]], - [[ - 5503, - 5504, - 5505 - ]], - [[ - 5506, - 5503, - 5505 - ]], - [[ - 5507, - 5506, - 5505 - ]], - [[ - 5508, - 5507, - 5505 - ]], - [[ - 5509, - 5508, - 5505 - ]], - [[ - 5510, - 5511, - 5512 - ]], - [[ - 5513, - 5505, - 5514 - ]], - [[ - 5514, - 5505, - 5515 - ]], - [[ - 5515, - 5505, - 5516 - ]], - [[ - 5517, - 5515, - 5516 - ]], - [[ - 5518, - 5517, - 5516 - ]], - [[ - 5519, - 5518, - 5516 - ]], - [[ - 5517, - 5518, - 5520 - ]], - [[ - 5520, - 5518, - 5521 - ]], - [[ - 5521, - 5518, - 5522 - ]], - [[ - 5522, - 5518, - 5523 - ]], - [[ - 5518, - 5487, - 5524 - ]], - [[ - 5525, - 5523, - 5518 - ]], - [[ - 5526, - 5525, - 5518 - ]], - [[ - 5527, - 5526, - 5518 - ]], - [[ - 5528, - 5529, - 5483 - ]], - [[ - 5530, - 5531, - 5532 - ]], - [[ - 5485, - 5533, - 5486 - ]], - [[ - 4927, - 5486, - 5534 - ]], - [[ - 5535, - 5536, - 5537 - ]], - [[ - 5538, - 5539, - 5540 - ]], - [[ - 5541, - 5485, - 5487 - ]], - [[ - 5542, - 5543, - 5544 - ]], - [[ - 5302, - 5533, - 5545 - ]], - [[ - 5546, - 5547, - 5548 - ]], - [[ - 5549, - 5550, - 5551 - ]], - [[ - 5299, - 5519, - 5552 - ]], - [[ - 5553, - 5554, - 5555 - ]], - [[ - 5556, - 5557, - 5542 - ]], - [[ - 5552, - 5558, - 5299 - ]], - [[ - 4855, - 5559, - 4853 - ]], - [[ - 4842, - 5560, - 5561 - ]], - [[ - 5562, - 5563, - 4869 - ]], - [[ - 5558, - 5371, - 5328 - ]], - [[ - 5556, - 5198, - 5564 - ]], - [[ - 5565, - 5566, - 5567 - ]], - [[ - 5166, - 5438, - 5385 - ]], - [[ - 5565, - 5567, - 5568 - ]], - [[ - 5569, - 4939, - 5570 - ]], - [[ - 5571, - 5572, - 5573 - ]], - [[ - 5570, - 4939, - 5385 - ]], - [[ - 5574, - 5575, - 5576 - ]], - [[ - 5577, - 5223, - 5368 - ]], - [[ - 5578, - 5579, - 5580 - ]], - [[ - 5581, - 5582, - 5583 - ]], - [[ - 5584, - 5585, - 5586 - ]], - [[ - 5587, - 5588, - 5551 - ]], - [[ - 5589, - 5590, - 5591 - ]], - [[ - 5592, - 5593, - 5594 - ]], - [[ - 5581, - 5583, - 5595 - ]], - [[ - 5563, - 4949, - 5596 - ]], - [[ - 5563, - 4882, - 4949 - ]], - [[ - 5563, - 5437, - 4882 - ]], - [[ - 5437, - 4880, - 4882 - ]], - [[ - 4879, - 5437, - 4877 - ]], - [[ - 5437, - 4876, - 4950 - ]], - [[ - 4873, - 4875, - 5562 - ]], - [[ - 4873, - 5562, - 4870 - ]], - [[ - 4870, - 5562, - 4871 - ]], - [[ - 4871, - 5562, - 4869 - ]], - [[ - 4864, - 4883, - 5597 - ]], - [[ - 5597, - 4883, - 4869 - ]], - [[ - 5563, - 5598, - 5597 - ]], - [[ - 5597, - 4865, - 4864 - ]], - [[ - 5599, - 5600, - 5576 - ]], - [[ - 5601, - 5539, - 5602 - ]], - [[ - 5603, - 4861, - 5433 - ]], - [[ - 5604, - 5605, - 5606 - ]], - [[ - 5598, - 5607, - 4858 - ]], - [[ - 5608, - 5609, - 5610 - ]], - [[ - 5559, - 5598, - 5611 - ]], - [[ - 5607, - 5559, - 4855 - ]], - [[ - 5612, - 5611, - 5613 - ]], - [[ - 5614, - 5615, - 5616 - ]], - [[ - 4853, - 5559, - 4854 - ]], - [[ - 5617, - 5618, - 5619 - ]], - [[ - 4852, - 4854, - 5620 - ]], - [[ - 4852, - 5620, - 4849 - ]], - [[ - 5621, - 5622, - 5623 - ]], - [[ - 4844, - 4849, - 5620 - ]], - [[ - 5620, - 5611, - 5624 - ]], - [[ - 4845, - 4844, - 5624 - ]], - [[ - 5561, - 5407, - 4845 - ]], - [[ - 5625, - 5626, - 5627 - ]], - [[ - 5539, - 5601, - 5540 - ]], - [[ - 5539, - 5538, - 5608 - ]], - [[ - 4836, - 5628, - 5001 - ]], - [[ - 5629, - 5033, - 5032 - ]], - [[ - 5629, - 5630, - 5033 - ]], - [[ - 5617, - 5631, - 5618 - ]], - [[ - 5033, - 5630, - 4835 - ]], - [[ - 5632, - 5633, - 4814 - ]], - [[ - 5634, - 5628, - 5635 - ]], - [[ - 5628, - 4826, - 5001 - ]], - [[ - 5628, - 4836, - 4835 - ]], - [[ - 5636, - 5637, - 4804 - ]], - [[ - 5638, - 5639, - 5622 - ]], - [[ - 5640, - 4976, - 5103 - ]], - [[ - 5639, - 5641, - 5622 - ]], - [[ - 4976, - 5632, - 4821 - ]], - [[ - 4821, - 5632, - 5221 - ]], - [[ - 5221, - 5632, - 4817 - ]], - [[ - 4817, - 5632, - 4814 - ]], - [[ - 4814, - 5633, - 4815 - ]], - [[ - 4815, - 5633, - 4811 - ]], - [[ - 5642, - 5643, - 5623 - ]], - [[ - 5623, - 5643, - 5621 - ]], - [[ - 5510, - 5644, - 5645 - ]], - [[ - 5646, - 5505, - 5513 - ]], - [[ - 5646, - 5509, - 5505 - ]], - [[ - 5511, - 5510, - 5647 - ]], - [[ - 5504, - 5502, - 5505 - ]], - [[ - 5494, - 5488, - 5495 - ]], - [[ - 5648, - 5516, - 5505 - ]], - [[ - 5492, - 5440, - 5444 - ]], - [[ - 5505, - 5502, - 5475 - ]], - [[ - 5451, - 5450, - 5449 - ]], - [[ - 5488, - 5441, - 5440 - ]], - [[ - 5440, - 5447, - 5446 - ]], - [[ - 5455, - 5450, - 5454 - ]], - [[ - 5446, - 5449, - 5450 - ]], - [[ - 5649, - 5459, - 5476 - ]], - [[ - 5650, - 5651, - 5645 - ]], - [[ - 5458, - 5459, - 5455 - ]], - [[ - 5649, - 5651, - 5652 - ]], - [[ - 5459, - 5649, - 5652 - ]], - [[ - 5651, - 5653, - 5652 - ]], - [[ - 5651, - 5650, - 5653 - ]], - [[ - 5645, - 5644, - 5650 - ]], - [[ - 5510, - 5645, - 5654 - ]], - [[ - 5645, - 5655, - 5654 - ]], - [[ - 5655, - 5656, - 5654 - ]], - [[ - 5657, - 5629, - 5658 - ]], - [[ - 5659, - 5660, - 5661 - ]], - [[ - 5662, - 5661, - 5660 - ]], - [[ - 5663, - 5135, - 5616 - ]], - [[ - 5606, - 5659, - 5661 - ]], - [[ - 5659, - 5664, - 5660 - ]], - [[ - 5665, - 5666, - 5617 - ]], - [[ - 5665, - 4811, - 5631 - ]], - [[ - 5667, - 5668, - 5669 - ]], - [[ - 5606, - 5629, - 5032 - ]], - [[ - 5616, - 5662, - 5664 - ]], - [[ - 5614, - 5670, - 5615 - ]], - [[ - 5615, - 5671, - 5605 - ]], - [[ - 5657, - 5635, - 5629 - ]], - [[ - 5616, - 5664, - 5663 - ]], - [[ - 5662, - 5660, - 5664 - ]], - [[ - 5608, - 5672, - 5616 - ]], - [[ - 5673, - 5668, - 5614 - ]], - [[ - 5638, - 5674, - 5675 - ]], - [[ - 5676, - 5677, - 5678 - ]], - [[ - 5679, - 5680, - 5628 - ]], - [[ - 5628, - 4835, - 5630 - ]], - [[ - 5681, - 5682, - 5683 - ]], - [[ - 5634, - 5679, - 5628 - ]], - [[ - 5631, - 5617, - 5666 - ]], - [[ - 5684, - 5677, - 5685 - ]], - [[ - 5673, - 5614, - 5616 - ]], - [[ - 5686, - 5687, - 5688 - ]], - [[ - 4811, - 5665, - 5636 - ]], - [[ - 4811, - 5633, - 5631 - ]], - [[ - 5539, - 5608, - 5616 - ]], - [[ - 5672, - 5673, - 5616 - ]], - [[ - 5604, - 5606, - 5661 - ]], - [[ - 5032, - 5135, - 5663 - ]], - [[ - 5032, - 5689, - 5606 - ]], - [[ - 5032, - 5659, - 5689 - ]], - [[ - 5627, - 5677, - 5690 - ]], - [[ - 5691, - 5641, - 5639 - ]], - [[ - 5627, - 5692, - 5685 - ]], - [[ - 5627, - 5685, - 5677 - ]], - [[ - 5693, - 5694, - 5609 - ]], - [[ - 5671, - 5695, - 5605 - ]], - [[ - 5668, - 5696, - 5614 - ]], - [[ - 5687, - 5694, - 5688 - ]], - [[ - 5696, - 5697, - 5670 - ]], - [[ - 5668, - 5667, - 5698 - ]], - [[ - 5610, - 5669, - 5672 - ]], - [[ - 5610, - 5667, - 5669 - ]], - [[ - 5632, - 5640, - 5693 - ]], - [[ - 5640, - 5103, - 4826 - ]], - [[ - 5681, - 5683, - 5657 - ]], - [[ - 5699, - 5679, - 5634 - ]], - [[ - 5693, - 5682, - 5694 - ]], - [[ - 5695, - 5657, - 5658 - ]], - [[ - 5691, - 5639, - 5700 - ]], - [[ - 5691, - 5678, - 5641 - ]], - [[ - 4811, - 5636, - 4804 - ]], - [[ - 5636, - 5619, - 5678 - ]], - [[ - 5636, - 5684, - 5637 - ]], - [[ - 5636, - 5678, - 5684 - ]], - [[ - 5637, - 5685, - 5692 - ]], - [[ - 5637, - 5684, - 5685 - ]], - [[ - 5625, - 5701, - 5626 - ]], - [[ - 4804, - 5637, - 5692 - ]], - [[ - 5675, - 5701, - 5702 - ]], - [[ - 5626, - 5703, - 5627 - ]], - [[ - 5625, - 5702, - 5701 - ]], - [[ - 5703, - 4804, - 5692 - ]], - [[ - 5704, - 5702, - 5705 - ]], - [[ - 5700, - 5675, - 5702 - ]], - [[ - 5690, - 5705, - 5627 - ]], - [[ - 5690, - 5704, - 5705 - ]], - [[ - 5638, - 5675, - 5700 - ]], - [[ - 5638, - 5621, - 5674 - ]], - [[ - 5694, - 5682, - 5688 - ]], - [[ - 5683, - 5634, - 5657 - ]], - [[ - 5706, - 5707, - 5536 - ]], - [[ - 5708, - 5590, - 5709 - ]], - [[ - 5710, - 5711, - 5712 - ]], - [[ - 5713, - 5714, - 5715 - ]], - [[ - 5586, - 5716, - 5717 - ]], - [[ - 5712, - 5711, - 5718 - ]], - [[ - 5662, - 5604, - 5661 - ]], - [[ - 5658, - 5629, - 5605 - ]], - [[ - 5616, - 5615, - 5604 - ]], - [[ - 5670, - 5697, - 5687 - ]], - [[ - 5670, - 5687, - 5615 - ]], - [[ - 5686, - 5681, - 5695 - ]], - [[ - 5615, - 5687, - 5671 - ]], - [[ - 5697, - 5694, - 5687 - ]], - [[ - 5705, - 5625, - 5627 - ]], - [[ - 5705, - 5702, - 5625 - ]], - [[ - 5693, - 5640, - 5679 - ]], - [[ - 5632, - 4976, - 5640 - ]], - [[ - 5719, - 5710, - 5720 - ]], - [[ - 5547, - 5546, - 5721 - ]], - [[ - 5617, - 5636, - 5665 - ]], - [[ - 5617, - 5619, - 5636 - ]], - [[ - 5684, - 5678, - 5677 - ]], - [[ - 5619, - 5641, - 5678 - ]], - [[ - 5675, - 5674, - 5701 - ]], - [[ - 5621, - 4804, - 5674 - ]], - [[ - 5702, - 5704, - 5700 - ]], - [[ - 5690, - 5676, - 5704 - ]], - [[ - 5722, - 5600, - 5723 - ]], - [[ - 5722, - 5574, - 5576 - ]], - [[ - 5724, - 5725, - 5726 - ]], - [[ - 5727, - 5588, - 5728 - ]], - [[ - 5554, - 5723, - 5729 - ]], - [[ - 5730, - 5731, - 5732 - ]], - [[ - 5708, - 5733, - 5555 - ]], - [[ - 5734, - 5735, - 5714 - ]], - [[ - 5736, - 5580, - 5728 - ]], - [[ - 5550, - 5549, - 5737 - ]], - [[ - 5736, - 5728, - 5738 - ]], - [[ - 5739, - 5740, - 5583 - ]], - [[ - 5551, - 5741, - 5587 - ]], - [[ - 5742, - 5743, - 5248 - ]], - [[ - 5744, - 5667, - 5609 - ]], - [[ - 5698, - 5744, - 5696 - ]], - [[ - 5744, - 5698, - 5667 - ]], - [[ - 5744, - 5697, - 5696 - ]], - [[ - 5745, - 5746, - 5747 - ]], - [[ - 5748, - 5531, - 5749 - ]], - [[ - 5693, - 5683, - 5682 - ]], - [[ - 5693, - 5679, - 5699 - ]], - [[ - 5683, - 5699, - 5634 - ]], - [[ - 5683, - 5693, - 5699 - ]], - [[ - 5750, - 5716, - 5751 - ]], - [[ - 5728, - 5588, - 5587 - ]], - [[ - 5752, - 5751, - 5732 - ]], - [[ - 5584, - 5717, - 5753 - ]], - [[ - 5731, - 5752, - 5732 - ]], - [[ - 5753, - 5754, - 5755 - ]], - [[ - 5751, - 5716, - 5756 - ]], - [[ - 5720, - 5757, - 5719 - ]], - [[ - 5758, - 5717, - 5716 - ]], - [[ - 5759, - 5147, - 5760 - ]], - [[ - 5761, - 5578, - 5580 - ]], - [[ - 5579, - 5595, - 5762 - ]], - [[ - 5758, - 5763, - 5717 - ]], - [[ - 5754, - 5281, - 5755 - ]], - [[ - 5587, - 5738, - 5728 - ]], - [[ - 5732, - 5736, - 5738 - ]], - [[ - 5669, - 5673, - 5672 - ]], - [[ - 5669, - 5668, - 5673 - ]], - [[ - 5640, - 5680, - 5679 - ]], - [[ - 5640, - 4826, - 5628 - ]], - [[ - 5764, - 5765, - 5567 - ]], - [[ - 5766, - 5571, - 5767 - ]], - [[ - 5768, - 5769, - 5770 - ]], - [[ - 5498, - 5771, - 5499 - ]], - [[ - 5674, - 5626, - 5701 - ]], - [[ - 5674, - 4804, - 5626 - ]], - [[ - 5627, - 5703, - 5692 - ]], - [[ - 5626, - 4804, - 5703 - ]], - [[ - 5608, - 5610, - 5672 - ]], - [[ - 5609, - 5667, - 5610 - ]], - [[ - 5772, - 5709, - 5773 - ]], - [[ - 5774, - 5588, - 5727 - ]], - [[ - 5761, - 5580, - 5736 - ]], - [[ - 5736, - 5751, - 5756 - ]], - [[ - 5749, - 5721, - 5775 - ]], - [[ - 5290, - 5223, - 5775 - ]], - [[ - 5710, - 5548, - 5711 - ]], - [[ - 5546, - 5776, - 5290 - ]], - [[ - 5695, - 5681, - 5657 - ]], - [[ - 5688, - 5682, - 5681 - ]], - [[ - 5777, - 5778, - 5779 - ]], - [[ - 5747, - 5746, - 5780 - ]], - [[ - 5738, - 5730, - 5732 - ]], - [[ - 5781, - 5248, - 5217 - ]], - [[ - 5773, - 5739, - 5583 - ]], - [[ - 5782, - 5783, - 5727 - ]], - [[ - 5135, - 5539, - 5616 - ]], - [[ - 5538, - 5609, - 5608 - ]], - [[ - 5547, - 5721, - 5749 - ]], - [[ - 5721, - 5290, - 5775 - ]], - [[ - 5547, - 5749, - 5531 - ]], - [[ - 5775, - 5223, - 5577 - ]], - [[ - 5532, - 5784, - 5530 - ]], - [[ - 5749, - 5775, - 5577 - ]], - [[ - 5767, - 5785, - 5766 - ]], - [[ - 5786, - 5787, - 5788 - ]], - [[ - 5572, - 5766, - 5789 - ]], - [[ - 5790, - 5748, - 5791 - ]], - [[ - 5605, - 5695, - 5658 - ]], - [[ - 5671, - 5687, - 5686 - ]], - [[ - 5681, - 5686, - 5688 - ]], - [[ - 5695, - 5671, - 5686 - ]], - [[ - 5694, - 5744, - 5609 - ]], - [[ - 5694, - 5697, - 5744 - ]], - [[ - 5792, - 5793, - 5794 - ]], - [[ - 5766, - 5785, - 5795 - ]], - [[ - 5536, - 5707, - 5796 - ]], - [[ - 5706, - 5797, - 5707 - ]], - [[ - 5787, - 5795, - 5532 - ]], - [[ - 5748, - 5749, - 5791 - ]], - [[ - 5766, - 5795, - 5787 - ]], - [[ - 5798, - 5799, - 5800 - ]], - [[ - 5659, - 5663, - 5664 - ]], - [[ - 5659, - 5032, - 5663 - ]], - [[ - 5732, - 5751, - 5736 - ]], - [[ - 5752, - 5750, - 5751 - ]], - [[ - 5801, - 5802, - 5750 - ]], - [[ - 5752, - 5731, - 5750 - ]], - [[ - 5725, - 5803, - 5804 - ]], - [[ - 5805, - 5750, - 5804 - ]], - [[ - 5806, - 5763, - 5803 - ]], - [[ - 5758, - 5750, - 5805 - ]], - [[ - 5757, - 5720, - 5807 - ]], - [[ - 5581, - 5595, - 5579 - ]], - [[ - 5712, - 5720, - 5710 - ]], - [[ - 5712, - 5718, - 5808 - ]], - [[ - 5809, - 5810, - 5742 - ]], - [[ - 5743, - 5271, - 5248 - ]], - [[ - 5742, - 5724, - 5809 - ]], - [[ - 5801, - 5750, - 5731 - ]], - [[ - 5811, - 5566, - 5812 - ]], - [[ - 5813, - 5814, - 5707 - ]], - [[ - 5815, - 5765, - 5764 - ]], - [[ - 4924, - 4923, - 5569 - ]], - [[ - 5166, - 5816, - 5817 - ]], - [[ - 5818, - 5569, - 5570 - ]], - [[ - 5819, - 5815, - 5764 - ]], - [[ - 5814, - 5536, - 5796 - ]], - [[ - 5820, - 5818, - 5570 - ]], - [[ - 5821, - 5822, - 5820 - ]], - [[ - 5707, - 5770, - 5813 - ]], - [[ - 5484, - 5482, - 5821 - ]], - [[ - 5439, - 5570, - 5385 - ]], - [[ - 5569, - 5765, - 4924 - ]], - [[ - 5724, - 5823, - 5725 - ]], - [[ - 5803, - 5805, - 5804 - ]], - [[ - 5802, - 5801, - 5809 - ]], - [[ - 5802, - 5804, - 5750 - ]], - [[ - 5809, - 5730, - 5592 - ]], - [[ - 5801, - 5731, - 5730 - ]], - [[ - 5792, - 5794, - 5824 - ]], - [[ - 5793, - 5825, - 5794 - ]], - [[ - 5788, - 5787, - 5532 - ]], - [[ - 5720, - 5808, - 5826 - ]], - [[ - 5827, - 5788, - 5790 - ]], - [[ - 5532, - 5531, - 5828 - ]], - [[ - 5635, - 5628, - 5630 - ]], - [[ - 5680, - 5640, - 5628 - ]], - [[ - 5629, - 5635, - 5630 - ]], - [[ - 5657, - 5634, - 5635 - ]], - [[ - 5829, - 5729, - 5590 - ]], - [[ - 5729, - 5591, - 5590 - ]], - [[ - 5704, - 5691, - 5700 - ]], - [[ - 5704, - 5678, - 5691 - ]], - [[ - 5592, - 5830, - 5809 - ]], - [[ - 4949, - 5271, - 5830 - ]], - [[ - 5730, - 5809, - 5801 - ]], - [[ - 5830, - 5810, - 5809 - ]], - [[ - 5603, - 4857, - 4862 - ]], - [[ - 5596, - 5723, - 5613 - ]], - [[ - 5743, - 5742, - 5810 - ]], - [[ - 5831, - 5823, - 5724 - ]], - [[ - 5832, - 5811, - 5812 - ]], - [[ - 5764, - 5567, - 5566 - ]], - [[ - 5833, - 5812, - 5834 - ]], - [[ - 5835, - 5735, - 5832 - ]], - [[ - 5715, - 5836, - 5713 - ]], - [[ - 5819, - 5275, - 5815 - ]], - [[ - 5835, - 5832, - 5812 - ]], - [[ - 5735, - 5837, - 5811 - ]], - [[ - 5614, - 5696, - 5670 - ]], - [[ - 5668, - 5698, - 5696 - ]], - [[ - 5542, - 5544, - 5838 - ]], - [[ - 5834, - 5839, - 5537 - ]], - [[ - 5519, - 5516, - 5470 - ]], - [[ - 5817, - 5528, - 5438 - ]], - [[ - 5518, - 5840, - 5527 - ]], - [[ - 5516, - 5841, - 5511 - ]], - [[ - 5572, - 5571, - 5766 - ]], - [[ - 5767, - 5799, - 5785 - ]], - [[ - 5842, - 5544, - 5843 - ]], - [[ - 5438, - 5844, - 5439 - ]], - [[ - 5845, - 5846, - 5842 - ]], - [[ - 5847, - 5779, - 5848 - ]], - [[ - 5849, - 5756, - 5716 - ]], - [[ - 5761, - 5736, - 5756 - ]], - [[ - 5281, - 5850, - 5217 - ]], - [[ - 5763, - 5758, - 5803 - ]], - [[ - 5795, - 5784, - 5532 - ]], - [[ - 5795, - 5785, - 5851 - ]], - [[ - 5543, - 5542, - 5845 - ]], - [[ - 5852, - 5853, - 5558 - ]], - [[ - 5659, - 5606, - 5689 - ]], - [[ - 5605, - 5629, - 5606 - ]], - [[ - 5850, - 5806, - 5781 - ]], - [[ - 5831, - 5742, - 5248 - ]], - [[ - 5248, - 5781, - 5823 - ]], - [[ - 5806, - 5803, - 5725 - ]], - [[ - 5854, - 5806, - 5855 - ]], - [[ - 5856, - 5754, - 5763 - ]], - [[ - 5855, - 5725, - 5823 - ]], - [[ - 5726, - 5809, - 5724 - ]], - [[ - 5580, - 5857, - 5858 - ]], - [[ - 5580, - 5579, - 5857 - ]], - [[ - 5812, - 5833, - 5835 - ]], - [[ - 5834, - 5814, - 5833 - ]], - [[ - 5594, - 5593, - 5859 - ]], - [[ - 5730, - 5738, - 5593 - ]], - [[ - 5576, - 5600, - 5722 - ]], - [[ - 5601, - 5611, - 5612 - ]], - [[ - 5860, - 5816, - 5838 - ]], - [[ - 5557, - 5861, - 5542 - ]], - [[ - 5555, - 5780, - 5746 - ]], - [[ - 5555, - 5573, - 5780 - ]], - [[ - 5551, - 5862, - 5741 - ]], - [[ - 5863, - 5830, - 5592 - ]], - [[ - 5864, - 5865, - 5866 - ]], - [[ - 5867, - 5868, - 5869 - ]], - [[ - 5755, - 5864, - 5584 - ]], - [[ - 5760, - 5870, - 5719 - ]], - [[ - 5800, - 5871, - 5733 - ]], - [[ - 5772, - 5773, - 5583 - ]], - [[ - 5872, - 5873, - 5772 - ]], - [[ - 5873, - 5708, - 5709 - ]], - [[ - 5874, - 5771, - 5827 - ]], - [[ - 5875, - 5794, - 5825 - ]], - [[ - 5830, - 5863, - 4949 - ]], - [[ - 5741, - 5859, - 5587 - ]], - [[ - 5864, - 5866, - 5585 - ]], - [[ - 5876, - 5877, - 5866 - ]], - [[ - 5704, - 5676, - 5678 - ]], - [[ - 5690, - 5677, - 5676 - ]], - [[ - 5726, - 5725, - 5804 - ]], - [[ - 5855, - 5806, - 5725 - ]], - [[ - 5537, - 5839, - 5565 - ]], - [[ - 5878, - 5779, - 5778 - ]], - [[ - 5879, - 5565, - 5568 - ]], - [[ - 5567, - 5765, - 5568 - ]], - [[ - 5553, - 5722, - 5554 - ]], - [[ - 5553, - 5574, - 5722 - ]], - [[ - 5597, - 5433, - 4865 - ]], - [[ - 5596, - 5729, - 5723 - ]], - [[ - 5880, - 5439, - 5844 - ]], - [[ - 5880, - 5820, - 5439 - ]], - [[ - 5853, - 5861, - 5564 - ]], - [[ - 5881, - 5542, - 5861 - ]], - [[ - 5557, - 5564, - 5861 - ]], - [[ - 5198, - 5371, - 5853 - ]], - [[ - 5558, - 5882, - 5852 - ]], - [[ - 5552, - 5542, - 5881 - ]], - [[ - 5861, - 5852, - 5881 - ]], - [[ - 5853, - 5371, - 5558 - ]], - [[ - 5480, - 5883, - 5481 - ]], - [[ - 5848, - 5779, - 5878 - ]], - [[ - 5833, - 5715, - 5835 - ]], - [[ - 5833, - 5814, - 5836 - ]], - [[ - 5884, - 5885, - 5886 - ]], - [[ - 5516, - 5648, - 5841 - ]], - [[ - 5875, - 5825, - 5787 - ]], - [[ - 5793, - 5789, - 5825 - ]], - [[ - 5861, - 5853, - 5852 - ]], - [[ - 5564, - 5198, - 5853 - ]], - [[ - 5551, - 5550, - 5862 - ]], - [[ - 5551, - 5774, - 5549 - ]], - [[ - 5470, - 5478, - 5878 - ]], - [[ - 5552, - 5846, - 5845 - ]], - [[ - 5843, - 5543, - 5845 - ]], - [[ - 5843, - 5544, - 5543 - ]], - [[ - 5778, - 5886, - 5887 - ]], - [[ - 5884, - 5822, - 5885 - ]], - [[ - 5888, - 5578, - 5877 - ]], - [[ - 5581, - 5579, - 5578 - ]], - [[ - 5739, - 5589, - 5889 - ]], - [[ - 5862, - 5596, - 5741 - ]], - [[ - 5890, - 5576, - 5575 - ]], - [[ - 5890, - 5612, - 5613 - ]], - [[ - 5589, - 5709, - 5590 - ]], - [[ - 5873, - 5733, - 5708 - ]], - [[ - 5870, - 5891, - 5719 - ]], - [[ - 5892, - 5548, - 5710 - ]], - [[ - 5871, - 5800, - 5799 - ]], - [[ - 5798, - 5808, - 5893 - ]], - [[ - 5871, - 5799, - 5767 - ]], - [[ - 5808, - 5894, - 5826 - ]], - [[ - 5795, - 5851, - 5784 - ]], - [[ - 5785, - 5799, - 5851 - ]], - [[ - 5865, - 5757, - 5868 - ]], - [[ - 5869, - 5826, - 5872 - ]], - [[ - 5535, - 5745, - 5824 - ]], - [[ - 5895, - 5896, - 5553 - ]], - [[ - 5707, - 5814, - 5796 - ]], - [[ - 5834, - 5537, - 5814 - ]], - [[ - 5824, - 5745, - 5897 - ]], - [[ - 5535, - 5895, - 5745 - ]], - [[ - 5711, - 5548, - 5547 - ]], - [[ - 5892, - 5898, - 5776 - ]], - [[ - 5755, - 5759, - 5760 - ]], - [[ - 5281, - 5147, - 5759 - ]], - [[ - 5888, - 5581, - 5578 - ]], - [[ - 5867, - 5582, - 5581 - ]], - [[ - 5899, - 5714, - 5713 - ]], - [[ - 5715, - 5833, - 5836 - ]], - [[ - 5875, - 5768, - 5770 - ]], - [[ - 5836, - 5814, - 5813 - ]], - [[ - 5299, - 5558, - 5328 - ]], - [[ - 5299, - 5301, - 5519 - ]], - [[ - 5549, - 5774, - 5889 - ]], - [[ - 5740, - 5595, - 5583 - ]], - [[ - 5580, - 5858, - 5728 - ]], - [[ - 5774, - 5551, - 5588 - ]], - [[ - 5858, - 5782, - 5727 - ]], - [[ - 5739, - 5889, - 5783 - ]], - [[ - 5665, - 5631, - 5666 - ]], - [[ - 5633, - 5618, - 5631 - ]], - [[ - 5849, - 5877, - 5761 - ]], - [[ - 5876, - 5888, - 5877 - ]], - [[ - 5789, - 5792, - 5897 - ]], - [[ - 5706, - 5536, - 5535 - ]], - [[ - 5529, - 5528, - 5817 - ]], - [[ - 5880, - 5844, - 5528 - ]], - [[ - 5838, - 5544, - 5900 - ]], - [[ - 5544, - 5842, - 5900 - ]], - [[ - 5860, - 5480, - 5901 - ]], - [[ - 5860, - 5900, - 5480 - ]], - [[ - 4924, - 5815, - 5275 - ]], - [[ - 4924, - 5765, - 5815 - ]], - [[ - 5735, - 5734, - 5902 - ]], - [[ - 5903, - 5275, - 5904 - ]], - [[ - 5275, - 5819, - 5904 - ]], - [[ - 5764, - 5566, - 5837 - ]], - [[ - 5905, - 5837, - 5735 - ]], - [[ - 5905, - 5819, - 5837 - ]], - [[ - 5900, - 5860, - 5838 - ]], - [[ - 5556, - 5164, - 5198 - ]], - [[ - 5786, - 5768, - 5787 - ]], - [[ - 5797, - 5706, - 5794 - ]], - [[ - 5745, - 5789, - 5897 - ]], - [[ - 5766, - 5825, - 5789 - ]], - [[ - 5639, - 5638, - 5700 - ]], - [[ - 5622, - 5621, - 5638 - ]], - [[ - 5794, - 5706, - 5824 - ]], - [[ - 5794, - 5875, - 5797 - ]], - [[ - 5593, - 5592, - 5730 - ]], - [[ - 5594, - 5863, - 5592 - ]], - [[ - 5763, - 5754, - 5753 - ]], - [[ - 5856, - 5281, - 5754 - ]], - [[ - 5586, - 5849, - 5716 - ]], - [[ - 5866, - 5877, - 5849 - ]], - [[ - 5164, - 5816, - 5166 - ]], - [[ - 5901, - 5480, - 5529 - ]], - [[ - 5799, - 5798, - 5851 - ]], - [[ - 5800, - 5733, - 5798 - ]], - [[ - 5728, - 5858, - 5727 - ]], - [[ - 5762, - 5595, - 5740 - ]], - [[ - 5783, - 5782, - 5739 - ]], - [[ - 5858, - 5857, - 5740 - ]], - [[ - 5887, - 5885, - 5778 - ]], - [[ - 5887, - 5886, - 5885 - ]], - [[ - 5735, - 5811, - 5832 - ]], - [[ - 5837, - 5566, - 5811 - ]], - [[ - 5573, - 5767, - 5571 - ]], - [[ - 5573, - 5871, - 5767 - ]], - [[ - 5753, - 5755, - 5584 - ]], - [[ - 5281, - 5759, - 5755 - ]], - [[ - 5791, - 5874, - 5827 - ]], - [[ - 5734, - 5498, - 5906 - ]], - [[ - 5749, - 5577, - 5791 - ]], - [[ - 5907, - 5499, - 5874 - ]], - [[ - 5497, - 5907, - 5368 - ]], - [[ - 5874, - 5791, - 5907 - ]], - [[ - 5907, - 5577, - 5368 - ]], - [[ - 5907, - 5791, - 5577 - ]], - [[ - 5497, - 5499, - 5907 - ]], - [[ - 5771, - 5874, - 5499 - ]], - [[ - 5531, - 5718, - 5711 - ]], - [[ - 5893, - 5851, - 5798 - ]], - [[ - 5770, - 5797, - 5875 - ]], - [[ - 5770, - 5707, - 5797 - ]], - [[ - 5828, - 5788, - 5532 - ]], - [[ - 5825, - 5766, - 5787 - ]], - [[ - 5616, - 5604, - 5662 - ]], - [[ - 5615, - 5605, - 5604 - ]], - [[ - 5908, - 5708, - 5555 - ]], - [[ - 5554, - 5829, - 5708 - ]], - [[ - 5746, - 5553, - 5555 - ]], - [[ - 5722, - 5723, - 5554 - ]], - [[ - 5817, - 5438, - 5166 - ]], - [[ - 5528, - 5844, - 5438 - ]], - [[ - 5146, - 5870, - 5147 - ]], - [[ - 5146, - 5891, - 5870 - ]], - [[ - 5876, - 5868, - 5867 - ]], - [[ - 5826, - 5894, - 5872 - ]], - [[ - 5582, - 5869, - 5872 - ]], - [[ - 5807, - 5720, - 5826 - ]], - [[ - 5868, - 5826, - 5869 - ]], - [[ - 5720, - 5712, - 5808 - ]], - [[ - 5729, - 5737, - 5591 - ]], - [[ - 5729, - 5596, - 5862 - ]], - [[ - 5737, - 5862, - 5550 - ]], - [[ - 5737, - 5729, - 5862 - ]], - [[ - 5857, - 5762, - 5740 - ]], - [[ - 5857, - 5579, - 5762 - ]], - [[ - 5530, - 5893, - 5808 - ]], - [[ - 5909, - 5894, - 5808 - ]], - [[ - 5739, - 5773, - 5589 - ]], - [[ - 5583, - 5910, - 5772 - ]], - [[ - 5549, - 5589, - 5591 - ]], - [[ - 5773, - 5709, - 5589 - ]], - [[ - 5789, - 5747, - 5572 - ]], - [[ - 5789, - 5745, - 5747 - ]], - [[ - 5780, - 5572, - 5747 - ]], - [[ - 5780, - 5573, - 5572 - ]], - [[ - 5897, - 5792, - 5824 - ]], - [[ - 5789, - 5793, - 5792 - ]], - [[ - 5589, - 5549, - 5889 - ]], - [[ - 5591, - 5737, - 5549 - ]], - [[ - 5830, - 5911, - 5810 - ]], - [[ - 5830, - 5271, - 5743 - ]], - [[ - 5868, - 5807, - 5826 - ]], - [[ - 5868, - 5876, - 5865 - ]], - [[ - 5868, - 5757, - 5807 - ]], - [[ - 5898, - 5891, - 5776 - ]], - [[ - 5554, - 5908, - 5555 - ]], - [[ - 5554, - 5708, - 5908 - ]], - [[ - 5835, - 5714, - 5735 - ]], - [[ - 5835, - 5715, - 5714 - ]], - [[ - 5583, - 5582, - 5910 - ]], - [[ - 5867, - 5869, - 5582 - ]], - [[ - 5902, - 5903, - 5904 - ]], - [[ - 5276, - 5275, - 5903 - ]], - [[ - 5790, - 5788, - 5828 - ]], - [[ - 5827, - 5786, - 5788 - ]], - [[ - 5718, - 5530, - 5808 - ]], - [[ - 5784, - 5851, - 5893 - ]], - [[ - 5771, - 5786, - 5827 - ]], - [[ - 5899, - 5713, - 5769 - ]], - [[ - 5901, - 5529, - 5817 - ]], - [[ - 5480, - 5483, - 5529 - ]], - [[ - 5146, - 5776, - 5891 - ]], - [[ - 5146, - 5290, - 5776 - ]], - [[ - 5719, - 5898, - 5710 - ]], - [[ - 5776, - 5548, - 5892 - ]], - [[ - 5863, - 5741, - 5596 - ]], - [[ - 5594, - 5859, - 5741 - ]], - [[ - 5582, - 5872, - 5910 - ]], - [[ - 5894, - 5909, - 5733 - ]], - [[ - 4857, - 5603, - 4858 - ]], - [[ - 5613, - 5576, - 5890 - ]], - [[ - 4844, - 5620, - 5624 - ]], - [[ - 5601, - 5612, - 5912 - ]], - [[ - 5559, - 5611, - 5620 - ]], - [[ - 5598, - 5613, - 5611 - ]], - [[ - 5866, - 5865, - 5876 - ]], - [[ - 5760, - 5147, - 5870 - ]], - [[ - 5837, - 5819, - 5764 - ]], - [[ - 5905, - 5904, - 5819 - ]], - [[ - 5750, - 5758, - 5716 - ]], - [[ - 5805, - 5803, - 5758 - ]], - [[ - 5845, - 5842, - 5843 - ]], - [[ - 5846, - 5900, - 5842 - ]], - [[ - 5867, - 5888, - 5876 - ]], - [[ - 5867, - 5581, - 5888 - ]], - [[ - 5827, - 5790, - 5791 - ]], - [[ - 5828, - 5748, - 5790 - ]], - [[ - 5812, - 5839, - 5834 - ]], - [[ - 5812, - 5566, - 5565 - ]], - [[ - 5555, - 5871, - 5573 - ]], - [[ - 5733, - 5872, - 5894 - ]], - [[ - 5555, - 5733, - 5871 - ]], - [[ - 5873, - 5872, - 5733 - ]], - [[ - 5776, - 5546, - 5548 - ]], - [[ - 5290, - 5721, - 5546 - ]], - [[ - 5823, - 5831, - 5248 - ]], - [[ - 5724, - 5742, - 5831 - ]], - [[ - 5906, - 5498, - 5368 - ]], - [[ - 5498, - 5714, - 5771 - ]], - [[ - 5368, - 5498, - 5497 - ]], - [[ - 5276, - 5903, - 5902 - ]], - [[ - 5902, - 5734, - 5276 - ]], - [[ - 5714, - 5498, - 5734 - ]], - [[ - 5276, - 5906, - 5368 - ]], - [[ - 5276, - 5734, - 5906 - ]], - [[ - 5813, - 5769, - 5836 - ]], - [[ - 5899, - 5786, - 5771 - ]], - [[ - 5836, - 5769, - 5713 - ]], - [[ - 5813, - 5770, - 5769 - ]], - [[ - 5854, - 5781, - 5806 - ]], - [[ - 5217, - 5850, - 5781 - ]], - [[ - 4856, - 5607, - 4855 - ]], - [[ - 4856, - 4858, - 5607 - ]], - [[ - 5528, - 5483, - 5880 - ]], - [[ - 5480, - 5482, - 5483 - ]], - [[ - 5740, - 5782, - 5858 - ]], - [[ - 5740, - 5739, - 5782 - ]], - [[ - 5872, - 5772, - 5910 - ]], - [[ - 5873, - 5709, - 5772 - ]], - [[ - 5798, - 5909, - 5808 - ]], - [[ - 5798, - 5733, - 5909 - ]], - [[ - 5865, - 5719, - 5757 - ]], - [[ - 5865, - 5864, - 5760 - ]], - [[ - 5710, - 5898, - 5892 - ]], - [[ - 5719, - 5891, - 5898 - ]], - [[ - 5865, - 5760, - 5719 - ]], - [[ - 5864, - 5755, - 5760 - ]], - [[ - 5547, - 5531, - 5711 - ]], - [[ - 5748, - 5828, - 5531 - ]], - [[ - 5407, - 5560, - 4842 - ]], - [[ - 5561, - 4845, - 5624 - ]], - [[ - 5613, - 5599, - 5576 - ]], - [[ - 5723, - 5600, - 5599 - ]], - [[ - 5900, - 5883, - 5480 - ]], - [[ - 5481, - 5913, - 5482 - ]], - [[ - 5726, - 5802, - 5809 - ]], - [[ - 5726, - 5804, - 5802 - ]], - [[ - 4858, - 5603, - 5598 - ]], - [[ - 4862, - 4861, - 5603 - ]], - [[ - 5901, - 5816, - 5860 - ]], - [[ - 5901, - 5817, - 5816 - ]], - [[ - 5557, - 5556, - 5564 - ]], - [[ - 5816, - 5164, - 5556 - ]], - [[ - 5823, - 5854, - 5855 - ]], - [[ - 5823, - 5781, - 5854 - ]], - [[ - 5765, - 5569, - 5568 - ]], - [[ - 4923, - 4939, - 5569 - ]], - [[ - 5849, - 5761, - 5756 - ]], - [[ - 5877, - 5578, - 5761 - ]], - [[ - 5864, - 5585, - 5584 - ]], - [[ - 5866, - 5849, - 5585 - ]], - [[ - 5584, - 5586, - 5717 - ]], - [[ - 5585, - 5849, - 5586 - ]], - [[ - 5905, - 5902, - 5904 - ]], - [[ - 5905, - 5735, - 5902 - ]], - [[ - 5556, - 5838, - 5816 - ]], - [[ - 5556, - 5542, - 5838 - ]], - [[ - 5900, - 5481, - 5883 - ]], - [[ - 5885, - 5913, - 5481 - ]], - [[ - 5531, - 5530, - 5718 - ]], - [[ - 5784, - 5893, - 5530 - ]], - [[ - 5850, - 5856, - 5806 - ]], - [[ - 5753, - 5717, - 5763 - ]], - [[ - 5806, - 5856, - 5763 - ]], - [[ - 5850, - 5281, - 5856 - ]], - [[ - 5783, - 5774, - 5727 - ]], - [[ - 5783, - 5889, - 5774 - ]], - [[ - 5569, - 5818, - 5568 - ]], - [[ - 5839, - 5812, - 5565 - ]], - [[ - 5478, - 5477, - 5878 - ]], - [[ - 5647, - 5516, - 5511 - ]], - [[ - 5647, - 5510, - 5914 - ]], - [[ - 5512, - 5644, - 5510 - ]], - [[ - 5654, - 5647, - 5914 - ]], - [[ - 5470, - 5516, - 5647 - ]], - [[ - 5563, - 5613, - 5598 - ]], - [[ - 5723, - 5599, - 5613 - ]], - [[ - 5777, - 5779, - 5535 - ]], - [[ - 5536, - 5814, - 5537 - ]], - [[ - 5778, - 5777, - 5884 - ]], - [[ - 5777, - 5565, - 5879 - ]], - [[ - 5439, - 5820, - 5570 - ]], - [[ - 5879, - 5568, - 5818 - ]], - [[ - 5741, - 5863, - 5594 - ]], - [[ - 5596, - 4949, - 5863 - ]], - [[ - 5603, - 5433, - 5597 - ]], - [[ - 4875, - 4876, - 5437 - ]], - [[ - 5593, - 5587, - 5859 - ]], - [[ - 5593, - 5738, - 5587 - ]], - [[ - 5545, - 5533, - 5485 - ]], - [[ - 5533, - 5534, - 5486 - ]], - [[ - 4889, - 5533, - 5302 - ]], - [[ - 4889, - 5534, - 5533 - ]], - [[ - 5510, - 5654, - 5914 - ]], - [[ - 5656, - 5471, - 5470 - ]], - [[ - 5786, - 5899, - 5769 - ]], - [[ - 5771, - 5714, - 5899 - ]], - [[ - 5537, - 5565, - 5777 - ]], - [[ - 5847, - 5896, - 5779 - ]], - [[ - 5895, - 5535, - 5779 - ]], - [[ - 5824, - 5706, - 5535 - ]], - [[ - 5787, - 5768, - 5875 - ]], - [[ - 5786, - 5769, - 5768 - ]], - [[ - 5484, - 5820, - 5880 - ]], - [[ - 5879, - 5818, - 5820 - ]], - [[ - 5483, - 5484, - 5880 - ]], - [[ - 5482, - 5913, - 5821 - ]], - [[ - 5484, - 5821, - 5820 - ]], - [[ - 5913, - 5885, - 5822 - ]], - [[ - 5911, - 5743, - 5810 - ]], - [[ - 5911, - 5830, - 5743 - ]], - [[ - 4840, - 5915, - 5401 - ]], - [[ - 5561, - 5560, - 5407 - ]], - [[ - 5848, - 5878, - 5479 - ]], - [[ - 5656, - 5470, - 5654 - ]], - [[ - 5885, - 5519, - 5778 - ]], - [[ - 5885, - 5846, - 5519 - ]], - [[ - 5552, - 5519, - 5846 - ]], - [[ - 5301, - 5302, - 5518 - ]], - [[ - 5542, - 5552, - 5845 - ]], - [[ - 5882, - 5558, - 5552 - ]], - [[ - 5881, - 5882, - 5552 - ]], - [[ - 5881, - 5852, - 5882 - ]], - [[ - 5301, - 5518, - 5519 - ]], - [[ - 5524, - 5840, - 5518 - ]], - [[ - 5518, - 5545, - 5487 - ]], - [[ - 5518, - 5302, - 5545 - ]], - [[ - 5601, - 5624, - 5611 - ]], - [[ - 5915, - 4840, - 5561 - ]], - [[ - 5915, - 5561, - 5624 - ]], - [[ - 4840, - 4842, - 5561 - ]], - [[ - 5537, - 5777, - 5535 - ]], - [[ - 5879, - 5884, - 5777 - ]], - [[ - 5778, - 5884, - 5886 - ]], - [[ - 5822, - 5821, - 5913 - ]], - [[ - 5879, - 5822, - 5884 - ]], - [[ - 5879, - 5820, - 5822 - ]], - [[ - 5745, - 5553, - 5746 - ]], - [[ - 5896, - 5574, - 5553 - ]], - [[ - 5540, - 5601, - 5912 - ]], - [[ - 5915, - 5624, - 5601 - ]], - [[ - 5896, - 5895, - 5779 - ]], - [[ - 5553, - 5745, - 5895 - ]], - [[ - 4854, - 5559, - 5620 - ]], - [[ - 5607, - 5598, - 5559 - ]], - [[ - 5603, - 5597, - 5598 - ]], - [[ - 5437, - 4950, - 4877 - ]], - [[ - 5613, - 5563, - 5596 - ]], - [[ - 5597, - 4869, - 5563 - ]], - [[ - 5562, - 5437, - 5563 - ]], - [[ - 5562, - 4875, - 5437 - ]], - [[ - 5472, - 5478, - 5470 - ]], - [[ - 5472, - 5479, - 5478 - ]], - [[ - 5885, - 5900, - 5846 - ]], - [[ - 5885, - 5481, - 5900 - ]], - [[ - 5915, - 5602, - 5401 - ]], - [[ - 5915, - 5601, - 5602 - ]], - [[ - 5479, - 5878, - 5477 - ]], - [[ - 5470, - 5647, - 5654 - ]], - [[ - 5401, - 5539, - 5135 - ]], - [[ - 5401, - 5602, - 5539 - ]], - [[ - 5708, - 5829, - 5590 - ]], - [[ - 5554, - 5729, - 5829 - ]], - [[ - 5545, - 5541, - 5487 - ]], - [[ - 5545, - 5485, - 5541 - ]], - [[ - 5778, - 5470, - 5878 - ]], - [[ - 5778, - 5519, - 5470 - ]], - [[ - 4348, - 4343, - 5469 - ]], - [[ - 5467, - 4799, - 4348 - ]], - [[ - 5467, - 4348, - 5469 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b2c176ae8-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2015-01-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.407ee0b5c4684c8baa3e2a326ead6088", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 5916, - 5917, - 5918 - ]], - [[ - 5919, - 5920, - 5921 - ]], - [[ - 5922, - 5919, - 5921 - ]], - [[ - 5923, - 5922, - 5924 - ]], - [[ - 5925, - 5926, - 5927 - ]], - [[ - 5928, - 5927, - 5926 - ]], - [[ - 5929, - 5928, - 5926 - ]], - [[ - 5930, - 5931, - 5926 - ]], - [[ - 5932, - 5933, - 5934 - ]], - [[ - 5935, - 5933, - 5932 - ]], - [[ - 5936, - 5932, - 5937 - ]], - [[ - 5938, - 5939, - 5940 - ]], - [[ - 5941, - 5942, - 5927 - ]], - [[ - 5943, - 5944, - 5945 - ]], - [[ - 5946, - 5947, - 5948 - ]], - [[ - 5948, - 5943, - 5949 - ]], - [[ - 5949, - 5950, - 5951 - ]], - [[ - 5951, - 5950, - 5952 - ]], - [[ - 5949, - 5943, - 5950 - ]], - [[ - 5950, - 5943, - 5945 - ]], - [[ - 5947, - 5953, - 5943 - ]], - [[ - 5954, - 5955, - 5956 - ]], - [[ - 5948, - 5947, - 5943 - ]], - [[ - 5957, - 5958, - 5959 - ]], - [[ - 5960, - 5947, - 5946 - ]], - [[ - 5961, - 5962, - 5963 - ]], - [[ - 5964, - 5965, - 5966 - ]], - [[ - 5931, - 5929, - 5926 - ]], - [[ - 5967, - 5968, - 5969 - ]], - [[ - 5970, - 5971, - 5972 - ]], - [[ - 5973, - 5974, - 5975 - ]], - [[ - 5971, - 5970, - 5976 - ]], - [[ - 5977, - 5978, - 5979 - ]], - [[ - 5980, - 5981, - 5982 - ]], - [[ - 5983, - 5976, - 5984 - ]], - [[ - 5985, - 5986, - 5987 - ]], - [[ - 5963, - 5988, - 5989 - ]], - [[ - 5990, - 5955, - 5991 - ]], - [[ - 5992, - 5993, - 5956 - ]], - [[ - 5935, - 5994, - 5933 - ]], - [[ - 5995, - 5996, - 5997 - ]], - [[ - 5942, - 5996, - 5925 - ]], - [[ - 5927, - 5942, - 5925 - ]], - [[ - 5941, - 5924, - 5942 - ]], - [[ - 5941, - 5923, - 5924 - ]], - [[ - 5922, - 5921, - 5924 - ]], - [[ - 5920, - 5918, - 5917 - ]], - [[ - 5920, - 5917, - 5921 - ]], - [[ - 5916, - 5994, - 5935 - ]], - [[ - 5998, - 5999, - 5917 - ]], - [[ - 6000, - 6001, - 6002 - ]], - [[ - 6003, - 6004, - 6005 - ]], - [[ - 6006, - 5971, - 5976 - ]], - [[ - 5986, - 5974, - 5987 - ]], - [[ - 5983, - 6007, - 6006 - ]], - [[ - 5970, - 6008, - 6009 - ]], - [[ - 6010, - 6011, - 6012 - ]], - [[ - 6013, - 6014, - 6010 - ]], - [[ - 5987, - 5974, - 6004 - ]], - [[ - 5970, - 5972, - 6008 - ]], - [[ - 6015, - 6016, - 6017 - ]], - [[ - 6010, - 6014, - 6018 - ]], - [[ - 6019, - 6020, - 6021 - ]], - [[ - 6022, - 5926, - 5947 - ]], - [[ - 5972, - 6012, - 6008 - ]], - [[ - 5984, - 6023, - 6024 - ]], - [[ - 6010, - 5971, - 6013 - ]], - [[ - 6006, - 6007, - 6025 - ]], - [[ - 6026, - 6027, - 6028 - ]], - [[ - 6022, - 6029, - 6030 - ]], - [[ - 5983, - 5984, - 6031 - ]], - [[ - 6032, - 5981, - 6033 - ]], - [[ - 6034, - 5978, - 6035 - ]], - [[ - 6036, - 6037, - 6038 - ]], - [[ - 6039, - 6040, - 6034 - ]], - [[ - 6005, - 6004, - 5974 - ]], - [[ - 6036, - 6041, - 6042 - ]], - [[ - 6043, - 6044, - 6045 - ]], - [[ - 6046, - 6047, - 6048 - ]], - [[ - 6049, - 6050, - 6051 - ]], - [[ - 6012, - 6011, - 6052 - ]], - [[ - 6053, - 6054, - 6055 - ]], - [[ - 6056, - 6057, - 6058 - ]], - [[ - 6059, - 6030, - 6060 - ]], - [[ - 6052, - 6061, - 6012 - ]], - [[ - 6017, - 6016, - 6029 - ]], - [[ - 6062, - 6063, - 6064 - ]], - [[ - 6065, - 6066, - 6067 - ]], - [[ - 6068, - 6069, - 6070 - ]], - [[ - 6071, - 6072, - 6073 - ]], - [[ - 6074, - 6058, - 6070 - ]], - [[ - 6075, - 6021, - 6076 - ]], - [[ - 6068, - 6070, - 6057 - ]], - [[ - 6063, - 6077, - 6064 - ]], - [[ - 6062, - 6078, - 6063 - ]], - [[ - 6079, - 6080, - 6081 - ]], - [[ - 6069, - 6082, - 6083 - ]], - [[ - 6084, - 6085, - 6063 - ]], - [[ - 6086, - 6087, - 6082 - ]], - [[ - 6088, - 6063, - 6085 - ]], - [[ - 6089, - 6074, - 6090 - ]], - [[ - 6091, - 6063, - 6088 - ]], - [[ - 6092, - 6074, - 6093 - ]], - [[ - 6069, - 6068, - 6086 - ]], - [[ - 6077, - 6091, - 6094 - ]], - [[ - 6071, - 6073, - 6095 - ]], - [[ - 6040, - 6037, - 5979 - ]], - [[ - 5976, - 5970, - 6009 - ]], - [[ - 6096, - 6097, - 6040 - ]], - [[ - 6098, - 6099, - 6100 - ]], - [[ - 6088, - 6072, - 6101 - ]], - [[ - 6102, - 6094, - 6101 - ]], - [[ - 6103, - 6104, - 6060 - ]], - [[ - 6072, - 6088, - 6083 - ]], - [[ - 6105, - 6106, - 6107 - ]], - [[ - 6108, - 6109, - 5997 - ]], - [[ - 6000, - 6002, - 6110 - ]], - [[ - 6054, - 6111, - 6112 - ]], - [[ - 6113, - 5961, - 6114 - ]], - [[ - 6015, - 6115, - 6116 - ]], - [[ - 6117, - 6118, - 6119 - ]], - [[ - 6093, - 6069, - 6083 - ]], - [[ - 6103, - 6120, - 6121 - ]], - [[ - 6121, - 6083, - 6087 - ]], - [[ - 6069, - 6086, - 6082 - ]], - [[ - 6122, - 6030, - 6086 - ]], - [[ - 6082, - 6087, - 6083 - ]], - [[ - 6048, - 6059, - 6060 - ]], - [[ - 6083, - 6121, - 6073 - ]], - [[ - 6047, - 6086, - 6030 - ]], - [[ - 6123, - 6124, - 6125 - ]], - [[ - 6126, - 6127, - 6128 - ]], - [[ - 6035, - 6126, - 6129 - ]], - [[ - 6124, - 6130, - 5981 - ]], - [[ - 6013, - 6025, - 6014 - ]], - [[ - 6131, - 5975, - 6029 - ]], - [[ - 6041, - 6132, - 6133 - ]], - [[ - 6099, - 6024, - 6134 - ]], - [[ - 6119, - 6089, - 6085 - ]], - [[ - 6070, - 6069, - 6093 - ]], - [[ - 5987, - 6017, - 6022 - ]], - [[ - 6081, - 6110, - 6051 - ]], - [[ - 6083, - 6073, - 6072 - ]], - [[ - 6067, - 6135, - 6136 - ]], - [[ - 6137, - 6039, - 6034 - ]], - [[ - 6037, - 5977, - 5979 - ]], - [[ - 6138, - 6018, - 6014 - ]], - [[ - 6139, - 6140, - 6141 - ]], - [[ - 6142, - 6143, - 6144 - ]], - [[ - 5958, - 5998, - 5959 - ]], - [[ - 6144, - 6145, - 6142 - ]], - [[ - 6146, - 6106, - 6105 - ]], - [[ - 6106, - 6147, - 6143 - ]], - [[ - 6148, - 6109, - 6149 - ]], - [[ - 6108, - 6150, - 6149 - ]], - [[ - 6151, - 6147, - 6146 - ]], - [[ - 6152, - 6058, - 6089 - ]], - [[ - 6080, - 6079, - 6111 - ]], - [[ - 6051, - 6153, - 6154 - ]], - [[ - 6155, - 6002, - 6054 - ]], - [[ - 6051, - 6154, - 6049 - ]], - [[ - 6156, - 6155, - 6157 - ]], - [[ - 6081, - 6080, - 6001 - ]], - [[ - 6158, - 6119, - 6085 - ]], - [[ - 6159, - 6118, - 6160 - ]], - [[ - 6074, - 6070, - 6093 - ]], - [[ - 6158, - 6117, - 6119 - ]], - [[ - 6058, - 6057, - 6070 - ]], - [[ - 6092, - 6090, - 6074 - ]], - [[ - 6119, - 6152, - 6089 - ]], - [[ - 6118, - 6056, - 6152 - ]], - [[ - 6118, - 6159, - 6056 - ]], - [[ - 6161, - 6162, - 6163 - ]], - [[ - 5980, - 6124, - 5981 - ]], - [[ - 6163, - 6125, - 6164 - ]], - [[ - 6164, - 5982, - 6032 - ]], - [[ - 6165, - 6166, - 6031 - ]], - [[ - 6038, - 6041, - 6036 - ]], - [[ - 6035, - 5978, - 6126 - ]], - [[ - 5978, - 5977, - 6126 - ]], - [[ - 6098, - 6167, - 6096 - ]], - [[ - 6007, - 6161, - 6025 - ]], - [[ - 6144, - 6168, - 6145 - ]], - [[ - 6107, - 6106, - 6143 - ]], - [[ - 6169, - 6170, - 6171 - ]], - [[ - 6172, - 6173, - 6174 - ]], - [[ - 6142, - 6171, - 6105 - ]], - [[ - 6175, - 6176, - 5925 - ]], - [[ - 6177, - 6178, - 6021 - ]], - [[ - 6076, - 6021, - 6020 - ]], - [[ - 6110, - 6002, - 6155 - ]], - [[ - 6179, - 6180, - 6178 - ]], - [[ - 6181, - 6182, - 6183 - ]], - [[ - 6184, - 6163, - 6164 - ]], - [[ - 6185, - 6182, - 6181 - ]], - [[ - 6186, - 6187, - 6188 - ]], - [[ - 6182, - 6185, - 6189 - ]], - [[ - 6141, - 6190, - 6191 - ]], - [[ - 6192, - 6189, - 5968 - ]], - [[ - 6188, - 6190, - 5975 - ]], - [[ - 6193, - 6194, - 6195 - ]], - [[ - 6196, - 6197, - 6198 - ]], - [[ - 6199, - 6182, - 6192 - ]], - [[ - 6181, - 6200, - 6139 - ]], - [[ - 6140, - 6190, - 6141 - ]], - [[ - 6032, - 5982, - 5981 - ]], - [[ - 6201, - 6183, - 6202 - ]], - [[ - 5968, - 6193, - 5969 - ]], - [[ - 6112, - 6203, - 6055 - ]], - [[ - 6078, - 6204, - 6158 - ]], - [[ - 6010, - 6018, - 6011 - ]], - [[ - 6014, - 6025, - 6138 - ]], - [[ - 5977, - 6127, - 6126 - ]], - [[ - 6041, - 6133, - 6205 - ]], - [[ - 6124, - 6035, - 6130 - ]], - [[ - 6206, - 6044, - 6042 - ]], - [[ - 6130, - 6035, - 6129 - ]], - [[ - 6124, - 6123, - 6034 - ]], - [[ - 5981, - 6130, - 6033 - ]], - [[ - 6128, - 6127, - 6207 - ]], - [[ - 6208, - 6129, - 6128 - ]], - [[ - 6209, - 6208, - 6128 - ]], - [[ - 6206, - 6042, - 6205 - ]], - [[ - 6133, - 6003, - 6205 - ]], - [[ - 6127, - 6036, - 6043 - ]], - [[ - 6210, - 6005, - 5974 - ]], - [[ - 6127, - 6043, - 6207 - ]], - [[ - 6211, - 5974, - 5973 - ]], - [[ - 6212, - 6045, - 6206 - ]], - [[ - 6042, - 6041, - 6205 - ]], - [[ - 6043, - 6042, - 6044 - ]], - [[ - 6127, - 5977, - 6036 - ]], - [[ - 6094, - 6076, - 6213 - ]], - [[ - 6214, - 6215, - 6203 - ]], - [[ - 6216, - 6217, - 6020 - ]], - [[ - 6213, - 6064, - 6094 - ]], - [[ - 6121, - 6218, - 6103 - ]], - [[ - 6121, - 6087, - 6218 - ]], - [[ - 5936, - 5959, - 5932 - ]], - [[ - 6219, - 5964, - 5966 - ]], - [[ - 6151, - 6220, - 6173 - ]], - [[ - 5937, - 6176, - 6173 - ]], - [[ - 6150, - 6174, - 6148 - ]], - [[ - 6221, - 6222, - 6223 - ]], - [[ - 6150, - 6147, - 6174 - ]], - [[ - 6147, - 6106, - 6146 - ]], - [[ - 6034, - 6123, - 6137 - ]], - [[ - 6034, - 6035, - 6124 - ]], - [[ - 6224, - 6007, - 5983 - ]], - [[ - 6006, - 5976, - 5983 - ]], - [[ - 6137, - 6161, - 6039 - ]], - [[ - 6163, - 6184, - 6025 - ]], - [[ - 6166, - 5983, - 6031 - ]], - [[ - 6166, - 6098, - 6096 - ]], - [[ - 6225, - 6226, - 6227 - ]], - [[ - 6227, - 5931, - 5930 - ]], - [[ - 6157, - 6065, - 6228 - ]], - [[ - 6177, - 6179, - 6178 - ]], - [[ - 6190, - 6164, - 6229 - ]], - [[ - 6230, - 6043, - 6045 - ]], - [[ - 6231, - 6208, - 5973 - ]], - [[ - 6208, - 6130, - 6129 - ]], - [[ - 6232, - 6027, - 6026 - ]], - [[ - 5967, - 6199, - 6192 - ]], - [[ - 5984, - 6024, - 6031 - ]], - [[ - 5984, - 5976, - 6023 - ]], - [[ - 6061, - 6052, - 6115 - ]], - [[ - 6061, - 6008, - 6012 - ]], - [[ - 6026, - 6115, - 6052 - ]], - [[ - 6195, - 6194, - 6197 - ]], - [[ - 6233, - 6208, - 6209 - ]], - [[ - 6129, - 6126, - 6128 - ]], - [[ - 6234, - 6235, - 6168 - ]], - [[ - 6169, - 6171, - 6145 - ]], - [[ - 6044, - 6206, - 6045 - ]], - [[ - 6206, - 6205, - 6236 - ]], - [[ - 6206, - 6236, - 6212 - ]], - [[ - 6205, - 6003, - 6005 - ]], - [[ - 6210, - 6045, - 6212 - ]], - [[ - 6237, - 5974, - 6211 - ]], - [[ - 6209, - 6207, - 5973 - ]], - [[ - 6209, - 6128, - 6207 - ]], - [[ - 6237, - 6210, - 5974 - ]], - [[ - 6236, - 6205, - 6005 - ]], - [[ - 6184, - 6138, - 6025 - ]], - [[ - 6184, - 6200, - 6138 - ]], - [[ - 6081, - 6001, - 6110 - ]], - [[ - 6001, - 6111, - 6002 - ]], - [[ - 6202, - 6183, - 6182 - ]], - [[ - 6200, - 6184, - 6139 - ]], - [[ - 6185, - 6181, - 6141 - ]], - [[ - 6238, - 6018, - 6200 - ]], - [[ - 6027, - 6232, - 6239 - ]], - [[ - 6011, - 6018, - 6201 - ]], - [[ - 6183, - 6238, - 6181 - ]], - [[ - 6018, - 6138, - 6200 - ]], - [[ - 6181, - 6238, - 6200 - ]], - [[ - 6183, - 6201, - 6238 - ]], - [[ - 5936, - 5964, - 6240 - ]], - [[ - 5938, - 6241, - 6108 - ]], - [[ - 6242, - 5965, - 5964 - ]], - [[ - 6143, - 6150, - 6108 - ]], - [[ - 5938, - 6108, - 5939 - ]], - [[ - 6149, - 6109, - 6108 - ]], - [[ - 6107, - 6142, - 6105 - ]], - [[ - 6243, - 6244, - 6245 - ]], - [[ - 6246, - 6244, - 6243 - ]], - [[ - 6247, - 6245, - 6171 - ]], - [[ - 6150, - 6148, - 6149 - ]], - [[ - 6174, - 6248, - 6221 - ]], - [[ - 5939, - 6108, - 5997 - ]], - [[ - 6109, - 6221, - 6223 - ]], - [[ - 5939, - 5997, - 5996 - ]], - [[ - 6223, - 6176, - 6175 - ]], - [[ - 6197, - 6194, - 6249 - ]], - [[ - 5968, - 6189, - 6187 - ]], - [[ - 6185, - 6191, - 6189 - ]], - [[ - 6188, - 5975, - 6250 - ]], - [[ - 5968, - 6187, - 6193 - ]], - [[ - 6191, - 6190, - 6188 - ]], - [[ - 6251, - 6250, - 5975 - ]], - [[ - 6186, - 6193, - 6187 - ]], - [[ - 6252, - 6197, - 6249 - ]], - [[ - 6194, - 6193, - 6186 - ]], - [[ - 6198, - 6253, - 6196 - ]], - [[ - 6028, - 6115, - 6026 - ]], - [[ - 6254, - 6015, - 6116 - ]], - [[ - 6254, - 5969, - 6255 - ]], - [[ - 6207, - 6256, - 6257 - ]], - [[ - 6207, - 6043, - 6256 - ]], - [[ - 6210, - 6230, - 6045 - ]], - [[ - 6256, - 6043, - 6230 - ]], - [[ - 6207, - 6257, - 5973 - ]], - [[ - 6256, - 6230, - 6257 - ]], - [[ - 6120, - 6095, - 6073 - ]], - [[ - 6021, - 6258, - 6259 - ]], - [[ - 6019, - 6021, - 6178 - ]], - [[ - 6075, - 6102, - 6260 - ]], - [[ - 6261, - 6021, - 6259 - ]], - [[ - 6020, - 6062, - 6213 - ]], - [[ - 6072, - 6102, - 6101 - ]], - [[ - 6102, - 6071, - 6260 - ]], - [[ - 6102, - 6076, - 6094 - ]], - [[ - 6075, - 6258, - 6021 - ]], - [[ - 6020, - 6213, - 6076 - ]], - [[ - 6062, - 6064, - 6213 - ]], - [[ - 6102, - 6075, - 6076 - ]], - [[ - 6102, - 6072, - 6071 - ]], - [[ - 6104, - 6046, - 6048 - ]], - [[ - 6030, - 6029, - 6060 - ]], - [[ - 6103, - 6218, - 6046 - ]], - [[ - 6087, - 6086, - 6218 - ]], - [[ - 6056, - 6159, - 6081 - ]], - [[ - 6110, - 6153, - 6051 - ]], - [[ - 6262, - 6263, - 6049 - ]], - [[ - 6225, - 6227, - 6050 - ]], - [[ - 6156, - 6157, - 6228 - ]], - [[ - 6065, - 6226, - 6228 - ]], - [[ - 6189, - 6191, - 6187 - ]], - [[ - 6185, - 6141, - 6191 - ]], - [[ - 5993, - 5954, - 5956 - ]], - [[ - 6264, - 6265, - 6266 - ]], - [[ - 6262, - 6156, - 6228 - ]], - [[ - 6267, - 6268, - 6157 - ]], - [[ - 6153, - 6156, - 6154 - ]], - [[ - 6155, - 6267, - 6157 - ]], - [[ - 5930, - 6050, - 6227 - ]], - [[ - 6263, - 6225, - 6050 - ]], - [[ - 6043, - 6036, - 6042 - ]], - [[ - 5977, - 6037, - 6036 - ]], - [[ - 6229, - 5973, - 5975 - ]], - [[ - 6233, - 6209, - 5973 - ]], - [[ - 6033, - 6231, - 6229 - ]], - [[ - 6033, - 6130, - 6231 - ]], - [[ - 5973, - 6208, - 6233 - ]], - [[ - 6231, - 6130, - 6208 - ]], - [[ - 6257, - 6269, - 6211 - ]], - [[ - 6257, - 6230, - 6269 - ]], - [[ - 6232, - 6202, - 6239 - ]], - [[ - 6182, - 6189, - 6192 - ]], - [[ - 6199, - 6202, - 6182 - ]], - [[ - 6232, - 6201, - 6202 - ]], - [[ - 5968, - 5967, - 6192 - ]], - [[ - 6239, - 6202, - 6199 - ]], - [[ - 6125, - 5980, - 5982 - ]], - [[ - 6125, - 6124, - 5980 - ]], - [[ - 6061, - 6015, - 6017 - ]], - [[ - 6061, - 6115, - 6015 - ]], - [[ - 6122, - 6086, - 6068 - ]], - [[ - 6068, - 6057, - 6056 - ]], - [[ - 6203, - 6112, - 6078 - ]], - [[ - 6062, - 6020, - 6214 - ]], - [[ - 6083, - 6092, - 6093 - ]], - [[ - 6089, - 6058, - 6074 - ]], - [[ - 6088, - 6092, - 6083 - ]], - [[ - 6090, - 6085, - 6089 - ]], - [[ - 6022, - 6081, - 6051 - ]], - [[ - 6159, - 6160, - 6081 - ]], - [[ - 5966, - 5940, - 5957 - ]], - [[ - 5939, - 5958, - 5957 - ]], - [[ - 6219, - 5966, - 5959 - ]], - [[ - 5965, - 6242, - 5938 - ]], - [[ - 6047, - 6030, - 6059 - ]], - [[ - 6122, - 6022, - 6030 - ]], - [[ - 6270, - 6137, - 6123 - ]], - [[ - 6270, - 6162, - 6137 - ]], - [[ - 6168, - 6235, - 6271 - ]], - [[ - 6272, - 6246, - 6169 - ]], - [[ - 5936, - 6234, - 5964 - ]], - [[ - 6273, - 6274, - 6275 - ]], - [[ - 6234, - 6168, - 5964 - ]], - [[ - 6144, - 6108, - 6241 - ]], - [[ - 6242, - 6241, - 5938 - ]], - [[ - 6242, - 6168, - 6144 - ]], - [[ - 5966, - 5938, - 5940 - ]], - [[ - 5966, - 5965, - 5938 - ]], - [[ - 6249, - 6186, - 6250 - ]], - [[ - 6249, - 6194, - 6186 - ]], - [[ - 6088, - 6090, - 6092 - ]], - [[ - 6088, - 6085, - 6090 - ]], - [[ - 6041, - 6038, - 6132 - ]], - [[ - 6166, - 6165, - 6098 - ]], - [[ - 6097, - 6167, - 6132 - ]], - [[ - 6132, - 6003, - 6133 - ]], - [[ - 6103, - 6071, - 6095 - ]], - [[ - 6258, - 6136, - 6259 - ]], - [[ - 6140, - 6164, - 6190 - ]], - [[ - 6140, - 6139, - 6164 - ]], - [[ - 5955, - 6276, - 6277 - ]], - [[ - 5962, - 5961, - 6278 - ]], - [[ - 6279, - 6280, - 6281 - ]], - [[ - 6100, - 6004, - 6003 - ]], - [[ - 5956, - 5963, - 6282 - ]], - [[ - 5956, - 5955, - 5990 - ]], - [[ - 6109, - 6223, - 5997 - ]], - [[ - 5925, - 5996, - 5995 - ]], - [[ - 5995, - 6223, - 6283 - ]], - [[ - 6221, - 6148, - 6174 - ]], - [[ - 6279, - 6277, - 6280 - ]], - [[ - 6266, - 5985, - 5987 - ]], - [[ - 6284, - 6276, - 5993 - ]], - [[ - 6276, - 6280, - 6277 - ]], - [[ - 5962, - 6266, - 5947 - ]], - [[ - 6099, - 6098, - 6024 - ]], - [[ - 6061, - 6009, - 6008 - ]], - [[ - 6023, - 5976, - 6009 - ]], - [[ - 6278, - 6285, - 5962 - ]], - [[ - 6266, - 6265, - 5985 - ]], - [[ - 6278, - 5961, - 6113 - ]], - [[ - 6281, - 6280, - 6286 - ]], - [[ - 5972, - 6010, - 6012 - ]], - [[ - 5972, - 5971, - 6010 - ]], - [[ - 6100, - 5987, - 6004 - ]], - [[ - 6266, - 6287, - 6264 - ]], - [[ - 6214, - 6203, - 6078 - ]], - [[ - 6079, - 6081, - 6160 - ]], - [[ - 6063, - 6078, - 6084 - ]], - [[ - 6160, - 6118, - 6117 - ]], - [[ - 6155, - 6053, - 6180 - ]], - [[ - 6215, - 6214, - 6217 - ]], - [[ - 6053, - 6216, - 6019 - ]], - [[ - 6217, - 6214, - 6020 - ]], - [[ - 6174, - 6147, - 6172 - ]], - [[ - 6150, - 6143, - 6147 - ]], - [[ - 6260, - 6258, - 6075 - ]], - [[ - 6060, - 6136, - 6258 - ]], - [[ - 6103, - 6260, - 6071 - ]], - [[ - 6060, - 6258, - 6260 - ]], - [[ - 6100, - 6099, - 6134 - ]], - [[ - 6100, - 6003, - 6098 - ]], - [[ - 6262, - 6225, - 6263 - ]], - [[ - 6228, - 6226, - 6225 - ]], - [[ - 6121, - 6120, - 6073 - ]], - [[ - 6046, - 6104, - 6103 - ]], - [[ - 6288, - 6253, - 6198 - ]], - [[ - 6289, - 6015, - 6196 - ]], - [[ - 6250, - 6252, - 6249 - ]], - [[ - 6253, - 6290, - 6291 - ]], - [[ - 6251, - 6292, - 6252 - ]], - [[ - 6198, - 6197, - 6292 - ]], - [[ - 6288, - 6198, - 6251 - ]], - [[ - 6292, - 6197, - 6252 - ]], - [[ - 6254, - 6027, - 5967 - ]], - [[ - 6027, - 6239, - 5967 - ]], - [[ - 6193, - 6195, - 5969 - ]], - [[ - 6293, - 6015, - 6254 - ]], - [[ - 6015, - 6293, - 6196 - ]], - [[ - 6255, - 5969, - 6293 - ]], - [[ - 5966, - 5957, - 5959 - ]], - [[ - 6294, - 5939, - 5957 - ]], - [[ - 6230, - 6237, - 6269 - ]], - [[ - 6212, - 6236, - 6210 - ]], - [[ - 5960, - 6282, - 5962 - ]], - [[ - 5962, - 6282, - 5963 - ]], - [[ - 6283, - 6175, - 5925 - ]], - [[ - 6283, - 6223, - 6175 - ]], - [[ - 6055, - 6203, - 6215 - ]], - [[ - 6112, - 6295, - 6204 - ]], - [[ - 6170, - 6246, - 6243 - ]], - [[ - 6151, - 6173, - 6172 - ]], - [[ - 6218, - 6047, - 6046 - ]], - [[ - 6218, - 6086, - 6047 - ]], - [[ - 6271, - 6169, - 6145 - ]], - [[ - 6271, - 6235, - 6273 - ]], - [[ - 6271, - 6273, - 6169 - ]], - [[ - 6275, - 6244, - 6246 - ]], - [[ - 6273, - 6275, - 6272 - ]], - [[ - 6275, - 6246, - 6272 - ]], - [[ - 5983, - 6096, - 6040 - ]], - [[ - 5983, - 6166, - 6096 - ]], - [[ - 6079, - 6112, - 6111 - ]], - [[ - 6079, - 6295, - 6112 - ]], - [[ - 6278, - 6113, - 6285 - ]], - [[ - 5989, - 5988, - 6281 - ]], - [[ - 6289, - 6196, - 6291 - ]], - [[ - 6293, - 6197, - 6196 - ]], - [[ - 6011, - 6201, - 6232 - ]], - [[ - 6018, - 6238, - 6201 - ]], - [[ - 6061, - 6100, - 6134 - ]], - [[ - 6017, - 5987, - 6100 - ]], - [[ - 6264, - 6287, - 6280 - ]], - [[ - 6285, - 6113, - 6286 - ]], - [[ - 6114, - 5989, - 6281 - ]], - [[ - 6279, - 5988, - 5990 - ]], - [[ - 6155, - 6180, - 6267 - ]], - [[ - 6053, - 6178, - 6180 - ]], - [[ - 6143, - 6142, - 6107 - ]], - [[ - 6145, - 6171, - 6142 - ]], - [[ - 6190, - 6229, - 5975 - ]], - [[ - 6231, - 5973, - 6229 - ]], - [[ - 6011, - 6026, - 6052 - ]], - [[ - 6011, - 6232, - 6026 - ]], - [[ - 6027, - 6254, - 6116 - ]], - [[ - 6255, - 6293, - 6254 - ]], - [[ - 6100, - 6061, - 6017 - ]], - [[ - 6023, - 6009, - 6061 - ]], - [[ - 6097, - 6038, - 6037 - ]], - [[ - 6167, - 6098, - 6132 - ]], - [[ - 6097, - 6132, - 6038 - ]], - [[ - 6098, - 6003, - 6132 - ]], - [[ - 6173, - 6248, - 6174 - ]], - [[ - 6222, - 6176, - 6223 - ]], - [[ - 6222, - 6221, - 6248 - ]], - [[ - 6109, - 6148, - 6221 - ]], - [[ - 6137, - 6162, - 6161 - ]], - [[ - 6270, - 6125, - 6163 - ]], - [[ - 6016, - 6290, - 6029 - ]], - [[ - 6289, - 6291, - 6290 - ]], - [[ - 6110, - 6001, - 6000 - ]], - [[ - 6080, - 6111, - 6001 - ]], - [[ - 6053, - 6019, - 6178 - ]], - [[ - 6216, - 6020, - 6019 - ]], - [[ - 6116, - 6028, - 6027 - ]], - [[ - 6116, - 6115, - 6028 - ]], - [[ - 6153, - 6155, - 6156 - ]], - [[ - 6153, - 6110, - 6155 - ]], - [[ - 6181, - 6139, - 6141 - ]], - [[ - 6184, - 6164, - 6139 - ]], - [[ - 6136, - 6135, - 6259 - ]], - [[ - 6136, - 6226, - 6067 - ]], - [[ - 6254, - 5967, - 5969 - ]], - [[ - 6239, - 6199, - 5967 - ]], - [[ - 6040, - 6097, - 6037 - ]], - [[ - 6096, - 6167, - 6097 - ]], - [[ - 6016, - 6289, - 6290 - ]], - [[ - 6016, - 6015, - 6289 - ]], - [[ - 6293, - 6195, - 6197 - ]], - [[ - 6293, - 5969, - 6195 - ]], - [[ - 6290, - 6288, - 6131 - ]], - [[ - 6198, - 6292, - 6251 - ]], - [[ - 6235, - 6296, - 6273 - ]], - [[ - 6274, - 6244, - 6275 - ]], - [[ - 6157, - 6268, - 6065 - ]], - [[ - 6267, - 6180, - 6179 - ]], - [[ - 6161, - 6163, - 6025 - ]], - [[ - 6162, - 6270, - 6163 - ]], - [[ - 6257, - 6211, - 5973 - ]], - [[ - 6269, - 6237, - 6211 - ]], - [[ - 6286, - 6114, - 6281 - ]], - [[ - 5961, - 5963, - 5989 - ]], - [[ - 5947, - 6266, - 5987 - ]], - [[ - 6287, - 6286, - 6280 - ]], - [[ - 5937, - 6245, - 6244 - ]], - [[ - 5937, - 6173, - 6245 - ]], - [[ - 6196, - 6253, - 6291 - ]], - [[ - 6288, - 6290, - 6253 - ]], - [[ - 6290, - 6131, - 6029 - ]], - [[ - 6251, - 5975, - 6131 - ]], - [[ - 6229, - 6032, - 6033 - ]], - [[ - 6229, - 6164, - 6032 - ]], - [[ - 5940, - 6294, - 5957 - ]], - [[ - 5940, - 5939, - 6294 - ]], - [[ - 6134, - 6023, - 6061 - ]], - [[ - 6134, - 6024, - 6023 - ]], - [[ - 6135, - 6261, - 6259 - ]], - [[ - 6177, - 6021, - 6261 - ]], - [[ - 6135, - 6179, - 6261 - ]], - [[ - 6261, - 6179, - 6177 - ]], - [[ - 6223, - 5995, - 5997 - ]], - [[ - 6283, - 5925, - 5995 - ]], - [[ - 6007, - 6224, - 6161 - ]], - [[ - 6224, - 6040, - 6039 - ]], - [[ - 6040, - 6224, - 5983 - ]], - [[ - 6039, - 6161, - 6224 - ]], - [[ - 6171, - 6170, - 6247 - ]], - [[ - 6169, - 6246, - 6170 - ]], - [[ - 6053, - 6217, - 6216 - ]], - [[ - 6053, - 6215, - 6217 - ]], - [[ - 6156, - 6262, - 6049 - ]], - [[ - 6228, - 6225, - 6262 - ]], - [[ - 6024, - 6165, - 6031 - ]], - [[ - 6024, - 6098, - 6165 - ]], - [[ - 6120, - 6103, - 6095 - ]], - [[ - 6060, - 6260, - 6103 - ]], - [[ - 6155, - 6054, - 6053 - ]], - [[ - 6002, - 6111, - 6054 - ]], - [[ - 6234, - 6296, - 6235 - ]], - [[ - 5937, - 6244, - 6274 - ]], - [[ - 5964, - 6168, - 6242 - ]], - [[ - 6271, - 6145, - 6168 - ]], - [[ - 6108, - 6144, - 6143 - ]], - [[ - 6241, - 6242, - 6144 - ]], - [[ - 6173, - 6222, - 6248 - ]], - [[ - 6173, - 6176, - 6222 - ]], - [[ - 5936, - 6296, - 6234 - ]], - [[ - 5937, - 6274, - 6273 - ]], - [[ - 6169, - 6273, - 6272 - ]], - [[ - 6296, - 5937, - 6273 - ]], - [[ - 6171, - 6220, - 6105 - ]], - [[ - 6171, - 6245, - 6220 - ]], - [[ - 6105, - 6220, - 6146 - ]], - [[ - 6245, - 6173, - 6220 - ]], - [[ - 6147, - 6151, - 6172 - ]], - [[ - 6146, - 6220, - 6151 - ]], - [[ - 6247, - 6243, - 6245 - ]], - [[ - 6247, - 6170, - 6243 - ]], - [[ - 6091, - 6077, - 6063 - ]], - [[ - 6094, - 6064, - 6077 - ]], - [[ - 6101, - 6091, - 6088 - ]], - [[ - 6101, - 6094, - 6091 - ]], - [[ - 6288, - 6251, - 6131 - ]], - [[ - 6252, - 6250, - 6251 - ]], - [[ - 5960, - 5962, - 5947 - ]], - [[ - 6285, - 6266, - 5962 - ]], - [[ - 6118, - 6152, - 6119 - ]], - [[ - 6056, - 6058, - 6152 - ]], - [[ - 6214, - 6078, - 6062 - ]], - [[ - 6204, - 6117, - 6158 - ]], - [[ - 6112, - 6204, - 6078 - ]], - [[ - 6295, - 6160, - 6204 - ]], - [[ - 6296, - 5936, - 5937 - ]], - [[ - 6240, - 5959, - 5936 - ]], - [[ - 6268, - 6066, - 6065 - ]], - [[ - 6268, - 6267, - 6179 - ]], - [[ - 6067, - 6179, - 6135 - ]], - [[ - 6066, - 6268, - 6179 - ]], - [[ - 6006, - 6013, - 5971 - ]], - [[ - 6006, - 6025, - 6013 - ]], - [[ - 6230, - 6210, - 6237 - ]], - [[ - 6236, - 6005, - 6210 - ]], - [[ - 5988, - 5963, - 5990 - ]], - [[ - 5955, - 5954, - 6276 - ]], - [[ - 5955, - 6277, - 5991 - ]], - [[ - 5954, - 5993, - 6276 - ]], - [[ - 6136, - 6227, - 6226 - ]], - [[ - 6136, - 5931, - 6227 - ]], - [[ - 6084, - 6158, - 6085 - ]], - [[ - 6084, - 6078, - 6158 - ]], - [[ - 6053, - 6055, - 6215 - ]], - [[ - 6054, - 6112, - 6055 - ]], - [[ - 6297, - 6298, - 5935 - ]], - [[ - 6299, - 5917, - 5916 - ]], - [[ - 6285, - 6287, - 6266 - ]], - [[ - 6285, - 6286, - 6287 - ]], - [[ - 5994, - 5916, - 5918 - ]], - [[ - 6298, - 6299, - 5916 - ]], - [[ - 6240, - 6219, - 5959 - ]], - [[ - 6240, - 5964, - 6219 - ]], - [[ - 5988, - 6279, - 6281 - ]], - [[ - 5991, - 6277, - 6279 - ]], - [[ - 6164, - 6125, - 5982 - ]], - [[ - 6270, - 6123, - 6125 - ]], - [[ - 6300, - 6299, - 6298 - ]], - [[ - 5998, - 5917, - 6299 - ]], - [[ - 6065, - 6067, - 6226 - ]], - [[ - 6066, - 6179, - 6067 - ]], - [[ - 6186, - 6188, - 6250 - ]], - [[ - 6187, - 6191, - 6188 - ]], - [[ - 6297, - 5935, - 5932 - ]], - [[ - 6298, - 5916, - 5935 - ]], - [[ - 6113, - 6114, - 6286 - ]], - [[ - 5961, - 5989, - 6114 - ]], - [[ - 5998, - 6297, - 5932 - ]], - [[ - 6300, - 6298, - 6297 - ]], - [[ - 6204, - 6160, - 6117 - ]], - [[ - 6295, - 6079, - 6160 - ]], - [[ - 6104, - 6048, - 6060 - ]], - [[ - 6047, - 6059, - 6048 - ]], - [[ - 5992, - 6284, - 5993 - ]], - [[ - 6284, - 6280, - 6276 - ]], - [[ - 6156, - 6049, - 6154 - ]], - [[ - 6263, - 6050, - 6049 - ]], - [[ - 6264, - 6284, - 5992 - ]], - [[ - 6264, - 6280, - 6284 - ]], - [[ - 6279, - 5990, - 5991 - ]], - [[ - 5963, - 5956, - 5990 - ]], - [[ - 5959, - 5998, - 5932 - ]], - [[ - 5958, - 5999, - 5998 - ]], - [[ - 5998, - 6300, - 6297 - ]], - [[ - 5998, - 6299, - 6300 - ]], - [[ - 5979, - 6034, - 6040 - ]], - [[ - 5979, - 5978, - 6034 - ]], - [[ - 6022, - 6051, - 5926 - ]], - [[ - 6022, - 6056, - 6081 - ]], - [[ - 6051, - 5930, - 5926 - ]], - [[ - 6051, - 6050, - 5930 - ]], - [[ - 5987, - 6022, - 5947 - ]], - [[ - 6017, - 6029, - 6022 - ]], - [[ - 6022, - 6068, - 6056 - ]], - [[ - 6022, - 6122, - 6068 - ]], - [[ - 6301, - 5931, - 6136 - ]], - [[ - 6060, - 6301, - 6136 - ]], - [[ - 6302, - 6029, - 5975 - ]], - [[ - 5974, - 6302, - 5975 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b2c179213-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efebf449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 6303, - 6304, - 6305 - ]], - [[ - 6306, - 6307, - 6308 - ]], - [[ - 6309, - 6310, - 6311 - ]], - [[ - 6312, - 6313, - 6314 - ]], - [[ - 6315, - 6316, - 6317 - ]], - [[ - 6318, - 6315, - 6319 - ]], - [[ - 5926, - 6315, - 6317 - ]], - [[ - 6320, - 6321, - 6322 - ]], - [[ - 6307, - 6323, - 6324 - ]], - [[ - 6325, - 6315, - 6318 - ]], - [[ - 6308, - 6326, - 6327 - ]], - [[ - 6328, - 6329, - 6330 - ]], - [[ - 6331, - 6332, - 6323 - ]], - [[ - 6308, - 6327, - 6306 - ]], - [[ - 6333, - 6334, - 6335 - ]], - [[ - 6336, - 6337, - 6338 - ]], - [[ - 6339, - 6340, - 6326 - ]], - [[ - 6341, - 6342, - 6343 - ]], - [[ - 5926, - 6317, - 6344 - ]], - [[ - 6345, - 6346, - 6317 - ]], - [[ - 6347, - 6325, - 6318 - ]], - [[ - 6348, - 6349, - 6350 - ]], - [[ - 6325, - 6340, - 6315 - ]], - [[ - 6316, - 6315, - 6340 - ]], - [[ - 6351, - 6352, - 6345 - ]], - [[ - 6334, - 6353, - 6335 - ]], - [[ - 6354, - 6308, - 6324 - ]], - [[ - 6306, - 6326, - 6355 - ]], - [[ - 6333, - 6347, - 6318 - ]], - [[ - 6326, - 6340, - 6325 - ]], - [[ - 6356, - 6357, - 6329 - ]], - [[ - 6358, - 5953, - 6359 - ]], - [[ - 6360, - 6361, - 6321 - ]], - [[ - 6362, - 6363, - 6364 - ]], - [[ - 6334, - 6360, - 6365 - ]], - [[ - 6366, - 6367, - 6314 - ]], - [[ - 6328, - 6330, - 6368 - ]], - [[ - 6316, - 6339, - 6308 - ]], - [[ - 6324, - 6308, - 6307 - ]], - [[ - 6354, - 6316, - 6308 - ]], - [[ - 6365, - 6353, - 6334 - ]], - [[ - 6369, - 6370, - 6371 - ]], - [[ - 6372, - 6373, - 6362 - ]], - [[ - 6321, - 6365, - 6360 - ]], - [[ - 6353, - 6365, - 6321 - ]], - [[ - 6319, - 6315, - 6374 - ]], - [[ - 6353, - 6320, - 6373 - ]], - [[ - 6312, - 5926, - 6304 - ]], - [[ - 6375, - 6310, - 6376 - ]], - [[ - 6377, - 6378, - 6359 - ]], - [[ - 6311, - 6379, - 6309 - ]], - [[ - 6380, - 6381, - 6382 - ]], - [[ - 6335, - 6355, - 6333 - ]], - [[ - 6383, - 6307, - 6306 - ]], - [[ - 6326, - 6347, - 6355 - ]], - [[ - 6318, - 6360, - 6333 - ]], - [[ - 6384, - 6385, - 6386 - ]], - [[ - 6387, - 6388, - 6389 - ]], - [[ - 6390, - 6391, - 6392 - ]], - [[ - 6311, - 6375, - 6393 - ]], - [[ - 6351, - 6345, - 6330 - ]], - [[ - 6353, - 6373, - 6335 - ]], - [[ - 6369, - 6394, - 6395 - ]], - [[ - 6396, - 6397, - 6358 - ]], - [[ - 6333, - 6360, - 6334 - ]], - [[ - 6318, - 6319, - 6360 - ]], - [[ - 6398, - 6399, - 6400 - ]], - [[ - 6401, - 6402, - 6399 - ]], - [[ - 6320, - 6374, - 6403 - ]], - [[ - 6322, - 6361, - 6374 - ]], - [[ - 6326, - 6306, - 6327 - ]], - [[ - 6355, - 6383, - 6306 - ]], - [[ - 6404, - 6405, - 6406 - ]], - [[ - 6407, - 6408, - 6409 - ]], - [[ - 6361, - 6319, - 6374 - ]], - [[ - 6361, - 6360, - 6319 - ]], - [[ - 6320, - 6403, - 6373 - ]], - [[ - 6320, - 6322, - 6374 - ]], - [[ - 6307, - 6383, - 6323 - ]], - [[ - 6355, - 6335, - 6383 - ]], - [[ - 6316, - 6345, - 6317 - ]], - [[ - 6332, - 6354, - 6324 - ]], - [[ - 6308, - 6339, - 6326 - ]], - [[ - 6316, - 6340, - 6339 - ]], - [[ - 6322, - 6321, - 6361 - ]], - [[ - 6320, - 6353, - 6321 - ]], - [[ - 6359, - 6378, - 6410 - ]], - [[ - 6400, - 6411, - 6397 - ]], - [[ - 6355, - 6347, - 6333 - ]], - [[ - 6326, - 6325, - 6347 - ]], - [[ - 6397, - 6411, - 6394 - ]], - [[ - 6412, - 6399, - 6413 - ]], - [[ - 6414, - 6415, - 6416 - ]], - [[ - 5947, - 6377, - 6415 - ]], - [[ - 6378, - 6377, - 5947 - ]], - [[ - 6410, - 6417, - 6418 - ]], - [[ - 6419, - 6420, - 6421 - ]], - [[ - 6422, - 6176, - 6423 - ]], - [[ - 6424, - 6342, - 6425 - ]], - [[ - 6426, - 6315, - 6427 - ]], - [[ - 6428, - 6429, - 6430 - ]], - [[ - 6431, - 6432, - 6433 - ]], - [[ - 5947, - 6399, - 6378 - ]], - [[ - 6434, - 6344, - 6435 - ]], - [[ - 6404, - 6436, - 6437 - ]], - [[ - 6431, - 6433, - 6438 - ]], - [[ - 6437, - 6432, - 6370 - ]], - [[ - 6407, - 6439, - 6440 - ]], - [[ - 6367, - 6441, - 5926 - ]], - [[ - 6442, - 6443, - 6444 - ]], - [[ - 6445, - 6359, - 5953 - ]], - [[ - 6415, - 6377, - 6359 - ]], - [[ - 6430, - 6446, - 6447 - ]], - [[ - 6448, - 6449, - 6349 - ]], - [[ - 6431, - 6438, - 6371 - ]], - [[ - 6450, - 6451, - 6452 - ]], - [[ - 6453, - 6449, - 6454 - ]], - [[ - 6448, - 6454, - 6449 - ]], - [[ - 6455, - 6382, - 6456 - ]], - [[ - 6457, - 6458, - 6459 - ]], - [[ - 6455, - 6460, - 6461 - ]], - [[ - 6462, - 6449, - 6438 - ]], - [[ - 6370, - 6431, - 6371 - ]], - [[ - 6370, - 6432, - 6431 - ]], - [[ - 6408, - 6407, - 6440 - ]], - [[ - 6463, - 6464, - 6376 - ]], - [[ - 6465, - 6466, - 6467 - ]], - [[ - 6390, - 6468, - 6469 - ]], - [[ - 6387, - 6440, - 6470 - ]], - [[ - 6471, - 6472, - 6408 - ]], - [[ - 6389, - 6408, - 6440 - ]], - [[ - 6466, - 6465, - 6456 - ]], - [[ - 6473, - 6399, - 5947 - ]], - [[ - 6429, - 6453, - 6474 - ]], - [[ - 6381, - 6466, - 6456 - ]], - [[ - 6470, - 6475, - 6344 - ]], - [[ - 6476, - 6477, - 6478 - ]], - [[ - 6479, - 6477, - 6480 - ]], - [[ - 6382, - 6381, - 6456 - ]], - [[ - 6447, - 6481, - 6482 - ]], - [[ - 6476, - 6480, - 6477 - ]], - [[ - 6483, - 6459, - 6484 - ]], - [[ - 6485, - 6389, - 6388 - ]], - [[ - 6465, - 6455, - 6456 - ]], - [[ - 6486, - 6335, - 6357 - ]], - [[ - 6487, - 6488, - 6489 - ]], - [[ - 6490, - 6491, - 6492 - ]], - [[ - 6490, - 6423, - 5953 - ]], - [[ - 6493, - 6433, - 6348 - ]], - [[ - 6494, - 6495, - 6496 - ]], - [[ - 6479, - 6497, - 6466 - ]], - [[ - 6479, - 6466, - 6381 - ]], - [[ - 6432, - 6436, - 6496 - ]], - [[ - 6474, - 6473, - 6429 - ]], - [[ - 6429, - 6479, - 6381 - ]], - [[ - 6484, - 6375, - 6464 - ]], - [[ - 6494, - 6433, - 6495 - ]], - [[ - 6432, - 6437, - 6436 - ]], - [[ - 6411, - 6413, - 6394 - ]], - [[ - 6496, - 6399, - 6473 - ]], - [[ - 6498, - 6458, - 6488 - ]], - [[ - 6499, - 6385, - 6500 - ]], - [[ - 6491, - 6501, - 6386 - ]], - [[ - 6492, - 6502, - 6337 - ]], - [[ - 6503, - 6504, - 6505 - ]], - [[ - 6506, - 6507, - 6508 - ]], - [[ - 6509, - 6508, - 6510 - ]], - [[ - 6463, - 6511, - 6512 - ]], - [[ - 6513, - 6514, - 6515 - ]], - [[ - 6384, - 6317, - 6500 - ]], - [[ - 6516, - 6517, - 6513 - ]], - [[ - 6507, - 6513, - 6515 - ]], - [[ - 6317, - 6384, - 6501 - ]], - [[ - 6336, - 6338, - 6518 - ]], - [[ - 6503, - 6505, - 6519 - ]], - [[ - 6508, - 6507, - 6490 - ]], - [[ - 6490, - 6510, - 6508 - ]], - [[ - 6507, - 6491, - 6490 - ]], - [[ - 6520, - 6521, - 6519 - ]], - [[ - 6521, - 6517, - 6516 - ]], - [[ - 6497, - 6467, - 6466 - ]], - [[ - 6461, - 6476, - 6471 - ]], - [[ - 6522, - 6523, - 6524 - ]], - [[ - 6520, - 6519, - 6505 - ]], - [[ - 6525, - 6526, - 6527 - ]], - [[ - 6315, - 5926, - 6427 - ]], - [[ - 6397, - 6396, - 6400 - ]], - [[ - 6402, - 6378, - 6399 - ]], - [[ - 6398, - 6528, - 6401 - ]], - [[ - 6398, - 6529, - 6528 - ]], - [[ - 6529, - 6396, - 6358 - ]], - [[ - 6398, - 6400, - 6396 - ]], - [[ - 6529, - 6417, - 6528 - ]], - [[ - 6418, - 6358, - 6410 - ]], - [[ - 6429, - 6428, - 6453 - ]], - [[ - 6449, - 6350, - 6349 - ]], - [[ - 6448, - 6474, - 6454 - ]], - [[ - 6428, - 6482, - 6530 - ]], - [[ - 5926, - 6344, - 5947 - ]], - [[ - 6375, - 6531, - 6393 - ]], - [[ - 6440, - 6387, - 6389 - ]], - [[ - 6344, - 6532, - 6387 - ]], - [[ - 6440, - 6439, - 6470 - ]], - [[ - 6407, - 6409, - 6533 - ]], - [[ - 6498, - 6534, - 6435 - ]], - [[ - 6535, - 6536, - 6450 - ]], - [[ - 6479, - 6537, - 6477 - ]], - [[ - 6538, - 6439, - 6533 - ]], - [[ - 6539, - 6517, - 6520 - ]], - [[ - 6514, - 6501, - 6515 - ]], - [[ - 6481, - 6382, - 6530 - ]], - [[ - 6408, - 6489, - 6471 - ]], - [[ - 6474, - 6453, - 6454 - ]], - [[ - 6530, - 6449, - 6453 - ]], - [[ - 6540, - 6343, - 6541 - ]], - [[ - 6363, - 6403, - 6374 - ]], - [[ - 6542, - 6543, - 6427 - ]], - [[ - 6544, - 6363, - 6374 - ]], - [[ - 6545, - 6341, - 6543 - ]], - [[ - 6546, - 6363, - 6544 - ]], - [[ - 6315, - 6547, - 6374 - ]], - [[ - 6548, - 6549, - 6550 - ]], - [[ - 6438, - 6449, - 6371 - ]], - [[ - 6530, - 6482, - 6481 - ]], - [[ - 6551, - 6445, - 5953 - ]], - [[ - 6415, - 6359, - 6445 - ]], - [[ - 6338, - 6346, - 6518 - ]], - [[ - 6346, - 6345, - 6352 - ]], - [[ - 6518, - 6352, - 6351 - ]], - [[ - 6518, - 6346, - 6352 - ]], - [[ - 6552, - 6351, - 6553 - ]], - [[ - 6552, - 6518, - 6351 - ]], - [[ - 6309, - 6376, - 6310 - ]], - [[ - 6464, - 6375, - 6376 - ]], - [[ - 6426, - 6547, - 6315 - ]], - [[ - 6554, - 6372, - 6546 - ]], - [[ - 6555, - 6512, - 6556 - ]], - [[ - 6557, - 6489, - 6558 - ]], - [[ - 6386, - 6385, - 6491 - ]], - [[ - 6336, - 6552, - 6357 - ]], - [[ - 6337, - 6502, - 6559 - ]], - [[ - 6500, - 6317, - 6560 - ]], - [[ - 6515, - 6501, - 6491 - ]], - [[ - 6501, - 6384, - 6386 - ]], - [[ - 6393, - 6561, - 6562 - ]], - [[ - 6563, - 6564, - 6565 - ]], - [[ - 6566, - 6542, - 6427 - ]], - [[ - 6545, - 6543, - 6542 - ]], - [[ - 6553, - 6329, - 6357 - ]], - [[ - 6323, - 6332, - 6324 - ]], - [[ - 6553, - 6330, - 6329 - ]], - [[ - 6332, - 6316, - 6354 - ]], - [[ - 6486, - 6567, - 6568 - ]], - [[ - 6330, - 6345, - 6368 - ]], - [[ - 6331, - 6568, - 6332 - ]], - [[ - 6569, - 6356, - 6328 - ]], - [[ - 6570, - 6332, - 6568 - ]], - [[ - 6570, - 6316, - 6332 - ]], - [[ - 6492, - 6337, - 6336 - ]], - [[ - 6518, - 6552, - 6336 - ]], - [[ - 6571, - 6441, - 6572 - ]], - [[ - 6573, - 5926, - 6441 - ]], - [[ - 6574, - 6419, - 6421 - ]], - [[ - 6421, - 6176, - 6574 - ]], - [[ - 6344, - 6479, - 5947 - ]], - [[ - 6575, - 6537, - 6479 - ]], - [[ - 6407, - 6533, - 6439 - ]], - [[ - 6469, - 6576, - 6390 - ]], - [[ - 6387, - 6470, - 6344 - ]], - [[ - 6577, - 6578, - 6579 - ]], - [[ - 6538, - 6475, - 6470 - ]], - [[ - 6580, - 6409, - 6581 - ]], - [[ - 6580, - 6581, - 6475 - ]], - [[ - 6472, - 6471, - 6582 - ]], - [[ - 6538, - 6580, - 6475 - ]], - [[ - 6533, - 6409, - 6580 - ]], - [[ - 6482, - 6428, - 6430 - ]], - [[ - 6530, - 6453, - 6428 - ]], - [[ - 6369, - 6404, - 6437 - ]], - [[ - 6405, - 6395, - 6406 - ]], - [[ - 6560, - 6502, - 6499 - ]], - [[ - 6559, - 6583, - 6337 - ]], - [[ - 6362, - 6364, - 6372 - ]], - [[ - 6550, - 6584, - 6585 - ]], - [[ - 6541, - 6342, - 6424 - ]], - [[ - 6586, - 6587, - 6426 - ]], - [[ - 6526, - 6425, - 6588 - ]], - [[ - 6546, - 6364, - 6363 - ]], - [[ - 6372, - 6589, - 6590 - ]], - [[ - 6590, - 6548, - 6550 - ]], - [[ - 6425, - 6372, - 6585 - ]], - [[ - 6335, - 6373, - 6372 - ]], - [[ - 6591, - 6526, - 6592 - ]], - [[ - 6592, - 6526, - 6593 - ]], - [[ - 6444, - 6443, - 6594 - ]], - [[ - 6341, - 6425, - 6342 - ]], - [[ - 6595, - 6425, - 6526 - ]], - [[ - 6588, - 6341, - 6545 - ]], - [[ - 6566, - 6592, - 6593 - ]], - [[ - 6566, - 6596, - 6592 - ]], - [[ - 6587, - 6554, - 6547 - ]], - [[ - 6372, - 6364, - 6546 - ]], - [[ - 6591, - 6527, - 6526 - ]], - [[ - 6597, - 6598, - 6525 - ]], - [[ - 6599, - 6525, - 6527 - ]], - [[ - 6598, - 6526, - 6525 - ]], - [[ - 6600, - 6443, - 6442 - ]], - [[ - 6594, - 6601, - 6602 - ]], - [[ - 6571, - 6442, - 6444 - ]], - [[ - 6603, - 6600, - 6442 - ]], - [[ - 6604, - 6603, - 6572 - ]], - [[ - 6605, - 6600, - 6603 - ]], - [[ - 6590, - 6589, - 6586 - ]], - [[ - 6372, - 6554, - 6589 - ]], - [[ - 6537, - 6478, - 6477 - ]], - [[ - 6576, - 6469, - 6472 - ]], - [[ - 6391, - 6582, - 6478 - ]], - [[ - 6478, - 6471, - 6476 - ]], - [[ - 6497, - 6606, - 6607 - ]], - [[ - 6606, - 6479, - 6480 - ]], - [[ - 6582, - 6576, - 6472 - ]], - [[ - 6390, - 6392, - 6468 - ]], - [[ - 6608, - 6609, - 6472 - ]], - [[ - 6609, - 6409, - 6408 - ]], - [[ - 6473, - 6448, - 6349 - ]], - [[ - 6473, - 6474, - 6448 - ]], - [[ - 6366, - 6604, - 6367 - ]], - [[ - 6603, - 6442, - 6571 - ]], - [[ - 6558, - 6610, - 6484 - ]], - [[ - 6531, - 6317, - 6539 - ]], - [[ - 6335, - 6492, - 6357 - ]], - [[ - 6492, - 6425, - 6490 - ]], - [[ - 6510, - 6490, - 6503 - ]], - [[ - 6507, - 6515, - 6491 - ]], - [[ - 6393, - 6531, - 6561 - ]], - [[ - 6539, - 6520, - 6505 - ]], - [[ - 6504, - 6611, - 6539 - ]], - [[ - 6612, - 6539, - 6611 - ]], - [[ - 6371, - 6382, - 5953 - ]], - [[ - 6336, - 6357, - 6492 - ]], - [[ - 6463, - 6512, - 6555 - ]], - [[ - 6489, - 6557, - 6512 - ]], - [[ - 6523, - 6522, - 6379 - ]], - [[ - 6379, - 6522, - 6613 - ]], - [[ - 6613, - 6309, - 6379 - ]], - [[ - 6613, - 6376, - 6309 - ]], - [[ - 6613, - 6463, - 6376 - ]], - [[ - 6613, - 6511, - 6463 - ]], - [[ - 6489, - 6488, - 6458 - ]], - [[ - 6487, - 6408, - 6485 - ]], - [[ - 6614, - 6498, - 6488 - ]], - [[ - 6615, - 6459, - 6458 - ]], - [[ - 6312, - 6304, - 6616 - ]], - [[ - 5926, - 5925, - 6305 - ]], - [[ - 6493, - 6462, - 6438 - ]], - [[ - 6350, - 6449, - 6462 - ]], - [[ - 6499, - 6500, - 6560 - ]], - [[ - 6385, - 6384, - 6500 - ]], - [[ - 6344, - 6375, - 6435 - ]], - [[ - 6506, - 6513, - 6507 - ]], - [[ - 6317, - 6517, - 6539 - ]], - [[ - 6514, - 6513, - 6517 - ]], - [[ - 6509, - 6516, - 6508 - ]], - [[ - 6509, - 6521, - 6516 - ]], - [[ - 6594, - 6573, - 6444 - ]], - [[ - 6602, - 6617, - 6573 - ]], - [[ - 6602, - 6573, - 6594 - ]], - [[ - 6618, - 6571, - 6444 - ]], - [[ - 6536, - 6532, - 6344 - ]], - [[ - 6388, - 6387, - 6532 - ]], - [[ - 6451, - 6619, - 6452 - ]], - [[ - 6388, - 6532, - 6535 - ]], - [[ - 6434, - 6536, - 6344 - ]], - [[ - 6535, - 6532, - 6536 - ]], - [[ - 6534, - 6614, - 6434 - ]], - [[ - 6614, - 6488, - 6487 - ]], - [[ - 6434, - 6451, - 6450 - ]], - [[ - 6452, - 6388, - 6535 - ]], - [[ - 6516, - 6506, - 6508 - ]], - [[ - 6516, - 6513, - 6506 - ]], - [[ - 6552, - 6553, - 6357 - ]], - [[ - 6351, - 6330, - 6553 - ]], - [[ - 6560, - 6559, - 6502 - ]], - [[ - 6560, - 6317, - 6583 - ]], - [[ - 6542, - 6566, - 6593 - ]], - [[ - 6427, - 6596, - 6566 - ]], - [[ - 6524, - 6393, - 6562 - ]], - [[ - 6620, - 6621, - 6563 - ]], - [[ - 6622, - 6623, - 6531 - ]], - [[ - 6564, - 6612, - 6611 - ]], - [[ - 6512, - 6511, - 6489 - ]], - [[ - 6565, - 6504, - 6503 - ]], - [[ - 6385, - 6499, - 6491 - ]], - [[ - 6623, - 6624, - 6561 - ]], - [[ - 6617, - 6602, - 6601 - ]], - [[ - 6599, - 6597, - 6525 - ]], - [[ - 6464, - 6555, - 6556 - ]], - [[ - 6464, - 6463, - 6555 - ]], - [[ - 6576, - 6391, - 6390 - ]], - [[ - 6609, - 6608, - 6581 - ]], - [[ - 6537, - 6575, - 6392 - ]], - [[ - 6392, - 6575, - 6468 - ]], - [[ - 6446, - 6429, - 6381 - ]], - [[ - 6494, - 6348, - 6433 - ]], - [[ - 6598, - 6595, - 6526 - ]], - [[ - 6425, - 6585, - 6424 - ]], - [[ - 6584, - 6625, - 6424 - ]], - [[ - 6626, - 6627, - 6343 - ]], - [[ - 6584, - 6424, - 6585 - ]], - [[ - 6625, - 6549, - 6427 - ]], - [[ - 6590, - 6586, - 6548 - ]], - [[ - 6589, - 6587, - 6586 - ]], - [[ - 6503, - 6522, - 6624 - ]], - [[ - 6624, - 6562, - 6561 - ]], - [[ - 6503, - 6563, - 6565 - ]], - [[ - 6425, - 6423, - 6490 - ]], - [[ - 6628, - 6629, - 6630 - ]], - [[ - 6305, - 5925, - 6420 - ]], - [[ - 6422, - 6631, - 6632 - ]], - [[ - 6633, - 6303, - 6634 - ]], - [[ - 6422, - 6632, - 6176 - ]], - [[ - 6634, - 6303, - 6305 - ]], - [[ - 6635, - 6628, - 6422 - ]], - [[ - 6633, - 6631, - 6422 - ]], - [[ - 6422, - 6636, - 6633 - ]], - [[ - 6304, - 5926, - 6305 - ]], - [[ - 6632, - 6574, - 6176 - ]], - [[ - 6637, - 6305, - 6420 - ]], - [[ - 6632, - 6637, - 6574 - ]], - [[ - 6637, - 6420, - 6419 - ]], - [[ - 6497, - 6460, - 6467 - ]], - [[ - 6461, - 6471, - 6455 - ]], - [[ - 6423, - 6635, - 6422 - ]], - [[ - 6638, - 6304, - 6629 - ]], - [[ - 6639, - 6640, - 6635 - ]], - [[ - 6640, - 6304, - 6638 - ]], - [[ - 6422, - 6628, - 6630 - ]], - [[ - 6628, - 6635, - 6629 - ]], - [[ - 6537, - 6391, - 6478 - ]], - [[ - 6537, - 6392, - 6391 - ]], - [[ - 6434, - 6614, - 6451 - ]], - [[ - 6451, - 6487, - 6619 - ]], - [[ - 6450, - 6452, - 6535 - ]], - [[ - 6619, - 6485, - 6452 - ]], - [[ - 6313, - 6312, - 6616 - ]], - [[ - 6314, - 5926, - 6312 - ]], - [[ - 6462, - 6493, - 6350 - ]], - [[ - 6438, - 6433, - 6493 - ]], - [[ - 6423, - 6366, - 6314 - ]], - [[ - 6366, - 6605, - 6604 - ]], - [[ - 6547, - 6426, - 6587 - ]], - [[ - 6549, - 6584, - 6550 - ]], - [[ - 6626, - 6625, - 6427 - ]], - [[ - 6548, - 6586, - 6426 - ]], - [[ - 6543, - 6626, - 6427 - ]], - [[ - 6627, - 6341, - 6343 - ]], - [[ - 6549, - 6426, - 6427 - ]], - [[ - 6549, - 6548, - 6426 - ]], - [[ - 6540, - 6625, - 6626 - ]], - [[ - 6584, - 6549, - 6625 - ]], - [[ - 6600, - 6595, - 6443 - ]], - [[ - 6595, - 6601, - 6594 - ]], - [[ - 6441, - 6367, - 6572 - ]], - [[ - 6366, - 6423, - 6605 - ]], - [[ - 6636, - 6630, - 6303 - ]], - [[ - 6634, - 6305, - 6637 - ]], - [[ - 6383, - 6486, - 6323 - ]], - [[ - 6383, - 6335, - 6486 - ]], - [[ - 6570, - 6567, - 6641 - ]], - [[ - 6486, - 6357, - 6567 - ]], - [[ - 6486, - 6331, - 6323 - ]], - [[ - 6486, - 6568, - 6331 - ]], - [[ - 6574, - 6637, - 6419 - ]], - [[ - 6632, - 6631, - 6634 - ]], - [[ - 6519, - 6521, - 6509 - ]], - [[ - 6520, - 6517, - 6521 - ]], - [[ - 6398, - 6401, - 6399 - ]], - [[ - 6528, - 6417, - 6402 - ]], - [[ - 6598, - 6597, - 6601 - ]], - [[ - 6642, - 6427, - 6617 - ]], - [[ - 6591, - 6642, - 6527 - ]], - [[ - 6617, - 6601, - 6597 - ]], - [[ - 6310, - 6375, - 6311 - ]], - [[ - 6464, - 6556, - 6484 - ]], - [[ - 6414, - 6416, - 5953 - ]], - [[ - 6415, - 6445, - 6416 - ]], - [[ - 6641, - 6356, - 6569 - ]], - [[ - 6345, - 6316, - 6368 - ]], - [[ - 6641, - 6643, - 6570 - ]], - [[ - 6368, - 6316, - 6570 - ]], - [[ - 6395, - 6413, - 6406 - ]], - [[ - 6411, - 6400, - 6412 - ]], - [[ - 6404, - 6369, - 6405 - ]], - [[ - 6394, - 6413, - 6395 - ]], - [[ - 6493, - 6348, - 6350 - ]], - [[ - 6433, - 6432, - 6495 - ]], - [[ - 6607, - 6606, - 6480 - ]], - [[ - 6497, - 6479, - 6606 - ]], - [[ - 6610, - 6457, - 6483 - ]], - [[ - 6459, - 6615, - 6484 - ]], - [[ - 6457, - 6459, - 6483 - ]], - [[ - 6458, - 6498, - 6615 - ]], - [[ - 6484, - 6610, - 6483 - ]], - [[ - 6489, - 6458, - 6457 - ]], - [[ - 6489, - 6610, - 6558 - ]], - [[ - 6489, - 6457, - 6610 - ]], - [[ - 6556, - 6557, - 6558 - ]], - [[ - 6556, - 6512, - 6557 - ]], - [[ - 6314, - 6367, - 5926 - ]], - [[ - 6604, - 6572, - 6367 - ]], - [[ - 6635, - 6638, - 6629 - ]], - [[ - 6640, - 6639, - 6644 - ]], - [[ - 6625, - 6540, - 6424 - ]], - [[ - 6343, - 6342, - 6541 - ]], - [[ - 6343, - 6540, - 6626 - ]], - [[ - 6541, - 6424, - 6540 - ]], - [[ - 6567, - 6356, - 6641 - ]], - [[ - 6567, - 6357, - 6356 - ]], - [[ - 6643, - 6328, - 6368 - ]], - [[ - 6356, - 6329, - 6328 - ]], - [[ - 6643, - 6569, - 6328 - ]], - [[ - 6643, - 6641, - 6569 - ]], - [[ - 6529, - 6358, - 6418 - ]], - [[ - 6397, - 6371, - 6358 - ]], - [[ - 6359, - 6410, - 6358 - ]], - [[ - 6378, - 6402, - 6410 - ]], - [[ - 6593, - 6545, - 6542 - ]], - [[ - 6588, - 6425, - 6341 - ]], - [[ - 6604, - 6605, - 6603 - ]], - [[ - 6443, - 6595, - 6594 - ]], - [[ - 6423, - 6600, - 6605 - ]], - [[ - 6423, - 6595, - 6600 - ]], - [[ - 6560, - 6583, - 6559 - ]], - [[ - 6317, - 6346, - 6583 - ]], - [[ - 6581, - 6608, - 6475 - ]], - [[ - 6468, - 6575, - 6577 - ]], - [[ - 6531, - 6375, - 6317 - ]], - [[ - 6344, - 6317, - 6375 - ]], - [[ - 6489, - 6490, - 5953 - ]], - [[ - 6624, - 6522, - 6562 - ]], - [[ - 6489, - 6503, - 6490 - ]], - [[ - 6522, - 6511, - 6613 - ]], - [[ - 6596, - 6591, - 6592 - ]], - [[ - 6596, - 6642, - 6591 - ]], - [[ - 6528, - 6402, - 6401 - ]], - [[ - 6417, - 6410, - 6402 - ]], - [[ - 6547, - 6544, - 6374 - ]], - [[ - 6547, - 6546, - 6544 - ]], - [[ - 6382, - 6471, - 6489 - ]], - [[ - 6382, - 6455, - 6471 - ]], - [[ - 6468, - 6579, - 6469 - ]], - [[ - 6609, - 6408, - 6472 - ]], - [[ - 6469, - 6579, - 6472 - ]], - [[ - 6468, - 6577, - 6579 - ]], - [[ - 6460, - 6607, - 6461 - ]], - [[ - 6480, - 6476, - 6461 - ]], - [[ - 6465, - 6460, - 6455 - ]], - [[ - 6607, - 6480, - 6461 - ]], - [[ - 6358, - 6371, - 5953 - ]], - [[ - 6449, - 6530, - 6382 - ]], - [[ - 6437, - 6370, - 6369 - ]], - [[ - 6371, - 6397, - 6369 - ]], - [[ - 6492, - 6499, - 6502 - ]], - [[ - 6492, - 6491, - 6499 - ]], - [[ - 6583, - 6338, - 6337 - ]], - [[ - 6583, - 6346, - 6338 - ]], - [[ - 6531, - 6623, - 6561 - ]], - [[ - 6620, - 6624, - 6623 - ]], - [[ - 6435, - 6615, - 6498 - ]], - [[ - 6435, - 6484, - 6615 - ]], - [[ - 6558, - 6484, - 6556 - ]], - [[ - 6435, - 6375, - 6484 - ]], - [[ - 6411, - 6412, - 6413 - ]], - [[ - 6400, - 6399, - 6412 - ]], - [[ - 6489, - 6522, - 6503 - ]], - [[ - 6489, - 6511, - 6522 - ]], - [[ - 6311, - 6524, - 6379 - ]], - [[ - 6524, - 6562, - 6522 - ]], - [[ - 6379, - 6524, - 6523 - ]], - [[ - 6311, - 6393, - 6524 - ]], - [[ - 6417, - 6529, - 6418 - ]], - [[ - 6398, - 6396, - 6529 - ]], - [[ - 6389, - 6485, - 6408 - ]], - [[ - 6388, - 6452, - 6485 - ]], - [[ - 6543, - 6627, - 6626 - ]], - [[ - 6543, - 6341, - 6627 - ]], - [[ - 5925, - 6421, - 6420 - ]], - [[ - 5925, - 6176, - 6421 - ]], - [[ - 6642, - 6599, - 6527 - ]], - [[ - 6617, - 6597, - 6599 - ]], - [[ - 6441, - 6571, - 6618 - ]], - [[ - 6572, - 6603, - 6571 - ]], - [[ - 6344, - 6575, - 6479 - ]], - [[ - 6577, - 6475, - 6578 - ]], - [[ - 6344, - 6577, - 6575 - ]], - [[ - 6344, - 6475, - 6577 - ]], - [[ - 6629, - 6303, - 6630 - ]], - [[ - 6629, - 6304, - 6303 - ]], - [[ - 6633, - 6636, - 6303 - ]], - [[ - 6422, - 6630, - 6636 - ]], - [[ - 6632, - 6634, - 6637 - ]], - [[ - 6631, - 6633, - 6634 - ]], - [[ - 6467, - 6460, - 6465 - ]], - [[ - 6497, - 6607, - 6460 - ]], - [[ - 6335, - 6425, - 6492 - ]], - [[ - 6335, - 6372, - 6425 - ]], - [[ - 6601, - 6595, - 6598 - ]], - [[ - 6423, - 6425, - 6595 - ]], - [[ - 6635, - 6640, - 6638 - ]], - [[ - 6635, - 6423, - 6639 - ]], - [[ - 6585, - 6590, - 6550 - ]], - [[ - 6585, - 6372, - 6590 - ]], - [[ - 6479, - 6473, - 5947 - ]], - [[ - 6479, - 6429, - 6473 - ]], - [[ - 6349, - 6348, - 6494 - ]], - [[ - 6406, - 6413, - 6399 - ]], - [[ - 6349, - 6494, - 6473 - ]], - [[ - 6495, - 6432, - 6496 - ]], - [[ - 6436, - 6404, - 6645 - ]], - [[ - 6645, - 6404, - 6406 - ]], - [[ - 6564, - 6621, - 6612 - ]], - [[ - 6620, - 6623, - 6622 - ]], - [[ - 6565, - 6564, - 6611 - ]], - [[ - 6563, - 6621, - 6564 - ]], - [[ - 6547, - 6554, - 6546 - ]], - [[ - 6587, - 6589, - 6554 - ]], - [[ - 6439, - 6538, - 6470 - ]], - [[ - 6533, - 6580, - 6538 - ]], - [[ - 6612, - 6531, - 6539 - ]], - [[ - 6622, - 6621, - 6620 - ]], - [[ - 6612, - 6622, - 6531 - ]], - [[ - 6612, - 6621, - 6622 - ]], - [[ - 5947, - 6414, - 5953 - ]], - [[ - 5947, - 6415, - 6414 - ]], - [[ - 6317, - 6514, - 6517 - ]], - [[ - 6317, - 6501, - 6514 - ]], - [[ - 6478, - 6582, - 6471 - ]], - [[ - 6391, - 6576, - 6582 - ]], - [[ - 6593, - 6588, - 6545 - ]], - [[ - 6593, - 6526, - 6588 - ]], - [[ - 6403, - 6362, - 6373 - ]], - [[ - 6403, - 6363, - 6362 - ]], - [[ - 6380, - 6446, - 6381 - ]], - [[ - 6430, - 6429, - 6446 - ]], - [[ - 6416, - 6551, - 5953 - ]], - [[ - 6416, - 6445, - 6551 - ]], - [[ - 6563, - 6624, - 6620 - ]], - [[ - 6563, - 6503, - 6624 - ]], - [[ - 6519, - 6510, - 6503 - ]], - [[ - 6519, - 6509, - 6510 - ]], - [[ - 6408, - 6487, - 6489 - ]], - [[ - 6485, - 6619, - 6487 - ]], - [[ - 6451, - 6614, - 6487 - ]], - [[ - 6534, - 6498, - 6614 - ]], - [[ - 6567, - 6570, - 6568 - ]], - [[ - 6643, - 6368, - 6570 - ]], - [[ - 6314, - 6313, - 6423 - ]], - [[ - 6644, - 6304, - 6640 - ]], - [[ - 6313, - 6639, - 6423 - ]], - [[ - 6313, - 6616, - 6639 - ]], - [[ - 6616, - 6644, - 6639 - ]], - [[ - 6616, - 6304, - 6644 - ]], - [[ - 6436, - 6645, - 6496 - ]], - [[ - 6406, - 6399, - 6645 - ]], - [[ - 6494, - 6496, - 6473 - ]], - [[ - 6645, - 6399, - 6496 - ]], - [[ - 6505, - 6504, - 6539 - ]], - [[ - 6565, - 6611, - 6504 - ]], - [[ - 5953, - 6382, - 6489 - ]], - [[ - 6371, - 6449, - 6382 - ]], - [[ - 6430, - 6447, - 6482 - ]], - [[ - 6380, - 6382, - 6481 - ]], - [[ - 6380, - 6447, - 6446 - ]], - [[ - 6380, - 6481, - 6447 - ]], - [[ - 6394, - 6369, - 6397 - ]], - [[ - 6395, - 6405, - 6369 - ]], - [[ - 6534, - 6434, - 6435 - ]], - [[ - 6450, - 6536, - 6434 - ]], - [[ - 6573, - 6617, - 5926 - ]], - [[ - 6427, - 5926, - 6617 - ]], - [[ - 6427, - 6642, - 6596 - ]], - [[ - 6617, - 6599, - 6642 - ]], - [[ - 6618, - 6573, - 6441 - ]], - [[ - 6618, - 6444, - 6573 - ]], - [[ - 6579, - 6608, - 6472 - ]], - [[ - 6581, - 6409, - 6609 - ]], - [[ - 6578, - 6608, - 6579 - ]], - [[ - 6578, - 6475, - 6608 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b31bb8aab-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000022858", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027108)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0452049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 6.57000017166138, - "min-height-surface": 0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84931.822 447528.541)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:23)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6646, - 6647, - 6648 - ]], - [[ - 6649, - 6650, - 6648 - ]], - [[ - 6647, - 6651, - 6648 - ]], - [[ - 6648, - 6652, - 6649 - ]], - [[ - 6649, - 6652, - 6653 - ]], - [[ - 6648, - 6651, - 6652 - ]], - [[ - 6654, - 6655, - 6656 - ]], - [[ - 6656, - 6655, - 6657 - ]], - [[ - 6656, - 6657, - 6646 - ]], - [[ - 6646, - 6657, - 6647 - ]], - [[ - 6658, - 6654, - 6648 - ]], - [[ - 6648, - 6654, - 6656 - ]], - [[ - 6648, - 6656, - 6646 - ]], - [[ - 6659, - 6658, - 6650 - ]], - [[ - 6650, - 6658, - 6648 - ]], - [[ - 6660, - 6659, - 6649 - ]], - [[ - 6649, - 6659, - 6650 - ]], - [[ - 6661, - 6660, - 6653 - ]], - [[ - 6653, - 6660, - 6649 - ]], - [[ - 6662, - 6661, - 6652 - ]], - [[ - 6652, - 6661, - 6653 - ]], - [[ - 6663, - 6662, - 6651 - ]], - [[ - 6651, - 6662, - 6652 - ]], - [[ - 6655, - 6663, - 6657 - ]], - [[ - 6657, - 6663, - 6647 - ]], - [[ - 6647, - 6663, - 6651 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bb8ab0-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000022856", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027109)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0452149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.17000007629395, - "min-height-surface": 0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84936.025 447531.543)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:27)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6664, - 6665, - 6666 - ]], - [[ - 6664, - 6656, - 6667 - ]], - [[ - 6667, - 6668, - 6669 - ]], - [[ - 6667, - 6656, - 6668 - ]], - [[ - 6666, - 6657, - 6656 - ]], - [[ - 6664, - 6666, - 6656 - ]], - [[ - 6665, - 6670, - 6666 - ]], - [[ - 6671, - 6672, - 6673 - ]], - [[ - 6673, - 6672, - 6674 - ]], - [[ - 6673, - 6674, - 6664 - ]], - [[ - 6664, - 6674, - 6665 - ]], - [[ - 6675, - 6671, - 6667 - ]], - [[ - 6667, - 6671, - 6673 - ]], - [[ - 6667, - 6673, - 6664 - ]], - [[ - 6676, - 6675, - 6669 - ]], - [[ - 6669, - 6675, - 6667 - ]], - [[ - 6677, - 6676, - 6668 - ]], - [[ - 6668, - 6676, - 6669 - ]], - [[ - 6654, - 6677, - 6656 - ]], - [[ - 6656, - 6677, - 6668 - ]], - [[ - 6655, - 6654, - 6657 - ]], - [[ - 6657, - 6654, - 6656 - ]], - [[ - 6678, - 6655, - 6666 - ]], - [[ - 6666, - 6655, - 6657 - ]], - [[ - 6679, - 6678, - 6670 - ]], - [[ - 6670, - 6678, - 6666 - ]], - [[ - 6672, - 6679, - 6674 - ]], - [[ - 6674, - 6679, - 6665 - ]], - [[ - 6665, - 6679, - 6670 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bb8ab5-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000022786", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027110)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0452249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.16000008583069, - "min-height-surface": 0.0199999995529652, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84939.413 447534.185)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:31)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 488, - 487, - 6674 - ]], - [[ - 488, - 6680, - 6681 - ]], - [[ - 6681, - 6680, - 6682 - ]], - [[ - 6680, - 488, - 6674 - ]], - [[ - 6680, - 6674, - 6673 - ]], - [[ - 504, - 505, - 488 - ]], - [[ - 488, - 505, - 487 - ]], - [[ - 6683, - 504, - 6681 - ]], - [[ - 6681, - 504, - 488 - ]], - [[ - 6684, - 6683, - 6682 - ]], - [[ - 6682, - 6683, - 6681 - ]], - [[ - 6685, - 6684, - 6680 - ]], - [[ - 6680, - 6684, - 6682 - ]], - [[ - 6686, - 6685, - 6671 - ]], - [[ - 6671, - 6685, - 6673 - ]], - [[ - 6673, - 6685, - 6680 - ]], - [[ - 6687, - 6686, - 6672 - ]], - [[ - 6672, - 6686, - 6671 - ]], - [[ - 6672, - 6671, - 6674 - ]], - [[ - 6674, - 6671, - 6673 - ]], - [[ - 505, - 6687, - 487 - ]], - [[ - 487, - 6687, - 6672 - ]], - [[ - 487, - 6672, - 6674 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbb1ca-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:17.1)", - "identificatiebagpnd": "503100000017304", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027132)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0452349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.88000011444092, - "min-height-surface": -0.0599999986588955, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84935.378 447488.560)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:78)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 407, - 410, - 6688 - ]], - [[ - 407, - 6688, - 404 - ]], - [[ - 404, - 6688, - 6689 - ]], - [[ - 6688, - 410, - 6690 - ]], - [[ - 6688, - 6691, - 6692 - ]], - [[ - 6688, - 6690, - 6691 - ]], - [[ - 6690, - 410, - 413 - ]], - [[ - 406, - 409, - 407 - ]], - [[ - 407, - 409, - 410 - ]], - [[ - 403, - 406, - 404 - ]], - [[ - 404, - 406, - 407 - ]], - [[ - 6693, - 403, - 6694 - ]], - [[ - 6694, - 403, - 6689 - ]], - [[ - 6689, - 403, - 404 - ]], - [[ - 6695, - 6693, - 6696 - ]], - [[ - 6696, - 6693, - 6694 - ]], - [[ - 6696, - 6694, - 6688 - ]], - [[ - 6688, - 6694, - 6689 - ]], - [[ - 6697, - 6695, - 6698 - ]], - [[ - 6698, - 6695, - 6696 - ]], - [[ - 6698, - 6696, - 6692 - ]], - [[ - 6692, - 6696, - 6688 - ]], - [[ - 6699, - 6697, - 1158 - ]], - [[ - 1158, - 6697, - 6698 - ]], - [[ - 1158, - 6698, - 6691 - ]], - [[ - 6691, - 6698, - 6692 - ]], - [[ - 1159, - 6699, - 6690 - ]], - [[ - 6690, - 6699, - 1158 - ]], - [[ - 6690, - 1158, - 6691 - ]], - [[ - 412, - 1159, - 413 - ]], - [[ - 413, - 1159, - 6690 - ]], - [[ - 409, - 412, - 410 - ]], - [[ - 410, - 412, - 413 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbd90d-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000026158", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0452e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.25999999046326, - "min-height-surface": -0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6700, - 6701, - 6702 - ]], - [[ - 6701, - 6703, - 6702 - ]], - [[ - 6704, - 6702, - 6703 - ]], - [[ - 6704, - 6703, - 6705 - ]], - [[ - 6706, - 1964, - 6707 - ]], - [[ - 6707, - 1964, - 6708 - ]], - [[ - 6707, - 6708, - 6700 - ]], - [[ - 6700, - 6708, - 6701 - ]], - [[ - 6709, - 6706, - 6702 - ]], - [[ - 6702, - 6706, - 6707 - ]], - [[ - 6702, - 6707, - 6700 - ]], - [[ - 6710, - 6709, - 6704 - ]], - [[ - 6704, - 6709, - 6702 - ]], - [[ - 6711, - 6710, - 6705 - ]], - [[ - 6705, - 6710, - 6704 - ]], - [[ - 1977, - 6711, - 6703 - ]], - [[ - 6703, - 6711, - 6705 - ]], - [[ - 1964, - 1977, - 6708 - ]], - [[ - 6708, - 1977, - 6701 - ]], - [[ - 6701, - 1977, - 6703 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbd912-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000032719", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003246)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0452f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.26999998092651, - "min-height-surface": -0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84855.056 447534.320)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:160)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6712, - 6713, - 6714 - ]], - [[ - 6712, - 294, - 296 - ]], - [[ - 6714, - 6715, - 6716 - ]], - [[ - 294, - 6714, - 6716 - ]], - [[ - 6712, - 6714, - 294 - ]], - [[ - 6711, - 1977, - 6705 - ]], - [[ - 6705, - 1977, - 6703 - ]], - [[ - 6705, - 6703, - 6712 - ]], - [[ - 6712, - 6703, - 6713 - ]], - [[ - 6717, - 6711, - 295 - ]], - [[ - 295, - 6711, - 296 - ]], - [[ - 296, - 6711, - 6705 - ]], - [[ - 296, - 6705, - 6712 - ]], - [[ - 6718, - 6717, - 293 - ]], - [[ - 293, - 6717, - 295 - ]], - [[ - 293, - 295, - 294 - ]], - [[ - 294, - 295, - 296 - ]], - [[ - 2119, - 6718, - 6716 - ]], - [[ - 6716, - 6718, - 293 - ]], - [[ - 6716, - 293, - 294 - ]], - [[ - 1961, - 2119, - 6715 - ]], - [[ - 6715, - 2119, - 6716 - ]], - [[ - 1966, - 1961, - 6714 - ]], - [[ - 6714, - 1961, - 6715 - ]], - [[ - 1977, - 1966, - 6703 - ]], - [[ - 6703, - 1966, - 6713 - ]], - [[ - 6713, - 1966, - 6714 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbd917-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.6)", - "identificatiebagpnd": "503100000017309", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027072)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027071)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.75999999046326, - "min-height-surface": 0.129999995231628, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84916.182 447533.963)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:20-22)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 461, - 463, - 6719 - ]], - [[ - 6719, - 6720, - 6721 - ]], - [[ - 6719, - 6722, - 6720 - ]], - [[ - 6722, - 6723, - 6724 - ]], - [[ - 461, - 6719, - 6721 - ]], - [[ - 6719, - 6723, - 6722 - ]], - [[ - 6725, - 6726, - 460 - ]], - [[ - 460, - 6726, - 462 - ]], - [[ - 460, - 462, - 461 - ]], - [[ - 461, - 462, - 463 - ]], - [[ - 6727, - 6725, - 6728 - ]], - [[ - 6728, - 6725, - 6721 - ]], - [[ - 6721, - 6725, - 460 - ]], - [[ - 6721, - 460, - 461 - ]], - [[ - 6729, - 6727, - 6730 - ]], - [[ - 6730, - 6727, - 6728 - ]], - [[ - 6730, - 6728, - 6720 - ]], - [[ - 6720, - 6728, - 6721 - ]], - [[ - 6731, - 6729, - 6722 - ]], - [[ - 6722, - 6729, - 6730 - ]], - [[ - 6722, - 6730, - 6720 - ]], - [[ - 6732, - 6731, - 6724 - ]], - [[ - 6724, - 6731, - 6722 - ]], - [[ - 6733, - 6732, - 6723 - ]], - [[ - 6723, - 6732, - 6724 - ]], - [[ - 6734, - 6733, - 6719 - ]], - [[ - 6719, - 6733, - 6723 - ]], - [[ - 6726, - 6734, - 462 - ]], - [[ - 462, - 6734, - 463 - ]], - [[ - 463, - 6734, - 6719 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbd91c-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000017315", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000060239)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.90000009536743, - "min-height-surface": 0.0799999982118607, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84923.713 447522.485)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:15)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6735, - 6736, - 6737 - ]], - [[ - 6736, - 6738, - 6737 - ]], - [[ - 6739, - 6740, - 6741 - ]], - [[ - 6739, - 6742, - 6740 - ]], - [[ - 6743, - 6744, - 6742 - ]], - [[ - 6742, - 6744, - 6745 - ]], - [[ - 6739, - 6743, - 6742 - ]], - [[ - 6738, - 6736, - 6746 - ]], - [[ - 6739, - 6738, - 6743 - ]], - [[ - 6739, - 6737, - 6738 - ]], - [[ - 6736, - 6747, - 6746 - ]], - [[ - 6748, - 6749, - 6735 - ]], - [[ - 6735, - 6749, - 6736 - ]], - [[ - 6750, - 6748, - 6737 - ]], - [[ - 6737, - 6748, - 6735 - ]], - [[ - 6751, - 6750, - 6739 - ]], - [[ - 6739, - 6750, - 6737 - ]], - [[ - 6752, - 6751, - 6741 - ]], - [[ - 6741, - 6751, - 6739 - ]], - [[ - 6753, - 6752, - 6740 - ]], - [[ - 6740, - 6752, - 6741 - ]], - [[ - 6754, - 6753, - 6742 - ]], - [[ - 6742, - 6753, - 6740 - ]], - [[ - 6755, - 6754, - 6745 - ]], - [[ - 6745, - 6754, - 6742 - ]], - [[ - 6756, - 6755, - 6744 - ]], - [[ - 6744, - 6755, - 6745 - ]], - [[ - 6757, - 6756, - 6743 - ]], - [[ - 6743, - 6756, - 6744 - ]], - [[ - 6758, - 6757, - 6738 - ]], - [[ - 6738, - 6757, - 6743 - ]], - [[ - 6759, - 6758, - 6746 - ]], - [[ - 6746, - 6758, - 6738 - ]], - [[ - 6760, - 6759, - 6747 - ]], - [[ - 6747, - 6759, - 6746 - ]], - [[ - 6749, - 6760, - 6736 - ]], - [[ - 6736, - 6760, - 6747 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbd921-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000026312", - "identificatiebagvbohoogstehuisnummer": "(1:503010000003235)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003234)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.83999991416931, - "min-height-surface": 0, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84882.592 447515.552)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:146-146A)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6761, - 6762, - 6763 - ]], - [[ - 6764, - 6765, - 6766 - ]], - [[ - 6767, - 6768, - 6769 - ]], - [[ - 6767, - 6770, - 6768 - ]], - [[ - 6763, - 6771, - 6769 - ]], - [[ - 6769, - 6766, - 6767 - ]], - [[ - 6765, - 6772, - 6766 - ]], - [[ - 6769, - 6764, - 6766 - ]], - [[ - 6773, - 6764, - 6769 - ]], - [[ - 6771, - 6774, - 6775 - ]], - [[ - 6776, - 6777, - 6773 - ]], - [[ - 6769, - 6775, - 6773 - ]], - [[ - 6778, - 6779, - 6776 - ]], - [[ - 6773, - 6778, - 6776 - ]], - [[ - 6779, - 6778, - 6780 - ]], - [[ - 6778, - 6773, - 6775 - ]], - [[ - 6778, - 6775, - 6781 - ]], - [[ - 6769, - 6771, - 6775 - ]], - [[ - 6762, - 6782, - 6763 - ]], - [[ - 6763, - 6782, - 6771 - ]], - [[ - 6762, - 6783, - 6782 - ]], - [[ - 6784, - 6785, - 6786 - ]], - [[ - 6786, - 6785, - 6787 - ]], - [[ - 6786, - 6787, - 6761 - ]], - [[ - 6761, - 6787, - 6762 - ]], - [[ - 6788, - 6784, - 6789 - ]], - [[ - 6789, - 6784, - 6786 - ]], - [[ - 6789, - 6786, - 6763 - ]], - [[ - 6763, - 6786, - 6761 - ]], - [[ - 6790, - 6788, - 6791 - ]], - [[ - 6791, - 6788, - 6789 - ]], - [[ - 6791, - 6789, - 6769 - ]], - [[ - 6769, - 6789, - 6763 - ]], - [[ - 6792, - 6790, - 2849 - ]], - [[ - 2849, - 6790, - 6791 - ]], - [[ - 2849, - 6791, - 6768 - ]], - [[ - 6768, - 6791, - 6769 - ]], - [[ - 2847, - 6792, - 6770 - ]], - [[ - 6770, - 6792, - 2849 - ]], - [[ - 6770, - 2849, - 6768 - ]], - [[ - 2845, - 2847, - 6767 - ]], - [[ - 6767, - 2847, - 6770 - ]], - [[ - 2846, - 2845, - 6766 - ]], - [[ - 6766, - 2845, - 6767 - ]], - [[ - 2844, - 2846, - 6772 - ]], - [[ - 6772, - 2846, - 6766 - ]], - [[ - 2843, - 2844, - 6765 - ]], - [[ - 6765, - 2844, - 6772 - ]], - [[ - 2840, - 2843, - 6764 - ]], - [[ - 6764, - 2843, - 6765 - ]], - [[ - 2841, - 2840, - 6773 - ]], - [[ - 6773, - 2840, - 6764 - ]], - [[ - 2839, - 2841, - 6777 - ]], - [[ - 6777, - 2841, - 6773 - ]], - [[ - 2837, - 2839, - 6776 - ]], - [[ - 6776, - 2839, - 6777 - ]], - [[ - 2838, - 2837, - 6779 - ]], - [[ - 6779, - 2837, - 6776 - ]], - [[ - 3009, - 2838, - 6780 - ]], - [[ - 6780, - 2838, - 6779 - ]], - [[ - 3010, - 3009, - 6778 - ]], - [[ - 6778, - 3009, - 6780 - ]], - [[ - 3008, - 3010, - 6793 - ]], - [[ - 6793, - 3010, - 6781 - ]], - [[ - 6781, - 3010, - 6778 - ]], - [[ - 6794, - 3008, - 6795 - ]], - [[ - 6795, - 3008, - 6793 - ]], - [[ - 6795, - 6793, - 6775 - ]], - [[ - 6775, - 6793, - 6781 - ]], - [[ - 6796, - 6794, - 6774 - ]], - [[ - 6774, - 6794, - 6795 - ]], - [[ - 6774, - 6795, - 6775 - ]], - [[ - 6797, - 6796, - 6771 - ]], - [[ - 6771, - 6796, - 6774 - ]], - [[ - 6798, - 6797, - 6799 - ]], - [[ - 6799, - 6797, - 6800 - ]], - [[ - 6800, - 6797, - 6782 - ]], - [[ - 6782, - 6797, - 6771 - ]], - [[ - 6801, - 6798, - 6802 - ]], - [[ - 6802, - 6798, - 6799 - ]], - [[ - 6802, - 6799, - 6803 - ]], - [[ - 6803, - 6799, - 6800 - ]], - [[ - 6803, - 6800, - 6783 - ]], - [[ - 6783, - 6800, - 6782 - ]], - [[ - 6785, - 6801, - 6787 - ]], - [[ - 6787, - 6801, - 6762 - ]], - [[ - 6762, - 6801, - 6802 - ]], - [[ - 6762, - 6802, - 6803 - ]], - [[ - 6762, - 6803, - 6783 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbd926-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000026311", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003236)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.55999994277954, - "min-height-surface": -0.0199999995529652, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84879.113 447518.066)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:148)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6804, - 6793, - 6805 - ]], - [[ - 6806, - 6807, - 6808 - ]], - [[ - 6793, - 6804, - 6808 - ]], - [[ - 6807, - 6806, - 6809 - ]], - [[ - 6806, - 6808, - 6810 - ]], - [[ - 6806, - 6810, - 6811 - ]], - [[ - 6810, - 6808, - 6804 - ]], - [[ - 6810, - 6804, - 6812 - ]], - [[ - 6812, - 6804, - 6813 - ]], - [[ - 6805, - 6795, - 6814 - ]], - [[ - 6804, - 6805, - 6815 - ]], - [[ - 6793, - 6795, - 6805 - ]], - [[ - 6816, - 6817, - 3008 - ]], - [[ - 3008, - 6817, - 6794 - ]], - [[ - 3008, - 6794, - 6793 - ]], - [[ - 6793, - 6794, - 6795 - ]], - [[ - 3005, - 6816, - 6808 - ]], - [[ - 6808, - 6816, - 3008 - ]], - [[ - 6808, - 3008, - 6793 - ]], - [[ - 3006, - 3005, - 6807 - ]], - [[ - 6807, - 3005, - 6808 - ]], - [[ - 6818, - 3006, - 6809 - ]], - [[ - 6809, - 3006, - 6807 - ]], - [[ - 6819, - 6818, - 6806 - ]], - [[ - 6806, - 6818, - 6809 - ]], - [[ - 6820, - 6819, - 6821 - ]], - [[ - 6821, - 6819, - 6811 - ]], - [[ - 6811, - 6819, - 6806 - ]], - [[ - 6822, - 6820, - 6823 - ]], - [[ - 6823, - 6820, - 6821 - ]], - [[ - 6823, - 6821, - 6810 - ]], - [[ - 6810, - 6821, - 6811 - ]], - [[ - 6824, - 6822, - 6825 - ]], - [[ - 6825, - 6822, - 6823 - ]], - [[ - 6825, - 6823, - 6812 - ]], - [[ - 6812, - 6823, - 6810 - ]], - [[ - 6826, - 6824, - 6827 - ]], - [[ - 6827, - 6824, - 6825 - ]], - [[ - 6827, - 6825, - 6813 - ]], - [[ - 6813, - 6825, - 6812 - ]], - [[ - 6828, - 6826, - 6829 - ]], - [[ - 6829, - 6826, - 6827 - ]], - [[ - 6829, - 6827, - 6804 - ]], - [[ - 6804, - 6827, - 6813 - ]], - [[ - 6830, - 6828, - 6831 - ]], - [[ - 6831, - 6828, - 6829 - ]], - [[ - 6831, - 6829, - 6815 - ]], - [[ - 6815, - 6829, - 6804 - ]], - [[ - 6832, - 6830, - 6805 - ]], - [[ - 6805, - 6830, - 6831 - ]], - [[ - 6805, - 6831, - 6815 - ]], - [[ - 6833, - 6832, - 6814 - ]], - [[ - 6814, - 6832, - 6805 - ]], - [[ - 6817, - 6833, - 6794 - ]], - [[ - 6794, - 6833, - 6795 - ]], - [[ - 6795, - 6833, - 6814 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbd92b-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000022857", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027107)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027106)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 7.19000005722046, - "min-height-surface": 0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84928.642 447523.921)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:17-19)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6834, - 6835, - 6836 - ]], - [[ - 6837, - 6838, - 6836 - ]], - [[ - 6835, - 6839, - 6836 - ]], - [[ - 6836, - 6839, - 6837 - ]], - [[ - 6662, - 6663, - 6652 - ]], - [[ - 6652, - 6663, - 6651 - ]], - [[ - 6652, - 6651, - 6834 - ]], - [[ - 6834, - 6651, - 6835 - ]], - [[ - 6840, - 6662, - 6836 - ]], - [[ - 6836, - 6662, - 6652 - ]], - [[ - 6836, - 6652, - 6834 - ]], - [[ - 6841, - 6840, - 6838 - ]], - [[ - 6838, - 6840, - 6836 - ]], - [[ - 6842, - 6841, - 6748 - ]], - [[ - 6748, - 6841, - 6735 - ]], - [[ - 6735, - 6841, - 6837 - ]], - [[ - 6837, - 6841, - 6838 - ]], - [[ - 6843, - 6842, - 6749 - ]], - [[ - 6749, - 6842, - 6748 - ]], - [[ - 6749, - 6748, - 6736 - ]], - [[ - 6736, - 6748, - 6735 - ]], - [[ - 6736, - 6735, - 6839 - ]], - [[ - 6839, - 6735, - 6837 - ]], - [[ - 6663, - 6843, - 6651 - ]], - [[ - 6651, - 6843, - 6835 - ]], - [[ - 6835, - 6843, - 6749 - ]], - [[ - 6835, - 6749, - 6736 - ]], - [[ - 6835, - 6736, - 6839 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbff40-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000017219", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003238)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.54999995231628, - "min-height-surface": -0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84875.569 447520.559)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:150)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6829, - 6831, - 6827 - ]], - [[ - 6844, - 6845, - 6846 - ]], - [[ - 6821, - 6823, - 6825 - ]], - [[ - 6847, - 6821, - 6825 - ]], - [[ - 6827, - 6848, - 6825 - ]], - [[ - 6848, - 6849, - 6847 - ]], - [[ - 6825, - 6848, - 6847 - ]], - [[ - 6827, - 6846, - 6848 - ]], - [[ - 6827, - 6844, - 6846 - ]], - [[ - 6844, - 6850, - 6845 - ]], - [[ - 6831, - 6844, - 6827 - ]], - [[ - 6851, - 6852, - 6828 - ]], - [[ - 6828, - 6852, - 6830 - ]], - [[ - 6828, - 6830, - 6829 - ]], - [[ - 6829, - 6830, - 6831 - ]], - [[ - 6853, - 6851, - 6826 - ]], - [[ - 6826, - 6851, - 6828 - ]], - [[ - 6826, - 6828, - 6827 - ]], - [[ - 6827, - 6828, - 6829 - ]], - [[ - 6854, - 6853, - 6824 - ]], - [[ - 6824, - 6853, - 6826 - ]], - [[ - 6824, - 6826, - 6825 - ]], - [[ - 6825, - 6826, - 6827 - ]], - [[ - 6855, - 6854, - 6822 - ]], - [[ - 6822, - 6854, - 6824 - ]], - [[ - 6822, - 6824, - 6823 - ]], - [[ - 6823, - 6824, - 6825 - ]], - [[ - 6856, - 6855, - 6820 - ]], - [[ - 6820, - 6855, - 6822 - ]], - [[ - 6820, - 6822, - 6821 - ]], - [[ - 6821, - 6822, - 6823 - ]], - [[ - 6857, - 6856, - 6847 - ]], - [[ - 6847, - 6856, - 6820 - ]], - [[ - 6847, - 6820, - 6821 - ]], - [[ - 6858, - 6857, - 6849 - ]], - [[ - 6849, - 6857, - 6847 - ]], - [[ - 6859, - 6858, - 6848 - ]], - [[ - 6848, - 6858, - 6849 - ]], - [[ - 6860, - 6859, - 6846 - ]], - [[ - 6846, - 6859, - 6848 - ]], - [[ - 6861, - 6860, - 6845 - ]], - [[ - 6845, - 6860, - 6846 - ]], - [[ - 6862, - 6861, - 6850 - ]], - [[ - 6850, - 6861, - 6845 - ]], - [[ - 6863, - 6862, - 6844 - ]], - [[ - 6844, - 6862, - 6850 - ]], - [[ - 6852, - 6863, - 6830 - ]], - [[ - 6830, - 6863, - 6831 - ]], - [[ - 6831, - 6863, - 6844 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbff45-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.6)", - "identificatiebagpnd": "503100000026313", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027061)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.45000004768372, - "min-height-surface": 0.170000001788139, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84898.718 447521.039)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:2)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6864, - 6865, - 6866 - ]], - [[ - 6864, - 6867, - 6868 - ]], - [[ - 6869, - 6870, - 6871 - ]], - [[ - 6872, - 6865, - 6864 - ]], - [[ - 6873, - 6865, - 6872 - ]], - [[ - 6874, - 6873, - 6872 - ]], - [[ - 6875, - 6876, - 6864 - ]], - [[ - 6872, - 6864, - 6876 - ]], - [[ - 6877, - 6876, - 6878 - ]], - [[ - 6878, - 6876, - 6879 - ]], - [[ - 6879, - 6876, - 6875 - ]], - [[ - 6868, - 6867, - 6871 - ]], - [[ - 6875, - 6868, - 6880 - ]], - [[ - 6875, - 6864, - 6868 - ]], - [[ - 6881, - 6871, - 6882 - ]], - [[ - 6882, - 6871, - 6883 - ]], - [[ - 6883, - 6871, - 6870 - ]], - [[ - 6867, - 6869, - 6871 - ]], - [[ - 6884, - 6870, - 6869 - ]], - [[ - 6885, - 6886, - 6864 - ]], - [[ - 6864, - 6886, - 6867 - ]], - [[ - 6887, - 6885, - 6866 - ]], - [[ - 6866, - 6885, - 6864 - ]], - [[ - 6888, - 6887, - 6865 - ]], - [[ - 6865, - 6887, - 6866 - ]], - [[ - 6889, - 6888, - 6873 - ]], - [[ - 6873, - 6888, - 6865 - ]], - [[ - 6890, - 6889, - 6874 - ]], - [[ - 6874, - 6889, - 6873 - ]], - [[ - 6891, - 6890, - 6872 - ]], - [[ - 6872, - 6890, - 6874 - ]], - [[ - 6892, - 6891, - 6876 - ]], - [[ - 6876, - 6891, - 6872 - ]], - [[ - 6893, - 6892, - 6877 - ]], - [[ - 6877, - 6892, - 6876 - ]], - [[ - 6894, - 6893, - 6878 - ]], - [[ - 6878, - 6893, - 6877 - ]], - [[ - 6895, - 6894, - 6879 - ]], - [[ - 6879, - 6894, - 6878 - ]], - [[ - 6896, - 6895, - 6897 - ]], - [[ - 6897, - 6895, - 6898 - ]], - [[ - 6898, - 6895, - 6875 - ]], - [[ - 6875, - 6895, - 6879 - ]], - [[ - 6899, - 6896, - 6900 - ]], - [[ - 6900, - 6896, - 6897 - ]], - [[ - 6900, - 6897, - 6901 - ]], - [[ - 6901, - 6897, - 6898 - ]], - [[ - 6901, - 6898, - 6880 - ]], - [[ - 6880, - 6898, - 6875 - ]], - [[ - 6902, - 6899, - 6868 - ]], - [[ - 6868, - 6899, - 6900 - ]], - [[ - 6868, - 6900, - 6901 - ]], - [[ - 6868, - 6901, - 6880 - ]], - [[ - 6903, - 6902, - 6871 - ]], - [[ - 6871, - 6902, - 6868 - ]], - [[ - 6904, - 6903, - 6905 - ]], - [[ - 6905, - 6903, - 6906 - ]], - [[ - 6906, - 6903, - 6881 - ]], - [[ - 6881, - 6903, - 6871 - ]], - [[ - 6907, - 6904, - 6908 - ]], - [[ - 6908, - 6904, - 6905 - ]], - [[ - 6908, - 6905, - 6909 - ]], - [[ - 6909, - 6905, - 6906 - ]], - [[ - 6909, - 6906, - 6882 - ]], - [[ - 6882, - 6906, - 6881 - ]], - [[ - 6910, - 6907, - 6883 - ]], - [[ - 6883, - 6907, - 6908 - ]], - [[ - 6883, - 6908, - 6909 - ]], - [[ - 6883, - 6909, - 6882 - ]], - [[ - 6911, - 6910, - 6870 - ]], - [[ - 6870, - 6910, - 6883 - ]], - [[ - 6912, - 6911, - 6884 - ]], - [[ - 6884, - 6911, - 6870 - ]], - [[ - 6913, - 6912, - 6869 - ]], - [[ - 6869, - 6912, - 6884 - ]], - [[ - 6886, - 6913, - 6867 - ]], - [[ - 6867, - 6913, - 6869 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbff4a-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.6)", - "identificatiebagpnd": "503100000032725", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027063)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027062)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.88000011444092, - "min-height-surface": 0.140000000596046, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84901.595 447523.022)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:4-6)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6914, - 6915, - 6916 - ]], - [[ - 6914, - 6917, - 6918 - ]], - [[ - 6917, - 6914, - 6916 - ]], - [[ - 6916, - 6919, - 6920 - ]], - [[ - 6916, - 6921, - 6919 - ]], - [[ - 6917, - 6916, - 6920 - ]], - [[ - 6922, - 6923, - 6924 - ]], - [[ - 6924, - 6923, - 6925 - ]], - [[ - 6924, - 6925, - 6926 - ]], - [[ - 6926, - 6925, - 6927 - ]], - [[ - 6926, - 6927, - 6914 - ]], - [[ - 6914, - 6927, - 6915 - ]], - [[ - 6928, - 6922, - 6918 - ]], - [[ - 6918, - 6922, - 6924 - ]], - [[ - 6918, - 6924, - 6926 - ]], - [[ - 6918, - 6926, - 6914 - ]], - [[ - 6929, - 6928, - 6917 - ]], - [[ - 6917, - 6928, - 6918 - ]], - [[ - 6930, - 6929, - 6885 - ]], - [[ - 6885, - 6929, - 6864 - ]], - [[ - 6864, - 6929, - 6920 - ]], - [[ - 6920, - 6929, - 6917 - ]], - [[ - 6931, - 6930, - 6886 - ]], - [[ - 6886, - 6930, - 6885 - ]], - [[ - 6886, - 6885, - 6867 - ]], - [[ - 6867, - 6885, - 6864 - ]], - [[ - 6867, - 6864, - 6919 - ]], - [[ - 6919, - 6864, - 6920 - ]], - [[ - 6932, - 6931, - 6921 - ]], - [[ - 6921, - 6931, - 6886 - ]], - [[ - 6921, - 6886, - 6867 - ]], - [[ - 6921, - 6867, - 6919 - ]], - [[ - 6933, - 6932, - 6916 - ]], - [[ - 6916, - 6932, - 6921 - ]], - [[ - 6923, - 6933, - 6925 - ]], - [[ - 6925, - 6933, - 6927 - ]], - [[ - 6927, - 6933, - 6915 - ]], - [[ - 6915, - 6933, - 6916 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbff4f-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000026157", - "identificatiebagvbohoogstehuisnummer": "(1:503010000003244)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003241)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.24000000953674, - "min-height-surface": -0.0399999991059303, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84867.943 447525.170)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:154-154C)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6934, - 6935, - 6936 - ]], - [[ - 6935, - 6937, - 6936 - ]], - [[ - 6935, - 6938, - 6937 - ]], - [[ - 6935, - 6939, - 6938 - ]], - [[ - 6935, - 6940, - 6939 - ]], - [[ - 6939, - 6940, - 6941 - ]], - [[ - 6940, - 6935, - 6942 - ]], - [[ - 6943, - 6944, - 6945 - ]], - [[ - 6943, - 6940, - 6942 - ]], - [[ - 6943, - 6942, - 6944 - ]], - [[ - 6944, - 6946, - 6947 - ]], - [[ - 6947, - 6946, - 6948 - ]], - [[ - 6948, - 6946, - 6949 - ]], - [[ - 6944, - 6942, - 6946 - ]], - [[ - 6950, - 2177, - 6934 - ]], - [[ - 6934, - 2177, - 6935 - ]], - [[ - 6951, - 6950, - 6936 - ]], - [[ - 6936, - 6950, - 6934 - ]], - [[ - 6952, - 6951, - 6937 - ]], - [[ - 6937, - 6951, - 6936 - ]], - [[ - 6953, - 6952, - 6938 - ]], - [[ - 6938, - 6952, - 6937 - ]], - [[ - 6954, - 6953, - 6939 - ]], - [[ - 6939, - 6953, - 6938 - ]], - [[ - 6955, - 6954, - 6941 - ]], - [[ - 6941, - 6954, - 6939 - ]], - [[ - 6956, - 6955, - 6940 - ]], - [[ - 6940, - 6955, - 6941 - ]], - [[ - 6957, - 6956, - 6943 - ]], - [[ - 6943, - 6956, - 6940 - ]], - [[ - 6958, - 6957, - 6945 - ]], - [[ - 6945, - 6957, - 6943 - ]], - [[ - 6959, - 6958, - 6944 - ]], - [[ - 6944, - 6958, - 6945 - ]], - [[ - 6960, - 6959, - 6947 - ]], - [[ - 6947, - 6959, - 6944 - ]], - [[ - 6961, - 6960, - 6948 - ]], - [[ - 6948, - 6960, - 6947 - ]], - [[ - 6962, - 6961, - 6949 - ]], - [[ - 6949, - 6961, - 6948 - ]], - [[ - 6963, - 6962, - 6964 - ]], - [[ - 6964, - 6962, - 6946 - ]], - [[ - 6946, - 6962, - 6949 - ]], - [[ - 6965, - 6963, - 1952 - ]], - [[ - 1952, - 6963, - 6964 - ]], - [[ - 1952, - 6964, - 6942 - ]], - [[ - 6942, - 6964, - 6946 - ]], - [[ - 2177, - 6965, - 6935 - ]], - [[ - 6935, - 6965, - 1952 - ]], - [[ - 6935, - 1952, - 6942 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbff54-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.6)", - "identificatiebagpnd": "503100000017307", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027065)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027064)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.85999989509583, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84904.818 447525.439)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:8-10)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6966, - 6967, - 6968 - ]], - [[ - 6969, - 6966, - 6970 - ]], - [[ - 6970, - 6966, - 6926 - ]], - [[ - 6926, - 6966, - 6927 - ]], - [[ - 6969, - 6967, - 6966 - ]], - [[ - 6971, - 6972, - 6969 - ]], - [[ - 6969, - 6972, - 6967 - ]], - [[ - 6973, - 6971, - 6970 - ]], - [[ - 6970, - 6971, - 6969 - ]], - [[ - 6924, - 6973, - 6926 - ]], - [[ - 6926, - 6973, - 6970 - ]], - [[ - 6925, - 6924, - 6927 - ]], - [[ - 6927, - 6924, - 6926 - ]], - [[ - 6974, - 6925, - 6966 - ]], - [[ - 6966, - 6925, - 6927 - ]], - [[ - 6975, - 6974, - 6968 - ]], - [[ - 6968, - 6974, - 6966 - ]], - [[ - 6972, - 6975, - 6967 - ]], - [[ - 6967, - 6975, - 6968 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbff59-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.6)", - "identificatiebagpnd": "503100000017215", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027067)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027066)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.85999989509583, - "min-height-surface": 0.150000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84908.607 447528.139)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:12-14)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6976, - 6977, - 6978 - ]], - [[ - 6978, - 6967, - 6969 - ]], - [[ - 6978, - 6979, - 6967 - ]], - [[ - 6976, - 6978, - 6969 - ]], - [[ - 6980, - 6981, - 6982 - ]], - [[ - 6982, - 6981, - 6983 - ]], - [[ - 6982, - 6983, - 6976 - ]], - [[ - 6976, - 6983, - 6977 - ]], - [[ - 6984, - 6980, - 6971 - ]], - [[ - 6971, - 6980, - 6969 - ]], - [[ - 6969, - 6980, - 6982 - ]], - [[ - 6969, - 6982, - 6976 - ]], - [[ - 6985, - 6984, - 6972 - ]], - [[ - 6972, - 6984, - 6971 - ]], - [[ - 6972, - 6971, - 6967 - ]], - [[ - 6967, - 6971, - 6969 - ]], - [[ - 6986, - 6985, - 6979 - ]], - [[ - 6979, - 6985, - 6972 - ]], - [[ - 6979, - 6972, - 6967 - ]], - [[ - 6987, - 6986, - 6978 - ]], - [[ - 6978, - 6986, - 6979 - ]], - [[ - 6981, - 6987, - 6983 - ]], - [[ - 6983, - 6987, - 6977 - ]], - [[ - 6977, - 6987, - 6978 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbff5e-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000026218", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027089)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.07999992370605, - "min-height-surface": -0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84861.651 447529.723)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:156)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6988, - 6989, - 6708 - ]], - [[ - 6707, - 6990, - 6991 - ]], - [[ - 6988, - 6708, - 6991 - ]], - [[ - 6991, - 6708, - 6707 - ]], - [[ - 6989, - 6992, - 6708 - ]], - [[ - 6989, - 6993, - 6992 - ]], - [[ - 6964, - 1952, - 6946 - ]], - [[ - 6946, - 1952, - 6942 - ]], - [[ - 6946, - 6942, - 6988 - ]], - [[ - 6988, - 6942, - 6989 - ]], - [[ - 6994, - 6964, - 6991 - ]], - [[ - 6991, - 6964, - 6946 - ]], - [[ - 6991, - 6946, - 6988 - ]], - [[ - 6995, - 6994, - 6990 - ]], - [[ - 6990, - 6994, - 6991 - ]], - [[ - 6706, - 6995, - 6707 - ]], - [[ - 6707, - 6995, - 6990 - ]], - [[ - 1964, - 6706, - 6708 - ]], - [[ - 6708, - 6706, - 6707 - ]], - [[ - 2148, - 1964, - 6992 - ]], - [[ - 6992, - 1964, - 6708 - ]], - [[ - 1951, - 2148, - 6993 - ]], - [[ - 6993, - 2148, - 6992 - ]], - [[ - 1952, - 1951, - 6942 - ]], - [[ - 6942, - 1951, - 6989 - ]], - [[ - 6989, - 1951, - 6993 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbff63-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.6)", - "identificatiebagpnd": "503100000017218", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027070)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027069)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.69000005722046, - "min-height-surface": 0.119999997317791, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84912.809 447531.432)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:16-18)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6996, - 6997, - 6998 - ]], - [[ - 6728, - 6999, - 6982 - ]], - [[ - 6982, - 6999, - 6983 - ]], - [[ - 6728, - 6730, - 6999 - ]], - [[ - 6999, - 6730, - 6997 - ]], - [[ - 6997, - 6730, - 6998 - ]], - [[ - 7000, - 7001, - 6727 - ]], - [[ - 6727, - 7001, - 6729 - ]], - [[ - 6727, - 6729, - 6728 - ]], - [[ - 6728, - 6729, - 6730 - ]], - [[ - 7002, - 7000, - 6980 - ]], - [[ - 6980, - 7000, - 6982 - ]], - [[ - 6982, - 7000, - 6727 - ]], - [[ - 6982, - 6727, - 6728 - ]], - [[ - 7003, - 7002, - 6981 - ]], - [[ - 6981, - 7002, - 6980 - ]], - [[ - 6981, - 6980, - 6983 - ]], - [[ - 6983, - 6980, - 6982 - ]], - [[ - 7004, - 7003, - 6999 - ]], - [[ - 6999, - 7003, - 6981 - ]], - [[ - 6999, - 6981, - 6983 - ]], - [[ - 7005, - 7004, - 6997 - ]], - [[ - 6997, - 7004, - 6999 - ]], - [[ - 7006, - 7005, - 6996 - ]], - [[ - 6996, - 7005, - 6997 - ]], - [[ - 7007, - 7006, - 6998 - ]], - [[ - 6998, - 7006, - 6996 - ]], - [[ - 7001, - 7007, - 6729 - ]], - [[ - 6729, - 7007, - 6730 - ]], - [[ - 6730, - 7007, - 6998 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bbff68-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:32.7)", - "identificatiebagpnd": "503100000017221", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003233)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 4.09999990463257, - "min-height-surface": 0.00999999977648258, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84886.280 447513.169)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:144)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7008, - 7009, - 7010 - ]], - [[ - 7011, - 7012, - 7013 - ]], - [[ - 7014, - 7015, - 7013 - ]], - [[ - 7012, - 7014, - 7013 - ]], - [[ - 7010, - 7009, - 7016 - ]], - [[ - 7011, - 7017, - 7012 - ]], - [[ - 7018, - 7011, - 7013 - ]], - [[ - 7010, - 7019, - 7018 - ]], - [[ - 7020, - 7021, - 7022 - ]], - [[ - 7023, - 7024, - 7020 - ]], - [[ - 7022, - 7025, - 7020 - ]], - [[ - 7011, - 7026, - 7022 - ]], - [[ - 7020, - 7025, - 7023 - ]], - [[ - 7025, - 7022, - 7026 - ]], - [[ - 7025, - 7026, - 7027 - ]], - [[ - 7026, - 7011, - 7028 - ]], - [[ - 7029, - 7030, - 7031 - ]], - [[ - 7029, - 7028, - 7030 - ]], - [[ - 7029, - 7026, - 7028 - ]], - [[ - 7011, - 7018, - 7028 - ]], - [[ - 7010, - 7018, - 7013 - ]], - [[ - 7032, - 7028, - 7018 - ]], - [[ - 7010, - 7016, - 7019 - ]], - [[ - 7033, - 7034, - 7008 - ]], - [[ - 7008, - 7034, - 7009 - ]], - [[ - 7035, - 7033, - 7010 - ]], - [[ - 7010, - 7033, - 7008 - ]], - [[ - 7036, - 7035, - 7013 - ]], - [[ - 7013, - 7035, - 7010 - ]], - [[ - 7037, - 7036, - 7015 - ]], - [[ - 7015, - 7036, - 7013 - ]], - [[ - 1064, - 7037, - 7014 - ]], - [[ - 7014, - 7037, - 7015 - ]], - [[ - 1067, - 1064, - 7012 - ]], - [[ - 7012, - 1064, - 7014 - ]], - [[ - 1066, - 1067, - 7017 - ]], - [[ - 7017, - 1067, - 7012 - ]], - [[ - 1069, - 1066, - 7011 - ]], - [[ - 7011, - 1066, - 7017 - ]], - [[ - 1070, - 1069, - 7022 - ]], - [[ - 7022, - 1069, - 7011 - ]], - [[ - 1083, - 1070, - 7021 - ]], - [[ - 7021, - 1070, - 7022 - ]], - [[ - 1093, - 1083, - 7020 - ]], - [[ - 7020, - 1083, - 7021 - ]], - [[ - 1092, - 1093, - 7024 - ]], - [[ - 7024, - 1093, - 7020 - ]], - [[ - 2854, - 1092, - 7023 - ]], - [[ - 7023, - 1092, - 7024 - ]], - [[ - 2855, - 2854, - 7025 - ]], - [[ - 7025, - 2854, - 7023 - ]], - [[ - 2851, - 2855, - 7027 - ]], - [[ - 7027, - 2855, - 7025 - ]], - [[ - 2853, - 2851, - 7026 - ]], - [[ - 7026, - 2851, - 7027 - ]], - [[ - 2852, - 2853, - 7029 - ]], - [[ - 7029, - 2853, - 7026 - ]], - [[ - 2850, - 2852, - 7031 - ]], - [[ - 7031, - 2852, - 7029 - ]], - [[ - 2849, - 2850, - 6768 - ]], - [[ - 6768, - 2850, - 7030 - ]], - [[ - 7030, - 2850, - 7031 - ]], - [[ - 6791, - 2849, - 6769 - ]], - [[ - 6769, - 2849, - 6768 - ]], - [[ - 6769, - 6768, - 7028 - ]], - [[ - 7028, - 6768, - 7030 - ]], - [[ - 6789, - 6791, - 6763 - ]], - [[ - 6763, - 6791, - 6769 - ]], - [[ - 6763, - 6769, - 7032 - ]], - [[ - 7032, - 6769, - 7028 - ]], - [[ - 6786, - 6789, - 6761 - ]], - [[ - 6761, - 6789, - 6763 - ]], - [[ - 6761, - 6763, - 7018 - ]], - [[ - 7018, - 6763, - 7032 - ]], - [[ - 6787, - 6786, - 6762 - ]], - [[ - 6762, - 6786, - 6761 - ]], - [[ - 6762, - 6761, - 7019 - ]], - [[ - 7019, - 6761, - 7018 - ]], - [[ - 7038, - 6787, - 7016 - ]], - [[ - 7016, - 6787, - 6762 - ]], - [[ - 7016, - 6762, - 7019 - ]], - [[ - 7034, - 7038, - 7009 - ]], - [[ - 7009, - 7038, - 7016 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc267b-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000027889", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0453f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.41000008583069, - "min-height-surface": 0.209999993443489, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 6901, - 6906, - 6800 - ]], - [[ - 6901, - 6803, - 6898 - ]], - [[ - 6901, - 6800, - 6803 - ]], - [[ - 6906, - 7039, - 6800 - ]], - [[ - 6906, - 7040, - 7039 - ]], - [[ - 6906, - 6909, - 7040 - ]], - [[ - 7040, - 6909, - 7041 - ]], - [[ - 6900, - 6905, - 6901 - ]], - [[ - 6901, - 6905, - 6906 - ]], - [[ - 6897, - 6900, - 6898 - ]], - [[ - 6898, - 6900, - 6901 - ]], - [[ - 6802, - 6897, - 6803 - ]], - [[ - 6803, - 6897, - 6898 - ]], - [[ - 6799, - 6802, - 6800 - ]], - [[ - 6800, - 6802, - 6803 - ]], - [[ - 7042, - 6799, - 7039 - ]], - [[ - 7039, - 6799, - 6800 - ]], - [[ - 7043, - 7042, - 7040 - ]], - [[ - 7040, - 7042, - 7039 - ]], - [[ - 7044, - 7043, - 7041 - ]], - [[ - 7041, - 7043, - 7040 - ]], - [[ - 6908, - 7044, - 6909 - ]], - [[ - 6909, - 7044, - 7041 - ]], - [[ - 6905, - 6908, - 6906 - ]], - [[ - 6906, - 6908, - 6909 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc2680-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:29.9)", - "identificatiebagpnd": "503100000017308", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027144)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027143)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 7.11999988555908, - "min-height-surface": -0.00999999977648258, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84901.723 447506.067)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:140-142)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7045, - 7046, - 7047 - ]], - [[ - 7048, - 7049, - 7050 - ]], - [[ - 7051, - 7046, - 7045 - ]], - [[ - 7052, - 7046, - 7053 - ]], - [[ - 7053, - 7046, - 7051 - ]], - [[ - 7050, - 7054, - 7051 - ]], - [[ - 7055, - 7045, - 7056 - ]], - [[ - 7057, - 7054, - 7049 - ]], - [[ - 7058, - 7057, - 7049 - ]], - [[ - 7048, - 7059, - 7049 - ]], - [[ - 7060, - 7059, - 7061 - ]], - [[ - 7060, - 7062, - 7059 - ]], - [[ - 7063, - 7059, - 7062 - ]], - [[ - 7064, - 7062, - 7065 - ]], - [[ - 7062, - 7060, - 7065 - ]], - [[ - 7049, - 7054, - 7050 - ]], - [[ - 7048, - 7061, - 7059 - ]], - [[ - 7066, - 7061, - 7067 - ]], - [[ - 7048, - 7067, - 7061 - ]], - [[ - 7068, - 7066, - 7067 - ]], - [[ - 7067, - 7048, - 7069 - ]], - [[ - 7051, - 7045, - 7050 - ]], - [[ - 7055, - 7050, - 7045 - ]], - [[ - 7070, - 7050, - 7071 - ]], - [[ - 7072, - 7055, - 7056 - ]], - [[ - 7071, - 7050, - 7055 - ]], - [[ - 7073, - 7074, - 7045 - ]], - [[ - 7045, - 7074, - 7075 - ]], - [[ - 7045, - 7075, - 7076 - ]], - [[ - 7045, - 7076, - 7056 - ]], - [[ - 7077, - 7073, - 7047 - ]], - [[ - 7047, - 7073, - 7045 - ]], - [[ - 7078, - 7077, - 7046 - ]], - [[ - 7046, - 7077, - 7047 - ]], - [[ - 7079, - 7078, - 7052 - ]], - [[ - 7052, - 7078, - 7046 - ]], - [[ - 7080, - 7079, - 7053 - ]], - [[ - 7053, - 7079, - 7052 - ]], - [[ - 7081, - 7080, - 7051 - ]], - [[ - 7051, - 7080, - 7053 - ]], - [[ - 7082, - 7081, - 7054 - ]], - [[ - 7054, - 7081, - 7051 - ]], - [[ - 7083, - 7082, - 7057 - ]], - [[ - 7057, - 7082, - 7054 - ]], - [[ - 7084, - 7083, - 7058 - ]], - [[ - 7058, - 7083, - 7057 - ]], - [[ - 7085, - 7084, - 7049 - ]], - [[ - 7049, - 7084, - 7058 - ]], - [[ - 7086, - 7085, - 7059 - ]], - [[ - 7059, - 7085, - 7049 - ]], - [[ - 7087, - 7086, - 7063 - ]], - [[ - 7063, - 7086, - 7059 - ]], - [[ - 7088, - 7087, - 7062 - ]], - [[ - 7062, - 7087, - 7063 - ]], - [[ - 7089, - 7088, - 7064 - ]], - [[ - 7064, - 7088, - 7062 - ]], - [[ - 7090, - 7089, - 7065 - ]], - [[ - 7065, - 7089, - 7064 - ]], - [[ - 7091, - 7090, - 7060 - ]], - [[ - 7060, - 7090, - 7065 - ]], - [[ - 7092, - 7091, - 7061 - ]], - [[ - 7061, - 7091, - 7060 - ]], - [[ - 7093, - 7092, - 7066 - ]], - [[ - 7066, - 7092, - 7061 - ]], - [[ - 7094, - 7093, - 7068 - ]], - [[ - 7068, - 7093, - 7066 - ]], - [[ - 7095, - 7094, - 7067 - ]], - [[ - 7067, - 7094, - 7068 - ]], - [[ - 7096, - 7095, - 7069 - ]], - [[ - 7069, - 7095, - 7067 - ]], - [[ - 7097, - 7096, - 7048 - ]], - [[ - 7048, - 7096, - 7069 - ]], - [[ - 7098, - 7097, - 7050 - ]], - [[ - 7050, - 7097, - 7048 - ]], - [[ - 7099, - 7098, - 7070 - ]], - [[ - 7070, - 7098, - 7050 - ]], - [[ - 7100, - 7099, - 7071 - ]], - [[ - 7071, - 7099, - 7070 - ]], - [[ - 7101, - 7100, - 7055 - ]], - [[ - 7055, - 7100, - 7071 - ]], - [[ - 7102, - 7101, - 7103 - ]], - [[ - 7103, - 7101, - 7104 - ]], - [[ - 7104, - 7101, - 7072 - ]], - [[ - 7072, - 7101, - 7055 - ]], - [[ - 7074, - 7102, - 7075 - ]], - [[ - 7075, - 7102, - 7103 - ]], - [[ - 7075, - 7103, - 7076 - ]], - [[ - 7076, - 7103, - 7104 - ]], - [[ - 7076, - 7104, - 7056 - ]], - [[ - 7056, - 7104, - 7072 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc2685-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:29.9)", - "identificatiebagpnd": "503100000017313", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027141)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027140)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 7.11999988555908, - "min-height-surface": -0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84907.181 447503.812)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:136-138)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7105, - 7106, - 7056 - ]], - [[ - 7107, - 7108, - 7109 - ]], - [[ - 7105, - 7056, - 7109 - ]], - [[ - 7109, - 7110, - 7107 - ]], - [[ - 7109, - 7056, - 7110 - ]], - [[ - 7110, - 7056, - 7045 - ]], - [[ - 7106, - 7111, - 7056 - ]], - [[ - 7112, - 7113, - 7114 - ]], - [[ - 7114, - 7113, - 1874 - ]], - [[ - 7114, - 1874, - 7115 - ]], - [[ - 7115, - 1874, - 7116 - ]], - [[ - 7115, - 7116, - 7105 - ]], - [[ - 7105, - 7116, - 7106 - ]], - [[ - 7117, - 7112, - 7109 - ]], - [[ - 7109, - 7112, - 7114 - ]], - [[ - 7109, - 7114, - 7115 - ]], - [[ - 7109, - 7115, - 7105 - ]], - [[ - 7118, - 7117, - 7108 - ]], - [[ - 7108, - 7117, - 7109 - ]], - [[ - 7119, - 7118, - 7107 - ]], - [[ - 7107, - 7118, - 7108 - ]], - [[ - 7120, - 7119, - 7110 - ]], - [[ - 7110, - 7119, - 7107 - ]], - [[ - 7121, - 7120, - 7073 - ]], - [[ - 7073, - 7120, - 7045 - ]], - [[ - 7045, - 7120, - 7110 - ]], - [[ - 7122, - 7121, - 7074 - ]], - [[ - 7074, - 7121, - 7073 - ]], - [[ - 7074, - 7073, - 7075 - ]], - [[ - 7075, - 7073, - 7076 - ]], - [[ - 7076, - 7073, - 7056 - ]], - [[ - 7056, - 7073, - 7045 - ]], - [[ - 7123, - 7122, - 1877 - ]], - [[ - 1877, - 7122, - 7074 - ]], - [[ - 1877, - 7074, - 7075 - ]], - [[ - 1877, - 7075, - 7124 - ]], - [[ - 7124, - 7075, - 7076 - ]], - [[ - 7124, - 7076, - 7111 - ]], - [[ - 7111, - 7076, - 7056 - ]], - [[ - 7113, - 7123, - 1874 - ]], - [[ - 1874, - 7123, - 7116 - ]], - [[ - 7116, - 7123, - 7106 - ]], - [[ - 7106, - 7123, - 1877 - ]], - [[ - 7106, - 1877, - 7124 - ]], - [[ - 7106, - 7124, - 7111 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc268a-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000017314", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027099)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.32999992370605, - "min-height-surface": 0.0700000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84911.581 447513.461)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:3)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7125, - 7126, - 7127 - ]], - [[ - 7125, - 7127, - 7128 - ]], - [[ - 7129, - 7076, - 7124 - ]], - [[ - 7130, - 7127, - 7126 - ]], - [[ - 7129, - 7104, - 7076 - ]], - [[ - 7129, - 7131, - 7104 - ]], - [[ - 7104, - 7131, - 7132 - ]], - [[ - 7129, - 7127, - 7131 - ]], - [[ - 7133, - 7134, - 7127 - ]], - [[ - 7131, - 7127, - 7134 - ]], - [[ - 7134, - 7135, - 7136 - ]], - [[ - 7135, - 7134, - 7133 - ]], - [[ - 7137, - 7130, - 7126 - ]], - [[ - 7133, - 7127, - 7130 - ]], - [[ - 1878, - 7138, - 7139 - ]], - [[ - 7139, - 7138, - 7140 - ]], - [[ - 7139, - 7140, - 7125 - ]], - [[ - 7125, - 7140, - 7126 - ]], - [[ - 1873, - 1878, - 7128 - ]], - [[ - 7128, - 1878, - 7139 - ]], - [[ - 7128, - 7139, - 7125 - ]], - [[ - 1870, - 1873, - 7127 - ]], - [[ - 7127, - 1873, - 7128 - ]], - [[ - 1871, - 1870, - 7129 - ]], - [[ - 7129, - 1870, - 7127 - ]], - [[ - 1877, - 1871, - 7124 - ]], - [[ - 7124, - 1871, - 7129 - ]], - [[ - 7075, - 1877, - 7076 - ]], - [[ - 7076, - 1877, - 7124 - ]], - [[ - 7103, - 7075, - 7104 - ]], - [[ - 7104, - 7075, - 7076 - ]], - [[ - 7141, - 7103, - 7132 - ]], - [[ - 7132, - 7103, - 7104 - ]], - [[ - 7142, - 7141, - 7131 - ]], - [[ - 7131, - 7141, - 7132 - ]], - [[ - 7143, - 7142, - 7134 - ]], - [[ - 7134, - 7142, - 7131 - ]], - [[ - 7144, - 7143, - 7136 - ]], - [[ - 7136, - 7143, - 7134 - ]], - [[ - 7145, - 7144, - 7135 - ]], - [[ - 7135, - 7144, - 7136 - ]], - [[ - 7146, - 7145, - 7133 - ]], - [[ - 7133, - 7145, - 7135 - ]], - [[ - 7147, - 7146, - 7130 - ]], - [[ - 7130, - 7146, - 7133 - ]], - [[ - 7148, - 7147, - 7137 - ]], - [[ - 7137, - 7147, - 7130 - ]], - [[ - 7138, - 7148, - 7140 - ]], - [[ - 7140, - 7148, - 7126 - ]], - [[ - 7126, - 7148, - 7137 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc2699-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37.6)", - "identificatiebagpnd": "503100000032234", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027139)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027137)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.16000008583069, - "min-height-surface": -0.0199999995529652, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84911.526 447499.820)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:134-134A)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7149, - 7150, - 7151 - ]], - [[ - 7152, - 7153, - 7154 - ]], - [[ - 7150, - 7149, - 7154 - ]], - [[ - 7154, - 7155, - 7152 - ]], - [[ - 7152, - 7155, - 7156 - ]], - [[ - 7155, - 7154, - 7157 - ]], - [[ - 7157, - 7115, - 7158 - ]], - [[ - 7157, - 7154, - 7116 - ]], - [[ - 7158, - 7115, - 7159 - ]], - [[ - 7157, - 7116, - 7115 - ]], - [[ - 7154, - 7149, - 7116 - ]], - [[ - 7150, - 7160, - 7151 - ]], - [[ - 7151, - 7160, - 7161 - ]], - [[ - 7151, - 7161, - 7162 - ]], - [[ - 7163, - 7160, - 7164 - ]], - [[ - 7161, - 7165, - 7166 - ]], - [[ - 7161, - 7163, - 7165 - ]], - [[ - 7161, - 7160, - 7163 - ]], - [[ - 7167, - 7168, - 7150 - ]], - [[ - 7150, - 7168, - 7160 - ]], - [[ - 7169, - 7167, - 7154 - ]], - [[ - 7154, - 7167, - 7150 - ]], - [[ - 7170, - 7169, - 7153 - ]], - [[ - 7153, - 7169, - 7154 - ]], - [[ - 7171, - 7170, - 7152 - ]], - [[ - 7152, - 7170, - 7153 - ]], - [[ - 7172, - 7171, - 7156 - ]], - [[ - 7156, - 7171, - 7152 - ]], - [[ - 7173, - 7172, - 7155 - ]], - [[ - 7155, - 7172, - 7156 - ]], - [[ - 7174, - 7173, - 7157 - ]], - [[ - 7157, - 7173, - 7155 - ]], - [[ - 7175, - 7174, - 7158 - ]], - [[ - 7158, - 7174, - 7157 - ]], - [[ - 7176, - 7175, - 7159 - ]], - [[ - 7159, - 7175, - 7158 - ]], - [[ - 7114, - 7176, - 7115 - ]], - [[ - 7115, - 7176, - 7159 - ]], - [[ - 1874, - 7114, - 7116 - ]], - [[ - 7116, - 7114, - 7115 - ]], - [[ - 1868, - 1874, - 7149 - ]], - [[ - 7149, - 1874, - 7116 - ]], - [[ - 1865, - 1868, - 7151 - ]], - [[ - 7151, - 1868, - 7149 - ]], - [[ - 1866, - 1865, - 7162 - ]], - [[ - 7162, - 1865, - 7151 - ]], - [[ - 1861, - 1866, - 7161 - ]], - [[ - 7161, - 1866, - 7162 - ]], - [[ - 7177, - 1861, - 1862 - ]], - [[ - 1862, - 1861, - 7178 - ]], - [[ - 7178, - 1861, - 7166 - ]], - [[ - 7166, - 1861, - 7161 - ]], - [[ - 7179, - 7177, - 7180 - ]], - [[ - 7180, - 7177, - 1862 - ]], - [[ - 7180, - 1862, - 7181 - ]], - [[ - 7181, - 1862, - 7178 - ]], - [[ - 7181, - 7178, - 7165 - ]], - [[ - 7165, - 7178, - 7166 - ]], - [[ - 7182, - 7179, - 7163 - ]], - [[ - 7163, - 7179, - 7180 - ]], - [[ - 7163, - 7180, - 7181 - ]], - [[ - 7163, - 7181, - 7165 - ]], - [[ - 7183, - 7182, - 7164 - ]], - [[ - 7164, - 7182, - 7163 - ]], - [[ - 7168, - 7183, - 7160 - ]], - [[ - 7160, - 7183, - 7164 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc269e-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:30.9)", - "identificatiebagpnd": "503100000017310", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027136)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.1800000667572, - "min-height-surface": -0.0199999995529652, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84912.622 447497.659)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:132)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7184, - 7185, - 7186 - ]], - [[ - 7186, - 7185, - 7187 - ]], - [[ - 7185, - 7184, - 7188 - ]], - [[ - 7185, - 7189, - 7190 - ]], - [[ - 7185, - 7188, - 7189 - ]], - [[ - 7188, - 7191, - 7192 - ]], - [[ - 7189, - 7188, - 7192 - ]], - [[ - 7184, - 7193, - 7188 - ]], - [[ - 7194, - 7195, - 7196 - ]], - [[ - 7196, - 7195, - 7197 - ]], - [[ - 7196, - 7197, - 7184 - ]], - [[ - 7184, - 7197, - 7193 - ]], - [[ - 7198, - 7194, - 7186 - ]], - [[ - 7186, - 7194, - 7196 - ]], - [[ - 7186, - 7196, - 7184 - ]], - [[ - 7199, - 7198, - 7187 - ]], - [[ - 7187, - 7198, - 7186 - ]], - [[ - 7200, - 7199, - 7185 - ]], - [[ - 7185, - 7199, - 7187 - ]], - [[ - 7167, - 7200, - 7150 - ]], - [[ - 7150, - 7200, - 7190 - ]], - [[ - 7190, - 7200, - 7185 - ]], - [[ - 7168, - 7167, - 7160 - ]], - [[ - 7160, - 7167, - 7150 - ]], - [[ - 7160, - 7150, - 7189 - ]], - [[ - 7189, - 7150, - 7190 - ]], - [[ - 7201, - 7168, - 7192 - ]], - [[ - 7192, - 7168, - 7160 - ]], - [[ - 7192, - 7160, - 7189 - ]], - [[ - 7202, - 7201, - 7191 - ]], - [[ - 7191, - 7201, - 7192 - ]], - [[ - 7203, - 7202, - 7188 - ]], - [[ - 7188, - 7202, - 7191 - ]], - [[ - 7195, - 7203, - 7197 - ]], - [[ - 7197, - 7203, - 7193 - ]], - [[ - 7193, - 7203, - 7188 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc26a3-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000022787", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027101)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027100)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.02999997138977, - "min-height-surface": 0.0599999986588955, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84913.581 447515.061)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:5-7)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7181, - 7204, - 7205 - ]], - [[ - 7178, - 7181, - 7205 - ]], - [[ - 7206, - 7207, - 7205 - ]], - [[ - 7205, - 7207, - 7178 - ]], - [[ - 7206, - 7139, - 7207 - ]], - [[ - 7206, - 7140, - 7139 - ]], - [[ - 7208, - 7206, - 7209 - ]], - [[ - 7210, - 7206, - 7211 - ]], - [[ - 7140, - 7208, - 7212 - ]], - [[ - 7140, - 7206, - 7208 - ]], - [[ - 7209, - 7206, - 7210 - ]], - [[ - 7213, - 7209, - 7210 - ]], - [[ - 7214, - 7215, - 7206 - ]], - [[ - 7206, - 7215, - 7216 - ]], - [[ - 7206, - 7216, - 7211 - ]], - [[ - 7217, - 7214, - 7205 - ]], - [[ - 7205, - 7214, - 7206 - ]], - [[ - 7218, - 7217, - 7204 - ]], - [[ - 7204, - 7217, - 7205 - ]], - [[ - 7180, - 7218, - 7181 - ]], - [[ - 7181, - 7218, - 7204 - ]], - [[ - 1862, - 7180, - 7178 - ]], - [[ - 7178, - 7180, - 7181 - ]], - [[ - 1879, - 1862, - 7207 - ]], - [[ - 7207, - 1862, - 7178 - ]], - [[ - 7219, - 1879, - 1878 - ]], - [[ - 1878, - 1879, - 7139 - ]], - [[ - 7139, - 1879, - 7207 - ]], - [[ - 7220, - 7219, - 7138 - ]], - [[ - 7138, - 7219, - 1878 - ]], - [[ - 7138, - 1878, - 7140 - ]], - [[ - 7140, - 1878, - 7139 - ]], - [[ - 7221, - 7220, - 7212 - ]], - [[ - 7212, - 7220, - 7138 - ]], - [[ - 7212, - 7138, - 7140 - ]], - [[ - 7222, - 7221, - 7208 - ]], - [[ - 7208, - 7221, - 7212 - ]], - [[ - 7223, - 7222, - 7209 - ]], - [[ - 7209, - 7222, - 7208 - ]], - [[ - 7224, - 7223, - 7213 - ]], - [[ - 7213, - 7223, - 7209 - ]], - [[ - 7225, - 7224, - 7226 - ]], - [[ - 7226, - 7224, - 7210 - ]], - [[ - 7210, - 7224, - 7213 - ]], - [[ - 7215, - 7225, - 7216 - ]], - [[ - 7216, - 7225, - 7226 - ]], - [[ - 7216, - 7226, - 7211 - ]], - [[ - 7211, - 7226, - 7210 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc26a8-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:30.9)", - "identificatiebagpnd": "503100000017303", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027135)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027134)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.75999999046326, - "min-height-surface": -0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84918.038 447495.615)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:130-130A)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7227, - 7228, - 7229 - ]], - [[ - 7228, - 7230, - 7231 - ]], - [[ - 7228, - 7227, - 7197 - ]], - [[ - 7232, - 7233, - 7234 - ]], - [[ - 7235, - 7232, - 7230 - ]], - [[ - 7232, - 7235, - 7233 - ]], - [[ - 7233, - 7235, - 7236 - ]], - [[ - 7236, - 7235, - 7237 - ]], - [[ - 7232, - 7231, - 7230 - ]], - [[ - 7230, - 7228, - 7238 - ]], - [[ - 7238, - 7228, - 7197 - ]], - [[ - 7239, - 7238, - 7196 - ]], - [[ - 7240, - 7239, - 7196 - ]], - [[ - 7238, - 7197, - 7196 - ]], - [[ - 7227, - 7241, - 7197 - ]], - [[ - 7227, - 7242, - 7241 - ]], - [[ - 7243, - 7244, - 7227 - ]], - [[ - 7227, - 7244, - 7242 - ]], - [[ - 7245, - 7243, - 7229 - ]], - [[ - 7229, - 7243, - 7227 - ]], - [[ - 7246, - 7245, - 7228 - ]], - [[ - 7228, - 7245, - 7229 - ]], - [[ - 7247, - 7246, - 7231 - ]], - [[ - 7231, - 7246, - 7228 - ]], - [[ - 7248, - 7247, - 7232 - ]], - [[ - 7232, - 7247, - 7231 - ]], - [[ - 7249, - 7248, - 7234 - ]], - [[ - 7234, - 7248, - 7232 - ]], - [[ - 1005, - 7249, - 7233 - ]], - [[ - 7233, - 7249, - 7234 - ]], - [[ - 998, - 1005, - 7236 - ]], - [[ - 7236, - 1005, - 7233 - ]], - [[ - 996, - 998, - 7237 - ]], - [[ - 7237, - 998, - 7236 - ]], - [[ - 1002, - 996, - 7235 - ]], - [[ - 7235, - 996, - 7237 - ]], - [[ - 1000, - 1002, - 7230 - ]], - [[ - 7230, - 1002, - 7235 - ]], - [[ - 1001, - 1000, - 7238 - ]], - [[ - 7238, - 1000, - 7230 - ]], - [[ - 999, - 1001, - 7239 - ]], - [[ - 7239, - 1001, - 7238 - ]], - [[ - 997, - 999, - 7240 - ]], - [[ - 7240, - 999, - 7239 - ]], - [[ - 7250, - 997, - 7194 - ]], - [[ - 7194, - 997, - 7196 - ]], - [[ - 7196, - 997, - 7240 - ]], - [[ - 7251, - 7250, - 7195 - ]], - [[ - 7195, - 7250, - 7194 - ]], - [[ - 7195, - 7194, - 7197 - ]], - [[ - 7197, - 7194, - 7196 - ]], - [[ - 7252, - 7251, - 7241 - ]], - [[ - 7241, - 7251, - 7195 - ]], - [[ - 7241, - 7195, - 7197 - ]], - [[ - 7244, - 7252, - 7242 - ]], - [[ - 7242, - 7252, - 7241 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc4dbd-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.8)", - "identificatiebagpnd": "503100000022788", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027103)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027102)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 5.8600001335144, - "min-height-surface": 0.0700000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84917.758 447517.943)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:9-11)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7253, - 7254, - 7255 - ]], - [[ - 7256, - 7257, - 7258 - ]], - [[ - 7258, - 7257, - 7259 - ]], - [[ - 7256, - 7254, - 7253 - ]], - [[ - 7257, - 7256, - 7253 - ]], - [[ - 7253, - 7255, - 7260 - ]], - [[ - 7254, - 7261, - 7255 - ]], - [[ - 7262, - 7263, - 6753 - ]], - [[ - 6753, - 7263, - 6754 - ]], - [[ - 6753, - 6754, - 6740 - ]], - [[ - 6740, - 6754, - 6742 - ]], - [[ - 6740, - 6742, - 7256 - ]], - [[ - 7256, - 6742, - 7254 - ]], - [[ - 7264, - 7262, - 7258 - ]], - [[ - 7258, - 7262, - 6753 - ]], - [[ - 7258, - 6753, - 6740 - ]], - [[ - 7258, - 6740, - 7256 - ]], - [[ - 7265, - 7264, - 7259 - ]], - [[ - 7259, - 7264, - 7258 - ]], - [[ - 7266, - 7265, - 7257 - ]], - [[ - 7257, - 7265, - 7259 - ]], - [[ - 7267, - 7266, - 7253 - ]], - [[ - 7253, - 7266, - 7257 - ]], - [[ - 7268, - 7267, - 7260 - ]], - [[ - 7260, - 7267, - 7253 - ]], - [[ - 7216, - 7268, - 7211 - ]], - [[ - 7211, - 7268, - 7255 - ]], - [[ - 7255, - 7268, - 7260 - ]], - [[ - 7226, - 7216, - 7210 - ]], - [[ - 7210, - 7216, - 7211 - ]], - [[ - 7210, - 7211, - 7261 - ]], - [[ - 7261, - 7211, - 7255 - ]], - [[ - 7263, - 7226, - 6754 - ]], - [[ - 6754, - 7226, - 6742 - ]], - [[ - 6742, - 7226, - 7254 - ]], - [[ - 7254, - 7226, - 7210 - ]], - [[ - 7254, - 7210, - 7261 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc4dc2-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:22.9)", - "identificatiebagpnd": "503100000017311", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027133)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 6.1399998664856, - "min-height-surface": -0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84928.992 447490.710)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:80)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7269, - 7270, - 7271 - ]], - [[ - 7270, - 7272, - 7271 - ]], - [[ - 7271, - 7272, - 7273 - ]], - [[ - 7273, - 7272, - 7274 - ]], - [[ - 7275, - 7274, - 7272 - ]], - [[ - 7272, - 7270, - 7276 - ]], - [[ - 6696, - 6698, - 6688 - ]], - [[ - 6688, - 6698, - 6692 - ]], - [[ - 6688, - 6692, - 7269 - ]], - [[ - 7269, - 6692, - 7270 - ]], - [[ - 6694, - 6696, - 6689 - ]], - [[ - 6689, - 6696, - 6688 - ]], - [[ - 6689, - 6688, - 7271 - ]], - [[ - 7271, - 6688, - 7269 - ]], - [[ - 7277, - 6694, - 7273 - ]], - [[ - 7273, - 6694, - 6689 - ]], - [[ - 7273, - 6689, - 7271 - ]], - [[ - 7278, - 7277, - 7274 - ]], - [[ - 7274, - 7277, - 7273 - ]], - [[ - 7279, - 7278, - 7275 - ]], - [[ - 7275, - 7278, - 7274 - ]], - [[ - 1263, - 7279, - 7272 - ]], - [[ - 7272, - 7279, - 7275 - ]], - [[ - 1158, - 1263, - 6691 - ]], - [[ - 6691, - 1263, - 7276 - ]], - [[ - 7276, - 1263, - 7272 - ]], - [[ - 6698, - 1158, - 6692 - ]], - [[ - 6692, - 1158, - 6691 - ]], - [[ - 6692, - 6691, - 7270 - ]], - [[ - 7270, - 6691, - 7276 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc4dc7-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000026304", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003296)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 6.05999994277954, - "min-height-surface": 0.140000000596046, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84947.427 447599.451)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:36)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7280, - 7281, - 7282 - ]], - [[ - 7283, - 7280, - 7282 - ]], - [[ - 7284, - 7280, - 7283 - ]], - [[ - 7284, - 7285, - 7280 - ]], - [[ - 7284, - 7286, - 7285 - ]], - [[ - 7285, - 7286, - 7287 - ]], - [[ - 7288, - 7289, - 543 - ]], - [[ - 543, - 7289, - 544 - ]], - [[ - 543, - 544, - 528 - ]], - [[ - 528, - 544, - 531 - ]], - [[ - 528, - 531, - 7284 - ]], - [[ - 7284, - 531, - 7286 - ]], - [[ - 7290, - 7288, - 7291 - ]], - [[ - 7291, - 7288, - 7292 - ]], - [[ - 7292, - 7288, - 7283 - ]], - [[ - 7283, - 7288, - 543 - ]], - [[ - 7283, - 543, - 528 - ]], - [[ - 7283, - 528, - 7284 - ]], - [[ - 7293, - 7290, - 7294 - ]], - [[ - 7294, - 7290, - 7291 - ]], - [[ - 7294, - 7291, - 7295 - ]], - [[ - 7295, - 7291, - 7292 - ]], - [[ - 7295, - 7292, - 7282 - ]], - [[ - 7282, - 7292, - 7283 - ]], - [[ - 7296, - 7293, - 7281 - ]], - [[ - 7281, - 7293, - 7294 - ]], - [[ - 7281, - 7294, - 7295 - ]], - [[ - 7281, - 7295, - 7282 - ]], - [[ - 7297, - 7296, - 7280 - ]], - [[ - 7280, - 7296, - 7281 - ]], - [[ - 7298, - 7297, - 7285 - ]], - [[ - 7285, - 7297, - 7280 - ]], - [[ - 7299, - 7298, - 7287 - ]], - [[ - 7287, - 7298, - 7285 - ]], - [[ - 7289, - 7299, - 544 - ]], - [[ - 544, - 7299, - 531 - ]], - [[ - 531, - 7299, - 7286 - ]], - [[ - 7286, - 7299, - 7287 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc4dcc-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000026305", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003295)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0454c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 4.51000022888184, - "min-height-surface": 0.150000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84941.552 447605.645)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:35)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7292, - 7300, - 7301 - ]], - [[ - 7300, - 7292, - 7302 - ]], - [[ - 7303, - 7300, - 7302 - ]], - [[ - 7304, - 7292, - 7295 - ]], - [[ - 7305, - 7302, - 7306 - ]], - [[ - 7305, - 7306, - 7307 - ]], - [[ - 7302, - 7292, - 7304 - ]], - [[ - 7308, - 7304, - 7295 - ]], - [[ - 7306, - 7302, - 7304 - ]], - [[ - 7308, - 7295, - 7309 - ]], - [[ - 7291, - 7294, - 7292 - ]], - [[ - 7292, - 7294, - 7295 - ]], - [[ - 7310, - 7291, - 7301 - ]], - [[ - 7301, - 7291, - 7292 - ]], - [[ - 7311, - 7310, - 7300 - ]], - [[ - 7300, - 7310, - 7301 - ]], - [[ - 7312, - 7311, - 7303 - ]], - [[ - 7303, - 7311, - 7300 - ]], - [[ - 7313, - 7312, - 7314 - ]], - [[ - 7314, - 7312, - 7315 - ]], - [[ - 7315, - 7312, - 7302 - ]], - [[ - 7302, - 7312, - 7303 - ]], - [[ - 7316, - 7313, - 7317 - ]], - [[ - 7317, - 7313, - 7314 - ]], - [[ - 7317, - 7314, - 7318 - ]], - [[ - 7318, - 7314, - 7315 - ]], - [[ - 7318, - 7315, - 7305 - ]], - [[ - 7305, - 7315, - 7302 - ]], - [[ - 7319, - 7316, - 7307 - ]], - [[ - 7307, - 7316, - 7317 - ]], - [[ - 7307, - 7317, - 7318 - ]], - [[ - 7307, - 7318, - 7305 - ]], - [[ - 7320, - 7319, - 7306 - ]], - [[ - 7306, - 7319, - 7307 - ]], - [[ - 7321, - 7320, - 7304 - ]], - [[ - 7304, - 7320, - 7306 - ]], - [[ - 7322, - 7321, - 7308 - ]], - [[ - 7308, - 7321, - 7304 - ]], - [[ - 7323, - 7322, - 7309 - ]], - [[ - 7309, - 7322, - 7308 - ]], - [[ - 7294, - 7323, - 7295 - ]], - [[ - 7295, - 7323, - 7309 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc751d-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36)", - "identificatiebagpnd": "503100000026236", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027040)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0455949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.03999996185303, - "min-height-surface": 0.400000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84899.425 447577.136)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:35)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7324, - 7325, - 7326 - ]], - [[ - 7324, - 7327, - 7328 - ]], - [[ - 7324, - 7326, - 7327 - ]], - [[ - 7325, - 7329, - 7326 - ]], - [[ - 7326, - 7329, - 7330 - ]], - [[ - 7331, - 7332, - 7333 - ]], - [[ - 7333, - 7332, - 2312 - ]], - [[ - 7333, - 2312, - 7324 - ]], - [[ - 7324, - 2312, - 7325 - ]], - [[ - 7334, - 7331, - 2284 - ]], - [[ - 2284, - 7331, - 7333 - ]], - [[ - 2284, - 7333, - 7328 - ]], - [[ - 7328, - 7333, - 7324 - ]], - [[ - 7335, - 7334, - 2285 - ]], - [[ - 2285, - 7334, - 7336 - ]], - [[ - 7336, - 7334, - 7327 - ]], - [[ - 7327, - 7334, - 2284 - ]], - [[ - 7327, - 2284, - 7328 - ]], - [[ - 7337, - 7335, - 7338 - ]], - [[ - 7338, - 7335, - 2285 - ]], - [[ - 7338, - 2285, - 7339 - ]], - [[ - 7339, - 2285, - 7336 - ]], - [[ - 7339, - 7336, - 7326 - ]], - [[ - 7326, - 7336, - 7327 - ]], - [[ - 7340, - 7337, - 7341 - ]], - [[ - 7341, - 7337, - 7338 - ]], - [[ - 7341, - 7338, - 7342 - ]], - [[ - 7342, - 7338, - 7339 - ]], - [[ - 7342, - 7339, - 7330 - ]], - [[ - 7330, - 7339, - 7326 - ]], - [[ - 2311, - 7340, - 7329 - ]], - [[ - 7329, - 7340, - 7341 - ]], - [[ - 7329, - 7341, - 7342 - ]], - [[ - 7329, - 7342, - 7330 - ]], - [[ - 7332, - 2311, - 2312 - ]], - [[ - 2312, - 2311, - 7325 - ]], - [[ - 7325, - 2311, - 7329 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc7522-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36)", - "identificatiebagpnd": "503100000026232", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027041)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0455a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.24000000953674, - "min-height-surface": 0.419999986886978, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84902.334 447579.308)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:37)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7343, - 7344, - 7345 - ]], - [[ - 7346, - 7347, - 7348 - ]], - [[ - 7346, - 7345, - 7344 - ]], - [[ - 7346, - 7344, - 7347 - ]], - [[ - 7343, - 7349, - 7344 - ]], - [[ - 7343, - 7350, - 7351 - ]], - [[ - 7349, - 7343, - 7351 - ]], - [[ - 2298, - 7352, - 7343 - ]], - [[ - 7343, - 7352, - 2297 - ]], - [[ - 7343, - 2297, - 7353 - ]], - [[ - 7343, - 7353, - 7350 - ]], - [[ - 2294, - 2298, - 7345 - ]], - [[ - 7345, - 2298, - 7343 - ]], - [[ - 2295, - 2294, - 7346 - ]], - [[ - 7346, - 2294, - 7345 - ]], - [[ - 2287, - 2295, - 7348 - ]], - [[ - 7348, - 2295, - 7346 - ]], - [[ - 2284, - 2287, - 7328 - ]], - [[ - 7328, - 2287, - 7347 - ]], - [[ - 7347, - 2287, - 7348 - ]], - [[ - 7333, - 2284, - 7324 - ]], - [[ - 7324, - 2284, - 7328 - ]], - [[ - 7324, - 7328, - 7344 - ]], - [[ - 7344, - 7328, - 7347 - ]], - [[ - 2312, - 7333, - 7325 - ]], - [[ - 7325, - 7333, - 7324 - ]], - [[ - 7325, - 7324, - 7349 - ]], - [[ - 7349, - 7324, - 7344 - ]], - [[ - 7354, - 2312, - 2308 - ]], - [[ - 2308, - 2312, - 7355 - ]], - [[ - 7355, - 2312, - 7351 - ]], - [[ - 7351, - 2312, - 7325 - ]], - [[ - 7351, - 7325, - 7349 - ]], - [[ - 7352, - 7354, - 2297 - ]], - [[ - 2297, - 7354, - 2308 - ]], - [[ - 2297, - 2308, - 7353 - ]], - [[ - 7353, - 2308, - 7355 - ]], - [[ - 7353, - 7355, - 7350 - ]], - [[ - 7350, - 7355, - 7351 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c37-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000026230", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027051)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0455b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.9300000667572, - "min-height-surface": 0.300000011920929, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84902.625 447604.950)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:57)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7356, - 7357, - 7358 - ]], - [[ - 7356, - 7358, - 7359 - ]], - [[ - 7358, - 7357, - 7360 - ]], - [[ - 7358, - 7360, - 7361 - ]], - [[ - 2624, - 7362, - 7356 - ]], - [[ - 7356, - 7362, - 7357 - ]], - [[ - 2432, - 2624, - 7359 - ]], - [[ - 7359, - 2624, - 7356 - ]], - [[ - 2428, - 2432, - 7358 - ]], - [[ - 7358, - 2432, - 7359 - ]], - [[ - 2724, - 2428, - 7361 - ]], - [[ - 7361, - 2428, - 7358 - ]], - [[ - 7363, - 2724, - 7360 - ]], - [[ - 7360, - 2724, - 7361 - ]], - [[ - 7362, - 7363, - 7357 - ]], - [[ - 7357, - 7363, - 7360 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c3c-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36)", - "identificatiebagpnd": "503100000026224", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027042)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0455c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.02999997138977, - "min-height-surface": 0.479999989271164, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84905.401 447581.619)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:39)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7364, - 7355, - 7365 - ]], - [[ - 7355, - 7353, - 7365 - ]], - [[ - 7353, - 7366, - 7367 - ]], - [[ - 7368, - 7353, - 7367 - ]], - [[ - 7365, - 7353, - 7368 - ]], - [[ - 2322, - 2308, - 7364 - ]], - [[ - 7364, - 2308, - 7355 - ]], - [[ - 2414, - 2322, - 7365 - ]], - [[ - 7365, - 2322, - 7364 - ]], - [[ - 2669, - 2414, - 7368 - ]], - [[ - 7368, - 2414, - 7365 - ]], - [[ - 2507, - 2669, - 7367 - ]], - [[ - 7367, - 2669, - 7368 - ]], - [[ - 2290, - 2507, - 7366 - ]], - [[ - 7366, - 2507, - 7367 - ]], - [[ - 2297, - 2290, - 7353 - ]], - [[ - 7353, - 2290, - 7366 - ]], - [[ - 2308, - 2297, - 7355 - ]], - [[ - 7355, - 2297, - 7353 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c41-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000032721", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027052)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0455d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.94000005722046, - "min-height-surface": 0.300000011920929, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84905.591 447607.059)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:59)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7369, - 7370, - 7371 - ]], - [[ - 7372, - 7373, - 7374 - ]], - [[ - 7371, - 7375, - 7374 - ]], - [[ - 7370, - 7376, - 7371 - ]], - [[ - 7374, - 7375, - 7372 - ]], - [[ - 7372, - 7377, - 7378 - ]], - [[ - 7372, - 7375, - 7377 - ]], - [[ - 7371, - 7376, - 7375 - ]], - [[ - 7379, - 7380, - 2449 - ]], - [[ - 2449, - 7380, - 7381 - ]], - [[ - 2449, - 7381, - 7369 - ]], - [[ - 7369, - 7381, - 7370 - ]], - [[ - 2447, - 7379, - 7371 - ]], - [[ - 7371, - 7379, - 2449 - ]], - [[ - 7371, - 2449, - 7369 - ]], - [[ - 2443, - 2447, - 7374 - ]], - [[ - 7374, - 2447, - 7371 - ]], - [[ - 2444, - 2443, - 7373 - ]], - [[ - 7373, - 2443, - 7374 - ]], - [[ - 2451, - 2444, - 7372 - ]], - [[ - 7372, - 2444, - 7373 - ]], - [[ - 2438, - 2451, - 7378 - ]], - [[ - 7378, - 2451, - 7372 - ]], - [[ - 2439, - 2438, - 7377 - ]], - [[ - 7377, - 2438, - 7378 - ]], - [[ - 2624, - 2439, - 7356 - ]], - [[ - 7356, - 2439, - 7375 - ]], - [[ - 7375, - 2439, - 7377 - ]], - [[ - 7362, - 2624, - 7357 - ]], - [[ - 7357, - 2624, - 7356 - ]], - [[ - 7357, - 7356, - 7376 - ]], - [[ - 7376, - 7356, - 7375 - ]], - [[ - 7380, - 7362, - 7381 - ]], - [[ - 7381, - 7362, - 7370 - ]], - [[ - 7370, - 7362, - 7357 - ]], - [[ - 7370, - 7357, - 7376 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c46-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000026228", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027053)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0455e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.01999998092651, - "min-height-surface": 0.310000002384186, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84908.575 447609.097)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:61)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7382, - 7383, - 7384 - ]], - [[ - 7382, - 7384, - 7385 - ]], - [[ - 7383, - 7386, - 7384 - ]], - [[ - 7387, - 7388, - 2454 - ]], - [[ - 2454, - 7388, - 7389 - ]], - [[ - 2454, - 7389, - 7382 - ]], - [[ - 7382, - 7389, - 7383 - ]], - [[ - 2445, - 7387, - 7385 - ]], - [[ - 7385, - 7387, - 2454 - ]], - [[ - 7385, - 2454, - 7382 - ]], - [[ - 2449, - 2445, - 7369 - ]], - [[ - 7369, - 2445, - 7384 - ]], - [[ - 7384, - 2445, - 7385 - ]], - [[ - 7381, - 2449, - 7370 - ]], - [[ - 7370, - 2449, - 7369 - ]], - [[ - 7370, - 7369, - 7386 - ]], - [[ - 7386, - 7369, - 7384 - ]], - [[ - 7388, - 7381, - 7389 - ]], - [[ - 7389, - 7381, - 7383 - ]], - [[ - 7383, - 7381, - 7370 - ]], - [[ - 7383, - 7370, - 7386 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c4b-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000026229", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027054)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0455f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.02999997138977, - "min-height-surface": 0.319999992847443, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84912.042 447611.640)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:63)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7390, - 7391, - 7392 - ]], - [[ - 7393, - 7390, - 7392 - ]], - [[ - 7391, - 7390, - 7394 - ]], - [[ - 7390, - 7393, - 7395 - ]], - [[ - 7393, - 7396, - 7395 - ]], - [[ - 7393, - 7397, - 7398 - ]], - [[ - 7396, - 7393, - 7398 - ]], - [[ - 7399, - 7400, - 7393 - ]], - [[ - 7393, - 7400, - 7397 - ]], - [[ - 7401, - 7399, - 7392 - ]], - [[ - 7392, - 7399, - 7393 - ]], - [[ - 2630, - 7401, - 7391 - ]], - [[ - 7391, - 7401, - 7392 - ]], - [[ - 2440, - 2630, - 7394 - ]], - [[ - 7394, - 2630, - 7391 - ]], - [[ - 2453, - 2440, - 7390 - ]], - [[ - 7390, - 2440, - 7394 - ]], - [[ - 2454, - 2453, - 7382 - ]], - [[ - 7382, - 2453, - 7395 - ]], - [[ - 7395, - 2453, - 7390 - ]], - [[ - 7389, - 2454, - 7383 - ]], - [[ - 7383, - 2454, - 7382 - ]], - [[ - 7383, - 7382, - 7396 - ]], - [[ - 7396, - 7382, - 7395 - ]], - [[ - 7402, - 7389, - 7398 - ]], - [[ - 7398, - 7389, - 7383 - ]], - [[ - 7398, - 7383, - 7396 - ]], - [[ - 7400, - 7402, - 7397 - ]], - [[ - 7397, - 7402, - 7398 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c50-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.2)", - "identificatiebagpnd": "503100000026227", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027055)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.24000000953674, - "min-height-surface": 0.46000000834465, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84920.220 447592.293)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:67)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7403, - 7404, - 7405 - ]], - [[ - 7403, - 7406, - 7407 - ]], - [[ - 7404, - 7403, - 7408 - ]], - [[ - 7408, - 7403, - 7407 - ]], - [[ - 7407, - 7406, - 7409 - ]], - [[ - 2491, - 2714, - 7410 - ]], - [[ - 7410, - 2714, - 7411 - ]], - [[ - 7410, - 7411, - 7403 - ]], - [[ - 7403, - 7411, - 7406 - ]], - [[ - 2492, - 2491, - 7405 - ]], - [[ - 7405, - 2491, - 7410 - ]], - [[ - 7405, - 7410, - 7403 - ]], - [[ - 2508, - 2492, - 7404 - ]], - [[ - 7404, - 2492, - 7405 - ]], - [[ - 2596, - 2508, - 7408 - ]], - [[ - 7408, - 2508, - 7404 - ]], - [[ - 2649, - 2596, - 7412 - ]], - [[ - 7412, - 2596, - 7407 - ]], - [[ - 7407, - 2596, - 7408 - ]], - [[ - 2461, - 2649, - 7413 - ]], - [[ - 7413, - 2649, - 7412 - ]], - [[ - 7413, - 7412, - 7409 - ]], - [[ - 7409, - 7412, - 7407 - ]], - [[ - 2714, - 2461, - 7411 - ]], - [[ - 7411, - 2461, - 7406 - ]], - [[ - 7406, - 2461, - 7413 - ]], - [[ - 7406, - 7413, - 7409 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c53-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000026226", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.08999991416931, - "min-height-surface": 0.449999988079071, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7412, - 7413, - 7414 - ]], - [[ - 7412, - 7414, - 7415 - ]], - [[ - 7413, - 7416, - 7414 - ]], - [[ - 7417, - 7418, - 2649 - ]], - [[ - 2649, - 7418, - 2461 - ]], - [[ - 2649, - 2461, - 7412 - ]], - [[ - 7412, - 2461, - 7413 - ]], - [[ - 2430, - 7417, - 7415 - ]], - [[ - 7415, - 7417, - 2649 - ]], - [[ - 7415, - 2649, - 7412 - ]], - [[ - 2431, - 2430, - 7414 - ]], - [[ - 7414, - 2430, - 7415 - ]], - [[ - 2441, - 2431, - 7416 - ]], - [[ - 7416, - 2431, - 7414 - ]], - [[ - 7418, - 2441, - 2461 - ]], - [[ - 2461, - 2441, - 7413 - ]], - [[ - 7413, - 2441, - 7416 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c58-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000017319", - "identificatiebagvbohoogstehuisnummer": "(1:503010000003291)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003290)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.95000004768372, - "min-height-surface": 0.310000002384186, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84925.993 447620.937)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:30-31)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7419, - 7420, - 7421 - ]], - [[ - 7422, - 7423, - 7424 - ]], - [[ - 7423, - 7425, - 7426 - ]], - [[ - 7424, - 7423, - 7426 - ]], - [[ - 7427, - 7422, - 7424 - ]], - [[ - 7428, - 7429, - 7430 - ]], - [[ - 7427, - 7431, - 7422 - ]], - [[ - 7432, - 7431, - 7433 - ]], - [[ - 7432, - 7434, - 7435 - ]], - [[ - 7432, - 7433, - 7434 - ]], - [[ - 7434, - 7433, - 7436 - ]], - [[ - 7431, - 7437, - 7433 - ]], - [[ - 7431, - 7427, - 7428 - ]], - [[ - 7437, - 7431, - 7428 - ]], - [[ - 7430, - 7437, - 7428 - ]], - [[ - 7421, - 7438, - 7427 - ]], - [[ - 7419, - 7421, - 7439 - ]], - [[ - 7428, - 7427, - 7440 - ]], - [[ - 7441, - 7440, - 7438 - ]], - [[ - 7441, - 7438, - 7442 - ]], - [[ - 7440, - 7427, - 7438 - ]], - [[ - 7438, - 7421, - 7443 - ]], - [[ - 7443, - 7444, - 7445 - ]], - [[ - 7443, - 7420, - 7444 - ]], - [[ - 7443, - 7421, - 7420 - ]], - [[ - 7446, - 7419, - 7439 - ]], - [[ - 7447, - 7419, - 7446 - ]], - [[ - 7448, - 7449, - 7421 - ]], - [[ - 7421, - 7449, - 7439 - ]], - [[ - 7450, - 7448, - 7427 - ]], - [[ - 7427, - 7448, - 7421 - ]], - [[ - 7451, - 7450, - 7424 - ]], - [[ - 7424, - 7450, - 7427 - ]], - [[ - 7452, - 7451, - 7426 - ]], - [[ - 7426, - 7451, - 7424 - ]], - [[ - 7453, - 7452, - 7425 - ]], - [[ - 7425, - 7452, - 7426 - ]], - [[ - 7454, - 7453, - 7423 - ]], - [[ - 7423, - 7453, - 7425 - ]], - [[ - 7455, - 7454, - 7422 - ]], - [[ - 7422, - 7454, - 7423 - ]], - [[ - 7456, - 7455, - 7431 - ]], - [[ - 7431, - 7455, - 7422 - ]], - [[ - 7457, - 7456, - 7432 - ]], - [[ - 7432, - 7456, - 7431 - ]], - [[ - 7458, - 7457, - 7435 - ]], - [[ - 7435, - 7457, - 7432 - ]], - [[ - 7459, - 7458, - 7434 - ]], - [[ - 7434, - 7458, - 7435 - ]], - [[ - 7460, - 7459, - 7436 - ]], - [[ - 7436, - 7459, - 7434 - ]], - [[ - 7461, - 7460, - 7433 - ]], - [[ - 7433, - 7460, - 7436 - ]], - [[ - 7462, - 7461, - 7437 - ]], - [[ - 7437, - 7461, - 7433 - ]], - [[ - 7463, - 7462, - 7430 - ]], - [[ - 7430, - 7462, - 7437 - ]], - [[ - 7464, - 7463, - 7429 - ]], - [[ - 7429, - 7463, - 7430 - ]], - [[ - 7465, - 7464, - 7428 - ]], - [[ - 7428, - 7464, - 7429 - ]], - [[ - 7466, - 7465, - 7440 - ]], - [[ - 7440, - 7465, - 7428 - ]], - [[ - 7467, - 7466, - 7441 - ]], - [[ - 7441, - 7466, - 7440 - ]], - [[ - 7468, - 7467, - 7442 - ]], - [[ - 7442, - 7467, - 7441 - ]], - [[ - 7469, - 7468, - 7438 - ]], - [[ - 7438, - 7468, - 7442 - ]], - [[ - 7470, - 7469, - 7443 - ]], - [[ - 7443, - 7469, - 7438 - ]], - [[ - 7471, - 7470, - 7445 - ]], - [[ - 7445, - 7470, - 7443 - ]], - [[ - 7472, - 7471, - 7444 - ]], - [[ - 7444, - 7471, - 7445 - ]], - [[ - 7473, - 7472, - 7420 - ]], - [[ - 7420, - 7472, - 7444 - ]], - [[ - 7474, - 7473, - 7419 - ]], - [[ - 7419, - 7473, - 7420 - ]], - [[ - 7475, - 7474, - 7447 - ]], - [[ - 7447, - 7474, - 7419 - ]], - [[ - 7476, - 7475, - 7446 - ]], - [[ - 7446, - 7475, - 7447 - ]], - [[ - 7449, - 7476, - 7439 - ]], - [[ - 7439, - 7476, - 7446 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c5d-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.2)", - "identificatiebagpnd": "503100000026225", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027057)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.19000005722046, - "min-height-surface": 0.46000000834465, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84922.501 447589.020)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:69)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7477, - 7478, - 7479 - ]], - [[ - 7477, - 7479, - 7480 - ]], - [[ - 7479, - 7478, - 7411 - ]], - [[ - 7479, - 7411, - 7410 - ]], - [[ - 7481, - 7482, - 2497 - ]], - [[ - 2497, - 7482, - 2618 - ]], - [[ - 2497, - 2618, - 7483 - ]], - [[ - 7483, - 2618, - 7484 - ]], - [[ - 7483, - 7484, - 7477 - ]], - [[ - 7477, - 7484, - 7478 - ]], - [[ - 2489, - 7481, - 7480 - ]], - [[ - 7480, - 7481, - 2497 - ]], - [[ - 7480, - 2497, - 7483 - ]], - [[ - 7480, - 7483, - 7477 - ]], - [[ - 2490, - 2489, - 7479 - ]], - [[ - 7479, - 2489, - 7480 - ]], - [[ - 2491, - 2490, - 7410 - ]], - [[ - 7410, - 2490, - 7479 - ]], - [[ - 2714, - 2491, - 7411 - ]], - [[ - 7411, - 2491, - 7410 - ]], - [[ - 7482, - 2714, - 2618 - ]], - [[ - 2618, - 2714, - 7484 - ]], - [[ - 7484, - 2714, - 7478 - ]], - [[ - 7478, - 2714, - 7411 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bc9c62-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.2)", - "identificatiebagpnd": "503100000032720", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027059)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3, - "min-height-surface": 0.490000009536743, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84924.685 447585.981)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:71)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7485, - 7486, - 7487 - ]], - [[ - 7485, - 7487, - 7488 - ]], - [[ - 7486, - 7489, - 7487 - ]], - [[ - 7487, - 7490, - 7491 - ]], - [[ - 7490, - 7483, - 7492 - ]], - [[ - 7493, - 7490, - 7489 - ]], - [[ - 7492, - 7494, - 7495 - ]], - [[ - 7492, - 7483, - 7494 - ]], - [[ - 7490, - 7484, - 7483 - ]], - [[ - 7490, - 7493, - 7484 - ]], - [[ - 7490, - 7487, - 7489 - ]], - [[ - 2262, - 2517, - 7496 - ]], - [[ - 7496, - 2517, - 7497 - ]], - [[ - 7496, - 7497, - 7485 - ]], - [[ - 7485, - 7497, - 7486 - ]], - [[ - 2260, - 2262, - 7488 - ]], - [[ - 7488, - 2262, - 7496 - ]], - [[ - 7488, - 7496, - 7485 - ]], - [[ - 2302, - 2260, - 7487 - ]], - [[ - 7487, - 2260, - 7488 - ]], - [[ - 2486, - 2302, - 7491 - ]], - [[ - 7491, - 2302, - 7487 - ]], - [[ - 2511, - 2486, - 7490 - ]], - [[ - 7490, - 2486, - 7491 - ]], - [[ - 2470, - 2511, - 7492 - ]], - [[ - 7492, - 2511, - 7490 - ]], - [[ - 2498, - 2470, - 7495 - ]], - [[ - 7495, - 2470, - 7492 - ]], - [[ - 2499, - 2498, - 7494 - ]], - [[ - 7494, - 2498, - 7495 - ]], - [[ - 2497, - 2499, - 7483 - ]], - [[ - 7483, - 2499, - 7494 - ]], - [[ - 2618, - 2497, - 7484 - ]], - [[ - 7484, - 2497, - 7483 - ]], - [[ - 2619, - 2618, - 7493 - ]], - [[ - 7493, - 2618, - 7484 - ]], - [[ - 2518, - 2619, - 7489 - ]], - [[ - 7489, - 2619, - 7493 - ]], - [[ - 2517, - 2518, - 7497 - ]], - [[ - 7497, - 2518, - 7486 - ]], - [[ - 7486, - 2518, - 7489 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bcc275-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000026308", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 4.05999994277954, - "min-height-surface": 0.209999993443489, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7498, - 7499, - 7500 - ]], - [[ - 7498, - 7500, - 7501 - ]], - [[ - 7501, - 7500, - 7502 - ]], - [[ - 7503, - 7504, - 7505 - ]], - [[ - 7505, - 7504, - 7506 - ]], - [[ - 7505, - 7506, - 7498 - ]], - [[ - 7498, - 7506, - 7499 - ]], - [[ - 7507, - 7503, - 7448 - ]], - [[ - 7448, - 7503, - 7421 - ]], - [[ - 7421, - 7503, - 7501 - ]], - [[ - 7501, - 7503, - 7505 - ]], - [[ - 7501, - 7505, - 7498 - ]], - [[ - 7508, - 7507, - 7449 - ]], - [[ - 7449, - 7507, - 7448 - ]], - [[ - 7449, - 7448, - 7439 - ]], - [[ - 7439, - 7448, - 7421 - ]], - [[ - 7439, - 7421, - 7502 - ]], - [[ - 7502, - 7421, - 7501 - ]], - [[ - 7509, - 7508, - 7500 - ]], - [[ - 7500, - 7508, - 7449 - ]], - [[ - 7500, - 7449, - 7439 - ]], - [[ - 7500, - 7439, - 7502 - ]], - [[ - 7504, - 7509, - 7506 - ]], - [[ - 7506, - 7509, - 7499 - ]], - [[ - 7499, - 7509, - 7500 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bcc27a-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000026307", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000060887)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.96000003814697, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84933.650 447613.578)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:33)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7510, - 7511, - 7506 - ]], - [[ - 7510, - 7505, - 7512 - ]], - [[ - 7512, - 7505, - 7513 - ]], - [[ - 7510, - 7506, - 7505 - ]], - [[ - 7514, - 7515, - 7510 - ]], - [[ - 7510, - 7515, - 7511 - ]], - [[ - 7516, - 7514, - 7512 - ]], - [[ - 7512, - 7514, - 7510 - ]], - [[ - 7517, - 7516, - 7513 - ]], - [[ - 7513, - 7516, - 7512 - ]], - [[ - 7518, - 7517, - 7503 - ]], - [[ - 7503, - 7517, - 7505 - ]], - [[ - 7505, - 7517, - 7513 - ]], - [[ - 7519, - 7518, - 7504 - ]], - [[ - 7504, - 7518, - 7503 - ]], - [[ - 7504, - 7503, - 7506 - ]], - [[ - 7506, - 7503, - 7505 - ]], - [[ - 7515, - 7519, - 7511 - ]], - [[ - 7511, - 7519, - 7504 - ]], - [[ - 7511, - 7504, - 7506 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bcc27f-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000026306", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003294)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.99000000953674, - "min-height-surface": 0.159999996423721, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84939.538 447607.795)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:34)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7315, - 7318, - 7520 - ]], - [[ - 7315, - 7521, - 7522 - ]], - [[ - 7521, - 7523, - 7524 - ]], - [[ - 7525, - 7526, - 7523 - ]], - [[ - 7521, - 7525, - 7523 - ]], - [[ - 7526, - 7525, - 7527 - ]], - [[ - 7521, - 7520, - 7525 - ]], - [[ - 7521, - 7315, - 7520 - ]], - [[ - 7520, - 7318, - 7528 - ]], - [[ - 7314, - 7317, - 7315 - ]], - [[ - 7315, - 7317, - 7318 - ]], - [[ - 7529, - 7314, - 7522 - ]], - [[ - 7522, - 7314, - 7315 - ]], - [[ - 7530, - 7529, - 7521 - ]], - [[ - 7521, - 7529, - 7522 - ]], - [[ - 7531, - 7530, - 7514 - ]], - [[ - 7514, - 7530, - 7510 - ]], - [[ - 7510, - 7530, - 7524 - ]], - [[ - 7524, - 7530, - 7521 - ]], - [[ - 7532, - 7531, - 7515 - ]], - [[ - 7515, - 7531, - 7514 - ]], - [[ - 7515, - 7514, - 7511 - ]], - [[ - 7511, - 7514, - 7510 - ]], - [[ - 7511, - 7510, - 7523 - ]], - [[ - 7523, - 7510, - 7524 - ]], - [[ - 7533, - 7532, - 7526 - ]], - [[ - 7526, - 7532, - 7515 - ]], - [[ - 7526, - 7515, - 7511 - ]], - [[ - 7526, - 7511, - 7523 - ]], - [[ - 7534, - 7533, - 7527 - ]], - [[ - 7527, - 7533, - 7526 - ]], - [[ - 7535, - 7534, - 7525 - ]], - [[ - 7525, - 7534, - 7527 - ]], - [[ - 7536, - 7535, - 7520 - ]], - [[ - 7520, - 7535, - 7525 - ]], - [[ - 7537, - 7536, - 7528 - ]], - [[ - 7528, - 7536, - 7520 - ]], - [[ - 7317, - 7537, - 7318 - ]], - [[ - 7318, - 7537, - 7528 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bcc293-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.3)", - "identificatiebagpnd": "503100000026220", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027028)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 5.55000019073486, - "min-height-surface": 0.180000007152557, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84865.905 447577.729)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:11)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7538, - 7539, - 7540 - ]], - [[ - 7538, - 7540, - 7541 - ]], - [[ - 7539, - 7542, - 7540 - ]], - [[ - 7543, - 7544, - 2051 - ]], - [[ - 2051, - 7544, - 7545 - ]], - [[ - 2051, - 7545, - 7546 - ]], - [[ - 7546, - 7545, - 7547 - ]], - [[ - 7546, - 7547, - 7538 - ]], - [[ - 7538, - 7547, - 7539 - ]], - [[ - 2174, - 7543, - 7541 - ]], - [[ - 7541, - 7543, - 2051 - ]], - [[ - 7541, - 2051, - 7546 - ]], - [[ - 7541, - 7546, - 7538 - ]], - [[ - 1932, - 2174, - 7548 - ]], - [[ - 7548, - 2174, - 7540 - ]], - [[ - 7540, - 2174, - 7541 - ]], - [[ - 7549, - 1932, - 7550 - ]], - [[ - 7550, - 1932, - 7548 - ]], - [[ - 7550, - 7548, - 7542 - ]], - [[ - 7542, - 7548, - 7540 - ]], - [[ - 7544, - 7549, - 7545 - ]], - [[ - 7545, - 7549, - 7547 - ]], - [[ - 7547, - 7549, - 7539 - ]], - [[ - 7539, - 7549, - 7550 - ]], - [[ - 7539, - 7550, - 7542 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bcc29d-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.3)", - "identificatiebagpnd": "503100000026221", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027029)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 4.6100001335144, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84870.014 447581.083)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:13)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7551, - 7552, - 7553 - ]], - [[ - 7551, - 7554, - 7547 - ]], - [[ - 7552, - 7551, - 7546 - ]], - [[ - 7555, - 7552, - 7546 - ]], - [[ - 7546, - 7551, - 7547 - ]], - [[ - 7556, - 7557, - 7558 - ]], - [[ - 7558, - 7557, - 7559 - ]], - [[ - 7559, - 7557, - 7560 - ]], - [[ - 7559, - 7560, - 7551 - ]], - [[ - 7551, - 7560, - 7554 - ]], - [[ - 7561, - 7556, - 7562 - ]], - [[ - 7562, - 7556, - 7558 - ]], - [[ - 7562, - 7558, - 7563 - ]], - [[ - 7563, - 7558, - 7559 - ]], - [[ - 7563, - 7559, - 7553 - ]], - [[ - 7553, - 7559, - 7551 - ]], - [[ - 7564, - 7561, - 2023 - ]], - [[ - 2023, - 7561, - 7562 - ]], - [[ - 2023, - 7562, - 7565 - ]], - [[ - 7565, - 7562, - 7563 - ]], - [[ - 7565, - 7563, - 7552 - ]], - [[ - 7552, - 7563, - 7553 - ]], - [[ - 2021, - 7564, - 7555 - ]], - [[ - 7555, - 7564, - 2023 - ]], - [[ - 7555, - 2023, - 7565 - ]], - [[ - 7555, - 7565, - 7552 - ]], - [[ - 2051, - 2021, - 7546 - ]], - [[ - 7546, - 2021, - 7555 - ]], - [[ - 7545, - 2051, - 7547 - ]], - [[ - 7547, - 2051, - 7546 - ]], - [[ - 7557, - 7545, - 7560 - ]], - [[ - 7560, - 7545, - 7554 - ]], - [[ - 7554, - 7545, - 7547 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bce9b7-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.3)", - "identificatiebagpnd": "503100000017403", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027030)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0456f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.75999999046326, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84873.014 447583.083)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:15)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7566, - 7559, - 7567 - ]], - [[ - 7566, - 7568, - 7559 - ]], - [[ - 7559, - 7568, - 7560 - ]], - [[ - 7560, - 7568, - 7569 - ]], - [[ - 7570, - 7571, - 7566 - ]], - [[ - 7566, - 7571, - 7568 - ]], - [[ - 7572, - 7570, - 7573 - ]], - [[ - 7573, - 7570, - 7567 - ]], - [[ - 7567, - 7570, - 7566 - ]], - [[ - 7556, - 7572, - 7558 - ]], - [[ - 7558, - 7572, - 7573 - ]], - [[ - 7558, - 7573, - 7559 - ]], - [[ - 7559, - 7573, - 7567 - ]], - [[ - 7557, - 7556, - 7560 - ]], - [[ - 7560, - 7556, - 7558 - ]], - [[ - 7560, - 7558, - 7559 - ]], - [[ - 7574, - 7557, - 7569 - ]], - [[ - 7569, - 7557, - 7560 - ]], - [[ - 7571, - 7574, - 7568 - ]], - [[ - 7568, - 7574, - 7569 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bce9c1-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000017318", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027043)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0457149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.75, - "min-height-surface": 0.219999998807907, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84877.536 447586.302)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:41)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7575, - 7576, - 7577 - ]], - [[ - 7575, - 7577, - 7578 - ]], - [[ - 7577, - 7576, - 7579 - ]], - [[ - 7580, - 7577, - 7579 - ]], - [[ - 7580, - 7579, - 7581 - ]], - [[ - 7582, - 7583, - 2360 - ]], - [[ - 2360, - 7583, - 7584 - ]], - [[ - 2360, - 7584, - 7575 - ]], - [[ - 7575, - 7584, - 7576 - ]], - [[ - 2358, - 7582, - 7578 - ]], - [[ - 7578, - 7582, - 2360 - ]], - [[ - 7578, - 2360, - 7575 - ]], - [[ - 2350, - 2358, - 7577 - ]], - [[ - 7577, - 2358, - 7578 - ]], - [[ - 2351, - 2350, - 7580 - ]], - [[ - 7580, - 2350, - 7577 - ]], - [[ - 2354, - 2351, - 7581 - ]], - [[ - 7581, - 2351, - 7580 - ]], - [[ - 7585, - 2354, - 7579 - ]], - [[ - 7579, - 2354, - 7581 - ]], - [[ - 7583, - 7585, - 7584 - ]], - [[ - 7584, - 7585, - 7576 - ]], - [[ - 7576, - 7585, - 7579 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bce9c6-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:52.7)", - "identificatiebagpnd": "503100000017422", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027031)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0457249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.75999999046326, - "min-height-surface": 0.280000001192093, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84879.588 447573.483)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:17)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7563, - 7586, - 7559 - ]], - [[ - 7587, - 7563, - 7588 - ]], - [[ - 7588, - 7589, - 7590 - ]], - [[ - 7588, - 7563, - 7589 - ]], - [[ - 7589, - 7563, - 7565 - ]], - [[ - 7587, - 7586, - 7563 - ]], - [[ - 7586, - 7591, - 7559 - ]], - [[ - 7559, - 7591, - 7567 - ]], - [[ - 7592, - 7593, - 7587 - ]], - [[ - 7587, - 7593, - 7586 - ]], - [[ - 7594, - 7592, - 7588 - ]], - [[ - 7588, - 7592, - 7587 - ]], - [[ - 7595, - 7594, - 7596 - ]], - [[ - 7596, - 7594, - 7590 - ]], - [[ - 7590, - 7594, - 7588 - ]], - [[ - 7597, - 7595, - 2128 - ]], - [[ - 2128, - 7595, - 7596 - ]], - [[ - 2128, - 7596, - 7589 - ]], - [[ - 7589, - 7596, - 7590 - ]], - [[ - 2023, - 7597, - 7565 - ]], - [[ - 7565, - 7597, - 2128 - ]], - [[ - 7565, - 2128, - 7589 - ]], - [[ - 7562, - 2023, - 7563 - ]], - [[ - 7563, - 2023, - 7565 - ]], - [[ - 7558, - 7562, - 7559 - ]], - [[ - 7559, - 7562, - 7563 - ]], - [[ - 7573, - 7558, - 7567 - ]], - [[ - 7567, - 7558, - 7559 - ]], - [[ - 7598, - 7573, - 7591 - ]], - [[ - 7591, - 7573, - 7567 - ]], - [[ - 7593, - 7598, - 7586 - ]], - [[ - 7586, - 7598, - 7591 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bce9cb-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000017409", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027044)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0457349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.9300000667572, - "min-height-surface": 0.230000004172325, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84880.543 447588.458)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:43)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7599, - 7600, - 7601 - ]], - [[ - 7602, - 7603, - 7601 - ]], - [[ - 7600, - 7604, - 7601 - ]], - [[ - 7601, - 7604, - 7602 - ]], - [[ - 7605, - 7606, - 2371 - ]], - [[ - 2371, - 7606, - 7607 - ]], - [[ - 2371, - 7607, - 7608 - ]], - [[ - 7608, - 7607, - 7609 - ]], - [[ - 7608, - 7609, - 7599 - ]], - [[ - 7599, - 7609, - 7600 - ]], - [[ - 2710, - 7605, - 7601 - ]], - [[ - 7601, - 7605, - 2371 - ]], - [[ - 7601, - 2371, - 7608 - ]], - [[ - 7601, - 7608, - 7599 - ]], - [[ - 2368, - 2710, - 7603 - ]], - [[ - 7603, - 2710, - 7601 - ]], - [[ - 2360, - 2368, - 7575 - ]], - [[ - 7575, - 2368, - 7602 - ]], - [[ - 7602, - 2368, - 7603 - ]], - [[ - 7584, - 2360, - 7576 - ]], - [[ - 7576, - 2360, - 7575 - ]], - [[ - 7576, - 7575, - 7604 - ]], - [[ - 7604, - 7575, - 7602 - ]], - [[ - 7606, - 7584, - 7607 - ]], - [[ - 7607, - 7584, - 7609 - ]], - [[ - 7609, - 7584, - 7600 - ]], - [[ - 7600, - 7584, - 7576 - ]], - [[ - 7600, - 7576, - 7604 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bce9d5-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000026231", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027045)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0457549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.92000007629395, - "min-height-surface": 0.259999990463257, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84884.043 447591.158)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:45)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7610, - 7611, - 7612 - ]], - [[ - 7610, - 7612, - 7613 - ]], - [[ - 7612, - 7611, - 7609 - ]], - [[ - 7612, - 7614, - 7615 - ]], - [[ - 7614, - 7612, - 7609 - ]], - [[ - 7614, - 7609, - 7616 - ]], - [[ - 7616, - 7609, - 7608 - ]], - [[ - 7617, - 7618, - 2602 - ]], - [[ - 2602, - 7618, - 7619 - ]], - [[ - 2602, - 7619, - 7620 - ]], - [[ - 7620, - 7619, - 7621 - ]], - [[ - 7620, - 7621, - 7610 - ]], - [[ - 7610, - 7621, - 7611 - ]], - [[ - 2362, - 7617, - 7613 - ]], - [[ - 7613, - 7617, - 2602 - ]], - [[ - 7613, - 2602, - 7620 - ]], - [[ - 7613, - 7620, - 7610 - ]], - [[ - 2376, - 2362, - 7612 - ]], - [[ - 7612, - 2362, - 7613 - ]], - [[ - 2344, - 2376, - 7615 - ]], - [[ - 7615, - 2376, - 7612 - ]], - [[ - 2372, - 2344, - 7614 - ]], - [[ - 7614, - 2344, - 7615 - ]], - [[ - 2345, - 2372, - 7616 - ]], - [[ - 7616, - 2372, - 7614 - ]], - [[ - 2371, - 2345, - 7608 - ]], - [[ - 7608, - 2345, - 7616 - ]], - [[ - 7607, - 2371, - 7609 - ]], - [[ - 7609, - 2371, - 7608 - ]], - [[ - 7618, - 7607, - 7619 - ]], - [[ - 7619, - 7607, - 7621 - ]], - [[ - 7621, - 7607, - 7611 - ]], - [[ - 7611, - 7607, - 7609 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bce9df-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000029881", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027046)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0457749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.85999989509583, - "min-height-surface": 0.280000001192093, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84886.747 447592.960)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:47)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7620, - 7622, - 7623 - ]], - [[ - 7624, - 7620, - 7623 - ]], - [[ - 7622, - 7625, - 7626 - ]], - [[ - 7622, - 7620, - 7625 - ]], - [[ - 7624, - 7621, - 7620 - ]], - [[ - 7624, - 7627, - 7628 - ]], - [[ - 7621, - 7624, - 7628 - ]], - [[ - 2386, - 2388, - 7624 - ]], - [[ - 7624, - 2388, - 7629 - ]], - [[ - 7624, - 7629, - 7627 - ]], - [[ - 2384, - 2386, - 7623 - ]], - [[ - 7623, - 2386, - 7624 - ]], - [[ - 2373, - 2384, - 7622 - ]], - [[ - 7622, - 2384, - 7623 - ]], - [[ - 2374, - 2373, - 7626 - ]], - [[ - 7626, - 2373, - 7622 - ]], - [[ - 2603, - 2374, - 7625 - ]], - [[ - 7625, - 2374, - 7626 - ]], - [[ - 2602, - 2603, - 7620 - ]], - [[ - 7620, - 2603, - 7625 - ]], - [[ - 7619, - 2602, - 7621 - ]], - [[ - 7621, - 2602, - 7620 - ]], - [[ - 7630, - 7619, - 7631 - ]], - [[ - 7631, - 7619, - 7628 - ]], - [[ - 7628, - 7619, - 7621 - ]], - [[ - 2388, - 7630, - 7629 - ]], - [[ - 7629, - 7630, - 7631 - ]], - [[ - 7629, - 7631, - 7627 - ]], - [[ - 7627, - 7631, - 7628 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd10f5-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000029882", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0457949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.84999990463257, - "min-height-surface": 0.280000001192093, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7632, - 7633, - 7634 - ]], - [[ - 7632, - 7634, - 7635 - ]], - [[ - 7634, - 7633, - 7629 - ]], - [[ - 7634, - 7629, - 7636 - ]], - [[ - 7633, - 7631, - 7629 - ]], - [[ - 2401, - 7637, - 7632 - ]], - [[ - 7632, - 7637, - 7633 - ]], - [[ - 2631, - 2401, - 7635 - ]], - [[ - 7635, - 2401, - 7632 - ]], - [[ - 2739, - 2631, - 7634 - ]], - [[ - 7634, - 2631, - 7635 - ]], - [[ - 2387, - 2739, - 7636 - ]], - [[ - 7636, - 2739, - 7634 - ]], - [[ - 2388, - 2387, - 7629 - ]], - [[ - 7629, - 2387, - 7636 - ]], - [[ - 7630, - 2388, - 7631 - ]], - [[ - 7631, - 2388, - 7629 - ]], - [[ - 7637, - 7630, - 7633 - ]], - [[ - 7633, - 7630, - 7631 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd10ff-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000017424", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000054296)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0457b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.84999990463257, - "min-height-surface": 0.280000001192093, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84892.280 447597.016)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:51)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7638, - 7639, - 7640 - ]], - [[ - 7639, - 7633, - 7640 - ]], - [[ - 7640, - 7641, - 7642 - ]], - [[ - 7641, - 7640, - 7633 - ]], - [[ - 7641, - 7633, - 7632 - ]], - [[ - 2406, - 7643, - 7638 - ]], - [[ - 7638, - 7643, - 7639 - ]], - [[ - 2405, - 2406, - 7640 - ]], - [[ - 7640, - 2406, - 7638 - ]], - [[ - 2402, - 2405, - 7642 - ]], - [[ - 7642, - 2405, - 7640 - ]], - [[ - 2403, - 2402, - 7641 - ]], - [[ - 7641, - 2402, - 7642 - ]], - [[ - 2401, - 2403, - 7632 - ]], - [[ - 7632, - 2403, - 7641 - ]], - [[ - 7637, - 2401, - 7633 - ]], - [[ - 7633, - 2401, - 7632 - ]], - [[ - 7643, - 7637, - 7639 - ]], - [[ - 7639, - 7637, - 7633 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd110e-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-37)", - "identificatiebagpnd": "503100000017410", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000061316)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0457e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.02999997138977, - "min-height-surface": 0.270000010728836, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84896.941 447600.562)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:53)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7644, - 7645, - 7646 - ]], - [[ - 7644, - 7646, - 7647 - ]], - [[ - 7645, - 7648, - 7646 - ]], - [[ - 7649, - 7650, - 7651 - ]], - [[ - 7649, - 7646, - 7648 - ]], - [[ - 7649, - 7648, - 7650 - ]], - [[ - 7652, - 7653, - 2416 - ]], - [[ - 2416, - 7653, - 7654 - ]], - [[ - 2416, - 7654, - 7644 - ]], - [[ - 7644, - 7654, - 7645 - ]], - [[ - 2411, - 7652, - 7647 - ]], - [[ - 7647, - 7652, - 2416 - ]], - [[ - 7647, - 2416, - 7644 - ]], - [[ - 2413, - 2411, - 7646 - ]], - [[ - 7646, - 2411, - 7647 - ]], - [[ - 2412, - 2413, - 7649 - ]], - [[ - 7649, - 2413, - 7646 - ]], - [[ - 2677, - 2412, - 7651 - ]], - [[ - 7651, - 2412, - 7649 - ]], - [[ - 7655, - 2677, - 2406 - ]], - [[ - 2406, - 2677, - 7638 - ]], - [[ - 7638, - 2677, - 7650 - ]], - [[ - 7650, - 2677, - 7651 - ]], - [[ - 7656, - 7655, - 7643 - ]], - [[ - 7643, - 7655, - 2406 - ]], - [[ - 7643, - 2406, - 7639 - ]], - [[ - 7639, - 2406, - 7638 - ]], - [[ - 7639, - 7638, - 7648 - ]], - [[ - 7648, - 7638, - 7650 - ]], - [[ - 7653, - 7656, - 7654 - ]], - [[ - 7654, - 7656, - 7645 - ]], - [[ - 7645, - 7656, - 7643 - ]], - [[ - 7645, - 7643, - 7639 - ]], - [[ - 7645, - 7639, - 7648 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd1111-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000017407", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0457f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.11999988555908, - "min-height-surface": 0.28999999165535, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7657, - 7658, - 7659 - ]], - [[ - 7660, - 7661, - 7659 - ]], - [[ - 7658, - 7662, - 7659 - ]], - [[ - 7661, - 7660, - 7663 - ]], - [[ - 7659, - 7662, - 7660 - ]], - [[ - 7664, - 7665, - 2724 - ]], - [[ - 2724, - 7665, - 7363 - ]], - [[ - 2724, - 7363, - 7361 - ]], - [[ - 7361, - 7363, - 7360 - ]], - [[ - 7361, - 7360, - 7657 - ]], - [[ - 7657, - 7360, - 7658 - ]], - [[ - 2659, - 7664, - 7659 - ]], - [[ - 7659, - 7664, - 2724 - ]], - [[ - 7659, - 2724, - 7361 - ]], - [[ - 7659, - 7361, - 7657 - ]], - [[ - 2575, - 2659, - 7661 - ]], - [[ - 7661, - 2659, - 7659 - ]], - [[ - 2661, - 2575, - 7663 - ]], - [[ - 7663, - 2575, - 7661 - ]], - [[ - 2416, - 2661, - 7644 - ]], - [[ - 7644, - 2661, - 7660 - ]], - [[ - 7660, - 2661, - 7663 - ]], - [[ - 7654, - 2416, - 7645 - ]], - [[ - 7645, - 2416, - 7644 - ]], - [[ - 7645, - 7644, - 7662 - ]], - [[ - 7662, - 7644, - 7660 - ]], - [[ - 7665, - 7654, - 7363 - ]], - [[ - 7363, - 7654, - 7360 - ]], - [[ - 7360, - 7654, - 7658 - ]], - [[ - 7658, - 7654, - 7645 - ]], - [[ - 7658, - 7645, - 7662 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd1116-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.3)", - "identificatiebagpnd": "503100000017412", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027024)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.01999998092651, - "min-height-surface": 0.0900000035762787, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84852.482 447568.060)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:3)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7666, - 7667, - 7668 - ]], - [[ - 7666, - 7669, - 7670 - ]], - [[ - 7667, - 7666, - 7670 - ]], - [[ - 7670, - 7669, - 375 - ]], - [[ - 374, - 7670, - 375 - ]], - [[ - 375, - 7669, - 7671 - ]], - [[ - 7672, - 7673, - 2001 - ]], - [[ - 2001, - 7673, - 7674 - ]], - [[ - 2001, - 7674, - 7666 - ]], - [[ - 7666, - 7674, - 7669 - ]], - [[ - 2093, - 7672, - 7668 - ]], - [[ - 7668, - 7672, - 2001 - ]], - [[ - 7668, - 2001, - 7666 - ]], - [[ - 1991, - 2093, - 7667 - ]], - [[ - 7667, - 2093, - 7668 - ]], - [[ - 1992, - 1991, - 7670 - ]], - [[ - 7670, - 1991, - 7667 - ]], - [[ - 383, - 1992, - 374 - ]], - [[ - 374, - 1992, - 7670 - ]], - [[ - 384, - 383, - 375 - ]], - [[ - 375, - 383, - 374 - ]], - [[ - 7675, - 384, - 7671 - ]], - [[ - 7671, - 384, - 375 - ]], - [[ - 7673, - 7675, - 7674 - ]], - [[ - 7674, - 7675, - 7669 - ]], - [[ - 7669, - 7675, - 7671 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd111b-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.3)", - "identificatiebagpnd": "503100000017420", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000054295)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.01999998092651, - "min-height-surface": 0.109999999403954, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84855.482 447570.260)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:5)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7676, - 7677, - 7669 - ]], - [[ - 7676, - 7669, - 7666 - ]], - [[ - 7678, - 7679, - 2000 - ]], - [[ - 2000, - 7679, - 7680 - ]], - [[ - 2000, - 7680, - 7676 - ]], - [[ - 7676, - 7680, - 7677 - ]], - [[ - 2001, - 7678, - 7666 - ]], - [[ - 7666, - 7678, - 2000 - ]], - [[ - 7666, - 2000, - 7676 - ]], - [[ - 7674, - 2001, - 7669 - ]], - [[ - 7669, - 2001, - 7666 - ]], - [[ - 7679, - 7674, - 7680 - ]], - [[ - 7680, - 7674, - 7677 - ]], - [[ - 7677, - 7674, - 7669 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd382e-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000017408", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.02999997138977, - "min-height-surface": 0.119999997317791, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7681, - 7682, - 7683 - ]], - [[ - 7681, - 7684, - 7685 - ]], - [[ - 7681, - 7683, - 7684 - ]], - [[ - 7686, - 7687, - 2003 - ]], - [[ - 2003, - 7687, - 7688 - ]], - [[ - 2003, - 7688, - 7681 - ]], - [[ - 7681, - 7688, - 7682 - ]], - [[ - 2000, - 7686, - 7676 - ]], - [[ - 7676, - 7686, - 7685 - ]], - [[ - 7685, - 7686, - 2003 - ]], - [[ - 7685, - 2003, - 7681 - ]], - [[ - 7680, - 2000, - 7677 - ]], - [[ - 7677, - 2000, - 7676 - ]], - [[ - 7677, - 7676, - 7684 - ]], - [[ - 7684, - 7676, - 7685 - ]], - [[ - 7689, - 7680, - 7683 - ]], - [[ - 7683, - 7680, - 7677 - ]], - [[ - 7683, - 7677, - 7684 - ]], - [[ - 7687, - 7689, - 7688 - ]], - [[ - 7688, - 7689, - 7682 - ]], - [[ - 7682, - 7689, - 7683 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd3833-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36.3)", - "identificatiebagpnd": "503100000026219", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027027)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.03999996185303, - "min-height-surface": 0.150000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84862.159 447575.143)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:9)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7548, - 7550, - 7690 - ]], - [[ - 7550, - 7691, - 7690 - ]], - [[ - 7692, - 7693, - 7694 - ]], - [[ - 7695, - 7692, - 7694 - ]], - [[ - 7690, - 7696, - 7694 - ]], - [[ - 7694, - 7696, - 7695 - ]], - [[ - 7690, - 7691, - 7696 - ]], - [[ - 7697, - 7698, - 1932 - ]], - [[ - 1932, - 7698, - 7549 - ]], - [[ - 1932, - 7549, - 7548 - ]], - [[ - 7548, - 7549, - 7550 - ]], - [[ - 2016, - 7697, - 7690 - ]], - [[ - 7690, - 7697, - 1932 - ]], - [[ - 7690, - 1932, - 7548 - ]], - [[ - 2010, - 2016, - 7694 - ]], - [[ - 7694, - 2016, - 7690 - ]], - [[ - 2011, - 2010, - 7693 - ]], - [[ - 7693, - 2010, - 7694 - ]], - [[ - 2017, - 2011, - 7692 - ]], - [[ - 7692, - 2011, - 7693 - ]], - [[ - 2007, - 2017, - 7695 - ]], - [[ - 7695, - 2017, - 7692 - ]], - [[ - 2003, - 2007, - 7681 - ]], - [[ - 7681, - 2007, - 7696 - ]], - [[ - 7696, - 2007, - 7695 - ]], - [[ - 7688, - 2003, - 7682 - ]], - [[ - 7682, - 2003, - 7681 - ]], - [[ - 7682, - 7681, - 7691 - ]], - [[ - 7691, - 7681, - 7696 - ]], - [[ - 7698, - 7688, - 7549 - ]], - [[ - 7549, - 7688, - 7550 - ]], - [[ - 7550, - 7688, - 7682 - ]], - [[ - 7550, - 7682, - 7691 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd384d-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.1)", - "identificatiebagpnd": "503100000017317", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027034)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.99000000953674, - "min-height-surface": 0.610000014305115, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84886.782 447557.084)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:21)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7699, - 7700, - 7701 - ]], - [[ - 7701, - 7700, - 7702 - ]], - [[ - 7699, - 7703, - 7700 - ]], - [[ - 7699, - 7704, - 7705 - ]], - [[ - 7703, - 7699, - 7705 - ]], - [[ - 7706, - 7705, - 7707 - ]], - [[ - 7705, - 7708, - 7707 - ]], - [[ - 7705, - 7704, - 7708 - ]], - [[ - 7709, - 7710, - 7699 - ]], - [[ - 7699, - 7710, - 7704 - ]], - [[ - 7711, - 7709, - 7701 - ]], - [[ - 7701, - 7709, - 7699 - ]], - [[ - 372, - 7711, - 355 - ]], - [[ - 355, - 7711, - 7702 - ]], - [[ - 7702, - 7711, - 7701 - ]], - [[ - 370, - 372, - 363 - ]], - [[ - 363, - 372, - 355 - ]], - [[ - 363, - 355, - 7700 - ]], - [[ - 7700, - 355, - 7702 - ]], - [[ - 341, - 370, - 323 - ]], - [[ - 323, - 370, - 361 - ]], - [[ - 361, - 370, - 363 - ]], - [[ - 361, - 363, - 7703 - ]], - [[ - 7703, - 363, - 7700 - ]], - [[ - 337, - 341, - 329 - ]], - [[ - 329, - 341, - 323 - ]], - [[ - 329, - 323, - 7705 - ]], - [[ - 7705, - 323, - 361 - ]], - [[ - 7705, - 361, - 7703 - ]], - [[ - 338, - 337, - 330 - ]], - [[ - 330, - 337, - 329 - ]], - [[ - 330, - 329, - 7706 - ]], - [[ - 7706, - 329, - 7705 - ]], - [[ - 7712, - 338, - 7707 - ]], - [[ - 7707, - 338, - 330 - ]], - [[ - 7707, - 330, - 7706 - ]], - [[ - 7713, - 7712, - 7708 - ]], - [[ - 7708, - 7712, - 7707 - ]], - [[ - 7710, - 7713, - 7704 - ]], - [[ - 7704, - 7713, - 7708 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd3852-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.1)", - "identificatiebagpnd": "503100000026237", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027035)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.13000011444092, - "min-height-surface": 0.5, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84902.062 447561.843)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:25)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7714, - 7715, - 7716 - ]], - [[ - 7716, - 7717, - 7718 - ]], - [[ - 7719, - 7720, - 7721 - ]], - [[ - 7717, - 7716, - 7715 - ]], - [[ - 7715, - 7714, - 7722 - ]], - [[ - 7714, - 7719, - 7722 - ]], - [[ - 7714, - 7720, - 7719 - ]], - [[ - 7723, - 7721, - 7724 - ]], - [[ - 7721, - 7725, - 7724 - ]], - [[ - 7721, - 7720, - 7725 - ]], - [[ - 7726, - 7727, - 7714 - ]], - [[ - 7714, - 7727, - 7720 - ]], - [[ - 7728, - 7726, - 7716 - ]], - [[ - 7716, - 7726, - 7714 - ]], - [[ - 7729, - 7728, - 7718 - ]], - [[ - 7718, - 7728, - 7716 - ]], - [[ - 7730, - 7729, - 7717 - ]], - [[ - 7717, - 7729, - 7718 - ]], - [[ - 7731, - 7730, - 7732 - ]], - [[ - 7732, - 7730, - 7733 - ]], - [[ - 7733, - 7730, - 7715 - ]], - [[ - 7715, - 7730, - 7717 - ]], - [[ - 7734, - 7731, - 2279 - ]], - [[ - 2279, - 7731, - 7732 - ]], - [[ - 2279, - 7732, - 7735 - ]], - [[ - 7735, - 7732, - 7733 - ]], - [[ - 7735, - 7733, - 7722 - ]], - [[ - 7722, - 7733, - 7715 - ]], - [[ - 2280, - 7734, - 7719 - ]], - [[ - 7719, - 7734, - 2279 - ]], - [[ - 7719, - 2279, - 7735 - ]], - [[ - 7719, - 7735, - 7722 - ]], - [[ - 2274, - 2280, - 7721 - ]], - [[ - 7721, - 2280, - 7719 - ]], - [[ - 2275, - 2274, - 7723 - ]], - [[ - 7723, - 2274, - 7721 - ]], - [[ - 7736, - 2275, - 7724 - ]], - [[ - 7724, - 2275, - 7723 - ]], - [[ - 7737, - 7736, - 7725 - ]], - [[ - 7725, - 7736, - 7724 - ]], - [[ - 7727, - 7737, - 7720 - ]], - [[ - 7720, - 7737, - 7725 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd3857-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36)", - "identificatiebagpnd": "503100000026234", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027037)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.3199999332428, - "min-height-surface": 0.400000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84889.601 447570.319)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:29)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7738, - 7739, - 7740 - ]], - [[ - 7739, - 7741, - 7740 - ]], - [[ - 7740, - 7741, - 7742 - ]], - [[ - 7742, - 7741, - 7743 - ]], - [[ - 7744, - 7745, - 7746 - ]], - [[ - 7746, - 7745, - 2580 - ]], - [[ - 7746, - 2580, - 7747 - ]], - [[ - 7747, - 2580, - 7748 - ]], - [[ - 7748, - 2580, - 7749 - ]], - [[ - 7749, - 2580, - 7750 - ]], - [[ - 7749, - 7750, - 7738 - ]], - [[ - 7738, - 7750, - 7739 - ]], - [[ - 7751, - 7744, - 7752 - ]], - [[ - 7752, - 7744, - 7746 - ]], - [[ - 7752, - 7746, - 7747 - ]], - [[ - 7752, - 7747, - 7753 - ]], - [[ - 7753, - 7747, - 7748 - ]], - [[ - 7753, - 7748, - 7740 - ]], - [[ - 7740, - 7748, - 7749 - ]], - [[ - 7740, - 7749, - 7738 - ]], - [[ - 7754, - 7751, - 7742 - ]], - [[ - 7742, - 7751, - 7752 - ]], - [[ - 7742, - 7752, - 7753 - ]], - [[ - 7742, - 7753, - 7740 - ]], - [[ - 7755, - 7754, - 7743 - ]], - [[ - 7743, - 7754, - 7742 - ]], - [[ - 2579, - 7755, - 7741 - ]], - [[ - 7741, - 7755, - 7743 - ]], - [[ - 7745, - 2579, - 2580 - ]], - [[ - 2580, - 2579, - 7750 - ]], - [[ - 7750, - 2579, - 7739 - ]], - [[ - 7739, - 2579, - 7741 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd5f6c-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.1)", - "identificatiebagpnd": "503100000033625", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027036)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.94000005722046, - "min-height-surface": 0.569999992847443, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84899.662 447565.129)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:27)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7733, - 7735, - 7756 - ]], - [[ - 7748, - 7757, - 7758 - ]], - [[ - 7748, - 7753, - 7757 - ]], - [[ - 7733, - 7756, - 7758 - ]], - [[ - 7758, - 7756, - 7748 - ]], - [[ - 7756, - 7735, - 7342 - ]], - [[ - 7735, - 7336, - 7342 - ]], - [[ - 7342, - 7336, - 7339 - ]], - [[ - 7732, - 2279, - 7733 - ]], - [[ - 7733, - 2279, - 7735 - ]], - [[ - 7759, - 7732, - 7758 - ]], - [[ - 7758, - 7732, - 7733 - ]], - [[ - 7760, - 7759, - 7757 - ]], - [[ - 7757, - 7759, - 7758 - ]], - [[ - 7752, - 7760, - 7753 - ]], - [[ - 7753, - 7760, - 7757 - ]], - [[ - 7747, - 7752, - 7748 - ]], - [[ - 7748, - 7752, - 7753 - ]], - [[ - 7761, - 7747, - 7756 - ]], - [[ - 7756, - 7747, - 7748 - ]], - [[ - 7341, - 7761, - 7342 - ]], - [[ - 7342, - 7761, - 7756 - ]], - [[ - 7338, - 7341, - 7339 - ]], - [[ - 7339, - 7341, - 7342 - ]], - [[ - 2285, - 7338, - 7336 - ]], - [[ - 7336, - 7338, - 7339 - ]], - [[ - 2279, - 2285, - 7735 - ]], - [[ - 7735, - 2285, - 7336 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd5f71-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:52.7)", - "identificatiebagpnd": "503100000026222", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027032)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 4.15000009536743, - "min-height-surface": 0.28999999165535, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84883.868 447567.309)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:19)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7762, - 7763, - 7764 - ]], - [[ - 7762, - 7765, - 7763 - ]], - [[ - 7766, - 7764, - 7767 - ]], - [[ - 7768, - 7766, - 7767 - ]], - [[ - 7767, - 7764, - 7763 - ]], - [[ - 7769, - 7596, - 7762 - ]], - [[ - 7762, - 7596, - 7590 - ]], - [[ - 7762, - 7590, - 7765 - ]], - [[ - 7770, - 7769, - 7764 - ]], - [[ - 7764, - 7769, - 7762 - ]], - [[ - 7771, - 7770, - 7766 - ]], - [[ - 7766, - 7770, - 7764 - ]], - [[ - 7772, - 7771, - 353 - ]], - [[ - 353, - 7771, - 333 - ]], - [[ - 333, - 7771, - 7768 - ]], - [[ - 7768, - 7771, - 7766 - ]], - [[ - 7773, - 7772, - 352 - ]], - [[ - 352, - 7772, - 353 - ]], - [[ - 352, - 353, - 334 - ]], - [[ - 334, - 353, - 333 - ]], - [[ - 334, - 333, - 7767 - ]], - [[ - 7767, - 333, - 7768 - ]], - [[ - 2128, - 7773, - 7589 - ]], - [[ - 7589, - 7773, - 7763 - ]], - [[ - 7763, - 7773, - 352 - ]], - [[ - 7763, - 352, - 334 - ]], - [[ - 7763, - 334, - 7767 - ]], - [[ - 7596, - 2128, - 7590 - ]], - [[ - 7590, - 2128, - 7589 - ]], - [[ - 7590, - 7589, - 7765 - ]], - [[ - 7765, - 7589, - 7763 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd5f76-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36)", - "identificatiebagpnd": "503100000026233", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027038)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.21000003814697, - "min-height-surface": 0.449999988079071, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84893.214 447572.683)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:31)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7774, - 7775, - 7750 - ]], - [[ - 7774, - 7750, - 7749 - ]], - [[ - 7776, - 2316, - 7761 - ]], - [[ - 7761, - 2316, - 7756 - ]], - [[ - 7756, - 2316, - 7774 - ]], - [[ - 7774, - 2316, - 7775 - ]], - [[ - 7746, - 7776, - 7747 - ]], - [[ - 7747, - 7776, - 7761 - ]], - [[ - 7747, - 7761, - 7748 - ]], - [[ - 7748, - 7761, - 7756 - ]], - [[ - 7748, - 7756, - 7749 - ]], - [[ - 7749, - 7756, - 7774 - ]], - [[ - 2580, - 7746, - 7750 - ]], - [[ - 7750, - 7746, - 7747 - ]], - [[ - 7750, - 7747, - 7748 - ]], - [[ - 7750, - 7748, - 7749 - ]], - [[ - 2316, - 2580, - 7775 - ]], - [[ - 7775, - 2580, - 7750 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bd5f7b-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-36)", - "identificatiebagpnd": "503100000026235", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027039)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0458f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.24000000953674, - "min-height-surface": 0.389999985694885, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84895.825 447574.836)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:33)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7777, - 7778, - 7779 - ]], - [[ - 7777, - 7779, - 7780 - ]], - [[ - 7781, - 7777, - 7780 - ]], - [[ - 7782, - 7778, - 7777 - ]], - [[ - 7783, - 7781, - 7780 - ]], - [[ - 7783, - 7784, - 7781 - ]], - [[ - 7783, - 7778, - 7782 - ]], - [[ - 7784, - 7783, - 7782 - ]], - [[ - 7785, - 7786, - 7340 - ]], - [[ - 7340, - 7786, - 2311 - ]], - [[ - 7340, - 2311, - 7341 - ]], - [[ - 7341, - 2311, - 7342 - ]], - [[ - 7342, - 2311, - 7330 - ]], - [[ - 7330, - 2311, - 7329 - ]], - [[ - 7330, - 7329, - 7783 - ]], - [[ - 7783, - 7329, - 7778 - ]], - [[ - 7787, - 7785, - 7776 - ]], - [[ - 7776, - 7785, - 7761 - ]], - [[ - 7761, - 7785, - 7340 - ]], - [[ - 7761, - 7340, - 7341 - ]], - [[ - 7761, - 7341, - 7756 - ]], - [[ - 7756, - 7341, - 7342 - ]], - [[ - 7756, - 7342, - 7774 - ]], - [[ - 7774, - 7342, - 7780 - ]], - [[ - 7780, - 7342, - 7330 - ]], - [[ - 7780, - 7330, - 7783 - ]], - [[ - 7788, - 7787, - 2316 - ]], - [[ - 2316, - 7787, - 7776 - ]], - [[ - 2316, - 7776, - 7775 - ]], - [[ - 7775, - 7776, - 7761 - ]], - [[ - 7775, - 7761, - 7756 - ]], - [[ - 7775, - 7756, - 7774 - ]], - [[ - 7775, - 7774, - 7779 - ]], - [[ - 7779, - 7774, - 7780 - ]], - [[ - 7786, - 7788, - 2311 - ]], - [[ - 2311, - 7788, - 7329 - ]], - [[ - 7329, - 7788, - 7778 - ]], - [[ - 7778, - 7788, - 2316 - ]], - [[ - 7778, - 2316, - 7775 - ]], - [[ - 7778, - 7775, - 7779 - ]], - [[ - 7789, - 7790, - 7781 - ]], - [[ - 7781, - 7790, - 7777 - ]], - [[ - 7791, - 7789, - 7784 - ]], - [[ - 7784, - 7789, - 7781 - ]], - [[ - 7792, - 7791, - 7782 - ]], - [[ - 7782, - 7791, - 7784 - ]], - [[ - 7790, - 7792, - 7777 - ]], - [[ - 7777, - 7792, - 7782 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd428-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000026302", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003316)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046ba49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 8.56999969482422, - "min-height-surface": 0.280000001192093, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85021.496 447524.002)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:57)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7793, - 7794, - 7795 - ]], - [[ - 7795, - 7796, - 7797 - ]], - [[ - 7797, - 7796, - 7798 - ]], - [[ - 7798, - 7799, - 7800 - ]], - [[ - 7798, - 7801, - 7799 - ]], - [[ - 7798, - 7796, - 7801 - ]], - [[ - 7795, - 7802, - 7796 - ]], - [[ - 7793, - 7795, - 7797 - ]], - [[ - 1783, - 1787, - 7793 - ]], - [[ - 7793, - 1787, - 7794 - ]], - [[ - 1784, - 1783, - 7797 - ]], - [[ - 7797, - 1783, - 7793 - ]], - [[ - 1778, - 1784, - 7798 - ]], - [[ - 7798, - 1784, - 7797 - ]], - [[ - 7803, - 1778, - 7800 - ]], - [[ - 7800, - 1778, - 7798 - ]], - [[ - 1354, - 7803, - 7799 - ]], - [[ - 7799, - 7803, - 7800 - ]], - [[ - 7804, - 1354, - 1606 - ]], - [[ - 1606, - 1354, - 7805 - ]], - [[ - 7805, - 1354, - 7801 - ]], - [[ - 7801, - 1354, - 7799 - ]], - [[ - 7806, - 7804, - 7807 - ]], - [[ - 7807, - 7804, - 1606 - ]], - [[ - 7807, - 1606, - 7808 - ]], - [[ - 7808, - 1606, - 7805 - ]], - [[ - 7808, - 7805, - 7796 - ]], - [[ - 7796, - 7805, - 7801 - ]], - [[ - 7809, - 7806, - 7802 - ]], - [[ - 7802, - 7806, - 7807 - ]], - [[ - 7802, - 7807, - 7808 - ]], - [[ - 7802, - 7808, - 7796 - ]], - [[ - 7810, - 7809, - 7795 - ]], - [[ - 7795, - 7809, - 7802 - ]], - [[ - 1787, - 7810, - 7794 - ]], - [[ - 7794, - 7810, - 7795 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd42d-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:46.1)", - "identificatiebagpnd": "503100000018587", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000005337)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046bb49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.69000005722046, - "min-height-surface": 0.200000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85027.406 447519.861)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:77)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7811, - 7812, - 7813 - ]], - [[ - 7814, - 7815, - 7816 - ]], - [[ - 7813, - 7814, - 7816 - ]], - [[ - 7817, - 7818, - 7814 - ]], - [[ - 7813, - 7817, - 7814 - ]], - [[ - 7812, - 7817, - 7813 - ]], - [[ - 7812, - 7819, - 7817 - ]], - [[ - 7820, - 7821, - 7811 - ]], - [[ - 7811, - 7821, - 7812 - ]], - [[ - 1806, - 7820, - 7813 - ]], - [[ - 7813, - 7820, - 7811 - ]], - [[ - 1785, - 1806, - 7816 - ]], - [[ - 7816, - 1806, - 7813 - ]], - [[ - 1791, - 1785, - 7815 - ]], - [[ - 7815, - 1785, - 7816 - ]], - [[ - 1803, - 1791, - 7814 - ]], - [[ - 7814, - 1791, - 7815 - ]], - [[ - 1802, - 1803, - 7818 - ]], - [[ - 7818, - 1803, - 7814 - ]], - [[ - 7822, - 1802, - 7817 - ]], - [[ - 7817, - 1802, - 7818 - ]], - [[ - 7823, - 7822, - 7819 - ]], - [[ - 7819, - 7822, - 7817 - ]], - [[ - 7821, - 7823, - 7812 - ]], - [[ - 7812, - 7823, - 7819 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd432-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.1)", - "identificatiebagpnd": "503100000018602", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000005338)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046bc49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.67000007629395, - "min-height-surface": 0.200000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85036.711 447505.477)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:72)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7824, - 7825, - 7826 - ]], - [[ - 7824, - 7826, - 7827 - ]], - [[ - 7825, - 7828, - 7826 - ]], - [[ - 7825, - 7829, - 7828 - ]], - [[ - 7825, - 7830, - 7829 - ]], - [[ - 1835, - 1840, - 7824 - ]], - [[ - 7824, - 1840, - 7825 - ]], - [[ - 1816, - 1835, - 7827 - ]], - [[ - 7827, - 1835, - 7824 - ]], - [[ - 1811, - 1816, - 7826 - ]], - [[ - 7826, - 1816, - 7827 - ]], - [[ - 7831, - 1811, - 7828 - ]], - [[ - 7828, - 1811, - 7826 - ]], - [[ - 7832, - 7831, - 7829 - ]], - [[ - 7829, - 7831, - 7828 - ]], - [[ - 7833, - 7832, - 7830 - ]], - [[ - 7830, - 7832, - 7829 - ]], - [[ - 1840, - 7833, - 7825 - ]], - [[ - 7825, - 7833, - 7830 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd437-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.1)", - "identificatiebagpnd": "503100000018593", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000005332)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046bd49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.84999990463257, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85019.386 447493.264)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:67)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7834, - 7835, - 7836 - ]], - [[ - 7834, - 7836, - 7837 - ]], - [[ - 1851, - 1772, - 7834 - ]], - [[ - 7834, - 1772, - 7835 - ]], - [[ - 1847, - 1851, - 7838 - ]], - [[ - 7838, - 1851, - 7837 - ]], - [[ - 7837, - 1851, - 7834 - ]], - [[ - 1770, - 1847, - 7839 - ]], - [[ - 7839, - 1847, - 7838 - ]], - [[ - 7839, - 7838, - 7836 - ]], - [[ - 7836, - 7838, - 7837 - ]], - [[ - 1772, - 1770, - 7835 - ]], - [[ - 7835, - 1770, - 7839 - ]], - [[ - 7835, - 7839, - 7836 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd43a-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018608", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046be49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.88000011444092, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7840, - 7841, - 7842 - ]], - [[ - 7840, - 7842, - 7843 - ]], - [[ - 1859, - 1817, - 7844 - ]], - [[ - 7844, - 1817, - 7845 - ]], - [[ - 7844, - 7845, - 7840 - ]], - [[ - 7840, - 7845, - 7841 - ]], - [[ - 1851, - 1859, - 7834 - ]], - [[ - 7834, - 1859, - 7843 - ]], - [[ - 7843, - 1859, - 7844 - ]], - [[ - 7843, - 7844, - 7840 - ]], - [[ - 1772, - 1851, - 7835 - ]], - [[ - 7835, - 1851, - 7834 - ]], - [[ - 7835, - 7834, - 7842 - ]], - [[ - 7842, - 7834, - 7843 - ]], - [[ - 1817, - 1772, - 7845 - ]], - [[ - 7845, - 1772, - 7841 - ]], - [[ - 7841, - 1772, - 7835 - ]], - [[ - 7841, - 7835, - 7842 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd43f-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.1)", - "identificatiebagpnd": "503100000018611", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000005333)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046bf49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.77999997138977, - "min-height-surface": 0.180000007152557, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85025.433 447497.508)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:69)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7846, - 7847, - 7845 - ]], - [[ - 7846, - 7845, - 7844 - ]], - [[ - 1860, - 1814, - 7848 - ]], - [[ - 7848, - 1814, - 7849 - ]], - [[ - 7848, - 7849, - 7846 - ]], - [[ - 7846, - 7849, - 7847 - ]], - [[ - 7850, - 1860, - 1859 - ]], - [[ - 1859, - 1860, - 7844 - ]], - [[ - 7844, - 1860, - 7848 - ]], - [[ - 7844, - 7848, - 7846 - ]], - [[ - 7851, - 7850, - 1817 - ]], - [[ - 1817, - 7850, - 1859 - ]], - [[ - 1817, - 1859, - 7845 - ]], - [[ - 7845, - 1859, - 7844 - ]], - [[ - 1814, - 7851, - 7849 - ]], - [[ - 7849, - 7851, - 7847 - ]], - [[ - 7847, - 7851, - 1817 - ]], - [[ - 7847, - 1817, - 7845 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd442-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018590", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.80999994277954, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7852, - 7853, - 7854 - ]], - [[ - 7852, - 7854, - 7855 - ]], - [[ - 1800, - 7856, - 7852 - ]], - [[ - 7852, - 7856, - 7853 - ]], - [[ - 7857, - 1800, - 1806 - ]], - [[ - 1806, - 1800, - 7813 - ]], - [[ - 7813, - 1800, - 7855 - ]], - [[ - 7855, - 1800, - 7852 - ]], - [[ - 7858, - 7857, - 7820 - ]], - [[ - 7820, - 7857, - 1806 - ]], - [[ - 7820, - 1806, - 7811 - ]], - [[ - 7811, - 1806, - 7813 - ]], - [[ - 7811, - 7813, - 7854 - ]], - [[ - 7854, - 7813, - 7855 - ]], - [[ - 7856, - 7858, - 7853 - ]], - [[ - 7853, - 7858, - 7820 - ]], - [[ - 7853, - 7820, - 7811 - ]], - [[ - 7853, - 7811, - 7854 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd447-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.1)", - "identificatiebagpnd": "503100000027999", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000005334)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.76999998092651, - "min-height-surface": 0.180000007152557, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85031.345 447501.656)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:71)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7859, - 7860, - 7849 - ]], - [[ - 7859, - 7849, - 7848 - ]], - [[ - 1852, - 1815, - 7861 - ]], - [[ - 7861, - 1815, - 7862 - ]], - [[ - 7861, - 7862, - 7859 - ]], - [[ - 7859, - 7862, - 7860 - ]], - [[ - 1860, - 1852, - 7848 - ]], - [[ - 7848, - 1852, - 7861 - ]], - [[ - 7848, - 7861, - 7859 - ]], - [[ - 1814, - 1860, - 7849 - ]], - [[ - 7849, - 1860, - 7848 - ]], - [[ - 1815, - 1814, - 7862 - ]], - [[ - 7862, - 1814, - 7860 - ]], - [[ - 7860, - 1814, - 7849 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd44c-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:46.1)", - "identificatiebagpnd": "503100000027996", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000005336)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.8199999332428, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85031.465 447515.641)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:75)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7863, - 7864, - 7865 - ]], - [[ - 7863, - 7865, - 7866 - ]], - [[ - 1828, - 7867, - 7863 - ]], - [[ - 7863, - 7867, - 7864 - ]], - [[ - 1800, - 1828, - 7852 - ]], - [[ - 7852, - 1828, - 7866 - ]], - [[ - 7866, - 1828, - 7863 - ]], - [[ - 7856, - 1800, - 7853 - ]], - [[ - 7853, - 1800, - 7852 - ]], - [[ - 7853, - 7852, - 7865 - ]], - [[ - 7865, - 7852, - 7866 - ]], - [[ - 7867, - 7856, - 7864 - ]], - [[ - 7864, - 7856, - 7853 - ]], - [[ - 7864, - 7853, - 7865 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdd44f-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018605", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.6800000667572, - "min-height-surface": 0.180000007152557, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7868, - 7869, - 7862 - ]], - [[ - 7868, - 7862, - 7861 - ]], - [[ - 7870, - 7871, - 1835 - ]], - [[ - 1835, - 7871, - 1816 - ]], - [[ - 1835, - 1816, - 7824 - ]], - [[ - 7824, - 1816, - 7827 - ]], - [[ - 7824, - 7827, - 7868 - ]], - [[ - 7868, - 7827, - 7869 - ]], - [[ - 1852, - 7870, - 7861 - ]], - [[ - 7861, - 7870, - 1835 - ]], - [[ - 7861, - 1835, - 7824 - ]], - [[ - 7861, - 7824, - 7868 - ]], - [[ - 1815, - 1852, - 7862 - ]], - [[ - 7862, - 1852, - 7861 - ]], - [[ - 7871, - 1815, - 1816 - ]], - [[ - 1816, - 1815, - 7827 - ]], - [[ - 7827, - 1815, - 7869 - ]], - [[ - 7869, - 1815, - 7862 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb64-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.8)", - "identificatiebagpnd": "503100000018600", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000005329)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.80999994277954, - "min-height-surface": 0.230000004172325, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84999.155 447498.983)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:61)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7872, - 7873, - 7874 - ]], - [[ - 7872, - 7875, - 7876 - ]], - [[ - 7872, - 7874, - 7875 - ]], - [[ - 7873, - 7877, - 7874 - ]], - [[ - 7877, - 7873, - 7878 - ]], - [[ - 7879, - 1789, - 1790 - ]], - [[ - 1790, - 1789, - 7872 - ]], - [[ - 7872, - 1789, - 7880 - ]], - [[ - 7872, - 7880, - 7873 - ]], - [[ - 7881, - 7879, - 914 - ]], - [[ - 914, - 7879, - 1790 - ]], - [[ - 914, - 1790, - 7876 - ]], - [[ - 7876, - 1790, - 7872 - ]], - [[ - 912, - 7881, - 7875 - ]], - [[ - 7875, - 7881, - 914 - ]], - [[ - 7875, - 914, - 7876 - ]], - [[ - 956, - 912, - 7874 - ]], - [[ - 7874, - 912, - 7875 - ]], - [[ - 909, - 956, - 7877 - ]], - [[ - 7877, - 956, - 7874 - ]], - [[ - 847, - 909, - 7882 - ]], - [[ - 7882, - 909, - 7878 - ]], - [[ - 7878, - 909, - 7877 - ]], - [[ - 1789, - 847, - 7880 - ]], - [[ - 7880, - 847, - 7882 - ]], - [[ - 7880, - 7882, - 7873 - ]], - [[ - 7873, - 7882, - 7878 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb67-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018607", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.82999992370605, - "min-height-surface": 0.239999994635582, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7883, - 7884, - 7885 - ]], - [[ - 7883, - 7885, - 7886 - ]], - [[ - 7884, - 7887, - 7885 - ]], - [[ - 1780, - 1790, - 7888 - ]], - [[ - 7888, - 1790, - 7883 - ]], - [[ - 7883, - 1790, - 7872 - ]], - [[ - 7883, - 7872, - 7884 - ]], - [[ - 915, - 1780, - 7889 - ]], - [[ - 7889, - 1780, - 7888 - ]], - [[ - 7889, - 7888, - 7886 - ]], - [[ - 7886, - 7888, - 7883 - ]], - [[ - 916, - 915, - 7885 - ]], - [[ - 7885, - 915, - 7889 - ]], - [[ - 7885, - 7889, - 7886 - ]], - [[ - 914, - 916, - 7876 - ]], - [[ - 7876, - 916, - 7887 - ]], - [[ - 7887, - 916, - 7885 - ]], - [[ - 1790, - 914, - 7872 - ]], - [[ - 7872, - 914, - 7876 - ]], - [[ - 7872, - 7876, - 7884 - ]], - [[ - 7884, - 7876, - 7887 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb6a-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018610", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.80999994277954, - "min-height-surface": 0.230000004172325, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7890, - 7888, - 7889 - ]], - [[ - 7890, - 7889, - 7891 - ]], - [[ - 1781, - 7892, - 7893 - ]], - [[ - 7893, - 7892, - 7890 - ]], - [[ - 7890, - 7892, - 1780 - ]], - [[ - 7890, - 1780, - 7888 - ]], - [[ - 885, - 1781, - 7894 - ]], - [[ - 7894, - 1781, - 7893 - ]], - [[ - 7894, - 7893, - 7891 - ]], - [[ - 7891, - 7893, - 7890 - ]], - [[ - 7895, - 885, - 915 - ]], - [[ - 915, - 885, - 7889 - ]], - [[ - 7889, - 885, - 7894 - ]], - [[ - 7889, - 7894, - 7891 - ]], - [[ - 7892, - 7895, - 1780 - ]], - [[ - 1780, - 7895, - 915 - ]], - [[ - 1780, - 915, - 7888 - ]], - [[ - 7888, - 915, - 7889 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb6f-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.8)", - "identificatiebagpnd": "503100000018598", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000005330)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.75999999046326, - "min-height-surface": 0.219999998807907, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85003.595 447492.683)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:62)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7896, - 7893, - 7897 - ]], - [[ - 7896, - 7897, - 7898 - ]], - [[ - 7893, - 7894, - 7897 - ]], - [[ - 1823, - 7899, - 7896 - ]], - [[ - 7896, - 7899, - 1781 - ]], - [[ - 7896, - 1781, - 7893 - ]], - [[ - 921, - 1823, - 7898 - ]], - [[ - 7898, - 1823, - 7896 - ]], - [[ - 887, - 921, - 7897 - ]], - [[ - 7897, - 921, - 7898 - ]], - [[ - 7900, - 887, - 885 - ]], - [[ - 885, - 887, - 7894 - ]], - [[ - 7894, - 887, - 7897 - ]], - [[ - 7899, - 7900, - 1781 - ]], - [[ - 1781, - 7900, - 885 - ]], - [[ - 1781, - 885, - 7893 - ]], - [[ - 7893, - 885, - 7894 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb74-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.1)", - "identificatiebagpnd": "503100000018601", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000060856)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.84999990463257, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85013.307 447488.999)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:65)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7901, - 7902, - 7903 - ]], - [[ - 7901, - 7903, - 7904 - ]], - [[ - 1848, - 1769, - 7905 - ]], - [[ - 7905, - 1769, - 7906 - ]], - [[ - 7905, - 7906, - 7901 - ]], - [[ - 7901, - 7906, - 7902 - ]], - [[ - 7907, - 1848, - 1858 - ]], - [[ - 1858, - 1848, - 7908 - ]], - [[ - 7908, - 1848, - 7904 - ]], - [[ - 7904, - 1848, - 7905 - ]], - [[ - 7904, - 7905, - 7901 - ]], - [[ - 7909, - 7907, - 1822 - ]], - [[ - 1822, - 7907, - 1858 - ]], - [[ - 1822, - 1858, - 7910 - ]], - [[ - 7910, - 1858, - 7908 - ]], - [[ - 7910, - 7908, - 7903 - ]], - [[ - 7903, - 7908, - 7904 - ]], - [[ - 1769, - 7909, - 7906 - ]], - [[ - 7906, - 7909, - 7902 - ]], - [[ - 7902, - 7909, - 1822 - ]], - [[ - 7902, - 1822, - 7910 - ]], - [[ - 7902, - 7910, - 7903 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb77-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018589", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046c949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.83999991416931, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7838, - 7839, - 7906 - ]], - [[ - 7838, - 7906, - 7905 - ]], - [[ - 1847, - 1770, - 7838 - ]], - [[ - 7838, - 1770, - 7839 - ]], - [[ - 1848, - 1847, - 7905 - ]], - [[ - 7905, - 1847, - 7838 - ]], - [[ - 1769, - 1848, - 7906 - ]], - [[ - 7906, - 1848, - 7905 - ]], - [[ - 1770, - 1769, - 7839 - ]], - [[ - 7839, - 1769, - 7906 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb7a-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000032235", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046ca49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.49000000953674, - "min-height-surface": 0.200000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7908, - 7910, - 7911 - ]], - [[ - 7908, - 7912, - 7913 - ]], - [[ - 7908, - 7911, - 7912 - ]], - [[ - 7912, - 7911, - 7914 - ]], - [[ - 1858, - 1822, - 7908 - ]], - [[ - 7908, - 1822, - 7910 - ]], - [[ - 1845, - 1858, - 7913 - ]], - [[ - 7913, - 1858, - 7908 - ]], - [[ - 7915, - 1845, - 7912 - ]], - [[ - 7912, - 1845, - 7913 - ]], - [[ - 7916, - 7915, - 7914 - ]], - [[ - 7914, - 7915, - 7912 - ]], - [[ - 1821, - 7916, - 7911 - ]], - [[ - 7911, - 7916, - 7914 - ]], - [[ - 1822, - 1821, - 7910 - ]], - [[ - 7910, - 1821, - 7911 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb7f-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:16.7)", - "identificatiebagpnd": "503100000022860", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027125)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046cb49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.73000001907349, - "min-height-surface": -0.109999999403954, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84969.447 447476.735)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:62)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7917, - 7918, - 7919 - ]], - [[ - 7920, - 7921, - 7922 - ]], - [[ - 7920, - 7923, - 7921 - ]], - [[ - 7920, - 7924, - 7923 - ]], - [[ - 7920, - 7918, - 7924 - ]], - [[ - 7924, - 7918, - 7917 - ]], - [[ - 7917, - 7919, - 7925 - ]], - [[ - 7926, - 7927, - 7928 - ]], - [[ - 7928, - 7927, - 7929 - ]], - [[ - 7928, - 7929, - 7920 - ]], - [[ - 7920, - 7929, - 7918 - ]], - [[ - 7930, - 7926, - 7922 - ]], - [[ - 7922, - 7926, - 7928 - ]], - [[ - 7922, - 7928, - 7920 - ]], - [[ - 7931, - 7930, - 7921 - ]], - [[ - 7921, - 7930, - 7922 - ]], - [[ - 7932, - 7931, - 7923 - ]], - [[ - 7923, - 7931, - 7921 - ]], - [[ - 7933, - 7932, - 7924 - ]], - [[ - 7924, - 7932, - 7923 - ]], - [[ - 7934, - 7933, - 7917 - ]], - [[ - 7917, - 7933, - 7924 - ]], - [[ - 7935, - 7934, - 7925 - ]], - [[ - 7925, - 7934, - 7917 - ]], - [[ - 7936, - 7935, - 7919 - ]], - [[ - 7919, - 7935, - 7925 - ]], - [[ - 7927, - 7936, - 7929 - ]], - [[ - 7929, - 7936, - 7918 - ]], - [[ - 7918, - 7936, - 7919 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb84-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:16.7)", - "identificatiebagpnd": "503100000026301", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027124)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046cc49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.72000002861023, - "min-height-surface": -0.119999997317791, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84974.937 447475.330)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:60)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7937, - 7938, - 7939 - ]], - [[ - 7940, - 7941, - 7942 - ]], - [[ - 7929, - 7940, - 7942 - ]], - [[ - 7937, - 7939, - 7942 - ]], - [[ - 7940, - 7929, - 7928 - ]], - [[ - 7942, - 7939, - 7929 - ]], - [[ - 7938, - 7943, - 7939 - ]], - [[ - 880, - 7944, - 7937 - ]], - [[ - 7937, - 7944, - 950 - ]], - [[ - 7937, - 950, - 7945 - ]], - [[ - 7937, - 7945, - 7938 - ]], - [[ - 876, - 880, - 7942 - ]], - [[ - 7942, - 880, - 7937 - ]], - [[ - 874, - 876, - 7941 - ]], - [[ - 7941, - 876, - 7942 - ]], - [[ - 7946, - 874, - 7940 - ]], - [[ - 7940, - 874, - 7941 - ]], - [[ - 7947, - 7946, - 7926 - ]], - [[ - 7926, - 7946, - 7928 - ]], - [[ - 7928, - 7946, - 7940 - ]], - [[ - 7948, - 7947, - 7927 - ]], - [[ - 7927, - 7947, - 7926 - ]], - [[ - 7927, - 7926, - 7929 - ]], - [[ - 7929, - 7926, - 7928 - ]], - [[ - 7949, - 7948, - 7950 - ]], - [[ - 7950, - 7948, - 7951 - ]], - [[ - 7951, - 7948, - 7939 - ]], - [[ - 7939, - 7948, - 7927 - ]], - [[ - 7939, - 7927, - 7929 - ]], - [[ - 7952, - 7949, - 7953 - ]], - [[ - 7953, - 7949, - 7950 - ]], - [[ - 7953, - 7950, - 7954 - ]], - [[ - 7954, - 7950, - 7951 - ]], - [[ - 7954, - 7951, - 7943 - ]], - [[ - 7943, - 7951, - 7939 - ]], - [[ - 7944, - 7952, - 950 - ]], - [[ - 950, - 7952, - 7953 - ]], - [[ - 950, - 7953, - 7945 - ]], - [[ - 7945, - 7953, - 7954 - ]], - [[ - 7945, - 7954, - 7938 - ]], - [[ - 7938, - 7954, - 7943 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31bdfb89-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35)", - "identificatiebagpnd": "503100000018596", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027127)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046cd49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.45000004768372, - "min-height-surface": 0, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84974.524 447485.045)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:68)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7955, - 7956, - 7957 - ]], - [[ - 7958, - 7959, - 7957 - ]], - [[ - 7958, - 7960, - 7959 - ]], - [[ - 7958, - 7961, - 7962 - ]], - [[ - 7960, - 7958, - 7963 - ]], - [[ - 7963, - 7958, - 7962 - ]], - [[ - 7964, - 7965, - 7957 - ]], - [[ - 7957, - 7966, - 7958 - ]], - [[ - 7957, - 7965, - 7966 - ]], - [[ - 7956, - 7964, - 7957 - ]], - [[ - 7967, - 7968, - 7955 - ]], - [[ - 7955, - 7968, - 7956 - ]], - [[ - 7969, - 7967, - 7957 - ]], - [[ - 7957, - 7967, - 7955 - ]], - [[ - 7970, - 7969, - 7959 - ]], - [[ - 7959, - 7969, - 7957 - ]], - [[ - 7971, - 7970, - 7960 - ]], - [[ - 7960, - 7970, - 7959 - ]], - [[ - 7972, - 7971, - 7963 - ]], - [[ - 7963, - 7971, - 7960 - ]], - [[ - 1295, - 7972, - 7962 - ]], - [[ - 7962, - 7972, - 7963 - ]], - [[ - 1109, - 1295, - 7961 - ]], - [[ - 7961, - 1295, - 7962 - ]], - [[ - 1245, - 1109, - 7958 - ]], - [[ - 7958, - 1109, - 7961 - ]], - [[ - 1139, - 1245, - 7966 - ]], - [[ - 7966, - 1245, - 7958 - ]], - [[ - 1131, - 1139, - 7965 - ]], - [[ - 7965, - 1139, - 7966 - ]], - [[ - 1280, - 1131, - 7964 - ]], - [[ - 7964, - 1131, - 7965 - ]], - [[ - 7968, - 1280, - 7956 - ]], - [[ - 7956, - 1280, - 7964 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be229e-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:16.7)", - "identificatiebagpnd": "503100000026300", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027123)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027122)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046ce49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.73000001907349, - "min-height-surface": -0.119999997317791, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84979.787 447473.527)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:58-58A)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7973, - 7974, - 7975 - ]], - [[ - 7976, - 7977, - 7975 - ]], - [[ - 7974, - 7978, - 7975 - ]], - [[ - 7977, - 7976, - 7979 - ]], - [[ - 7976, - 7975, - 7978 - ]], - [[ - 7974, - 7980, - 7978 - ]], - [[ - 7974, - 7981, - 7980 - ]], - [[ - 7980, - 7981, - 7982 - ]], - [[ - 875, - 874, - 7973 - ]], - [[ - 7973, - 874, - 7941 - ]], - [[ - 7973, - 7941, - 7974 - ]], - [[ - 872, - 875, - 7975 - ]], - [[ - 7975, - 875, - 7973 - ]], - [[ - 865, - 872, - 7977 - ]], - [[ - 7977, - 872, - 7975 - ]], - [[ - 866, - 865, - 7979 - ]], - [[ - 7979, - 865, - 7977 - ]], - [[ - 859, - 866, - 7976 - ]], - [[ - 7976, - 866, - 7979 - ]], - [[ - 852, - 859, - 7978 - ]], - [[ - 7978, - 859, - 7976 - ]], - [[ - 853, - 852, - 7980 - ]], - [[ - 7980, - 852, - 7978 - ]], - [[ - 854, - 853, - 7982 - ]], - [[ - 7982, - 853, - 7980 - ]], - [[ - 7946, - 854, - 7940 - ]], - [[ - 7940, - 854, - 7981 - ]], - [[ - 7981, - 854, - 7982 - ]], - [[ - 874, - 7946, - 7941 - ]], - [[ - 7941, - 7946, - 7940 - ]], - [[ - 7941, - 7940, - 7974 - ]], - [[ - 7974, - 7940, - 7981 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22a3-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000022863", - "identificatiebagvbohoogstehuisnummer": "(1:503010000003314)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003313)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046cf49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.92000007629395, - "min-height-surface": 0.300000011920929, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85018.008 447530.384)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:54-55)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7805, - 7808, - 7983 - ]], - [[ - 7805, - 7984, - 7985 - ]], - [[ - 7805, - 7983, - 7984 - ]], - [[ - 7986, - 7983, - 7808 - ]], - [[ - 7987, - 7988, - 7989 - ]], - [[ - 7989, - 7990, - 7991 - ]], - [[ - 7989, - 7988, - 7992 - ]], - [[ - 7991, - 7990, - 7993 - ]], - [[ - 7993, - 7990, - 7994 - ]], - [[ - 7989, - 7992, - 7990 - ]], - [[ - 7988, - 7995, - 7992 - ]], - [[ - 7992, - 7995, - 7996 - ]], - [[ - 7995, - 7997, - 7998 - ]], - [[ - 7998, - 7999, - 8000 - ]], - [[ - 8000, - 7999, - 8001 - ]], - [[ - 7995, - 7988, - 7997 - ]], - [[ - 7998, - 7997, - 7999 - ]], - [[ - 7988, - 7983, - 7997 - ]], - [[ - 8002, - 7986, - 7808 - ]], - [[ - 7997, - 7983, - 7986 - ]], - [[ - 8002, - 8003, - 7986 - ]], - [[ - 8003, - 8002, - 8004 - ]], - [[ - 1606, - 7807, - 7805 - ]], - [[ - 7805, - 7807, - 7808 - ]], - [[ - 1346, - 1606, - 7985 - ]], - [[ - 7985, - 1606, - 7805 - ]], - [[ - 1341, - 1346, - 7984 - ]], - [[ - 7984, - 1346, - 7985 - ]], - [[ - 1342, - 1341, - 7983 - ]], - [[ - 7983, - 1341, - 7984 - ]], - [[ - 1650, - 1342, - 7988 - ]], - [[ - 7988, - 1342, - 7983 - ]], - [[ - 1338, - 1650, - 7987 - ]], - [[ - 7987, - 1650, - 7988 - ]], - [[ - 1339, - 1338, - 7989 - ]], - [[ - 7989, - 1338, - 7987 - ]], - [[ - 1358, - 1339, - 7991 - ]], - [[ - 7991, - 1339, - 7989 - ]], - [[ - 1622, - 1358, - 7993 - ]], - [[ - 7993, - 1358, - 7991 - ]], - [[ - 1353, - 1622, - 7994 - ]], - [[ - 7994, - 1622, - 7993 - ]], - [[ - 1372, - 1353, - 7990 - ]], - [[ - 7990, - 1353, - 7994 - ]], - [[ - 8005, - 1372, - 7992 - ]], - [[ - 7992, - 1372, - 7990 - ]], - [[ - 3033, - 8005, - 7996 - ]], - [[ - 7996, - 8005, - 7992 - ]], - [[ - 3034, - 3033, - 7995 - ]], - [[ - 7995, - 3033, - 7996 - ]], - [[ - 3031, - 3034, - 7998 - ]], - [[ - 7998, - 3034, - 7995 - ]], - [[ - 3029, - 3031, - 8000 - ]], - [[ - 8000, - 3031, - 7998 - ]], - [[ - 8006, - 3029, - 8001 - ]], - [[ - 8001, - 3029, - 8000 - ]], - [[ - 8007, - 8006, - 7999 - ]], - [[ - 7999, - 8006, - 8001 - ]], - [[ - 8008, - 8007, - 7997 - ]], - [[ - 7997, - 8007, - 7999 - ]], - [[ - 8009, - 8008, - 7986 - ]], - [[ - 7986, - 8008, - 7997 - ]], - [[ - 8010, - 8009, - 8003 - ]], - [[ - 8003, - 8009, - 7986 - ]], - [[ - 8011, - 8010, - 8004 - ]], - [[ - 8004, - 8010, - 8003 - ]], - [[ - 8012, - 8011, - 8002 - ]], - [[ - 8002, - 8011, - 8004 - ]], - [[ - 7807, - 8012, - 7808 - ]], - [[ - 7808, - 8012, - 8002 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22a8-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000029913", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003308)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 6.53000020980835, - "min-height-surface": 0.239999994635582, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85006.313 447542.303)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:49)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8013, - 608, - 8014 - ]], - [[ - 8013, - 8015, - 8016 - ]], - [[ - 608, - 8013, - 604 - ]], - [[ - 605, - 604, - 8017 - ]], - [[ - 605, - 8017, - 8018 - ]], - [[ - 8019, - 604, - 8020 - ]], - [[ - 604, - 8019, - 8017 - ]], - [[ - 8021, - 8019, - 8022 - ]], - [[ - 8019, - 8020, - 8022 - ]], - [[ - 8016, - 8015, - 8023 - ]], - [[ - 604, - 8016, - 8020 - ]], - [[ - 604, - 8013, - 8016 - ]], - [[ - 8023, - 8015, - 8024 - ]], - [[ - 1630, - 8025, - 8026 - ]], - [[ - 8026, - 8025, - 8027 - ]], - [[ - 8026, - 8027, - 8013 - ]], - [[ - 8013, - 8027, - 8015 - ]], - [[ - 1507, - 1630, - 8014 - ]], - [[ - 8014, - 1630, - 8026 - ]], - [[ - 8014, - 8026, - 8013 - ]], - [[ - 607, - 1507, - 608 - ]], - [[ - 608, - 1507, - 8014 - ]], - [[ - 602, - 607, - 604 - ]], - [[ - 604, - 607, - 608 - ]], - [[ - 603, - 602, - 605 - ]], - [[ - 605, - 602, - 604 - ]], - [[ - 8028, - 603, - 8018 - ]], - [[ - 8018, - 603, - 605 - ]], - [[ - 8029, - 8028, - 8017 - ]], - [[ - 8017, - 8028, - 8018 - ]], - [[ - 8030, - 8029, - 8019 - ]], - [[ - 8019, - 8029, - 8017 - ]], - [[ - 8031, - 8030, - 8021 - ]], - [[ - 8021, - 8030, - 8019 - ]], - [[ - 8032, - 8031, - 8022 - ]], - [[ - 8022, - 8031, - 8021 - ]], - [[ - 8033, - 8032, - 8020 - ]], - [[ - 8020, - 8032, - 8022 - ]], - [[ - 8034, - 8033, - 8016 - ]], - [[ - 8016, - 8033, - 8020 - ]], - [[ - 8035, - 8034, - 8023 - ]], - [[ - 8023, - 8034, - 8016 - ]], - [[ - 8036, - 8035, - 8024 - ]], - [[ - 8024, - 8035, - 8023 - ]], - [[ - 8025, - 8036, - 8027 - ]], - [[ - 8027, - 8036, - 8015 - ]], - [[ - 8015, - 8036, - 8024 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22ad-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000029914", - "identificatiebagvbohoogstehuisnummer": "(1:503010000003310)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003309)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 5.65999984741211, - "min-height-surface": -0.140000000596046, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85009.378 447538.258)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:50-51)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8037, - 8038, - 8027 - ]], - [[ - 8026, - 8039, - 8027 - ]], - [[ - 8040, - 8037, - 8027 - ]], - [[ - 8041, - 8040, - 8027 - ]], - [[ - 8039, - 8041, - 8027 - ]], - [[ - 8042, - 8039, - 8026 - ]], - [[ - 8042, - 8043, - 8044 - ]], - [[ - 8039, - 8042, - 8044 - ]], - [[ - 1539, - 3018, - 8045 - ]], - [[ - 8045, - 3018, - 8046 - ]], - [[ - 8045, - 8046, - 8042 - ]], - [[ - 8042, - 8046, - 8043 - ]], - [[ - 8047, - 1539, - 1630 - ]], - [[ - 1630, - 1539, - 8026 - ]], - [[ - 8026, - 1539, - 8045 - ]], - [[ - 8026, - 8045, - 8042 - ]], - [[ - 8048, - 8047, - 8025 - ]], - [[ - 8025, - 8047, - 1630 - ]], - [[ - 8025, - 1630, - 8027 - ]], - [[ - 8027, - 1630, - 8026 - ]], - [[ - 3017, - 8048, - 8038 - ]], - [[ - 8038, - 8048, - 8025 - ]], - [[ - 8038, - 8025, - 8027 - ]], - [[ - 3028, - 3017, - 8037 - ]], - [[ - 8037, - 3017, - 8038 - ]], - [[ - 3025, - 3028, - 8040 - ]], - [[ - 8040, - 3028, - 8037 - ]], - [[ - 3026, - 3025, - 8041 - ]], - [[ - 8041, - 3025, - 8040 - ]], - [[ - 3027, - 3026, - 8039 - ]], - [[ - 8039, - 3026, - 8041 - ]], - [[ - 3024, - 3027, - 8044 - ]], - [[ - 8044, - 3027, - 8039 - ]], - [[ - 3018, - 3024, - 8046 - ]], - [[ - 8046, - 3024, - 8043 - ]], - [[ - 8043, - 3024, - 8044 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22b0-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000027998", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.84999990463257, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8049, - 8050, - 8051 - ]], - [[ - 8049, - 8051, - 8052 - ]], - [[ - 8053, - 8054, - 1810 - ]], - [[ - 1810, - 8054, - 8055 - ]], - [[ - 1810, - 8055, - 8056 - ]], - [[ - 8056, - 8055, - 8057 - ]], - [[ - 8056, - 8057, - 8049 - ]], - [[ - 8049, - 8057, - 8050 - ]], - [[ - 1828, - 8053, - 7863 - ]], - [[ - 7863, - 8053, - 8052 - ]], - [[ - 8052, - 8053, - 1810 - ]], - [[ - 8052, - 1810, - 8056 - ]], - [[ - 8052, - 8056, - 8049 - ]], - [[ - 7867, - 1828, - 7864 - ]], - [[ - 7864, - 1828, - 7863 - ]], - [[ - 7864, - 7863, - 8051 - ]], - [[ - 8051, - 7863, - 8052 - ]], - [[ - 8054, - 7867, - 8055 - ]], - [[ - 8055, - 7867, - 8057 - ]], - [[ - 8057, - 7867, - 8050 - ]], - [[ - 8050, - 7867, - 7864 - ]], - [[ - 8050, - 7864, - 8051 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22b5-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:46.1)", - "identificatiebagpnd": "503100000018594", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000005335)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.8199999332428, - "min-height-surface": 0.200000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85035.520 447511.425)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:73)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8058, - 8059, - 8057 - ]], - [[ - 8058, - 8057, - 8056 - ]], - [[ - 1809, - 8060, - 8058 - ]], - [[ - 8058, - 8060, - 8059 - ]], - [[ - 1810, - 1809, - 8056 - ]], - [[ - 8056, - 1809, - 8058 - ]], - [[ - 8055, - 1810, - 8057 - ]], - [[ - 8057, - 1810, - 8056 - ]], - [[ - 8060, - 8055, - 8059 - ]], - [[ - 8059, - 8055, - 8057 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22b8-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000027997", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.88000011444092, - "min-height-surface": 0.200000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8061, - 8062, - 8063 - ]], - [[ - 8061, - 8063, - 8064 - ]], - [[ - 1811, - 7831, - 7826 - ]], - [[ - 7826, - 7831, - 7828 - ]], - [[ - 7826, - 7828, - 8061 - ]], - [[ - 8061, - 7828, - 8062 - ]], - [[ - 1809, - 1811, - 8058 - ]], - [[ - 8058, - 1811, - 8064 - ]], - [[ - 8064, - 1811, - 7826 - ]], - [[ - 8064, - 7826, - 8061 - ]], - [[ - 8060, - 1809, - 8059 - ]], - [[ - 8059, - 1809, - 8058 - ]], - [[ - 8059, - 8058, - 8063 - ]], - [[ - 8063, - 8058, - 8064 - ]], - [[ - 7831, - 8060, - 7828 - ]], - [[ - 7828, - 8060, - 8062 - ]], - [[ - 8062, - 8060, - 8059 - ]], - [[ - 8062, - 8059, - 8063 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22bd-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-48.6)", - "identificatiebagpnd": "503100000022859", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003317)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.83999991416931, - "min-height-surface": 0.28999999165535, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85042.649 447462.716)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:79)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8065, - 8066, - 8067 - ]], - [[ - 8068, - 8069, - 8070 - ]], - [[ - 8068, - 8071, - 8069 - ]], - [[ - 8072, - 8073, - 8074 - ]], - [[ - 8070, - 8074, - 8068 - ]], - [[ - 8075, - 8076, - 8074 - ]], - [[ - 8075, - 8077, - 8076 - ]], - [[ - 8078, - 8079, - 8080 - ]], - [[ - 8074, - 8073, - 8075 - ]], - [[ - 8081, - 8072, - 8074 - ]], - [[ - 8082, - 8083, - 8084 - ]], - [[ - 8072, - 8082, - 8084 - ]], - [[ - 8073, - 8072, - 8084 - ]], - [[ - 8085, - 8086, - 8087 - ]], - [[ - 8072, - 8088, - 8089 - ]], - [[ - 8080, - 8090, - 8091 - ]], - [[ - 8078, - 8080, - 8091 - ]], - [[ - 8089, - 8092, - 8091 - ]], - [[ - 8093, - 8094, - 8070 - ]], - [[ - 8091, - 8095, - 8078 - ]], - [[ - 8092, - 8095, - 8091 - ]], - [[ - 8088, - 8092, - 8089 - ]], - [[ - 8096, - 8097, - 8098 - ]], - [[ - 8099, - 8100, - 8088 - ]], - [[ - 8072, - 8081, - 8088 - ]], - [[ - 8088, - 8081, - 8099 - ]], - [[ - 8094, - 8074, - 8070 - ]], - [[ - 8096, - 8101, - 8102 - ]], - [[ - 8096, - 8081, - 8097 - ]], - [[ - 8103, - 8101, - 8104 - ]], - [[ - 8105, - 8106, - 8107 - ]], - [[ - 8105, - 8107, - 8108 - ]], - [[ - 8106, - 8103, - 8107 - ]], - [[ - 8108, - 8109, - 8110 - ]], - [[ - 8108, - 8107, - 8109 - ]], - [[ - 8103, - 8104, - 8107 - ]], - [[ - 8101, - 8096, - 8098 - ]], - [[ - 8101, - 8098, - 8104 - ]], - [[ - 8104, - 8098, - 8111 - ]], - [[ - 8111, - 8098, - 8112 - ]], - [[ - 8081, - 8074, - 8094 - ]], - [[ - 8094, - 8087, - 8086 - ]], - [[ - 8113, - 8098, - 8097 - ]], - [[ - 8097, - 8081, - 8094 - ]], - [[ - 8086, - 8097, - 8094 - ]], - [[ - 8114, - 8093, - 8070 - ]], - [[ - 8115, - 8094, - 8093 - ]], - [[ - 8114, - 8116, - 8093 - ]], - [[ - 8114, - 8067, - 8116 - ]], - [[ - 8114, - 8065, - 8067 - ]], - [[ - 8117, - 8118, - 8065 - ]], - [[ - 8065, - 8118, - 8066 - ]], - [[ - 8119, - 8117, - 8114 - ]], - [[ - 8114, - 8117, - 8065 - ]], - [[ - 8120, - 8119, - 8070 - ]], - [[ - 8070, - 8119, - 8114 - ]], - [[ - 8121, - 8120, - 8069 - ]], - [[ - 8069, - 8120, - 8070 - ]], - [[ - 8122, - 8121, - 8071 - ]], - [[ - 8071, - 8121, - 8069 - ]], - [[ - 8123, - 8122, - 8068 - ]], - [[ - 8068, - 8122, - 8071 - ]], - [[ - 8124, - 8123, - 8074 - ]], - [[ - 8074, - 8123, - 8068 - ]], - [[ - 8125, - 8124, - 8076 - ]], - [[ - 8076, - 8124, - 8074 - ]], - [[ - 8126, - 8125, - 8077 - ]], - [[ - 8077, - 8125, - 8076 - ]], - [[ - 8127, - 8126, - 8075 - ]], - [[ - 8075, - 8126, - 8077 - ]], - [[ - 8128, - 8127, - 8073 - ]], - [[ - 8073, - 8127, - 8075 - ]], - [[ - 8129, - 8128, - 8084 - ]], - [[ - 8084, - 8128, - 8073 - ]], - [[ - 8130, - 8129, - 8083 - ]], - [[ - 8083, - 8129, - 8084 - ]], - [[ - 8131, - 8130, - 8082 - ]], - [[ - 8082, - 8130, - 8083 - ]], - [[ - 8132, - 8131, - 8072 - ]], - [[ - 8072, - 8131, - 8082 - ]], - [[ - 8133, - 8132, - 8089 - ]], - [[ - 8089, - 8132, - 8072 - ]], - [[ - 8134, - 8133, - 8091 - ]], - [[ - 8091, - 8133, - 8089 - ]], - [[ - 8135, - 8134, - 8090 - ]], - [[ - 8090, - 8134, - 8091 - ]], - [[ - 8136, - 8135, - 8080 - ]], - [[ - 8080, - 8135, - 8090 - ]], - [[ - 8137, - 8136, - 8079 - ]], - [[ - 8079, - 8136, - 8080 - ]], - [[ - 8138, - 8137, - 8078 - ]], - [[ - 8078, - 8137, - 8079 - ]], - [[ - 8139, - 8138, - 8095 - ]], - [[ - 8095, - 8138, - 8078 - ]], - [[ - 8140, - 8139, - 8092 - ]], - [[ - 8092, - 8139, - 8095 - ]], - [[ - 8141, - 8140, - 8088 - ]], - [[ - 8088, - 8140, - 8092 - ]], - [[ - 8142, - 8141, - 8100 - ]], - [[ - 8100, - 8141, - 8088 - ]], - [[ - 8143, - 8142, - 8099 - ]], - [[ - 8099, - 8142, - 8100 - ]], - [[ - 8144, - 8143, - 8081 - ]], - [[ - 8081, - 8143, - 8099 - ]], - [[ - 8145, - 8144, - 8096 - ]], - [[ - 8096, - 8144, - 8081 - ]], - [[ - 8146, - 8145, - 8102 - ]], - [[ - 8102, - 8145, - 8096 - ]], - [[ - 8147, - 8146, - 8101 - ]], - [[ - 8101, - 8146, - 8102 - ]], - [[ - 8148, - 8147, - 8103 - ]], - [[ - 8103, - 8147, - 8101 - ]], - [[ - 8149, - 8148, - 8106 - ]], - [[ - 8106, - 8148, - 8103 - ]], - [[ - 8150, - 8149, - 8105 - ]], - [[ - 8105, - 8149, - 8106 - ]], - [[ - 8151, - 8150, - 8108 - ]], - [[ - 8108, - 8150, - 8105 - ]], - [[ - 8152, - 8151, - 8110 - ]], - [[ - 8110, - 8151, - 8108 - ]], - [[ - 8153, - 8152, - 8109 - ]], - [[ - 8109, - 8152, - 8110 - ]], - [[ - 8154, - 8153, - 8107 - ]], - [[ - 8107, - 8153, - 8109 - ]], - [[ - 8155, - 8154, - 8104 - ]], - [[ - 8104, - 8154, - 8107 - ]], - [[ - 8156, - 8155, - 8111 - ]], - [[ - 8111, - 8155, - 8104 - ]], - [[ - 8157, - 8156, - 8112 - ]], - [[ - 8112, - 8156, - 8111 - ]], - [[ - 8158, - 8157, - 8098 - ]], - [[ - 8098, - 8157, - 8112 - ]], - [[ - 2887, - 8158, - 8113 - ]], - [[ - 8113, - 8158, - 8098 - ]], - [[ - 2880, - 2887, - 8097 - ]], - [[ - 8097, - 2887, - 8113 - ]], - [[ - 2878, - 2880, - 8086 - ]], - [[ - 8086, - 2880, - 8097 - ]], - [[ - 2879, - 2878, - 8085 - ]], - [[ - 8085, - 2878, - 8086 - ]], - [[ - 2873, - 2879, - 8087 - ]], - [[ - 8087, - 2879, - 8085 - ]], - [[ - 2874, - 2873, - 8094 - ]], - [[ - 8094, - 2873, - 8087 - ]], - [[ - 2876, - 2874, - 8115 - ]], - [[ - 8115, - 2874, - 8094 - ]], - [[ - 2913, - 2876, - 8093 - ]], - [[ - 8093, - 2876, - 8115 - ]], - [[ - 2911, - 2913, - 8116 - ]], - [[ - 8116, - 2913, - 8093 - ]], - [[ - 8159, - 2911, - 8067 - ]], - [[ - 8067, - 2911, - 8116 - ]], - [[ - 8118, - 8159, - 8066 - ]], - [[ - 8066, - 8159, - 8067 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22c2-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.8)", - "identificatiebagpnd": "503100000018519", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000002511)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.73000001907349, - "min-height-surface": 0.119999997317791, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84995.031 447504.834)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:58)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 7880, - 8160, - 8161 - ]], - [[ - 7880, - 8161, - 7882 - ]], - [[ - 8162, - 8163, - 8161 - ]], - [[ - 8160, - 8162, - 8161 - ]], - [[ - 8164, - 8165, - 8162 - ]], - [[ - 8165, - 8164, - 8166 - ]], - [[ - 8166, - 8164, - 8167 - ]], - [[ - 8160, - 8164, - 8162 - ]], - [[ - 8168, - 1825, - 1789 - ]], - [[ - 1789, - 1825, - 7880 - ]], - [[ - 7880, - 1825, - 8160 - ]], - [[ - 8169, - 8168, - 847 - ]], - [[ - 847, - 8168, - 1789 - ]], - [[ - 847, - 1789, - 7882 - ]], - [[ - 7882, - 1789, - 7880 - ]], - [[ - 907, - 8169, - 8161 - ]], - [[ - 8161, - 8169, - 847 - ]], - [[ - 8161, - 847, - 7882 - ]], - [[ - 8170, - 907, - 8163 - ]], - [[ - 8163, - 907, - 8161 - ]], - [[ - 8171, - 8170, - 8162 - ]], - [[ - 8162, - 8170, - 8163 - ]], - [[ - 8172, - 8171, - 8165 - ]], - [[ - 8165, - 8171, - 8162 - ]], - [[ - 8173, - 8172, - 8166 - ]], - [[ - 8166, - 8172, - 8165 - ]], - [[ - 8174, - 8173, - 8167 - ]], - [[ - 8167, - 8173, - 8166 - ]], - [[ - 8175, - 8174, - 8164 - ]], - [[ - 8164, - 8174, - 8167 - ]], - [[ - 1825, - 8175, - 8160 - ]], - [[ - 8160, - 8175, - 8164 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22c7-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-34)", - "identificatiebagpnd": "503100000032723", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027126)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.65000009536743, - "min-height-surface": 0.0700000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84988.193 447489.302)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:66)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8176, - 8177, - 8178 - ]], - [[ - 8176, - 7945, - 8177 - ]], - [[ - 8179, - 8180, - 8181 - ]], - [[ - 7945, - 8176, - 7954 - ]], - [[ - 7951, - 7954, - 8182 - ]], - [[ - 7954, - 8183, - 8182 - ]], - [[ - 7954, - 8176, - 8183 - ]], - [[ - 8176, - 8179, - 8183 - ]], - [[ - 8176, - 8180, - 8179 - ]], - [[ - 8181, - 8180, - 8184 - ]], - [[ - 8184, - 8180, - 8185 - ]], - [[ - 892, - 891, - 8176 - ]], - [[ - 8176, - 891, - 8180 - ]], - [[ - 889, - 892, - 8178 - ]], - [[ - 8178, - 892, - 8176 - ]], - [[ - 947, - 889, - 8177 - ]], - [[ - 8177, - 889, - 8178 - ]], - [[ - 950, - 947, - 7945 - ]], - [[ - 7945, - 947, - 8177 - ]], - [[ - 7953, - 950, - 7954 - ]], - [[ - 7954, - 950, - 7945 - ]], - [[ - 7950, - 7953, - 7951 - ]], - [[ - 7951, - 7953, - 7954 - ]], - [[ - 8186, - 7950, - 8182 - ]], - [[ - 8182, - 7950, - 7951 - ]], - [[ - 899, - 8186, - 8183 - ]], - [[ - 8183, - 8186, - 8182 - ]], - [[ - 900, - 899, - 8179 - ]], - [[ - 8179, - 899, - 8183 - ]], - [[ - 898, - 900, - 8181 - ]], - [[ - 8181, - 900, - 8179 - ]], - [[ - 894, - 898, - 8184 - ]], - [[ - 8184, - 898, - 8181 - ]], - [[ - 906, - 894, - 8185 - ]], - [[ - 8185, - 894, - 8184 - ]], - [[ - 891, - 906, - 8180 - ]], - [[ - 8180, - 906, - 8185 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be22cc-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000022862", - "identificatiebagvbohoogstehuisnummer": "(1:503010000003312)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003311)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 5.28000020980835, - "min-height-surface": -0.340000003576279, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:85011.805 447532.804)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:52-53)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8187, - 8188, - 8189 - ]], - [[ - 8187, - 8190, - 8188 - ]], - [[ - 8188, - 8046, - 8045 - ]], - [[ - 8188, - 8191, - 8046 - ]], - [[ - 8188, - 8190, - 8191 - ]], - [[ - 8187, - 8192, - 8193 - ]], - [[ - 8194, - 8190, - 8195 - ]], - [[ - 8196, - 8194, - 8195 - ]], - [[ - 8197, - 8196, - 8195 - ]], - [[ - 8197, - 8195, - 8198 - ]], - [[ - 8198, - 8195, - 8199 - ]], - [[ - 8195, - 8200, - 8201 - ]], - [[ - 8195, - 8193, - 8200 - ]], - [[ - 8190, - 8193, - 8195 - ]], - [[ - 8190, - 8187, - 8193 - ]], - [[ - 8202, - 8203, - 8005 - ]], - [[ - 8005, - 8203, - 3033 - ]], - [[ - 8005, - 3033, - 7992 - ]], - [[ - 7992, - 3033, - 7996 - ]], - [[ - 7992, - 7996, - 8187 - ]], - [[ - 8187, - 7996, - 8192 - ]], - [[ - 8204, - 8202, - 1372 - ]], - [[ - 1372, - 8202, - 8005 - ]], - [[ - 1372, - 8005, - 7990 - ]], - [[ - 7990, - 8005, - 7992 - ]], - [[ - 7990, - 7992, - 8189 - ]], - [[ - 8189, - 7992, - 8187 - ]], - [[ - 1502, - 8204, - 8188 - ]], - [[ - 8188, - 8204, - 1372 - ]], - [[ - 8188, - 1372, - 7990 - ]], - [[ - 8188, - 7990, - 8189 - ]], - [[ - 8205, - 1502, - 1539 - ]], - [[ - 1539, - 1502, - 8045 - ]], - [[ - 8045, - 1502, - 8188 - ]], - [[ - 8206, - 8205, - 3018 - ]], - [[ - 3018, - 8205, - 1539 - ]], - [[ - 3018, - 1539, - 8046 - ]], - [[ - 8046, - 1539, - 8045 - ]], - [[ - 3019, - 8206, - 8191 - ]], - [[ - 8191, - 8206, - 3018 - ]], - [[ - 8191, - 3018, - 8046 - ]], - [[ - 3023, - 3019, - 8190 - ]], - [[ - 8190, - 3019, - 8191 - ]], - [[ - 3022, - 3023, - 8194 - ]], - [[ - 8194, - 3023, - 8190 - ]], - [[ - 3021, - 3022, - 8196 - ]], - [[ - 8196, - 3022, - 8194 - ]], - [[ - 3020, - 3021, - 8197 - ]], - [[ - 8197, - 3021, - 8196 - ]], - [[ - 3016, - 3020, - 8198 - ]], - [[ - 8198, - 3020, - 8197 - ]], - [[ - 8207, - 3016, - 8199 - ]], - [[ - 8199, - 3016, - 8198 - ]], - [[ - 8208, - 8207, - 8195 - ]], - [[ - 8195, - 8207, - 8199 - ]], - [[ - 3030, - 8208, - 8201 - ]], - [[ - 8201, - 8208, - 8195 - ]], - [[ - 3032, - 3030, - 8200 - ]], - [[ - 8200, - 3030, - 8201 - ]], - [[ - 3035, - 3032, - 8193 - ]], - [[ - 8193, - 3032, - 8200 - ]], - [[ - 8203, - 3035, - 3033 - ]], - [[ - 3033, - 3035, - 7996 - ]], - [[ - 7996, - 3035, - 8192 - ]], - [[ - 8192, - 3035, - 8193 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be49e1-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:17.1)", - "identificatiebagpnd": "503100000018595", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027128)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046d949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.98000001907349, - "min-height-surface": -0.109999999403954, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84961.012 447480.098)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:70)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8209, - 8210, - 8211 - ]], - [[ - 8209, - 8212, - 8213 - ]], - [[ - 8210, - 8209, - 8214 - ]], - [[ - 8215, - 8214, - 8216 - ]], - [[ - 8216, - 8214, - 8217 - ]], - [[ - 8214, - 8213, - 8217 - ]], - [[ - 8214, - 8209, - 8213 - ]], - [[ - 8218, - 8219, - 8209 - ]], - [[ - 8209, - 8219, - 8212 - ]], - [[ - 8220, - 8218, - 8211 - ]], - [[ - 8211, - 8218, - 8209 - ]], - [[ - 8221, - 8220, - 8222 - ]], - [[ - 8222, - 8220, - 8210 - ]], - [[ - 8210, - 8220, - 8211 - ]], - [[ - 8223, - 8221, - 8224 - ]], - [[ - 8224, - 8221, - 8222 - ]], - [[ - 8224, - 8222, - 8214 - ]], - [[ - 8214, - 8222, - 8210 - ]], - [[ - 8225, - 8223, - 8226 - ]], - [[ - 8226, - 8223, - 8224 - ]], - [[ - 8226, - 8224, - 8215 - ]], - [[ - 8215, - 8224, - 8214 - ]], - [[ - 1143, - 8225, - 8227 - ]], - [[ - 8227, - 8225, - 8226 - ]], - [[ - 8227, - 8226, - 8216 - ]], - [[ - 8216, - 8226, - 8215 - ]], - [[ - 1144, - 1143, - 8217 - ]], - [[ - 8217, - 1143, - 8227 - ]], - [[ - 8217, - 8227, - 8216 - ]], - [[ - 1247, - 1144, - 8213 - ]], - [[ - 8213, - 1144, - 8217 - ]], - [[ - 8219, - 1247, - 8212 - ]], - [[ - 8212, - 1247, - 8213 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be49e6-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:17.1)", - "identificatiebagpnd": "503100000018591", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027129)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046da49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.95000004768372, - "min-height-surface": -0.109999999403954, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84954.601 447482.214)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:72)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8224, - 8226, - 424 - ]], - [[ - 8224, - 424, - 8222 - ]], - [[ - 8222, - 424, - 427 - ]], - [[ - 424, - 8226, - 8228 - ]], - [[ - 424, - 434, - 425 - ]], - [[ - 424, - 8228, - 434 - ]], - [[ - 8226, - 8227, - 8228 - ]], - [[ - 8223, - 8225, - 8224 - ]], - [[ - 8224, - 8225, - 8226 - ]], - [[ - 8221, - 8223, - 8222 - ]], - [[ - 8222, - 8223, - 8224 - ]], - [[ - 8229, - 8221, - 426 - ]], - [[ - 426, - 8221, - 427 - ]], - [[ - 427, - 8221, - 8222 - ]], - [[ - 8230, - 8229, - 422 - ]], - [[ - 422, - 8229, - 426 - ]], - [[ - 422, - 426, - 424 - ]], - [[ - 424, - 426, - 427 - ]], - [[ - 8231, - 8230, - 423 - ]], - [[ - 423, - 8230, - 422 - ]], - [[ - 423, - 422, - 425 - ]], - [[ - 425, - 422, - 424 - ]], - [[ - 8232, - 8231, - 433 - ]], - [[ - 433, - 8231, - 423 - ]], - [[ - 433, - 423, - 434 - ]], - [[ - 434, - 423, - 425 - ]], - [[ - 1149, - 8232, - 8228 - ]], - [[ - 8228, - 8232, - 433 - ]], - [[ - 8228, - 433, - 434 - ]], - [[ - 1143, - 1149, - 8227 - ]], - [[ - 8227, - 1149, - 8228 - ]], - [[ - 8225, - 1143, - 8226 - ]], - [[ - 8226, - 1143, - 8227 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be49eb-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000028000", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003303)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046e249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 5.82999992370605, - "min-height-surface": 0.159999996423721, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84984.506 447563.460)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:43)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8233, - 8234, - 8235 - ]], - [[ - 8233, - 8236, - 8234 - ]], - [[ - 8234, - 8236, - 8237 - ]], - [[ - 8237, - 8236, - 8238 - ]], - [[ - 8236, - 8239, - 8240 - ]], - [[ - 8241, - 8233, - 8242 - ]], - [[ - 8240, - 8239, - 8243 - ]], - [[ - 8236, - 8233, - 8239 - ]], - [[ - 8244, - 8241, - 8242 - ]], - [[ - 8239, - 8233, - 8241 - ]], - [[ - 676, - 677, - 660 - ]], - [[ - 660, - 677, - 664 - ]], - [[ - 660, - 664, - 8233 - ]], - [[ - 8233, - 664, - 8242 - ]], - [[ - 675, - 676, - 661 - ]], - [[ - 661, - 676, - 660 - ]], - [[ - 661, - 660, - 8235 - ]], - [[ - 8235, - 660, - 8233 - ]], - [[ - 1687, - 675, - 8234 - ]], - [[ - 8234, - 675, - 661 - ]], - [[ - 8234, - 661, - 8235 - ]], - [[ - 1420, - 1687, - 8237 - ]], - [[ - 8237, - 1687, - 8234 - ]], - [[ - 1416, - 1420, - 8245 - ]], - [[ - 8245, - 1420, - 8238 - ]], - [[ - 8238, - 1420, - 8237 - ]], - [[ - 8246, - 1416, - 8247 - ]], - [[ - 8247, - 1416, - 8245 - ]], - [[ - 8247, - 8245, - 8236 - ]], - [[ - 8236, - 8245, - 8238 - ]], - [[ - 8248, - 8246, - 8249 - ]], - [[ - 8249, - 8246, - 8247 - ]], - [[ - 8249, - 8247, - 8240 - ]], - [[ - 8240, - 8247, - 8236 - ]], - [[ - 8250, - 8248, - 8243 - ]], - [[ - 8243, - 8248, - 8249 - ]], - [[ - 8243, - 8249, - 8240 - ]], - [[ - 8251, - 8250, - 8239 - ]], - [[ - 8239, - 8250, - 8243 - ]], - [[ - 8252, - 8251, - 8241 - ]], - [[ - 8241, - 8251, - 8239 - ]], - [[ - 8253, - 8252, - 8244 - ]], - [[ - 8244, - 8252, - 8241 - ]], - [[ - 677, - 8253, - 664 - ]], - [[ - 664, - 8253, - 8242 - ]], - [[ - 8242, - 8253, - 8244 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be49f0-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.9)", - "identificatiebagpnd": "503100000017045", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003302)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046e349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 5.76999998092651, - "min-height-surface": 0.150000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84980.310 447567.401)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:42)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8247, - 8254, - 8245 - ]], - [[ - 8245, - 8254, - 8255 - ]], - [[ - 8256, - 8247, - 8249 - ]], - [[ - 8257, - 8254, - 8258 - ]], - [[ - 8257, - 8258, - 8259 - ]], - [[ - 8258, - 8254, - 8260 - ]], - [[ - 8258, - 8261, - 8262 - ]], - [[ - 8258, - 8263, - 8261 - ]], - [[ - 8261, - 8263, - 8264 - ]], - [[ - 8254, - 8247, - 8260 - ]], - [[ - 8265, - 8260, - 8256 - ]], - [[ - 8263, - 8258, - 8260 - ]], - [[ - 8266, - 8256, - 8249 - ]], - [[ - 8260, - 8247, - 8256 - ]], - [[ - 8267, - 8268, - 8246 - ]], - [[ - 8246, - 8268, - 8248 - ]], - [[ - 8246, - 8248, - 8247 - ]], - [[ - 8247, - 8248, - 8249 - ]], - [[ - 8269, - 8267, - 1416 - ]], - [[ - 1416, - 8267, - 8246 - ]], - [[ - 1416, - 8246, - 8245 - ]], - [[ - 8245, - 8246, - 8247 - ]], - [[ - 1683, - 8269, - 8255 - ]], - [[ - 8255, - 8269, - 1416 - ]], - [[ - 8255, - 1416, - 8245 - ]], - [[ - 8270, - 1683, - 8254 - ]], - [[ - 8254, - 1683, - 8255 - ]], - [[ - 8271, - 8270, - 8257 - ]], - [[ - 8257, - 8270, - 8254 - ]], - [[ - 8272, - 8271, - 8259 - ]], - [[ - 8259, - 8271, - 8257 - ]], - [[ - 8273, - 8272, - 8258 - ]], - [[ - 8258, - 8272, - 8259 - ]], - [[ - 8274, - 8273, - 8262 - ]], - [[ - 8262, - 8273, - 8258 - ]], - [[ - 8275, - 8274, - 8261 - ]], - [[ - 8261, - 8274, - 8262 - ]], - [[ - 8276, - 8275, - 8264 - ]], - [[ - 8264, - 8275, - 8261 - ]], - [[ - 8277, - 8276, - 8263 - ]], - [[ - 8263, - 8276, - 8264 - ]], - [[ - 8278, - 8277, - 8260 - ]], - [[ - 8260, - 8277, - 8263 - ]], - [[ - 8279, - 8278, - 8265 - ]], - [[ - 8265, - 8278, - 8260 - ]], - [[ - 8280, - 8279, - 8256 - ]], - [[ - 8256, - 8279, - 8265 - ]], - [[ - 8281, - 8280, - 8266 - ]], - [[ - 8266, - 8280, - 8256 - ]], - [[ - 8268, - 8281, - 8248 - ]], - [[ - 8248, - 8281, - 8249 - ]], - [[ - 8249, - 8281, - 8266 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be49f5-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000026309", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003301)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046e549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.76999998092651, - "min-height-surface": 0.170000001788139, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84967.823 447579.382)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:41)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8282, - 8283, - 8284 - ]], - [[ - 8285, - 8286, - 8287 - ]], - [[ - 8286, - 8288, - 8287 - ]], - [[ - 8289, - 8290, - 8287 - ]], - [[ - 8288, - 8289, - 8287 - ]], - [[ - 8291, - 8285, - 8287 - ]], - [[ - 8292, - 8293, - 8285 - ]], - [[ - 8294, - 8295, - 8285 - ]], - [[ - 8296, - 8297, - 8295 - ]], - [[ - 8298, - 8299, - 8300 - ]], - [[ - 8299, - 8301, - 8300 - ]], - [[ - 8302, - 8303, - 8304 - ]], - [[ - 8300, - 8301, - 8304 - ]], - [[ - 8302, - 8305, - 8303 - ]], - [[ - 8302, - 8306, - 8305 - ]], - [[ - 8301, - 8302, - 8304 - ]], - [[ - 8296, - 8298, - 8300 - ]], - [[ - 8295, - 8294, - 8296 - ]], - [[ - 8291, - 8284, - 8307 - ]], - [[ - 8296, - 8308, - 8298 - ]], - [[ - 8296, - 8294, - 8308 - ]], - [[ - 8294, - 8285, - 8293 - ]], - [[ - 8284, - 8309, - 8307 - ]], - [[ - 8291, - 8307, - 8285 - ]], - [[ - 8310, - 8293, - 8292 - ]], - [[ - 8285, - 8307, - 8292 - ]], - [[ - 8284, - 8283, - 8309 - ]], - [[ - 8311, - 8312, - 8282 - ]], - [[ - 8282, - 8312, - 8283 - ]], - [[ - 8313, - 8311, - 8284 - ]], - [[ - 8284, - 8311, - 8282 - ]], - [[ - 8314, - 8313, - 8291 - ]], - [[ - 8291, - 8313, - 8284 - ]], - [[ - 8315, - 8314, - 8287 - ]], - [[ - 8287, - 8314, - 8291 - ]], - [[ - 8316, - 8315, - 8290 - ]], - [[ - 8290, - 8315, - 8287 - ]], - [[ - 8317, - 8316, - 8289 - ]], - [[ - 8289, - 8316, - 8290 - ]], - [[ - 8318, - 8317, - 8288 - ]], - [[ - 8288, - 8317, - 8289 - ]], - [[ - 2798, - 8318, - 8286 - ]], - [[ - 8286, - 8318, - 8288 - ]], - [[ - 2794, - 2798, - 8285 - ]], - [[ - 8285, - 2798, - 8286 - ]], - [[ - 2763, - 2794, - 8295 - ]], - [[ - 8295, - 2794, - 8285 - ]], - [[ - 2787, - 2763, - 8297 - ]], - [[ - 8297, - 2763, - 8295 - ]], - [[ - 2788, - 2787, - 8296 - ]], - [[ - 8296, - 2787, - 8297 - ]], - [[ - 2789, - 2788, - 8300 - ]], - [[ - 8300, - 2788, - 8296 - ]], - [[ - 2799, - 2789, - 8304 - ]], - [[ - 8304, - 2789, - 8300 - ]], - [[ - 8319, - 2799, - 8303 - ]], - [[ - 8303, - 2799, - 8304 - ]], - [[ - 8320, - 8319, - 8305 - ]], - [[ - 8305, - 8319, - 8303 - ]], - [[ - 8321, - 8320, - 8306 - ]], - [[ - 8306, - 8320, - 8305 - ]], - [[ - 8322, - 8321, - 8302 - ]], - [[ - 8302, - 8321, - 8306 - ]], - [[ - 8323, - 8322, - 8301 - ]], - [[ - 8301, - 8322, - 8302 - ]], - [[ - 8324, - 8323, - 8325 - ]], - [[ - 8325, - 8323, - 8326 - ]], - [[ - 8326, - 8323, - 8299 - ]], - [[ - 8299, - 8323, - 8301 - ]], - [[ - 8327, - 8324, - 8328 - ]], - [[ - 8328, - 8324, - 8325 - ]], - [[ - 8328, - 8325, - 8329 - ]], - [[ - 8329, - 8325, - 8326 - ]], - [[ - 8329, - 8326, - 8298 - ]], - [[ - 8298, - 8326, - 8299 - ]], - [[ - 8330, - 8327, - 8308 - ]], - [[ - 8308, - 8327, - 8328 - ]], - [[ - 8308, - 8328, - 8329 - ]], - [[ - 8308, - 8329, - 8298 - ]], - [[ - 8331, - 8330, - 8294 - ]], - [[ - 8294, - 8330, - 8308 - ]], - [[ - 8332, - 8331, - 8293 - ]], - [[ - 8293, - 8331, - 8294 - ]], - [[ - 8333, - 8332, - 8310 - ]], - [[ - 8310, - 8332, - 8293 - ]], - [[ - 8334, - 8333, - 8292 - ]], - [[ - 8292, - 8333, - 8310 - ]], - [[ - 8335, - 8334, - 8307 - ]], - [[ - 8307, - 8334, - 8292 - ]], - [[ - 8336, - 8335, - 8309 - ]], - [[ - 8309, - 8335, - 8307 - ]], - [[ - 8312, - 8336, - 8283 - ]], - [[ - 8283, - 8336, - 8309 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31be49fa-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:43.8)", - "identificatiebagpnd": "503100000026310", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000003300)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f046e649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 3.04999995231628, - "min-height-surface": 0.150000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84965.207 447582.006)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:40)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8337, - 8338, - 8339 - ]], - [[ - 8337, - 8339, - 8340 - ]], - [[ - 8339, - 8341, - 8342 - ]], - [[ - 8343, - 8344, - 8341 - ]], - [[ - 8339, - 8343, - 8341 - ]], - [[ - 8344, - 8343, - 8345 - ]], - [[ - 8339, - 8346, - 8343 - ]], - [[ - 8339, - 8338, - 8346 - ]], - [[ - 8346, - 8338, - 8347 - ]], - [[ - 8348, - 8349, - 8331 - ]], - [[ - 8331, - 8349, - 8332 - ]], - [[ - 8331, - 8332, - 8294 - ]], - [[ - 8294, - 8332, - 8293 - ]], - [[ - 8294, - 8293, - 8337 - ]], - [[ - 8337, - 8293, - 8338 - ]], - [[ - 8350, - 8348, - 8340 - ]], - [[ - 8340, - 8348, - 8331 - ]], - [[ - 8340, - 8331, - 8294 - ]], - [[ - 8340, - 8294, - 8337 - ]], - [[ - 8351, - 8350, - 8339 - ]], - [[ - 8339, - 8350, - 8340 - ]], - [[ - 8352, - 8351, - 8342 - ]], - [[ - 8342, - 8351, - 8339 - ]], - [[ - 746, - 8352, - 709 - ]], - [[ - 709, - 8352, - 8341 - ]], - [[ - 8341, - 8352, - 8342 - ]], - [[ - 747, - 746, - 710 - ]], - [[ - 710, - 746, - 709 - ]], - [[ - 710, - 709, - 8344 - ]], - [[ - 8344, - 709, - 8341 - ]], - [[ - 8353, - 747, - 8345 - ]], - [[ - 8345, - 747, - 710 - ]], - [[ - 8345, - 710, - 8344 - ]], - [[ - 8354, - 8353, - 8343 - ]], - [[ - 8343, - 8353, - 8345 - ]], - [[ - 8355, - 8354, - 8346 - ]], - [[ - 8346, - 8354, - 8343 - ]], - [[ - 8356, - 8355, - 8347 - ]], - [[ - 8347, - 8355, - 8346 - ]], - [[ - 8349, - 8356, - 8332 - ]], - [[ - 8332, - 8356, - 8293 - ]], - [[ - 8293, - 8356, - 8338 - ]], - [[ - 8338, - 8356, - 8347 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31c59cd7-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000022785", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0562849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.4300000667572, - "min-height-surface": 0.259999990463257, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8357, - 8358, - 8359 - ]], - [[ - 8357, - 8359, - 8360 - ]], - [[ - 8358, - 8361, - 8359 - ]], - [[ - 1396, - 1657, - 8362 - ]], - [[ - 8362, - 1657, - 8357 - ]], - [[ - 8357, - 1657, - 8363 - ]], - [[ - 8357, - 8363, - 8358 - ]], - [[ - 1398, - 1396, - 8364 - ]], - [[ - 8364, - 1396, - 8362 - ]], - [[ - 8364, - 8362, - 8360 - ]], - [[ - 8360, - 8362, - 8357 - ]], - [[ - 1393, - 1398, - 8359 - ]], - [[ - 8359, - 1398, - 8364 - ]], - [[ - 8359, - 8364, - 8360 - ]], - [[ - 1388, - 1393, - 8365 - ]], - [[ - 8365, - 1393, - 8361 - ]], - [[ - 8361, - 1393, - 8359 - ]], - [[ - 1657, - 1388, - 8363 - ]], - [[ - 8363, - 1388, - 8365 - ]], - [[ - 8363, - 8365, - 8358 - ]], - [[ - 8358, - 8365, - 8361 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31c59cdc-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-40.2)", - "identificatiebagpnd": "503100000022784", - "identificatiebagvbohoogstehuisnummer": "(1:503010000027120)", - "identificatiebagvbolaagstehuisnummer": "(1:503010000027118)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0562949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.42000007629395, - "min-height-surface": 0.119999997317791, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84963.917 447554.114)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:51-55)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8366, - 8367, - 8368 - ]], - [[ - 8369, - 8370, - 8371 - ]], - [[ - 8365, - 8369, - 8371 - ]], - [[ - 8363, - 8369, - 8365 - ]], - [[ - 8372, - 8363, - 8373 - ]], - [[ - 8363, - 8374, - 8369 - ]], - [[ - 8363, - 8372, - 8374 - ]], - [[ - 8374, - 8375, - 8376 - ]], - [[ - 8374, - 8372, - 8375 - ]], - [[ - 8363, - 8367, - 8366 - ]], - [[ - 8368, - 8367, - 8377 - ]], - [[ - 8373, - 8378, - 8379 - ]], - [[ - 8373, - 8366, - 8378 - ]], - [[ - 8373, - 8363, - 8366 - ]], - [[ - 8368, - 8377, - 8380 - ]], - [[ - 8381, - 8368, - 8380 - ]], - [[ - 1501, - 1500, - 8367 - ]], - [[ - 8367, - 1500, - 8377 - ]], - [[ - 8382, - 1501, - 1657 - ]], - [[ - 1657, - 1501, - 8363 - ]], - [[ - 8363, - 1501, - 8367 - ]], - [[ - 8383, - 8382, - 1388 - ]], - [[ - 1388, - 8382, - 1657 - ]], - [[ - 1388, - 1657, - 8365 - ]], - [[ - 8365, - 1657, - 8363 - ]], - [[ - 1389, - 8383, - 8371 - ]], - [[ - 8371, - 8383, - 1388 - ]], - [[ - 8371, - 1388, - 8365 - ]], - [[ - 8384, - 1389, - 8370 - ]], - [[ - 8370, - 1389, - 8371 - ]], - [[ - 8385, - 8384, - 8369 - ]], - [[ - 8369, - 8384, - 8370 - ]], - [[ - 8386, - 8385, - 8374 - ]], - [[ - 8374, - 8385, - 8369 - ]], - [[ - 8387, - 8386, - 8376 - ]], - [[ - 8376, - 8386, - 8374 - ]], - [[ - 8388, - 8387, - 8375 - ]], - [[ - 8375, - 8387, - 8376 - ]], - [[ - 8389, - 8388, - 8372 - ]], - [[ - 8372, - 8388, - 8375 - ]], - [[ - 8390, - 8389, - 8373 - ]], - [[ - 8373, - 8389, - 8372 - ]], - [[ - 8391, - 8390, - 8379 - ]], - [[ - 8379, - 8390, - 8373 - ]], - [[ - 8392, - 8391, - 8378 - ]], - [[ - 8378, - 8391, - 8379 - ]], - [[ - 8393, - 8392, - 8366 - ]], - [[ - 8366, - 8392, - 8378 - ]], - [[ - 8394, - 8393, - 8368 - ]], - [[ - 8368, - 8393, - 8366 - ]], - [[ - 8395, - 8394, - 8381 - ]], - [[ - 8381, - 8394, - 8368 - ]], - [[ - 8396, - 8395, - 8380 - ]], - [[ - 8380, - 8395, - 8381 - ]], - [[ - 1500, - 8396, - 8377 - ]], - [[ - 8377, - 8396, - 8380 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31c59cdf-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000026303", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0562a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.75999999046326, - "min-height-surface": 0.330000013113022, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8326, - 8329, - 8397 - ]], - [[ - 8329, - 8398, - 8397 - ]], - [[ - 8398, - 8329, - 8399 - ]], - [[ - 8398, - 8399, - 8400 - ]], - [[ - 8329, - 8401, - 8399 - ]], - [[ - 8325, - 8328, - 8326 - ]], - [[ - 8326, - 8328, - 8329 - ]], - [[ - 8402, - 8325, - 8397 - ]], - [[ - 8397, - 8325, - 8326 - ]], - [[ - 1097, - 8402, - 8398 - ]], - [[ - 8398, - 8402, - 8397 - ]], - [[ - 1095, - 1097, - 8400 - ]], - [[ - 8400, - 1097, - 8398 - ]], - [[ - 8403, - 1095, - 8399 - ]], - [[ - 8399, - 1095, - 8400 - ]], - [[ - 8404, - 8403, - 8401 - ]], - [[ - 8401, - 8403, - 8399 - ]], - [[ - 8328, - 8404, - 8329 - ]], - [[ - 8329, - 8404, - 8401 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e18906-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000017316", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0751749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 0.75, - "min-height-surface": 0.0199999995529652, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8405, - 8406, - 8407 - ]], - [[ - 8405, - 8407, - 8408 - ]], - [[ - 8408, - 8407, - 8409 - ]], - [[ - 8406, - 8410, - 8407 - ]], - [[ - 8406, - 8411, - 8410 - ]], - [[ - 1151, - 1150, - 8405 - ]], - [[ - 8405, - 1150, - 8406 - ]], - [[ - 1178, - 1151, - 8408 - ]], - [[ - 8408, - 1151, - 8405 - ]], - [[ - 1172, - 1178, - 8409 - ]], - [[ - 8409, - 1178, - 8408 - ]], - [[ - 1160, - 1172, - 8407 - ]], - [[ - 8407, - 1172, - 8409 - ]], - [[ - 1161, - 1160, - 8410 - ]], - [[ - 8410, - 1160, - 8407 - ]], - [[ - 8412, - 1161, - 8411 - ]], - [[ - 8411, - 1161, - 8410 - ]], - [[ - 1150, - 8412, - 8406 - ]], - [[ - 8406, - 8412, - 8411 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1890f-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000017220", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0751a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.40000009536743, - "min-height-surface": 0.209999993443489, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8413, - 8414, - 8415 - ]], - [[ - 8413, - 8415, - 8416 - ]], - [[ - 8417, - 1942, - 8413 - ]], - [[ - 8413, - 1942, - 8414 - ]], - [[ - 2214, - 8417, - 8416 - ]], - [[ - 8416, - 8417, - 8413 - ]], - [[ - 1941, - 2214, - 8415 - ]], - [[ - 8415, - 2214, - 8416 - ]], - [[ - 1942, - 1941, - 8414 - ]], - [[ - 8414, - 1941, - 8415 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e18912-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000017502", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0751b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.94000005722046, - "min-height-surface": 0.340000003576279, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8418, - 8419, - 8420 - ]], - [[ - 8419, - 8421, - 8420 - ]], - [[ - 8419, - 8422, - 8421 - ]], - [[ - 8421, - 8422, - 8423 - ]], - [[ - 8424, - 8425, - 8418 - ]], - [[ - 8418, - 8425, - 8419 - ]], - [[ - 8426, - 8424, - 8420 - ]], - [[ - 8420, - 8424, - 8418 - ]], - [[ - 8427, - 8426, - 8421 - ]], - [[ - 8421, - 8426, - 8420 - ]], - [[ - 8428, - 8427, - 8423 - ]], - [[ - 8423, - 8427, - 8421 - ]], - [[ - 8429, - 8428, - 8422 - ]], - [[ - 8422, - 8428, - 8423 - ]], - [[ - 8425, - 8429, - 8419 - ]], - [[ - 8419, - 8429, - 8422 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e18915-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000026315", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0751c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.83999991416931, - "min-height-surface": 0.349999994039536, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8430, - 8431, - 8432 - ]], - [[ - 8430, - 8432, - 8433 - ]], - [[ - 8434, - 8435, - 8430 - ]], - [[ - 8430, - 8435, - 8431 - ]], - [[ - 8436, - 8434, - 8433 - ]], - [[ - 8433, - 8434, - 8430 - ]], - [[ - 8437, - 8436, - 8432 - ]], - [[ - 8432, - 8436, - 8433 - ]], - [[ - 8435, - 8437, - 8431 - ]], - [[ - 8431, - 8437, - 8432 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e18918-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000017416", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0751d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.41000008583069, - "min-height-surface": 0.349999994039536, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8438, - 8439, - 8440 - ]], - [[ - 8438, - 8440, - 8441 - ]], - [[ - 8442, - 8443, - 8438 - ]], - [[ - 8438, - 8443, - 8439 - ]], - [[ - 8444, - 8442, - 8441 - ]], - [[ - 8441, - 8442, - 8438 - ]], - [[ - 8445, - 8444, - 8440 - ]], - [[ - 8440, - 8444, - 8441 - ]], - [[ - 8443, - 8445, - 8439 - ]], - [[ - 8439, - 8445, - 8440 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1b041-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.6)", - "identificatiebagpnd": "503100000027890", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000050769)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.84999990463257, - "min-height-surface": 0.409999996423721, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84922.364 447574.977)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:48B)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8446, - 8447, - 8448 - ]], - [[ - 8447, - 8449, - 8448 - ]], - [[ - 2477, - 2303, - 8446 - ]], - [[ - 8446, - 2303, - 8447 - ]], - [[ - 8450, - 2477, - 2476 - ]], - [[ - 2476, - 2477, - 8448 - ]], - [[ - 8448, - 2477, - 8446 - ]], - [[ - 8451, - 8450, - 2487 - ]], - [[ - 2487, - 8450, - 2476 - ]], - [[ - 2487, - 2476, - 8449 - ]], - [[ - 8449, - 2476, - 8448 - ]], - [[ - 2303, - 8451, - 8447 - ]], - [[ - 8447, - 8451, - 2487 - ]], - [[ - 8447, - 2487, - 8449 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1b046-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.6)", - "identificatiebagpnd": "503100000027892", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000050770)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.86999988555908, - "min-height-surface": 0.409999996423721, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84923.983 447577.736)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:48C)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8452, - 8453, - 8454 - ]], - [[ - 8453, - 8455, - 8454 - ]], - [[ - 2478, - 2301, - 8452 - ]], - [[ - 8452, - 2301, - 8453 - ]], - [[ - 2477, - 2478, - 8446 - ]], - [[ - 8446, - 2478, - 8454 - ]], - [[ - 8454, - 2478, - 8452 - ]], - [[ - 2303, - 2477, - 8447 - ]], - [[ - 8447, - 2477, - 8446 - ]], - [[ - 8447, - 8446, - 8455 - ]], - [[ - 8455, - 8446, - 8454 - ]], - [[ - 2301, - 2303, - 8453 - ]], - [[ - 8453, - 2303, - 8447 - ]], - [[ - 8453, - 8447, - 8455 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1b04b-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.6)", - "identificatiebagpnd": "503100000017418", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000050771)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.86999988555908, - "min-height-surface": 0.400000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84927.347 447578.414)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:48D)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8456, - 8457, - 8452 - ]], - [[ - 8457, - 8453, - 8452 - ]], - [[ - 2468, - 2510, - 8458 - ]], - [[ - 8458, - 2510, - 8459 - ]], - [[ - 8458, - 8459, - 8456 - ]], - [[ - 8456, - 8459, - 8457 - ]], - [[ - 8460, - 2468, - 2478 - ]], - [[ - 2478, - 2468, - 8452 - ]], - [[ - 8452, - 2468, - 8458 - ]], - [[ - 8452, - 8458, - 8456 - ]], - [[ - 8461, - 8460, - 2301 - ]], - [[ - 2301, - 8460, - 2478 - ]], - [[ - 2301, - 2478, - 8453 - ]], - [[ - 8453, - 2478, - 8452 - ]], - [[ - 2510, - 8461, - 8459 - ]], - [[ - 8459, - 8461, - 8457 - ]], - [[ - 8457, - 8461, - 2301 - ]], - [[ - 8457, - 2301, - 8453 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1b050-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:54.4)", - "identificatiebagpnd": "503100000017415", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000050774)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.90000009536743, - "min-height-surface": 0.449999988079071, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84931.244 447585.027)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:48G)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8462, - 8463, - 8464 - ]], - [[ - 8463, - 7497, - 8464 - ]], - [[ - 8464, - 7497, - 7496 - ]], - [[ - 2484, - 2485, - 8462 - ]], - [[ - 8462, - 2485, - 8463 - ]], - [[ - 2261, - 2484, - 8464 - ]], - [[ - 8464, - 2484, - 8462 - ]], - [[ - 8465, - 2261, - 2262 - ]], - [[ - 2262, - 2261, - 7496 - ]], - [[ - 7496, - 2261, - 8464 - ]], - [[ - 8466, - 8465, - 2517 - ]], - [[ - 2517, - 8465, - 2262 - ]], - [[ - 2517, - 2262, - 7497 - ]], - [[ - 7497, - 2262, - 7496 - ]], - [[ - 2485, - 8466, - 8463 - ]], - [[ - 8463, - 8466, - 2517 - ]], - [[ - 8463, - 2517, - 7497 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1b055-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.6)", - "identificatiebagpnd": "503100000017501", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000050772)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.84999990463257, - "min-height-surface": 0.389999985694885, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84929.127 447581.439)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:48E)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8467, - 8468, - 8458 - ]], - [[ - 8468, - 8459, - 8458 - ]], - [[ - 8469, - 8470, - 2467 - ]], - [[ - 2467, - 8470, - 2509 - ]], - [[ - 2467, - 2509, - 8471 - ]], - [[ - 8471, - 2509, - 8472 - ]], - [[ - 8471, - 8472, - 8467 - ]], - [[ - 8467, - 8472, - 8468 - ]], - [[ - 8473, - 8469, - 2468 - ]], - [[ - 2468, - 8469, - 8458 - ]], - [[ - 8458, - 8469, - 2467 - ]], - [[ - 8458, - 2467, - 8471 - ]], - [[ - 8458, - 8471, - 8467 - ]], - [[ - 8474, - 8473, - 2510 - ]], - [[ - 2510, - 8473, - 2468 - ]], - [[ - 2510, - 2468, - 8459 - ]], - [[ - 8459, - 2468, - 8458 - ]], - [[ - 8470, - 8474, - 2509 - ]], - [[ - 2509, - 8474, - 8472 - ]], - [[ - 8472, - 8474, - 8468 - ]], - [[ - 8468, - 8474, - 2510 - ]], - [[ - 8468, - 2510, - 8459 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1b05a-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.6)", - "identificatiebagpnd": "503100000017320", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000050773)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.82999992370605, - "min-height-surface": 0.400000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84932.514 447581.966)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:48F)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8475, - 8472, - 8471 - ]], - [[ - 8475, - 8471, - 8476 - ]], - [[ - 2483, - 2509, - 8475 - ]], - [[ - 8475, - 2509, - 8472 - ]], - [[ - 2481, - 2483, - 8476 - ]], - [[ - 8476, - 2483, - 8475 - ]], - [[ - 2467, - 2481, - 8471 - ]], - [[ - 8471, - 2481, - 8476 - ]], - [[ - 2509, - 2467, - 8472 - ]], - [[ - 8472, - 2467, - 8471 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1b05d-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000017405", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 1.60000002384186, - "min-height-surface": 0.400000005960464, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8477, - 8478, - 8479 - ]], - [[ - 8478, - 8480, - 8479 - ]], - [[ - 8481, - 8482, - 8477 - ]], - [[ - 8477, - 8482, - 8478 - ]], - [[ - 8483, - 8481, - 8479 - ]], - [[ - 8479, - 8481, - 8477 - ]], - [[ - 8484, - 8483, - 8480 - ]], - [[ - 8480, - 8483, - 8479 - ]], - [[ - 8482, - 8484, - 8478 - ]], - [[ - 8478, - 8484, - 8480 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1d770-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000017417", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 1.02999997138977, - "min-height-surface": 0.270000010728836, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8485, - 8486, - 8487 - ]], - [[ - 8485, - 8487, - 8488 - ]], - [[ - 8486, - 8489, - 8487 - ]], - [[ - 8490, - 8491, - 8485 - ]], - [[ - 8485, - 8491, - 8486 - ]], - [[ - 8492, - 8490, - 8488 - ]], - [[ - 8488, - 8490, - 8485 - ]], - [[ - 8493, - 8492, - 8487 - ]], - [[ - 8487, - 8492, - 8488 - ]], - [[ - 8494, - 8493, - 8489 - ]], - [[ - 8489, - 8493, - 8487 - ]], - [[ - 8491, - 8494, - 8486 - ]], - [[ - 8486, - 8494, - 8489 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1d773-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000027891", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.49000000953674, - "min-height-surface": 0.430000007152557, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8495, - 8496, - 8497 - ]], - [[ - 8495, - 8497, - 8498 - ]], - [[ - 8497, - 8496, - 8499 - ]], - [[ - 8497, - 8499, - 8500 - ]], - [[ - 2273, - 2749, - 8495 - ]], - [[ - 8495, - 2749, - 8496 - ]], - [[ - 2270, - 2273, - 8498 - ]], - [[ - 8498, - 2273, - 8495 - ]], - [[ - 2271, - 2270, - 8497 - ]], - [[ - 8497, - 2270, - 8498 - ]], - [[ - 2269, - 2271, - 8500 - ]], - [[ - 8500, - 2271, - 8497 - ]], - [[ - 2267, - 2269, - 8499 - ]], - [[ - 8499, - 2269, - 8500 - ]], - [[ - 2749, - 2267, - 8496 - ]], - [[ - 8496, - 2267, - 8499 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1d778-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "(1:-35.6)", - "identificatiebagpnd": "503100000017414", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "(1:503010000050768)", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0752e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.84999990463257, - "min-height-surface": 0.419999986886978, - "namespace": "NL.IMGeo", - "plaatsingspunt": "(1:84919.038 447574.260)", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "(1:48A)", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8448, - 8449, - 8501 - ]], - [[ - 8449, - 8502, - 8501 - ]], - [[ - 2476, - 2487, - 8448 - ]], - [[ - 8448, - 2487, - 8449 - ]], - [[ - 2268, - 2476, - 8501 - ]], - [[ - 8501, - 2476, - 8448 - ]], - [[ - 2264, - 2268, - 8502 - ]], - [[ - 8502, - 2268, - 8501 - ]], - [[ - 2487, - 2264, - 8449 - ]], - [[ - 8449, - 2264, - 8502 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1d795-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000022861", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f075e349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.40000009536743, - "min-height-surface": 0.239999994635582, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8503, - 8504, - 8364 - ]], - [[ - 8504, - 8362, - 8364 - ]], - [[ - 1401, - 1598, - 8503 - ]], - [[ - 8503, - 1598, - 8504 - ]], - [[ - 8505, - 1401, - 1398 - ]], - [[ - 1398, - 1401, - 8364 - ]], - [[ - 8364, - 1401, - 8503 - ]], - [[ - 8506, - 8505, - 1396 - ]], - [[ - 1396, - 8505, - 1398 - ]], - [[ - 1396, - 1398, - 8362 - ]], - [[ - 8362, - 1398, - 8364 - ]], - [[ - 1598, - 8506, - 8504 - ]], - [[ - 8504, - 8506, - 1396 - ]], - [[ - 8504, - 1396, - 8362 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1fea8-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018599", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f075e449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.41000008583069, - "min-height-surface": 0.189999997615814, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8507, - 8508, - 8509 - ]], - [[ - 8508, - 8510, - 8509 - ]], - [[ - 1478, - 1465, - 8507 - ]], - [[ - 8507, - 1465, - 8508 - ]], - [[ - 1455, - 1478, - 8509 - ]], - [[ - 8509, - 1478, - 8507 - ]], - [[ - 1512, - 1455, - 8510 - ]], - [[ - 8510, - 1455, - 8509 - ]], - [[ - 1465, - 1512, - 8508 - ]], - [[ - 8508, - 1512, - 8510 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1feab-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018606", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f075e549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.30999994277954, - "min-height-surface": 0.200000002980232, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8511, - 8512, - 8513 - ]], - [[ - 8512, - 8514, - 8513 - ]], - [[ - 1451, - 1713, - 8511 - ]], - [[ - 8511, - 1713, - 8512 - ]], - [[ - 1324, - 1451, - 8513 - ]], - [[ - 8513, - 1451, - 8511 - ]], - [[ - 1667, - 1324, - 8514 - ]], - [[ - 8514, - 1324, - 8513 - ]], - [[ - 1713, - 1667, - 8512 - ]], - [[ - 8512, - 1667, - 8514 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1feae-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018588", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f075e649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.78999996185303, - "min-height-surface": 0.349999994039536, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8515, - 8516, - 8517 - ]], - [[ - 8516, - 8518, - 8517 - ]], - [[ - 1438, - 1452, - 8515 - ]], - [[ - 8515, - 1452, - 8516 - ]], - [[ - 1468, - 1438, - 8517 - ]], - [[ - 8517, - 1438, - 8515 - ]], - [[ - 1402, - 1468, - 8518 - ]], - [[ - 8518, - 1468, - 8517 - ]], - [[ - 1452, - 1402, - 8516 - ]], - [[ - 8516, - 1402, - 8518 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1feb1-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018603", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f075e849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 1.78999996185303, - "min-height-surface": 0.00999999977648258, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8519, - 8520, - 8521 - ]], - [[ - 8519, - 8521, - 8522 - ]], - [[ - 8522, - 8521, - 8523 - ]], - [[ - 8520, - 8524, - 8521 - ]], - [[ - 8520, - 8525, - 8524 - ]], - [[ - 1225, - 1229, - 8519 - ]], - [[ - 8519, - 1229, - 8520 - ]], - [[ - 1226, - 1225, - 8522 - ]], - [[ - 8522, - 1225, - 8519 - ]], - [[ - 1206, - 1226, - 8523 - ]], - [[ - 8523, - 1226, - 8522 - ]], - [[ - 1216, - 1206, - 8521 - ]], - [[ - 8521, - 1206, - 8523 - ]], - [[ - 1217, - 1216, - 8524 - ]], - [[ - 8524, - 1216, - 8521 - ]], - [[ - 8526, - 1217, - 8525 - ]], - [[ - 8525, - 1217, - 8524 - ]], - [[ - 1229, - 8526, - 8520 - ]], - [[ - 8520, - 8526, - 8525 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1feb4-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018604", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f075e949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 1.21000003814697, - "min-height-surface": 0.00999999977648258, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8527, - 8528, - 8529 - ]], - [[ - 8527, - 8529, - 8530 - ]], - [[ - 8530, - 8529, - 8531 - ]], - [[ - 8528, - 8532, - 8529 - ]], - [[ - 8528, - 8533, - 8532 - ]], - [[ - 1122, - 1121, - 8527 - ]], - [[ - 8527, - 1121, - 8528 - ]], - [[ - 1133, - 1122, - 8530 - ]], - [[ - 8530, - 1122, - 8527 - ]], - [[ - 1115, - 1133, - 8531 - ]], - [[ - 8531, - 1133, - 8530 - ]], - [[ - 1227, - 1115, - 8529 - ]], - [[ - 8529, - 1115, - 8531 - ]], - [[ - 1230, - 1227, - 8532 - ]], - [[ - 8532, - 1227, - 8529 - ]], - [[ - 8534, - 1230, - 8533 - ]], - [[ - 8533, - 1230, - 8532 - ]], - [[ - 1121, - 8534, - 8528 - ]], - [[ - 8528, - 8534, - 8533 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1feb7-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018597", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f075ea49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.35999989509583, - "min-height-surface": 0.0299999993294477, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8535, - 8536, - 8537 - ]], - [[ - 8536, - 8538, - 8537 - ]], - [[ - 8537, - 8538, - 8539 - ]], - [[ - 8536, - 8540, - 8538 - ]], - [[ - 8538, - 8540, - 8541 - ]], - [[ - 8536, - 8542, - 8540 - ]], - [[ - 8543, - 8544, - 8535 - ]], - [[ - 8535, - 8544, - 8536 - ]], - [[ - 1315, - 8543, - 8537 - ]], - [[ - 8537, - 8543, - 8535 - ]], - [[ - 1126, - 1315, - 8539 - ]], - [[ - 8539, - 1315, - 8537 - ]], - [[ - 1125, - 1126, - 8538 - ]], - [[ - 8538, - 1126, - 8539 - ]], - [[ - 1124, - 1125, - 8541 - ]], - [[ - 8541, - 1125, - 8538 - ]], - [[ - 8545, - 1124, - 8540 - ]], - [[ - 8540, - 1124, - 8541 - ]], - [[ - 8546, - 8545, - 8542 - ]], - [[ - 8542, - 8545, - 8540 - ]], - [[ - 8544, - 8546, - 8536 - ]], - [[ - 8536, - 8546, - 8542 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1feba-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018517", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f075eb49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 0.75, - "min-height-surface": 0.00999999977648258, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8547, - 8548, - 8549 - ]], - [[ - 8547, - 8549, - 8550 - ]], - [[ - 8550, - 8549, - 8551 - ]], - [[ - 8548, - 8552, - 8549 - ]], - [[ - 8548, - 8553, - 8552 - ]], - [[ - 1213, - 1212, - 8547 - ]], - [[ - 8547, - 1212, - 8548 - ]], - [[ - 1214, - 1213, - 8550 - ]], - [[ - 8550, - 1213, - 8547 - ]], - [[ - 1201, - 1214, - 8551 - ]], - [[ - 8551, - 1214, - 8550 - ]], - [[ - 1204, - 1201, - 8549 - ]], - [[ - 8549, - 1201, - 8551 - ]], - [[ - 1202, - 1204, - 8552 - ]], - [[ - 8552, - 1204, - 8549 - ]], - [[ - 8554, - 1202, - 8553 - ]], - [[ - 8553, - 1202, - 8552 - ]], - [[ - 1212, - 8554, - 8548 - ]], - [[ - 8548, - 8554, - 8553 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b31e1febd-00ba-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoek": "", - "identificatiebagpnd": "503100000018609", - "identificatiebagvbohoogstehuisnummer": "", - "identificatiebagvbolaagstehuisnummer": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f075ec49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "measuredHeight": 2.34999990463257, - "min-height-surface": 0.00999999977648258, - "namespace": "NL.IMGeo", - "plaatsingspunt": "", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "tekst": "", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [[ - [[ - 8555, - 8556, - 8557 - ]], - [[ - 8555, - 8557, - 8558 - ]], - [[ - 8558, - 8557, - 8559 - ]], - [[ - 8556, - 8560, - 8557 - ]], - [[ - 8556, - 8561, - 8560 - ]], - [[ - 1199, - 1198, - 8555 - ]], - [[ - 8555, - 1198, - 8556 - ]], - [[ - 1294, - 1199, - 8558 - ]], - [[ - 8558, - 1199, - 8555 - ]], - [[ - 1186, - 1294, - 8559 - ]], - [[ - 8559, - 1294, - 8558 - ]], - [[ - 1187, - 1186, - 8557 - ]], - [[ - 8557, - 1186, - 8559 - ]], - [[ - 1188, - 1187, - 8560 - ]], - [[ - 8560, - 1187, - 8557 - ]], - [[ - 8562, - 1188, - 8561 - ]], - [[ - 8561, - 1188, - 8560 - ]], - [[ - 1198, - 8562, - 8556 - ]], - [[ - 8556, - 8562, - 8561 - ]] - ]], - "lod": "1", - "type": "Solid" - }], - "type": "Building" - }, - "b41373904-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef814949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8563, - 1898, - 1900 - ]], - [[ - 2886, - 8564, - 8565 - ]], - [[ - 8566, - 8567, - 8568 - ]], - [[ - 8567, - 8569, - 8570 - ]], - [[ - 8571, - 8572, - 8153 - ]], - [[ - 8572, - 8573, - 8574 - ]], - [[ - 8575, - 8571, - 8576 - ]], - [[ - 8577, - 8578, - 8579 - ]], - [[ - 8580, - 8581, - 8565 - ]], - [[ - 8570, - 1915, - 8582 - ]], - [[ - 8583, - 8579, - 8584 - ]], - [[ - 8574, - 8573, - 8578 - ]], - [[ - 8585, - 8586, - 8587 - ]], - [[ - 8588, - 8589, - 8590 - ]], - [[ - 8591, - 8592, - 8586 - ]], - [[ - 1924, - 123, - 8593 - ]], - [[ - 1928, - 1924, - 8590 - ]], - [[ - 1927, - 1928, - 8590 - ]], - [[ - 1925, - 8590, - 1926 - ]], - [[ - 1926, - 8590, - 1930 - ]], - [[ - 1930, - 8582, - 1922 - ]], - [[ - 8594, - 8569, - 8567 - ]], - [[ - 1922, - 8582, - 1921 - ]], - [[ - 8570, - 8155, - 8567 - ]], - [[ - 1920, - 1921, - 8582 - ]], - [[ - 1918, - 1920, - 8582 - ]], - [[ - 1919, - 1918, - 8582 - ]], - [[ - 1915, - 1919, - 8582 - ]], - [[ - 1929, - 8570, - 1908 - ]], - [[ - 8582, - 8590, - 8595 - ]], - [[ - 1915, - 8570, - 1913 - ]], - [[ - 8570, - 1911, - 1914 - ]], - [[ - 1929, - 1910, - 8570 - ]], - [[ - 8570, - 8582, - 8596 - ]], - [[ - 1909, - 1908, - 8570 - ]], - [[ - 1906, - 1909, - 8570 - ]], - [[ - 8570, - 8597, - 8154 - ]], - [[ - 1904, - 1905, - 8570 - ]], - [[ - 1903, - 1904, - 8570 - ]], - [[ - 1901, - 1903, - 8570 - ]], - [[ - 1900, - 1901, - 8598 - ]], - [[ - 8563, - 1900, - 8598 - ]], - [[ - 8563, - 1899, - 1898 - ]], - [[ - 8563, - 1897, - 1899 - ]], - [[ - 8563, - 1896, - 1897 - ]], - [[ - 8563, - 1895, - 1896 - ]], - [[ - 1894, - 1890, - 8563 - ]], - [[ - 1893, - 1894, - 8563 - ]], - [[ - 1891, - 1893, - 8563 - ]], - [[ - 8599, - 8600, - 8598 - ]], - [[ - 8601, - 8567, - 8566 - ]], - [[ - 8602, - 8600, - 120 - ]], - [[ - 120, - 8600, - 119 - ]], - [[ - 8599, - 8569, - 119 - ]], - [[ - 8598, - 1901, - 8570 - ]], - [[ - 8601, - 8594, - 8567 - ]], - [[ - 8603, - 8566, - 8565 - ]], - [[ - 8604, - 8605, - 2894 - ]], - [[ - 8606, - 8607, - 8608 - ]], - [[ - 8580, - 8565, - 8564 - ]], - [[ - 8564, - 8609, - 8580 - ]], - [[ - 8564, - 2886, - 2963 - ]], - [[ - 8610, - 8611, - 8612 - ]], - [[ - 8607, - 2894, - 8605 - ]], - [[ - 193, - 8613, - 192 - ]], - [[ - 192, - 8613, - 8610 - ]], - [[ - 8614, - 118, - 8580 - ]], - [[ - 193, - 8615, - 8613 - ]], - [[ - 8609, - 8564, - 8616 - ]], - [[ - 8154, - 8571, - 8153 - ]], - [[ - 8597, - 8617, - 8573 - ]], - [[ - 8615, - 8614, - 8606 - ]], - [[ - 193, - 118, - 8614 - ]], - [[ - 8618, - 8619, - 8581 - ]], - [[ - 8618, - 8566, - 8603 - ]], - [[ - 8578, - 8620, - 8584 - ]], - [[ - 8621, - 8622, - 8583 - ]], - [[ - 1925, - 1927, - 8590 - ]], - [[ - 8623, - 8622, - 8621 - ]], - [[ - 8586, - 8592, - 123 - ]], - [[ - 8624, - 8623, - 8621 - ]], - [[ - 8613, - 8615, - 8606 - ]], - [[ - 193, - 8614, - 8615 - ]], - [[ - 8610, - 8625, - 192 - ]], - [[ - 8604, - 2894, - 192 - ]], - [[ - 1930, - 8590, - 8582 - ]], - [[ - 8595, - 8626, - 8627 - ]], - [[ - 8154, - 8576, - 8571 - ]], - [[ - 8617, - 8596, - 8628 - ]], - [[ - 8614, - 8580, - 8606 - ]], - [[ - 8581, - 8619, - 8565 - ]], - [[ - 1924, - 8593, - 8590 - ]], - [[ - 123, - 8592, - 8593 - ]], - [[ - 8629, - 8630, - 8583 - ]], - [[ - 8585, - 8591, - 8586 - ]], - [[ - 8631, - 8583, - 8584 - ]], - [[ - 8622, - 8579, - 8583 - ]], - [[ - 8618, - 8601, - 8566 - ]], - [[ - 117, - 8594, - 8601 - ]], - [[ - 8620, - 8617, - 8584 - ]], - [[ - 8632, - 8630, - 8629 - ]], - [[ - 8579, - 8578, - 8584 - ]], - [[ - 1911, - 8570, - 1910 - ]], - [[ - 8633, - 8577, - 8579 - ]], - [[ - 8572, - 8576, - 8573 - ]], - [[ - 8634, - 8605, - 8604 - ]], - [[ - 8608, - 8607, - 8605 - ]], - [[ - 8625, - 8604, - 192 - ]], - [[ - 8635, - 8611, - 8634 - ]], - [[ - 8593, - 8588, - 8590 - ]], - [[ - 8593, - 8592, - 8588 - ]], - [[ - 124, - 8586, - 123 - ]], - [[ - 8587, - 8623, - 8624 - ]], - [[ - 8636, - 8596, - 8582 - ]], - [[ - 8582, - 8595, - 8627 - ]], - [[ - 8637, - 8621, - 8583 - ]], - [[ - 8637, - 8624, - 8621 - ]], - [[ - 8573, - 8617, - 8620 - ]], - [[ - 8576, - 8154, - 8597 - ]], - [[ - 8590, - 8589, - 8595 - ]], - [[ - 8588, - 8592, - 8638 - ]], - [[ - 8578, - 8573, - 8620 - ]], - [[ - 8576, - 8597, - 8573 - ]], - [[ - 8635, - 8634, - 8604 - ]], - [[ - 8611, - 8606, - 8608 - ]], - [[ - 117, - 8618, - 118 - ]], - [[ - 117, - 8601, - 8618 - ]], - [[ - 1914, - 1913, - 8570 - ]], - [[ - 8596, - 8617, - 8597 - ]], - [[ - 8577, - 8574, - 8578 - ]], - [[ - 8639, - 8572, - 8574 - ]], - [[ - 8585, - 8624, - 8637 - ]], - [[ - 8587, - 124, - 8623 - ]], - [[ - 118, - 8581, - 8580 - ]], - [[ - 118, - 8618, - 8581 - ]], - [[ - 8600, - 8599, - 119 - ]], - [[ - 8598, - 8569, - 8599 - ]], - [[ - 8155, - 8570, - 8154 - ]], - [[ - 8582, - 8627, - 8636 - ]], - [[ - 8598, - 8570, - 8569 - ]], - [[ - 1905, - 1906, - 8570 - ]], - [[ - 8570, - 8596, - 8597 - ]], - [[ - 8640, - 8626, - 8629 - ]], - [[ - 8617, - 8631, - 8584 - ]], - [[ - 8629, - 8583, - 8631 - ]], - [[ - 8640, - 8628, - 8636 - ]], - [[ - 8631, - 8617, - 8628 - ]], - [[ - 1892, - 8602, - 120 - ]], - [[ - 1892, - 8600, - 8602 - ]], - [[ - 8625, - 8612, - 8604 - ]], - [[ - 8625, - 8610, - 8612 - ]], - [[ - 8583, - 8630, - 8637 - ]], - [[ - 8638, - 8589, - 8588 - ]], - [[ - 8632, - 8638, - 8591 - ]], - [[ - 8595, - 8589, - 8638 - ]], - [[ - 8632, - 8591, - 8630 - ]], - [[ - 8638, - 8592, - 8591 - ]], - [[ - 8596, - 8636, - 8628 - ]], - [[ - 8627, - 8626, - 8636 - ]], - [[ - 8626, - 8640, - 8636 - ]], - [[ - 8631, - 8628, - 8640 - ]], - [[ - 8640, - 8629, - 8631 - ]], - [[ - 8626, - 8632, - 8629 - ]], - [[ - 8585, - 8587, - 8624 - ]], - [[ - 8586, - 124, - 8587 - ]], - [[ - 8612, - 8635, - 8604 - ]], - [[ - 8612, - 8611, - 8635 - ]], - [[ - 8641, - 8616, - 8564 - ]], - [[ - 8609, - 8606, - 8580 - ]], - [[ - 8641, - 8609, - 8616 - ]], - [[ - 8607, - 8606, - 8609 - ]], - [[ - 8607, - 8641, - 8564 - ]], - [[ - 8607, - 8609, - 8641 - ]], - [[ - 1891, - 8563, - 8598 - ]], - [[ - 1890, - 1895, - 8563 - ]], - [[ - 8572, - 8575, - 8576 - ]], - [[ - 8572, - 8571, - 8575 - ]], - [[ - 8619, - 8603, - 8565 - ]], - [[ - 8619, - 8618, - 8603 - ]], - [[ - 8634, - 8608, - 8605 - ]], - [[ - 8634, - 8611, - 8608 - ]], - [[ - 8639, - 8577, - 8633 - ]], - [[ - 8639, - 8574, - 8577 - ]], - [[ - 8630, - 8585, - 8637 - ]], - [[ - 8630, - 8591, - 8585 - ]], - [[ - 8595, - 8632, - 8626 - ]], - [[ - 8595, - 8638, - 8632 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4137fbfc-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2015-04-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.a7f64e78a3f34c07a6005756fd037ca1", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8642, - 8643, - 8644 - ]], - [[ - 8642, - 8644, - 8645 - ]], - [[ - 8644, - 8643, - 8646 - ]], - [[ - 8646, - 8647, - 8648 - ]], - [[ - 8646, - 8643, - 8649 - ]], - [[ - 8646, - 8649, - 8647 - ]], - [[ - 8647, - 8649, - 8650 - ]], - [[ - 8649, - 8643, - 8651 - ]], - [[ - 8651, - 8652, - 8653 - ]], - [[ - 8651, - 8643, - 8654 - ]], - [[ - 8651, - 8654, - 8652 - ]], - [[ - 8643, - 8655, - 8654 - ]], - [[ - 8655, - 8656, - 8657 - ]], - [[ - 8655, - 8643, - 8658 - ]], - [[ - 8657, - 8656, - 8659 - ]], - [[ - 8656, - 8655, - 8658 - ]], - [[ - 8660, - 8661, - 8662 - ]], - [[ - 8661, - 8663, - 8662 - ]], - [[ - 8661, - 8664, - 8665 - ]], - [[ - 8661, - 8665, - 8663 - ]], - [[ - 8665, - 8664, - 8658 - ]], - [[ - 8665, - 8658, - 8666 - ]], - [[ - 8664, - 8656, - 8658 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4138231e-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef704049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8667, - 8668, - 8669 - ]], - [[ - 8670, - 7728, - 7729 - ]], - [[ - 8671, - 8672, - 8673 - ]], - [[ - 8674, - 8675, - 2249 - ]], - [[ - 8676, - 8677, - 8678 - ]], - [[ - 8679, - 6972, - 6986 - ]], - [[ - 8680, - 8681, - 6975 - ]], - [[ - 8682, - 8683, - 6908 - ]], - [[ - 8684, - 6910, - 8685 - ]], - [[ - 7043, - 7044, - 8683 - ]], - [[ - 8683, - 7044, - 6908 - ]], - [[ - 8686, - 7042, - 2214 - ]], - [[ - 8687, - 6861, - 8688 - ]], - [[ - 8689, - 6860, - 8690 - ]], - [[ - 8690, - 6860, - 8691 - ]], - [[ - 8692, - 8690, - 8691 - ]], - [[ - 8693, - 8694, - 8691 - ]], - [[ - 8695, - 6860, - 8687 - ]], - [[ - 8696, - 8697, - 8694 - ]], - [[ - 8698, - 8694, - 8697 - ]], - [[ - 8699, - 8697, - 8696 - ]], - [[ - 6950, - 8696, - 8700 - ]], - [[ - 8701, - 8687, - 2214 - ]], - [[ - 8702, - 6908, - 6910 - ]], - [[ - 2214, - 8703, - 8417 - ]], - [[ - 8702, - 6910, - 8684 - ]], - [[ - 8703, - 8682, - 8702 - ]], - [[ - 8704, - 8705, - 8702 - ]], - [[ - 8706, - 8707, - 8708 - ]], - [[ - 8681, - 8680, - 8709 - ]], - [[ - 8710, - 8707, - 8711 - ]], - [[ - 8712, - 8707, - 2252 - ]], - [[ - 8712, - 2252, - 2253 - ]], - [[ - 8713, - 8680, - 6975 - ]], - [[ - 2250, - 2249, - 8714 - ]], - [[ - 8714, - 2249, - 8715 - ]], - [[ - 8674, - 2249, - 2252 - ]], - [[ - 8716, - 8717, - 8715 - ]], - [[ - 8671, - 6732, - 6733 - ]], - [[ - 8718, - 6733, - 465 - ]], - [[ - 7729, - 8719, - 8670 - ]], - [[ - 8668, - 8667, - 8720 - ]], - [[ - 8721, - 8493, - 8494 - ]], - [[ - 8722, - 8720, - 8721 - ]], - [[ - 8723, - 8724, - 8725 - ]], - [[ - 8726, - 8727, - 8728 - ]], - [[ - 7727, - 8728, - 7737 - ]], - [[ - 7737, - 8728, - 7736 - ]], - [[ - 7736, - 8728, - 2275 - ]], - [[ - 2275, - 8728, - 2749 - ]], - [[ - 8443, - 8729, - 8445 - ]], - [[ - 8730, - 2480, - 8731 - ]], - [[ - 8731, - 2480, - 2479 - ]], - [[ - 2634, - 2482, - 8732 - ]], - [[ - 8733, - 2634, - 8734 - ]], - [[ - 2634, - 8732, - 8734 - ]], - [[ - 2482, - 2480, - 8732 - ]], - [[ - 8735, - 8731, - 2479 - ]], - [[ - 8730, - 8732, - 2480 - ]], - [[ - 8736, - 8730, - 8737 - ]], - [[ - 8738, - 8739, - 1101 - ]], - [[ - 8740, - 560, - 556 - ]], - [[ - 8741, - 1105, - 8742 - ]], - [[ - 8743, - 8744, - 8745 - ]], - [[ - 1101, - 8746, - 1105 - ]], - [[ - 1101, - 8739, - 8747 - ]], - [[ - 8742, - 8746, - 560 - ]], - [[ - 8748, - 2475, - 2267 - ]], - [[ - 1101, - 8747, - 8746 - ]], - [[ - 8739, - 8736, - 8737 - ]], - [[ - 8737, - 8730, - 8731 - ]], - [[ - 8735, - 2466, - 2475 - ]], - [[ - 2466, - 8735, - 2479 - ]], - [[ - 8747, - 8739, - 8737 - ]], - [[ - 2824, - 2749, - 8728 - ]], - [[ - 2821, - 8491, - 8437 - ]], - [[ - 8749, - 8494, - 8491 - ]], - [[ - 8728, - 8727, - 2818 - ]], - [[ - 2749, - 2824, - 8750 - ]], - [[ - 8443, - 8737, - 8729 - ]], - [[ - 2818, - 8724, - 8723 - ]], - [[ - 8727, - 8724, - 2818 - ]], - [[ - 8443, - 8747, - 8737 - ]], - [[ - 2818, - 2824, - 8728 - ]], - [[ - 8751, - 2821, - 8437 - ]], - [[ - 8749, - 2820, - 8494 - ]], - [[ - 8752, - 8723, - 8725 - ]], - [[ - 8729, - 8435, - 8445 - ]], - [[ - 8729, - 2821, - 8435 - ]], - [[ - 2818, - 8753, - 2820 - ]], - [[ - 2749, - 8750, - 2267 - ]], - [[ - 8753, - 2818, - 8723 - ]], - [[ - 8750, - 8735, - 2475 - ]], - [[ - 8719, - 8752, - 8725 - ]], - [[ - 8754, - 366, - 8675 - ]], - [[ - 465, - 8669, - 8718 - ]], - [[ - 8752, - 8755, - 8756 - ]], - [[ - 2252, - 8707, - 8674 - ]], - [[ - 8709, - 8757, - 8681 - ]], - [[ - 8758, - 8759, - 8680 - ]], - [[ - 8760, - 8709, - 8761 - ]], - [[ - 8762, - 8715, - 8675 - ]], - [[ - 8715, - 2249, - 8675 - ]], - [[ - 8763, - 8764, - 8760 - ]], - [[ - 8719, - 8765, - 8766 - ]], - [[ - 8678, - 8675, - 8761 - ]], - [[ - 8756, - 8755, - 8677 - ]], - [[ - 8767, - 8768, - 8754 - ]], - [[ - 8768, - 8769, - 8770 - ]], - [[ - 8675, - 8678, - 8754 - ]], - [[ - 8771, - 6986, - 8772 - ]], - [[ - 8755, - 8773, - 8767 - ]], - [[ - 8770, - 8774, - 8768 - ]], - [[ - 8775, - 8670, - 8719 - ]], - [[ - 8775, - 8776, - 8670 - ]], - [[ - 6972, - 8713, - 6975 - ]], - [[ - 6972, - 8777, - 8758 - ]], - [[ - 8685, - 8778, - 8709 - ]], - [[ - 8778, - 8681, - 8757 - ]], - [[ - 8779, - 8780, - 8709 - ]], - [[ - 8780, - 8684, - 8685 - ]], - [[ - 2820, - 8722, - 8494 - ]], - [[ - 8720, - 8493, - 8721 - ]], - [[ - 8772, - 8676, - 8771 - ]], - [[ - 8680, - 8761, - 8709 - ]], - [[ - 6732, - 8772, - 6986 - ]], - [[ - 6732, - 8673, - 8772 - ]], - [[ - 6986, - 8771, - 8679 - ]], - [[ - 8678, - 8761, - 8759 - ]], - [[ - 8679, - 8777, - 6972 - ]], - [[ - 8679, - 8759, - 8777 - ]], - [[ - 8755, - 8767, - 8754 - ]], - [[ - 8766, - 8752, - 8719 - ]], - [[ - 8695, - 8687, - 8701 - ]], - [[ - 6860, - 6861, - 8687 - ]], - [[ - 8687, - 8688, - 2214 - ]], - [[ - 6861, - 7042, - 8686 - ]], - [[ - 8669, - 8668, - 8718 - ]], - [[ - 8781, - 6733, - 8718 - ]], - [[ - 8720, - 8667, - 466 - ]], - [[ - 2820, - 8753, - 8668 - ]], - [[ - 8782, - 8680, - 8713 - ]], - [[ - 8759, - 8761, - 8680 - ]], - [[ - 8755, - 8766, - 8773 - ]], - [[ - 8783, - 8774, - 8770 - ]], - [[ - 8783, - 8766, - 8765 - ]], - [[ - 8755, - 8752, - 8766 - ]], - [[ - 8754, - 8768, - 366 - ]], - [[ - 8784, - 8769, - 8768 - ]], - [[ - 8704, - 8702, - 8780 - ]], - [[ - 8702, - 8682, - 6908 - ]], - [[ - 8781, - 8672, - 8671 - ]], - [[ - 8672, - 8676, - 8673 - ]], - [[ - 2177, - 8701, - 2214 - ]], - [[ - 2177, - 8695, - 8701 - ]], - [[ - 8756, - 8672, - 8718 - ]], - [[ - 8672, - 8677, - 8676 - ]], - [[ - 8785, - 8783, - 8769 - ]], - [[ - 8774, - 366, - 8768 - ]], - [[ - 366, - 8786, - 8762 - ]], - [[ - 8717, - 8714, - 8715 - ]], - [[ - 367, - 8786, - 366 - ]], - [[ - 367, - 8717, - 8716 - ]], - [[ - 8725, - 8775, - 8719 - ]], - [[ - 8776, - 7728, - 8670 - ]], - [[ - 8783, - 8773, - 8766 - ]], - [[ - 8769, - 8784, - 8773 - ]], - [[ - 8773, - 8785, - 8769 - ]], - [[ - 8765, - 8719, - 8783 - ]], - [[ - 7042, - 8683, - 2214 - ]], - [[ - 7042, - 7043, - 8683 - ]], - [[ - 8779, - 8787, - 8708 - ]], - [[ - 6910, - 8778, - 8685 - ]], - [[ - 8787, - 8788, - 8708 - ]], - [[ - 8789, - 8674, - 8707 - ]], - [[ - 8779, - 8790, - 8787 - ]], - [[ - 8760, - 8764, - 8790 - ]], - [[ - 8790, - 8764, - 8788 - ]], - [[ - 8760, - 8674, - 8789 - ]], - [[ - 8718, - 8672, - 8781 - ]], - [[ - 8756, - 8677, - 8672 - ]], - [[ - 6732, - 8671, - 8673 - ]], - [[ - 6733, - 8781, - 8671 - ]], - [[ - 8725, - 8776, - 8775 - ]], - [[ - 8725, - 7728, - 8776 - ]], - [[ - 6972, - 8758, - 8713 - ]], - [[ - 8777, - 8759, - 8758 - ]], - [[ - 8709, - 8780, - 8685 - ]], - [[ - 8708, - 8791, - 8780 - ]], - [[ - 8791, - 8704, - 8780 - ]], - [[ - 8792, - 8705, - 8704 - ]], - [[ - 8750, - 8793, - 2267 - ]], - [[ - 8793, - 2475, - 8748 - ]], - [[ - 8759, - 8676, - 8678 - ]], - [[ - 8772, - 8673, - 8676 - ]], - [[ - 8709, - 8778, - 8757 - ]], - [[ - 6910, - 8681, - 8778 - ]], - [[ - 8759, - 8771, - 8676 - ]], - [[ - 8759, - 8679, - 8771 - ]], - [[ - 8756, - 8668, - 8753 - ]], - [[ - 8756, - 8718, - 8668 - ]], - [[ - 466, - 8669, - 465 - ]], - [[ - 466, - 8667, - 8669 - ]], - [[ - 8769, - 8783, - 8770 - ]], - [[ - 8719, - 366, - 8774 - ]], - [[ - 8794, - 8726, - 8728 - ]], - [[ - 8794, - 8727, - 8726 - ]], - [[ - 8706, - 8763, - 8789 - ]], - [[ - 8763, - 8760, - 8789 - ]], - [[ - 8707, - 8706, - 8789 - ]], - [[ - 8788, - 8764, - 8763 - ]], - [[ - 8743, - 8745, - 8740 - ]], - [[ - 8741, - 560, - 8745 - ]], - [[ - 2214, - 8682, - 8703 - ]], - [[ - 2214, - 8683, - 8682 - ]], - [[ - 366, - 8762, - 8675 - ]], - [[ - 8786, - 8716, - 8762 - ]], - [[ - 8494, - 8722, - 8721 - ]], - [[ - 2820, - 8668, - 8720 - ]], - [[ - 8493, - 8720, - 466 - ]], - [[ - 8722, - 2820, - 8720 - ]], - [[ - 8787, - 8795, - 8788 - ]], - [[ - 8790, - 8788, - 8795 - ]], - [[ - 8780, - 8779, - 8708 - ]], - [[ - 8790, - 8795, - 8787 - ]], - [[ - 8760, - 8779, - 8709 - ]], - [[ - 8760, - 8790, - 8779 - ]], - [[ - 8741, - 8742, - 560 - ]], - [[ - 1105, - 8746, - 8742 - ]], - [[ - 8762, - 8716, - 8715 - ]], - [[ - 8786, - 367, - 8716 - ]], - [[ - 8700, - 8696, - 8694 - ]], - [[ - 6950, - 8699, - 8696 - ]], - [[ - 8792, - 8791, - 8708 - ]], - [[ - 8792, - 8704, - 8791 - ]], - [[ - 6950, - 8695, - 2177 - ]], - [[ - 8691, - 6860, - 8695 - ]], - [[ - 8773, - 8783, - 8785 - ]], - [[ - 8719, - 8774, - 8783 - ]], - [[ - 8767, - 8784, - 8768 - ]], - [[ - 8767, - 8773, - 8784 - ]], - [[ - 8688, - 8686, - 2214 - ]], - [[ - 8688, - 6861, - 8686 - ]], - [[ - 8743, - 8740, - 556 - ]], - [[ - 8745, - 560, - 8740 - ]], - [[ - 8788, - 8706, - 8708 - ]], - [[ - 8788, - 8763, - 8706 - ]], - [[ - 8780, - 8702, - 8684 - ]], - [[ - 8705, - 8703, - 8702 - ]], - [[ - 8744, - 8741, - 8745 - ]], - [[ - 8744, - 1105, - 8741 - ]], - [[ - 8435, - 8751, - 8437 - ]], - [[ - 8435, - 2821, - 8751 - ]], - [[ - 2821, - 8749, - 8491 - ]], - [[ - 2821, - 2820, - 8749 - ]], - [[ - 8711, - 8712, - 2253 - ]], - [[ - 8711, - 8707, - 8712 - ]], - [[ - 2267, - 8793, - 8748 - ]], - [[ - 8750, - 2475, - 8793 - ]], - [[ - 8700, - 8693, - 8691 - ]], - [[ - 8700, - 8694, - 8693 - ]], - [[ - 8695, - 8700, - 8691 - ]], - [[ - 8695, - 6950, - 8700 - ]], - [[ - 8758, - 8782, - 8713 - ]], - [[ - 8758, - 8680, - 8782 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4138bef7-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2015-04-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.967be64250624d208a88a6471c2bd3aa", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8738, - 8736, - 8739 - ]], - [[ - 8738, - 1101, - 8658 - ]], - [[ - 8658, - 8736, - 8738 - ]], - [[ - 8796, - 8797, - 8798 - ]], - [[ - 8799, - 8797, - 8730 - ]], - [[ - 8800, - 8732, - 8801 - ]], - [[ - 8733, - 8734, - 8802 - ]], - [[ - 8803, - 8733, - 8802 - ]], - [[ - 8804, - 8805, - 8806 - ]], - [[ - 8807, - 8734, - 8800 - ]], - [[ - 8808, - 8802, - 8809 - ]], - [[ - 8802, - 8807, - 8809 - ]], - [[ - 8802, - 8734, - 8807 - ]], - [[ - 8734, - 8732, - 8800 - ]], - [[ - 8810, - 8800, - 8801 - ]], - [[ - 8810, - 8801, - 8811 - ]], - [[ - 8812, - 8730, - 8736 - ]], - [[ - 8801, - 8797, - 8796 - ]], - [[ - 8813, - 8796, - 8798 - ]], - [[ - 8732, - 8797, - 8801 - ]], - [[ - 8732, - 8730, - 8797 - ]], - [[ - 8799, - 8814, - 8797 - ]], - [[ - 1102, - 8666, - 1101 - ]], - [[ - 8658, - 1101, - 8666 - ]], - [[ - 8799, - 8643, - 8814 - ]], - [[ - 542, - 8815, - 8481 - ]], - [[ - 8665, - 8666, - 8663 - ]], - [[ - 8816, - 8817, - 8818 - ]], - [[ - 8819, - 838, - 8820 - ]], - [[ - 8662, - 8821, - 8660 - ]], - [[ - 8822, - 8823, - 8824 - ]], - [[ - 8825, - 8483, - 8484 - ]], - [[ - 8826, - 8482, - 8827 - ]], - [[ - 8828, - 8829, - 8830 - ]], - [[ - 8831, - 8832, - 8833 - ]], - [[ - 8834, - 8835, - 8836 - ]], - [[ - 8837, - 8838, - 8839 - ]], - [[ - 8840, - 8841, - 8837 - ]], - [[ - 8842, - 8843, - 8844 - ]], - [[ - 8844, - 8845, - 8842 - ]], - [[ - 8846, - 8847, - 8845 - ]], - [[ - 8844, - 8848, - 8849 - ]], - [[ - 8850, - 8851, - 8852 - ]], - [[ - 8849, - 8853, - 8845 - ]], - [[ - 8854, - 7451, - 7452 - ]], - [[ - 8855, - 8852, - 8851 - ]], - [[ - 8856, - 8857, - 8858 - ]], - [[ - 8844, - 8838, - 8859 - ]], - [[ - 8860, - 8841, - 8861 - ]], - [[ - 8862, - 7514, - 8863 - ]], - [[ - 8864, - 541, - 542 - ]], - [[ - 8865, - 8866, - 8867 - ]], - [[ - 8868, - 7529, - 8869 - ]], - [[ - 8870, - 8871, - 7312 - ]], - [[ - 8815, - 8872, - 8831 - ]], - [[ - 8864, - 8481, - 8483 - ]], - [[ - 7291, - 7310, - 8873 - ]], - [[ - 8874, - 542, - 543 - ]], - [[ - 8875, - 8876, - 8877 - ]], - [[ - 8878, - 8879, - 8880 - ]], - [[ - 8881, - 541, - 8882 - ]], - [[ - 8883, - 8884, - 8885 - ]], - [[ - 8820, - 539, - 8819 - ]], - [[ - 829, - 8886, - 828 - ]], - [[ - 8887, - 8888, - 837 - ]], - [[ - 837, - 8888, - 8889 - ]], - [[ - 836, - 837, - 8889 - ]], - [[ - 817, - 8890, - 816 - ]], - [[ - 8889, - 8880, - 8891 - ]], - [[ - 8892, - 8662, - 8663 - ]], - [[ - 8893, - 834, - 835 - ]], - [[ - 8893, - 833, - 834 - ]], - [[ - 8893, - 832, - 833 - ]], - [[ - 8891, - 8894, - 8895 - ]], - [[ - 8893, - 831, - 832 - ]], - [[ - 830, - 8893, - 829 - ]], - [[ - 827, - 828, - 8886 - ]], - [[ - 8886, - 829, - 8893 - ]], - [[ - 8894, - 8822, - 8895 - ]], - [[ - 8896, - 8897, - 8898 - ]], - [[ - 8886, - 826, - 827 - ]], - [[ - 8886, - 8899, - 823 - ]], - [[ - 8824, - 8895, - 8822 - ]], - [[ - 8886, - 823, - 824 - ]], - [[ - 821, - 822, - 8899 - ]], - [[ - 820, - 821, - 8900 - ]], - [[ - 8890, - 8901, - 8902 - ]], - [[ - 8903, - 8904, - 8905 - ]], - [[ - 817, - 818, - 8900 - ]], - [[ - 8892, - 8906, - 8821 - ]], - [[ - 1102, - 8907, - 8666 - ]], - [[ - 774, - 814, - 8908 - ]], - [[ - 772, - 774, - 8908 - ]], - [[ - 8909, - 8902, - 8901 - ]], - [[ - 770, - 771, - 8908 - ]], - [[ - 769, - 770, - 8910 - ]], - [[ - 768, - 769, - 8910 - ]], - [[ - 8902, - 8908, - 814 - ]], - [[ - 8902, - 8911, - 8908 - ]], - [[ - 8912, - 766, - 767 - ]], - [[ - 8890, - 8902, - 815 - ]], - [[ - 766, - 8912, - 765 - ]], - [[ - 762, - 763, - 8913 - ]], - [[ - 761, - 762, - 8913 - ]], - [[ - 760, - 761, - 8913 - ]], - [[ - 8914, - 759, - 760 - ]], - [[ - 8915, - 8916, - 8917 - ]], - [[ - 8918, - 758, - 759 - ]], - [[ - 8914, - 8915, - 8918 - ]], - [[ - 8918, - 8915, - 757 - ]], - [[ - 8915, - 755, - 756 - ]], - [[ - 8917, - 754, - 755 - ]], - [[ - 8919, - 753, - 754 - ]], - [[ - 751, - 752, - 8919 - ]], - [[ - 8920, - 751, - 8919 - ]], - [[ - 8920, - 750, - 751 - ]], - [[ - 8921, - 749, - 8920 - ]], - [[ - 8920, - 749, - 750 - ]], - [[ - 8919, - 752, - 753 - ]], - [[ - 8922, - 8352, - 8923 - ]], - [[ - 8924, - 8925, - 8403 - ]], - [[ - 8898, - 8350, - 8896 - ]], - [[ - 8926, - 8927, - 8928 - ]], - [[ - 8330, - 8929, - 8328 - ]], - [[ - 8898, - 8897, - 8930 - ]], - [[ - 8907, - 1102, - 8931 - ]], - [[ - 8931, - 1102, - 8925 - ]], - [[ - 1100, - 8925, - 1102 - ]], - [[ - 8932, - 8933, - 7451 - ]], - [[ - 8854, - 7452, - 8934 - ]], - [[ - 8935, - 8873, - 8867 - ]], - [[ - 8867, - 8876, - 8865 - ]], - [[ - 8877, - 8876, - 8936 - ]], - [[ - 8833, - 8832, - 8482 - ]], - [[ - 8850, - 8937, - 8938 - ]], - [[ - 8939, - 8940, - 8933 - ]], - [[ - 8941, - 8942, - 8943 - ]], - [[ - 8351, - 8944, - 8350 - ]], - [[ - 8945, - 8946, - 8879 - ]], - [[ - 8822, - 8816, - 8947 - ]], - [[ - 8903, - 8823, - 8948 - ]], - [[ - 8821, - 8662, - 8892 - ]], - [[ - 7530, - 8949, - 8950 - ]], - [[ - 8951, - 7516, - 8952 - ]], - [[ - 767, - 8910, - 8912 - ]], - [[ - 767, - 768, - 8910 - ]], - [[ - 8953, - 8954, - 8884 - ]], - [[ - 540, - 541, - 8954 - ]], - [[ - 8906, - 8904, - 8955 - ]], - [[ - 8948, - 8947, - 8955 - ]], - [[ - 8890, - 817, - 8900 - ]], - [[ - 8948, - 8955, - 8904 - ]], - [[ - 8956, - 8901, - 8905 - ]], - [[ - 8908, - 8911, - 8910 - ]], - [[ - 8957, - 8958, - 8959 - ]], - [[ - 8960, - 8961, - 8962 - ]], - [[ - 8963, - 8819, - 8964 - ]], - [[ - 8965, - 541, - 8881 - ]], - [[ - 8966, - 8881, - 8882 - ]], - [[ - 8885, - 8954, - 8965 - ]], - [[ - 819, - 8900, - 818 - ]], - [[ - 819, - 820, - 8900 - ]], - [[ - 8481, - 8864, - 542 - ]], - [[ - 8882, - 541, - 8864 - ]], - [[ - 8848, - 8967, - 8849 - ]], - [[ - 8968, - 8969, - 8937 - ]], - [[ - 8970, - 8971, - 8972 - ]], - [[ - 8972, - 543, - 7291 - ]], - [[ - 7311, - 8973, - 7310 - ]], - [[ - 8974, - 8975, - 8976 - ]], - [[ - 8937, - 8969, - 8977 - ]], - [[ - 8934, - 8978, - 8979 - ]], - [[ - 8914, - 8918, - 759 - ]], - [[ - 757, - 758, - 8918 - ]], - [[ - 8970, - 8972, - 8980 - ]], - [[ - 8936, - 8876, - 8873 - ]], - [[ - 8844, - 8849, - 8845 - ]], - [[ - 8981, - 8982, - 8850 - ]], - [[ - 8983, - 8984, - 8855 - ]], - [[ - 8853, - 8985, - 8986 - ]], - [[ - 8926, - 8928, - 8987 - ]], - [[ - 8987, - 8350, - 8898 - ]], - [[ - 764, - 8913, - 763 - ]], - [[ - 764, - 765, - 8913 - ]], - [[ - 8913, - 8912, - 8910 - ]], - [[ - 8913, - 765, - 8912 - ]], - [[ - 8952, - 8830, - 8951 - ]], - [[ - 8863, - 8951, - 8830 - ]], - [[ - 8988, - 8989, - 8990 - ]], - [[ - 8834, - 7529, - 8950 - ]], - [[ - 8991, - 8992, - 8938 - ]], - [[ - 8993, - 8939, - 8932 - ]], - [[ - 8851, - 8850, - 8979 - ]], - [[ - 8856, - 8849, - 8967 - ]], - [[ - 8981, - 8994, - 8982 - ]], - [[ - 8977, - 8991, - 8938 - ]], - [[ - 8846, - 8845, - 8978 - ]], - [[ - 8847, - 8842, - 8845 - ]], - [[ - 8946, - 8995, - 8816 - ]], - [[ - 8816, - 8818, - 8947 - ]], - [[ - 8861, - 8996, - 8838 - ]], - [[ - 8844, - 8843, - 8838 - ]], - [[ - 8978, - 8851, - 8979 - ]], - [[ - 8983, - 8845, - 8984 - ]], - [[ - 8997, - 8959, - 8998 - ]], - [[ - 8867, - 8873, - 8876 - ]], - [[ - 8999, - 8971, - 8970 - ]], - [[ - 9000, - 8804, - 8827 - ]], - [[ - 9001, - 8949, - 8862 - ]], - [[ - 8949, - 7514, - 8862 - ]], - [[ - 8890, - 8895, - 8901 - ]], - [[ - 8900, - 821, - 8899 - ]], - [[ - 8905, - 8895, - 8824 - ]], - [[ - 8886, - 824, - 825 - ]], - [[ - 8917, - 8919, - 754 - ]], - [[ - 8917, - 9002, - 8920 - ]], - [[ - 8932, - 8939, - 8933 - ]], - [[ - 8940, - 7451, - 8933 - ]], - [[ - 8926, - 8898, - 9003 - ]], - [[ - 8926, - 8987, - 8898 - ]], - [[ - 7503, - 8848, - 7517 - ]], - [[ - 9004, - 8967, - 8848 - ]], - [[ - 9005, - 8968, - 8937 - ]], - [[ - 9006, - 9007, - 8977 - ]], - [[ - 8834, - 8869, - 7529 - ]], - [[ - 8836, - 7314, - 8869 - ]], - [[ - 770, - 8908, - 8910 - ]], - [[ - 771, - 772, - 8908 - ]], - [[ - 8875, - 8865, - 8876 - ]], - [[ - 9008, - 8806, - 9009 - ]], - [[ - 8960, - 8962, - 8997 - ]], - [[ - 9008, - 8865, - 9010 - ]], - [[ - 8988, - 8840, - 8839 - ]], - [[ - 9011, - 8828, - 7516 - ]], - [[ - 8990, - 8841, - 8840 - ]], - [[ - 8835, - 9012, - 8836 - ]], - [[ - 9013, - 9014, - 8961 - ]], - [[ - 8980, - 8935, - 8867 - ]], - [[ - 9015, - 8871, - 8975 - ]], - [[ - 8974, - 8804, - 8806 - ]], - [[ - 7310, - 8936, - 8873 - ]], - [[ - 7310, - 8877, - 8936 - ]], - [[ - 816, - 8890, - 815 - ]], - [[ - 8900, - 8899, - 8890 - ]], - [[ - 8830, - 8829, - 8863 - ]], - [[ - 7529, - 7530, - 8950 - ]], - [[ - 9016, - 8829, - 8828 - ]], - [[ - 8834, - 9001, - 8829 - ]], - [[ - 8938, - 8932, - 8934 - ]], - [[ - 9017, - 8993, - 8932 - ]], - [[ - 8932, - 8854, - 8934 - ]], - [[ - 8932, - 7451, - 8854 - ]], - [[ - 7314, - 8868, - 8869 - ]], - [[ - 7314, - 7529, - 8868 - ]], - [[ - 534, - 8820, - 838 - ]], - [[ - 8884, - 8954, - 8885 - ]], - [[ - 539, - 8953, - 8964 - ]], - [[ - 8953, - 540, - 8954 - ]], - [[ - 8964, - 8953, - 8884 - ]], - [[ - 539, - 540, - 8953 - ]], - [[ - 8975, - 8871, - 8839 - ]], - [[ - 7311, - 7312, - 8871 - ]], - [[ - 8985, - 9018, - 8994 - ]], - [[ - 8858, - 7448, - 9019 - ]], - [[ - 8963, - 8964, - 8884 - ]], - [[ - 8819, - 539, - 8964 - ]], - [[ - 8930, - 9020, - 9021 - ]], - [[ - 9022, - 9023, - 8897 - ]], - [[ - 8483, - 8882, - 8864 - ]], - [[ - 8483, - 8966, - 8882 - ]], - [[ - 8885, - 8965, - 8881 - ]], - [[ - 8954, - 541, - 8965 - ]], - [[ - 8658, - 8812, - 8736 - ]], - [[ - 8658, - 8643, - 8812 - ]], - [[ - 542, - 8957, - 8815 - ]], - [[ - 8959, - 8997, - 8832 - ]], - [[ - 7450, - 9007, - 7448 - ]], - [[ - 8993, - 8992, - 9007 - ]], - [[ - 8966, - 8825, - 8946 - ]], - [[ - 8484, - 8817, - 9024 - ]], - [[ - 7448, - 8967, - 7503 - ]], - [[ - 7448, - 8857, - 8967 - ]], - [[ - 8404, - 9021, - 8403 - ]], - [[ - 9020, - 8925, - 8924 - ]], - [[ - 8938, - 8934, - 8979 - ]], - [[ - 7452, - 8978, - 8934 - ]], - [[ - 7514, - 8951, - 8863 - ]], - [[ - 7514, - 7516, - 8951 - ]], - [[ - 9025, - 9026, - 8922 - ]], - [[ - 9027, - 9002, - 8917 - ]], - [[ - 8850, - 8938, - 8979 - ]], - [[ - 8992, - 9017, - 8938 - ]], - [[ - 8863, - 9001, - 8862 - ]], - [[ - 7530, - 7514, - 8949 - ]], - [[ - 9025, - 8943, - 9028 - ]], - [[ - 9025, - 9028, - 9023 - ]], - [[ - 8903, - 8948, - 8904 - ]], - [[ - 8821, - 8818, - 8660 - ]], - [[ - 8823, - 8947, - 8948 - ]], - [[ - 8823, - 8822, - 8947 - ]], - [[ - 9029, - 8958, - 8970 - ]], - [[ - 9030, - 543, - 8971 - ]], - [[ - 8959, - 8958, - 9029 - ]], - [[ - 8872, - 8815, - 8957 - ]], - [[ - 8874, - 8957, - 542 - ]], - [[ - 8874, - 8999, - 8958 - ]], - [[ - 8957, - 8874, - 8958 - ]], - [[ - 9030, - 8971, - 8999 - ]], - [[ - 8963, - 8884, - 8883 - ]], - [[ - 8879, - 8816, - 8894 - ]], - [[ - 8895, - 8886, - 8891 - ]], - [[ - 8880, - 8879, - 8894 - ]], - [[ - 8815, - 8831, - 8481 - ]], - [[ - 8832, - 8827, - 8482 - ]], - [[ - 8828, - 8952, - 7516 - ]], - [[ - 8828, - 8830, - 8952 - ]], - [[ - 8328, - 8929, - 8404 - ]], - [[ - 8927, - 8331, - 8928 - ]], - [[ - 8403, - 9021, - 8924 - ]], - [[ - 9003, - 8898, - 8930 - ]], - [[ - 8982, - 8937, - 8850 - ]], - [[ - 9005, - 8982, - 9019 - ]], - [[ - 8832, - 8997, - 8827 - ]], - [[ - 9031, - 8805, - 9000 - ]], - [[ - 7517, - 8844, - 8859 - ]], - [[ - 7517, - 8848, - 8844 - ]], - [[ - 7517, - 9032, - 7516 - ]], - [[ - 7517, - 8859, - 9032 - ]], - [[ - 543, - 8972, - 8971 - ]], - [[ - 7291, - 8873, - 8935 - ]], - [[ - 9019, - 8968, - 9005 - ]], - [[ - 7448, - 9007, - 9006 - ]], - [[ - 835, - 836, - 8893 - ]], - [[ - 838, - 8819, - 8888 - ]], - [[ - 8894, - 8891, - 8880 - ]], - [[ - 830, - 831, - 8893 - ]], - [[ - 7450, - 8940, - 8939 - ]], - [[ - 7450, - 7451, - 8940 - ]], - [[ - 8997, - 9031, - 9000 - ]], - [[ - 8805, - 8804, - 9000 - ]], - [[ - 9009, - 8806, - 9031 - ]], - [[ - 8806, - 9008, - 8974 - ]], - [[ - 8988, - 8990, - 8840 - ]], - [[ - 8989, - 8841, - 8990 - ]], - [[ - 9033, - 9034, - 8663 - ]], - [[ - 8901, - 8895, - 8905 - ]], - [[ - 9024, - 9035, - 8484 - ]], - [[ - 8966, - 8945, - 9036 - ]], - [[ - 9035, - 8946, - 8825 - ]], - [[ - 8816, - 8822, - 8894 - ]], - [[ - 9032, - 8996, - 9011 - ]], - [[ - 8841, - 8989, - 9016 - ]], - [[ - 8865, - 8875, - 9010 - ]], - [[ - 9015, - 7311, - 8871 - ]], - [[ - 8875, - 9037, - 9010 - ]], - [[ - 9038, - 8973, - 9039 - ]], - [[ - 9040, - 9015, - 8975 - ]], - [[ - 9039, - 7311, - 9015 - ]], - [[ - 8899, - 8886, - 8895 - ]], - [[ - 8893, - 8889, - 8891 - ]], - [[ - 8982, - 9005, - 8937 - ]], - [[ - 8982, - 9018, - 9019 - ]], - [[ - 8871, - 8988, - 8839 - ]], - [[ - 8871, - 8989, - 8988 - ]], - [[ - 8983, - 8855, - 8851 - ]], - [[ - 8984, - 8986, - 8855 - ]], - [[ - 8978, - 8983, - 8851 - ]], - [[ - 8978, - 8845, - 8983 - ]], - [[ - 746, - 9041, - 8923 - ]], - [[ - 746, - 748, - 9041 - ]], - [[ - 8957, - 8959, - 8872 - ]], - [[ - 8998, - 8960, - 8997 - ]], - [[ - 9031, - 8997, - 9009 - ]], - [[ - 9000, - 8827, - 8997 - ]], - [[ - 9031, - 8806, - 8805 - ]], - [[ - 9009, - 8962, - 9008 - ]], - [[ - 9030, - 8874, - 543 - ]], - [[ - 9030, - 8999, - 8874 - ]], - [[ - 8872, - 8832, - 8831 - ]], - [[ - 8872, - 8959, - 8832 - ]], - [[ - 8481, - 8833, - 8482 - ]], - [[ - 8481, - 8831, - 8833 - ]], - [[ - 8973, - 8877, - 7310 - ]], - [[ - 8973, - 8875, - 8877 - ]], - [[ - 8828, - 8861, - 8841 - ]], - [[ - 8996, - 8859, - 8838 - ]], - [[ - 8841, - 8860, - 8837 - ]], - [[ - 8861, - 8838, - 9042 - ]], - [[ - 8351, - 9043, - 8944 - ]], - [[ - 8944, - 8897, - 8896 - ]], - [[ - 8871, - 9012, - 8989 - ]], - [[ - 8836, - 8869, - 8834 - ]], - [[ - 8829, - 9001, - 8863 - ]], - [[ - 8950, - 8949, - 9001 - ]], - [[ - 9021, - 9020, - 8924 - ]], - [[ - 8930, - 8897, - 9023 - ]], - [[ - 8972, - 8935, - 8980 - ]], - [[ - 8972, - 7291, - 8935 - ]], - [[ - 7503, - 9004, - 8848 - ]], - [[ - 7503, - 8967, - 9004 - ]], - [[ - 9037, - 8975, - 9010 - ]], - [[ - 8839, - 8804, - 8976 - ]], - [[ - 838, - 8887, - 837 - ]], - [[ - 838, - 8888, - 8887 - ]], - [[ - 8888, - 8963, - 8878 - ]], - [[ - 9044, - 8881, - 9036 - ]], - [[ - 9045, - 9036, - 8879 - ]], - [[ - 9045, - 8885, - 9044 - ]], - [[ - 8916, - 9027, - 8917 - ]], - [[ - 8352, - 746, - 8923 - ]], - [[ - 8812, - 8799, - 8730 - ]], - [[ - 8812, - 8643, - 8799 - ]], - [[ - 9001, - 8834, - 8950 - ]], - [[ - 8829, - 9016, - 9046 - ]], - [[ - 8929, - 8927, - 8404 - ]], - [[ - 8929, - 8330, - 8927 - ]], - [[ - 8404, - 8927, - 8926 - ]], - [[ - 8330, - 8331, - 8927 - ]], - [[ - 8982, - 8994, - 9018 - ]], - [[ - 8853, - 8984, - 8845 - ]], - [[ - 8852, - 8986, - 8994 - ]], - [[ - 8852, - 8855, - 8986 - ]], - [[ - 8985, - 8853, - 8849 - ]], - [[ - 8986, - 8984, - 8853 - ]], - [[ - 9020, - 8930, - 8931 - ]], - [[ - 8942, - 8913, - 8911 - ]], - [[ - 9026, - 9025, - 9023 - ]], - [[ - 8907, - 9033, - 8663 - ]], - [[ - 8404, - 9003, - 9047 - ]], - [[ - 9048, - 9028, - 9049 - ]], - [[ - 8666, - 8907, - 8663 - ]], - [[ - 9049, - 8909, - 8956 - ]], - [[ - 9020, - 8931, - 8925 - ]], - [[ - 9048, - 9023, - 9028 - ]], - [[ - 9048, - 8907, - 8931 - ]], - [[ - 9048, - 9049, - 8907 - ]], - [[ - 9034, - 8956, - 8905 - ]], - [[ - 9033, - 8907, - 9049 - ]], - [[ - 8881, - 8966, - 9036 - ]], - [[ - 8483, - 8825, - 8966 - ]], - [[ - 9036, - 8945, - 8879 - ]], - [[ - 8966, - 8946, - 8945 - ]], - [[ - 8976, - 8975, - 8839 - ]], - [[ - 9037, - 9040, - 8975 - ]], - [[ - 8937, - 8977, - 8938 - ]], - [[ - 8969, - 9006, - 8977 - ]], - [[ - 9007, - 8991, - 8977 - ]], - [[ - 9050, - 8992, - 8991 - ]], - [[ - 9007, - 9050, - 8991 - ]], - [[ - 9007, - 8992, - 9050 - ]], - [[ - 8875, - 9040, - 9037 - ]], - [[ - 9038, - 9039, - 9015 - ]], - [[ - 9014, - 9029, - 8980 - ]], - [[ - 8958, - 8999, - 8970 - ]], - [[ - 8824, - 8903, - 8905 - ]], - [[ - 8824, - 8823, - 8903 - ]], - [[ - 8852, - 8981, - 8850 - ]], - [[ - 8852, - 8994, - 8981 - ]], - [[ - 8968, - 9006, - 8969 - ]], - [[ - 8968, - 9019, - 9006 - ]], - [[ - 748, - 8921, - 9041 - ]], - [[ - 748, - 749, - 8921 - ]], - [[ - 8878, - 8963, - 9045 - ]], - [[ - 8888, - 8819, - 8963 - ]], - [[ - 8860, - 9042, - 8837 - ]], - [[ - 8860, - 8861, - 9042 - ]], - [[ - 8840, - 8837, - 8839 - ]], - [[ - 9042, - 8838, - 8837 - ]], - [[ - 8892, - 9034, - 8905 - ]], - [[ - 9033, - 8956, - 9034 - ]], - [[ - 8944, - 9043, - 9026 - ]], - [[ - 8351, - 8352, - 9043 - ]], - [[ - 8352, - 8922, - 9043 - ]], - [[ - 9002, - 9041, - 8920 - ]], - [[ - 9027, - 8916, - 8941 - ]], - [[ - 8917, - 755, - 8915 - ]], - [[ - 8913, - 8914, - 760 - ]], - [[ - 8913, - 8942, - 8941 - ]], - [[ - 8331, - 8987, - 8928 - ]], - [[ - 8331, - 8350, - 8987 - ]], - [[ - 9047, - 9003, - 8930 - ]], - [[ - 8404, - 8926, - 9003 - ]], - [[ - 8871, - 8870, - 9012 - ]], - [[ - 7312, - 7314, - 8870 - ]], - [[ - 8947, - 8821, - 8955 - ]], - [[ - 8947, - 8818, - 8821 - ]], - [[ - 8484, - 9035, - 8825 - ]], - [[ - 9024, - 8817, - 8995 - ]], - [[ - 9035, - 8995, - 8946 - ]], - [[ - 9035, - 9024, - 8995 - ]], - [[ - 8946, - 8816, - 8879 - ]], - [[ - 8995, - 8817, - 8816 - ]], - [[ - 8890, - 8899, - 8895 - ]], - [[ - 822, - 823, - 8899 - ]], - [[ - 826, - 8886, - 825 - ]], - [[ - 8893, - 8891, - 8886 - ]], - [[ - 9034, - 8892, - 8663 - ]], - [[ - 8905, - 8904, - 8906 - ]], - [[ - 8821, - 8906, - 8955 - ]], - [[ - 8892, - 8905, - 8906 - ]], - [[ - 8938, - 9017, - 8932 - ]], - [[ - 8992, - 8993, - 9017 - ]], - [[ - 9040, - 9038, - 9015 - ]], - [[ - 8973, - 7311, - 9039 - ]], - [[ - 8875, - 9038, - 9040 - ]], - [[ - 8875, - 8973, - 9038 - ]], - [[ - 8930, - 9051, - 8931 - ]], - [[ - 8930, - 9023, - 9051 - ]], - [[ - 9051, - 9048, - 8931 - ]], - [[ - 9051, - 9023, - 9048 - ]], - [[ - 538, - 8820, - 534 - ]], - [[ - 538, - 539, - 8820 - ]], - [[ - 7450, - 8993, - 9007 - ]], - [[ - 7450, - 8939, - 8993 - ]], - [[ - 7448, - 8858, - 8857 - ]], - [[ - 8985, - 8849, - 8856 - ]], - [[ - 8857, - 8856, - 8967 - ]], - [[ - 8858, - 8985, - 8856 - ]], - [[ - 8841, - 9016, - 8828 - ]], - [[ - 8989, - 9012, - 9016 - ]], - [[ - 8829, - 9046, - 8834 - ]], - [[ - 9016, - 9012, - 9046 - ]], - [[ - 757, - 8915, - 756 - ]], - [[ - 8914, - 8916, - 8915 - ]], - [[ - 9045, - 8883, - 8885 - ]], - [[ - 9045, - 8963, - 8883 - ]], - [[ - 9021, - 9047, - 8930 - ]], - [[ - 9021, - 8404, - 9047 - ]], - [[ - 8870, - 8836, - 9012 - ]], - [[ - 8870, - 7314, - 8836 - ]], - [[ - 8959, - 9029, - 8998 - ]], - [[ - 9014, - 8867, - 8961 - ]], - [[ - 8980, - 9029, - 8970 - ]], - [[ - 9013, - 8998, - 9029 - ]], - [[ - 9029, - 9014, - 9013 - ]], - [[ - 8980, - 8867, - 9014 - ]], - [[ - 8997, - 8962, - 9009 - ]], - [[ - 8866, - 8865, - 9008 - ]], - [[ - 8961, - 8866, - 8962 - ]], - [[ - 8974, - 8976, - 8804 - ]], - [[ - 9010, - 8974, - 9008 - ]], - [[ - 9010, - 8975, - 8974 - ]], - [[ - 9022, - 9026, - 9023 - ]], - [[ - 8922, - 8923, - 9002 - ]], - [[ - 9025, - 9027, - 8943 - ]], - [[ - 9025, - 8922, - 9002 - ]], - [[ - 9025, - 9002, - 9027 - ]], - [[ - 8923, - 9041, - 9002 - ]], - [[ - 8944, - 9026, - 9022 - ]], - [[ - 9043, - 8922, - 9026 - ]], - [[ - 8917, - 8920, - 8919 - ]], - [[ - 9041, - 8921, - 8920 - ]], - [[ - 9046, - 8835, - 8834 - ]], - [[ - 9046, - 9012, - 8835 - ]], - [[ - 9033, - 9049, - 8956 - ]], - [[ - 8909, - 8901, - 8956 - ]], - [[ - 9028, - 8911, - 9049 - ]], - [[ - 8911, - 8913, - 8910 - ]], - [[ - 815, - 8902, - 814 - ]], - [[ - 8909, - 8911, - 8902 - ]], - [[ - 9049, - 8911, - 8909 - ]], - [[ - 9028, - 8943, - 8942 - ]], - [[ - 9028, - 8942, - 8911 - ]], - [[ - 8943, - 9027, - 8941 - ]], - [[ - 8914, - 8941, - 8916 - ]], - [[ - 8914, - 8913, - 8941 - ]], - [[ - 9011, - 8996, - 8861 - ]], - [[ - 9032, - 8859, - 8996 - ]], - [[ - 8828, - 9011, - 8861 - ]], - [[ - 7516, - 9032, - 9011 - ]], - [[ - 8985, - 9019, - 9018 - ]], - [[ - 7448, - 9006, - 9019 - ]], - [[ - 8879, - 8878, - 9045 - ]], - [[ - 8880, - 8888, - 8878 - ]], - [[ - 8897, - 8944, - 9022 - ]], - [[ - 8896, - 8350, - 8944 - ]], - [[ - 836, - 8889, - 8893 - ]], - [[ - 8888, - 8880, - 8889 - ]], - [[ - 9019, - 8985, - 8858 - ]], - [[ - 8994, - 8986, - 8985 - ]], - [[ - 9045, - 9044, - 9036 - ]], - [[ - 8885, - 8881, - 9044 - ]], - [[ - 8962, - 8866, - 9008 - ]], - [[ - 8961, - 8867, - 8866 - ]], - [[ - 9013, - 8960, - 8998 - ]], - [[ - 9013, - 8961, - 8960 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b413d2c2d-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cb549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9052, - 7400, - 9053 - ]], - [[ - 9054, - 9055, - 2630 - ]], - [[ - 9055, - 7401, - 2630 - ]], - [[ - 9053, - 7399, - 7401 - ]], - [[ - 2709, - 9054, - 2630 - ]], - [[ - 9052, - 7401, - 9055 - ]], - [[ - 9052, - 9053, - 7401 - ]], - [[ - 7400, - 7399, - 9053 - ]], - [[ - 9052, - 9054, - 2709 - ]], - [[ - 9052, - 9055, - 9054 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b413e64b2-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5ca749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9056, - 465, - 9057 - ]], - [[ - 9058, - 9059, - 6734 - ]], - [[ - 9059, - 9057, - 9060 - ]], - [[ - 464, - 9061, - 462 - ]], - [[ - 9060, - 9062, - 9059 - ]], - [[ - 462, - 9058, - 6734 - ]], - [[ - 462, - 9061, - 9058 - ]], - [[ - 9063, - 9064, - 9061 - ]], - [[ - 464, - 465, - 9061 - ]], - [[ - 6734, - 9059, - 6733 - ]], - [[ - 9063, - 9061, - 9056 - ]], - [[ - 465, - 9060, - 9057 - ]], - [[ - 9062, - 6733, - 9059 - ]], - [[ - 9059, - 9063, - 9057 - ]], - [[ - 9061, - 465, - 9056 - ]], - [[ - 465, - 9062, - 9060 - ]], - [[ - 465, - 6733, - 9062 - ]], - [[ - 9057, - 9063, - 9056 - ]], - [[ - 9064, - 9058, - 9061 - ]], - [[ - 9059, - 9064, - 9063 - ]], - [[ - 9059, - 9058, - 9064 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b413eb30b-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef812449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9065, - 9066, - 9067 - ]], - [[ - 9068, - 9069, - 9070 - ]], - [[ - 9071, - 9072, - 9073 - ]], - [[ - 9074, - 9075, - 9076 - ]], - [[ - 9074, - 9067, - 9075 - ]], - [[ - 9067, - 9077, - 9075 - ]], - [[ - 9078, - 9065, - 9071 - ]], - [[ - 9071, - 9065, - 9072 - ]], - [[ - 9078, - 9066, - 9065 - ]], - [[ - 9066, - 9077, - 9067 - ]], - [[ - 9069, - 9074, - 9076 - ]], - [[ - 9069, - 9068, - 9074 - ]], - [[ - 9073, - 9068, - 9070 - ]], - [[ - 9071, - 9073, - 9070 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b413feb75-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cfb49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9079, - 8148, - 9080 - ]], - [[ - 9081, - 9082, - 8144 - ]], - [[ - 9083, - 9084, - 9085 - ]], - [[ - 9086, - 8143, - 8144 - ]], - [[ - 9082, - 9087, - 8144 - ]], - [[ - 9088, - 9089, - 9090 - ]], - [[ - 9091, - 8143, - 9086 - ]], - [[ - 9090, - 9092, - 9093 - ]], - [[ - 8140, - 9094, - 9095 - ]], - [[ - 9095, - 9094, - 9096 - ]], - [[ - 9096, - 9094, - 9097 - ]], - [[ - 9097, - 9094, - 9098 - ]], - [[ - 9098, - 9094, - 9099 - ]], - [[ - 9099, - 9094, - 9100 - ]], - [[ - 9100, - 9094, - 9101 - ]], - [[ - 9101, - 9094, - 9102 - ]], - [[ - 9102, - 9094, - 9103 - ]], - [[ - 9104, - 9102, - 9103 - ]], - [[ - 9105, - 9104, - 9103 - ]], - [[ - 9106, - 9105, - 9103 - ]], - [[ - 9103, - 9094, - 9089 - ]], - [[ - 9107, - 9108, - 9103 - ]], - [[ - 9109, - 9107, - 9103 - ]], - [[ - 9110, - 9103, - 9089 - ]], - [[ - 9110, - 9111, - 9109 - ]], - [[ - 9110, - 9112, - 9111 - ]], - [[ - 9110, - 9113, - 9112 - ]], - [[ - 9114, - 8142, - 8143 - ]], - [[ - 9115, - 9116, - 9117 - ]], - [[ - 8145, - 9081, - 8144 - ]], - [[ - 8145, - 8146, - 9118 - ]], - [[ - 8142, - 9092, - 8141 - ]], - [[ - 8142, - 9093, - 9092 - ]], - [[ - 9117, - 9119, - 9120 - ]], - [[ - 9114, - 8143, - 9091 - ]], - [[ - 9079, - 9121, - 9122 - ]], - [[ - 8147, - 8148, - 9121 - ]], - [[ - 9123, - 9124, - 9125 - ]], - [[ - 9126, - 9090, - 9093 - ]], - [[ - 9117, - 9120, - 9127 - ]], - [[ - 9128, - 9129, - 9121 - ]], - [[ - 9130, - 9131, - 9114 - ]], - [[ - 9093, - 8142, - 9131 - ]], - [[ - 9089, - 9094, - 8140 - ]], - [[ - 9110, - 9132, - 9133 - ]], - [[ - 8141, - 9090, - 8140 - ]], - [[ - 8141, - 9092, - 9090 - ]], - [[ - 9130, - 9114, - 9091 - ]], - [[ - 9131, - 8142, - 9114 - ]], - [[ - 9118, - 9081, - 8145 - ]], - [[ - 9117, - 9116, - 9134 - ]], - [[ - 9135, - 9085, - 9084 - ]], - [[ - 9087, - 9136, - 9086 - ]], - [[ - 8147, - 9129, - 9137 - ]], - [[ - 8147, - 9121, - 9129 - ]], - [[ - 9132, - 9138, - 9084 - ]], - [[ - 9139, - 9123, - 9131 - ]], - [[ - 9079, - 9122, - 8148 - ]], - [[ - 9121, - 8148, - 9122 - ]], - [[ - 9140, - 9115, - 9079 - ]], - [[ - 9115, - 9128, - 9079 - ]], - [[ - 9125, - 9124, - 9138 - ]], - [[ - 9123, - 9126, - 9093 - ]], - [[ - 9134, - 9116, - 9082 - ]], - [[ - 9141, - 9124, - 9139 - ]], - [[ - 9142, - 9082, - 9081 - ]], - [[ - 9116, - 9136, - 9087 - ]], - [[ - 9090, - 9089, - 8140 - ]], - [[ - 9089, - 9088, - 9110 - ]], - [[ - 9143, - 9110, - 9133 - ]], - [[ - 9143, - 9113, - 9110 - ]], - [[ - 8144, - 9087, - 9086 - ]], - [[ - 9082, - 9116, - 9087 - ]], - [[ - 9138, - 9135, - 9084 - ]], - [[ - 9138, - 9116, - 9115 - ]], - [[ - 9123, - 9125, - 9126 - ]], - [[ - 9132, - 9110, - 9088 - ]], - [[ - 9086, - 9136, - 9091 - ]], - [[ - 9136, - 9141, - 9130 - ]], - [[ - 9091, - 9136, - 9130 - ]], - [[ - 9116, - 9141, - 9136 - ]], - [[ - 9138, - 9141, - 9116 - ]], - [[ - 9138, - 9124, - 9141 - ]], - [[ - 9118, - 9137, - 9119 - ]], - [[ - 9118, - 8146, - 9137 - ]], - [[ - 9115, - 9127, - 9128 - ]], - [[ - 9119, - 9081, - 9118 - ]], - [[ - 8147, - 9137, - 8146 - ]], - [[ - 9129, - 9120, - 9137 - ]], - [[ - 9120, - 9119, - 9137 - ]], - [[ - 9117, - 9142, - 9119 - ]], - [[ - 9119, - 9142, - 9081 - ]], - [[ - 9134, - 9082, - 9142 - ]], - [[ - 9129, - 9128, - 9120 - ]], - [[ - 9115, - 9135, - 9138 - ]], - [[ - 9079, - 9128, - 9121 - ]], - [[ - 9127, - 9120, - 9128 - ]], - [[ - 9126, - 9125, - 9138 - ]], - [[ - 9126, - 9088, - 9090 - ]], - [[ - 9132, - 9126, - 9138 - ]], - [[ - 9132, - 9088, - 9126 - ]], - [[ - 9115, - 9117, - 9127 - ]], - [[ - 9134, - 9142, - 9117 - ]], - [[ - 9130, - 9139, - 9131 - ]], - [[ - 9130, - 9141, - 9139 - ]], - [[ - 9131, - 9123, - 9093 - ]], - [[ - 9139, - 9124, - 9123 - ]], - [[ - 9080, - 9140, - 9079 - ]], - [[ - 9083, - 9135, - 9115 - ]], - [[ - 9084, - 9083, - 9080 - ]], - [[ - 9083, - 9115, - 9140 - ]], - [[ - 9109, - 9103, - 9110 - ]], - [[ - 9108, - 9106, - 9103 - ]], - [[ - 9080, - 9083, - 9140 - ]], - [[ - 9085, - 9135, - 9083 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b41414b16-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "onverhard", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef949249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9144, - 117, - 119 - ]], - [[ - 9144, - 119, - 8569 - ]], - [[ - 8594, - 9144, - 8569 - ]], - [[ - 8594, - 117, - 9144 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b414283a4-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5ca849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 6895, - 6897, - 6787 - ]], - [[ - 6895, - 6787, - 7038 - ]], - [[ - 6897, - 6802, - 6787 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4142aad2-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef660249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9145, - 9146, - 9147 - ]], - [[ - 9146, - 9148, - 9147 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b414394d7-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cba49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 7792, - 7790, - 7791 - ]], - [[ - 7790, - 7789, - 7791 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b414394ec-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cb849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9149, - 9150, - 365 - ]], - [[ - 9151, - 9152, - 9153 - ]], - [[ - 9154, - 9155, - 9152 - ]], - [[ - 9156, - 9157, - 9158 - ]], - [[ - 9159, - 9151, - 9160 - ]], - [[ - 9157, - 9152, - 9161 - ]], - [[ - 9162, - 9153, - 7713 - ]], - [[ - 9163, - 7711, - 9160 - ]], - [[ - 7710, - 9162, - 7713 - ]], - [[ - 9149, - 9156, - 9158 - ]], - [[ - 9149, - 365, - 364 - ]], - [[ - 373, - 9157, - 372 - ]], - [[ - 373, - 9158, - 9157 - ]], - [[ - 373, - 9150, - 9158 - ]], - [[ - 373, - 365, - 9150 - ]], - [[ - 7709, - 9162, - 7710 - ]], - [[ - 9160, - 9153, - 9162 - ]], - [[ - 9164, - 9161, - 9159 - ]], - [[ - 372, - 9157, - 9161 - ]], - [[ - 9164, - 9159, - 7711 - ]], - [[ - 9161, - 9152, - 9151 - ]], - [[ - 9157, - 9156, - 9152 - ]], - [[ - 9158, - 9150, - 9149 - ]], - [[ - 9163, - 9160, - 9162 - ]], - [[ - 7711, - 9159, - 9160 - ]], - [[ - 9160, - 9151, - 9153 - ]], - [[ - 9159, - 9161, - 9151 - ]], - [[ - 9155, - 9165, - 364 - ]], - [[ - 9155, - 9156, - 9165 - ]], - [[ - 9165, - 9149, - 364 - ]], - [[ - 9165, - 9156, - 9149 - ]], - [[ - 372, - 9164, - 7711 - ]], - [[ - 372, - 9161, - 9164 - ]], - [[ - 7709, - 9163, - 9162 - ]], - [[ - 7709, - 7711, - 9163 - ]], - [[ - 9156, - 9154, - 9152 - ]], - [[ - 9156, - 9155, - 9154 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b46c34501-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2015-01-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.29a2059927f84b779ccc323a4d72025a", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 5999, - 5958, - 5921 - ]], - [[ - 5999, - 5921, - 5917 - ]], - [[ - 5958, - 5924, - 5921 - ]], - [[ - 9166, - 5939, - 5996 - ]], - [[ - 9166, - 9167, - 5939 - ]], - [[ - 5942, - 9166, - 5996 - ]], - [[ - 9168, - 9167, - 9166 - ]], - [[ - 9168, - 5939, - 9167 - ]], - [[ - 5958, - 9168, - 9166 - ]], - [[ - 5958, - 5939, - 9168 - ]], - [[ - 5924, - 9166, - 5942 - ]], - [[ - 5924, - 5958, - 9166 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b46c36c2c-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efcc0d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9169, - 9170, - 9171 - ]], - [[ - 9172, - 9173, - 9174 - ]], - [[ - 9175, - 9176, - 9177 - ]], - [[ - 9178, - 9170, - 9169 - ]], - [[ - 9179, - 9180, - 3737 - ]], - [[ - 9181, - 9182, - 9183 - ]], - [[ - 9184, - 9185, - 9186 - ]], - [[ - 9181, - 9187, - 9182 - ]], - [[ - 9188, - 9187, - 9181 - ]], - [[ - 9188, - 9189, - 9187 - ]], - [[ - 9190, - 9191, - 3909 - ]], - [[ - 9192, - 9190, - 3909 - ]], - [[ - 9193, - 9192, - 3909 - ]], - [[ - 9194, - 9195, - 9196 - ]], - [[ - 9193, - 9197, - 9198 - ]], - [[ - 9199, - 9200, - 9201 - ]], - [[ - 9202, - 9185, - 9184 - ]], - [[ - 9203, - 9204, - 9205 - ]], - [[ - 9206, - 9207, - 9208 - ]], - [[ - 9209, - 9210, - 3747 - ]], - [[ - 9211, - 9212, - 9210 - ]], - [[ - 9213, - 9214, - 9215 - ]], - [[ - 9216, - 9211, - 9217 - ]], - [[ - 9218, - 9219, - 3485 - ]], - [[ - 9220, - 3755, - 9221 - ]], - [[ - 9222, - 9218, - 3484 - ]], - [[ - 9222, - 9223, - 9218 - ]], - [[ - 9224, - 9225, - 9226 - ]], - [[ - 9227, - 9228, - 9229 - ]], - [[ - 9230, - 9231, - 9232 - ]], - [[ - 9233, - 9234, - 9235 - ]], - [[ - 9236, - 9237, - 9238 - ]], - [[ - 9239, - 9240, - 9241 - ]], - [[ - 9242, - 9243, - 9244 - ]], - [[ - 9238, - 9245, - 9246 - ]], - [[ - 9247, - 9243, - 9248 - ]], - [[ - 9247, - 9248, - 9249 - ]], - [[ - 9221, - 3810, - 9219 - ]], - [[ - 9249, - 9248, - 9250 - ]], - [[ - 9251, - 9252, - 9253 - ]], - [[ - 9254, - 9255, - 9256 - ]], - [[ - 9256, - 9255, - 9257 - ]], - [[ - 9257, - 9255, - 9258 - ]], - [[ - 9255, - 9254, - 9250 - ]], - [[ - 9259, - 9260, - 9252 - ]], - [[ - 9261, - 9255, - 9262 - ]], - [[ - 9262, - 9255, - 9263 - ]], - [[ - 9263, - 9255, - 9264 - ]], - [[ - 9264, - 9255, - 9265 - ]], - [[ - 9266, - 9267, - 9268 - ]], - [[ - 9265, - 9255, - 9269 - ]], - [[ - 9269, - 9255, - 9270 - ]], - [[ - 9271, - 9269, - 9270 - ]], - [[ - 9272, - 9271, - 9270 - ]], - [[ - 9273, - 9272, - 9270 - ]], - [[ - 9274, - 9273, - 9270 - ]], - [[ - 9275, - 9276, - 9277 - ]], - [[ - 9278, - 9274, - 9270 - ]], - [[ - 9279, - 9280, - 9281 - ]], - [[ - 9282, - 9278, - 9270 - ]], - [[ - 9283, - 9226, - 9284 - ]], - [[ - 9285, - 9286, - 9287 - ]], - [[ - 9288, - 9225, - 9289 - ]], - [[ - 9290, - 9291, - 3579 - ]], - [[ - 9292, - 3441, - 9293 - ]], - [[ - 9294, - 9295, - 9296 - ]], - [[ - 9297, - 3834, - 9298 - ]], - [[ - 9297, - 9299, - 3894 - ]], - [[ - 9300, - 9301, - 9175 - ]], - [[ - 9302, - 9303, - 9304 - ]], - [[ - 3632, - 9222, - 3484 - ]], - [[ - 3484, - 9218, - 3485 - ]], - [[ - 3485, - 9219, - 3810 - ]], - [[ - 3810, - 9221, - 3755 - ]], - [[ - 9305, - 9220, - 9306 - ]], - [[ - 9210, - 9212, - 9298 - ]], - [[ - 9307, - 9217, - 9211 - ]], - [[ - 3747, - 9298, - 3834 - ]], - [[ - 3834, - 9297, - 3934 - ]], - [[ - 3934, - 9297, - 3894 - ]], - [[ - 3894, - 9299, - 9308 - ]], - [[ - 9309, - 9310, - 9311 - ]], - [[ - 9312, - 9313, - 9314 - ]], - [[ - 9181, - 9183, - 3737 - ]], - [[ - 9315, - 9316, - 9317 - ]], - [[ - 9183, - 9179, - 3737 - ]], - [[ - 9180, - 9178, - 3737 - ]], - [[ - 9180, - 9170, - 9178 - ]], - [[ - 9318, - 9178, - 9169 - ]], - [[ - 9319, - 9320, - 9321 - ]], - [[ - 9322, - 9323, - 9324 - ]], - [[ - 9325, - 9326, - 9327 - ]], - [[ - 9301, - 9328, - 9329 - ]], - [[ - 9330, - 9327, - 9331 - ]], - [[ - 9329, - 9332, - 9319 - ]], - [[ - 9333, - 9334, - 9335 - ]], - [[ - 9336, - 9337, - 9338 - ]], - [[ - 9339, - 9340, - 9341 - ]], - [[ - 9236, - 9238, - 9246 - ]], - [[ - 9342, - 9343, - 9344 - ]], - [[ - 9345, - 9346, - 9347 - ]], - [[ - 9348, - 9349, - 9350 - ]], - [[ - 9321, - 9351, - 9352 - ]], - [[ - 9353, - 9354, - 9355 - ]], - [[ - 9356, - 9357, - 9327 - ]], - [[ - 9215, - 9207, - 9358 - ]], - [[ - 9359, - 9360, - 9361 - ]], - [[ - 9176, - 9175, - 9352 - ]], - [[ - 9362, - 9363, - 9327 - ]], - [[ - 9364, - 9365, - 9366 - ]], - [[ - 9327, - 9357, - 9353 - ]], - [[ - 9175, - 9319, - 9352 - ]], - [[ - 9328, - 9367, - 9329 - ]], - [[ - 9368, - 9369, - 9327 - ]], - [[ - 9363, - 9366, - 9368 - ]], - [[ - 9370, - 9302, - 9371 - ]], - [[ - 9372, - 9373, - 9374 - ]], - [[ - 9375, - 9174, - 9173 - ]], - [[ - 9302, - 9304, - 9371 - ]], - [[ - 9376, - 9352, - 9351 - ]], - [[ - 9377, - 9332, - 9364 - ]], - [[ - 9296, - 9362, - 9330 - ]], - [[ - 9377, - 9320, - 9332 - ]], - [[ - 9327, - 9353, - 9325 - ]], - [[ - 9378, - 9379, - 9295 - ]], - [[ - 9380, - 9350, - 9381 - ]], - [[ - 9380, - 9357, - 9356 - ]], - [[ - 9382, - 9383, - 9384 - ]], - [[ - 9326, - 9331, - 9327 - ]], - [[ - 9260, - 9362, - 9295 - ]], - [[ - 9363, - 9385, - 9386 - ]], - [[ - 9326, - 9296, - 9331 - ]], - [[ - 9362, - 9327, - 9330 - ]], - [[ - 9384, - 9383, - 9325 - ]], - [[ - 9378, - 9295, - 9294 - ]], - [[ - 9387, - 9388, - 9389 - ]], - [[ - 9372, - 9390, - 9391 - ]], - [[ - 9392, - 9393, - 9382 - ]], - [[ - 9394, - 9379, - 9378 - ]], - [[ - 9230, - 9232, - 9395 - ]], - [[ - 9231, - 9396, - 9232 - ]], - [[ - 9340, - 9397, - 9341 - ]], - [[ - 9245, - 9239, - 9398 - ]], - [[ - 9399, - 9400, - 9401 - ]], - [[ - 9397, - 9340, - 9241 - ]], - [[ - 9402, - 9403, - 9404 - ]], - [[ - 9405, - 9406, - 9322 - ]], - [[ - 9177, - 9176, - 9407 - ]], - [[ - 9406, - 9405, - 9408 - ]], - [[ - 9409, - 9410, - 9411 - ]], - [[ - 9371, - 9304, - 9344 - ]], - [[ - 9172, - 9408, - 9412 - ]], - [[ - 9389, - 9413, - 9414 - ]], - [[ - 9392, - 9382, - 9415 - ]], - [[ - 9416, - 9417, - 9394 - ]], - [[ - 9418, - 9376, - 9351 - ]], - [[ - 9176, - 9352, - 9376 - ]], - [[ - 9419, - 9420, - 9421 - ]], - [[ - 9371, - 9344, - 9422 - ]], - [[ - 9423, - 9344, - 9304 - ]], - [[ - 9424, - 9425, - 9426 - ]], - [[ - 9427, - 9206, - 9208 - ]], - [[ - 9428, - 9429, - 3431 - ]], - [[ - 9335, - 9430, - 9391 - ]], - [[ - 9391, - 3553, - 3441 - ]], - [[ - 9381, - 9431, - 9432 - ]], - [[ - 9433, - 9434, - 9435 - ]], - [[ - 9339, - 9341, - 9244 - ]], - [[ - 9397, - 9240, - 9400 - ]], - [[ - 9436, - 9437, - 9438 - ]], - [[ - 9439, - 9440, - 9395 - ]], - [[ - 9293, - 9280, - 9276 - ]], - [[ - 9441, - 3440, - 9442 - ]], - [[ - 9438, - 9443, - 9444 - ]], - [[ - 9440, - 9443, - 9445 - ]], - [[ - 9438, - 9446, - 9443 - ]], - [[ - 9395, - 9447, - 9230 - ]], - [[ - 9446, - 9228, - 9445 - ]], - [[ - 9448, - 9232, - 9396 - ]], - [[ - 9224, - 9449, - 9450 - ]], - [[ - 9436, - 9444, - 9451 - ]], - [[ - 9258, - 9255, - 9261 - ]], - [[ - 9452, - 9243, - 9453 - ]], - [[ - 9329, - 9350, - 9332 - ]], - [[ - 9349, - 9431, - 9381 - ]], - [[ - 9341, - 9399, - 9244 - ]], - [[ - 9341, - 9397, - 9399 - ]], - [[ - 9388, - 9387, - 9259 - ]], - [[ - 9454, - 9173, - 9172 - ]], - [[ - 9259, - 9454, - 9455 - ]], - [[ - 9375, - 9173, - 9454 - ]], - [[ - 9456, - 9457, - 9424 - ]], - [[ - 9422, - 9344, - 9343 - ]], - [[ - 9319, - 9332, - 9320 - ]], - [[ - 9350, - 9365, - 9332 - ]], - [[ - 9458, - 9421, - 9459 - ]], - [[ - 9460, - 9371, - 9422 - ]], - [[ - 9461, - 9427, - 9462 - ]], - [[ - 9461, - 9206, - 9427 - ]], - [[ - 9454, - 9259, - 9375 - ]], - [[ - 9463, - 9464, - 9465 - ]], - [[ - 9466, - 9467, - 9468 - ]], - [[ - 9467, - 9469, - 9470 - ]], - [[ - 9471, - 9393, - 9392 - ]], - [[ - 9472, - 9382, - 9393 - ]], - [[ - 9473, - 9353, - 9381 - ]], - [[ - 9335, - 9334, - 9430 - ]], - [[ - 9435, - 9474, - 9433 - ]], - [[ - 9355, - 9415, - 9325 - ]], - [[ - 9417, - 9393, - 9471 - ]], - [[ - 9475, - 9392, - 9355 - ]], - [[ - 9471, - 9434, - 9391 - ]], - [[ - 9476, - 9434, - 9473 - ]], - [[ - 9477, - 9404, - 9478 - ]], - [[ - 9479, - 9480, - 9481 - ]], - [[ - 9482, - 9337, - 9336 - ]], - [[ - 9426, - 9483, - 9456 - ]], - [[ - 9484, - 9485, - 9486 - ]], - [[ - 9487, - 9409, - 9411 - ]], - [[ - 9334, - 9402, - 9430 - ]], - [[ - 9478, - 9488, - 9489 - ]], - [[ - 9430, - 9402, - 9490 - ]], - [[ - 9334, - 9328, - 9403 - ]], - [[ - 9478, - 9489, - 9491 - ]], - [[ - 9492, - 9493, - 9175 - ]], - [[ - 9494, - 9493, - 9492 - ]], - [[ - 9176, - 9376, - 9407 - ]], - [[ - 9174, - 9495, - 9172 - ]], - [[ - 9496, - 9324, - 9497 - ]], - [[ - 9379, - 9292, - 9284 - ]], - [[ - 9293, - 9275, - 9498 - ]], - [[ - 9378, - 9326, - 9325 - ]], - [[ - 9294, - 9296, - 9326 - ]], - [[ - 9499, - 9500, - 9501 - ]], - [[ - 9502, - 9503, - 9270 - ]], - [[ - 9504, - 9505, - 9448 - ]], - [[ - 9501, - 9447, - 9395 - ]], - [[ - 9334, - 9333, - 9328 - ]], - [[ - 9348, - 9350, - 9367 - ]], - [[ - 9175, - 9301, - 9319 - ]], - [[ - 9367, - 9350, - 9329 - ]], - [[ - 9328, - 9333, - 9367 - ]], - [[ - 9335, - 9391, - 9267 - ]], - [[ - 9401, - 9240, - 9506 - ]], - [[ - 9340, - 9339, - 9398 - ]], - [[ - 9239, - 9506, - 9240 - ]], - [[ - 9240, - 9397, - 9241 - ]], - [[ - 9401, - 9400, - 9240 - ]], - [[ - 9399, - 9397, - 9400 - ]], - [[ - 9244, - 9401, - 9242 - ]], - [[ - 9244, - 9399, - 9401 - ]], - [[ - 9242, - 9506, - 9507 - ]], - [[ - 9242, - 9401, - 9506 - ]], - [[ - 9508, - 9509, - 9510 - ]], - [[ - 9511, - 9500, - 9512 - ]], - [[ - 9398, - 9246, - 9245 - ]], - [[ - 9287, - 9286, - 9243 - ]], - [[ - 9513, - 9235, - 9514 - ]], - [[ - 9515, - 9231, - 9230 - ]], - [[ - 9459, - 9516, - 9517 - ]], - [[ - 9421, - 9420, - 9516 - ]], - [[ - 9242, - 9453, - 9243 - ]], - [[ - 9507, - 9245, - 9518 - ]], - [[ - 9285, - 9519, - 9248 - ]], - [[ - 9452, - 9507, - 9518 - ]], - [[ - 9451, - 9520, - 9436 - ]], - [[ - 9439, - 9521, - 9520 - ]], - [[ - 9448, - 9505, - 9395 - ]], - [[ - 9520, - 9451, - 9440 - ]], - [[ - 9395, - 9505, - 9439 - ]], - [[ - 9225, - 9288, - 9521 - ]], - [[ - 9505, - 9504, - 9396 - ]], - [[ - 9505, - 9521, - 9439 - ]], - [[ - 9321, - 9377, - 9385 - ]], - [[ - 9369, - 9365, - 9380 - ]], - [[ - 9351, - 9385, - 9362 - ]], - [[ - 9385, - 9377, - 9386 - ]], - [[ - 9319, - 9321, - 9352 - ]], - [[ - 9320, - 9377, - 9321 - ]], - [[ - 9285, - 9248, - 9286 - ]], - [[ - 9248, - 9243, - 9286 - ]], - [[ - 9507, - 9452, - 9453 - ]], - [[ - 9518, - 9285, - 9452 - ]], - [[ - 9522, - 9523, - 9252 - ]], - [[ - 9455, - 9260, - 9259 - ]], - [[ - 9524, - 9343, - 9342 - ]], - [[ - 9525, - 9457, - 9464 - ]], - [[ - 9345, - 9526, - 9495 - ]], - [[ - 9426, - 9456, - 9424 - ]], - [[ - 9420, - 9527, - 9460 - ]], - [[ - 9343, - 9524, - 9422 - ]], - [[ - 9528, - 9338, - 9337 - ]], - [[ - 9346, - 9495, - 9529 - ]], - [[ - 9426, - 9411, - 9483 - ]], - [[ - 9530, - 9528, - 9531 - ]], - [[ - 9347, - 9532, - 9345 - ]], - [[ - 9495, - 9481, - 9172 - ]], - [[ - 9422, - 9524, - 9425 - ]], - [[ - 9533, - 9534, - 9535 - ]], - [[ - 9536, - 9533, - 9535 - ]], - [[ - 9535, - 9530, - 9532 - ]], - [[ - 9533, - 9537, - 9538 - ]], - [[ - 9539, - 9426, - 9524 - ]], - [[ - 9530, - 9531, - 9526 - ]], - [[ - 9540, - 9541, - 9482 - ]], - [[ - 9174, - 9529, - 9495 - ]], - [[ - 9542, - 9387, - 9389 - ]], - [[ - 9174, - 9542, - 9529 - ]], - [[ - 9542, - 9389, - 9410 - ]], - [[ - 9543, - 9446, - 9279 - ]], - [[ - 9445, - 9443, - 9446 - ]], - [[ - 9543, - 9228, - 9446 - ]], - [[ - 9227, - 9440, - 9445 - ]], - [[ - 9543, - 9279, - 9544 - ]], - [[ - 9436, - 9438, - 9444 - ]], - [[ - 9326, - 9378, - 9294 - ]], - [[ - 9394, - 9417, - 9379 - ]], - [[ - 9495, - 9346, - 9345 - ]], - [[ - 9529, - 9409, - 9346 - ]], - [[ - 9545, - 9282, - 9270 - ]], - [[ - 9250, - 9254, - 9249 - ]], - [[ - 9546, - 9547, - 9548 - ]], - [[ - 9503, - 9545, - 9270 - ]], - [[ - 9548, - 9549, - 9550 - ]], - [[ - 9551, - 9552, - 9502 - ]], - [[ - 9487, - 9347, - 9346 - ]], - [[ - 9532, - 9526, - 9345 - ]], - [[ - 9553, - 9538, - 9537 - ]], - [[ - 9554, - 9524, - 9342 - ]], - [[ - 9555, - 9556, - 9342 - ]], - [[ - 9534, - 9557, - 9535 - ]], - [[ - 9558, - 9554, - 9556 - ]], - [[ - 9559, - 9538, - 9554 - ]], - [[ - 9471, - 9475, - 9435 - ]], - [[ - 9471, - 9392, - 9475 - ]], - [[ - 9446, - 9280, - 9279 - ]], - [[ - 3441, - 3440, - 9560 - ]], - [[ - 9279, - 9281, - 9441 - ]], - [[ - 9561, - 3441, - 9560 - ]], - [[ - 9410, - 9389, - 9414 - ]], - [[ - 9562, - 9252, - 9251 - ]], - [[ - 9529, - 9542, - 9409 - ]], - [[ - 9174, - 9375, - 9387 - ]], - [[ - 9388, - 9563, - 9389 - ]], - [[ - 9564, - 9522, - 9517 - ]], - [[ - 9389, - 9563, - 9413 - ]], - [[ - 9465, - 9259, - 9252 - ]], - [[ - 9565, - 9566, - 9567 - ]], - [[ - 9568, - 9313, - 9569 - ]], - [[ - 9308, - 9570, - 9571 - ]], - [[ - 9572, - 9573, - 9574 - ]], - [[ - 9567, - 9566, - 9203 - ]], - [[ - 9575, - 9576, - 9577 - ]], - [[ - 9578, - 9579, - 9580 - ]], - [[ - 9581, - 9577, - 9582 - ]], - [[ - 9583, - 9566, - 9584 - ]], - [[ - 9585, - 9586, - 9566 - ]], - [[ - 3894, - 9308, - 3630 - ]], - [[ - 9299, - 9462, - 9308 - ]], - [[ - 9333, - 9348, - 9367 - ]], - [[ - 9333, - 9335, - 9267 - ]], - [[ - 9587, - 9588, - 9589 - ]], - [[ - 9527, - 9420, - 9419 - ]], - [[ - 9460, - 9424, - 9457 - ]], - [[ - 9422, - 9425, - 9424 - ]], - [[ - 9420, - 9460, - 9516 - ]], - [[ - 9422, - 9424, - 9460 - ]], - [[ - 9525, - 9464, - 9463 - ]], - [[ - 9523, - 9465, - 9252 - ]], - [[ - 9495, - 9479, - 9481 - ]], - [[ - 9324, - 9590, - 9497 - ]], - [[ - 9531, - 9591, - 9495 - ]], - [[ - 9592, - 9541, - 9593 - ]], - [[ - 9405, - 9496, - 9594 - ]], - [[ - 9323, - 9595, - 9324 - ]], - [[ - 9486, - 9485, - 9596 - ]], - [[ - 9489, - 9488, - 9485 - ]], - [[ - 9494, - 9488, - 9404 - ]], - [[ - 9494, - 9492, - 9596 - ]], - [[ - 9283, - 9293, - 9226 - ]], - [[ - 9280, - 9446, - 9276 - ]], - [[ - 9407, - 9597, - 9177 - ]], - [[ - 9494, - 9300, - 9493 - ]], - [[ - 9477, - 9478, - 9373 - ]], - [[ - 9489, - 9485, - 9593 - ]], - [[ - 9373, - 9491, - 9374 - ]], - [[ - 9598, - 9478, - 9491 - ]], - [[ - 9564, - 9463, - 9523 - ]], - [[ - 9464, - 9563, - 9465 - ]], - [[ - 9414, - 9464, - 9457 - ]], - [[ - 9413, - 9563, - 9464 - ]], - [[ - 9599, - 9600, - 9601 - ]], - [[ - 9428, - 3431, - 3630 - ]], - [[ - 9565, - 9584, - 9566 - ]], - [[ - 9602, - 9603, - 9586 - ]], - [[ - 9604, - 9605, - 9513 - ]], - [[ - 9234, - 9509, - 9514 - ]], - [[ - 9386, - 9364, - 9363 - ]], - [[ - 9364, - 9332, - 9365 - ]], - [[ - 9363, - 9364, - 9366 - ]], - [[ - 9386, - 9377, - 9364 - ]], - [[ - 9308, - 9576, - 9570 - ]], - [[ - 9214, - 9582, - 9606 - ]], - [[ - 9607, - 9577, - 9576 - ]], - [[ - 9207, - 9215, - 9208 - ]], - [[ - 9292, - 9293, - 9283 - ]], - [[ - 3441, - 9561, - 9293 - ]], - [[ - 9608, - 9501, - 9395 - ]], - [[ - 9511, - 9609, - 9610 - ]], - [[ - 9460, - 9525, - 9516 - ]], - [[ - 9522, - 9252, - 9459 - ]], - [[ - 9611, - 9412, - 9408 - ]], - [[ - 9408, - 9172, - 9481 - ]], - [[ - 9612, - 9613, - 9303 - ]], - [[ - 9614, - 9344, - 9423 - ]], - [[ - 9303, - 9613, - 9555 - ]], - [[ - 9342, - 9344, - 9614 - ]], - [[ - 9615, - 9283, - 9284 - ]], - [[ - 9615, - 9292, - 9283 - ]], - [[ - 9314, - 9313, - 9616 - ]], - [[ - 9617, - 9618, - 9429 - ]], - [[ - 9619, - 9620, - 9621 - ]], - [[ - 9619, - 9361, - 9622 - ]], - [[ - 9623, - 9309, - 9624 - ]], - [[ - 9573, - 9571, - 9570 - ]], - [[ - 9601, - 9600, - 9580 - ]], - [[ - 9625, - 9571, - 9573 - ]], - [[ - 9626, - 9578, - 9580 - ]], - [[ - 9600, - 9599, - 9580 - ]], - [[ - 9311, - 9627, - 9309 - ]], - [[ - 9579, - 9601, - 9580 - ]], - [[ - 9205, - 9628, - 9359 - ]], - [[ - 9625, - 9629, - 9571 - ]], - [[ - 9630, - 9625, - 9572 - ]], - [[ - 9570, - 9576, - 9575 - ]], - [[ - 9357, - 9381, - 9353 - ]], - [[ - 9431, - 9266, - 9476 - ]], - [[ - 9381, - 9432, - 9473 - ]], - [[ - 9431, - 9349, - 9266 - ]], - [[ - 9516, - 9525, - 9517 - ]], - [[ - 9525, - 9463, - 9564 - ]], - [[ - 9404, - 9300, - 9494 - ]], - [[ - 9403, - 9328, - 9301 - ]], - [[ - 9319, - 9301, - 9329 - ]], - [[ - 9300, - 9404, - 9403 - ]], - [[ - 9300, - 9403, - 9301 - ]], - [[ - 9402, - 9334, - 9403 - ]], - [[ - 9347, - 9536, - 9532 - ]], - [[ - 9538, - 9559, - 9533 - ]], - [[ - 9524, - 9553, - 9539 - ]], - [[ - 9553, - 9554, - 9538 - ]], - [[ - 9631, - 9632, - 9565 - ]], - [[ - 9632, - 9311, - 9579 - ]], - [[ - 9628, - 9360, - 9359 - ]], - [[ - 9313, - 9568, - 9616 - ]], - [[ - 9267, - 9391, - 9268 - ]], - [[ - 9349, - 9267, - 9266 - ]], - [[ - 9380, - 9381, - 9357 - ]], - [[ - 9350, - 9349, - 9381 - ]], - [[ - 9580, - 9633, - 9602 - ]], - [[ - 9628, - 9204, - 9634 - ]], - [[ - 9481, - 9480, - 9323 - ]], - [[ - 9418, - 9407, - 9376 - ]], - [[ - 9323, - 9480, - 9595 - ]], - [[ - 9541, - 9531, - 9528 - ]], - [[ - 9322, - 9324, - 9496 - ]], - [[ - 9635, - 9480, - 9636 - ]], - [[ - 9558, - 9637, - 9638 - ]], - [[ - 9534, - 9533, - 9559 - ]], - [[ - 9558, - 9638, - 9559 - ]], - [[ - 9637, - 9534, - 9638 - ]], - [[ - 9516, - 9459, - 9421 - ]], - [[ - 9517, - 9522, - 9459 - ]], - [[ - 9370, - 9303, - 9302 - ]], - [[ - 9423, - 9304, - 9303 - ]], - [[ - 9595, - 9590, - 9324 - ]], - [[ - 9639, - 9597, - 9640 - ]], - [[ - 9595, - 9635, - 9590 - ]], - [[ - 9596, - 9492, - 9641 - ]], - [[ - 9225, - 9505, - 9396 - ]], - [[ - 9225, - 9521, - 9505 - ]], - [[ - 9475, - 9474, - 9435 - ]], - [[ - 9392, - 9415, - 9355 - ]], - [[ - 9174, - 9387, - 9542 - ]], - [[ - 9375, - 9259, - 9387 - ]], - [[ - 9642, - 9643, - 9628 - ]], - [[ - 9574, - 9573, - 9581 - ]], - [[ - 9606, - 9582, - 9577 - ]], - [[ - 9215, - 9427, - 9208 - ]], - [[ - 9353, - 9355, - 9325 - ]], - [[ - 9474, - 9475, - 9355 - ]], - [[ - 9644, - 9601, - 9579 - ]], - [[ - 9645, - 9599, - 9601 - ]], - [[ - 9546, - 9285, - 9518 - ]], - [[ - 9250, - 9270, - 9255 - ]], - [[ - 9546, - 9550, - 9646 - ]], - [[ - 9647, - 9270, - 9250 - ]], - [[ - 9519, - 9250, - 9248 - ]], - [[ - 9647, - 9646, - 9551 - ]], - [[ - 9648, - 9547, - 9510 - ]], - [[ - 9647, - 9502, - 9270 - ]], - [[ - 9548, - 9552, - 9549 - ]], - [[ - 9552, - 9503, - 9502 - ]], - [[ - 9646, - 9550, - 9551 - ]], - [[ - 9549, - 9552, - 9551 - ]], - [[ - 9548, - 9610, - 9552 - ]], - [[ - 9442, - 9503, - 9552 - ]], - [[ - 9519, - 9646, - 9250 - ]], - [[ - 9550, - 9549, - 9551 - ]], - [[ - 9285, - 9646, - 9519 - ]], - [[ - 9546, - 9510, - 9547 - ]], - [[ - 9508, - 9510, - 9546 - ]], - [[ - 9509, - 9648, - 9510 - ]], - [[ - 9514, - 9508, - 9518 - ]], - [[ - 9514, - 9509, - 9508 - ]], - [[ - 9308, - 9649, - 3630 - ]], - [[ - 9649, - 9571, - 9650 - ]], - [[ - 9379, - 9417, - 9651 - ]], - [[ - 9472, - 9393, - 9417 - ]], - [[ - 9492, - 9175, - 9177 - ]], - [[ - 9493, - 9300, - 9175 - ]], - [[ - 9564, - 9523, - 9522 - ]], - [[ - 9563, - 9388, - 9465 - ]], - [[ - 9594, - 9611, - 9405 - ]], - [[ - 9412, - 9454, - 9172 - ]], - [[ - 9481, - 9406, - 9408 - ]], - [[ - 9481, - 9323, - 9322 - ]], - [[ - 9405, - 9611, - 9408 - ]], - [[ - 9455, - 9454, - 9412 - ]], - [[ - 9641, - 9492, - 9177 - ]], - [[ - 9596, - 9488, - 9494 - ]], - [[ - 9597, - 9641, - 9177 - ]], - [[ - 9597, - 9486, - 9596 - ]], - [[ - 9363, - 9368, - 9327 - ]], - [[ - 9366, - 9365, - 9368 - ]], - [[ - 9233, - 9235, - 9605 - ]], - [[ - 9605, - 9515, - 9230 - ]], - [[ - 9233, - 9648, - 9509 - ]], - [[ - 9234, - 9514, - 9235 - ]], - [[ - 9544, - 9441, - 9442 - ]], - [[ - 9560, - 3440, - 9441 - ]], - [[ - 9652, - 9543, - 9442 - ]], - [[ - 9279, - 9441, - 9544 - ]], - [[ - 9291, - 9612, - 9370 - ]], - [[ - 9371, - 9460, - 9527 - ]], - [[ - 9539, - 9553, - 9537 - ]], - [[ - 9524, - 9554, - 9553 - ]], - [[ - 9224, - 9498, - 9289 - ]], - [[ - 9275, - 9289, - 9498 - ]], - [[ - 9293, - 9450, - 9449 - ]], - [[ - 9293, - 9498, - 9450 - ]], - [[ - 9470, - 9653, - 9467 - ]], - [[ - 9654, - 9655, - 9656 - ]], - [[ - 9643, - 9466, - 9314 - ]], - [[ - 9467, - 9653, - 9468 - ]], - [[ - 9656, - 9657, - 9658 - ]], - [[ - 9659, - 9660, - 9661 - ]], - [[ - 9569, - 9662, - 9663 - ]], - [[ - 9622, - 9568, - 9663 - ]], - [[ - 9524, - 9426, - 9425 - ]], - [[ - 9539, - 9411, - 9426 - ]], - [[ - 9552, - 9610, - 9442 - ]], - [[ - 9512, - 9229, - 9543 - ]], - [[ - 9608, - 9499, - 9501 - ]], - [[ - 9608, - 9440, - 9229 - ]], - [[ - 9648, - 9664, - 9547 - ]], - [[ - 9609, - 9442, - 9610 - ]], - [[ - 9405, - 9322, - 9496 - ]], - [[ - 9406, - 9481, - 9322 - ]], - [[ - 9635, - 9636, - 9639 - ]], - [[ - 9480, - 9592, - 9636 - ]], - [[ - 9590, - 9635, - 9639 - ]], - [[ - 9595, - 9480, - 9635 - ]], - [[ - 9470, - 9468, - 9653 - ]], - [[ - 9655, - 9665, - 9656 - ]], - [[ - 9504, - 9448, - 9396 - ]], - [[ - 9395, - 9232, - 9448 - ]], - [[ - 9284, - 9292, - 9615 - ]], - [[ - 9379, - 3441, - 9292 - ]], - [[ - 9410, - 9414, - 9483 - ]], - [[ - 9413, - 9464, - 9414 - ]], - [[ - 9645, - 9644, - 9623 - ]], - [[ - 9666, - 9627, - 9667 - ]], - [[ - 9293, - 9276, - 9275 - ]], - [[ - 9446, - 9438, - 9276 - ]], - [[ - 9579, - 9668, - 9644 - ]], - [[ - 9310, - 9623, - 9644 - ]], - [[ - 9626, - 9632, - 9578 - ]], - [[ - 9584, - 9565, - 9632 - ]], - [[ - 9566, - 9583, - 9585 - ]], - [[ - 9626, - 9580, - 9602 - ]], - [[ - 9584, - 9626, - 9583 - ]], - [[ - 9584, - 9632, - 9626 - ]], - [[ - 9574, - 9581, - 9634 - ]], - [[ - 9575, - 9577, - 9581 - ]], - [[ - 9325, - 9383, - 9394 - ]], - [[ - 9382, - 9416, - 9394 - ]], - [[ - 9415, - 9384, - 9325 - ]], - [[ - 9415, - 9382, - 9384 - ]], - [[ - 9669, - 9613, - 9612 - ]], - [[ - 9303, - 9555, - 9423 - ]], - [[ - 9555, - 9613, - 9556 - ]], - [[ - 9612, - 9291, - 9669 - ]], - [[ - 9670, - 9336, - 9338 - ]], - [[ - 9390, - 3553, - 9391 - ]], - [[ - 9491, - 9671, - 9374 - ]], - [[ - 9491, - 9489, - 9672 - ]], - [[ - 9490, - 9373, - 9372 - ]], - [[ - 9390, - 9336, - 9670 - ]], - [[ - 9390, - 9482, - 9336 - ]], - [[ - 9482, - 9671, - 9540 - ]], - [[ - 9557, - 9390, - 9670 - ]], - [[ - 9374, - 9671, - 9482 - ]], - [[ - 9338, - 9557, - 9670 - ]], - [[ - 9535, - 9532, - 9536 - ]], - [[ - 9338, - 9535, - 9557 - ]], - [[ - 9338, - 9528, - 9530 - ]], - [[ - 9526, - 9531, - 9495 - ]], - [[ - 9528, - 9337, - 9541 - ]], - [[ - 9673, - 9643, - 9642 - ]], - [[ - 9673, - 9466, - 9643 - ]], - [[ - 3553, - 9534, - 9637 - ]], - [[ - 3553, - 9557, - 9534 - ]], - [[ - 9674, - 9658, - 9468 - ]], - [[ - 9675, - 3431, - 9676 - ]], - [[ - 9521, - 9288, - 9520 - ]], - [[ - 9277, - 9276, - 9437 - ]], - [[ - 9289, - 9277, - 9288 - ]], - [[ - 9276, - 9438, - 9437 - ]], - [[ - 9677, - 9678, - 9679 - ]], - [[ - 9562, - 9680, - 9252 - ]], - [[ - 9548, - 9681, - 9610 - ]], - [[ - 9500, - 9499, - 9512 - ]], - [[ - 9447, - 9682, - 9233 - ]], - [[ - 9235, - 9513, - 9605 - ]], - [[ - 9476, - 9473, - 9432 - ]], - [[ - 9354, - 9353, - 9473 - ]], - [[ - 9290, - 9669, - 9683 - ]], - [[ - 9612, - 9303, - 9370 - ]], - [[ - 3579, - 9291, - 3632 - ]], - [[ - 9683, - 9669, - 9291 - ]], - [[ - 9288, - 9277, - 9437 - ]], - [[ - 9289, - 9275, - 9277 - ]], - [[ - 9684, - 9685, - 9686 - ]], - [[ - 9674, - 9468, - 9470 - ]], - [[ - 9679, - 9687, - 9688 - ]], - [[ - 9689, - 9291, - 9370 - ]], - [[ - 9589, - 9690, - 9691 - ]], - [[ - 9691, - 9692, - 9527 - ]], - [[ - 9290, - 9558, - 9669 - ]], - [[ - 9556, - 9613, - 9669 - ]], - [[ - 9693, - 9660, - 9659 - ]], - [[ - 9694, - 9675, - 9695 - ]], - [[ - 9569, - 9655, - 9662 - ]], - [[ - 9569, - 9663, - 9568 - ]], - [[ - 9325, - 9394, - 9378 - ]], - [[ - 9383, - 9382, - 9394 - ]], - [[ - 9414, - 9456, - 9483 - ]], - [[ - 9414, - 9457, - 9456 - ]], - [[ - 9696, - 9697, - 9428 - ]], - [[ - 9666, - 9624, - 9627 - ]], - [[ - 9660, - 9698, - 9661 - ]], - [[ - 9661, - 3431, - 9694 - ]], - [[ - 9293, - 9699, - 9226 - ]], - [[ - 9224, - 9289, - 9225 - ]], - [[ - 9293, - 9449, - 9699 - ]], - [[ - 9450, - 9498, - 9224 - ]], - [[ - 9518, - 9238, - 9514 - ]], - [[ - 9237, - 9604, - 9513 - ]], - [[ - 9604, - 9237, - 9236 - ]], - [[ - 9513, - 9514, - 9238 - ]], - [[ - 9281, - 9561, - 9441 - ]], - [[ - 9561, - 9280, - 9293 - ]], - [[ - 9700, - 9358, - 9207 - ]], - [[ - 9358, - 9213, - 9215 - ]], - [[ - 9701, - 9700, - 9634 - ]], - [[ - 9701, - 9582, - 9213 - ]], - [[ - 9581, - 9701, - 9634 - ]], - [[ - 9581, - 9582, - 9701 - ]], - [[ - 9643, - 9314, - 9360 - ]], - [[ - 9466, - 9468, - 9702 - ]], - [[ - 9651, - 9391, - 3441 - ]], - [[ - 9430, - 9372, - 9391 - ]], - [[ - 9517, - 9525, - 9564 - ]], - [[ - 9460, - 9457, - 9525 - ]], - [[ - 9242, - 9507, - 9453 - ]], - [[ - 9506, - 9239, - 9507 - ]], - [[ - 9309, - 9627, - 9624 - ]], - [[ - 9703, - 9704, - 9663 - ]], - [[ - 9666, - 9667, - 9429 - ]], - [[ - 9705, - 9703, - 9663 - ]], - [[ - 9627, - 9620, - 9617 - ]], - [[ - 9621, - 9311, - 9631 - ]], - [[ - 9431, - 9476, - 9432 - ]], - [[ - 9268, - 9434, - 9476 - ]], - [[ - 9599, - 9650, - 9633 - ]], - [[ - 9649, - 9308, - 9571 - ]], - [[ - 9574, - 9706, - 9572 - ]], - [[ - 9633, - 9580, - 9599 - ]], - [[ - 9583, - 9602, - 9585 - ]], - [[ - 9630, - 9572, - 9706 - ]], - [[ - 9214, - 9707, - 9462 - ]], - [[ - 9214, - 9427, - 9215 - ]], - [[ - 9614, - 9555, - 9342 - ]], - [[ - 9614, - 9423, - 9555 - ]], - [[ - 9571, - 9629, - 9650 - ]], - [[ - 9630, - 9706, - 9603 - ]], - [[ - 9369, - 9380, - 9356 - ]], - [[ - 9365, - 9350, - 9380 - ]], - [[ - 9327, - 9369, - 9356 - ]], - [[ - 9368, - 9365, - 9369 - ]], - [[ - 9627, - 9617, - 9667 - ]], - [[ - 9620, - 9676, - 9618 - ]], - [[ - 9688, - 9588, - 9587 - ]], - [[ - 9692, - 9689, - 9370 - ]], - [[ - 9253, - 9688, - 9687 - ]], - [[ - 9688, - 3632, - 9689 - ]], - [[ - 9677, - 9679, - 9587 - ]], - [[ - 9678, - 9687, - 9679 - ]], - [[ - 9662, - 9695, - 9663 - ]], - [[ - 9708, - 9620, - 9619 - ]], - [[ - 9708, - 9704, - 9703 - ]], - [[ - 9704, - 9622, - 9663 - ]], - [[ - 9705, - 9708, - 9703 - ]], - [[ - 9619, - 9622, - 9704 - ]], - [[ - 9443, - 9451, - 9444 - ]], - [[ - 9443, - 9440, - 9451 - ]], - [[ - 9640, - 9597, - 9407 - ]], - [[ - 9639, - 9486, - 9597 - ]], - [[ - 9461, - 9467, - 9466 - ]], - [[ - 9461, - 9469, - 9467 - ]], - [[ - 9398, - 9239, - 9241 - ]], - [[ - 9245, - 9507, - 9239 - ]], - [[ - 9308, - 9607, - 9576 - ]], - [[ - 9308, - 9462, - 9707 - ]], - [[ - 9607, - 9606, - 9577 - ]], - [[ - 9606, - 9308, - 9707 - ]], - [[ - 9222, - 9688, - 9253 - ]], - [[ - 3632, - 9291, - 9689 - ]], - [[ - 9361, - 9568, - 9622 - ]], - [[ - 9616, - 9360, - 9314 - ]], - [[ - 9709, - 9710, - 9317 - ]], - [[ - 9711, - 9712, - 9713 - ]], - [[ - 9395, - 9440, - 9608 - ]], - [[ - 9439, - 9520, - 9440 - ]], - [[ - 9411, - 9410, - 9483 - ]], - [[ - 9409, - 9542, - 9410 - ]], - [[ - 9572, - 9625, - 9573 - ]], - [[ - 9630, - 9629, - 9625 - ]], - [[ - 9203, - 9205, - 9359 - ]], - [[ - 9204, - 9574, - 9634 - ]], - [[ - 9205, - 9204, - 9628 - ]], - [[ - 9706, - 9574, - 9204 - ]], - [[ - 9361, - 9203, - 9359 - ]], - [[ - 9203, - 9586, - 9204 - ]], - [[ - 9513, - 9238, - 9237 - ]], - [[ - 9518, - 9245, - 9238 - ]], - [[ - 9711, - 9714, - 9715 - ]], - [[ - 9716, - 9712, - 9715 - ]], - [[ - 9541, - 9672, - 9593 - ]], - [[ - 9671, - 9491, - 9672 - ]], - [[ - 9479, - 9592, - 9480 - ]], - [[ - 9593, - 9485, - 9484 - ]], - [[ - 9214, - 9606, - 9707 - ]], - [[ - 9607, - 9308, - 9606 - ]], - [[ - 9490, - 9372, - 9430 - ]], - [[ - 9374, - 9482, - 9372 - ]], - [[ - 9409, - 9487, - 9346 - ]], - [[ - 9411, - 9539, - 9347 - ]], - [[ - 9629, - 9633, - 9650 - ]], - [[ - 9603, - 9706, - 9586 - ]], - [[ - 9717, - 9251, - 9253 - ]], - [[ - 9718, - 9678, - 9719 - ]], - [[ - 9719, - 9680, - 9562 - ]], - [[ - 9680, - 9459, - 9252 - ]], - [[ - 9472, - 9416, - 9382 - ]], - [[ - 9472, - 9417, - 9416 - ]], - [[ - 9626, - 9602, - 9583 - ]], - [[ - 9633, - 9629, - 9603 - ]], - [[ - 9311, - 9310, - 9668 - ]], - [[ - 9623, - 9720, - 9645 - ]], - [[ - 9668, - 9310, - 9644 - ]], - [[ - 9309, - 9623, - 9310 - ]], - [[ - 9665, - 9655, - 9569 - ]], - [[ - 9695, - 9708, - 9705 - ]], - [[ - 9354, - 9433, - 9474 - ]], - [[ - 9473, - 9434, - 9433 - ]], - [[ - 9721, - 9659, - 9654 - ]], - [[ - 9659, - 9661, - 9694 - ]], - [[ - 9502, - 9647, - 9551 - ]], - [[ - 9250, - 9646, - 9647 - ]], - [[ - 9251, - 9719, - 9562 - ]], - [[ - 9719, - 9458, - 9680 - ]], - [[ - 9194, - 9317, - 9195 - ]], - [[ - 9317, - 9710, - 9315 - ]], - [[ - 9234, - 9233, - 9509 - ]], - [[ - 9681, - 9511, - 9610 - ]], - [[ - 9233, - 9664, - 9648 - ]], - [[ - 9722, - 9511, - 9681 - ]], - [[ - 9230, - 9233, - 9605 - ]], - [[ - 9230, - 9447, - 9233 - ]], - [[ - 9194, - 9723, - 9724 - ]], - [[ - 9317, - 9316, - 9195 - ]], - [[ - 9725, - 9726, - 9201 - ]], - [[ - 9727, - 9712, - 9728 - ]], - [[ - 9532, - 9530, - 9526 - ]], - [[ - 9535, - 9338, - 9530 - ]], - [[ - 9314, - 9702, - 9312 - ]], - [[ - 9314, - 9466, - 9702 - ]], - [[ - 9479, - 9591, - 9592 - ]], - [[ - 9479, - 9495, - 9591 - ]], - [[ - 9720, - 9429, - 9428 - ]], - [[ - 9667, - 9617, - 9429 - ]], - [[ - 9720, - 9666, - 9429 - ]], - [[ - 9623, - 9624, - 9666 - ]], - [[ - 9402, - 9477, - 9490 - ]], - [[ - 9598, - 9491, - 9373 - ]], - [[ - 9490, - 9477, - 9373 - ]], - [[ - 9402, - 9404, - 9477 - ]], - [[ - 9373, - 9478, - 9598 - ]], - [[ - 9404, - 9488, - 9478 - ]], - [[ - 9285, - 9546, - 9646 - ]], - [[ - 9518, - 9508, - 9546 - ]], - [[ - 9193, - 9723, - 9729 - ]], - [[ - 9195, - 9316, - 9730 - ]], - [[ - 9649, - 9645, - 3630 - ]], - [[ - 9601, - 9644, - 9645 - ]], - [[ - 9348, - 9267, - 9349 - ]], - [[ - 9348, - 9333, - 9267 - ]], - [[ - 9433, - 9354, - 9473 - ]], - [[ - 9474, - 9355, - 9354 - ]], - [[ - 9656, - 9658, - 9693 - ]], - [[ - 9658, - 9698, - 9660 - ]], - [[ - 9663, - 9695, - 9705 - ]], - [[ - 9676, - 9620, - 9708 - ]], - [[ - 9695, - 9675, - 9708 - ]], - [[ - 9618, - 9617, - 9620 - ]], - [[ - 9194, - 9709, - 9317 - ]], - [[ - 9724, - 9731, - 9709 - ]], - [[ - 9723, - 9732, - 9724 - ]], - [[ - 9733, - 9726, - 9728 - ]], - [[ - 9734, - 9735, - 9307 - ]], - [[ - 3444, - 3755, - 9736 - ]], - [[ - 9728, - 9712, - 9737 - ]], - [[ - 9714, - 9738, - 9729 - ]], - [[ - 9594, - 9497, - 9739 - ]], - [[ - 9590, - 9639, - 9497 - ]], - [[ - 9411, - 9347, - 9487 - ]], - [[ - 9539, - 9537, - 9536 - ]], - [[ - 9539, - 9536, - 9347 - ]], - [[ - 9537, - 9533, - 9536 - ]], - [[ - 3776, - 9723, - 9193 - ]], - [[ - 3776, - 9201, - 9723 - ]], - [[ - 9186, - 9713, - 9712 - ]], - [[ - 9713, - 9186, - 9740 - ]], - [[ - 9316, - 9716, - 9730 - ]], - [[ - 9738, - 9740, - 9729 - ]], - [[ - 9730, - 9715, - 9714 - ]], - [[ - 9316, - 9315, - 9737 - ]], - [[ - 9729, - 9730, - 9714 - ]], - [[ - 9196, - 9195, - 9730 - ]], - [[ - 9716, - 9737, - 9712 - ]], - [[ - 9728, - 9726, - 9727 - ]], - [[ - 9730, - 9716, - 9715 - ]], - [[ - 9316, - 9737, - 9716 - ]], - [[ - 9723, - 9731, - 9732 - ]], - [[ - 9201, - 9726, - 9733 - ]], - [[ - 9710, - 9733, - 9315 - ]], - [[ - 9710, - 9731, - 9201 - ]], - [[ - 9731, - 9710, - 9709 - ]], - [[ - 9731, - 9723, - 9201 - ]], - [[ - 9578, - 9632, - 9579 - ]], - [[ - 9565, - 9567, - 9631 - ]], - [[ - 9619, - 9631, - 9567 - ]], - [[ - 9621, - 9627, - 9311 - ]], - [[ - 9729, - 9723, - 9194 - ]], - [[ - 9732, - 9731, - 9724 - ]], - [[ - 9210, - 9734, - 9307 - ]], - [[ - 9741, - 9742, - 3444 - ]], - [[ - 9458, - 9677, - 9419 - ]], - [[ - 9458, - 9719, - 9677 - ]], - [[ - 9611, - 9594, - 9260 - ]], - [[ - 9496, - 9497, - 9594 - ]], - [[ - 9738, - 9711, - 9743 - ]], - [[ - 9715, - 9712, - 9711 - ]], - [[ - 9730, - 9729, - 9196 - ]], - [[ - 9197, - 9193, - 9729 - ]], - [[ - 9711, - 9713, - 9743 - ]], - [[ - 9186, - 9197, - 9740 - ]], - [[ - 9307, - 9735, - 9217 - ]], - [[ - 3755, - 9220, - 9305 - ]], - [[ - 9371, - 9527, - 9692 - ]], - [[ - 9744, - 9688, - 9689 - ]], - [[ - 9691, - 9690, - 9692 - ]], - [[ - 9589, - 9744, - 9692 - ]], - [[ - 9587, - 9589, - 9691 - ]], - [[ - 9744, - 9689, - 9692 - ]], - [[ - 9588, - 9744, - 9589 - ]], - [[ - 9588, - 9688, - 9744 - ]], - [[ - 9736, - 9216, - 9217 - ]], - [[ - 9306, - 9212, - 9211 - ]], - [[ - 9233, - 9682, - 9722 - ]], - [[ - 9447, - 9501, - 9682 - ]], - [[ - 9233, - 9722, - 9664 - ]], - [[ - 9682, - 9501, - 9500 - ]], - [[ - 9722, - 9500, - 9511 - ]], - [[ - 9722, - 9682, - 9500 - ]], - [[ - 9260, - 9351, - 9362 - ]], - [[ - 9739, - 9497, - 9640 - ]], - [[ - 9260, - 9739, - 9351 - ]], - [[ - 9640, - 9407, - 9418 - ]], - [[ - 9664, - 9681, - 9547 - ]], - [[ - 9664, - 9722, - 9681 - ]], - [[ - 9558, - 9556, - 9669 - ]], - [[ - 9554, - 9342, - 9556 - ]], - [[ - 9725, - 9727, - 9726 - ]], - [[ - 9725, - 9712, - 9727 - ]], - [[ - 9315, - 9728, - 9737 - ]], - [[ - 9315, - 9733, - 9728 - ]], - [[ - 3676, - 9209, - 3747 - ]], - [[ - 9735, - 9741, - 9736 - ]], - [[ - 9515, - 9604, - 9236 - ]], - [[ - 9515, - 9605, - 9604 - ]], - [[ - 9658, - 9661, - 9698 - ]], - [[ - 3514, - 3431, - 9661 - ]], - [[ - 9645, - 9696, - 3630 - ]], - [[ - 9645, - 9697, - 9696 - ]], - [[ - 9331, - 9296, - 9330 - ]], - [[ - 9295, - 9362, - 9296 - ]], - [[ - 9645, - 9720, - 9697 - ]], - [[ - 9623, - 9666, - 9720 - ]], - [[ - 9700, - 9628, - 9634 - ]], - [[ - 9643, - 9360, - 9628 - ]], - [[ - 9700, - 9207, - 9628 - ]], - [[ - 9206, - 9461, - 9673 - ]], - [[ - 9206, - 9673, - 9207 - ]], - [[ - 9461, - 9466, - 9673 - ]], - [[ - 9739, - 9640, - 9418 - ]], - [[ - 9497, - 9639, - 9640 - ]], - [[ - 9419, - 9691, - 9527 - ]], - [[ - 9419, - 9587, - 9691 - ]], - [[ - 9702, - 9665, - 9312 - ]], - [[ - 9654, - 9695, - 9655 - ]], - [[ - 9657, - 9665, - 9702 - ]], - [[ - 9656, - 9721, - 9654 - ]], - [[ - 9371, - 9692, - 9370 - ]], - [[ - 9690, - 9589, - 9692 - ]], - [[ - 9452, - 9287, - 9243 - ]], - [[ - 9452, - 9285, - 9287 - ]], - [[ - 9200, - 9725, - 9201 - ]], - [[ - 9186, - 9712, - 9725 - ]], - [[ - 9579, - 9311, - 9668 - ]], - [[ - 9632, - 9631, - 9311 - ]], - [[ - 9687, - 9717, - 9253 - ]], - [[ - 9687, - 9678, - 9718 - ]], - [[ - 9717, - 9718, - 9251 - ]], - [[ - 9717, - 9687, - 9718 - ]], - [[ - 9636, - 9486, - 9639 - ]], - [[ - 9636, - 9592, - 9484 - ]], - [[ - 9210, - 9209, - 9745 - ]], - [[ - 3676, - 3444, - 9209 - ]], - [[ - 9654, - 9659, - 9694 - ]], - [[ - 9721, - 9693, - 9659 - ]], - [[ - 3755, - 9305, - 9736 - ]], - [[ - 9305, - 9211, - 9216 - ]], - [[ - 9693, - 9658, - 9660 - ]], - [[ - 3514, - 9661, - 9658 - ]], - [[ - 9708, - 9619, - 9704 - ]], - [[ - 9567, - 9361, - 9619 - ]], - [[ - 9721, - 9656, - 9693 - ]], - [[ - 9665, - 9657, - 9656 - ]], - [[ - 9680, - 9458, - 9459 - ]], - [[ - 9419, - 9421, - 9458 - ]], - [[ - 9699, - 9224, - 9226 - ]], - [[ - 9699, - 9449, - 9224 - ]], - [[ - 9211, - 9305, - 9306 - ]], - [[ - 9216, - 9736, - 9305 - ]], - [[ - 9711, - 9738, - 9714 - ]], - [[ - 9740, - 9197, - 9729 - ]], - [[ - 9602, - 9586, - 9585 - ]], - [[ - 9706, - 9204, - 9586 - ]], - [[ - 9211, - 9210, - 9307 - ]], - [[ - 9745, - 9742, - 9734 - ]], - [[ - 9468, - 9657, - 9702 - ]], - [[ - 9468, - 9658, - 9657 - ]], - [[ - 9217, - 9735, - 9736 - ]], - [[ - 9742, - 9209, - 3444 - ]], - [[ - 9362, - 9385, - 9363 - ]], - [[ - 9351, - 9321, - 9385 - ]], - [[ - 9340, - 9398, - 9241 - ]], - [[ - 9339, - 9246, - 9398 - ]], - [[ - 9361, - 9616, - 9568 - ]], - [[ - 9361, - 9360, - 9616 - ]], - [[ - 9655, - 9695, - 9662 - ]], - [[ - 9654, - 9694, - 9695 - ]], - [[ - 9417, - 9471, - 9651 - ]], - [[ - 9435, - 9434, - 9471 - ]], - [[ - 9546, - 9548, - 9550 - ]], - [[ - 9547, - 9681, - 9548 - ]], - [[ - 3431, - 9618, - 9676 - ]], - [[ - 3431, - 9429, - 9618 - ]], - [[ - 9736, - 9741, - 3444 - ]], - [[ - 9735, - 9734, - 9741 - ]], - [[ - 9708, - 9675, - 9676 - ]], - [[ - 9694, - 3431, - 9675 - ]], - [[ - 9696, - 9428, - 3630 - ]], - [[ - 9697, - 9720, - 9428 - ]], - [[ - 3553, - 9558, - 3579 - ]], - [[ - 3553, - 9637, - 9558 - ]], - [[ - 9291, - 9290, - 9683 - ]], - [[ - 3579, - 9558, - 9290 - ]], - [[ - 9729, - 9194, - 9196 - ]], - [[ - 9724, - 9709, - 9194 - ]], - [[ - 9636, - 9484, - 9486 - ]], - [[ - 9592, - 9593, - 9484 - ]], - [[ - 9351, - 9739, - 9418 - ]], - [[ - 9260, - 9594, - 9739 - ]], - [[ - 9455, - 9611, - 9260 - ]], - [[ - 9455, - 9412, - 9611 - ]], - [[ - 9710, - 9201, - 9733 - ]], - [[ - 9184, - 9200, - 9746 - ]], - [[ - 9619, - 9621, - 9631 - ]], - [[ - 9620, - 9627, - 9621 - ]], - [[ - 9543, - 9229, - 9228 - ]], - [[ - 9499, - 9608, - 9229 - ]], - [[ - 9440, - 9227, - 9229 - ]], - [[ - 9445, - 9228, - 9227 - ]], - [[ - 9591, - 9541, - 9592 - ]], - [[ - 9672, - 9489, - 9593 - ]], - [[ - 9442, - 9543, - 9544 - ]], - [[ - 9512, - 9499, - 9229 - ]], - [[ - 9652, - 9512, - 9543 - ]], - [[ - 9609, - 9511, - 9512 - ]], - [[ - 9718, - 9719, - 9251 - ]], - [[ - 9678, - 9677, - 9719 - ]], - [[ - 9288, - 9436, - 9520 - ]], - [[ - 9288, - 9437, - 9436 - ]], - [[ - 9677, - 9587, - 9419 - ]], - [[ - 9679, - 9688, - 9587 - ]], - [[ - 9567, - 9203, - 9361 - ]], - [[ - 9566, - 9586, - 9203 - ]], - [[ - 9734, - 9210, - 9745 - ]], - [[ - 9298, - 3747, - 9210 - ]], - [[ - 9633, - 9603, - 9602 - ]], - [[ - 9629, - 9630, - 9603 - ]], - [[ - 9531, - 9541, - 9591 - ]], - [[ - 9337, - 9482, - 9541 - ]], - [[ - 9266, - 9268, - 9476 - ]], - [[ - 9391, - 9434, - 9268 - ]], - [[ - 9379, - 9651, - 3441 - ]], - [[ - 9471, - 9391, - 9651 - ]], - [[ - 9463, - 9465, - 9523 - ]], - [[ - 9388, - 9259, - 9465 - ]], - [[ - 9312, - 9569, - 9313 - ]], - [[ - 9312, - 9665, - 9569 - ]], - [[ - 9573, - 9575, - 9581 - ]], - [[ - 9573, - 9570, - 9575 - ]], - [[ - 9747, - 9748, - 9749 - ]], - [[ - 9750, - 9202, - 9184 - ]], - [[ - 9743, - 9740, - 9738 - ]], - [[ - 9743, - 9713, - 9740 - ]], - [[ - 9725, - 9184, - 9186 - ]], - [[ - 9674, - 3514, - 9658 - ]], - [[ - 9441, - 9561, - 9560 - ]], - [[ - 9281, - 9280, - 9561 - ]], - [[ - 9748, - 9751, - 9752 - ]], - [[ - 9753, - 3776, - 3514 - ]], - [[ - 9751, - 9754, - 9755 - ]], - [[ - 9756, - 3776, - 9753 - ]], - [[ - 9686, - 9752, - 3514 - ]], - [[ - 9757, - 9758, - 9756 - ]], - [[ - 9759, - 9684, - 9686 - ]], - [[ - 9674, - 9185, - 9760 - ]], - [[ - 9482, - 9390, - 9372 - ]], - [[ - 9557, - 3553, - 9390 - ]], - [[ - 9672, - 9540, - 9671 - ]], - [[ - 9672, - 9541, - 9540 - ]], - [[ - 9200, - 9761, - 9762 - ]], - [[ - 9762, - 9763, - 9746 - ]], - [[ - 9207, - 9642, - 9628 - ]], - [[ - 9207, - 9673, - 9642 - ]], - [[ - 9764, - 9765, - 9766 - ]], - [[ - 9758, - 9757, - 9760 - ]], - [[ - 9469, - 9674, - 9470 - ]], - [[ - 9749, - 9686, - 9685 - ]], - [[ - 9597, - 9596, - 9641 - ]], - [[ - 9485, - 9488, - 9596 - ]], - [[ - 9767, - 9202, - 9766 - ]], - [[ - 9760, - 9185, - 9202 - ]], - [[ - 9674, - 9760, - 9749 - ]], - [[ - 9760, - 9757, - 9768 - ]], - [[ - 9185, - 9674, - 9469 - ]], - [[ - 9749, - 9685, - 9674 - ]], - [[ - 9750, - 9764, - 9766 - ]], - [[ - 9763, - 3776, - 9756 - ]], - [[ - 9758, - 9760, - 9202 - ]], - [[ - 9754, - 9747, - 9760 - ]], - [[ - 9765, - 9756, - 9767 - ]], - [[ - 9767, - 9756, - 9758 - ]], - [[ - 9202, - 9750, - 9766 - ]], - [[ - 9746, - 9200, - 9762 - ]], - [[ - 9746, - 9750, - 9184 - ]], - [[ - 9746, - 9764, - 9750 - ]], - [[ - 9763, - 9764, - 9746 - ]], - [[ - 9763, - 9765, - 9764 - ]], - [[ - 9700, - 9213, - 9358 - ]], - [[ - 9700, - 9701, - 9213 - ]], - [[ - 9427, - 9214, - 9462 - ]], - [[ - 9213, - 9582, - 9214 - ]], - [[ - 9748, - 9747, - 9751 - ]], - [[ - 9768, - 9757, - 9753 - ]], - [[ - 9752, - 9753, - 3514 - ]], - [[ - 9752, - 9751, - 9753 - ]], - [[ - 9757, - 9756, - 9753 - ]], - [[ - 9765, - 9763, - 9756 - ]], - [[ - 9202, - 9767, - 9758 - ]], - [[ - 9766, - 9765, - 9767 - ]], - [[ - 9751, - 9755, - 9753 - ]], - [[ - 9754, - 9760, - 9768 - ]], - [[ - 9755, - 9768, - 9753 - ]], - [[ - 9755, - 9754, - 9768 - ]], - [[ - 3776, - 9199, - 9201 - ]], - [[ - 9769, - 9761, - 9199 - ]], - [[ - 3776, - 9769, - 9199 - ]], - [[ - 3776, - 9763, - 9769 - ]], - [[ - 9599, - 9649, - 9650 - ]], - [[ - 9599, - 9645, - 9649 - ]], - [[ - 9769, - 9762, - 9761 - ]], - [[ - 9769, - 9763, - 9762 - ]], - [[ - 9652, - 9609, - 9512 - ]], - [[ - 9652, - 9442, - 9609 - ]], - [[ - 9192, - 9193, - 9198 - ]], - [[ - 3909, - 3776, - 9193 - ]], - [[ - 9734, - 9742, - 9741 - ]], - [[ - 9745, - 9209, - 9742 - ]], - [[ - 9760, - 9747, - 9749 - ]], - [[ - 9754, - 9751, - 9747 - ]], - [[ - 9686, - 9748, - 9752 - ]], - [[ - 9686, - 9749, - 9748 - ]], - [[ - 9725, - 9200, - 9184 - ]], - [[ - 9199, - 9761, - 9200 - ]], - [[ - 3514, - 9759, - 9686 - ]], - [[ - 3514, - 9674, - 9759 - ]], - [[ - 9674, - 9684, - 9759 - ]], - [[ - 9674, - 9685, - 9684 - ]], - [[ - 9688, - 9222, - 3632 - ]], - [[ - 9253, - 9223, - 9222 - ]], - [[ - 9558, - 9559, - 9554 - ]], - [[ - 9638, - 9534, - 9559 - ]], - [[ - 3909, - 9181, - 3737 - ]], - [[ - 9188, - 9191, - 9189 - ]], - [[ - 3909, - 9188, - 9181 - ]], - [[ - 3909, - 9191, - 9188 - ]], - [[ - 9770, - 9503, - 9442 - ]], - [[ - 3440, - 9770, - 9442 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b46c407db-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efe75349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 5644, - 5512, - 5841 - ]], - [[ - 5644, - 5440, - 5650 - ]], - [[ - 5650, - 5446, - 5653 - ]], - [[ - 5653, - 5455, - 5652 - ]], - [[ - 5652, - 5455, - 5459 - ]], - [[ - 5653, - 5450, - 5455 - ]], - [[ - 5653, - 5446, - 5450 - ]], - [[ - 5650, - 5440, - 5446 - ]], - [[ - 5644, - 5488, - 5440 - ]], - [[ - 5644, - 5648, - 5488 - ]], - [[ - 5488, - 5505, - 5475 - ]], - [[ - 5488, - 5648, - 5505 - ]], - [[ - 5644, - 5841, - 5648 - ]], - [[ - 5512, - 5511, - 5841 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b46c42f03-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9771, - 9772, - 9773 - ]], - [[ - 9771, - 9774, - 9775 - ]], - [[ - 9771, - 9776, - 9774 - ]], - [[ - 9774, - 9776, - 9777 - ]], - [[ - 9771, - 9773, - 9776 - ]], - [[ - 9776, - 9773, - 9778 - ]], - [[ - 9772, - 9779, - 9773 - ]], - [[ - 9773, - 9779, - 9780 - ]], - [[ - 9772, - 9781, - 9779 - ]], - [[ - 9779, - 9781, - 9782 - ]], - [[ - 9782, - 9783, - 9784 - ]], - [[ - 9784, - 9785, - 9786 - ]], - [[ - 9784, - 9783, - 9785 - ]], - [[ - 9782, - 9781, - 9783 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b491588b8-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cf749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9787, - 9788, - 9789 - ]], - [[ - 9790, - 8186, - 7932 - ]], - [[ - 9791, - 7934, - 7935 - ]], - [[ - 9791, - 7933, - 7934 - ]], - [[ - 7933, - 9791, - 9792 - ]], - [[ - 9793, - 9794, - 9790 - ]], - [[ - 9795, - 9788, - 9794 - ]], - [[ - 9796, - 7950, - 8186 - ]], - [[ - 9797, - 9793, - 7935 - ]], - [[ - 7936, - 9794, - 9793 - ]], - [[ - 9791, - 9790, - 9792 - ]], - [[ - 7932, - 7933, - 9792 - ]], - [[ - 7936, - 9797, - 7935 - ]], - [[ - 7936, - 9793, - 9797 - ]], - [[ - 7927, - 9795, - 7936 - ]], - [[ - 7927, - 9788, - 9795 - ]], - [[ - 9795, - 9794, - 7936 - ]], - [[ - 9787, - 9789, - 9798 - ]], - [[ - 7927, - 9789, - 9788 - ]], - [[ - 7927, - 7950, - 9789 - ]], - [[ - 9794, - 9799, - 8186 - ]], - [[ - 9799, - 7950, - 9796 - ]], - [[ - 9794, - 9787, - 9799 - ]], - [[ - 9794, - 9788, - 9787 - ]], - [[ - 9792, - 9800, - 7932 - ]], - [[ - 9794, - 8186, - 9790 - ]], - [[ - 9793, - 9801, - 7935 - ]], - [[ - 9801, - 9790, - 9791 - ]], - [[ - 8186, - 9799, - 9796 - ]], - [[ - 9798, - 7950, - 9799 - ]], - [[ - 9787, - 9798, - 9799 - ]], - [[ - 9789, - 7950, - 9798 - ]], - [[ - 9800, - 9790, - 7932 - ]], - [[ - 9800, - 9792, - 9790 - ]], - [[ - 7935, - 9801, - 9791 - ]], - [[ - 9793, - 9790, - 9801 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4915aff8-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef812649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9802, - 9803, - 7754 - ]], - [[ - 9804, - 9805, - 9806 - ]], - [[ - 9802, - 9807, - 9808 - ]], - [[ - 9802, - 7754, - 9809 - ]], - [[ - 9808, - 9807, - 9810 - ]], - [[ - 9802, - 9809, - 9807 - ]], - [[ - 9811, - 9804, - 7755 - ]], - [[ - 9812, - 9813, - 9814 - ]], - [[ - 9815, - 7771, - 9816 - ]], - [[ - 9816, - 7771, - 353 - ]], - [[ - 9817, - 9809, - 9818 - ]], - [[ - 9819, - 2579, - 2578 - ]], - [[ - 9819, - 7755, - 2579 - ]], - [[ - 9819, - 7770, - 7755 - ]], - [[ - 7596, - 7769, - 2578 - ]], - [[ - 7594, - 7596, - 2578 - ]], - [[ - 7592, - 7594, - 2744 - ]], - [[ - 2330, - 2672, - 2621 - ]], - [[ - 9820, - 2409, - 2397 - ]], - [[ - 9820, - 9821, - 2409 - ]], - [[ - 2672, - 9822, - 2340 - ]], - [[ - 2340, - 2740, - 2332 - ]], - [[ - 9822, - 2329, - 2740 - ]], - [[ - 2328, - 2330, - 2621 - ]], - [[ - 2329, - 9822, - 2330 - ]], - [[ - 9823, - 2756, - 2328 - ]], - [[ - 2621, - 9823, - 2328 - ]], - [[ - 2744, - 7594, - 2756 - ]], - [[ - 2756, - 7594, - 2578 - ]], - [[ - 9806, - 9805, - 9811 - ]], - [[ - 9806, - 9817, - 9804 - ]], - [[ - 9814, - 9813, - 353 - ]], - [[ - 338, - 7712, - 9812 - ]], - [[ - 2340, - 9822, - 2740 - ]], - [[ - 2672, - 2330, - 9822 - ]], - [[ - 9815, - 9817, - 7771 - ]], - [[ - 9809, - 7754, - 9818 - ]], - [[ - 9813, - 9816, - 353 - ]], - [[ - 9813, - 9812, - 9816 - ]], - [[ - 9809, - 9815, - 9816 - ]], - [[ - 9809, - 9817, - 9815 - ]], - [[ - 9818, - 9804, - 9817 - ]], - [[ - 9811, - 7770, - 7771 - ]], - [[ - 7771, - 9806, - 9811 - ]], - [[ - 7771, - 9817, - 9806 - ]], - [[ - 7755, - 9818, - 7754 - ]], - [[ - 7755, - 9804, - 9818 - ]], - [[ - 2340, - 9820, - 2397 - ]], - [[ - 9821, - 2332, - 2409 - ]], - [[ - 2340, - 9821, - 9820 - ]], - [[ - 2340, - 2332, - 9821 - ]], - [[ - 7769, - 9819, - 2578 - ]], - [[ - 7769, - 7770, - 9819 - ]], - [[ - 2744, - 9823, - 2621 - ]], - [[ - 2744, - 2756, - 9823 - ]], - [[ - 9809, - 9812, - 7712 - ]], - [[ - 9809, - 9816, - 9812 - ]], - [[ - 338, - 9814, - 353 - ]], - [[ - 338, - 9812, - 9814 - ]], - [[ - 7755, - 9824, - 9811 - ]], - [[ - 7755, - 7770, - 9824 - ]], - [[ - 7770, - 9811, - 9824 - ]], - [[ - 9805, - 9804, - 9811 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4916e86b-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2015-01-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.71178dd3a331470b86cb2586a764831b", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2821, - 8729, - 9825 - ]], - [[ - 9825, - 8735, - 8750 - ]], - [[ - 2824, - 9825, - 8750 - ]], - [[ - 2821, - 9825, - 2824 - ]], - [[ - 8729, - 8735, - 9825 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b491736be-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cfe49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 586, - 703, - 579 - ]], - [[ - 586, - 579, - 585 - ]], - [[ - 585, - 579, - 584 - ]], - [[ - 583, - 584, - 579 - ]], - [[ - 583, - 579, - 582 - ]], - [[ - 582, - 579, - 581 - ]], - [[ - 706, - 707, - 579 - ]], - [[ - 579, - 707, - 708 - ]], - [[ - 704, - 705, - 579 - ]], - [[ - 579, - 705, - 706 - ]], - [[ - 703, - 704, - 579 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4918966b-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5ca949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9826, - 9827, - 9828 - ]], - [[ - 9829, - 6796, - 6797 - ]], - [[ - 9830, - 6796, - 9831 - ]], - [[ - 9830, - 9827, - 9832 - ]], - [[ - 9833, - 7042, - 6861 - ]], - [[ - 9834, - 6830, - 6832 - ]], - [[ - 6862, - 9835, - 9836 - ]], - [[ - 9837, - 9838, - 9839 - ]], - [[ - 9836, - 7042, - 9840 - ]], - [[ - 9835, - 9841, - 9842 - ]], - [[ - 9828, - 9830, - 9831 - ]], - [[ - 9843, - 9838, - 9834 - ]], - [[ - 9843, - 9844, - 9839 - ]], - [[ - 9845, - 9846, - 9847 - ]], - [[ - 9847, - 6796, - 9829 - ]], - [[ - 6863, - 9848, - 9841 - ]], - [[ - 6863, - 6830, - 9837 - ]], - [[ - 6796, - 9830, - 6794 - ]], - [[ - 6796, - 9847, - 9831 - ]], - [[ - 9826, - 6833, - 9827 - ]], - [[ - 9832, - 6794, - 9830 - ]], - [[ - 6833, - 9843, - 6832 - ]], - [[ - 9849, - 6830, - 9834 - ]], - [[ - 6797, - 9845, - 9829 - ]], - [[ - 9846, - 9831, - 9847 - ]], - [[ - 9850, - 9840, - 7042 - ]], - [[ - 6862, - 9836, - 9840 - ]], - [[ - 6833, - 9832, - 9827 - ]], - [[ - 6833, - 6794, - 9832 - ]], - [[ - 9850, - 9833, - 6861 - ]], - [[ - 9850, - 7042, - 9833 - ]], - [[ - 6832, - 9843, - 9834 - ]], - [[ - 9839, - 9851, - 9835 - ]], - [[ - 9841, - 9835, - 6862 - ]], - [[ - 9851, - 9852, - 9836 - ]], - [[ - 6862, - 9850, - 6861 - ]], - [[ - 6862, - 9840, - 9850 - ]], - [[ - 9829, - 9845, - 9847 - ]], - [[ - 9852, - 7042, - 9836 - ]], - [[ - 9838, - 9853, - 9849 - ]], - [[ - 9838, - 9837, - 9853 - ]], - [[ - 6863, - 9841, - 6862 - ]], - [[ - 9842, - 9837, - 9839 - ]], - [[ - 6799, - 9845, - 6797 - ]], - [[ - 6799, - 9854, - 9845 - ]], - [[ - 9836, - 9835, - 9851 - ]], - [[ - 9841, - 9848, - 9842 - ]], - [[ - 9854, - 9831, - 9846 - ]], - [[ - 9828, - 7042, - 9852 - ]], - [[ - 6833, - 9844, - 9843 - ]], - [[ - 9828, - 9827, - 9830 - ]], - [[ - 9845, - 9854, - 9846 - ]], - [[ - 6799, - 9831, - 9854 - ]], - [[ - 9839, - 9826, - 9851 - ]], - [[ - 9826, - 9828, - 9852 - ]], - [[ - 9851, - 9826, - 9852 - ]], - [[ - 9844, - 6833, - 9826 - ]], - [[ - 9843, - 9839, - 9838 - ]], - [[ - 9844, - 9826, - 9839 - ]], - [[ - 9835, - 9842, - 9839 - ]], - [[ - 9848, - 6863, - 9842 - ]], - [[ - 6863, - 9837, - 9842 - ]], - [[ - 6830, - 9853, - 9837 - ]], - [[ - 6799, - 9828, - 9831 - ]], - [[ - 6799, - 7042, - 9828 - ]], - [[ - 9838, - 9849, - 9834 - ]], - [[ - 9853, - 6830, - 9849 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4918e3d0-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5c1f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9855, - 279, - 266 - ]], - [[ - 9856, - 266, - 267 - ]], - [[ - 269, - 9857, - 267 - ]], - [[ - 269, - 279, - 9858 - ]], - [[ - 9859, - 9858, - 9860 - ]], - [[ - 9858, - 279, - 9860 - ]], - [[ - 9857, - 9858, - 267 - ]], - [[ - 9860, - 266, - 9856 - ]], - [[ - 9856, - 9859, - 9860 - ]], - [[ - 9857, - 269, - 9858 - ]], - [[ - 9860, - 9855, - 266 - ]], - [[ - 9860, - 279, - 9855 - ]], - [[ - 267, - 9859, - 9856 - ]], - [[ - 267, - 9858, - 9859 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4919a79b-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cfc49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 139, - 9861, - 138 - ]], - [[ - 135, - 136, - 134 - ]], - [[ - 136, - 131, - 134 - ]], - [[ - 131, - 132, - 133 - ]], - [[ - 134, - 131, - 133 - ]], - [[ - 136, - 137, - 131 - ]], - [[ - 138, - 129, - 130 - ]], - [[ - 128, - 129, - 9862 - ]], - [[ - 9862, - 129, - 9861 - ]], - [[ - 9861, - 129, - 138 - ]], - [[ - 130, - 137, - 138 - ]], - [[ - 130, - 131, - 137 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b491d7828-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef814849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9863, - 8611, - 8610 - ]], - [[ - 9863, - 8610, - 8613 - ]], - [[ - 8606, - 9863, - 8613 - ]], - [[ - 8606, - 8611, - 9863 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4920103c-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef749a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9864, - 9865, - 9866 - ]], - [[ - 9867, - 9864, - 9866 - ]], - [[ - 9868, - 9866, - 9869 - ]], - [[ - 9865, - 9870, - 9871 - ]], - [[ - 9872, - 9873, - 9874 - ]], - [[ - 9872, - 9866, - 9868 - ]], - [[ - 9873, - 9872, - 9868 - ]], - [[ - 9875, - 9876, - 9867 - ]], - [[ - 9877, - 9878, - 9875 - ]], - [[ - 9875, - 9879, - 9876 - ]], - [[ - 9875, - 9878, - 9879 - ]], - [[ - 9871, - 9872, - 9874 - ]], - [[ - 9876, - 9880, - 9867 - ]], - [[ - 9870, - 9865, - 9881 - ]], - [[ - 9882, - 9878, - 9877 - ]], - [[ - 9875, - 9883, - 9877 - ]], - [[ - 9871, - 9874, - 9869 - ]], - [[ - 9866, - 9865, - 9869 - ]], - [[ - 9880, - 9864, - 9867 - ]], - [[ - 9880, - 9882, - 9864 - ]], - [[ - 9864, - 9882, - 9877 - ]], - [[ - 9880, - 9878, - 9882 - ]], - [[ - 9877, - 9883, - 9881 - ]], - [[ - 9875, - 9872, - 9883 - ]], - [[ - 9883, - 9870, - 9881 - ]], - [[ - 9883, - 9871, - 9870 - ]], - [[ - 9865, - 9871, - 9869 - ]], - [[ - 9883, - 9872, - 9871 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b492196f9-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef505449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 559, - 476, - 558 - ]], - [[ - 559, - 474, - 476 - ]], - [[ - 559, - 475, - 474 - ]], - [[ - 9884, - 9885, - 9886 - ]], - [[ - 9887, - 9888, - 9889 - ]], - [[ - 9890, - 479, - 480 - ]], - [[ - 9891, - 475, - 559 - ]], - [[ - 450, - 479, - 9892 - ]], - [[ - 9893, - 479, - 9890 - ]], - [[ - 9894, - 8492, - 8493 - ]], - [[ - 8427, - 8428, - 8746 - ]], - [[ - 9895, - 8490, - 8436 - ]], - [[ - 9895, - 8436, - 8437 - ]], - [[ - 9896, - 9897, - 9889 - ]], - [[ - 9898, - 9899, - 9900 - ]], - [[ - 8435, - 8434, - 9901 - ]], - [[ - 8435, - 9901, - 8445 - ]], - [[ - 9902, - 9886, - 9903 - ]], - [[ - 9904, - 9905, - 8746 - ]], - [[ - 9906, - 9907, - 9908 - ]], - [[ - 8426, - 8442, - 8424 - ]], - [[ - 9909, - 8426, - 8427 - ]], - [[ - 9910, - 8443, - 8442 - ]], - [[ - 9911, - 9912, - 8442 - ]], - [[ - 9911, - 9913, - 9912 - ]], - [[ - 9902, - 9914, - 9915 - ]], - [[ - 8428, - 560, - 8746 - ]], - [[ - 9912, - 9913, - 8429 - ]], - [[ - 9903, - 560, - 8429 - ]], - [[ - 8429, - 560, - 8428 - ]], - [[ - 8492, - 9916, - 8490 - ]], - [[ - 8492, - 9893, - 9917 - ]], - [[ - 8436, - 9918, - 9919 - ]], - [[ - 8436, - 8490, - 9900 - ]], - [[ - 466, - 9892, - 9920 - ]], - [[ - 466, - 450, - 9892 - ]], - [[ - 9921, - 9897, - 9896 - ]], - [[ - 9889, - 9888, - 559 - ]], - [[ - 9922, - 9899, - 9898 - ]], - [[ - 9903, - 559, - 560 - ]], - [[ - 9919, - 8434, - 8436 - ]], - [[ - 9923, - 8490, - 9924 - ]], - [[ - 9922, - 9898, - 9885 - ]], - [[ - 9889, - 559, - 9925 - ]], - [[ - 8747, - 9904, - 8746 - ]], - [[ - 9904, - 9926, - 9905 - ]], - [[ - 475, - 9891, - 480 - ]], - [[ - 8492, - 9894, - 9893 - ]], - [[ - 9893, - 9927, - 479 - ]], - [[ - 9928, - 479, - 9927 - ]], - [[ - 9916, - 9921, - 8490 - ]], - [[ - 9929, - 9897, - 9921 - ]], - [[ - 9930, - 9931, - 9884 - ]], - [[ - 9896, - 9924, - 9921 - ]], - [[ - 9914, - 9901, - 9915 - ]], - [[ - 9932, - 9898, - 9925 - ]], - [[ - 9903, - 9925, - 559 - ]], - [[ - 9932, - 9885, - 9898 - ]], - [[ - 9886, - 9933, - 9903 - ]], - [[ - 9886, - 9885, - 9934 - ]], - [[ - 8746, - 9905, - 9909 - ]], - [[ - 9935, - 8747, - 9936 - ]], - [[ - 9905, - 9926, - 8426 - ]], - [[ - 8747, - 8443, - 9936 - ]], - [[ - 9906, - 9926, - 9937 - ]], - [[ - 9904, - 8747, - 9935 - ]], - [[ - 9919, - 9915, - 8434 - ]], - [[ - 8444, - 8445, - 9901 - ]], - [[ - 9913, - 9903, - 8429 - ]], - [[ - 9933, - 9925, - 9903 - ]], - [[ - 9938, - 9889, - 9925 - ]], - [[ - 9897, - 9929, - 9889 - ]], - [[ - 9893, - 9891, - 9917 - ]], - [[ - 9890, - 480, - 9891 - ]], - [[ - 9884, - 9931, - 9885 - ]], - [[ - 9899, - 8436, - 9900 - ]], - [[ - 8425, - 9912, - 8429 - ]], - [[ - 8444, - 9901, - 9914 - ]], - [[ - 9920, - 9928, - 9927 - ]], - [[ - 9892, - 479, - 9928 - ]], - [[ - 9939, - 9893, - 9894 - ]], - [[ - 9920, - 9927, - 9893 - ]], - [[ - 9900, - 8490, - 9923 - ]], - [[ - 8490, - 9921, - 9924 - ]], - [[ - 8746, - 9909, - 8427 - ]], - [[ - 9905, - 8426, - 9909 - ]], - [[ - 9915, - 9919, - 9918 - ]], - [[ - 9918, - 9899, - 9931 - ]], - [[ - 8424, - 9912, - 8425 - ]], - [[ - 8424, - 8442, - 9912 - ]], - [[ - 9940, - 9915, - 9918 - ]], - [[ - 9915, - 9901, - 8434 - ]], - [[ - 9902, - 9903, - 9914 - ]], - [[ - 9940, - 9941, - 9902 - ]], - [[ - 9898, - 9923, - 9938 - ]], - [[ - 9898, - 9900, - 9923 - ]], - [[ - 9923, - 9896, - 9938 - ]], - [[ - 9923, - 9924, - 9896 - ]], - [[ - 9898, - 9938, - 9925 - ]], - [[ - 9896, - 9889, - 9938 - ]], - [[ - 9891, - 9893, - 9890 - ]], - [[ - 9939, - 8493, - 9920 - ]], - [[ - 9926, - 9906, - 8426 - ]], - [[ - 9942, - 8443, - 9907 - ]], - [[ - 8444, - 9911, - 8442 - ]], - [[ - 8444, - 9913, - 9911 - ]], - [[ - 9937, - 9935, - 9936 - ]], - [[ - 9926, - 9904, - 9935 - ]], - [[ - 466, - 9920, - 8493 - ]], - [[ - 9892, - 9928, - 9920 - ]], - [[ - 8426, - 9910, - 8442 - ]], - [[ - 9908, - 8443, - 9910 - ]], - [[ - 9933, - 9934, - 9925 - ]], - [[ - 9933, - 9886, - 9934 - ]], - [[ - 9934, - 9932, - 9925 - ]], - [[ - 9934, - 9885, - 9932 - ]], - [[ - 9906, - 9937, - 9936 - ]], - [[ - 9926, - 9935, - 9937 - ]], - [[ - 9916, - 9929, - 9921 - ]], - [[ - 9916, - 9917, - 9887 - ]], - [[ - 9913, - 9914, - 9903 - ]], - [[ - 9913, - 8444, - 9914 - ]], - [[ - 9941, - 9940, - 9918 - ]], - [[ - 9930, - 9884, - 9886 - ]], - [[ - 9931, - 9899, - 9922 - ]], - [[ - 9918, - 8436, - 9899 - ]], - [[ - 9885, - 9931, - 9922 - ]], - [[ - 9941, - 9918, - 9931 - ]], - [[ - 9941, - 9930, - 9902 - ]], - [[ - 9941, - 9931, - 9930 - ]], - [[ - 9940, - 9902, - 9915 - ]], - [[ - 9930, - 9886, - 9902 - ]], - [[ - 9888, - 9917, - 9891 - ]], - [[ - 9916, - 8492, - 9917 - ]], - [[ - 9929, - 9887, - 9889 - ]], - [[ - 9929, - 9916, - 9887 - ]], - [[ - 8491, - 9895, - 8437 - ]], - [[ - 8491, - 8490, - 9895 - ]], - [[ - 8426, - 9906, - 9908 - ]], - [[ - 9942, - 9936, - 8443 - ]], - [[ - 9906, - 9942, - 9907 - ]], - [[ - 9906, - 9936, - 9942 - ]], - [[ - 8426, - 9908, - 9910 - ]], - [[ - 9907, - 8443, - 9908 - ]], - [[ - 559, - 9888, - 9891 - ]], - [[ - 9887, - 9917, - 9888 - ]], - [[ - 9893, - 9939, - 9920 - ]], - [[ - 9894, - 8493, - 9939 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b49220b8c-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5caa49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9943, - 6905, - 6900 - ]], - [[ - 9944, - 9945, - 6902 - ]], - [[ - 6903, - 9944, - 6902 - ]], - [[ - 6903, - 6905, - 9946 - ]], - [[ - 6902, - 9943, - 6900 - ]], - [[ - 9945, - 9946, - 9943 - ]], - [[ - 6902, - 9945, - 9943 - ]], - [[ - 9946, - 6905, - 9943 - ]], - [[ - 9947, - 9946, - 9945 - ]], - [[ - 9947, - 6903, - 9946 - ]], - [[ - 9944, - 9947, - 9945 - ]], - [[ - 9944, - 6903, - 9947 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4922cf69-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cf649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9948, - 9949, - 9950 - ]], - [[ - 9951, - 9952, - 168 - ]], - [[ - 9953, - 168, - 9954 - ]], - [[ - 9955, - 170, - 9956 - ]], - [[ - 9952, - 9957, - 9958 - ]], - [[ - 9952, - 9959, - 7916 - ]], - [[ - 9960, - 167, - 9961 - ]], - [[ - 9961, - 167, - 9958 - ]], - [[ - 9958, - 167, - 9952 - ]], - [[ - 9957, - 921, - 9962 - ]], - [[ - 7915, - 7916, - 9963 - ]], - [[ - 1821, - 1823, - 7916 - ]], - [[ - 171, - 9949, - 170 - ]], - [[ - 171, - 9950, - 9949 - ]], - [[ - 9954, - 9955, - 9956 - ]], - [[ - 169, - 170, - 9955 - ]], - [[ - 168, - 9952, - 167 - ]], - [[ - 9964, - 9965, - 9949 - ]], - [[ - 9966, - 9956, - 170 - ]], - [[ - 9966, - 9965, - 9956 - ]], - [[ - 9967, - 9960, - 976 - ]], - [[ - 166, - 167, - 9960 - ]], - [[ - 9963, - 9959, - 9948 - ]], - [[ - 168, - 9953, - 9965 - ]], - [[ - 169, - 9954, - 168 - ]], - [[ - 169, - 9955, - 9954 - ]], - [[ - 9962, - 9961, - 9958 - ]], - [[ - 976, - 9960, - 9961 - ]], - [[ - 7916, - 9957, - 9952 - ]], - [[ - 9957, - 9962, - 9958 - ]], - [[ - 9956, - 9953, - 9954 - ]], - [[ - 9956, - 9965, - 9953 - ]], - [[ - 166, - 9967, - 976 - ]], - [[ - 166, - 9960, - 9967 - ]], - [[ - 9949, - 9966, - 170 - ]], - [[ - 9949, - 9965, - 9966 - ]], - [[ - 1823, - 9957, - 7916 - ]], - [[ - 1823, - 921, - 9957 - ]], - [[ - 976, - 9962, - 921 - ]], - [[ - 976, - 9961, - 9962 - ]], - [[ - 9949, - 9959, - 9964 - ]], - [[ - 9963, - 7916, - 9959 - ]], - [[ - 9965, - 9964, - 168 - ]], - [[ - 9959, - 9952, - 9951 - ]], - [[ - 9964, - 9951, - 168 - ]], - [[ - 9964, - 9959, - 9951 - ]], - [[ - 9963, - 9948, - 9950 - ]], - [[ - 9959, - 9949, - 9948 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4924564a-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef663949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9968, - 9969, - 9970 - ]], - [[ - 9968, - 9970, - 9971 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b492762e2-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cf549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9972, - 8006, - 8007 - ]], - [[ - 8007, - 8008, - 8009 - ]], - [[ - 8010, - 8007, - 8009 - ]], - [[ - 9972, - 8007, - 8010 - ]], - [[ - 8011, - 9972, - 8010 - ]], - [[ - 8011, - 8006, - 9972 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b492910e5-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef501549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9973, - 235, - 9974 - ]], - [[ - 9975, - 259, - 232 - ]], - [[ - 9976, - 277, - 259 - ]], - [[ - 9977, - 9978, - 259 - ]], - [[ - 9979, - 277, - 9976 - ]], - [[ - 9975, - 9980, - 259 - ]], - [[ - 259, - 9981, - 9976 - ]], - [[ - 9978, - 9981, - 259 - ]], - [[ - 9982, - 9983, - 9976 - ]], - [[ - 9976, - 9981, - 9982 - ]], - [[ - 9984, - 277, - 9979 - ]], - [[ - 9983, - 9985, - 9979 - ]], - [[ - 9984, - 9974, - 9986 - ]], - [[ - 9987, - 9988, - 232 - ]], - [[ - 9989, - 9978, - 9980 - ]], - [[ - 9980, - 9978, - 9977 - ]], - [[ - 9981, - 9990, - 9982 - ]], - [[ - 9984, - 9986, - 277 - ]], - [[ - 235, - 277, - 9986 - ]], - [[ - 9983, - 9984, - 9985 - ]], - [[ - 9974, - 235, - 9986 - ]], - [[ - 9983, - 9973, - 9984 - ]], - [[ - 9983, - 9982, - 9990 - ]], - [[ - 9983, - 9979, - 9976 - ]], - [[ - 9985, - 9984, - 9979 - ]], - [[ - 9991, - 9990, - 9978 - ]], - [[ - 9990, - 9973, - 9983 - ]], - [[ - 9984, - 9973, - 9974 - ]], - [[ - 230, - 235, - 9973 - ]], - [[ - 9987, - 9991, - 9988 - ]], - [[ - 230, - 9973, - 9991 - ]], - [[ - 9978, - 9990, - 9981 - ]], - [[ - 9991, - 9973, - 9990 - ]], - [[ - 9988, - 9975, - 232 - ]], - [[ - 9989, - 9991, - 9978 - ]], - [[ - 259, - 9980, - 9977 - ]], - [[ - 9975, - 9988, - 9989 - ]], - [[ - 9975, - 9989, - 9980 - ]], - [[ - 9988, - 9991, - 9989 - ]], - [[ - 230, - 9987, - 232 - ]], - [[ - 230, - 9991, - 9987 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4929fae4-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef8a1049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9074, - 9068, - 9067 - ]], - [[ - 9068, - 9065, - 9067 - ]], - [[ - 9068, - 9072, - 9065 - ]], - [[ - 9068, - 9073, - 9072 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b492abedc-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "onverhard", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef928049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 9992, - 9993, - 9994 - ]], - [[ - 9995, - 9996, - 9997 - ]], - [[ - 9995, - 9998, - 9999 - ]], - [[ - 1376, - 10000, - 1374 - ]], - [[ - 10001, - 10002, - 10003 - ]], - [[ - 1376, - 10001, - 10000 - ]], - [[ - 10001, - 10003, - 10004 - ]], - [[ - 10005, - 10006, - 10001 - ]], - [[ - 10005, - 8172, - 8173 - ]], - [[ - 10004, - 10005, - 10001 - ]], - [[ - 1010, - 1008, - 994 - ]], - [[ - 10007, - 10008, - 10009 - ]], - [[ - 994, - 10010, - 902 - ]], - [[ - 994, - 1008, - 10010 - ]], - [[ - 10011, - 7247, - 10012 - ]], - [[ - 10013, - 7246, - 10014 - ]], - [[ - 10015, - 10016, - 10017 - ]], - [[ - 10018, - 7243, - 7245 - ]], - [[ - 10019, - 7244, - 7243 - ]], - [[ - 10020, - 10021, - 10022 - ]], - [[ - 10023, - 10024, - 10017 - ]], - [[ - 10025, - 10026, - 10027 - ]], - [[ - 10016, - 10028, - 10027 - ]], - [[ - 10029, - 10030, - 10031 - ]], - [[ - 10032, - 10007, - 10033 - ]], - [[ - 10034, - 10035, - 10036 - ]], - [[ - 10037, - 646, - 10038 - ]], - [[ - 645, - 646, - 10039 - ]], - [[ - 10040, - 645, - 10039 - ]], - [[ - 10041, - 9994, - 9993 - ]], - [[ - 644, - 10041, - 10042 - ]], - [[ - 10043, - 10033, - 10044 - ]], - [[ - 10045, - 9993, - 9992 - ]], - [[ - 10045, - 9992, - 10046 - ]], - [[ - 9992, - 10040, - 10047 - ]], - [[ - 10047, - 10040, - 10039 - ]], - [[ - 10043, - 10044, - 10048 - ]], - [[ - 10049, - 10050, - 10025 - ]], - [[ - 10051, - 10049, - 10025 - ]], - [[ - 10052, - 10051, - 10025 - ]], - [[ - 10053, - 10052, - 10025 - ]], - [[ - 10054, - 10053, - 10025 - ]], - [[ - 10055, - 10054, - 10025 - ]], - [[ - 10056, - 10055, - 10025 - ]], - [[ - 10057, - 10056, - 10025 - ]], - [[ - 10058, - 10057, - 10025 - ]], - [[ - 10025, - 10059, - 10060 - ]], - [[ - 10060, - 10058, - 10025 - ]], - [[ - 10025, - 10029, - 10059 - ]], - [[ - 10061, - 10059, - 10029 - ]], - [[ - 10031, - 10061, - 10029 - ]], - [[ - 10030, - 10029, - 10062 - ]], - [[ - 10062, - 10029, - 10063 - ]], - [[ - 10063, - 10029, - 10064 - ]], - [[ - 10064, - 10029, - 10065 - ]], - [[ - 10029, - 10066, - 10067 - ]], - [[ - 10029, - 10068, - 10066 - ]], - [[ - 10029, - 10069, - 10068 - ]], - [[ - 10029, - 10070, - 10069 - ]], - [[ - 10029, - 10071, - 10070 - ]], - [[ - 10029, - 10072, - 10071 - ]], - [[ - 10029, - 10073, - 10072 - ]], - [[ - 10029, - 10074, - 10073 - ]], - [[ - 10029, - 10075, - 10074 - ]], - [[ - 10029, - 10076, - 10075 - ]], - [[ - 10029, - 10077, - 10076 - ]], - [[ - 10029, - 10078, - 10077 - ]], - [[ - 10029, - 10079, - 10078 - ]], - [[ - 10029, - 10080, - 10081 - ]], - [[ - 10079, - 10029, - 10082 - ]], - [[ - 10083, - 10084, - 10085 - ]], - [[ - 10086, - 10029, - 10087 - ]], - [[ - 10087, - 10088, - 10089 - ]], - [[ - 10089, - 10090, - 10091 - ]], - [[ - 10092, - 10093, - 10094 - ]], - [[ - 10095, - 10091, - 10096 - ]], - [[ - 10097, - 10098, - 10095 - ]], - [[ - 10099, - 10100, - 10098 - ]], - [[ - 10101, - 10102, - 10100 - ]], - [[ - 10103, - 10104, - 10105 - ]], - [[ - 10106, - 10103, - 10102 - ]], - [[ - 10105, - 10107, - 10108 - ]], - [[ - 10108, - 10109, - 10110 - ]], - [[ - 10110, - 10111, - 10112 - ]], - [[ - 10112, - 10113, - 10114 - ]], - [[ - 10114, - 10115, - 10116 - ]], - [[ - 10116, - 10117, - 10118 - ]], - [[ - 10118, - 10119, - 10120 - ]], - [[ - 10120, - 10083, - 10085 - ]], - [[ - 10121, - 10122, - 10123 - ]], - [[ - 10124, - 10125, - 10126 - ]], - [[ - 10127, - 10128, - 10129 - ]], - [[ - 10130, - 10131, - 10132 - ]], - [[ - 10132, - 10133, - 10134 - ]], - [[ - 10135, - 10136, - 10137 - ]], - [[ - 10138, - 10139, - 10140 - ]], - [[ - 10141, - 10142, - 10143 - ]], - [[ - 10144, - 10145, - 10146 - ]], - [[ - 10050, - 10147, - 10025 - ]], - [[ - 10148, - 10149, - 10150 - ]], - [[ - 10151, - 10152, - 10153 - ]], - [[ - 10153, - 10152, - 10154 - ]], - [[ - 10154, - 10152, - 10155 - ]], - [[ - 10156, - 10154, - 10155 - ]], - [[ - 10157, - 10156, - 10155 - ]], - [[ - 10158, - 10026, - 10159 - ]], - [[ - 10159, - 10026, - 10160 - ]], - [[ - 10160, - 10026, - 10161 - ]], - [[ - 10161, - 10026, - 10162 - ]], - [[ - 10162, - 10026, - 10163 - ]], - [[ - 10163, - 10026, - 10164 - ]], - [[ - 10164, - 10026, - 10165 - ]], - [[ - 10165, - 10026, - 10166 - ]], - [[ - 10166, - 10026, - 10167 - ]], - [[ - 10167, - 10026, - 10025 - ]], - [[ - 10168, - 10167, - 10025 - ]], - [[ - 10169, - 10168, - 10025 - ]], - [[ - 10170, - 10169, - 10025 - ]], - [[ - 10171, - 10170, - 10025 - ]], - [[ - 10172, - 10171, - 10025 - ]], - [[ - 10147, - 10172, - 10025 - ]], - [[ - 10173, - 10174, - 10175 - ]], - [[ - 10176, - 10177, - 10178 - ]], - [[ - 10179, - 10180, - 10181 - ]], - [[ - 10179, - 10182, - 10180 - ]], - [[ - 10179, - 10183, - 10182 - ]], - [[ - 10179, - 10184, - 10183 - ]], - [[ - 10179, - 10185, - 10184 - ]], - [[ - 10179, - 10186, - 10185 - ]], - [[ - 10179, - 10187, - 10186 - ]], - [[ - 10179, - 10188, - 10187 - ]], - [[ - 10179, - 10189, - 10188 - ]], - [[ - 10179, - 10190, - 10189 - ]], - [[ - 10179, - 10191, - 10190 - ]], - [[ - 10179, - 10192, - 10191 - ]], - [[ - 10179, - 10193, - 10192 - ]], - [[ - 10179, - 10194, - 10193 - ]], - [[ - 10179, - 10195, - 10194 - ]], - [[ - 10179, - 10196, - 10195 - ]], - [[ - 10179, - 10197, - 10196 - ]], - [[ - 10179, - 10198, - 10197 - ]], - [[ - 10179, - 10199, - 10198 - ]], - [[ - 10179, - 10200, - 10199 - ]], - [[ - 10179, - 10201, - 10200 - ]], - [[ - 10179, - 10202, - 10201 - ]], - [[ - 10148, - 10203, - 10132 - ]], - [[ - 10179, - 10204, - 10202 - ]], - [[ - 10179, - 10205, - 10206 - ]], - [[ - 10204, - 10179, - 10207 - ]], - [[ - 10207, - 10179, - 10206 - ]], - [[ - 10206, - 10205, - 10208 - ]], - [[ - 10208, - 10205, - 10209 - ]], - [[ - 10209, - 10205, - 10210 - ]], - [[ - 10210, - 10205, - 10211 - ]], - [[ - 10211, - 10205, - 10212 - ]], - [[ - 10212, - 10205, - 10213 - ]], - [[ - 10093, - 10205, - 10214 - ]], - [[ - 10093, - 10213, - 10205 - ]], - [[ - 10215, - 10216, - 1016 - ]], - [[ - 10093, - 10217, - 10218 - ]], - [[ - 10093, - 10219, - 10217 - ]], - [[ - 10220, - 10221, - 10144 - ]], - [[ - 10222, - 10223, - 10224 - ]], - [[ - 10144, - 10225, - 10226 - ]], - [[ - 10144, - 10226, - 10227 - ]], - [[ - 10228, - 10229, - 10230 - ]], - [[ - 10226, - 10231, - 10227 - ]], - [[ - 10232, - 10233, - 10234 - ]], - [[ - 10235, - 10230, - 10236 - ]], - [[ - 10233, - 10237, - 10234 - ]], - [[ - 10238, - 10239, - 10240 - ]], - [[ - 10238, - 10240, - 10241 - ]], - [[ - 10238, - 10241, - 10242 - ]], - [[ - 10243, - 10244, - 10245 - ]], - [[ - 10152, - 10246, - 10247 - ]], - [[ - 10139, - 10248, - 10249 - ]], - [[ - 10250, - 10135, - 10251 - ]], - [[ - 10252, - 10253, - 10254 - ]], - [[ - 10255, - 10227, - 10256 - ]], - [[ - 10256, - 10227, - 10257 - ]], - [[ - 10258, - 10259, - 10260 - ]], - [[ - 10261, - 10262, - 10259 - ]], - [[ - 10263, - 10264, - 10262 - ]], - [[ - 10265, - 10266, - 10264 - ]], - [[ - 10267, - 10268, - 10266 - ]], - [[ - 10269, - 10270, - 10268 - ]], - [[ - 10271, - 10085, - 10084 - ]], - [[ - 10119, - 10083, - 10120 - ]], - [[ - 10117, - 10119, - 10118 - ]], - [[ - 10115, - 10117, - 10116 - ]], - [[ - 10082, - 10029, - 10086 - ]], - [[ - 10114, - 10113, - 10115 - ]], - [[ - 10272, - 10179, - 10181 - ]], - [[ - 10112, - 10111, - 10113 - ]], - [[ - 10028, - 10179, - 10273 - ]], - [[ - 10270, - 10274, - 10275 - ]], - [[ - 10111, - 10110, - 10109 - ]], - [[ - 10276, - 10277, - 10275 - ]], - [[ - 10109, - 10108, - 10107 - ]], - [[ - 10173, - 10277, - 10278 - ]], - [[ - 10107, - 10105, - 10104 - ]], - [[ - 10175, - 10279, - 10280 - ]], - [[ - 10104, - 10103, - 10106 - ]], - [[ - 10138, - 10140, - 10280 - ]], - [[ - 10106, - 10102, - 10101 - ]], - [[ - 10249, - 10248, - 10281 - ]], - [[ - 10101, - 10100, - 10099 - ]], - [[ - 10250, - 10251, - 10281 - ]], - [[ - 10099, - 10098, - 10097 - ]], - [[ - 10137, - 10251, - 10135 - ]], - [[ - 10097, - 10095, - 10096 - ]], - [[ - 10137, - 10136, - 10282 - ]], - [[ - 10096, - 10091, - 10090 - ]], - [[ - 10252, - 10254, - 10282 - ]], - [[ - 10090, - 10089, - 10088 - ]], - [[ - 10283, - 10284, - 10179 - ]], - [[ - 10088, - 10087, - 10285 - ]], - [[ - 10286, - 10287, - 10288 - ]], - [[ - 10285, - 10087, - 10029 - ]], - [[ - 10176, - 10287, - 10289 - ]], - [[ - 10081, - 10285, - 10029 - ]], - [[ - 10178, - 10290, - 10291 - ]], - [[ - 10080, - 10029, - 10292 - ]], - [[ - 10293, - 10294, - 10291 - ]], - [[ - 10292, - 10028, - 10295 - ]], - [[ - 10296, - 10294, - 10297 - ]], - [[ - 10295, - 10028, - 10273 - ]], - [[ - 10298, - 10299, - 10300 - ]], - [[ - 10273, - 10179, - 10301 - ]], - [[ - 10302, - 10299, - 10303 - ]], - [[ - 10301, - 10179, - 10304 - ]], - [[ - 10302, - 10305, - 10181 - ]], - [[ - 10304, - 10179, - 10306 - ]], - [[ - 10296, - 10307, - 10300 - ]], - [[ - 10306, - 10179, - 10284 - ]], - [[ - 10308, - 10309, - 10288 - ]], - [[ - 10308, - 10254, - 10253 - ]], - [[ - 10179, - 10310, - 10283 - ]], - [[ - 10249, - 10140, - 10139 - ]], - [[ - 10310, - 10179, - 10311 - ]], - [[ - 10311, - 10179, - 10312 - ]], - [[ - 10312, - 10179, - 10313 - ]], - [[ - 10313, - 10179, - 10272 - ]], - [[ - 10272, - 10181, - 10305 - ]], - [[ - 10305, - 10302, - 10303 - ]], - [[ - 10303, - 10299, - 10298 - ]], - [[ - 10298, - 10300, - 10307 - ]], - [[ - 10307, - 10296, - 10297 - ]], - [[ - 10297, - 10294, - 10293 - ]], - [[ - 10293, - 10291, - 10290 - ]], - [[ - 10290, - 10178, - 10177 - ]], - [[ - 10177, - 10176, - 10289 - ]], - [[ - 10289, - 10287, - 10286 - ]], - [[ - 10286, - 10288, - 10309 - ]], - [[ - 10309, - 10308, - 10253 - ]], - [[ - 10136, - 10252, - 10282 - ]], - [[ - 10255, - 10314, - 10227 - ]], - [[ - 10314, - 10144, - 10227 - ]], - [[ - 10248, - 10250, - 10281 - ]], - [[ - 10315, - 10144, - 10314 - ]], - [[ - 10316, - 10317, - 10144 - ]], - [[ - 10279, - 10138, - 10280 - ]], - [[ - 10174, - 10279, - 10175 - ]], - [[ - 10278, - 10174, - 10173 - ]], - [[ - 10276, - 10278, - 10277 - ]], - [[ - 10274, - 10276, - 10275 - ]], - [[ - 10269, - 10274, - 10270 - ]], - [[ - 10267, - 10269, - 10268 - ]], - [[ - 10265, - 10267, - 10266 - ]], - [[ - 10263, - 10265, - 10264 - ]], - [[ - 10262, - 10261, - 10263 - ]], - [[ - 10259, - 10258, - 10261 - ]], - [[ - 10260, - 10257, - 10227 - ]], - [[ - 10258, - 10260, - 10227 - ]], - [[ - 10132, - 10318, - 10319 - ]], - [[ - 10320, - 10258, - 10227 - ]], - [[ - 10132, - 10203, - 10321 - ]], - [[ - 10322, - 10227, - 10323 - ]], - [[ - 10132, - 10324, - 10325 - ]], - [[ - 10323, - 10227, - 10326 - ]], - [[ - 10327, - 10324, - 10132 - ]], - [[ - 10155, - 10141, - 10328 - ]], - [[ - 10329, - 10152, - 10330 - ]], - [[ - 10132, - 10152, - 10329 - ]], - [[ - 10331, - 10132, - 10319 - ]], - [[ - 10332, - 10132, - 10131 - ]], - [[ - 10333, - 10334, - 10148 - ]], - [[ - 10335, - 10336, - 10148 - ]], - [[ - 10132, - 10331, - 10130 - ]], - [[ - 10148, - 10337, - 10149 - ]], - [[ - 10148, - 10338, - 10337 - ]], - [[ - 10148, - 10339, - 10338 - ]], - [[ - 10331, - 10129, - 10128 - ]], - [[ - 10148, - 10132, - 10339 - ]], - [[ - 10339, - 10132, - 10134 - ]], - [[ - 10129, - 10340, - 10127 - ]], - [[ - 10132, - 10332, - 10133 - ]], - [[ - 10126, - 10125, - 10340 - ]], - [[ - 10128, - 10130, - 10331 - ]], - [[ - 10341, - 10124, - 10126 - ]], - [[ - 10125, - 10127, - 10340 - ]], - [[ - 10123, - 10122, - 10341 - ]], - [[ - 10122, - 10124, - 10341 - ]], - [[ - 10271, - 10121, - 10123 - ]], - [[ - 10084, - 10121, - 10271 - ]], - [[ - 10010, - 1008, - 10205 - ]], - [[ - 10342, - 907, - 10343 - ]], - [[ - 10343, - 1010, - 10342 - ]], - [[ - 10344, - 1011, - 1010 - ]], - [[ - 8171, - 10345, - 10346 - ]], - [[ - 1008, - 1016, - 10205 - ]], - [[ - 10035, - 10034, - 10347 - ]], - [[ - 10348, - 10349, - 10350 - ]], - [[ - 10351, - 10004, - 10003 - ]], - [[ - 9995, - 9999, - 10352 - ]], - [[ - 10353, - 10354, - 10355 - ]], - [[ - 10356, - 10357, - 10358 - ]], - [[ - 10359, - 10360, - 10347 - ]], - [[ - 10361, - 10362, - 10363 - ]], - [[ - 10357, - 10364, - 10358 - ]], - [[ - 10365, - 10366, - 10357 - ]], - [[ - 10367, - 10368, - 10369 - ]], - [[ - 10370, - 10371, - 10372 - ]], - [[ - 9996, - 9995, - 10373 - ]], - [[ - 10374, - 10375, - 10376 - ]], - [[ - 10377, - 9997, - 9996 - ]], - [[ - 10361, - 10378, - 10362 - ]], - [[ - 10379, - 10380, - 10381 - ]], - [[ - 10382, - 10383, - 10384 - ]], - [[ - 10148, - 10334, - 10385 - ]], - [[ - 10382, - 10386, - 10383 - ]], - [[ - 10330, - 10152, - 10387 - ]], - [[ - 9996, - 10388, - 10389 - ]], - [[ - 10390, - 10391, - 10152 - ]], - [[ - 10392, - 10389, - 10393 - ]], - [[ - 10390, - 10152, - 10394 - ]], - [[ - 10393, - 10389, - 10395 - ]], - [[ - 10152, - 10151, - 10394 - ]], - [[ - 10389, - 10396, - 10397 - ]], - [[ - 10155, - 10158, - 10157 - ]], - [[ - 10398, - 10333, - 10148 - ]], - [[ - 10396, - 10389, - 10388 - ]], - [[ - 10398, - 10148, - 10399 - ]], - [[ - 10388, - 10026, - 10379 - ]], - [[ - 10148, - 10336, - 10399 - ]], - [[ - 10400, - 10401, - 10402 - ]], - [[ - 10150, - 10335, - 10148 - ]], - [[ - 10381, - 10388, - 10379 - ]], - [[ - 10403, - 10388, - 10381 - ]], - [[ - 10132, - 10329, - 10327 - ]], - [[ - 10404, - 10148, - 10385 - ]], - [[ - 10380, - 10379, - 10405 - ]], - [[ - 10406, - 10407, - 10144 - ]], - [[ - 10328, - 10143, - 10408 - ]], - [[ - 10404, - 10409, - 10148 - ]], - [[ - 10326, - 10148, - 10409 - ]], - [[ - 10315, - 10316, - 10144 - ]], - [[ - 10152, - 10247, - 10155 - ]], - [[ - 10407, - 10410, - 10144 - ]], - [[ - 10132, - 10321, - 10152 - ]], - [[ - 10410, - 10411, - 10144 - ]], - [[ - 10411, - 10145, - 10144 - ]], - [[ - 10326, - 10227, - 10148 - ]], - [[ - 10412, - 10413, - 10414 - ]], - [[ - 10415, - 10238, - 10416 - ]], - [[ - 10417, - 10415, - 10416 - ]], - [[ - 10418, - 10417, - 10416 - ]], - [[ - 10414, - 10418, - 10416 - ]], - [[ - 10414, - 10416, - 10243 - ]], - [[ - 10414, - 10413, - 10419 - ]], - [[ - 10148, - 10227, - 10232 - ]], - [[ - 10146, - 10420, - 10144 - ]], - [[ - 10420, - 10421, - 10230 - ]], - [[ - 10420, - 10230, - 10144 - ]], - [[ - 10422, - 10230, - 10421 - ]], - [[ - 10236, - 10230, - 10422 - ]], - [[ - 10423, - 10230, - 10235 - ]], - [[ - 10424, - 10228, - 10230 - ]], - [[ - 10229, - 10224, - 10223 - ]], - [[ - 10229, - 10223, - 10230 - ]], - [[ - 10219, - 10093, - 10222 - ]], - [[ - 10220, - 10144, - 10230 - ]], - [[ - 10425, - 10220, - 10230 - ]], - [[ - 10230, - 10423, - 10424 - ]], - [[ - 10230, - 10426, - 10427 - ]], - [[ - 10093, - 10092, - 10428 - ]], - [[ - 10230, - 10223, - 10426 - ]], - [[ - 10429, - 10430, - 10214 - ]], - [[ - 10431, - 10426, - 10223 - ]], - [[ - 10093, - 10218, - 10094 - ]], - [[ - 10432, - 10433, - 10093 - ]], - [[ - 10093, - 10223, - 10222 - ]], - [[ - 10429, - 10434, - 10435 - ]], - [[ - 10216, - 10436, - 10214 - ]], - [[ - 10214, - 10205, - 10216 - ]], - [[ - 10214, - 10437, - 10438 - ]], - [[ - 10214, - 10436, - 10437 - ]], - [[ - 10439, - 10440, - 10216 - ]], - [[ - 10441, - 10439, - 10216 - ]], - [[ - 10442, - 10443, - 10215 - ]], - [[ - 10215, - 10443, - 10444 - ]], - [[ - 10445, - 10446, - 10442 - ]], - [[ - 10447, - 10448, - 10449 - ]], - [[ - 10450, - 10451, - 10445 - ]], - [[ - 10452, - 10453, - 10451 - ]], - [[ - 10452, - 10454, - 10453 - ]], - [[ - 10455, - 10447, - 10449 - ]], - [[ - 10456, - 10454, - 10455 - ]], - [[ - 10447, - 10457, - 10448 - ]], - [[ - 10457, - 10458, - 10459 - ]], - [[ - 10460, - 10461, - 10462 - ]], - [[ - 10461, - 10463, - 10462 - ]], - [[ - 10461, - 10464, - 10463 - ]], - [[ - 10035, - 10346, - 10345 - ]], - [[ - 10465, - 10466, - 10464 - ]], - [[ - 10464, - 1011, - 10465 - ]], - [[ - 9867, - 10467, - 10365 - ]], - [[ - 10465, - 10468, - 10469 - ]], - [[ - 10470, - 10471, - 10472 - ]], - [[ - 10470, - 10360, - 10473 - ]], - [[ - 10473, - 10474, - 10475 - ]], - [[ - 10476, - 10477, - 10474 - ]], - [[ - 10477, - 10359, - 10478 - ]], - [[ - 10479, - 10480, - 10481 - ]], - [[ - 10479, - 10366, - 10480 - ]], - [[ - 10482, - 10483, - 10484 - ]], - [[ - 10485, - 10467, - 10486 - ]], - [[ - 10485, - 10486, - 10487 - ]], - [[ - 10467, - 10488, - 10489 - ]], - [[ - 10488, - 10490, - 10491 - ]], - [[ - 10374, - 9866, - 9997 - ]], - [[ - 10491, - 10492, - 10493 - ]], - [[ - 10494, - 9866, - 10495 - ]], - [[ - 10492, - 10490, - 10496 - ]], - [[ - 10496, - 9867, - 10494 - ]], - [[ - 10497, - 10496, - 10494 - ]], - [[ - 10498, - 10494, - 10499 - ]], - [[ - 10499, - 10494, - 10495 - ]], - [[ - 10495, - 9866, - 10500 - ]], - [[ - 10501, - 10495, - 10500 - ]], - [[ - 10500, - 9866, - 10502 - ]], - [[ - 10502, - 9866, - 10503 - ]], - [[ - 10504, - 10502, - 10503 - ]], - [[ - 10503, - 9866, - 10374 - ]], - [[ - 10377, - 10505, - 10374 - ]], - [[ - 10377, - 10506, - 10505 - ]], - [[ - 10507, - 10508, - 10377 - ]], - [[ - 10509, - 10510, - 10508 - ]], - [[ - 10511, - 10418, - 10414 - ]], - [[ - 10512, - 10244, - 10243 - ]], - [[ - 10471, - 10470, - 10475 - ]], - [[ - 10347, - 10364, - 10357 - ]], - [[ - 10406, - 10144, - 10317 - ]], - [[ - 10221, - 10225, - 10144 - ]], - [[ - 1016, - 10216, - 10205 - ]], - [[ - 10440, - 10436, - 10216 - ]], - [[ - 10320, - 10227, - 10322 - ]], - [[ - 10231, - 10237, - 10233 - ]], - [[ - 10513, - 10214, - 10438 - ]], - [[ - 10513, - 10429, - 10214 - ]], - [[ - 10507, - 10377, - 9996 - ]], - [[ - 10508, - 10506, - 10377 - ]], - [[ - 10478, - 10359, - 10481 - ]], - [[ - 10347, - 10357, - 10359 - ]], - [[ - 10514, - 10230, - 10427 - ]], - [[ - 10514, - 10425, - 10230 - ]], - [[ - 10470, - 10465, - 1011 - ]], - [[ - 10469, - 10466, - 10465 - ]], - [[ - 10387, - 10152, - 10391 - ]], - [[ - 10321, - 10246, - 10152 - ]], - [[ - 10377, - 10374, - 9997 - ]], - [[ - 10505, - 10375, - 10374 - ]], - [[ - 10468, - 10470, - 10472 - ]], - [[ - 1011, - 10344, - 10346 - ]], - [[ - 10515, - 10223, - 10093 - ]], - [[ - 10433, - 10431, - 10223 - ]], - [[ - 10376, - 10503, - 10374 - ]], - [[ - 10516, - 10504, - 10503 - ]], - [[ - 10517, - 10328, - 10408 - ]], - [[ - 10026, - 10155, - 10328 - ]], - [[ - 10450, - 10452, - 10451 - ]], - [[ - 1016, - 10454, - 10452 - ]], - [[ - 10412, - 10243, - 10245 - ]], - [[ - 10416, - 10512, - 10243 - ]], - [[ - 10483, - 10365, - 10487 - ]], - [[ - 10489, - 10518, - 10486 - ]], - [[ - 10460, - 10519, - 10461 - ]], - [[ - 1011, - 10464, - 10461 - ]], - [[ - 10366, - 10365, - 10482 - ]], - [[ - 10357, - 9867, - 10365 - ]], - [[ - 10450, - 10442, - 1016 - ]], - [[ - 10446, - 10443, - 10442 - ]], - [[ - 10518, - 10488, - 10493 - ]], - [[ - 9867, - 10496, - 10490 - ]], - [[ - 10442, - 10450, - 10445 - ]], - [[ - 1016, - 10452, - 10450 - ]], - [[ - 1011, - 10447, - 1016 - ]], - [[ - 1011, - 10519, - 10447 - ]], - [[ - 10328, - 10379, - 10026 - ]], - [[ - 10328, - 10517, - 10405 - ]], - [[ - 10520, - 10392, - 10393 - ]], - [[ - 9996, - 10389, - 10392 - ]], - [[ - 10158, - 10155, - 10026 - ]], - [[ - 10521, - 10142, - 10522 - ]], - [[ - 10442, - 10215, - 1016 - ]], - [[ - 10444, - 10439, - 10441 - ]], - [[ - 10523, - 10496, - 10497 - ]], - [[ - 10523, - 10492, - 10496 - ]], - [[ - 10524, - 10495, - 10525 - ]], - [[ - 10524, - 10499, - 10495 - ]], - [[ - 10526, - 10502, - 10504 - ]], - [[ - 10527, - 10528, - 10500 - ]], - [[ - 10361, - 10363, - 10507 - ]], - [[ - 10362, - 10510, - 10363 - ]], - [[ - 10529, - 10464, - 10466 - ]], - [[ - 10529, - 10463, - 10464 - ]], - [[ - 10361, - 10507, - 9996 - ]], - [[ - 10509, - 10508, - 10507 - ]], - [[ - 10395, - 10389, - 10397 - ]], - [[ - 9996, - 10026, - 10388 - ]], - [[ - 10457, - 10519, - 10458 - ]], - [[ - 1011, - 10461, - 10519 - ]], - [[ - 10497, - 10494, - 10498 - ]], - [[ - 9867, - 9866, - 10494 - ]], - [[ - 10402, - 10388, - 10403 - ]], - [[ - 10530, - 10396, - 10388 - ]], - [[ - 10392, - 10361, - 9996 - ]], - [[ - 10384, - 10378, - 10361 - ]], - [[ - 9867, - 10488, - 10467 - ]], - [[ - 9867, - 10490, - 10488 - ]], - [[ - 10148, - 10232, - 10415 - ]], - [[ - 10234, - 10239, - 10232 - ]], - [[ - 10527, - 10500, - 10502 - ]], - [[ - 10501, - 10525, - 10495 - ]], - [[ - 10453, - 10454, - 10456 - ]], - [[ - 1016, - 10447, - 10454 - ]], - [[ - 10232, - 10238, - 10415 - ]], - [[ - 10232, - 10239, - 10238 - ]], - [[ - 10242, - 10512, - 10416 - ]], - [[ - 10241, - 10244, - 10512 - ]], - [[ - 10359, - 10479, - 10481 - ]], - [[ - 10359, - 10366, - 10479 - ]], - [[ - 10470, - 10473, - 10475 - ]], - [[ - 10360, - 10476, - 10473 - ]], - [[ - 10473, - 10476, - 10474 - ]], - [[ - 10477, - 10478, - 10474 - ]], - [[ - 10531, - 10532, - 10019 - ]], - [[ - 10023, - 10017, - 7244 - ]], - [[ - 10533, - 10534, - 10351 - ]], - [[ - 10002, - 10349, - 10003 - ]], - [[ - 10141, - 10522, - 10142 - ]], - [[ - 10521, - 10247, - 10142 - ]], - [[ - 10412, - 10414, - 10243 - ]], - [[ - 10419, - 10511, - 10414 - ]], - [[ - 10531, - 10021, - 10532 - ]], - [[ - 10021, - 10028, - 10016 - ]], - [[ - 10535, - 10517, - 10408 - ]], - [[ - 10405, - 10379, - 10328 - ]], - [[ - 10238, - 10242, - 10416 - ]], - [[ - 10241, - 10512, - 10242 - ]], - [[ - 10470, - 1011, - 10035 - ]], - [[ - 8171, - 8172, - 10036 - ]], - [[ - 10042, - 10041, - 9993 - ]], - [[ - 10040, - 643, - 645 - ]], - [[ - 10047, - 10039, - 10037 - ]], - [[ - 10047, - 10043, - 9992 - ]], - [[ - 10360, - 10477, - 10476 - ]], - [[ - 10360, - 10359, - 10477 - ]], - [[ - 10488, - 10491, - 10493 - ]], - [[ - 10490, - 10492, - 10491 - ]], - [[ - 10386, - 10520, - 10393 - ]], - [[ - 10386, - 10392, - 10520 - ]], - [[ - 10013, - 10014, - 10012 - ]], - [[ - 7246, - 7247, - 10014 - ]], - [[ - 10536, - 10537, - 10370 - ]], - [[ - 10538, - 10349, - 10539 - ]], - [[ - 10355, - 10540, - 10356 - ]], - [[ - 10541, - 10542, - 10369 - ]], - [[ - 10543, - 10544, - 10371 - ]], - [[ - 10545, - 10546, - 10547 - ]], - [[ - 10548, - 10549, - 10550 - ]], - [[ - 10551, - 10552, - 10537 - ]], - [[ - 10553, - 9998, - 10554 - ]], - [[ - 10372, - 10555, - 10556 - ]], - [[ - 10549, - 10554, - 10550 - ]], - [[ - 10546, - 10545, - 10543 - ]], - [[ - 10557, - 10558, - 10373 - ]], - [[ - 10038, - 9996, - 10373 - ]], - [[ - 10545, - 10555, - 10372 - ]], - [[ - 10551, - 10537, - 10536 - ]], - [[ - 10467, - 10489, - 10486 - ]], - [[ - 10488, - 10518, - 10489 - ]], - [[ - 10559, - 10531, - 7245 - ]], - [[ - 7245, - 10531, - 10018 - ]], - [[ - 10392, - 10382, - 10361 - ]], - [[ - 10383, - 10378, - 10384 - ]], - [[ - 10480, - 10366, - 10484 - ]], - [[ - 10359, - 10357, - 10366 - ]], - [[ - 8170, - 10343, - 907 - ]], - [[ - 8170, - 10560, - 10561 - ]], - [[ - 10356, - 10562, - 10353 - ]], - [[ - 10356, - 10358, - 10563 - ]], - [[ - 10328, - 10141, - 10143 - ]], - [[ - 10155, - 10522, - 10141 - ]], - [[ - 10365, - 10485, - 10487 - ]], - [[ - 10365, - 10467, - 10485 - ]], - [[ - 10458, - 10460, - 10462 - ]], - [[ - 10458, - 10519, - 10460 - ]], - [[ - 10564, - 10527, - 10502 - ]], - [[ - 10564, - 10528, - 10527 - ]], - [[ - 10565, - 10132, - 10325 - ]], - [[ - 10565, - 10318, - 10132 - ]], - [[ - 10366, - 10482, - 10484 - ]], - [[ - 10365, - 10483, - 10482 - ]], - [[ - 644, - 9994, - 10041 - ]], - [[ - 644, - 643, - 9994 - ]], - [[ - 10561, - 10560, - 10344 - ]], - [[ - 10346, - 10035, - 1011 - ]], - [[ - 994, - 10342, - 1010 - ]], - [[ - 994, - 907, - 10342 - ]], - [[ - 10564, - 10526, - 10504 - ]], - [[ - 10564, - 10502, - 10526 - ]], - [[ - 10363, - 10509, - 10507 - ]], - [[ - 10363, - 10510, - 10509 - ]], - [[ - 10538, - 10548, - 10349 - ]], - [[ - 10540, - 10537, - 10552 - ]], - [[ - 10373, - 9995, - 10539 - ]], - [[ - 10548, - 10543, - 10349 - ]], - [[ - 10550, - 10566, - 10548 - ]], - [[ - 10550, - 10554, - 10566 - ]], - [[ - 10000, - 10001, - 10006 - ]], - [[ - 1376, - 10002, - 10001 - ]], - [[ - 10543, - 10370, - 10355 - ]], - [[ - 10370, - 10537, - 10540 - ]], - [[ - 10470, - 10035, - 10347 - ]], - [[ - 10004, - 10567, - 10005 - ]], - [[ - 10345, - 10036, - 10035 - ]], - [[ - 10345, - 8171, - 10036 - ]], - [[ - 10347, - 10034, - 10568 - ]], - [[ - 10036, - 8172, - 10567 - ]], - [[ - 10569, - 10347, - 10568 - ]], - [[ - 10567, - 8172, - 10005 - ]], - [[ - 10348, - 10351, - 10003 - ]], - [[ - 10568, - 10034, - 10567 - ]], - [[ - 10533, - 10570, - 10569 - ]], - [[ - 10360, - 10470, - 10347 - ]], - [[ - 10361, - 10382, - 10384 - ]], - [[ - 10392, - 10386, - 10382 - ]], - [[ - 10429, - 10435, - 10430 - ]], - [[ - 10434, - 10432, - 10435 - ]], - [[ - 10213, - 10093, - 10428 - ]], - [[ - 10430, - 10432, - 10093 - ]], - [[ - 10214, - 10430, - 10093 - ]], - [[ - 10435, - 10432, - 10430 - ]], - [[ - 10552, - 10547, - 10356 - ]], - [[ - 9998, - 10356, - 10554 - ]], - [[ - 10544, - 10543, - 10545 - ]], - [[ - 10571, - 10554, - 10546 - ]], - [[ - 10370, - 10372, - 10556 - ]], - [[ - 10546, - 10554, - 10547 - ]], - [[ - 9994, - 10040, - 9992 - ]], - [[ - 9994, - 643, - 10040 - ]], - [[ - 10013, - 10559, - 7245 - ]], - [[ - 10012, - 10531, - 10559 - ]], - [[ - 10448, - 10457, - 10459 - ]], - [[ - 10447, - 10519, - 10457 - ]], - [[ - 10020, - 10023, - 7244 - ]], - [[ - 10022, - 10021, - 10023 - ]], - [[ - 10528, - 10501, - 10500 - ]], - [[ - 10528, - 10525, - 10501 - ]], - [[ - 10551, - 10556, - 10547 - ]], - [[ - 10547, - 10556, - 10555 - ]], - [[ - 10568, - 10567, - 10004 - ]], - [[ - 10034, - 10036, - 10567 - ]], - [[ - 10020, - 10572, - 10021 - ]], - [[ - 10573, - 10016, - 10015 - ]], - [[ - 10574, - 10548, - 10538 - ]], - [[ - 10566, - 10575, - 10571 - ]], - [[ - 10576, - 10352, - 10538 - ]], - [[ - 9999, - 9998, - 10577 - ]], - [[ - 10530, - 10401, - 10400 - ]], - [[ - 10530, - 10388, - 10401 - ]], - [[ - 10516, - 10376, - 10375 - ]], - [[ - 10516, - 10503, - 10376 - ]], - [[ - 10369, - 10542, - 10578 - ]], - [[ - 10368, - 10367, - 10348 - ]], - [[ - 10563, - 10358, - 10369 - ]], - [[ - 10579, - 10563, - 10578 - ]], - [[ - 10369, - 10368, - 10541 - ]], - [[ - 10367, - 10351, - 10348 - ]], - [[ - 10563, - 10369, - 10578 - ]], - [[ - 10358, - 10367, - 10369 - ]], - [[ - 10580, - 10541, - 10368 - ]], - [[ - 10354, - 10542, - 10541 - ]], - [[ - 10356, - 10353, - 10355 - ]], - [[ - 10354, - 10541, - 10580 - ]], - [[ - 10562, - 10581, - 10353 - ]], - [[ - 10578, - 10542, - 10354 - ]], - [[ - 10562, - 10563, - 10581 - ]], - [[ - 10562, - 10356, - 10563 - ]], - [[ - 10349, - 10543, - 10355 - ]], - [[ - 10548, - 10566, - 10543 - ]], - [[ - 10556, - 10536, - 10370 - ]], - [[ - 10556, - 10551, - 10536 - ]], - [[ - 10561, - 10344, - 1010 - ]], - [[ - 10560, - 8170, - 10346 - ]], - [[ - 10560, - 10346, - 10344 - ]], - [[ - 8170, - 8171, - 10346 - ]], - [[ - 10024, - 10573, - 10017 - ]], - [[ - 10024, - 10021, - 10573 - ]], - [[ - 10155, - 10521, - 10522 - ]], - [[ - 10155, - 10247, - 10521 - ]], - [[ - 10533, - 10351, - 10367 - ]], - [[ - 10534, - 10004, - 10351 - ]], - [[ - 10014, - 10011, - 10012 - ]], - [[ - 10014, - 7247, - 10011 - ]], - [[ - 10032, - 10047, - 10038 - ]], - [[ - 10033, - 10043, - 10047 - ]], - [[ - 10544, - 10372, - 10371 - ]], - [[ - 10544, - 10545, - 10372 - ]], - [[ - 10352, - 10574, - 10538 - ]], - [[ - 10352, - 9999, - 10574 - ]], - [[ - 10540, - 10552, - 10356 - ]], - [[ - 10547, - 10554, - 10356 - ]], - [[ - 10018, - 10531, - 7243 - ]], - [[ - 10012, - 10021, - 10531 - ]], - [[ - 10029, - 10025, - 10027 - ]], - [[ - 10029, - 10067, - 10065 - ]], - [[ - 10534, - 10568, - 10004 - ]], - [[ - 10534, - 10569, - 10568 - ]], - [[ - 10047, - 10032, - 10033 - ]], - [[ - 10038, - 10008, - 10032 - ]], - [[ - 10033, - 10007, - 10009 - ]], - [[ - 10557, - 10373, - 10539 - ]], - [[ - 10008, - 10558, - 10009 - ]], - [[ - 10008, - 10373, - 10558 - ]], - [[ - 10009, - 10557, - 10539 - ]], - [[ - 10009, - 10558, - 10557 - ]], - [[ - 10032, - 10008, - 10007 - ]], - [[ - 10038, - 10373, - 10008 - ]], - [[ - 10456, - 10455, - 10449 - ]], - [[ - 10454, - 10447, - 10455 - ]], - [[ - 10227, - 10233, - 10232 - ]], - [[ - 10227, - 10231, - 10233 - ]], - [[ - 10364, - 10570, - 10533 - ]], - [[ - 10364, - 10347, - 10570 - ]], - [[ - 10350, - 10580, - 10368 - ]], - [[ - 10579, - 10581, - 10563 - ]], - [[ - 10350, - 10354, - 10580 - ]], - [[ - 10353, - 10581, - 10354 - ]], - [[ - 10355, - 10350, - 10349 - ]], - [[ - 10355, - 10354, - 10350 - ]], - [[ - 10349, - 10348, - 10003 - ]], - [[ - 10350, - 10368, - 10348 - ]], - [[ - 10354, - 10579, - 10578 - ]], - [[ - 10354, - 10581, - 10579 - ]], - [[ - 10047, - 10037, - 10038 - ]], - [[ - 10039, - 646, - 10037 - ]], - [[ - 10023, - 10021, - 10024 - ]], - [[ - 10012, - 10028, - 10021 - ]], - [[ - 10532, - 10572, - 7244 - ]], - [[ - 10532, - 10021, - 10572 - ]], - [[ - 10352, - 10576, - 9995 - ]], - [[ - 10538, - 10539, - 9995 - ]], - [[ - 9998, - 9995, - 9997 - ]], - [[ - 10576, - 10538, - 9995 - ]], - [[ - 10017, - 10573, - 10015 - ]], - [[ - 10021, - 10016, - 10573 - ]], - [[ - 10433, - 10515, - 10093 - ]], - [[ - 10433, - 10223, - 10515 - ]], - [[ - 10572, - 10020, - 7244 - ]], - [[ - 10022, - 10023, - 10020 - ]], - [[ - 10535, - 10405, - 10517 - ]], - [[ - 10535, - 10380, - 10405 - ]], - [[ - 10574, - 10577, - 10553 - ]], - [[ - 10574, - 9999, - 10577 - ]], - [[ - 10549, - 10553, - 10554 - ]], - [[ - 10577, - 9998, - 10553 - ]], - [[ - 10574, - 10549, - 10548 - ]], - [[ - 10574, - 10553, - 10549 - ]], - [[ - 10469, - 10468, - 10472 - ]], - [[ - 10465, - 10470, - 10468 - ]], - [[ - 10215, - 10441, - 10216 - ]], - [[ - 10215, - 10444, - 10441 - ]], - [[ - 10543, - 10566, - 10571 - ]], - [[ - 10566, - 10554, - 10575 - ]], - [[ - 10543, - 10571, - 10546 - ]], - [[ - 10575, - 10554, - 10571 - ]], - [[ - 10551, - 10547, - 10552 - ]], - [[ - 10555, - 10545, - 10547 - ]], - [[ - 10343, - 10561, - 1010 - ]], - [[ - 10343, - 8170, - 10561 - ]], - [[ - 10400, - 10402, - 10403 - ]], - [[ - 10401, - 10388, - 10402 - ]], - [[ - 10028, - 10029, - 10027 - ]], - [[ - 10028, - 10292, - 10029 - ]], - [[ - 10355, - 10370, - 10540 - ]], - [[ - 10543, - 10371, - 10370 - ]], - [[ - 10559, - 10013, - 10012 - ]], - [[ - 7245, - 7246, - 10013 - ]], - [[ - 10531, - 10019, - 7243 - ]], - [[ - 10532, - 7244, - 10019 - ]], - [[ - 10533, - 10569, - 10534 - ]], - [[ - 10570, - 10347, - 10569 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b492c6bd0-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef790749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8402, - 1097, - 1105 - ]], - [[ - 8402, - 1105, - 8744 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b492d56e7-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef68e549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3100, - 3102, - 3165 - ]], - [[ - 3100, - 3165, - 3108 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b492e19ca-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cab49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10582, - 10583, - 10584 - ]], - [[ - 10585, - 10586, - 10587 - ]], - [[ - 10588, - 6932, - 6933 - ]], - [[ - 10589, - 10590, - 10588 - ]], - [[ - 6932, - 10590, - 10591 - ]], - [[ - 6886, - 10592, - 6913 - ]], - [[ - 10593, - 10594, - 6974 - ]], - [[ - 10587, - 10586, - 10595 - ]], - [[ - 10596, - 8681, - 6910 - ]], - [[ - 10597, - 10594, - 10598 - ]], - [[ - 6974, - 6975, - 10593 - ]], - [[ - 10599, - 10600, - 10601 - ]], - [[ - 10591, - 6912, - 10592 - ]], - [[ - 10596, - 10602, - 10603 - ]], - [[ - 10592, - 6912, - 6913 - ]], - [[ - 10604, - 10584, - 6975 - ]], - [[ - 10583, - 10595, - 10593 - ]], - [[ - 10582, - 10587, - 10595 - ]], - [[ - 10600, - 10599, - 6911 - ]], - [[ - 10593, - 10586, - 10594 - ]], - [[ - 10587, - 10605, - 10585 - ]], - [[ - 10601, - 10606, - 6910 - ]], - [[ - 10602, - 10587, - 10603 - ]], - [[ - 6911, - 10599, - 6910 - ]], - [[ - 10607, - 10605, - 10587 - ]], - [[ - 10588, - 10590, - 6932 - ]], - [[ - 10591, - 10608, - 6912 - ]], - [[ - 10589, - 10585, - 10609 - ]], - [[ - 10607, - 10602, - 10610 - ]], - [[ - 10604, - 10603, - 10582 - ]], - [[ - 10595, - 10586, - 10593 - ]], - [[ - 10607, - 10610, - 10600 - ]], - [[ - 10606, - 10596, - 6910 - ]], - [[ - 10599, - 10601, - 6910 - ]], - [[ - 10610, - 10602, - 10606 - ]], - [[ - 8681, - 10604, - 6975 - ]], - [[ - 8681, - 10603, - 10604 - ]], - [[ - 10610, - 10606, - 10601 - ]], - [[ - 10602, - 10596, - 10606 - ]], - [[ - 6925, - 10588, - 6933 - ]], - [[ - 6925, - 10589, - 10588 - ]], - [[ - 10601, - 10600, - 10610 - ]], - [[ - 6911, - 6912, - 10600 - ]], - [[ - 10608, - 10607, - 10600 - ]], - [[ - 10587, - 10602, - 10607 - ]], - [[ - 10584, - 10593, - 6975 - ]], - [[ - 10584, - 10583, - 10593 - ]], - [[ - 6932, - 10591, - 6886 - ]], - [[ - 10608, - 10605, - 10607 - ]], - [[ - 6886, - 10591, - 10592 - ]], - [[ - 10609, - 10585, - 10605 - ]], - [[ - 6912, - 10608, - 10600 - ]], - [[ - 10591, - 10590, - 10608 - ]], - [[ - 10596, - 10603, - 8681 - ]], - [[ - 10595, - 10583, - 10582 - ]], - [[ - 10604, - 10582, - 10584 - ]], - [[ - 10603, - 10587, - 10582 - ]], - [[ - 10611, - 10589, - 6925 - ]], - [[ - 10609, - 10605, - 10608 - ]], - [[ - 10611, - 10597, - 10589 - ]], - [[ - 10594, - 10586, - 10598 - ]], - [[ - 6974, - 10611, - 6925 - ]], - [[ - 6974, - 10594, - 10597 - ]], - [[ - 10589, - 10597, - 10598 - ]], - [[ - 10611, - 6974, - 10597 - ]], - [[ - 10598, - 10585, - 10589 - ]], - [[ - 10598, - 10586, - 10585 - ]], - [[ - 10590, - 10609, - 10608 - ]], - [[ - 10590, - 10589, - 10609 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b492e6811-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef608949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 6710, - 6706, - 6709 - ]], - [[ - 10612, - 6711, - 10613 - ]], - [[ - 6706, - 6710, - 10613 - ]], - [[ - 10614, - 6706, - 10613 - ]], - [[ - 10613, - 6711, - 10615 - ]], - [[ - 10615, - 295, - 297 - ]], - [[ - 10615, - 6711, - 295 - ]], - [[ - 10612, - 10616, - 6711 - ]], - [[ - 6710, - 6711, - 10616 - ]], - [[ - 6710, - 10612, - 10613 - ]], - [[ - 6710, - 10616, - 10612 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b492f03ba-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5cb949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10617, - 10618, - 7732 - ]], - [[ - 10619, - 9807, - 10620 - ]], - [[ - 7730, - 10621, - 10622 - ]], - [[ - 10622, - 10621, - 10618 - ]], - [[ - 9810, - 10623, - 9808 - ]], - [[ - 10624, - 7732, - 7759 - ]], - [[ - 9803, - 10623, - 7760 - ]], - [[ - 9803, - 7760, - 10625 - ]], - [[ - 10625, - 7760, - 7752 - ]], - [[ - 10626, - 7732, - 10624 - ]], - [[ - 9810, - 9807, - 10619 - ]], - [[ - 10617, - 7732, - 10626 - ]], - [[ - 10627, - 10628, - 10629 - ]], - [[ - 10630, - 10626, - 10624 - ]], - [[ - 7754, - 10625, - 7752 - ]], - [[ - 7754, - 9803, - 10625 - ]], - [[ - 7730, - 10618, - 10621 - ]], - [[ - 7730, - 7732, - 10618 - ]], - [[ - 10623, - 10631, - 10632 - ]], - [[ - 10633, - 10634, - 10635 - ]], - [[ - 10627, - 10636, - 10628 - ]], - [[ - 7760, - 10632, - 10636 - ]], - [[ - 10633, - 10622, - 10618 - ]], - [[ - 10635, - 10637, - 10622 - ]], - [[ - 7759, - 10627, - 10629 - ]], - [[ - 10636, - 10632, - 10628 - ]], - [[ - 10629, - 10624, - 7759 - ]], - [[ - 10629, - 10630, - 10624 - ]], - [[ - 10638, - 10637, - 10639 - ]], - [[ - 10637, - 7730, - 10622 - ]], - [[ - 10623, - 10640, - 10634 - ]], - [[ - 10623, - 9810, - 10640 - ]], - [[ - 10631, - 10633, - 10617 - ]], - [[ - 10633, - 10618, - 10617 - ]], - [[ - 10626, - 10631, - 10617 - ]], - [[ - 10638, - 10639, - 10640 - ]], - [[ - 10631, - 10634, - 10633 - ]], - [[ - 10640, - 10639, - 10635 - ]], - [[ - 10633, - 10635, - 10622 - ]], - [[ - 10634, - 10640, - 10635 - ]], - [[ - 10639, - 10637, - 10635 - ]], - [[ - 10620, - 7730, - 10637 - ]], - [[ - 10632, - 10631, - 10626 - ]], - [[ - 10623, - 10634, - 10631 - ]], - [[ - 10628, - 10632, - 10626 - ]], - [[ - 7760, - 10623, - 10632 - ]], - [[ - 9810, - 10619, - 10640 - ]], - [[ - 10619, - 10637, - 10638 - ]], - [[ - 10637, - 10619, - 10620 - ]], - [[ - 10638, - 10640, - 10619 - ]], - [[ - 7760, - 10627, - 7759 - ]], - [[ - 7760, - 10636, - 10627 - ]], - [[ - 10628, - 10630, - 10629 - ]], - [[ - 10628, - 10626, - 10630 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b49310031-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef790849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10641, - 10642, - 10643 - ]], - [[ - 10644, - 10641, - 10643 - ]], - [[ - 10645, - 10646, - 10643 - ]], - [[ - 10643, - 10042, - 10644 - ]], - [[ - 10643, - 10646, - 10042 - ]], - [[ - 10647, - 10648, - 10646 - ]], - [[ - 10649, - 644, - 10042 - ]], - [[ - 652, - 10650, - 10651 - ]], - [[ - 10647, - 10646, - 10652 - ]], - [[ - 10653, - 10648, - 10650 - ]], - [[ - 10646, - 10645, - 10652 - ]], - [[ - 652, - 10653, - 10650 - ]], - [[ - 652, - 644, - 10653 - ]], - [[ - 10653, - 10654, - 10649 - ]], - [[ - 10653, - 644, - 10654 - ]], - [[ - 10653, - 10646, - 10648 - ]], - [[ - 10653, - 10649, - 10646 - ]], - [[ - 10646, - 10649, - 10042 - ]], - [[ - 10654, - 644, - 10649 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4931275f-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "onverhard", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef949349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10655, - 2887, - 2888 - ]], - [[ - 8158, - 2887, - 10655 - ]], - [[ - 8156, - 8567, - 8155 - ]], - [[ - 8156, - 8157, - 8568 - ]], - [[ - 8156, - 8568, - 8567 - ]], - [[ - 8568, - 10656, - 8566 - ]], - [[ - 10657, - 2886, - 8565 - ]], - [[ - 10657, - 2888, - 2886 - ]], - [[ - 10655, - 8157, - 8158 - ]], - [[ - 10656, - 10657, - 8565 - ]], - [[ - 8568, - 8157, - 10655 - ]], - [[ - 10657, - 10655, - 2888 - ]], - [[ - 10657, - 10656, - 10655 - ]], - [[ - 8566, - 10656, - 8565 - ]], - [[ - 8568, - 10655, - 10656 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4931c302-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef505349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10658, - 10659, - 10660 - ]], - [[ - 10661, - 10662, - 10663 - ]], - [[ - 10027, - 10664, - 10016 - ]], - [[ - 10665, - 10666, - 10667 - ]], - [[ - 10668, - 10664, - 10669 - ]], - [[ - 10661, - 10670, - 10662 - ]], - [[ - 10661, - 10671, - 10670 - ]], - [[ - 10668, - 10672, - 10673 - ]], - [[ - 10017, - 10674, - 10675 - ]], - [[ - 10675, - 10676, - 10671 - ]], - [[ - 10677, - 10678, - 10672 - ]], - [[ - 10679, - 6662, - 6840 - ]], - [[ - 10680, - 7265, - 10681 - ]], - [[ - 10682, - 7195, - 7252 - ]], - [[ - 10682, - 10683, - 7195 - ]], - [[ - 10683, - 10684, - 10685 - ]], - [[ - 10686, - 10687, - 10688 - ]], - [[ - 10685, - 10684, - 7203 - ]], - [[ - 10688, - 10687, - 10689 - ]], - [[ - 10690, - 10687, - 10691 - ]], - [[ - 10692, - 10693, - 10694 - ]], - [[ - 10695, - 10696, - 10697 - ]], - [[ - 7182, - 10696, - 7180 - ]], - [[ - 10693, - 7168, - 7201 - ]], - [[ - 10698, - 10699, - 7214 - ]], - [[ - 10681, - 7183, - 10680 - ]], - [[ - 10700, - 7216, - 7214 - ]], - [[ - 10697, - 7268, - 7216 - ]], - [[ - 10695, - 7180, - 10696 - ]], - [[ - 7267, - 7265, - 7266 - ]], - [[ - 10701, - 7168, - 10693 - ]], - [[ - 10702, - 7202, - 10703 - ]], - [[ - 10704, - 10705, - 10706 - ]], - [[ - 10707, - 10694, - 10704 - ]], - [[ - 10708, - 10709, - 10710 - ]], - [[ - 10711, - 10712, - 10713 - ]], - [[ - 10714, - 10715, - 10716 - ]], - [[ - 10717, - 6752, - 10718 - ]], - [[ - 10719, - 6751, - 10720 - ]], - [[ - 10721, - 10722, - 10723 - ]], - [[ - 10724, - 10717, - 10725 - ]], - [[ - 10726, - 6841, - 10727 - ]], - [[ - 10728, - 10729, - 10730 - ]], - [[ - 10731, - 10728, - 10730 - ]], - [[ - 10732, - 10733, - 10734 - ]], - [[ - 10735, - 10736, - 10737 - ]], - [[ - 10738, - 6677, - 6654 - ]], - [[ - 10739, - 6660, - 6661 - ]], - [[ - 10730, - 10740, - 10731 - ]], - [[ - 10741, - 10742, - 10743 - ]], - [[ - 10744, - 10745, - 10746 - ]], - [[ - 10747, - 10748, - 10745 - ]], - [[ - 6671, - 10749, - 6685 - ]], - [[ - 10746, - 10730, - 10750 - ]], - [[ - 10751, - 6683, - 6684 - ]], - [[ - 10752, - 10753, - 10754 - ]], - [[ - 10753, - 502, - 10754 - ]], - [[ - 10752, - 504, - 6683 - ]], - [[ - 500, - 502, - 517 - ]], - [[ - 10755, - 10756, - 10757 - ]], - [[ - 10758, - 10759, - 10760 - ]], - [[ - 10761, - 517, - 10753 - ]], - [[ - 10762, - 10755, - 10763 - ]], - [[ - 10764, - 647, - 10765 - ]], - [[ - 10766, - 625, - 10767 - ]], - [[ - 10768, - 646, - 647 - ]], - [[ - 10769, - 10712, - 10770 - ]], - [[ - 10771, - 10678, - 10677 - ]], - [[ - 10772, - 10773, - 10774 - ]], - [[ - 10775, - 10776, - 10777 - ]], - [[ - 10778, - 10779, - 10780 - ]], - [[ - 10708, - 10781, - 10782 - ]], - [[ - 10783, - 10729, - 10728 - ]], - [[ - 10750, - 10784, - 10744 - ]], - [[ - 10782, - 10709, - 10708 - ]], - [[ - 10772, - 10678, - 10771 - ]], - [[ - 10785, - 10702, - 10703 - ]], - [[ - 7202, - 7203, - 10684 - ]], - [[ - 10664, - 10786, - 10669 - ]], - [[ - 10786, - 10787, - 10771 - ]], - [[ - 10788, - 10714, - 10738 - ]], - [[ - 10731, - 10789, - 10728 - ]], - [[ - 10786, - 10771, - 10677 - ]], - [[ - 10773, - 10772, - 10771 - ]], - [[ - 10790, - 10791, - 10792 - ]], - [[ - 10793, - 10753, - 10794 - ]], - [[ - 10795, - 10796, - 10781 - ]], - [[ - 10797, - 10798, - 10799 - ]], - [[ - 10800, - 10696, - 7182 - ]], - [[ - 10800, - 7268, - 10697 - ]], - [[ - 10801, - 626, - 10762 - ]], - [[ - 10791, - 513, - 10792 - ]], - [[ - 7183, - 10800, - 7182 - ]], - [[ - 7183, - 10802, - 10800 - ]], - [[ - 10803, - 10739, - 10804 - ]], - [[ - 10727, - 6748, - 6750 - ]], - [[ - 10805, - 10806, - 10807 - ]], - [[ - 10808, - 10798, - 10809 - ]], - [[ - 10810, - 10809, - 10811 - ]], - [[ - 10691, - 10772, - 10779 - ]], - [[ - 10806, - 10805, - 10733 - ]], - [[ - 10812, - 10807, - 10780 - ]], - [[ - 10680, - 10813, - 10814 - ]], - [[ - 10813, - 7168, - 10815 - ]], - [[ - 6685, - 10749, - 10747 - ]], - [[ - 10748, - 6675, - 10745 - ]], - [[ - 10726, - 10727, - 10711 - ]], - [[ - 6841, - 6748, - 10727 - ]], - [[ - 10816, - 10804, - 10679 - ]], - [[ - 10817, - 6662, - 10818 - ]], - [[ - 10693, - 10692, - 10701 - ]], - [[ - 7201, - 10702, - 10693 - ]], - [[ - 10819, - 10778, - 10780 - ]], - [[ - 10820, - 6753, - 10707 - ]], - [[ - 10821, - 10778, - 10822 - ]], - [[ - 10820, - 10718, - 6753 - ]], - [[ - 10819, - 10810, - 10778 - ]], - [[ - 10823, - 10824, - 10825 - ]], - [[ - 10775, - 10826, - 10827 - ]], - [[ - 10737, - 6684, - 10776 - ]], - [[ - 10828, - 10829, - 10830 - ]], - [[ - 10793, - 10831, - 10753 - ]], - [[ - 10832, - 10732, - 10734 - ]], - [[ - 10819, - 10833, - 10834 - ]], - [[ - 10835, - 10836, - 10837 - ]], - [[ - 10838, - 10839, - 10840 - ]], - [[ - 6677, - 10730, - 10746 - ]], - [[ - 6677, - 10740, - 10730 - ]], - [[ - 10800, - 10697, - 10696 - ]], - [[ - 7218, - 7180, - 10695 - ]], - [[ - 10841, - 10660, - 10842 - ]], - [[ - 10841, - 10843, - 10660 - ]], - [[ - 10828, - 10842, - 10844 - ]], - [[ - 10844, - 10829, - 10828 - ]], - [[ - 10845, - 10841, - 10842 - ]], - [[ - 10843, - 10846, - 10658 - ]], - [[ - 10847, - 10828, - 10830 - ]], - [[ - 10845, - 10842, - 10828 - ]], - [[ - 10799, - 10848, - 10797 - ]], - [[ - 10849, - 6752, - 10717 - ]], - [[ - 10850, - 10810, - 10811 - ]], - [[ - 10770, - 10712, - 10711 - ]], - [[ - 10851, - 10787, - 10786 - ]], - [[ - 10851, - 10773, - 10852 - ]], - [[ - 10669, - 10786, - 10677 - ]], - [[ - 10853, - 10854, - 10710 - ]], - [[ - 10855, - 10856, - 10786 - ]], - [[ - 10786, - 10856, - 10851 - ]], - [[ - 10852, - 10773, - 10771 - ]], - [[ - 10774, - 10709, - 10772 - ]], - [[ - 10857, - 10776, - 6684 - ]], - [[ - 10784, - 10729, - 10858 - ]], - [[ - 10675, - 10674, - 10676 - ]], - [[ - 10027, - 10855, - 10664 - ]], - [[ - 10747, - 10857, - 6684 - ]], - [[ - 10745, - 6676, - 10746 - ]], - [[ - 10768, - 10764, - 10760 - ]], - [[ - 10859, - 10860, - 10861 - ]], - [[ - 10713, - 10862, - 10711 - ]], - [[ - 10726, - 10711, - 10816 - ]], - [[ - 10788, - 10738, - 6654 - ]], - [[ - 10740, - 6677, - 10738 - ]], - [[ - 10863, - 10864, - 10815 - ]], - [[ - 7183, - 7168, - 10813 - ]], - [[ - 10767, - 10801, - 10743 - ]], - [[ - 10865, - 10843, - 10866 - ]], - [[ - 10038, - 10759, - 10758 - ]], - [[ - 625, - 626, - 10767 - ]], - [[ - 10867, - 10868, - 10834 - ]], - [[ - 10869, - 10770, - 10870 - ]], - [[ - 10830, - 10871, - 10872 - ]], - [[ - 10873, - 10659, - 10793 - ]], - [[ - 10839, - 10734, - 10840 - ]], - [[ - 10874, - 10666, - 10665 - ]], - [[ - 10847, - 10866, - 10828 - ]], - [[ - 10846, - 10865, - 10875 - ]], - [[ - 10876, - 10865, - 10866 - ]], - [[ - 10875, - 10877, - 10878 - ]], - [[ - 10717, - 10718, - 10811 - ]], - [[ - 6752, - 6753, - 10718 - ]], - [[ - 10789, - 10832, - 10734 - ]], - [[ - 10879, - 10713, - 10733 - ]], - [[ - 10701, - 10863, - 7168 - ]], - [[ - 10815, - 7168, - 10863 - ]], - [[ - 10880, - 10881, - 10882 - ]], - [[ - 10883, - 517, - 10761 - ]], - [[ - 10823, - 10884, - 10850 - ]], - [[ - 10821, - 10779, - 10778 - ]], - [[ - 10700, - 10697, - 7216 - ]], - [[ - 10885, - 10695, - 10697 - ]], - [[ - 10886, - 10887, - 10888 - ]], - [[ - 10756, - 10755, - 10889 - ]], - [[ - 503, - 10754, - 502 - ]], - [[ - 10890, - 504, - 10752 - ]], - [[ - 10875, - 10742, - 10877 - ]], - [[ - 10741, - 10891, - 10742 - ]], - [[ - 10892, - 10893, - 10742 - ]], - [[ - 10893, - 10894, - 10743 - ]], - [[ - 10790, - 10792, - 517 - ]], - [[ - 513, - 517, - 10792 - ]], - [[ - 10895, - 10896, - 10897 - ]], - [[ - 10887, - 10756, - 10898 - ]], - [[ - 10715, - 10899, - 10716 - ]], - [[ - 6659, - 6660, - 10899 - ]], - [[ - 10900, - 10666, - 10901 - ]], - [[ - 10900, - 10667, - 10666 - ]], - [[ - 10747, - 10745, - 10857 - ]], - [[ - 6675, - 6676, - 10745 - ]], - [[ - 10785, - 10694, - 10693 - ]], - [[ - 7201, - 7202, - 10702 - ]], - [[ - 10846, - 10896, - 10880 - ]], - [[ - 10790, - 10902, - 10791 - ]], - [[ - 10880, - 10883, - 10881 - ]], - [[ - 10880, - 10658, - 10846 - ]], - [[ - 10857, - 10745, - 10744 - ]], - [[ - 10730, - 10729, - 10750 - ]], - [[ - 10744, - 10746, - 10750 - ]], - [[ - 6676, - 6677, - 10746 - ]], - [[ - 10844, - 10660, - 10873 - ]], - [[ - 10903, - 10882, - 10831 - ]], - [[ - 10829, - 10793, - 10794 - ]], - [[ - 10831, - 10881, - 10761 - ]], - [[ - 10859, - 10904, - 10860 - ]], - [[ - 10860, - 625, - 10861 - ]], - [[ - 10664, - 10855, - 10786 - ]], - [[ - 10027, - 10856, - 10855 - ]], - [[ - 10833, - 10807, - 10869 - ]], - [[ - 10840, - 10734, - 10805 - ]], - [[ - 10809, - 10717, - 10811 - ]], - [[ - 10725, - 10797, - 10848 - ]], - [[ - 6658, - 10905, - 6654 - ]], - [[ - 10906, - 6659, - 10715 - ]], - [[ - 10738, - 10714, - 10740 - ]], - [[ - 10715, - 6659, - 10899 - ]], - [[ - 10907, - 10700, - 7214 - ]], - [[ - 10908, - 10885, - 10700 - ]], - [[ - 10830, - 10872, - 10909 - ]], - [[ - 10871, - 6683, - 10872 - ]], - [[ - 10827, - 10737, - 10776 - ]], - [[ - 10909, - 10872, - 10735 - ]], - [[ - 10737, - 10910, - 6684 - ]], - [[ - 10751, - 10735, - 6683 - ]], - [[ - 10859, - 10760, - 10764 - ]], - [[ - 10038, - 646, - 10768 - ]], - [[ - 10911, - 10912, - 10835 - ]], - [[ - 10913, - 10912, - 10854 - ]], - [[ - 10794, - 10753, - 10752 - ]], - [[ - 517, - 502, - 10753 - ]], - [[ - 10763, - 10801, - 10762 - ]], - [[ - 626, - 627, - 10762 - ]], - [[ - 10914, - 10801, - 10915 - ]], - [[ - 10762, - 627, - 10889 - ]], - [[ - 10880, - 10896, - 10895 - ]], - [[ - 10888, - 10887, - 10791 - ]], - [[ - 10902, - 10888, - 10791 - ]], - [[ - 10889, - 10755, - 10762 - ]], - [[ - 10790, - 10916, - 10897 - ]], - [[ - 10896, - 10886, - 10902 - ]], - [[ - 10758, - 10766, - 10767 - ]], - [[ - 10917, - 625, - 10766 - ]], - [[ - 10918, - 10906, - 10715 - ]], - [[ - 6658, - 6659, - 10906 - ]], - [[ - 6841, - 10679, - 6840 - ]], - [[ - 10818, - 6662, - 10679 - ]], - [[ - 10919, - 10854, - 10853 - ]], - [[ - 10710, - 10709, - 10920 - ]], - [[ - 10911, - 10710, - 10854 - ]], - [[ - 10837, - 10795, - 10781 - ]], - [[ - 10774, - 10920, - 10709 - ]], - [[ - 10851, - 10919, - 10853 - ]], - [[ - 10731, - 10716, - 10832 - ]], - [[ - 10899, - 6660, - 10716 - ]], - [[ - 6660, - 10739, - 10716 - ]], - [[ - 10803, - 10804, - 10862 - ]], - [[ - 10716, - 10739, - 10732 - ]], - [[ - 10817, - 10818, - 10921 - ]], - [[ - 10723, - 10719, - 10848 - ]], - [[ - 6751, - 6752, - 10720 - ]], - [[ - 10905, - 10715, - 10714 - ]], - [[ - 10918, - 6658, - 10906 - ]], - [[ - 10724, - 10725, - 10848 - ]], - [[ - 10725, - 10798, - 10797 - ]], - [[ - 10787, - 10852, - 10771 - ]], - [[ - 10787, - 10851, - 10852 - ]], - [[ - 10660, - 10843, - 10658 - ]], - [[ - 10846, - 10875, - 10878 - ]], - [[ - 10714, - 10731, - 10740 - ]], - [[ - 10714, - 10716, - 10731 - ]], - [[ - 7217, - 10698, - 7214 - ]], - [[ - 10908, - 10700, - 10699 - ]], - [[ - 623, - 10765, - 647 - ]], - [[ - 623, - 10904, - 10859 - ]], - [[ - 10679, - 10726, - 10816 - ]], - [[ - 10679, - 6841, - 10726 - ]], - [[ - 10878, - 10922, - 10896 - ]], - [[ - 10922, - 10915, - 10755 - ]], - [[ - 10836, - 10795, - 10837 - ]], - [[ - 10836, - 10796, - 10795 - ]], - [[ - 10923, - 10924, - 10708 - ]], - [[ - 10837, - 10781, - 10708 - ]], - [[ - 10794, - 10752, - 6683 - ]], - [[ - 10754, - 10890, - 10752 - ]], - [[ - 10925, - 10858, - 10901 - ]], - [[ - 10911, - 10854, - 10912 - ]], - [[ - 10919, - 10913, - 10854 - ]], - [[ - 10835, - 10926, - 10836 - ]], - [[ - 10777, - 10925, - 10901 - ]], - [[ - 10750, - 10729, - 10784 - ]], - [[ - 10681, - 10802, - 7183 - ]], - [[ - 7268, - 10800, - 10802 - ]], - [[ - 10743, - 10801, - 10914 - ]], - [[ - 10767, - 626, - 10801 - ]], - [[ - 10735, - 10827, - 10909 - ]], - [[ - 10927, - 10775, - 10874 - ]], - [[ - 10660, - 10844, - 10842 - ]], - [[ - 10660, - 10659, - 10873 - ]], - [[ - 10694, - 10928, - 10704 - ]], - [[ - 10929, - 10690, - 10825 - ]], - [[ - 10706, - 10707, - 10704 - ]], - [[ - 10686, - 10683, - 10687 - ]], - [[ - 10692, - 10694, - 7264 - ]], - [[ - 10693, - 10702, - 10785 - ]], - [[ - 10930, - 10661, - 10663 - ]], - [[ - 10675, - 10671, - 10661 - ]], - [[ - 10812, - 10796, - 10807 - ]], - [[ - 10805, - 10734, - 10733 - ]], - [[ - 10812, - 10780, - 10779 - ]], - [[ - 10807, - 10833, - 10780 - ]], - [[ - 10796, - 10805, - 10807 - ]], - [[ - 10796, - 10836, - 10838 - ]], - [[ - 10796, - 10840, - 10805 - ]], - [[ - 10839, - 10926, - 10858 - ]], - [[ - 10700, - 10885, - 10697 - ]], - [[ - 7218, - 10695, - 10885 - ]], - [[ - 6671, - 10748, - 10749 - ]], - [[ - 6671, - 6675, - 10748 - ]], - [[ - 10871, - 10794, - 6683 - ]], - [[ - 10871, - 10830, - 10794 - ]], - [[ - 10866, - 10845, - 10828 - ]], - [[ - 10866, - 10843, - 10845 - ]], - [[ - 10905, - 10788, - 6654 - ]], - [[ - 10905, - 10714, - 10788 - ]], - [[ - 10931, - 10812, - 10709 - ]], - [[ - 10691, - 10678, - 10772 - ]], - [[ - 10778, - 10810, - 10850 - ]], - [[ - 10868, - 10809, - 10810 - ]], - [[ - 10851, - 10774, - 10773 - ]], - [[ - 10920, - 10853, - 10710 - ]], - [[ - 10851, - 10920, - 10774 - ]], - [[ - 10851, - 10853, - 10920 - ]], - [[ - 10867, - 10834, - 10833 - ]], - [[ - 10868, - 10810, - 10834 - ]], - [[ - 10833, - 10819, - 10780 - ]], - [[ - 10834, - 10810, - 10819 - ]], - [[ - 10734, - 10783, - 10789 - ]], - [[ - 10783, - 10839, - 10858 - ]], - [[ - 10808, - 10770, - 10798 - ]], - [[ - 10869, - 10806, - 10770 - ]], - [[ - 10814, - 10864, - 10701 - ]], - [[ - 10813, - 10815, - 10864 - ]], - [[ - 10692, - 10814, - 10701 - ]], - [[ - 10864, - 10863, - 10701 - ]], - [[ - 10932, - 10933, - 10901 - ]], - [[ - 10934, - 10935, - 10936 - ]], - [[ - 10856, - 10937, - 10919 - ]], - [[ - 10912, - 10938, - 10835 - ]], - [[ - 10851, - 10856, - 10919 - ]], - [[ - 10938, - 10932, - 10835 - ]], - [[ - 10684, - 10785, - 10703 - ]], - [[ - 10928, - 10694, - 10785 - ]], - [[ - 10821, - 10884, - 10939 - ]], - [[ - 10705, - 10704, - 10940 - ]], - [[ - 9996, - 10893, - 10026 - ]], - [[ - 10893, - 10743, - 10742 - ]], - [[ - 503, - 10890, - 10754 - ]], - [[ - 503, - 504, - 10890 - ]], - [[ - 10905, - 10918, - 10715 - ]], - [[ - 10905, - 6658, - 10918 - ]], - [[ - 10941, - 10942, - 10943 - ]], - [[ - 10942, - 10866, - 10847 - ]], - [[ - 10943, - 10942, - 10944 - ]], - [[ - 10941, - 10866, - 10942 - ]], - [[ - 10874, - 10934, - 10927 - ]], - [[ - 10775, - 10827, - 10776 - ]], - [[ - 7218, - 10908, - 7217 - ]], - [[ - 7218, - 10885, - 10908 - ]], - [[ - 10659, - 10831, - 10793 - ]], - [[ - 10881, - 10883, - 10761 - ]], - [[ - 10753, - 10831, - 10761 - ]], - [[ - 10882, - 10658, - 10880 - ]], - [[ - 10737, - 10736, - 10910 - ]], - [[ - 10737, - 10827, - 10735 - ]], - [[ - 10921, - 10804, - 10739 - ]], - [[ - 10921, - 10679, - 10804 - ]], - [[ - 10796, - 10812, - 10781 - ]], - [[ - 10812, - 10772, - 10709 - ]], - [[ - 10772, - 10812, - 10779 - ]], - [[ - 10931, - 10781, - 10812 - ]], - [[ - 10901, - 10933, - 10900 - ]], - [[ - 10027, - 10026, - 10667 - ]], - [[ - 10902, - 10790, - 10897 - ]], - [[ - 10883, - 10880, - 10895 - ]], - [[ - 10916, - 10895, - 10897 - ]], - [[ - 10916, - 10883, - 10895 - ]], - [[ - 10666, - 10874, - 10901 - ]], - [[ - 10925, - 10784, - 10858 - ]], - [[ - 10776, - 10925, - 10777 - ]], - [[ - 10744, - 10784, - 10925 - ]], - [[ - 10769, - 10806, - 10733 - ]], - [[ - 10869, - 10807, - 10806 - ]], - [[ - 10699, - 10907, - 7214 - ]], - [[ - 10699, - 10700, - 10907 - ]], - [[ - 10829, - 10873, - 10793 - ]], - [[ - 10829, - 10844, - 10873 - ]], - [[ - 10672, - 10669, - 10677 - ]], - [[ - 10668, - 10676, - 10664 - ]], - [[ - 10847, - 10830, - 10909 - ]], - [[ - 10829, - 10794, - 10830 - ]], - [[ - 10731, - 10832, - 10789 - ]], - [[ - 10716, - 10732, - 10832 - ]], - [[ - 10757, - 10922, - 10755 - ]], - [[ - 10891, - 10741, - 10914 - ]], - [[ - 10869, - 10867, - 10833 - ]], - [[ - 10869, - 10868, - 10867 - ]], - [[ - 10720, - 10849, - 10724 - ]], - [[ - 10720, - 6752, - 10849 - ]], - [[ - 10910, - 10751, - 6684 - ]], - [[ - 10910, - 10736, - 10751 - ]], - [[ - 10675, - 10930, - 10663 - ]], - [[ - 10675, - 10661, - 10930 - ]], - [[ - 10846, - 10878, - 10896 - ]], - [[ - 10877, - 10891, - 10945 - ]], - [[ - 10845, - 10843, - 10841 - ]], - [[ - 10865, - 10846, - 10843 - ]], - [[ - 10659, - 10903, - 10831 - ]], - [[ - 10659, - 10658, - 10903 - ]], - [[ - 10831, - 10882, - 10881 - ]], - [[ - 10903, - 10658, - 10882 - ]], - [[ - 10824, - 10823, - 10811 - ]], - [[ - 10822, - 10778, - 10850 - ]], - [[ - 10939, - 10823, - 10825 - ]], - [[ - 10850, - 10811, - 10823 - ]], - [[ - 10939, - 10884, - 10823 - ]], - [[ - 10822, - 10850, - 10884 - ]], - [[ - 10826, - 10847, - 10909 - ]], - [[ - 10944, - 10942, - 10847 - ]], - [[ - 10933, - 10856, - 10027 - ]], - [[ - 10946, - 10938, - 10913 - ]], - [[ - 10667, - 10933, - 10027 - ]], - [[ - 10667, - 10900, - 10933 - ]], - [[ - 10768, - 10759, - 10038 - ]], - [[ - 10760, - 10766, - 10758 - ]], - [[ - 10711, - 10722, - 10798 - ]], - [[ - 10719, - 6750, - 6751 - ]], - [[ - 10947, - 10927, - 10936 - ]], - [[ - 10927, - 10934, - 10936 - ]], - [[ - 10760, - 10859, - 10861 - ]], - [[ - 10765, - 623, - 10859 - ]], - [[ - 10932, - 10858, - 10926 - ]], - [[ - 10932, - 10901, - 10858 - ]], - [[ - 10729, - 10783, - 10858 - ]], - [[ - 10728, - 10789, - 10783 - ]], - [[ - 10824, - 10929, - 10825 - ]], - [[ - 10691, - 10779, - 10821 - ]], - [[ - 10884, - 10821, - 10822 - ]], - [[ - 10939, - 10691, - 10821 - ]], - [[ - 10939, - 10690, - 10691 - ]], - [[ - 10939, - 10825, - 10690 - ]], - [[ - 10929, - 10948, - 10690 - ]], - [[ - 10687, - 10690, - 10948 - ]], - [[ - 10940, - 10689, - 10705 - ]], - [[ - 10687, - 10948, - 10689 - ]], - [[ - 10948, - 10929, - 10689 - ]], - [[ - 10707, - 6753, - 7264 - ]], - [[ - 10928, - 10940, - 10704 - ]], - [[ - 10928, - 10686, - 10688 - ]], - [[ - 10940, - 10688, - 10689 - ]], - [[ - 10940, - 10928, - 10688 - ]], - [[ - 10689, - 10706, - 10705 - ]], - [[ - 10824, - 10811, - 10820 - ]], - [[ - 10891, - 10914, - 10915 - ]], - [[ - 10741, - 10743, - 10914 - ]], - [[ - 10776, - 10744, - 10925 - ]], - [[ - 10776, - 10857, - 10744 - ]], - [[ - 10861, - 10917, - 10766 - ]], - [[ - 10861, - 625, - 10917 - ]], - [[ - 10711, - 10862, - 10816 - ]], - [[ - 10804, - 10816, - 10862 - ]], - [[ - 10732, - 10879, - 10733 - ]], - [[ - 10732, - 10739, - 10803 - ]], - [[ - 10879, - 10803, - 10862 - ]], - [[ - 10879, - 10732, - 10803 - ]], - [[ - 10876, - 10892, - 10865 - ]], - [[ - 10876, - 10893, - 10892 - ]], - [[ - 10949, - 10893, - 10876 - ]], - [[ - 10894, - 10758, - 10767 - ]], - [[ - 10886, - 10757, - 10887 - ]], - [[ - 10886, - 10922, - 10757 - ]], - [[ - 10809, - 10725, - 10717 - ]], - [[ - 10809, - 10798, - 10725 - ]], - [[ - 10913, - 10938, - 10912 - ]], - [[ - 10932, - 10926, - 10835 - ]], - [[ - 10927, - 10943, - 10944 - ]], - [[ - 10949, - 10876, - 10941 - ]], - [[ - 10026, - 10941, - 10943 - ]], - [[ - 10876, - 10866, - 10941 - ]], - [[ - 10016, - 10674, - 10017 - ]], - [[ - 10016, - 10664, - 10676 - ]], - [[ - 10743, - 10894, - 10767 - ]], - [[ - 10950, - 10038, - 10758 - ]], - [[ - 10894, - 10951, - 10758 - ]], - [[ - 9996, - 10038, - 10950 - ]], - [[ - 9996, - 10894, - 10893 - ]], - [[ - 10951, - 10950, - 10758 - ]], - [[ - 9996, - 10951, - 10894 - ]], - [[ - 9996, - 10950, - 10951 - ]], - [[ - 10931, - 10782, - 10781 - ]], - [[ - 10931, - 10709, - 10782 - ]], - [[ - 10785, - 10684, - 10686 - ]], - [[ - 10703, - 7202, - 10684 - ]], - [[ - 7195, - 10685, - 7203 - ]], - [[ - 7195, - 10683, - 10685 - ]], - [[ - 10680, - 10814, - 7265 - ]], - [[ - 10813, - 10864, - 10814 - ]], - [[ - 7267, - 10681, - 7265 - ]], - [[ - 7183, - 10813, - 10680 - ]], - [[ - 10924, - 10837, - 10708 - ]], - [[ - 10911, - 10835, - 10837 - ]], - [[ - 10883, - 10790, - 517 - ]], - [[ - 10883, - 10916, - 10790 - ]], - [[ - 10694, - 10707, - 7264 - ]], - [[ - 10706, - 10824, - 10820 - ]], - [[ - 10706, - 10820, - 10707 - ]], - [[ - 10811, - 10718, - 10820 - ]], - [[ - 623, - 10860, - 10904 - ]], - [[ - 623, - 625, - 10860 - ]], - [[ - 10817, - 10921, - 10739 - ]], - [[ - 10818, - 10679, - 10921 - ]], - [[ - 6661, - 10817, - 10739 - ]], - [[ - 6661, - 6662, - 10817 - ]], - [[ - 10896, - 10922, - 10886 - ]], - [[ - 10945, - 10891, - 10915 - ]], - [[ - 10769, - 10713, - 10712 - ]], - [[ - 10879, - 10862, - 10713 - ]], - [[ - 10827, - 10826, - 10909 - ]], - [[ - 10944, - 10847, - 10826 - ]], - [[ - 10796, - 10838, - 10840 - ]], - [[ - 10836, - 10926, - 10839 - ]], - [[ - 10719, - 10724, - 10848 - ]], - [[ - 10849, - 10717, - 10724 - ]], - [[ - 10706, - 10929, - 10824 - ]], - [[ - 10706, - 10689, - 10929 - ]], - [[ - 10868, - 10870, - 10809 - ]], - [[ - 10868, - 10869, - 10870 - ]], - [[ - 10870, - 10808, - 10809 - ]], - [[ - 10870, - 10770, - 10808 - ]], - [[ - 10785, - 10686, - 10928 - ]], - [[ - 10684, - 10683, - 10686 - ]], - [[ - 10908, - 10698, - 7217 - ]], - [[ - 10908, - 10699, - 10698 - ]], - [[ - 7268, - 10681, - 7267 - ]], - [[ - 7268, - 10802, - 10681 - ]], - [[ - 10026, - 10949, - 10941 - ]], - [[ - 10026, - 10893, - 10949 - ]], - [[ - 10026, - 10947, - 10936 - ]], - [[ - 10944, - 10826, - 10927 - ]], - [[ - 10901, - 10874, - 10777 - ]], - [[ - 10927, - 10826, - 10775 - ]], - [[ - 10859, - 10764, - 10765 - ]], - [[ - 10768, - 647, - 10764 - ]], - [[ - 10892, - 10875, - 10865 - ]], - [[ - 10892, - 10742, - 10875 - ]], - [[ - 10934, - 10952, - 10935 - ]], - [[ - 10935, - 10026, - 10936 - ]], - [[ - 10777, - 10874, - 10775 - ]], - [[ - 10952, - 10934, - 10874 - ]], - [[ - 10667, - 10935, - 10665 - ]], - [[ - 10667, - 10026, - 10935 - ]], - [[ - 10665, - 10952, - 10874 - ]], - [[ - 10665, - 10935, - 10952 - ]], - [[ - 513, - 10889, - 627 - ]], - [[ - 10756, - 10887, - 10757 - ]], - [[ - 10898, - 10756, - 10889 - ]], - [[ - 10898, - 10791, - 10887 - ]], - [[ - 513, - 10898, - 10889 - ]], - [[ - 513, - 10791, - 10898 - ]], - [[ - 10896, - 10902, - 10897 - ]], - [[ - 10886, - 10888, - 10902 - ]], - [[ - 6685, - 10747, - 6684 - ]], - [[ - 10749, - 10748, - 10747 - ]], - [[ - 10671, - 10676, - 10673 - ]], - [[ - 10674, - 10016, - 10676 - ]], - [[ - 10943, - 10947, - 10026 - ]], - [[ - 10943, - 10927, - 10947 - ]], - [[ - 10722, - 10711, - 10727 - ]], - [[ - 10798, - 10770, - 10711 - ]], - [[ - 10919, - 10937, - 10913 - ]], - [[ - 10933, - 10932, - 10938 - ]], - [[ - 10937, - 10946, - 10913 - ]], - [[ - 10937, - 10953, - 10946 - ]], - [[ - 10672, - 10668, - 10669 - ]], - [[ - 10673, - 10676, - 10668 - ]], - [[ - 10933, - 10937, - 10856 - ]], - [[ - 10953, - 10938, - 10946 - ]], - [[ - 10710, - 10923, - 10708 - ]], - [[ - 10911, - 10837, - 10924 - ]], - [[ - 10911, - 10923, - 10710 - ]], - [[ - 10911, - 10924, - 10923 - ]], - [[ - 10933, - 10953, - 10937 - ]], - [[ - 10933, - 10938, - 10953 - ]], - [[ - 10806, - 10769, - 10770 - ]], - [[ - 10733, - 10713, - 10769 - ]], - [[ - 10922, - 10945, - 10915 - ]], - [[ - 10877, - 10742, - 10891 - ]], - [[ - 10878, - 10945, - 10922 - ]], - [[ - 10878, - 10877, - 10945 - ]], - [[ - 6683, - 10735, - 10872 - ]], - [[ - 10751, - 10736, - 10735 - ]], - [[ - 10915, - 10763, - 10755 - ]], - [[ - 10915, - 10801, - 10763 - ]], - [[ - 6750, - 10723, - 10727 - ]], - [[ - 10721, - 10798, - 10722 - ]], - [[ - 10799, - 10723, - 10848 - ]], - [[ - 10722, - 10727, - 10723 - ]], - [[ - 10724, - 10719, - 10720 - ]], - [[ - 10723, - 6750, - 10719 - ]], - [[ - 10799, - 10721, - 10723 - ]], - [[ - 10799, - 10798, - 10721 - ]], - [[ - 10766, - 10760, - 10861 - ]], - [[ - 10759, - 10768, - 10760 - ]], - [[ - 7265, - 10954, - 7264 - ]], - [[ - 7265, - 10814, - 10954 - ]], - [[ - 10954, - 10692, - 7264 - ]], - [[ - 10954, - 10814, - 10692 - ]], - [[ - 10734, - 10839, - 10783 - ]], - [[ - 10838, - 10836, - 10839 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b493349d4-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2015-01-14", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.9958a905655d4ef0bdce4cc3ddf59082", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10955, - 8735, - 8729 - ]], - [[ - 3038, - 8729, - 8737 - ]], - [[ - 8731, - 8735, - 1885 - ]], - [[ - 1887, - 1886, - 3037 - ]], - [[ - 1885, - 8735, - 1886 - ]], - [[ - 8731, - 1887, - 3036 - ]], - [[ - 8731, - 1884, - 1887 - ]], - [[ - 8731, - 1885, - 1884 - ]], - [[ - 1886, - 8735, - 10955 - ]], - [[ - 3039, - 3038, - 8737 - ]], - [[ - 3037, - 10955, - 3038 - ]], - [[ - 3036, - 3039, - 8737 - ]], - [[ - 8731, - 3036, - 8737 - ]], - [[ - 1887, - 3037, - 3036 - ]], - [[ - 3038, - 10955, - 8729 - ]], - [[ - 3037, - 1886, - 10955 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b49340dd5-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef660349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10956, - 10957, - 10958 - ]], - [[ - 10956, - 10958, - 10959 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4935bab7-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5ca649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 6732, - 6729, - 6731 - ]], - [[ - 10960, - 7005, - 7006 - ]], - [[ - 10961, - 7004, - 7005 - ]], - [[ - 10962, - 6981, - 7004 - ]], - [[ - 10962, - 10963, - 10964 - ]], - [[ - 10965, - 6986, - 6987 - ]], - [[ - 7007, - 6729, - 6732 - ]], - [[ - 10966, - 7007, - 6732 - ]], - [[ - 10965, - 10966, - 10967 - ]], - [[ - 10968, - 10969, - 10963 - ]], - [[ - 6986, - 10966, - 6732 - ]], - [[ - 6986, - 10967, - 10966 - ]], - [[ - 7007, - 10969, - 7006 - ]], - [[ - 10970, - 10966, - 10969 - ]], - [[ - 10968, - 10971, - 10960 - ]], - [[ - 10971, - 7004, - 10961 - ]], - [[ - 7007, - 10970, - 10969 - ]], - [[ - 7007, - 10966, - 10970 - ]], - [[ - 10972, - 10964, - 10965 - ]], - [[ - 10963, - 10969, - 10966 - ]], - [[ - 10965, - 10963, - 10966 - ]], - [[ - 10971, - 10961, - 10960 - ]], - [[ - 10962, - 10971, - 10963 - ]], - [[ - 7006, - 10969, - 10968 - ]], - [[ - 6981, - 10964, - 10972 - ]], - [[ - 6981, - 10962, - 10964 - ]], - [[ - 10968, - 10960, - 7006 - ]], - [[ - 10961, - 7005, - 10960 - ]], - [[ - 6981, - 10972, - 6987 - ]], - [[ - 10964, - 10963, - 10965 - ]], - [[ - 10963, - 10971, - 10968 - ]], - [[ - 10962, - 7004, - 10971 - ]], - [[ - 10972, - 10965, - 6987 - ]], - [[ - 10967, - 6986, - 10965 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b49387a1d-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "open verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef812549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10973, - 10974, - 10975 - ]], - [[ - 10974, - 10976, - 10975 - ]], - [[ - 10975, - 10977, - 10978 - ]], - [[ - 10978, - 10977, - 10979 - ]], - [[ - 10975, - 10980, - 10977 - ]], - [[ - 10975, - 10981, - 10980 - ]], - [[ - 10980, - 10982, - 10983 - ]], - [[ - 10980, - 10981, - 10982 - ]], - [[ - 10975, - 10984, - 10981 - ]], - [[ - 10981, - 10985, - 10986 - ]], - [[ - 10981, - 10984, - 10985 - ]], - [[ - 10975, - 10987, - 10984 - ]], - [[ - 10984, - 10988, - 10989 - ]], - [[ - 10989, - 10990, - 10991 - ]], - [[ - 10989, - 10988, - 10990 - ]], - [[ - 10990, - 10988, - 10992 - ]], - [[ - 10984, - 10993, - 10988 - ]], - [[ - 10988, - 10993, - 10994 - ]], - [[ - 10994, - 10993, - 10995 - ]], - [[ - 10984, - 10987, - 10993 - ]], - [[ - 10975, - 10976, - 10987 - ]], - [[ - 10987, - 10976, - 10996 - ]], - [[ - 10974, - 10997, - 10976 - ]], - [[ - 10976, - 10997, - 10998 - ]], - [[ - 10998, - 10999, - 11000 - ]], - [[ - 11000, - 11001, - 11002 - ]], - [[ - 11000, - 10999, - 11001 - ]], - [[ - 11001, - 10999, - 11003 - ]], - [[ - 10998, - 11004, - 10999 - ]], - [[ - 10999, - 11005, - 11006 - ]], - [[ - 10999, - 11007, - 11005 - ]], - [[ - 10999, - 11008, - 11007 - ]], - [[ - 10999, - 11004, - 11008 - ]], - [[ - 11008, - 11004, - 11009 - ]], - [[ - 11009, - 11010, - 11011 - ]], - [[ - 11011, - 11010, - 11012 - ]], - [[ - 11009, - 11004, - 11010 - ]], - [[ - 10998, - 10997, - 11004 - ]], - [[ - 11004, - 11013, - 11014 - ]], - [[ - 11004, - 11015, - 11013 - ]], - [[ - 11004, - 10997, - 11015 - ]], - [[ - 11015, - 11016, - 11017 - ]], - [[ - 11015, - 11018, - 11016 - ]], - [[ - 11016, - 11018, - 11019 - ]], - [[ - 11015, - 11020, - 11018 - ]], - [[ - 11018, - 11020, - 11021 - ]], - [[ - 11015, - 11022, - 11020 - ]], - [[ - 11020, - 11022, - 11023 - ]], - [[ - 11023, - 11022, - 11024 - ]], - [[ - 11024, - 11022, - 11025 - ]], - [[ - 11015, - 11026, - 11022 - ]], - [[ - 11022, - 11026, - 11027 - ]], - [[ - 11027, - 11026, - 11028 - ]], - [[ - 11015, - 10997, - 11026 - ]], - [[ - 11026, - 11029, - 11030 - ]], - [[ - 11030, - 11031, - 11032 - ]], - [[ - 11030, - 11029, - 11031 - ]], - [[ - 11026, - 11033, - 11029 - ]], - [[ - 11029, - 11033, - 11034 - ]], - [[ - 11026, - 11035, - 11033 - ]], - [[ - 11033, - 11036, - 11037 - ]], - [[ - 11037, - 11036, - 11038 - ]], - [[ - 11033, - 11039, - 11036 - ]], - [[ - 11036, - 11039, - 11040 - ]], - [[ - 11033, - 11035, - 11039 - ]], - [[ - 11039, - 11041, - 11042 - ]], - [[ - 11039, - 11043, - 11041 - ]], - [[ - 11039, - 11044, - 11043 - ]], - [[ - 11039, - 11035, - 11044 - ]], - [[ - 11044, - 11035, - 11045 - ]], - [[ - 11045, - 11046, - 11047 - ]], - [[ - 11045, - 11035, - 11046 - ]], - [[ - 11026, - 11048, - 11035 - ]], - [[ - 11035, - 11049, - 11050 - ]], - [[ - 11050, - 11049, - 11051 - ]], - [[ - 11035, - 11052, - 11049 - ]], - [[ - 11035, - 11048, - 11052 - ]], - [[ - 11052, - 11053, - 11054 - ]], - [[ - 11052, - 11048, - 11053 - ]], - [[ - 11053, - 11055, - 11056 - ]], - [[ - 11053, - 11048, - 11055 - ]], - [[ - 11055, - 11057, - 11058 - ]], - [[ - 11058, - 11059, - 11060 - ]], - [[ - 11058, - 11057, - 11059 - ]], - [[ - 11055, - 11048, - 11057 - ]], - [[ - 11057, - 11048, - 11061 - ]], - [[ - 11061, - 11062, - 11063 - ]], - [[ - 11061, - 11048, - 11062 - ]], - [[ - 11062, - 11048, - 11064 - ]], - [[ - 11026, - 10997, - 11048 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b4939b281-00b4-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_fysiekvoorkomen": "erf", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef5f4049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11065, - 299, - 11066 - ]], - [[ - 11065, - 11066, - 11067 - ]], - [[ - 11068, - 11069, - 11065 - ]], - [[ - 298, - 299, - 11065 - ]], - [[ - 11068, - 11065, - 11067 - ]], - [[ - 11069, - 298, - 11065 - ]], - [[ - 298, - 11068, - 11067 - ]], - [[ - 298, - 11069, - 11068 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b69a8d7bc-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "P0028", - "class": "waterloop", - "creationdate": "2014-07-10", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "P0028.3600507750384e9faeac329b0fffe720", - "lv_publicatiedatum": "2016-06-07T16:00:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:57:13.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11070, - 11071, - 11072 - ]], - [[ - 11073, - 11070, - 11074 - ]], - [[ - 11075, - 11076, - 11074 - ]], - [[ - 11077, - 11075, - 11074 - ]], - [[ - 11078, - 11077, - 11074 - ]], - [[ - 11079, - 11078, - 11074 - ]], - [[ - 11080, - 11079, - 11074 - ]], - [[ - 11081, - 11082, - 11083 - ]], - [[ - 11084, - 11085, - 11086 - ]], - [[ - 11087, - 11088, - 11089 - ]], - [[ - 11090, - 11091, - 11086 - ]], - [[ - 11086, - 11092, - 11093 - ]], - [[ - 11094, - 11090, - 11086 - ]], - [[ - 11095, - 11096, - 11097 - ]], - [[ - 11098, - 11095, - 11097 - ]], - [[ - 11098, - 11099, - 11095 - ]], - [[ - 11098, - 11100, - 11099 - ]], - [[ - 11097, - 11101, - 11102 - ]], - [[ - 11102, - 11101, - 11103 - ]], - [[ - 11104, - 11105, - 11106 - ]], - [[ - 11104, - 11107, - 11108 - ]], - [[ - 11104, - 11109, - 11110 - ]], - [[ - 11104, - 11108, - 11109 - ]], - [[ - 11111, - 11104, - 11110 - ]], - [[ - 11104, - 11112, - 11107 - ]], - [[ - 11113, - 11114, - 11088 - ]], - [[ - 11104, - 11115, - 11098 - ]], - [[ - 11091, - 11084, - 11086 - ]], - [[ - 11116, - 11117, - 11118 - ]], - [[ - 11119, - 11118, - 11081 - ]], - [[ - 11085, - 11120, - 11086 - ]], - [[ - 11121, - 11081, - 11083 - ]], - [[ - 11120, - 11122, - 11086 - ]], - [[ - 11082, - 11080, - 11123 - ]], - [[ - 11098, - 11102, - 11104 - ]], - [[ - 11124, - 11086, - 11122 - ]], - [[ - 11125, - 11086, - 11124 - ]], - [[ - 11126, - 11086, - 11125 - ]], - [[ - 11127, - 11086, - 11126 - ]], - [[ - 11128, - 11086, - 11127 - ]], - [[ - 11129, - 11130, - 11088 - ]], - [[ - 11131, - 11123, - 11074 - ]], - [[ - 11070, - 11072, - 11074 - ]], - [[ - 11132, - 11133, - 11072 - ]], - [[ - 11134, - 11135, - 11072 - ]], - [[ - 11134, - 11072, - 11136 - ]], - [[ - 11136, - 11072, - 11137 - ]], - [[ - 11137, - 11072, - 11138 - ]], - [[ - 11138, - 11072, - 11139 - ]], - [[ - 11140, - 11138, - 11139 - ]], - [[ - 11141, - 11140, - 11139 - ]], - [[ - 11142, - 11141, - 11139 - ]], - [[ - 11143, - 11142, - 11139 - ]], - [[ - 11144, - 11143, - 11139 - ]], - [[ - 11145, - 11144, - 11139 - ]], - [[ - 11146, - 11145, - 11139 - ]], - [[ - 11147, - 11146, - 11139 - ]], - [[ - 11148, - 11147, - 11139 - ]], - [[ - 11149, - 11148, - 11139 - ]], - [[ - 11139, - 11072, - 11150 - ]], - [[ - 11150, - 11072, - 11151 - ]], - [[ - 11152, - 11150, - 11153 - ]], - [[ - 11154, - 11152, - 11153 - ]], - [[ - 11155, - 11156, - 11157 - ]], - [[ - 11153, - 11150, - 11158 - ]], - [[ - 11159, - 11160, - 11150 - ]], - [[ - 11158, - 11150, - 11161 - ]], - [[ - 11162, - 11163, - 11150 - ]], - [[ - 11161, - 11150, - 11164 - ]], - [[ - 11165, - 11166, - 11150 - ]], - [[ - 11164, - 11150, - 11166 - ]], - [[ - 11123, - 11080, - 11074 - ]], - [[ - 11121, - 11083, - 11167 - ]], - [[ - 11150, - 11163, - 11165 - ]], - [[ - 11123, - 11083, - 11082 - ]], - [[ - 11168, - 11169, - 11167 - ]], - [[ - 11170, - 11171, - 11172 - ]], - [[ - 11150, - 11160, - 11162 - ]], - [[ - 11168, - 11171, - 11173 - ]], - [[ - 11174, - 11175, - 11176 - ]], - [[ - 11177, - 11156, - 11178 - ]], - [[ - 11151, - 11179, - 11150 - ]], - [[ - 11159, - 11150, - 11179 - ]], - [[ - 11151, - 11072, - 11133 - ]], - [[ - 11180, - 11132, - 11072 - ]], - [[ - 11181, - 11180, - 11072 - ]], - [[ - 11072, - 11182, - 11181 - ]], - [[ - 11072, - 11183, - 11182 - ]], - [[ - 11072, - 11184, - 11183 - ]], - [[ - 11072, - 11185, - 11184 - ]], - [[ - 11072, - 11071, - 11185 - ]], - [[ - 11076, - 11073, - 11074 - ]], - [[ - 11186, - 11187, - 11188 - ]], - [[ - 11189, - 11190, - 11117 - ]], - [[ - 11191, - 11192, - 11190 - ]], - [[ - 11193, - 11194, - 11192 - ]], - [[ - 11195, - 11196, - 11194 - ]], - [[ - 11197, - 11198, - 11196 - ]], - [[ - 11199, - 11200, - 11198 - ]], - [[ - 11201, - 11202, - 11200 - ]], - [[ - 11203, - 11204, - 11202 - ]], - [[ - 11205, - 11089, - 11204 - ]], - [[ - 11104, - 11111, - 11115 - ]], - [[ - 11094, - 11086, - 11093 - ]], - [[ - 11102, - 11098, - 11097 - ]], - [[ - 11088, - 11130, - 11113 - ]], - [[ - 11086, - 11103, - 11206 - ]], - [[ - 11207, - 11129, - 11088 - ]], - [[ - 11207, - 11208, - 11129 - ]], - [[ - 11087, - 11207, - 11088 - ]], - [[ - 11087, - 11209, - 11207 - ]], - [[ - 11210, - 11211, - 11209 - ]], - [[ - 11210, - 11212, - 11211 - ]], - [[ - 11210, - 11213, - 11212 - ]], - [[ - 11214, - 11213, - 11215 - ]], - [[ - 11216, - 11214, - 11217 - ]], - [[ - 11218, - 11216, - 11217 - ]], - [[ - 11219, - 11218, - 11220 - ]], - [[ - 11221, - 11219, - 11222 - ]], - [[ - 11223, - 11221, - 11224 - ]], - [[ - 11225, - 11223, - 11226 - ]], - [[ - 11227, - 11225, - 11228 - ]], - [[ - 11229, - 11227, - 11230 - ]], - [[ - 11230, - 11227, - 11231 - ]], - [[ - 11231, - 11227, - 11232 - ]], - [[ - 11232, - 11227, - 11228 - ]], - [[ - 11228, - 11225, - 11233 - ]], - [[ - 11233, - 11225, - 11226 - ]], - [[ - 11226, - 11223, - 11234 - ]], - [[ - 11234, - 11223, - 11235 - ]], - [[ - 11235, - 11223, - 11224 - ]], - [[ - 11224, - 11221, - 11222 - ]], - [[ - 11222, - 11219, - 11220 - ]], - [[ - 11220, - 11218, - 11217 - ]], - [[ - 11236, - 11220, - 11217 - ]], - [[ - 11237, - 11236, - 11217 - ]], - [[ - 11238, - 11237, - 11217 - ]], - [[ - 11239, - 11238, - 11217 - ]], - [[ - 11240, - 11239, - 11217 - ]], - [[ - 11241, - 11240, - 11217 - ]], - [[ - 11242, - 11241, - 11217 - ]], - [[ - 11243, - 11242, - 11244 - ]], - [[ - 11245, - 11243, - 11244 - ]], - [[ - 11246, - 11245, - 11244 - ]], - [[ - 11247, - 11246, - 11244 - ]], - [[ - 11248, - 11247, - 11244 - ]], - [[ - 11188, - 11248, - 11186 - ]], - [[ - 11244, - 11186, - 11248 - ]], - [[ - 11249, - 11250, - 11251 - ]], - [[ - 11251, - 11186, - 11244 - ]], - [[ - 11249, - 11251, - 11244 - ]], - [[ - 11244, - 11242, - 11217 - ]], - [[ - 11252, - 11253, - 11177 - ]], - [[ - 11217, - 11214, - 11215 - ]], - [[ - 11174, - 11254, - 11172 - ]], - [[ - 11215, - 11213, - 11210 - ]], - [[ - 11209, - 11087, - 11210 - ]], - [[ - 11175, - 11253, - 11255 - ]], - [[ - 11205, - 11256, - 11089 - ]], - [[ - 11087, - 11089, - 11256 - ]], - [[ - 11257, - 11258, - 11157 - ]], - [[ - 11204, - 11259, - 11205 - ]], - [[ - 11260, - 11261, - 11262 - ]], - [[ - 11204, - 11263, - 11259 - ]], - [[ - 11257, - 11261, - 11264 - ]], - [[ - 11263, - 11204, - 11203 - ]], - [[ - 11203, - 11202, - 11265 - ]], - [[ - 11265, - 11202, - 11201 - ]], - [[ - 11201, - 11200, - 11266 - ]], - [[ - 11266, - 11200, - 11199 - ]], - [[ - 11199, - 11198, - 11267 - ]], - [[ - 11267, - 11198, - 11268 - ]], - [[ - 11268, - 11198, - 11197 - ]], - [[ - 11197, - 11196, - 11269 - ]], - [[ - 11269, - 11196, - 11195 - ]], - [[ - 11195, - 11194, - 11270 - ]], - [[ - 11270, - 11194, - 11271 - ]], - [[ - 11271, - 11194, - 11193 - ]], - [[ - 11193, - 11192, - 11272 - ]], - [[ - 11272, - 11192, - 11273 - ]], - [[ - 11273, - 11192, - 11191 - ]], - [[ - 11189, - 11274, - 11190 - ]], - [[ - 11191, - 11190, - 11274 - ]], - [[ - 11275, - 11189, - 11117 - ]], - [[ - 11276, - 11275, - 11117 - ]], - [[ - 11116, - 11276, - 11117 - ]], - [[ - 11277, - 11278, - 11262 - ]], - [[ - 11118, - 11279, - 11116 - ]], - [[ - 11118, - 11280, - 11279 - ]], - [[ - 11281, - 11282, - 11283 - ]], - [[ - 11118, - 11119, - 11280 - ]], - [[ - 11277, - 11282, - 11284 - ]], - [[ - 11119, - 11081, - 11285 - ]], - [[ - 11285, - 11081, - 11121 - ]], - [[ - 11286, - 11287, - 11167 - ]], - [[ - 11121, - 11167, - 11287 - ]], - [[ - 11169, - 11286, - 11167 - ]], - [[ - 11288, - 11289, - 11283 - ]], - [[ - 11168, - 11290, - 11169 - ]], - [[ - 11168, - 11291, - 11290 - ]], - [[ - 11292, - 11293, - 11294 - ]], - [[ - 11168, - 11173, - 11291 - ]], - [[ - 11288, - 11293, - 11295 - ]], - [[ - 11173, - 11171, - 11296 - ]], - [[ - 11170, - 11297, - 11171 - ]], - [[ - 11296, - 11171, - 11297 - ]], - [[ - 11298, - 11170, - 11172 - ]], - [[ - 11299, - 11300, - 11294 - ]], - [[ - 11172, - 11301, - 11298 - ]], - [[ - 11302, - 11303, - 11304 - ]], - [[ - 11172, - 11254, - 11301 - ]], - [[ - 11299, - 11303, - 11305 - ]], - [[ - 11254, - 11174, - 11306 - ]], - [[ - 11176, - 11307, - 11174 - ]], - [[ - 11306, - 11174, - 11307 - ]], - [[ - 11308, - 11176, - 11175 - ]], - [[ - 11309, - 11302, - 11304 - ]], - [[ - 11302, - 11310, - 11311 - ]], - [[ - 11175, - 11312, - 11308 - ]], - [[ - 11309, - 11310, - 11302 - ]], - [[ - 11313, - 11255, - 11253 - ]], - [[ - 11312, - 11175, - 11255 - ]], - [[ - 11314, - 11313, - 11253 - ]], - [[ - 11315, - 11316, - 11311 - ]], - [[ - 11317, - 11318, - 11319 - ]], - [[ - 11253, - 11252, - 11314 - ]], - [[ - 11315, - 11318, - 11316 - ]], - [[ - 11252, - 11177, - 11320 - ]], - [[ - 11320, - 11177, - 11321 - ]], - [[ - 11321, - 11177, - 11322 - ]], - [[ - 11322, - 11177, - 11178 - ]], - [[ - 11178, - 11156, - 11323 - ]], - [[ - 11323, - 11156, - 11324 - ]], - [[ - 11324, - 11156, - 11155 - ]], - [[ - 11155, - 11157, - 11325 - ]], - [[ - 11325, - 11157, - 11326 - ]], - [[ - 11326, - 11157, - 11327 - ]], - [[ - 11327, - 11157, - 11258 - ]], - [[ - 11258, - 11257, - 11328 - ]], - [[ - 11328, - 11257, - 11329 - ]], - [[ - 11329, - 11257, - 11330 - ]], - [[ - 11330, - 11257, - 11331 - ]], - [[ - 11331, - 11257, - 11264 - ]], - [[ - 11264, - 11261, - 11332 - ]], - [[ - 11332, - 11261, - 11333 - ]], - [[ - 11333, - 11261, - 11334 - ]], - [[ - 11334, - 11261, - 11335 - ]], - [[ - 11335, - 11261, - 11260 - ]], - [[ - 11260, - 11262, - 11278 - ]], - [[ - 11278, - 11277, - 11284 - ]], - [[ - 11284, - 11282, - 11336 - ]], - [[ - 11336, - 11282, - 11281 - ]], - [[ - 11281, - 11283, - 11337 - ]], - [[ - 11338, - 11339, - 11283 - ]], - [[ - 11337, - 11283, - 11339 - ]], - [[ - 11340, - 11338, - 11283 - ]], - [[ - 11341, - 11340, - 11283 - ]], - [[ - 11289, - 11341, - 11283 - ]], - [[ - 11342, - 11289, - 11288 - ]], - [[ - 11343, - 11342, - 11288 - ]], - [[ - 11344, - 11343, - 11288 - ]], - [[ - 11345, - 11344, - 11288 - ]], - [[ - 11295, - 11345, - 11288 - ]], - [[ - 11346, - 11295, - 11293 - ]], - [[ - 11347, - 11346, - 11293 - ]], - [[ - 11348, - 11347, - 11293 - ]], - [[ - 11349, - 11348, - 11293 - ]], - [[ - 11292, - 11349, - 11293 - ]], - [[ - 11350, - 11292, - 11294 - ]], - [[ - 11351, - 11350, - 11294 - ]], - [[ - 11352, - 11351, - 11294 - ]], - [[ - 11300, - 11352, - 11294 - ]], - [[ - 11353, - 11300, - 11299 - ]], - [[ - 11354, - 11353, - 11299 - ]], - [[ - 11355, - 11354, - 11299 - ]], - [[ - 11305, - 11355, - 11299 - ]], - [[ - 11356, - 11305, - 11303 - ]], - [[ - 11357, - 11356, - 11303 - ]], - [[ - 11302, - 11357, - 11303 - ]], - [[ - 11316, - 11302, - 11311 - ]], - [[ - 11106, - 11105, - 11319 - ]], - [[ - 11318, - 11358, - 11316 - ]], - [[ - 11318, - 11359, - 11358 - ]], - [[ - 11318, - 11360, - 11359 - ]], - [[ - 11318, - 11361, - 11360 - ]], - [[ - 11318, - 11362, - 11361 - ]], - [[ - 11106, - 11112, - 11104 - ]], - [[ - 11362, - 11318, - 11363 - ]], - [[ - 11363, - 11318, - 11364 - ]], - [[ - 11364, - 11318, - 11365 - ]], - [[ - 11365, - 11318, - 11366 - ]], - [[ - 11366, - 11318, - 11367 - ]], - [[ - 11367, - 11318, - 11368 - ]], - [[ - 11368, - 11318, - 11369 - ]], - [[ - 11369, - 11318, - 11370 - ]], - [[ - 11370, - 11318, - 11371 - ]], - [[ - 11371, - 11318, - 11372 - ]], - [[ - 11372, - 11318, - 11317 - ]], - [[ - 11317, - 11319, - 11373 - ]], - [[ - 11373, - 11319, - 11105 - ]], - [[ - 11092, - 11086, - 11206 - ]], - [[ - 11102, - 11103, - 11086 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "WaterBody" - }, - "b80066d8d-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 11374, - 11375, - 11376 - ]], - [[ - 11374, - 11376, - 11377 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b8009a157-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef0bbe49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [[[ - 11378, - 11379, - 11380 - ]]], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b82575848-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "P0028", - "creationdate": "2014-07-10", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "P0028.a6c08b19180041c1972275ff0fc7c5ce", - "lv_publicatiedatum": "2016-06-07T16:00:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:55:21.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 4137, - 4135, - 11381 - ]], - [[ - 4135, - 4133, - 11382 - ]], - [[ - 4346, - 11383, - 4349 - ]], - [[ - 11384, - 4097, - 11385 - ]], - [[ - 11385, - 4090, - 11386 - ]], - [[ - 11386, - 4090, - 4079 - ]], - [[ - 11387, - 11388, - 3990 - ]], - [[ - 11389, - 3976, - 11390 - ]], - [[ - 11391, - 11392, - 11393 - ]], - [[ - 11394, - 11395, - 11396 - ]], - [[ - 11397, - 4003, - 11398 - ]], - [[ - 11399, - 11364, - 11400 - ]], - [[ - 11399, - 11401, - 11364 - ]], - [[ - 11402, - 11403, - 11363 - ]], - [[ - 11402, - 11404, - 11403 - ]], - [[ - 11405, - 11406, - 11404 - ]], - [[ - 11407, - 11408, - 11406 - ]], - [[ - 3972, - 11358, - 11408 - ]], - [[ - 11409, - 4349, - 11410 - ]], - [[ - 11411, - 11409, - 11412 - ]], - [[ - 11413, - 11409, - 11414 - ]], - [[ - 11415, - 11412, - 11409 - ]], - [[ - 11416, - 11409, - 11417 - ]], - [[ - 11418, - 11414, - 11409 - ]], - [[ - 11416, - 11418, - 11409 - ]], - [[ - 11409, - 11419, - 11420 - ]], - [[ - 11409, - 11421, - 11419 - ]], - [[ - 11409, - 11422, - 11421 - ]], - [[ - 11409, - 11423, - 11422 - ]], - [[ - 11409, - 11410, - 11423 - ]], - [[ - 4349, - 11424, - 11410 - ]], - [[ - 4349, - 11425, - 11424 - ]], - [[ - 4349, - 11426, - 11425 - ]], - [[ - 4349, - 11427, - 11426 - ]], - [[ - 4349, - 11428, - 11427 - ]], - [[ - 4349, - 11429, - 11428 - ]], - [[ - 4349, - 11430, - 11429 - ]], - [[ - 4349, - 11431, - 11430 - ]], - [[ - 4349, - 11432, - 11431 - ]], - [[ - 4349, - 11433, - 11432 - ]], - [[ - 4349, - 11434, - 11433 - ]], - [[ - 4349, - 11435, - 11434 - ]], - [[ - 4349, - 11436, - 11435 - ]], - [[ - 4349, - 11437, - 11436 - ]], - [[ - 4349, - 11438, - 11437 - ]], - [[ - 4349, - 11439, - 11438 - ]], - [[ - 11440, - 4097, - 11384 - ]], - [[ - 4346, - 11441, - 11383 - ]], - [[ - 11442, - 11316, - 11358 - ]], - [[ - 4798, - 11441, - 4345 - ]], - [[ - 11443, - 4762, - 11409 - ]], - [[ - 4345, - 11441, - 4346 - ]], - [[ - 11417, - 11409, - 11420 - ]], - [[ - 11383, - 11439, - 4349 - ]], - [[ - 11390, - 11444, - 11389 - ]], - [[ - 11445, - 11446, - 11447 - ]], - [[ - 4762, - 11302, - 11448 - ]], - [[ - 11398, - 4003, - 11449 - ]], - [[ - 11444, - 4762, - 11448 - ]], - [[ - 11450, - 3989, - 11392 - ]], - [[ - 11450, - 11451, - 3989 - ]], - [[ - 3974, - 11358, - 3972 - ]], - [[ - 11452, - 11402, - 11363 - ]], - [[ - 11453, - 3989, - 11454 - ]], - [[ - 11392, - 11391, - 11455 - ]], - [[ - 11456, - 3990, - 11388 - ]], - [[ - 11457, - 3982, - 3981 - ]], - [[ - 11458, - 11457, - 3981 - ]], - [[ - 11459, - 11460, - 3964 - ]], - [[ - 11461, - 4010, - 3982 - ]], - [[ - 11462, - 11463, - 4010 - ]], - [[ - 11464, - 11465, - 11466 - ]], - [[ - 11467, - 4010, - 11468 - ]], - [[ - 11468, - 4010, - 11469 - ]], - [[ - 11385, - 4097, - 4090 - ]], - [[ - 4133, - 4097, - 11440 - ]], - [[ - 11382, - 4133, - 11440 - ]], - [[ - 11381, - 4135, - 11382 - ]], - [[ - 11470, - 3954, - 11381 - ]], - [[ - 11381, - 3954, - 4137 - ]], - [[ - 11470, - 11471, - 3959 - ]], - [[ - 3954, - 11470, - 3959 - ]], - [[ - 11472, - 11454, - 3989 - ]], - [[ - 11388, - 11447, - 11456 - ]], - [[ - 11393, - 11395, - 11394 - ]], - [[ - 4003, - 11397, - 11395 - ]], - [[ - 11402, - 11452, - 11404 - ]], - [[ - 11473, - 11407, - 11405 - ]], - [[ - 11474, - 11475, - 4010 - ]], - [[ - 11467, - 11476, - 11477 - ]], - [[ - 11478, - 11479, - 4010 - ]], - [[ - 11480, - 11481, - 11479 - ]], - [[ - 11482, - 11483, - 11461 - ]], - [[ - 11480, - 11479, - 11483 - ]], - [[ - 11405, - 11407, - 11406 - ]], - [[ - 11484, - 11408, - 11407 - ]], - [[ - 11479, - 11481, - 4010 - ]], - [[ - 11462, - 11485, - 11463 - ]], - [[ - 11460, - 11486, - 11487 - ]], - [[ - 11487, - 4079, - 11460 - ]], - [[ - 11480, - 11463, - 11485 - ]], - [[ - 11480, - 11488, - 11463 - ]], - [[ - 11451, - 11388, - 11454 - ]], - [[ - 11451, - 11447, - 11388 - ]], - [[ - 11302, - 11443, - 11411 - ]], - [[ - 11489, - 4762, - 11443 - ]], - [[ - 11490, - 11491, - 3981 - ]], - [[ - 11492, - 11490, - 3990 - ]], - [[ - 11473, - 11484, - 11407 - ]], - [[ - 3972, - 11408, - 11484 - ]], - [[ - 11493, - 11477, - 11488 - ]], - [[ - 11465, - 11494, - 3964 - ]], - [[ - 11446, - 11456, - 11447 - ]], - [[ - 11446, - 3990, - 11456 - ]], - [[ - 11455, - 11450, - 11392 - ]], - [[ - 11455, - 11451, - 11450 - ]], - [[ - 3975, - 4762, - 11390 - ]], - [[ - 11302, - 11316, - 11448 - ]], - [[ - 11451, - 11472, - 3989 - ]], - [[ - 11451, - 11454, - 11472 - ]], - [[ - 11476, - 11495, - 11488 - ]], - [[ - 11463, - 11488, - 11495 - ]], - [[ - 11482, - 11457, - 11317 - ]], - [[ - 11496, - 3982, - 11457 - ]], - [[ - 11401, - 11452, - 11363 - ]], - [[ - 11452, - 11405, - 11404 - ]], - [[ - 11302, - 11489, - 11443 - ]], - [[ - 11302, - 4762, - 11489 - ]], - [[ - 11398, - 11449, - 11400 - ]], - [[ - 4003, - 11401, - 11449 - ]], - [[ - 11494, - 11459, - 3964 - ]], - [[ - 11386, - 11486, - 11459 - ]], - [[ - 11480, - 11475, - 11474 - ]], - [[ - 11480, - 11485, - 11475 - ]], - [[ - 11497, - 11493, - 11498 - ]], - [[ - 11466, - 4010, - 11467 - ]], - [[ - 11499, - 11461, - 3982 - ]], - [[ - 11478, - 4010, - 11461 - ]], - [[ - 11396, - 11397, - 11398 - ]], - [[ - 11396, - 11395, - 11397 - ]], - [[ - 3975, - 11390, - 3976 - ]], - [[ - 11500, - 11316, - 3974 - ]], - [[ - 11480, - 11482, - 11317 - ]], - [[ - 11480, - 11483, - 11482 - ]], - [[ - 11388, - 11501, - 11454 - ]], - [[ - 11502, - 3989, - 11503 - ]], - [[ - 3981, - 11491, - 11317 - ]], - [[ - 11492, - 3990, - 11446 - ]], - [[ - 11445, - 11504, - 11490 - ]], - [[ - 11504, - 11491, - 11505 - ]], - [[ - 11317, - 11504, - 11447 - ]], - [[ - 11317, - 11491, - 11504 - ]], - [[ - 11463, - 11469, - 4010 - ]], - [[ - 11463, - 11495, - 11469 - ]], - [[ - 11504, - 11445, - 11447 - ]], - [[ - 11504, - 11505, - 11490 - ]], - [[ - 11482, - 11496, - 11457 - ]], - [[ - 11482, - 11499, - 11496 - ]], - [[ - 11413, - 11414, - 11418 - ]], - [[ - 11413, - 11415, - 11409 - ]], - [[ - 3964, - 11460, - 4079 - ]], - [[ - 11459, - 11486, - 11460 - ]], - [[ - 11364, - 11401, - 11363 - ]], - [[ - 4003, - 3972, - 11452 - ]], - [[ - 4003, - 11452, - 11401 - ]], - [[ - 3972, - 11473, - 11452 - ]], - [[ - 11483, - 11478, - 11461 - ]], - [[ - 11483, - 11479, - 11478 - ]], - [[ - 11491, - 11490, - 11505 - ]], - [[ - 3981, - 3990, - 11490 - ]], - [[ - 11386, - 11494, - 11493 - ]], - [[ - 11386, - 11459, - 11494 - ]], - [[ - 11449, - 11399, - 11400 - ]], - [[ - 11449, - 11401, - 11399 - ]], - [[ - 11443, - 11409, - 11411 - ]], - [[ - 4762, - 4349, - 11409 - ]], - [[ - 11506, - 11453, - 11454 - ]], - [[ - 11503, - 3989, - 11453 - ]], - [[ - 11493, - 11507, - 11477 - ]], - [[ - 11498, - 11508, - 11466 - ]], - [[ - 11481, - 11474, - 4010 - ]], - [[ - 11481, - 11480, - 11474 - ]], - [[ - 11387, - 11501, - 11388 - ]], - [[ - 11503, - 11506, - 11501 - ]], - [[ - 11493, - 11509, - 11508 - ]], - [[ - 11493, - 11494, - 11509 - ]], - [[ - 11509, - 11464, - 11466 - ]], - [[ - 11509, - 11494, - 11464 - ]], - [[ - 11466, - 11465, - 3964 - ]], - [[ - 11464, - 11494, - 11465 - ]], - [[ - 4762, - 11444, - 11390 - ]], - [[ - 11448, - 11316, - 11500 - ]], - [[ - 11444, - 11500, - 11389 - ]], - [[ - 11444, - 11448, - 11500 - ]], - [[ - 3974, - 11389, - 11500 - ]], - [[ - 3974, - 3976, - 11389 - ]], - [[ - 11501, - 11506, - 11454 - ]], - [[ - 11503, - 11453, - 11506 - ]], - [[ - 11317, - 11458, - 3981 - ]], - [[ - 11317, - 11457, - 11458 - ]], - [[ - 11496, - 11499, - 3982 - ]], - [[ - 11482, - 11461, - 11499 - ]], - [[ - 11502, - 11387, - 3990 - ]], - [[ - 11502, - 11501, - 11387 - ]], - [[ - 11495, - 11468, - 11469 - ]], - [[ - 11477, - 11507, - 11467 - ]], - [[ - 11476, - 11467, - 11468 - ]], - [[ - 11508, - 11509, - 11466 - ]], - [[ - 11495, - 11476, - 11468 - ]], - [[ - 11488, - 11477, - 11476 - ]], - [[ - 11497, - 11466, - 11467 - ]], - [[ - 3964, - 4010, - 11466 - ]], - [[ - 11497, - 11498, - 11466 - ]], - [[ - 11493, - 11508, - 11498 - ]], - [[ - 11507, - 11497, - 11467 - ]], - [[ - 11507, - 11493, - 11497 - ]], - [[ - 11386, - 11487, - 11486 - ]], - [[ - 11386, - 4079, - 11487 - ]], - [[ - 4003, - 11392, - 3989 - ]], - [[ - 4003, - 11395, - 11392 - ]], - [[ - 11391, - 11393, - 11394 - ]], - [[ - 11392, - 11395, - 11393 - ]], - [[ - 11445, - 11492, - 11446 - ]], - [[ - 11445, - 11490, - 11492 - ]], - [[ - 11452, - 11473, - 11405 - ]], - [[ - 3972, - 11484, - 11473 - ]], - [[ - 3974, - 11442, - 11358 - ]], - [[ - 3974, - 11316, - 11442 - ]], - [[ - 3989, - 11502, - 3990 - ]], - [[ - 11503, - 11501, - 11502 - ]], - [[ - 11475, - 11462, - 4010 - ]], - [[ - 11475, - 11485, - 11462 - ]], - [[ - 11102, - 11086, - 11386 - ]], - [[ - 11386, - 11086, - 11385 - ]], - [[ - 11104, - 11102, - 11493 - ]], - [[ - 11493, - 11102, - 11386 - ]], - [[ - 11105, - 11104, - 11488 - ]], - [[ - 11488, - 11104, - 11493 - ]], - [[ - 11373, - 11105, - 11480 - ]], - [[ - 11480, - 11105, - 11488 - ]], - [[ - 11317, - 11373, - 11480 - ]], - [[ - 11372, - 11317, - 11447 - ]], - [[ - 11371, - 11372, - 11451 - ]], - [[ - 11451, - 11372, - 11447 - ]], - [[ - 11370, - 11371, - 11455 - ]], - [[ - 11455, - 11371, - 11451 - ]], - [[ - 11369, - 11370, - 11391 - ]], - [[ - 11391, - 11370, - 11455 - ]], - [[ - 11368, - 11369, - 11394 - ]], - [[ - 11394, - 11369, - 11391 - ]], - [[ - 11367, - 11368, - 11396 - ]], - [[ - 11396, - 11368, - 11394 - ]], - [[ - 11366, - 11367, - 11398 - ]], - [[ - 11398, - 11367, - 11396 - ]], - [[ - 11365, - 11366, - 11400 - ]], - [[ - 11400, - 11366, - 11398 - ]], - [[ - 11364, - 11365, - 11400 - ]], - [[ - 11362, - 11363, - 11403 - ]], - [[ - 11361, - 11362, - 11404 - ]], - [[ - 11404, - 11362, - 11403 - ]], - [[ - 11360, - 11361, - 11406 - ]], - [[ - 11406, - 11361, - 11404 - ]], - [[ - 11359, - 11360, - 11408 - ]], - [[ - 11408, - 11360, - 11406 - ]], - [[ - 11358, - 11359, - 11408 - ]], - [[ - 11357, - 11302, - 11411 - ]], - [[ - 11356, - 11357, - 11412 - ]], - [[ - 11412, - 11357, - 11411 - ]], - [[ - 11305, - 11356, - 11415 - ]], - [[ - 11415, - 11356, - 11412 - ]], - [[ - 11355, - 11305, - 11413 - ]], - [[ - 11413, - 11305, - 11415 - ]], - [[ - 11354, - 11355, - 11418 - ]], - [[ - 11418, - 11355, - 11413 - ]], - [[ - 11353, - 11354, - 11416 - ]], - [[ - 11416, - 11354, - 11418 - ]], - [[ - 11300, - 11353, - 11417 - ]], - [[ - 11417, - 11353, - 11416 - ]], - [[ - 11352, - 11300, - 11420 - ]], - [[ - 11420, - 11300, - 11417 - ]], - [[ - 11351, - 11352, - 11419 - ]], - [[ - 11419, - 11352, - 11420 - ]], - [[ - 11350, - 11351, - 11421 - ]], - [[ - 11421, - 11351, - 11419 - ]], - [[ - 11292, - 11350, - 11422 - ]], - [[ - 11422, - 11350, - 11421 - ]], - [[ - 11349, - 11292, - 11423 - ]], - [[ - 11423, - 11292, - 11422 - ]], - [[ - 11348, - 11349, - 11410 - ]], - [[ - 11410, - 11349, - 11423 - ]], - [[ - 11347, - 11348, - 11424 - ]], - [[ - 11424, - 11348, - 11410 - ]], - [[ - 11346, - 11347, - 11425 - ]], - [[ - 11425, - 11347, - 11424 - ]], - [[ - 11295, - 11346, - 11426 - ]], - [[ - 11426, - 11346, - 11425 - ]], - [[ - 11345, - 11295, - 11427 - ]], - [[ - 11427, - 11295, - 11426 - ]], - [[ - 11344, - 11345, - 11428 - ]], - [[ - 11428, - 11345, - 11427 - ]], - [[ - 11343, - 11344, - 11429 - ]], - [[ - 11429, - 11344, - 11428 - ]], - [[ - 11342, - 11343, - 11430 - ]], - [[ - 11430, - 11343, - 11429 - ]], - [[ - 11289, - 11342, - 11431 - ]], - [[ - 11431, - 11342, - 11430 - ]], - [[ - 11341, - 11289, - 11432 - ]], - [[ - 11432, - 11289, - 11431 - ]], - [[ - 11340, - 11341, - 11433 - ]], - [[ - 11433, - 11341, - 11432 - ]], - [[ - 11338, - 11340, - 11434 - ]], - [[ - 11434, - 11340, - 11433 - ]], - [[ - 11339, - 11338, - 11435 - ]], - [[ - 11435, - 11338, - 11434 - ]], - [[ - 11337, - 11339, - 11436 - ]], - [[ - 11436, - 11339, - 11435 - ]], - [[ - 11281, - 11337, - 11437 - ]], - [[ - 11437, - 11337, - 11436 - ]], - [[ - 11336, - 11281, - 11438 - ]], - [[ - 11438, - 11281, - 11437 - ]], - [[ - 11284, - 11336, - 11439 - ]], - [[ - 11439, - 11336, - 11438 - ]], - [[ - 11278, - 11284, - 11383 - ]], - [[ - 11383, - 11284, - 11439 - ]], - [[ - 11260, - 11278, - 11441 - ]], - [[ - 11441, - 11278, - 11383 - ]], - [[ - 4798, - 11260, - 11441 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b8257ccdc-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "P0028", - "creationdate": "2013-08-07", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "P0028.5b05c66e86d84678906e0e603c4ba008", - "lv_publicatiedatum": "2016-06-07T16:00:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:55:21.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11510, - 11511, - 11512 - ]], - [[ - 11513, - 11514, - 11510 - ]], - [[ - 11515, - 11513, - 11510 - ]], - [[ - 11515, - 11516, - 11517 - ]], - [[ - 11515, - 11517, - 11518 - ]], - [[ - 11513, - 11519, - 11514 - ]], - [[ - 11518, - 11513, - 11515 - ]], - [[ - 11519, - 11511, - 11514 - ]], - [[ - 11518, - 11519, - 11513 - ]], - [[ - 11518, - 11511, - 11519 - ]], - [[ - 11520, - 11515, - 11512 - ]], - [[ - 11514, - 11511, - 11510 - ]], - [[ - 11512, - 11515, - 11510 - ]], - [[ - 11520, - 11516, - 11515 - ]], - [[ - 11521, - 11522, - 11511 - ]], - [[ - 11511, - 11522, - 11512 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b82590617-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "P0028", - "creationdate": "2013-08-07", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "P0028.2b508589ce3a4bf5a6633db491f5383d", - "lv_publicatiedatum": "2016-06-07T16:00:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:55:21.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11523, - 11524, - 11217 - ]], - [[ - 11210, - 11087, - 5526 - ]], - [[ - 5524, - 11210, - 5840 - ]], - [[ - 5840, - 11210, - 5527 - ]], - [[ - 5527, - 11210, - 5526 - ]], - [[ - 5526, - 11087, - 5525 - ]], - [[ - 11205, - 11259, - 5646 - ]], - [[ - 11203, - 11265, - 5508 - ]], - [[ - 11266, - 11199, - 5507 - ]], - [[ - 11267, - 11268, - 5507 - ]], - [[ - 11197, - 11269, - 5506 - ]], - [[ - 11195, - 11270, - 5503 - ]], - [[ - 11270, - 11271, - 5503 - ]], - [[ - 11271, - 11193, - 5504 - ]], - [[ - 11273, - 11191, - 5501 - ]], - [[ - 11191, - 11274, - 5501 - ]], - [[ - 11274, - 11189, - 5473 - ]], - [[ - 11275, - 11276, - 5474 - ]], - [[ - 11116, - 11279, - 5496 - ]], - [[ - 11279, - 11280, - 5496 - ]], - [[ - 11119, - 11285, - 5495 - ]], - [[ - 11285, - 11121, - 5495 - ]], - [[ - 11287, - 11286, - 5493 - ]], - [[ - 11169, - 11290, - 5441 - ]], - [[ - 11290, - 11291, - 5442 - ]], - [[ - 11173, - 11296, - 5443 - ]], - [[ - 11297, - 11170, - 5492 - ]], - [[ - 11301, - 11254, - 5445 - ]], - [[ - 11254, - 11306, - 5445 - ]], - [[ - 11307, - 11176, - 5490 - ]], - [[ - 11308, - 11312, - 5448 - ]], - [[ - 11312, - 11255, - 5448 - ]], - [[ - 11313, - 11314, - 5449 - ]], - [[ - 11314, - 11252, - 5451 - ]], - [[ - 11320, - 11321, - 5452 - ]], - [[ - 11321, - 11322, - 5452 - ]], - [[ - 11178, - 11323, - 5453 - ]], - [[ - 11323, - 11324, - 5453 - ]], - [[ - 11324, - 11155, - 5453 - ]], - [[ - 11155, - 11325, - 5454 - ]], - [[ - 11325, - 11326, - 5454 - ]], - [[ - 11326, - 11327, - 5454 - ]], - [[ - 5449, - 11314, - 5451 - ]], - [[ - 11264, - 11332, - 5458 - ]], - [[ - 11333, - 11334, - 5460 - ]], - [[ - 11334, - 11335, - 5460 - ]], - [[ - 5454, - 11327, - 5456 - ]], - [[ - 5456, - 11328, - 5457 - ]], - [[ - 5457, - 11331, - 5458 - ]], - [[ - 5458, - 11333, - 5460 - ]], - [[ - 11335, - 11260, - 5464 - ]], - [[ - 5462, - 11335, - 5463 - ]], - [[ - 5463, - 11335, - 5464 - ]], - [[ - 5464, - 11260, - 5466 - ]], - [[ - 11260, - 4347, - 4799 - ]], - [[ - 5467, - 11260, - 4799 - ]], - [[ - 11260, - 4798, - 4347 - ]], - [[ - 5466, - 11260, - 5467 - ]], - [[ - 5460, - 11335, - 5462 - ]], - [[ - 5453, - 11155, - 5454 - ]], - [[ - 11332, - 11333, - 5458 - ]], - [[ - 5452, - 11322, - 5453 - ]], - [[ - 11331, - 11264, - 5458 - ]], - [[ - 11330, - 11331, - 5457 - ]], - [[ - 11329, - 11330, - 5457 - ]], - [[ - 11328, - 11329, - 5457 - ]], - [[ - 11258, - 11328, - 5456 - ]], - [[ - 11327, - 11258, - 5456 - ]], - [[ - 5451, - 11252, - 5452 - ]], - [[ - 5448, - 11255, - 5449 - ]], - [[ - 5490, - 11308, - 5448 - ]], - [[ - 5491, - 11307, - 5490 - ]], - [[ - 5445, - 11306, - 5491 - ]], - [[ - 5447, - 11301, - 5445 - ]], - [[ - 11322, - 11178, - 5453 - ]], - [[ - 5492, - 11298, - 5447 - ]], - [[ - 5444, - 11297, - 5492 - ]], - [[ - 11252, - 11320, - 5452 - ]], - [[ - 5443, - 11296, - 5444 - ]], - [[ - 5442, - 11291, - 5443 - ]], - [[ - 11255, - 11313, - 5449 - ]], - [[ - 5441, - 11290, - 5442 - ]], - [[ - 5493, - 11169, - 5441 - ]], - [[ - 11176, - 11308, - 5490 - ]], - [[ - 5494, - 11287, - 5493 - ]], - [[ - 11306, - 11307, - 5491 - ]], - [[ - 5495, - 11121, - 5494 - ]], - [[ - 5489, - 11119, - 5495 - ]], - [[ - 11298, - 11301, - 5447 - ]], - [[ - 11170, - 11298, - 5492 - ]], - [[ - 5496, - 11280, - 5489 - ]], - [[ - 11296, - 11297, - 5444 - ]], - [[ - 5500, - 11116, - 5496 - ]], - [[ - 11291, - 11173, - 5443 - ]], - [[ - 5474, - 11276, - 5500 - ]], - [[ - 5473, - 11189, - 5474 - ]], - [[ - 11286, - 11169, - 5493 - ]], - [[ - 5501, - 11274, - 5473 - ]], - [[ - 11121, - 11287, - 5494 - ]], - [[ - 5502, - 11273, - 5501 - ]], - [[ - 5504, - 11272, - 5502 - ]], - [[ - 11280, - 11119, - 5489 - ]], - [[ - 5503, - 11271, - 5504 - ]], - [[ - 5506, - 11195, - 5503 - ]], - [[ - 11276, - 11116, - 5500 - ]], - [[ - 5507, - 11268, - 5506 - ]], - [[ - 11189, - 11275, - 5474 - ]], - [[ - 5508, - 11266, - 5507 - ]], - [[ - 5509, - 11203, - 5508 - ]], - [[ - 5646, - 11259, - 5509 - ]], - [[ - 11272, - 11273, - 5502 - ]], - [[ - 11193, - 11272, - 5504 - ]], - [[ - 5513, - 11256, - 5646 - ]], - [[ - 5514, - 11256, - 5513 - ]], - [[ - 5515, - 11256, - 5514 - ]], - [[ - 11269, - 11195, - 5506 - ]], - [[ - 5517, - 11087, - 5515 - ]], - [[ - 11268, - 11197, - 5506 - ]], - [[ - 5520, - 11087, - 5517 - ]], - [[ - 11199, - 11267, - 5507 - ]], - [[ - 5521, - 11087, - 5520 - ]], - [[ - 11201, - 11266, - 5508 - ]], - [[ - 11265, - 11201, - 5508 - ]], - [[ - 5522, - 11087, - 5521 - ]], - [[ - 11263, - 11203, - 5509 - ]], - [[ - 11259, - 11263, - 5509 - ]], - [[ - 5523, - 11087, - 5522 - ]], - [[ - 11256, - 11205, - 5646 - ]], - [[ - 11087, - 11256, - 5515 - ]], - [[ - 5525, - 11087, - 5523 - ]], - [[ - 5487, - 11210, - 5524 - ]], - [[ - 11210, - 5487, - 11215 - ]], - [[ - 11215, - 11523, - 11217 - ]], - [[ - 5487, - 11523, - 11215 - ]], - [[ - 11525, - 5486, - 11217 - ]], - [[ - 5487, - 11524, - 11523 - ]], - [[ - 5487, - 5486, - 11524 - ]], - [[ - 11524, - 11525, - 11217 - ]], - [[ - 11524, - 5486, - 11525 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b825a1738-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "P0028", - "creationdate": "2013-08-07", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "P0028.53dd2a24d1a34833a084928458e10f8f", - "lv_publicatiedatum": "2016-06-07T16:00:23.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:55:21.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11526, - 11527, - 5272 - ]], - [[ - 11528, - 11529, - 11244 - ]], - [[ - 11528, - 11527, - 11529 - ]], - [[ - 4891, - 5272, - 11528 - ]], - [[ - 5272, - 11527, - 11528 - ]], - [[ - 4891, - 11528, - 11244 - ]], - [[ - 11530, - 11527, - 11526 - ]], - [[ - 4945, - 11526, - 5272 - ]], - [[ - 4945, - 11530, - 11526 - ]], - [[ - 11249, - 11244, - 11529 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "b86c25248-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f08dcb49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11531, - 11532, - 11533 - ]], - [[ - 11531, - 11534, - 11532 - ]], - [[ - 11531, - 2857, - 2858 - ]], - [[ - 11531, - 2858, - 2947 - ]], - [[ - 11535, - 11536, - 11537 - ]], - [[ - 11536, - 11535, - 2947 - ]], - [[ - 11538, - 11537, - 11536 - ]], - [[ - 11539, - 11540, - 11541 - ]], - [[ - 11541, - 11538, - 11536 - ]], - [[ - 11542, - 11540, - 11539 - ]], - [[ - 11543, - 11542, - 11539 - ]], - [[ - 11544, - 11545, - 11546 - ]], - [[ - 11545, - 11547, - 11546 - ]], - [[ - 11548, - 11544, - 11546 - ]], - [[ - 11549, - 11550, - 11551 - ]], - [[ - 11539, - 11547, - 11543 - ]], - [[ - 11552, - 11550, - 11553 - ]], - [[ - 11553, - 11550, - 11554 - ]], - [[ - 11531, - 2825, - 2857 - ]], - [[ - 11554, - 11549, - 11555 - ]], - [[ - 11556, - 11555, - 11557 - ]], - [[ - 11558, - 11556, - 11557 - ]], - [[ - 11535, - 11534, - 2947 - ]], - [[ - 11531, - 2947, - 11534 - ]], - [[ - 11559, - 11560, - 11561 - ]], - [[ - 11562, - 11559, - 11561 - ]], - [[ - 11546, - 11547, - 11539 - ]], - [[ - 11541, - 11536, - 11539 - ]], - [[ - 11563, - 11564, - 11565 - ]], - [[ - 11566, - 11563, - 11565 - ]], - [[ - 11551, - 11548, - 11546 - ]], - [[ - 11567, - 11568, - 11569 - ]], - [[ - 11551, - 11546, - 11549 - ]], - [[ - 11569, - 11568, - 11570 - ]], - [[ - 8159, - 11570, - 2911 - ]], - [[ - 11554, - 11550, - 11549 - ]], - [[ - 11549, - 11557, - 11555 - ]], - [[ - 11549, - 11560, - 11557 - ]], - [[ - 11549, - 11561, - 11560 - ]], - [[ - 11549, - 2911, - 11561 - ]], - [[ - 11561, - 2911, - 11564 - ]], - [[ - 11564, - 2911, - 11565 - ]], - [[ - 11565, - 2911, - 11568 - ]], - [[ - 11568, - 2911, - 11570 - ]], - [[ - 183, - 2857, - 2825 - ]], - [[ - 184, - 2857, - 183 - ]], - [[ - 11571, - 2825, - 11531 - ]], - [[ - 11572, - 11571, - 11533 - ]], - [[ - 11533, - 11571, - 11531 - ]], - [[ - 11573, - 11572, - 11532 - ]], - [[ - 11532, - 11572, - 11533 - ]], - [[ - 11574, - 11573, - 11534 - ]], - [[ - 11534, - 11573, - 11532 - ]], - [[ - 11575, - 11574, - 11535 - ]], - [[ - 11535, - 11574, - 11534 - ]], - [[ - 11576, - 11575, - 11537 - ]], - [[ - 11537, - 11575, - 11535 - ]], - [[ - 11577, - 11576, - 11538 - ]], - [[ - 11538, - 11576, - 11537 - ]], - [[ - 11578, - 11577, - 11541 - ]], - [[ - 11541, - 11577, - 11538 - ]], - [[ - 11579, - 11578, - 11540 - ]], - [[ - 11540, - 11578, - 11541 - ]], - [[ - 11580, - 11579, - 11542 - ]], - [[ - 11542, - 11579, - 11540 - ]], - [[ - 11581, - 11580, - 11543 - ]], - [[ - 11543, - 11580, - 11542 - ]], - [[ - 11582, - 11581, - 11547 - ]], - [[ - 11547, - 11581, - 11543 - ]], - [[ - 11583, - 11582, - 11545 - ]], - [[ - 11545, - 11582, - 11547 - ]], - [[ - 11584, - 11583, - 11544 - ]], - [[ - 11544, - 11583, - 11545 - ]], - [[ - 11585, - 11584, - 11548 - ]], - [[ - 11548, - 11584, - 11544 - ]], - [[ - 11586, - 11585, - 11551 - ]], - [[ - 11551, - 11585, - 11548 - ]], - [[ - 11587, - 11586, - 11550 - ]], - [[ - 11550, - 11586, - 11551 - ]], - [[ - 11588, - 11587, - 11552 - ]], - [[ - 11552, - 11587, - 11550 - ]], - [[ - 11589, - 11588, - 11553 - ]], - [[ - 11553, - 11588, - 11552 - ]], - [[ - 11590, - 11589, - 11554 - ]], - [[ - 11554, - 11589, - 11553 - ]], - [[ - 11591, - 11590, - 11555 - ]], - [[ - 11555, - 11590, - 11554 - ]], - [[ - 11592, - 11591, - 11556 - ]], - [[ - 11556, - 11591, - 11555 - ]], - [[ - 11593, - 11592, - 11558 - ]], - [[ - 11558, - 11592, - 11556 - ]], - [[ - 11594, - 11593, - 11557 - ]], - [[ - 11557, - 11593, - 11558 - ]], - [[ - 11595, - 11594, - 11560 - ]], - [[ - 11560, - 11594, - 11557 - ]], - [[ - 11596, - 11595, - 11559 - ]], - [[ - 11559, - 11595, - 11560 - ]], - [[ - 11597, - 11596, - 11562 - ]], - [[ - 11562, - 11596, - 11559 - ]], - [[ - 11598, - 11597, - 11561 - ]], - [[ - 11561, - 11597, - 11562 - ]], - [[ - 11599, - 11598, - 11564 - ]], - [[ - 11564, - 11598, - 11561 - ]], - [[ - 11600, - 11599, - 11563 - ]], - [[ - 11563, - 11599, - 11564 - ]], - [[ - 11601, - 11600, - 11566 - ]], - [[ - 11566, - 11600, - 11563 - ]], - [[ - 11602, - 11601, - 11565 - ]], - [[ - 11565, - 11601, - 11566 - ]], - [[ - 11603, - 11602, - 11568 - ]], - [[ - 11568, - 11602, - 11565 - ]], - [[ - 11604, - 11603, - 11567 - ]], - [[ - 11567, - 11603, - 11568 - ]], - [[ - 11605, - 11604, - 11569 - ]], - [[ - 11569, - 11604, - 11567 - ]], - [[ - 11606, - 11605, - 11570 - ]], - [[ - 11570, - 11605, - 11569 - ]], - [[ - 8159, - 11606, - 11570 - ]], - [[ - 2936, - 2911, - 11549 - ]], - [[ - 2959, - 2936, - 11546 - ]], - [[ - 11546, - 2936, - 11549 - ]], - [[ - 2958, - 2959, - 11539 - ]], - [[ - 11539, - 2959, - 11546 - ]], - [[ - 2910, - 2958, - 11536 - ]], - [[ - 11536, - 2958, - 11539 - ]], - [[ - 2947, - 2910, - 11536 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "b86c2a086-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 7968, - 8543, - 1280 - ]], - [[ - 8543, - 1315, - 1280 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "b86c538a4-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0948b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11607, - 11608, - 11609 - ]], - [[ - 11607, - 7803, - 1354 - ]], - [[ - 11608, - 11607, - 1354 - ]], - [[ - 11610, - 7803, - 11607 - ]], - [[ - 1354, - 1688, - 11608 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "b86c5adfd-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0875b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11611, - 11612, - 11613 - ]], - [[ - 11611, - 11614, - 11612 - ]], - [[ - 11611, - 212, - 2815 - ]], - [[ - 11614, - 11611, - 11615 - ]], - [[ - 11615, - 11611, - 2815 - ]], - [[ - 2815, - 212, - 213 - ]], - [[ - 11616, - 212, - 11611 - ]], - [[ - 11617, - 11616, - 11613 - ]], - [[ - 11613, - 11616, - 11611 - ]], - [[ - 11618, - 11617, - 11612 - ]], - [[ - 11612, - 11617, - 11613 - ]], - [[ - 11619, - 11618, - 11614 - ]], - [[ - 11614, - 11618, - 11612 - ]], - [[ - 11620, - 11619, - 11615 - ]], - [[ - 11615, - 11619, - 11614 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "b86c5ae06-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f08da749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11067, - 297, - 298 - ]], - [[ - 11067, - 10615, - 297 - ]], - [[ - 11067, - 11066, - 11621 - ]], - [[ - 10615, - 11067, - 11621 - ]], - [[ - 11622, - 10615, - 11621 - ]], - [[ - 11066, - 11622, - 11621 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "b86c5d51d-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 477, - 557, - 476 - ]], - [[ - 557, - 558, - 476 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "b86c89463-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10683, - 10682, - 10662 - ]], - [[ - 10683, - 10662, - 11623 - ]], - [[ - 11623, - 11624, - 11625 - ]], - [[ - 11625, - 11624, - 10678 - ]], - [[ - 11624, - 11626, - 11627 - ]], - [[ - 11627, - 11626, - 11628 - ]], - [[ - 11624, - 11623, - 11626 - ]], - [[ - 10662, - 10682, - 7252 - ]], - [[ - 10662, - 11626, - 11623 - ]], - [[ - 10675, - 10663, - 10017 - ]], - [[ - 10663, - 7244, - 10017 - ]], - [[ - 10663, - 10662, - 7252 - ]], - [[ - 10663, - 7252, - 7244 - ]], - [[ - 10687, - 10683, - 11623 - ]], - [[ - 10691, - 10687, - 11625 - ]], - [[ - 11625, - 10687, - 11623 - ]], - [[ - 10678, - 10691, - 11625 - ]], - [[ - 10672, - 10678, - 11624 - ]], - [[ - 10673, - 10672, - 11627 - ]], - [[ - 11627, - 10672, - 11624 - ]], - [[ - 10671, - 10673, - 11628 - ]], - [[ - 11628, - 10673, - 11627 - ]], - [[ - 10670, - 10671, - 11626 - ]], - [[ - 11626, - 10671, - 11628 - ]], - [[ - 10662, - 10670, - 11626 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "b8e220996-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11629, - 11630, - 11631 - ]], - [[ - 11632, - 1831, - 1827 - ]], - [[ - 8174, - 1831, - 11633 - ]], - [[ - 11634, - 8174, - 8175 - ]], - [[ - 1825, - 11634, - 8175 - ]], - [[ - 11635, - 11633, - 11636 - ]], - [[ - 8174, - 11635, - 8173 - ]], - [[ - 11636, - 10005, - 8173 - ]], - [[ - 11636, - 11637, - 10005 - ]], - [[ - 11638, - 11639, - 11637 - ]], - [[ - 8174, - 11633, - 11635 - ]], - [[ - 11640, - 11637, - 11636 - ]], - [[ - 11635, - 11636, - 8173 - ]], - [[ - 11640, - 1831, - 11638 - ]], - [[ - 11633, - 11640, - 11636 - ]], - [[ - 11633, - 1831, - 11640 - ]], - [[ - 11640, - 11638, - 11637 - ]], - [[ - 11639, - 10005, - 11637 - ]], - [[ - 11632, - 11641, - 11642 - ]], - [[ - 11643, - 10005, - 1831 - ]], - [[ - 1831, - 11634, - 1825 - ]], - [[ - 1831, - 8174, - 11634 - ]], - [[ - 11644, - 11630, - 11629 - ]], - [[ - 11641, - 10005, - 11630 - ]], - [[ - 11643, - 11631, - 10005 - ]], - [[ - 11630, - 10005, - 11631 - ]], - [[ - 11644, - 11642, - 11641 - ]], - [[ - 11632, - 11645, - 11641 - ]], - [[ - 11646, - 11644, - 11629 - ]], - [[ - 11632, - 11642, - 11644 - ]], - [[ - 1831, - 11639, - 11638 - ]], - [[ - 1831, - 10005, - 11639 - ]], - [[ - 11632, - 11643, - 1831 - ]], - [[ - 11646, - 11631, - 11643 - ]], - [[ - 11644, - 11641, - 11630 - ]], - [[ - 11645, - 10005, - 11641 - ]], - [[ - 11646, - 11632, - 11644 - ]], - [[ - 1827, - 11645, - 11632 - ]], - [[ - 11631, - 11646, - 11629 - ]], - [[ - 11643, - 11632, - 11646 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e220999-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1a749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11647, - 11648, - 11649 - ]], - [[ - 11650, - 11651, - 11652 - ]], - [[ - 11653, - 3117, - 11651 - ]], - [[ - 11651, - 11654, - 11655 - ]], - [[ - 11656, - 11652, - 11655 - ]], - [[ - 11653, - 3162, - 3117 - ]], - [[ - 11647, - 11649, - 11657 - ]], - [[ - 11656, - 11650, - 11652 - ]], - [[ - 11653, - 3160, - 3162 - ]], - [[ - 11650, - 11658, - 11651 - ]], - [[ - 11659, - 11660, - 11661 - ]], - [[ - 11656, - 11655, - 11654 - ]], - [[ - 11652, - 11662, - 11655 - ]], - [[ - 11656, - 11647, - 11657 - ]], - [[ - 11656, - 11661, - 11647 - ]], - [[ - 3161, - 11656, - 11657 - ]], - [[ - 3161, - 11650, - 11656 - ]], - [[ - 11648, - 11661, - 11660 - ]], - [[ - 11651, - 11662, - 11652 - ]], - [[ - 3161, - 11663, - 11650 - ]], - [[ - 11664, - 3160, - 11653 - ]], - [[ - 11663, - 11658, - 11650 - ]], - [[ - 3117, - 11660, - 11659 - ]], - [[ - 11663, - 11665, - 11658 - ]], - [[ - 11664, - 3161, - 3160 - ]], - [[ - 11656, - 11654, - 11661 - ]], - [[ - 11651, - 3117, - 11659 - ]], - [[ - 11661, - 11654, - 11659 - ]], - [[ - 11655, - 11662, - 11651 - ]], - [[ - 11653, - 11651, - 11658 - ]], - [[ - 11659, - 11654, - 11651 - ]], - [[ - 11649, - 11648, - 11660 - ]], - [[ - 11647, - 11661, - 11648 - ]], - [[ - 11665, - 11653, - 11658 - ]], - [[ - 11665, - 11664, - 11653 - ]], - [[ - 11663, - 11664, - 11665 - ]], - [[ - 11663, - 3161, - 11664 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e2209a5-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11666, - 11667, - 11668 - ]], - [[ - 11669, - 11667, - 11666 - ]], - [[ - 11670, - 11669, - 11666 - ]], - [[ - 11671, - 11670, - 11666 - ]], - [[ - 11672, - 11671, - 11666 - ]], - [[ - 11673, - 11672, - 11666 - ]], - [[ - 11674, - 11673, - 11666 - ]], - [[ - 11675, - 11674, - 11666 - ]], - [[ - 11676, - 11675, - 11666 - ]], - [[ - 11677, - 11676, - 11666 - ]], - [[ - 11678, - 11677, - 11666 - ]], - [[ - 11679, - 11678, - 11666 - ]], - [[ - 11680, - 11679, - 11666 - ]], - [[ - 11681, - 11666, - 11682 - ]], - [[ - 11682, - 11666, - 11683 - ]], - [[ - 11683, - 11666, - 11684 - ]], - [[ - 11684, - 11666, - 11685 - ]], - [[ - 11685, - 11666, - 11686 - ]], - [[ - 11686, - 11666, - 11687 - ]], - [[ - 11687, - 11666, - 11688 - ]], - [[ - 11688, - 11666, - 11689 - ]], - [[ - 11689, - 11666, - 11690 - ]], - [[ - 11690, - 11666, - 11691 - ]], - [[ - 11691, - 11666, - 11692 - ]], - [[ - 11692, - 11666, - 11693 - ]], - [[ - 11693, - 11666, - 11694 - ]], - [[ - 11694, - 11666, - 11695 - ]], - [[ - 11695, - 11666, - 11696 - ]], - [[ - 11696, - 11666, - 11697 - ]], - [[ - 11697, - 11666, - 11698 - ]], - [[ - 11698, - 11666, - 11699 - ]], - [[ - 11699, - 11666, - 11700 - ]], - [[ - 11700, - 11666, - 11701 - ]], - [[ - 11701, - 11666, - 11702 - ]], - [[ - 11702, - 11666, - 11703 - ]], - [[ - 11703, - 11666, - 11704 - ]], - [[ - 11704, - 11666, - 11705 - ]], - [[ - 11705, - 11666, - 11706 - ]], - [[ - 11706, - 11666, - 11707 - ]], - [[ - 11707, - 11666, - 11708 - ]], - [[ - 11708, - 11666, - 11709 - ]], - [[ - 11709, - 11666, - 11710 - ]], - [[ - 11710, - 11666, - 11711 - ]], - [[ - 11711, - 11666, - 11712 - ]], - [[ - 11712, - 11666, - 11713 - ]], - [[ - 11713, - 11666, - 11714 - ]], - [[ - 11666, - 11715, - 11716 - ]], - [[ - 11666, - 11717, - 11715 - ]], - [[ - 11666, - 11718, - 11717 - ]], - [[ - 11666, - 11719, - 11718 - ]], - [[ - 11666, - 11720, - 11719 - ]], - [[ - 11666, - 11721, - 11720 - ]], - [[ - 11666, - 11722, - 11721 - ]], - [[ - 11666, - 11723, - 11722 - ]], - [[ - 11666, - 11724, - 11723 - ]], - [[ - 11666, - 11725, - 11724 - ]], - [[ - 11666, - 11726, - 11725 - ]], - [[ - 11666, - 11727, - 11726 - ]], - [[ - 11666, - 11728, - 11727 - ]], - [[ - 11666, - 11729, - 11728 - ]], - [[ - 11666, - 11730, - 11729 - ]], - [[ - 11666, - 11731, - 11730 - ]], - [[ - 11666, - 11732, - 11731 - ]], - [[ - 11666, - 11733, - 11732 - ]], - [[ - 11666, - 11734, - 11733 - ]], - [[ - 11666, - 11735, - 11734 - ]], - [[ - 11666, - 11736, - 11735 - ]], - [[ - 11666, - 11737, - 11736 - ]], - [[ - 11666, - 11738, - 11737 - ]], - [[ - 11666, - 11739, - 11738 - ]], - [[ - 11666, - 11740, - 11739 - ]], - [[ - 11666, - 11741, - 11740 - ]], - [[ - 11666, - 11742, - 11741 - ]], - [[ - 11666, - 11743, - 11742 - ]], - [[ - 11666, - 11744, - 11743 - ]], - [[ - 11666, - 11745, - 11744 - ]], - [[ - 11666, - 11746, - 11745 - ]], - [[ - 11666, - 11747, - 11746 - ]], - [[ - 11666, - 11748, - 11747 - ]], - [[ - 11666, - 11749, - 11748 - ]], - [[ - 11666, - 11750, - 11749 - ]], - [[ - 11666, - 11751, - 11750 - ]], - [[ - 11666, - 11752, - 11751 - ]], - [[ - 11666, - 11753, - 11752 - ]], - [[ - 11666, - 11754, - 11753 - ]], - [[ - 11666, - 11755, - 11754 - ]], - [[ - 11666, - 11756, - 11755 - ]], - [[ - 11666, - 11757, - 11756 - ]], - [[ - 11666, - 11758, - 11757 - ]], - [[ - 11666, - 11668, - 11758 - ]], - [[ - 11714, - 11666, - 11716 - ]], - [[ - 11681, - 11680, - 11666 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e22f3bc-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11759, - 11760, - 11761 - ]], - [[ - 11762, - 11763, - 11764 - ]], - [[ - 11764, - 11763, - 11759 - ]], - [[ - 11762, - 11760, - 11759 - ]], - [[ - 11765, - 11762, - 11766 - ]], - [[ - 11765, - 11760, - 11762 - ]], - [[ - 11764, - 11759, - 11761 - ]], - [[ - 11763, - 11762, - 11759 - ]], - [[ - 11766, - 11764, - 11761 - ]], - [[ - 11766, - 11762, - 11764 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e23693d-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8d849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11767, - 11768, - 11769 - ]], - [[ - 11770, - 11771, - 11772 - ]], - [[ - 11773, - 11774, - 11775 - ]], - [[ - 11776, - 11777, - 11767 - ]], - [[ - 11778, - 11773, - 11779 - ]], - [[ - 11774, - 11780, - 11781 - ]], - [[ - 11782, - 11783, - 11774 - ]], - [[ - 11784, - 11769, - 11785 - ]], - [[ - 11774, - 11783, - 11780 - ]], - [[ - 11786, - 11782, - 11787 - ]], - [[ - 11788, - 11789, - 11780 - ]], - [[ - 11788, - 11783, - 11786 - ]], - [[ - 11771, - 11781, - 11790 - ]], - [[ - 11784, - 11791, - 11769 - ]], - [[ - 11779, - 11792, - 11772 - ]], - [[ - 11775, - 11781, - 11770 - ]], - [[ - 11777, - 11768, - 11767 - ]], - [[ - 11793, - 11769, - 11768 - ]], - [[ - 11794, - 11767, - 11791 - ]], - [[ - 11790, - 11789, - 11776 - ]], - [[ - 11784, - 11790, - 11794 - ]], - [[ - 11767, - 11769, - 11791 - ]], - [[ - 11780, - 11790, - 11781 - ]], - [[ - 11780, - 11789, - 11790 - ]], - [[ - 11790, - 11776, - 11767 - ]], - [[ - 11789, - 11788, - 11786 - ]], - [[ - 11789, - 11777, - 11776 - ]], - [[ - 11786, - 11768, - 11777 - ]], - [[ - 11780, - 11783, - 11788 - ]], - [[ - 11787, - 11773, - 11778 - ]], - [[ - 11771, - 11790, - 11784 - ]], - [[ - 11790, - 11767, - 11794 - ]], - [[ - 11793, - 11778, - 11779 - ]], - [[ - 11782, - 11786, - 11783 - ]], - [[ - 11773, - 11787, - 11774 - ]], - [[ - 11787, - 11793, - 11786 - ]], - [[ - 11774, - 11787, - 11782 - ]], - [[ - 11778, - 11793, - 11787 - ]], - [[ - 11779, - 11775, - 11792 - ]], - [[ - 11774, - 11781, - 11775 - ]], - [[ - 11792, - 11770, - 11772 - ]], - [[ - 11792, - 11775, - 11770 - ]], - [[ - 11793, - 11779, - 11772 - ]], - [[ - 11773, - 11775, - 11779 - ]], - [[ - 11771, - 11784, - 11785 - ]], - [[ - 11794, - 11791, - 11784 - ]], - [[ - 11789, - 11786, - 11777 - ]], - [[ - 11793, - 11768, - 11786 - ]], - [[ - 11772, - 11771, - 11785 - ]], - [[ - 11770, - 11781, - 11771 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e23ddc7-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1ad49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11795, - 11796, - 11797 - ]], - [[ - 11798, - 11799, - 11800 - ]], - [[ - 11801, - 11802, - 11798 - ]], - [[ - 11800, - 11801, - 11798 - ]], - [[ - 11803, - 11795, - 11804 - ]], - [[ - 11796, - 11805, - 11797 - ]], - [[ - 11804, - 11797, - 11801 - ]], - [[ - 11805, - 11802, - 11801 - ]], - [[ - 11804, - 11801, - 11800 - ]], - [[ - 11797, - 11805, - 11801 - ]], - [[ - 11803, - 11804, - 11800 - ]], - [[ - 11795, - 11797, - 11804 - ]], - [[ - 11803, - 11796, - 11795 - ]], - [[ - 11806, - 11805, - 11796 - ]], - [[ - 11806, - 11803, - 11800 - ]], - [[ - 11806, - 11796, - 11803 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e24c8ff-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1ab49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11807, - 11808, - 11809 - ]], - [[ - 11810, - 11811, - 11812 - ]], - [[ - 11810, - 11813, - 11811 - ]], - [[ - 11814, - 11808, - 11815 - ]], - [[ - 11816, - 11807, - 11809 - ]], - [[ - 11815, - 11808, - 11807 - ]], - [[ - 11812, - 11811, - 11807 - ]], - [[ - 11817, - 11807, - 11811 - ]], - [[ - 11809, - 11818, - 11819 - ]], - [[ - 11820, - 11814, - 11817 - ]], - [[ - 11816, - 11812, - 11807 - ]], - [[ - 11821, - 11822, - 11810 - ]], - [[ - 11811, - 11813, - 11817 - ]], - [[ - 11823, - 11814, - 11820 - ]], - [[ - 11824, - 11823, - 11825 - ]], - [[ - 11813, - 11820, - 11817 - ]], - [[ - 11821, - 11825, - 11822 - ]], - [[ - 11818, - 11826, - 11823 - ]], - [[ - 11822, - 11813, - 11810 - ]], - [[ - 11823, - 11820, - 11813 - ]], - [[ - 11822, - 11823, - 11813 - ]], - [[ - 11826, - 11814, - 11823 - ]], - [[ - 11824, - 11827, - 11823 - ]], - [[ - 11824, - 11819, - 11827 - ]], - [[ - 11812, - 11821, - 11810 - ]], - [[ - 11825, - 11823, - 11822 - ]], - [[ - 11826, - 11818, - 11809 - ]], - [[ - 11821, - 11812, - 11816 - ]], - [[ - 11824, - 11825, - 11816 - ]], - [[ - 11816, - 11825, - 11821 - ]], - [[ - 11819, - 11816, - 11809 - ]], - [[ - 11819, - 11824, - 11816 - ]], - [[ - 11817, - 11815, - 11807 - ]], - [[ - 11817, - 11814, - 11815 - ]], - [[ - 11827, - 11818, - 11823 - ]], - [[ - 11827, - 11819, - 11818 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e253d86-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11828, - 11829, - 11830 - ]], - [[ - 11831, - 11832, - 11833 - ]], - [[ - 11834, - 11835, - 11831 - ]], - [[ - 11836, - 11837, - 11838 - ]], - [[ - 11839, - 11840, - 11841 - ]], - [[ - 11839, - 11842, - 11831 - ]], - [[ - 11831, - 11842, - 11832 - ]], - [[ - 11843, - 11844, - 11845 - ]], - [[ - 11846, - 11847, - 11848 - ]], - [[ - 11842, - 11839, - 11841 - ]], - [[ - 11828, - 11849, - 11850 - ]], - [[ - 11839, - 11831, - 11840 - ]], - [[ - 11832, - 11851, - 11849 - ]], - [[ - 11842, - 11841, - 11851 - ]], - [[ - 11828, - 11850, - 11852 - ]], - [[ - 11853, - 11841, - 11848 - ]], - [[ - 11849, - 11853, - 11850 - ]], - [[ - 11851, - 11841, - 11853 - ]], - [[ - 11833, - 11834, - 11831 - ]], - [[ - 11845, - 11854, - 11855 - ]], - [[ - 11847, - 11853, - 11848 - ]], - [[ - 11856, - 11831, - 11835 - ]], - [[ - 11828, - 11857, - 11858 - ]], - [[ - 11859, - 11860, - 11861 - ]], - [[ - 11862, - 11836, - 11838 - ]], - [[ - 11847, - 11850, - 11853 - ]], - [[ - 11863, - 11852, - 11864 - ]], - [[ - 11848, - 11841, - 11846 - ]], - [[ - 11860, - 11864, - 11847 - ]], - [[ - 11857, - 11828, - 11852 - ]], - [[ - 11833, - 11865, - 11834 - ]], - [[ - 11840, - 11866, - 11841 - ]], - [[ - 11834, - 11865, - 11835 - ]], - [[ - 11866, - 11867, - 11841 - ]], - [[ - 11856, - 11865, - 11868 - ]], - [[ - 11865, - 11855, - 11869 - ]], - [[ - 11841, - 11867, - 11846 - ]], - [[ - 11866, - 11870, - 11854 - ]], - [[ - 11871, - 11859, - 11872 - ]], - [[ - 11843, - 11855, - 11829 - ]], - [[ - 11873, - 11870, - 11866 - ]], - [[ - 11870, - 11855, - 11854 - ]], - [[ - 11863, - 11859, - 11871 - ]], - [[ - 11872, - 11837, - 11871 - ]], - [[ - 11836, - 11871, - 11837 - ]], - [[ - 11836, - 11852, - 11863 - ]], - [[ - 11873, - 11868, - 11870 - ]], - [[ - 11869, - 11855, - 11870 - ]], - [[ - 11867, - 11860, - 11846 - ]], - [[ - 11867, - 11861, - 11860 - ]], - [[ - 11858, - 11862, - 11829 - ]], - [[ - 11858, - 11836, - 11862 - ]], - [[ - 11865, - 11856, - 11835 - ]], - [[ - 11840, - 11831, - 11856 - ]], - [[ - 11847, - 11864, - 11852 - ]], - [[ - 11860, - 11859, - 11864 - ]], - [[ - 11859, - 11863, - 11864 - ]], - [[ - 11871, - 11836, - 11863 - ]], - [[ - 11833, - 11832, - 11830 - ]], - [[ - 11842, - 11851, - 11832 - ]], - [[ - 11861, - 11854, - 11845 - ]], - [[ - 11861, - 11866, - 11854 - ]], - [[ - 11872, - 11844, - 11837 - ]], - [[ - 11874, - 11845, - 11844 - ]], - [[ - 11862, - 11838, - 11843 - ]], - [[ - 11837, - 11844, - 11843 - ]], - [[ - 11849, - 11828, - 11830 - ]], - [[ - 11858, - 11829, - 11828 - ]], - [[ - 11832, - 11849, - 11830 - ]], - [[ - 11851, - 11853, - 11849 - ]], - [[ - 11856, - 11868, - 11840 - ]], - [[ - 11869, - 11870, - 11868 - ]], - [[ - 11840, - 11873, - 11866 - ]], - [[ - 11840, - 11868, - 11873 - ]], - [[ - 11872, - 11874, - 11844 - ]], - [[ - 11872, - 11859, - 11861 - ]], - [[ - 11872, - 11861, - 11874 - ]], - [[ - 11867, - 11866, - 11861 - ]], - [[ - 11843, - 11845, - 11855 - ]], - [[ - 11874, - 11861, - 11845 - ]], - [[ - 11868, - 11865, - 11869 - ]], - [[ - 11833, - 11855, - 11865 - ]], - [[ - 11862, - 11843, - 11829 - ]], - [[ - 11838, - 11837, - 11843 - ]], - [[ - 11860, - 11847, - 11846 - ]], - [[ - 11852, - 11850, - 11847 - ]], - [[ - 11836, - 11857, - 11852 - ]], - [[ - 11836, - 11858, - 11857 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e26eb7a-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba4849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11875, - 11876, - 11877 - ]], - [[ - 11878, - 11877, - 11879 - ]], - [[ - 11880, - 11881, - 11882 - ]], - [[ - 11881, - 11876, - 11883 - ]], - [[ - 11879, - 11884, - 11885 - ]], - [[ - 11886, - 11876, - 11881 - ]], - [[ - 11878, - 11883, - 11877 - ]], - [[ - 11882, - 11881, - 11883 - ]], - [[ - 11887, - 11884, - 11879 - ]], - [[ - 11887, - 11886, - 11885 - ]], - [[ - 11880, - 11885, - 11881 - ]], - [[ - 11884, - 11887, - 11885 - ]], - [[ - 11878, - 11880, - 11882 - ]], - [[ - 11879, - 11885, - 11880 - ]], - [[ - 11885, - 11886, - 11881 - ]], - [[ - 11887, - 11876, - 11886 - ]], - [[ - 11880, - 11878, - 11879 - ]], - [[ - 11882, - 11883, - 11878 - ]], - [[ - 11883, - 11875, - 11877 - ]], - [[ - 11883, - 11876, - 11875 - ]], - [[ - 11888, - 11876, - 11887 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e2823ff-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11889, - 11890, - 11891 - ]], - [[ - 11892, - 11890, - 11889 - ]], - [[ - 11892, - 11893, - 11894 - ]], - [[ - 11895, - 11896, - 11897 - ]], - [[ - 11898, - 11892, - 11889 - ]], - [[ - 11899, - 11900, - 11901 - ]], - [[ - 11891, - 11890, - 11902 - ]], - [[ - 11892, - 11894, - 11890 - ]], - [[ - 11894, - 11902, - 11890 - ]], - [[ - 11895, - 11903, - 11896 - ]], - [[ - 11894, - 11895, - 11902 - ]], - [[ - 11893, - 11892, - 11898 - ]], - [[ - 11893, - 11903, - 11895 - ]], - [[ - 11897, - 11904, - 11905 - ]], - [[ - 11906, - 11889, - 11907 - ]], - [[ - 11906, - 11898, - 11889 - ]], - [[ - 11908, - 11896, - 11903 - ]], - [[ - 11909, - 11900, - 11910 - ]], - [[ - 11908, - 11898, - 11906 - ]], - [[ - 11908, - 11903, - 11898 - ]], - [[ - 11889, - 11891, - 11905 - ]], - [[ - 11902, - 11895, - 11897 - ]], - [[ - 11902, - 11897, - 11891 - ]], - [[ - 11910, - 11900, - 11899 - ]], - [[ - 11889, - 11905, - 11907 - ]], - [[ - 11911, - 11897, - 11905 - ]], - [[ - 11896, - 11909, - 11897 - ]], - [[ - 11896, - 11908, - 11909 - ]], - [[ - 11894, - 11893, - 11895 - ]], - [[ - 11898, - 11903, - 11893 - ]], - [[ - 11897, - 11909, - 11904 - ]], - [[ - 11908, - 11900, - 11909 - ]], - [[ - 11891, - 11911, - 11905 - ]], - [[ - 11891, - 11897, - 11911 - ]], - [[ - 11907, - 11899, - 11901 - ]], - [[ - 11905, - 11904, - 11910 - ]], - [[ - 11905, - 11910, - 11899 - ]], - [[ - 11904, - 11909, - 11910 - ]], - [[ - 11906, - 11907, - 11901 - ]], - [[ - 11905, - 11899, - 11907 - ]], - [[ - 11912, - 11900, - 11908 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e28998c-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11913, - 11914, - 11915 - ]], - [[ - 11916, - 11917, - 11918 - ]], - [[ - 11919, - 11920, - 11921 - ]], - [[ - 11922, - 11923, - 11924 - ]], - [[ - 11925, - 11926, - 11927 - ]], - [[ - 11924, - 11914, - 11927 - ]], - [[ - 11928, - 11929, - 11930 - ]], - [[ - 11931, - 11915, - 11932 - ]], - [[ - 11933, - 11934, - 11935 - ]], - [[ - 11926, - 11922, - 11936 - ]], - [[ - 11935, - 11934, - 11937 - ]], - [[ - 11938, - 11939, - 11940 - ]], - [[ - 11918, - 11917, - 11927 - ]], - [[ - 11916, - 11937, - 11941 - ]], - [[ - 11936, - 11922, - 11924 - ]], - [[ - 11923, - 11926, - 11942 - ]], - [[ - 11928, - 11930, - 11939 - ]], - [[ - 11915, - 11914, - 11932 - ]], - [[ - 11921, - 11920, - 11943 - ]], - [[ - 11933, - 11914, - 11944 - ]], - [[ - 11920, - 11919, - 11945 - ]], - [[ - 11945, - 11946, - 11920 - ]], - [[ - 11919, - 11947, - 11945 - ]], - [[ - 11913, - 11944, - 11914 - ]], - [[ - 11948, - 11949, - 11946 - ]], - [[ - 11949, - 11944, - 11950 - ]], - [[ - 11927, - 11926, - 11936 - ]], - [[ - 11951, - 11941, - 11929 - ]], - [[ - 11952, - 11953, - 11915 - ]], - [[ - 11913, - 11950, - 11944 - ]], - [[ - 11931, - 11952, - 11915 - ]], - [[ - 11943, - 11920, - 11950 - ]], - [[ - 11922, - 11926, - 11923 - ]], - [[ - 11926, - 11925, - 11942 - ]], - [[ - 11946, - 11950, - 11920 - ]], - [[ - 11949, - 11933, - 11944 - ]], - [[ - 11946, - 11949, - 11950 - ]], - [[ - 11954, - 11934, - 11933 - ]], - [[ - 11936, - 11924, - 11927 - ]], - [[ - 11932, - 11914, - 11924 - ]], - [[ - 11917, - 11925, - 11927 - ]], - [[ - 11941, - 11937, - 11929 - ]], - [[ - 11934, - 11919, - 11955 - ]], - [[ - 11938, - 11940, - 11932 - ]], - [[ - 11955, - 11919, - 11939 - ]], - [[ - 11952, - 11931, - 11940 - ]], - [[ - 11923, - 11928, - 11938 - ]], - [[ - 11929, - 11937, - 11934 - ]], - [[ - 11923, - 11929, - 11928 - ]], - [[ - 11951, - 11925, - 11941 - ]], - [[ - 11953, - 11913, - 11915 - ]], - [[ - 11953, - 11921, - 11913 - ]], - [[ - 11913, - 11943, - 11950 - ]], - [[ - 11913, - 11921, - 11943 - ]], - [[ - 11924, - 11923, - 11932 - ]], - [[ - 11942, - 11951, - 11923 - ]], - [[ - 11946, - 11947, - 11948 - ]], - [[ - 11946, - 11945, - 11947 - ]], - [[ - 11934, - 11948, - 11947 - ]], - [[ - 11954, - 11949, - 11948 - ]], - [[ - 11940, - 11931, - 11932 - ]], - [[ - 11940, - 11939, - 11952 - ]], - [[ - 11952, - 11919, - 11921 - ]], - [[ - 11956, - 11930, - 11929 - ]], - [[ - 11919, - 11952, - 11939 - ]], - [[ - 11921, - 11953, - 11952 - ]], - [[ - 11923, - 11938, - 11932 - ]], - [[ - 11928, - 11939, - 11938 - ]], - [[ - 11929, - 11934, - 11956 - ]], - [[ - 11956, - 11934, - 11955 - ]], - [[ - 11923, - 11951, - 11929 - ]], - [[ - 11942, - 11925, - 11951 - ]], - [[ - 11919, - 11934, - 11947 - ]], - [[ - 11937, - 11916, - 11935 - ]], - [[ - 11918, - 11935, - 11916 - ]], - [[ - 11918, - 11933, - 11935 - ]], - [[ - 11934, - 11954, - 11948 - ]], - [[ - 11933, - 11949, - 11954 - ]], - [[ - 11917, - 11941, - 11925 - ]], - [[ - 11917, - 11916, - 11941 - ]], - [[ - 11939, - 11956, - 11955 - ]], - [[ - 11939, - 11930, - 11956 - ]], - [[ - 11957, - 11918, - 11927 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e290e1c-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3056, - 11645, - 1788 - ]], - [[ - 3056, - 3089, - 3057 - ]], - [[ - 3056, - 3088, - 3089 - ]], - [[ - 3056, - 1788, - 3088 - ]], - [[ - 3088, - 3085, - 3087 - ]], - [[ - 3087, - 3085, - 3086 - ]], - [[ - 3088, - 3070, - 3085 - ]], - [[ - 3085, - 3070, - 3084 - ]], - [[ - 3084, - 3083, - 3082 - ]], - [[ - 3084, - 3070, - 3083 - ]], - [[ - 3083, - 3070, - 3081 - ]], - [[ - 3088, - 1788, - 3070 - ]], - [[ - 3070, - 3075, - 3072 - ]], - [[ - 3070, - 3078, - 3075 - ]], - [[ - 3070, - 1788, - 3078 - ]], - [[ - 3078, - 1788, - 3058 - ]], - [[ - 3058, - 1788, - 3059 - ]], - [[ - 11645, - 1827, - 1788 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e29d205-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11958, - 11959, - 11960 - ]], - [[ - 11961, - 11962, - 11963 - ]], - [[ - 11964, - 11965, - 11966 - ]], - [[ - 11967, - 11968, - 11969 - ]], - [[ - 11969, - 11970, - 11971 - ]], - [[ - 11972, - 11973, - 11959 - ]], - [[ - 11969, - 11968, - 11974 - ]], - [[ - 11975, - 11959, - 11976 - ]], - [[ - 11972, - 11977, - 11978 - ]], - [[ - 11967, - 11963, - 11962 - ]], - [[ - 11979, - 11971, - 11958 - ]], - [[ - 11970, - 11980, - 11981 - ]], - [[ - 11970, - 11965, - 11964 - ]], - [[ - 11981, - 11982, - 11975 - ]], - [[ - 11983, - 11984, - 11985 - ]], - [[ - 11984, - 11967, - 11969 - ]], - [[ - 11970, - 11969, - 11974 - ]], - [[ - 11967, - 11962, - 11968 - ]], - [[ - 11970, - 11974, - 11980 - ]], - [[ - 11968, - 11962, - 11974 - ]], - [[ - 11964, - 11966, - 11958 - ]], - [[ - 11976, - 11959, - 11958 - ]], - [[ - 11973, - 11961, - 11963 - ]], - [[ - 11973, - 11978, - 11961 - ]], - [[ - 11985, - 11984, - 11969 - ]], - [[ - 11983, - 11967, - 11984 - ]], - [[ - 11965, - 11981, - 11966 - ]], - [[ - 11981, - 11980, - 11982 - ]], - [[ - 11979, - 11958, - 11960 - ]], - [[ - 11966, - 11976, - 11958 - ]], - [[ - 11985, - 11979, - 11960 - ]], - [[ - 11971, - 11964, - 11958 - ]], - [[ - 11977, - 11962, - 11978 - ]], - [[ - 11962, - 11961, - 11978 - ]], - [[ - 11969, - 11971, - 11979 - ]], - [[ - 11970, - 11964, - 11971 - ]], - [[ - 11977, - 11972, - 11982 - ]], - [[ - 11978, - 11973, - 11972 - ]], - [[ - 11966, - 11981, - 11976 - ]], - [[ - 11965, - 11970, - 11981 - ]], - [[ - 11979, - 11985, - 11969 - ]], - [[ - 11960, - 11983, - 11985 - ]], - [[ - 11975, - 11972, - 11959 - ]], - [[ - 11982, - 11980, - 11977 - ]], - [[ - 11981, - 11975, - 11976 - ]], - [[ - 11982, - 11972, - 11975 - ]], - [[ - 11974, - 11977, - 11980 - ]], - [[ - 11974, - 11962, - 11977 - ]], - [[ - 11986, - 11959, - 11973 - ]], - [[ - 11987, - 11988, - 11960 - ]], - [[ - 11960, - 11988, - 11983 - ]], - [[ - 11959, - 11987, - 11960 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e2a94ee-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb7149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11989, - 10140, - 10249 - ]], - [[ - 10280, - 10140, - 11989 - ]], - [[ - 10175, - 10280, - 11989 - ]], - [[ - 10173, - 10175, - 11989 - ]], - [[ - 10277, - 10173, - 11989 - ]], - [[ - 11990, - 10277, - 11989 - ]], - [[ - 11990, - 10275, - 10277 - ]], - [[ - 11990, - 10270, - 10275 - ]], - [[ - 11990, - 10268, - 10270 - ]], - [[ - 11990, - 10266, - 10268 - ]], - [[ - 11990, - 10264, - 10266 - ]], - [[ - 11990, - 10262, - 10264 - ]], - [[ - 10260, - 10259, - 11990 - ]], - [[ - 11990, - 11991, - 11992 - ]], - [[ - 10256, - 10257, - 11990 - ]], - [[ - 10255, - 10256, - 11990 - ]], - [[ - 10314, - 10255, - 11990 - ]], - [[ - 10315, - 10314, - 11990 - ]], - [[ - 10316, - 10315, - 11990 - ]], - [[ - 10317, - 10316, - 11990 - ]], - [[ - 10406, - 10317, - 11990 - ]], - [[ - 10407, - 10406, - 11990 - ]], - [[ - 10410, - 10407, - 11992 - ]], - [[ - 10411, - 10410, - 11992 - ]], - [[ - 10145, - 10411, - 11992 - ]], - [[ - 10146, - 10145, - 11992 - ]], - [[ - 10420, - 10146, - 11992 - ]], - [[ - 11992, - 11991, - 11993 - ]], - [[ - 10422, - 11992, - 10236 - ]], - [[ - 10236, - 11992, - 10235 - ]], - [[ - 10235, - 11992, - 10423 - ]], - [[ - 10423, - 11992, - 10424 - ]], - [[ - 10424, - 11992, - 10228 - ]], - [[ - 10228, - 11992, - 10229 - ]], - [[ - 10229, - 11992, - 10224 - ]], - [[ - 10224, - 11992, - 10222 - ]], - [[ - 10222, - 11992, - 10219 - ]], - [[ - 10219, - 11992, - 10217 - ]], - [[ - 10217, - 11992, - 10218 - ]], - [[ - 10218, - 11992, - 10094 - ]], - [[ - 10094, - 11992, - 10092 - ]], - [[ - 10092, - 11992, - 11993 - ]], - [[ - 10428, - 10092, - 11993 - ]], - [[ - 10213, - 10428, - 11993 - ]], - [[ - 10212, - 10213, - 11993 - ]], - [[ - 10211, - 10212, - 11993 - ]], - [[ - 10210, - 10211, - 11993 - ]], - [[ - 10209, - 10210, - 11993 - ]], - [[ - 10208, - 10209, - 11993 - ]], - [[ - 11993, - 11991, - 11994 - ]], - [[ - 10207, - 10206, - 11993 - ]], - [[ - 10204, - 10207, - 11993 - ]], - [[ - 10202, - 10204, - 11993 - ]], - [[ - 10201, - 10202, - 11993 - ]], - [[ - 10200, - 10201, - 11993 - ]], - [[ - 10199, - 10200, - 11993 - ]], - [[ - 10198, - 11993, - 10197 - ]], - [[ - 10197, - 11994, - 10196 - ]], - [[ - 10196, - 11994, - 10195 - ]], - [[ - 10195, - 11994, - 10194 - ]], - [[ - 11994, - 10192, - 10193 - ]], - [[ - 11994, - 10191, - 10192 - ]], - [[ - 11994, - 10190, - 10191 - ]], - [[ - 11994, - 10189, - 10190 - ]], - [[ - 11994, - 10188, - 10189 - ]], - [[ - 11994, - 11995, - 10188 - ]], - [[ - 10188, - 11995, - 10187 - ]], - [[ - 10187, - 11995, - 10186 - ]], - [[ - 10186, - 11995, - 10185 - ]], - [[ - 10185, - 11995, - 10184 - ]], - [[ - 10184, - 11995, - 10183 - ]], - [[ - 11995, - 10180, - 10182 - ]], - [[ - 11995, - 11989, - 10299 - ]], - [[ - 10180, - 11995, - 10181 - ]], - [[ - 10181, - 11995, - 10302 - ]], - [[ - 10302, - 11995, - 10299 - ]], - [[ - 10299, - 11989, - 10300 - ]], - [[ - 10300, - 11989, - 10296 - ]], - [[ - 10296, - 11989, - 10294 - ]], - [[ - 10294, - 11989, - 10291 - ]], - [[ - 10291, - 11989, - 10178 - ]], - [[ - 10178, - 11989, - 10176 - ]], - [[ - 10176, - 11989, - 10287 - ]], - [[ - 11989, - 10308, - 10288 - ]], - [[ - 11989, - 10254, - 10308 - ]], - [[ - 11989, - 10282, - 10254 - ]], - [[ - 11989, - 10137, - 10282 - ]], - [[ - 11989, - 10251, - 10137 - ]], - [[ - 11989, - 10281, - 10251 - ]], - [[ - 11989, - 10249, - 10281 - ]], - [[ - 10198, - 10199, - 11993 - ]], - [[ - 11990, - 10259, - 10262 - ]], - [[ - 10194, - 11994, - 10193 - ]], - [[ - 11991, - 11989, - 11994 - ]], - [[ - 10421, - 11992, - 10422 - ]], - [[ - 10421, - 10420, - 11992 - ]], - [[ - 10287, - 11989, - 10288 - ]], - [[ - 11991, - 11990, - 11989 - ]], - [[ - 10197, - 11993, - 11994 - ]], - [[ - 10206, - 10208, - 11993 - ]], - [[ - 10183, - 11995, - 10182 - ]], - [[ - 11994, - 11989, - 11995 - ]], - [[ - 10407, - 11990, - 11992 - ]], - [[ - 10257, - 10260, - 11990 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e2dc9d5-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba4c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11996, - 11997, - 11998 - ]], - [[ - 11999, - 12000, - 12001 - ]], - [[ - 12002, - 12003, - 12004 - ]], - [[ - 12002, - 12000, - 12003 - ]], - [[ - 12005, - 12006, - 12000 - ]], - [[ - 12007, - 12006, - 12005 - ]], - [[ - 12005, - 12000, - 12008 - ]], - [[ - 12006, - 12009, - 12010 - ]], - [[ - 12011, - 12012, - 12006 - ]], - [[ - 12001, - 12000, - 12004 - ]], - [[ - 12000, - 12010, - 12003 - ]], - [[ - 12004, - 12000, - 12002 - ]], - [[ - 12013, - 12014, - 12015 - ]], - [[ - 11999, - 12016, - 12000 - ]], - [[ - 12017, - 11997, - 12015 - ]], - [[ - 12008, - 12013, - 12015 - ]], - [[ - 12016, - 12017, - 12014 - ]], - [[ - 11996, - 12008, - 12015 - ]], - [[ - 12013, - 12016, - 12014 - ]], - [[ - 12000, - 12013, - 12008 - ]], - [[ - 12000, - 12016, - 12013 - ]], - [[ - 11996, - 12015, - 11997 - ]], - [[ - 12014, - 12017, - 12015 - ]], - [[ - 12007, - 12005, - 11996 - ]], - [[ - 12006, - 12012, - 12009 - ]], - [[ - 12018, - 12007, - 11998 - ]], - [[ - 12019, - 12011, - 12007 - ]], - [[ - 12000, - 12006, - 12010 - ]], - [[ - 12007, - 12011, - 12006 - ]], - [[ - 12018, - 12019, - 12007 - ]], - [[ - 12018, - 12011, - 12019 - ]], - [[ - 12007, - 11996, - 11998 - ]], - [[ - 12005, - 12008, - 11996 - ]], - [[ - 11999, - 12017, - 12016 - ]], - [[ - 11999, - 11997, - 12017 - ]], - [[ - 12020, - 11997, - 11999 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e2e8cb2-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12021, - 12022, - 12023 - ]], - [[ - 12024, - 12025, - 12026 - ]], - [[ - 12027, - 12028, - 12029 - ]], - [[ - 12030, - 12022, - 12031 - ]], - [[ - 12026, - 12025, - 12030 - ]], - [[ - 12032, - 12030, - 12025 - ]], - [[ - 12033, - 12034, - 12035 - ]], - [[ - 12036, - 12037, - 12038 - ]], - [[ - 12039, - 12040, - 12041 - ]], - [[ - 12035, - 12042, - 12043 - ]], - [[ - 12039, - 12041, - 12044 - ]], - [[ - 12033, - 12035, - 12038 - ]], - [[ - 12045, - 12035, - 12034 - ]], - [[ - 12045, - 12042, - 12035 - ]], - [[ - 12040, - 12039, - 12037 - ]], - [[ - 12046, - 12042, - 12030 - ]], - [[ - 12047, - 12048, - 12049 - ]], - [[ - 12038, - 12035, - 12043 - ]], - [[ - 12025, - 12027, - 12029 - ]], - [[ - 12043, - 12042, - 12046 - ]], - [[ - 12046, - 12030, - 12032 - ]], - [[ - 12042, - 12022, - 12030 - ]], - [[ - 12045, - 12041, - 12023 - ]], - [[ - 12045, - 12034, - 12041 - ]], - [[ - 12050, - 12051, - 12049 - ]], - [[ - 12052, - 12041, - 12040 - ]], - [[ - 12041, - 12051, - 12023 - ]], - [[ - 12053, - 12022, - 12054 - ]], - [[ - 12051, - 12050, - 12054 - ]], - [[ - 12055, - 12056, - 12027 - ]], - [[ - 12057, - 12053, - 12054 - ]], - [[ - 12057, - 12058, - 12059 - ]], - [[ - 12027, - 12047, - 12028 - ]], - [[ - 12056, - 12055, - 12048 - ]], - [[ - 12024, - 12027, - 12025 - ]], - [[ - 12056, - 12047, - 12027 - ]], - [[ - 12047, - 12060, - 12028 - ]], - [[ - 12049, - 12048, - 12061 - ]], - [[ - 12029, - 12046, - 12032 - ]], - [[ - 12028, - 12043, - 12046 - ]], - [[ - 12059, - 12061, - 12048 - ]], - [[ - 12049, - 12062, - 12050 - ]], - [[ - 12057, - 12063, - 12024 - ]], - [[ - 12055, - 12027, - 12063 - ]], - [[ - 12038, - 12039, - 12044 - ]], - [[ - 12037, - 12060, - 12052 - ]], - [[ - 12047, - 12049, - 12052 - ]], - [[ - 12052, - 12051, - 12041 - ]], - [[ - 12064, - 12050, - 12062 - ]], - [[ - 12054, - 12021, - 12051 - ]], - [[ - 12060, - 12036, - 12065 - ]], - [[ - 12038, - 12044, - 12033 - ]], - [[ - 12056, - 12048, - 12047 - ]], - [[ - 12059, - 12063, - 12057 - ]], - [[ - 12055, - 12059, - 12048 - ]], - [[ - 12064, - 12062, - 12061 - ]], - [[ - 12060, - 12047, - 12052 - ]], - [[ - 12061, - 12062, - 12049 - ]], - [[ - 12061, - 12058, - 12064 - ]], - [[ - 12057, - 12054, - 12050 - ]], - [[ - 12041, - 12033, - 12044 - ]], - [[ - 12041, - 12034, - 12033 - ]], - [[ - 12057, - 12024, - 12066 - ]], - [[ - 12063, - 12027, - 12024 - ]], - [[ - 12058, - 12050, - 12064 - ]], - [[ - 12058, - 12057, - 12050 - ]], - [[ - 12037, - 12052, - 12040 - ]], - [[ - 12049, - 12051, - 12052 - ]], - [[ - 12067, - 12031, - 12022 - ]], - [[ - 12067, - 12066, - 12031 - ]], - [[ - 12053, - 12067, - 12022 - ]], - [[ - 12066, - 12024, - 12031 - ]], - [[ - 12025, - 12029, - 12032 - ]], - [[ - 12028, - 12046, - 12029 - ]], - [[ - 12065, - 12036, - 12038 - ]], - [[ - 12037, - 12039, - 12038 - ]], - [[ - 12043, - 12065, - 12038 - ]], - [[ - 12060, - 12037, - 12036 - ]], - [[ - 12028, - 12065, - 12043 - ]], - [[ - 12028, - 12060, - 12065 - ]], - [[ - 12053, - 12066, - 12067 - ]], - [[ - 12053, - 12057, - 12066 - ]], - [[ - 12061, - 12059, - 12058 - ]], - [[ - 12055, - 12063, - 12059 - ]], - [[ - 12031, - 12026, - 12030 - ]], - [[ - 12031, - 12024, - 12026 - ]], - [[ - 12051, - 12021, - 12023 - ]], - [[ - 12054, - 12022, - 12021 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e2f4faa-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8d749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12068, - 12069, - 12070 - ]], - [[ - 12071, - 12072, - 12073 - ]], - [[ - 12074, - 12075, - 12076 - ]], - [[ - 12077, - 12078, - 12068 - ]], - [[ - 12079, - 12080, - 12081 - ]], - [[ - 12082, - 12083, - 12084 - ]], - [[ - 12085, - 12086, - 12087 - ]], - [[ - 12078, - 12088, - 12089 - ]], - [[ - 12081, - 12090, - 12091 - ]], - [[ - 12086, - 12091, - 12092 - ]], - [[ - 12077, - 12093, - 12087 - ]], - [[ - 12087, - 12092, - 12088 - ]], - [[ - 12094, - 12085, - 12095 - ]], - [[ - 12096, - 12086, - 12085 - ]], - [[ - 12097, - 12073, - 12098 - ]], - [[ - 12076, - 12075, - 12099 - ]], - [[ - 12100, - 12071, - 12097 - ]], - [[ - 12101, - 12074, - 12076 - ]], - [[ - 12086, - 12079, - 12091 - ]], - [[ - 12102, - 12103, - 12104 - ]], - [[ - 12105, - 12076, - 12103 - ]], - [[ - 12101, - 12106, - 12107 - ]], - [[ - 12100, - 12098, - 12070 - ]], - [[ - 12073, - 12108, - 12094 - ]], - [[ - 12109, - 12071, - 12100 - ]], - [[ - 12071, - 12073, - 12097 - ]], - [[ - 12098, - 12068, - 12070 - ]], - [[ - 12094, - 12095, - 12093 - ]], - [[ - 12088, - 12077, - 12087 - ]], - [[ - 12093, - 12095, - 12087 - ]], - [[ - 12084, - 12091, - 12090 - ]], - [[ - 12090, - 12110, - 12084 - ]], - [[ - 12085, - 12087, - 12095 - ]], - [[ - 12086, - 12092, - 12087 - ]], - [[ - 12111, - 12099, - 12112 - ]], - [[ - 12104, - 12112, - 12113 - ]], - [[ - 12104, - 12111, - 12112 - ]], - [[ - 12075, - 12112, - 12099 - ]], - [[ - 12079, - 12105, - 12080 - ]], - [[ - 12076, - 12099, - 12111 - ]], - [[ - 12081, - 12102, - 12090 - ]], - [[ - 12113, - 12083, - 12082 - ]], - [[ - 12110, - 12104, - 12113 - ]], - [[ - 12102, - 12080, - 12103 - ]], - [[ - 12114, - 12078, - 12069 - ]], - [[ - 12088, - 12092, - 12089 - ]], - [[ - 12077, - 12088, - 12078 - ]], - [[ - 12092, - 12091, - 12089 - ]], - [[ - 12083, - 12112, - 12107 - ]], - [[ - 12112, - 12075, - 12074 - ]], - [[ - 12109, - 12106, - 12071 - ]], - [[ - 12107, - 12074, - 12101 - ]], - [[ - 12115, - 12109, - 12070 - ]], - [[ - 12115, - 12106, - 12109 - ]], - [[ - 12107, - 12115, - 12070 - ]], - [[ - 12107, - 12106, - 12115 - ]], - [[ - 12094, - 12108, - 12085 - ]], - [[ - 12108, - 12072, - 12116 - ]], - [[ - 12116, - 12072, - 12101 - ]], - [[ - 12071, - 12106, - 12072 - ]], - [[ - 12105, - 12101, - 12076 - ]], - [[ - 12072, - 12106, - 12101 - ]], - [[ - 12079, - 12081, - 12091 - ]], - [[ - 12080, - 12102, - 12081 - ]], - [[ - 12068, - 12114, - 12069 - ]], - [[ - 12068, - 12078, - 12114 - ]], - [[ - 12098, - 12094, - 12068 - ]], - [[ - 12098, - 12073, - 12094 - ]], - [[ - 12089, - 12084, - 12083 - ]], - [[ - 12089, - 12091, - 12084 - ]], - [[ - 12069, - 12089, - 12083 - ]], - [[ - 12069, - 12078, - 12089 - ]], - [[ - 12110, - 12102, - 12104 - ]], - [[ - 12110, - 12090, - 12102 - ]], - [[ - 12109, - 12100, - 12070 - ]], - [[ - 12097, - 12098, - 12100 - ]], - [[ - 12096, - 12079, - 12086 - ]], - [[ - 12096, - 12116, - 12079 - ]], - [[ - 12079, - 12116, - 12105 - ]], - [[ - 12108, - 12073, - 12072 - ]], - [[ - 12080, - 12105, - 12103 - ]], - [[ - 12116, - 12101, - 12105 - ]], - [[ - 12103, - 12111, - 12104 - ]], - [[ - 12103, - 12076, - 12111 - ]], - [[ - 12107, - 12112, - 12074 - ]], - [[ - 12083, - 12113, - 12112 - ]], - [[ - 12068, - 12093, - 12077 - ]], - [[ - 12068, - 12094, - 12093 - ]], - [[ - 12110, - 12082, - 12084 - ]], - [[ - 12110, - 12113, - 12082 - ]], - [[ - 12096, - 12108, - 12116 - ]], - [[ - 12096, - 12085, - 12108 - ]], - [[ - 12083, - 12117, - 12069 - ]], - [[ - 12118, - 12107, - 12070 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3061e0-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10364, - 10533, - 10358 - ]], - [[ - 10533, - 10367, - 10358 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3061ec-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12119, - 12120, - 12121 - ]], - [[ - 12119, - 12121, - 12122 - ]], - [[ - 12122, - 12121, - 12123 - ]], - [[ - 12123, - 12121, - 12124 - ]], - [[ - 12124, - 12121, - 12125 - ]], - [[ - 12125, - 12121, - 12126 - ]], - [[ - 12126, - 12121, - 12127 - ]], - [[ - 12127, - 12121, - 12128 - ]], - [[ - 12128, - 12121, - 12129 - ]], - [[ - 12129, - 12121, - 12130 - ]], - [[ - 12130, - 12121, - 12131 - ]], - [[ - 12131, - 12121, - 12132 - ]], - [[ - 12132, - 12121, - 12133 - ]], - [[ - 12133, - 12121, - 12134 - ]], - [[ - 12134, - 12121, - 12135 - ]], - [[ - 12135, - 12121, - 12136 - ]], - [[ - 12136, - 12121, - 12137 - ]], - [[ - 12137, - 12121, - 12138 - ]], - [[ - 12138, - 12121, - 12139 - ]], - [[ - 12139, - 12121, - 12140 - ]], - [[ - 12140, - 12121, - 12141 - ]], - [[ - 12141, - 12121, - 12142 - ]], - [[ - 12120, - 12143, - 12121 - ]], - [[ - 12144, - 12142, - 12121 - ]], - [[ - 12145, - 12121, - 12146 - ]], - [[ - 12146, - 12121, - 12147 - ]], - [[ - 12147, - 12121, - 12148 - ]], - [[ - 12148, - 12121, - 12149 - ]], - [[ - 12149, - 12121, - 12150 - ]], - [[ - 12150, - 12121, - 12151 - ]], - [[ - 12151, - 12121, - 12152 - ]], - [[ - 12152, - 12121, - 12153 - ]], - [[ - 12145, - 12144, - 12121 - ]], - [[ - 12154, - 12121, - 12155 - ]], - [[ - 12155, - 12121, - 12156 - ]], - [[ - 12156, - 12121, - 12157 - ]], - [[ - 12157, - 12121, - 12158 - ]], - [[ - 12158, - 12121, - 12159 - ]], - [[ - 12159, - 12121, - 12160 - ]], - [[ - 12160, - 12121, - 12161 - ]], - [[ - 12161, - 12121, - 12162 - ]], - [[ - 12162, - 12121, - 12163 - ]], - [[ - 12163, - 12121, - 12164 - ]], - [[ - 12121, - 12143, - 12165 - ]], - [[ - 12166, - 12121, - 12167 - ]], - [[ - 12167, - 12121, - 12168 - ]], - [[ - 12168, - 12121, - 12169 - ]], - [[ - 12169, - 12121, - 12170 - ]], - [[ - 12170, - 12121, - 12171 - ]], - [[ - 12171, - 12121, - 12172 - ]], - [[ - 12172, - 12121, - 12173 - ]], - [[ - 12173, - 12121, - 12174 - ]], - [[ - 12174, - 12121, - 12175 - ]], - [[ - 12175, - 12121, - 12176 - ]], - [[ - 12176, - 12121, - 12177 - ]], - [[ - 12177, - 12121, - 12178 - ]], - [[ - 12178, - 12121, - 12179 - ]], - [[ - 12179, - 12121, - 12180 - ]], - [[ - 12180, - 12121, - 12181 - ]], - [[ - 12181, - 12121, - 12182 - ]], - [[ - 12182, - 12121, - 12183 - ]], - [[ - 12184, - 12182, - 12183 - ]], - [[ - 12185, - 12184, - 12183 - ]], - [[ - 12186, - 12185, - 12183 - ]], - [[ - 12187, - 12186, - 12183 - ]], - [[ - 12188, - 12187, - 12183 - ]], - [[ - 12189, - 12188, - 12183 - ]], - [[ - 12190, - 12189, - 12183 - ]], - [[ - 12191, - 12190, - 12183 - ]], - [[ - 12192, - 12191, - 12183 - ]], - [[ - 12193, - 12192, - 12183 - ]], - [[ - 12194, - 12193, - 12183 - ]], - [[ - 12183, - 12121, - 12195 - ]], - [[ - 12196, - 12183, - 12197 - ]], - [[ - 12197, - 12183, - 12198 - ]], - [[ - 12198, - 12183, - 12199 - ]], - [[ - 12199, - 12183, - 12200 - ]], - [[ - 12200, - 12183, - 12201 - ]], - [[ - 12201, - 12183, - 12202 - ]], - [[ - 12202, - 12183, - 12203 - ]], - [[ - 12203, - 12183, - 12204 - ]], - [[ - 12204, - 12183, - 12205 - ]], - [[ - 12205, - 12183, - 12206 - ]], - [[ - 12206, - 12183, - 12195 - ]], - [[ - 12195, - 12121, - 12207 - ]], - [[ - 12207, - 12121, - 12208 - ]], - [[ - 12208, - 12121, - 12209 - ]], - [[ - 12209, - 12121, - 12165 - ]], - [[ - 12164, - 12121, - 12166 - ]], - [[ - 12154, - 12153, - 12121 - ]], - [[ - 12210, - 12183, - 12196 - ]], - [[ - 12210, - 12194, - 12183 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e319a5c-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12211, - 1025, - 12212 - ]], - [[ - 12213, - 1024, - 1023 - ]], - [[ - 12214, - 12211, - 1023 - ]], - [[ - 12212, - 1024, - 12213 - ]], - [[ - 1023, - 12211, - 12215 - ]], - [[ - 1025, - 1024, - 12212 - ]], - [[ - 12215, - 12213, - 1023 - ]], - [[ - 12215, - 12212, - 12213 - ]], - [[ - 1015, - 12214, - 1023 - ]], - [[ - 1015, - 1025, - 12211 - ]], - [[ - 12215, - 12211, - 12212 - ]], - [[ - 12214, - 1015, - 12211 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e328488-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1b249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12216, - 12217, - 3166 - ]], - [[ - 12218, - 12219, - 12220 - ]], - [[ - 12216, - 12221, - 12217 - ]], - [[ - 12222, - 12223, - 12224 - ]], - [[ - 12225, - 12226, - 12227 - ]], - [[ - 12227, - 3115, - 3163 - ]], - [[ - 12228, - 12229, - 12226 - ]], - [[ - 12230, - 12231, - 12232 - ]], - [[ - 12216, - 12233, - 12221 - ]], - [[ - 12234, - 12235, - 12236 - ]], - [[ - 12237, - 12231, - 12230 - ]], - [[ - 12238, - 3115, - 12231 - ]], - [[ - 12239, - 12223, - 12240 - ]], - [[ - 12232, - 3115, - 12241 - ]], - [[ - 12242, - 12221, - 12233 - ]], - [[ - 12218, - 12217, - 12221 - ]], - [[ - 12243, - 12230, - 12232 - ]], - [[ - 12244, - 12245, - 12238 - ]], - [[ - 12246, - 12247, - 12248 - ]], - [[ - 12249, - 12250, - 12251 - ]], - [[ - 12252, - 12233, - 12246 - ]], - [[ - 12246, - 12233, - 12253 - ]], - [[ - 12254, - 12255, - 12216 - ]], - [[ - 12256, - 12257, - 12258 - ]], - [[ - 12259, - 12255, - 12254 - ]], - [[ - 12260, - 3166, - 12261 - ]], - [[ - 12240, - 12262, - 3159 - ]], - [[ - 12263, - 12229, - 12222 - ]], - [[ - 12250, - 12249, - 12264 - ]], - [[ - 12265, - 12238, - 12245 - ]], - [[ - 12266, - 12243, - 12232 - ]], - [[ - 12231, - 3115, - 12232 - ]], - [[ - 12262, - 12228, - 3159 - ]], - [[ - 12262, - 12222, - 12228 - ]], - [[ - 12267, - 12268, - 12250 - ]], - [[ - 12244, - 12238, - 12269 - ]], - [[ - 12270, - 12271, - 12272 - ]], - [[ - 12273, - 3169, - 12258 - ]], - [[ - 12274, - 12275, - 12276 - ]], - [[ - 12277, - 12278, - 12241 - ]], - [[ - 12243, - 12279, - 12280 - ]], - [[ - 12280, - 12230, - 12243 - ]], - [[ - 12254, - 12216, - 3166 - ]], - [[ - 12281, - 12233, - 12216 - ]], - [[ - 3159, - 12225, - 3163 - ]], - [[ - 12222, - 12262, - 12223 - ]], - [[ - 12235, - 12216, - 12282 - ]], - [[ - 12258, - 12283, - 12284 - ]], - [[ - 12285, - 12286, - 12287 - ]], - [[ - 12288, - 12267, - 12264 - ]], - [[ - 12216, - 12235, - 12281 - ]], - [[ - 12216, - 12255, - 12289 - ]], - [[ - 12262, - 12240, - 12223 - ]], - [[ - 12217, - 12279, - 12275 - ]], - [[ - 12217, - 12290, - 12279 - ]], - [[ - 12291, - 12237, - 12230 - ]], - [[ - 12237, - 12292, - 12269 - ]], - [[ - 12238, - 12231, - 12269 - ]], - [[ - 12217, - 12240, - 3159 - ]], - [[ - 12217, - 12275, - 12240 - ]], - [[ - 12290, - 12292, - 12237 - ]], - [[ - 12217, - 12245, - 12292 - ]], - [[ - 12285, - 12265, - 12245 - ]], - [[ - 12217, - 12293, - 12245 - ]], - [[ - 12241, - 12276, - 12266 - ]], - [[ - 12275, - 12279, - 12243 - ]], - [[ - 3170, - 12261, - 3166 - ]], - [[ - 3170, - 3169, - 12261 - ]], - [[ - 12294, - 12247, - 12295 - ]], - [[ - 12296, - 12238, - 12295 - ]], - [[ - 12297, - 12298, - 12296 - ]], - [[ - 12297, - 12296, - 12247 - ]], - [[ - 12298, - 12299, - 12296 - ]], - [[ - 12256, - 3169, - 12296 - ]], - [[ - 12289, - 12256, - 12282 - ]], - [[ - 12236, - 12235, - 12282 - ]], - [[ - 12283, - 12259, - 12254 - ]], - [[ - 12257, - 12255, - 12259 - ]], - [[ - 12300, - 12221, - 12294 - ]], - [[ - 12301, - 12252, - 12246 - ]], - [[ - 12267, - 12288, - 12268 - ]], - [[ - 12264, - 12249, - 12295 - ]], - [[ - 12302, - 12295, - 12238 - ]], - [[ - 12247, - 12296, - 12295 - ]], - [[ - 12288, - 12264, - 12295 - ]], - [[ - 12267, - 12250, - 12264 - ]], - [[ - 12249, - 12300, - 12294 - ]], - [[ - 12294, - 12301, - 12248 - ]], - [[ - 12253, - 12297, - 12247 - ]], - [[ - 3169, - 12238, - 12296 - ]], - [[ - 3115, - 12224, - 12277 - ]], - [[ - 12278, - 12303, - 12274 - ]], - [[ - 12289, - 12257, - 12256 - ]], - [[ - 12299, - 12281, - 12234 - ]], - [[ - 12233, - 12297, - 12253 - ]], - [[ - 12281, - 12299, - 12298 - ]], - [[ - 12281, - 12297, - 12233 - ]], - [[ - 12281, - 12298, - 12297 - ]], - [[ - 12251, - 12218, - 12221 - ]], - [[ - 12268, - 12219, - 12218 - ]], - [[ - 12274, - 12276, - 12241 - ]], - [[ - 12275, - 12243, - 12266 - ]], - [[ - 12294, - 12304, - 12301 - ]], - [[ - 12304, - 12242, - 12301 - ]], - [[ - 12301, - 12246, - 12248 - ]], - [[ - 12253, - 12247, - 12246 - ]], - [[ - 12236, - 12282, - 12256 - ]], - [[ - 12258, - 3169, - 12256 - ]], - [[ - 12216, - 12289, - 12282 - ]], - [[ - 12255, - 12257, - 12289 - ]], - [[ - 12299, - 12256, - 12296 - ]], - [[ - 12299, - 12236, - 12256 - ]], - [[ - 12259, - 12258, - 12257 - ]], - [[ - 12284, - 12305, - 12258 - ]], - [[ - 12219, - 12268, - 12302 - ]], - [[ - 12302, - 12268, - 12288 - ]], - [[ - 12241, - 12266, - 12232 - ]], - [[ - 12276, - 12275, - 12266 - ]], - [[ - 12219, - 12302, - 12220 - ]], - [[ - 12302, - 12238, - 12265 - ]], - [[ - 12293, - 12285, - 12245 - ]], - [[ - 12287, - 12220, - 12265 - ]], - [[ - 12280, - 12291, - 12230 - ]], - [[ - 12290, - 12217, - 12292 - ]], - [[ - 12280, - 12290, - 12291 - ]], - [[ - 12280, - 12279, - 12290 - ]], - [[ - 12270, - 12254, - 3166 - ]], - [[ - 12272, - 12284, - 12283 - ]], - [[ - 12272, - 12283, - 12254 - ]], - [[ - 12258, - 12259, - 12283 - ]], - [[ - 12292, - 12244, - 12269 - ]], - [[ - 12292, - 12245, - 12244 - ]], - [[ - 12228, - 12225, - 3159 - ]], - [[ - 12228, - 12226, - 12225 - ]], - [[ - 3169, - 12306, - 12261 - ]], - [[ - 12270, - 3166, - 12260 - ]], - [[ - 12261, - 12306, - 12260 - ]], - [[ - 12272, - 12254, - 12270 - ]], - [[ - 12307, - 12306, - 12273 - ]], - [[ - 12307, - 12260, - 12306 - ]], - [[ - 12305, - 12273, - 12258 - ]], - [[ - 12306, - 3169, - 12273 - ]], - [[ - 12270, - 12307, - 12305 - ]], - [[ - 12270, - 12260, - 12307 - ]], - [[ - 12271, - 12305, - 12284 - ]], - [[ - 12307, - 12273, - 12305 - ]], - [[ - 12272, - 12271, - 12284 - ]], - [[ - 12270, - 12305, - 12271 - ]], - [[ - 12221, - 12304, - 12294 - ]], - [[ - 12221, - 12242, - 12304 - ]], - [[ - 12227, - 12263, - 3115 - ]], - [[ - 12278, - 12274, - 12241 - ]], - [[ - 12263, - 12222, - 12224 - ]], - [[ - 12229, - 12228, - 12222 - ]], - [[ - 3115, - 12277, - 12241 - ]], - [[ - 12239, - 12240, - 12277 - ]], - [[ - 12224, - 12239, - 12277 - ]], - [[ - 12224, - 12223, - 12239 - ]], - [[ - 12225, - 12227, - 3163 - ]], - [[ - 12263, - 12224, - 3115 - ]], - [[ - 12220, - 12302, - 12265 - ]], - [[ - 12288, - 12295, - 12302 - ]], - [[ - 12300, - 12249, - 12251 - ]], - [[ - 12268, - 12218, - 12250 - ]], - [[ - 12218, - 12286, - 12217 - ]], - [[ - 12218, - 12220, - 12287 - ]], - [[ - 12285, - 12287, - 12265 - ]], - [[ - 12286, - 12218, - 12287 - ]], - [[ - 12252, - 12242, - 12233 - ]], - [[ - 12252, - 12301, - 12242 - ]], - [[ - 12299, - 12234, - 12236 - ]], - [[ - 12281, - 12235, - 12234 - ]], - [[ - 12300, - 12251, - 12221 - ]], - [[ - 12250, - 12218, - 12251 - ]], - [[ - 12286, - 12293, - 12217 - ]], - [[ - 12286, - 12285, - 12293 - ]], - [[ - 12247, - 12294, - 12248 - ]], - [[ - 12295, - 12249, - 12294 - ]], - [[ - 12226, - 12263, - 12227 - ]], - [[ - 12226, - 12229, - 12263 - ]], - [[ - 12231, - 12237, - 12269 - ]], - [[ - 12291, - 12290, - 12237 - ]], - [[ - 12308, - 12278, - 12277 - ]], - [[ - 12308, - 12303, - 12278 - ]], - [[ - 12240, - 12308, - 12277 - ]], - [[ - 12303, - 12275, - 12274 - ]], - [[ - 12240, - 12303, - 12308 - ]], - [[ - 12240, - 12275, - 12303 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e33202e-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efe6f849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12309, - 12310, - 12311 - ]], - [[ - 12312, - 12313, - 12314 - ]], - [[ - 12315, - 7831, - 12316 - ]], - [[ - 12317, - 12318, - 12319 - ]], - [[ - 12320, - 12317, - 12321 - ]], - [[ - 12322, - 12320, - 12321 - ]], - [[ - 12321, - 12317, - 12323 - ]], - [[ - 12324, - 12318, - 12317 - ]], - [[ - 12316, - 7831, - 7832 - ]], - [[ - 12325, - 12326, - 12327 - ]], - [[ - 12328, - 12329, - 12330 - ]], - [[ - 12327, - 12316, - 7832 - ]], - [[ - 12331, - 12332, - 12333 - ]], - [[ - 12334, - 12335, - 12336 - ]], - [[ - 12337, - 12338, - 8060 - ]], - [[ - 12339, - 7856, - 7867 - ]], - [[ - 12340, - 7820, - 7856 - ]], - [[ - 12341, - 7821, - 7820 - ]], - [[ - 8055, - 12342, - 7867 - ]], - [[ - 12343, - 12344, - 12345 - ]], - [[ - 12346, - 12347, - 12348 - ]], - [[ - 12349, - 12350, - 7856 - ]], - [[ - 12351, - 12352, - 8060 - ]], - [[ - 12338, - 8055, - 8060 - ]], - [[ - 12353, - 12327, - 7832 - ]], - [[ - 12324, - 12354, - 12355 - ]], - [[ - 12350, - 12340, - 7856 - ]], - [[ - 12356, - 7820, - 12340 - ]], - [[ - 7831, - 12314, - 12357 - ]], - [[ - 12333, - 8060, - 7831 - ]], - [[ - 12358, - 12359, - 12341 - ]], - [[ - 12359, - 7821, - 12341 - ]], - [[ - 12360, - 12361, - 7856 - ]], - [[ - 12349, - 12361, - 12362 - ]], - [[ - 12338, - 12344, - 8055 - ]], - [[ - 12309, - 12342, - 8055 - ]], - [[ - 12363, - 12364, - 12365 - ]], - [[ - 12366, - 12365, - 12367 - ]], - [[ - 12363, - 12368, - 12369 - ]], - [[ - 12370, - 12371, - 12372 - ]], - [[ - 12361, - 12349, - 7856 - ]], - [[ - 12362, - 12373, - 12374 - ]], - [[ - 12375, - 12356, - 12340 - ]], - [[ - 12356, - 12376, - 12358 - ]], - [[ - 12377, - 12343, - 12378 - ]], - [[ - 12338, - 12368, - 12379 - ]], - [[ - 12332, - 12380, - 12333 - ]], - [[ - 12352, - 12369, - 8060 - ]], - [[ - 12381, - 12382, - 12383 - ]], - [[ - 12384, - 12385, - 12364 - ]], - [[ - 12386, - 12332, - 12331 - ]], - [[ - 12387, - 12382, - 12381 - ]], - [[ - 12388, - 12374, - 12340 - ]], - [[ - 12389, - 12356, - 12375 - ]], - [[ - 12353, - 12390, - 12391 - ]], - [[ - 12392, - 12393, - 12317 - ]], - [[ - 12354, - 12329, - 12394 - ]], - [[ - 12354, - 12324, - 12317 - ]], - [[ - 12326, - 12395, - 12396 - ]], - [[ - 12317, - 12319, - 12323 - ]], - [[ - 12327, - 12326, - 12396 - ]], - [[ - 12325, - 12330, - 12397 - ]], - [[ - 12338, - 12345, - 12344 - ]], - [[ - 12338, - 12398, - 12345 - ]], - [[ - 12336, - 8055, - 12399 - ]], - [[ - 12374, - 12400, - 12340 - ]], - [[ - 12357, - 12401, - 12331 - ]], - [[ - 12381, - 12402, - 12403 - ]], - [[ - 12339, - 12360, - 7856 - ]], - [[ - 12339, - 12370, - 12360 - ]], - [[ - 12350, - 12362, - 12340 - ]], - [[ - 12362, - 12361, - 12373 - ]], - [[ - 12404, - 12389, - 12400 - ]], - [[ - 12376, - 12359, - 12358 - ]], - [[ - 12405, - 12390, - 7832 - ]], - [[ - 12391, - 12330, - 12325 - ]], - [[ - 12401, - 12386, - 12331 - ]], - [[ - 12401, - 12313, - 12387 - ]], - [[ - 7820, - 12358, - 12341 - ]], - [[ - 12406, - 7821, - 12359 - ]], - [[ - 12365, - 12407, - 12367 - ]], - [[ - 12408, - 12409, - 12347 - ]], - [[ - 12337, - 12368, - 12338 - ]], - [[ - 12369, - 12352, - 12384 - ]], - [[ - 12351, - 12384, - 12352 - ]], - [[ - 12380, - 12332, - 12381 - ]], - [[ - 12410, - 12312, - 12320 - ]], - [[ - 12313, - 12382, - 12387 - ]], - [[ - 12331, - 12333, - 7831 - ]], - [[ - 12351, - 8060, - 12333 - ]], - [[ - 12400, - 12375, - 12340 - ]], - [[ - 12400, - 12389, - 12375 - ]], - [[ - 12356, - 12358, - 7820 - ]], - [[ - 12356, - 12389, - 12376 - ]], - [[ - 12395, - 12411, - 12396 - ]], - [[ - 12412, - 12317, - 12320 - ]], - [[ - 12413, - 12414, - 12415 - ]], - [[ - 12315, - 12416, - 12314 - ]], - [[ - 12396, - 12316, - 12327 - ]], - [[ - 12396, - 12411, - 12316 - ]], - [[ - 12417, - 12310, - 12418 - ]], - [[ - 12361, - 12360, - 12370 - ]], - [[ - 12313, - 12419, - 12382 - ]], - [[ - 12420, - 12403, - 12421 - ]], - [[ - 12344, - 12399, - 8055 - ]], - [[ - 12422, - 12367, - 12407 - ]], - [[ - 12423, - 12339, - 7867 - ]], - [[ - 12424, - 12407, - 12425 - ]], - [[ - 12426, - 12311, - 12417 - ]], - [[ - 12409, - 12309, - 12311 - ]], - [[ - 12309, - 12336, - 12310 - ]], - [[ - 12309, - 8055, - 12336 - ]], - [[ - 7831, - 12357, - 12331 - ]], - [[ - 12416, - 12315, - 12316 - ]], - [[ - 12326, - 12325, - 12397 - ]], - [[ - 12394, - 12427, - 12354 - ]], - [[ - 12428, - 12403, - 12429 - ]], - [[ - 12335, - 12310, - 12336 - ]], - [[ - 12430, - 12431, - 12432 - ]], - [[ - 12372, - 12361, - 12370 - ]], - [[ - 12346, - 12371, - 12423 - ]], - [[ - 12370, - 12339, - 12371 - ]], - [[ - 12347, - 12409, - 12426 - ]], - [[ - 12342, - 12309, - 12409 - ]], - [[ - 12342, - 12408, - 7867 - ]], - [[ - 12342, - 12409, - 12408 - ]], - [[ - 12380, - 12385, - 12384 - ]], - [[ - 12425, - 12407, - 12365 - ]], - [[ - 12351, - 12380, - 12384 - ]], - [[ - 12351, - 12333, - 12380 - ]], - [[ - 12412, - 12414, - 12317 - ]], - [[ - 12414, - 12392, - 12317 - ]], - [[ - 12432, - 12377, - 12378 - ]], - [[ - 12422, - 12424, - 12428 - ]], - [[ - 12420, - 12433, - 12425 - ]], - [[ - 12421, - 12428, - 12433 - ]], - [[ - 12431, - 12428, - 12429 - ]], - [[ - 12418, - 12434, - 12417 - ]], - [[ - 12410, - 12435, - 12312 - ]], - [[ - 12435, - 12436, - 12419 - ]], - [[ - 12431, - 12418, - 12437 - ]], - [[ - 12438, - 12439, - 12348 - ]], - [[ - 7832, - 12390, - 12353 - ]], - [[ - 12328, - 12394, - 12329 - ]], - [[ - 12440, - 12441, - 12404 - ]], - [[ - 12376, - 12389, - 12404 - ]], - [[ - 12348, - 12347, - 12438 - ]], - [[ - 12442, - 12434, - 12443 - ]], - [[ - 12408, - 12444, - 7867 - ]], - [[ - 12408, - 12347, - 12444 - ]], - [[ - 12384, - 12364, - 12369 - ]], - [[ - 12425, - 12433, - 12424 - ]], - [[ - 12337, - 12369, - 12368 - ]], - [[ - 12337, - 8060, - 12369 - ]], - [[ - 12385, - 12425, - 12364 - ]], - [[ - 12385, - 12420, - 12425 - ]], - [[ - 12426, - 12417, - 12442 - ]], - [[ - 12440, - 12404, - 12400 - ]], - [[ - 12439, - 12441, - 12373 - ]], - [[ - 12406, - 12404, - 12441 - ]], - [[ - 12445, - 12398, - 12338 - ]], - [[ - 12445, - 12338, - 12379 - ]], - [[ - 12383, - 12402, - 12381 - ]], - [[ - 12446, - 12403, - 12402 - ]], - [[ - 12380, - 12381, - 12385 - ]], - [[ - 12387, - 12386, - 12401 - ]], - [[ - 12332, - 12387, - 12381 - ]], - [[ - 12332, - 12386, - 12387 - ]], - [[ - 12431, - 12434, - 12418 - ]], - [[ - 12406, - 12441, - 12434 - ]], - [[ - 12442, - 12438, - 12347 - ]], - [[ - 12443, - 12439, - 12438 - ]], - [[ - 12442, - 12417, - 12434 - ]], - [[ - 12311, - 12310, - 12417 - ]], - [[ - 12378, - 12343, - 12398 - ]], - [[ - 12445, - 12379, - 12366 - ]], - [[ - 12377, - 12432, - 12431 - ]], - [[ - 12430, - 12367, - 12431 - ]], - [[ - 12430, - 12447, - 12366 - ]], - [[ - 12379, - 12368, - 12366 - ]], - [[ - 12367, - 12430, - 12366 - ]], - [[ - 12447, - 12398, - 12445 - ]], - [[ - 12366, - 12447, - 12445 - ]], - [[ - 12378, - 12398, - 12447 - ]], - [[ - 12431, - 12422, - 12428 - ]], - [[ - 12431, - 12367, - 12422 - ]], - [[ - 12357, - 12314, - 12401 - ]], - [[ - 12312, - 12419, - 12313 - ]], - [[ - 12401, - 12314, - 12313 - ]], - [[ - 7831, - 12315, - 12314 - ]], - [[ - 12429, - 12410, - 12322 - ]], - [[ - 12312, - 12415, - 12412 - ]], - [[ - 12419, - 12436, - 12382 - ]], - [[ - 12382, - 12446, - 12383 - ]], - [[ - 12436, - 12446, - 12382 - ]], - [[ - 12436, - 12435, - 12446 - ]], - [[ - 12327, - 12391, - 12325 - ]], - [[ - 12390, - 12405, - 12328 - ]], - [[ - 12353, - 12391, - 12327 - ]], - [[ - 12390, - 12330, - 12391 - ]], - [[ - 12322, - 12410, - 12320 - ]], - [[ - 12429, - 12446, - 12435 - ]], - [[ - 12347, - 12426, - 12442 - ]], - [[ - 12409, - 12311, - 12426 - ]], - [[ - 12444, - 12423, - 7867 - ]], - [[ - 12371, - 12339, - 12423 - ]], - [[ - 12420, - 12421, - 12433 - ]], - [[ - 12403, - 12428, - 12421 - ]], - [[ - 12335, - 12448, - 12437 - ]], - [[ - 12399, - 12344, - 12343 - ]], - [[ - 12398, - 12343, - 12345 - ]], - [[ - 12377, - 12449, - 12343 - ]], - [[ - 12310, - 12335, - 12418 - ]], - [[ - 12399, - 12343, - 12449 - ]], - [[ - 12449, - 12448, - 12334 - ]], - [[ - 12437, - 12377, - 12431 - ]], - [[ - 12334, - 12448, - 12335 - ]], - [[ - 12449, - 12377, - 12448 - ]], - [[ - 12395, - 12414, - 12411 - ]], - [[ - 12395, - 12397, - 12392 - ]], - [[ - 12326, - 12397, - 12395 - ]], - [[ - 12330, - 12329, - 12393 - ]], - [[ - 12378, - 12430, - 12432 - ]], - [[ - 12378, - 12447, - 12430 - ]], - [[ - 12428, - 12424, - 12433 - ]], - [[ - 12422, - 12407, - 12424 - ]], - [[ - 12335, - 12437, - 12418 - ]], - [[ - 12448, - 12377, - 12437 - ]], - [[ - 12390, - 12328, - 12330 - ]], - [[ - 12405, - 12394, - 12328 - ]], - [[ - 12406, - 12376, - 12404 - ]], - [[ - 12406, - 12359, - 12376 - ]], - [[ - 12381, - 12420, - 12385 - ]], - [[ - 12381, - 12403, - 12420 - ]], - [[ - 12314, - 12415, - 12312 - ]], - [[ - 12413, - 12411, - 12414 - ]], - [[ - 12411, - 12413, - 12316 - ]], - [[ - 12415, - 12314, - 12416 - ]], - [[ - 12416, - 12413, - 12415 - ]], - [[ - 12416, - 12316, - 12413 - ]], - [[ - 12312, - 12412, - 12320 - ]], - [[ - 12415, - 12414, - 12412 - ]], - [[ - 12395, - 12392, - 12414 - ]], - [[ - 12397, - 12330, - 12393 - ]], - [[ - 12355, - 12354, - 12427 - ]], - [[ - 12393, - 12329, - 12354 - ]], - [[ - 12317, - 12393, - 12354 - ]], - [[ - 12392, - 12397, - 12393 - ]], - [[ - 12371, - 12348, - 12372 - ]], - [[ - 12346, - 12444, - 12347 - ]], - [[ - 12406, - 12431, - 12429 - ]], - [[ - 12406, - 12434, - 12431 - ]], - [[ - 12348, - 12439, - 12372 - ]], - [[ - 12434, - 12441, - 12439 - ]], - [[ - 12372, - 12373, - 12361 - ]], - [[ - 12372, - 12439, - 12373 - ]], - [[ - 12340, - 12362, - 12388 - ]], - [[ - 12350, - 12349, - 12362 - ]], - [[ - 12362, - 12374, - 12388 - ]], - [[ - 12373, - 12441, - 12440 - ]], - [[ - 12374, - 12440, - 12400 - ]], - [[ - 12374, - 12373, - 12440 - ]], - [[ - 12368, - 12363, - 12366 - ]], - [[ - 12364, - 12425, - 12365 - ]], - [[ - 12364, - 12363, - 12369 - ]], - [[ - 12365, - 12366, - 12363 - ]], - [[ - 12312, - 12435, - 12419 - ]], - [[ - 12410, - 12429, - 12435 - ]], - [[ - 12442, - 12443, - 12438 - ]], - [[ - 12434, - 12439, - 12443 - ]], - [[ - 12383, - 12446, - 12402 - ]], - [[ - 12429, - 12403, - 12446 - ]], - [[ - 12399, - 12334, - 12336 - ]], - [[ - 12399, - 12449, - 12334 - ]], - [[ - 12444, - 12346, - 12423 - ]], - [[ - 12348, - 12371, - 12346 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e336e96-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12450, - 12451, - 12452 - ]], - [[ - 12453, - 12452, - 12454 - ]], - [[ - 12455, - 12456, - 12457 - ]], - [[ - 12456, - 12451, - 12458 - ]], - [[ - 12458, - 12459, - 12457 - ]], - [[ - 12458, - 12451, - 12460 - ]], - [[ - 12459, - 12455, - 12457 - ]], - [[ - 12461, - 12451, - 12456 - ]], - [[ - 12462, - 12463, - 12453 - ]], - [[ - 12462, - 12456, - 12455 - ]], - [[ - 12461, - 12462, - 12454 - ]], - [[ - 12461, - 12456, - 12462 - ]], - [[ - 12453, - 12464, - 12452 - ]], - [[ - 12463, - 12455, - 12464 - ]], - [[ - 12465, - 12455, - 12459 - ]], - [[ - 12463, - 12462, - 12455 - ]], - [[ - 12462, - 12453, - 12454 - ]], - [[ - 12463, - 12464, - 12453 - ]], - [[ - 12464, - 12465, - 12450 - ]], - [[ - 12464, - 12455, - 12465 - ]], - [[ - 12450, - 12460, - 12451 - ]], - [[ - 12465, - 12459, - 12460 - ]], - [[ - 12459, - 12458, - 12460 - ]], - [[ - 12457, - 12456, - 12458 - ]], - [[ - 12464, - 12450, - 12452 - ]], - [[ - 12465, - 12460, - 12450 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e33bd04-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1b349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12466, - 12467, - 12468 - ]], - [[ - 11826, - 12469, - 12470 - ]], - [[ - 11814, - 12471, - 11808 - ]], - [[ - 12469, - 11809, - 12472 - ]], - [[ - 12473, - 12474, - 12475 - ]], - [[ - 12476, - 11826, - 12470 - ]], - [[ - 12476, - 11814, - 11826 - ]], - [[ - 12471, - 12477, - 11808 - ]], - [[ - 12478, - 12479, - 12475 - ]], - [[ - 12480, - 12481, - 12482 - ]], - [[ - 12483, - 12472, - 12468 - ]], - [[ - 12467, - 12477, - 12468 - ]], - [[ - 12479, - 12473, - 12475 - ]], - [[ - 12484, - 12485, - 12481 - ]], - [[ - 12470, - 12469, - 12468 - ]], - [[ - 12472, - 12466, - 12468 - ]], - [[ - 12484, - 12480, - 12467 - ]], - [[ - 12482, - 12477, - 12467 - ]], - [[ - 12469, - 12472, - 12483 - ]], - [[ - 11809, - 12486, - 12472 - ]], - [[ - 12473, - 12485, - 12474 - ]], - [[ - 12481, - 12480, - 12484 - ]], - [[ - 12472, - 12486, - 12466 - ]], - [[ - 11809, - 12473, - 12479 - ]], - [[ - 12468, - 12469, - 12483 - ]], - [[ - 11826, - 11809, - 12469 - ]], - [[ - 12478, - 12467, - 12466 - ]], - [[ - 12475, - 12474, - 12484 - ]], - [[ - 12475, - 12484, - 12467 - ]], - [[ - 12474, - 12485, - 12484 - ]], - [[ - 12481, - 12473, - 11809 - ]], - [[ - 12481, - 12485, - 12473 - ]], - [[ - 12467, - 12478, - 12475 - ]], - [[ - 12466, - 12486, - 12478 - ]], - [[ - 12480, - 12482, - 12467 - ]], - [[ - 11808, - 12477, - 12482 - ]], - [[ - 11808, - 12481, - 11809 - ]], - [[ - 11808, - 12482, - 12481 - ]], - [[ - 12476, - 12471, - 11814 - ]], - [[ - 12476, - 12477, - 12471 - ]], - [[ - 12486, - 12479, - 12478 - ]], - [[ - 12486, - 11809, - 12479 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e34317c-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1aa49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12487, - 12488, - 12489 - ]], - [[ - 12490, - 12491, - 12492 - ]], - [[ - 12488, - 12491, - 12489 - ]], - [[ - 12493, - 12489, - 12491 - ]], - [[ - 12494, - 12495, - 12496 - ]], - [[ - 12497, - 12493, - 12491 - ]], - [[ - 12490, - 12498, - 12491 - ]], - [[ - 12499, - 12500, - 12501 - ]], - [[ - 12490, - 12499, - 12498 - ]], - [[ - 12502, - 12493, - 12497 - ]], - [[ - 12500, - 12503, - 12504 - ]], - [[ - 12500, - 12499, - 12503 - ]], - [[ - 12498, - 12497, - 12491 - ]], - [[ - 12498, - 12499, - 12501 - ]], - [[ - 12505, - 12506, - 12495 - ]], - [[ - 12502, - 12501, - 12507 - ]], - [[ - 12504, - 12492, - 12488 - ]], - [[ - 12504, - 12503, - 12490 - ]], - [[ - 12487, - 12508, - 12509 - ]], - [[ - 12492, - 12491, - 12488 - ]], - [[ - 12504, - 12490, - 12492 - ]], - [[ - 12503, - 12499, - 12490 - ]], - [[ - 12501, - 12496, - 12510 - ]], - [[ - 12507, - 12493, - 12502 - ]], - [[ - 12511, - 12512, - 12513 - ]], - [[ - 12508, - 12514, - 12515 - ]], - [[ - 12494, - 12505, - 12495 - ]], - [[ - 12515, - 12506, - 12505 - ]], - [[ - 12511, - 12504, - 12512 - ]], - [[ - 12514, - 12506, - 12515 - ]], - [[ - 12498, - 12502, - 12497 - ]], - [[ - 12510, - 12496, - 12516 - ]], - [[ - 12515, - 12494, - 12496 - ]], - [[ - 12515, - 12505, - 12494 - ]], - [[ - 12506, - 12516, - 12495 - ]], - [[ - 12516, - 12493, - 12507 - ]], - [[ - 12498, - 12501, - 12502 - ]], - [[ - 12500, - 12496, - 12501 - ]], - [[ - 12501, - 12510, - 12507 - ]], - [[ - 12496, - 12495, - 12516 - ]], - [[ - 12510, - 12516, - 12507 - ]], - [[ - 12506, - 12493, - 12516 - ]], - [[ - 12496, - 12500, - 12511 - ]], - [[ - 12504, - 12488, - 12512 - ]], - [[ - 12496, - 12511, - 12515 - ]], - [[ - 12512, - 12488, - 12487 - ]], - [[ - 12513, - 12509, - 12515 - ]], - [[ - 12513, - 12512, - 12509 - ]], - [[ - 12509, - 12508, - 12515 - ]], - [[ - 12509, - 12512, - 12487 - ]], - [[ - 12515, - 12511, - 12513 - ]], - [[ - 12500, - 12504, - 12511 - ]], - [[ - 12514, - 12487, - 12489 - ]], - [[ - 12514, - 12508, - 12487 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e347fd5-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12517, - 12518, - 12519 - ]], - [[ - 12520, - 12521, - 12522 - ]], - [[ - 12523, - 12524, - 12525 - ]], - [[ - 12520, - 12526, - 12527 - ]], - [[ - 12519, - 12518, - 12524 - ]], - [[ - 12517, - 12528, - 12527 - ]], - [[ - 12523, - 12520, - 12522 - ]], - [[ - 12524, - 12518, - 12525 - ]], - [[ - 12520, - 12525, - 12526 - ]], - [[ - 12520, - 12523, - 12525 - ]], - [[ - 12517, - 12526, - 12518 - ]], - [[ - 12525, - 12518, - 12526 - ]], - [[ - 12519, - 12523, - 12522 - ]], - [[ - 12519, - 12524, - 12523 - ]], - [[ - 12521, - 12527, - 12528 - ]], - [[ - 12521, - 12520, - 12527 - ]], - [[ - 12526, - 12517, - 12527 - ]], - [[ - 12519, - 12528, - 12517 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e34ce31-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12529, - 12530, - 12531 - ]], - [[ - 12529, - 12531, - 12532 - ]], - [[ - 12533, - 12534, - 12535 - ]], - [[ - 12530, - 12536, - 12531 - ]], - [[ - 12535, - 12529, - 12532 - ]], - [[ - 12534, - 12537, - 12530 - ]], - [[ - 12538, - 12533, - 12532 - ]], - [[ - 12534, - 12529, - 12535 - ]], - [[ - 12533, - 12537, - 12534 - ]], - [[ - 12538, - 12536, - 12537 - ]], - [[ - 12532, - 12533, - 12535 - ]], - [[ - 12538, - 12537, - 12533 - ]], - [[ - 12534, - 12530, - 12529 - ]], - [[ - 12537, - 12536, - 12530 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e362de1-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12539, - 3111, - 12540 - ]], - [[ - 12541, - 3046, - 3104 - ]], - [[ - 12542, - 12543, - 12541 - ]], - [[ - 3046, - 12544, - 3047 - ]], - [[ - 12545, - 12546, - 12547 - ]], - [[ - 12548, - 12549, - 12550 - ]], - [[ - 12551, - 12552, - 12553 - ]], - [[ - 12554, - 12555, - 12556 - ]], - [[ - 12557, - 12558, - 12559 - ]], - [[ - 12560, - 12561, - 12562 - ]], - [[ - 12563, - 12564, - 3099 - ]], - [[ - 12565, - 12470, - 12566 - ]], - [[ - 12567, - 12550, - 12568 - ]], - [[ - 12569, - 12476, - 12570 - ]], - [[ - 12571, - 12547, - 12546 - ]], - [[ - 12572, - 12476, - 12470 - ]], - [[ - 12573, - 12468, - 12574 - ]], - [[ - 12550, - 12549, - 12568 - ]], - [[ - 12575, - 12576, - 12564 - ]], - [[ - 12577, - 12578, - 12579 - ]], - [[ - 12578, - 12580, - 12581 - ]], - [[ - 12567, - 12549, - 12580 - ]], - [[ - 12563, - 12567, - 12580 - ]], - [[ - 12563, - 12577, - 12579 - ]], - [[ - 12564, - 12553, - 3099 - ]], - [[ - 12581, - 12576, - 12578 - ]], - [[ - 12582, - 12583, - 12559 - ]], - [[ - 12552, - 12559, - 12558 - ]], - [[ - 12576, - 12575, - 12584 - ]], - [[ - 12579, - 12584, - 12575 - ]], - [[ - 12585, - 12586, - 12587 - ]], - [[ - 12578, - 12576, - 12584 - ]], - [[ - 12587, - 12559, - 12588 - ]], - [[ - 12588, - 12589, - 12585 - ]], - [[ - 12588, - 12559, - 12589 - ]], - [[ - 12576, - 12582, - 12564 - ]], - [[ - 12589, - 12590, - 12551 - ]], - [[ - 12551, - 12590, - 12552 - ]], - [[ - 12589, - 12559, - 12552 - ]], - [[ - 12556, - 12555, - 12591 - ]], - [[ - 12556, - 12592, - 12561 - ]], - [[ - 12567, - 12554, - 12550 - ]], - [[ - 12567, - 12591, - 12554 - ]], - [[ - 12553, - 12552, - 12558 - ]], - [[ - 12590, - 12589, - 12552 - ]], - [[ - 12592, - 12556, - 12591 - ]], - [[ - 12556, - 12561, - 12554 - ]], - [[ - 12567, - 12563, - 3099 - ]], - [[ - 12579, - 12575, - 12563 - ]], - [[ - 12591, - 12567, - 3099 - ]], - [[ - 12568, - 12549, - 12567 - ]], - [[ - 12585, - 12593, - 12586 - ]], - [[ - 12585, - 12564, - 12593 - ]], - [[ - 12564, - 12582, - 12593 - ]], - [[ - 12582, - 12559, - 12586 - ]], - [[ - 12594, - 12582, - 12576 - ]], - [[ - 12586, - 12593, - 12582 - ]], - [[ - 12595, - 12591, - 3099 - ]], - [[ - 12555, - 12554, - 12591 - ]], - [[ - 12579, - 12578, - 12584 - ]], - [[ - 12580, - 12549, - 12581 - ]], - [[ - 12580, - 12577, - 12563 - ]], - [[ - 12580, - 12578, - 12577 - ]], - [[ - 12585, - 12587, - 12588 - ]], - [[ - 12586, - 12559, - 12587 - ]], - [[ - 12575, - 12564, - 12563 - ]], - [[ - 12585, - 12551, - 12564 - ]], - [[ - 12564, - 12551, - 12553 - ]], - [[ - 12585, - 12589, - 12551 - ]], - [[ - 12596, - 12597, - 12571 - ]], - [[ - 12598, - 3111, - 12539 - ]], - [[ - 12565, - 12599, - 12470 - ]], - [[ - 12600, - 12601, - 12602 - ]], - [[ - 12603, - 12604, - 12539 - ]], - [[ - 12603, - 12605, - 12604 - ]], - [[ - 12606, - 12594, - 12468 - ]], - [[ - 12581, - 12549, - 12607 - ]], - [[ - 12541, - 12543, - 12608 - ]], - [[ - 12609, - 12610, - 12611 - ]], - [[ - 12612, - 12613, - 12596 - ]], - [[ - 12597, - 12614, - 12571 - ]], - [[ - 3103, - 12612, - 3104 - ]], - [[ - 12612, - 12476, - 12569 - ]], - [[ - 12615, - 12606, - 12468 - ]], - [[ - 12604, - 12477, - 12616 - ]], - [[ - 12558, - 12557, - 3111 - ]], - [[ - 12615, - 12468, - 12617 - ]], - [[ - 12559, - 12583, - 12557 - ]], - [[ - 12468, - 12477, - 12604 - ]], - [[ - 12546, - 12545, - 12539 - ]], - [[ - 12547, - 12598, - 12545 - ]], - [[ - 12477, - 12546, - 12616 - ]], - [[ - 12477, - 12571, - 12546 - ]], - [[ - 12557, - 12583, - 12618 - ]], - [[ - 12582, - 12594, - 12583 - ]], - [[ - 12619, - 12620, - 12565 - ]], - [[ - 12570, - 12543, - 12569 - ]], - [[ - 3093, - 12544, - 12610 - ]], - [[ - 3093, - 3047, - 12544 - ]], - [[ - 12621, - 12622, - 12623 - ]], - [[ - 12624, - 12625, - 12544 - ]], - [[ - 12626, - 12627, - 12628 - ]], - [[ - 12629, - 3093, - 12609 - ]], - [[ - 12630, - 12631, - 12632 - ]], - [[ - 12599, - 12633, - 12634 - ]], - [[ - 12546, - 12539, - 12616 - ]], - [[ - 12545, - 12598, - 12539 - ]], - [[ - 12619, - 12635, - 12620 - ]], - [[ - 12626, - 12636, - 12637 - ]], - [[ - 12562, - 12592, - 12630 - ]], - [[ - 12621, - 12627, - 12638 - ]], - [[ - 12639, - 12632, - 12640 - ]], - [[ - 12641, - 12637, - 12642 - ]], - [[ - 12574, - 12594, - 12581 - ]], - [[ - 12606, - 12583, - 12594 - ]], - [[ - 12599, - 12634, - 12636 - ]], - [[ - 12636, - 12643, - 12637 - ]], - [[ - 12574, - 12581, - 12644 - ]], - [[ - 12594, - 12576, - 12581 - ]], - [[ - 12607, - 12602, - 12644 - ]], - [[ - 12600, - 12468, - 12573 - ]], - [[ - 12644, - 12602, - 12601 - ]], - [[ - 12566, - 12562, - 12645 - ]], - [[ - 12646, - 12561, - 12560 - ]], - [[ - 12646, - 12554, - 12561 - ]], - [[ - 12600, - 12647, - 12648 - ]], - [[ - 12646, - 12550, - 12554 - ]], - [[ - 12648, - 12646, - 12560 - ]], - [[ - 12647, - 12548, - 12646 - ]], - [[ - 12571, - 12614, - 12547 - ]], - [[ - 12614, - 3111, - 12598 - ]], - [[ - 12468, - 12600, - 12470 - ]], - [[ - 12602, - 12607, - 12548 - ]], - [[ - 12648, - 12647, - 12646 - ]], - [[ - 12600, - 12602, - 12548 - ]], - [[ - 12595, - 12631, - 12630 - ]], - [[ - 12632, - 12639, - 12630 - ]], - [[ - 12573, - 12574, - 12644 - ]], - [[ - 12468, - 12594, - 12574 - ]], - [[ - 12618, - 12615, - 12617 - ]], - [[ - 12583, - 12606, - 12615 - ]], - [[ - 12649, - 12650, - 12651 - ]], - [[ - 12541, - 3104, - 12542 - ]], - [[ - 12611, - 12610, - 12572 - ]], - [[ - 12652, - 12608, - 12543 - ]], - [[ - 12611, - 12622, - 12609 - ]], - [[ - 12609, - 3093, - 12610 - ]], - [[ - 12621, - 12628, - 12627 - ]], - [[ - 12623, - 12622, - 12611 - ]], - [[ - 12477, - 12596, - 12571 - ]], - [[ - 12613, - 12614, - 12597 - ]], - [[ - 12646, - 12548, - 12550 - ]], - [[ - 12647, - 12600, - 12548 - ]], - [[ - 12557, - 12605, - 12540 - ]], - [[ - 12617, - 12468, - 12604 - ]], - [[ - 12539, - 12604, - 12616 - ]], - [[ - 12605, - 12617, - 12604 - ]], - [[ - 12562, - 12566, - 12560 - ]], - [[ - 12470, - 12600, - 12648 - ]], - [[ - 12638, - 12609, - 12622 - ]], - [[ - 12638, - 12627, - 12629 - ]], - [[ - 12645, - 12619, - 12565 - ]], - [[ - 12562, - 12635, - 12619 - ]], - [[ - 12561, - 12592, - 12562 - ]], - [[ - 12591, - 12595, - 12592 - ]], - [[ - 12581, - 12607, - 12644 - ]], - [[ - 12549, - 12548, - 12607 - ]], - [[ - 3104, - 12612, - 12569 - ]], - [[ - 3103, - 12613, - 12612 - ]], - [[ - 12601, - 12573, - 12644 - ]], - [[ - 12601, - 12600, - 12573 - ]], - [[ - 12544, - 12651, - 12610 - ]], - [[ - 12544, - 12608, - 12624 - ]], - [[ - 12625, - 12624, - 12476 - ]], - [[ - 12625, - 12651, - 12544 - ]], - [[ - 12650, - 12649, - 12476 - ]], - [[ - 12650, - 12610, - 12651 - ]], - [[ - 12624, - 12652, - 12476 - ]], - [[ - 12624, - 12608, - 12652 - ]], - [[ - 12640, - 12643, - 12634 - ]], - [[ - 12653, - 3093, - 12643 - ]], - [[ - 12626, - 12641, - 12627 - ]], - [[ - 12642, - 3093, - 12629 - ]], - [[ - 12470, - 12599, - 12626 - ]], - [[ - 12599, - 12620, - 12633 - ]], - [[ - 12638, - 12629, - 12609 - ]], - [[ - 12627, - 12641, - 12642 - ]], - [[ - 12639, - 12633, - 12620 - ]], - [[ - 12634, - 12643, - 12636 - ]], - [[ - 12572, - 12623, - 12611 - ]], - [[ - 12470, - 12626, - 12628 - ]], - [[ - 12470, - 12623, - 12572 - ]], - [[ - 12470, - 12628, - 12623 - ]], - [[ - 12622, - 12621, - 12638 - ]], - [[ - 12623, - 12628, - 12621 - ]], - [[ - 12572, - 12650, - 12476 - ]], - [[ - 12572, - 12610, - 12650 - ]], - [[ - 12569, - 12542, - 3104 - ]], - [[ - 12569, - 12543, - 12542 - ]], - [[ - 12631, - 12595, - 12653 - ]], - [[ - 12653, - 12643, - 12640 - ]], - [[ - 12566, - 12645, - 12565 - ]], - [[ - 12562, - 12619, - 12645 - ]], - [[ - 12652, - 12570, - 12476 - ]], - [[ - 12652, - 12543, - 12570 - ]], - [[ - 12639, - 12640, - 12633 - ]], - [[ - 12633, - 12640, - 12634 - ]], - [[ - 12626, - 12599, - 12636 - ]], - [[ - 12565, - 12620, - 12599 - ]], - [[ - 12540, - 12603, - 12539 - ]], - [[ - 12540, - 12605, - 12603 - ]], - [[ - 12547, - 12614, - 12598 - ]], - [[ - 12613, - 3111, - 12614 - ]], - [[ - 12635, - 12639, - 12620 - ]], - [[ - 12635, - 12630, - 12639 - ]], - [[ - 12605, - 12557, - 12617 - ]], - [[ - 12540, - 3111, - 12557 - ]], - [[ - 12544, - 12541, - 12608 - ]], - [[ - 12544, - 3046, - 12541 - ]], - [[ - 12596, - 12613, - 12597 - ]], - [[ - 3103, - 3111, - 12613 - ]], - [[ - 12476, - 12596, - 12477 - ]], - [[ - 12476, - 12612, - 12596 - ]], - [[ - 12557, - 12618, - 12617 - ]], - [[ - 12583, - 12615, - 12618 - ]], - [[ - 12649, - 12625, - 12476 - ]], - [[ - 12649, - 12651, - 12625 - ]], - [[ - 12631, - 12653, - 12632 - ]], - [[ - 12595, - 3099, - 12653 - ]], - [[ - 12632, - 12653, - 12640 - ]], - [[ - 3099, - 3093, - 12653 - ]], - [[ - 12562, - 12630, - 12635 - ]], - [[ - 12592, - 12595, - 12630 - ]], - [[ - 12626, - 12637, - 12641 - ]], - [[ - 12643, - 3093, - 12637 - ]], - [[ - 12627, - 12642, - 12629 - ]], - [[ - 12637, - 3093, - 12642 - ]], - [[ - 12566, - 12648, - 12560 - ]], - [[ - 12566, - 12470, - 12648 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e36a37d-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb7349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10052, - 12654, - 10051 - ]], - [[ - 12654, - 10049, - 10051 - ]], - [[ - 12654, - 10050, - 10049 - ]], - [[ - 12654, - 10147, - 10050 - ]], - [[ - 12654, - 10172, - 10147 - ]], - [[ - 12654, - 10171, - 10172 - ]], - [[ - 12654, - 10170, - 10171 - ]], - [[ - 12655, - 10169, - 10170 - ]], - [[ - 12655, - 10168, - 10169 - ]], - [[ - 12655, - 10167, - 10168 - ]], - [[ - 12655, - 10166, - 10167 - ]], - [[ - 12655, - 10165, - 10166 - ]], - [[ - 10163, - 10164, - 12655 - ]], - [[ - 12655, - 12656, - 12657 - ]], - [[ - 10161, - 12655, - 10160 - ]], - [[ - 10160, - 12655, - 10159 - ]], - [[ - 10159, - 12655, - 10158 - ]], - [[ - 10387, - 12655, - 12657 - ]], - [[ - 10157, - 10158, - 12655 - ]], - [[ - 10156, - 10157, - 12655 - ]], - [[ - 10154, - 10156, - 12655 - ]], - [[ - 10153, - 10154, - 12655 - ]], - [[ - 10151, - 10153, - 12655 - ]], - [[ - 10394, - 10151, - 12655 - ]], - [[ - 10390, - 10394, - 12655 - ]], - [[ - 10391, - 10390, - 12655 - ]], - [[ - 10387, - 10391, - 12655 - ]], - [[ - 10330, - 10387, - 12657 - ]], - [[ - 10329, - 10330, - 12657 - ]], - [[ - 10327, - 10329, - 12657 - ]], - [[ - 10324, - 10327, - 12657 - ]], - [[ - 12657, - 12656, - 12658 - ]], - [[ - 10565, - 12657, - 10318 - ]], - [[ - 10318, - 12657, - 10319 - ]], - [[ - 10319, - 12657, - 10331 - ]], - [[ - 10331, - 12657, - 10129 - ]], - [[ - 10129, - 12657, - 12659 - ]], - [[ - 10340, - 10129, - 12659 - ]], - [[ - 10126, - 10340, - 12659 - ]], - [[ - 12659, - 12657, - 12658 - ]], - [[ - 10123, - 10341, - 12659 - ]], - [[ - 10271, - 10123, - 12659 - ]], - [[ - 10085, - 10271, - 12659 - ]], - [[ - 10120, - 10085, - 12659 - ]], - [[ - 10118, - 10120, - 12659 - ]], - [[ - 10116, - 10118, - 12659 - ]], - [[ - 12658, - 12656, - 12660 - ]], - [[ - 10112, - 12658, - 10110 - ]], - [[ - 10110, - 12658, - 10108 - ]], - [[ - 10102, - 12658, - 12660 - ]], - [[ - 10105, - 10108, - 12658 - ]], - [[ - 10103, - 12658, - 10102 - ]], - [[ - 10102, - 12660, - 10100 - ]], - [[ - 10100, - 12660, - 10098 - ]], - [[ - 10098, - 12660, - 10095 - ]], - [[ - 10095, - 12660, - 10091 - ]], - [[ - 10091, - 12660, - 10089 - ]], - [[ - 10089, - 12660, - 10087 - ]], - [[ - 12660, - 10082, - 10086 - ]], - [[ - 12660, - 10079, - 10082 - ]], - [[ - 12660, - 10078, - 10079 - ]], - [[ - 12660, - 10077, - 10078 - ]], - [[ - 12660, - 12661, - 10077 - ]], - [[ - 10077, - 12661, - 10076 - ]], - [[ - 10076, - 12661, - 10075 - ]], - [[ - 10075, - 12661, - 10074 - ]], - [[ - 10074, - 12661, - 10073 - ]], - [[ - 12661, - 12654, - 10064 - ]], - [[ - 10072, - 12661, - 10071 - ]], - [[ - 10071, - 12661, - 10070 - ]], - [[ - 10070, - 12661, - 10069 - ]], - [[ - 10069, - 12661, - 10068 - ]], - [[ - 10068, - 12661, - 10066 - ]], - [[ - 10066, - 12661, - 10067 - ]], - [[ - 10067, - 12661, - 10065 - ]], - [[ - 10065, - 12661, - 10064 - ]], - [[ - 10064, - 12654, - 10063 - ]], - [[ - 10063, - 12654, - 10062 - ]], - [[ - 10062, - 12654, - 10030 - ]], - [[ - 10030, - 12654, - 10031 - ]], - [[ - 10031, - 12654, - 10061 - ]], - [[ - 10061, - 12654, - 10059 - ]], - [[ - 10059, - 12654, - 10060 - ]], - [[ - 12654, - 12655, - 10170 - ]], - [[ - 10058, - 12654, - 10057 - ]], - [[ - 10057, - 12654, - 10056 - ]], - [[ - 10056, - 12654, - 10055 - ]], - [[ - 10055, - 12654, - 10054 - ]], - [[ - 10054, - 12654, - 10053 - ]], - [[ - 10053, - 12654, - 10052 - ]], - [[ - 10103, - 10105, - 12658 - ]], - [[ - 12655, - 10164, - 10165 - ]], - [[ - 10325, - 12657, - 10565 - ]], - [[ - 10325, - 10324, - 12657 - ]], - [[ - 10087, - 12660, - 10086 - ]], - [[ - 12656, - 12654, - 12661 - ]], - [[ - 10162, - 12655, - 10161 - ]], - [[ - 10162, - 10163, - 12655 - ]], - [[ - 10114, - 12658, - 10112 - ]], - [[ - 10114, - 10116, - 12658 - ]], - [[ - 10060, - 12654, - 10058 - ]], - [[ - 12656, - 12655, - 12654 - ]], - [[ - 10116, - 12659, - 12658 - ]], - [[ - 10341, - 10126, - 12659 - ]], - [[ - 10073, - 12661, - 10072 - ]], - [[ - 12660, - 12656, - 12661 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3717f5-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12662, - 12663, - 3214 - ]], - [[ - 12664, - 12665, - 12666 - ]], - [[ - 12667, - 12668, - 12669 - ]], - [[ - 3044, - 12670, - 3042 - ]], - [[ - 3044, - 3042, - 3045 - ]], - [[ - 12671, - 12672, - 3040 - ]], - [[ - 12673, - 12674, - 12675 - ]], - [[ - 12676, - 12677, - 12662 - ]], - [[ - 12678, - 12679, - 12680 - ]], - [[ - 12681, - 3216, - 12682 - ]], - [[ - 12683, - 12684, - 12685 - ]], - [[ - 12686, - 12687, - 12670 - ]], - [[ - 12688, - 12686, - 12672 - ]], - [[ - 12684, - 12689, - 12690 - ]], - [[ - 12691, - 12692, - 12693 - ]], - [[ - 12694, - 12695, - 12663 - ]], - [[ - 12696, - 3216, - 12681 - ]], - [[ - 3216, - 3215, - 12682 - ]], - [[ - 12691, - 12697, - 12698 - ]], - [[ - 12680, - 12699, - 12700 - ]], - [[ - 12691, - 12698, - 12701 - ]], - [[ - 12701, - 12699, - 12680 - ]], - [[ - 12685, - 12701, - 12702 - ]], - [[ - 12691, - 12701, - 12703 - ]], - [[ - 12702, - 12698, - 12697 - ]], - [[ - 12701, - 12679, - 12678 - ]], - [[ - 12704, - 12705, - 12706 - ]], - [[ - 12706, - 3215, - 12707 - ]], - [[ - 12708, - 12695, - 12709 - ]], - [[ - 12665, - 12664, - 12699 - ]], - [[ - 12678, - 12680, - 12710 - ]], - [[ - 12708, - 12666, - 12695 - ]], - [[ - 12711, - 12691, - 12693 - ]], - [[ - 12711, - 12697, - 12691 - ]], - [[ - 12710, - 12680, - 12676 - ]], - [[ - 12679, - 12701, - 12680 - ]], - [[ - 12704, - 12707, - 12712 - ]], - [[ - 12713, - 3215, - 12663 - ]], - [[ - 12711, - 12702, - 12697 - ]], - [[ - 12714, - 12685, - 12702 - ]], - [[ - 12713, - 12707, - 3215 - ]], - [[ - 12706, - 12682, - 3215 - ]], - [[ - 12715, - 12662, - 12700 - ]], - [[ - 12713, - 12716, - 12665 - ]], - [[ - 12663, - 12715, - 12709 - ]], - [[ - 12664, - 12666, - 12708 - ]], - [[ - 12702, - 12701, - 12698 - ]], - [[ - 12685, - 12699, - 12701 - ]], - [[ - 12665, - 12699, - 12717 - ]], - [[ - 12706, - 12681, - 12682 - ]], - [[ - 12704, - 12706, - 12707 - ]], - [[ - 12718, - 12719, - 12704 - ]], - [[ - 12709, - 12664, - 12708 - ]], - [[ - 12715, - 12699, - 12664 - ]], - [[ - 12709, - 12715, - 12664 - ]], - [[ - 12676, - 12680, - 12700 - ]], - [[ - 12713, - 12704, - 12712 - ]], - [[ - 12720, - 12696, - 12718 - ]], - [[ - 12706, - 12705, - 12681 - ]], - [[ - 12717, - 12721, - 12665 - ]], - [[ - 12693, - 12710, - 12676 - ]], - [[ - 12693, - 12692, - 12710 - ]], - [[ - 12704, - 12719, - 12705 - ]], - [[ - 12669, - 12722, - 12723 - ]], - [[ - 12715, - 12700, - 12699 - ]], - [[ - 12677, - 12676, - 12700 - ]], - [[ - 12714, - 12711, - 12693 - ]], - [[ - 12714, - 12702, - 12711 - ]], - [[ - 12716, - 12713, - 12663 - ]], - [[ - 12712, - 12707, - 12713 - ]], - [[ - 12692, - 12703, - 12710 - ]], - [[ - 12703, - 12701, - 12678 - ]], - [[ - 12710, - 12703, - 12678 - ]], - [[ - 12692, - 12691, - 12703 - ]], - [[ - 12662, - 12715, - 12663 - ]], - [[ - 12662, - 12677, - 12700 - ]], - [[ - 12714, - 12662, - 3214 - ]], - [[ - 12693, - 12676, - 12662 - ]], - [[ - 12709, - 12694, - 12663 - ]], - [[ - 12709, - 12695, - 12694 - ]], - [[ - 12695, - 12716, - 12663 - ]], - [[ - 12695, - 12666, - 12716 - ]], - [[ - 12685, - 12714, - 3214 - ]], - [[ - 12693, - 12662, - 12714 - ]], - [[ - 3042, - 12670, - 3040 - ]], - [[ - 12670, - 12724, - 12675 - ]], - [[ - 12685, - 12684, - 12686 - ]], - [[ - 12685, - 3214, - 12725 - ]], - [[ - 12696, - 12726, - 12727 - ]], - [[ - 12728, - 12729, - 3043 - ]], - [[ - 12730, - 12731, - 12732 - ]], - [[ - 12728, - 3216, - 12727 - ]], - [[ - 3040, - 12670, - 12687 - ]], - [[ - 12675, - 12674, - 12686 - ]], - [[ - 12724, - 12733, - 12675 - ]], - [[ - 12734, - 12735, - 12729 - ]], - [[ - 12736, - 12673, - 12675 - ]], - [[ - 12737, - 12738, - 12673 - ]], - [[ - 12683, - 12689, - 12684 - ]], - [[ - 12739, - 12683, - 12740 - ]], - [[ - 12704, - 12713, - 12665 - ]], - [[ - 12718, - 12704, - 12665 - ]], - [[ - 12741, - 12671, - 3040 - ]], - [[ - 12672, - 3041, - 3040 - ]], - [[ - 12727, - 12726, - 12668 - ]], - [[ - 12742, - 12721, - 12717 - ]], - [[ - 12705, - 12696, - 12681 - ]], - [[ - 12705, - 12719, - 12696 - ]], - [[ - 12743, - 12744, - 12733 - ]], - [[ - 12734, - 12729, - 12728 - ]], - [[ - 12736, - 12737, - 12673 - ]], - [[ - 12745, - 12743, - 12746 - ]], - [[ - 12728, - 12727, - 12747 - ]], - [[ - 3216, - 12696, - 12727 - ]], - [[ - 12667, - 12669, - 12674 - ]], - [[ - 12668, - 12726, - 12720 - ]], - [[ - 12668, - 12720, - 12669 - ]], - [[ - 12696, - 12719, - 12718 - ]], - [[ - 12748, - 12718, - 12665 - ]], - [[ - 12720, - 12726, - 12696 - ]], - [[ - 12746, - 12743, - 12724 - ]], - [[ - 12745, - 12749, - 12750 - ]], - [[ - 12748, - 12665, - 12721 - ]], - [[ - 12716, - 12666, - 12665 - ]], - [[ - 12744, - 12750, - 12751 - ]], - [[ - 12731, - 3043, - 12729 - ]], - [[ - 12670, - 12675, - 12686 - ]], - [[ - 12733, - 12744, - 12736 - ]], - [[ - 12668, - 12667, - 12727 - ]], - [[ - 12674, - 12673, - 12752 - ]], - [[ - 12667, - 12753, - 12747 - ]], - [[ - 12752, - 12738, - 12732 - ]], - [[ - 12753, - 12667, - 12674 - ]], - [[ - 12747, - 12727, - 12667 - ]], - [[ - 12751, - 12750, - 12749 - ]], - [[ - 12744, - 12743, - 12750 - ]], - [[ - 12741, - 12688, - 12671 - ]], - [[ - 12686, - 3041, - 12672 - ]], - [[ - 3216, - 12728, - 3043 - ]], - [[ - 12747, - 12753, - 12734 - ]], - [[ - 12751, - 12754, - 12737 - ]], - [[ - 12737, - 12730, - 12738 - ]], - [[ - 12725, - 12683, - 12685 - ]], - [[ - 12690, - 12686, - 12684 - ]], - [[ - 12687, - 12755, - 3040 - ]], - [[ - 12756, - 12686, - 12688 - ]], - [[ - 12755, - 12756, - 12741 - ]], - [[ - 12687, - 12686, - 12756 - ]], - [[ - 12723, - 12717, - 12699 - ]], - [[ - 12669, - 12757, - 12722 - ]], - [[ - 12723, - 12722, - 12742 - ]], - [[ - 12757, - 12718, - 12722 - ]], - [[ - 12742, - 12748, - 12721 - ]], - [[ - 12722, - 12718, - 12748 - ]], - [[ - 12743, - 12745, - 12750 - ]], - [[ - 3044, - 12749, - 12745 - ]], - [[ - 12746, - 12724, - 12670 - ]], - [[ - 12743, - 12733, - 12724 - ]], - [[ - 12673, - 12738, - 12752 - ]], - [[ - 12752, - 12731, - 12735 - ]], - [[ - 12747, - 12734, - 12728 - ]], - [[ - 12753, - 12735, - 12734 - ]], - [[ - 3041, - 12758, - 3214 - ]], - [[ - 3041, - 12686, - 12759 - ]], - [[ - 12723, - 12742, - 12717 - ]], - [[ - 12722, - 12748, - 12742 - ]], - [[ - 3044, - 12746, - 12670 - ]], - [[ - 3044, - 12745, - 12746 - ]], - [[ - 12674, - 12723, - 12699 - ]], - [[ - 12674, - 12669, - 12723 - ]], - [[ - 12744, - 12751, - 12737 - ]], - [[ - 12749, - 12754, - 12751 - ]], - [[ - 12758, - 12725, - 3214 - ]], - [[ - 12758, - 12740, - 12725 - ]], - [[ - 12754, - 12730, - 12737 - ]], - [[ - 3044, - 3043, - 12730 - ]], - [[ - 3044, - 12754, - 12749 - ]], - [[ - 3044, - 12730, - 12754 - ]], - [[ - 12735, - 12731, - 12729 - ]], - [[ - 12730, - 3043, - 12731 - ]], - [[ - 12739, - 12690, - 12689 - ]], - [[ - 12759, - 12686, - 12690 - ]], - [[ - 12683, - 12739, - 12689 - ]], - [[ - 12740, - 12758, - 12759 - ]], - [[ - 12739, - 12759, - 12690 - ]], - [[ - 12758, - 3041, - 12759 - ]], - [[ - 12733, - 12736, - 12675 - ]], - [[ - 12744, - 12737, - 12736 - ]], - [[ - 12739, - 12740, - 12759 - ]], - [[ - 12683, - 12725, - 12740 - ]], - [[ - 12671, - 12688, - 12672 - ]], - [[ - 12741, - 12756, - 12688 - ]], - [[ - 12757, - 12720, - 12718 - ]], - [[ - 12757, - 12669, - 12720 - ]], - [[ - 12752, - 12732, - 12731 - ]], - [[ - 12738, - 12730, - 12732 - ]], - [[ - 12753, - 12752, - 12735 - ]], - [[ - 12753, - 12674, - 12752 - ]], - [[ - 3040, - 12755, - 12741 - ]], - [[ - 12687, - 12756, - 12755 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e37180a-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efe6f649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12760, - 12761, - 12762 - ]], - [[ - 12763, - 12764, - 12765 - ]], - [[ - 12764, - 3099, - 12766 - ]], - [[ - 3097, - 12767, - 3096 - ]], - [[ - 3096, - 12767, - 3095 - ]], - [[ - 3095, - 12767, - 3094 - ]], - [[ - 3094, - 12767, - 3092 - ]], - [[ - 3092, - 12767, - 3091 - ]], - [[ - 3091, - 12767, - 3090 - ]], - [[ - 12768, - 12769, - 12770 - ]], - [[ - 12771, - 12772, - 12766 - ]], - [[ - 12773, - 12766, - 12774 - ]], - [[ - 12775, - 12553, - 12776 - ]], - [[ - 12767, - 3098, - 12764 - ]], - [[ - 12764, - 3098, - 3099 - ]], - [[ - 12762, - 12774, - 12766 - ]], - [[ - 12766, - 3099, - 12762 - ]], - [[ - 12770, - 12777, - 12778 - ]], - [[ - 12779, - 12780, - 12781 - ]], - [[ - 12782, - 12783, - 12780 - ]], - [[ - 3056, - 3090, - 12767 - ]], - [[ - 12784, - 12785, - 12762 - ]], - [[ - 12784, - 12783, - 12785 - ]], - [[ - 12778, - 12783, - 12784 - ]], - [[ - 12764, - 12786, - 12767 - ]], - [[ - 12774, - 12762, - 12785 - ]], - [[ - 3099, - 12553, - 12762 - ]], - [[ - 12785, - 12782, - 12774 - ]], - [[ - 12785, - 12783, - 12782 - ]], - [[ - 12782, - 12780, - 12774 - ]], - [[ - 12766, - 12772, - 12765 - ]], - [[ - 12779, - 12773, - 12774 - ]], - [[ - 12787, - 12781, - 12772 - ]], - [[ - 12762, - 12761, - 12784 - ]], - [[ - 12762, - 12553, - 12760 - ]], - [[ - 11645, - 12775, - 12776 - ]], - [[ - 12761, - 12770, - 12778 - ]], - [[ - 12774, - 12780, - 12779 - ]], - [[ - 12788, - 3056, - 12786 - ]], - [[ - 12787, - 12772, - 12771 - ]], - [[ - 12783, - 3056, - 12772 - ]], - [[ - 12773, - 12771, - 12766 - ]], - [[ - 12773, - 12779, - 12781 - ]], - [[ - 12775, - 12760, - 12553 - ]], - [[ - 12775, - 11645, - 12768 - ]], - [[ - 12775, - 12768, - 12760 - ]], - [[ - 12769, - 12777, - 12770 - ]], - [[ - 3056, - 12777, - 11645 - ]], - [[ - 3056, - 12783, - 12777 - ]], - [[ - 12760, - 12770, - 12761 - ]], - [[ - 12760, - 12768, - 12770 - ]], - [[ - 12761, - 12778, - 12784 - ]], - [[ - 12777, - 12783, - 12778 - ]], - [[ - 12772, - 12789, - 12765 - ]], - [[ - 12788, - 12786, - 12790 - ]], - [[ - 12789, - 12763, - 12765 - ]], - [[ - 12763, - 12788, - 12790 - ]], - [[ - 12765, - 12764, - 12766 - ]], - [[ - 12790, - 12786, - 12764 - ]], - [[ - 11645, - 12769, - 12768 - ]], - [[ - 11645, - 12777, - 12769 - ]], - [[ - 12763, - 12790, - 12764 - ]], - [[ - 12763, - 12789, - 12788 - ]], - [[ - 12772, - 12788, - 12789 - ]], - [[ - 12772, - 3056, - 12788 - ]], - [[ - 3056, - 12767, - 12786 - ]], - [[ - 3097, - 3098, - 12767 - ]], - [[ - 12783, - 12781, - 12780 - ]], - [[ - 12783, - 12772, - 12781 - ]], - [[ - 12773, - 12787, - 12771 - ]], - [[ - 12773, - 12781, - 12787 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e39d73d-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8e849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12791, - 12792, - 12793 - ]], - [[ - 12794, - 12792, - 12795 - ]], - [[ - 12792, - 12794, - 12796 - ]], - [[ - 12797, - 12798, - 12799 - ]], - [[ - 12793, - 12792, - 12796 - ]], - [[ - 12800, - 12801, - 12797 - ]], - [[ - 12802, - 12803, - 12804 - ]], - [[ - 12805, - 12793, - 12806 - ]], - [[ - 12806, - 12793, - 12796 - ]], - [[ - 12807, - 12808, - 12809 - ]], - [[ - 12806, - 12810, - 12805 - ]], - [[ - 12801, - 12798, - 12797 - ]], - [[ - 12796, - 12811, - 12807 - ]], - [[ - 12811, - 12794, - 12795 - ]], - [[ - 12812, - 12813, - 12814 - ]], - [[ - 12795, - 12792, - 12791 - ]], - [[ - 12813, - 12797, - 12799 - ]], - [[ - 12804, - 12815, - 12816 - ]], - [[ - 12813, - 12812, - 12797 - ]], - [[ - 12817, - 12797, - 12812 - ]], - [[ - 12814, - 12813, - 12799 - ]], - [[ - 12814, - 12803, - 12812 - ]], - [[ - 12818, - 12795, - 12808 - ]], - [[ - 12811, - 12796, - 12794 - ]], - [[ - 12818, - 12811, - 12795 - ]], - [[ - 12807, - 12799, - 12796 - ]], - [[ - 12807, - 12814, - 12799 - ]], - [[ - 12803, - 12809, - 12804 - ]], - [[ - 12807, - 12809, - 12814 - ]], - [[ - 12809, - 12815, - 12804 - ]], - [[ - 12819, - 12820, - 12821 - ]], - [[ - 12822, - 12821, - 12810 - ]], - [[ - 12817, - 12823, - 12824 - ]], - [[ - 12822, - 12825, - 12826 - ]], - [[ - 12818, - 12807, - 12811 - ]], - [[ - 12818, - 12808, - 12807 - ]], - [[ - 12815, - 12805, - 12810 - ]], - [[ - 12810, - 12798, - 12801 - ]], - [[ - 12814, - 12809, - 12803 - ]], - [[ - 12808, - 12815, - 12809 - ]], - [[ - 12802, - 12817, - 12812 - ]], - [[ - 12823, - 12820, - 12819 - ]], - [[ - 12808, - 12805, - 12815 - ]], - [[ - 12808, - 12795, - 12791 - ]], - [[ - 12800, - 12827, - 12828 - ]], - [[ - 12820, - 12804, - 12816 - ]], - [[ - 12822, - 12826, - 12828 - ]], - [[ - 12826, - 12810, - 12801 - ]], - [[ - 12823, - 12802, - 12804 - ]], - [[ - 12812, - 12803, - 12802 - ]], - [[ - 12826, - 12801, - 12828 - ]], - [[ - 12826, - 12825, - 12810 - ]], - [[ - 12827, - 12800, - 12797 - ]], - [[ - 12828, - 12801, - 12800 - ]], - [[ - 12827, - 12823, - 12819 - ]], - [[ - 12816, - 12815, - 12810 - ]], - [[ - 12822, - 12810, - 12825 - ]], - [[ - 12806, - 12798, - 12810 - ]], - [[ - 12821, - 12816, - 12810 - ]], - [[ - 12821, - 12820, - 12816 - ]], - [[ - 12824, - 12823, - 12827 - ]], - [[ - 12817, - 12802, - 12823 - ]], - [[ - 12797, - 12824, - 12827 - ]], - [[ - 12797, - 12817, - 12824 - ]], - [[ - 12822, - 12819, - 12821 - ]], - [[ - 12823, - 12804, - 12820 - ]], - [[ - 12828, - 12819, - 12822 - ]], - [[ - 12828, - 12827, - 12819 - ]], - [[ - 12805, - 12791, - 12793 - ]], - [[ - 12805, - 12808, - 12791 - ]], - [[ - 12806, - 12829, - 12798 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3a4cc7-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12830, - 12831, - 12832 - ]], - [[ - 12833, - 12834, - 12835 - ]], - [[ - 12836, - 12837, - 12838 - ]], - [[ - 12839, - 12831, - 12840 - ]], - [[ - 12841, - 12836, - 12842 - ]], - [[ - 12835, - 12831, - 12843 - ]], - [[ - 12844, - 12845, - 12830 - ]], - [[ - 12838, - 12837, - 12846 - ]], - [[ - 12840, - 12846, - 12839 - ]], - [[ - 12837, - 12839, - 12846 - ]], - [[ - 12836, - 12839, - 12837 - ]], - [[ - 12841, - 12831, - 12839 - ]], - [[ - 12830, - 12843, - 12831 - ]], - [[ - 12845, - 12844, - 12833 - ]], - [[ - 12845, - 12835, - 12843 - ]], - [[ - 12834, - 12840, - 12835 - ]], - [[ - 12842, - 12844, - 12832 - ]], - [[ - 12847, - 12838, - 12846 - ]], - [[ - 12833, - 12848, - 12847 - ]], - [[ - 12847, - 12846, - 12834 - ]], - [[ - 12835, - 12840, - 12831 - ]], - [[ - 12834, - 12846, - 12840 - ]], - [[ - 12842, - 12836, - 12838 - ]], - [[ - 12841, - 12839, - 12836 - ]], - [[ - 12833, - 12847, - 12834 - ]], - [[ - 12848, - 12838, - 12847 - ]], - [[ - 12844, - 12830, - 12832 - ]], - [[ - 12845, - 12843, - 12830 - ]], - [[ - 12842, - 12848, - 12844 - ]], - [[ - 12842, - 12838, - 12848 - ]], - [[ - 12845, - 12833, - 12835 - ]], - [[ - 12844, - 12848, - 12833 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3ae885-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12849, - 12850, - 12851 - ]], - [[ - 12852, - 12850, - 12849 - ]], - [[ - 12853, - 12852, - 12849 - ]], - [[ - 12854, - 12853, - 12849 - ]], - [[ - 12855, - 12854, - 12849 - ]], - [[ - 12856, - 12855, - 12849 - ]], - [[ - 12857, - 12856, - 12849 - ]], - [[ - 12858, - 12857, - 12849 - ]], - [[ - 12859, - 12858, - 12849 - ]], - [[ - 12849, - 12860, - 12861 - ]], - [[ - 12862, - 12863, - 12849 - ]], - [[ - 12864, - 12862, - 12849 - ]], - [[ - 12865, - 12864, - 12849 - ]], - [[ - 12866, - 12865, - 12849 - ]], - [[ - 12867, - 12866, - 12849 - ]], - [[ - 12868, - 12867, - 12849 - ]], - [[ - 12869, - 12868, - 12849 - ]], - [[ - 12870, - 12869, - 12849 - ]], - [[ - 12871, - 12870, - 12849 - ]], - [[ - 12872, - 12871, - 12849 - ]], - [[ - 12873, - 12872, - 12849 - ]], - [[ - 12874, - 12873, - 12849 - ]], - [[ - 12849, - 12851, - 12875 - ]], - [[ - 12876, - 12877, - 12849 - ]], - [[ - 12878, - 12876, - 12861 - ]], - [[ - 12879, - 12878, - 12861 - ]], - [[ - 12880, - 12879, - 12861 - ]], - [[ - 12881, - 12860, - 12882 - ]], - [[ - 12883, - 12861, - 12884 - ]], - [[ - 12884, - 12861, - 12885 - ]], - [[ - 12885, - 12861, - 12886 - ]], - [[ - 12886, - 12861, - 12887 - ]], - [[ - 12849, - 12877, - 12874 - ]], - [[ - 12888, - 12861, - 12889 - ]], - [[ - 12889, - 12861, - 12890 - ]], - [[ - 12890, - 12861, - 12881 - ]], - [[ - 12891, - 12890, - 12881 - ]], - [[ - 12892, - 12891, - 12881 - ]], - [[ - 12893, - 12892, - 12881 - ]], - [[ - 12894, - 12893, - 12881 - ]], - [[ - 12895, - 12894, - 12881 - ]], - [[ - 12896, - 12895, - 12881 - ]], - [[ - 12897, - 12881, - 12898 - ]], - [[ - 12898, - 12881, - 12899 - ]], - [[ - 12900, - 12881, - 12882 - ]], - [[ - 12901, - 12899, - 12881 - ]], - [[ - 12902, - 12901, - 12881 - ]], - [[ - 12900, - 12902, - 12881 - ]], - [[ - 12903, - 12849, - 12875 - ]], - [[ - 12904, - 12905, - 12882 - ]], - [[ - 12906, - 12904, - 12882 - ]], - [[ - 12907, - 12906, - 12882 - ]], - [[ - 12908, - 12907, - 12882 - ]], - [[ - 12909, - 12908, - 12882 - ]], - [[ - 12910, - 12909, - 12882 - ]], - [[ - 12882, - 12860, - 12911 - ]], - [[ - 12912, - 12882, - 12913 - ]], - [[ - 12913, - 12882, - 12914 - ]], - [[ - 12914, - 12882, - 12915 - ]], - [[ - 12915, - 12882, - 12916 - ]], - [[ - 12917, - 12915, - 12916 - ]], - [[ - 12918, - 12917, - 12916 - ]], - [[ - 12919, - 12918, - 12916 - ]], - [[ - 12916, - 12882, - 12911 - ]], - [[ - 12920, - 12921, - 12916 - ]], - [[ - 12922, - 12920, - 12916 - ]], - [[ - 12923, - 12922, - 12916 - ]], - [[ - 12924, - 12923, - 12916 - ]], - [[ - 12925, - 12926, - 12916 - ]], - [[ - 12916, - 12926, - 12924 - ]], - [[ - 12925, - 12927, - 12926 - ]], - [[ - 12925, - 12928, - 12927 - ]], - [[ - 12925, - 12929, - 12928 - ]], - [[ - 12925, - 12930, - 12929 - ]], - [[ - 12911, - 12860, - 12849 - ]], - [[ - 12931, - 12925, - 12932 - ]], - [[ - 12932, - 12925, - 12933 - ]], - [[ - 12933, - 12925, - 12934 - ]], - [[ - 12934, - 12925, - 12935 - ]], - [[ - 12935, - 12911, - 12936 - ]], - [[ - 12936, - 12911, - 12937 - ]], - [[ - 12937, - 12911, - 12938 - ]], - [[ - 12938, - 12911, - 12939 - ]], - [[ - 12939, - 12911, - 12940 - ]], - [[ - 12940, - 12911, - 12941 - ]], - [[ - 12941, - 12911, - 12942 - ]], - [[ - 12942, - 12911, - 12903 - ]], - [[ - 12903, - 12911, - 12849 - ]], - [[ - 12905, - 12900, - 12882 - ]], - [[ - 12888, - 12887, - 12861 - ]], - [[ - 12943, - 12861, - 12883 - ]], - [[ - 12943, - 12880, - 12861 - ]], - [[ - 12944, - 12882, - 12912 - ]], - [[ - 12944, - 12910, - 12882 - ]], - [[ - 12945, - 12925, - 12931 - ]], - [[ - 12925, - 12946, - 12930 - ]], - [[ - 12935, - 12925, - 12911 - ]], - [[ - 12945, - 12946, - 12925 - ]], - [[ - 12876, - 12849, - 12861 - ]], - [[ - 12863, - 12859, - 12849 - ]], - [[ - 12925, - 12916, - 12911 - ]], - [[ - 12921, - 12919, - 12916 - ]], - [[ - 12896, - 12881, - 12897 - ]], - [[ - 12861, - 12860, - 12881 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3bd29c-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1b049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12947, - 12948, - 12949 - ]], - [[ - 12950, - 12951, - 12952 - ]], - [[ - 12953, - 12954, - 12955 - ]], - [[ - 12954, - 12956, - 12957 - ]], - [[ - 12958, - 12957, - 12956 - ]], - [[ - 12949, - 12959, - 12960 - ]], - [[ - 12951, - 12961, - 12955 - ]], - [[ - 12962, - 12963, - 12950 - ]], - [[ - 12961, - 12951, - 12963 - ]], - [[ - 12952, - 12947, - 12964 - ]], - [[ - 12952, - 12964, - 12965 - ]], - [[ - 12947, - 12949, - 12964 - ]], - [[ - 12959, - 12966, - 12960 - ]], - [[ - 12948, - 12957, - 12966 - ]], - [[ - 12967, - 12962, - 12950 - ]], - [[ - 12965, - 12963, - 12962 - ]], - [[ - 12968, - 12967, - 12952 - ]], - [[ - 12969, - 12951, - 12950 - ]], - [[ - 12961, - 12953, - 12955 - ]], - [[ - 12954, - 12957, - 12955 - ]], - [[ - 12961, - 12970, - 12953 - ]], - [[ - 12961, - 12971, - 12956 - ]], - [[ - 12948, - 12972, - 12949 - ]], - [[ - 12948, - 12966, - 12972 - ]], - [[ - 12972, - 12959, - 12949 - ]], - [[ - 12972, - 12966, - 12959 - ]], - [[ - 12949, - 12960, - 12971 - ]], - [[ - 12966, - 12957, - 12960 - ]], - [[ - 12960, - 12973, - 12974 - ]], - [[ - 12960, - 12957, - 12973 - ]], - [[ - 12965, - 12968, - 12952 - ]], - [[ - 12965, - 12962, - 12968 - ]], - [[ - 12975, - 12954, - 12953 - ]], - [[ - 12956, - 12971, - 12958 - ]], - [[ - 12952, - 12967, - 12950 - ]], - [[ - 12968, - 12962, - 12967 - ]], - [[ - 12975, - 12956, - 12954 - ]], - [[ - 12975, - 12961, - 12956 - ]], - [[ - 12963, - 12969, - 12950 - ]], - [[ - 12963, - 12951, - 12969 - ]], - [[ - 12974, - 12958, - 12971 - ]], - [[ - 12973, - 12957, - 12958 - ]], - [[ - 12970, - 12975, - 12953 - ]], - [[ - 12970, - 12961, - 12975 - ]], - [[ - 12960, - 12974, - 12971 - ]], - [[ - 12973, - 12958, - 12974 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3c6f5d-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efe6fa49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12976, - 9866, - 9872 - ]], - [[ - 12977, - 9867, - 10357 - ]], - [[ - 10356, - 9875, - 12978 - ]], - [[ - 12979, - 12980, - 12981 - ]], - [[ - 12982, - 12980, - 9875 - ]], - [[ - 12976, - 9997, - 9866 - ]], - [[ - 12983, - 12982, - 12984 - ]], - [[ - 12985, - 12981, - 12986 - ]], - [[ - 12983, - 12984, - 12987 - ]], - [[ - 12988, - 12989, - 12990 - ]], - [[ - 12991, - 12992, - 12983 - ]], - [[ - 12993, - 12994, - 12995 - ]], - [[ - 12991, - 12983, - 12996 - ]], - [[ - 12995, - 12994, - 9872 - ]], - [[ - 12997, - 12980, - 12998 - ]], - [[ - 12999, - 13000, - 13001 - ]], - [[ - 12982, - 12983, - 12992 - ]], - [[ - 13002, - 12988, - 12990 - ]], - [[ - 13003, - 13002, - 12992 - ]], - [[ - 13004, - 13005, - 13006 - ]], - [[ - 13003, - 12991, - 12996 - ]], - [[ - 13003, - 12992, - 12991 - ]], - [[ - 12989, - 12996, - 13007 - ]], - [[ - 12987, - 13008, - 12996 - ]], - [[ - 10356, - 13009, - 9875 - ]], - [[ - 13010, - 13008, - 13011 - ]], - [[ - 13012, - 13013, - 13010 - ]], - [[ - 13013, - 10356, - 13010 - ]], - [[ - 13014, - 12978, - 13015 - ]], - [[ - 9875, - 9867, - 12978 - ]], - [[ - 12996, - 12983, - 12987 - ]], - [[ - 13016, - 9875, - 13010 - ]], - [[ - 13017, - 13018, - 13016 - ]], - [[ - 13017, - 13008, - 13018 - ]], - [[ - 13019, - 13020, - 13005 - ]], - [[ - 12989, - 13021, - 12996 - ]], - [[ - 10356, - 12996, - 13008 - ]], - [[ - 13005, - 9998, - 12985 - ]], - [[ - 13022, - 12979, - 12985 - ]], - [[ - 13004, - 12997, - 13005 - ]], - [[ - 12993, - 12995, - 9872 - ]], - [[ - 12994, - 12985, - 9998 - ]], - [[ - 13011, - 13017, - 13016 - ]], - [[ - 13011, - 13008, - 13017 - ]], - [[ - 9998, - 13023, - 9872 - ]], - [[ - 13023, - 9997, - 12976 - ]], - [[ - 13000, - 13007, - 13020 - ]], - [[ - 13005, - 13007, - 9998 - ]], - [[ - 13024, - 13025, - 12990 - ]], - [[ - 13024, - 13007, - 13025 - ]], - [[ - 10356, - 13014, - 10357 - ]], - [[ - 13015, - 9867, - 12977 - ]], - [[ - 13025, - 12999, - 12990 - ]], - [[ - 13025, - 13007, - 13000 - ]], - [[ - 12988, - 13002, - 13021 - ]], - [[ - 13021, - 13002, - 13003 - ]], - [[ - 12988, - 13021, - 12989 - ]], - [[ - 13003, - 12996, - 13021 - ]], - [[ - 12985, - 12979, - 12981 - ]], - [[ - 12986, - 13026, - 13006 - ]], - [[ - 12990, - 12982, - 12992 - ]], - [[ - 13026, - 13004, - 13006 - ]], - [[ - 12997, - 12998, - 13005 - ]], - [[ - 12998, - 13027, - 13019 - ]], - [[ - 12999, - 13001, - 12980 - ]], - [[ - 13027, - 13001, - 13020 - ]], - [[ - 13028, - 12982, - 13018 - ]], - [[ - 13018, - 12982, - 13016 - ]], - [[ - 13016, - 12982, - 9875 - ]], - [[ - 12992, - 13002, - 12990 - ]], - [[ - 13008, - 12984, - 13028 - ]], - [[ - 13008, - 12987, - 12984 - ]], - [[ - 13022, - 13029, - 12993 - ]], - [[ - 9872, - 9875, - 12993 - ]], - [[ - 13016, - 13010, - 13011 - ]], - [[ - 10356, - 13008, - 13010 - ]], - [[ - 9875, - 13012, - 13010 - ]], - [[ - 13009, - 10356, - 13013 - ]], - [[ - 12993, - 13029, - 12994 - ]], - [[ - 12993, - 13030, - 13022 - ]], - [[ - 13026, - 12980, - 12997 - ]], - [[ - 12980, - 12982, - 12990 - ]], - [[ - 13009, - 13012, - 9875 - ]], - [[ - 13009, - 13013, - 13012 - ]], - [[ - 13008, - 13028, - 13018 - ]], - [[ - 12984, - 12982, - 13028 - ]], - [[ - 12985, - 12986, - 13006 - ]], - [[ - 13026, - 12997, - 13004 - ]], - [[ - 12981, - 13026, - 12986 - ]], - [[ - 12981, - 12980, - 13026 - ]], - [[ - 9872, - 12994, - 9998 - ]], - [[ - 13029, - 12985, - 12994 - ]], - [[ - 10357, - 13015, - 12977 - ]], - [[ - 12978, - 9867, - 13015 - ]], - [[ - 10357, - 13014, - 13015 - ]], - [[ - 10356, - 12978, - 13014 - ]], - [[ - 13006, - 13005, - 12985 - ]], - [[ - 13007, - 10356, - 9998 - ]], - [[ - 12998, - 13019, - 13005 - ]], - [[ - 12998, - 12980, - 13027 - ]], - [[ - 13020, - 13007, - 13005 - ]], - [[ - 12996, - 10356, - 13007 - ]], - [[ - 13024, - 12989, - 13007 - ]], - [[ - 13024, - 12990, - 12989 - ]], - [[ - 13001, - 13000, - 13020 - ]], - [[ - 12999, - 13025, - 13000 - ]], - [[ - 9872, - 13023, - 12976 - ]], - [[ - 9998, - 9997, - 13023 - ]], - [[ - 12979, - 13022, - 13030 - ]], - [[ - 12985, - 13029, - 13022 - ]], - [[ - 12999, - 12980, - 12990 - ]], - [[ - 12993, - 9875, - 12980 - ]], - [[ - 12993, - 12979, - 13030 - ]], - [[ - 12993, - 12980, - 12979 - ]], - [[ - 13019, - 13027, - 13020 - ]], - [[ - 12980, - 13001, - 13027 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3c6f63-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8da49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13031, - 13032, - 13033 - ]], - [[ - 13034, - 13035, - 13036 - ]], - [[ - 13037, - 13038, - 13039 - ]], - [[ - 13040, - 13041, - 13042 - ]], - [[ - 13037, - 13043, - 13038 - ]], - [[ - 13044, - 13041, - 13040 - ]], - [[ - 13045, - 13046, - 13047 - ]], - [[ - 13048, - 13049, - 13050 - ]], - [[ - 13051, - 13043, - 13052 - ]], - [[ - 13051, - 13038, - 13043 - ]], - [[ - 13053, - 13052, - 13037 - ]], - [[ - 13043, - 13037, - 13052 - ]], - [[ - 13044, - 13048, - 13041 - ]], - [[ - 13044, - 13049, - 13048 - ]], - [[ - 13054, - 13055, - 13053 - ]], - [[ - 13050, - 13037, - 13041 - ]], - [[ - 13049, - 13056, - 13050 - ]], - [[ - 13053, - 13037, - 13050 - ]], - [[ - 13057, - 13058, - 13049 - ]], - [[ - 13059, - 13060, - 13061 - ]], - [[ - 13034, - 13062, - 13035 - ]], - [[ - 13051, - 13052, - 13055 - ]], - [[ - 13056, - 13049, - 13054 - ]], - [[ - 13035, - 13046, - 13031 - ]], - [[ - 13040, - 13063, - 13064 - ]], - [[ - 13065, - 13033, - 13066 - ]], - [[ - 13067, - 13068, - 13069 - ]], - [[ - 13067, - 13032, - 13070 - ]], - [[ - 13071, - 13067, - 13069 - ]], - [[ - 13072, - 13046, - 13068 - ]], - [[ - 13071, - 13073, - 13066 - ]], - [[ - 13074, - 13066, - 13073 - ]], - [[ - 13067, - 13071, - 13032 - ]], - [[ - 13075, - 13074, - 13039 - ]], - [[ - 13076, - 13036, - 13033 - ]], - [[ - 13046, - 13072, - 13031 - ]], - [[ - 13032, - 13066, - 13033 - ]], - [[ - 13075, - 13038, - 13051 - ]], - [[ - 13073, - 13039, - 13074 - ]], - [[ - 13077, - 13037, - 13039 - ]], - [[ - 13064, - 13057, - 13044 - ]], - [[ - 13078, - 13058, - 13057 - ]], - [[ - 13079, - 13080, - 13062 - ]], - [[ - 13081, - 13045, - 13047 - ]], - [[ - 13032, - 13071, - 13066 - ]], - [[ - 13077, - 13039, - 13073 - ]], - [[ - 13069, - 13063, - 13040 - ]], - [[ - 13064, - 13044, - 13040 - ]], - [[ - 13042, - 13069, - 13040 - ]], - [[ - 13068, - 13046, - 13045 - ]], - [[ - 13063, - 13045, - 13064 - ]], - [[ - 13063, - 13068, - 13045 - ]], - [[ - 13035, - 13047, - 13046 - ]], - [[ - 13075, - 13061, - 13076 - ]], - [[ - 13071, - 13069, - 13042 - ]], - [[ - 13068, - 13063, - 13069 - ]], - [[ - 13054, - 13053, - 13056 - ]], - [[ - 13055, - 13052, - 13053 - ]], - [[ - 13057, - 13049, - 13044 - ]], - [[ - 13058, - 13080, - 13079 - ]], - [[ - 13058, - 13079, - 13049 - ]], - [[ - 13079, - 13055, - 13054 - ]], - [[ - 13078, - 13080, - 13058 - ]], - [[ - 13064, - 13045, - 13080 - ]], - [[ - 13038, - 13075, - 13039 - ]], - [[ - 13065, - 13066, - 13074 - ]], - [[ - 13055, - 13059, - 13061 - ]], - [[ - 13076, - 13074, - 13075 - ]], - [[ - 13067, - 13070, - 13072 - ]], - [[ - 13032, - 13031, - 13072 - ]], - [[ - 13076, - 13065, - 13074 - ]], - [[ - 13076, - 13033, - 13065 - ]], - [[ - 13061, - 13034, - 13076 - ]], - [[ - 13060, - 13082, - 13034 - ]], - [[ - 13061, - 13060, - 13034 - ]], - [[ - 13081, - 13080, - 13045 - ]], - [[ - 13067, - 13072, - 13068 - ]], - [[ - 13070, - 13032, - 13072 - ]], - [[ - 13059, - 13082, - 13060 - ]], - [[ - 13079, - 13054, - 13049 - ]], - [[ - 13059, - 13079, - 13082 - ]], - [[ - 13059, - 13055, - 13079 - ]], - [[ - 13036, - 13035, - 13031 - ]], - [[ - 13034, - 13082, - 13062 - ]], - [[ - 13051, - 13061, - 13075 - ]], - [[ - 13051, - 13055, - 13061 - ]], - [[ - 13033, - 13036, - 13031 - ]], - [[ - 13076, - 13034, - 13036 - ]], - [[ - 13048, - 13050, - 13041 - ]], - [[ - 13056, - 13053, - 13050 - ]], - [[ - 13035, - 13062, - 13047 - ]], - [[ - 13062, - 13080, - 13081 - ]], - [[ - 13064, - 13078, - 13057 - ]], - [[ - 13064, - 13080, - 13078 - ]], - [[ - 13047, - 13062, - 13081 - ]], - [[ - 13082, - 13079, - 13062 - ]], - [[ - 13077, - 13071, - 13042 - ]], - [[ - 13077, - 13073, - 13071 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3d0b1b-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1ac49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11806, - 13083, - 11805 - ]], - [[ - 13084, - 13085, - 13086 - ]], - [[ - 11805, - 13087, - 13088 - ]], - [[ - 13089, - 13090, - 13091 - ]], - [[ - 13092, - 13090, - 13093 - ]], - [[ - 13089, - 11802, - 13093 - ]], - [[ - 13085, - 11798, - 13091 - ]], - [[ - 11800, - 11799, - 13084 - ]], - [[ - 11798, - 13085, - 11799 - ]], - [[ - 13094, - 11806, - 11800 - ]], - [[ - 13095, - 11806, - 13096 - ]], - [[ - 13097, - 13083, - 11806 - ]], - [[ - 13086, - 13098, - 13094 - ]], - [[ - 13086, - 13097, - 13095 - ]], - [[ - 13099, - 13087, - 11805 - ]], - [[ - 13083, - 13090, - 13088 - ]], - [[ - 13089, - 13093, - 13090 - ]], - [[ - 11802, - 13092, - 13093 - ]], - [[ - 13100, - 13092, - 11802 - ]], - [[ - 13100, - 13088, - 13092 - ]], - [[ - 11798, - 13089, - 13091 - ]], - [[ - 11798, - 11802, - 13089 - ]], - [[ - 13086, - 13094, - 11800 - ]], - [[ - 13096, - 11806, - 13094 - ]], - [[ - 13086, - 13095, - 13098 - ]], - [[ - 13097, - 11806, - 13095 - ]], - [[ - 13098, - 13096, - 13094 - ]], - [[ - 13098, - 13095, - 13096 - ]], - [[ - 11805, - 13100, - 11802 - ]], - [[ - 13088, - 13090, - 13092 - ]], - [[ - 11805, - 13088, - 13100 - ]], - [[ - 13087, - 13101, - 13088 - ]], - [[ - 13083, - 13101, - 11805 - ]], - [[ - 13101, - 13087, - 13099 - ]], - [[ - 11805, - 13101, - 13099 - ]], - [[ - 13083, - 13088, - 13101 - ]], - [[ - 11800, - 13084, - 13086 - ]], - [[ - 11799, - 13085, - 13084 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3d3258-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1b149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 12964, - 12949, - 12965 - ]], - [[ - 13102, - 12963, - 12965 - ]], - [[ - 12949, - 12971, - 12965 - ]], - [[ - 13102, - 12971, - 12961 - ]], - [[ - 12961, - 13103, - 13102 - ]], - [[ - 12961, - 12963, - 13103 - ]], - [[ - 13102, - 13104, - 12963 - ]], - [[ - 13103, - 12963, - 13104 - ]], - [[ - 12971, - 13102, - 12965 - ]], - [[ - 13103, - 13104, - 13102 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3d5974-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13105, - 1021, - 1019 - ]], - [[ - 13106, - 1019, - 1007 - ]], - [[ - 1006, - 13107, - 1007 - ]], - [[ - 13107, - 13108, - 13106 - ]], - [[ - 1007, - 13107, - 13106 - ]], - [[ - 1006, - 1021, - 13107 - ]], - [[ - 13106, - 13108, - 1019 - ]], - [[ - 13107, - 1021, - 13108 - ]], - [[ - 13108, - 13105, - 1019 - ]], - [[ - 13108, - 1021, - 13105 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e3f2ebd-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8d949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13109, - 13110, - 13111 - ]], - [[ - 13112, - 13113, - 13114 - ]], - [[ - 13112, - 13115, - 13113 - ]], - [[ - 13116, - 13117, - 13118 - ]], - [[ - 13116, - 13119, - 13120 - ]], - [[ - 13110, - 13121, - 13122 - ]], - [[ - 13123, - 13116, - 13120 - ]], - [[ - 13124, - 13125, - 13111 - ]], - [[ - 13126, - 13123, - 13127 - ]], - [[ - 13110, - 13122, - 13128 - ]], - [[ - 13119, - 13121, - 13120 - ]], - [[ - 13129, - 13130, - 13131 - ]], - [[ - 13132, - 13118, - 13117 - ]], - [[ - 13133, - 13119, - 13134 - ]], - [[ - 13113, - 13115, - 13126 - ]], - [[ - 13116, - 13118, - 13134 - ]], - [[ - 13119, - 13124, - 13121 - ]], - [[ - 13119, - 13133, - 13135 - ]], - [[ - 13110, - 13114, - 13113 - ]], - [[ - 13110, - 13127, - 13121 - ]], - [[ - 13136, - 13137, - 13131 - ]], - [[ - 13115, - 13117, - 13126 - ]], - [[ - 13136, - 13115, - 13137 - ]], - [[ - 13132, - 13117, - 13115 - ]], - [[ - 13110, - 13128, - 13111 - ]], - [[ - 13122, - 13121, - 13124 - ]], - [[ - 13136, - 13132, - 13115 - ]], - [[ - 13118, - 13138, - 13134 - ]], - [[ - 13136, - 13138, - 13132 - ]], - [[ - 13133, - 13139, - 13135 - ]], - [[ - 13137, - 13140, - 13131 - ]], - [[ - 13137, - 13115, - 13112 - ]], - [[ - 13140, - 13141, - 13129 - ]], - [[ - 13140, - 13137, - 13112 - ]], - [[ - 13127, - 13123, - 13120 - ]], - [[ - 13126, - 13117, - 13123 - ]], - [[ - 13121, - 13127, - 13120 - ]], - [[ - 13113, - 13126, - 13127 - ]], - [[ - 13141, - 13112, - 13114 - ]], - [[ - 13141, - 13140, - 13112 - ]], - [[ - 13109, - 13111, - 13125 - ]], - [[ - 13128, - 13124, - 13111 - ]], - [[ - 13119, - 13116, - 13134 - ]], - [[ - 13123, - 13117, - 13116 - ]], - [[ - 13122, - 13124, - 13128 - ]], - [[ - 13135, - 13125, - 13124 - ]], - [[ - 13132, - 13138, - 13118 - ]], - [[ - 13136, - 13139, - 13138 - ]], - [[ - 13140, - 13129, - 13131 - ]], - [[ - 13141, - 13114, - 13130 - ]], - [[ - 13131, - 13130, - 13125 - ]], - [[ - 13129, - 13141, - 13130 - ]], - [[ - 13114, - 13110, - 13109 - ]], - [[ - 13113, - 13127, - 13110 - ]], - [[ - 13130, - 13109, - 13125 - ]], - [[ - 13130, - 13114, - 13109 - ]], - [[ - 13138, - 13133, - 13134 - ]], - [[ - 13138, - 13139, - 13133 - ]], - [[ - 13119, - 13135, - 13124 - ]], - [[ - 13139, - 13125, - 13135 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e404005-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1a949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13142, - 13143, - 13144 - ]], - [[ - 13145, - 12489, - 13146 - ]], - [[ - 13147, - 13148, - 13149 - ]], - [[ - 12514, - 13150, - 13151 - ]], - [[ - 13152, - 13153, - 13143 - ]], - [[ - 13151, - 12506, - 12514 - ]], - [[ - 13154, - 13153, - 12506 - ]], - [[ - 12506, - 13153, - 12493 - ]], - [[ - 13155, - 13156, - 13157 - ]], - [[ - 13158, - 13159, - 13160 - ]], - [[ - 13156, - 13161, - 13162 - ]], - [[ - 13147, - 13149, - 13163 - ]], - [[ - 13159, - 13158, - 13161 - ]], - [[ - 13164, - 13153, - 13152 - ]], - [[ - 13165, - 13158, - 13152 - ]], - [[ - 13165, - 13161, - 13158 - ]], - [[ - 13166, - 13157, - 13143 - ]], - [[ - 13149, - 13148, - 13152 - ]], - [[ - 13157, - 13152, - 13143 - ]], - [[ - 13163, - 13149, - 13152 - ]], - [[ - 13166, - 13155, - 13157 - ]], - [[ - 13147, - 13161, - 13148 - ]], - [[ - 13157, - 13163, - 13152 - ]], - [[ - 13157, - 13162, - 13167 - ]], - [[ - 12493, - 13159, - 13161 - ]], - [[ - 12493, - 13153, - 13168 - ]], - [[ - 13158, - 13160, - 13152 - ]], - [[ - 13159, - 12493, - 13168 - ]], - [[ - 13160, - 13168, - 13164 - ]], - [[ - 13160, - 13159, - 13168 - ]], - [[ - 13160, - 13164, - 13152 - ]], - [[ - 13168, - 13153, - 13164 - ]], - [[ - 13169, - 13156, - 13155 - ]], - [[ - 13156, - 12493, - 13161 - ]], - [[ - 13170, - 13169, - 13155 - ]], - [[ - 12489, - 13156, - 13169 - ]], - [[ - 13157, - 13156, - 13162 - ]], - [[ - 12489, - 12493, - 13156 - ]], - [[ - 13157, - 13167, - 13163 - ]], - [[ - 13162, - 13161, - 13167 - ]], - [[ - 13171, - 13170, - 13155 - ]], - [[ - 12489, - 13169, - 13170 - ]], - [[ - 13165, - 13148, - 13161 - ]], - [[ - 13165, - 13152, - 13148 - ]], - [[ - 13150, - 13154, - 13172 - ]], - [[ - 13173, - 12506, - 13172 - ]], - [[ - 13174, - 12514, - 13175 - ]], - [[ - 13146, - 13143, - 13176 - ]], - [[ - 13174, - 13177, - 13178 - ]], - [[ - 13172, - 12506, - 13151 - ]], - [[ - 13178, - 13177, - 13150 - ]], - [[ - 13144, - 13154, - 13150 - ]], - [[ - 13151, - 13150, - 13172 - ]], - [[ - 13177, - 13144, - 13150 - ]], - [[ - 13179, - 13145, - 13176 - ]], - [[ - 13180, - 13166, - 13146 - ]], - [[ - 13177, - 13174, - 13144 - ]], - [[ - 13175, - 13181, - 13142 - ]], - [[ - 13174, - 13142, - 13144 - ]], - [[ - 13176, - 13143, - 13142 - ]], - [[ - 13180, - 13171, - 13166 - ]], - [[ - 12489, - 13170, - 13171 - ]], - [[ - 13146, - 13166, - 13143 - ]], - [[ - 13171, - 13155, - 13166 - ]], - [[ - 13181, - 13179, - 13176 - ]], - [[ - 12514, - 12489, - 13179 - ]], - [[ - 13174, - 13175, - 13142 - ]], - [[ - 12514, - 13179, - 13175 - ]], - [[ - 12514, - 13178, - 13150 - ]], - [[ - 12514, - 13174, - 13178 - ]], - [[ - 12489, - 13180, - 13146 - ]], - [[ - 12489, - 13171, - 13180 - ]], - [[ - 13167, - 13147, - 13163 - ]], - [[ - 13167, - 13161, - 13147 - ]], - [[ - 13154, - 13173, - 13172 - ]], - [[ - 13154, - 12506, - 13173 - ]], - [[ - 13176, - 13145, - 13146 - ]], - [[ - 13179, - 12489, - 13145 - ]], - [[ - 13142, - 13181, - 13176 - ]], - [[ - 13175, - 13179, - 13181 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e404008-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba4f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13182, - 13183, - 13184 - ]], - [[ - 13185, - 13186, - 13187 - ]], - [[ - 13182, - 13184, - 13185 - ]], - [[ - 13182, - 13185, - 13187 - ]], - [[ - 13184, - 13186, - 13185 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e415141-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13188, - 13189, - 13190 - ]], - [[ - 13191, - 13190, - 13192 - ]], - [[ - 13193, - 13194, - 13192 - ]], - [[ - 13195, - 13189, - 13188 - ]], - [[ - 13191, - 13196, - 13197 - ]], - [[ - 13195, - 13198, - 13189 - ]], - [[ - 13194, - 13191, - 13192 - ]], - [[ - 13194, - 13196, - 13191 - ]], - [[ - 13197, - 13196, - 13199 - ]], - [[ - 13200, - 13201, - 13198 - ]], - [[ - 13197, - 13199, - 13188 - ]], - [[ - 13198, - 13202, - 13189 - ]], - [[ - 13196, - 13198, - 13199 - ]], - [[ - 13196, - 13200, - 13198 - ]], - [[ - 13199, - 13195, - 13188 - ]], - [[ - 13199, - 13198, - 13195 - ]], - [[ - 13190, - 13197, - 13188 - ]], - [[ - 13190, - 13191, - 13197 - ]], - [[ - 13194, - 13200, - 13196 - ]], - [[ - 13194, - 13193, - 13200 - ]], - [[ - 13193, - 13201, - 13200 - ]], - [[ - 13202, - 13198, - 13201 - ]], - [[ - 13202, - 13193, - 13192 - ]], - [[ - 13202, - 13201, - 13193 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e41ee11-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13203, - 13204, - 13205 - ]], - [[ - 13203, - 13205, - 13206 - ]], - [[ - 13207, - 13203, - 13206 - ]], - [[ - 13207, - 13204, - 13203 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e4289b7-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba4d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13208, - 13209, - 13210 - ]], - [[ - 13211, - 13212, - 13210 - ]], - [[ - 13213, - 13214, - 13211 - ]], - [[ - 13215, - 13213, - 13216 - ]], - [[ - 13217, - 13211, - 13210 - ]], - [[ - 13218, - 13215, - 13216 - ]], - [[ - 13212, - 13219, - 13208 - ]], - [[ - 13212, - 13214, - 13215 - ]], - [[ - 13212, - 13215, - 13219 - ]], - [[ - 13214, - 13213, - 13215 - ]], - [[ - 13212, - 13208, - 13210 - ]], - [[ - 13209, - 13220, - 13210 - ]], - [[ - 13221, - 13213, - 13217 - ]], - [[ - 13214, - 13212, - 13211 - ]], - [[ - 13219, - 13209, - 13208 - ]], - [[ - 13219, - 13215, - 13218 - ]], - [[ - 13217, - 13213, - 13211 - ]], - [[ - 13218, - 13220, - 13209 - ]], - [[ - 13221, - 13216, - 13213 - ]], - [[ - 13221, - 13220, - 13216 - ]], - [[ - 13220, - 13218, - 13216 - ]], - [[ - 13209, - 13219, - 13218 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e43e94c-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 11699, - 13222, - 13223 - ]], - [[ - 11704, - 13224, - 13225 - ]], - [[ - 11707, - 13226, - 13227 - ]], - [[ - 11709, - 13228, - 13229 - ]], - [[ - 11711, - 13230, - 13231 - ]], - [[ - 11713, - 13232, - 13233 - ]], - [[ - 11716, - 13234, - 13235 - ]], - [[ - 11717, - 13236, - 13237 - ]], - [[ - 11719, - 13238, - 13239 - ]], - [[ - 13240, - 11745, - 11746 - ]], - [[ - 11747, - 11748, - 13241 - ]], - [[ - 13242, - 13243, - 13244 - ]], - [[ - 13245, - 13242, - 13244 - ]], - [[ - 13246, - 13245, - 13244 - ]], - [[ - 13247, - 13246, - 13244 - ]], - [[ - 13248, - 13247, - 13244 - ]], - [[ - 13249, - 13248, - 13250 - ]], - [[ - 13251, - 13249, - 13250 - ]], - [[ - 13248, - 13244, - 13250 - ]], - [[ - 13243, - 13252, - 13253 - ]], - [[ - 13243, - 13254, - 13244 - ]], - [[ - 13243, - 13255, - 13254 - ]], - [[ - 13243, - 13253, - 13255 - ]], - [[ - 13252, - 13256, - 13253 - ]], - [[ - 13252, - 13257, - 13256 - ]], - [[ - 13252, - 13240, - 13257 - ]], - [[ - 13257, - 13240, - 13258 - ]], - [[ - 13252, - 11737, - 13240 - ]], - [[ - 13240, - 11740, - 11741 - ]], - [[ - 11668, - 11667, - 13259 - ]], - [[ - 13260, - 13240, - 13261 - ]], - [[ - 13261, - 13240, - 13262 - ]], - [[ - 13262, - 13240, - 13263 - ]], - [[ - 13263, - 13240, - 13241 - ]], - [[ - 13241, - 11748, - 13264 - ]], - [[ - 13264, - 11750, - 13265 - ]], - [[ - 13265, - 11752, - 13266 - ]], - [[ - 13266, - 11753, - 13267 - ]], - [[ - 13267, - 11755, - 13268 - ]], - [[ - 13268, - 11757, - 13269 - ]], - [[ - 13269, - 11668, - 13259 - ]], - [[ - 11751, - 11752, - 13265 - ]], - [[ - 11758, - 11668, - 13269 - ]], - [[ - 11728, - 13270, - 13271 - ]], - [[ - 11757, - 11758, - 13269 - ]], - [[ - 11729, - 13272, - 13273 - ]], - [[ - 11756, - 11757, - 13268 - ]], - [[ - 11754, - 11755, - 13267 - ]], - [[ - 13274, - 13240, - 13260 - ]], - [[ - 11731, - 13275, - 13276 - ]], - [[ - 13268, - 11755, - 11756 - ]], - [[ - 13252, - 13275, - 11732 - ]], - [[ - 13277, - 11731, - 13276 - ]], - [[ - 13277, - 13272, - 11730 - ]], - [[ - 13278, - 11729, - 13273 - ]], - [[ - 11754, - 13267, - 11753 - ]], - [[ - 13266, - 11752, - 11753 - ]], - [[ - 13278, - 13270, - 11728 - ]], - [[ - 13279, - 11727, - 13271 - ]], - [[ - 11726, - 13280, - 13281 - ]], - [[ - 13265, - 11750, - 11751 - ]], - [[ - 13279, - 13280, - 11726 - ]], - [[ - 11748, - 11749, - 13264 - ]], - [[ - 11750, - 13264, - 11749 - ]], - [[ - 13282, - 11725, - 13281 - ]], - [[ - 13282, - 13283, - 11724 - ]], - [[ - 13284, - 11724, - 13283 - ]], - [[ - 11722, - 13285, - 13286 - ]], - [[ - 13241, - 13240, - 11747 - ]], - [[ - 13284, - 13285, - 11723 - ]], - [[ - 13287, - 11722, - 13286 - ]], - [[ - 11746, - 11747, - 13240 - ]], - [[ - 13288, - 11721, - 13287 - ]], - [[ - 11720, - 13289, - 13238 - ]], - [[ - 11745, - 13240, - 11744 - ]], - [[ - 13288, - 13289, - 11720 - ]], - [[ - 13240, - 11742, - 11743 - ]], - [[ - 11743, - 11744, - 13240 - ]], - [[ - 13290, - 11719, - 13239 - ]], - [[ - 11718, - 13291, - 13236 - ]], - [[ - 11742, - 13240, - 11741 - ]], - [[ - 13290, - 13291, - 11718 - ]], - [[ - 11738, - 11739, - 13240 - ]], - [[ - 11740, - 13240, - 11739 - ]], - [[ - 13292, - 11717, - 13237 - ]], - [[ - 11715, - 13293, - 13234 - ]], - [[ - 13240, - 11737, - 11738 - ]], - [[ - 13292, - 13293, - 11715 - ]], - [[ - 11735, - 11736, - 13252 - ]], - [[ - 11737, - 13252, - 11736 - ]], - [[ - 13294, - 11716, - 13235 - ]], - [[ - 11714, - 13295, - 13232 - ]], - [[ - 13252, - 11734, - 11735 - ]], - [[ - 13294, - 13295, - 11714 - ]], - [[ - 11732, - 11733, - 13252 - ]], - [[ - 11734, - 13252, - 11733 - ]], - [[ - 13296, - 11713, - 13233 - ]], - [[ - 13296, - 13297, - 11712 - ]], - [[ - 13275, - 11731, - 11732 - ]], - [[ - 13297, - 13230, - 11712 - ]], - [[ - 11729, - 11730, - 13272 - ]], - [[ - 11731, - 13277, - 11730 - ]], - [[ - 13298, - 11711, - 13231 - ]], - [[ - 13298, - 13299, - 11710 - ]], - [[ - 13278, - 11728, - 11729 - ]], - [[ - 13299, - 13228, - 11710 - ]], - [[ - 11726, - 11727, - 13279 - ]], - [[ - 11728, - 13271, - 11727 - ]], - [[ - 13300, - 11708, - 13229 - ]], - [[ - 13300, - 13301, - 11708 - ]], - [[ - 13281, - 11725, - 11726 - ]], - [[ - 13301, - 13226, - 11707 - ]], - [[ - 11723, - 11724, - 13284 - ]], - [[ - 11725, - 13282, - 11724 - ]], - [[ - 13302, - 11706, - 13227 - ]], - [[ - 13302, - 13303, - 11705 - ]], - [[ - 13285, - 11722, - 11723 - ]], - [[ - 13303, - 13224, - 11705 - ]], - [[ - 11720, - 11721, - 13288 - ]], - [[ - 11722, - 13287, - 11721 - ]], - [[ - 13304, - 11703, - 13225 - ]], - [[ - 11702, - 13305, - 13306 - ]], - [[ - 13238, - 11719, - 11720 - ]], - [[ - 13304, - 13305, - 11703 - ]], - [[ - 11717, - 11718, - 13236 - ]], - [[ - 11719, - 13290, - 11718 - ]], - [[ - 13307, - 11701, - 13306 - ]], - [[ - 13307, - 13308, - 11700 - ]], - [[ - 13292, - 11715, - 11717 - ]], - [[ - 13308, - 13222, - 11700 - ]], - [[ - 11714, - 11716, - 13294 - ]], - [[ - 11715, - 13234, - 11716 - ]], - [[ - 13309, - 11698, - 13223 - ]], - [[ - 13232, - 11713, - 11714 - ]], - [[ - 11696, - 13310, - 13311 - ]], - [[ - 13296, - 11712, - 11713 - ]], - [[ - 13309, - 13310, - 11697 - ]], - [[ - 11710, - 11711, - 13298 - ]], - [[ - 11712, - 13230, - 11711 - ]], - [[ - 13312, - 11694, - 13311 - ]], - [[ - 11691, - 13313, - 13314 - ]], - [[ - 13228, - 11709, - 11710 - ]], - [[ - 13312, - 13313, - 11693 - ]], - [[ - 11709, - 13229, - 11708 - ]], - [[ - 11706, - 11707, - 13227 - ]], - [[ - 11708, - 13301, - 11707 - ]], - [[ - 13315, - 11690, - 13314 - ]], - [[ - 13302, - 11705, - 11706 - ]], - [[ - 11687, - 13316, - 13317 - ]], - [[ - 13224, - 11704, - 11705 - ]], - [[ - 13315, - 13316, - 11688 - ]], - [[ - 11702, - 11703, - 13305 - ]], - [[ - 11704, - 13225, - 11703 - ]], - [[ - 11701, - 11702, - 13306 - ]], - [[ - 13318, - 11685, - 13317 - ]], - [[ - 13307, - 11700, - 11701 - ]], - [[ - 13222, - 11699, - 11700 - ]], - [[ - 13318, - 13319, - 11683 - ]], - [[ - 13223, - 11698, - 11699 - ]], - [[ - 13309, - 11697, - 11698 - ]], - [[ - 13310, - 11696, - 11697 - ]], - [[ - 13311, - 11695, - 11696 - ]], - [[ - 13319, - 13320, - 11681 - ]], - [[ - 13311, - 11694, - 11695 - ]], - [[ - 13312, - 11693, - 11694 - ]], - [[ - 13313, - 11692, - 11693 - ]], - [[ - 13313, - 11691, - 11692 - ]], - [[ - 13320, - 13321, - 11679 - ]], - [[ - 13314, - 11690, - 11691 - ]], - [[ - 13315, - 11689, - 11690 - ]], - [[ - 13315, - 11688, - 11689 - ]], - [[ - 13316, - 11687, - 11688 - ]], - [[ - 13317, - 11686, - 11687 - ]], - [[ - 13321, - 13322, - 11677 - ]], - [[ - 13317, - 11685, - 11686 - ]], - [[ - 13318, - 11684, - 11685 - ]], - [[ - 13318, - 11683, - 11684 - ]], - [[ - 13319, - 11682, - 11683 - ]], - [[ - 13322, - 13323, - 11675 - ]], - [[ - 13319, - 11681, - 11682 - ]], - [[ - 13320, - 11680, - 11681 - ]], - [[ - 13320, - 11679, - 11680 - ]], - [[ - 13321, - 11678, - 11679 - ]], - [[ - 13323, - 13324, - 11673 - ]], - [[ - 13321, - 11677, - 11678 - ]], - [[ - 13322, - 11676, - 11677 - ]], - [[ - 13322, - 11675, - 11676 - ]], - [[ - 13323, - 11674, - 11675 - ]], - [[ - 13324, - 13325, - 11671 - ]], - [[ - 13323, - 11673, - 11674 - ]], - [[ - 13324, - 11672, - 11673 - ]], - [[ - 13324, - 11671, - 11672 - ]], - [[ - 13325, - 11670, - 11671 - ]], - [[ - 13325, - 13259, - 11669 - ]], - [[ - 13325, - 11669, - 11670 - ]], - [[ - 13259, - 11667, - 11669 - ]], - [[ - 13326, - 13240, - 13274 - ]], - [[ - 13326, - 13258, - 13240 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e44d366-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1a849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3117, - 1779, - 11660 - ]], - [[ - 13327, - 13328, - 13329 - ]], - [[ - 13330, - 13331, - 13332 - ]], - [[ - 13331, - 13333, - 13332 - ]], - [[ - 13334, - 13335, - 13336 - ]], - [[ - 13337, - 1369, - 1619 - ]], - [[ - 13338, - 13339, - 13340 - ]], - [[ - 13341, - 13342, - 13343 - ]], - [[ - 13344, - 13345, - 13346 - ]], - [[ - 13347, - 1778, - 7803 - ]], - [[ - 13348, - 13349, - 13350 - ]], - [[ - 13351, - 13350, - 13352 - ]], - [[ - 13353, - 7803, - 11610 - ]], - [[ - 3148, - 3149, - 1779 - ]], - [[ - 3157, - 3148, - 1779 - ]], - [[ - 3147, - 3124, - 3148 - ]], - [[ - 3151, - 3147, - 3148 - ]], - [[ - 3144, - 3146, - 3147 - ]], - [[ - 3142, - 3144, - 3147 - ]], - [[ - 3136, - 3142, - 3147 - ]], - [[ - 3138, - 3140, - 3142 - ]], - [[ - 3136, - 3138, - 3142 - ]], - [[ - 3151, - 3136, - 3147 - ]], - [[ - 3131, - 3151, - 3148 - ]], - [[ - 3131, - 3132, - 3151 - ]], - [[ - 3131, - 3133, - 3132 - ]], - [[ - 3157, - 3131, - 3148 - ]], - [[ - 3157, - 3129, - 3131 - ]], - [[ - 3157, - 3126, - 3129 - ]], - [[ - 3157, - 3127, - 3126 - ]], - [[ - 3157, - 3155, - 3127 - ]], - [[ - 3116, - 3157, - 1779 - ]], - [[ - 3116, - 3119, - 3157 - ]], - [[ - 3116, - 3120, - 3119 - ]], - [[ - 3116, - 3118, - 3120 - ]], - [[ - 3117, - 3116, - 1779 - ]], - [[ - 1778, - 11660, - 1779 - ]], - [[ - 13354, - 13355, - 13356 - ]], - [[ - 13357, - 13358, - 13359 - ]], - [[ - 13360, - 13361, - 11660 - ]], - [[ - 13362, - 13356, - 7803 - ]], - [[ - 13363, - 13364, - 13365 - ]], - [[ - 13366, - 13367, - 13368 - ]], - [[ - 13369, - 13370, - 13371 - ]], - [[ - 13372, - 13373, - 13374 - ]], - [[ - 13347, - 13359, - 1778 - ]], - [[ - 13375, - 13376, - 13377 - ]], - [[ - 13378, - 13379, - 13380 - ]], - [[ - 13381, - 13359, - 13347 - ]], - [[ - 13382, - 13347, - 7803 - ]], - [[ - 13383, - 13384, - 13385 - ]], - [[ - 13386, - 13387, - 13388 - ]], - [[ - 13389, - 13390, - 13382 - ]], - [[ - 13391, - 13392, - 13393 - ]], - [[ - 13394, - 13395, - 13396 - ]], - [[ - 13397, - 13398, - 13399 - ]], - [[ - 13400, - 13359, - 13381 - ]], - [[ - 13401, - 13402, - 13379 - ]], - [[ - 13385, - 13392, - 13403 - ]], - [[ - 13404, - 13379, - 13378 - ]], - [[ - 13402, - 13380, - 13379 - ]], - [[ - 13405, - 13378, - 13380 - ]], - [[ - 13406, - 13407, - 13408 - ]], - [[ - 13392, - 13391, - 13409 - ]], - [[ - 13410, - 13411, - 13412 - ]], - [[ - 13413, - 13414, - 13415 - ]], - [[ - 13416, - 13372, - 13374 - ]], - [[ - 13417, - 13386, - 13388 - ]], - [[ - 13418, - 13419, - 13420 - ]], - [[ - 13421, - 13422, - 13423 - ]], - [[ - 13394, - 13424, - 13375 - ]], - [[ - 13425, - 13383, - 13426 - ]], - [[ - 13427, - 13428, - 13429 - ]], - [[ - 13388, - 13387, - 13380 - ]], - [[ - 13430, - 13431, - 13432 - ]], - [[ - 13433, - 13434, - 13435 - ]], - [[ - 13436, - 13437, - 13438 - ]], - [[ - 13439, - 13440, - 13441 - ]], - [[ - 13442, - 13404, - 13378 - ]], - [[ - 13383, - 13403, - 13426 - ]], - [[ - 13388, - 13380, - 13443 - ]], - [[ - 13374, - 13431, - 13405 - ]], - [[ - 13444, - 13445, - 13401 - ]], - [[ - 13426, - 13403, - 13423 - ]], - [[ - 13383, - 13385, - 13403 - ]], - [[ - 13446, - 13384, - 13425 - ]], - [[ - 13412, - 13446, - 13425 - ]], - [[ - 13402, - 13443, - 13380 - ]], - [[ - 13447, - 13424, - 13448 - ]], - [[ - 13449, - 13333, - 13331 - ]], - [[ - 13450, - 13451, - 13452 - ]], - [[ - 13453, - 13454, - 13455 - ]], - [[ - 13456, - 13445, - 13444 - ]], - [[ - 13457, - 13458, - 13459 - ]], - [[ - 13460, - 13461, - 13462 - ]], - [[ - 13463, - 13457, - 13459 - ]], - [[ - 13385, - 13393, - 13392 - ]], - [[ - 13464, - 13465, - 13466 - ]], - [[ - 13417, - 13388, - 13443 - ]], - [[ - 13467, - 13468, - 13469 - ]], - [[ - 13374, - 13405, - 13416 - ]], - [[ - 13470, - 13471, - 13391 - ]], - [[ - 13391, - 13393, - 13470 - ]], - [[ - 13425, - 13384, - 13383 - ]], - [[ - 13472, - 13473, - 13474 - ]], - [[ - 13475, - 13476, - 13477 - ]], - [[ - 13333, - 13478, - 13332 - ]], - [[ - 13479, - 13480, - 13481 - ]], - [[ - 13409, - 13423, - 13403 - ]], - [[ - 13387, - 13386, - 13481 - ]], - [[ - 13387, - 13405, - 13380 - ]], - [[ - 13463, - 13408, - 13457 - ]], - [[ - 13409, - 13395, - 13423 - ]], - [[ - 13446, - 13482, - 13384 - ]], - [[ - 13389, - 13473, - 13429 - ]], - [[ - 13390, - 13389, - 13428 - ]], - [[ - 13390, - 13397, - 13382 - ]], - [[ - 13483, - 13468, - 13467 - ]], - [[ - 13484, - 13485, - 13486 - ]], - [[ - 13458, - 13487, - 13459 - ]], - [[ - 13407, - 13471, - 13470 - ]], - [[ - 13450, - 13452, - 13488 - ]], - [[ - 13489, - 13490, - 13478 - ]], - [[ - 13411, - 13398, - 13412 - ]], - [[ - 13421, - 13423, - 13395 - ]], - [[ - 13397, - 13446, - 13398 - ]], - [[ - 13482, - 13428, - 13427 - ]], - [[ - 13491, - 13449, - 13331 - ]], - [[ - 13491, - 12553, - 13490 - ]], - [[ - 13449, - 13489, - 13333 - ]], - [[ - 13490, - 12553, - 13478 - ]], - [[ - 13345, - 13492, - 13493 - ]], - [[ - 13494, - 13495, - 13496 - ]], - [[ - 13347, - 13399, - 13381 - ]], - [[ - 13347, - 13397, - 13399 - ]], - [[ - 13417, - 13497, - 13498 - ]], - [[ - 13480, - 13463, - 13387 - ]], - [[ - 13457, - 13408, - 13407 - ]], - [[ - 13480, - 13499, - 13408 - ]], - [[ - 13407, - 13406, - 13471 - ]], - [[ - 13406, - 13396, - 13395 - ]], - [[ - 13500, - 13330, - 13478 - ]], - [[ - 10000, - 12553, - 13491 - ]], - [[ - 13482, - 13390, - 13428 - ]], - [[ - 13397, - 13347, - 13382 - ]], - [[ - 13391, - 13406, - 13501 - ]], - [[ - 13408, - 13396, - 13406 - ]], - [[ - 13502, - 13503, - 13440 - ]], - [[ - 13504, - 13505, - 13394 - ]], - [[ - 13446, - 13412, - 13398 - ]], - [[ - 13419, - 13506, - 13507 - ]], - [[ - 13508, - 13509, - 13510 - ]], - [[ - 13511, - 13512, - 13513 - ]], - [[ - 13508, - 13514, - 13509 - ]], - [[ - 13515, - 13516, - 13517 - ]], - [[ - 13345, - 13518, - 13492 - ]], - [[ - 13510, - 13509, - 13519 - ]], - [[ - 13415, - 13520, - 13521 - ]], - [[ - 13522, - 13523, - 13524 - ]], - [[ - 13525, - 13521, - 13520 - ]], - [[ - 13353, - 13526, - 13527 - ]], - [[ - 13415, - 13521, - 13528 - ]], - [[ - 13513, - 13512, - 13515 - ]], - [[ - 13489, - 13478, - 13333 - ]], - [[ - 13529, - 13530, - 13531 - ]], - [[ - 13479, - 13417, - 13498 - ]], - [[ - 13504, - 13394, - 13396 - ]], - [[ - 13374, - 13373, - 13431 - ]], - [[ - 13469, - 13454, - 13373 - ]], - [[ - 13532, - 13523, - 13522 - ]], - [[ - 13355, - 13354, - 13533 - ]], - [[ - 13399, - 13411, - 13534 - ]], - [[ - 13535, - 13357, - 13359 - ]], - [[ - 13536, - 13537, - 13538 - ]], - [[ - 13539, - 13461, - 13540 - ]], - [[ - 13400, - 13535, - 13359 - ]], - [[ - 13541, - 13542, - 13360 - ]], - [[ - 13543, - 13454, - 13469 - ]], - [[ - 13455, - 13369, - 13453 - ]], - [[ - 13544, - 13545, - 13455 - ]], - [[ - 13545, - 13370, - 13369 - ]], - [[ - 13397, - 13482, - 13446 - ]], - [[ - 13397, - 13390, - 13482 - ]], - [[ - 13479, - 13499, - 13480 - ]], - [[ - 13396, - 13408, - 13499 - ]], - [[ - 13417, - 13479, - 13481 - ]], - [[ - 13497, - 13503, - 13546 - ]], - [[ - 13547, - 13495, - 13548 - ]], - [[ - 13549, - 13512, - 13511 - ]], - [[ - 13550, - 13346, - 13348 - ]], - [[ - 13494, - 13551, - 13548 - ]], - [[ - 13552, - 13440, - 13553 - ]], - [[ - 13554, - 13555, - 13556 - ]], - [[ - 13474, - 13465, - 13472 - ]], - [[ - 13557, - 13354, - 13362 - ]], - [[ - 7803, - 13355, - 13473 - ]], - [[ - 7803, - 13356, - 13355 - ]], - [[ - 13472, - 13429, - 13473 - ]], - [[ - 13428, - 13389, - 13429 - ]], - [[ - 13385, - 13427, - 13558 - ]], - [[ - 13384, - 13482, - 13427 - ]], - [[ - 13427, - 13472, - 13558 - ]], - [[ - 13427, - 13429, - 13472 - ]], - [[ - 13559, - 13539, - 13437 - ]], - [[ - 13353, - 13527, - 7803 - ]], - [[ - 13414, - 13560, - 13415 - ]], - [[ - 13523, - 13561, - 13513 - ]], - [[ - 13515, - 13562, - 13523 - ]], - [[ - 13563, - 13371, - 13370 - ]], - [[ - 13536, - 13538, - 13353 - ]], - [[ - 13438, - 13564, - 13527 - ]], - [[ - 13536, - 13353, - 11610 - ]], - [[ - 13538, - 13537, - 13565 - ]], - [[ - 13350, - 13349, - 11610 - ]], - [[ - 13348, - 13566, - 13567 - ]], - [[ - 13406, - 13395, - 13501 - ]], - [[ - 13568, - 13424, - 11660 - ]], - [[ - 13392, - 13409, - 13403 - ]], - [[ - 13501, - 13395, - 13409 - ]], - [[ - 13569, - 13570, - 13571 - ]], - [[ - 13572, - 13363, - 13548 - ]], - [[ - 13573, - 13574, - 13570 - ]], - [[ - 13435, - 13553, - 13433 - ]], - [[ - 13518, - 13569, - 13551 - ]], - [[ - 13571, - 13364, - 13363 - ]], - [[ - 13575, - 13510, - 13549 - ]], - [[ - 13519, - 13439, - 13516 - ]], - [[ - 13511, - 13576, - 13577 - ]], - [[ - 13510, - 13575, - 13578 - ]], - [[ - 13579, - 13496, - 13495 - ]], - [[ - 13551, - 13572, - 13548 - ]], - [[ - 13535, - 13534, - 13580 - ]], - [[ - 13399, - 13398, - 13411 - ]], - [[ - 13387, - 13463, - 13416 - ]], - [[ - 13480, - 13408, - 13463 - ]], - [[ - 13480, - 13387, - 13481 - ]], - [[ - 13416, - 13405, - 13387 - ]], - [[ - 13581, - 13582, - 1375 - ]], - [[ - 13583, - 13584, - 13582 - ]], - [[ - 13563, - 13524, - 13562 - ]], - [[ - 13561, - 13521, - 13576 - ]], - [[ - 13522, - 13524, - 13462 - ]], - [[ - 13523, - 13562, - 13524 - ]], - [[ - 13460, - 13545, - 13544 - ]], - [[ - 13462, - 13370, - 13545 - ]], - [[ - 13459, - 13372, - 13416 - ]], - [[ - 13469, - 13373, - 13372 - ]], - [[ - 13549, - 13519, - 13512 - ]], - [[ - 13516, - 13441, - 13517 - ]], - [[ - 13577, - 13575, - 13549 - ]], - [[ - 13434, - 13585, - 13435 - ]], - [[ - 13522, - 13462, - 13461 - ]], - [[ - 13524, - 13370, - 13462 - ]], - [[ - 13362, - 13354, - 13356 - ]], - [[ - 13485, - 13469, - 13468 - ]], - [[ - 13586, - 13533, - 13486 - ]], - [[ - 13465, - 13587, - 13533 - ]], - [[ - 13365, - 13588, - 13435 - ]], - [[ - 13553, - 13440, - 13514 - ]], - [[ - 13589, - 13590, - 13552 - ]], - [[ - 13585, - 13365, - 13435 - ]], - [[ - 13578, - 13434, - 13433 - ]], - [[ - 13514, - 13440, - 13509 - ]], - [[ - 13435, - 13588, - 13553 - ]], - [[ - 13590, - 13502, - 13552 - ]], - [[ - 13571, - 13591, - 13364 - ]], - [[ - 13592, - 13502, - 13590 - ]], - [[ - 13537, - 13593, - 13414 - ]], - [[ - 13594, - 13496, - 13579 - ]], - [[ - 13595, - 13564, - 13438 - ]], - [[ - 13543, - 13544, - 13455 - ]], - [[ - 13540, - 13595, - 13437 - ]], - [[ - 13460, - 13462, - 13545 - ]], - [[ - 13596, - 13597, - 13598 - ]], - [[ - 1369, - 13599, - 13597 - ]], - [[ - 13518, - 13551, - 13492 - ]], - [[ - 13492, - 13600, - 13493 - ]], - [[ - 13594, - 13566, - 13600 - ]], - [[ - 13600, - 13492, - 13494 - ]], - [[ - 13525, - 13601, - 13576 - ]], - [[ - 13520, - 13560, - 13567 - ]], - [[ - 13434, - 13548, - 13585 - ]], - [[ - 13572, - 13571, - 13363 - ]], - [[ - 13602, - 13603, - 13604 - ]], - [[ - 13346, - 13566, - 13348 - ]], - [[ - 13329, - 13328, - 13605 - ]], - [[ - 13491, - 13331, - 13330 - ]], - [[ - 13606, - 13599, - 1369 - ]], - [[ - 13607, - 13606, - 13608 - ]], - [[ - 13609, - 13574, - 13573 - ]], - [[ - 13574, - 13610, - 13570 - ]], - [[ - 13611, - 13609, - 13573 - ]], - [[ - 13610, - 13502, - 13592 - ]], - [[ - 13432, - 13456, - 13442 - ]], - [[ - 13401, - 13379, - 13404 - ]], - [[ - 13405, - 13430, - 13378 - ]], - [[ - 13444, - 13401, - 13404 - ]], - [[ - 13378, - 13430, - 13442 - ]], - [[ - 13405, - 13431, - 13430 - ]], - [[ - 13369, - 13371, - 13456 - ]], - [[ - 13371, - 13563, - 13556 - ]], - [[ - 13442, - 13456, - 13444 - ]], - [[ - 13371, - 13556, - 13456 - ]], - [[ - 13351, - 13550, - 13350 - ]], - [[ - 13346, - 13493, - 13566 - ]], - [[ - 11657, - 13502, - 3106 - ]], - [[ - 13503, - 13401, - 13440 - ]], - [[ - 13351, - 13344, - 13550 - ]], - [[ - 13345, - 13493, - 13346 - ]], - [[ - 13606, - 13607, - 13599 - ]], - [[ - 13612, - 13613, - 12558 - ]], - [[ - 13614, - 13615, - 13584 - ]], - [[ - 13584, - 1375, - 13582 - ]], - [[ - 13450, - 13477, - 13616 - ]], - [[ - 13477, - 13491, - 13330 - ]], - [[ - 13617, - 13609, - 13618 - ]], - [[ - 13573, - 13570, - 13619 - ]], - [[ - 13507, - 13506, - 13360 - ]], - [[ - 13620, - 13410, - 13412 - ]], - [[ - 13565, - 13537, - 13414 - ]], - [[ - 13349, - 13348, - 13567 - ]], - [[ - 13600, - 13494, - 13496 - ]], - [[ - 13492, - 13551, - 13494 - ]], - [[ - 13355, - 13587, - 13473 - ]], - [[ - 13587, - 13465, - 13474 - ]], - [[ - 13449, - 13490, - 13489 - ]], - [[ - 13449, - 13491, - 13490 - ]], - [[ - 13583, - 13614, - 13584 - ]], - [[ - 13615, - 13621, - 13622 - ]], - [[ - 13334, - 12558, - 13335 - ]], - [[ - 13623, - 13624, - 13337 - ]], - [[ - 13575, - 13625, - 13578 - ]], - [[ - 13548, - 13363, - 13585 - ]], - [[ - 13402, - 13503, - 13443 - ]], - [[ - 13402, - 13401, - 13503 - ]], - [[ - 13626, - 13468, - 13483 - ]], - [[ - 13627, - 13393, - 13558 - ]], - [[ - 13610, - 13592, - 13591 - ]], - [[ - 13610, - 13628, - 13502 - ]], - [[ - 13629, - 13500, - 13451 - ]], - [[ - 13476, - 13475, - 13328 - ]], - [[ - 13468, - 13626, - 13586 - ]], - [[ - 13465, - 13533, - 13466 - ]], - [[ - 13473, - 13587, - 13474 - ]], - [[ - 13355, - 13533, - 13587 - ]], - [[ - 13463, - 13459, - 13416 - ]], - [[ - 13464, - 13558, - 13472 - ]], - [[ - 13372, - 13467, - 13469 - ]], - [[ - 13626, - 13464, - 13466 - ]], - [[ - 13459, - 13467, - 13372 - ]], - [[ - 13459, - 13487, - 13483 - ]], - [[ - 13630, - 13564, - 13595 - ]], - [[ - 13455, - 13454, - 13543 - ]], - [[ - 13469, - 13485, - 13543 - ]], - [[ - 13533, - 13354, - 13486 - ]], - [[ - 13484, - 13631, - 13630 - ]], - [[ - 13632, - 13564, - 13630 - ]], - [[ - 13485, - 13484, - 13543 - ]], - [[ - 13633, - 13595, - 13461 - ]], - [[ - 13436, - 13438, - 13526 - ]], - [[ - 13437, - 13595, - 13438 - ]], - [[ - 1778, - 13360, - 11660 - ]], - [[ - 13361, - 13634, - 13635 - ]], - [[ - 13636, - 13419, - 13418 - ]], - [[ - 13448, - 13394, - 11657 - ]], - [[ - 10000, - 13637, - 1374 - ]], - [[ - 13476, - 13491, - 13477 - ]], - [[ - 13638, - 13619, - 13603 - ]], - [[ - 13604, - 13569, - 13518 - ]], - [[ - 13576, - 13511, - 13561 - ]], - [[ - 13576, - 13639, - 13577 - ]], - [[ - 13640, - 13628, - 13610 - ]], - [[ - 3106, - 13502, - 13628 - ]], - [[ - 13538, - 13436, - 13353 - ]], - [[ - 13436, - 13559, - 13437 - ]], - [[ - 13641, - 13642, - 13643 - ]], - [[ - 13608, - 13612, - 13598 - ]], - [[ - 13644, - 13641, - 13623 - ]], - [[ - 13608, - 13613, - 13612 - ]], - [[ - 13554, - 13556, - 13562 - ]], - [[ - 13445, - 13456, - 13556 - ]], - [[ - 13436, - 13565, - 13559 - ]], - [[ - 13413, - 13528, - 13532 - ]], - [[ - 3106, - 13645, - 3107 - ]], - [[ - 13645, - 13574, - 13609 - ]], - [[ - 13508, - 13433, - 13646 - ]], - [[ - 13508, - 13510, - 13578 - ]], - [[ - 13596, - 13598, - 13612 - ]], - [[ - 13598, - 13599, - 13607 - ]], - [[ - 13647, - 13648, - 13649 - ]], - [[ - 13650, - 13651, - 13343 - ]], - [[ - 13596, - 13652, - 13648 - ]], - [[ - 13651, - 13653, - 12558 - ]], - [[ - 13654, - 13655, - 13656 - ]], - [[ - 13657, - 13658, - 13659 - ]], - [[ - 13539, - 13540, - 13437 - ]], - [[ - 13461, - 13595, - 13540 - ]], - [[ - 13401, - 13441, - 13440 - ]], - [[ - 13555, - 13445, - 13556 - ]], - [[ - 13515, - 13517, - 13562 - ]], - [[ - 13517, - 13555, - 13554 - ]], - [[ - 13660, - 13335, - 13661 - ]], - [[ - 13624, - 13660, - 13661 - ]], - [[ - 13422, - 13426, - 13423 - ]], - [[ - 13421, - 13395, - 13377 - ]], - [[ - 13506, - 13634, - 13361 - ]], - [[ - 13506, - 13419, - 13634 - ]], - [[ - 13478, - 13330, - 13332 - ]], - [[ - 13616, - 13477, - 13330 - ]], - [[ - 13647, - 13656, - 13352 - ]], - [[ - 13654, - 13649, - 13662 - ]], - [[ - 13656, - 13338, - 13663 - ]], - [[ - 13656, - 13655, - 13339 - ]], - [[ - 13664, - 13581, - 13665 - ]], - [[ - 13666, - 1374, - 13637 - ]], - [[ - 13593, - 13560, - 13414 - ]], - [[ - 13593, - 13567, - 13560 - ]], - [[ - 13406, - 13391, - 13471 - ]], - [[ - 13501, - 13409, - 13391 - ]], - [[ - 13521, - 13525, - 13576 - ]], - [[ - 13520, - 13601, - 13525 - ]], - [[ - 11657, - 13503, - 13502 - ]], - [[ - 11657, - 13505, - 13503 - ]], - [[ - 13569, - 13571, - 13572 - ]], - [[ - 13570, - 13591, - 13571 - ]], - [[ - 13427, - 13385, - 13384 - ]], - [[ - 13558, - 13393, - 13385 - ]], - [[ - 13667, - 13596, - 13612 - ]], - [[ - 13597, - 13599, - 13598 - ]], - [[ - 13569, - 13619, - 13570 - ]], - [[ - 13611, - 13573, - 13619 - ]], - [[ - 13523, - 13513, - 13515 - ]], - [[ - 13523, - 13532, - 13561 - ]], - [[ - 13645, - 13640, - 13574 - ]], - [[ - 3106, - 13628, - 13640 - ]], - [[ - 13361, - 13635, - 13376 - ]], - [[ - 13635, - 13419, - 13636 - ]], - [[ - 13668, - 13669, - 13352 - ]], - [[ - 13367, - 3107, - 13368 - ]], - [[ - 13656, - 13663, - 13668 - ]], - [[ - 13670, - 3107, - 13367 - ]], - [[ - 13484, - 13630, - 13544 - ]], - [[ - 13631, - 13632, - 13630 - ]], - [[ - 13671, - 13335, - 13660 - ]], - [[ - 12558, - 13661, - 13335 - ]], - [[ - 13512, - 13516, - 13515 - ]], - [[ - 13439, - 13441, - 13516 - ]], - [[ - 13630, - 13633, - 13544 - ]], - [[ - 13630, - 13595, - 13633 - ]], - [[ - 13633, - 13460, - 13544 - ]], - [[ - 13633, - 13461, - 13460 - ]], - [[ - 13341, - 13672, - 13342 - ]], - [[ - 13648, - 13650, - 13343 - ]], - [[ - 13625, - 13547, - 13434 - ]], - [[ - 13495, - 13494, - 13548 - ]], - [[ - 13360, - 13542, - 13507 - ]], - [[ - 13542, - 13420, - 13507 - ]], - [[ - 13580, - 13542, - 13541 - ]], - [[ - 13580, - 13420, - 13542 - ]], - [[ - 13357, - 13541, - 13358 - ]], - [[ - 13357, - 13535, - 13541 - ]], - [[ - 13345, - 13344, - 13604 - ]], - [[ - 13604, - 13344, - 13602 - ]], - [[ - 13673, - 13360, - 1778 - ]], - [[ - 13506, - 13361, - 13360 - ]], - [[ - 13363, - 13365, - 13585 - ]], - [[ - 13589, - 13591, - 13590 - ]], - [[ - 13373, - 13453, - 13431 - ]], - [[ - 13455, - 13545, - 13369 - ]], - [[ - 13431, - 13453, - 13369 - ]], - [[ - 13373, - 13454, - 13453 - ]], - [[ - 13407, - 13458, - 13457 - ]], - [[ - 13407, - 13487, - 13458 - ]], - [[ - 13450, - 13622, - 13477 - ]], - [[ - 13488, - 13674, - 13615 - ]], - [[ - 13615, - 13622, - 13488 - ]], - [[ - 13622, - 13621, - 13477 - ]], - [[ - 13669, - 13367, - 13366 - ]], - [[ - 13638, - 13611, - 13619 - ]], - [[ - 13570, - 13610, - 13591 - ]], - [[ - 13574, - 13640, - 13610 - ]], - [[ - 13649, - 13342, - 13672 - ]], - [[ - 13648, - 13343, - 13342 - ]], - [[ - 13459, - 13483, - 13467 - ]], - [[ - 13487, - 13407, - 13470 - ]], - [[ - 13627, - 13464, - 13626 - ]], - [[ - 13466, - 13586, - 13626 - ]], - [[ - 13594, - 13600, - 13496 - ]], - [[ - 13566, - 13493, - 13600 - ]], - [[ - 13601, - 13639, - 13576 - ]], - [[ - 13601, - 13594, - 13579 - ]], - [[ - 13401, - 13555, - 13441 - ]], - [[ - 13401, - 13445, - 13555 - ]], - [[ - 13538, - 13565, - 13436 - ]], - [[ - 13414, - 13413, - 13559 - ]], - [[ - 13618, - 13609, - 13611 - ]], - [[ - 13617, - 13645, - 13609 - ]], - [[ - 13586, - 13486, - 13485 - ]], - [[ - 13354, - 13557, - 13486 - ]], - [[ - 13359, - 13358, - 1778 - ]], - [[ - 13541, - 13360, - 13673 - ]], - [[ - 1619, - 13584, - 13674 - ]], - [[ - 1619, - 1375, - 13584 - ]], - [[ - 13656, - 13668, - 13352 - ]], - [[ - 13663, - 13669, - 13668 - ]], - [[ - 13337, - 13675, - 1369 - ]], - [[ - 13613, - 13661, - 12558 - ]], - [[ - 13473, - 13382, - 7803 - ]], - [[ - 13473, - 13389, - 13382 - ]], - [[ - 13584, - 13615, - 13674 - ]], - [[ - 13621, - 13475, - 13477 - ]], - [[ - 13556, - 13563, - 13562 - ]], - [[ - 13370, - 13524, - 13563 - ]], - [[ - 13676, - 13660, - 13624 - ]], - [[ - 13676, - 13671, - 13660 - ]], - [[ - 13512, - 13519, - 13516 - ]], - [[ - 13509, - 13440, - 13439 - ]], - [[ - 13510, - 13519, - 13549 - ]], - [[ - 13509, - 13439, - 13519 - ]], - [[ - 13622, - 13450, - 13488 - ]], - [[ - 13616, - 13629, - 13450 - ]], - [[ - 3107, - 13645, - 13617 - ]], - [[ - 3106, - 13640, - 13645 - ]], - [[ - 13539, - 13522, - 13461 - ]], - [[ - 13539, - 13413, - 13522 - ]], - [[ - 13646, - 13514, - 13508 - ]], - [[ - 13553, - 13588, - 13552 - ]], - [[ - 13646, - 13553, - 13514 - ]], - [[ - 13646, - 13433, - 13553 - ]], - [[ - 13677, - 13530, - 13678 - ]], - [[ - 13334, - 13679, - 12558 - ]], - [[ - 13537, - 13349, - 13593 - ]], - [[ - 13350, - 13550, - 13348 - ]], - [[ - 13452, - 13451, - 13500 - ]], - [[ - 13629, - 13330, - 13500 - ]], - [[ - 13674, - 13452, - 1619 - ]], - [[ - 13674, - 13488, - 13452 - ]], - [[ - 13543, - 13484, - 13544 - ]], - [[ - 13486, - 13631, - 13484 - ]], - [[ - 13413, - 13415, - 13528 - ]], - [[ - 13560, - 13520, - 13415 - ]], - [[ - 13670, - 13338, - 13340 - ]], - [[ - 13338, - 13656, - 13339 - ]], - [[ - 13468, - 13586, - 13485 - ]], - [[ - 13466, - 13533, - 13586 - ]], - [[ - 13511, - 13577, - 13549 - ]], - [[ - 13639, - 13680, - 13577 - ]], - [[ - 13656, - 13647, - 13654 - ]], - [[ - 13648, - 13342, - 13649 - ]], - [[ - 13365, - 13589, - 13552 - ]], - [[ - 13591, - 13592, - 13590 - ]], - [[ - 13364, - 13589, - 13365 - ]], - [[ - 13364, - 13591, - 13589 - ]], - [[ - 13666, - 13637, - 13476 - ]], - [[ - 10000, - 13491, - 13476 - ]], - [[ - 3107, - 13681, - 13368 - ]], - [[ - 3107, - 13617, - 13618 - ]], - [[ - 13643, - 13682, - 13336 - ]], - [[ - 13678, - 13679, - 13334 - ]], - [[ - 13669, - 13366, - 13352 - ]], - [[ - 13368, - 13681, - 13351 - ]], - [[ - 13366, - 13351, - 13352 - ]], - [[ - 13366, - 13368, - 13351 - ]], - [[ - 13550, - 13344, - 13346 - ]], - [[ - 13602, - 13683, - 13684 - ]], - [[ - 13672, - 13662, - 13649 - ]], - [[ - 13339, - 13655, - 13685 - ]], - [[ - 13678, - 13530, - 13679 - ]], - [[ - 13686, - 13478, - 13679 - ]], - [[ - 13687, - 13688, - 13529 - ]], - [[ - 13689, - 13679, - 13529 - ]], - [[ - 13687, - 13531, - 13690 - ]], - [[ - 13687, - 13529, - 13531 - ]], - [[ - 12553, - 13679, - 13478 - ]], - [[ - 12553, - 12558, - 13679 - ]], - [[ - 13534, - 13535, - 13400 - ]], - [[ - 13580, - 13541, - 13535 - ]], - [[ - 13581, - 13583, - 13582 - ]], - [[ - 13475, - 13614, - 13583 - ]], - [[ - 13691, - 13581, - 1375 - ]], - [[ - 13664, - 13475, - 13583 - ]], - [[ - 13436, - 13526, - 13353 - ]], - [[ - 13527, - 13362, - 7803 - ]], - [[ - 13438, - 13527, - 13526 - ]], - [[ - 13564, - 13632, - 13527 - ]], - [[ - 13623, - 13676, - 13624 - ]], - [[ - 13671, - 13692, - 13335 - ]], - [[ - 13623, - 13671, - 13676 - ]], - [[ - 13692, - 13336, - 13335 - ]], - [[ - 13661, - 13693, - 13624 - ]], - [[ - 13644, - 13694, - 13642 - ]], - [[ - 13361, - 13568, - 11660 - ]], - [[ - 13361, - 13376, - 13568 - ]], - [[ - 11657, - 13447, - 13448 - ]], - [[ - 13568, - 13376, - 13375 - ]], - [[ - 13568, - 13375, - 13424 - ]], - [[ - 13394, - 13505, - 11657 - ]], - [[ - 13377, - 13394, - 13375 - ]], - [[ - 13377, - 13395, - 13394 - ]], - [[ - 11649, - 13447, - 11657 - ]], - [[ - 13424, - 13394, - 13448 - ]], - [[ - 13662, - 13685, - 13654 - ]], - [[ - 13695, - 13659, - 13658 - ]], - [[ - 13614, - 13621, - 13615 - ]], - [[ - 13614, - 13475, - 13621 - ]], - [[ - 13520, - 13567, - 13594 - ]], - [[ - 13593, - 13349, - 13567 - ]], - [[ - 13520, - 13594, - 13601 - ]], - [[ - 13567, - 13566, - 13594 - ]], - [[ - 13376, - 13635, - 13377 - ]], - [[ - 13634, - 13419, - 13635 - ]], - [[ - 13531, - 13677, - 13690 - ]], - [[ - 13682, - 13642, - 13694 - ]], - [[ - 13677, - 13682, - 13694 - ]], - [[ - 13334, - 13336, - 13682 - ]], - [[ - 13596, - 13647, - 13352 - ]], - [[ - 13596, - 13648, - 13647 - ]], - [[ - 1369, - 13596, - 13352 - ]], - [[ - 1369, - 13597, - 13596 - ]], - [[ - 13653, - 13667, - 13612 - ]], - [[ - 13652, - 13596, - 13667 - ]], - [[ - 12558, - 13653, - 13612 - ]], - [[ - 12558, - 13343, - 13651 - ]], - [[ - 13653, - 13652, - 13667 - ]], - [[ - 13650, - 13648, - 13652 - ]], - [[ - 13649, - 13654, - 13647 - ]], - [[ - 13685, - 13655, - 13654 - ]], - [[ - 13365, - 13552, - 13588 - ]], - [[ - 13502, - 13440, - 13552 - ]], - [[ - 13327, - 13666, - 13328 - ]], - [[ - 13637, - 10000, - 13476 - ]], - [[ - 13328, - 13666, - 13476 - ]], - [[ - 13327, - 1374, - 13666 - ]], - [[ - 13557, - 13632, - 13631 - ]], - [[ - 13362, - 13527, - 13632 - ]], - [[ - 13681, - 13618, - 13351 - ]], - [[ - 13681, - 3107, - 13618 - ]], - [[ - 13663, - 13367, - 13669 - ]], - [[ - 13670, - 3111, - 3107 - ]], - [[ - 13663, - 13670, - 13367 - ]], - [[ - 13663, - 13338, - 13670 - ]], - [[ - 13670, - 13657, - 3111 - ]], - [[ - 13339, - 13685, - 13658 - ]], - [[ - 13695, - 13658, - 13685 - ]], - [[ - 13340, - 13339, - 13658 - ]], - [[ - 13687, - 13696, - 13688 - ]], - [[ - 1619, - 13500, - 13686 - ]], - [[ - 13690, - 13644, - 1619 - ]], - [[ - 13644, - 13623, - 13337 - ]], - [[ - 13337, - 13693, - 13613 - ]], - [[ - 13337, - 13624, - 13693 - ]], - [[ - 1619, - 13644, - 13337 - ]], - [[ - 13690, - 13694, - 13644 - ]], - [[ - 13465, - 13464, - 13472 - ]], - [[ - 13626, - 13483, - 13627 - ]], - [[ - 1374, - 13329, - 1375 - ]], - [[ - 13328, - 13475, - 13665 - ]], - [[ - 13381, - 13534, - 13400 - ]], - [[ - 13381, - 13399, - 13534 - ]], - [[ - 13464, - 13627, - 13558 - ]], - [[ - 13483, - 13487, - 13470 - ]], - [[ - 13627, - 13470, - 13393 - ]], - [[ - 13627, - 13483, - 13470 - ]], - [[ - 13652, - 13651, - 13650 - ]], - [[ - 13652, - 13653, - 13651 - ]], - [[ - 1619, - 13687, - 13690 - ]], - [[ - 1619, - 13696, - 13687 - ]], - [[ - 13577, - 13680, - 13575 - ]], - [[ - 13579, - 13495, - 13547 - ]], - [[ - 13562, - 13517, - 13554 - ]], - [[ - 13441, - 13555, - 13517 - ]], - [[ - 13632, - 13557, - 13362 - ]], - [[ - 13631, - 13486, - 13557 - ]], - [[ - 13684, - 13618, - 13638 - ]], - [[ - 13618, - 13611, - 13638 - ]], - [[ - 13683, - 13602, - 13344 - ]], - [[ - 13638, - 13603, - 13602 - ]], - [[ - 13351, - 13683, - 13344 - ]], - [[ - 13351, - 13618, - 13684 - ]], - [[ - 3111, - 13659, - 12558 - ]], - [[ - 3111, - 13657, - 13659 - ]], - [[ - 13659, - 13697, - 12558 - ]], - [[ - 13659, - 13695, - 13697 - ]], - [[ - 12558, - 13341, - 13343 - ]], - [[ - 13697, - 13662, - 13672 - ]], - [[ - 13697, - 13341, - 12558 - ]], - [[ - 13697, - 13672, - 13341 - ]], - [[ - 13662, - 13695, - 13685 - ]], - [[ - 13662, - 13697, - 13695 - ]], - [[ - 13639, - 13579, - 13680 - ]], - [[ - 13639, - 13601, - 13579 - ]], - [[ - 13696, - 13689, - 13688 - ]], - [[ - 13696, - 1619, - 13686 - ]], - [[ - 13605, - 13691, - 1375 - ]], - [[ - 13605, - 13665, - 13691 - ]], - [[ - 13507, - 13420, - 13419 - ]], - [[ - 13580, - 13534, - 13410 - ]], - [[ - 13623, - 13641, - 13671 - ]], - [[ - 13641, - 13643, - 13692 - ]], - [[ - 13671, - 13641, - 13692 - ]], - [[ - 13644, - 13642, - 13641 - ]], - [[ - 13369, - 13432, - 13431 - ]], - [[ - 13369, - 13456, - 13432 - ]], - [[ - 13414, - 13559, - 13565 - ]], - [[ - 13413, - 13539, - 13559 - ]], - [[ - 13432, - 13442, - 13430 - ]], - [[ - 13444, - 13404, - 13442 - ]], - [[ - 13386, - 13417, - 13481 - ]], - [[ - 13443, - 13503, - 13497 - ]], - [[ - 13580, - 13410, - 13420 - ]], - [[ - 13620, - 13425, - 13422 - ]], - [[ - 13420, - 13410, - 13418 - ]], - [[ - 13534, - 13411, - 13410 - ]], - [[ - 13499, - 13498, - 13396 - ]], - [[ - 13503, - 13505, - 13504 - ]], - [[ - 13690, - 13677, - 13694 - ]], - [[ - 13531, - 13530, - 13677 - ]], - [[ - 13508, - 13578, - 13433 - ]], - [[ - 13575, - 13680, - 13625 - ]], - [[ - 13689, - 13529, - 13688 - ]], - [[ - 13679, - 13530, - 13529 - ]], - [[ - 13686, - 13500, - 13478 - ]], - [[ - 1619, - 13452, - 13500 - ]], - [[ - 13682, - 13678, - 13334 - ]], - [[ - 13682, - 13677, - 13678 - ]], - [[ - 13551, - 13569, - 13572 - ]], - [[ - 13603, - 13619, - 13569 - ]], - [[ - 13578, - 13625, - 13434 - ]], - [[ - 13680, - 13579, - 13547 - ]], - [[ - 13434, - 13547, - 13548 - ]], - [[ - 13625, - 13680, - 13547 - ]], - [[ - 13569, - 13604, - 13603 - ]], - [[ - 13518, - 13345, - 13604 - ]], - [[ - 13602, - 13684, - 13638 - ]], - [[ - 13683, - 13351, - 13684 - ]], - [[ - 13536, - 13349, - 13537 - ]], - [[ - 13536, - 11610, - 13349 - ]], - [[ - 13657, - 13340, - 13658 - ]], - [[ - 13657, - 13670, - 13340 - ]], - [[ - 11660, - 13447, - 11649 - ]], - [[ - 11660, - 13424, - 13447 - ]], - [[ - 13413, - 13532, - 13522 - ]], - [[ - 13528, - 13521, - 13561 - ]], - [[ - 13513, - 13561, - 13511 - ]], - [[ - 13532, - 13528, - 13561 - ]], - [[ - 13689, - 13686, - 13679 - ]], - [[ - 13689, - 13696, - 13686 - ]], - [[ - 1375, - 13329, - 13605 - ]], - [[ - 1374, - 13327, - 13329 - ]], - [[ - 13418, - 13698, - 13636 - ]], - [[ - 13418, - 13410, - 13620 - ]], - [[ - 13620, - 13422, - 13698 - ]], - [[ - 13425, - 13426, - 13422 - ]], - [[ - 13422, - 13636, - 13698 - ]], - [[ - 13421, - 13635, - 13636 - ]], - [[ - 13418, - 13620, - 13698 - ]], - [[ - 13412, - 13425, - 13620 - ]], - [[ - 13635, - 13421, - 13377 - ]], - [[ - 13636, - 13422, - 13421 - ]], - [[ - 13546, - 13504, - 13396 - ]], - [[ - 13546, - 13503, - 13504 - ]], - [[ - 13691, - 13665, - 13581 - ]], - [[ - 13605, - 13328, - 13665 - ]], - [[ - 13581, - 13664, - 13583 - ]], - [[ - 13665, - 13475, - 13664 - ]], - [[ - 13358, - 13673, - 1778 - ]], - [[ - 13358, - 13541, - 13673 - ]], - [[ - 13498, - 13497, - 13546 - ]], - [[ - 13417, - 13443, - 13497 - ]], - [[ - 13396, - 13498, - 13546 - ]], - [[ - 13499, - 13479, - 13498 - ]], - [[ - 13692, - 13643, - 13336 - ]], - [[ - 13642, - 13682, - 13643 - ]], - [[ - 13450, - 13629, - 13451 - ]], - [[ - 13616, - 13330, - 13629 - ]], - [[ - 13675, - 13606, - 1369 - ]], - [[ - 13613, - 13693, - 13661 - ]], - [[ - 13607, - 13608, - 13598 - ]], - [[ - 13606, - 13675, - 13613 - ]], - [[ - 13606, - 13613, - 13608 - ]], - [[ - 13675, - 13337, - 13613 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e44faa0-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1af49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13699, - 13700, - 13701 - ]], - [[ - 13699, - 13701, - 13702 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e4548ff-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb7049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13703, - 9877, - 9881 - ]], - [[ - 9864, - 13704, - 13705 - ]], - [[ - 13705, - 13704, - 13703 - ]], - [[ - 9864, - 9877, - 13704 - ]], - [[ - 9865, - 13705, - 9881 - ]], - [[ - 9865, - 9864, - 13705 - ]], - [[ - 13705, - 13703, - 9881 - ]], - [[ - 13704, - 9877, - 13703 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e45490b-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13706, - 13707, - 13708 - ]], - [[ - 13709, - 13710, - 13711 - ]], - [[ - 13712, - 13710, - 13713 - ]], - [[ - 13714, - 13715, - 13716 - ]], - [[ - 13717, - 13718, - 13719 - ]], - [[ - 13720, - 13709, - 13711 - ]], - [[ - 13721, - 13722, - 13723 - ]], - [[ - 13724, - 13725, - 13726 - ]], - [[ - 13715, - 13727, - 13728 - ]], - [[ - 13729, - 13730, - 13713 - ]], - [[ - 13731, - 13732, - 13729 - ]], - [[ - 13733, - 13734, - 13706 - ]], - [[ - 13735, - 13732, - 13723 - ]], - [[ - 13732, - 13724, - 13736 - ]], - [[ - 13737, - 13731, - 13738 - ]], - [[ - 13739, - 13733, - 13706 - ]], - [[ - 13708, - 13740, - 13741 - ]], - [[ - 13723, - 13732, - 13731 - ]], - [[ - 13731, - 13729, - 13709 - ]], - [[ - 13736, - 13727, - 13713 - ]], - [[ - 13709, - 13729, - 13713 - ]], - [[ - 13729, - 13732, - 13730 - ]], - [[ - 13714, - 13716, - 13734 - ]], - [[ - 13725, - 13707, - 13716 - ]], - [[ - 13709, - 13713, - 13710 - ]], - [[ - 13734, - 13707, - 13706 - ]], - [[ - 13724, - 13726, - 13727 - ]], - [[ - 13726, - 13716, - 13728 - ]], - [[ - 13742, - 13743, - 13744 - ]], - [[ - 13713, - 13727, - 13715 - ]], - [[ - 13732, - 13736, - 13730 - ]], - [[ - 13732, - 13745, - 13724 - ]], - [[ - 13736, - 13724, - 13727 - ]], - [[ - 13746, - 13725, - 13724 - ]], - [[ - 13717, - 13719, - 13747 - ]], - [[ - 13711, - 13710, - 13719 - ]], - [[ - 13741, - 13748, - 13749 - ]], - [[ - 13738, - 13709, - 13720 - ]], - [[ - 13716, - 13715, - 13728 - ]], - [[ - 13743, - 13713, - 13715 - ]], - [[ - 13712, - 13742, - 13744 - ]], - [[ - 13713, - 13743, - 13742 - ]], - [[ - 13731, - 13750, - 13721 - ]], - [[ - 13745, - 13732, - 13735 - ]], - [[ - 13731, - 13748, - 13750 - ]], - [[ - 13751, - 13746, - 13745 - ]], - [[ - 13708, - 13741, - 13752 - ]], - [[ - 13749, - 13753, - 13754 - ]], - [[ - 13740, - 13722, - 13721 - ]], - [[ - 13722, - 13735, - 13723 - ]], - [[ - 13748, - 13741, - 13740 - ]], - [[ - 13745, - 13735, - 13722 - ]], - [[ - 13712, - 13713, - 13742 - ]], - [[ - 13730, - 13736, - 13713 - ]], - [[ - 13719, - 13720, - 13711 - ]], - [[ - 13738, - 13731, - 13709 - ]], - [[ - 13710, - 13747, - 13719 - ]], - [[ - 13744, - 13743, - 13755 - ]], - [[ - 13747, - 13734, - 13733 - ]], - [[ - 13716, - 13707, - 13734 - ]], - [[ - 13727, - 13726, - 13728 - ]], - [[ - 13725, - 13716, - 13726 - ]], - [[ - 13734, - 13747, - 13744 - ]], - [[ - 13733, - 13717, - 13747 - ]], - [[ - 13747, - 13712, - 13744 - ]], - [[ - 13747, - 13710, - 13712 - ]], - [[ - 13731, - 13721, - 13723 - ]], - [[ - 13750, - 13748, - 13740 - ]], - [[ - 13750, - 13740, - 13721 - ]], - [[ - 13708, - 13746, - 13751 - ]], - [[ - 13741, - 13754, - 13752 - ]], - [[ - 13718, - 13720, - 13719 - ]], - [[ - 13741, - 13749, - 13754 - ]], - [[ - 13748, - 13731, - 13749 - ]], - [[ - 13754, - 13739, - 13752 - ]], - [[ - 13756, - 13753, - 13757 - ]], - [[ - 13739, - 13717, - 13733 - ]], - [[ - 13739, - 13758, - 13717 - ]], - [[ - 13758, - 13718, - 13717 - ]], - [[ - 13756, - 13738, - 13720 - ]], - [[ - 13751, - 13745, - 13722 - ]], - [[ - 13746, - 13724, - 13745 - ]], - [[ - 13744, - 13755, - 13734 - ]], - [[ - 13743, - 13715, - 13755 - ]], - [[ - 13754, - 13758, - 13739 - ]], - [[ - 13754, - 13753, - 13758 - ]], - [[ - 13752, - 13706, - 13708 - ]], - [[ - 13752, - 13739, - 13706 - ]], - [[ - 13740, - 13751, - 13722 - ]], - [[ - 13740, - 13708, - 13751 - ]], - [[ - 13718, - 13756, - 13720 - ]], - [[ - 13737, - 13757, - 13731 - ]], - [[ - 13758, - 13756, - 13718 - ]], - [[ - 13758, - 13753, - 13756 - ]], - [[ - 13755, - 13714, - 13734 - ]], - [[ - 13755, - 13715, - 13714 - ]], - [[ - 13756, - 13737, - 13738 - ]], - [[ - 13757, - 13749, - 13731 - ]], - [[ - 13756, - 13757, - 13737 - ]], - [[ - 13753, - 13749, - 13757 - ]], - [[ - 13759, - 13746, - 13708 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e46330a-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef9c0f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13760, - 13761, - 13762 - ]], - [[ - 13763, - 13764, - 13765 - ]], - [[ - 13766, - 13767, - 13768 - ]], - [[ - 13768, - 13769, - 13770 - ]], - [[ - 13771, - 13772, - 13766 - ]], - [[ - 13773, - 13774, - 13775 - ]], - [[ - 13776, - 13777, - 13778 - ]], - [[ - 13762, - 13778, - 13760 - ]], - [[ - 13779, - 13780, - 13781 - ]], - [[ - 13782, - 13783, - 13761 - ]], - [[ - 13784, - 13785, - 13781 - ]], - [[ - 13786, - 13787, - 13788 - ]], - [[ - 13789, - 13790, - 13791 - ]], - [[ - 13792, - 13793, - 13794 - ]], - [[ - 13769, - 13788, - 13777 - ]], - [[ - 13795, - 13796, - 13797 - ]], - [[ - 13783, - 13770, - 13769 - ]], - [[ - 13798, - 13797, - 13799 - ]], - [[ - 13786, - 13788, - 13769 - ]], - [[ - 13787, - 13800, - 13777 - ]], - [[ - 13782, - 13801, - 13802 - ]], - [[ - 13771, - 13768, - 13770 - ]], - [[ - 13803, - 13804, - 13805 - ]], - [[ - 13772, - 13771, - 13806 - ]], - [[ - 13807, - 13789, - 13791 - ]], - [[ - 13805, - 13794, - 13793 - ]], - [[ - 13808, - 13809, - 13810 - ]], - [[ - 13798, - 13799, - 13811 - ]], - [[ - 13810, - 13809, - 13774 - ]], - [[ - 13811, - 13792, - 13812 - ]], - [[ - 13780, - 13813, - 13765 - ]], - [[ - 13814, - 13815, - 13805 - ]], - [[ - 13791, - 13816, - 13807 - ]], - [[ - 13791, - 13790, - 13816 - ]], - [[ - 13817, - 13807, - 13765 - ]], - [[ - 13816, - 13790, - 13763 - ]], - [[ - 13779, - 13815, - 13813 - ]], - [[ - 13779, - 13767, - 13766 - ]], - [[ - 13784, - 13780, - 13765 - ]], - [[ - 13784, - 13781, - 13780 - ]], - [[ - 13789, - 13817, - 13818 - ]], - [[ - 13818, - 13817, - 13813 - ]], - [[ - 13789, - 13818, - 13814 - ]], - [[ - 13813, - 13780, - 13779 - ]], - [[ - 13794, - 13805, - 13772 - ]], - [[ - 13779, - 13781, - 13786 - ]], - [[ - 13819, - 13815, - 13779 - ]], - [[ - 13818, - 13813, - 13815 - ]], - [[ - 13808, - 13804, - 13809 - ]], - [[ - 13805, - 13819, - 13772 - ]], - [[ - 13813, - 13817, - 13765 - ]], - [[ - 13789, - 13807, - 13817 - ]], - [[ - 13800, - 13796, - 13777 - ]], - [[ - 13800, - 13797, - 13796 - ]], - [[ - 13776, - 13778, - 13762 - ]], - [[ - 13777, - 13796, - 13778 - ]], - [[ - 13775, - 13774, - 13809 - ]], - [[ - 13820, - 13803, - 13811 - ]], - [[ - 13810, - 13774, - 13773 - ]], - [[ - 13809, - 13820, - 13775 - ]], - [[ - 13821, - 13799, - 13797 - ]], - [[ - 13821, - 13820, - 13799 - ]], - [[ - 13797, - 13798, - 13795 - ]], - [[ - 13799, - 13820, - 13811 - ]], - [[ - 13822, - 13795, - 13801 - ]], - [[ - 13782, - 13812, - 13770 - ]], - [[ - 13802, - 13801, - 13795 - ]], - [[ - 13760, - 13778, - 13822 - ]], - [[ - 13823, - 13822, - 13778 - ]], - [[ - 13823, - 13795, - 13822 - ]], - [[ - 13822, - 13801, - 13760 - ]], - [[ - 13795, - 13798, - 13802 - ]], - [[ - 13764, - 13821, - 13797 - ]], - [[ - 13764, - 13773, - 13821 - ]], - [[ - 13821, - 13775, - 13820 - ]], - [[ - 13821, - 13773, - 13775 - ]], - [[ - 13803, - 13805, - 13793 - ]], - [[ - 13804, - 13814, - 13805 - ]], - [[ - 13802, - 13811, - 13812 - ]], - [[ - 13820, - 13809, - 13803 - ]], - [[ - 13783, - 13776, - 13762 - ]], - [[ - 13769, - 13777, - 13776 - ]], - [[ - 13785, - 13786, - 13781 - ]], - [[ - 13785, - 13824, - 13786 - ]], - [[ - 13762, - 13761, - 13783 - ]], - [[ - 13760, - 13801, - 13761 - ]], - [[ - 13811, - 13802, - 13798 - ]], - [[ - 13812, - 13782, - 13802 - ]], - [[ - 13812, - 13792, - 13794 - ]], - [[ - 13811, - 13803, - 13792 - ]], - [[ - 13800, - 13784, - 13765 - ]], - [[ - 13800, - 13785, - 13784 - ]], - [[ - 13806, - 13771, - 13770 - ]], - [[ - 13768, - 13767, - 13769 - ]], - [[ - 13764, - 13808, - 13773 - ]], - [[ - 13808, - 13763, - 13790 - ]], - [[ - 13773, - 13808, - 13810 - ]], - [[ - 13764, - 13763, - 13808 - ]], - [[ - 13807, - 13763, - 13765 - ]], - [[ - 13807, - 13816, - 13763 - ]], - [[ - 13786, - 13824, - 13787 - ]], - [[ - 13785, - 13800, - 13824 - ]], - [[ - 13812, - 13806, - 13770 - ]], - [[ - 13772, - 13825, - 13766 - ]], - [[ - 13794, - 13806, - 13812 - ]], - [[ - 13794, - 13772, - 13806 - ]], - [[ - 13788, - 13787, - 13777 - ]], - [[ - 13824, - 13800, - 13787 - ]], - [[ - 13783, - 13782, - 13770 - ]], - [[ - 13761, - 13801, - 13782 - ]], - [[ - 13789, - 13814, - 13790 - ]], - [[ - 13818, - 13815, - 13814 - ]], - [[ - 13783, - 13769, - 13776 - ]], - [[ - 13767, - 13786, - 13769 - ]], - [[ - 13796, - 13823, - 13778 - ]], - [[ - 13796, - 13795, - 13823 - ]], - [[ - 13771, - 13766, - 13768 - ]], - [[ - 13825, - 13779, - 13766 - ]], - [[ - 13792, - 13803, - 13793 - ]], - [[ - 13804, - 13790, - 13814 - ]], - [[ - 13809, - 13804, - 13803 - ]], - [[ - 13808, - 13790, - 13804 - ]], - [[ - 13772, - 13819, - 13825 - ]], - [[ - 13805, - 13815, - 13819 - ]], - [[ - 13767, - 13779, - 13786 - ]], - [[ - 13825, - 13819, - 13779 - ]], - [[ - 13800, - 13826, - 13797 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e47e113-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef9c0e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13827, - 13828, - 13829 - ]], - [[ - 13830, - 13831, - 13832 - ]], - [[ - 13833, - 13834, - 13835 - ]], - [[ - 13836, - 13837, - 13838 - ]], - [[ - 13839, - 13840, - 13841 - ]], - [[ - 13834, - 13842, - 13843 - ]], - [[ - 13844, - 13845, - 13846 - ]], - [[ - 13833, - 13847, - 13834 - ]], - [[ - 13848, - 13847, - 13849 - ]], - [[ - 13842, - 13834, - 13847 - ]], - [[ - 13850, - 13844, - 13851 - ]], - [[ - 13845, - 13852, - 13846 - ]], - [[ - 13853, - 13854, - 13831 - ]], - [[ - 13846, - 13855, - 13839 - ]], - [[ - 13856, - 13857, - 13858 - ]], - [[ - 13859, - 13860, - 13857 - ]], - [[ - 13856, - 13859, - 13857 - ]], - [[ - 13861, - 13839, - 13841 - ]], - [[ - 13852, - 13855, - 13846 - ]], - [[ - 13849, - 13847, - 13833 - ]], - [[ - 13862, - 13863, - 13829 - ]], - [[ - 13864, - 13865, - 13855 - ]], - [[ - 13857, - 13854, - 13853 - ]], - [[ - 13860, - 13859, - 13856 - ]], - [[ - 13866, - 13841, - 13867 - ]], - [[ - 13855, - 13865, - 13868 - ]], - [[ - 13853, - 13869, - 13827 - ]], - [[ - 13860, - 13854, - 13857 - ]], - [[ - 13870, - 13867, - 13840 - ]], - [[ - 13830, - 13871, - 13831 - ]], - [[ - 13871, - 13872, - 13873 - ]], - [[ - 13873, - 13869, - 13831 - ]], - [[ - 13874, - 13875, - 13876 - ]], - [[ - 13877, - 13869, - 13873 - ]], - [[ - 13840, - 13878, - 13879 - ]], - [[ - 13880, - 13881, - 13848 - ]], - [[ - 13835, - 13843, - 13882 - ]], - [[ - 13883, - 13867, - 13870 - ]], - [[ - 13882, - 13876, - 13884 - ]], - [[ - 13885, - 13872, - 13886 - ]], - [[ - 13887, - 13852, - 13845 - ]], - [[ - 13863, - 13864, - 13852 - ]], - [[ - 13882, - 13884, - 13849 - ]], - [[ - 13848, - 13862, - 13842 - ]], - [[ - 13879, - 13870, - 13840 - ]], - [[ - 13885, - 13875, - 13874 - ]], - [[ - 13888, - 13837, - 13872 - ]], - [[ - 13889, - 13828, - 13877 - ]], - [[ - 13874, - 13890, - 13872 - ]], - [[ - 13872, - 13877, - 13873 - ]], - [[ - 13880, - 13868, - 13881 - ]], - [[ - 13855, - 13852, - 13864 - ]], - [[ - 13891, - 13864, - 13863 - ]], - [[ - 13865, - 13881, - 13868 - ]], - [[ - 13871, - 13886, - 13872 - ]], - [[ - 13836, - 13889, - 13877 - ]], - [[ - 13892, - 13837, - 13888 - ]], - [[ - 13836, - 13877, - 13872 - ]], - [[ - 13870, - 13886, - 13883 - ]], - [[ - 13870, - 13879, - 13893 - ]], - [[ - 13830, - 13832, - 13866 - ]], - [[ - 13831, - 13854, - 13832 - ]], - [[ - 13839, - 13878, - 13840 - ]], - [[ - 13893, - 13886, - 13870 - ]], - [[ - 13843, - 13894, - 13882 - ]], - [[ - 13895, - 13896, - 13889 - ]], - [[ - 13837, - 13836, - 13872 - ]], - [[ - 13828, - 13896, - 13829 - ]], - [[ - 13884, - 13876, - 13875 - ]], - [[ - 13892, - 13888, - 13897 - ]], - [[ - 13833, - 13882, - 13849 - ]], - [[ - 13875, - 13898, - 13884 - ]], - [[ - 13834, - 13843, - 13835 - ]], - [[ - 13842, - 13894, - 13843 - ]], - [[ - 13853, - 13827, - 13829 - ]], - [[ - 13869, - 13877, - 13827 - ]], - [[ - 13882, - 13892, - 13876 - ]], - [[ - 13837, - 13895, - 13838 - ]], - [[ - 13880, - 13899, - 13868 - ]], - [[ - 13900, - 13901, - 13878 - ]], - [[ - 13868, - 13878, - 13855 - ]], - [[ - 13878, - 13901, - 13879 - ]], - [[ - 13855, - 13878, - 13839 - ]], - [[ - 13901, - 13884, - 13898 - ]], - [[ - 13868, - 13900, - 13878 - ]], - [[ - 13868, - 13899, - 13900 - ]], - [[ - 13879, - 13901, - 13898 - ]], - [[ - 13900, - 13884, - 13901 - ]], - [[ - 13876, - 13897, - 13890 - ]], - [[ - 13876, - 13892, - 13897 - ]], - [[ - 13858, - 13853, - 13829 - ]], - [[ - 13831, - 13869, - 13853 - ]], - [[ - 13884, - 13899, - 13849 - ]], - [[ - 13884, - 13900, - 13899 - ]], - [[ - 13863, - 13887, - 13829 - ]], - [[ - 13863, - 13852, - 13887 - ]], - [[ - 13835, - 13882, - 13833 - ]], - [[ - 13894, - 13892, - 13882 - ]], - [[ - 13856, - 13851, - 13860 - ]], - [[ - 13846, - 13839, - 13861 - ]], - [[ - 13887, - 13850, - 13829 - ]], - [[ - 13887, - 13845, - 13844 - ]], - [[ - 13862, - 13891, - 13863 - ]], - [[ - 13891, - 13902, - 13865 - ]], - [[ - 13891, - 13865, - 13864 - ]], - [[ - 13891, - 13862, - 13902 - ]], - [[ - 13867, - 13841, - 13840 - ]], - [[ - 13866, - 13854, - 13861 - ]], - [[ - 13849, - 13880, - 13848 - ]], - [[ - 13849, - 13899, - 13880 - ]], - [[ - 13866, - 13861, - 13841 - ]], - [[ - 13851, - 13846, - 13861 - ]], - [[ - 13842, - 13895, - 13894 - ]], - [[ - 13842, - 13896, - 13895 - ]], - [[ - 13894, - 13837, - 13892 - ]], - [[ - 13894, - 13895, - 13837 - ]], - [[ - 13838, - 13889, - 13836 - ]], - [[ - 13838, - 13895, - 13889 - ]], - [[ - 13903, - 13858, - 13829 - ]], - [[ - 13857, - 13853, - 13858 - ]], - [[ - 13890, - 13874, - 13876 - ]], - [[ - 13885, - 13904, - 13875 - ]], - [[ - 13848, - 13902, - 13862 - ]], - [[ - 13881, - 13865, - 13902 - ]], - [[ - 13831, - 13871, - 13873 - ]], - [[ - 13883, - 13886, - 13871 - ]], - [[ - 13898, - 13893, - 13879 - ]], - [[ - 13898, - 13875, - 13904 - ]], - [[ - 13861, - 13860, - 13851 - ]], - [[ - 13861, - 13854, - 13860 - ]], - [[ - 13883, - 13830, - 13867 - ]], - [[ - 13883, - 13871, - 13830 - ]], - [[ - 13851, - 13844, - 13846 - ]], - [[ - 13850, - 13887, - 13844 - ]], - [[ - 13830, - 13866, - 13867 - ]], - [[ - 13832, - 13854, - 13866 - ]], - [[ - 13847, - 13848, - 13842 - ]], - [[ - 13881, - 13902, - 13848 - ]], - [[ - 13888, - 13890, - 13897 - ]], - [[ - 13888, - 13872, - 13890 - ]], - [[ - 13903, - 13856, - 13858 - ]], - [[ - 13850, - 13851, - 13856 - ]], - [[ - 13877, - 13828, - 13827 - ]], - [[ - 13889, - 13896, - 13828 - ]], - [[ - 13893, - 13904, - 13886 - ]], - [[ - 13893, - 13898, - 13904 - ]], - [[ - 13872, - 13885, - 13874 - ]], - [[ - 13886, - 13904, - 13885 - ]], - [[ - 13850, - 13903, - 13829 - ]], - [[ - 13850, - 13856, - 13903 - ]], - [[ - 13842, - 13905, - 13896 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e4aa043-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff17049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13906, - 13907, - 13908 - ]], - [[ - 13909, - 8727, - 8794 - ]], - [[ - 13910, - 7726, - 7728 - ]], - [[ - 13911, - 13912, - 13913 - ]], - [[ - 13914, - 13913, - 13915 - ]], - [[ - 13916, - 13917, - 13918 - ]], - [[ - 13910, - 13916, - 7726 - ]], - [[ - 13919, - 7726, - 13920 - ]], - [[ - 13914, - 13915, - 13921 - ]], - [[ - 13919, - 13920, - 13922 - ]], - [[ - 13923, - 13914, - 13921 - ]], - [[ - 13918, - 13920, - 13916 - ]], - [[ - 13924, - 13923, - 13921 - ]], - [[ - 13912, - 7726, - 13921 - ]], - [[ - 13925, - 13926, - 13927 - ]], - [[ - 13914, - 13923, - 13928 - ]], - [[ - 13913, - 13912, - 13915 - ]], - [[ - 13926, - 7726, - 13912 - ]], - [[ - 13929, - 13930, - 13931 - ]], - [[ - 13932, - 7727, - 13926 - ]], - [[ - 13924, - 13921, - 13919 - ]], - [[ - 13915, - 13912, - 13921 - ]], - [[ - 13918, - 13933, - 13922 - ]], - [[ - 13921, - 7726, - 13919 - ]], - [[ - 8725, - 13934, - 7728 - ]], - [[ - 13934, - 13917, - 13916 - ]], - [[ - 7726, - 13916, - 13920 - ]], - [[ - 13910, - 13934, - 13916 - ]], - [[ - 13922, - 13924, - 13919 - ]], - [[ - 13933, - 13935, - 13923 - ]], - [[ - 13936, - 13937, - 13938 - ]], - [[ - 13923, - 13935, - 13939 - ]], - [[ - 7728, - 13934, - 13910 - ]], - [[ - 13940, - 13941, - 13935 - ]], - [[ - 13942, - 13929, - 13943 - ]], - [[ - 13944, - 13945, - 13946 - ]], - [[ - 13947, - 13948, - 13925 - ]], - [[ - 13949, - 13950, - 13932 - ]], - [[ - 13951, - 13925, - 13931 - ]], - [[ - 13950, - 13943, - 13952 - ]], - [[ - 13942, - 13943, - 13949 - ]], - [[ - 13953, - 13952, - 13954 - ]], - [[ - 13955, - 13956, - 13954 - ]], - [[ - 13943, - 13950, - 13949 - ]], - [[ - 13933, - 13923, - 13924 - ]], - [[ - 13955, - 13957, - 13958 - ]], - [[ - 13931, - 13942, - 13926 - ]], - [[ - 13908, - 7727, - 13932 - ]], - [[ - 13959, - 13960, - 13908 - ]], - [[ - 13961, - 8728, - 7727 - ]], - [[ - 13962, - 13926, - 13912 - ]], - [[ - 7727, - 7726, - 13926 - ]], - [[ - 13942, - 13949, - 13932 - ]], - [[ - 13950, - 13952, - 13953 - ]], - [[ - 13930, - 13942, - 13931 - ]], - [[ - 13930, - 13929, - 13942 - ]], - [[ - 13960, - 13906, - 13908 - ]], - [[ - 13907, - 13945, - 13963 - ]], - [[ - 13908, - 13907, - 7727 - ]], - [[ - 13906, - 13960, - 13945 - ]], - [[ - 13914, - 13928, - 13913 - ]], - [[ - 13964, - 13912, - 13911 - ]], - [[ - 13928, - 13965, - 13947 - ]], - [[ - 13966, - 13912, - 13964 - ]], - [[ - 13925, - 13951, - 13926 - ]], - [[ - 13931, - 13926, - 13951 - ]], - [[ - 13907, - 13963, - 7727 - ]], - [[ - 13967, - 13968, - 13960 - ]], - [[ - 13933, - 13918, - 13917 - ]], - [[ - 13922, - 13920, - 13918 - ]], - [[ - 13966, - 13962, - 13912 - ]], - [[ - 13927, - 13926, - 13962 - ]], - [[ - 13969, - 13970, - 13971 - ]], - [[ - 13972, - 8728, - 13973 - ]], - [[ - 13953, - 13954, - 13960 - ]], - [[ - 13907, - 13906, - 13945 - ]], - [[ - 13947, - 13966, - 13964 - ]], - [[ - 13927, - 13962, - 13966 - ]], - [[ - 13956, - 13955, - 13974 - ]], - [[ - 13975, - 8727, - 13976 - ]], - [[ - 13944, - 13973, - 13961 - ]], - [[ - 13977, - 13972, - 13973 - ]], - [[ - 13973, - 13946, - 13977 - ]], - [[ - 13973, - 13944, - 13946 - ]], - [[ - 8724, - 13938, - 8725 - ]], - [[ - 8724, - 13958, - 13978 - ]], - [[ - 13957, - 13978, - 13958 - ]], - [[ - 8724, - 13975, - 13979 - ]], - [[ - 13980, - 13944, - 13961 - ]], - [[ - 13963, - 13945, - 13944 - ]], - [[ - 13971, - 13972, - 13977 - ]], - [[ - 13971, - 8728, - 13972 - ]], - [[ - 13946, - 13968, - 13969 - ]], - [[ - 8794, - 8728, - 13971 - ]], - [[ - 8724, - 13979, - 13958 - ]], - [[ - 13954, - 8794, - 13967 - ]], - [[ - 13965, - 13939, - 13981 - ]], - [[ - 13938, - 8724, - 13978 - ]], - [[ - 13966, - 13947, - 13927 - ]], - [[ - 13964, - 13911, - 13928 - ]], - [[ - 13934, - 13940, - 13917 - ]], - [[ - 13982, - 13937, - 13983 - ]], - [[ - 13948, - 13943, - 13929 - ]], - [[ - 13953, - 13960, - 13959 - ]], - [[ - 13948, - 13955, - 13952 - ]], - [[ - 13974, - 13975, - 13976 - ]], - [[ - 13946, - 13969, - 13977 - ]], - [[ - 13970, - 8794, - 13971 - ]], - [[ - 13936, - 13938, - 13978 - ]], - [[ - 13937, - 8725, - 13938 - ]], - [[ - 13957, - 13947, - 13965 - ]], - [[ - 13984, - 8725, - 13982 - ]], - [[ - 13942, - 13932, - 13926 - ]], - [[ - 13959, - 13908, - 13932 - ]], - [[ - 13940, - 13935, - 13917 - ]], - [[ - 13985, - 13984, - 13986 - ]], - [[ - 13922, - 13933, - 13924 - ]], - [[ - 13917, - 13935, - 13933 - ]], - [[ - 13980, - 13961, - 7727 - ]], - [[ - 13973, - 8728, - 13961 - ]], - [[ - 13979, - 13955, - 13958 - ]], - [[ - 13985, - 13935, - 13941 - ]], - [[ - 8725, - 13940, - 13934 - ]], - [[ - 8725, - 13941, - 13940 - ]], - [[ - 13945, - 13968, - 13946 - ]], - [[ - 13945, - 13960, - 13968 - ]], - [[ - 13977, - 13969, - 13971 - ]], - [[ - 13968, - 13967, - 13969 - ]], - [[ - 13957, - 13981, - 13978 - ]], - [[ - 13983, - 13937, - 13936 - ]], - [[ - 13979, - 13975, - 13974 - ]], - [[ - 8724, - 8727, - 13975 - ]], - [[ - 13986, - 13984, - 13983 - ]], - [[ - 8725, - 13937, - 13982 - ]], - [[ - 13983, - 13984, - 13982 - ]], - [[ - 13941, - 8725, - 13984 - ]], - [[ - 13931, - 13925, - 13929 - ]], - [[ - 13947, - 13957, - 13948 - ]], - [[ - 13947, - 13925, - 13927 - ]], - [[ - 13948, - 13929, - 13925 - ]], - [[ - 13970, - 13967, - 8794 - ]], - [[ - 13970, - 13969, - 13967 - ]], - [[ - 13957, - 13955, - 13948 - ]], - [[ - 13979, - 13974, - 13955 - ]], - [[ - 13957, - 13965, - 13981 - ]], - [[ - 13947, - 13964, - 13928 - ]], - [[ - 13913, - 13928, - 13911 - ]], - [[ - 13987, - 13939, - 13965 - ]], - [[ - 13981, - 13939, - 13986 - ]], - [[ - 13965, - 13928, - 13987 - ]], - [[ - 13936, - 13981, - 13983 - ]], - [[ - 13985, - 13941, - 13984 - ]], - [[ - 13983, - 13981, - 13986 - ]], - [[ - 13936, - 13978, - 13981 - ]], - [[ - 13939, - 13985, - 13986 - ]], - [[ - 13939, - 13935, - 13985 - ]], - [[ - 13948, - 13952, - 13943 - ]], - [[ - 13954, - 13967, - 13960 - ]], - [[ - 13932, - 13953, - 13959 - ]], - [[ - 13932, - 13950, - 13953 - ]], - [[ - 13955, - 13954, - 13952 - ]], - [[ - 13956, - 8794, - 13954 - ]], - [[ - 13963, - 13980, - 7727 - ]], - [[ - 13963, - 13944, - 13980 - ]], - [[ - 13923, - 13987, - 13928 - ]], - [[ - 13923, - 13939, - 13987 - ]], - [[ - 13956, - 13976, - 13909 - ]], - [[ - 13956, - 13974, - 13976 - ]], - [[ - 13956, - 13909, - 8794 - ]], - [[ - 13976, - 8727, - 13909 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e4b15d3-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8e749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13988, - 13989, - 13990 - ]], - [[ - 13991, - 13992, - 13993 - ]], - [[ - 13994, - 13995, - 13996 - ]], - [[ - 13990, - 13997, - 13998 - ]], - [[ - 13992, - 13999, - 14000 - ]], - [[ - 14001, - 14002, - 14003 - ]], - [[ - 14001, - 13993, - 14000 - ]], - [[ - 14004, - 14005, - 14006 - ]], - [[ - 14002, - 14000, - 14007 - ]], - [[ - 14003, - 14008, - 14009 - ]], - [[ - 13996, - 14010, - 14011 - ]], - [[ - 14012, - 14013, - 14014 - ]], - [[ - 14015, - 13992, - 14016 - ]], - [[ - 14017, - 14013, - 14018 - ]], - [[ - 14019, - 14020, - 14015 - ]], - [[ - 14019, - 14021, - 14020 - ]], - [[ - 14022, - 14017, - 13989 - ]], - [[ - 14019, - 14015, - 14016 - ]], - [[ - 14016, - 14023, - 14019 - ]], - [[ - 14023, - 13991, - 13994 - ]], - [[ - 14024, - 14018, - 14012 - ]], - [[ - 14005, - 14008, - 14007 - ]], - [[ - 14025, - 14005, - 14004 - ]], - [[ - 14014, - 14008, - 14005 - ]], - [[ - 14015, - 13989, - 13992 - ]], - [[ - 14026, - 13998, - 14014 - ]], - [[ - 14014, - 14013, - 14026 - ]], - [[ - 14012, - 14025, - 14024 - ]], - [[ - 14017, - 14022, - 14013 - ]], - [[ - 14027, - 13988, - 14026 - ]], - [[ - 14011, - 14028, - 14029 - ]], - [[ - 14030, - 14009, - 14028 - ]], - [[ - 14029, - 13994, - 14011 - ]], - [[ - 14023, - 14016, - 13991 - ]], - [[ - 14026, - 14022, - 14027 - ]], - [[ - 14026, - 14013, - 14022 - ]], - [[ - 13995, - 14001, - 13996 - ]], - [[ - 13993, - 13992, - 14000 - ]], - [[ - 14031, - 14024, - 14004 - ]], - [[ - 14014, - 14005, - 14025 - ]], - [[ - 14026, - 13988, - 13998 - ]], - [[ - 14027, - 13989, - 13988 - ]], - [[ - 14006, - 14031, - 14004 - ]], - [[ - 13992, - 13989, - 14018 - ]], - [[ - 14007, - 14031, - 14006 - ]], - [[ - 13999, - 14018, - 14024 - ]], - [[ - 14004, - 14024, - 14025 - ]], - [[ - 13999, - 13992, - 14018 - ]], - [[ - 14031, - 14007, - 14000 - ]], - [[ - 14006, - 14005, - 14007 - ]], - [[ - 14002, - 14032, - 14003 - ]], - [[ - 14009, - 13997, - 14028 - ]], - [[ - 14000, - 14002, - 14001 - ]], - [[ - 14007, - 14008, - 14002 - ]], - [[ - 14003, - 14032, - 14008 - ]], - [[ - 14002, - 14008, - 14032 - ]], - [[ - 13995, - 13993, - 14001 - ]], - [[ - 13995, - 13994, - 13991 - ]], - [[ - 14010, - 14009, - 14030 - ]], - [[ - 14008, - 13997, - 14009 - ]], - [[ - 13994, - 14021, - 14023 - ]], - [[ - 14029, - 14028, - 14033 - ]], - [[ - 14011, - 14010, - 14030 - ]], - [[ - 13996, - 14003, - 14010 - ]], - [[ - 14022, - 13989, - 14027 - ]], - [[ - 14017, - 14018, - 13989 - ]], - [[ - 14010, - 14003, - 14009 - ]], - [[ - 13996, - 14001, - 14003 - ]], - [[ - 14021, - 14019, - 14023 - ]], - [[ - 14020, - 13990, - 14015 - ]], - [[ - 13995, - 13991, - 13993 - ]], - [[ - 14016, - 13992, - 13991 - ]], - [[ - 13994, - 14029, - 14021 - ]], - [[ - 14028, - 13997, - 14033 - ]], - [[ - 13990, - 14033, - 13997 - ]], - [[ - 14021, - 14029, - 14033 - ]], - [[ - 14028, - 14011, - 14030 - ]], - [[ - 13994, - 13996, - 14011 - ]], - [[ - 14025, - 14012, - 14014 - ]], - [[ - 14018, - 14013, - 14012 - ]], - [[ - 14031, - 13999, - 14024 - ]], - [[ - 14031, - 14000, - 13999 - ]], - [[ - 13989, - 14015, - 13990 - ]], - [[ - 14021, - 14033, - 14020 - ]], - [[ - 13988, - 13990, - 13998 - ]], - [[ - 14020, - 14033, - 13990 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e4bd8b0-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1771, - 3212, - 3213 - ]], - [[ - 1820, - 14034, - 1782 - ]], - [[ - 1782, - 3050, - 3060 - ]], - [[ - 3060, - 3076, - 3077 - ]], - [[ - 3060, - 3050, - 3076 - ]], - [[ - 3076, - 3071, - 3074 - ]], - [[ - 3074, - 3071, - 3073 - ]], - [[ - 3076, - 3050, - 3071 - ]], - [[ - 3071, - 3068, - 3069 - ]], - [[ - 3071, - 3067, - 3068 - ]], - [[ - 3071, - 3066, - 3067 - ]], - [[ - 3071, - 3055, - 3066 - ]], - [[ - 3066, - 3079, - 3051 - ]], - [[ - 3051, - 3064, - 3065 - ]], - [[ - 3051, - 3062, - 3064 - ]], - [[ - 3064, - 3062, - 3063 - ]], - [[ - 3051, - 3079, - 3062 - ]], - [[ - 3062, - 3079, - 3061 - ]], - [[ - 3066, - 3055, - 3079 - ]], - [[ - 3079, - 3055, - 3080 - ]], - [[ - 3071, - 3050, - 3055 - ]], - [[ - 3055, - 3050, - 3054 - ]], - [[ - 3054, - 3052, - 3053 - ]], - [[ - 3054, - 3050, - 3052 - ]], - [[ - 1782, - 3048, - 3050 - ]], - [[ - 1782, - 14034, - 3048 - ]], - [[ - 14035, - 1771, - 3213 - ]], - [[ - 14036, - 14034, - 14037 - ]], - [[ - 1771, - 3201, - 3212 - ]], - [[ - 3212, - 3201, - 3210 - ]], - [[ - 3210, - 3201, - 3208 - ]], - [[ - 3208, - 3180, - 3174 - ]], - [[ - 3208, - 3206, - 3180 - ]], - [[ - 3180, - 3206, - 3177 - ]], - [[ - 3208, - 3204, - 3206 - ]], - [[ - 3206, - 3204, - 3184 - ]], - [[ - 3184, - 3182, - 3205 - ]], - [[ - 3184, - 3204, - 3182 - ]], - [[ - 3208, - 3203, - 3204 - ]], - [[ - 3208, - 3171, - 3203 - ]], - [[ - 3203, - 3194, - 3187 - ]], - [[ - 3203, - 3191, - 3194 - ]], - [[ - 3203, - 3195, - 3191 - ]], - [[ - 3203, - 3171, - 3195 - ]], - [[ - 3208, - 3201, - 3171 - ]], - [[ - 3171, - 3201, - 3172 - ]], - [[ - 1771, - 3190, - 3201 - ]], - [[ - 3201, - 3190, - 3198 - ]], - [[ - 1820, - 14037, - 14034 - ]], - [[ - 1820, - 1771, - 14036 - ]], - [[ - 14034, - 14036, - 3213 - ]], - [[ - 14036, - 1771, - 14035 - ]], - [[ - 1820, - 14036, - 14037 - ]], - [[ - 14035, - 3213, - 14036 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e4ee645-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14038, - 14039, - 14040 - ]], - [[ - 14041, - 14042, - 14043 - ]], - [[ - 14040, - 14043, - 14044 - ]], - [[ - 14042, - 14039, - 14038 - ]], - [[ - 14044, - 14038, - 14040 - ]], - [[ - 14042, - 14041, - 14039 - ]], - [[ - 14045, - 14043, - 14040 - ]], - [[ - 14046, - 14038, - 14044 - ]], - [[ - 14046, - 14042, - 14038 - ]], - [[ - 14043, - 14045, - 14041 - ]], - [[ - 14046, - 14043, - 14042 - ]], - [[ - 14046, - 14044, - 14043 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e4fa919-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efebf349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14047, - 14048, - 14049 - ]], - [[ - 14050, - 14051, - 8743 - ]], - [[ - 14052, - 8402, - 8744 - ]], - [[ - 14052, - 14053, - 14048 - ]], - [[ - 14054, - 14050, - 8743 - ]], - [[ - 14055, - 14056, - 14057 - ]], - [[ - 14058, - 14051, - 14059 - ]], - [[ - 14050, - 14054, - 14060 - ]], - [[ - 14050, - 14059, - 14051 - ]], - [[ - 14061, - 14062, - 14063 - ]], - [[ - 14064, - 14065, - 14066 - ]], - [[ - 14067, - 14051, - 14058 - ]], - [[ - 14068, - 14069, - 14070 - ]], - [[ - 14059, - 14050, - 14071 - ]], - [[ - 14059, - 14072, - 14073 - ]], - [[ - 14074, - 14064, - 14075 - ]], - [[ - 14061, - 14073, - 14062 - ]], - [[ - 14076, - 14077, - 14078 - ]], - [[ - 14079, - 14061, - 14069 - ]], - [[ - 14080, - 14073, - 14061 - ]], - [[ - 14072, - 14063, - 14073 - ]], - [[ - 14063, - 8322, - 14081 - ]], - [[ - 14057, - 14056, - 8323 - ]], - [[ - 8323, - 8325, - 14082 - ]], - [[ - 14061, - 14063, - 14069 - ]], - [[ - 14081, - 8322, - 8323 - ]], - [[ - 14068, - 14070, - 14083 - ]], - [[ - 14068, - 14084, - 14085 - ]], - [[ - 14083, - 14070, - 14081 - ]], - [[ - 14062, - 14073, - 14063 - ]], - [[ - 14060, - 14054, - 8743 - ]], - [[ - 14071, - 14086, - 14072 - ]], - [[ - 14052, - 14048, - 14087 - ]], - [[ - 8325, - 8402, - 14087 - ]], - [[ - 8743, - 14084, - 8744 - ]], - [[ - 14065, - 14088, - 14066 - ]], - [[ - 14089, - 14074, - 14075 - ]], - [[ - 14075, - 14090, - 14056 - ]], - [[ - 14056, - 14090, - 8323 - ]], - [[ - 14070, - 14069, - 14063 - ]], - [[ - 14082, - 14057, - 8323 - ]], - [[ - 14077, - 14076, - 14091 - ]], - [[ - 14065, - 14064, - 14074 - ]], - [[ - 14066, - 14092, - 14064 - ]], - [[ - 14078, - 14089, - 14075 - ]], - [[ - 14065, - 14074, - 14089 - ]], - [[ - 14065, - 14084, - 14088 - ]], - [[ - 8743, - 14051, - 14080 - ]], - [[ - 14072, - 14086, - 14063 - ]], - [[ - 14072, - 14059, - 14071 - ]], - [[ - 14060, - 14071, - 14050 - ]], - [[ - 8322, - 14086, - 14071 - ]], - [[ - 14073, - 14058, - 14059 - ]], - [[ - 14067, - 14080, - 14051 - ]], - [[ - 14073, - 14067, - 14058 - ]], - [[ - 14073, - 14080, - 14067 - ]], - [[ - 14093, - 14083, - 14081 - ]], - [[ - 14066, - 14088, - 14068 - ]], - [[ - 8744, - 14065, - 14094 - ]], - [[ - 14079, - 14095, - 14061 - ]], - [[ - 14085, - 14079, - 14069 - ]], - [[ - 14095, - 14080, - 14061 - ]], - [[ - 8744, - 14084, - 14065 - ]], - [[ - 8743, - 14079, - 14084 - ]], - [[ - 8325, - 14096, - 14082 - ]], - [[ - 8325, - 14087, - 14096 - ]], - [[ - 14093, - 14081, - 8323 - ]], - [[ - 14093, - 14097, - 14092 - ]], - [[ - 14068, - 14085, - 14069 - ]], - [[ - 14084, - 14079, - 14085 - ]], - [[ - 8743, - 14095, - 14079 - ]], - [[ - 8743, - 14080, - 14095 - ]], - [[ - 14094, - 14053, - 8744 - ]], - [[ - 14048, - 14096, - 14087 - ]], - [[ - 14094, - 14048, - 14053 - ]], - [[ - 14094, - 14098, - 14049 - ]], - [[ - 14070, - 14063, - 14081 - ]], - [[ - 14086, - 8322, - 14063 - ]], - [[ - 8402, - 14052, - 14087 - ]], - [[ - 8744, - 14053, - 14052 - ]], - [[ - 14091, - 14099, - 14077 - ]], - [[ - 14065, - 14089, - 14099 - ]], - [[ - 14082, - 14076, - 14057 - ]], - [[ - 14099, - 14089, - 14078 - ]], - [[ - 14055, - 14076, - 14078 - ]], - [[ - 14098, - 14094, - 14091 - ]], - [[ - 14076, - 14055, - 14057 - ]], - [[ - 14078, - 14056, - 14055 - ]], - [[ - 14075, - 14097, - 14090 - ]], - [[ - 14092, - 14083, - 14093 - ]], - [[ - 14082, - 14049, - 14076 - ]], - [[ - 14049, - 14048, - 14094 - ]], - [[ - 14066, - 14068, - 14083 - ]], - [[ - 14088, - 14084, - 14068 - ]], - [[ - 14076, - 14049, - 14098 - ]], - [[ - 14047, - 14096, - 14048 - ]], - [[ - 14078, - 14077, - 14099 - ]], - [[ - 14076, - 14098, - 14091 - ]], - [[ - 14064, - 14092, - 14097 - ]], - [[ - 14066, - 14083, - 14092 - ]], - [[ - 14082, - 14047, - 14049 - ]], - [[ - 14082, - 14096, - 14047 - ]], - [[ - 14065, - 14091, - 14094 - ]], - [[ - 14065, - 14099, - 14091 - ]], - [[ - 14078, - 14075, - 14056 - ]], - [[ - 14064, - 14097, - 14075 - ]], - [[ - 8322, - 14060, - 8743 - ]], - [[ - 8322, - 14071, - 14060 - ]], - [[ - 14090, - 14093, - 8323 - ]], - [[ - 14090, - 14097, - 14093 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e506d0e-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba4a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14100, - 14101, - 14102 - ]], - [[ - 14103, - 14104, - 14105 - ]], - [[ - 14106, - 14107, - 14104 - ]], - [[ - 14108, - 14102, - 14101 - ]], - [[ - 14109, - 14110, - 14106 - ]], - [[ - 14110, - 14107, - 14111 - ]], - [[ - 14112, - 14109, - 14103 - ]], - [[ - 14104, - 14108, - 14105 - ]], - [[ - 14103, - 14106, - 14104 - ]], - [[ - 14111, - 14107, - 14106 - ]], - [[ - 14113, - 14109, - 14112 - ]], - [[ - 14110, - 14111, - 14106 - ]], - [[ - 14101, - 14105, - 14108 - ]], - [[ - 14104, - 14107, - 14114 - ]], - [[ - 14115, - 14103, - 14105 - ]], - [[ - 14109, - 14106, - 14103 - ]], - [[ - 14116, - 14117, - 14118 - ]], - [[ - 14119, - 14120, - 14112 - ]], - [[ - 14100, - 14115, - 14101 - ]], - [[ - 14121, - 14119, - 14103 - ]], - [[ - 14115, - 14121, - 14103 - ]], - [[ - 14103, - 14119, - 14112 - ]], - [[ - 14122, - 14110, - 14123 - ]], - [[ - 14110, - 14109, - 14113 - ]], - [[ - 14116, - 14119, - 14124 - ]], - [[ - 14120, - 14113, - 14112 - ]], - [[ - 14117, - 14116, - 14121 - ]], - [[ - 14121, - 14116, - 14124 - ]], - [[ - 14123, - 14120, - 14119 - ]], - [[ - 14123, - 14113, - 14120 - ]], - [[ - 14118, - 14100, - 14102 - ]], - [[ - 14115, - 14105, - 14101 - ]], - [[ - 14114, - 14108, - 14104 - ]], - [[ - 14122, - 14102, - 14108 - ]], - [[ - 14123, - 14116, - 14118 - ]], - [[ - 14123, - 14119, - 14116 - ]], - [[ - 14122, - 14114, - 14107 - ]], - [[ - 14122, - 14108, - 14114 - ]], - [[ - 14117, - 14100, - 14118 - ]], - [[ - 14117, - 14121, - 14100 - ]], - [[ - 14123, - 14110, - 14113 - ]], - [[ - 14122, - 14107, - 14110 - ]], - [[ - 14119, - 14121, - 14124 - ]], - [[ - 14115, - 14100, - 14121 - ]], - [[ - 14125, - 14102, - 14122 - ]], - [[ - 14118, - 14126, - 14123 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e51a58d-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1773, - 3169, - 3199 - ]], - [[ - 3199, - 3169, - 3200 - ]], - [[ - 3200, - 3169, - 3197 - ]], - [[ - 3197, - 3169, - 3173 - ]], - [[ - 3173, - 3169, - 3196 - ]], - [[ - 3196, - 3169, - 3192 - ]], - [[ - 3192, - 3169, - 3193 - ]], - [[ - 3193, - 3169, - 3188 - ]], - [[ - 3188, - 3169, - 3189 - ]], - [[ - 3189, - 3169, - 3202 - ]], - [[ - 3202, - 3169, - 3183 - ]], - [[ - 3183, - 3169, - 3181 - ]], - [[ - 3181, - 3169, - 3185 - ]], - [[ - 3185, - 3169, - 3186 - ]], - [[ - 3186, - 3169, - 3178 - ]], - [[ - 3178, - 3169, - 3179 - ]], - [[ - 3179, - 3169, - 3175 - ]], - [[ - 3175, - 3169, - 3176 - ]], - [[ - 3176, - 3169, - 3207 - ]], - [[ - 3207, - 3169, - 3209 - ]], - [[ - 3209, - 3169, - 3211 - ]], - [[ - 14127, - 12238, - 14128 - ]], - [[ - 1812, - 1830, - 12238 - ]], - [[ - 3115, - 12238, - 1830 - ]], - [[ - 14129, - 3169, - 1773 - ]], - [[ - 1830, - 3121, - 3115 - ]], - [[ - 1830, - 3135, - 3121 - ]], - [[ - 3121, - 3156, - 3158 - ]], - [[ - 3121, - 3135, - 3156 - ]], - [[ - 3156, - 3134, - 3125 - ]], - [[ - 3125, - 3130, - 3128 - ]], - [[ - 3125, - 3134, - 3130 - ]], - [[ - 3130, - 3134, - 3154 - ]], - [[ - 3156, - 3137, - 3134 - ]], - [[ - 3134, - 3137, - 3153 - ]], - [[ - 3153, - 3137, - 3152 - ]], - [[ - 3156, - 3135, - 3137 - ]], - [[ - 3137, - 3141, - 3139 - ]], - [[ - 3137, - 3145, - 3141 - ]], - [[ - 3141, - 3145, - 3143 - ]], - [[ - 3137, - 3135, - 3145 - ]], - [[ - 3145, - 3150, - 3122 - ]], - [[ - 3122, - 3150, - 3123 - ]], - [[ - 3145, - 3135, - 3150 - ]], - [[ - 1812, - 14128, - 14129 - ]], - [[ - 12238, - 3169, - 14130 - ]], - [[ - 1812, - 14129, - 1773 - ]], - [[ - 14130, - 3169, - 14129 - ]], - [[ - 1812, - 14127, - 14128 - ]], - [[ - 1812, - 12238, - 14127 - ]], - [[ - 14128, - 14130, - 14129 - ]], - [[ - 14128, - 12238, - 14130 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e528fa4-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14131, - 14132, - 14133 - ]], - [[ - 14134, - 14132, - 14131 - ]], - [[ - 14132, - 14135, - 14136 - ]], - [[ - 14132, - 14137, - 14135 - ]], - [[ - 14138, - 14139, - 14132 - ]], - [[ - 14140, - 14138, - 14132 - ]], - [[ - 14141, - 14140, - 14132 - ]], - [[ - 14142, - 14143, - 14144 - ]], - [[ - 14145, - 14132, - 14146 - ]], - [[ - 14146, - 14132, - 14147 - ]], - [[ - 14147, - 14132, - 14148 - ]], - [[ - 14148, - 14142, - 14149 - ]], - [[ - 14149, - 14142, - 14150 - ]], - [[ - 14150, - 14142, - 14151 - ]], - [[ - 14151, - 14142, - 14152 - ]], - [[ - 14152, - 14142, - 14144 - ]], - [[ - 14153, - 14154, - 14155 - ]], - [[ - 14143, - 14142, - 14154 - ]], - [[ - 14156, - 14143, - 14154 - ]], - [[ - 14132, - 14142, - 14148 - ]], - [[ - 14157, - 14158, - 14154 - ]], - [[ - 14153, - 14157, - 14154 - ]], - [[ - 14132, - 14154, - 14142 - ]], - [[ - 14159, - 14155, - 14154 - ]], - [[ - 14160, - 14159, - 14154 - ]], - [[ - 14161, - 14160, - 14154 - ]], - [[ - 14162, - 14161, - 14154 - ]], - [[ - 14163, - 14162, - 14164 - ]], - [[ - 14165, - 14163, - 14164 - ]], - [[ - 14166, - 14165, - 14164 - ]], - [[ - 14167, - 14166, - 14164 - ]], - [[ - 14168, - 14167, - 14164 - ]], - [[ - 14169, - 14168, - 14164 - ]], - [[ - 14170, - 14169, - 14164 - ]], - [[ - 14171, - 14170, - 14164 - ]], - [[ - 14172, - 14171, - 14164 - ]], - [[ - 14173, - 14172, - 14164 - ]], - [[ - 14174, - 14173, - 14164 - ]], - [[ - 14175, - 14174, - 14164 - ]], - [[ - 14176, - 14175, - 14164 - ]], - [[ - 14177, - 14132, - 14145 - ]], - [[ - 14178, - 14164, - 14179 - ]], - [[ - 14179, - 14164, - 14180 - ]], - [[ - 14180, - 14164, - 14132 - ]], - [[ - 14181, - 14180, - 14132 - ]], - [[ - 14182, - 14181, - 14132 - ]], - [[ - 14183, - 14182, - 14132 - ]], - [[ - 14184, - 14183, - 14132 - ]], - [[ - 14185, - 14184, - 14132 - ]], - [[ - 14186, - 14185, - 14132 - ]], - [[ - 14186, - 14187, - 14185 - ]], - [[ - 14186, - 14188, - 14187 - ]], - [[ - 14186, - 14189, - 14188 - ]], - [[ - 14186, - 14190, - 14189 - ]], - [[ - 14186, - 14191, - 14190 - ]], - [[ - 14186, - 14192, - 14191 - ]], - [[ - 14186, - 14193, - 14192 - ]], - [[ - 14186, - 14194, - 14193 - ]], - [[ - 14195, - 14196, - 14186 - ]], - [[ - 14197, - 14195, - 14186 - ]], - [[ - 14198, - 14197, - 14186 - ]], - [[ - 14199, - 14198, - 14186 - ]], - [[ - 14200, - 14199, - 14186 - ]], - [[ - 14201, - 14200, - 14186 - ]], - [[ - 14202, - 14201, - 14203 - ]], - [[ - 14204, - 14202, - 14203 - ]], - [[ - 14205, - 14204, - 14203 - ]], - [[ - 14206, - 14205, - 14203 - ]], - [[ - 14132, - 14164, - 14154 - ]], - [[ - 14207, - 14203, - 14208 - ]], - [[ - 14208, - 14203, - 14209 - ]], - [[ - 14209, - 14203, - 14210 - ]], - [[ - 14210, - 14203, - 14211 - ]], - [[ - 14211, - 14203, - 14212 - ]], - [[ - 14212, - 14203, - 14213 - ]], - [[ - 14213, - 14203, - 14214 - ]], - [[ - 14214, - 14203, - 14215 - ]], - [[ - 14215, - 14203, - 14216 - ]], - [[ - 14216, - 14203, - 14217 - ]], - [[ - 14217, - 14203, - 14218 - ]], - [[ - 14218, - 14203, - 14219 - ]], - [[ - 14219, - 14203, - 14220 - ]], - [[ - 14220, - 14203, - 14221 - ]], - [[ - 14221, - 14203, - 14132 - ]], - [[ - 14222, - 14221, - 14132 - ]], - [[ - 14223, - 14222, - 14132 - ]], - [[ - 14224, - 14223, - 14132 - ]], - [[ - 14225, - 14224, - 14132 - ]], - [[ - 14226, - 14225, - 14132 - ]], - [[ - 14134, - 14226, - 14132 - ]], - [[ - 14177, - 14141, - 14132 - ]], - [[ - 14133, - 14132, - 14136 - ]], - [[ - 14227, - 14164, - 14178 - ]], - [[ - 14227, - 14176, - 14164 - ]], - [[ - 14162, - 14154, - 14164 - ]], - [[ - 14158, - 14156, - 14154 - ]], - [[ - 14228, - 14203, - 14207 - ]], - [[ - 14228, - 14206, - 14203 - ]], - [[ - 14137, - 14132, - 14139 - ]], - [[ - 14203, - 14186, - 14132 - ]], - [[ - 14201, - 14186, - 14203 - ]], - [[ - 14196, - 14194, - 14186 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e530428-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14229, - 14230, - 14231 - ]], - [[ - 14232, - 14233, - 14231 - ]], - [[ - 14234, - 14232, - 14235 - ]], - [[ - 14236, - 14229, - 14237 - ]], - [[ - 14234, - 14238, - 14232 - ]], - [[ - 14230, - 14229, - 14236 - ]], - [[ - 14238, - 14239, - 14233 - ]], - [[ - 14236, - 14237, - 14240 - ]], - [[ - 14241, - 14235, - 14230 - ]], - [[ - 14235, - 14232, - 14231 - ]], - [[ - 14230, - 14235, - 14231 - ]], - [[ - 14242, - 14234, - 14235 - ]], - [[ - 14232, - 14238, - 14233 - ]], - [[ - 14234, - 14239, - 14238 - ]], - [[ - 14234, - 14243, - 14239 - ]], - [[ - 14234, - 14237, - 14243 - ]], - [[ - 14244, - 14236, - 14240 - ]], - [[ - 14229, - 14233, - 14239 - ]], - [[ - 14244, - 14241, - 14236 - ]], - [[ - 14242, - 14235, - 14241 - ]], - [[ - 14241, - 14230, - 14236 - ]], - [[ - 14231, - 14233, - 14229 - ]], - [[ - 14243, - 14229, - 14239 - ]], - [[ - 14243, - 14237, - 14229 - ]], - [[ - 14242, - 14244, - 14240 - ]], - [[ - 14242, - 14241, - 14244 - ]], - [[ - 14240, - 14245, - 14242 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e54165e-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14246, - 14247, - 14248 - ]], - [[ - 14249, - 14250, - 14251 - ]], - [[ - 14247, - 14252, - 14248 - ]], - [[ - 14253, - 14254, - 14255 - ]], - [[ - 14256, - 14257, - 14258 - ]], - [[ - 14258, - 14249, - 14251 - ]], - [[ - 14246, - 14258, - 14247 - ]], - [[ - 14251, - 14252, - 14247 - ]], - [[ - 14259, - 14260, - 14261 - ]], - [[ - 14258, - 14251, - 14247 - ]], - [[ - 14262, - 14260, - 14259 - ]], - [[ - 14261, - 14258, - 14246 - ]], - [[ - 14263, - 14261, - 14260 - ]], - [[ - 14264, - 14258, - 14261 - ]], - [[ - 14265, - 14266, - 14267 - ]], - [[ - 14268, - 14256, - 14264 - ]], - [[ - 14264, - 14256, - 14258 - ]], - [[ - 14250, - 14269, - 14270 - ]], - [[ - 14263, - 14268, - 14261 - ]], - [[ - 14268, - 14266, - 14256 - ]], - [[ - 14270, - 14248, - 14252 - ]], - [[ - 14269, - 14254, - 14248 - ]], - [[ - 14271, - 14272, - 14256 - ]], - [[ - 14257, - 14269, - 14249 - ]], - [[ - 14258, - 14257, - 14249 - ]], - [[ - 14272, - 14269, - 14257 - ]], - [[ - 14251, - 14250, - 14252 - ]], - [[ - 14249, - 14269, - 14250 - ]], - [[ - 14253, - 14246, - 14248 - ]], - [[ - 14255, - 14261, - 14246 - ]], - [[ - 14266, - 14271, - 14256 - ]], - [[ - 14265, - 14272, - 14271 - ]], - [[ - 14259, - 14255, - 14254 - ]], - [[ - 14259, - 14261, - 14255 - ]], - [[ - 14262, - 14266, - 14263 - ]], - [[ - 14265, - 14271, - 14266 - ]], - [[ - 14261, - 14268, - 14264 - ]], - [[ - 14263, - 14266, - 14268 - ]], - [[ - 14256, - 14272, - 14257 - ]], - [[ - 14265, - 14269, - 14272 - ]], - [[ - 14250, - 14270, - 14252 - ]], - [[ - 14269, - 14248, - 14270 - ]], - [[ - 14266, - 14262, - 14267 - ]], - [[ - 14263, - 14260, - 14262 - ]], - [[ - 14246, - 14253, - 14255 - ]], - [[ - 14248, - 14254, - 14253 - ]], - [[ - 14267, - 14259, - 14254 - ]], - [[ - 14267, - 14262, - 14259 - ]], - [[ - 14273, - 14254, - 14269 - ]], - [[ - 14267, - 14274, - 14265 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e5527a9-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14275, - 14276, - 14277 - ]], - [[ - 14278, - 14279, - 14280 - ]], - [[ - 14281, - 14282, - 14283 - ]], - [[ - 14280, - 14284, - 14285 - ]], - [[ - 14286, - 14287, - 14282 - ]], - [[ - 14288, - 14289, - 14290 - ]], - [[ - 14291, - 14292, - 14285 - ]], - [[ - 14284, - 14290, - 14285 - ]], - [[ - 14292, - 14283, - 14293 - ]], - [[ - 14293, - 14282, - 14294 - ]], - [[ - 14295, - 14286, - 14296 - ]], - [[ - 14277, - 14297, - 14275 - ]], - [[ - 14298, - 14295, - 14299 - ]], - [[ - 14286, - 14282, - 14281 - ]], - [[ - 14277, - 14287, - 14297 - ]], - [[ - 14288, - 14290, - 14284 - ]], - [[ - 14300, - 14287, - 14286 - ]], - [[ - 14297, - 14301, - 14275 - ]], - [[ - 14302, - 14283, - 14291 - ]], - [[ - 14303, - 14304, - 14279 - ]], - [[ - 14278, - 14280, - 14285 - ]], - [[ - 14279, - 14284, - 14280 - ]], - [[ - 14298, - 14302, - 14305 - ]], - [[ - 14292, - 14306, - 14307 - ]], - [[ - 14299, - 14295, - 14302 - ]], - [[ - 14282, - 14276, - 14294 - ]], - [[ - 14292, - 14293, - 14306 - ]], - [[ - 14283, - 14282, - 14293 - ]], - [[ - 14304, - 14307, - 14294 - ]], - [[ - 14308, - 14275, - 14301 - ]], - [[ - 14300, - 14297, - 14287 - ]], - [[ - 14300, - 14289, - 14297 - ]], - [[ - 14308, - 14294, - 14275 - ]], - [[ - 14294, - 14276, - 14275 - ]], - [[ - 14288, - 14294, - 14308 - ]], - [[ - 14306, - 14293, - 14294 - ]], - [[ - 14288, - 14308, - 14289 - ]], - [[ - 14301, - 14289, - 14308 - ]], - [[ - 14292, - 14307, - 14303 - ]], - [[ - 14306, - 14294, - 14307 - ]], - [[ - 14278, - 14303, - 14279 - ]], - [[ - 14278, - 14292, - 14303 - ]], - [[ - 14297, - 14289, - 14301 - ]], - [[ - 14300, - 14290, - 14289 - ]], - [[ - 14302, - 14281, - 14283 - ]], - [[ - 14296, - 14286, - 14281 - ]], - [[ - 14279, - 14304, - 14284 - ]], - [[ - 14303, - 14307, - 14304 - ]], - [[ - 14305, - 14291, - 14285 - ]], - [[ - 14305, - 14302, - 14291 - ]], - [[ - 14298, - 14299, - 14302 - ]], - [[ - 14295, - 14281, - 14302 - ]], - [[ - 14300, - 14298, - 14305 - ]], - [[ - 14295, - 14296, - 14281 - ]], - [[ - 14282, - 14277, - 14276 - ]], - [[ - 14282, - 14287, - 14277 - ]], - [[ - 14285, - 14292, - 14278 - ]], - [[ - 14291, - 14283, - 14292 - ]], - [[ - 14300, - 14295, - 14298 - ]], - [[ - 14300, - 14286, - 14295 - ]], - [[ - 14304, - 14288, - 14284 - ]], - [[ - 14304, - 14294, - 14288 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e55c364-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14309, - 9869, - 9874 - ]], - [[ - 14310, - 9874, - 9873 - ]], - [[ - 9868, - 14311, - 14312 - ]], - [[ - 14311, - 9869, - 14309 - ]], - [[ - 14310, - 14309, - 9874 - ]], - [[ - 14311, - 9868, - 9869 - ]], - [[ - 14312, - 14310, - 9873 - ]], - [[ - 14313, - 14309, - 14310 - ]], - [[ - 14313, - 14311, - 14309 - ]], - [[ - 14312, - 9873, - 9868 - ]], - [[ - 14313, - 14312, - 14311 - ]], - [[ - 14313, - 14310, - 14312 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e55ea86-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14314, - 1013, - 1017 - ]], - [[ - 1020, - 14315, - 1018 - ]], - [[ - 14316, - 14314, - 1017 - ]], - [[ - 14315, - 14317, - 14314 - ]], - [[ - 14316, - 14315, - 14314 - ]], - [[ - 14317, - 1013, - 14314 - ]], - [[ - 1018, - 14316, - 1017 - ]], - [[ - 1018, - 14315, - 14316 - ]], - [[ - 1020, - 14317, - 14315 - ]], - [[ - 1020, - 1013, - 14317 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e566010-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efe6f549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14318, - 14319, - 14320 - ]], - [[ - 14321, - 14319, - 14322 - ]], - [[ - 14320, - 14323, - 14321 - ]], - [[ - 14324, - 14325, - 14326 - ]], - [[ - 14320, - 14319, - 14323 - ]], - [[ - 14327, - 14325, - 14324 - ]], - [[ - 14322, - 14328, - 14326 - ]], - [[ - 14328, - 14319, - 14318 - ]], - [[ - 14324, - 14328, - 14329 - ]], - [[ - 14322, - 14319, - 14328 - ]], - [[ - 14328, - 14318, - 14329 - ]], - [[ - 14320, - 14325, - 14318 - ]], - [[ - 14328, - 14324, - 14326 - ]], - [[ - 14329, - 14327, - 14324 - ]], - [[ - 14318, - 14327, - 14329 - ]], - [[ - 14318, - 14325, - 14327 - ]], - [[ - 14320, - 14321, - 14322 - ]], - [[ - 14323, - 14319, - 14321 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e580e0a-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff16b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14330, - 14331, - 14332 - ]], - [[ - 14333, - 14334, - 8708 - ]], - [[ - 14335, - 14336, - 14333 - ]], - [[ - 14337, - 14338, - 14336 - ]], - [[ - 14332, - 14339, - 14340 - ]], - [[ - 14341, - 14342, - 14334 - ]], - [[ - 14343, - 14332, - 14340 - ]], - [[ - 14344, - 14345, - 14346 - ]], - [[ - 14347, - 14348, - 14349 - ]], - [[ - 14350, - 14338, - 14337 - ]], - [[ - 14350, - 14331, - 14330 - ]], - [[ - 14340, - 14351, - 14344 - ]], - [[ - 14336, - 14338, - 14334 - ]], - [[ - 14352, - 14353, - 14346 - ]], - [[ - 14332, - 14354, - 14339 - ]], - [[ - 14355, - 8707, - 14356 - ]], - [[ - 14348, - 14347, - 14354 - ]], - [[ - 14339, - 14351, - 14340 - ]], - [[ - 14343, - 14340, - 14357 - ]], - [[ - 14358, - 14357, - 14344 - ]], - [[ - 14338, - 14359, - 14334 - ]], - [[ - 14338, - 14330, - 14359 - ]], - [[ - 14357, - 14358, - 14359 - ]], - [[ - 14360, - 14341, - 14353 - ]], - [[ - 14361, - 14362, - 14363 - ]], - [[ - 14364, - 14342, - 14365 - ]], - [[ - 14359, - 14330, - 14343 - ]], - [[ - 14338, - 14350, - 14330 - ]], - [[ - 14350, - 14348, - 14331 - ]], - [[ - 14331, - 14348, - 14354 - ]], - [[ - 14341, - 14365, - 14342 - ]], - [[ - 14353, - 14358, - 14346 - ]], - [[ - 14349, - 14335, - 14366 - ]], - [[ - 14336, - 14334, - 14333 - ]], - [[ - 14359, - 14341, - 14334 - ]], - [[ - 14359, - 14358, - 14341 - ]], - [[ - 14341, - 14367, - 14365 - ]], - [[ - 14360, - 14353, - 14352 - ]], - [[ - 14345, - 14352, - 14346 - ]], - [[ - 14341, - 14358, - 14353 - ]], - [[ - 14368, - 14369, - 14352 - ]], - [[ - 14370, - 14371, - 14372 - ]], - [[ - 14337, - 14348, - 14350 - ]], - [[ - 14347, - 8708, - 14373 - ]], - [[ - 14343, - 14357, - 14359 - ]], - [[ - 14340, - 14344, - 14357 - ]], - [[ - 14374, - 14375, - 14376 - ]], - [[ - 14377, - 14378, - 14342 - ]], - [[ - 14377, - 14379, - 14378 - ]], - [[ - 14377, - 14342, - 14375 - ]], - [[ - 14330, - 14332, - 14343 - ]], - [[ - 14331, - 14354, - 14332 - ]], - [[ - 14339, - 14354, - 14380 - ]], - [[ - 14381, - 14362, - 14361 - ]], - [[ - 14382, - 14383, - 14362 - ]], - [[ - 14362, - 14380, - 8708 - ]], - [[ - 14383, - 14369, - 14362 - ]], - [[ - 14384, - 14385, - 14386 - ]], - [[ - 14356, - 14378, - 14379 - ]], - [[ - 8707, - 14342, - 14378 - ]], - [[ - 14358, - 14344, - 14346 - ]], - [[ - 14351, - 14387, - 14388 - ]], - [[ - 14389, - 14374, - 14376 - ]], - [[ - 14372, - 14390, - 14384 - ]], - [[ - 14389, - 14384, - 14374 - ]], - [[ - 14385, - 14355, - 14379 - ]], - [[ - 14374, - 14386, - 14375 - ]], - [[ - 14374, - 14384, - 14386 - ]], - [[ - 14383, - 14365, - 14391 - ]], - [[ - 14388, - 14344, - 14351 - ]], - [[ - 14392, - 14393, - 14391 - ]], - [[ - 14392, - 14365, - 14394 - ]], - [[ - 14365, - 14392, - 14391 - ]], - [[ - 14365, - 14367, - 14394 - ]], - [[ - 14395, - 14371, - 14382 - ]], - [[ - 14393, - 14396, - 14397 - ]], - [[ - 14386, - 14385, - 14379 - ]], - [[ - 14385, - 14395, - 14355 - ]], - [[ - 14390, - 14385, - 14384 - ]], - [[ - 14390, - 14395, - 14385 - ]], - [[ - 14386, - 14377, - 14375 - ]], - [[ - 14386, - 14379, - 14377 - ]], - [[ - 14396, - 14398, - 14397 - ]], - [[ - 14367, - 14399, - 14398 - ]], - [[ - 14392, - 14394, - 14393 - ]], - [[ - 14367, - 14398, - 14394 - ]], - [[ - 14370, - 14389, - 14364 - ]], - [[ - 14372, - 14384, - 14389 - ]], - [[ - 14368, - 14352, - 14345 - ]], - [[ - 14399, - 14367, - 14360 - ]], - [[ - 14399, - 14360, - 14352 - ]], - [[ - 14367, - 14341, - 14360 - ]], - [[ - 14355, - 14356, - 14379 - ]], - [[ - 8707, - 14378, - 14356 - ]], - [[ - 14382, - 14370, - 14365 - ]], - [[ - 14372, - 14389, - 14370 - ]], - [[ - 14382, - 14371, - 14370 - ]], - [[ - 14390, - 14372, - 14371 - ]], - [[ - 14337, - 14349, - 14348 - ]], - [[ - 14366, - 14333, - 8708 - ]], - [[ - 14366, - 14347, - 14349 - ]], - [[ - 14373, - 14354, - 14347 - ]], - [[ - 8707, - 14362, - 8708 - ]], - [[ - 14397, - 14391, - 14393 - ]], - [[ - 14339, - 14387, - 14351 - ]], - [[ - 14339, - 14380, - 14381 - ]], - [[ - 14373, - 14380, - 14354 - ]], - [[ - 14373, - 8708, - 14380 - ]], - [[ - 14389, - 14376, - 14364 - ]], - [[ - 14375, - 14342, - 14376 - ]], - [[ - 8707, - 14382, - 14362 - ]], - [[ - 14395, - 14390, - 14371 - ]], - [[ - 8707, - 14395, - 14382 - ]], - [[ - 8707, - 14355, - 14395 - ]], - [[ - 14363, - 14368, - 14345 - ]], - [[ - 14362, - 14369, - 14368 - ]], - [[ - 14337, - 14335, - 14349 - ]], - [[ - 14337, - 14336, - 14335 - ]], - [[ - 14347, - 14366, - 8708 - ]], - [[ - 14335, - 14333, - 14366 - ]], - [[ - 14394, - 14396, - 14393 - ]], - [[ - 14394, - 14398, - 14396 - ]], - [[ - 14369, - 14399, - 14352 - ]], - [[ - 14369, - 14398, - 14399 - ]], - [[ - 14369, - 14397, - 14398 - ]], - [[ - 14383, - 14391, - 14397 - ]], - [[ - 14369, - 14383, - 14397 - ]], - [[ - 14382, - 14365, - 14383 - ]], - [[ - 14344, - 14388, - 14345 - ]], - [[ - 14362, - 14368, - 14363 - ]], - [[ - 14370, - 14364, - 14365 - ]], - [[ - 14376, - 14342, - 14364 - ]], - [[ - 14345, - 14388, - 14363 - ]], - [[ - 14381, - 14380, - 14362 - ]], - [[ - 14361, - 14388, - 14387 - ]], - [[ - 14361, - 14363, - 14388 - ]], - [[ - 14387, - 14381, - 14361 - ]], - [[ - 14387, - 14339, - 14381 - ]], - [[ - 8707, - 8710, - 14342 - ]], - [[ - 8792, - 8708, - 14334 - ]], - [[ - 14342, - 8792, - 14334 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e580e10-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb7249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14400, - 10084, - 10083 - ]], - [[ - 10121, - 14400, - 10122 - ]], - [[ - 10122, - 14400, - 10124 - ]], - [[ - 10124, - 14400, - 10125 - ]], - [[ - 10125, - 14400, - 10127 - ]], - [[ - 10127, - 14400, - 10128 - ]], - [[ - 10128, - 14400, - 10130 - ]], - [[ - 10130, - 14400, - 10131 - ]], - [[ - 10131, - 14400, - 10332 - ]], - [[ - 10332, - 14400, - 10133 - ]], - [[ - 10133, - 14400, - 10134 - ]], - [[ - 10134, - 14400, - 10339 - ]], - [[ - 10339, - 14400, - 14401 - ]], - [[ - 10338, - 10339, - 14401 - ]], - [[ - 10337, - 10338, - 14401 - ]], - [[ - 10149, - 10337, - 14401 - ]], - [[ - 14401, - 14402, - 14403 - ]], - [[ - 10335, - 14401, - 10336 - ]], - [[ - 10336, - 14401, - 10399 - ]], - [[ - 10334, - 14401, - 14403 - ]], - [[ - 10398, - 10399, - 14401 - ]], - [[ - 10333, - 10398, - 14401 - ]], - [[ - 10334, - 10333, - 14401 - ]], - [[ - 10276, - 14404, - 10278 - ]], - [[ - 10404, - 10385, - 14403 - ]], - [[ - 10409, - 10404, - 14403 - ]], - [[ - 10326, - 10409, - 14403 - ]], - [[ - 14403, - 14402, - 14404 - ]], - [[ - 10322, - 14403, - 10320 - ]], - [[ - 10320, - 14403, - 10258 - ]], - [[ - 10258, - 14403, - 10261 - ]], - [[ - 10261, - 14403, - 10263 - ]], - [[ - 10263, - 14403, - 10265 - ]], - [[ - 10269, - 14403, - 14404 - ]], - [[ - 10267, - 10265, - 14403 - ]], - [[ - 10269, - 10267, - 14403 - ]], - [[ - 10274, - 10269, - 14404 - ]], - [[ - 10276, - 10274, - 14404 - ]], - [[ - 10250, - 14404, - 10135 - ]], - [[ - 10174, - 10278, - 14404 - ]], - [[ - 10279, - 10174, - 14404 - ]], - [[ - 10138, - 10279, - 14404 - ]], - [[ - 10139, - 10138, - 14404 - ]], - [[ - 10248, - 10139, - 14404 - ]], - [[ - 10250, - 10248, - 14404 - ]], - [[ - 10117, - 14400, - 10119 - ]], - [[ - 10136, - 10135, - 14404 - ]], - [[ - 10252, - 10136, - 14404 - ]], - [[ - 14404, - 14402, - 14400 - ]], - [[ - 10309, - 14404, - 10286 - ]], - [[ - 10286, - 14404, - 10289 - ]], - [[ - 10289, - 14404, - 10177 - ]], - [[ - 10177, - 14404, - 10290 - ]], - [[ - 10290, - 14404, - 10293 - ]], - [[ - 10293, - 14404, - 10297 - ]], - [[ - 10297, - 14404, - 10307 - ]], - [[ - 10307, - 14404, - 10298 - ]], - [[ - 10298, - 14404, - 10303 - ]], - [[ - 10303, - 14404, - 10305 - ]], - [[ - 10305, - 14404, - 10272 - ]], - [[ - 10272, - 14404, - 10313 - ]], - [[ - 10313, - 14404, - 10312 - ]], - [[ - 10312, - 14404, - 10311 - ]], - [[ - 10311, - 14404, - 10310 - ]], - [[ - 10310, - 14404, - 10283 - ]], - [[ - 10283, - 14404, - 10284 - ]], - [[ - 10284, - 14404, - 10306 - ]], - [[ - 10306, - 14404, - 10304 - ]], - [[ - 10304, - 14404, - 10301 - ]], - [[ - 10273, - 14404, - 14400 - ]], - [[ - 10273, - 10301, - 14404 - ]], - [[ - 10295, - 10273, - 14400 - ]], - [[ - 10292, - 10295, - 14400 - ]], - [[ - 10080, - 10292, - 14400 - ]], - [[ - 10081, - 10080, - 14400 - ]], - [[ - 10285, - 10081, - 14400 - ]], - [[ - 10088, - 10285, - 14400 - ]], - [[ - 10090, - 10088, - 14400 - ]], - [[ - 10096, - 10090, - 14400 - ]], - [[ - 10097, - 10096, - 14400 - ]], - [[ - 10099, - 10097, - 14400 - ]], - [[ - 10101, - 10099, - 14400 - ]], - [[ - 10106, - 10101, - 14400 - ]], - [[ - 10104, - 10106, - 14400 - ]], - [[ - 10107, - 10104, - 14400 - ]], - [[ - 10109, - 10107, - 14400 - ]], - [[ - 10111, - 10109, - 14400 - ]], - [[ - 10113, - 10111, - 14400 - ]], - [[ - 10115, - 10113, - 14400 - ]], - [[ - 10117, - 10115, - 14400 - ]], - [[ - 10385, - 10334, - 14403 - ]], - [[ - 14400, - 10083, - 10119 - ]], - [[ - 14401, - 14400, - 14402 - ]], - [[ - 10121, - 10084, - 14400 - ]], - [[ - 10253, - 14404, - 10309 - ]], - [[ - 10253, - 10252, - 14404 - ]], - [[ - 10323, - 14403, - 10322 - ]], - [[ - 10323, - 10326, - 14403 - ]], - [[ - 10150, - 14401, - 10335 - ]], - [[ - 10150, - 10149, - 14401 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e58829a-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba4e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14405, - 14406, - 14407 - ]], - [[ - 14408, - 14409, - 14410 - ]], - [[ - 14409, - 14411, - 14405 - ]], - [[ - 14412, - 14406, - 14405 - ]], - [[ - 14413, - 14414, - 14410 - ]], - [[ - 14410, - 14414, - 14408 - ]], - [[ - 14408, - 14414, - 14411 - ]], - [[ - 14413, - 14406, - 14412 - ]], - [[ - 14409, - 14405, - 14407 - ]], - [[ - 14412, - 14414, - 14413 - ]], - [[ - 14411, - 14415, - 14405 - ]], - [[ - 14411, - 14414, - 14415 - ]], - [[ - 14416, - 14412, - 14405 - ]], - [[ - 14416, - 14414, - 14412 - ]], - [[ - 14410, - 14409, - 14407 - ]], - [[ - 14408, - 14411, - 14409 - ]], - [[ - 14415, - 14416, - 14405 - ]], - [[ - 14415, - 14414, - 14416 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e58d102-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14417, - 14418, - 14419 - ]], - [[ - 14420, - 14419, - 14421 - ]], - [[ - 14422, - 14423, - 14424 - ]], - [[ - 14425, - 14418, - 14417 - ]], - [[ - 14426, - 14427, - 14424 - ]], - [[ - 14426, - 14428, - 14429 - ]], - [[ - 14430, - 14431, - 14417 - ]], - [[ - 14425, - 14432, - 14418 - ]], - [[ - 14429, - 14432, - 14425 - ]], - [[ - 14433, - 14418, - 14432 - ]], - [[ - 14434, - 14425, - 14431 - ]], - [[ - 14427, - 14426, - 14425 - ]], - [[ - 14430, - 14434, - 14431 - ]], - [[ - 14427, - 14425, - 14434 - ]], - [[ - 14420, - 14435, - 14430 - ]], - [[ - 14424, - 14434, - 14435 - ]], - [[ - 14424, - 14423, - 14426 - ]], - [[ - 14433, - 14432, - 14436 - ]], - [[ - 14423, - 14428, - 14426 - ]], - [[ - 14436, - 14432, - 14428 - ]], - [[ - 14422, - 14424, - 14437 - ]], - [[ - 14427, - 14434, - 14424 - ]], - [[ - 14433, - 14422, - 14421 - ]], - [[ - 14424, - 14435, - 14437 - ]], - [[ - 14438, - 14422, - 14437 - ]], - [[ - 14423, - 14436, - 14428 - ]], - [[ - 14426, - 14429, - 14425 - ]], - [[ - 14428, - 14432, - 14429 - ]], - [[ - 14438, - 14435, - 14420 - ]], - [[ - 14435, - 14434, - 14430 - ]], - [[ - 14438, - 14420, - 14421 - ]], - [[ - 14430, - 14419, - 14420 - ]], - [[ - 14422, - 14438, - 14421 - ]], - [[ - 14437, - 14435, - 14438 - ]], - [[ - 14433, - 14423, - 14422 - ]], - [[ - 14433, - 14436, - 14423 - ]], - [[ - 14430, - 14417, - 14419 - ]], - [[ - 14431, - 14425, - 14417 - ]], - [[ - 14419, - 14439, - 14421 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e5993eb-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14440, - 14441, - 14442 - ]], - [[ - 14443, - 14444, - 14445 - ]], - [[ - 14443, - 14446, - 14444 - ]], - [[ - 14447, - 14448, - 14444 - ]], - [[ - 14449, - 14450, - 14443 - ]], - [[ - 14446, - 14447, - 14444 - ]], - [[ - 14451, - 14449, - 14445 - ]], - [[ - 14452, - 14448, - 14441 - ]], - [[ - 14440, - 14453, - 14454 - ]], - [[ - 14455, - 14456, - 14457 - ]], - [[ - 14454, - 14457, - 14443 - ]], - [[ - 14458, - 14459, - 14457 - ]], - [[ - 14458, - 14456, - 14453 - ]], - [[ - 14458, - 14457, - 14456 - ]], - [[ - 14447, - 14458, - 14460 - ]], - [[ - 14459, - 14446, - 14443 - ]], - [[ - 14449, - 14443, - 14445 - ]], - [[ - 14457, - 14459, - 14443 - ]], - [[ - 14444, - 14452, - 14445 - ]], - [[ - 14444, - 14448, - 14452 - ]], - [[ - 14450, - 14454, - 14443 - ]], - [[ - 14453, - 14456, - 14455 - ]], - [[ - 14447, - 14461, - 14459 - ]], - [[ - 14447, - 14446, - 14461 - ]], - [[ - 14454, - 14453, - 14455 - ]], - [[ - 14460, - 14458, - 14453 - ]], - [[ - 14452, - 14451, - 14445 - ]], - [[ - 14462, - 14450, - 14449 - ]], - [[ - 14440, - 14450, - 14462 - ]], - [[ - 14454, - 14455, - 14457 - ]], - [[ - 14440, - 14454, - 14450 - ]], - [[ - 14440, - 14460, - 14453 - ]], - [[ - 14463, - 14451, - 14452 - ]], - [[ - 14462, - 14449, - 14451 - ]], - [[ - 14441, - 14440, - 14462 - ]], - [[ - 14442, - 14460, - 14440 - ]], - [[ - 14447, - 14459, - 14458 - ]], - [[ - 14461, - 14446, - 14459 - ]], - [[ - 14451, - 14463, - 14462 - ]], - [[ - 14448, - 14442, - 14441 - ]], - [[ - 14441, - 14463, - 14452 - ]], - [[ - 14441, - 14462, - 14463 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e5aa630-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efe6f749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14464, - 12663, - 3215 - ]], - [[ - 14465, - 14466, - 14467 - ]], - [[ - 14468, - 14465, - 14467 - ]], - [[ - 14469, - 3213, - 3168 - ]], - [[ - 14470, - 14471, - 14472 - ]], - [[ - 14473, - 3214, - 12663 - ]], - [[ - 14474, - 14475, - 3048 - ]], - [[ - 14476, - 12663, - 14477 - ]], - [[ - 14478, - 14479, - 14480 - ]], - [[ - 14481, - 14482, - 14483 - ]], - [[ - 14484, - 14485, - 14486 - ]], - [[ - 14487, - 14488, - 14489 - ]], - [[ - 14485, - 14487, - 14490 - ]], - [[ - 14491, - 14492, - 14493 - ]], - [[ - 14488, - 14487, - 14494 - ]], - [[ - 14495, - 14472, - 14496 - ]], - [[ - 14482, - 14472, - 14495 - ]], - [[ - 14491, - 14479, - 14034 - ]], - [[ - 14497, - 14498, - 14483 - ]], - [[ - 14499, - 3214, - 14473 - ]], - [[ - 14493, - 14492, - 14500 - ]], - [[ - 14494, - 14487, - 3214 - ]], - [[ - 14481, - 14483, - 14499 - ]], - [[ - 14499, - 14483, - 14498 - ]], - [[ - 14471, - 14501, - 14496 - ]], - [[ - 14482, - 14481, - 14472 - ]], - [[ - 3049, - 14468, - 3215 - ]], - [[ - 3049, - 3048, - 14468 - ]], - [[ - 14502, - 14503, - 14504 - ]], - [[ - 14505, - 14479, - 14478 - ]], - [[ - 14491, - 14482, - 14501 - ]], - [[ - 14506, - 14488, - 14494 - ]], - [[ - 14482, - 14497, - 14483 - ]], - [[ - 14484, - 14486, - 14469 - ]], - [[ - 14491, - 14501, - 14492 - ]], - [[ - 14501, - 14495, - 14496 - ]], - [[ - 14500, - 14470, - 14493 - ]], - [[ - 14507, - 14479, - 14508 - ]], - [[ - 14476, - 14504, - 12663 - ]], - [[ - 14503, - 14478, - 14504 - ]], - [[ - 14509, - 14476, - 14477 - ]], - [[ - 14502, - 14504, - 14476 - ]], - [[ - 14510, - 14507, - 14473 - ]], - [[ - 14499, - 14498, - 14494 - ]], - [[ - 14472, - 14481, - 14499 - ]], - [[ - 14498, - 14497, - 14506 - ]], - [[ - 14511, - 14500, - 14492 - ]], - [[ - 14511, - 14471, - 14500 - ]], - [[ - 14512, - 14513, - 14491 - ]], - [[ - 14470, - 14514, - 14512 - ]], - [[ - 3214, - 14484, - 3168 - ]], - [[ - 14486, - 14515, - 14469 - ]], - [[ - 14489, - 14490, - 14487 - ]], - [[ - 14515, - 14486, - 14490 - ]], - [[ - 14486, - 14485, - 14490 - ]], - [[ - 3214, - 14487, - 14485 - ]], - [[ - 14471, - 14511, - 14501 - ]], - [[ - 14492, - 14501, - 14511 - ]], - [[ - 14472, - 14499, - 14470 - ]], - [[ - 14494, - 3214, - 14499 - ]], - [[ - 14478, - 14480, - 12663 - ]], - [[ - 14507, - 14508, - 14473 - ]], - [[ - 14474, - 14502, - 14476 - ]], - [[ - 14516, - 14503, - 14502 - ]], - [[ - 14517, - 14466, - 14475 - ]], - [[ - 14509, - 14518, - 14476 - ]], - [[ - 14464, - 14519, - 14477 - ]], - [[ - 14518, - 14474, - 14476 - ]], - [[ - 14480, - 14507, - 14510 - ]], - [[ - 14520, - 14470, - 14473 - ]], - [[ - 14493, - 14512, - 14491 - ]], - [[ - 14508, - 14479, - 14513 - ]], - [[ - 3048, - 14465, - 14468 - ]], - [[ - 3048, - 14466, - 14465 - ]], - [[ - 14034, - 14474, - 3048 - ]], - [[ - 14034, - 14516, - 14474 - ]], - [[ - 14519, - 14475, - 14477 - ]], - [[ - 14521, - 14522, - 14517 - ]], - [[ - 14477, - 14475, - 14509 - ]], - [[ - 14475, - 14474, - 14518 - ]], - [[ - 14504, - 14478, - 12663 - ]], - [[ - 14503, - 14516, - 14505 - ]], - [[ - 14503, - 14505, - 14478 - ]], - [[ - 14034, - 14479, - 14505 - ]], - [[ - 3213, - 14497, - 14482 - ]], - [[ - 14515, - 14489, - 14497 - ]], - [[ - 14498, - 14506, - 14494 - ]], - [[ - 14497, - 14488, - 14506 - ]], - [[ - 14497, - 14489, - 14488 - ]], - [[ - 14515, - 14490, - 14489 - ]], - [[ - 12663, - 14480, - 14510 - ]], - [[ - 14479, - 14507, - 14480 - ]], - [[ - 14508, - 14514, - 14520 - ]], - [[ - 14508, - 14513, - 14514 - ]], - [[ - 14474, - 14516, - 14502 - ]], - [[ - 14034, - 14505, - 14516 - ]], - [[ - 14468, - 14467, - 3215 - ]], - [[ - 14517, - 14475, - 14521 - ]], - [[ - 3213, - 14482, - 14491 - ]], - [[ - 14482, - 14495, - 14501 - ]], - [[ - 14472, - 14471, - 14496 - ]], - [[ - 14470, - 14500, - 14471 - ]], - [[ - 14479, - 14491, - 14513 - ]], - [[ - 14034, - 3213, - 14491 - ]], - [[ - 3168, - 14484, - 14469 - ]], - [[ - 3214, - 14485, - 14484 - ]], - [[ - 14509, - 14475, - 14518 - ]], - [[ - 14466, - 3048, - 14475 - ]], - [[ - 12663, - 14464, - 14477 - ]], - [[ - 3215, - 14467, - 14522 - ]], - [[ - 14519, - 14521, - 14475 - ]], - [[ - 14519, - 14464, - 14521 - ]], - [[ - 14522, - 14464, - 3215 - ]], - [[ - 14522, - 14521, - 14464 - ]], - [[ - 3213, - 14515, - 14497 - ]], - [[ - 3213, - 14469, - 14515 - ]], - [[ - 14467, - 14517, - 14522 - ]], - [[ - 14467, - 14466, - 14517 - ]], - [[ - 14510, - 14473, - 12663 - ]], - [[ - 14470, - 14499, - 14473 - ]], - [[ - 14508, - 14520, - 14473 - ]], - [[ - 14514, - 14470, - 14520 - ]], - [[ - 14470, - 14512, - 14493 - ]], - [[ - 14514, - 14513, - 14512 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e5b9032-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14523, - 14524, - 14525 - ]], - [[ - 14526, - 14527, - 14528 - ]], - [[ - 14529, - 14530, - 14523 - ]], - [[ - 14531, - 14532, - 14533 - ]], - [[ - 14534, - 14535, - 14536 - ]], - [[ - 14537, - 14538, - 14539 - ]], - [[ - 14540, - 14530, - 14529 - ]], - [[ - 14533, - 14532, - 14527 - ]], - [[ - 14526, - 14529, - 14523 - ]], - [[ - 14523, - 14525, - 14526 - ]], - [[ - 14536, - 14540, - 14528 - ]], - [[ - 14535, - 14530, - 14540 - ]], - [[ - 14530, - 14524, - 14523 - ]], - [[ - 14530, - 14535, - 14537 - ]], - [[ - 14541, - 14542, - 14539 - ]], - [[ - 14543, - 14532, - 14539 - ]], - [[ - 14544, - 14537, - 14535 - ]], - [[ - 14545, - 14538, - 14537 - ]], - [[ - 14542, - 14537, - 14539 - ]], - [[ - 14538, - 14543, - 14539 - ]], - [[ - 14531, - 14546, - 14547 - ]], - [[ - 14539, - 14532, - 14541 - ]], - [[ - 14525, - 14533, - 14527 - ]], - [[ - 14547, - 14542, - 14541 - ]], - [[ - 14526, - 14525, - 14527 - ]], - [[ - 14524, - 14546, - 14525 - ]], - [[ - 14534, - 14544, - 14535 - ]], - [[ - 14543, - 14545, - 14544 - ]], - [[ - 14530, - 14542, - 14524 - ]], - [[ - 14530, - 14537, - 14542 - ]], - [[ - 14525, - 14546, - 14533 - ]], - [[ - 14547, - 14541, - 14532 - ]], - [[ - 14534, - 14536, - 14528 - ]], - [[ - 14535, - 14540, - 14536 - ]], - [[ - 14533, - 14546, - 14531 - ]], - [[ - 14524, - 14542, - 14546 - ]], - [[ - 14531, - 14547, - 14532 - ]], - [[ - 14546, - 14542, - 14547 - ]], - [[ - 14543, - 14534, - 14528 - ]], - [[ - 14543, - 14544, - 14534 - ]], - [[ - 14544, - 14545, - 14537 - ]], - [[ - 14543, - 14538, - 14545 - ]], - [[ - 14540, - 14526, - 14528 - ]], - [[ - 14540, - 14529, - 14526 - ]], - [[ - 14548, - 14532, - 14543 - ]], - [[ - 14527, - 14549, - 14528 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e5bb778-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1012, - 1014, - 14550 - ]], - [[ - 14551, - 1009, - 1022 - ]], - [[ - 14551, - 14550, - 1009 - ]], - [[ - 1014, - 1009, - 14550 - ]], - [[ - 1012, - 14551, - 1022 - ]], - [[ - 1012, - 14550, - 14551 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e5cc8bd-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14552, - 14553, - 14554 - ]], - [[ - 14555, - 14556, - 14557 - ]], - [[ - 14558, - 14559, - 14555 - ]], - [[ - 14560, - 14561, - 14562 - ]], - [[ - 14563, - 14557, - 14564 - ]], - [[ - 14556, - 14565, - 14557 - ]], - [[ - 14566, - 14567, - 14568 - ]], - [[ - 14566, - 14569, - 14570 - ]], - [[ - 14562, - 14571, - 14560 - ]], - [[ - 14563, - 14564, - 14560 - ]], - [[ - 14572, - 14573, - 14574 - ]], - [[ - 14575, - 14576, - 14559 - ]], - [[ - 14566, - 14568, - 14554 - ]], - [[ - 14568, - 14577, - 14578 - ]], - [[ - 14579, - 14552, - 14554 - ]], - [[ - 14579, - 14578, - 14552 - ]], - [[ - 14554, - 14568, - 14578 - ]], - [[ - 14580, - 14558, - 14557 - ]], - [[ - 14576, - 14577, - 14559 - ]], - [[ - 14568, - 14567, - 14581 - ]], - [[ - 14568, - 14581, - 14577 - ]], - [[ - 14570, - 14569, - 14565 - ]], - [[ - 14582, - 14578, - 14577 - ]], - [[ - 14579, - 14554, - 14578 - ]], - [[ - 14583, - 14584, - 14585 - ]], - [[ - 14586, - 14578, - 14587 - ]], - [[ - 14553, - 14584, - 14563 - ]], - [[ - 14588, - 14580, - 14563 - ]], - [[ - 14587, - 14589, - 14575 - ]], - [[ - 14589, - 14578, - 14582 - ]], - [[ - 14558, - 14575, - 14559 - ]], - [[ - 14582, - 14577, - 14576 - ]], - [[ - 14571, - 14553, - 14563 - ]], - [[ - 14590, - 14583, - 14591 - ]], - [[ - 14585, - 14586, - 14583 - ]], - [[ - 14552, - 14578, - 14586 - ]], - [[ - 14580, - 14572, - 14574 - ]], - [[ - 14592, - 14584, - 14573 - ]], - [[ - 14580, - 14588, - 14572 - ]], - [[ - 14588, - 14584, - 14592 - ]], - [[ - 14558, - 14580, - 14591 - ]], - [[ - 14557, - 14563, - 14580 - ]], - [[ - 14583, - 14590, - 14584 - ]], - [[ - 14572, - 14592, - 14573 - ]], - [[ - 14584, - 14588, - 14563 - ]], - [[ - 14592, - 14572, - 14588 - ]], - [[ - 14575, - 14589, - 14582 - ]], - [[ - 14587, - 14578, - 14589 - ]], - [[ - 14577, - 14581, - 14559 - ]], - [[ - 14567, - 14566, - 14581 - ]], - [[ - 14581, - 14555, - 14559 - ]], - [[ - 14570, - 14556, - 14555 - ]], - [[ - 14557, - 14558, - 14555 - ]], - [[ - 14591, - 14575, - 14558 - ]], - [[ - 14587, - 14583, - 14586 - ]], - [[ - 14587, - 14591, - 14583 - ]], - [[ - 14554, - 14553, - 14562 - ]], - [[ - 14585, - 14584, - 14553 - ]], - [[ - 14552, - 14585, - 14553 - ]], - [[ - 14552, - 14586, - 14585 - ]], - [[ - 14576, - 14575, - 14582 - ]], - [[ - 14591, - 14587, - 14575 - ]], - [[ - 14581, - 14570, - 14555 - ]], - [[ - 14581, - 14566, - 14570 - ]], - [[ - 14565, - 14564, - 14557 - ]], - [[ - 14569, - 14561, - 14564 - ]], - [[ - 14563, - 14560, - 14571 - ]], - [[ - 14564, - 14561, - 14560 - ]], - [[ - 14580, - 14574, - 14591 - ]], - [[ - 14573, - 14584, - 14574 - ]], - [[ - 14570, - 14565, - 14556 - ]], - [[ - 14569, - 14564, - 14565 - ]], - [[ - 14554, - 14562, - 14561 - ]], - [[ - 14553, - 14571, - 14562 - ]], - [[ - 14574, - 14590, - 14591 - ]], - [[ - 14574, - 14584, - 14590 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b8e5e0130-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1ae49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14593, - 13701, - 14594 - ]], - [[ - 14595, - 13700, - 14596 - ]], - [[ - 14596, - 14597, - 14595 - ]], - [[ - 14598, - 14599, - 14600 - ]], - [[ - 14601, - 13700, - 14602 - ]], - [[ - 14600, - 13702, - 13701 - ]], - [[ - 14603, - 14604, - 14605 - ]], - [[ - 14606, - 14607, - 14608 - ]], - [[ - 13701, - 14593, - 14609 - ]], - [[ - 14610, - 14611, - 14612 - ]], - [[ - 14613, - 14605, - 14614 - ]], - [[ - 14615, - 14604, - 14616 - ]], - [[ - 14617, - 14618, - 14607 - ]], - [[ - 14619, - 14604, - 14603 - ]], - [[ - 14600, - 14599, - 13702 - ]], - [[ - 14617, - 14607, - 14620 - ]], - [[ - 14609, - 14600, - 13701 - ]], - [[ - 14609, - 14598, - 14600 - ]], - [[ - 14614, - 14605, - 14604 - ]], - [[ - 14621, - 14603, - 14605 - ]], - [[ - 14595, - 14612, - 13700 - ]], - [[ - 14611, - 14594, - 13700 - ]], - [[ - 14622, - 14602, - 14615 - ]], - [[ - 13700, - 13699, - 14613 - ]], - [[ - 14623, - 14614, - 14604 - ]], - [[ - 14602, - 13700, - 14613 - ]], - [[ - 14606, - 14608, - 14619 - ]], - [[ - 14608, - 14624, - 14619 - ]], - [[ - 14597, - 14625, - 14616 - ]], - [[ - 14602, - 14614, - 14623 - ]], - [[ - 14609, - 14610, - 14616 - ]], - [[ - 14609, - 14593, - 14610 - ]], - [[ - 14612, - 14611, - 13700 - ]], - [[ - 14594, - 13701, - 13700 - ]], - [[ - 14625, - 14615, - 14616 - ]], - [[ - 14622, - 14601, - 14602 - ]], - [[ - 14595, - 14597, - 14616 - ]], - [[ - 14596, - 14625, - 14597 - ]], - [[ - 14602, - 14613, - 14614 - ]], - [[ - 14621, - 14605, - 14613 - ]], - [[ - 14610, - 14594, - 14611 - ]], - [[ - 14610, - 14593, - 14594 - ]], - [[ - 14610, - 14595, - 14616 - ]], - [[ - 14610, - 14612, - 14595 - ]], - [[ - 13702, - 14620, - 13699 - ]], - [[ - 13702, - 14599, - 14618 - ]], - [[ - 14625, - 14622, - 14615 - ]], - [[ - 14625, - 14596, - 14622 - ]], - [[ - 14598, - 14618, - 14599 - ]], - [[ - 14598, - 14624, - 14618 - ]], - [[ - 13702, - 14617, - 14620 - ]], - [[ - 13702, - 14618, - 14617 - ]], - [[ - 13699, - 14621, - 14613 - ]], - [[ - 13699, - 14603, - 14621 - ]], - [[ - 14615, - 14623, - 14604 - ]], - [[ - 14615, - 14602, - 14623 - ]], - [[ - 14618, - 14624, - 14607 - ]], - [[ - 14598, - 14604, - 14624 - ]], - [[ - 13699, - 14606, - 14603 - ]], - [[ - 14607, - 14624, - 14608 - ]], - [[ - 14620, - 14606, - 13699 - ]], - [[ - 14620, - 14607, - 14606 - ]], - [[ - 14596, - 14601, - 14622 - ]], - [[ - 14596, - 13700, - 14601 - ]], - [[ - 14606, - 14619, - 14603 - ]], - [[ - 14624, - 14604, - 14619 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95c79603-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14626, - 14627, - 14628 - ]], - [[ - 14629, - 14630, - 14631 - ]], - [[ - 14629, - 14632, - 14630 - ]], - [[ - 14633, - 14630, - 14634 - ]], - [[ - 14632, - 14635, - 14636 - ]], - [[ - 14637, - 14638, - 14639 - ]], - [[ - 14640, - 14641, - 14642 - ]], - [[ - 14643, - 14644, - 14645 - ]], - [[ - 14646, - 14647, - 14626 - ]], - [[ - 14648, - 14649, - 14633 - ]], - [[ - 14650, - 14649, - 14651 - ]], - [[ - 14651, - 14630, - 14650 - ]], - [[ - 14652, - 14653, - 14654 - ]], - [[ - 14655, - 14636, - 14656 - ]], - [[ - 14657, - 14658, - 14659 - ]], - [[ - 14660, - 14644, - 14643 - ]], - [[ - 14661, - 14658, - 14662 - ]], - [[ - 14663, - 14635, - 14664 - ]], - [[ - 14661, - 14659, - 14658 - ]], - [[ - 14656, - 14635, - 14663 - ]], - [[ - 14665, - 14641, - 14666 - ]], - [[ - 14640, - 14662, - 14667 - ]], - [[ - 14668, - 14638, - 14669 - ]], - [[ - 14659, - 14670, - 14660 - ]], - [[ - 14671, - 14642, - 14672 - ]], - [[ - 14642, - 14641, - 14673 - ]], - [[ - 14674, - 14647, - 14646 - ]], - [[ - 14675, - 14676, - 14653 - ]], - [[ - 14634, - 14648, - 14633 - ]], - [[ - 14634, - 14632, - 14636 - ]], - [[ - 14626, - 14663, - 14627 - ]], - [[ - 14655, - 14652, - 14677 - ]], - [[ - 14640, - 14678, - 14666 - ]], - [[ - 14654, - 14657, - 14677 - ]], - [[ - 14675, - 14653, - 14656 - ]], - [[ - 14667, - 14658, - 14657 - ]], - [[ - 14679, - 14680, - 14681 - ]], - [[ - 14638, - 14672, - 14673 - ]], - [[ - 14679, - 14681, - 14674 - ]], - [[ - 14682, - 14683, - 14669 - ]], - [[ - 14648, - 14655, - 14649 - ]], - [[ - 14657, - 14659, - 14651 - ]], - [[ - 14651, - 14649, - 14657 - ]], - [[ - 14677, - 14657, - 14649 - ]], - [[ - 14649, - 14655, - 14677 - ]], - [[ - 14636, - 14635, - 14656 - ]], - [[ - 14647, - 14684, - 14685 - ]], - [[ - 14686, - 14687, - 14688 - ]], - [[ - 14689, - 14685, - 14687 - ]], - [[ - 14666, - 14689, - 14690 - ]], - [[ - 14691, - 14647, - 14685 - ]], - [[ - 14692, - 14682, - 14673 - ]], - [[ - 14638, - 14673, - 14682 - ]], - [[ - 14672, - 14642, - 14673 - ]], - [[ - 14693, - 14646, - 14694 - ]], - [[ - 14627, - 14663, - 14664 - ]], - [[ - 14629, - 14695, - 14664 - ]], - [[ - 14696, - 14626, - 14628 - ]], - [[ - 14679, - 14674, - 14693 - ]], - [[ - 14695, - 14628, - 14664 - ]], - [[ - 14697, - 14694, - 14631 - ]], - [[ - 14697, - 14693, - 14694 - ]], - [[ - 14698, - 14679, - 14697 - ]], - [[ - 14699, - 14688, - 14684 - ]], - [[ - 14659, - 14660, - 14643 - ]], - [[ - 14671, - 14672, - 14700 - ]], - [[ - 14670, - 14661, - 14701 - ]], - [[ - 14662, - 14658, - 14667 - ]], - [[ - 14626, - 14675, - 14663 - ]], - [[ - 14676, - 14689, - 14653 - ]], - [[ - 14691, - 14676, - 14675 - ]], - [[ - 14689, - 14678, - 14654 - ]], - [[ - 14686, - 14688, - 14683 - ]], - [[ - 14681, - 14680, - 14688 - ]], - [[ - 14666, - 14690, - 14665 - ]], - [[ - 14688, - 14668, - 14683 - ]], - [[ - 14678, - 14689, - 14666 - ]], - [[ - 14687, - 14684, - 14688 - ]], - [[ - 14632, - 14664, - 14635 - ]], - [[ - 14628, - 14627, - 14664 - ]], - [[ - 14645, - 14659, - 14643 - ]], - [[ - 14645, - 14651, - 14659 - ]], - [[ - 14641, - 14640, - 14666 - ]], - [[ - 14642, - 14662, - 14640 - ]], - [[ - 14688, - 14702, - 14668 - ]], - [[ - 14637, - 14703, - 14638 - ]], - [[ - 14704, - 14629, - 14631 - ]], - [[ - 14705, - 14646, - 14696 - ]], - [[ - 14705, - 14696, - 14628 - ]], - [[ - 14646, - 14626, - 14696 - ]], - [[ - 14694, - 14705, - 14704 - ]], - [[ - 14694, - 14646, - 14705 - ]], - [[ - 14694, - 14704, - 14631 - ]], - [[ - 14705, - 14628, - 14695 - ]], - [[ - 14706, - 14702, - 14680 - ]], - [[ - 14668, - 14639, - 14638 - ]], - [[ - 14680, - 14702, - 14688 - ]], - [[ - 14706, - 14639, - 14702 - ]], - [[ - 14678, - 14667, - 14654 - ]], - [[ - 14678, - 14640, - 14667 - ]], - [[ - 14631, - 14680, - 14679 - ]], - [[ - 14706, - 14707, - 14639 - ]], - [[ - 14647, - 14691, - 14675 - ]], - [[ - 14685, - 14676, - 14691 - ]], - [[ - 14692, - 14665, - 14690 - ]], - [[ - 14692, - 14641, - 14665 - ]], - [[ - 14642, - 14701, - 14662 - ]], - [[ - 14662, - 14701, - 14661 - ]], - [[ - 14633, - 14650, - 14630 - ]], - [[ - 14633, - 14649, - 14650 - ]], - [[ - 14685, - 14684, - 14708 - ]], - [[ - 14647, - 14699, - 14684 - ]], - [[ - 14685, - 14689, - 14676 - ]], - [[ - 14685, - 14708, - 14687 - ]], - [[ - 14638, - 14703, - 14672 - ]], - [[ - 14703, - 14644, - 14709 - ]], - [[ - 14671, - 14701, - 14642 - ]], - [[ - 14670, - 14659, - 14661 - ]], - [[ - 14703, - 14671, - 14700 - ]], - [[ - 14709, - 14701, - 14671 - ]], - [[ - 14672, - 14703, - 14700 - ]], - [[ - 14707, - 14644, - 14703 - ]], - [[ - 14703, - 14709, - 14671 - ]], - [[ - 14644, - 14660, - 14709 - ]], - [[ - 14709, - 14670, - 14701 - ]], - [[ - 14709, - 14660, - 14670 - ]], - [[ - 14648, - 14636, - 14655 - ]], - [[ - 14648, - 14634, - 14636 - ]], - [[ - 14683, - 14668, - 14669 - ]], - [[ - 14702, - 14639, - 14668 - ]], - [[ - 14679, - 14693, - 14697 - ]], - [[ - 14674, - 14646, - 14693 - ]], - [[ - 14626, - 14647, - 14675 - ]], - [[ - 14699, - 14681, - 14688 - ]], - [[ - 14674, - 14699, - 14647 - ]], - [[ - 14674, - 14681, - 14699 - ]], - [[ - 14631, - 14698, - 14697 - ]], - [[ - 14631, - 14679, - 14698 - ]], - [[ - 14686, - 14682, - 14690 - ]], - [[ - 14673, - 14641, - 14692 - ]], - [[ - 14675, - 14656, - 14663 - ]], - [[ - 14653, - 14655, - 14656 - ]], - [[ - 14689, - 14654, - 14653 - ]], - [[ - 14667, - 14657, - 14654 - ]], - [[ - 14677, - 14652, - 14654 - ]], - [[ - 14655, - 14653, - 14652 - ]], - [[ - 14689, - 14687, - 14686 - ]], - [[ - 14708, - 14684, - 14687 - ]], - [[ - 14682, - 14686, - 14683 - ]], - [[ - 14690, - 14689, - 14686 - ]], - [[ - 14631, - 14706, - 14680 - ]], - [[ - 14631, - 14707, - 14706 - ]], - [[ - 14704, - 14695, - 14629 - ]], - [[ - 14704, - 14705, - 14695 - ]], - [[ - 14630, - 14632, - 14634 - ]], - [[ - 14629, - 14664, - 14632 - ]], - [[ - 14644, - 14651, - 14645 - ]], - [[ - 14644, - 14630, - 14651 - ]], - [[ - 14707, - 14637, - 14639 - ]], - [[ - 14707, - 14703, - 14637 - ]], - [[ - 14638, - 14682, - 14669 - ]], - [[ - 14692, - 14690, - 14682 - ]], - [[ - 14710, - 14711, - 14707 - ]], - [[ - 14707, - 14711, - 14644 - ]], - [[ - 14631, - 14710, - 14707 - ]], - [[ - 14712, - 14631, - 14630 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95c8a81e-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb7649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14713, - 14714, - 14715 - ]], - [[ - 14716, - 14715, - 14717 - ]], - [[ - 14716, - 14718, - 14715 - ]], - [[ - 14716, - 14717, - 14719 - ]], - [[ - 14720, - 14715, - 14718 - ]], - [[ - 14714, - 14717, - 14715 - ]], - [[ - 14720, - 14713, - 14715 - ]], - [[ - 14721, - 14714, - 14713 - ]], - [[ - 14721, - 14722, - 14719 - ]], - [[ - 14721, - 14713, - 14722 - ]], - [[ - 14722, - 14716, - 14719 - ]], - [[ - 14722, - 14718, - 14716 - ]], - [[ - 14722, - 14720, - 14718 - ]], - [[ - 14722, - 14713, - 14720 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95c9e082-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb7549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14723, - 14724, - 14725 - ]], - [[ - 14726, - 14725, - 14727 - ]], - [[ - 14726, - 14723, - 14725 - ]], - [[ - 14728, - 14724, - 14723 - ]], - [[ - 14728, - 14726, - 14727 - ]], - [[ - 14728, - 14723, - 14726 - ]], - [[ - 14729, - 14724, - 14728 - ]], - [[ - 14727, - 14729, - 14728 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95cb8e76-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14730, - 14731, - 14732 - ]], - [[ - 14733, - 14732, - 14734 - ]], - [[ - 14733, - 14730, - 14732 - ]], - [[ - 14735, - 14731, - 14730 - ]], - [[ - 14735, - 14733, - 14734 - ]], - [[ - 14735, - 14730, - 14733 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95cc2a0d-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14736, - 14737, - 14738 - ]], - [[ - 14739, - 14738, - 14740 - ]], - [[ - 14737, - 14741, - 14742 - ]], - [[ - 14743, - 14738, - 14739 - ]], - [[ - 14740, - 14744, - 14739 - ]], - [[ - 14745, - 14746, - 14737 - ]], - [[ - 14747, - 14744, - 14740 - ]], - [[ - 14742, - 14741, - 14744 - ]], - [[ - 14744, - 14743, - 14739 - ]], - [[ - 14744, - 14741, - 14736 - ]], - [[ - 14743, - 14736, - 14738 - ]], - [[ - 14743, - 14744, - 14736 - ]], - [[ - 14738, - 14737, - 14746 - ]], - [[ - 14736, - 14741, - 14737 - ]], - [[ - 14747, - 14742, - 14744 - ]], - [[ - 14747, - 14745, - 14742 - ]], - [[ - 14742, - 14745, - 14737 - ]], - [[ - 14747, - 14746, - 14745 - ]], - [[ - 14738, - 14748, - 14740 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95cc786f-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8d549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14749, - 14750, - 14751 - ]], - [[ - 14752, - 14753, - 14754 - ]], - [[ - 14755, - 14756, - 14757 - ]], - [[ - 14758, - 14759, - 14760 - ]], - [[ - 14761, - 14762, - 14763 - ]], - [[ - 14752, - 14764, - 14753 - ]], - [[ - 14756, - 14765, - 14766 - ]], - [[ - 14767, - 14768, - 14769 - ]], - [[ - 14766, - 14765, - 14770 - ]], - [[ - 14771, - 14751, - 14772 - ]], - [[ - 14773, - 14757, - 14774 - ]], - [[ - 14775, - 14750, - 14749 - ]], - [[ - 14776, - 14777, - 14752 - ]], - [[ - 14772, - 14764, - 14778 - ]], - [[ - 14762, - 14752, - 14754 - ]], - [[ - 14770, - 14760, - 14779 - ]], - [[ - 14768, - 14780, - 14763 - ]], - [[ - 14763, - 14754, - 14753 - ]], - [[ - 14766, - 14775, - 14756 - ]], - [[ - 14766, - 14750, - 14775 - ]], - [[ - 14775, - 14757, - 14756 - ]], - [[ - 14762, - 14754, - 14763 - ]], - [[ - 14749, - 14781, - 14782 - ]], - [[ - 14783, - 14784, - 14785 - ]], - [[ - 14786, - 14776, - 14762 - ]], - [[ - 14749, - 14751, - 14781 - ]], - [[ - 14780, - 14787, - 14788 - ]], - [[ - 14789, - 14790, - 14783 - ]], - [[ - 14757, - 14788, - 14755 - ]], - [[ - 14757, - 14773, - 14788 - ]], - [[ - 14781, - 14784, - 14782 - ]], - [[ - 14780, - 14768, - 14791 - ]], - [[ - 14790, - 14786, - 14761 - ]], - [[ - 14781, - 14751, - 14785 - ]], - [[ - 14758, - 14768, - 14767 - ]], - [[ - 14769, - 14753, - 14792 - ]], - [[ - 14761, - 14786, - 14762 - ]], - [[ - 14789, - 14793, - 14790 - ]], - [[ - 14793, - 14789, - 14786 - ]], - [[ - 14794, - 14752, - 14777 - ]], - [[ - 14776, - 14786, - 14777 - ]], - [[ - 14761, - 14795, - 14796 - ]], - [[ - 14773, - 14782, - 14797 - ]], - [[ - 14774, - 14749, - 14782 - ]], - [[ - 14775, - 14774, - 14757 - ]], - [[ - 14775, - 14749, - 14774 - ]], - [[ - 14798, - 14794, - 14771 - ]], - [[ - 14778, - 14752, - 14794 - ]], - [[ - 14763, - 14769, - 14768 - ]], - [[ - 14763, - 14753, - 14769 - ]], - [[ - 14761, - 14796, - 14790 - ]], - [[ - 14795, - 14788, - 14773 - ]], - [[ - 14796, - 14797, - 14790 - ]], - [[ - 14796, - 14773, - 14797 - ]], - [[ - 14783, - 14799, - 14789 - ]], - [[ - 14793, - 14786, - 14790 - ]], - [[ - 14797, - 14783, - 14790 - ]], - [[ - 14789, - 14777, - 14786 - ]], - [[ - 14784, - 14783, - 14797 - ]], - [[ - 14789, - 14771, - 14794 - ]], - [[ - 14785, - 14799, - 14783 - ]], - [[ - 14771, - 14772, - 14798 - ]], - [[ - 14764, - 14792, - 14753 - ]], - [[ - 14770, - 14779, - 14750 - ]], - [[ - 14756, - 14787, - 14770 - ]], - [[ - 14756, - 14755, - 14787 - ]], - [[ - 14776, - 14752, - 14762 - ]], - [[ - 14778, - 14764, - 14752 - ]], - [[ - 14795, - 14800, - 14788 - ]], - [[ - 14787, - 14758, - 14770 - ]], - [[ - 14785, - 14771, - 14799 - ]], - [[ - 14785, - 14751, - 14771 - ]], - [[ - 14792, - 14760, - 14759 - ]], - [[ - 14770, - 14750, - 14766 - ]], - [[ - 14764, - 14779, - 14760 - ]], - [[ - 14764, - 14750, - 14779 - ]], - [[ - 14767, - 14792, - 14759 - ]], - [[ - 14764, - 14760, - 14792 - ]], - [[ - 14778, - 14798, - 14772 - ]], - [[ - 14778, - 14794, - 14798 - ]], - [[ - 14788, - 14787, - 14755 - ]], - [[ - 14791, - 14758, - 14787 - ]], - [[ - 14782, - 14784, - 14797 - ]], - [[ - 14781, - 14785, - 14784 - ]], - [[ - 14800, - 14780, - 14788 - ]], - [[ - 14761, - 14763, - 14780 - ]], - [[ - 14758, - 14767, - 14759 - ]], - [[ - 14769, - 14792, - 14767 - ]], - [[ - 14771, - 14789, - 14799 - ]], - [[ - 14794, - 14777, - 14789 - ]], - [[ - 14756, - 14770, - 14765 - ]], - [[ - 14758, - 14760, - 14770 - ]], - [[ - 14782, - 14773, - 14774 - ]], - [[ - 14796, - 14795, - 14773 - ]], - [[ - 14780, - 14791, - 14787 - ]], - [[ - 14768, - 14758, - 14791 - ]], - [[ - 14761, - 14800, - 14795 - ]], - [[ - 14761, - 14780, - 14800 - ]], - [[ - 14764, - 14801, - 14750 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95cc9f9d-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14802, - 3101, - 3166 - ]], - [[ - 14803, - 3167, - 3101 - ]], - [[ - 14804, - 14805, - 14806 - ]], - [[ - 14807, - 14808, - 14609 - ]], - [[ - 14809, - 14810, - 14811 - ]], - [[ - 14812, - 14813, - 14814 - ]], - [[ - 14815, - 13091, - 14816 - ]], - [[ - 14817, - 14818, - 14819 - ]], - [[ - 14820, - 13097, - 13086 - ]], - [[ - 14819, - 14821, - 13085 - ]], - [[ - 14822, - 14823, - 14824 - ]], - [[ - 14825, - 14826, - 14604 - ]], - [[ - 14827, - 14828, - 14829 - ]], - [[ - 14830, - 14831, - 14616 - ]], - [[ - 14808, - 14832, - 14609 - ]], - [[ - 14825, - 13090, - 14826 - ]], - [[ - 14833, - 14834, - 14835 - ]], - [[ - 14805, - 14811, - 14810 - ]], - [[ - 14805, - 14810, - 3166 - ]], - [[ - 14836, - 14837, - 14838 - ]], - [[ - 12217, - 14839, - 3166 - ]], - [[ - 14836, - 14826, - 13090 - ]], - [[ - 14806, - 14837, - 14840 - ]], - [[ - 14826, - 14841, - 14604 - ]], - [[ - 14841, - 14826, - 14837 - ]], - [[ - 14842, - 14843, - 14844 - ]], - [[ - 14836, - 14838, - 14826 - ]], - [[ - 14837, - 14826, - 14838 - ]], - [[ - 3166, - 14841, - 14806 - ]], - [[ - 14842, - 14844, - 14604 - ]], - [[ - 13083, - 14809, - 14804 - ]], - [[ - 14840, - 14837, - 14836 - ]], - [[ - 14845, - 14846, - 14847 - ]], - [[ - 14848, - 14849, - 14828 - ]], - [[ - 14850, - 14849, - 14848 - ]], - [[ - 12217, - 3159, - 14829 - ]], - [[ - 14851, - 14852, - 14827 - ]], - [[ - 14852, - 14853, - 14839 - ]], - [[ - 14806, - 13083, - 14804 - ]], - [[ - 14809, - 13083, - 14854 - ]], - [[ - 14829, - 14855, - 14830 - ]], - [[ - 14827, - 14848, - 14828 - ]], - [[ - 14616, - 14851, - 14827 - ]], - [[ - 14856, - 14846, - 14853 - ]], - [[ - 14604, - 14844, - 14857 - ]], - [[ - 14851, - 14616, - 14847 - ]], - [[ - 14839, - 14846, - 14857 - ]], - [[ - 14604, - 14857, - 14616 - ]], - [[ - 14841, - 14857, - 14843 - ]], - [[ - 14846, - 14856, - 14851 - ]], - [[ - 14858, - 14855, - 14829 - ]], - [[ - 14828, - 14849, - 14829 - ]], - [[ - 13090, - 14840, - 14836 - ]], - [[ - 13090, - 14806, - 14840 - ]], - [[ - 14857, - 14846, - 14845 - ]], - [[ - 14853, - 14852, - 14856 - ]], - [[ - 14839, - 14853, - 14846 - ]], - [[ - 14839, - 14827, - 14852 - ]], - [[ - 13090, - 13083, - 14806 - ]], - [[ - 14811, - 14805, - 14804 - ]], - [[ - 14839, - 14848, - 14827 - ]], - [[ - 12217, - 14850, - 14848 - ]], - [[ - 3166, - 14839, - 14841 - ]], - [[ - 12217, - 14848, - 14839 - ]], - [[ - 14616, - 14845, - 14847 - ]], - [[ - 14616, - 14857, - 14845 - ]], - [[ - 14809, - 14859, - 14810 - ]], - [[ - 3166, - 14810, - 14859 - ]], - [[ - 14841, - 14842, - 14604 - ]], - [[ - 14841, - 14843, - 14842 - ]], - [[ - 14846, - 14851, - 14847 - ]], - [[ - 14856, - 14852, - 14851 - ]], - [[ - 14829, - 14850, - 12217 - ]], - [[ - 14829, - 14849, - 14850 - ]], - [[ - 14804, - 14809, - 14811 - ]], - [[ - 13083, - 14860, - 14854 - ]], - [[ - 14843, - 14857, - 14844 - ]], - [[ - 14841, - 14839, - 14857 - ]], - [[ - 3166, - 14806, - 14805 - ]], - [[ - 14841, - 14837, - 14806 - ]], - [[ - 14861, - 14862, - 14823 - ]], - [[ - 14863, - 13097, - 14822 - ]], - [[ - 14864, - 14831, - 14865 - ]], - [[ - 14830, - 14616, - 14827 - ]], - [[ - 14866, - 14867, - 14868 - ]], - [[ - 14866, - 13090, - 14869 - ]], - [[ - 14870, - 14813, - 14871 - ]], - [[ - 14872, - 14609, - 14864 - ]], - [[ - 14873, - 14817, - 13085 - ]], - [[ - 14818, - 14803, - 14874 - ]], - [[ - 14822, - 14824, - 14863 - ]], - [[ - 13097, - 14874, - 14803 - ]], - [[ - 14870, - 14871, - 14875 - ]], - [[ - 14875, - 14876, - 14598 - ]], - [[ - 14877, - 14878, - 14879 - ]], - [[ - 14880, - 13091, - 14881 - ]], - [[ - 14882, - 14883, - 14884 - ]], - [[ - 14881, - 13091, - 14885 - ]], - [[ - 14812, - 14886, - 14598 - ]], - [[ - 14884, - 14883, - 14887 - ]], - [[ - 14886, - 14888, - 14889 - ]], - [[ - 14890, - 14879, - 14878 - ]], - [[ - 14858, - 14891, - 14855 - ]], - [[ - 14858, - 14829, - 3159 - ]], - [[ - 14872, - 14870, - 14892 - ]], - [[ - 14814, - 14813, - 14870 - ]], - [[ - 14865, - 14831, - 14893 - ]], - [[ - 14864, - 14616, - 14831 - ]], - [[ - 14598, - 14835, - 14604 - ]], - [[ - 14598, - 14833, - 14835 - ]], - [[ - 14867, - 14869, - 14825 - ]], - [[ - 14894, - 14835, - 14834 - ]], - [[ - 14895, - 14815, - 14833 - ]], - [[ - 14895, - 13091, - 14815 - ]], - [[ - 14867, - 14825, - 14604 - ]], - [[ - 14869, - 13090, - 14825 - ]], - [[ - 3167, - 14818, - 14817 - ]], - [[ - 14873, - 14896, - 14897 - ]], - [[ - 14877, - 14897, - 14878 - ]], - [[ - 14873, - 13085, - 14896 - ]], - [[ - 14820, - 14874, - 13097 - ]], - [[ - 14818, - 3167, - 14803 - ]], - [[ - 13085, - 14821, - 13086 - ]], - [[ - 14819, - 14874, - 14821 - ]], - [[ - 14898, - 14868, - 14867 - ]], - [[ - 14894, - 14834, - 14816 - ]], - [[ - 14899, - 14900, - 14876 - ]], - [[ - 14812, - 14598, - 14900 - ]], - [[ - 14812, - 14899, - 14813 - ]], - [[ - 14900, - 14598, - 14876 - ]], - [[ - 14854, - 14861, - 14802 - ]], - [[ - 14901, - 13097, - 14902 - ]], - [[ - 14862, - 14903, - 14823 - ]], - [[ - 14862, - 13083, - 14903 - ]], - [[ - 14833, - 14815, - 14834 - ]], - [[ - 14833, - 14598, - 14904 - ]], - [[ - 14886, - 14904, - 14598 - ]], - [[ - 14885, - 13091, - 14895 - ]], - [[ - 14885, - 14886, - 14889 - ]], - [[ - 14883, - 14905, - 14879 - ]], - [[ - 14904, - 14886, - 14885 - ]], - [[ - 14812, - 14814, - 14886 - ]], - [[ - 14877, - 14879, - 3164 - ]], - [[ - 14906, - 13085, - 13091 - ]], - [[ - 14889, - 14905, - 14881 - ]], - [[ - 14888, - 14886, - 14814 - ]], - [[ - 14879, - 14887, - 14883 - ]], - [[ - 14906, - 13091, - 14880 - ]], - [[ - 14859, - 14809, - 14854 - ]], - [[ - 13083, - 14862, - 14860 - ]], - [[ - 14802, - 14861, - 14823 - ]], - [[ - 14860, - 14862, - 14861 - ]], - [[ - 14813, - 14899, - 14876 - ]], - [[ - 14812, - 14900, - 14899 - ]], - [[ - 14907, - 14908, - 14891 - ]], - [[ - 14907, - 14865, - 14893 - ]], - [[ - 14855, - 14908, - 14830 - ]], - [[ - 14855, - 14891, - 14908 - ]], - [[ - 14829, - 14830, - 14827 - ]], - [[ - 14893, - 14831, - 14830 - ]], - [[ - 14859, - 14854, - 3166 - ]], - [[ - 14860, - 14861, - 14854 - ]], - [[ - 14909, - 14858, - 14910 - ]], - [[ - 3159, - 14872, - 14864 - ]], - [[ - 14911, - 14822, - 14901 - ]], - [[ - 14822, - 13097, - 14901 - ]], - [[ - 14911, - 14912, - 14822 - ]], - [[ - 14912, - 14823, - 14822 - ]], - [[ - 14913, - 14858, - 3159 - ]], - [[ - 14910, - 14865, - 14909 - ]], - [[ - 14813, - 14875, - 14871 - ]], - [[ - 14832, - 14598, - 14609 - ]], - [[ - 3167, - 14914, - 3164 - ]], - [[ - 14873, - 14897, - 14914 - ]], - [[ - 14823, - 14903, - 14824 - ]], - [[ - 13083, - 13097, - 14903 - ]], - [[ - 14912, - 14803, - 3101 - ]], - [[ - 14902, - 13097, - 14803 - ]], - [[ - 14909, - 14865, - 14907 - ]], - [[ - 14910, - 14913, - 14864 - ]], - [[ - 3164, - 14814, - 3159 - ]], - [[ - 3164, - 14879, - 14905 - ]], - [[ - 14819, - 14818, - 14874 - ]], - [[ - 14819, - 13085, - 14817 - ]], - [[ - 14872, - 14807, - 14609 - ]], - [[ - 14915, - 14832, - 14808 - ]], - [[ - 14803, - 14912, - 14902 - ]], - [[ - 3101, - 14802, - 14912 - ]], - [[ - 14902, - 14911, - 14901 - ]], - [[ - 14902, - 14912, - 14911 - ]], - [[ - 14904, - 14895, - 14833 - ]], - [[ - 14904, - 14885, - 14895 - ]], - [[ - 14891, - 14909, - 14907 - ]], - [[ - 14891, - 14858, - 14909 - ]], - [[ - 14807, - 14892, - 14808 - ]], - [[ - 14875, - 14598, - 14832 - ]], - [[ - 14870, - 14875, - 14832 - ]], - [[ - 14813, - 14876, - 14875 - ]], - [[ - 14892, - 14915, - 14808 - ]], - [[ - 14870, - 14832, - 14915 - ]], - [[ - 14903, - 14863, - 14824 - ]], - [[ - 14903, - 13097, - 14863 - ]], - [[ - 14879, - 14890, - 14887 - ]], - [[ - 14878, - 14897, - 14896 - ]], - [[ - 14890, - 14896, - 14906 - ]], - [[ - 14890, - 14878, - 14896 - ]], - [[ - 14914, - 14817, - 14873 - ]], - [[ - 14914, - 3167, - 14817 - ]], - [[ - 14815, - 14816, - 14834 - ]], - [[ - 13091, - 13090, - 14816 - ]], - [[ - 14868, - 14898, - 14816 - ]], - [[ - 14816, - 14898, - 14894 - ]], - [[ - 14866, - 14868, - 14816 - ]], - [[ - 14867, - 14604, - 14898 - ]], - [[ - 14835, - 14898, - 14604 - ]], - [[ - 14835, - 14894, - 14898 - ]], - [[ - 14885, - 14889, - 14881 - ]], - [[ - 14888, - 14905, - 14889 - ]], - [[ - 14814, - 14905, - 14888 - ]], - [[ - 14814, - 3164, - 14905 - ]], - [[ - 14867, - 14866, - 14869 - ]], - [[ - 14816, - 13090, - 14866 - ]], - [[ - 14821, - 14820, - 13086 - ]], - [[ - 14821, - 14874, - 14820 - ]], - [[ - 14854, - 14802, - 3166 - ]], - [[ - 14823, - 14912, - 14802 - ]], - [[ - 14910, - 14864, - 14865 - ]], - [[ - 14609, - 14616, - 14864 - ]], - [[ - 14914, - 14877, - 3164 - ]], - [[ - 14914, - 14897, - 14877 - ]], - [[ - 14864, - 14913, - 3159 - ]], - [[ - 14910, - 14858, - 14913 - ]], - [[ - 14872, - 14892, - 14807 - ]], - [[ - 14870, - 14915, - 14892 - ]], - [[ - 14882, - 14880, - 14881 - ]], - [[ - 14887, - 14890, - 14906 - ]], - [[ - 14906, - 14884, - 14887 - ]], - [[ - 14880, - 14882, - 14884 - ]], - [[ - 14908, - 14893, - 14830 - ]], - [[ - 14908, - 14907, - 14893 - ]], - [[ - 14884, - 14906, - 14880 - ]], - [[ - 14896, - 13085, - 14906 - ]], - [[ - 14814, - 14872, - 3159 - ]], - [[ - 14814, - 14870, - 14872 - ]], - [[ - 14905, - 14882, - 14881 - ]], - [[ - 14905, - 14883, - 14882 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95ce263c-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14916, - 14917, - 14918 - ]], - [[ - 14919, - 14920, - 14921 - ]], - [[ - 14921, - 14922, - 14923 - ]], - [[ - 14924, - 14925, - 14918 - ]], - [[ - 14926, - 14927, - 14928 - ]], - [[ - 14922, - 14929, - 14923 - ]], - [[ - 14930, - 14931, - 14932 - ]], - [[ - 14933, - 14917, - 14916 - ]], - [[ - 14934, - 14935, - 14936 - ]], - [[ - 14937, - 14938, - 14922 - ]], - [[ - 14939, - 14935, - 14940 - ]], - [[ - 14941, - 14942, - 14943 - ]], - [[ - 14930, - 14944, - 14945 - ]], - [[ - 14946, - 14935, - 14947 - ]], - [[ - 14920, - 14917, - 14948 - ]], - [[ - 14949, - 14950, - 14944 - ]], - [[ - 14936, - 14951, - 14952 - ]], - [[ - 14943, - 14922, - 14938 - ]], - [[ - 14953, - 14944, - 14930 - ]], - [[ - 14933, - 14954, - 14917 - ]], - [[ - 14952, - 14947, - 14936 - ]], - [[ - 14955, - 14942, - 14941 - ]], - [[ - 14946, - 14956, - 14940 - ]], - [[ - 14956, - 14957, - 14958 - ]], - [[ - 14959, - 14960, - 14956 - ]], - [[ - 14952, - 14946, - 14947 - ]], - [[ - 14955, - 14961, - 14962 - ]], - [[ - 14963, - 14959, - 14956 - ]], - [[ - 14962, - 14964, - 14951 - ]], - [[ - 14964, - 14956, - 14946 - ]], - [[ - 14961, - 14963, - 14956 - ]], - [[ - 14954, - 14933, - 14931 - ]], - [[ - 14965, - 14954, - 14931 - ]], - [[ - 14933, - 14932, - 14931 - ]], - [[ - 14966, - 14967, - 14931 - ]], - [[ - 14948, - 14917, - 14954 - ]], - [[ - 14926, - 14928, - 14957 - ]], - [[ - 14927, - 14945, - 14928 - ]], - [[ - 14960, - 14957, - 14956 - ]], - [[ - 14958, - 14950, - 14968 - ]], - [[ - 14919, - 14918, - 14920 - ]], - [[ - 14925, - 14916, - 14918 - ]], - [[ - 14921, - 14920, - 14948 - ]], - [[ - 14918, - 14917, - 14920 - ]], - [[ - 14921, - 14937, - 14922 - ]], - [[ - 14969, - 14967, - 14960 - ]], - [[ - 14967, - 14945, - 14927 - ]], - [[ - 14945, - 14950, - 14928 - ]], - [[ - 14960, - 14926, - 14957 - ]], - [[ - 14960, - 14967, - 14926 - ]], - [[ - 14970, - 14940, - 14968 - ]], - [[ - 14970, - 14939, - 14940 - ]], - [[ - 14935, - 14946, - 14940 - ]], - [[ - 14964, - 14962, - 14956 - ]], - [[ - 14956, - 14958, - 14940 - ]], - [[ - 14958, - 14928, - 14950 - ]], - [[ - 14952, - 14964, - 14946 - ]], - [[ - 14952, - 14951, - 14964 - ]], - [[ - 14942, - 14929, - 14922 - ]], - [[ - 14971, - 14925, - 14924 - ]], - [[ - 14933, - 14916, - 14932 - ]], - [[ - 14953, - 14949, - 14944 - ]], - [[ - 14972, - 14930, - 14932 - ]], - [[ - 14944, - 14950, - 14945 - ]], - [[ - 14937, - 14973, - 14938 - ]], - [[ - 14937, - 14965, - 14969 - ]], - [[ - 14971, - 14919, - 14923 - ]], - [[ - 14948, - 14937, - 14921 - ]], - [[ - 14940, - 14958, - 14968 - ]], - [[ - 14957, - 14928, - 14958 - ]], - [[ - 14947, - 14934, - 14936 - ]], - [[ - 14947, - 14935, - 14934 - ]], - [[ - 14929, - 14971, - 14923 - ]], - [[ - 14929, - 14942, - 14971 - ]], - [[ - 14923, - 14919, - 14921 - ]], - [[ - 14924, - 14918, - 14919 - ]], - [[ - 14974, - 14972, - 14925 - ]], - [[ - 14974, - 14953, - 14972 - ]], - [[ - 14972, - 14953, - 14930 - ]], - [[ - 14949, - 14970, - 14950 - ]], - [[ - 14972, - 14916, - 14925 - ]], - [[ - 14972, - 14932, - 14916 - ]], - [[ - 14936, - 14939, - 14974 - ]], - [[ - 14936, - 14935, - 14939 - ]], - [[ - 14963, - 14955, - 14941 - ]], - [[ - 14955, - 14936, - 14942 - ]], - [[ - 14938, - 14963, - 14941 - ]], - [[ - 14951, - 14936, - 14955 - ]], - [[ - 14955, - 14962, - 14951 - ]], - [[ - 14961, - 14956, - 14962 - ]], - [[ - 14919, - 14971, - 14924 - ]], - [[ - 14942, - 14925, - 14971 - ]], - [[ - 14926, - 14967, - 14927 - ]], - [[ - 14966, - 14930, - 14945 - ]], - [[ - 14969, - 14965, - 14967 - ]], - [[ - 14965, - 14931, - 14967 - ]], - [[ - 14948, - 14965, - 14937 - ]], - [[ - 14948, - 14954, - 14965 - ]], - [[ - 14959, - 14969, - 14960 - ]], - [[ - 14973, - 14937, - 14969 - ]], - [[ - 14959, - 14963, - 14938 - ]], - [[ - 14961, - 14955, - 14963 - ]], - [[ - 14950, - 14970, - 14968 - ]], - [[ - 14974, - 14939, - 14970 - ]], - [[ - 14974, - 14949, - 14953 - ]], - [[ - 14974, - 14970, - 14949 - ]], - [[ - 14959, - 14973, - 14969 - ]], - [[ - 14959, - 14938, - 14973 - ]], - [[ - 14930, - 14966, - 14931 - ]], - [[ - 14945, - 14967, - 14966 - ]], - [[ - 14941, - 14943, - 14938 - ]], - [[ - 14942, - 14922, - 14943 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95cfd40c-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efd28449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "gras- en kruidachtigen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 14975, - 14976, - 14977 - ]], - [[ - 12951, - 14978, - 14979 - ]], - [[ - 14980, - 14981, - 14982 - ]], - [[ - 12955, - 14983, - 3110 - ]], - [[ - 14984, - 11657, - 3106 - ]], - [[ - 14985, - 14986, - 14987 - ]], - [[ - 14988, - 14989, - 13144 - ]], - [[ - 14990, - 14991, - 14992 - ]], - [[ - 14993, - 13154, - 14994 - ]], - [[ - 14995, - 14994, - 13154 - ]], - [[ - 14996, - 14997, - 14998 - ]], - [[ - 14999, - 15000, - 15001 - ]], - [[ - 15002, - 15003, - 15004 - ]], - [[ - 15005, - 12955, - 12957 - ]], - [[ - 15006, - 12955, - 3110 - ]], - [[ - 15007, - 15008, - 15009 - ]], - [[ - 15010, - 15006, - 15011 - ]], - [[ - 15012, - 14979, - 15013 - ]], - [[ - 15014, - 3114, - 3113 - ]], - [[ - 14984, - 15015, - 15016 - ]], - [[ - 15017, - 13153, - 15018 - ]], - [[ - 15019, - 15020, - 15021 - ]], - [[ - 15022, - 15023, - 15021 - ]], - [[ - 15024, - 15025, - 15023 - ]], - [[ - 13143, - 13153, - 15021 - ]], - [[ - 14996, - 15026, - 15027 - ]], - [[ - 15028, - 15015, - 15029 - ]], - [[ - 15030, - 15031, - 15027 - ]], - [[ - 15032, - 14998, - 14997 - ]], - [[ - 15027, - 14997, - 14996 - ]], - [[ - 15033, - 15030, - 15016 - ]], - [[ - 15031, - 15034, - 14997 - ]], - [[ - 14998, - 13153, - 14996 - ]], - [[ - 15002, - 15035, - 15036 - ]], - [[ - 15037, - 15038, - 15025 - ]], - [[ - 15039, - 14984, - 3106 - ]], - [[ - 15016, - 15026, - 14984 - ]], - [[ - 15016, - 15030, - 15026 - ]], - [[ - 15016, - 15028, - 15033 - ]], - [[ - 15040, - 15041, - 3106 - ]], - [[ - 15042, - 15020, - 15038 - ]], - [[ - 14997, - 15034, - 15032 - ]], - [[ - 15021, - 13153, - 15043 - ]], - [[ - 15043, - 14998, - 15032 - ]], - [[ - 15043, - 13153, - 14998 - ]], - [[ - 15032, - 15034, - 15044 - ]], - [[ - 15031, - 15030, - 15033 - ]], - [[ - 15045, - 15020, - 15042 - ]], - [[ - 13143, - 15021, - 15020 - ]], - [[ - 15025, - 15038, - 15019 - ]], - [[ - 15039, - 15046, - 15042 - ]], - [[ - 15047, - 15040, - 15048 - ]], - [[ - 14983, - 12955, - 15005 - ]], - [[ - 15023, - 15029, - 15024 - ]], - [[ - 15015, - 15024, - 15029 - ]], - [[ - 15049, - 15033, - 15050 - ]], - [[ - 15033, - 15028, - 15050 - ]], - [[ - 15025, - 15019, - 15021 - ]], - [[ - 15038, - 15020, - 15019 - ]], - [[ - 15051, - 15040, - 3106 - ]], - [[ - 15052, - 15053, - 15054 - ]], - [[ - 15055, - 15056, - 15053 - ]], - [[ - 15057, - 15051, - 3106 - ]], - [[ - 15058, - 15054, - 15059 - ]], - [[ - 15056, - 15060, - 15057 - ]], - [[ - 15058, - 15047, - 15054 - ]], - [[ - 15052, - 15055, - 15053 - ]], - [[ - 15055, - 15060, - 15056 - ]], - [[ - 15061, - 15040, - 15051 - ]], - [[ - 15039, - 15042, - 15038 - ]], - [[ - 15045, - 13143, - 15020 - ]], - [[ - 14984, - 14996, - 11657 - ]], - [[ - 14984, - 15026, - 14996 - ]], - [[ - 15053, - 15062, - 15054 - ]], - [[ - 15047, - 15048, - 15052 - ]], - [[ - 15063, - 15064, - 15065 - ]], - [[ - 15047, - 15052, - 15054 - ]], - [[ - 15066, - 15036, - 15067 - ]], - [[ - 15046, - 15039, - 15004 - ]], - [[ - 15068, - 15067, - 15063 - ]], - [[ - 15036, - 15035, - 15069 - ]], - [[ - 15065, - 15070, - 15058 - ]], - [[ - 15071, - 15064, - 15072 - ]], - [[ - 15046, - 15045, - 15042 - ]], - [[ - 15073, - 15003, - 15002 - ]], - [[ - 15069, - 15035, - 15004 - ]], - [[ - 15002, - 15036, - 15066 - ]], - [[ - 15039, - 15069, - 15004 - ]], - [[ - 15071, - 15070, - 15064 - ]], - [[ - 15065, - 15064, - 15070 - ]], - [[ - 15067, - 15036, - 15072 - ]], - [[ - 15059, - 15065, - 15058 - ]], - [[ - 15074, - 15063, - 15065 - ]], - [[ - 15050, - 15028, - 15029 - ]], - [[ - 15016, - 15015, - 15028 - ]], - [[ - 15039, - 15037, - 14984 - ]], - [[ - 15039, - 15038, - 15037 - ]], - [[ - 15075, - 15076, - 15068 - ]], - [[ - 15002, - 15004, - 15035 - ]], - [[ - 15030, - 15027, - 15026 - ]], - [[ - 15031, - 14997, - 15027 - ]], - [[ - 15070, - 15047, - 15058 - ]], - [[ - 15070, - 15077, - 15047 - ]], - [[ - 14984, - 15024, - 15015 - ]], - [[ - 14984, - 15037, - 15024 - ]], - [[ - 15078, - 15057, - 3106 - ]], - [[ - 15061, - 15048, - 15040 - ]], - [[ - 15079, - 15080, - 15005 - ]], - [[ - 15079, - 15056, - 15080 - ]], - [[ - 15072, - 15041, - 15071 - ]], - [[ - 15081, - 15047, - 15077 - ]], - [[ - 15043, - 15022, - 15021 - ]], - [[ - 15022, - 15029, - 15023 - ]], - [[ - 13143, - 15073, - 15066 - ]], - [[ - 15003, - 15045, - 15046 - ]], - [[ - 15023, - 15025, - 15021 - ]], - [[ - 15024, - 15037, - 15025 - ]], - [[ - 15074, - 15059, - 15079 - ]], - [[ - 15053, - 15056, - 15079 - ]], - [[ - 15066, - 15073, - 15002 - ]], - [[ - 13143, - 15045, - 15073 - ]], - [[ - 15082, - 15011, - 3110 - ]], - [[ - 15083, - 15084, - 15085 - ]], - [[ - 12947, - 14999, - 12948 - ]], - [[ - 14994, - 3161, - 14993 - ]], - [[ - 15082, - 15086, - 15011 - ]], - [[ - 15085, - 12951, - 12955 - ]], - [[ - 15083, - 15087, - 15084 - ]], - [[ - 15086, - 15082, - 15087 - ]], - [[ - 15088, - 14990, - 14992 - ]], - [[ - 15089, - 14980, - 14999 - ]], - [[ - 15075, - 12957, - 15090 - ]], - [[ - 15090, - 12948, - 15091 - ]], - [[ - 14978, - 15092, - 15093 - ]], - [[ - 14979, - 3114, - 15013 - ]], - [[ - 15094, - 15095, - 15096 - ]], - [[ - 13144, - 12948, - 15095 - ]], - [[ - 15097, - 15098, - 12947 - ]], - [[ - 15012, - 12951, - 14979 - ]], - [[ - 15076, - 15090, - 15091 - ]], - [[ - 12957, - 12948, - 15090 - ]], - [[ - 15099, - 15008, - 15100 - ]], - [[ - 15009, - 15098, - 15013 - ]], - [[ - 12948, - 14999, - 14980 - ]], - [[ - 14992, - 3113, - 3161 - ]], - [[ - 15101, - 15022, - 15043 - ]], - [[ - 15050, - 15029, - 15022 - ]], - [[ - 15079, - 15005, - 12957 - ]], - [[ - 15080, - 15056, - 15057 - ]], - [[ - 15080, - 15057, - 15102 - ]], - [[ - 15060, - 15051, - 15057 - ]], - [[ - 15103, - 14985, - 15104 - ]], - [[ - 13143, - 15066, - 15068 - ]], - [[ - 15075, - 15063, - 12957 - ]], - [[ - 15065, - 15059, - 15074 - ]], - [[ - 3112, - 15082, - 3110 - ]], - [[ - 14978, - 15093, - 14979 - ]], - [[ - 15067, - 15072, - 15064 - ]], - [[ - 15036, - 15069, - 15072 - ]], - [[ - 15105, - 15000, - 14999 - ]], - [[ - 15100, - 3113, - 15001 - ]], - [[ - 14999, - 15001, - 15089 - ]], - [[ - 15000, - 15100, - 15001 - ]], - [[ - 3113, - 14981, - 15001 - ]], - [[ - 14981, - 14980, - 15089 - ]], - [[ - 14991, - 15106, - 15107 - ]], - [[ - 14982, - 15108, - 14980 - ]], - [[ - 14995, - 15109, - 15110 - ]], - [[ - 14992, - 14981, - 3113 - ]], - [[ - 15111, - 15112, - 15110 - ]], - [[ - 15113, - 14990, - 15088 - ]], - [[ - 15095, - 15114, - 15096 - ]], - [[ - 15089, - 15001, - 14981 - ]], - [[ - 15096, - 15114, - 14981 - ]], - [[ - 15108, - 12948, - 14980 - ]], - [[ - 15113, - 15106, - 14990 - ]], - [[ - 15107, - 15115, - 15116 - ]], - [[ - 15117, - 15118, - 14979 - ]], - [[ - 3112, - 3114, - 15118 - ]], - [[ - 15099, - 15100, - 15000 - ]], - [[ - 15008, - 15007, - 15100 - ]], - [[ - 15017, - 15018, - 11657 - ]], - [[ - 13153, - 13154, - 14976 - ]], - [[ - 15088, - 14992, - 14994 - ]], - [[ - 15110, - 15088, - 14994 - ]], - [[ - 3106, - 15041, - 15039 - ]], - [[ - 15081, - 15077, - 15071 - ]], - [[ - 15081, - 15071, - 15041 - ]], - [[ - 15077, - 15070, - 15071 - ]], - [[ - 15097, - 15119, - 15012 - ]], - [[ - 12952, - 12951, - 15012 - ]], - [[ - 15083, - 15085, - 12955 - ]], - [[ - 15120, - 14978, - 15085 - ]], - [[ - 15084, - 15120, - 15085 - ]], - [[ - 15092, - 3112, - 15117 - ]], - [[ - 15082, - 15121, - 15087 - ]], - [[ - 15121, - 15092, - 15084 - ]], - [[ - 15084, - 15092, - 15120 - ]], - [[ - 15082, - 3112, - 15092 - ]], - [[ - 15085, - 14978, - 12951 - ]], - [[ - 15120, - 15092, - 14978 - ]], - [[ - 14993, - 15122, - 13154 - ]], - [[ - 15018, - 13153, - 14976 - ]], - [[ - 15011, - 15006, - 3110 - ]], - [[ - 15011, - 15086, - 15010 - ]], - [[ - 15087, - 15083, - 15086 - ]], - [[ - 15123, - 15006, - 15010 - ]], - [[ - 15123, - 15083, - 12955 - ]], - [[ - 15010, - 15086, - 15083 - ]], - [[ - 15117, - 14979, - 15093 - ]], - [[ - 15118, - 3114, - 14979 - ]], - [[ - 15105, - 15099, - 15000 - ]], - [[ - 15124, - 15008, - 15099 - ]], - [[ - 15114, - 15108, - 14982 - ]], - [[ - 15114, - 12948, - 15108 - ]], - [[ - 14989, - 14987, - 15125 - ]], - [[ - 15125, - 12948, - 14989 - ]], - [[ - 15097, - 15012, - 15098 - ]], - [[ - 15119, - 12952, - 15012 - ]], - [[ - 15092, - 15117, - 15093 - ]], - [[ - 3112, - 15118, - 15117 - ]], - [[ - 15014, - 15013, - 3114 - ]], - [[ - 15098, - 15012, - 15013 - ]], - [[ - 15101, - 15049, - 15050 - ]], - [[ - 15049, - 15031, - 15033 - ]], - [[ - 15034, - 15049, - 15044 - ]], - [[ - 15034, - 15031, - 15049 - ]], - [[ - 15022, - 15101, - 15050 - ]], - [[ - 15043, - 15032, - 15044 - ]], - [[ - 15087, - 15121, - 15084 - ]], - [[ - 15082, - 15092, - 15121 - ]], - [[ - 15126, - 15127, - 14993 - ]], - [[ - 15122, - 14976, - 13154 - ]], - [[ - 11657, - 15122, - 15127 - ]], - [[ - 14977, - 14976, - 15122 - ]], - [[ - 3113, - 15007, - 15014 - ]], - [[ - 3113, - 15100, - 15007 - ]], - [[ - 13143, - 15068, - 15076 - ]], - [[ - 15066, - 15067, - 15068 - ]], - [[ - 15078, - 15102, - 15057 - ]], - [[ - 15005, - 15080, - 15102 - ]], - [[ - 15040, - 15081, - 15041 - ]], - [[ - 15040, - 15047, - 15081 - ]], - [[ - 15076, - 15075, - 15090 - ]], - [[ - 15068, - 15063, - 15075 - ]], - [[ - 12957, - 15063, - 15074 - ]], - [[ - 15067, - 15064, - 15063 - ]], - [[ - 15109, - 14995, - 13154 - ]], - [[ - 15110, - 14994, - 14995 - ]], - [[ - 15102, - 15078, - 15005 - ]], - [[ - 3106, - 3110, - 14983 - ]], - [[ - 13143, - 14988, - 13144 - ]], - [[ - 15104, - 15076, - 15103 - ]], - [[ - 15106, - 15113, - 15111 - ]], - [[ - 15106, - 14991, - 14990 - ]], - [[ - 15044, - 15101, - 15043 - ]], - [[ - 15044, - 15049, - 15101 - ]], - [[ - 14981, - 15114, - 14982 - ]], - [[ - 15095, - 12948, - 15114 - ]], - [[ - 14977, - 15128, - 14975 - ]], - [[ - 11657, - 15018, - 15128 - ]], - [[ - 15124, - 15009, - 15008 - ]], - [[ - 12947, - 15098, - 15009 - ]], - [[ - 12952, - 15097, - 12947 - ]], - [[ - 12952, - 15119, - 15097 - ]], - [[ - 13144, - 14989, - 12948 - ]], - [[ - 14988, - 15104, - 14989 - ]], - [[ - 13144, - 15094, - 15115 - ]], - [[ - 13144, - 15095, - 15094 - ]], - [[ - 15126, - 14993, - 3161 - ]], - [[ - 15127, - 15122, - 14993 - ]], - [[ - 14986, - 15125, - 14987 - ]], - [[ - 14986, - 12948, - 15125 - ]], - [[ - 14989, - 14985, - 14987 - ]], - [[ - 15091, - 12948, - 14986 - ]], - [[ - 15104, - 14985, - 14989 - ]], - [[ - 15076, - 15091, - 15103 - ]], - [[ - 14986, - 15103, - 15091 - ]], - [[ - 14986, - 14985, - 15103 - ]], - [[ - 15105, - 15124, - 15099 - ]], - [[ - 12947, - 15009, - 15124 - ]], - [[ - 14996, - 15017, - 11657 - ]], - [[ - 14996, - 13153, - 15017 - ]], - [[ - 15009, - 15014, - 15007 - ]], - [[ - 15009, - 15013, - 15014 - ]], - [[ - 11657, - 14977, - 15122 - ]], - [[ - 11657, - 15128, - 14977 - ]], - [[ - 15074, - 15079, - 12957 - ]], - [[ - 15062, - 15053, - 15079 - ]], - [[ - 15059, - 15062, - 15079 - ]], - [[ - 15059, - 15054, - 15062 - ]], - [[ - 11657, - 15126, - 3161 - ]], - [[ - 11657, - 15127, - 15126 - ]], - [[ - 12947, - 15105, - 14999 - ]], - [[ - 12947, - 15124, - 15105 - ]], - [[ - 14991, - 15116, - 14992 - ]], - [[ - 15096, - 14981, - 14992 - ]], - [[ - 15055, - 15048, - 15061 - ]], - [[ - 15055, - 15052, - 15048 - ]], - [[ - 15060, - 15061, - 15051 - ]], - [[ - 15060, - 15055, - 15061 - ]], - [[ - 15115, - 15096, - 15116 - ]], - [[ - 15115, - 15094, - 15096 - ]], - [[ - 13143, - 15104, - 14988 - ]], - [[ - 13143, - 15076, - 15104 - ]], - [[ - 13144, - 15106, - 13154 - ]], - [[ - 15113, - 15112, - 15111 - ]], - [[ - 13154, - 15106, - 15111 - ]], - [[ - 15107, - 15116, - 14991 - ]], - [[ - 13144, - 15107, - 15106 - ]], - [[ - 13144, - 15115, - 15107 - ]], - [[ - 15078, - 15129, - 15005 - ]], - [[ - 15078, - 3106, - 14983 - ]], - [[ - 15129, - 14983, - 15005 - ]], - [[ - 15129, - 15078, - 14983 - ]], - [[ - 15004, - 15003, - 15046 - ]], - [[ - 15073, - 15045, - 15003 - ]], - [[ - 14994, - 14992, - 3161 - ]], - [[ - 15116, - 15096, - 14992 - ]], - [[ - 15112, - 15088, - 15110 - ]], - [[ - 15112, - 15113, - 15088 - ]], - [[ - 15111, - 15109, - 13154 - ]], - [[ - 15111, - 15110, - 15109 - ]], - [[ - 15018, - 14975, - 15128 - ]], - [[ - 15018, - 14976, - 14975 - ]], - [[ - 15006, - 15123, - 12955 - ]], - [[ - 15010, - 15083, - 15123 - ]], - [[ - 15041, - 15069, - 15039 - ]], - [[ - 15041, - 15072, - 15069 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95d13392-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15130, - 15131, - 15132 - ]], - [[ - 15133, - 15134, - 15135 - ]], - [[ - 15130, - 15136, - 15131 - ]], - [[ - 15137, - 15131, - 15136 - ]], - [[ - 15138, - 15139, - 15140 - ]], - [[ - 15141, - 15142, - 15143 - ]], - [[ - 15144, - 15145, - 15142 - ]], - [[ - 15137, - 15146, - 15147 - ]], - [[ - 15148, - 15142, - 15145 - ]], - [[ - 15149, - 15150, - 15151 - ]], - [[ - 15133, - 15135, - 15151 - ]], - [[ - 15152, - 15153, - 15154 - ]], - [[ - 15155, - 15137, - 15136 - ]], - [[ - 15156, - 15150, - 15131 - ]], - [[ - 15157, - 15158, - 15148 - ]], - [[ - 15153, - 15159, - 15160 - ]], - [[ - 15159, - 15161, - 15162 - ]], - [[ - 15161, - 15153, - 15148 - ]], - [[ - 15160, - 15159, - 15163 - ]], - [[ - 15161, - 15148, - 15164 - ]], - [[ - 15162, - 15164, - 15165 - ]], - [[ - 15162, - 15161, - 15164 - ]], - [[ - 15163, - 15165, - 15166 - ]], - [[ - 15164, - 15148, - 15165 - ]], - [[ - 15167, - 15168, - 15169 - ]], - [[ - 15170, - 15157, - 15171 - ]], - [[ - 15170, - 15139, - 15157 - ]], - [[ - 15157, - 15148, - 15145 - ]], - [[ - 15172, - 15173, - 15174 - ]], - [[ - 15175, - 15176, - 15177 - ]], - [[ - 15178, - 15174, - 15173 - ]], - [[ - 15179, - 15180, - 15181 - ]], - [[ - 15182, - 15177, - 15149 - ]], - [[ - 15154, - 15150, - 15183 - ]], - [[ - 15169, - 15178, - 15130 - ]], - [[ - 15184, - 15168, - 15144 - ]], - [[ - 15147, - 15185, - 15186 - ]], - [[ - 15151, - 15150, - 15187 - ]], - [[ - 15188, - 15173, - 15172 - ]], - [[ - 15176, - 15181, - 15177 - ]], - [[ - 15189, - 15190, - 15174 - ]], - [[ - 15189, - 15191, - 15192 - ]], - [[ - 15156, - 15193, - 15187 - ]], - [[ - 15185, - 15134, - 15194 - ]], - [[ - 15130, - 15155, - 15136 - ]], - [[ - 15190, - 15195, - 15172 - ]], - [[ - 15130, - 15173, - 15155 - ]], - [[ - 15130, - 15178, - 15173 - ]], - [[ - 15196, - 15146, - 15197 - ]], - [[ - 15188, - 15155, - 15173 - ]], - [[ - 15185, - 15146, - 15175 - ]], - [[ - 15146, - 15188, - 15197 - ]], - [[ - 15178, - 15198, - 15174 - ]], - [[ - 15181, - 15183, - 15149 - ]], - [[ - 15192, - 15141, - 15189 - ]], - [[ - 15141, - 15143, - 15180 - ]], - [[ - 15179, - 15189, - 15180 - ]], - [[ - 15174, - 15191, - 15189 - ]], - [[ - 15197, - 15190, - 15176 - ]], - [[ - 15197, - 15195, - 15190 - ]], - [[ - 15199, - 15167, - 15130 - ]], - [[ - 15200, - 15165, - 15158 - ]], - [[ - 15174, - 15198, - 15191 - ]], - [[ - 15192, - 15201, - 15141 - ]], - [[ - 15194, - 15133, - 15151 - ]], - [[ - 15149, - 15183, - 15150 - ]], - [[ - 15144, - 15171, - 15145 - ]], - [[ - 15168, - 15140, - 15170 - ]], - [[ - 15141, - 15201, - 15142 - ]], - [[ - 15144, - 15168, - 15171 - ]], - [[ - 15186, - 15185, - 15193 - ]], - [[ - 15134, - 15177, - 15135 - ]], - [[ - 15163, - 15159, - 15162 - ]], - [[ - 15154, - 15183, - 15152 - ]], - [[ - 15175, - 15134, - 15185 - ]], - [[ - 15175, - 15177, - 15134 - ]], - [[ - 15187, - 15194, - 15151 - ]], - [[ - 15194, - 15134, - 15133 - ]], - [[ - 15190, - 15172, - 15174 - ]], - [[ - 15195, - 15188, - 15172 - ]], - [[ - 15167, - 15140, - 15168 - ]], - [[ - 15167, - 15138, - 15140 - ]], - [[ - 15199, - 15138, - 15167 - ]], - [[ - 15165, - 15148, - 15158 - ]], - [[ - 15202, - 15199, - 15130 - ]], - [[ - 15202, - 15200, - 15199 - ]], - [[ - 15132, - 15166, - 15202 - ]], - [[ - 15132, - 15163, - 15166 - ]], - [[ - 15132, - 15202, - 15130 - ]], - [[ - 15166, - 15165, - 15202 - ]], - [[ - 15199, - 15200, - 15138 - ]], - [[ - 15202, - 15165, - 15200 - ]], - [[ - 15177, - 15182, - 15135 - ]], - [[ - 15177, - 15181, - 15149 - ]], - [[ - 15197, - 15188, - 15195 - ]], - [[ - 15137, - 15155, - 15188 - ]], - [[ - 15178, - 15169, - 15201 - ]], - [[ - 15201, - 15169, - 15184 - ]], - [[ - 15165, - 15163, - 15162 - ]], - [[ - 15160, - 15154, - 15153 - ]], - [[ - 15188, - 15146, - 15137 - ]], - [[ - 15197, - 15176, - 15196 - ]], - [[ - 15190, - 15179, - 15176 - ]], - [[ - 15180, - 15152, - 15181 - ]], - [[ - 15137, - 15147, - 15131 - ]], - [[ - 15146, - 15185, - 15147 - ]], - [[ - 15175, - 15196, - 15176 - ]], - [[ - 15175, - 15146, - 15196 - ]], - [[ - 15176, - 15179, - 15181 - ]], - [[ - 15190, - 15189, - 15179 - ]], - [[ - 15138, - 15158, - 15139 - ]], - [[ - 15138, - 15200, - 15158 - ]], - [[ - 15171, - 15157, - 15145 - ]], - [[ - 15139, - 15158, - 15157 - ]], - [[ - 15193, - 15194, - 15187 - ]], - [[ - 15193, - 15185, - 15194 - ]], - [[ - 15167, - 15169, - 15130 - ]], - [[ - 15168, - 15184, - 15169 - ]], - [[ - 15147, - 15186, - 15131 - ]], - [[ - 15187, - 15150, - 15156 - ]], - [[ - 15186, - 15156, - 15131 - ]], - [[ - 15186, - 15193, - 15156 - ]], - [[ - 15180, - 15143, - 15152 - ]], - [[ - 15142, - 15148, - 15143 - ]], - [[ - 15168, - 15170, - 15171 - ]], - [[ - 15140, - 15139, - 15170 - ]], - [[ - 15135, - 15149, - 15151 - ]], - [[ - 15135, - 15182, - 15149 - ]], - [[ - 15189, - 15141, - 15180 - ]], - [[ - 15192, - 15178, - 15201 - ]], - [[ - 15198, - 15192, - 15191 - ]], - [[ - 15198, - 15178, - 15192 - ]], - [[ - 15181, - 15152, - 15183 - ]], - [[ - 15143, - 15148, - 15153 - ]], - [[ - 15143, - 15153, - 15152 - ]], - [[ - 15161, - 15159, - 15153 - ]], - [[ - 15201, - 15144, - 15142 - ]], - [[ - 15201, - 15184, - 15144 - ]], - [[ - 15132, - 15160, - 15163 - ]], - [[ - 15132, - 15154, - 15160 - ]], - [[ - 15203, - 15154, - 15132 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95d15abd-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15204, - 15205, - 15206 - ]], - [[ - 15206, - 15205, - 15207 - ]], - [[ - 15205, - 15208, - 15209 - ]], - [[ - 15209, - 15210, - 15205 - ]], - [[ - 15211, - 15212, - 15206 - ]], - [[ - 15213, - 15209, - 15208 - ]], - [[ - 15204, - 15206, - 15213 - ]], - [[ - 15212, - 15209, - 15214 - ]], - [[ - 15204, - 15213, - 15208 - ]], - [[ - 15214, - 15209, - 15213 - ]], - [[ - 15211, - 15206, - 15207 - ]], - [[ - 15214, - 15213, - 15206 - ]], - [[ - 15206, - 15212, - 15214 - ]], - [[ - 15211, - 15209, - 15212 - ]], - [[ - 15207, - 15205, - 15210 - ]], - [[ - 15204, - 15208, - 15205 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95d3cb76-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15215, - 15216, - 15217 - ]], - [[ - 15218, - 15217, - 15219 - ]], - [[ - 15220, - 15221, - 15222 - ]], - [[ - 15215, - 15217, - 15222 - ]], - [[ - 15221, - 15223, - 15224 - ]], - [[ - 15225, - 15216, - 15215 - ]], - [[ - 15215, - 15226, - 15225 - ]], - [[ - 15227, - 15228, - 15225 - ]], - [[ - 15218, - 15222, - 15217 - ]], - [[ - 15229, - 15215, - 15222 - ]], - [[ - 15230, - 15224, - 15226 - ]], - [[ - 15231, - 15226, - 15224 - ]], - [[ - 15221, - 15215, - 15229 - ]], - [[ - 15230, - 15226, - 15215 - ]], - [[ - 15231, - 15227, - 15226 - ]], - [[ - 15228, - 15216, - 15225 - ]], - [[ - 15226, - 15227, - 15225 - ]], - [[ - 15231, - 15228, - 15227 - ]], - [[ - 15232, - 15220, - 15219 - ]], - [[ - 15220, - 15223, - 15221 - ]], - [[ - 15220, - 15233, - 15219 - ]], - [[ - 15220, - 15222, - 15233 - ]], - [[ - 15222, - 15221, - 15229 - ]], - [[ - 15220, - 15232, - 15223 - ]], - [[ - 15221, - 15230, - 15215 - ]], - [[ - 15221, - 15224, - 15230 - ]], - [[ - 15228, - 15232, - 15219 - ]], - [[ - 15223, - 15231, - 15224 - ]], - [[ - 15233, - 15218, - 15219 - ]], - [[ - 15233, - 15222, - 15218 - ]], - [[ - 15228, - 15223, - 15232 - ]], - [[ - 15228, - 15231, - 15223 - ]], - [[ - 15234, - 15216, - 15228 - ]], - [[ - 15217, - 15235, - 15219 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95d48e56-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15236, - 15237, - 15238 - ]], - [[ - 15239, - 15240, - 15236 - ]], - [[ - 15241, - 15242, - 15243 - ]], - [[ - 15244, - 15245, - 15240 - ]], - [[ - 15242, - 15246, - 15243 - ]], - [[ - 15247, - 15237, - 15236 - ]], - [[ - 15245, - 15248, - 15247 - ]], - [[ - 15249, - 15237, - 15248 - ]], - [[ - 15250, - 15242, - 15251 - ]], - [[ - 15239, - 15244, - 15240 - ]], - [[ - 15250, - 15246, - 15242 - ]], - [[ - 15252, - 15253, - 15245 - ]], - [[ - 15252, - 15254, - 15249 - ]], - [[ - 15249, - 15248, - 15253 - ]], - [[ - 15250, - 15254, - 15252 - ]], - [[ - 15255, - 15249, - 15254 - ]], - [[ - 15250, - 15255, - 15254 - ]], - [[ - 15256, - 15249, - 15255 - ]], - [[ - 15252, - 15245, - 15244 - ]], - [[ - 15253, - 15248, - 15245 - ]], - [[ - 15251, - 15242, - 15241 - ]], - [[ - 15246, - 15250, - 15252 - ]], - [[ - 15257, - 15241, - 15258 - ]], - [[ - 15243, - 15246, - 15252 - ]], - [[ - 15259, - 15241, - 15257 - ]], - [[ - 15241, - 15252, - 15258 - ]], - [[ - 15252, - 15249, - 15253 - ]], - [[ - 15256, - 15237, - 15249 - ]], - [[ - 15259, - 15257, - 15239 - ]], - [[ - 15260, - 15244, - 15239 - ]], - [[ - 15259, - 15239, - 15238 - ]], - [[ - 15257, - 15260, - 15239 - ]], - [[ - 15245, - 15247, - 15240 - ]], - [[ - 15248, - 15237, - 15247 - ]], - [[ - 15256, - 15250, - 15251 - ]], - [[ - 15256, - 15255, - 15250 - ]], - [[ - 15239, - 15236, - 15238 - ]], - [[ - 15240, - 15247, - 15236 - ]], - [[ - 15260, - 15252, - 15244 - ]], - [[ - 15241, - 15243, - 15252 - ]], - [[ - 15258, - 15260, - 15257 - ]], - [[ - 15258, - 15252, - 15260 - ]], - [[ - 15251, - 15259, - 15238 - ]], - [[ - 15251, - 15241, - 15259 - ]], - [[ - 15261, - 15237, - 15256 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95d5a08f-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbc0149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15262, - 15263, - 15264 - ]], - [[ - 15265, - 15264, - 15266 - ]], - [[ - 15267, - 15268, - 15269 - ]], - [[ - 15270, - 15271, - 15272 - ]], - [[ - 15268, - 15273, - 15270 - ]], - [[ - 15274, - 15275, - 15276 - ]], - [[ - 15277, - 15274, - 15276 - ]], - [[ - 15278, - 15274, - 15277 - ]], - [[ - 15279, - 15276, - 15265 - ]], - [[ - 15280, - 15281, - 15282 - ]], - [[ - 15282, - 15279, - 15283 - ]], - [[ - 15265, - 15284, - 15267 - ]], - [[ - 15285, - 15279, - 15265 - ]], - [[ - 15265, - 15276, - 15284 - ]], - [[ - 15269, - 15286, - 15267 - ]], - [[ - 15269, - 15263, - 15286 - ]], - [[ - 15269, - 15268, - 15272 - ]], - [[ - 15273, - 15271, - 15270 - ]], - [[ - 15282, - 15281, - 15279 - ]], - [[ - 15275, - 15273, - 15268 - ]], - [[ - 15262, - 15265, - 15286 - ]], - [[ - 15268, - 15270, - 15272 - ]], - [[ - 15284, - 15268, - 15267 - ]], - [[ - 15276, - 15275, - 15268 - ]], - [[ - 15286, - 15265, - 15267 - ]], - [[ - 15276, - 15268, - 15284 - ]], - [[ - 15277, - 15281, - 15280 - ]], - [[ - 15277, - 15276, - 15281 - ]], - [[ - 15285, - 15265, - 15266 - ]], - [[ - 15285, - 15287, - 15279 - ]], - [[ - 15283, - 15279, - 15287 - ]], - [[ - 15281, - 15276, - 15279 - ]], - [[ - 15265, - 15262, - 15264 - ]], - [[ - 15286, - 15263, - 15262 - ]], - [[ - 15288, - 15277, - 15289 - ]], - [[ - 15288, - 15278, - 15277 - ]], - [[ - 15289, - 15280, - 15282 - ]], - [[ - 15289, - 15277, - 15280 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95d5c6c6-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15290, - 15291, - 15292 - ]], - [[ - 15293, - 15294, - 15295 - ]], - [[ - 15296, - 15297, - 15298 - ]], - [[ - 15299, - 15300, - 15290 - ]], - [[ - 15296, - 15298, - 15301 - ]], - [[ - 15302, - 15296, - 15291 - ]], - [[ - 15295, - 15294, - 15303 - ]], - [[ - 15298, - 15297, - 15304 - ]], - [[ - 15295, - 15303, - 15290 - ]], - [[ - 15294, - 15298, - 15304 - ]], - [[ - 15294, - 15299, - 15303 - ]], - [[ - 15300, - 15302, - 15290 - ]], - [[ - 15301, - 15295, - 15290 - ]], - [[ - 15293, - 15298, - 15294 - ]], - [[ - 15301, - 15290, - 15292 - ]], - [[ - 15303, - 15299, - 15290 - ]], - [[ - 15294, - 15304, - 15305 - ]], - [[ - 15297, - 15296, - 15304 - ]], - [[ - 15294, - 15305, - 15299 - ]], - [[ - 15304, - 15296, - 15305 - ]], - [[ - 15301, - 15293, - 15295 - ]], - [[ - 15301, - 15298, - 15293 - ]], - [[ - 15290, - 15302, - 15291 - ]], - [[ - 15305, - 15296, - 15302 - ]], - [[ - 15305, - 15300, - 15299 - ]], - [[ - 15305, - 15302, - 15300 - ]], - [[ - 15306, - 15291, - 15296 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95d97113-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba4949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15307, - 15308, - 15309 - ]], - [[ - 15310, - 15311, - 15312 - ]], - [[ - 15313, - 15314, - 15315 - ]], - [[ - 15313, - 15316, - 15314 - ]], - [[ - 15315, - 15314, - 15317 - ]], - [[ - 15317, - 15314, - 15318 - ]], - [[ - 15318, - 15314, - 15319 - ]], - [[ - 15318, - 15320, - 15317 - ]], - [[ - 15321, - 15322, - 15312 - ]], - [[ - 15318, - 15323, - 15324 - ]], - [[ - 15322, - 15316, - 15310 - ]], - [[ - 15309, - 15325, - 15326 - ]], - [[ - 15312, - 15322, - 15310 - ]], - [[ - 15327, - 15328, - 15329 - ]], - [[ - 15314, - 15316, - 15330 - ]], - [[ - 15308, - 15328, - 15309 - ]], - [[ - 15322, - 15329, - 15316 - ]], - [[ - 15322, - 15327, - 15329 - ]], - [[ - 15319, - 15314, - 15330 - ]], - [[ - 15315, - 15311, - 15313 - ]], - [[ - 15310, - 15313, - 15311 - ]], - [[ - 15310, - 15316, - 15313 - ]], - [[ - 15331, - 15318, - 15324 - ]], - [[ - 15323, - 15325, - 15324 - ]], - [[ - 15330, - 15323, - 15319 - ]], - [[ - 15326, - 15325, - 15323 - ]], - [[ - 15330, - 15326, - 15323 - ]], - [[ - 15330, - 15309, - 15326 - ]], - [[ - 15316, - 15307, - 15330 - ]], - [[ - 15328, - 15325, - 15309 - ]], - [[ - 15323, - 15318, - 15319 - ]], - [[ - 15331, - 15320, - 15318 - ]], - [[ - 15327, - 15321, - 15312 - ]], - [[ - 15327, - 15322, - 15321 - ]], - [[ - 15330, - 15307, - 15309 - ]], - [[ - 15316, - 15329, - 15308 - ]], - [[ - 15316, - 15308, - 15307 - ]], - [[ - 15329, - 15328, - 15308 - ]], - [[ - 15332, - 15328, - 15327 - ]], - [[ - 15325, - 15333, - 15324 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95da0cd1-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15334, - 15335, - 15336 - ]], - [[ - 15337, - 15338, - 15339 - ]], - [[ - 15340, - 15341, - 15342 - ]], - [[ - 15343, - 15344, - 15345 - ]], - [[ - 15346, - 15347, - 15348 - ]], - [[ - 15349, - 15350, - 15338 - ]], - [[ - 15351, - 15348, - 15352 - ]], - [[ - 15353, - 15354, - 15355 - ]], - [[ - 15356, - 15348, - 15357 - ]], - [[ - 15357, - 15335, - 15334 - ]], - [[ - 15358, - 15359, - 15342 - ]], - [[ - 15360, - 15350, - 15359 - ]], - [[ - 15352, - 15347, - 15361 - ]], - [[ - 15362, - 15363, - 15364 - ]], - [[ - 15349, - 15355, - 15350 - ]], - [[ - 15364, - 15365, - 15362 - ]], - [[ - 15335, - 15344, - 15366 - ]], - [[ - 15367, - 15342, - 15359 - ]], - [[ - 15341, - 15358, - 15342 - ]], - [[ - 15360, - 15359, - 15358 - ]], - [[ - 15360, - 15341, - 15361 - ]], - [[ - 15345, - 15340, - 15343 - ]], - [[ - 15345, - 15357, - 15348 - ]], - [[ - 15357, - 15334, - 15368 - ]], - [[ - 15347, - 15346, - 15339 - ]], - [[ - 15356, - 15357, - 15368 - ]], - [[ - 15356, - 15368, - 15337 - ]], - [[ - 15334, - 15338, - 15337 - ]], - [[ - 15346, - 15356, - 15339 - ]], - [[ - 15346, - 15348, - 15356 - ]], - [[ - 15366, - 15336, - 15335 - ]], - [[ - 15369, - 15343, - 15342 - ]], - [[ - 15367, - 15362, - 15342 - ]], - [[ - 15369, - 15370, - 15343 - ]], - [[ - 15370, - 15371, - 15343 - ]], - [[ - 15366, - 15344, - 15371 - ]], - [[ - 15362, - 15369, - 15342 - ]], - [[ - 15371, - 15344, - 15343 - ]], - [[ - 15365, - 15369, - 15362 - ]], - [[ - 15365, - 15372, - 15370 - ]], - [[ - 15350, - 15354, - 15359 - ]], - [[ - 15350, - 15355, - 15354 - ]], - [[ - 15354, - 15363, - 15367 - ]], - [[ - 15354, - 15353, - 15373 - ]], - [[ - 15354, - 15373, - 15363 - ]], - [[ - 15373, - 15374, - 15364 - ]], - [[ - 15361, - 15341, - 15352 - ]], - [[ - 15360, - 15358, - 15341 - ]], - [[ - 15335, - 15357, - 15345 - ]], - [[ - 15348, - 15347, - 15352 - ]], - [[ - 15335, - 15345, - 15344 - ]], - [[ - 15340, - 15342, - 15343 - ]], - [[ - 15354, - 15367, - 15359 - ]], - [[ - 15363, - 15362, - 15367 - ]], - [[ - 15364, - 15375, - 15365 - ]], - [[ - 15336, - 15338, - 15334 - ]], - [[ - 15365, - 15375, - 15372 - ]], - [[ - 15374, - 15355, - 15376 - ]], - [[ - 15365, - 15370, - 15369 - ]], - [[ - 15372, - 15377, - 15370 - ]], - [[ - 15345, - 15351, - 15352 - ]], - [[ - 15345, - 15348, - 15351 - ]], - [[ - 15370, - 15377, - 15378 - ]], - [[ - 15374, - 15353, - 15355 - ]], - [[ - 15336, - 15376, - 15349 - ]], - [[ - 15336, - 15366, - 15376 - ]], - [[ - 15375, - 15377, - 15372 - ]], - [[ - 15375, - 15376, - 15377 - ]], - [[ - 15356, - 15337, - 15339 - ]], - [[ - 15368, - 15334, - 15337 - ]], - [[ - 15373, - 15364, - 15363 - ]], - [[ - 15373, - 15353, - 15374 - ]], - [[ - 15339, - 15361, - 15347 - ]], - [[ - 15339, - 15360, - 15361 - ]], - [[ - 15336, - 15349, - 15338 - ]], - [[ - 15376, - 15355, - 15349 - ]], - [[ - 15370, - 15378, - 15371 - ]], - [[ - 15377, - 15376, - 15378 - ]], - [[ - 15352, - 15340, - 15345 - ]], - [[ - 15352, - 15341, - 15340 - ]], - [[ - 15375, - 15374, - 15376 - ]], - [[ - 15375, - 15364, - 15374 - ]], - [[ - 15378, - 15366, - 15371 - ]], - [[ - 15378, - 15376, - 15366 - ]], - [[ - 15360, - 15379, - 15350 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95da0cdd-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8e649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15380, - 15381, - 15382 - ]], - [[ - 15383, - 15384, - 15385 - ]], - [[ - 15386, - 15387, - 15388 - ]], - [[ - 15389, - 15390, - 15391 - ]], - [[ - 15392, - 15391, - 15380 - ]], - [[ - 15393, - 15394, - 15395 - ]], - [[ - 15396, - 15397, - 15398 - ]], - [[ - 15399, - 15386, - 15400 - ]], - [[ - 15401, - 15380, - 15382 - ]], - [[ - 15391, - 15381, - 15380 - ]], - [[ - 15401, - 15392, - 15380 - ]], - [[ - 15402, - 15398, - 15397 - ]], - [[ - 15403, - 15404, - 15405 - ]], - [[ - 15390, - 15381, - 15391 - ]], - [[ - 15392, - 15393, - 15391 - ]], - [[ - 15384, - 15406, - 15385 - ]], - [[ - 15388, - 15394, - 15401 - ]], - [[ - 15407, - 15396, - 15398 - ]], - [[ - 15395, - 15407, - 15408 - ]], - [[ - 15407, - 15388, - 15396 - ]], - [[ - 15409, - 15395, - 15383 - ]], - [[ - 15410, - 15402, - 15411 - ]], - [[ - 15389, - 15409, - 15412 - ]], - [[ - 15394, - 15407, - 15395 - ]], - [[ - 15393, - 15389, - 15391 - ]], - [[ - 15412, - 15385, - 15390 - ]], - [[ - 15413, - 15414, - 15406 - ]], - [[ - 15414, - 15381, - 15406 - ]], - [[ - 15409, - 15383, - 15412 - ]], - [[ - 15406, - 15381, - 15390 - ]], - [[ - 15384, - 15413, - 15406 - ]], - [[ - 15400, - 15381, - 15414 - ]], - [[ - 15383, - 15415, - 15384 - ]], - [[ - 15415, - 15416, - 15413 - ]], - [[ - 15412, - 15383, - 15385 - ]], - [[ - 15415, - 15413, - 15384 - ]], - [[ - 15408, - 15417, - 15383 - ]], - [[ - 15408, - 15398, - 15402 - ]], - [[ - 15413, - 15416, - 15414 - ]], - [[ - 15417, - 15408, - 15402 - ]], - [[ - 15408, - 15407, - 15398 - ]], - [[ - 15394, - 15388, - 15407 - ]], - [[ - 15383, - 15395, - 15408 - ]], - [[ - 15409, - 15393, - 15395 - ]], - [[ - 15416, - 15402, - 15410 - ]], - [[ - 15386, - 15381, - 15400 - ]], - [[ - 15399, - 15405, - 15386 - ]], - [[ - 15387, - 15386, - 15404 - ]], - [[ - 15410, - 15411, - 15418 - ]], - [[ - 15403, - 15387, - 15404 - ]], - [[ - 15418, - 15399, - 15400 - ]], - [[ - 15405, - 15404, - 15386 - ]], - [[ - 15411, - 15402, - 15397 - ]], - [[ - 15416, - 15415, - 15417 - ]], - [[ - 15387, - 15403, - 15397 - ]], - [[ - 15418, - 15400, - 15410 - ]], - [[ - 15412, - 15390, - 15389 - ]], - [[ - 15385, - 15406, - 15390 - ]], - [[ - 15416, - 15417, - 15402 - ]], - [[ - 15415, - 15383, - 15417 - ]], - [[ - 15414, - 15410, - 15400 - ]], - [[ - 15414, - 15416, - 15410 - ]], - [[ - 15411, - 15403, - 15418 - ]], - [[ - 15411, - 15397, - 15403 - ]], - [[ - 15388, - 15401, - 15382 - ]], - [[ - 15394, - 15392, - 15401 - ]], - [[ - 15387, - 15396, - 15388 - ]], - [[ - 15387, - 15397, - 15396 - ]], - [[ - 15418, - 15405, - 15399 - ]], - [[ - 15418, - 15403, - 15405 - ]], - [[ - 15389, - 15393, - 15409 - ]], - [[ - 15392, - 15394, - 15393 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95da8252-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8d649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15419, - 15420, - 15421 - ]], - [[ - 15422, - 15423, - 15424 - ]], - [[ - 15424, - 15425, - 15426 - ]], - [[ - 15427, - 15428, - 15429 - ]], - [[ - 15430, - 15426, - 15431 - ]], - [[ - 15432, - 15420, - 15433 - ]], - [[ - 15434, - 15435, - 15425 - ]], - [[ - 15425, - 15436, - 15437 - ]], - [[ - 15438, - 15434, - 15425 - ]], - [[ - 15425, - 15437, - 15426 - ]], - [[ - 15435, - 15439, - 15425 - ]], - [[ - 15440, - 15436, - 15439 - ]], - [[ - 15440, - 15441, - 15442 - ]], - [[ - 15440, - 15439, - 15441 - ]], - [[ - 15423, - 15443, - 15424 - ]], - [[ - 15438, - 15425, - 15424 - ]], - [[ - 15430, - 15444, - 15433 - ]], - [[ - 15430, - 15431, - 15444 - ]], - [[ - 15445, - 15443, - 15423 - ]], - [[ - 15438, - 15424, - 15443 - ]], - [[ - 15419, - 15430, - 15433 - ]], - [[ - 15446, - 15426, - 15430 - ]], - [[ - 15431, - 15429, - 15444 - ]], - [[ - 15431, - 15427, - 15429 - ]], - [[ - 15426, - 15437, - 15431 - ]], - [[ - 15428, - 15420, - 15432 - ]], - [[ - 15447, - 15448, - 15449 - ]], - [[ - 15446, - 15447, - 15449 - ]], - [[ - 15419, - 15446, - 15430 - ]], - [[ - 15449, - 15422, - 15446 - ]], - [[ - 15441, - 15450, - 15442 - ]], - [[ - 15435, - 15443, - 15445 - ]], - [[ - 15450, - 15435, - 15445 - ]], - [[ - 15441, - 15439, - 15435 - ]], - [[ - 15419, - 15433, - 15420 - ]], - [[ - 15444, - 15429, - 15432 - ]], - [[ - 15451, - 15447, - 15446 - ]], - [[ - 15448, - 15445, - 15449 - ]], - [[ - 15426, - 15422, - 15424 - ]], - [[ - 15449, - 15445, - 15423 - ]], - [[ - 15442, - 15450, - 15445 - ]], - [[ - 15441, - 15435, - 15450 - ]], - [[ - 15446, - 15422, - 15426 - ]], - [[ - 15449, - 15423, - 15422 - ]], - [[ - 15444, - 15432, - 15433 - ]], - [[ - 15429, - 15428, - 15432 - ]], - [[ - 15437, - 15428, - 15427 - ]], - [[ - 15440, - 15420, - 15428 - ]], - [[ - 15439, - 15436, - 15425 - ]], - [[ - 15440, - 15437, - 15436 - ]], - [[ - 15442, - 15451, - 15421 - ]], - [[ - 15442, - 15448, - 15451 - ]], - [[ - 15443, - 15434, - 15438 - ]], - [[ - 15443, - 15435, - 15434 - ]], - [[ - 15451, - 15419, - 15421 - ]], - [[ - 15451, - 15446, - 15419 - ]], - [[ - 15451, - 15448, - 15447 - ]], - [[ - 15442, - 15445, - 15448 - ]], - [[ - 15431, - 15437, - 15427 - ]], - [[ - 15440, - 15428, - 15437 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95dca4f1-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba4749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15452, - 15453, - 15454 - ]], - [[ - 15455, - 15456, - 15457 - ]], - [[ - 15458, - 15455, - 15459 - ]], - [[ - 15460, - 15461, - 15454 - ]], - [[ - 15462, - 15456, - 15455 - ]], - [[ - 15455, - 15458, - 15462 - ]], - [[ - 15462, - 15457, - 15456 - ]], - [[ - 15459, - 15455, - 15463 - ]], - [[ - 15464, - 15465, - 15466 - ]], - [[ - 15464, - 15463, - 15465 - ]], - [[ - 15459, - 15464, - 15452 - ]], - [[ - 15465, - 15463, - 15466 - ]], - [[ - 15467, - 15462, - 15468 - ]], - [[ - 15457, - 15463, - 15455 - ]], - [[ - 15467, - 15457, - 15462 - ]], - [[ - 15466, - 15463, - 15457 - ]], - [[ - 15469, - 15467, - 15468 - ]], - [[ - 15466, - 15457, - 15467 - ]], - [[ - 15459, - 15452, - 15470 - ]], - [[ - 15471, - 15467, - 15469 - ]], - [[ - 15454, - 15453, - 15460 - ]], - [[ - 15452, - 15466, - 15471 - ]], - [[ - 15452, - 15471, - 15453 - ]], - [[ - 15466, - 15467, - 15471 - ]], - [[ - 15458, - 15468, - 15462 - ]], - [[ - 15458, - 15472, - 15468 - ]], - [[ - 15471, - 15469, - 15453 - ]], - [[ - 15461, - 15472, - 15454 - ]], - [[ - 15469, - 15460, - 15453 - ]], - [[ - 15469, - 15468, - 15461 - ]], - [[ - 15470, - 15454, - 15472 - ]], - [[ - 15470, - 15452, - 15454 - ]], - [[ - 15469, - 15461, - 15460 - ]], - [[ - 15468, - 15472, - 15461 - ]], - [[ - 15452, - 15464, - 15466 - ]], - [[ - 15459, - 15463, - 15464 - ]], - [[ - 15473, - 15472, - 15458 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95de048f-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15474, - 15475, - 15476 - ]], - [[ - 15477, - 15478, - 15479 - ]], - [[ - 15480, - 15477, - 15479 - ]], - [[ - 15481, - 15482, - 15483 - ]], - [[ - 15484, - 15478, - 15485 - ]], - [[ - 15477, - 15480, - 15486 - ]], - [[ - 15484, - 15485, - 15487 - ]], - [[ - 15488, - 15489, - 15490 - ]], - [[ - 15478, - 15491, - 15485 - ]], - [[ - 15486, - 15480, - 15490 - ]], - [[ - 15492, - 15487, - 15476 - ]], - [[ - 15485, - 15491, - 15493 - ]], - [[ - 15492, - 15476, - 15475 - ]], - [[ - 15494, - 15495, - 15496 - ]], - [[ - 15487, - 15497, - 15476 - ]], - [[ - 15481, - 15491, - 15482 - ]], - [[ - 15487, - 15493, - 15497 - ]], - [[ - 15487, - 15485, - 15493 - ]], - [[ - 15498, - 15475, - 15474 - ]], - [[ - 15481, - 15493, - 15491 - ]], - [[ - 15484, - 15492, - 15496 - ]], - [[ - 15494, - 15474, - 15499 - ]], - [[ - 15492, - 15475, - 15498 - ]], - [[ - 15476, - 15497, - 15474 - ]], - [[ - 15499, - 15474, - 15497 - ]], - [[ - 15496, - 15498, - 15474 - ]], - [[ - 15483, - 15482, - 15486 - ]], - [[ - 15491, - 15478, - 15486 - ]], - [[ - 15500, - 15488, - 15501 - ]], - [[ - 15488, - 15502, - 15481 - ]], - [[ - 15490, - 15489, - 15483 - ]], - [[ - 15502, - 15500, - 15503 - ]], - [[ - 15488, - 15481, - 15489 - ]], - [[ - 15497, - 15493, - 15481 - ]], - [[ - 15495, - 15490, - 15480 - ]], - [[ - 15501, - 15488, - 15490 - ]], - [[ - 15474, - 15494, - 15496 - ]], - [[ - 15504, - 15495, - 15494 - ]], - [[ - 15479, - 15484, - 15496 - ]], - [[ - 15479, - 15478, - 15484 - ]], - [[ - 15496, - 15492, - 15498 - ]], - [[ - 15484, - 15487, - 15492 - ]], - [[ - 15491, - 15486, - 15482 - ]], - [[ - 15478, - 15477, - 15486 - ]], - [[ - 15495, - 15501, - 15490 - ]], - [[ - 15495, - 15500, - 15501 - ]], - [[ - 15504, - 15500, - 15495 - ]], - [[ - 15499, - 15497, - 15481 - ]], - [[ - 15504, - 15503, - 15500 - ]], - [[ - 15504, - 15494, - 15499 - ]], - [[ - 15504, - 15499, - 15503 - ]], - [[ - 15488, - 15500, - 15502 - ]], - [[ - 15490, - 15483, - 15486 - ]], - [[ - 15489, - 15481, - 15483 - ]], - [[ - 15502, - 15499, - 15481 - ]], - [[ - 15502, - 15503, - 15499 - ]], - [[ - 15480, - 15505, - 15495 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95df8b58-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15506, - 15507, - 15508 - ]], - [[ - 15509, - 15510, - 15511 - ]], - [[ - 15512, - 15509, - 15511 - ]], - [[ - 15508, - 15513, - 15506 - ]], - [[ - 15514, - 15511, - 15515 - ]], - [[ - 15510, - 15516, - 15511 - ]], - [[ - 15517, - 15516, - 15510 - ]], - [[ - 15518, - 15519, - 8761 - ]], - [[ - 8674, - 15517, - 8675 - ]], - [[ - 8674, - 15516, - 15517 - ]], - [[ - 15506, - 15520, - 15521 - ]], - [[ - 8674, - 8760, - 15520 - ]], - [[ - 8675, - 15522, - 8761 - ]], - [[ - 15523, - 15521, - 8760 - ]], - [[ - 15524, - 15514, - 15525 - ]], - [[ - 15508, - 15516, - 15526 - ]], - [[ - 15514, - 15515, - 15508 - ]], - [[ - 15511, - 15516, - 15515 - ]], - [[ - 15514, - 15508, - 15507 - ]], - [[ - 15515, - 15516, - 15508 - ]], - [[ - 8674, - 15526, - 15516 - ]], - [[ - 8674, - 15520, - 15526 - ]], - [[ - 15527, - 15518, - 8761 - ]], - [[ - 15525, - 15507, - 15519 - ]], - [[ - 8761, - 15524, - 15528 - ]], - [[ - 15512, - 15511, - 15514 - ]], - [[ - 8761, - 15519, - 8760 - ]], - [[ - 15519, - 15507, - 15506 - ]], - [[ - 15526, - 15513, - 15508 - ]], - [[ - 15526, - 15520, - 15513 - ]], - [[ - 8760, - 15521, - 15520 - ]], - [[ - 15521, - 15519, - 15506 - ]], - [[ - 15520, - 15506, - 15513 - ]], - [[ - 15521, - 15523, - 15519 - ]], - [[ - 8760, - 15519, - 15523 - ]], - [[ - 15518, - 15525, - 15519 - ]], - [[ - 15528, - 15529, - 8761 - ]], - [[ - 15528, - 15518, - 15529 - ]], - [[ - 15528, - 15525, - 15518 - ]], - [[ - 15528, - 15524, - 15525 - ]], - [[ - 15522, - 15512, - 15524 - ]], - [[ - 15522, - 15517, - 15509 - ]], - [[ - 15522, - 15509, - 15512 - ]], - [[ - 15517, - 15510, - 15509 - ]], - [[ - 8761, - 15522, - 15524 - ]], - [[ - 8675, - 15517, - 15522 - ]], - [[ - 15525, - 15514, - 15507 - ]], - [[ - 15524, - 15512, - 15514 - ]], - [[ - 15529, - 15527, - 8761 - ]], - [[ - 15529, - 15518, - 15527 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95e04e3b-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef9bf749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15530, - 15531, - 15532 - ]], - [[ - 15533, - 15534, - 15535 - ]], - [[ - 15536, - 15537, - 15538 - ]], - [[ - 15537, - 15539, - 15538 - ]], - [[ - 15540, - 15541, - 15542 - ]], - [[ - 15543, - 15538, - 15542 - ]], - [[ - 15544, - 15541, - 15545 - ]], - [[ - 15546, - 15547, - 15536 - ]], - [[ - 15548, - 15549, - 15550 - ]], - [[ - 15551, - 15552, - 15537 - ]], - [[ - 15539, - 15553, - 15538 - ]], - [[ - 15547, - 15551, - 15537 - ]], - [[ - 15554, - 15552, - 15555 - ]], - [[ - 15537, - 15552, - 15554 - ]], - [[ - 15556, - 15557, - 15558 - ]], - [[ - 15539, - 15559, - 15541 - ]], - [[ - 15550, - 15552, - 15551 - ]], - [[ - 15539, - 15554, - 15559 - ]], - [[ - 15539, - 15537, - 15554 - ]], - [[ - 15544, - 15545, - 15560 - ]], - [[ - 15559, - 15554, - 15555 - ]], - [[ - 15561, - 15544, - 15531 - ]], - [[ - 15545, - 15559, - 15555 - ]], - [[ - 15546, - 15536, - 15562 - ]], - [[ - 15544, - 15542, - 15541 - ]], - [[ - 15563, - 15536, - 15564 - ]], - [[ - 15547, - 15537, - 15536 - ]], - [[ - 15535, - 15562, - 15565 - ]], - [[ - 15546, - 15548, - 15551 - ]], - [[ - 15535, - 15565, - 15533 - ]], - [[ - 15562, - 15536, - 15565 - ]], - [[ - 15539, - 15541, - 15553 - ]], - [[ - 15559, - 15545, - 15541 - ]], - [[ - 15566, - 15564, - 15561 - ]], - [[ - 15540, - 15553, - 15541 - ]], - [[ - 15533, - 15566, - 15534 - ]], - [[ - 15533, - 15565, - 15566 - ]], - [[ - 15565, - 15563, - 15566 - ]], - [[ - 15536, - 15538, - 15564 - ]], - [[ - 15566, - 15563, - 15564 - ]], - [[ - 15565, - 15536, - 15563 - ]], - [[ - 15538, - 15540, - 15542 - ]], - [[ - 15538, - 15553, - 15540 - ]], - [[ - 15545, - 15556, - 15560 - ]], - [[ - 15555, - 15557, - 15556 - ]], - [[ - 15555, - 15550, - 15549 - ]], - [[ - 15555, - 15552, - 15550 - ]], - [[ - 15566, - 15561, - 15530 - ]], - [[ - 15564, - 15538, - 15543 - ]], - [[ - 15531, - 15544, - 15560 - ]], - [[ - 15561, - 15543, - 15544 - ]], - [[ - 15546, - 15551, - 15547 - ]], - [[ - 15548, - 15550, - 15551 - ]], - [[ - 15558, - 15567, - 15560 - ]], - [[ - 15530, - 15561, - 15531 - ]], - [[ - 15556, - 15558, - 15560 - ]], - [[ - 15567, - 15531, - 15560 - ]], - [[ - 15535, - 15546, - 15562 - ]], - [[ - 15535, - 15548, - 15546 - ]], - [[ - 15544, - 15543, - 15542 - ]], - [[ - 15561, - 15564, - 15543 - ]], - [[ - 15557, - 15567, - 15558 - ]], - [[ - 15532, - 15534, - 15530 - ]], - [[ - 15567, - 15532, - 15531 - ]], - [[ - 15534, - 15566, - 15530 - ]], - [[ - 15545, - 15555, - 15556 - ]], - [[ - 15549, - 15557, - 15555 - ]], - [[ - 15557, - 15532, - 15567 - ]], - [[ - 15557, - 15534, - 15532 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95e1395b-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efe6f949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15568, - 15569, - 15570 - ]], - [[ - 15571, - 15572, - 15573 - ]], - [[ - 15571, - 10005, - 11645 - ]], - [[ - 15574, - 15569, - 15568 - ]], - [[ - 15575, - 15576, - 15577 - ]], - [[ - 15569, - 15573, - 15575 - ]], - [[ - 15578, - 15579, - 15571 - ]], - [[ - 15573, - 15574, - 15571 - ]], - [[ - 15570, - 15569, - 15575 - ]], - [[ - 15571, - 15579, - 15580 - ]], - [[ - 11645, - 15578, - 15571 - ]], - [[ - 15578, - 15581, - 15577 - ]], - [[ - 15573, - 15572, - 15575 - ]], - [[ - 15579, - 15578, - 15576 - ]], - [[ - 15582, - 15583, - 15584 - ]], - [[ - 15575, - 15577, - 12553 - ]], - [[ - 15585, - 15581, - 15578 - ]], - [[ - 15584, - 12553, - 15577 - ]], - [[ - 15579, - 15576, - 15580 - ]], - [[ - 15575, - 12553, - 10000 - ]], - [[ - 15578, - 15577, - 15576 - ]], - [[ - 15581, - 15584, - 15577 - ]], - [[ - 11645, - 15585, - 15578 - ]], - [[ - 11645, - 12776, - 15582 - ]], - [[ - 15585, - 15584, - 15581 - ]], - [[ - 15583, - 12776, - 12553 - ]], - [[ - 10006, - 15570, - 10000 - ]], - [[ - 15586, - 10005, - 15574 - ]], - [[ - 15586, - 15568, - 15570 - ]], - [[ - 15574, - 15573, - 15569 - ]], - [[ - 15585, - 15582, - 15584 - ]], - [[ - 15585, - 11645, - 15582 - ]], - [[ - 15570, - 15575, - 10000 - ]], - [[ - 15580, - 15576, - 15575 - ]], - [[ - 15586, - 15574, - 15568 - ]], - [[ - 10005, - 15571, - 15574 - ]], - [[ - 15572, - 15580, - 15575 - ]], - [[ - 15572, - 15571, - 15580 - ]], - [[ - 15584, - 15583, - 12553 - ]], - [[ - 15582, - 12776, - 15583 - ]], - [[ - 10006, - 15586, - 15570 - ]], - [[ - 10006, - 10005, - 15586 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95e24a9a-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff1b449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "heesters", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15587, - 15588, - 12699 - ]], - [[ - 15588, - 14325, - 12674 - ]], - [[ - 14320, - 15589, - 15590 - ]], - [[ - 15591, - 15592, - 14322 - ]], - [[ - 15593, - 14322, - 14326 - ]], - [[ - 15594, - 14320, - 14322 - ]], - [[ - 15595, - 15594, - 14322 - ]], - [[ - 15596, - 15597, - 15598 - ]], - [[ - 15599, - 15600, - 14320 - ]], - [[ - 15596, - 15598, - 14325 - ]], - [[ - 15601, - 15602, - 15603 - ]], - [[ - 15595, - 14322, - 15592 - ]], - [[ - 15604, - 15602, - 15605 - ]], - [[ - 15603, - 15592, - 15591 - ]], - [[ - 15606, - 15607, - 15593 - ]], - [[ - 15608, - 15604, - 15609 - ]], - [[ - 14320, - 15590, - 14325 - ]], - [[ - 15610, - 12686, - 12674 - ]], - [[ - 15589, - 15611, - 15590 - ]], - [[ - 15598, - 12674, - 14325 - ]], - [[ - 15612, - 15613, - 15600 - ]], - [[ - 15589, - 14320, - 15600 - ]], - [[ - 15590, - 15614, - 15615 - ]], - [[ - 15613, - 15589, - 15600 - ]], - [[ - 15616, - 15617, - 14326 - ]], - [[ - 15588, - 12674, - 12699 - ]], - [[ - 15618, - 15595, - 15592 - ]], - [[ - 15594, - 12686, - 14320 - ]], - [[ - 15619, - 15608, - 15620 - ]], - [[ - 15609, - 15604, - 15605 - ]], - [[ - 15615, - 15610, - 15598 - ]], - [[ - 15597, - 15615, - 15598 - ]], - [[ - 15614, - 15611, - 15610 - ]], - [[ - 15612, - 15611, - 15613 - ]], - [[ - 15601, - 15605, - 15602 - ]], - [[ - 15593, - 15607, - 15609 - ]], - [[ - 12685, - 15594, - 15595 - ]], - [[ - 12685, - 12686, - 15594 - ]], - [[ - 15617, - 15621, - 15619 - ]], - [[ - 15620, - 15617, - 15619 - ]], - [[ - 15620, - 15606, - 15593 - ]], - [[ - 15619, - 15621, - 15608 - ]], - [[ - 15616, - 15622, - 15587 - ]], - [[ - 14326, - 14325, - 15622 - ]], - [[ - 15590, - 15611, - 15614 - ]], - [[ - 15589, - 15613, - 15611 - ]], - [[ - 15590, - 15596, - 14325 - ]], - [[ - 15623, - 15597, - 15596 - ]], - [[ - 12686, - 15599, - 14320 - ]], - [[ - 12686, - 15600, - 15599 - ]], - [[ - 15598, - 15610, - 12674 - ]], - [[ - 15600, - 12686, - 15610 - ]], - [[ - 15623, - 15615, - 15597 - ]], - [[ - 15614, - 15610, - 15615 - ]], - [[ - 15590, - 15623, - 15596 - ]], - [[ - 15590, - 15615, - 15623 - ]], - [[ - 15606, - 15620, - 15608 - ]], - [[ - 12699, - 12685, - 15604 - ]], - [[ - 15606, - 15608, - 15607 - ]], - [[ - 15618, - 12685, - 15595 - ]], - [[ - 15621, - 15604, - 15608 - ]], - [[ - 15621, - 12699, - 15604 - ]], - [[ - 15604, - 15603, - 15602 - ]], - [[ - 15604, - 12685, - 15618 - ]], - [[ - 15593, - 15609, - 15605 - ]], - [[ - 15607, - 15608, - 15609 - ]], - [[ - 15610, - 15612, - 15600 - ]], - [[ - 15610, - 15611, - 15612 - ]], - [[ - 15622, - 15616, - 14326 - ]], - [[ - 15587, - 12699, - 15616 - ]], - [[ - 15621, - 15616, - 12699 - ]], - [[ - 15621, - 15617, - 15616 - ]], - [[ - 15593, - 15601, - 14322 - ]], - [[ - 15593, - 15605, - 15601 - ]], - [[ - 15601, - 15591, - 14322 - ]], - [[ - 15601, - 15603, - 15591 - ]], - [[ - 14326, - 15620, - 15593 - ]], - [[ - 14326, - 15617, - 15620 - ]], - [[ - 15622, - 15588, - 15587 - ]], - [[ - 15622, - 14325, - 15588 - ]], - [[ - 15603, - 15618, - 15592 - ]], - [[ - 15603, - 15604, - 15618 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95e5572f-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb6e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15624, - 15625, - 9879 - ]], - [[ - 15626, - 15627, - 9878 - ]], - [[ - 9880, - 15625, - 15626 - ]], - [[ - 15625, - 9876, - 9879 - ]], - [[ - 15626, - 15625, - 15624 - ]], - [[ - 9880, - 9876, - 15625 - ]], - [[ - 9880, - 15626, - 9878 - ]], - [[ - 15627, - 9879, - 9878 - ]], - [[ - 15624, - 15627, - 15626 - ]], - [[ - 15624, - 9879, - 15627 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95e5ccd1-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efb8e549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15628, - 15629, - 15630 - ]], - [[ - 15631, - 15628, - 15630 - ]], - [[ - 15632, - 15633, - 15634 - ]], - [[ - 15635, - 15629, - 15636 - ]], - [[ - 15637, - 15638, - 15639 - ]], - [[ - 15640, - 15641, - 15629 - ]], - [[ - 15642, - 15643, - 15644 - ]], - [[ - 15645, - 15629, - 15628 - ]], - [[ - 15646, - 15647, - 15648 - ]], - [[ - 15649, - 15650, - 15651 - ]], - [[ - 15644, - 15652, - 15653 - ]], - [[ - 15653, - 15654, - 15649 - ]], - [[ - 15655, - 15656, - 15657 - ]], - [[ - 15658, - 15650, - 15654 - ]], - [[ - 15659, - 15643, - 15660 - ]], - [[ - 15661, - 15662, - 15652 - ]], - [[ - 15663, - 15647, - 15630 - ]], - [[ - 15660, - 15643, - 15642 - ]], - [[ - 15631, - 15664, - 15628 - ]], - [[ - 15665, - 15666, - 15667 - ]], - [[ - 15668, - 15639, - 15666 - ]], - [[ - 15669, - 15656, - 15639 - ]], - [[ - 15655, - 15667, - 15666 - ]], - [[ - 15635, - 15670, - 15629 - ]], - [[ - 15635, - 15667, - 15670 - ]], - [[ - 15634, - 15670, - 15667 - ]], - [[ - 15641, - 15671, - 15636 - ]], - [[ - 15672, - 15668, - 15665 - ]], - [[ - 15673, - 15631, - 15630 - ]], - [[ - 15673, - 15664, - 15631 - ]], - [[ - 15651, - 15670, - 15634 - ]], - [[ - 15650, - 15629, - 15670 - ]], - [[ - 15632, - 15649, - 15633 - ]], - [[ - 15650, - 15670, - 15651 - ]], - [[ - 15632, - 15634, - 15667 - ]], - [[ - 15633, - 15651, - 15634 - ]], - [[ - 15638, - 15669, - 15639 - ]], - [[ - 15656, - 15666, - 15639 - ]], - [[ - 15638, - 15656, - 15669 - ]], - [[ - 15655, - 15657, - 15642 - ]], - [[ - 15674, - 15657, - 15656 - ]], - [[ - 15674, - 15675, - 15657 - ]], - [[ - 15671, - 15665, - 15636 - ]], - [[ - 15665, - 15667, - 15676 - ]], - [[ - 15635, - 15665, - 15676 - ]], - [[ - 15668, - 15637, - 15639 - ]], - [[ - 15664, - 15675, - 15674 - ]], - [[ - 15664, - 15673, - 15677 - ]], - [[ - 15678, - 15679, - 15628 - ]], - [[ - 15679, - 15640, - 15645 - ]], - [[ - 15628, - 15679, - 15645 - ]], - [[ - 15680, - 15638, - 15637 - ]], - [[ - 15648, - 15647, - 15681 - ]], - [[ - 15663, - 15682, - 15647 - ]], - [[ - 15633, - 15649, - 15651 - ]], - [[ - 15654, - 15650, - 15649 - ]], - [[ - 15632, - 15653, - 15649 - ]], - [[ - 15652, - 15644, - 15661 - ]], - [[ - 15652, - 15662, - 15654 - ]], - [[ - 15682, - 15650, - 15662 - ]], - [[ - 15659, - 15682, - 15643 - ]], - [[ - 15643, - 15682, - 15661 - ]], - [[ - 15638, - 15674, - 15656 - ]], - [[ - 15660, - 15681, - 15659 - ]], - [[ - 15647, - 15646, - 15630 - ]], - [[ - 15664, - 15674, - 15678 - ]], - [[ - 15646, - 15677, - 15673 - ]], - [[ - 15646, - 15657, - 15675 - ]], - [[ - 15679, - 15637, - 15672 - ]], - [[ - 15679, - 15678, - 15637 - ]], - [[ - 15645, - 15640, - 15629 - ]], - [[ - 15679, - 15672, - 15641 - ]], - [[ - 15629, - 15641, - 15636 - ]], - [[ - 15640, - 15679, - 15641 - ]], - [[ - 15677, - 15675, - 15664 - ]], - [[ - 15677, - 15646, - 15675 - ]], - [[ - 15632, - 15655, - 15683 - ]], - [[ - 15666, - 15656, - 15655 - ]], - [[ - 15664, - 15678, - 15628 - ]], - [[ - 15680, - 15637, - 15678 - ]], - [[ - 15655, - 15642, - 15683 - ]], - [[ - 15652, - 15654, - 15653 - ]], - [[ - 15683, - 15642, - 15653 - ]], - [[ - 15643, - 15661, - 15644 - ]], - [[ - 15653, - 15642, - 15644 - ]], - [[ - 15657, - 15660, - 15642 - ]], - [[ - 15661, - 15682, - 15662 - ]], - [[ - 15663, - 15650, - 15682 - ]], - [[ - 15671, - 15672, - 15665 - ]], - [[ - 15671, - 15641, - 15672 - ]], - [[ - 15680, - 15674, - 15638 - ]], - [[ - 15680, - 15678, - 15674 - ]], - [[ - 15646, - 15660, - 15657 - ]], - [[ - 15648, - 15681, - 15660 - ]], - [[ - 15655, - 15632, - 15667 - ]], - [[ - 15683, - 15653, - 15632 - ]], - [[ - 15662, - 15658, - 15654 - ]], - [[ - 15662, - 15650, - 15658 - ]], - [[ - 15630, - 15646, - 15673 - ]], - [[ - 15648, - 15660, - 15646 - ]], - [[ - 15647, - 15659, - 15681 - ]], - [[ - 15647, - 15682, - 15659 - ]], - [[ - 15665, - 15635, - 15636 - ]], - [[ - 15676, - 15667, - 15635 - ]], - [[ - 15665, - 15668, - 15666 - ]], - [[ - 15672, - 15637, - 15668 - ]], - [[ - 15650, - 15684, - 15629 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95e6b6dc-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef9af849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15685, - 8677, - 8755 - ]], - [[ - 15686, - 15687, - 15688 - ]], - [[ - 15686, - 15689, - 15687 - ]], - [[ - 15690, - 8677, - 15688 - ]], - [[ - 15691, - 15689, - 15686 - ]], - [[ - 15687, - 15690, - 15688 - ]], - [[ - 8678, - 15689, - 8754 - ]], - [[ - 8678, - 15690, - 15689 - ]], - [[ - 15689, - 15690, - 15687 - ]], - [[ - 8678, - 8677, - 15690 - ]], - [[ - 8677, - 15685, - 15688 - ]], - [[ - 15691, - 8754, - 15689 - ]], - [[ - 15691, - 15685, - 8755 - ]], - [[ - 15686, - 15688, - 15685 - ]], - [[ - 15685, - 15691, - 15686 - ]], - [[ - 8755, - 8754, - 15691 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95e88c0d-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15692, - 15693, - 15694 - ]], - [[ - 15692, - 15695, - 15696 - ]], - [[ - 15697, - 15698, - 15695 - ]], - [[ - 15699, - 15700, - 15696 - ]], - [[ - 15701, - 15702, - 15698 - ]], - [[ - 15703, - 15704, - 15702 - ]], - [[ - 15697, - 15695, - 15692 - ]], - [[ - 15695, - 15702, - 15699 - ]], - [[ - 15701, - 15698, - 15705 - ]], - [[ - 15702, - 15695, - 15698 - ]], - [[ - 15706, - 15707, - 15694 - ]], - [[ - 15707, - 15701, - 15705 - ]], - [[ - 15707, - 15705, - 15697 - ]], - [[ - 15707, - 15706, - 15701 - ]], - [[ - 15707, - 15697, - 15694 - ]], - [[ - 15705, - 15698, - 15697 - ]], - [[ - 15695, - 15699, - 15696 - ]], - [[ - 15700, - 15693, - 15692 - ]], - [[ - 15702, - 15704, - 15699 - ]], - [[ - 15708, - 15693, - 15704 - ]], - [[ - 15704, - 15700, - 15699 - ]], - [[ - 15704, - 15693, - 15700 - ]], - [[ - 15708, - 15701, - 15706 - ]], - [[ - 15708, - 15709, - 15703 - ]], - [[ - 15701, - 15708, - 15703 - ]], - [[ - 15708, - 15704, - 15709 - ]], - [[ - 15701, - 15703, - 15702 - ]], - [[ - 15709, - 15704, - 15703 - ]], - [[ - 15697, - 15692, - 15694 - ]], - [[ - 15696, - 15700, - 15692 - ]], - [[ - 15710, - 15693, - 15708 - ]], - [[ - 15694, - 15711, - 15706 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95ea39ef-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15712, - 15713, - 15714 - ]], - [[ - 15715, - 15714, - 15716 - ]], - [[ - 15717, - 15718, - 15716 - ]], - [[ - 15717, - 15713, - 15712 - ]], - [[ - 15718, - 15715, - 15716 - ]], - [[ - 15718, - 15717, - 15715 - ]], - [[ - 15715, - 15712, - 15714 - ]], - [[ - 15715, - 15717, - 15712 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95ea6026-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efbb5949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15719, - 15720, - 15721 - ]], - [[ - 15722, - 15723, - 15724 - ]], - [[ - 15725, - 15726, - 15727 - ]], - [[ - 15728, - 15729, - 15730 - ]], - [[ - 15731, - 15724, - 15726 - ]], - [[ - 15730, - 15729, - 15721 - ]], - [[ - 15732, - 15733, - 15734 - ]], - [[ - 15735, - 15736, - 15730 - ]], - [[ - 15734, - 15726, - 15724 - ]], - [[ - 15737, - 15738, - 15726 - ]], - [[ - 15719, - 15721, - 15729 - ]], - [[ - 15739, - 15730, - 15721 - ]], - [[ - 15740, - 15732, - 15734 - ]], - [[ - 15726, - 15725, - 15731 - ]], - [[ - 15741, - 15722, - 15725 - ]], - [[ - 15739, - 15721, - 15722 - ]], - [[ - 15741, - 15735, - 15730 - ]], - [[ - 15736, - 15728, - 15730 - ]], - [[ - 15728, - 15733, - 15742 - ]], - [[ - 15737, - 15726, - 15734 - ]], - [[ - 15740, - 15734, - 15724 - ]], - [[ - 15727, - 15743, - 15736 - ]], - [[ - 15723, - 15740, - 15724 - ]], - [[ - 15742, - 15733, - 15732 - ]], - [[ - 15742, - 15740, - 15744 - ]], - [[ - 15724, - 15731, - 15722 - ]], - [[ - 15725, - 15722, - 15731 - ]], - [[ - 15721, - 15720, - 15722 - ]], - [[ - 15745, - 15744, - 15723 - ]], - [[ - 15723, - 15722, - 15720 - ]], - [[ - 15744, - 15740, - 15723 - ]], - [[ - 15742, - 15732, - 15740 - ]], - [[ - 15739, - 15741, - 15730 - ]], - [[ - 15727, - 15726, - 15738 - ]], - [[ - 15722, - 15741, - 15739 - ]], - [[ - 15725, - 15735, - 15741 - ]], - [[ - 15720, - 15745, - 15723 - ]], - [[ - 15746, - 15742, - 15744 - ]], - [[ - 15733, - 15737, - 15734 - ]], - [[ - 15733, - 15728, - 15738 - ]], - [[ - 15743, - 15738, - 15728 - ]], - [[ - 15737, - 15733, - 15738 - ]], - [[ - 15735, - 15727, - 15736 - ]], - [[ - 15735, - 15725, - 15727 - ]], - [[ - 15746, - 15745, - 15719 - ]], - [[ - 15747, - 15744, - 15745 - ]], - [[ - 15746, - 15719, - 15729 - ]], - [[ - 15745, - 15720, - 15719 - ]], - [[ - 15736, - 15743, - 15728 - ]], - [[ - 15727, - 15738, - 15743 - ]], - [[ - 15746, - 15747, - 15745 - ]], - [[ - 15746, - 15744, - 15747 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95eafcdb-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15748, - 15749, - 8753 - ]], - [[ - 15748, - 8723, - 8752 - ]], - [[ - 15750, - 15751, - 15748 - ]], - [[ - 15748, - 8753, - 8723 - ]], - [[ - 15750, - 15749, - 15751 - ]], - [[ - 8756, - 8753, - 15749 - ]], - [[ - 15750, - 15748, - 8752 - ]], - [[ - 15751, - 15749, - 15748 - ]], - [[ - 8756, - 15750, - 8752 - ]], - [[ - 8756, - 15749, - 15750 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95ec5c64-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba6749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15752, - 15753, - 15754 - ]], - [[ - 15755, - 15756, - 15757 - ]], - [[ - 15758, - 15759, - 15756 - ]], - [[ - 15757, - 15760, - 15761 - ]], - [[ - 15762, - 15763, - 15758 - ]], - [[ - 15759, - 15754, - 15753 - ]], - [[ - 15764, - 15765, - 15762 - ]], - [[ - 15765, - 15754, - 15759 - ]], - [[ - 15755, - 15758, - 15756 - ]], - [[ - 15763, - 15765, - 15758 - ]], - [[ - 15758, - 15765, - 15759 - ]], - [[ - 15764, - 15760, - 15754 - ]], - [[ - 15759, - 15753, - 15756 - ]], - [[ - 15754, - 15760, - 15752 - ]], - [[ - 15756, - 15766, - 15757 - ]], - [[ - 15756, - 15753, - 15766 - ]], - [[ - 15762, - 15765, - 15763 - ]], - [[ - 15764, - 15754, - 15765 - ]], - [[ - 15767, - 15768, - 15769 - ]], - [[ - 15768, - 15753, - 15769 - ]], - [[ - 15757, - 15752, - 15760 - ]], - [[ - 15769, - 15753, - 15752 - ]], - [[ - 15755, - 15757, - 15761 - ]], - [[ - 15767, - 15769, - 15752 - ]], - [[ - 15766, - 15768, - 15757 - ]], - [[ - 15766, - 15753, - 15768 - ]], - [[ - 15757, - 15767, - 15752 - ]], - [[ - 15757, - 15768, - 15767 - ]], - [[ - 15762, - 15755, - 15761 - ]], - [[ - 15762, - 15758, - 15755 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95ecd1fd-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15770, - 15771, - 15772 - ]], - [[ - 15773, - 15774, - 15775 - ]], - [[ - 15776, - 15777, - 15778 - ]], - [[ - 15779, - 15780, - 15781 - ]], - [[ - 15770, - 15774, - 15771 - ]], - [[ - 15771, - 15779, - 15781 - ]], - [[ - 15770, - 15775, - 15774 - ]], - [[ - 15782, - 15783, - 15774 - ]], - [[ - 15773, - 15782, - 15774 - ]], - [[ - 15784, - 15785, - 15786 - ]], - [[ - 15787, - 15788, - 15782 - ]], - [[ - 15789, - 15785, - 15784 - ]], - [[ - 15790, - 15776, - 15778 - ]], - [[ - 15776, - 15791, - 15777 - ]], - [[ - 15780, - 15786, - 15781 - ]], - [[ - 15771, - 15792, - 15772 - ]], - [[ - 15790, - 15793, - 15794 - ]], - [[ - 15793, - 15784, - 15779 - ]], - [[ - 15793, - 15778, - 15784 - ]], - [[ - 15777, - 15784, - 15778 - ]], - [[ - 15771, - 15794, - 15779 - ]], - [[ - 15779, - 15784, - 15780 - ]], - [[ - 15795, - 15770, - 15772 - ]], - [[ - 15795, - 15796, - 15770 - ]], - [[ - 15780, - 15784, - 15786 - ]], - [[ - 15777, - 15791, - 15789 - ]], - [[ - 15773, - 15787, - 15782 - ]], - [[ - 15787, - 15797, - 15788 - ]], - [[ - 15770, - 15796, - 15798 - ]], - [[ - 15798, - 15787, - 15773 - ]], - [[ - 15788, - 15791, - 15776 - ]], - [[ - 15795, - 15785, - 15791 - ]], - [[ - 15788, - 15799, - 15791 - ]], - [[ - 15797, - 15791, - 15799 - ]], - [[ - 15782, - 15788, - 15776 - ]], - [[ - 15787, - 15796, - 15797 - ]], - [[ - 15777, - 15789, - 15784 - ]], - [[ - 15791, - 15785, - 15789 - ]], - [[ - 15798, - 15796, - 15787 - ]], - [[ - 15795, - 15797, - 15796 - ]], - [[ - 15788, - 15797, - 15799 - ]], - [[ - 15795, - 15791, - 15797 - ]], - [[ - 15775, - 15798, - 15773 - ]], - [[ - 15775, - 15770, - 15798 - ]], - [[ - 15785, - 15781, - 15786 - ]], - [[ - 15785, - 15792, - 15781 - ]], - [[ - 15774, - 15783, - 15794 - ]], - [[ - 15782, - 15776, - 15790 - ]], - [[ - 15783, - 15790, - 15794 - ]], - [[ - 15783, - 15782, - 15790 - ]], - [[ - 15794, - 15793, - 15779 - ]], - [[ - 15790, - 15778, - 15793 - ]], - [[ - 15794, - 15771, - 15774 - ]], - [[ - 15781, - 15792, - 15771 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95ecf925-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15800, - 15801, - 15802 - ]], - [[ - 15803, - 15804, - 15805 - ]], - [[ - 15806, - 15807, - 15801 - ]], - [[ - 15808, - 15809, - 15804 - ]], - [[ - 15810, - 15811, - 15807 - ]], - [[ - 15812, - 15809, - 15808 - ]], - [[ - 15802, - 15801, - 15807 - ]], - [[ - 15813, - 15804, - 15803 - ]], - [[ - 15814, - 15810, - 15801 - ]], - [[ - 15802, - 15811, - 15815 - ]], - [[ - 15816, - 15810, - 15817 - ]], - [[ - 15818, - 15819, - 15810 - ]], - [[ - 15819, - 15818, - 15805 - ]], - [[ - 15819, - 15811, - 15810 - ]], - [[ - 15820, - 15821, - 15814 - ]], - [[ - 15805, - 15818, - 15821 - ]], - [[ - 15820, - 15814, - 15822 - ]], - [[ - 15817, - 15810, - 15814 - ]], - [[ - 15814, - 15823, - 15822 - ]], - [[ - 15814, - 15801, - 15823 - ]], - [[ - 15821, - 15817, - 15814 - ]], - [[ - 15821, - 15818, - 15816 - ]], - [[ - 15824, - 15819, - 15805 - ]], - [[ - 15824, - 15811, - 15819 - ]], - [[ - 15821, - 15816, - 15817 - ]], - [[ - 15818, - 15810, - 15816 - ]], - [[ - 15810, - 15806, - 15801 - ]], - [[ - 15810, - 15807, - 15806 - ]], - [[ - 15803, - 15820, - 15822 - ]], - [[ - 15805, - 15821, - 15820 - ]], - [[ - 15823, - 15813, - 15803 - ]], - [[ - 15823, - 15801, - 15813 - ]], - [[ - 15800, - 15815, - 15812 - ]], - [[ - 15811, - 15824, - 15812 - ]], - [[ - 15811, - 15802, - 15807 - ]], - [[ - 15815, - 15800, - 15802 - ]], - [[ - 15820, - 15803, - 15805 - ]], - [[ - 15822, - 15823, - 15803 - ]], - [[ - 15825, - 15800, - 15808 - ]], - [[ - 15813, - 15801, - 15800 - ]], - [[ - 15811, - 15812, - 15815 - ]], - [[ - 15824, - 15809, - 15812 - ]], - [[ - 15813, - 15825, - 15804 - ]], - [[ - 15800, - 15812, - 15808 - ]], - [[ - 15804, - 15825, - 15808 - ]], - [[ - 15813, - 15800, - 15825 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95ed1f59-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba4b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15826, - 15827, - 15828 - ]], - [[ - 15829, - 15830, - 15831 - ]], - [[ - 15826, - 15829, - 15831 - ]], - [[ - 15832, - 15833, - 15834 - ]], - [[ - 15834, - 15827, - 15831 - ]], - [[ - 15835, - 15836, - 15837 - ]], - [[ - 15831, - 15827, - 15826 - ]], - [[ - 15835, - 15837, - 15838 - ]], - [[ - 15834, - 15833, - 15827 - ]], - [[ - 15834, - 15839, - 15832 - ]], - [[ - 15829, - 15840, - 15830 - ]], - [[ - 15829, - 15826, - 15836 - ]], - [[ - 15829, - 15836, - 15840 - ]], - [[ - 15827, - 15833, - 15828 - ]], - [[ - 15837, - 15828, - 15832 - ]], - [[ - 15836, - 15826, - 15828 - ]], - [[ - 15838, - 15832, - 15839 - ]], - [[ - 15828, - 15833, - 15832 - ]], - [[ - 15838, - 15837, - 15832 - ]], - [[ - 15836, - 15828, - 15837 - ]], - [[ - 15830, - 15841, - 15839 - ]], - [[ - 15841, - 15840, - 15835 - ]], - [[ - 15841, - 15835, - 15838 - ]], - [[ - 15840, - 15836, - 15835 - ]], - [[ - 15842, - 15834, - 15831 - ]], - [[ - 15842, - 15839, - 15834 - ]], - [[ - 15839, - 15841, - 15838 - ]], - [[ - 15830, - 15840, - 15841 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b95ed4687-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "begroeidterreindeeloptalud": "0", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "groenvoorziening", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68efba5849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 15843, - 15844, - 15845 - ]], - [[ - 15846, - 15847, - 15848 - ]], - [[ - 15843, - 15845, - 15849 - ]], - [[ - 15844, - 15847, - 15845 - ]], - [[ - 15850, - 15843, - 15851 - ]], - [[ - 15845, - 15847, - 15849 - ]], - [[ - 15851, - 15843, - 15849 - ]], - [[ - 15850, - 15844, - 15843 - ]], - [[ - 15850, - 15851, - 15848 - ]], - [[ - 15849, - 15847, - 15851 - ]], - [[ - 15851, - 15846, - 15848 - ]], - [[ - 15851, - 15847, - 15846 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "PlantCover" - }, - "b981072fa-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15217, - 11959, - 15852 - ]], - [[ - 15217, - 15852, - 15235 - ]], - [[ - 11959, - 11986, - 15852 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9813a745-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad op trap", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef1ad049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "gesloten verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15853, - 8126, - 8128 - ]], - [[ - 15853, - 8128, - 15854 - ]], - [[ - 15854, - 8128, - 8130 - ]], - [[ - 8130, - 8128, - 8129 - ]], - [[ - 8126, - 8127, - 8128 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9813ce67-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef345149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15855, - 15856, - 15857 - ]], - [[ - 15855, - 15857, - 15858 - ]], - [[ - 15856, - 15859, - 15857 - ]], - [[ - 15856, - 15860, - 15859 - ]], - [[ - 15860, - 15856, - 15861 - ]], - [[ - 15861, - 15856, - 15862 - ]], - [[ - 15862, - 15856, - 15863 - ]], - [[ - 15863, - 15856, - 15864 - ]], - [[ - 15864, - 15856, - 15865 - ]], - [[ - 15865, - 15856, - 15866 - ]], - [[ - 15866, - 15856, - 15867 - ]], - [[ - 15867, - 15856, - 15868 - ]], - [[ - 15868, - 15856, - 15869 - ]], - [[ - 15869, - 15856, - 15870 - ]], - [[ - 15870, - 15856, - 15871 - ]], - [[ - 15871, - 15856, - 15872 - ]], - [[ - 15872, - 15856, - 15873 - ]], - [[ - 15873, - 15856, - 15874 - ]], - [[ - 15874, - 15856, - 15875 - ]], - [[ - 15875, - 15856, - 15876 - ]], - [[ - 15876, - 15856, - 15877 - ]], - [[ - 15877, - 15856, - 15878 - ]], - [[ - 15878, - 15856, - 15879 - ]], - [[ - 15879, - 15856, - 15880 - ]], - [[ - 15880, - 15856, - 15881 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9816dbab-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eebe0749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15882, - 15883, - 15217 - ]], - [[ - 14527, - 14532, - 15884 - ]], - [[ - 15885, - 15328, - 15886 - ]], - [[ - 15886, - 15328, - 15887 - ]], - [[ - 15887, - 15328, - 15888 - ]], - [[ - 15888, - 15328, - 15889 - ]], - [[ - 15328, - 15890, - 15891 - ]], - [[ - 15889, - 15328, - 15891 - ]], - [[ - 15890, - 15328, - 15892 - ]], - [[ - 15892, - 14118, - 15893 - ]], - [[ - 15893, - 14118, - 15894 - ]], - [[ - 15894, - 14102, - 15895 - ]], - [[ - 15895, - 14102, - 15896 - ]], - [[ - 11876, - 15884, - 15897 - ]], - [[ - 15898, - 14102, - 15897 - ]], - [[ - 15896, - 14102, - 15898 - ]], - [[ - 15899, - 15328, - 15885 - ]], - [[ - 15884, - 15693, - 14527 - ]], - [[ - 15899, - 15900, - 15325 - ]], - [[ - 15693, - 15884, - 15694 - ]], - [[ - 15694, - 15884, - 11876 - ]], - [[ - 11876, - 15897, - 11877 - ]], - [[ - 11877, - 15897, - 15472 - ]], - [[ - 15472, - 15897, - 15470 - ]], - [[ - 15470, - 15897, - 14102 - ]], - [[ - 14102, - 15894, - 14118 - ]], - [[ - 14118, - 15892, - 15328 - ]], - [[ - 15328, - 15899, - 15325 - ]], - [[ - 15325, - 15900, - 11997 - ]], - [[ - 15901, - 15216, - 14267 - ]], - [[ - 15902, - 15903, - 15904 - ]], - [[ - 15904, - 15905, - 15906 - ]], - [[ - 15907, - 15904, - 15906 - ]], - [[ - 15908, - 15909, - 15910 - ]], - [[ - 15910, - 15903, - 15911 - ]], - [[ - 15912, - 15908, - 15910 - ]], - [[ - 15911, - 15912, - 15910 - ]], - [[ - 15902, - 15911, - 15903 - ]], - [[ - 15913, - 15902, - 15904 - ]], - [[ - 15914, - 15913, - 15904 - ]], - [[ - 11987, - 15915, - 15906 - ]], - [[ - 15916, - 11959, - 15217 - ]], - [[ - 15904, - 15917, - 15914 - ]], - [[ - 11987, - 11959, - 15915 - ]], - [[ - 15917, - 15904, - 15918 - ]], - [[ - 15919, - 15907, - 15906 - ]], - [[ - 15918, - 15904, - 15907 - ]], - [[ - 15920, - 15919, - 15906 - ]], - [[ - 15216, - 15901, - 15217 - ]], - [[ - 15920, - 15906, - 15921 - ]], - [[ - 15921, - 15906, - 15915 - ]], - [[ - 15915, - 11959, - 15916 - ]], - [[ - 15217, - 15922, - 15916 - ]], - [[ - 15217, - 15923, - 15922 - ]], - [[ - 14267, - 14254, - 15924 - ]], - [[ - 15923, - 15217, - 15925 - ]], - [[ - 15925, - 15217, - 15926 - ]], - [[ - 15926, - 15217, - 15927 - ]], - [[ - 15927, - 15217, - 15928 - ]], - [[ - 15928, - 15217, - 15929 - ]], - [[ - 15929, - 15217, - 15930 - ]], - [[ - 15930, - 15217, - 15883 - ]], - [[ - 15931, - 15882, - 15217 - ]], - [[ - 15932, - 15931, - 15217 - ]], - [[ - 15933, - 15932, - 15217 - ]], - [[ - 15901, - 15933, - 15217 - ]], - [[ - 15901, - 15934, - 15933 - ]], - [[ - 15901, - 15935, - 15934 - ]], - [[ - 15901, - 15936, - 15935 - ]], - [[ - 15901, - 15937, - 15936 - ]], - [[ - 15937, - 15901, - 15938 - ]], - [[ - 15938, - 15901, - 15939 - ]], - [[ - 15939, - 15901, - 15940 - ]], - [[ - 15940, - 15901, - 15941 - ]], - [[ - 15941, - 15901, - 15942 - ]], - [[ - 15942, - 15943, - 15944 - ]], - [[ - 15944, - 15943, - 15945 - ]], - [[ - 7171, - 15945, - 7170 - ]], - [[ - 7170, - 15945, - 15943 - ]], - [[ - 15943, - 15942, - 15901 - ]], - [[ - 7199, - 15943, - 15901 - ]], - [[ - 15924, - 15901, - 14267 - ]], - [[ - 7198, - 7199, - 15901 - ]], - [[ - 14254, - 11998, - 15946 - ]], - [[ - 14254, - 15947, - 15924 - ]], - [[ - 14254, - 15946, - 15947 - ]], - [[ - 11998, - 15948, - 15946 - ]], - [[ - 11998, - 15949, - 15948 - ]], - [[ - 11998, - 15950, - 15949 - ]], - [[ - 11998, - 15951, - 15950 - ]], - [[ - 11998, - 11997, - 15952 - ]], - [[ - 11998, - 15952, - 15951 - ]], - [[ - 11997, - 15900, - 15952 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9817c598-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15953, - 15954, - 15955 - ]], - [[ - 15954, - 15956, - 15955 - ]], - [[ - 15957, - 15958, - 15959 - ]], - [[ - 15957, - 15955, - 15960 - ]], - [[ - 15957, - 15961, - 15958 - ]], - [[ - 15957, - 15962, - 15961 - ]], - [[ - 15957, - 15963, - 15962 - ]], - [[ - 15957, - 15964, - 15963 - ]], - [[ - 15957, - 15965, - 15964 - ]], - [[ - 15957, - 15966, - 15965 - ]], - [[ - 15957, - 15967, - 15966 - ]], - [[ - 15957, - 15968, - 15967 - ]], - [[ - 15957, - 15969, - 15968 - ]], - [[ - 15957, - 15960, - 15969 - ]], - [[ - 15955, - 15970, - 15960 - ]], - [[ - 15955, - 15956, - 15970 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b981a0ff9-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33bf49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15971, - 15972, - 15973 - ]], - [[ - 15971, - 15973, - 15974 - ]], - [[ - 15972, - 15975, - 15973 - ]], - [[ - 15976, - 15977, - 15978 - ]], - [[ - 15979, - 15976, - 15980 - ]], - [[ - 15981, - 15979, - 15982 - ]], - [[ - 15983, - 15981, - 15984 - ]], - [[ - 15985, - 15983, - 15986 - ]], - [[ - 15987, - 15985, - 15988 - ]], - [[ - 15989, - 15987, - 15990 - ]], - [[ - 15991, - 15989, - 15992 - ]], - [[ - 15993, - 15991, - 15994 - ]], - [[ - 15995, - 15993, - 15996 - ]], - [[ - 15997, - 15995, - 15998 - ]], - [[ - 15997, - 15999, - 16000 - ]], - [[ - 15997, - 15998, - 15999 - ]], - [[ - 15995, - 15996, - 15998 - ]], - [[ - 15977, - 16001, - 16002 - ]], - [[ - 15993, - 15994, - 15996 - ]], - [[ - 15991, - 15992, - 15994 - ]], - [[ - 16001, - 16003, - 16004 - ]], - [[ - 15989, - 15990, - 15992 - ]], - [[ - 15987, - 15988, - 15990 - ]], - [[ - 16003, - 16005, - 16006 - ]], - [[ - 15985, - 15986, - 15988 - ]], - [[ - 15983, - 15984, - 15986 - ]], - [[ - 16005, - 16007, - 16008 - ]], - [[ - 15981, - 15982, - 15984 - ]], - [[ - 15979, - 15980, - 15982 - ]], - [[ - 16007, - 16009, - 16010 - ]], - [[ - 15976, - 15978, - 15980 - ]], - [[ - 15977, - 16002, - 15978 - ]], - [[ - 16009, - 16011, - 16012 - ]], - [[ - 16001, - 16004, - 16002 - ]], - [[ - 16003, - 16006, - 16004 - ]], - [[ - 16011, - 16013, - 16014 - ]], - [[ - 16005, - 16008, - 16006 - ]], - [[ - 16007, - 16010, - 16008 - ]], - [[ - 16013, - 16015, - 16016 - ]], - [[ - 16009, - 16012, - 16010 - ]], - [[ - 16011, - 16014, - 16012 - ]], - [[ - 16015, - 16017, - 16018 - ]], - [[ - 16013, - 16016, - 16014 - ]], - [[ - 16015, - 16018, - 16016 - ]], - [[ - 16017, - 16019, - 16020 - ]], - [[ - 16017, - 16020, - 16018 - ]], - [[ - 16019, - 15975, - 16020 - ]], - [[ - 16019, - 15973, - 15975 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b981aabab-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee28149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 8743, - 8321, - 8322 - ]], - [[ - 8743, - 556, - 16021 - ]], - [[ - 16022, - 458, - 16023 - ]], - [[ - 1882, - 10957, - 15847 - ]], - [[ - 16024, - 7034, - 7033 - ]], - [[ - 16025, - 8321, - 16026 - ]], - [[ - 16027, - 16024, - 16028 - ]], - [[ - 16029, - 16027, - 16030 - ]], - [[ - 16030, - 16027, - 16031 - ]], - [[ - 16032, - 16030, - 16033 - ]], - [[ - 16033, - 16030, - 16034 - ]], - [[ - 16034, - 16030, - 16035 - ]], - [[ - 16036, - 16034, - 16035 - ]], - [[ - 16035, - 16030, - 16037 - ]], - [[ - 16037, - 16030, - 16038 - ]], - [[ - 16039, - 16037, - 16038 - ]], - [[ - 16038, - 16030, - 16031 - ]], - [[ - 16040, - 16038, - 16041 - ]], - [[ - 16041, - 16038, - 16042 - ]], - [[ - 16043, - 16041, - 16042 - ]], - [[ - 16044, - 16043, - 16042 - ]], - [[ - 16042, - 16038, - 16031 - ]], - [[ - 16045, - 16042, - 16031 - ]], - [[ - 16031, - 16027, - 16028 - ]], - [[ - 16046, - 16031, - 16047 - ]], - [[ - 16047, - 16031, - 16028 - ]], - [[ - 16048, - 16047, - 16028 - ]], - [[ - 1880, - 7037, - 1881 - ]], - [[ - 1073, - 1074, - 16049 - ]], - [[ - 15844, - 16050, - 15847 - ]], - [[ - 15847, - 16050, - 16051 - ]], - [[ - 15844, - 16052, - 16050 - ]], - [[ - 16053, - 16054, - 15844 - ]], - [[ - 16055, - 15844, - 16056 - ]], - [[ - 16056, - 16049, - 16057 - ]], - [[ - 16055, - 16053, - 15844 - ]], - [[ - 6727, - 16058, - 16059 - ]], - [[ - 1072, - 1073, - 16049 - ]], - [[ - 1071, - 1072, - 16049 - ]], - [[ - 1094, - 1071, - 16049 - ]], - [[ - 1068, - 1094, - 16049 - ]], - [[ - 16049, - 1065, - 1068 - ]], - [[ - 16049, - 1063, - 1065 - ]], - [[ - 16049, - 15844, - 1063 - ]], - [[ - 6893, - 6894, - 16024 - ]], - [[ - 7037, - 16024, - 7033 - ]], - [[ - 7037, - 7035, - 7036 - ]], - [[ - 7037, - 7033, - 7035 - ]], - [[ - 6889, - 6890, - 16024 - ]], - [[ - 6894, - 7034, - 16024 - ]], - [[ - 7034, - 6894, - 7038 - ]], - [[ - 7038, - 6894, - 6895 - ]], - [[ - 6924, - 6928, - 6889 - ]], - [[ - 16023, - 460, - 16059 - ]], - [[ - 6893, - 16024, - 6890 - ]], - [[ - 6892, - 6893, - 6890 - ]], - [[ - 6892, - 6890, - 6891 - ]], - [[ - 16024, - 16060, - 6924 - ]], - [[ - 6924, - 6889, - 16024 - ]], - [[ - 6889, - 6887, - 6888 - ]], - [[ - 6887, - 6889, - 6928 - ]], - [[ - 6887, - 6929, - 6885 - ]], - [[ - 16058, - 6980, - 16060 - ]], - [[ - 6929, - 6887, - 6928 - ]], - [[ - 6924, - 16060, - 6973 - ]], - [[ - 6973, - 16060, - 6971 - ]], - [[ - 6971, - 16060, - 6980 - ]], - [[ - 6980, - 16058, - 6727 - ]], - [[ - 6727, - 16059, - 460 - ]], - [[ - 460, - 16023, - 459 - ]], - [[ - 16023, - 458, - 459 - ]], - [[ - 16022, - 478, - 458 - ]], - [[ - 477, - 478, - 557 - ]], - [[ - 478, - 555, - 557 - ]], - [[ - 478, - 16022, - 555 - ]], - [[ - 556, - 555, - 16061 - ]], - [[ - 16061, - 555, - 16062 - ]], - [[ - 16062, - 555, - 16063 - ]], - [[ - 16063, - 555, - 16064 - ]], - [[ - 16064, - 555, - 16065 - ]], - [[ - 16065, - 555, - 16066 - ]], - [[ - 16066, - 555, - 16067 - ]], - [[ - 16067, - 555, - 16022 - ]], - [[ - 8320, - 8321, - 16025 - ]], - [[ - 8319, - 8320, - 16068 - ]], - [[ - 8320, - 16069, - 16068 - ]], - [[ - 8320, - 16025, - 16069 - ]], - [[ - 16070, - 16071, - 16072 - ]], - [[ - 16071, - 16073, - 16072 - ]], - [[ - 16071, - 16069, - 16025 - ]], - [[ - 16071, - 16025, - 16073 - ]], - [[ - 16074, - 16075, - 16076 - ]], - [[ - 16074, - 16077, - 16075 - ]], - [[ - 16074, - 16073, - 16025 - ]], - [[ - 16074, - 16025, - 16077 - ]], - [[ - 16078, - 16079, - 8317 - ]], - [[ - 16078, - 8317, - 8318 - ]], - [[ - 16025, - 16026, - 16080 - ]], - [[ - 16081, - 14727, - 8316 - ]], - [[ - 8314, - 8311, - 8313 - ]], - [[ - 8311, - 16082, - 8312 - ]], - [[ - 8311, - 16083, - 16082 - ]], - [[ - 8311, - 16084, - 16083 - ]], - [[ - 8311, - 16085, - 16084 - ]], - [[ - 16084, - 16085, - 16086 - ]], - [[ - 16086, - 16085, - 16087 - ]], - [[ - 16087, - 16085, - 16088 - ]], - [[ - 16088, - 16085, - 16089 - ]], - [[ - 16089, - 16085, - 16090 - ]], - [[ - 16090, - 16091, - 16092 - ]], - [[ - 14729, - 16081, - 16093 - ]], - [[ - 14724, - 16094, - 14725 - ]], - [[ - 14727, - 8315, - 8316 - ]], - [[ - 16080, - 16026, - 16095 - ]], - [[ - 8321, - 8743, - 16026 - ]], - [[ - 16025, - 16079, - 16077 - ]], - [[ - 16025, - 16081, - 16079 - ]], - [[ - 16079, - 16081, - 8317 - ]], - [[ - 8317, - 16081, - 8316 - ]], - [[ - 16095, - 16096, - 16097 - ]], - [[ - 16095, - 16098, - 16096 - ]], - [[ - 16095, - 16099, - 16098 - ]], - [[ - 16098, - 16100, - 16101 - ]], - [[ - 16101, - 16100, - 16102 - ]], - [[ - 16098, - 16099, - 16100 - ]], - [[ - 16095, - 16103, - 16099 - ]], - [[ - 16099, - 16104, - 16105 - ]], - [[ - 16099, - 16103, - 16104 - ]], - [[ - 16095, - 16106, - 16103 - ]], - [[ - 16103, - 16107, - 16108 - ]], - [[ - 16108, - 16107, - 16109 - ]], - [[ - 16103, - 16106, - 16107 - ]], - [[ - 16107, - 16106, - 16110 - ]], - [[ - 16095, - 16111, - 16106 - ]], - [[ - 16106, - 16111, - 16112 - ]], - [[ - 16095, - 16113, - 16111 - ]], - [[ - 16095, - 16026, - 16113 - ]], - [[ - 16113, - 16026, - 16114 - ]], - [[ - 8743, - 16021, - 16026 - ]], - [[ - 16021, - 556, - 16115 - ]], - [[ - 16021, - 16116, - 16117 - ]], - [[ - 16117, - 16116, - 16118 - ]], - [[ - 16021, - 16119, - 16116 - ]], - [[ - 16116, - 16120, - 16121 - ]], - [[ - 16121, - 16122, - 16123 - ]], - [[ - 16121, - 16120, - 16122 - ]], - [[ - 16122, - 16120, - 16124 - ]], - [[ - 16124, - 16120, - 16125 - ]], - [[ - 16116, - 16119, - 16120 - ]], - [[ - 16120, - 16119, - 16126 - ]], - [[ - 16126, - 16127, - 16128 - ]], - [[ - 16126, - 16119, - 16127 - ]], - [[ - 16127, - 16119, - 16129 - ]], - [[ - 16021, - 16130, - 16119 - ]], - [[ - 16119, - 16131, - 16132 - ]], - [[ - 16119, - 16130, - 16131 - ]], - [[ - 16131, - 16130, - 16133 - ]], - [[ - 16021, - 16134, - 16130 - ]], - [[ - 16021, - 16115, - 16134 - ]], - [[ - 556, - 16061, - 16115 - ]], - [[ - 14724, - 16135, - 16094 - ]], - [[ - 16136, - 16091, - 16135 - ]], - [[ - 16092, - 16091, - 16136 - ]], - [[ - 16085, - 8314, - 16094 - ]], - [[ - 16090, - 16085, - 16091 - ]], - [[ - 8311, - 8314, - 16085 - ]], - [[ - 16136, - 14724, - 16093 - ]], - [[ - 16136, - 16135, - 14724 - ]], - [[ - 8314, - 14725, - 16094 - ]], - [[ - 8314, - 8315, - 14727 - ]], - [[ - 14729, - 14727, - 16081 - ]], - [[ - 14725, - 8314, - 14727 - ]], - [[ - 14724, - 14729, - 16093 - ]], - [[ - 10958, - 10957, - 1881 - ]], - [[ - 1882, - 15847, - 16028 - ]], - [[ - 16024, - 1882, - 16028 - ]], - [[ - 1881, - 10957, - 1882 - ]], - [[ - 16024, - 1883, - 1882 - ]], - [[ - 16024, - 7037, - 1883 - ]], - [[ - 1883, - 7037, - 1880 - ]], - [[ - 7037, - 10958, - 1881 - ]], - [[ - 16052, - 15844, - 16054 - ]], - [[ - 1064, - 10958, - 7037 - ]], - [[ - 1064, - 10959, - 10958 - ]], - [[ - 15844, - 16049, - 16056 - ]], - [[ - 15847, - 10957, - 10956 - ]], - [[ - 15850, - 1063, - 15844 - ]], - [[ - 15848, - 15847, - 10956 - ]], - [[ - 16051, - 16028, - 15847 - ]], - [[ - 10959, - 15848, - 10956 - ]], - [[ - 10959, - 1064, - 15850 - ]], - [[ - 10959, - 15850, - 15848 - ]], - [[ - 1064, - 1063, - 15850 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b981af9f2-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16137, - 13251, - 13250 - ]], - [[ - 16137, - 16138, - 16139 - ]], - [[ - 16139, - 16140, - 16141 - ]], - [[ - 16141, - 16142, - 16143 - ]], - [[ - 16143, - 16144, - 16145 - ]], - [[ - 10245, - 10244, - 16146 - ]], - [[ - 16145, - 16147, - 16146 - ]], - [[ - 10245, - 16146, - 16148 - ]], - [[ - 16148, - 16146, - 16147 - ]], - [[ - 16147, - 16145, - 16144 - ]], - [[ - 16144, - 16143, - 16142 - ]], - [[ - 16142, - 16141, - 16140 - ]], - [[ - 16140, - 16139, - 16138 - ]], - [[ - 16138, - 16137, - 13250 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b981ecb10-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 12452, - 15809, - 12454 - ]], - [[ - 15809, - 15824, - 12454 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b981f8dcc-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16149, - 16150, - 16151 - ]], - [[ - 16149, - 16151, - 16152 - ]], - [[ - 16152, - 16151, - 16153 - ]], - [[ - 16153, - 16151, - 16154 - ]], - [[ - 16154, - 16151, - 16155 - ]], - [[ - 16155, - 16151, - 16156 - ]], - [[ - 16156, - 16151, - 16157 - ]], - [[ - 16157, - 16151, - 16158 - ]], - [[ - 16158, - 16159, - 16160 - ]], - [[ - 16160, - 16159, - 16161 - ]], - [[ - 16161, - 16159, - 16162 - ]], - [[ - 16162, - 16159, - 16163 - ]], - [[ - 16163, - 16159, - 16164 - ]], - [[ - 16164, - 16159, - 16165 - ]], - [[ - 16165, - 16159, - 16166 - ]], - [[ - 16166, - 16159, - 16167 - ]], - [[ - 16167, - 16159, - 16168 - ]], - [[ - 16168, - 16159, - 16169 - ]], - [[ - 16169, - 16159, - 16170 - ]], - [[ - 16158, - 16151, - 16159 - ]], - [[ - 16171, - 16172, - 16173 - ]], - [[ - 16151, - 16171, - 16173 - ]], - [[ - 16150, - 16171, - 16151 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9821d845-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee48d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 261, - 262, - 16174 - ]], - [[ - 261, - 16174, - 2808 - ]], - [[ - 2808, - 16175, - 2807 - ]], - [[ - 16175, - 2808, - 16174 - ]], - [[ - 16175, - 16174, - 16176 - ]], - [[ - 262, - 16177, - 16174 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98229afb-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eebe0149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16178, - 16179, - 16180 - ]], - [[ - 16181, - 16182, - 16183 - ]], - [[ - 16184, - 16185, - 16186 - ]], - [[ - 16178, - 16187, - 16186 - ]], - [[ - 16185, - 16184, - 16188 - ]], - [[ - 16189, - 16188, - 16184 - ]], - [[ - 16190, - 16186, - 16187 - ]], - [[ - 16190, - 16184, - 16186 - ]], - [[ - 16187, - 16178, - 16191 - ]], - [[ - 16178, - 16192, - 16191 - ]], - [[ - 16192, - 16178, - 16193 - ]], - [[ - 16192, - 16193, - 16194 - ]], - [[ - 16178, - 16195, - 16193 - ]], - [[ - 16195, - 16178, - 16196 - ]], - [[ - 16196, - 16178, - 16197 - ]], - [[ - 16178, - 16180, - 16197 - ]], - [[ - 16179, - 16198, - 16180 - ]], - [[ - 16198, - 16179, - 16199 - ]], - [[ - 16198, - 16199, - 16200 - ]], - [[ - 16199, - 16179, - 16201 - ]], - [[ - 16202, - 16203, - 16204 - ]], - [[ - 16205, - 16203, - 16206 - ]], - [[ - 16207, - 16208, - 16209 - ]], - [[ - 16210, - 16201, - 12083 - ]], - [[ - 16211, - 12107, - 16212 - ]], - [[ - 16212, - 12107, - 16213 - ]], - [[ - 16213, - 12107, - 16214 - ]], - [[ - 16214, - 12107, - 16215 - ]], - [[ - 12107, - 16216, - 16217 - ]], - [[ - 16218, - 16219, - 12107 - ]], - [[ - 16220, - 16218, - 12107 - ]], - [[ - 16221, - 16220, - 12107 - ]], - [[ - 16222, - 16221, - 12107 - ]], - [[ - 16223, - 16222, - 16204 - ]], - [[ - 16208, - 16223, - 16209 - ]], - [[ - 16224, - 16208, - 16207 - ]], - [[ - 16225, - 16224, - 16207 - ]], - [[ - 16226, - 16225, - 16207 - ]], - [[ - 16227, - 16226, - 16207 - ]], - [[ - 16228, - 16227, - 16207 - ]], - [[ - 16229, - 16228, - 16207 - ]], - [[ - 16229, - 16230, - 16231 - ]], - [[ - 16229, - 16207, - 16230 - ]], - [[ - 16232, - 16230, - 16207 - ]], - [[ - 16233, - 16232, - 16207 - ]], - [[ - 16234, - 16233, - 16207 - ]], - [[ - 16235, - 16234, - 16207 - ]], - [[ - 16236, - 16235, - 16207 - ]], - [[ - 16237, - 16236, - 16207 - ]], - [[ - 16237, - 16238, - 16239 - ]], - [[ - 16237, - 16207, - 16238 - ]], - [[ - 16201, - 16179, - 12083 - ]], - [[ - 16207, - 16183, - 16240 - ]], - [[ - 16240, - 16183, - 16241 - ]], - [[ - 16207, - 16242, - 16183 - ]], - [[ - 16243, - 16181, - 16183 - ]], - [[ - 16243, - 16244, - 16181 - ]], - [[ - 16242, - 16243, - 16183 - ]], - [[ - 16245, - 16246, - 16243 - ]], - [[ - 16245, - 16247, - 16246 - ]], - [[ - 16242, - 16245, - 16243 - ]], - [[ - 16242, - 16248, - 16245 - ]], - [[ - 16249, - 16250, - 16248 - ]], - [[ - 16242, - 16249, - 16248 - ]], - [[ - 16251, - 16252, - 16249 - ]], - [[ - 16242, - 16251, - 16249 - ]], - [[ - 16242, - 16253, - 16251 - ]], - [[ - 16254, - 16242, - 16207 - ]], - [[ - 16209, - 16254, - 16207 - ]], - [[ - 16204, - 16209, - 16223 - ]], - [[ - 16255, - 16256, - 16257 - ]], - [[ - 16255, - 16257, - 16258 - ]], - [[ - 16259, - 16260, - 16257 - ]], - [[ - 16256, - 16259, - 16257 - ]], - [[ - 16209, - 16261, - 16258 - ]], - [[ - 16262, - 16259, - 16256 - ]], - [[ - 12083, - 16211, - 16210 - ]], - [[ - 16255, - 16258, - 16261 - ]], - [[ - 16261, - 16209, - 16203 - ]], - [[ - 16203, - 16209, - 16204 - ]], - [[ - 16203, - 16202, - 16206 - ]], - [[ - 12107, - 16217, - 16215 - ]], - [[ - 16263, - 12083, - 14772 - ]], - [[ - 12107, - 16219, - 16216 - ]], - [[ - 16264, - 16204, - 16265 - ]], - [[ - 16264, - 16202, - 16204 - ]], - [[ - 16204, - 12107, - 12118 - ]], - [[ - 16204, - 16222, - 12107 - ]], - [[ - 16211, - 12083, - 12107 - ]], - [[ - 16179, - 14772, - 12083 - ]], - [[ - 12117, - 12083, - 16263 - ]], - [[ - 16263, - 14772, - 14751 - ]], - [[ - 16266, - 16267, - 16259 - ]], - [[ - 16259, - 16267, - 16260 - ]], - [[ - 16268, - 16266, - 16262 - ]], - [[ - 16262, - 16266, - 16259 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9824be2e-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef229549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 13800, - 16269, - 16270 - ]], - [[ - 16271, - 16272, - 16273 - ]], - [[ - 16273, - 16274, - 16275 - ]], - [[ - 16273, - 16276, - 16274 - ]], - [[ - 16273, - 16277, - 16276 - ]], - [[ - 16273, - 16278, - 16277 - ]], - [[ - 16271, - 14711, - 16279 - ]], - [[ - 16278, - 16273, - 16272 - ]], - [[ - 16272, - 16271, - 16280 - ]], - [[ - 16280, - 16271, - 16281 - ]], - [[ - 16281, - 16271, - 16282 - ]], - [[ - 16282, - 16271, - 16283 - ]], - [[ - 16283, - 16271, - 16284 - ]], - [[ - 16284, - 16271, - 16279 - ]], - [[ - 16270, - 14631, - 14712 - ]], - [[ - 14569, - 14566, - 16285 - ]], - [[ - 12519, - 16286, - 16285 - ]], - [[ - 12522, - 16287, - 16286 - ]], - [[ - 16288, - 16287, - 12521 - ]], - [[ - 12519, - 12522, - 16286 - ]], - [[ - 12521, - 16287, - 12522 - ]], - [[ - 14566, - 12519, - 16285 - ]], - [[ - 12528, - 12519, - 14554 - ]], - [[ - 16269, - 11833, - 16285 - ]], - [[ - 14554, - 12519, - 14566 - ]], - [[ - 11833, - 14569, - 16285 - ]], - [[ - 14561, - 14569, - 11833 - ]], - [[ - 11855, - 11833, - 16269 - ]], - [[ - 11830, - 14561, - 11833 - ]], - [[ - 14936, - 11855, - 16269 - ]], - [[ - 11829, - 11855, - 14936 - ]], - [[ - 14942, - 14936, - 16269 - ]], - [[ - 14974, - 11829, - 14936 - ]], - [[ - 14925, - 14942, - 16269 - ]], - [[ - 14925, - 16269, - 12023 - ]], - [[ - 12042, - 12045, - 16269 - ]], - [[ - 12023, - 16269, - 12045 - ]], - [[ - 13800, - 12042, - 16269 - ]], - [[ - 16289, - 16290, - 12042 - ]], - [[ - 13764, - 16291, - 16289 - ]], - [[ - 13842, - 13800, - 16270 - ]], - [[ - 13765, - 12042, - 13800 - ]], - [[ - 13826, - 13800, - 13829 - ]], - [[ - 13842, - 13862, - 13800 - ]], - [[ - 13829, - 13800, - 13862 - ]], - [[ - 11918, - 13842, - 16270 - ]], - [[ - 13905, - 13842, - 11957 - ]], - [[ - 11933, - 11918, - 16270 - ]], - [[ - 11957, - 13842, - 11918 - ]], - [[ - 16292, - 11933, - 16270 - ]], - [[ - 11914, - 11933, - 16292 - ]], - [[ - 16292, - 16270, - 14712 - ]], - [[ - 16279, - 14710, - 16270 - ]], - [[ - 16270, - 14710, - 14631 - ]], - [[ - 16279, - 14711, - 14710 - ]], - [[ - 12022, - 16291, - 13764 - ]], - [[ - 16289, - 12042, - 13765 - ]], - [[ - 12022, - 16293, - 16291 - ]], - [[ - 12022, - 12042, - 16293 - ]], - [[ - 16293, - 12042, - 16290 - ]], - [[ - 13764, - 16289, - 13765 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98250c84-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef1df449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16028, - 16021, - 16117 - ]], - [[ - 16028, - 16060, - 16048 - ]], - [[ - 16047, - 16048, - 16060 - ]], - [[ - 16046, - 16047, - 16060 - ]], - [[ - 16031, - 16046, - 16060 - ]], - [[ - 16045, - 16031, - 16060 - ]], - [[ - 16042, - 16045, - 16060 - ]], - [[ - 16044, - 16042, - 16060 - ]], - [[ - 16043, - 16044, - 16060 - ]], - [[ - 16041, - 16043, - 16060 - ]], - [[ - 16040, - 16041, - 16060 - ]], - [[ - 16038, - 16040, - 16060 - ]], - [[ - 16039, - 16038, - 16060 - ]], - [[ - 16037, - 16039, - 16060 - ]], - [[ - 16035, - 16037, - 16060 - ]], - [[ - 16036, - 16035, - 16060 - ]], - [[ - 16034, - 16036, - 16060 - ]], - [[ - 16033, - 16034, - 16060 - ]], - [[ - 16032, - 16033, - 16060 - ]], - [[ - 16030, - 16032, - 16060 - ]], - [[ - 16029, - 16030, - 16060 - ]], - [[ - 16027, - 16029, - 16060 - ]], - [[ - 16027, - 16060, - 16024 - ]], - [[ - 16028, - 16023, - 16060 - ]], - [[ - 16028, - 16117, - 16023 - ]], - [[ - 16022, - 16023, - 16117 - ]], - [[ - 16066, - 16067, - 16117 - ]], - [[ - 16065, - 16066, - 16117 - ]], - [[ - 16064, - 16065, - 16117 - ]], - [[ - 16062, - 16063, - 16118 - ]], - [[ - 16061, - 16134, - 16115 - ]], - [[ - 16061, - 16130, - 16134 - ]], - [[ - 16061, - 16133, - 16130 - ]], - [[ - 16061, - 16131, - 16133 - ]], - [[ - 16061, - 16132, - 16131 - ]], - [[ - 16061, - 16119, - 16132 - ]], - [[ - 16061, - 16129, - 16119 - ]], - [[ - 16061, - 16127, - 16129 - ]], - [[ - 16061, - 16128, - 16127 - ]], - [[ - 16061, - 16126, - 16128 - ]], - [[ - 16061, - 16120, - 16126 - ]], - [[ - 16061, - 16125, - 16120 - ]], - [[ - 16061, - 16124, - 16125 - ]], - [[ - 16061, - 16122, - 16124 - ]], - [[ - 16061, - 16123, - 16122 - ]], - [[ - 16061, - 16121, - 16123 - ]], - [[ - 16061, - 16116, - 16121 - ]], - [[ - 16061, - 16062, - 16118 - ]], - [[ - 16061, - 16118, - 16116 - ]], - [[ - 16063, - 16064, - 16117 - ]], - [[ - 16063, - 16117, - 16118 - ]], - [[ - 16067, - 16022, - 16117 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98272edb-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 13205, - 15713, - 13206 - ]], - [[ - 16294, - 16295, - 13206 - ]], - [[ - 13217, - 13204, - 13207 - ]], - [[ - 13217, - 13210, - 13204 - ]], - [[ - 13206, - 16295, - 13207 - ]], - [[ - 13207, - 16295, - 13217 - ]], - [[ - 16296, - 13220, - 13221 - ]], - [[ - 14410, - 14407, - 16296 - ]], - [[ - 13221, - 16295, - 16296 - ]], - [[ - 13217, - 16295, - 13221 - ]], - [[ - 16295, - 16297, - 14413 - ]], - [[ - 13186, - 14406, - 14413 - ]], - [[ - 13187, - 13186, - 14413 - ]], - [[ - 14410, - 16295, - 14413 - ]], - [[ - 14413, - 16297, - 13187 - ]], - [[ - 15207, - 13183, - 13182 - ]], - [[ - 15207, - 15210, - 13183 - ]], - [[ - 16297, - 16298, - 15207 - ]], - [[ - 13182, - 16297, - 15207 - ]], - [[ - 16299, - 16300, - 15211 - ]], - [[ - 15831, - 15830, - 16301 - ]], - [[ - 16302, - 16298, - 16301 - ]], - [[ - 13202, - 16303, - 16294 - ]], - [[ - 16298, - 15831, - 16301 - ]], - [[ - 15207, - 16298, - 15211 - ]], - [[ - 13187, - 16297, - 13182 - ]], - [[ - 16296, - 16295, - 14410 - ]], - [[ - 15717, - 16294, - 13206 - ]], - [[ - 15761, - 9066, - 9078 - ]], - [[ - 15762, - 9071, - 16303 - ]], - [[ - 15761, - 9078, - 15762 - ]], - [[ - 15764, - 15762, - 16303 - ]], - [[ - 9078, - 9071, - 15762 - ]], - [[ - 15760, - 15764, - 16303 - ]], - [[ - 13190, - 15760, - 16303 - ]], - [[ - 13202, - 13192, - 16303 - ]], - [[ - 13190, - 16303, - 13192 - ]], - [[ - 11766, - 13202, - 16294 - ]], - [[ - 11766, - 13189, - 13202 - ]], - [[ - 11765, - 11766, - 16294 - ]], - [[ - 11761, - 13189, - 11766 - ]], - [[ - 16304, - 11765, - 16294 - ]], - [[ - 16304, - 11760, - 11765 - ]], - [[ - 14045, - 14040, - 16304 - ]], - [[ - 16294, - 14045, - 16304 - ]], - [[ - 15716, - 14041, - 16294 - ]], - [[ - 14045, - 16294, - 14041 - ]], - [[ - 16305, - 16306, - 15714 - ]], - [[ - 16307, - 15716, - 15714 - ]], - [[ - 15717, - 15716, - 16294 - ]], - [[ - 15713, - 15717, - 13206 - ]], - [[ - 14041, - 16308, - 14039 - ]], - [[ - 14041, - 15716, - 16308 - ]], - [[ - 16306, - 16307, - 15714 - ]], - [[ - 16308, - 15716, - 16307 - ]], - [[ - 14039, - 16305, - 15714 - ]], - [[ - 16308, - 16305, - 14039 - ]], - [[ - 16298, - 16299, - 15211 - ]], - [[ - 16309, - 16302, - 16301 - ]], - [[ - 16299, - 16298, - 16302 - ]], - [[ - 15209, - 16309, - 16301 - ]], - [[ - 15209, - 16300, - 16309 - ]], - [[ - 15209, - 15211, - 16300 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9827560c-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee4ae49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 21, - 16170, - 16159 - ]], - [[ - 21, - 16159, - 22 - ]], - [[ - 1, - 3, - 22 - ]], - [[ - 22, - 3, - 21 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98295220-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad op trap", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef1ad149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "gesloten verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 2963, - 2894, - 8564 - ]], - [[ - 2894, - 8607, - 8564 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9829794e-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef0b4c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 6995, - 6964, - 6994 - ]], - [[ - 6995, - 6962, - 6964 - ]], - [[ - 6995, - 6706, - 10614 - ]], - [[ - 6962, - 6995, - 16310 - ]], - [[ - 6961, - 16311, - 6960 - ]], - [[ - 6961, - 6962, - 16310 - ]], - [[ - 16311, - 6961, - 16310 - ]], - [[ - 16310, - 6995, - 16312 - ]], - [[ - 16312, - 6995, - 10614 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b982f6cae-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef4f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16313, - 16314, - 16315 - ]], - [[ - 16314, - 16316, - 16315 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98322b9f-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33ca49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15772, - 12451, - 15795 - ]], - [[ - 12451, - 12461, - 15795 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98349d40-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef135b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "sierbestrating", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 300, - 11066, - 299 - ]], - [[ - 300, - 313, - 11066 - ]], - [[ - 11066, - 313, - 11617 - ]], - [[ - 11622, - 11066, - 11617 - ]], - [[ - 11618, - 11622, - 11617 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9837d0a9-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16317, - 16318, - 16319 - ]], - [[ - 16317, - 16319, - 16320 - ]], - [[ - 16318, - 16321, - 16319 - ]], - [[ - 16321, - 16318, - 16322 - ]], - [[ - 16323, - 16324, - 16325 - ]], - [[ - 16326, - 16323, - 16327 - ]], - [[ - 16328, - 16326, - 16329 - ]], - [[ - 16330, - 16328, - 16331 - ]], - [[ - 16332, - 16330, - 16333 - ]], - [[ - 16334, - 16332, - 16335 - ]], - [[ - 16336, - 16334, - 16337 - ]], - [[ - 16338, - 16336, - 16339 - ]], - [[ - 16340, - 16338, - 16341 - ]], - [[ - 16342, - 16340, - 16343 - ]], - [[ - 16342, - 16344, - 16345 - ]], - [[ - 16342, - 16343, - 16344 - ]], - [[ - 16324, - 16346, - 16347 - ]], - [[ - 16340, - 16341, - 16343 - ]], - [[ - 16346, - 16348, - 16349 - ]], - [[ - 16338, - 16339, - 16341 - ]], - [[ - 16336, - 16337, - 16339 - ]], - [[ - 16348, - 16350, - 16351 - ]], - [[ - 16334, - 16335, - 16337 - ]], - [[ - 16332, - 16333, - 16335 - ]], - [[ - 16350, - 16352, - 16351 - ]], - [[ - 16330, - 16331, - 16333 - ]], - [[ - 16328, - 16329, - 16331 - ]], - [[ - 16352, - 16353, - 16354 - ]], - [[ - 16326, - 16327, - 16329 - ]], - [[ - 16323, - 16325, - 16327 - ]], - [[ - 16353, - 16355, - 16356 - ]], - [[ - 16324, - 16347, - 16325 - ]], - [[ - 16346, - 16349, - 16347 - ]], - [[ - 16355, - 16357, - 16358 - ]], - [[ - 16348, - 16351, - 16349 - ]], - [[ - 16352, - 16354, - 16351 - ]], - [[ - 16357, - 16359, - 16360 - ]], - [[ - 16353, - 16356, - 16354 - ]], - [[ - 16355, - 16358, - 16356 - ]], - [[ - 16359, - 16361, - 16362 - ]], - [[ - 16357, - 16360, - 16358 - ]], - [[ - 16359, - 16362, - 16360 - ]], - [[ - 16361, - 16363, - 16364 - ]], - [[ - 16361, - 16364, - 16362 - ]], - [[ - 16363, - 16322, - 16364 - ]], - [[ - 16363, - 16321, - 16322 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b983909fb-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 127, - 128, - 9862 - ]], - [[ - 16365, - 16366, - 127 - ]], - [[ - 16366, - 126, - 127 - ]], - [[ - 16366, - 125, - 126 - ]], - [[ - 162, - 163, - 16367 - ]], - [[ - 16368, - 16365, - 127 - ]], - [[ - 16369, - 8639, - 8633 - ]], - [[ - 16365, - 16368, - 8633 - ]], - [[ - 16370, - 8152, - 8639 - ]], - [[ - 9861, - 16367, - 9862 - ]], - [[ - 16371, - 8150, - 8151 - ]], - [[ - 163, - 16372, - 16367 - ]], - [[ - 16371, - 16373, - 8150 - ]], - [[ - 8152, - 16374, - 8151 - ]], - [[ - 16375, - 16376, - 16371 - ]], - [[ - 8151, - 16374, - 16371 - ]], - [[ - 16376, - 16375, - 16377 - ]], - [[ - 16377, - 16375, - 16378 - ]], - [[ - 16378, - 16375, - 16379 - ]], - [[ - 16379, - 16380, - 16381 - ]], - [[ - 16381, - 16382, - 16383 - ]], - [[ - 16383, - 16384, - 16385 - ]], - [[ - 16385, - 16386, - 16387 - ]], - [[ - 16387, - 16388, - 16389 - ]], - [[ - 16389, - 16390, - 16391 - ]], - [[ - 16391, - 16392, - 16393 - ]], - [[ - 16394, - 16395, - 16396 - ]], - [[ - 16397, - 11379, - 16395 - ]], - [[ - 16393, - 16398, - 16396 - ]], - [[ - 11379, - 16397, - 11380 - ]], - [[ - 16395, - 16394, - 16397 - ]], - [[ - 16396, - 16399, - 16394 - ]], - [[ - 16396, - 16398, - 16399 - ]], - [[ - 16393, - 16392, - 16398 - ]], - [[ - 16391, - 16400, - 16392 - ]], - [[ - 16391, - 16390, - 16400 - ]], - [[ - 16389, - 16388, - 16390 - ]], - [[ - 16387, - 16401, - 16388 - ]], - [[ - 16387, - 16386, - 16401 - ]], - [[ - 16385, - 16402, - 16386 - ]], - [[ - 16385, - 16384, - 16402 - ]], - [[ - 16383, - 16403, - 16384 - ]], - [[ - 16383, - 16382, - 16403 - ]], - [[ - 16381, - 16404, - 16382 - ]], - [[ - 16381, - 16405, - 16404 - ]], - [[ - 16381, - 16406, - 16405 - ]], - [[ - 16381, - 16380, - 16406 - ]], - [[ - 16379, - 16407, - 16380 - ]], - [[ - 16379, - 16408, - 16407 - ]], - [[ - 16379, - 16375, - 16408 - ]], - [[ - 16371, - 16374, - 16375 - ]], - [[ - 8152, - 16370, - 16374 - ]], - [[ - 8639, - 16369, - 16370 - ]], - [[ - 16369, - 8633, - 16368 - ]], - [[ - 7946, - 16409, - 16372 - ]], - [[ - 16367, - 16368, - 9862 - ]], - [[ - 9862, - 16368, - 127 - ]], - [[ - 16410, - 15884, - 16409 - ]], - [[ - 8220, - 15884, - 16410 - ]], - [[ - 16410, - 16409, - 7930 - ]], - [[ - 7930, - 16409, - 7926 - ]], - [[ - 7926, - 16409, - 7946 - ]], - [[ - 7946, - 16372, - 854 - ]], - [[ - 16372, - 164, - 854 - ]], - [[ - 16372, - 163, - 164 - ]], - [[ - 140, - 9861, - 139 - ]], - [[ - 161, - 162, - 16367 - ]], - [[ - 160, - 161, - 16367 - ]], - [[ - 159, - 160, - 16367 - ]], - [[ - 158, - 159, - 16367 - ]], - [[ - 157, - 158, - 16367 - ]], - [[ - 156, - 157, - 16367 - ]], - [[ - 155, - 156, - 16367 - ]], - [[ - 154, - 155, - 16367 - ]], - [[ - 140, - 142, - 143 - ]], - [[ - 154, - 16367, - 153 - ]], - [[ - 153, - 16367, - 152 - ]], - [[ - 152, - 16367, - 151 - ]], - [[ - 151, - 16367, - 150 - ]], - [[ - 150, - 16367, - 149 - ]], - [[ - 149, - 16367, - 148 - ]], - [[ - 148, - 16367, - 147 - ]], - [[ - 147, - 16367, - 146 - ]], - [[ - 146, - 16367, - 145 - ]], - [[ - 145, - 16367, - 140 - ]], - [[ - 144, - 145, - 140 - ]], - [[ - 143, - 144, - 140 - ]], - [[ - 142, - 140, - 141 - ]], - [[ - 16367, - 9861, - 140 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b983a1b0d-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetgangersgebied", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee28449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16411, - 280, - 16412 - ]], - [[ - 16413, - 264, - 16414 - ]], - [[ - 16415, - 7574, - 7585 - ]], - [[ - 7557, - 16416, - 7545 - ]], - [[ - 16417, - 16418, - 280 - ]], - [[ - 16419, - 7549, - 7545 - ]], - [[ - 16420, - 7688, - 7549 - ]], - [[ - 16421, - 7689, - 7688 - ]], - [[ - 16422, - 7675, - 7674 - ]], - [[ - 16421, - 7680, - 7689 - ]], - [[ - 16423, - 278, - 7675 - ]], - [[ - 384, - 7675, - 278 - ]], - [[ - 280, - 278, - 16424 - ]], - [[ - 262, - 263, - 16425 - ]], - [[ - 16426, - 263, - 16427 - ]], - [[ - 16428, - 262, - 16425 - ]], - [[ - 16425, - 263, - 16429 - ]], - [[ - 16425, - 16429, - 16430 - ]], - [[ - 16429, - 263, - 16426 - ]], - [[ - 16429, - 16426, - 16431 - ]], - [[ - 16431, - 16426, - 16432 - ]], - [[ - 263, - 264, - 16427 - ]], - [[ - 16433, - 7557, - 7574 - ]], - [[ - 16427, - 16434, - 16435 - ]], - [[ - 16427, - 16413, - 16434 - ]], - [[ - 16427, - 264, - 16413 - ]], - [[ - 16414, - 264, - 16436 - ]], - [[ - 16437, - 16438, - 16439 - ]], - [[ - 16414, - 16437, - 16439 - ]], - [[ - 16414, - 16440, - 16437 - ]], - [[ - 16414, - 16441, - 16440 - ]], - [[ - 16414, - 16442, - 16441 - ]], - [[ - 16414, - 16443, - 16442 - ]], - [[ - 16414, - 16444, - 16443 - ]], - [[ - 16414, - 16445, - 16444 - ]], - [[ - 16414, - 16436, - 16445 - ]], - [[ - 16446, - 265, - 280 - ]], - [[ - 264, - 16447, - 16436 - ]], - [[ - 264, - 265, - 16448 - ]], - [[ - 16447, - 264, - 16449 - ]], - [[ - 16449, - 264, - 16450 - ]], - [[ - 16450, - 264, - 16451 - ]], - [[ - 16451, - 264, - 16452 - ]], - [[ - 16452, - 264, - 16453 - ]], - [[ - 16453, - 264, - 16454 - ]], - [[ - 16455, - 16456, - 264 - ]], - [[ - 16454, - 264, - 16456 - ]], - [[ - 16457, - 16455, - 264 - ]], - [[ - 16448, - 16457, - 264 - ]], - [[ - 16458, - 16448, - 265 - ]], - [[ - 16459, - 16458, - 265 - ]], - [[ - 16460, - 16459, - 265 - ]], - [[ - 16446, - 16460, - 265 - ]], - [[ - 7674, - 7680, - 16461 - ]], - [[ - 16446, - 280, - 16462 - ]], - [[ - 16462, - 280, - 16463 - ]], - [[ - 16463, - 280, - 16464 - ]], - [[ - 16464, - 280, - 16465 - ]], - [[ - 16465, - 280, - 16466 - ]], - [[ - 16466, - 280, - 16467 - ]], - [[ - 16467, - 280, - 16468 - ]], - [[ - 16468, - 280, - 16418 - ]], - [[ - 16469, - 16417, - 280 - ]], - [[ - 16470, - 16469, - 280 - ]], - [[ - 7584, - 16415, - 7585 - ]], - [[ - 280, - 16471, - 16470 - ]], - [[ - 7584, - 7607, - 16472 - ]], - [[ - 16471, - 280, - 16473 - ]], - [[ - 16473, - 280, - 16474 - ]], - [[ - 16474, - 280, - 16475 - ]], - [[ - 16475, - 280, - 16476 - ]], - [[ - 16476, - 280, - 16477 - ]], - [[ - 16477, - 280, - 16411 - ]], - [[ - 16412, - 280, - 16478 - ]], - [[ - 16478, - 280, - 16479 - ]], - [[ - 16479, - 280, - 16480 - ]], - [[ - 16480, - 280, - 16481 - ]], - [[ - 16481, - 280, - 16424 - ]], - [[ - 278, - 16482, - 16424 - ]], - [[ - 16422, - 16423, - 7675 - ]], - [[ - 16482, - 278, - 16423 - ]], - [[ - 16461, - 16422, - 7674 - ]], - [[ - 16483, - 16423, - 16422 - ]], - [[ - 16461, - 7680, - 16421 - ]], - [[ - 7688, - 16420, - 16421 - ]], - [[ - 7549, - 16419, - 16420 - ]], - [[ - 7545, - 16416, - 16419 - ]], - [[ - 7557, - 16433, - 16416 - ]], - [[ - 16433, - 7574, - 16415 - ]], - [[ - 16484, - 16433, - 16415 - ]], - [[ - 16415, - 7584, - 16472 - ]], - [[ - 16472, - 7607, - 16485 - ]], - [[ - 16485, - 7607, - 7619 - ]], - [[ - 16486, - 16485, - 7619 - ]], - [[ - 16487, - 16488, - 7630 - ]], - [[ - 16489, - 16490, - 7630 - ]], - [[ - 16491, - 16489, - 7630 - ]], - [[ - 16492, - 16491, - 7630 - ]], - [[ - 16493, - 16492, - 7630 - ]], - [[ - 16494, - 16493, - 7630 - ]], - [[ - 16495, - 16494, - 7630 - ]], - [[ - 16496, - 16495, - 7630 - ]], - [[ - 12902, - 16496, - 7630 - ]], - [[ - 12902, - 16497, - 16496 - ]], - [[ - 12900, - 16498, - 16497 - ]], - [[ - 16499, - 16500, - 16501 - ]], - [[ - 16502, - 16499, - 16501 - ]], - [[ - 16503, - 16502, - 16501 - ]], - [[ - 16504, - 16503, - 16501 - ]], - [[ - 16505, - 16504, - 16501 - ]], - [[ - 12151, - 16505, - 16501 - ]], - [[ - 16506, - 16507, - 16508 - ]], - [[ - 12178, - 12179, - 16509 - ]], - [[ - 12181, - 12182, - 16509 - ]], - [[ - 16510, - 16511, - 12156 - ]], - [[ - 16512, - 16510, - 16513 - ]], - [[ - 16514, - 16515, - 16513 - ]], - [[ - 16516, - 16514, - 16513 - ]], - [[ - 16517, - 16516, - 16513 - ]], - [[ - 16518, - 16517, - 16513 - ]], - [[ - 16519, - 16518, - 16513 - ]], - [[ - 16520, - 16519, - 16513 - ]], - [[ - 16521, - 16520, - 16513 - ]], - [[ - 16522, - 16521, - 16513 - ]], - [[ - 16513, - 16507, - 16523 - ]], - [[ - 16524, - 16507, - 16506 - ]], - [[ - 16523, - 16522, - 16513 - ]], - [[ - 16507, - 16513, - 16508 - ]], - [[ - 16515, - 16512, - 16513 - ]], - [[ - 12151, - 16525, - 16505 - ]], - [[ - 16526, - 16527, - 16528 - ]], - [[ - 10981, - 10986, - 16529 - ]], - [[ - 16527, - 16530, - 16531 - ]], - [[ - 16527, - 10997, - 16530 - ]], - [[ - 14175, - 12128, - 12129 - ]], - [[ - 16501, - 16500, - 16532 - ]], - [[ - 16501, - 16533, - 16534 - ]], - [[ - 16501, - 16532, - 16533 - ]], - [[ - 16500, - 16535, - 16532 - ]], - [[ - 16500, - 16536, - 16535 - ]], - [[ - 16500, - 16537, - 16536 - ]], - [[ - 16500, - 16538, - 16537 - ]], - [[ - 16500, - 16539, - 16538 - ]], - [[ - 16500, - 16540, - 16539 - ]], - [[ - 16500, - 16541, - 16540 - ]], - [[ - 16500, - 16542, - 16541 - ]], - [[ - 16500, - 16543, - 16542 - ]], - [[ - 16500, - 16544, - 16543 - ]], - [[ - 16500, - 16545, - 16544 - ]], - [[ - 16500, - 16546, - 16545 - ]], - [[ - 16500, - 16547, - 16546 - ]], - [[ - 16500, - 16548, - 16547 - ]], - [[ - 16500, - 16549, - 16548 - ]], - [[ - 16550, - 16551, - 16552 - ]], - [[ - 16500, - 16553, - 16549 - ]], - [[ - 16500, - 16551, - 16550 - ]], - [[ - 16553, - 16500, - 16554 - ]], - [[ - 16554, - 16500, - 16555 - ]], - [[ - 16555, - 16500, - 16556 - ]], - [[ - 16556, - 16500, - 16557 - ]], - [[ - 16557, - 16500, - 16558 - ]], - [[ - 16558, - 16500, - 16550 - ]], - [[ - 12905, - 16559, - 16498 - ]], - [[ - 16552, - 16551, - 16560 - ]], - [[ - 16560, - 16551, - 16561 - ]], - [[ - 16561, - 16551, - 16562 - ]], - [[ - 16562, - 16551, - 16563 - ]], - [[ - 16563, - 16551, - 16564 - ]], - [[ - 16564, - 16551, - 16565 - ]], - [[ - 16565, - 16551, - 12924 - ]], - [[ - 16566, - 16565, - 12926 - ]], - [[ - 12915, - 16551, - 16567 - ]], - [[ - 16568, - 12944, - 16569 - ]], - [[ - 12909, - 16570, - 16571 - ]], - [[ - 12931, - 12932, - 16572 - ]], - [[ - 16573, - 16574, - 12945 - ]], - [[ - 16572, - 16573, - 12931 - ]], - [[ - 16575, - 16572, - 12932 - ]], - [[ - 16576, - 16575, - 12933 - ]], - [[ - 16577, - 16576, - 12934 - ]], - [[ - 16578, - 16577, - 12935 - ]], - [[ - 16579, - 16578, - 12936 - ]], - [[ - 16580, - 16579, - 12937 - ]], - [[ - 16581, - 16582, - 12939 - ]], - [[ - 16583, - 16581, - 12940 - ]], - [[ - 12855, - 16584, - 16583 - ]], - [[ - 16585, - 16586, - 16587 - ]], - [[ - 16588, - 16589, - 16590 - ]], - [[ - 16590, - 16589, - 7643 - ]], - [[ - 16590, - 16591, - 16592 - ]], - [[ - 7363, - 7362, - 16593 - ]], - [[ - 7643, - 16591, - 16590 - ]], - [[ - 7454, - 16594, - 7402 - ]], - [[ - 16595, - 16596, - 16597 - ]], - [[ - 16597, - 16593, - 16598 - ]], - [[ - 16599, - 7654, - 16596 - ]], - [[ - 16596, - 7363, - 16597 - ]], - [[ - 7381, - 7389, - 16600 - ]], - [[ - 16601, - 16602, - 16600 - ]], - [[ - 7362, - 16602, - 16603 - ]], - [[ - 16600, - 16604, - 16605 - ]], - [[ - 7381, - 16600, - 16602 - ]], - [[ - 16606, - 16604, - 7389 - ]], - [[ - 16607, - 16606, - 16594 - ]], - [[ - 16607, - 16594, - 16608 - ]], - [[ - 16594, - 16606, - 7402 - ]], - [[ - 16609, - 16610, - 16611 - ]], - [[ - 16610, - 7455, - 16611 - ]], - [[ - 16610, - 16594, - 7454 - ]], - [[ - 16611, - 16612, - 16613 - ]], - [[ - 16612, - 16611, - 7455 - ]], - [[ - 16614, - 16615, - 16616 - ]], - [[ - 16614, - 16612, - 7455 - ]], - [[ - 16615, - 16614, - 7456 - ]], - [[ - 16617, - 16618, - 16619 - ]], - [[ - 16617, - 16615, - 16618 - ]], - [[ - 16615, - 7456, - 16618 - ]], - [[ - 16618, - 7458, - 7459 - ]], - [[ - 7458, - 16618, - 7456 - ]], - [[ - 7458, - 7456, - 7457 - ]], - [[ - 16614, - 7455, - 7456 - ]], - [[ - 16610, - 7454, - 7455 - ]], - [[ - 7654, - 16599, - 16591 - ]], - [[ - 16593, - 7362, - 16603 - ]], - [[ - 8847, - 8846, - 9052 - ]], - [[ - 8842, - 8847, - 9052 - ]], - [[ - 8843, - 8842, - 2709 - ]], - [[ - 16586, - 7637, - 16589 - ]], - [[ - 16620, - 8804, - 8803 - ]], - [[ - 8804, - 8839, - 2634 - ]], - [[ - 8827, - 8804, - 16620 - ]], - [[ - 8827, - 16620, - 8826 - ]], - [[ - 8839, - 8838, - 2709 - ]], - [[ - 8803, - 8804, - 8733 - ]], - [[ - 8733, - 8804, - 2634 - ]], - [[ - 8839, - 2709, - 2634 - ]], - [[ - 8838, - 8843, - 2709 - ]], - [[ - 8842, - 9052, - 2709 - ]], - [[ - 8846, - 7453, - 7400 - ]], - [[ - 8846, - 7400, - 9052 - ]], - [[ - 7389, - 16604, - 16600 - ]], - [[ - 7453, - 7402, - 7400 - ]], - [[ - 7453, - 7454, - 7402 - ]], - [[ - 7402, - 16606, - 7389 - ]], - [[ - 16597, - 7363, - 16593 - ]], - [[ - 7381, - 16602, - 7362 - ]], - [[ - 7654, - 7363, - 16596 - ]], - [[ - 7643, - 7654, - 16591 - ]], - [[ - 16589, - 7637, - 7643 - ]], - [[ - 16490, - 16487, - 7630 - ]], - [[ - 16488, - 16486, - 7619 - ]], - [[ - 7630, - 16488, - 7619 - ]], - [[ - 14190, - 12195, - 12207 - ]], - [[ - 14194, - 12203, - 12204 - ]], - [[ - 16621, - 12202, - 12203 - ]], - [[ - 16621, - 12201, - 12202 - ]], - [[ - 12170, - 16509, - 16513 - ]], - [[ - 16621, - 12200, - 12201 - ]], - [[ - 16621, - 16509, - 12210 - ]], - [[ - 12200, - 16621, - 12199 - ]], - [[ - 12199, - 16621, - 12198 - ]], - [[ - 12198, - 16621, - 12197 - ]], - [[ - 12197, - 16621, - 12196 - ]], - [[ - 12196, - 16621, - 12210 - ]], - [[ - 12210, - 16509, - 12194 - ]], - [[ - 12194, - 16509, - 12193 - ]], - [[ - 12193, - 16509, - 12192 - ]], - [[ - 12192, - 16509, - 12191 - ]], - [[ - 12191, - 16509, - 12190 - ]], - [[ - 12190, - 16509, - 12189 - ]], - [[ - 12189, - 16509, - 12188 - ]], - [[ - 12188, - 16509, - 12187 - ]], - [[ - 12185, - 12186, - 16509 - ]], - [[ - 12187, - 16509, - 12186 - ]], - [[ - 12184, - 12185, - 16509 - ]], - [[ - 12182, - 12184, - 16509 - ]], - [[ - 12154, - 16622, - 16623 - ]], - [[ - 16510, - 12157, - 16513 - ]], - [[ - 16511, - 16622, - 12155 - ]], - [[ - 12180, - 12181, - 16509 - ]], - [[ - 12179, - 12180, - 16509 - ]], - [[ - 16624, - 12153, - 16623 - ]], - [[ - 12177, - 12178, - 16509 - ]], - [[ - 12176, - 12177, - 16509 - ]], - [[ - 12175, - 12176, - 16509 - ]], - [[ - 12174, - 12175, - 16509 - ]], - [[ - 12173, - 12174, - 16509 - ]], - [[ - 12172, - 12173, - 16509 - ]], - [[ - 12171, - 12172, - 16509 - ]], - [[ - 12170, - 12171, - 16509 - ]], - [[ - 12169, - 12170, - 16513 - ]], - [[ - 16525, - 12152, - 16624 - ]], - [[ - 12169, - 16513, - 12168 - ]], - [[ - 12168, - 16513, - 12167 - ]], - [[ - 12164, - 12166, - 16513 - ]], - [[ - 12167, - 16513, - 12166 - ]], - [[ - 12163, - 12164, - 16513 - ]], - [[ - 12162, - 12163, - 16513 - ]], - [[ - 12161, - 12162, - 16513 - ]], - [[ - 12160, - 12161, - 16513 - ]], - [[ - 12159, - 12160, - 16513 - ]], - [[ - 12158, - 12159, - 16513 - ]], - [[ - 12157, - 12158, - 16513 - ]], - [[ - 12156, - 12157, - 16510 - ]], - [[ - 12155, - 12156, - 16511 - ]], - [[ - 16625, - 12142, - 16501 - ]], - [[ - 16622, - 12154, - 12155 - ]], - [[ - 16623, - 12153, - 12154 - ]], - [[ - 16624, - 12152, - 12153 - ]], - [[ - 16525, - 12151, - 12152 - ]], - [[ - 16501, - 12150, - 12151 - ]], - [[ - 16501, - 12149, - 12150 - ]], - [[ - 16501, - 12148, - 12149 - ]], - [[ - 16501, - 12147, - 12148 - ]], - [[ - 16501, - 12146, - 12147 - ]], - [[ - 16501, - 12145, - 12146 - ]], - [[ - 16501, - 12144, - 12145 - ]], - [[ - 16501, - 12142, - 12144 - ]], - [[ - 16625, - 12141, - 12142 - ]], - [[ - 16625, - 12140, - 12141 - ]], - [[ - 16625, - 12139, - 12140 - ]], - [[ - 16625, - 12138, - 12139 - ]], - [[ - 16625, - 12137, - 12138 - ]], - [[ - 16625, - 12136, - 12137 - ]], - [[ - 16625, - 12135, - 12136 - ]], - [[ - 16625, - 12134, - 12135 - ]], - [[ - 16625, - 12133, - 12134 - ]], - [[ - 16625, - 12132, - 12133 - ]], - [[ - 16625, - 12131, - 12132 - ]], - [[ - 16625, - 12130, - 12131 - ]], - [[ - 16625, - 12129, - 12130 - ]], - [[ - 16625, - 14174, - 12129 - ]], - [[ - 14176, - 12127, - 12128 - ]], - [[ - 16582, - 16580, - 12938 - ]], - [[ - 16583, - 12851, - 12850 - ]], - [[ - 16583, - 12875, - 12851 - ]], - [[ - 16583, - 12903, - 12875 - ]], - [[ - 16574, - 16626, - 12946 - ]], - [[ - 16583, - 12942, - 12903 - ]], - [[ - 12906, - 16627, - 16628 - ]], - [[ - 16583, - 12941, - 12942 - ]], - [[ - 16629, - 12908, - 16571 - ]], - [[ - 16583, - 12940, - 12941 - ]], - [[ - 16626, - 16630, - 12930 - ]], - [[ - 16581, - 12939, - 12940 - ]], - [[ - 16568, - 16570, - 12910 - ]], - [[ - 16582, - 12938, - 12939 - ]], - [[ - 16630, - 16631, - 12929 - ]], - [[ - 16580, - 12937, - 12938 - ]], - [[ - 12912, - 16632, - 16569 - ]], - [[ - 16579, - 12936, - 12937 - ]], - [[ - 16633, - 12914, - 16567 - ]], - [[ - 16578, - 12935, - 12936 - ]], - [[ - 16631, - 16634, - 12928 - ]], - [[ - 16577, - 12934, - 12935 - ]], - [[ - 16634, - 16566, - 12927 - ]], - [[ - 16576, - 12933, - 12934 - ]], - [[ - 16633, - 16632, - 12913 - ]], - [[ - 16575, - 12932, - 12933 - ]], - [[ - 16629, - 16627, - 12907 - ]], - [[ - 12945, - 12931, - 16573 - ]], - [[ - 12946, - 12945, - 16574 - ]], - [[ - 12930, - 12946, - 16626 - ]], - [[ - 12929, - 12930, - 16630 - ]], - [[ - 12928, - 12929, - 16631 - ]], - [[ - 16559, - 12904, - 16628 - ]], - [[ - 12928, - 16634, - 12927 - ]], - [[ - 12927, - 16566, - 12926 - ]], - [[ - 12926, - 16565, - 12924 - ]], - [[ - 12924, - 16551, - 12923 - ]], - [[ - 12923, - 16551, - 12922 - ]], - [[ - 12922, - 16551, - 12920 - ]], - [[ - 12920, - 16551, - 12921 - ]], - [[ - 12921, - 16551, - 12919 - ]], - [[ - 12917, - 12918, - 16551 - ]], - [[ - 12919, - 16551, - 12918 - ]], - [[ - 12915, - 12917, - 16551 - ]], - [[ - 12914, - 12915, - 16567 - ]], - [[ - 12913, - 12914, - 16633 - ]], - [[ - 12912, - 12913, - 16632 - ]], - [[ - 12944, - 12912, - 16569 - ]], - [[ - 12910, - 12944, - 16568 - ]], - [[ - 12909, - 12910, - 16570 - ]], - [[ - 12908, - 12909, - 16571 - ]], - [[ - 12907, - 12908, - 16629 - ]], - [[ - 12906, - 12907, - 16627 - ]], - [[ - 7637, - 12889, - 7630 - ]], - [[ - 16628, - 12904, - 12906 - ]], - [[ - 16559, - 12905, - 12904 - ]], - [[ - 16498, - 12900, - 12905 - ]], - [[ - 16497, - 12902, - 12900 - ]], - [[ - 7630, - 12901, - 12902 - ]], - [[ - 7630, - 12899, - 12901 - ]], - [[ - 7630, - 12898, - 12899 - ]], - [[ - 7630, - 12897, - 12898 - ]], - [[ - 7630, - 12896, - 12897 - ]], - [[ - 7630, - 12895, - 12896 - ]], - [[ - 7630, - 12894, - 12895 - ]], - [[ - 7630, - 12893, - 12894 - ]], - [[ - 12877, - 16586, - 16585 - ]], - [[ - 7630, - 12892, - 12893 - ]], - [[ - 7637, - 16586, - 12884 - ]], - [[ - 12890, - 12891, - 7630 - ]], - [[ - 12892, - 7630, - 12891 - ]], - [[ - 12889, - 12890, - 7630 - ]], - [[ - 12888, - 12889, - 7637 - ]], - [[ - 12887, - 12888, - 7637 - ]], - [[ - 12886, - 12887, - 7637 - ]], - [[ - 12885, - 12886, - 7637 - ]], - [[ - 12884, - 12885, - 7637 - ]], - [[ - 12883, - 12884, - 16586 - ]], - [[ - 12943, - 12883, - 16586 - ]], - [[ - 12880, - 12943, - 16586 - ]], - [[ - 12879, - 12880, - 16586 - ]], - [[ - 12878, - 12879, - 16586 - ]], - [[ - 12876, - 12878, - 16586 - ]], - [[ - 12877, - 12876, - 16586 - ]], - [[ - 12874, - 12877, - 16585 - ]], - [[ - 12873, - 12874, - 16585 - ]], - [[ - 16584, - 12862, - 16585 - ]], - [[ - 12873, - 16585, - 12872 - ]], - [[ - 12872, - 16585, - 12871 - ]], - [[ - 12871, - 16585, - 12870 - ]], - [[ - 12870, - 16585, - 12869 - ]], - [[ - 12869, - 16585, - 12868 - ]], - [[ - 12868, - 16585, - 12867 - ]], - [[ - 12867, - 16585, - 12866 - ]], - [[ - 12866, - 16585, - 12865 - ]], - [[ - 12865, - 16585, - 12864 - ]], - [[ - 12864, - 16585, - 12862 - ]], - [[ - 12862, - 16584, - 12863 - ]], - [[ - 16584, - 12859, - 12863 - ]], - [[ - 16584, - 12858, - 12859 - ]], - [[ - 16584, - 12857, - 12858 - ]], - [[ - 16584, - 12856, - 12857 - ]], - [[ - 16584, - 12855, - 12856 - ]], - [[ - 16583, - 12854, - 12855 - ]], - [[ - 16583, - 12853, - 12854 - ]], - [[ - 16583, - 12852, - 12853 - ]], - [[ - 16583, - 12850, - 12852 - ]], - [[ - 16529, - 14131, - 16635 - ]], - [[ - 16635, - 14133, - 14136 - ]], - [[ - 16635, - 14131, - 14133 - ]], - [[ - 16529, - 14134, - 14131 - ]], - [[ - 16529, - 14226, - 14134 - ]], - [[ - 16529, - 14225, - 14226 - ]], - [[ - 16529, - 14224, - 14225 - ]], - [[ - 16529, - 14223, - 14224 - ]], - [[ - 16529, - 14222, - 14223 - ]], - [[ - 16529, - 14221, - 14222 - ]], - [[ - 14194, - 16621, - 12203 - ]], - [[ - 16529, - 10987, - 14221 - ]], - [[ - 12125, - 12126, - 14178 - ]], - [[ - 10996, - 14219, - 14220 - ]], - [[ - 12125, - 14179, - 12124 - ]], - [[ - 10976, - 14218, - 14219 - ]], - [[ - 14180, - 12123, - 12124 - ]], - [[ - 12122, - 14182, - 12119 - ]], - [[ - 14183, - 12120, - 12119 - ]], - [[ - 12143, - 12120, - 14184 - ]], - [[ - 12143, - 14185, - 12165 - ]], - [[ - 14187, - 12209, - 12165 - ]], - [[ - 12208, - 14189, - 12207 - ]], - [[ - 14191, - 12206, - 12195 - ]], - [[ - 12205, - 12206, - 14192 - ]], - [[ - 12205, - 14193, - 12204 - ]], - [[ - 14210, - 11007, - 14209 - ]], - [[ - 11012, - 14206, - 14228 - ]], - [[ - 12208, - 12209, - 14188 - ]], - [[ - 16621, - 14205, - 14206 - ]], - [[ - 12122, - 12123, - 14181 - ]], - [[ - 16621, - 14204, - 14205 - ]], - [[ - 16621, - 14202, - 14204 - ]], - [[ - 12126, - 12127, - 14227 - ]], - [[ - 14202, - 16621, - 14201 - ]], - [[ - 14201, - 16621, - 14200 - ]], - [[ - 14200, - 16621, - 14199 - ]], - [[ - 14199, - 16621, - 14198 - ]], - [[ - 14198, - 16621, - 14197 - ]], - [[ - 14197, - 16621, - 14195 - ]], - [[ - 14195, - 16621, - 14196 - ]], - [[ - 14196, - 16621, - 14194 - ]], - [[ - 14194, - 12204, - 14193 - ]], - [[ - 14193, - 12205, - 14192 - ]], - [[ - 14192, - 12206, - 14191 - ]], - [[ - 14191, - 12195, - 14190 - ]], - [[ - 14190, - 12207, - 14189 - ]], - [[ - 14189, - 12208, - 14188 - ]], - [[ - 14185, - 14187, - 12165 - ]], - [[ - 14188, - 12209, - 14187 - ]], - [[ - 14184, - 14185, - 12143 - ]], - [[ - 14183, - 14184, - 12120 - ]], - [[ - 14182, - 14183, - 12119 - ]], - [[ - 14181, - 14182, - 12122 - ]], - [[ - 14180, - 14181, - 12123 - ]], - [[ - 14179, - 14180, - 12124 - ]], - [[ - 14178, - 14179, - 12125 - ]], - [[ - 14227, - 14178, - 12126 - ]], - [[ - 14176, - 14227, - 12127 - ]], - [[ - 14175, - 14176, - 12128 - ]], - [[ - 14174, - 14175, - 12129 - ]], - [[ - 14173, - 14174, - 16625 - ]], - [[ - 14172, - 14173, - 16625 - ]], - [[ - 14171, - 14172, - 16625 - ]], - [[ - 14170, - 14171, - 16625 - ]], - [[ - 14169, - 14170, - 16625 - ]], - [[ - 14168, - 14169, - 16625 - ]], - [[ - 14167, - 14168, - 16625 - ]], - [[ - 14166, - 14167, - 16625 - ]], - [[ - 16635, - 14159, - 16625 - ]], - [[ - 16625, - 14165, - 14166 - ]], - [[ - 16625, - 14163, - 14165 - ]], - [[ - 16625, - 14162, - 14163 - ]], - [[ - 16625, - 14161, - 14162 - ]], - [[ - 16625, - 14160, - 14161 - ]], - [[ - 16625, - 14159, - 14160 - ]], - [[ - 16635, - 14155, - 14159 - ]], - [[ - 16635, - 14153, - 14155 - ]], - [[ - 16635, - 14157, - 14153 - ]], - [[ - 16635, - 14158, - 14157 - ]], - [[ - 16635, - 14156, - 14158 - ]], - [[ - 16635, - 14143, - 14156 - ]], - [[ - 16635, - 14144, - 14143 - ]], - [[ - 16635, - 14152, - 14144 - ]], - [[ - 16635, - 14151, - 14152 - ]], - [[ - 16635, - 14150, - 14151 - ]], - [[ - 16635, - 14149, - 14150 - ]], - [[ - 16635, - 14148, - 14149 - ]], - [[ - 16635, - 14147, - 14148 - ]], - [[ - 16635, - 14146, - 14147 - ]], - [[ - 16635, - 14145, - 14146 - ]], - [[ - 16635, - 14177, - 14145 - ]], - [[ - 16635, - 14141, - 14177 - ]], - [[ - 16635, - 14140, - 14141 - ]], - [[ - 16635, - 14138, - 14140 - ]], - [[ - 16635, - 14139, - 14138 - ]], - [[ - 16635, - 14137, - 14139 - ]], - [[ - 16635, - 14135, - 14137 - ]], - [[ - 16635, - 14136, - 14135 - ]], - [[ - 16526, - 11052, - 16527 - ]], - [[ - 16530, - 10997, - 10974 - ]], - [[ - 16527, - 11048, - 10997 - ]], - [[ - 16527, - 11064, - 11048 - ]], - [[ - 16527, - 11062, - 11064 - ]], - [[ - 16527, - 11063, - 11062 - ]], - [[ - 16527, - 11061, - 11063 - ]], - [[ - 16527, - 11057, - 11061 - ]], - [[ - 16527, - 11059, - 11057 - ]], - [[ - 16527, - 11060, - 11059 - ]], - [[ - 16527, - 11058, - 11060 - ]], - [[ - 16527, - 11055, - 11058 - ]], - [[ - 16527, - 11056, - 11055 - ]], - [[ - 16527, - 11053, - 11056 - ]], - [[ - 16527, - 11054, - 11053 - ]], - [[ - 11020, - 16636, - 16621 - ]], - [[ - 16527, - 11052, - 11054 - ]], - [[ - 16526, - 16636, - 11047 - ]], - [[ - 11052, - 16526, - 11049 - ]], - [[ - 11049, - 16526, - 11051 - ]], - [[ - 11051, - 16526, - 11050 - ]], - [[ - 11050, - 16526, - 11035 - ]], - [[ - 11035, - 16526, - 11046 - ]], - [[ - 11046, - 16526, - 11047 - ]], - [[ - 11047, - 16636, - 11045 - ]], - [[ - 11045, - 16636, - 11044 - ]], - [[ - 11044, - 16636, - 11043 - ]], - [[ - 11043, - 16636, - 11041 - ]], - [[ - 11041, - 16636, - 11042 - ]], - [[ - 11040, - 11039, - 16636 - ]], - [[ - 11042, - 16636, - 11039 - ]], - [[ - 11036, - 11040, - 16636 - ]], - [[ - 11038, - 11036, - 16636 - ]], - [[ - 11037, - 11038, - 16636 - ]], - [[ - 11033, - 11037, - 16636 - ]], - [[ - 11034, - 11033, - 16636 - ]], - [[ - 11029, - 11034, - 16636 - ]], - [[ - 11031, - 11029, - 16636 - ]], - [[ - 11032, - 11031, - 16636 - ]], - [[ - 14216, - 11002, - 14215 - ]], - [[ - 11030, - 11032, - 16636 - ]], - [[ - 11001, - 14214, - 14215 - ]], - [[ - 11026, - 11030, - 16636 - ]], - [[ - 14213, - 10999, - 14212 - ]], - [[ - 11028, - 11026, - 16636 - ]], - [[ - 11006, - 14211, - 14212 - ]], - [[ - 11027, - 11028, - 16636 - ]], - [[ - 14210, - 14211, - 11005 - ]], - [[ - 11022, - 11027, - 16636 - ]], - [[ - 14209, - 11008, - 14208 - ]], - [[ - 14206, - 11012, - 16621 - ]], - [[ - 11009, - 14207, - 14208 - ]], - [[ - 16636, - 11025, - 11022 - ]], - [[ - 14228, - 14207, - 11011 - ]], - [[ - 16636, - 11024, - 11025 - ]], - [[ - 14213, - 14214, - 11003 - ]], - [[ - 16636, - 11023, - 11024 - ]], - [[ - 16636, - 11020, - 11023 - ]], - [[ - 14216, - 14217, - 11000 - ]], - [[ - 16621, - 11021, - 11020 - ]], - [[ - 16621, - 11018, - 11021 - ]], - [[ - 16621, - 11019, - 11018 - ]], - [[ - 14217, - 14218, - 10998 - ]], - [[ - 11019, - 16621, - 11016 - ]], - [[ - 11016, - 16621, - 11017 - ]], - [[ - 11017, - 16621, - 11015 - ]], - [[ - 11015, - 16621, - 11013 - ]], - [[ - 11013, - 16621, - 11014 - ]], - [[ - 11014, - 16621, - 11004 - ]], - [[ - 11004, - 16621, - 11010 - ]], - [[ - 16621, - 11012, - 11010 - ]], - [[ - 10977, - 16529, - 16530 - ]], - [[ - 14228, - 11011, - 11012 - ]], - [[ - 14220, - 14221, - 10987 - ]], - [[ - 11011, - 14207, - 11009 - ]], - [[ - 11009, - 14208, - 11008 - ]], - [[ - 11008, - 14209, - 11007 - ]], - [[ - 11007, - 14210, - 11005 - ]], - [[ - 11005, - 14211, - 11006 - ]], - [[ - 11006, - 14212, - 10999 - ]], - [[ - 10999, - 14213, - 11003 - ]], - [[ - 11003, - 14214, - 11001 - ]], - [[ - 11001, - 14215, - 11002 - ]], - [[ - 11002, - 14216, - 11000 - ]], - [[ - 11000, - 14217, - 10998 - ]], - [[ - 10998, - 14218, - 10976 - ]], - [[ - 10976, - 14219, - 10996 - ]], - [[ - 10996, - 14220, - 10987 - ]], - [[ - 10987, - 16529, - 10993 - ]], - [[ - 10993, - 16529, - 10995 - ]], - [[ - 10995, - 16529, - 10994 - ]], - [[ - 10994, - 16529, - 10988 - ]], - [[ - 10988, - 16529, - 10992 - ]], - [[ - 10992, - 16529, - 10990 - ]], - [[ - 10990, - 16529, - 10991 - ]], - [[ - 10991, - 16529, - 10989 - ]], - [[ - 10989, - 16529, - 10984 - ]], - [[ - 10984, - 16529, - 10985 - ]], - [[ - 10985, - 16529, - 10986 - ]], - [[ - 10982, - 10981, - 16529 - ]], - [[ - 10983, - 10982, - 16529 - ]], - [[ - 10980, - 10983, - 16529 - ]], - [[ - 10977, - 10980, - 16529 - ]], - [[ - 10979, - 10977, - 16530 - ]], - [[ - 10978, - 10979, - 16530 - ]], - [[ - 10975, - 10978, - 16530 - ]], - [[ - 10973, - 10975, - 16530 - ]], - [[ - 10974, - 10973, - 16530 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b983e1262-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33cc49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 11998, - 14254, - 16637 - ]], - [[ - 11998, - 16637, - 12018 - ]], - [[ - 14254, - 14273, - 16637 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b983ed62d-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef32dc49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16638, - 16639, - 16640 - ]], - [[ - 16638, - 16640, - 16641 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b983f98fe-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef160449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "onverhard", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 7971, - 8219, - 16410 - ]], - [[ - 7970, - 16642, - 8543 - ]], - [[ - 8220, - 16410, - 8218 - ]], - [[ - 8218, - 16410, - 8219 - ]], - [[ - 8219, - 7971, - 7972 - ]], - [[ - 16643, - 7971, - 16410 - ]], - [[ - 16643, - 16642, - 7970 - ]], - [[ - 7970, - 7971, - 16643 - ]], - [[ - 7969, - 7970, - 7967 - ]], - [[ - 7967, - 7970, - 8543 - ]], - [[ - 7968, - 7967, - 8543 - ]], - [[ - 8544, - 16644, - 16645 - ]], - [[ - 8543, - 16644, - 8544 - ]], - [[ - 8543, - 16642, - 16644 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b984083fa-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef0b4b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16646, - 6952, - 6953 - ]], - [[ - 16646, - 6953, - 16647 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b984231bb-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef136949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "sierbestrating", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 2352, - 7592, - 2744 - ]], - [[ - 2352, - 2354, - 7573 - ]], - [[ - 7592, - 2352, - 7593 - ]], - [[ - 7593, - 2352, - 7598 - ]], - [[ - 7598, - 2352, - 7573 - ]], - [[ - 7573, - 2354, - 7570 - ]], - [[ - 7570, - 2354, - 7571 - ]], - [[ - 7571, - 2354, - 7585 - ]], - [[ - 7574, - 7571, - 7585 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b984231ca-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eec1d149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16648, - 15792, - 16649 - ]], - [[ - 14285, - 16649, - 15792 - ]], - [[ - 14418, - 14433, - 16650 - ]], - [[ - 16651, - 16649, - 14285 - ]], - [[ - 16652, - 16653, - 16650 - ]], - [[ - 16654, - 16652, - 15903 - ]], - [[ - 16655, - 16654, - 15903 - ]], - [[ - 16656, - 16655, - 15903 - ]], - [[ - 16657, - 16656, - 15903 - ]], - [[ - 16658, - 16659, - 15903 - ]], - [[ - 16660, - 16658, - 15903 - ]], - [[ - 16661, - 16660, - 15903 - ]], - [[ - 16662, - 16661, - 15903 - ]], - [[ - 16663, - 16662, - 15903 - ]], - [[ - 16664, - 16663, - 15903 - ]], - [[ - 16665, - 16664, - 15910 - ]], - [[ - 16057, - 16665, - 15910 - ]], - [[ - 16664, - 15903, - 15910 - ]], - [[ - 16659, - 16657, - 15903 - ]], - [[ - 15903, - 16652, - 16650 - ]], - [[ - 16650, - 16653, - 14418 - ]], - [[ - 16651, - 14419, - 16653 - ]], - [[ - 16653, - 14419, - 14418 - ]], - [[ - 16651, - 14290, - 14419 - ]], - [[ - 16312, - 12451, - 16648 - ]], - [[ - 16312, - 10614, - 15809 - ]], - [[ - 14290, - 16651, - 14285 - ]], - [[ - 15792, - 16648, - 15772 - ]], - [[ - 15772, - 16648, - 12451 - ]], - [[ - 12451, - 16312, - 12452 - ]], - [[ - 12452, - 16312, - 15809 - ]], - [[ - 15809, - 10614, - 10613 - ]], - [[ - 15804, - 15809, - 10613 - ]], - [[ - 11769, - 15421, - 11618 - ]], - [[ - 11785, - 11769, - 11618 - ]], - [[ - 11619, - 11785, - 11618 - ]], - [[ - 13131, - 13125, - 16666 - ]], - [[ - 13041, - 13131, - 16176 - ]], - [[ - 16667, - 16668, - 16669 - ]], - [[ - 16670, - 16671, - 16177 - ]], - [[ - 1027, - 16672, - 1033 - ]], - [[ - 1033, - 16672, - 16177 - ]], - [[ - 16673, - 16674, - 16675 - ]], - [[ - 16676, - 16677, - 16669 - ]], - [[ - 16678, - 16679, - 16670 - ]], - [[ - 16671, - 16670, - 16679 - ]], - [[ - 16680, - 16681, - 16669 - ]], - [[ - 16678, - 16670, - 16682 - ]], - [[ - 16683, - 16684, - 16685 - ]], - [[ - 16686, - 16687, - 16688 - ]], - [[ - 16689, - 16690, - 16669 - ]], - [[ - 16691, - 16692, - 16693 - ]], - [[ - 16674, - 16694, - 16675 - ]], - [[ - 16695, - 16696, - 16693 - ]], - [[ - 16697, - 16669, - 16696 - ]], - [[ - 16698, - 16699, - 16700 - ]], - [[ - 16699, - 16669, - 16701 - ]], - [[ - 16702, - 16698, - 16700 - ]], - [[ - 16700, - 16699, - 16701 - ]], - [[ - 16694, - 16703, - 16704 - ]], - [[ - 16701, - 16669, - 16705 - ]], - [[ - 16706, - 16673, - 16675 - ]], - [[ - 16705, - 16669, - 16690 - ]], - [[ - 16707, - 16673, - 16706 - ]], - [[ - 16707, - 16684, - 16683 - ]], - [[ - 16687, - 16708, - 16685 - ]], - [[ - 16689, - 16669, - 16681 - ]], - [[ - 16709, - 16682, - 16710 - ]], - [[ - 16680, - 16669, - 16677 - ]], - [[ - 16671, - 1033, - 16177 - ]], - [[ - 16676, - 16669, - 16668 - ]], - [[ - 16667, - 16669, - 16711 - ]], - [[ - 16711, - 16669, - 16712 - ]], - [[ - 16712, - 16669, - 16697 - ]], - [[ - 16697, - 16696, - 16713 - ]], - [[ - 16713, - 16696, - 16714 - ]], - [[ - 16714, - 16696, - 16715 - ]], - [[ - 16715, - 16696, - 16716 - ]], - [[ - 16716, - 16696, - 16717 - ]], - [[ - 16718, - 16716, - 16719 - ]], - [[ - 16720, - 16718, - 16721 - ]], - [[ - 16722, - 16720, - 16723 - ]], - [[ - 16724, - 16722, - 16725 - ]], - [[ - 16726, - 16724, - 16727 - ]], - [[ - 16728, - 16726, - 16729 - ]], - [[ - 16730, - 16728, - 16731 - ]], - [[ - 16732, - 16730, - 16733 - ]], - [[ - 16734, - 16732, - 16735 - ]], - [[ - 16736, - 16734, - 16737 - ]], - [[ - 16738, - 16736, - 16739 - ]], - [[ - 16740, - 16738, - 16741 - ]], - [[ - 16739, - 16741, - 16738 - ]], - [[ - 16742, - 16740, - 16741 - ]], - [[ - 16737, - 16739, - 16736 - ]], - [[ - 16735, - 16737, - 16734 - ]], - [[ - 16733, - 16735, - 16732 - ]], - [[ - 16731, - 16733, - 16730 - ]], - [[ - 16729, - 16731, - 16728 - ]], - [[ - 16727, - 16729, - 16726 - ]], - [[ - 16725, - 16727, - 16724 - ]], - [[ - 16723, - 16725, - 16722 - ]], - [[ - 16721, - 16723, - 16720 - ]], - [[ - 16719, - 16721, - 16718 - ]], - [[ - 16717, - 16719, - 16716 - ]], - [[ - 16743, - 16744, - 16693 - ]], - [[ - 16696, - 16745, - 16717 - ]], - [[ - 16696, - 16695, - 16745 - ]], - [[ - 16746, - 16747, - 16704 - ]], - [[ - 16693, - 16748, - 16695 - ]], - [[ - 16743, - 16747, - 16746 - ]], - [[ - 16748, - 16693, - 16749 - ]], - [[ - 16749, - 16693, - 16750 - ]], - [[ - 16750, - 16693, - 16751 - ]], - [[ - 16751, - 16693, - 16692 - ]], - [[ - 16752, - 16691, - 16693 - ]], - [[ - 16744, - 16752, - 16693 - ]], - [[ - 16746, - 16744, - 16743 - ]], - [[ - 16704, - 16703, - 16746 - ]], - [[ - 16694, - 16674, - 16703 - ]], - [[ - 16672, - 13042, - 16177 - ]], - [[ - 16673, - 16753, - 16674 - ]], - [[ - 16673, - 16707, - 16683 - ]], - [[ - 16683, - 16685, - 16708 - ]], - [[ - 16708, - 16687, - 16686 - ]], - [[ - 16754, - 16708, - 16686 - ]], - [[ - 16754, - 16755, - 16756 - ]], - [[ - 16709, - 16710, - 16688 - ]], - [[ - 16757, - 16756, - 16755 - ]], - [[ - 16710, - 16686, - 16688 - ]], - [[ - 16755, - 16754, - 16686 - ]], - [[ - 13042, - 13041, - 16174 - ]], - [[ - 16710, - 16682, - 16670 - ]], - [[ - 13042, - 16174, - 16177 - ]], - [[ - 13041, - 16176, - 16174 - ]], - [[ - 13131, - 16666, - 16176 - ]], - [[ - 15421, - 15420, - 11622 - ]], - [[ - 13125, - 11619, - 16666 - ]], - [[ - 16666, - 11619, - 11620 - ]], - [[ - 13125, - 11785, - 11619 - ]], - [[ - 15420, - 15534, - 10615 - ]], - [[ - 15421, - 11622, - 11618 - ]], - [[ - 15534, - 15557, - 10615 - ]], - [[ - 15420, - 10615, - 11622 - ]], - [[ - 15557, - 10613, - 10615 - ]], - [[ - 15557, - 15804, - 10613 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9845daba-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef0b4949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 6857, - 6858, - 16758 - ]], - [[ - 6857, - 16758, - 6820 - ]], - [[ - 6820, - 6818, - 6819 - ]], - [[ - 6820, - 16759, - 6818 - ]], - [[ - 6820, - 16758, - 16759 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98462904-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eedb0349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "verkeersdrempel", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16760, - 16761, - 16762 - ]], - [[ - 16762, - 16763, - 16764 - ]], - [[ - 16760, - 16762, - 16764 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9847615f-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16765, - 16766, - 16767 - ]], - [[ - 16766, - 16768, - 16767 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98484b4f-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15470, - 14102, - 14125 - ]], - [[ - 15470, - 14125, - 15459 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98490f1a-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15906, - 15905, - 11987 - ]], - [[ - 15905, - 11988, - 11987 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b984abcea-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eec1fa49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 12536, - 16367, - 12531 - ]], - [[ - 14448, - 11901, - 16370 - ]], - [[ - 12536, - 16368, - 16367 - ]], - [[ - 16169, - 16170, - 24 - ]], - [[ - 16375, - 25, - 16408 - ]], - [[ - 16408, - 25, - 16407 - ]], - [[ - 16407, - 25, - 16380 - ]], - [[ - 16380, - 25, - 16406 - ]], - [[ - 16769, - 16404, - 16405 - ]], - [[ - 16769, - 16382, - 16404 - ]], - [[ - 16406, - 16769, - 16405 - ]], - [[ - 16770, - 16382, - 16769 - ]], - [[ - 16769, - 16406, - 25 - ]], - [[ - 25, - 16375, - 24 - ]], - [[ - 24, - 16375, - 16162 - ]], - [[ - 16168, - 16169, - 24 - ]], - [[ - 16167, - 16168, - 24 - ]], - [[ - 16166, - 16167, - 24 - ]], - [[ - 16165, - 16166, - 24 - ]], - [[ - 16164, - 16165, - 24 - ]], - [[ - 16163, - 16164, - 24 - ]], - [[ - 16162, - 16163, - 24 - ]], - [[ - 16161, - 16162, - 16375 - ]], - [[ - 16160, - 16161, - 16375 - ]], - [[ - 16158, - 16160, - 16375 - ]], - [[ - 16157, - 16158, - 16375 - ]], - [[ - 16156, - 16157, - 16375 - ]], - [[ - 16374, - 16150, - 16375 - ]], - [[ - 16375, - 16155, - 16156 - ]], - [[ - 16375, - 16154, - 16155 - ]], - [[ - 14448, - 16370, - 16369 - ]], - [[ - 16375, - 16153, - 16154 - ]], - [[ - 16374, - 16370, - 11900 - ]], - [[ - 16153, - 16375, - 16152 - ]], - [[ - 16152, - 16375, - 16149 - ]], - [[ - 16149, - 16375, - 16150 - ]], - [[ - 16150, - 16374, - 16171 - ]], - [[ - 16374, - 16172, - 16171 - ]], - [[ - 16374, - 11900, - 16172 - ]], - [[ - 16368, - 15729, - 16369 - ]], - [[ - 16370, - 11901, - 11900 - ]], - [[ - 16367, - 16372, - 14738 - ]], - [[ - 16409, - 15292, - 16372 - ]], - [[ - 16369, - 14442, - 14448 - ]], - [[ - 16369, - 15729, - 14442 - ]], - [[ - 16409, - 15884, - 14532 - ]], - [[ - 15729, - 16368, - 15746 - ]], - [[ - 15746, - 16368, - 12536 - ]], - [[ - 12531, - 16367, - 14731 - ]], - [[ - 14731, - 16367, - 14732 - ]], - [[ - 14732, - 16367, - 14746 - ]], - [[ - 14746, - 16367, - 14738 - ]], - [[ - 14738, - 16372, - 14237 - ]], - [[ - 14237, - 16372, - 14240 - ]], - [[ - 14240, - 16372, - 15291 - ]], - [[ - 15291, - 16372, - 15292 - ]], - [[ - 15292, - 16409, - 15237 - ]], - [[ - 15237, - 16409, - 15238 - ]], - [[ - 15238, - 16409, - 14532 - ]], - [[ - 6, - 5, - 24 - ]], - [[ - 24, - 5, - 25 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b984eb436-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef4c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16771, - 16772, - 16773 - ]], - [[ - 16771, - 16773, - 16774 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98525e11-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef229649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15694, - 11876, - 15711 - ]], - [[ - 11876, - 11888, - 15711 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98554433-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eec1fe49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16775, - 16776, - 16777 - ]], - [[ - 16776, - 16778, - 16777 - ]], - [[ - 16776, - 16761, - 16778 - ]], - [[ - 16778, - 16761, - 16760 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b98556b73-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eedb4d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "verkeersdrempel", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16779, - 16780, - 16781 - ]], - [[ - 16781, - 16780, - 16782 - ]], - [[ - 16779, - 16783, - 16780 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9856f206-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16784, - 16785, - 16786 - ]], - [[ - 16784, - 16786, - 16787 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b985fcb64-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef0ac049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 211, - 313, - 210 - ]], - [[ - 210, - 313, - 209 - ]], - [[ - 211, - 11617, - 313 - ]], - [[ - 211, - 212, - 11616 - ]], - [[ - 11617, - 211, - 11616 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f4dc812-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeeec649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 1026, - 1035, - 1036 - ]], - [[ - 16788, - 1026, - 1036 - ]], - [[ - 1048, - 16788, - 1049 - ]], - [[ - 1049, - 16788, - 1040 - ]], - [[ - 1040, - 16788, - 1041 - ]], - [[ - 1041, - 16788, - 1036 - ]], - [[ - 1026, - 1034, - 1035 - ]], - [[ - 1026, - 1028, - 1034 - ]], - [[ - 16788, - 16789, - 1026 - ]], - [[ - 1026, - 16789, - 1027 - ]], - [[ - 13077, - 16790, - 1048 - ]], - [[ - 16791, - 13042, - 16672 - ]], - [[ - 1048, - 16790, - 16788 - ]], - [[ - 13077, - 13042, - 16791 - ]], - [[ - 16789, - 16791, - 16672 - ]], - [[ - 16790, - 13077, - 16791 - ]], - [[ - 1027, - 16789, - 16672 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f4f9d10-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef344a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 14527, - 15693, - 15710 - ]], - [[ - 14527, - 15710, - 14549 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f5123ac-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eebe3e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16792, - 16793, - 3225 - ]], - [[ - 3277, - 16794, - 3344 - ]], - [[ - 3344, - 16795, - 3272 - ]], - [[ - 3272, - 16796, - 3271 - ]], - [[ - 3271, - 16797, - 3269 - ]], - [[ - 3269, - 16798, - 3267 - ]], - [[ - 3267, - 16799, - 3268 - ]], - [[ - 3268, - 16800, - 3265 - ]], - [[ - 3265, - 16801, - 3264 - ]], - [[ - 3264, - 16802, - 3350 - ]], - [[ - 3350, - 16803, - 3262 - ]], - [[ - 16793, - 16804, - 3247 - ]], - [[ - 3225, - 16793, - 3247 - ]], - [[ - 3247, - 16804, - 3252 - ]], - [[ - 3262, - 16792, - 3225 - ]], - [[ - 3276, - 16805, - 3277 - ]], - [[ - 16806, - 3366, - 3337 - ]], - [[ - 3262, - 16803, - 16792 - ]], - [[ - 3276, - 3366, - 16807 - ]], - [[ - 16801, - 16802, - 3264 - ]], - [[ - 16803, - 3350, - 16802 - ]], - [[ - 3333, - 16808, - 3337 - ]], - [[ - 16809, - 3329, - 3369 - ]], - [[ - 3265, - 16800, - 16801 - ]], - [[ - 3333, - 3329, - 16810 - ]], - [[ - 16798, - 16799, - 3267 - ]], - [[ - 16800, - 3268, - 16799 - ]], - [[ - 3381, - 16811, - 3369 - ]], - [[ - 16812, - 3322, - 3319 - ]], - [[ - 3269, - 16797, - 16798 - ]], - [[ - 3381, - 3322, - 16813 - ]], - [[ - 16795, - 16796, - 3272 - ]], - [[ - 16797, - 3271, - 16796 - ]], - [[ - 3286, - 16814, - 3319 - ]], - [[ - 16815, - 3285, - 3290 - ]], - [[ - 3344, - 16794, - 16795 - ]], - [[ - 3286, - 3285, - 16816 - ]], - [[ - 16807, - 16805, - 3276 - ]], - [[ - 16794, - 3277, - 16805 - ]], - [[ - 3289, - 16817, - 3290 - ]], - [[ - 3366, - 16806, - 16807 - ]], - [[ - 3337, - 16808, - 16806 - ]], - [[ - 3333, - 16810, - 16808 - ]], - [[ - 16818, - 3292, - 16819 - ]], - [[ - 3329, - 16809, - 16810 - ]], - [[ - 3289, - 3292, - 16818 - ]], - [[ - 16809, - 3369, - 16811 - ]], - [[ - 16811, - 3381, - 16813 - ]], - [[ - 16813, - 3322, - 16812 - ]], - [[ - 16812, - 3319, - 16814 - ]], - [[ - 16814, - 3286, - 16816 - ]], - [[ - 16816, - 3285, - 16815 - ]], - [[ - 16815, - 3290, - 16817 - ]], - [[ - 16817, - 3289, - 16818 - ]], - [[ - 16819, - 3292, - 3295 - ]], - [[ - 16820, - 16819, - 3295 - ]], - [[ - 16821, - 16820, - 3295 - ]], - [[ - 16822, - 16821, - 3295 - ]], - [[ - 16823, - 16822, - 3295 - ]], - [[ - 16824, - 16823, - 3295 - ]], - [[ - 16825, - 16824, - 3295 - ]], - [[ - 16825, - 3294, - 16826 - ]], - [[ - 16825, - 3295, - 3294 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f531ed5-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef16be49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 10028, - 10012, - 7279 - ]], - [[ - 10028, - 7279, - 16827 - ]], - [[ - 7278, - 7279, - 10012 - ]], - [[ - 16828, - 10179, - 16827 - ]], - [[ - 16827, - 10179, - 10028 - ]], - [[ - 16828, - 1173, - 10179 - ]], - [[ - 10205, - 10179, - 8554 - ]], - [[ - 1161, - 10179, - 1173 - ]], - [[ - 10205, - 1124, - 8545 - ]], - [[ - 8534, - 1123, - 10205 - ]], - [[ - 1124, - 10205, - 1123 - ]], - [[ - 8534, - 10205, - 1230 - ]], - [[ - 1230, - 10205, - 1112 - ]], - [[ - 1217, - 8526, - 10205 - ]], - [[ - 1112, - 10205, - 8526 - ]], - [[ - 1218, - 1217, - 10205 - ]], - [[ - 1203, - 8554, - 10179 - ]], - [[ - 1218, - 10205, - 8554 - ]], - [[ - 8562, - 1203, - 10179 - ]], - [[ - 1202, - 8554, - 1203 - ]], - [[ - 1188, - 8562, - 10179 - ]], - [[ - 1146, - 1188, - 10179 - ]], - [[ - 1161, - 8412, - 10179 - ]], - [[ - 1146, - 10179, - 8412 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f5409d1-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef6149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 7194, - 7198, - 15924 - ]], - [[ - 7198, - 15901, - 15924 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f556936-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16829, - 16830, - 16831 - ]], - [[ - 16829, - 16832, - 16833 - ]], - [[ - 16833, - 16834, - 16835 - ]], - [[ - 16833, - 16836, - 16834 - ]], - [[ - 16833, - 16837, - 16836 - ]], - [[ - 16833, - 16832, - 16837 - ]], - [[ - 16829, - 16838, - 16832 - ]], - [[ - 16829, - 16839, - 16838 - ]], - [[ - 16829, - 16840, - 16839 - ]], - [[ - 16829, - 16841, - 16840 - ]], - [[ - 16829, - 16842, - 16841 - ]], - [[ - 16829, - 16843, - 16842 - ]], - [[ - 16829, - 16844, - 16843 - ]], - [[ - 16829, - 16845, - 16844 - ]], - [[ - 16829, - 16846, - 16845 - ]], - [[ - 16829, - 16847, - 16846 - ]], - [[ - 16829, - 16848, - 16847 - ]], - [[ - 16829, - 16849, - 16848 - ]], - [[ - 16829, - 16850, - 16849 - ]], - [[ - 16829, - 16851, - 16850 - ]], - [[ - 16829, - 16852, - 16851 - ]], - [[ - 16829, - 16853, - 16852 - ]], - [[ - 16829, - 16831, - 16853 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f565329-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef0b4e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 6958, - 6955, - 6957 - ]], - [[ - 6957, - 6955, - 6956 - ]], - [[ - 6958, - 6959, - 16854 - ]], - [[ - 6955, - 16855, - 6954 - ]], - [[ - 6955, - 6958, - 16855 - ]], - [[ - 16855, - 6958, - 16854 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f56c89e-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 14126, - 14118, - 15328 - ]], - [[ - 14126, - 15328, - 15332 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f56efd5-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef32dd49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16856, - 16857, - 16858 - ]], - [[ - 16857, - 16859, - 16858 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f576553-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15804, - 15557, - 15805 - ]], - [[ - 15557, - 15549, - 15805 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f615017-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eef5fa49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 8136, - 8137, - 16860 - ]], - [[ - 16861, - 8136, - 11378 - ]], - [[ - 8134, - 8135, - 8133 - ]], - [[ - 11379, - 11378, - 8136 - ]], - [[ - 16862, - 11379, - 8136 - ]], - [[ - 16863, - 16862, - 8136 - ]], - [[ - 16864, - 16863, - 8136 - ]], - [[ - 16865, - 16864, - 8136 - ]], - [[ - 16866, - 16865, - 8136 - ]], - [[ - 16860, - 16866, - 8136 - ]], - [[ - 16804, - 8135, - 16861 - ]], - [[ - 16861, - 8135, - 8136 - ]], - [[ - 16867, - 16793, - 16868 - ]], - [[ - 8135, - 16804, - 16867 - ]], - [[ - 8135, - 16867, - 8133 - ]], - [[ - 16804, - 16793, - 16867 - ]], - [[ - 8122, - 16868, - 8121 - ]], - [[ - 8125, - 16868, - 8122 - ]], - [[ - 8124, - 8125, - 8122 - ]], - [[ - 8124, - 8122, - 8123 - ]], - [[ - 16868, - 16793, - 8121 - ]], - [[ - 8117, - 16793, - 8118 - ]], - [[ - 8120, - 8121, - 8117 - ]], - [[ - 8120, - 8117, - 8119 - ]], - [[ - 8121, - 16793, - 8117 - ]], - [[ - 11605, - 16793, - 11604 - ]], - [[ - 8159, - 8118, - 11606 - ]], - [[ - 8118, - 11605, - 11606 - ]], - [[ - 8118, - 16793, - 11605 - ]], - [[ - 11601, - 16793, - 11600 - ]], - [[ - 11603, - 11604, - 11602 - ]], - [[ - 11604, - 11601, - 11602 - ]], - [[ - 11604, - 16793, - 11601 - ]], - [[ - 11600, - 16793, - 15289 - ]], - [[ - 11599, - 11600, - 11597 - ]], - [[ - 11598, - 11599, - 11597 - ]], - [[ - 11600, - 15289, - 11597 - ]], - [[ - 15288, - 16793, - 16792 - ]], - [[ - 11595, - 11596, - 11593 - ]], - [[ - 15266, - 15264, - 11593 - ]], - [[ - 11594, - 11595, - 11593 - ]], - [[ - 15264, - 15263, - 11593 - ]], - [[ - 11591, - 11592, - 11590 - ]], - [[ - 11590, - 11592, - 11589 - ]], - [[ - 16795, - 11588, - 11589 - ]], - [[ - 11587, - 11588, - 11586 - ]], - [[ - 11586, - 11588, - 11585 - ]], - [[ - 16808, - 11584, - 11585 - ]], - [[ - 11585, - 11588, - 16807 - ]], - [[ - 11581, - 11583, - 11584 - ]], - [[ - 16813, - 11581, - 11584 - ]], - [[ - 11582, - 11583, - 11581 - ]], - [[ - 16814, - 11580, - 11581 - ]], - [[ - 11579, - 11580, - 11577 - ]], - [[ - 16815, - 11577, - 11580 - ]], - [[ - 11578, - 11579, - 11577 - ]], - [[ - 16818, - 11576, - 11577 - ]], - [[ - 11575, - 11576, - 11573 - ]], - [[ - 16818, - 11573, - 11576 - ]], - [[ - 11574, - 11575, - 11573 - ]], - [[ - 16818, - 11572, - 11573 - ]], - [[ - 11571, - 11572, - 2825 - ]], - [[ - 2825, - 11572, - 16818 - ]], - [[ - 2826, - 2825, - 16818 - ]], - [[ - 16819, - 2834, - 2830 - ]], - [[ - 2830, - 2826, - 16819 - ]], - [[ - 16819, - 181, - 182 - ]], - [[ - 182, - 2834, - 16819 - ]], - [[ - 180, - 181, - 179 - ]], - [[ - 179, - 181, - 176 - ]], - [[ - 176, - 181, - 16869 - ]], - [[ - 175, - 176, - 16869 - ]], - [[ - 16869, - 181, - 16870 - ]], - [[ - 16870, - 181, - 16826 - ]], - [[ - 16826, - 181, - 16825 - ]], - [[ - 16825, - 181, - 16824 - ]], - [[ - 16824, - 181, - 16823 - ]], - [[ - 16823, - 181, - 16822 - ]], - [[ - 16822, - 181, - 16821 - ]], - [[ - 16821, - 181, - 16820 - ]], - [[ - 16820, - 181, - 16819 - ]], - [[ - 16819, - 2826, - 16818 - ]], - [[ - 16818, - 11577, - 16817 - ]], - [[ - 16817, - 11577, - 16815 - ]], - [[ - 16815, - 11580, - 16816 - ]], - [[ - 16816, - 11580, - 16814 - ]], - [[ - 16814, - 11581, - 16812 - ]], - [[ - 16812, - 11581, - 16813 - ]], - [[ - 16813, - 11584, - 16811 - ]], - [[ - 16811, - 11584, - 16809 - ]], - [[ - 16809, - 11584, - 16810 - ]], - [[ - 16810, - 11584, - 16808 - ]], - [[ - 16808, - 11585, - 16806 - ]], - [[ - 16806, - 11585, - 16807 - ]], - [[ - 16807, - 11588, - 16805 - ]], - [[ - 16805, - 11588, - 16794 - ]], - [[ - 16794, - 11588, - 16795 - ]], - [[ - 16795, - 11589, - 15263 - ]], - [[ - 15263, - 11589, - 11592 - ]], - [[ - 15263, - 16797, - 16796 - ]], - [[ - 15263, - 16798, - 16797 - ]], - [[ - 15269, - 16799, - 16798 - ]], - [[ - 15289, - 11596, - 11597 - ]], - [[ - 15288, - 15289, - 16793 - ]], - [[ - 16803, - 15288, - 16792 - ]], - [[ - 16801, - 16800, - 15269 - ]], - [[ - 15269, - 16800, - 16799 - ]], - [[ - 16802, - 15288, - 16803 - ]], - [[ - 16802, - 16801, - 15275 - ]], - [[ - 15288, - 16802, - 15278 - ]], - [[ - 15278, - 16802, - 15274 - ]], - [[ - 15274, - 16802, - 15275 - ]], - [[ - 15275, - 16801, - 15273 - ]], - [[ - 15273, - 16801, - 15271 - ]], - [[ - 15271, - 16801, - 15272 - ]], - [[ - 16801, - 15269, - 15272 - ]], - [[ - 16796, - 16795, - 15263 - ]], - [[ - 16798, - 15263, - 15269 - ]], - [[ - 11592, - 11593, - 15263 - ]], - [[ - 11596, - 15287, - 11593 - ]], - [[ - 15285, - 15266, - 11593 - ]], - [[ - 15287, - 15285, - 11593 - ]], - [[ - 15283, - 15287, - 11596 - ]], - [[ - 15282, - 15283, - 11596 - ]], - [[ - 15289, - 15282, - 11596 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f68f153-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee28049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 12832, - 7096, - 7099 - ]], - [[ - 6655, - 6678, - 6679 - ]], - [[ - 16871, - 16317, - 6755 - ]], - [[ - 16872, - 15991, - 15993 - ]], - [[ - 6749, - 6663, - 6760 - ]], - [[ - 6758, - 6759, - 6756 - ]], - [[ - 16872, - 15976, - 15979 - ]], - [[ - 6757, - 6758, - 6756 - ]], - [[ - 6754, - 6755, - 16317 - ]], - [[ - 16872, - 16017, - 16015 - ]], - [[ - 7223, - 7224, - 7221 - ]], - [[ - 7222, - 7223, - 7221 - ]], - [[ - 6754, - 16317, - 7226 - ]], - [[ - 7226, - 16317, - 7224 - ]], - [[ - 7147, - 7148, - 7146 - ]], - [[ - 7146, - 7148, - 7145 - ]], - [[ - 16317, - 7138, - 7221 - ]], - [[ - 7143, - 7144, - 7141 - ]], - [[ - 7142, - 7143, - 7141 - ]], - [[ - 7148, - 7138, - 16317 - ]], - [[ - 7101, - 7103, - 7100 - ]], - [[ - 16320, - 12842, - 7100 - ]], - [[ - 7098, - 7099, - 7096 - ]], - [[ - 7097, - 7098, - 7096 - ]], - [[ - 12842, - 7099, - 7100 - ]], - [[ - 12832, - 7094, - 7096 - ]], - [[ - 7095, - 7096, - 7094 - ]], - [[ - 16873, - 7093, - 7094 - ]], - [[ - 7092, - 7093, - 7091 - ]], - [[ - 7091, - 7093, - 7090 - ]], - [[ - 7090, - 7093, - 16873 - ]], - [[ - 7089, - 7090, - 16873 - ]], - [[ - 16873, - 7094, - 16874 - ]], - [[ - 15909, - 16873, - 16875 - ]], - [[ - 16875, - 16873, - 16874 - ]], - [[ - 16874, - 7094, - 16876 - ]], - [[ - 16876, - 7094, - 16877 - ]], - [[ - 16877, - 7094, - 16878 - ]], - [[ - 16878, - 7094, - 16879 - ]], - [[ - 16879, - 7094, - 16880 - ]], - [[ - 16880, - 7094, - 16881 - ]], - [[ - 16881, - 7094, - 16882 - ]], - [[ - 16882, - 7094, - 16883 - ]], - [[ - 16883, - 7094, - 16884 - ]], - [[ - 16884, - 7094, - 16885 - ]], - [[ - 16885, - 7094, - 16886 - ]], - [[ - 16886, - 7094, - 16887 - ]], - [[ - 16887, - 7094, - 16888 - ]], - [[ - 16888, - 7094, - 16889 - ]], - [[ - 16889, - 7094, - 12832 - ]], - [[ - 16890, - 16889, - 12832 - ]], - [[ - 505, - 15971, - 6672 - ]], - [[ - 16891, - 16890, - 12832 - ]], - [[ - 12841, - 12842, - 16320 - ]], - [[ - 16342, - 16345, - 12841 - ]], - [[ - 16892, - 16871, - 6756 - ]], - [[ - 16340, - 16342, - 12841 - ]], - [[ - 16340, - 12841, - 16338 - ]], - [[ - 7224, - 16317, - 7221 - ]], - [[ - 16336, - 16338, - 12841 - ]], - [[ - 16336, - 12841, - 16334 - ]], - [[ - 7148, - 16317, - 7145 - ]], - [[ - 16334, - 12841, - 16332 - ]], - [[ - 16354, - 16356, - 16351 - ]], - [[ - 16330, - 16332, - 12841 - ]], - [[ - 16356, - 16358, - 16351 - ]], - [[ - 16328, - 16330, - 12841 - ]], - [[ - 16326, - 16328, - 12841 - ]], - [[ - 16358, - 16322, - 16341 - ]], - [[ - 16323, - 16326, - 12841 - ]], - [[ - 16324, - 16323, - 12841 - ]], - [[ - 16360, - 16322, - 16358 - ]], - [[ - 16346, - 16324, - 12841 - ]], - [[ - 16348, - 16346, - 12841 - ]], - [[ - 16362, - 16322, - 16360 - ]], - [[ - 16350, - 16348, - 12841 - ]], - [[ - 16352, - 16350, - 12841 - ]], - [[ - 16364, - 16322, - 16362 - ]], - [[ - 16353, - 16352, - 12841 - ]], - [[ - 16355, - 16353, - 12841 - ]], - [[ - 16322, - 16318, - 16344 - ]], - [[ - 16357, - 16355, - 12841 - ]], - [[ - 16359, - 16357, - 12841 - ]], - [[ - 16318, - 16317, - 16344 - ]], - [[ - 16361, - 16359, - 12841 - ]], - [[ - 16363, - 16361, - 12841 - ]], - [[ - 16321, - 16363, - 12841 - ]], - [[ - 7103, - 16320, - 7100 - ]], - [[ - 16319, - 16321, - 12841 - ]], - [[ - 16872, - 15995, - 15997 - ]], - [[ - 16317, - 7144, - 7145 - ]], - [[ - 16317, - 16320, - 7144 - ]], - [[ - 7144, - 16320, - 7141 - ]], - [[ - 7141, - 16320, - 7103 - ]], - [[ - 16351, - 16358, - 16349 - ]], - [[ - 16349, - 16358, - 16341 - ]], - [[ - 16347, - 16349, - 16341 - ]], - [[ - 16325, - 16347, - 16327 - ]], - [[ - 16327, - 16347, - 16329 - ]], - [[ - 16329, - 16347, - 16335 - ]], - [[ - 16331, - 16329, - 16335 - ]], - [[ - 16333, - 16331, - 16335 - ]], - [[ - 16335, - 16347, - 16341 - ]], - [[ - 16337, - 16335, - 16339 - ]], - [[ - 16339, - 16335, - 16341 - ]], - [[ - 16341, - 16322, - 16344 - ]], - [[ - 16343, - 16341, - 16344 - ]], - [[ - 15974, - 16892, - 6756 - ]], - [[ - 15997, - 16000, - 16872 - ]], - [[ - 15995, - 16872, - 15993 - ]], - [[ - 15971, - 6679, - 6672 - ]], - [[ - 16872, - 15989, - 15991 - ]], - [[ - 6655, - 6679, - 15971 - ]], - [[ - 16008, - 16010, - 16006 - ]], - [[ - 15989, - 16872, - 15987 - ]], - [[ - 16010, - 16012, - 16004 - ]], - [[ - 15987, - 16872, - 15985 - ]], - [[ - 15985, - 16872, - 15983 - ]], - [[ - 16012, - 16018, - 15996 - ]], - [[ - 15983, - 16872, - 15981 - ]], - [[ - 15981, - 16872, - 15979 - ]], - [[ - 16014, - 16018, - 16012 - ]], - [[ - 16872, - 15977, - 15976 - ]], - [[ - 16872, - 16001, - 15977 - ]], - [[ - 16016, - 16018, - 16014 - ]], - [[ - 16872, - 16003, - 16001 - ]], - [[ - 16872, - 16005, - 16003 - ]], - [[ - 16018, - 15972, - 15999 - ]], - [[ - 16872, - 16007, - 16005 - ]], - [[ - 16872, - 16009, - 16007 - ]], - [[ - 16020, - 15975, - 16018 - ]], - [[ - 16872, - 16011, - 16009 - ]], - [[ - 16872, - 16013, - 16011 - ]], - [[ - 16872, - 16015, - 16013 - ]], - [[ - 16018, - 15975, - 15972 - ]], - [[ - 16872, - 16019, - 16017 - ]], - [[ - 16872, - 16892, - 15973 - ]], - [[ - 16774, - 15972, - 15971 - ]], - [[ - 6759, - 15974, - 6756 - ]], - [[ - 6759, - 6760, - 15974 - ]], - [[ - 8391, - 8392, - 16893 - ]], - [[ - 15971, - 15974, - 6655 - ]], - [[ - 6655, - 15974, - 6663 - ]], - [[ - 6663, - 15974, - 6760 - ]], - [[ - 16006, - 16010, - 16004 - ]], - [[ - 16004, - 16012, - 15996 - ]], - [[ - 16002, - 16004, - 15980 - ]], - [[ - 15978, - 16002, - 15980 - ]], - [[ - 15980, - 16004, - 15984 - ]], - [[ - 15982, - 15980, - 15984 - ]], - [[ - 15984, - 16004, - 15996 - ]], - [[ - 15986, - 15984, - 15990 - ]], - [[ - 15988, - 15986, - 15990 - ]], - [[ - 15990, - 15984, - 15996 - ]], - [[ - 15992, - 15990, - 15994 - ]], - [[ - 15994, - 15990, - 15996 - ]], - [[ - 15996, - 16018, - 15999 - ]], - [[ - 15998, - 15996, - 15999 - ]], - [[ - 16894, - 16893, - 15881 - ]], - [[ - 16773, - 15999, - 15972 - ]], - [[ - 16895, - 16896, - 16897 - ]], - [[ - 16897, - 16896, - 16898 - ]], - [[ - 16898, - 16896, - 16899 - ]], - [[ - 16900, - 16898, - 16899 - ]], - [[ - 16901, - 16900, - 16899 - ]], - [[ - 16899, - 16896, - 16902 - ]], - [[ - 16903, - 16899, - 16904 - ]], - [[ - 16904, - 16899, - 16905 - ]], - [[ - 16905, - 16899, - 16902 - ]], - [[ - 16906, - 16905, - 16907 - ]], - [[ - 16907, - 16905, - 16908 - ]], - [[ - 16909, - 16907, - 16908 - ]], - [[ - 16908, - 16905, - 16902 - ]], - [[ - 16910, - 16908, - 16911 - ]], - [[ - 16911, - 16908, - 16912 - ]], - [[ - 16912, - 16908, - 16902 - ]], - [[ - 16913, - 16912, - 16902 - ]], - [[ - 16914, - 16913, - 16902 - ]], - [[ - 16902, - 16896, - 16915 - ]], - [[ - 16916, - 16902, - 16917 - ]], - [[ - 16917, - 16902, - 16915 - ]], - [[ - 16918, - 16917, - 16915 - ]], - [[ - 16915, - 16896, - 16772 - ]], - [[ - 8388, - 8391, - 16893 - ]], - [[ - 16894, - 16919, - 16920 - ]], - [[ - 16921, - 16919, - 16894 - ]], - [[ - 16922, - 16921, - 16923 - ]], - [[ - 16923, - 16921, - 16924 - ]], - [[ - 16925, - 16923, - 16926 - ]], - [[ - 16927, - 16925, - 16926 - ]], - [[ - 16926, - 16923, - 16924 - ]], - [[ - 16928, - 16926, - 16929 - ]], - [[ - 16929, - 16926, - 16930 - ]], - [[ - 16931, - 16929, - 16930 - ]], - [[ - 16930, - 16926, - 16924 - ]], - [[ - 16932, - 16930, - 16933 - ]], - [[ - 16933, - 16930, - 16924 - ]], - [[ - 16934, - 16933, - 16935 - ]], - [[ - 16935, - 16933, - 16936 - ]], - [[ - 16937, - 16935, - 16936 - ]], - [[ - 16936, - 16933, - 16938 - ]], - [[ - 16939, - 16936, - 16938 - ]], - [[ - 16938, - 16933, - 16924 - ]], - [[ - 16940, - 16938, - 16924 - ]], - [[ - 16924, - 16921, - 16894 - ]], - [[ - 16941, - 16942, - 15858 - ]], - [[ - 16943, - 15858, - 16942 - ]], - [[ - 15880, - 15881, - 15878 - ]], - [[ - 15879, - 15880, - 15878 - ]], - [[ - 15878, - 15881, - 15876 - ]], - [[ - 15877, - 15878, - 15876 - ]], - [[ - 15876, - 15881, - 15874 - ]], - [[ - 15875, - 15876, - 15874 - ]], - [[ - 15874, - 15881, - 15860 - ]], - [[ - 15873, - 15874, - 15872 - ]], - [[ - 15872, - 15874, - 15871 - ]], - [[ - 15871, - 15874, - 15870 - ]], - [[ - 15870, - 15874, - 15869 - ]], - [[ - 15869, - 15874, - 15860 - ]], - [[ - 15868, - 15869, - 15865 - ]], - [[ - 15867, - 15868, - 15865 - ]], - [[ - 15866, - 15867, - 15865 - ]], - [[ - 15865, - 15869, - 15864 - ]], - [[ - 15864, - 15869, - 15860 - ]], - [[ - 15863, - 15864, - 15860 - ]], - [[ - 15862, - 15863, - 15860 - ]], - [[ - 15861, - 15862, - 15860 - ]], - [[ - 15860, - 15881, - 15857 - ]], - [[ - 15859, - 15860, - 15857 - ]], - [[ - 15881, - 16944, - 15857 - ]], - [[ - 16944, - 15881, - 16893 - ]], - [[ - 8272, - 15855, - 15858 - ]], - [[ - 14714, - 15856, - 15855 - ]], - [[ - 14721, - 15856, - 14714 - ]], - [[ - 14717, - 15855, - 8273 - ]], - [[ - 16945, - 16946, - 14719 - ]], - [[ - 16947, - 16945, - 14717 - ]], - [[ - 16948, - 16947, - 14717 - ]], - [[ - 16949, - 16948, - 8274 - ]], - [[ - 16950, - 16949, - 16951 - ]], - [[ - 16952, - 16950, - 16951 - ]], - [[ - 16953, - 16952, - 16951 - ]], - [[ - 16954, - 16953, - 16951 - ]], - [[ - 16951, - 16949, - 8274 - ]], - [[ - 8275, - 16951, - 8274 - ]], - [[ - 8274, - 14717, - 8273 - ]], - [[ - 8273, - 15855, - 8272 - ]], - [[ - 8272, - 15858, - 16955 - ]], - [[ - 8271, - 8272, - 16955 - ]], - [[ - 16956, - 15858, - 16943 - ]], - [[ - 16957, - 16955, - 16958 - ]], - [[ - 16955, - 16956, - 16958 - ]], - [[ - 16955, - 15858, - 16956 - ]], - [[ - 16959, - 8392, - 8395 - ]], - [[ - 16960, - 16943, - 16961 - ]], - [[ - 16943, - 16942, - 16961 - ]], - [[ - 8387, - 8388, - 16893 - ]], - [[ - 16944, - 15858, - 15857 - ]], - [[ - 16959, - 8396, - 16962 - ]], - [[ - 16959, - 8395, - 8396 - ]], - [[ - 8394, - 8395, - 8393 - ]], - [[ - 8395, - 8392, - 8393 - ]], - [[ - 1389, - 8384, - 16894 - ]], - [[ - 8390, - 8391, - 8389 - ]], - [[ - 8391, - 8388, - 8389 - ]], - [[ - 16893, - 16894, - 8387 - ]], - [[ - 8384, - 8385, - 8386 - ]], - [[ - 8386, - 8387, - 8384 - ]], - [[ - 16894, - 8384, - 8387 - ]], - [[ - 16963, - 16894, - 16964 - ]], - [[ - 16965, - 16963, - 16966 - ]], - [[ - 16894, - 1386, - 1389 - ]], - [[ - 1391, - 1387, - 16967 - ]], - [[ - 1386, - 16965, - 1387 - ]], - [[ - 16968, - 16969, - 16920 - ]], - [[ - 16963, - 16965, - 1386 - ]], - [[ - 16965, - 16967, - 1387 - ]], - [[ - 1386, - 16894, - 16963 - ]], - [[ - 16969, - 16964, - 16894 - ]], - [[ - 16969, - 10652, - 16964 - ]], - [[ - 16920, - 16969, - 16894 - ]], - [[ - 10647, - 10652, - 16969 - ]], - [[ - 650, - 651, - 16970 - ]], - [[ - 16968, - 650, - 16970 - ]], - [[ - 16920, - 648, - 16968 - ]], - [[ - 648, - 649, - 650 - ]], - [[ - 16920, - 624, - 648 - ]], - [[ - 16968, - 648, - 650 - ]], - [[ - 16920, - 16971, - 630 - ]], - [[ - 16771, - 16915, - 16772 - ]], - [[ - 624, - 16920, - 630 - ]], - [[ - 520, - 16971, - 519 - ]], - [[ - 630, - 520, - 514 - ]], - [[ - 630, - 16971, - 520 - ]], - [[ - 506, - 518, - 519 - ]], - [[ - 15971, - 506, - 16774 - ]], - [[ - 493, - 518, - 506 - ]], - [[ - 505, - 506, - 15971 - ]], - [[ - 16942, - 16941, - 16962 - ]], - [[ - 16893, - 8392, - 16959 - ]], - [[ - 16959, - 16962, - 16941 - ]], - [[ - 16941, - 15858, - 16944 - ]], - [[ - 14717, - 14714, - 15855 - ]], - [[ - 16948, - 14717, - 8274 - ]], - [[ - 16945, - 14719, - 14717 - ]], - [[ - 16946, - 16972, - 14719 - ]], - [[ - 16972, - 14721, - 14719 - ]], - [[ - 16972, - 15856, - 14721 - ]], - [[ - 16973, - 12831, - 16345 - ]], - [[ - 16973, - 16891, - 12832 - ]], - [[ - 12831, - 16973, - 12832 - ]], - [[ - 16319, - 12841, - 16320 - ]], - [[ - 12832, - 7099, - 12842 - ]], - [[ - 12831, - 12841, - 16345 - ]], - [[ - 16344, - 16974, - 16000 - ]], - [[ - 16344, - 16317, - 16871 - ]], - [[ - 6756, - 16871, - 6755 - ]], - [[ - 16974, - 16344, - 16871 - ]], - [[ - 15973, - 16892, - 15974 - ]], - [[ - 15973, - 16019, - 16872 - ]], - [[ - 16974, - 16872, - 16000 - ]], - [[ - 16896, - 15999, - 16773 - ]], - [[ - 16774, - 16773, - 15972 - ]], - [[ - 16772, - 16896, - 16773 - ]], - [[ - 519, - 16774, - 506 - ]], - [[ - 519, - 16771, - 16774 - ]], - [[ - 16971, - 16771, - 519 - ]], - [[ - 16971, - 16915, - 16771 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f6bb041-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad op trap", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef1acf49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "gesloten verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 8131, - 8132, - 8133 - ]], - [[ - 16867, - 8131, - 8133 - ]], - [[ - 15854, - 8130, - 8131 - ]], - [[ - 16867, - 15854, - 8131 - ]], - [[ - 16868, - 15853, - 16867 - ]], - [[ - 15853, - 8125, - 8126 - ]], - [[ - 16867, - 15853, - 15854 - ]], - [[ - 16868, - 8125, - 15853 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f6bb053-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca8549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16781, - 16782, - 16975 - ]], - [[ - 16782, - 16976, - 16975 - ]], - [[ - 16976, - 16782, - 16977 - ]], - [[ - 16977, - 16782, - 16978 - ]], - [[ - 16978, - 16782, - 16979 - ]], - [[ - 16980, - 16978, - 16979 - ]], - [[ - 16981, - 16980, - 16979 - ]], - [[ - 16982, - 16981, - 16979 - ]], - [[ - 16983, - 16982, - 16979 - ]], - [[ - 16984, - 16983, - 16979 - ]], - [[ - 16985, - 16984, - 16979 - ]], - [[ - 16986, - 16985, - 16979 - ]], - [[ - 16987, - 16986, - 16979 - ]], - [[ - 16988, - 16987, - 16989 - ]], - [[ - 16990, - 16988, - 16989 - ]], - [[ - 16991, - 16990, - 16989 - ]], - [[ - 16992, - 16991, - 16989 - ]], - [[ - 16993, - 16992, - 16989 - ]], - [[ - 16993, - 16989, - 16954 - ]], - [[ - 16987, - 16979, - 16989 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f6c25cb-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16994, - 16995, - 14274 - ]], - [[ - 3012, - 15234, - 16995 - ]], - [[ - 14267, - 16994, - 14274 - ]], - [[ - 14267, - 16996, - 16994 - ]], - [[ - 3014, - 15216, - 15234 - ]], - [[ - 16997, - 16998, - 3015 - ]], - [[ - 16996, - 14267, - 3015 - ]], - [[ - 16994, - 16997, - 16995 - ]], - [[ - 16997, - 3013, - 16995 - ]], - [[ - 16997, - 3015, - 3013 - ]], - [[ - 16996, - 3015, - 16998 - ]], - [[ - 14267, - 15216, - 3015 - ]], - [[ - 3012, - 3014, - 15234 - ]], - [[ - 3015, - 15216, - 3014 - ]], - [[ - 3013, - 3012, - 16995 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f6cc165-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef229949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16920, - 16919, - 16971 - ]], - [[ - 16919, - 16915, - 16971 - ]], - [[ - 16919, - 16918, - 16915 - ]], - [[ - 16918, - 16919, - 16917 - ]], - [[ - 16906, - 16907, - 16932 - ]], - [[ - 16905, - 16906, - 16933 - ]], - [[ - 16904, - 16905, - 16934 - ]], - [[ - 16903, - 16904, - 16935 - ]], - [[ - 16899, - 16903, - 16937 - ]], - [[ - 16901, - 16899, - 16936 - ]], - [[ - 16900, - 16901, - 16939 - ]], - [[ - 16898, - 16900, - 16938 - ]], - [[ - 16897, - 16898, - 16940 - ]], - [[ - 16895, - 16897, - 16924 - ]], - [[ - 16895, - 16894, - 16896 - ]], - [[ - 16895, - 16924, - 16894 - ]], - [[ - 16907, - 16909, - 16930 - ]], - [[ - 16897, - 16940, - 16924 - ]], - [[ - 16898, - 16938, - 16940 - ]], - [[ - 16909, - 16908, - 16931 - ]], - [[ - 16900, - 16939, - 16938 - ]], - [[ - 16901, - 16936, - 16939 - ]], - [[ - 16908, - 16910, - 16929 - ]], - [[ - 16899, - 16937, - 16936 - ]], - [[ - 16903, - 16935, - 16937 - ]], - [[ - 16910, - 16911, - 16928 - ]], - [[ - 16904, - 16934, - 16935 - ]], - [[ - 16905, - 16933, - 16934 - ]], - [[ - 16911, - 16912, - 16926 - ]], - [[ - 16906, - 16932, - 16933 - ]], - [[ - 16907, - 16930, - 16932 - ]], - [[ - 16912, - 16913, - 16927 - ]], - [[ - 16909, - 16931, - 16930 - ]], - [[ - 16908, - 16929, - 16931 - ]], - [[ - 16913, - 16914, - 16925 - ]], - [[ - 16910, - 16928, - 16929 - ]], - [[ - 16911, - 16926, - 16928 - ]], - [[ - 16914, - 16902, - 16923 - ]], - [[ - 16912, - 16927, - 16926 - ]], - [[ - 16913, - 16925, - 16927 - ]], - [[ - 16902, - 16916, - 16922 - ]], - [[ - 16914, - 16923, - 16925 - ]], - [[ - 16902, - 16922, - 16923 - ]], - [[ - 16916, - 16917, - 16921 - ]], - [[ - 16916, - 16921, - 16922 - ]], - [[ - 16917, - 16919, - 16921 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f6e9666-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33cb49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 14419, - 14290, - 14439 - ]], - [[ - 14290, - 14300, - 14439 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f6e966f-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16305, - 16308, - 16307 - ]], - [[ - 16305, - 16307, - 16306 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f6fcec4-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eec1fc49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16999, - 17000, - 17001 - ]], - [[ - 16999, - 17002, - 17003 - ]], - [[ - 17004, - 17005, - 17006 - ]], - [[ - 17006, - 17005, - 17007 - ]], - [[ - 17007, - 17008, - 17009 - ]], - [[ - 17001, - 17000, - 17010 - ]], - [[ - 16999, - 17003, - 17000 - ]], - [[ - 17009, - 17011, - 17010 - ]], - [[ - 17012, - 17005, - 17004 - ]], - [[ - 17012, - 17013, - 17005 - ]], - [[ - 17001, - 17010, - 17011 - ]], - [[ - 17011, - 17009, - 17014 - ]], - [[ - 17014, - 17009, - 17015 - ]], - [[ - 17015, - 17009, - 17016 - ]], - [[ - 17016, - 17009, - 17008 - ]], - [[ - 17008, - 17007, - 17017 - ]], - [[ - 17017, - 17007, - 17005 - ]], - [[ - 17005, - 17013, - 17018 - ]], - [[ - 17018, - 17013, - 16783 - ]], - [[ - 16779, - 17018, - 16783 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f70e0dc-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeeec749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16789, - 16788, - 16790 - ]], - [[ - 16789, - 16790, - 16791 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f71cae4-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee4b449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 588, - 17005, - 17018 - ]], - [[ - 7807, - 17017, - 17005 - ]], - [[ - 7807, - 17008, - 17017 - ]], - [[ - 175, - 16869, - 17019 - ]], - [[ - 12405, - 17019, - 17002 - ]], - [[ - 12406, - 16999, - 17001 - ]], - [[ - 17011, - 17014, - 7809 - ]], - [[ - 17019, - 12405, - 7833 - ]], - [[ - 17014, - 17015, - 7809 - ]], - [[ - 17015, - 17016, - 7809 - ]], - [[ - 12394, - 17002, - 16999 - ]], - [[ - 17011, - 1796, - 17001 - ]], - [[ - 174, - 175, - 7833 - ]], - [[ - 174, - 7833, - 1840 - ]], - [[ - 175, - 17019, - 7833 - ]], - [[ - 12394, - 12405, - 17002 - ]], - [[ - 7832, - 7833, - 12405 - ]], - [[ - 12394, - 16999, - 12427 - ]], - [[ - 12427, - 16999, - 12355 - ]], - [[ - 12355, - 16999, - 12324 - ]], - [[ - 12324, - 16999, - 12318 - ]], - [[ - 12318, - 16999, - 12319 - ]], - [[ - 12319, - 16999, - 12323 - ]], - [[ - 12323, - 16999, - 12321 - ]], - [[ - 12321, - 16999, - 12322 - ]], - [[ - 12406, - 12429, - 16999 - ]], - [[ - 12322, - 16999, - 12429 - ]], - [[ - 17016, - 17008, - 7807 - ]], - [[ - 12406, - 17001, - 7823 - ]], - [[ - 7821, - 12406, - 7823 - ]], - [[ - 7823, - 17001, - 1795 - ]], - [[ - 1795, - 17001, - 1796 - ]], - [[ - 7807, - 7809, - 17016 - ]], - [[ - 1796, - 17011, - 7809 - ]], - [[ - 8012, - 7807, - 17005 - ]], - [[ - 8011, - 8012, - 17005 - ]], - [[ - 8006, - 8011, - 17005 - ]], - [[ - 3029, - 8006, - 17005 - ]], - [[ - 8207, - 3029, - 17005 - ]], - [[ - 8207, - 3030, - 3029 - ]], - [[ - 3016, - 8207, - 17005 - ]], - [[ - 8208, - 3030, - 8207 - ]], - [[ - 3017, - 3016, - 17005 - ]], - [[ - 3017, - 17005, - 8036 - ]], - [[ - 8035, - 8036, - 17005 - ]], - [[ - 8025, - 3017, - 8036 - ]], - [[ - 8032, - 8035, - 17005 - ]], - [[ - 8034, - 8035, - 8032 - ]], - [[ - 8031, - 8032, - 17005 - ]], - [[ - 8033, - 8034, - 8032 - ]], - [[ - 8028, - 8031, - 17005 - ]], - [[ - 8030, - 8031, - 8028 - ]], - [[ - 603, - 8028, - 17005 - ]], - [[ - 8029, - 8030, - 8028 - ]], - [[ - 611, - 603, - 17005 - ]], - [[ - 611, - 614, - 603 - ]], - [[ - 613, - 614, - 612 - ]], - [[ - 576, - 611, - 17005 - ]], - [[ - 612, - 614, - 611 - ]], - [[ - 586, - 588, - 17018 - ]], - [[ - 576, - 17005, - 588 - ]], - [[ - 587, - 588, - 586 - ]], - [[ - 586, - 17018, - 703 - ]], - [[ - 703, - 17018, - 702 - ]], - [[ - 702, - 17018, - 678 - ]], - [[ - 701, - 702, - 670 - ]], - [[ - 670, - 702, - 683 - ]], - [[ - 8250, - 17018, - 8248 - ]], - [[ - 682, - 683, - 681 - ]], - [[ - 683, - 680, - 681 - ]], - [[ - 683, - 702, - 680 - ]], - [[ - 680, - 678, - 679 - ]], - [[ - 680, - 702, - 678 - ]], - [[ - 678, - 17018, - 677 - ]], - [[ - 677, - 17018, - 8253 - ]], - [[ - 8252, - 8253, - 8251 - ]], - [[ - 8253, - 8250, - 8251 - ]], - [[ - 8253, - 17018, - 8250 - ]], - [[ - 8248, - 17018, - 8281 - ]], - [[ - 8281, - 17018, - 8279 - ]], - [[ - 8280, - 8281, - 8279 - ]], - [[ - 8276, - 17018, - 8275 - ]], - [[ - 8278, - 8279, - 8277 - ]], - [[ - 8279, - 8276, - 8277 - ]], - [[ - 8279, - 17018, - 8276 - ]], - [[ - 16951, - 8275, - 16988 - ]], - [[ - 16954, - 16951, - 16993 - ]], - [[ - 16993, - 16951, - 16992 - ]], - [[ - 16992, - 16951, - 16991 - ]], - [[ - 16991, - 16951, - 16990 - ]], - [[ - 16990, - 16951, - 16988 - ]], - [[ - 16988, - 8275, - 16987 - ]], - [[ - 16987, - 8275, - 16986 - ]], - [[ - 16986, - 8275, - 16985 - ]], - [[ - 16985, - 8275, - 16984 - ]], - [[ - 16984, - 8275, - 16983 - ]], - [[ - 16983, - 8275, - 16982 - ]], - [[ - 16982, - 8275, - 16981 - ]], - [[ - 16981, - 8275, - 16980 - ]], - [[ - 16980, - 8275, - 16978 - ]], - [[ - 16978, - 8275, - 16977 - ]], - [[ - 16977, - 8275, - 16976 - ]], - [[ - 16976, - 8275, - 16975 - ]], - [[ - 16975, - 8275, - 16781 - ]], - [[ - 8275, - 16779, - 16781 - ]], - [[ - 8275, - 17018, - 16779 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f724050-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 7088, - 7089, - 7087 - ]], - [[ - 16873, - 15902, - 7089 - ]], - [[ - 7085, - 7086, - 7087 - ]], - [[ - 7089, - 15921, - 7087 - ]], - [[ - 7087, - 7084, - 7085 - ]], - [[ - 7084, - 7087, - 15921 - ]], - [[ - 7083, - 7080, - 7082 - ]], - [[ - 7082, - 7080, - 7081 - ]], - [[ - 7083, - 7084, - 15915 - ]], - [[ - 7080, - 7083, - 15915 - ]], - [[ - 7079, - 7077, - 7078 - ]], - [[ - 7077, - 7120, - 7073 - ]], - [[ - 7077, - 7079, - 15915 - ]], - [[ - 7077, - 7119, - 7120 - ]], - [[ - 7119, - 7077, - 15915 - ]], - [[ - 7118, - 7114, - 7117 - ]], - [[ - 7118, - 7176, - 7114 - ]], - [[ - 7118, - 7119, - 15916 - ]], - [[ - 7118, - 17020, - 7176 - ]], - [[ - 7175, - 7173, - 7174 - ]], - [[ - 7175, - 7172, - 7173 - ]], - [[ - 7175, - 7176, - 17020 - ]], - [[ - 7175, - 17021, - 7172 - ]], - [[ - 7079, - 7080, - 15915 - ]], - [[ - 7172, - 17021, - 17022 - ]], - [[ - 17022, - 17023, - 17024 - ]], - [[ - 17024, - 17025, - 17026 - ]], - [[ - 17024, - 17027, - 17025 - ]], - [[ - 17025, - 17027, - 17028 - ]], - [[ - 17028, - 17027, - 17029 - ]], - [[ - 17024, - 17023, - 17027 - ]], - [[ - 17027, - 17030, - 17031 - ]], - [[ - 17027, - 17023, - 17030 - ]], - [[ - 17030, - 17032, - 17033 - ]], - [[ - 17030, - 17034, - 17032 - ]], - [[ - 17032, - 17035, - 17036 - ]], - [[ - 17032, - 17037, - 17035 - ]], - [[ - 17032, - 17034, - 17037 - ]], - [[ - 17030, - 17023, - 17034 - ]], - [[ - 17034, - 17038, - 17039 - ]], - [[ - 17034, - 17040, - 17038 - ]], - [[ - 17034, - 17023, - 17040 - ]], - [[ - 17040, - 17023, - 17041 - ]], - [[ - 17022, - 17042, - 17023 - ]], - [[ - 17023, - 17042, - 17043 - ]], - [[ - 17043, - 17042, - 17044 - ]], - [[ - 17022, - 17021, - 17042 - ]], - [[ - 7175, - 17020, - 17021 - ]], - [[ - 17020, - 7118, - 15916 - ]], - [[ - 7119, - 15915, - 15916 - ]], - [[ - 7084, - 15921, - 15915 - ]], - [[ - 7089, - 15920, - 15921 - ]], - [[ - 7089, - 15919, - 15920 - ]], - [[ - 7089, - 15907, - 15919 - ]], - [[ - 15907, - 7089, - 15918 - ]], - [[ - 15918, - 7089, - 15917 - ]], - [[ - 15917, - 7089, - 15914 - ]], - [[ - 15914, - 7089, - 15913 - ]], - [[ - 15913, - 7089, - 15902 - ]], - [[ - 16873, - 15911, - 15902 - ]], - [[ - 16873, - 15912, - 15911 - ]], - [[ - 16873, - 15908, - 15912 - ]], - [[ - 15909, - 15908, - 16873 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f72b4d4-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17045, - 17046, - 17047 - ]], - [[ - 17045, - 17047, - 17048 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f732a64-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17049, - 17050, - 9145 - ]], - [[ - 15325, - 17051, - 15333 - ]], - [[ - 15325, - 16768, - 17051 - ]], - [[ - 17051, - 16768, - 17052 - ]], - [[ - 17052, - 16766, - 17053 - ]], - [[ - 16765, - 17054, - 16766 - ]], - [[ - 17055, - 17056, - 16765 - ]], - [[ - 9148, - 17055, - 16765 - ]], - [[ - 9145, - 17057, - 9146 - ]], - [[ - 9145, - 17058, - 17057 - ]], - [[ - 9145, - 17059, - 17058 - ]], - [[ - 9145, - 17060, - 17059 - ]], - [[ - 9145, - 17061, - 17060 - ]], - [[ - 17049, - 9145, - 17062 - ]], - [[ - 11997, - 17063, - 17064 - ]], - [[ - 11997, - 17065, - 17063 - ]], - [[ - 11997, - 17066, - 17065 - ]], - [[ - 11997, - 17067, - 17066 - ]], - [[ - 11997, - 12020, - 17067 - ]], - [[ - 17053, - 16766, - 17054 - ]], - [[ - 17052, - 16768, - 16766 - ]], - [[ - 9148, - 17068, - 17055 - ]], - [[ - 9145, - 11997, - 17064 - ]], - [[ - 9145, - 17050, - 17061 - ]], - [[ - 16768, - 15325, - 9147 - ]], - [[ - 9147, - 16765, - 16767 - ]], - [[ - 17056, - 17054, - 16765 - ]], - [[ - 17057, - 17068, - 9146 - ]], - [[ - 9147, - 9148, - 16765 - ]], - [[ - 9146, - 17068, - 9148 - ]], - [[ - 16768, - 9147, - 16767 - ]], - [[ - 15325, - 11997, - 9145 - ]], - [[ - 17062, - 9145, - 17064 - ]], - [[ - 9147, - 15325, - 9145 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "b9f76379f-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef0ad049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17069, - 16177, - 16430 - ]], - [[ - 16430, - 16428, - 16425 - ]], - [[ - 16430, - 16177, - 16428 - ]], - [[ - 16428, - 16177, - 262 - ]], - [[ - 17069, - 17070, - 16177 - ]], - [[ - 16177, - 17070, - 16670 - ]], - [[ - 17071, - 16670, - 17072 - ]], - [[ - 17073, - 17071, - 17072 - ]], - [[ - 17073, - 17072, - 17074 - ]], - [[ - 16670, - 17070, - 17072 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "ba2bf3d0a-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "kademuur", - "bronhouder": "W0372", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f09a6549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17075, - 17076, - 17077 - ]], - [[ - 17075, - 17077, - 17078 - ]], - [[ - 17079, - 17080, - 17075 - ]], - [[ - 17075, - 17080, - 17076 - ]], - [[ - 17081, - 17082, - 17077 - ]], - [[ - 17077, - 17082, - 17078 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2c139a9-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0948949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 7823, - 1795, - 1801 - ]], - [[ - 7823, - 1802, - 7822 - ]], - [[ - 1801, - 1794, - 1802 - ]], - [[ - 7823, - 1801, - 1802 - ]], - [[ - 1795, - 1797, - 1801 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2c139ab-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 7169, - 7170, - 17083 - ]], - [[ - 17083, - 7199, - 7167 - ]], - [[ - 7167, - 7199, - 7200 - ]], - [[ - 7169, - 17083, - 7167 - ]], - [[ - 15943, - 7199, - 17083 - ]], - [[ - 7170, - 15943, - 17083 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2c1d52d-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0876949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 266, - 279, - 265 - ]], - [[ - 279, - 280, - 265 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2c22373-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10539, - 17084, - 1403 - ]], - [[ - 17085, - 1377, - 17084 - ]], - [[ - 1381, - 10539, - 1403 - ]], - [[ - 1376, - 1377, - 17085 - ]], - [[ - 10002, - 1376, - 17085 - ]], - [[ - 10539, - 1381, - 10009 - ]], - [[ - 10539, - 17085, - 17084 - ]], - [[ - 10009, - 1381, - 10044 - ]], - [[ - 10033, - 10009, - 10044 - ]], - [[ - 1381, - 17086, - 10044 - ]], - [[ - 1381, - 1391, - 17086 - ]], - [[ - 1323, - 1403, - 17084 - ]], - [[ - 1377, - 1323, - 17084 - ]], - [[ - 10349, - 10002, - 17085 - ]], - [[ - 10539, - 10349, - 17085 - ]], - [[ - 1391, - 16967, - 17086 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2c2bff4-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0948a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17087, - 1525, - 1369 - ]], - [[ - 17088, - 17087, - 1369 - ]], - [[ - 17089, - 11609, - 17088 - ]], - [[ - 11608, - 17090, - 17087 - ]], - [[ - 11609, - 11608, - 17087 - ]], - [[ - 17088, - 11609, - 17087 - ]], - [[ - 17089, - 11607, - 11609 - ]], - [[ - 13350, - 11610, - 17089 - ]], - [[ - 17089, - 11610, - 11607 - ]], - [[ - 13352, - 13350, - 17088 - ]], - [[ - 17088, - 13350, - 17089 - ]], - [[ - 1369, - 13352, - 17088 - ]], - [[ - 1535, - 1525, - 17087 - ]], - [[ - 1364, - 1535, - 17090 - ]], - [[ - 17090, - 1535, - 17087 - ]], - [[ - 1688, - 1364, - 11608 - ]], - [[ - 11608, - 1364, - 17090 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2c46d5d-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "kademuur", - "bronhouder": "W0372", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f097f149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17091, - 17092, - 17093 - ]], - [[ - 17094, - 17095, - 17093 - ]], - [[ - 17096, - 17097, - 17091 - ]], - [[ - 17091, - 17098, - 17096 - ]], - [[ - 17091, - 17099, - 17098 - ]], - [[ - 17091, - 17097, - 17092 - ]], - [[ - 17099, - 17091, - 17100 - ]], - [[ - 17101, - 17091, - 17102 - ]], - [[ - 17102, - 17091, - 17103 - ]], - [[ - 17093, - 17092, - 17094 - ]], - [[ - 17100, - 17091, - 17104 - ]], - [[ - 17091, - 17101, - 17104 - ]], - [[ - 17105, - 17106, - 17091 - ]], - [[ - 17107, - 17108, - 17109 - ]], - [[ - 17108, - 17107, - 17105 - ]], - [[ - 17110, - 17109, - 17108 - ]], - [[ - 17111, - 17112, - 17110 - ]], - [[ - 17113, - 17112, - 17111 - ]], - [[ - 17111, - 17114, - 17113 - ]], - [[ - 17115, - 17114, - 17111 - ]], - [[ - 17116, - 17115, - 17111 - ]], - [[ - 17117, - 17116, - 17118 - ]], - [[ - 17118, - 17119, - 17117 - ]], - [[ - 17120, - 17121, - 17118 - ]], - [[ - 17120, - 17118, - 17122 - ]], - [[ - 17122, - 17118, - 17123 - ]], - [[ - 17123, - 17124, - 17125 - ]], - [[ - 17125, - 17124, - 17126 - ]], - [[ - 17126, - 17124, - 17127 - ]], - [[ - 17127, - 17128, - 17129 - ]], - [[ - 17129, - 17128, - 17130 - ]], - [[ - 17130, - 17128, - 17131 - ]], - [[ - 17131, - 17128, - 17132 - ]], - [[ - 17132, - 17128, - 17133 - ]], - [[ - 17128, - 17134, - 17135 - ]], - [[ - 17136, - 17128, - 17137 - ]], - [[ - 17137, - 17128, - 17138 - ]], - [[ - 17138, - 17128, - 17139 - ]], - [[ - 17139, - 17128, - 17135 - ]], - [[ - 17140, - 17134, - 17141 - ]], - [[ - 17142, - 17135, - 17134 - ]], - [[ - 17134, - 17143, - 17142 - ]], - [[ - 17144, - 17134, - 17140 - ]], - [[ - 17140, - 17145, - 17146 - ]], - [[ - 17140, - 17141, - 17145 - ]], - [[ - 17145, - 17141, - 17147 - ]], - [[ - 17144, - 17143, - 17134 - ]], - [[ - 17133, - 17128, - 17136 - ]], - [[ - 17118, - 17116, - 17111 - ]], - [[ - 17127, - 17124, - 17128 - ]], - [[ - 17121, - 17119, - 17118 - ]], - [[ - 17124, - 17123, - 17118 - ]], - [[ - 17106, - 17103, - 17091 - ]], - [[ - 17111, - 17110, - 17108 - ]], - [[ - 17108, - 17105, - 17091 - ]], - [[ - 17148, - 17149, - 17150 - ]], - [[ - 17093, - 17151, - 17152 - ]], - [[ - 17152, - 17153, - 17154 - ]], - [[ - 17155, - 17156, - 17157 - ]], - [[ - 17157, - 17156, - 17158 - ]], - [[ - 17157, - 17158, - 17159 - ]], - [[ - 17156, - 17150, - 17149 - ]], - [[ - 17156, - 17149, - 17158 - ]], - [[ - 17150, - 17154, - 17148 - ]], - [[ - 17153, - 17148, - 17154 - ]], - [[ - 17160, - 17153, - 17152 - ]], - [[ - 17161, - 17160, - 17152 - ]], - [[ - 17151, - 17161, - 17152 - ]], - [[ - 17162, - 17151, - 17093 - ]], - [[ - 17163, - 17164, - 17093 - ]], - [[ - 17093, - 17164, - 17162 - ]], - [[ - 17165, - 17163, - 17093 - ]], - [[ - 17166, - 17165, - 17093 - ]], - [[ - 17167, - 17166, - 17093 - ]], - [[ - 17168, - 17167, - 17093 - ]], - [[ - 17095, - 17168, - 17093 - ]], - [[ - 1038, - 17169, - 17146 - ]], - [[ - 17146, - 17169, - 17140 - ]], - [[ - 1053, - 1038, - 17145 - ]], - [[ - 17145, - 1038, - 17146 - ]], - [[ - 1054, - 1053, - 17147 - ]], - [[ - 17147, - 1053, - 17145 - ]], - [[ - 17170, - 1054, - 17141 - ]], - [[ - 17141, - 1054, - 17147 - ]], - [[ - 17171, - 17170, - 17134 - ]], - [[ - 17134, - 17170, - 17141 - ]], - [[ - 17172, - 17171, - 17128 - ]], - [[ - 17128, - 17171, - 17134 - ]], - [[ - 17173, - 17172, - 17124 - ]], - [[ - 17124, - 17172, - 17128 - ]], - [[ - 17174, - 17173, - 17118 - ]], - [[ - 17118, - 17173, - 17124 - ]], - [[ - 17175, - 17174, - 17111 - ]], - [[ - 17111, - 17174, - 17118 - ]], - [[ - 17176, - 17175, - 17108 - ]], - [[ - 17108, - 17175, - 17111 - ]], - [[ - 17177, - 17176, - 17091 - ]], - [[ - 17091, - 17176, - 17108 - ]], - [[ - 17178, - 17177, - 17093 - ]], - [[ - 17093, - 17177, - 17091 - ]], - [[ - 17179, - 17178, - 17152 - ]], - [[ - 17152, - 17178, - 17093 - ]], - [[ - 17180, - 17179, - 17154 - ]], - [[ - 17154, - 17179, - 17152 - ]], - [[ - 17181, - 17180, - 17150 - ]], - [[ - 17150, - 17180, - 17154 - ]], - [[ - 17182, - 17181, - 17156 - ]], - [[ - 17156, - 17181, - 17150 - ]], - [[ - 17183, - 17182, - 17155 - ]], - [[ - 17155, - 17182, - 17156 - ]], - [[ - 17184, - 17183, - 17157 - ]], - [[ - 17157, - 17183, - 17155 - ]], - [[ - 17185, - 17184, - 17159 - ]], - [[ - 17159, - 17184, - 17157 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2c5a65f-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0885049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17186, - 17187, - 17188 - ]], - [[ - 17189, - 8656, - 8664 - ]], - [[ - 17190, - 17189, - 8664 - ]], - [[ - 17188, - 17189, - 17190 - ]], - [[ - 17191, - 17192, - 17186 - ]], - [[ - 17193, - 17191, - 17194 - ]], - [[ - 17187, - 17189, - 17188 - ]], - [[ - 17187, - 17195, - 17196 - ]], - [[ - 17187, - 17197, - 17195 - ]], - [[ - 17187, - 17186, - 17197 - ]], - [[ - 17198, - 8484, - 17199 - ]], - [[ - 17192, - 17197, - 17186 - ]], - [[ - 17192, - 17200, - 17201 - ]], - [[ - 17192, - 17193, - 17200 - ]], - [[ - 17192, - 17191, - 17193 - ]], - [[ - 17191, - 8484, - 17198 - ]], - [[ - 17194, - 17191, - 17202 - ]], - [[ - 17202, - 17198, - 17203 - ]], - [[ - 17203, - 17198, - 17204 - ]], - [[ - 17202, - 17191, - 17198 - ]], - [[ - 8817, - 8484, - 17191 - ]], - [[ - 8818, - 8817, - 17186 - ]], - [[ - 17186, - 8817, - 17191 - ]], - [[ - 8660, - 8818, - 17188 - ]], - [[ - 17188, - 8818, - 17186 - ]], - [[ - 8661, - 8660, - 17190 - ]], - [[ - 17190, - 8660, - 17188 - ]], - [[ - 8664, - 8661, - 17190 - ]], - [[ - 8659, - 8656, - 17189 - ]], - [[ - 8657, - 8659, - 17187 - ]], - [[ - 17187, - 8659, - 17189 - ]], - [[ - 8655, - 8657, - 17196 - ]], - [[ - 17196, - 8657, - 17187 - ]], - [[ - 8654, - 8655, - 17195 - ]], - [[ - 17195, - 8655, - 17196 - ]], - [[ - 8652, - 8654, - 17197 - ]], - [[ - 17197, - 8654, - 17195 - ]], - [[ - 8653, - 8652, - 17192 - ]], - [[ - 17192, - 8652, - 17197 - ]], - [[ - 8651, - 8653, - 17201 - ]], - [[ - 17201, - 8653, - 17192 - ]], - [[ - 8649, - 8651, - 17200 - ]], - [[ - 17200, - 8651, - 17201 - ]], - [[ - 8650, - 8649, - 17193 - ]], - [[ - 17193, - 8649, - 17200 - ]], - [[ - 8647, - 8650, - 17194 - ]], - [[ - 17194, - 8650, - 17193 - ]], - [[ - 8648, - 8647, - 17202 - ]], - [[ - 17202, - 8647, - 17194 - ]], - [[ - 8646, - 8648, - 17203 - ]], - [[ - 17203, - 8648, - 17202 - ]], - [[ - 8644, - 8646, - 17204 - ]], - [[ - 17204, - 8646, - 17203 - ]], - [[ - 8645, - 8644, - 17198 - ]], - [[ - 17198, - 8644, - 17204 - ]], - [[ - 8642, - 8645, - 17199 - ]], - [[ - 17199, - 8645, - 17198 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2c8da19-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f08dcc49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17205, - 10652, - 17206 - ]], - [[ - 17205, - 17206, - 17207 - ]], - [[ - 17208, - 10652, - 10645 - ]], - [[ - 17209, - 17086, - 17210 - ]], - [[ - 17211, - 10044, - 17086 - ]], - [[ - 17209, - 17212, - 17211 - ]], - [[ - 17209, - 17213, - 17212 - ]], - [[ - 17214, - 17209, - 17210 - ]], - [[ - 17211, - 17086, - 17209 - ]], - [[ - 17215, - 17216, - 17214 - ]], - [[ - 17217, - 17215, - 17214 - ]], - [[ - 17210, - 17217, - 17214 - ]], - [[ - 17210, - 10641, - 17217 - ]], - [[ - 17206, - 10641, - 17210 - ]], - [[ - 17206, - 17218, - 10641 - ]], - [[ - 17206, - 10652, - 17218 - ]], - [[ - 17218, - 10652, - 17208 - ]], - [[ - 16964, - 10652, - 17205 - ]], - [[ - 16963, - 16964, - 17207 - ]], - [[ - 17207, - 16964, - 17205 - ]], - [[ - 16966, - 16963, - 17206 - ]], - [[ - 17206, - 16963, - 17207 - ]], - [[ - 16965, - 16966, - 17210 - ]], - [[ - 17210, - 16966, - 17206 - ]], - [[ - 16967, - 16965, - 17086 - ]], - [[ - 17086, - 16965, - 17210 - ]], - [[ - 10048, - 10044, - 17211 - ]], - [[ - 10043, - 10048, - 17212 - ]], - [[ - 17212, - 10048, - 17211 - ]], - [[ - 9992, - 10043, - 17213 - ]], - [[ - 17213, - 10043, - 17212 - ]], - [[ - 10046, - 9992, - 17209 - ]], - [[ - 17209, - 9992, - 17213 - ]], - [[ - 10045, - 10046, - 17214 - ]], - [[ - 17214, - 10046, - 17209 - ]], - [[ - 9993, - 10045, - 17216 - ]], - [[ - 17216, - 10045, - 17214 - ]], - [[ - 10042, - 9993, - 17215 - ]], - [[ - 17215, - 9993, - 17216 - ]], - [[ - 10644, - 10042, - 17217 - ]], - [[ - 17217, - 10042, - 17215 - ]], - [[ - 10641, - 10644, - 17217 - ]], - [[ - 10642, - 10641, - 17218 - ]], - [[ - 10643, - 10642, - 17208 - ]], - [[ - 17208, - 10642, - 17218 - ]], - [[ - 10645, - 10643, - 17208 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2c92854-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "kademuur", - "bronhouder": "W0372", - "creationdate": "2015-04-22", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.7fa0197b61b6438794ab14242e673e48", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17219, - 17075, - 17220 - ]], - [[ - 17219, - 17221, - 17222 - ]], - [[ - 17222, - 17223, - 17224 - ]], - [[ - 17225, - 37, - 39 - ]], - [[ - 17225, - 38, - 37 - ]], - [[ - 17225, - 17226, - 38 - ]], - [[ - 17225, - 17227, - 17228 - ]], - [[ - 17225, - 17228, - 17226 - ]], - [[ - 17227, - 17224, - 17228 - ]], - [[ - 17224, - 17223, - 17228 - ]], - [[ - 17222, - 17221, - 17223 - ]], - [[ - 17219, - 17220, - 17221 - ]], - [[ - 17220, - 17075, - 17078 - ]], - [[ - 17229, - 17220, - 17078 - ]], - [[ - 17230, - 17229, - 17078 - ]], - [[ - 17231, - 17230, - 17078 - ]], - [[ - 17231, - 17078, - 17232 - ]], - [[ - 17233, - 17234, - 17235 - ]], - [[ - 17235, - 17234, - 17236 - ]], - [[ - 17237, - 17236, - 17234 - ]], - [[ - 17238, - 17239, - 17234 - ]], - [[ - 17240, - 17238, - 17234 - ]], - [[ - 17241, - 17240, - 17234 - ]], - [[ - 17242, - 17241, - 17243 - ]], - [[ - 17244, - 17242, - 17243 - ]], - [[ - 17245, - 17244, - 17243 - ]], - [[ - 17246, - 17247, - 17248 - ]], - [[ - 17249, - 17248, - 17250 - ]], - [[ - 17249, - 17246, - 17248 - ]], - [[ - 17251, - 17245, - 17243 - ]], - [[ - 17251, - 17246, - 17249 - ]], - [[ - 17251, - 17243, - 17246 - ]], - [[ - 17241, - 17234, - 17243 - ]], - [[ - 17239, - 17237, - 17234 - ]], - [[ - 17232, - 17078, - 17252 - ]], - [[ - 17078, - 17253, - 17252 - ]], - [[ - 17078, - 17234, - 17253 - ]], - [[ - 17253, - 17234, - 17233 - ]], - [[ - 17254, - 17079, - 17219 - ]], - [[ - 17219, - 17079, - 17075 - ]], - [[ - 17255, - 17254, - 17222 - ]], - [[ - 17222, - 17254, - 17219 - ]], - [[ - 17256, - 17255, - 17224 - ]], - [[ - 17224, - 17255, - 17222 - ]], - [[ - 17257, - 17256, - 17227 - ]], - [[ - 17227, - 17256, - 17224 - ]], - [[ - 17258, - 17257, - 17225 - ]], - [[ - 17225, - 17257, - 17227 - ]], - [[ - 20, - 17258, - 39 - ]], - [[ - 39, - 17258, - 17225 - ]], - [[ - 19, - 20, - 37 - ]], - [[ - 37, - 20, - 39 - ]], - [[ - 18, - 19, - 36 - ]], - [[ - 36, - 19, - 38 - ]], - [[ - 38, - 19, - 37 - ]], - [[ - 16273, - 36, - 17226 - ]], - [[ - 17226, - 36, - 38 - ]], - [[ - 16271, - 16273, - 17228 - ]], - [[ - 17228, - 16273, - 17226 - ]], - [[ - 14711, - 16271, - 14644 - ]], - [[ - 14644, - 16271, - 17223 - ]], - [[ - 17223, - 16271, - 17228 - ]], - [[ - 14630, - 14644, - 17221 - ]], - [[ - 17221, - 14644, - 17223 - ]], - [[ - 16292, - 14712, - 17220 - ]], - [[ - 17220, - 14712, - 14630 - ]], - [[ - 17220, - 14630, - 17221 - ]], - [[ - 11914, - 16292, - 17229 - ]], - [[ - 17229, - 16292, - 17220 - ]], - [[ - 11927, - 11914, - 17230 - ]], - [[ - 17230, - 11914, - 17229 - ]], - [[ - 13905, - 11957, - 13896 - ]], - [[ - 13896, - 11957, - 17231 - ]], - [[ - 17231, - 11957, - 11927 - ]], - [[ - 17231, - 11927, - 17230 - ]], - [[ - 13829, - 13896, - 17232 - ]], - [[ - 17232, - 13896, - 17231 - ]], - [[ - 13826, - 13829, - 13797 - ]], - [[ - 13797, - 13829, - 17252 - ]], - [[ - 17252, - 13829, - 17232 - ]], - [[ - 13764, - 13797, - 17253 - ]], - [[ - 17253, - 13797, - 17252 - ]], - [[ - 12022, - 13764, - 17233 - ]], - [[ - 17233, - 13764, - 17253 - ]], - [[ - 12023, - 12022, - 17235 - ]], - [[ - 17235, - 12022, - 17233 - ]], - [[ - 14925, - 12023, - 17236 - ]], - [[ - 17236, - 12023, - 17235 - ]], - [[ - 14974, - 14925, - 17237 - ]], - [[ - 17237, - 14925, - 17236 - ]], - [[ - 11829, - 14974, - 17239 - ]], - [[ - 17239, - 14974, - 17237 - ]], - [[ - 11830, - 11829, - 17238 - ]], - [[ - 17238, - 11829, - 17239 - ]], - [[ - 14561, - 11830, - 17240 - ]], - [[ - 17240, - 11830, - 17238 - ]], - [[ - 14554, - 14561, - 17241 - ]], - [[ - 17241, - 14561, - 17240 - ]], - [[ - 12528, - 14554, - 17242 - ]], - [[ - 17242, - 14554, - 17241 - ]], - [[ - 12521, - 12528, - 17244 - ]], - [[ - 17244, - 12528, - 17242 - ]], - [[ - 16288, - 12521, - 17245 - ]], - [[ - 17245, - 12521, - 17244 - ]], - [[ - 17259, - 16288, - 17251 - ]], - [[ - 17251, - 16288, - 17245 - ]], - [[ - 17260, - 17259, - 17249 - ]], - [[ - 17249, - 17259, - 17251 - ]], - [[ - 17261, - 17260, - 17250 - ]], - [[ - 17250, - 17260, - 17249 - ]], - [[ - 17262, - 17263, - 17246 - ]], - [[ - 17246, - 17263, - 17247 - ]], - [[ - 17264, - 17262, - 17243 - ]], - [[ - 17243, - 17262, - 17246 - ]], - [[ - 17265, - 17264, - 17234 - ]], - [[ - 17234, - 17264, - 17243 - ]], - [[ - 17082, - 17265, - 17078 - ]], - [[ - 17078, - 17265, - 17234 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2ca6162-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17266, - 17267, - 17268 - ]], - [[ - 17266, - 17269, - 17267 - ]], - [[ - 17270, - 17271, - 17272 - ]], - [[ - 17270, - 17273, - 17271 - ]], - [[ - 2766, - 17269, - 17266 - ]], - [[ - 2781, - 17274, - 2778 - ]], - [[ - 17274, - 17275, - 17276 - ]], - [[ - 17274, - 17277, - 17275 - ]], - [[ - 2778, - 17273, - 2775 - ]], - [[ - 17277, - 17274, - 2781 - ]], - [[ - 8319, - 17277, - 2781 - ]], - [[ - 8319, - 2781, - 2799 - ]], - [[ - 2781, - 2778, - 2779 - ]], - [[ - 2779, - 2778, - 2782 - ]], - [[ - 17274, - 17273, - 2778 - ]], - [[ - 17273, - 17270, - 2771 - ]], - [[ - 2775, - 17273, - 2771 - ]], - [[ - 2775, - 2777, - 2773 - ]], - [[ - 2775, - 2771, - 2777 - ]], - [[ - 17270, - 17269, - 2771 - ]], - [[ - 2769, - 2766, - 17266 - ]], - [[ - 2766, - 2771, - 17269 - ]], - [[ - 2766, - 2769, - 2764 - ]], - [[ - 2764, - 2769, - 2768 - ]], - [[ - 17266, - 8318, - 2769 - ]], - [[ - 2798, - 2769, - 8318 - ]], - [[ - 16078, - 8318, - 17266 - ]], - [[ - 16079, - 16078, - 17268 - ]], - [[ - 17268, - 16078, - 17266 - ]], - [[ - 16077, - 16079, - 17267 - ]], - [[ - 17267, - 16079, - 17268 - ]], - [[ - 16075, - 16077, - 17269 - ]], - [[ - 17269, - 16077, - 17267 - ]], - [[ - 16076, - 16075, - 17270 - ]], - [[ - 17270, - 16075, - 17269 - ]], - [[ - 16074, - 16076, - 17272 - ]], - [[ - 17272, - 16076, - 17270 - ]], - [[ - 16073, - 16074, - 17271 - ]], - [[ - 17271, - 16074, - 17272 - ]], - [[ - 16072, - 16073, - 17273 - ]], - [[ - 17273, - 16073, - 17271 - ]], - [[ - 16070, - 16072, - 17274 - ]], - [[ - 17274, - 16072, - 17273 - ]], - [[ - 16071, - 16070, - 17276 - ]], - [[ - 17276, - 16070, - 17274 - ]], - [[ - 16069, - 16071, - 17275 - ]], - [[ - 17275, - 16071, - 17276 - ]], - [[ - 16068, - 16069, - 17277 - ]], - [[ - 17277, - 16069, - 17275 - ]], - [[ - 8319, - 16068, - 17277 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2cbe7b0-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1112, - 8526, - 1229 - ]], - [[ - 1112, - 1229, - 1110 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2cc0ecf-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 6951, - 6952, - 17278 - ]], - [[ - 17279, - 6951, - 17278 - ]], - [[ - 17280, - 17279, - 17278 - ]], - [[ - 17280, - 17281, - 17279 - ]], - [[ - 6960, - 17282, - 6959 - ]], - [[ - 6954, - 17281, - 6953 - ]], - [[ - 17283, - 17284, - 17285 - ]], - [[ - 17281, - 17280, - 6953 - ]], - [[ - 6960, - 17284, - 17282 - ]], - [[ - 17283, - 17282, - 17284 - ]], - [[ - 17283, - 17279, - 17281 - ]], - [[ - 17282, - 17283, - 17281 - ]], - [[ - 16647, - 6953, - 17280 - ]], - [[ - 16646, - 16647, - 17278 - ]], - [[ - 17278, - 16647, - 17280 - ]], - [[ - 6952, - 16646, - 17278 - ]], - [[ - 16648, - 6951, - 17279 - ]], - [[ - 16312, - 16648, - 17283 - ]], - [[ - 17283, - 16648, - 17279 - ]], - [[ - 16310, - 16312, - 17285 - ]], - [[ - 17285, - 16312, - 17283 - ]], - [[ - 16311, - 16310, - 17284 - ]], - [[ - 17284, - 16310, - 17285 - ]], - [[ - 6960, - 16311, - 17284 - ]], - [[ - 16854, - 6959, - 17282 - ]], - [[ - 16855, - 16854, - 17281 - ]], - [[ - 17281, - 16854, - 17282 - ]], - [[ - 6954, - 16855, - 17281 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2cd20b1-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0885349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17286, - 17287, - 17288 - ]], - [[ - 17287, - 17289, - 17288 - ]], - [[ - 10623, - 9803, - 17286 - ]], - [[ - 17286, - 9803, - 17287 - ]], - [[ - 9808, - 10623, - 17288 - ]], - [[ - 17288, - 10623, - 17286 - ]], - [[ - 9802, - 9808, - 17289 - ]], - [[ - 17289, - 9808, - 17288 - ]], - [[ - 9803, - 9802, - 17287 - ]], - [[ - 17287, - 9802, - 17289 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2cd9515-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2250, - 8714, - 343 - ]], - [[ - 2250, - 343, - 344 - ]], - [[ - 8714, - 367, - 343 - ]], - [[ - 343, - 367, - 368 - ]], - [[ - 8714, - 8717, - 367 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2cef542-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0948c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8219, - 7972, - 1247 - ]], - [[ - 7972, - 1295, - 1247 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2d1b3a6-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17290, - 17291, - 17292 - ]], - [[ - 17293, - 17294, - 17295 - ]], - [[ - 8484, - 17293, - 17199 - ]], - [[ - 17199, - 17293, - 17295 - ]], - [[ - 17295, - 17294, - 17296 - ]], - [[ - 17297, - 17298, - 17299 - ]], - [[ - 8484, - 17300, - 17293 - ]], - [[ - 8484, - 17297, - 17300 - ]], - [[ - 17300, - 17297, - 17299 - ]], - [[ - 8482, - 17297, - 8484 - ]], - [[ - 8482, - 17291, - 17290 - ]], - [[ - 17301, - 17297, - 8482 - ]], - [[ - 17302, - 17301, - 17303 - ]], - [[ - 17301, - 17290, - 17303 - ]], - [[ - 17301, - 8482, - 17290 - ]], - [[ - 17292, - 17291, - 17304 - ]], - [[ - 17305, - 17292, - 17304 - ]], - [[ - 17291, - 17306, - 17304 - ]], - [[ - 8482, - 8826, - 17291 - ]], - [[ - 8643, - 8642, - 17295 - ]], - [[ - 17295, - 8642, - 17199 - ]], - [[ - 8814, - 8643, - 17296 - ]], - [[ - 17296, - 8643, - 17295 - ]], - [[ - 8797, - 8814, - 17294 - ]], - [[ - 17294, - 8814, - 17296 - ]], - [[ - 8798, - 8797, - 17293 - ]], - [[ - 17293, - 8797, - 17294 - ]], - [[ - 8813, - 8798, - 17300 - ]], - [[ - 17300, - 8798, - 17293 - ]], - [[ - 8796, - 8813, - 17299 - ]], - [[ - 17299, - 8813, - 17300 - ]], - [[ - 8801, - 8796, - 17298 - ]], - [[ - 17298, - 8796, - 17299 - ]], - [[ - 8811, - 8801, - 17297 - ]], - [[ - 17297, - 8801, - 17298 - ]], - [[ - 8810, - 8811, - 17301 - ]], - [[ - 17301, - 8811, - 17297 - ]], - [[ - 8800, - 8810, - 17302 - ]], - [[ - 17302, - 8810, - 17301 - ]], - [[ - 8807, - 8800, - 17303 - ]], - [[ - 17303, - 8800, - 17302 - ]], - [[ - 8809, - 8807, - 17290 - ]], - [[ - 17290, - 8807, - 17303 - ]], - [[ - 8808, - 8809, - 17292 - ]], - [[ - 17292, - 8809, - 17290 - ]], - [[ - 8802, - 8808, - 17305 - ]], - [[ - 17305, - 8808, - 17292 - ]], - [[ - 8803, - 8802, - 17304 - ]], - [[ - 17304, - 8802, - 17305 - ]], - [[ - 16620, - 8803, - 17306 - ]], - [[ - 17306, - 8803, - 17304 - ]], - [[ - 8826, - 16620, - 17291 - ]], - [[ - 17291, - 16620, - 17306 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2d44bdf-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0885249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17307, - 17308, - 17309 - ]], - [[ - 17308, - 17310, - 17309 - ]], - [[ - 17308, - 17311, - 17310 - ]], - [[ - 17311, - 7712, - 7713 - ]], - [[ - 17311, - 9809, - 7712 - ]], - [[ - 17311, - 17308, - 9809 - ]], - [[ - 10620, - 9807, - 17307 - ]], - [[ - 17307, - 9807, - 17308 - ]], - [[ - 9152, - 9155, - 17310 - ]], - [[ - 17310, - 9155, - 17309 - ]], - [[ - 9153, - 9152, - 17311 - ]], - [[ - 17311, - 9152, - 17310 - ]], - [[ - 7713, - 9153, - 17311 - ]], - [[ - 9807, - 9809, - 17308 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2d5fa48-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "kademuur", - "bronhouder": "W0372", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f09a4049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17312, - 17313, - 17314 - ]], - [[ - 17313, - 17315, - 17316 - ]], - [[ - 17315, - 17317, - 17318 - ]], - [[ - 17317, - 17319, - 17320 - ]], - [[ - 17319, - 17321, - 17322 - ]], - [[ - 17321, - 17323, - 17324 - ]], - [[ - 17323, - 17325, - 17326 - ]], - [[ - 17327, - 17328, - 17329 - ]], - [[ - 17318, - 17317, - 17320 - ]], - [[ - 17320, - 17319, - 17322 - ]], - [[ - 17330, - 17331, - 17332 - ]], - [[ - 17324, - 17322, - 17321 - ]], - [[ - 17333, - 17332, - 17327 - ]], - [[ - 17327, - 17334, - 17333 - ]], - [[ - 17327, - 17329, - 17334 - ]], - [[ - 17330, - 17335, - 17331 - ]], - [[ - 17327, - 17336, - 17328 - ]], - [[ - 17316, - 17315, - 17318 - ]], - [[ - 17330, - 17332, - 17333 - ]], - [[ - 17337, - 17336, - 17327 - ]], - [[ - 17326, - 17325, - 17335 - ]], - [[ - 17326, - 17324, - 17323 - ]], - [[ - 17325, - 17331, - 17335 - ]], - [[ - 17314, - 17313, - 17316 - ]], - [[ - 17338, - 17312, - 17314 - ]], - [[ - 17339, - 17340, - 17338 - ]], - [[ - 17341, - 17342, - 17339 - ]], - [[ - 17343, - 17344, - 17341 - ]], - [[ - 17345, - 17346, - 17343 - ]], - [[ - 17347, - 17348, - 17345 - ]], - [[ - 17349, - 17350, - 17347 - ]], - [[ - 17338, - 17340, - 17312 - ]], - [[ - 17340, - 17339, - 17342 - ]], - [[ - 17342, - 17341, - 17344 - ]], - [[ - 17344, - 17343, - 17346 - ]], - [[ - 17346, - 17345, - 17348 - ]], - [[ - 17348, - 17347, - 17350 - ]], - [[ - 17350, - 17349, - 17351 - ]], - [[ - 17350, - 17351, - 17352 - ]], - [[ - 17349, - 17353, - 17351 - ]], - [[ - 17349, - 17354, - 17353 - ]], - [[ - 16254, - 16209, - 17349 - ]], - [[ - 17349, - 16209, - 17354 - ]], - [[ - 16242, - 16254, - 17347 - ]], - [[ - 17347, - 16254, - 17349 - ]], - [[ - 16253, - 16242, - 17345 - ]], - [[ - 17345, - 16242, - 17347 - ]], - [[ - 16251, - 16253, - 17343 - ]], - [[ - 17343, - 16253, - 17345 - ]], - [[ - 16252, - 16251, - 17341 - ]], - [[ - 17341, - 16251, - 17343 - ]], - [[ - 16249, - 16252, - 17339 - ]], - [[ - 17339, - 16252, - 17341 - ]], - [[ - 16250, - 16249, - 17338 - ]], - [[ - 17338, - 16249, - 17339 - ]], - [[ - 16248, - 16250, - 17314 - ]], - [[ - 17314, - 16250, - 17338 - ]], - [[ - 16245, - 16248, - 17316 - ]], - [[ - 17316, - 16248, - 17314 - ]], - [[ - 16247, - 16245, - 17318 - ]], - [[ - 17318, - 16245, - 17316 - ]], - [[ - 16246, - 16247, - 17320 - ]], - [[ - 17320, - 16247, - 17318 - ]], - [[ - 16243, - 16246, - 17322 - ]], - [[ - 17322, - 16246, - 17320 - ]], - [[ - 16244, - 16243, - 17324 - ]], - [[ - 17324, - 16243, - 17322 - ]], - [[ - 16181, - 16244, - 17326 - ]], - [[ - 17326, - 16244, - 17324 - ]], - [[ - 16182, - 16181, - 17335 - ]], - [[ - 17335, - 16181, - 17326 - ]], - [[ - 16183, - 16182, - 17330 - ]], - [[ - 17330, - 16182, - 17335 - ]], - [[ - 16241, - 16183, - 17333 - ]], - [[ - 17333, - 16183, - 17330 - ]], - [[ - 16240, - 16241, - 17334 - ]], - [[ - 17334, - 16241, - 17333 - ]], - [[ - 16207, - 16240, - 17329 - ]], - [[ - 17329, - 16240, - 17334 - ]], - [[ - 16238, - 16207, - 17328 - ]], - [[ - 17328, - 16207, - 17329 - ]], - [[ - 17355, - 17356, - 17327 - ]], - [[ - 17327, - 17356, - 17337 - ]], - [[ - 17357, - 17355, - 17332 - ]], - [[ - 17332, - 17355, - 17327 - ]], - [[ - 17358, - 17357, - 17331 - ]], - [[ - 17331, - 17357, - 17332 - ]], - [[ - 17359, - 17358, - 17325 - ]], - [[ - 17325, - 17358, - 17331 - ]], - [[ - 17360, - 17359, - 17323 - ]], - [[ - 17323, - 17359, - 17325 - ]], - [[ - 17361, - 17360, - 17321 - ]], - [[ - 17321, - 17360, - 17323 - ]], - [[ - 17362, - 17361, - 17319 - ]], - [[ - 17319, - 17361, - 17321 - ]], - [[ - 17363, - 17362, - 17317 - ]], - [[ - 17317, - 17362, - 17319 - ]], - [[ - 17364, - 17363, - 17315 - ]], - [[ - 17315, - 17363, - 17317 - ]], - [[ - 17365, - 17364, - 17313 - ]], - [[ - 17313, - 17364, - 17315 - ]], - [[ - 17366, - 17365, - 17312 - ]], - [[ - 17312, - 17365, - 17313 - ]], - [[ - 17367, - 17366, - 17340 - ]], - [[ - 17340, - 17366, - 17312 - ]], - [[ - 17368, - 17367, - 17342 - ]], - [[ - 17342, - 17367, - 17340 - ]], - [[ - 17369, - 17368, - 17344 - ]], - [[ - 17344, - 17368, - 17342 - ]], - [[ - 17370, - 17369, - 17346 - ]], - [[ - 17346, - 17369, - 17344 - ]], - [[ - 17371, - 17370, - 17348 - ]], - [[ - 17348, - 17370, - 17346 - ]], - [[ - 17372, - 17371, - 17350 - ]], - [[ - 17350, - 17371, - 17348 - ]], - [[ - 16267, - 17372, - 16260 - ]], - [[ - 16260, - 17372, - 17352 - ]], - [[ - 17352, - 17372, - 17350 - ]], - [[ - 16257, - 16260, - 17351 - ]], - [[ - 17351, - 16260, - 17352 - ]], - [[ - 16258, - 16257, - 17353 - ]], - [[ - 17353, - 16257, - 17351 - ]], - [[ - 16209, - 16258, - 17354 - ]], - [[ - 17354, - 16258, - 17353 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2d7ced0-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17373, - 7452, - 7453 - ]], - [[ - 17373, - 7453, - 17374 - ]], - [[ - 8978, - 7452, - 17373 - ]], - [[ - 8846, - 8978, - 17374 - ]], - [[ - 17374, - 8978, - 17373 - ]], - [[ - 7453, - 8846, - 17374 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2d8b896-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17375, - 17376, - 8403 - ]], - [[ - 17376, - 1095, - 8403 - ]], - [[ - 8925, - 1100, - 17375 - ]], - [[ - 17375, - 1100, - 17376 - ]], - [[ - 8403, - 8925, - 17375 - ]], - [[ - 1100, - 1095, - 17376 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2dc146d-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "kademuur", - "bronhouder": "W0372", - "creationdate": "2015-04-22", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.10994c13ed9746c2b01feaa5f372aece", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17377, - 17378, - 17379 - ]], - [[ - 17380, - 17381, - 17382 - ]], - [[ - 17383, - 17380, - 17384 - ]], - [[ - 17384, - 17380, - 17382 - ]], - [[ - 17385, - 17380, - 17383 - ]], - [[ - 17385, - 17386, - 17380 - ]], - [[ - 17387, - 17386, - 17385 - ]], - [[ - 17379, - 17386, - 17377 - ]], - [[ - 17377, - 17386, - 17388 - ]], - [[ - 17388, - 17386, - 17387 - ]], - [[ - 17389, - 17390, - 17391 - ]], - [[ - 17392, - 17393, - 17394 - ]], - [[ - 17395, - 17396, - 17397 - ]], - [[ - 17398, - 17399, - 17400 - ]], - [[ - 17401, - 17402, - 17403 - ]], - [[ - 17403, - 17404, - 17405 - ]], - [[ - 17406, - 17407, - 17408 - ]], - [[ - 17407, - 17409, - 17410 - ]], - [[ - 17411, - 17412, - 17413 - ]], - [[ - 17413, - 17414, - 17415 - ]], - [[ - 17415, - 17416, - 17400 - ]], - [[ - 17417, - 17418, - 17419 - ]], - [[ - 17420, - 17421, - 17422 - ]], - [[ - 17423, - 17424, - 17422 - ]], - [[ - 17425, - 17426, - 17427 - ]], - [[ - 17428, - 17429, - 17430 - ]], - [[ - 17431, - 17432, - 17433 - ]], - [[ - 17432, - 17430, - 17433 - ]], - [[ - 17432, - 17427, - 17434 - ]], - [[ - 17430, - 17432, - 17428 - ]], - [[ - 17435, - 17430, - 17429 - ]], - [[ - 17435, - 17429, - 17436 - ]], - [[ - 17437, - 17428, - 17432 - ]], - [[ - 17438, - 17437, - 17432 - ]], - [[ - 17439, - 17438, - 17432 - ]], - [[ - 17434, - 17439, - 17432 - ]], - [[ - 17440, - 17434, - 17427 - ]], - [[ - 17426, - 17440, - 17427 - ]], - [[ - 17422, - 17441, - 17427 - ]], - [[ - 17442, - 17425, - 17427 - ]], - [[ - 17443, - 17442, - 17427 - ]], - [[ - 17444, - 17443, - 17427 - ]], - [[ - 17445, - 17444, - 17427 - ]], - [[ - 17446, - 17445, - 17427 - ]], - [[ - 17447, - 17446, - 17427 - ]], - [[ - 17448, - 17447, - 17427 - ]], - [[ - 17441, - 17448, - 17427 - ]], - [[ - 17449, - 17441, - 17422 - ]], - [[ - 17450, - 17449, - 17422 - ]], - [[ - 17424, - 17450, - 17422 - ]], - [[ - 17451, - 17420, - 17422 - ]], - [[ - 17452, - 17423, - 17422 - ]], - [[ - 17421, - 17452, - 17422 - ]], - [[ - 17453, - 17454, - 17455 - ]], - [[ - 17456, - 17420, - 17451 - ]], - [[ - 17455, - 17456, - 17451 - ]], - [[ - 17453, - 17455, - 17451 - ]], - [[ - 17457, - 17454, - 17453 - ]], - [[ - 17419, - 17453, - 17451 - ]], - [[ - 17419, - 17458, - 17453 - ]], - [[ - 17410, - 17417, - 17419 - ]], - [[ - 17419, - 17459, - 17458 - ]], - [[ - 17419, - 17418, - 17459 - ]], - [[ - 17410, - 17408, - 17407 - ]], - [[ - 17460, - 17417, - 17410 - ]], - [[ - 17409, - 17460, - 17410 - ]], - [[ - 17400, - 17461, - 17408 - ]], - [[ - 17462, - 17463, - 17411 - ]], - [[ - 17405, - 17464, - 17462 - ]], - [[ - 17406, - 17408, - 17461 - ]], - [[ - 17461, - 17400, - 17399 - ]], - [[ - 17465, - 17466, - 17401 - ]], - [[ - 17400, - 17467, - 17398 - ]], - [[ - 17400, - 17468, - 17467 - ]], - [[ - 17400, - 17469, - 17468 - ]], - [[ - 17400, - 17416, - 17469 - ]], - [[ - 17415, - 17470, - 17416 - ]], - [[ - 17415, - 17471, - 17470 - ]], - [[ - 17472, - 17473, - 17474 - ]], - [[ - 17415, - 17414, - 17471 - ]], - [[ - 17465, - 17473, - 17475 - ]], - [[ - 17414, - 17413, - 17412 - ]], - [[ - 17463, - 17476, - 17411 - ]], - [[ - 17412, - 17411, - 17476 - ]], - [[ - 17464, - 17463, - 17462 - ]], - [[ - 17477, - 17478, - 17474 - ]], - [[ - 17479, - 17480, - 17481 - ]], - [[ - 17405, - 17404, - 17464 - ]], - [[ - 17477, - 17480, - 17482 - ]], - [[ - 17483, - 17484, - 17403 - ]], - [[ - 17404, - 17403, - 17484 - ]], - [[ - 17402, - 17483, - 17403 - ]], - [[ - 17485, - 17402, - 17401 - ]], - [[ - 17486, - 17485, - 17401 - ]], - [[ - 17487, - 17486, - 17401 - ]], - [[ - 17466, - 17487, - 17401 - ]], - [[ - 17488, - 17466, - 17465 - ]], - [[ - 17475, - 17488, - 17465 - ]], - [[ - 17489, - 17475, - 17473 - ]], - [[ - 17490, - 17489, - 17473 - ]], - [[ - 17472, - 17490, - 17473 - ]], - [[ - 17491, - 17472, - 17474 - ]], - [[ - 17478, - 17491, - 17474 - ]], - [[ - 17492, - 17478, - 17477 - ]], - [[ - 17493, - 17492, - 17477 - ]], - [[ - 17494, - 17493, - 17477 - ]], - [[ - 17482, - 17494, - 17477 - ]], - [[ - 17495, - 17482, - 17480 - ]], - [[ - 17496, - 17495, - 17480 - ]], - [[ - 17497, - 17496, - 17480 - ]], - [[ - 17479, - 17497, - 17480 - ]], - [[ - 17498, - 17395, - 17394 - ]], - [[ - 17499, - 17500, - 17481 - ]], - [[ - 17499, - 17397, - 17396 - ]], - [[ - 17479, - 17481, - 17501 - ]], - [[ - 17501, - 17481, - 17500 - ]], - [[ - 17500, - 17499, - 17502 - ]], - [[ - 17502, - 17499, - 17503 - ]], - [[ - 17503, - 17499, - 17504 - ]], - [[ - 17505, - 17396, - 17395 - ]], - [[ - 17504, - 17499, - 17396 - ]], - [[ - 17506, - 17505, - 17395 - ]], - [[ - 17507, - 17506, - 17395 - ]], - [[ - 17508, - 17507, - 17395 - ]], - [[ - 17509, - 17508, - 17395 - ]], - [[ - 17498, - 17509, - 17395 - ]], - [[ - 17510, - 17498, - 17394 - ]], - [[ - 17393, - 17510, - 17394 - ]], - [[ - 17391, - 17511, - 17394 - ]], - [[ - 17512, - 17392, - 17394 - ]], - [[ - 17513, - 17512, - 17394 - ]], - [[ - 17514, - 17513, - 17394 - ]], - [[ - 17515, - 17514, - 17394 - ]], - [[ - 17516, - 17515, - 17394 - ]], - [[ - 17517, - 17516, - 17394 - ]], - [[ - 17511, - 17517, - 17394 - ]], - [[ - 17518, - 17511, - 17391 - ]], - [[ - 17519, - 17518, - 17391 - ]], - [[ - 17390, - 17519, - 17391 - ]], - [[ - 17520, - 17521, - 17391 - ]], - [[ - 17522, - 17389, - 17391 - ]], - [[ - 17521, - 17522, - 17391 - ]], - [[ - 17523, - 17524, - 17520 - ]], - [[ - 17520, - 17525, - 17521 - ]], - [[ - 17520, - 17524, - 17525 - ]], - [[ - 17523, - 17379, - 17526 - ]], - [[ - 17524, - 17523, - 17526 - ]], - [[ - 17379, - 17527, - 17526 - ]], - [[ - 17379, - 17378, - 17527 - ]], - [[ - 11906, - 14447, - 17377 - ]], - [[ - 17377, - 14447, - 17378 - ]], - [[ - 11908, - 11906, - 17388 - ]], - [[ - 17388, - 11906, - 17377 - ]], - [[ - 16173, - 11912, - 17387 - ]], - [[ - 17387, - 11912, - 11908 - ]], - [[ - 17387, - 11908, - 17388 - ]], - [[ - 16151, - 16173, - 17385 - ]], - [[ - 17385, - 16173, - 17387 - ]], - [[ - 16159, - 16151, - 17383 - ]], - [[ - 17383, - 16151, - 17385 - ]], - [[ - 22, - 16159, - 17384 - ]], - [[ - 17384, - 16159, - 17383 - ]], - [[ - 17528, - 1, - 17382 - ]], - [[ - 17382, - 1, - 22 - ]], - [[ - 17382, - 22, - 17384 - ]], - [[ - 2, - 17528, - 17381 - ]], - [[ - 17381, - 17528, - 17382 - ]], - [[ - 17529, - 2, - 17380 - ]], - [[ - 17380, - 2, - 17381 - ]], - [[ - 17530, - 17529, - 17386 - ]], - [[ - 17386, - 17529, - 17380 - ]], - [[ - 17531, - 17530, - 17379 - ]], - [[ - 17379, - 17530, - 17386 - ]], - [[ - 17532, - 17533, - 17520 - ]], - [[ - 17520, - 17533, - 17523 - ]], - [[ - 17534, - 17532, - 17391 - ]], - [[ - 17391, - 17532, - 17520 - ]], - [[ - 17535, - 17534, - 17394 - ]], - [[ - 17394, - 17534, - 17391 - ]], - [[ - 17536, - 17535, - 17395 - ]], - [[ - 17395, - 17535, - 17394 - ]], - [[ - 17537, - 17536, - 17397 - ]], - [[ - 17397, - 17536, - 17395 - ]], - [[ - 17538, - 17537, - 17499 - ]], - [[ - 17499, - 17537, - 17397 - ]], - [[ - 17539, - 17538, - 17481 - ]], - [[ - 17481, - 17538, - 17499 - ]], - [[ - 17540, - 17539, - 17480 - ]], - [[ - 17480, - 17539, - 17481 - ]], - [[ - 17541, - 17540, - 17477 - ]], - [[ - 17477, - 17540, - 17480 - ]], - [[ - 17542, - 17541, - 17474 - ]], - [[ - 17474, - 17541, - 17477 - ]], - [[ - 17543, - 17542, - 17473 - ]], - [[ - 17473, - 17542, - 17474 - ]], - [[ - 17544, - 17543, - 17465 - ]], - [[ - 17465, - 17543, - 17473 - ]], - [[ - 17545, - 17544, - 17401 - ]], - [[ - 17401, - 17544, - 17465 - ]], - [[ - 17546, - 17545, - 17403 - ]], - [[ - 17403, - 17545, - 17401 - ]], - [[ - 17547, - 17546, - 17405 - ]], - [[ - 17405, - 17546, - 17403 - ]], - [[ - 17548, - 17547, - 17462 - ]], - [[ - 17462, - 17547, - 17405 - ]], - [[ - 17549, - 17548, - 17411 - ]], - [[ - 17411, - 17548, - 17462 - ]], - [[ - 17550, - 17549, - 17413 - ]], - [[ - 17413, - 17549, - 17411 - ]], - [[ - 17551, - 17550, - 17415 - ]], - [[ - 17415, - 17550, - 17413 - ]], - [[ - 17552, - 17551, - 17400 - ]], - [[ - 17400, - 17551, - 17415 - ]], - [[ - 17553, - 17552, - 17408 - ]], - [[ - 17408, - 17552, - 17400 - ]], - [[ - 17554, - 17553, - 17410 - ]], - [[ - 17410, - 17553, - 17408 - ]], - [[ - 17555, - 17554, - 17419 - ]], - [[ - 17419, - 17554, - 17410 - ]], - [[ - 17556, - 17555, - 17451 - ]], - [[ - 17451, - 17555, - 17419 - ]], - [[ - 17557, - 17556, - 17422 - ]], - [[ - 17422, - 17556, - 17451 - ]], - [[ - 17558, - 17557, - 17427 - ]], - [[ - 17427, - 17557, - 17422 - ]], - [[ - 17559, - 17558, - 17432 - ]], - [[ - 17432, - 17558, - 17427 - ]], - [[ - 17560, - 17559, - 17431 - ]], - [[ - 17431, - 17559, - 17432 - ]], - [[ - 1046, - 17560, - 17433 - ]], - [[ - 17433, - 17560, - 17431 - ]], - [[ - 1042, - 1046, - 17430 - ]], - [[ - 17430, - 1046, - 17433 - ]], - [[ - 1043, - 1042, - 17435 - ]], - [[ - 17435, - 1042, - 17430 - ]], - [[ - 1044, - 1043, - 17436 - ]], - [[ - 17436, - 1043, - 17435 - ]], - [[ - 1048, - 1044, - 17429 - ]], - [[ - 17429, - 1044, - 17436 - ]], - [[ - 13077, - 1048, - 17428 - ]], - [[ - 17428, - 1048, - 17429 - ]], - [[ - 13037, - 13077, - 17437 - ]], - [[ - 17437, - 13077, - 17428 - ]], - [[ - 13136, - 13037, - 17438 - ]], - [[ - 17438, - 13037, - 17437 - ]], - [[ - 13139, - 13136, - 17439 - ]], - [[ - 17439, - 13136, - 17438 - ]], - [[ - 11772, - 13139, - 17434 - ]], - [[ - 17434, - 13139, - 17439 - ]], - [[ - 11793, - 11772, - 17440 - ]], - [[ - 17440, - 11772, - 17434 - ]], - [[ - 15442, - 11793, - 17426 - ]], - [[ - 17426, - 11793, - 17440 - ]], - [[ - 15440, - 15442, - 17425 - ]], - [[ - 17425, - 15442, - 17426 - ]], - [[ - 15535, - 15440, - 17442 - ]], - [[ - 17442, - 15440, - 17425 - ]], - [[ - 15548, - 15535, - 17443 - ]], - [[ - 17443, - 15535, - 17442 - ]], - [[ - 15549, - 15548, - 17444 - ]], - [[ - 17444, - 15548, - 17443 - ]], - [[ - 15805, - 15549, - 17445 - ]], - [[ - 17445, - 15549, - 17444 - ]], - [[ - 15824, - 15805, - 17446 - ]], - [[ - 17446, - 15805, - 17445 - ]], - [[ - 12454, - 15824, - 17447 - ]], - [[ - 17447, - 15824, - 17446 - ]], - [[ - 12461, - 12454, - 17448 - ]], - [[ - 17448, - 12454, - 17447 - ]], - [[ - 15795, - 12461, - 17441 - ]], - [[ - 17441, - 12461, - 17448 - ]], - [[ - 15785, - 15795, - 17449 - ]], - [[ - 17449, - 15795, - 17441 - ]], - [[ - 14305, - 15785, - 17450 - ]], - [[ - 17450, - 15785, - 17449 - ]], - [[ - 14300, - 14305, - 17424 - ]], - [[ - 17424, - 14305, - 17450 - ]], - [[ - 14439, - 14300, - 14421 - ]], - [[ - 14421, - 14300, - 17423 - ]], - [[ - 17423, - 14300, - 17424 - ]], - [[ - 14433, - 14421, - 17452 - ]], - [[ - 17452, - 14421, - 17423 - ]], - [[ - 16650, - 14433, - 17421 - ]], - [[ - 17421, - 14433, - 17452 - ]], - [[ - 15903, - 16650, - 17420 - ]], - [[ - 17420, - 16650, - 17421 - ]], - [[ - 15904, - 15903, - 17456 - ]], - [[ - 17456, - 15903, - 17420 - ]], - [[ - 15905, - 15904, - 17455 - ]], - [[ - 17455, - 15904, - 17456 - ]], - [[ - 11988, - 15905, - 11983 - ]], - [[ - 11983, - 15905, - 17454 - ]], - [[ - 17454, - 15905, - 17455 - ]], - [[ - 11967, - 11983, - 17457 - ]], - [[ - 17457, - 11983, - 17454 - ]], - [[ - 11963, - 11967, - 17453 - ]], - [[ - 17453, - 11967, - 17457 - ]], - [[ - 11973, - 11963, - 17458 - ]], - [[ - 17458, - 11963, - 17453 - ]], - [[ - 15852, - 11986, - 17459 - ]], - [[ - 17459, - 11986, - 11973 - ]], - [[ - 17459, - 11973, - 17458 - ]], - [[ - 15235, - 15852, - 15219 - ]], - [[ - 15219, - 15852, - 17418 - ]], - [[ - 17418, - 15852, - 17459 - ]], - [[ - 15228, - 15219, - 17417 - ]], - [[ - 17417, - 15219, - 17418 - ]], - [[ - 16995, - 15234, - 17460 - ]], - [[ - 17460, - 15234, - 15228 - ]], - [[ - 17460, - 15228, - 17417 - ]], - [[ - 14274, - 16995, - 14265 - ]], - [[ - 14265, - 16995, - 17409 - ]], - [[ - 17409, - 16995, - 17460 - ]], - [[ - 14269, - 14265, - 17407 - ]], - [[ - 17407, - 14265, - 17409 - ]], - [[ - 16637, - 14273, - 17406 - ]], - [[ - 17406, - 14273, - 14269 - ]], - [[ - 17406, - 14269, - 17407 - ]], - [[ - 12018, - 16637, - 17461 - ]], - [[ - 17461, - 16637, - 17406 - ]], - [[ - 12011, - 12018, - 17399 - ]], - [[ - 17399, - 12018, - 17461 - ]], - [[ - 12012, - 12011, - 17398 - ]], - [[ - 17398, - 12011, - 17399 - ]], - [[ - 12009, - 12012, - 17467 - ]], - [[ - 17467, - 12012, - 17398 - ]], - [[ - 12010, - 12009, - 17468 - ]], - [[ - 17468, - 12009, - 17467 - ]], - [[ - 12003, - 12010, - 17469 - ]], - [[ - 17469, - 12010, - 17468 - ]], - [[ - 12004, - 12003, - 17416 - ]], - [[ - 17416, - 12003, - 17469 - ]], - [[ - 12001, - 12004, - 17470 - ]], - [[ - 17470, - 12004, - 17416 - ]], - [[ - 11999, - 12001, - 17471 - ]], - [[ - 17471, - 12001, - 17470 - ]], - [[ - 17067, - 12020, - 17414 - ]], - [[ - 17414, - 12020, - 11999 - ]], - [[ - 17414, - 11999, - 17471 - ]], - [[ - 17066, - 17067, - 17412 - ]], - [[ - 17412, - 17067, - 17414 - ]], - [[ - 17065, - 17066, - 17476 - ]], - [[ - 17476, - 17066, - 17412 - ]], - [[ - 17063, - 17065, - 17463 - ]], - [[ - 17463, - 17065, - 17476 - ]], - [[ - 17064, - 17063, - 17464 - ]], - [[ - 17464, - 17063, - 17463 - ]], - [[ - 17062, - 17064, - 17404 - ]], - [[ - 17404, - 17064, - 17464 - ]], - [[ - 17049, - 17062, - 17484 - ]], - [[ - 17484, - 17062, - 17404 - ]], - [[ - 17050, - 17049, - 17483 - ]], - [[ - 17483, - 17049, - 17484 - ]], - [[ - 17061, - 17050, - 17402 - ]], - [[ - 17402, - 17050, - 17483 - ]], - [[ - 17060, - 17061, - 17485 - ]], - [[ - 17485, - 17061, - 17402 - ]], - [[ - 17059, - 17060, - 17486 - ]], - [[ - 17486, - 17060, - 17485 - ]], - [[ - 17058, - 17059, - 17487 - ]], - [[ - 17487, - 17059, - 17486 - ]], - [[ - 17057, - 17058, - 17466 - ]], - [[ - 17466, - 17058, - 17487 - ]], - [[ - 17068, - 17057, - 17488 - ]], - [[ - 17488, - 17057, - 17466 - ]], - [[ - 17055, - 17068, - 17475 - ]], - [[ - 17475, - 17068, - 17488 - ]], - [[ - 17056, - 17055, - 17489 - ]], - [[ - 17489, - 17055, - 17475 - ]], - [[ - 17054, - 17056, - 17490 - ]], - [[ - 17490, - 17056, - 17489 - ]], - [[ - 17053, - 17054, - 17472 - ]], - [[ - 17472, - 17054, - 17490 - ]], - [[ - 17052, - 17053, - 17491 - ]], - [[ - 17491, - 17053, - 17472 - ]], - [[ - 17051, - 17052, - 17478 - ]], - [[ - 17478, - 17052, - 17491 - ]], - [[ - 15333, - 17051, - 15324 - ]], - [[ - 15324, - 17051, - 17492 - ]], - [[ - 17492, - 17051, - 17478 - ]], - [[ - 15331, - 15324, - 17493 - ]], - [[ - 17493, - 15324, - 17492 - ]], - [[ - 15320, - 15331, - 17494 - ]], - [[ - 17494, - 15331, - 17493 - ]], - [[ - 15317, - 15320, - 17482 - ]], - [[ - 17482, - 15320, - 17494 - ]], - [[ - 15315, - 15317, - 17495 - ]], - [[ - 17495, - 15317, - 17482 - ]], - [[ - 15311, - 15315, - 17496 - ]], - [[ - 17496, - 15315, - 17495 - ]], - [[ - 15312, - 15311, - 17497 - ]], - [[ - 17497, - 15311, - 17496 - ]], - [[ - 15327, - 15312, - 17479 - ]], - [[ - 17479, - 15312, - 17497 - ]], - [[ - 14126, - 15332, - 14123 - ]], - [[ - 14123, - 15332, - 17501 - ]], - [[ - 17501, - 15332, - 15327 - ]], - [[ - 17501, - 15327, - 17479 - ]], - [[ - 14122, - 14123, - 17500 - ]], - [[ - 17500, - 14123, - 17501 - ]], - [[ - 15459, - 14125, - 17502 - ]], - [[ - 17502, - 14125, - 14122 - ]], - [[ - 17502, - 14122, - 17500 - ]], - [[ - 15458, - 15459, - 17503 - ]], - [[ - 17503, - 15459, - 17502 - ]], - [[ - 17561, - 15473, - 17504 - ]], - [[ - 17504, - 15473, - 15458 - ]], - [[ - 17504, - 15458, - 17503 - ]], - [[ - 17562, - 17561, - 17396 - ]], - [[ - 17396, - 17561, - 17504 - ]], - [[ - 17563, - 17562, - 17505 - ]], - [[ - 17505, - 17562, - 17396 - ]], - [[ - 11879, - 17563, - 17506 - ]], - [[ - 17506, - 17563, - 17505 - ]], - [[ - 11887, - 11879, - 17507 - ]], - [[ - 17507, - 11879, - 17506 - ]], - [[ - 15711, - 11888, - 15706 - ]], - [[ - 15706, - 11888, - 17508 - ]], - [[ - 17508, - 11888, - 11887 - ]], - [[ - 17508, - 11887, - 17507 - ]], - [[ - 15708, - 15706, - 17509 - ]], - [[ - 17509, - 15706, - 17508 - ]], - [[ - 14549, - 15710, - 14528 - ]], - [[ - 14528, - 15710, - 17498 - ]], - [[ - 17498, - 15710, - 15708 - ]], - [[ - 17498, - 15708, - 17509 - ]], - [[ - 14543, - 14528, - 17510 - ]], - [[ - 17510, - 14528, - 17498 - ]], - [[ - 15251, - 14548, - 17393 - ]], - [[ - 17393, - 14548, - 14543 - ]], - [[ - 17393, - 14543, - 17510 - ]], - [[ - 15256, - 15251, - 17392 - ]], - [[ - 17392, - 15251, - 17393 - ]], - [[ - 15301, - 15261, - 17512 - ]], - [[ - 17512, - 15261, - 15256 - ]], - [[ - 17512, - 15256, - 17392 - ]], - [[ - 15296, - 15301, - 17513 - ]], - [[ - 17513, - 15301, - 17512 - ]], - [[ - 17564, - 15306, - 17514 - ]], - [[ - 17514, - 15306, - 15296 - ]], - [[ - 17514, - 15296, - 17513 - ]], - [[ - 14245, - 17564, - 14242 - ]], - [[ - 14242, - 17564, - 17515 - ]], - [[ - 17515, - 17564, - 17514 - ]], - [[ - 14234, - 14242, - 17516 - ]], - [[ - 17516, - 14242, - 17515 - ]], - [[ - 14748, - 14234, - 14740 - ]], - [[ - 14740, - 14234, - 17517 - ]], - [[ - 17517, - 14234, - 17516 - ]], - [[ - 14747, - 14740, - 17511 - ]], - [[ - 17511, - 14740, - 17517 - ]], - [[ - 14734, - 14747, - 17518 - ]], - [[ - 17518, - 14747, - 17511 - ]], - [[ - 14735, - 14734, - 17519 - ]], - [[ - 17519, - 14734, - 17518 - ]], - [[ - 12532, - 14735, - 17390 - ]], - [[ - 17390, - 14735, - 17519 - ]], - [[ - 12538, - 12532, - 17389 - ]], - [[ - 17389, - 12532, - 17390 - ]], - [[ - 17565, - 12538, - 17522 - ]], - [[ - 17522, - 12538, - 17389 - ]], - [[ - 15742, - 17565, - 17521 - ]], - [[ - 17521, - 17565, - 17522 - ]], - [[ - 15728, - 15742, - 17525 - ]], - [[ - 17525, - 15742, - 17521 - ]], - [[ - 17566, - 15728, - 17524 - ]], - [[ - 17524, - 15728, - 17525 - ]], - [[ - 17567, - 17566, - 17526 - ]], - [[ - 17526, - 17566, - 17524 - ]], - [[ - 14460, - 17567, - 17527 - ]], - [[ - 17527, - 17567, - 17526 - ]], - [[ - 14447, - 14460, - 17378 - ]], - [[ - 17378, - 14460, - 17527 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2de5e68-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0885149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17568, - 7729, - 17307 - ]], - [[ - 17568, - 17307, - 366 - ]], - [[ - 366, - 17309, - 364 - ]], - [[ - 366, - 17307, - 17309 - ]], - [[ - 7729, - 7730, - 17307 - ]], - [[ - 8719, - 7729, - 17568 - ]], - [[ - 366, - 8719, - 17568 - ]], - [[ - 9155, - 364, - 17309 - ]], - [[ - 7730, - 10620, - 17307 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2defaf4-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1218, - 8554, - 1212 - ]], - [[ - 1218, - 1212, - 1211 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2dfe4b4-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 13242, - 13275, - 13252 - ]], - [[ - 13247, - 13276, - 13275 - ]], - [[ - 17569, - 13277, - 13276 - ]], - [[ - 17570, - 10244, - 13270 - ]], - [[ - 13273, - 17571, - 13278 - ]], - [[ - 13286, - 13285, - 10225 - ]], - [[ - 10427, - 10426, - 13239 - ]], - [[ - 10426, - 10431, - 13290 - ]], - [[ - 10431, - 10433, - 13291 - ]], - [[ - 10433, - 10432, - 13236 - ]], - [[ - 10432, - 10434, - 13237 - ]], - [[ - 10434, - 10429, - 13292 - ]], - [[ - 10429, - 10513, - 13293 - ]], - [[ - 10513, - 10438, - 13234 - ]], - [[ - 10438, - 10437, - 13235 - ]], - [[ - 10437, - 10436, - 13294 - ]], - [[ - 10436, - 10440, - 13295 - ]], - [[ - 10440, - 10439, - 13232 - ]], - [[ - 10439, - 10444, - 13233 - ]], - [[ - 10444, - 10443, - 13296 - ]], - [[ - 10443, - 10446, - 13297 - ]], - [[ - 10446, - 10445, - 13230 - ]], - [[ - 10445, - 10451, - 13231 - ]], - [[ - 10451, - 10453, - 13298 - ]], - [[ - 10453, - 10456, - 13299 - ]], - [[ - 10456, - 10449, - 13228 - ]], - [[ - 10449, - 10448, - 13229 - ]], - [[ - 10448, - 10459, - 13300 - ]], - [[ - 10459, - 10458, - 13301 - ]], - [[ - 10458, - 10462, - 13301 - ]], - [[ - 10462, - 10463, - 13226 - ]], - [[ - 10463, - 10529, - 13227 - ]], - [[ - 10529, - 10466, - 13302 - ]], - [[ - 10466, - 10469, - 13303 - ]], - [[ - 10469, - 10472, - 13224 - ]], - [[ - 10472, - 10471, - 13225 - ]], - [[ - 10471, - 10475, - 13304 - ]], - [[ - 10475, - 10474, - 13305 - ]], - [[ - 10474, - 10478, - 13306 - ]], - [[ - 10478, - 10481, - 13307 - ]], - [[ - 10481, - 10480, - 13308 - ]], - [[ - 10480, - 10484, - 13222 - ]], - [[ - 10484, - 10483, - 13223 - ]], - [[ - 10483, - 10487, - 13309 - ]], - [[ - 10487, - 10486, - 13310 - ]], - [[ - 10486, - 10518, - 13311 - ]], - [[ - 10518, - 10493, - 13312 - ]], - [[ - 10493, - 10492, - 13313 - ]], - [[ - 10492, - 10523, - 13314 - ]], - [[ - 10523, - 10497, - 13315 - ]], - [[ - 10497, - 10498, - 13316 - ]], - [[ - 10498, - 10499, - 13317 - ]], - [[ - 10499, - 10524, - 13318 - ]], - [[ - 10524, - 10525, - 13319 - ]], - [[ - 10525, - 10528, - 13320 - ]], - [[ - 10528, - 10564, - 13321 - ]], - [[ - 10564, - 10504, - 13322 - ]], - [[ - 10504, - 10516, - 13323 - ]], - [[ - 10516, - 10375, - 13324 - ]], - [[ - 10375, - 10505, - 13325 - ]], - [[ - 10505, - 10506, - 13259 - ]], - [[ - 10506, - 10508, - 13269 - ]], - [[ - 10508, - 10510, - 13267 - ]], - [[ - 10510, - 10362, - 13266 - ]], - [[ - 10362, - 10378, - 13265 - ]], - [[ - 10378, - 10383, - 13264 - ]], - [[ - 10383, - 10386, - 13241 - ]], - [[ - 10386, - 10393, - 13263 - ]], - [[ - 10393, - 10395, - 13262 - ]], - [[ - 10395, - 10397, - 13261 - ]], - [[ - 10397, - 10396, - 13260 - ]], - [[ - 10396, - 10530, - 13274 - ]], - [[ - 10530, - 10400, - 13326 - ]], - [[ - 10400, - 10403, - 13258 - ]], - [[ - 10403, - 10381, - 13257 - ]], - [[ - 10381, - 10380, - 13256 - ]], - [[ - 10380, - 10535, - 13253 - ]], - [[ - 13258, - 10403, - 13257 - ]], - [[ - 10535, - 10408, - 13255 - ]], - [[ - 10408, - 10143, - 13254 - ]], - [[ - 17572, - 13272, - 13277 - ]], - [[ - 10143, - 10142, - 13244 - ]], - [[ - 10142, - 10247, - 17573 - ]], - [[ - 10247, - 10246, - 17574 - ]], - [[ - 10246, - 10321, - 17575 - ]], - [[ - 17573, - 10247, - 17576 - ]], - [[ - 10244, - 10241, - 13271 - ]], - [[ - 10321, - 10203, - 10245 - ]], - [[ - 17574, - 10246, - 17577 - ]], - [[ - 10203, - 10148, - 10418 - ]], - [[ - 17578, - 10246, - 17575 - ]], - [[ - 17575, - 10321, - 17579 - ]], - [[ - 10240, - 10239, - 13280 - ]], - [[ - 17579, - 10321, - 10245 - ]], - [[ - 10240, - 13280, - 13279 - ]], - [[ - 10245, - 10203, - 10412 - ]], - [[ - 10412, - 10203, - 10413 - ]], - [[ - 10413, - 10203, - 10419 - ]], - [[ - 10226, - 10225, - 13285 - ]], - [[ - 10419, - 10203, - 10511 - ]], - [[ - 10231, - 13284, - 13283 - ]], - [[ - 10511, - 10203, - 10418 - ]], - [[ - 10148, - 10415, - 10417 - ]], - [[ - 13286, - 10221, - 13287 - ]], - [[ - 10418, - 10148, - 10417 - ]], - [[ - 10514, - 10427, - 13238 - ]], - [[ - 17577, - 10246, - 17578 - ]], - [[ - 17576, - 10247, - 17574 - ]], - [[ - 13244, - 10142, - 17573 - ]], - [[ - 13254, - 10143, - 13244 - ]], - [[ - 13255, - 10408, - 13254 - ]], - [[ - 13253, - 10535, - 13255 - ]], - [[ - 13256, - 10380, - 13253 - ]], - [[ - 13257, - 10381, - 13256 - ]], - [[ - 13326, - 10400, - 13258 - ]], - [[ - 13274, - 10530, - 13326 - ]], - [[ - 13260, - 10396, - 13274 - ]], - [[ - 13261, - 10397, - 13260 - ]], - [[ - 13262, - 10395, - 13261 - ]], - [[ - 13263, - 10393, - 13262 - ]], - [[ - 13241, - 10386, - 13263 - ]], - [[ - 13264, - 10383, - 13241 - ]], - [[ - 13265, - 10378, - 13264 - ]], - [[ - 13266, - 10362, - 13265 - ]], - [[ - 13267, - 10510, - 13266 - ]], - [[ - 13268, - 10508, - 13267 - ]], - [[ - 13269, - 10508, - 13268 - ]], - [[ - 13259, - 10506, - 13269 - ]], - [[ - 13325, - 10505, - 13259 - ]], - [[ - 13324, - 10375, - 13325 - ]], - [[ - 13323, - 10516, - 13324 - ]], - [[ - 13322, - 10504, - 13323 - ]], - [[ - 13321, - 10564, - 13322 - ]], - [[ - 13320, - 10528, - 13321 - ]], - [[ - 13319, - 10525, - 13320 - ]], - [[ - 13318, - 10524, - 13319 - ]], - [[ - 13317, - 10499, - 13318 - ]], - [[ - 13316, - 10498, - 13317 - ]], - [[ - 13315, - 10497, - 13316 - ]], - [[ - 13314, - 10523, - 13315 - ]], - [[ - 13313, - 10492, - 13314 - ]], - [[ - 13312, - 10493, - 13313 - ]], - [[ - 13311, - 10518, - 13312 - ]], - [[ - 13310, - 10486, - 13311 - ]], - [[ - 13309, - 10487, - 13310 - ]], - [[ - 13223, - 10483, - 13309 - ]], - [[ - 13222, - 10484, - 13223 - ]], - [[ - 13308, - 10480, - 13222 - ]], - [[ - 13307, - 10481, - 13308 - ]], - [[ - 13306, - 10478, - 13307 - ]], - [[ - 13305, - 10474, - 13306 - ]], - [[ - 13304, - 10475, - 13305 - ]], - [[ - 13225, - 10471, - 13304 - ]], - [[ - 13224, - 10472, - 13225 - ]], - [[ - 13303, - 10469, - 13224 - ]], - [[ - 13302, - 10466, - 13303 - ]], - [[ - 13227, - 10529, - 13302 - ]], - [[ - 13226, - 10463, - 13227 - ]], - [[ - 13301, - 10462, - 13226 - ]], - [[ - 13300, - 10459, - 13301 - ]], - [[ - 13229, - 10448, - 13300 - ]], - [[ - 13228, - 10449, - 13229 - ]], - [[ - 13299, - 10456, - 13228 - ]], - [[ - 13298, - 10453, - 13299 - ]], - [[ - 13231, - 10451, - 13298 - ]], - [[ - 13230, - 10445, - 13231 - ]], - [[ - 13297, - 10446, - 13230 - ]], - [[ - 13296, - 10443, - 13297 - ]], - [[ - 13233, - 10444, - 13296 - ]], - [[ - 13232, - 10439, - 13233 - ]], - [[ - 13295, - 10440, - 13232 - ]], - [[ - 13294, - 10436, - 13295 - ]], - [[ - 13235, - 10437, - 13294 - ]], - [[ - 13234, - 10438, - 13235 - ]], - [[ - 13293, - 10513, - 13234 - ]], - [[ - 13292, - 10429, - 13293 - ]], - [[ - 13237, - 10434, - 13292 - ]], - [[ - 13236, - 10432, - 13237 - ]], - [[ - 13291, - 10433, - 13236 - ]], - [[ - 13290, - 10431, - 13291 - ]], - [[ - 13239, - 10426, - 13290 - ]], - [[ - 13238, - 10427, - 13239 - ]], - [[ - 13289, - 10514, - 13238 - ]], - [[ - 13288, - 10425, - 13289 - ]], - [[ - 13287, - 10220, - 13288 - ]], - [[ - 10425, - 10514, - 13289 - ]], - [[ - 10220, - 10425, - 13288 - ]], - [[ - 13287, - 10221, - 10220 - ]], - [[ - 13285, - 13284, - 10226 - ]], - [[ - 10221, - 13286, - 10225 - ]], - [[ - 13282, - 10237, - 13283 - ]], - [[ - 13284, - 10231, - 10226 - ]], - [[ - 13283, - 10237, - 10231 - ]], - [[ - 13282, - 13281, - 10234 - ]], - [[ - 13282, - 10234, - 10237 - ]], - [[ - 13281, - 13280, - 10239 - ]], - [[ - 10234, - 13281, - 10239 - ]], - [[ - 13271, - 10241, - 13279 - ]], - [[ - 13279, - 10241, - 10240 - ]], - [[ - 13271, - 13270, - 10244 - ]], - [[ - 13278, - 17570, - 13270 - ]], - [[ - 17571, - 17570, - 13278 - ]], - [[ - 13272, - 17580, - 13273 - ]], - [[ - 17571, - 13273, - 17581 - ]], - [[ - 17581, - 13273, - 17580 - ]], - [[ - 17580, - 13272, - 17572 - ]], - [[ - 17572, - 13277, - 17582 - ]], - [[ - 17582, - 13277, - 17569 - ]], - [[ - 17569, - 13276, - 13249 - ]], - [[ - 13249, - 13276, - 13248 - ]], - [[ - 13248, - 13276, - 13247 - ]], - [[ - 13247, - 13275, - 13246 - ]], - [[ - 13246, - 13275, - 13245 - ]], - [[ - 13245, - 13275, - 13242 - ]], - [[ - 13242, - 13252, - 13243 - ]], - [[ - 13250, - 13244, - 17573 - ]], - [[ - 16138, - 13250, - 17576 - ]], - [[ - 17576, - 13250, - 17573 - ]], - [[ - 16140, - 16138, - 17574 - ]], - [[ - 17574, - 16138, - 17576 - ]], - [[ - 16142, - 16140, - 17577 - ]], - [[ - 17577, - 16140, - 17574 - ]], - [[ - 16144, - 16142, - 17578 - ]], - [[ - 17578, - 16142, - 17577 - ]], - [[ - 16147, - 16144, - 17575 - ]], - [[ - 17575, - 16144, - 17578 - ]], - [[ - 16148, - 16147, - 17579 - ]], - [[ - 17579, - 16147, - 17575 - ]], - [[ - 10245, - 16148, - 17579 - ]], - [[ - 16146, - 10244, - 17570 - ]], - [[ - 16145, - 16146, - 17571 - ]], - [[ - 17571, - 16146, - 17570 - ]], - [[ - 16143, - 16145, - 17581 - ]], - [[ - 17581, - 16145, - 17571 - ]], - [[ - 16141, - 16143, - 17580 - ]], - [[ - 17580, - 16143, - 17581 - ]], - [[ - 16139, - 16141, - 17572 - ]], - [[ - 17572, - 16141, - 17580 - ]], - [[ - 16137, - 16139, - 17582 - ]], - [[ - 17582, - 16139, - 17572 - ]], - [[ - 13251, - 16137, - 17569 - ]], - [[ - 17569, - 16137, - 17582 - ]], - [[ - 13249, - 13251, - 17569 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2e00bdc-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17583, - 9132, - 17584 - ]], - [[ - 17585, - 8148, - 8149 - ]], - [[ - 17586, - 17587, - 17588 - ]], - [[ - 9132, - 17583, - 9133 - ]], - [[ - 9133, - 17589, - 9143 - ]], - [[ - 17587, - 17590, - 17591 - ]], - [[ - 17592, - 17593, - 17594 - ]], - [[ - 17593, - 17595, - 17596 - ]], - [[ - 17595, - 17597, - 17596 - ]], - [[ - 17598, - 17599, - 17600 - ]], - [[ - 17599, - 8137, - 8139 - ]], - [[ - 8137, - 8138, - 8139 - ]], - [[ - 9106, - 17601, - 9105 - ]], - [[ - 9105, - 17602, - 9104 - ]], - [[ - 17599, - 8139, - 17600 - ]], - [[ - 17588, - 17587, - 17591 - ]], - [[ - 17591, - 17590, - 17603 - ]], - [[ - 17603, - 17592, - 17594 - ]], - [[ - 17594, - 17593, - 17596 - ]], - [[ - 17596, - 17597, - 17604 - ]], - [[ - 8139, - 17605, - 17600 - ]], - [[ - 8139, - 8140, - 17605 - ]], - [[ - 17604, - 17598, - 17600 - ]], - [[ - 9104, - 17586, - 17588 - ]], - [[ - 9108, - 17606, - 9106 - ]], - [[ - 9107, - 17607, - 9108 - ]], - [[ - 17597, - 17598, - 17604 - ]], - [[ - 9109, - 17608, - 9107 - ]], - [[ - 9111, - 17609, - 9109 - ]], - [[ - 9112, - 17610, - 9111 - ]], - [[ - 17590, - 17592, - 17603 - ]], - [[ - 9113, - 17611, - 9112 - ]], - [[ - 9143, - 17612, - 9113 - ]], - [[ - 17602, - 17586, - 9104 - ]], - [[ - 17601, - 17602, - 9105 - ]], - [[ - 17606, - 17601, - 9106 - ]], - [[ - 17607, - 17606, - 9108 - ]], - [[ - 17608, - 17607, - 9107 - ]], - [[ - 17609, - 17608, - 9109 - ]], - [[ - 17610, - 17609, - 9111 - ]], - [[ - 17611, - 17610, - 9112 - ]], - [[ - 17612, - 17611, - 9113 - ]], - [[ - 17589, - 17612, - 9143 - ]], - [[ - 17613, - 17583, - 17584 - ]], - [[ - 17589, - 9133, - 17583 - ]], - [[ - 17585, - 17613, - 17584 - ]], - [[ - 9080, - 17585, - 17584 - ]], - [[ - 9080, - 8148, - 17585 - ]], - [[ - 17585, - 8149, - 8150 - ]], - [[ - 9084, - 9080, - 17584 - ]], - [[ - 9132, - 9084, - 17584 - ]], - [[ - 9102, - 9104, - 17588 - ]], - [[ - 9101, - 9102, - 17591 - ]], - [[ - 17591, - 9102, - 17588 - ]], - [[ - 9100, - 9101, - 17603 - ]], - [[ - 17603, - 9101, - 17591 - ]], - [[ - 9099, - 9100, - 17594 - ]], - [[ - 17594, - 9100, - 17603 - ]], - [[ - 9098, - 9099, - 17596 - ]], - [[ - 17596, - 9099, - 17594 - ]], - [[ - 9097, - 9098, - 17604 - ]], - [[ - 17604, - 9098, - 17596 - ]], - [[ - 9096, - 9097, - 17600 - ]], - [[ - 17600, - 9097, - 17604 - ]], - [[ - 9095, - 9096, - 17605 - ]], - [[ - 17605, - 9096, - 17600 - ]], - [[ - 8140, - 9095, - 17605 - ]], - [[ - 16860, - 8137, - 17599 - ]], - [[ - 16866, - 16860, - 17598 - ]], - [[ - 17598, - 16860, - 17599 - ]], - [[ - 16865, - 16866, - 17597 - ]], - [[ - 17597, - 16866, - 17598 - ]], - [[ - 16864, - 16865, - 17595 - ]], - [[ - 17595, - 16865, - 17597 - ]], - [[ - 16863, - 16864, - 17593 - ]], - [[ - 17593, - 16864, - 17595 - ]], - [[ - 16862, - 16863, - 17592 - ]], - [[ - 17592, - 16863, - 17593 - ]], - [[ - 11379, - 16862, - 17590 - ]], - [[ - 17590, - 16862, - 17592 - ]], - [[ - 16395, - 11379, - 17587 - ]], - [[ - 17587, - 11379, - 17590 - ]], - [[ - 16396, - 16395, - 17586 - ]], - [[ - 17586, - 16395, - 17587 - ]], - [[ - 16393, - 16396, - 17602 - ]], - [[ - 17602, - 16396, - 17586 - ]], - [[ - 16391, - 16393, - 17601 - ]], - [[ - 17601, - 16393, - 17602 - ]], - [[ - 16389, - 16391, - 17606 - ]], - [[ - 17606, - 16391, - 17601 - ]], - [[ - 16387, - 16389, - 17607 - ]], - [[ - 17607, - 16389, - 17606 - ]], - [[ - 16385, - 16387, - 17608 - ]], - [[ - 17608, - 16387, - 17607 - ]], - [[ - 16383, - 16385, - 17609 - ]], - [[ - 17609, - 16385, - 17608 - ]], - [[ - 16381, - 16383, - 17610 - ]], - [[ - 17610, - 16383, - 17609 - ]], - [[ - 16379, - 16381, - 17611 - ]], - [[ - 17611, - 16381, - 17610 - ]], - [[ - 16378, - 16379, - 17612 - ]], - [[ - 17612, - 16379, - 17611 - ]], - [[ - 16377, - 16378, - 17589 - ]], - [[ - 17589, - 16378, - 17612 - ]], - [[ - 16376, - 16377, - 17583 - ]], - [[ - 17583, - 16377, - 17589 - ]], - [[ - 16371, - 16376, - 17613 - ]], - [[ - 17613, - 16376, - 17583 - ]], - [[ - 16373, - 16371, - 17585 - ]], - [[ - 17585, - 16371, - 17613 - ]], - [[ - 8150, - 16373, - 17585 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2e1e06f-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8600, - 1892, - 8598 - ]], - [[ - 1892, - 1891, - 8598 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2e4514a-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f08dcd49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1146, - 8412, - 1150 - ]], - [[ - 1146, - 1150, - 1147 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2e4c69a-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 171, - 172, - 17614 - ]], - [[ - 17615, - 171, - 17614 - ]], - [[ - 17616, - 17615, - 17614 - ]], - [[ - 17616, - 17617, - 17615 - ]], - [[ - 17616, - 1845, - 7915 - ]], - [[ - 17617, - 17616, - 7915 - ]], - [[ - 1838, - 1845, - 17616 - ]], - [[ - 1842, - 1838, - 17614 - ]], - [[ - 17614, - 1838, - 17616 - ]], - [[ - 172, - 1842, - 17614 - ]], - [[ - 9950, - 171, - 17615 - ]], - [[ - 9963, - 9950, - 17617 - ]], - [[ - 17617, - 9950, - 17615 - ]], - [[ - 7915, - 9963, - 17617 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2e5d871-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 10648, - 10647, - 10650 - ]], - [[ - 10647, - 10651, - 10650 - ]], - [[ - 10651, - 17618, - 652 - ]], - [[ - 10651, - 10647, - 17618 - ]], - [[ - 652, - 17618, - 651 - ]], - [[ - 17618, - 10647, - 17619 - ]], - [[ - 17618, - 17619, - 17620 - ]], - [[ - 16970, - 651, - 17618 - ]], - [[ - 16968, - 16970, - 17620 - ]], - [[ - 17620, - 16970, - 17618 - ]], - [[ - 16969, - 16968, - 17619 - ]], - [[ - 17619, - 16968, - 17620 - ]], - [[ - 10647, - 16969, - 17619 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2e674f4-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17621, - 8534, - 17622 - ]], - [[ - 8534, - 1121, - 17622 - ]], - [[ - 1123, - 8534, - 17621 - ]], - [[ - 1120, - 1123, - 17622 - ]], - [[ - 17622, - 1123, - 17621 - ]], - [[ - 1121, - 1120, - 17622 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2e7acf3-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17623, - 1563, - 16960 - ]], - [[ - 1563, - 17623, - 17624 - ]], - [[ - 17624, - 17623, - 17625 - ]], - [[ - 1563, - 1683, - 16960 - ]], - [[ - 16960, - 17626, - 17627 - ]], - [[ - 16960, - 17628, - 17626 - ]], - [[ - 16960, - 1683, - 17628 - ]], - [[ - 16957, - 17628, - 1683 - ]], - [[ - 16955, - 16957, - 8271 - ]], - [[ - 16957, - 8270, - 8271 - ]], - [[ - 16957, - 1683, - 8270 - ]], - [[ - 16942, - 16962, - 17625 - ]], - [[ - 17625, - 16962, - 17624 - ]], - [[ - 16961, - 16942, - 17623 - ]], - [[ - 17623, - 16942, - 17625 - ]], - [[ - 16960, - 16961, - 17623 - ]], - [[ - 16943, - 16960, - 17627 - ]], - [[ - 16956, - 16943, - 17626 - ]], - [[ - 17626, - 16943, - 17627 - ]], - [[ - 16958, - 16956, - 17628 - ]], - [[ - 17628, - 16956, - 17626 - ]], - [[ - 16957, - 16958, - 17628 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2e8e5f6-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1203, - 8562, - 1197 - ]], - [[ - 8562, - 1198, - 1197 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2ea451d-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0948e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8623, - 124, - 8622 - ]], - [[ - 8633, - 8579, - 8622 - ]], - [[ - 17629, - 8633, - 8622 - ]], - [[ - 124, - 17630, - 8622 - ]], - [[ - 8622, - 17630, - 17629 - ]], - [[ - 124, - 125, - 17630 - ]], - [[ - 16365, - 8633, - 17629 - ]], - [[ - 16366, - 16365, - 17630 - ]], - [[ - 17630, - 16365, - 17629 - ]], - [[ - 125, - 16366, - 17630 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2ea9355-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0875c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 2813, - 11615, - 2815 - ]], - [[ - 2813, - 2807, - 17631 - ]], - [[ - 11615, - 2813, - 17631 - ]], - [[ - 17631, - 2807, - 17632 - ]], - [[ - 17632, - 2807, - 17633 - ]], - [[ - 16666, - 11620, - 17631 - ]], - [[ - 17631, - 11620, - 11615 - ]], - [[ - 16176, - 16666, - 17632 - ]], - [[ - 17632, - 16666, - 17631 - ]], - [[ - 16175, - 16176, - 17633 - ]], - [[ - 17633, - 16176, - 17632 - ]], - [[ - 2807, - 16175, - 17633 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2ea9356-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "kademuur", - "bronhouder": "W0372", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f09a6a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17634, - 17379, - 17635 - ]], - [[ - 17379, - 17523, - 17635 - ]], - [[ - 17636, - 17531, - 17634 - ]], - [[ - 17634, - 17531, - 17379 - ]], - [[ - 17533, - 17637, - 17523 - ]], - [[ - 17523, - 17637, - 17635 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2ed2b76-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8792, - 8417, - 8705 - ]], - [[ - 8792, - 14342, - 1942 - ]], - [[ - 2253, - 346, - 8711 - ]], - [[ - 8703, - 8705, - 8417 - ]], - [[ - 8417, - 8792, - 1942 - ]], - [[ - 1942, - 14342, - 1936 - ]], - [[ - 2253, - 345, - 346 - ]], - [[ - 1936, - 8711, - 346 - ]], - [[ - 1936, - 14342, - 8711 - ]], - [[ - 8710, - 8711, - 14342 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2ed529d-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17638, - 17639, - 15922 - ]], - [[ - 17638, - 15922, - 17021 - ]], - [[ - 17042, - 17021, - 15922 - ]], - [[ - 17044, - 17042, - 15923 - ]], - [[ - 17640, - 17641, - 15928 - ]], - [[ - 17642, - 17640, - 15929 - ]], - [[ - 17643, - 17642, - 15930 - ]], - [[ - 17644, - 17643, - 15883 - ]], - [[ - 17645, - 17644, - 15882 - ]], - [[ - 17646, - 17645, - 15931 - ]], - [[ - 17647, - 17646, - 15932 - ]], - [[ - 17648, - 17647, - 15933 - ]], - [[ - 17649, - 17648, - 15934 - ]], - [[ - 17650, - 17649, - 15935 - ]], - [[ - 17651, - 17650, - 15936 - ]], - [[ - 17652, - 17651, - 15937 - ]], - [[ - 17653, - 17652, - 15938 - ]], - [[ - 17654, - 17653, - 15939 - ]], - [[ - 17655, - 17656, - 15941 - ]], - [[ - 17657, - 17655, - 15942 - ]], - [[ - 17658, - 7171, - 7172 - ]], - [[ - 17658, - 17657, - 15944 - ]], - [[ - 17658, - 15945, - 7171 - ]], - [[ - 17656, - 17654, - 15940 - ]], - [[ - 17658, - 15944, - 15945 - ]], - [[ - 17641, - 17659, - 15927 - ]], - [[ - 17657, - 15942, - 15944 - ]], - [[ - 17659, - 17660, - 15926 - ]], - [[ - 17655, - 15941, - 15942 - ]], - [[ - 17660, - 17044, - 15925 - ]], - [[ - 17656, - 15940, - 15941 - ]], - [[ - 17654, - 15939, - 15940 - ]], - [[ - 17653, - 15938, - 15939 - ]], - [[ - 17652, - 15937, - 15938 - ]], - [[ - 17651, - 15936, - 15937 - ]], - [[ - 17650, - 15935, - 15936 - ]], - [[ - 17649, - 15934, - 15935 - ]], - [[ - 17648, - 15933, - 15934 - ]], - [[ - 17647, - 15932, - 15933 - ]], - [[ - 17646, - 15931, - 15932 - ]], - [[ - 17645, - 15882, - 15931 - ]], - [[ - 17644, - 15883, - 15882 - ]], - [[ - 17643, - 15930, - 15883 - ]], - [[ - 17642, - 15929, - 15930 - ]], - [[ - 17640, - 15928, - 15929 - ]], - [[ - 17641, - 15927, - 15928 - ]], - [[ - 17659, - 15926, - 15927 - ]], - [[ - 17660, - 15925, - 15926 - ]], - [[ - 17044, - 15923, - 15925 - ]], - [[ - 17042, - 15922, - 15923 - ]], - [[ - 17020, - 15916, - 17638 - ]], - [[ - 17638, - 15916, - 17639 - ]], - [[ - 17021, - 17020, - 17638 - ]], - [[ - 17043, - 17044, - 17660 - ]], - [[ - 17023, - 17043, - 17659 - ]], - [[ - 17659, - 17043, - 17660 - ]], - [[ - 17041, - 17023, - 17641 - ]], - [[ - 17641, - 17023, - 17659 - ]], - [[ - 17040, - 17041, - 17640 - ]], - [[ - 17640, - 17041, - 17641 - ]], - [[ - 17038, - 17040, - 17642 - ]], - [[ - 17642, - 17040, - 17640 - ]], - [[ - 17039, - 17038, - 17643 - ]], - [[ - 17643, - 17038, - 17642 - ]], - [[ - 17034, - 17039, - 17644 - ]], - [[ - 17644, - 17039, - 17643 - ]], - [[ - 17037, - 17034, - 17645 - ]], - [[ - 17645, - 17034, - 17644 - ]], - [[ - 17035, - 17037, - 17646 - ]], - [[ - 17646, - 17037, - 17645 - ]], - [[ - 17036, - 17035, - 17647 - ]], - [[ - 17647, - 17035, - 17646 - ]], - [[ - 17032, - 17036, - 17648 - ]], - [[ - 17648, - 17036, - 17647 - ]], - [[ - 17033, - 17032, - 17649 - ]], - [[ - 17649, - 17032, - 17648 - ]], - [[ - 17030, - 17033, - 17650 - ]], - [[ - 17650, - 17033, - 17649 - ]], - [[ - 17031, - 17030, - 17651 - ]], - [[ - 17651, - 17030, - 17650 - ]], - [[ - 17027, - 17031, - 17652 - ]], - [[ - 17652, - 17031, - 17651 - ]], - [[ - 17029, - 17027, - 17653 - ]], - [[ - 17653, - 17027, - 17652 - ]], - [[ - 17028, - 17029, - 17654 - ]], - [[ - 17654, - 17029, - 17653 - ]], - [[ - 17025, - 17028, - 17656 - ]], - [[ - 17656, - 17028, - 17654 - ]], - [[ - 17026, - 17025, - 17655 - ]], - [[ - 17655, - 17025, - 17656 - ]], - [[ - 17024, - 17026, - 17657 - ]], - [[ - 17657, - 17026, - 17655 - ]], - [[ - 17022, - 17024, - 17658 - ]], - [[ - 17658, - 17024, - 17657 - ]], - [[ - 7172, - 17022, - 17658 - ]], - [[ - 15916, - 15922, - 17639 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2ee8aa2-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0948f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 8572, - 8639, - 8152 - ]], - [[ - 8572, - 8152, - 8153 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2eed8e4-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0949a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1500, - 1563, - 8396 - ]], - [[ - 1563, - 17624, - 8396 - ]], - [[ - 16962, - 8396, - 17624 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2f011e8-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0948d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 166, - 976, - 943 - ]], - [[ - 166, - 943, - 165 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2f0601b-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0948849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17661, - 7809, - 17662 - ]], - [[ - 17661, - 17662, - 17663 - ]], - [[ - 17662, - 7809, - 1787 - ]], - [[ - 17662, - 1787, - 17664 - ]], - [[ - 7809, - 7810, - 1787 - ]], - [[ - 1796, - 7809, - 17661 - ]], - [[ - 1792, - 1796, - 17663 - ]], - [[ - 17663, - 1796, - 17661 - ]], - [[ - 1793, - 1792, - 17662 - ]], - [[ - 17662, - 1792, - 17663 - ]], - [[ - 1786, - 1793, - 17664 - ]], - [[ - 17664, - 1793, - 17662 - ]], - [[ - 1787, - 1786, - 17664 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2f149e9-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "muur", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0884c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 1162, - 1173, - 17665 - ]], - [[ - 17665, - 17666, - 17667 - ]], - [[ - 17668, - 17669, - 1263 - ]], - [[ - 17669, - 7279, - 1263 - ]], - [[ - 17669, - 17667, - 17666 - ]], - [[ - 17669, - 17666, - 7279 - ]], - [[ - 17667, - 17670, - 17665 - ]], - [[ - 1162, - 17665, - 17670 - ]], - [[ - 1174, - 1162, - 17670 - ]], - [[ - 1155, - 1174, - 17667 - ]], - [[ - 17667, - 1174, - 17670 - ]], - [[ - 1156, - 1155, - 17669 - ]], - [[ - 17669, - 1155, - 17667 - ]], - [[ - 1169, - 1156, - 17668 - ]], - [[ - 17668, - 1156, - 17669 - ]], - [[ - 1263, - 1169, - 17668 - ]], - [[ - 16827, - 7279, - 17666 - ]], - [[ - 16828, - 16827, - 17665 - ]], - [[ - 17665, - 16827, - 17666 - ]], - [[ - 1173, - 16828, - 17665 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "ba2f1bf47-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "kademuur", - "bronhouder": "W0372", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f097f249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17671, - 17672, - 17673 - ]], - [[ - 17674, - 17675, - 17676 - ]], - [[ - 17672, - 17671, - 17677 - ]], - [[ - 17678, - 17677, - 17671 - ]], - [[ - 17679, - 17680, - 17681 - ]], - [[ - 17682, - 17679, - 17683 - ]], - [[ - 17684, - 17682, - 17685 - ]], - [[ - 17686, - 17684, - 17687 - ]], - [[ - 17688, - 17689, - 17690 - ]], - [[ - 17691, - 17692, - 17693 - ]], - [[ - 17694, - 17695, - 17696 - ]], - [[ - 17694, - 17691, - 17697 - ]], - [[ - 17694, - 17698, - 17695 - ]], - [[ - 17695, - 17698, - 17699 - ]], - [[ - 17694, - 17697, - 17698 - ]], - [[ - 17700, - 17691, - 17701 - ]], - [[ - 17691, - 17700, - 17697 - ]], - [[ - 17692, - 17702, - 17703 - ]], - [[ - 17702, - 17704, - 17705 - ]], - [[ - 17701, - 17691, - 17693 - ]], - [[ - 17692, - 17706, - 17693 - ]], - [[ - 17704, - 17707, - 17708 - ]], - [[ - 17692, - 17709, - 17706 - ]], - [[ - 17707, - 17710, - 17708 - ]], - [[ - 17692, - 17703, - 17709 - ]], - [[ - 17702, - 17711, - 17703 - ]], - [[ - 17710, - 17688, - 17690 - ]], - [[ - 17702, - 13184, - 17711 - ]], - [[ - 17689, - 17712, - 17713 - ]], - [[ - 17702, - 17705, - 13184 - ]], - [[ - 17704, - 17708, - 17705 - ]], - [[ - 17712, - 17686, - 17713 - ]], - [[ - 17708, - 17710, - 17690 - ]], - [[ - 17689, - 17713, - 17690 - ]], - [[ - 17686, - 17687, - 17713 - ]], - [[ - 17684, - 17685, - 17687 - ]], - [[ - 17680, - 17714, - 17715 - ]], - [[ - 17685, - 17682, - 17716 - ]], - [[ - 17716, - 17682, - 17683 - ]], - [[ - 17679, - 17717, - 17683 - ]], - [[ - 17718, - 17719, - 17720 - ]], - [[ - 17679, - 17681, - 17717 - ]], - [[ - 17680, - 17721, - 17681 - ]], - [[ - 17680, - 17722, - 17721 - ]], - [[ - 17680, - 17723, - 17722 - ]], - [[ - 17680, - 17715, - 17723 - ]], - [[ - 17714, - 17724, - 17715 - ]], - [[ - 17714, - 17725, - 17724 - ]], - [[ - 17714, - 17726, - 17725 - ]], - [[ - 17714, - 17727, - 17726 - ]], - [[ - 17719, - 17728, - 17729 - ]], - [[ - 17718, - 17730, - 17727 - ]], - [[ - 17718, - 17731, - 17730 - ]], - [[ - 17714, - 17718, - 17727 - ]], - [[ - 17714, - 17719, - 17718 - ]], - [[ - 17718, - 17720, - 17732 - ]], - [[ - 17733, - 17728, - 17678 - ]], - [[ - 17719, - 17734, - 17720 - ]], - [[ - 17719, - 17729, - 17734 - ]], - [[ - 17728, - 17733, - 17729 - ]], - [[ - 17729, - 17733, - 17735 - ]], - [[ - 17728, - 17677, - 17678 - ]], - [[ - 17672, - 17736, - 17673 - ]], - [[ - 17737, - 17738, - 17736 - ]], - [[ - 17737, - 17674, - 17739 - ]], - [[ - 17736, - 17740, - 17673 - ]], - [[ - 17740, - 17736, - 17741 - ]], - [[ - 17736, - 17742, - 17741 - ]], - [[ - 17742, - 17736, - 17738 - ]], - [[ - 17737, - 17743, - 17738 - ]], - [[ - 17743, - 17737, - 17744 - ]], - [[ - 17744, - 17737, - 17745 - ]], - [[ - 17745, - 17737, - 17739 - ]], - [[ - 17739, - 17674, - 17746 - ]], - [[ - 17746, - 17674, - 17747 - ]], - [[ - 17747, - 17674, - 17676 - ]], - [[ - 17676, - 17675, - 17748 - ]], - [[ - 17748, - 17675, - 17749 - ]], - [[ - 17750, - 17751, - 17752 - ]], - [[ - 17752, - 17751, - 17753 - ]], - [[ - 17753, - 17751, - 17754 - ]], - [[ - 17754, - 17755, - 17756 - ]], - [[ - 17757, - 17758, - 17759 - ]], - [[ - 17759, - 17758, - 17760 - ]], - [[ - 17675, - 17750, - 17749 - ]], - [[ - 17761, - 17760, - 17758 - ]], - [[ - 17762, - 17763, - 17764 - ]], - [[ - 17762, - 17765, - 17766 - ]], - [[ - 17763, - 17761, - 17758 - ]], - [[ - 17766, - 17765, - 17767 - ]], - [[ - 17762, - 17764, - 17765 - ]], - [[ - 17763, - 17758, - 17764 - ]], - [[ - 17757, - 17768, - 17758 - ]], - [[ - 17757, - 17755, - 17768 - ]], - [[ - 17757, - 17756, - 17755 - ]], - [[ - 17749, - 17750, - 17752 - ]], - [[ - 17751, - 17755, - 17754 - ]], - [[ - 17769, - 17770, - 17674 - ]], - [[ - 17674, - 17770, - 17675 - ]], - [[ - 17771, - 17769, - 17737 - ]], - [[ - 17737, - 17769, - 17674 - ]], - [[ - 17772, - 17771, - 17736 - ]], - [[ - 17736, - 17771, - 17737 - ]], - [[ - 17773, - 17772, - 17672 - ]], - [[ - 17672, - 17772, - 17736 - ]], - [[ - 17774, - 17773, - 17677 - ]], - [[ - 17677, - 17773, - 17672 - ]], - [[ - 17775, - 17774, - 17728 - ]], - [[ - 17728, - 17774, - 17677 - ]], - [[ - 17776, - 17775, - 17719 - ]], - [[ - 17719, - 17775, - 17728 - ]], - [[ - 17777, - 17776, - 17714 - ]], - [[ - 17714, - 17776, - 17719 - ]], - [[ - 17778, - 17777, - 17680 - ]], - [[ - 17680, - 17777, - 17714 - ]], - [[ - 17779, - 17778, - 17679 - ]], - [[ - 17679, - 17778, - 17680 - ]], - [[ - 17780, - 17779, - 17682 - ]], - [[ - 17682, - 17779, - 17679 - ]], - [[ - 17781, - 17780, - 17684 - ]], - [[ - 17684, - 17780, - 17682 - ]], - [[ - 17782, - 17781, - 17686 - ]], - [[ - 17686, - 17781, - 17684 - ]], - [[ - 17783, - 17782, - 17712 - ]], - [[ - 17712, - 17782, - 17686 - ]], - [[ - 17784, - 17783, - 17689 - ]], - [[ - 17689, - 17783, - 17712 - ]], - [[ - 17785, - 17784, - 17688 - ]], - [[ - 17688, - 17784, - 17689 - ]], - [[ - 17786, - 17785, - 17710 - ]], - [[ - 17710, - 17785, - 17688 - ]], - [[ - 17787, - 17786, - 17707 - ]], - [[ - 17707, - 17786, - 17710 - ]], - [[ - 17788, - 17787, - 17704 - ]], - [[ - 17704, - 17787, - 17707 - ]], - [[ - 17789, - 17788, - 17702 - ]], - [[ - 17702, - 17788, - 17704 - ]], - [[ - 17790, - 17789, - 17692 - ]], - [[ - 17692, - 17789, - 17702 - ]], - [[ - 17791, - 17790, - 17691 - ]], - [[ - 17691, - 17790, - 17692 - ]], - [[ - 17792, - 17791, - 17694 - ]], - [[ - 17694, - 17791, - 17691 - ]], - [[ - 17793, - 17792, - 17696 - ]], - [[ - 17696, - 17792, - 17694 - ]], - [[ - 15839, - 17700, - 17701 - ]], - [[ - 15830, - 15839, - 17693 - ]], - [[ - 17693, - 15839, - 17701 - ]], - [[ - 16301, - 15830, - 17706 - ]], - [[ - 17706, - 15830, - 17693 - ]], - [[ - 15209, - 16301, - 17709 - ]], - [[ - 17709, - 16301, - 17706 - ]], - [[ - 15210, - 15209, - 17703 - ]], - [[ - 17703, - 15209, - 17709 - ]], - [[ - 13183, - 15210, - 17711 - ]], - [[ - 17711, - 15210, - 17703 - ]], - [[ - 13184, - 13183, - 17711 - ]], - [[ - 13186, - 13184, - 17705 - ]], - [[ - 14406, - 13186, - 17708 - ]], - [[ - 17708, - 13186, - 17705 - ]], - [[ - 14407, - 14406, - 17690 - ]], - [[ - 17690, - 14406, - 17708 - ]], - [[ - 16296, - 14407, - 17713 - ]], - [[ - 17713, - 14407, - 17690 - ]], - [[ - 13220, - 16296, - 17687 - ]], - [[ - 17687, - 16296, - 17713 - ]], - [[ - 13210, - 13220, - 17685 - ]], - [[ - 17685, - 13220, - 17687 - ]], - [[ - 13204, - 13210, - 17716 - ]], - [[ - 17716, - 13210, - 17685 - ]], - [[ - 13205, - 13204, - 17683 - ]], - [[ - 17683, - 13204, - 17716 - ]], - [[ - 15713, - 13205, - 17717 - ]], - [[ - 17717, - 13205, - 17683 - ]], - [[ - 15714, - 15713, - 17681 - ]], - [[ - 17681, - 15713, - 17717 - ]], - [[ - 14039, - 15714, - 17721 - ]], - [[ - 17721, - 15714, - 17681 - ]], - [[ - 14040, - 14039, - 17722 - ]], - [[ - 17722, - 14039, - 17721 - ]], - [[ - 16304, - 14040, - 17723 - ]], - [[ - 17723, - 14040, - 17722 - ]], - [[ - 11760, - 16304, - 17715 - ]], - [[ - 17715, - 16304, - 17723 - ]], - [[ - 11761, - 11760, - 17724 - ]], - [[ - 17724, - 11760, - 17715 - ]], - [[ - 13189, - 11761, - 17725 - ]], - [[ - 17725, - 11761, - 17724 - ]], - [[ - 13190, - 13189, - 17726 - ]], - [[ - 17726, - 13189, - 17725 - ]], - [[ - 15760, - 13190, - 17727 - ]], - [[ - 17727, - 13190, - 17726 - ]], - [[ - 15761, - 15760, - 17730 - ]], - [[ - 17730, - 15760, - 17727 - ]], - [[ - 9066, - 15761, - 17731 - ]], - [[ - 17731, - 15761, - 17730 - ]], - [[ - 9077, - 9066, - 17718 - ]], - [[ - 17718, - 9066, - 17731 - ]], - [[ - 9075, - 9077, - 17732 - ]], - [[ - 17732, - 9077, - 17718 - ]], - [[ - 17794, - 9075, - 17720 - ]], - [[ - 17720, - 9075, - 17732 - ]], - [[ - 15131, - 17794, - 17734 - ]], - [[ - 17734, - 17794, - 17720 - ]], - [[ - 15132, - 15131, - 17729 - ]], - [[ - 17729, - 15131, - 17734 - ]], - [[ - 17795, - 15203, - 17735 - ]], - [[ - 17735, - 15203, - 15132 - ]], - [[ - 17735, - 15132, - 17729 - ]], - [[ - 17796, - 17795, - 17733 - ]], - [[ - 17733, - 17795, - 17735 - ]], - [[ - 13707, - 17796, - 17678 - ]], - [[ - 17678, - 17796, - 17733 - ]], - [[ - 13708, - 13707, - 17671 - ]], - [[ - 17671, - 13707, - 17678 - ]], - [[ - 15505, - 13759, - 15495 - ]], - [[ - 15495, - 13759, - 17673 - ]], - [[ - 17673, - 13759, - 13708 - ]], - [[ - 17673, - 13708, - 17671 - ]], - [[ - 15496, - 15495, - 17740 - ]], - [[ - 17740, - 15495, - 17673 - ]], - [[ - 15379, - 15496, - 15350 - ]], - [[ - 15350, - 15496, - 17741 - ]], - [[ - 17741, - 15496, - 17740 - ]], - [[ - 15338, - 15350, - 17742 - ]], - [[ - 17742, - 15350, - 17741 - ]], - [[ - 15684, - 15338, - 15629 - ]], - [[ - 15629, - 15338, - 17738 - ]], - [[ - 17738, - 15338, - 17742 - ]], - [[ - 15630, - 15629, - 17743 - ]], - [[ - 17743, - 15629, - 17738 - ]], - [[ - 15381, - 15630, - 17744 - ]], - [[ - 17744, - 15630, - 17743 - ]], - [[ - 15382, - 15381, - 17745 - ]], - [[ - 17745, - 15381, - 17744 - ]], - [[ - 13997, - 15382, - 17739 - ]], - [[ - 17739, - 15382, - 17745 - ]], - [[ - 13998, - 13997, - 17746 - ]], - [[ - 17746, - 13997, - 17739 - ]], - [[ - 12829, - 13998, - 12798 - ]], - [[ - 12798, - 13998, - 17747 - ]], - [[ - 17747, - 13998, - 17746 - ]], - [[ - 12799, - 12798, - 17676 - ]], - [[ - 17676, - 12798, - 17747 - ]], - [[ - 14801, - 12799, - 14750 - ]], - [[ - 14750, - 12799, - 17748 - ]], - [[ - 17748, - 12799, - 17676 - ]], - [[ - 14751, - 14750, - 17749 - ]], - [[ - 17749, - 14750, - 17748 - ]], - [[ - 16263, - 14751, - 17752 - ]], - [[ - 17752, - 14751, - 17749 - ]], - [[ - 12117, - 16263, - 12069 - ]], - [[ - 12069, - 16263, - 17753 - ]], - [[ - 17753, - 16263, - 17752 - ]], - [[ - 12070, - 12069, - 17754 - ]], - [[ - 17754, - 12069, - 17753 - ]], - [[ - 16204, - 12118, - 17756 - ]], - [[ - 17756, - 12118, - 12070 - ]], - [[ - 17756, - 12070, - 17754 - ]], - [[ - 16265, - 16204, - 17757 - ]], - [[ - 17757, - 16204, - 17756 - ]], - [[ - 16264, - 16265, - 17759 - ]], - [[ - 17759, - 16265, - 17757 - ]], - [[ - 16202, - 16264, - 17760 - ]], - [[ - 17760, - 16264, - 17759 - ]], - [[ - 16206, - 16202, - 17761 - ]], - [[ - 17761, - 16202, - 17760 - ]], - [[ - 16205, - 16206, - 17763 - ]], - [[ - 17763, - 16206, - 17761 - ]], - [[ - 16203, - 16205, - 17762 - ]], - [[ - 17762, - 16205, - 17763 - ]], - [[ - 16261, - 16203, - 17766 - ]], - [[ - 17766, - 16203, - 17762 - ]], - [[ - 16255, - 16261, - 17767 - ]], - [[ - 17767, - 16261, - 17766 - ]], - [[ - 16256, - 16255, - 17765 - ]], - [[ - 17765, - 16255, - 17767 - ]], - [[ - 16262, - 16256, - 17764 - ]], - [[ - 17764, - 16256, - 17765 - ]], - [[ - 17797, - 16268, - 17758 - ]], - [[ - 17758, - 16268, - 16262 - ]], - [[ - 17758, - 16262, - 17764 - ]], - [[ - 17798, - 17797, - 17768 - ]], - [[ - 17768, - 17797, - 17758 - ]], - [[ - 17799, - 17798, - 17755 - ]], - [[ - 17755, - 17798, - 17768 - ]], - [[ - 17800, - 17799, - 17751 - ]], - [[ - 17751, - 17799, - 17755 - ]], - [[ - 17801, - 17800, - 17750 - ]], - [[ - 17750, - 17800, - 17751 - ]], - [[ - 17770, - 17801, - 17675 - ]], - [[ - 17675, - 17801, - 17750 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "baeb0d610-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef344f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 12531, - 14731, - 12532 - ]], - [[ - 14731, - 14735, - 12532 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baeb14b79-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef6049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16997, - 16994, - 16998 - ]], - [[ - 16994, - 16996, - 16998 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baeb4316e-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17802, - 11901, - 14448 - ]], - [[ - 11906, - 17803, - 17804 - ]], - [[ - 11906, - 11901, - 17805 - ]], - [[ - 17802, - 17805, - 11901 - ]], - [[ - 17803, - 11906, - 17805 - ]], - [[ - 14447, - 17802, - 14448 - ]], - [[ - 14447, - 17804, - 17802 - ]], - [[ - 14447, - 11906, - 17804 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baeb71848-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee49149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 1033, - 16671, - 1061 - ]], - [[ - 1059, - 1060, - 1061 - ]], - [[ - 16671, - 17169, - 1061 - ]], - [[ - 1061, - 1058, - 1059 - ]], - [[ - 1061, - 1057, - 1058 - ]], - [[ - 1061, - 1062, - 1057 - ]], - [[ - 1061, - 1038, - 1062 - ]], - [[ - 1062, - 1038, - 1056 - ]], - [[ - 1056, - 1038, - 1030 - ]], - [[ - 1030, - 1037, - 1031 - ]], - [[ - 1030, - 1038, - 1037 - ]], - [[ - 1061, - 17169, - 1038 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baeb96194-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eedb4e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "verkeersdrempel", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17806, - 17807, - 17808 - ]], - [[ - 17808, - 16775, - 16777 - ]], - [[ - 17806, - 17808, - 16777 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baebac1f9-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee4af49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 8221, - 15884, - 8220 - ]], - [[ - 8221, - 426, - 15884 - ]], - [[ - 7277, - 15900, - 15899 - ]], - [[ - 7247, - 7248, - 15952 - ]], - [[ - 15884, - 426, - 15897 - ]], - [[ - 400, - 15897, - 426 - ]], - [[ - 403, - 15898, - 15897 - ]], - [[ - 403, - 15896, - 15898 - ]], - [[ - 403, - 15895, - 15896 - ]], - [[ - 15893, - 15894, - 403 - ]], - [[ - 15892, - 15893, - 6694 - ]], - [[ - 15891, - 15890, - 6694 - ]], - [[ - 15889, - 15891, - 6694 - ]], - [[ - 15888, - 15889, - 6694 - ]], - [[ - 15887, - 15888, - 6694 - ]], - [[ - 15886, - 15887, - 6694 - ]], - [[ - 15885, - 15886, - 6694 - ]], - [[ - 7247, - 15952, - 15900 - ]], - [[ - 7249, - 15951, - 15952 - ]], - [[ - 7249, - 15950, - 15951 - ]], - [[ - 7249, - 15949, - 15950 - ]], - [[ - 1004, - 15948, - 15949 - ]], - [[ - 1004, - 15946, - 15948 - ]], - [[ - 1004, - 1003, - 15946 - ]], - [[ - 1003, - 15924, - 15947 - ]], - [[ - 7249, - 15952, - 7248 - ]], - [[ - 1003, - 15947, - 15946 - ]], - [[ - 7194, - 1003, - 997 - ]], - [[ - 7194, - 15924, - 1003 - ]], - [[ - 7249, - 1004, - 15949 - ]], - [[ - 15890, - 15892, - 6694 - ]], - [[ - 15899, - 6694, - 7277 - ]], - [[ - 1005, - 1004, - 7249 - ]], - [[ - 7247, - 15900, - 10012 - ]], - [[ - 15900, - 7278, - 10012 - ]], - [[ - 15885, - 6694, - 15899 - ]], - [[ - 7278, - 15900, - 7277 - ]], - [[ - 15894, - 15895, - 403 - ]], - [[ - 400, - 403, - 15897 - ]], - [[ - 6694, - 15893, - 403 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baebae90f-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca4a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17809, - 16297, - 17810 - ]], - [[ - 15956, - 15954, - 17811 - ]], - [[ - 15964, - 15831, - 16298 - ]], - [[ - 15954, - 17812, - 17811 - ]], - [[ - 17811, - 15839, - 15842 - ]], - [[ - 17811, - 17700, - 15839 - ]], - [[ - 17811, - 17697, - 17700 - ]], - [[ - 15831, - 15967, - 15842 - ]], - [[ - 15842, - 15956, - 17811 - ]], - [[ - 17813, - 17814, - 15961 - ]], - [[ - 15970, - 15956, - 15842 - ]], - [[ - 15960, - 15970, - 15842 - ]], - [[ - 15969, - 15960, - 15842 - ]], - [[ - 16303, - 9071, - 9070 - ]], - [[ - 15842, - 15968, - 15969 - ]], - [[ - 15968, - 15842, - 15967 - ]], - [[ - 15967, - 15831, - 15966 - ]], - [[ - 15966, - 15831, - 15965 - ]], - [[ - 15965, - 15831, - 15964 - ]], - [[ - 15964, - 16298, - 15963 - ]], - [[ - 15963, - 16298, - 15962 - ]], - [[ - 15962, - 16298, - 15961 - ]], - [[ - 15961, - 16298, - 17815 - ]], - [[ - 15961, - 17814, - 15958 - ]], - [[ - 17815, - 17813, - 15961 - ]], - [[ - 17816, - 17815, - 16298 - ]], - [[ - 17817, - 17816, - 16298 - ]], - [[ - 17818, - 17817, - 16298 - ]], - [[ - 16297, - 17819, - 16298 - ]], - [[ - 16298, - 17820, - 17818 - ]], - [[ - 16298, - 17821, - 17820 - ]], - [[ - 16298, - 17822, - 17821 - ]], - [[ - 16298, - 17823, - 17822 - ]], - [[ - 16298, - 17824, - 17823 - ]], - [[ - 17819, - 16297, - 17809 - ]], - [[ - 16298, - 17825, - 17824 - ]], - [[ - 16297, - 16295, - 17810 - ]], - [[ - 17825, - 16298, - 17819 - ]], - [[ - 17826, - 17827, - 17828 - ]], - [[ - 16295, - 17829, - 17810 - ]], - [[ - 17829, - 16295, - 17828 - ]], - [[ - 17828, - 16295, - 17826 - ]], - [[ - 16294, - 17830, - 16295 - ]], - [[ - 16295, - 17830, - 17826 - ]], - [[ - 16294, - 17831, - 17830 - ]], - [[ - 16294, - 17832, - 17831 - ]], - [[ - 17831, - 17833, - 17834 - ]], - [[ - 17831, - 17835, - 17833 - ]], - [[ - 17831, - 17836, - 17835 - ]], - [[ - 17831, - 17837, - 17836 - ]], - [[ - 17831, - 17838, - 17837 - ]], - [[ - 17831, - 17839, - 17838 - ]], - [[ - 17831, - 17840, - 17839 - ]], - [[ - 17831, - 17841, - 17840 - ]], - [[ - 17831, - 17842, - 17841 - ]], - [[ - 17831, - 17832, - 17842 - ]], - [[ - 16294, - 17843, - 17832 - ]], - [[ - 16294, - 17844, - 17843 - ]], - [[ - 16294, - 17845, - 17844 - ]], - [[ - 16294, - 17846, - 17845 - ]], - [[ - 16294, - 17847, - 17846 - ]], - [[ - 17848, - 16294, - 17849 - ]], - [[ - 16294, - 17850, - 17847 - ]], - [[ - 16294, - 16303, - 17849 - ]], - [[ - 17850, - 16294, - 17851 - ]], - [[ - 17851, - 16294, - 17852 - ]], - [[ - 17852, - 16294, - 17848 - ]], - [[ - 16303, - 17853, - 17849 - ]], - [[ - 17854, - 16188, - 17855 - ]], - [[ - 17854, - 16185, - 16188 - ]], - [[ - 17854, - 9069, - 16185 - ]], - [[ - 17854, - 17853, - 9070 - ]], - [[ - 17854, - 9070, - 9069 - ]], - [[ - 17853, - 16303, - 9070 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baebae918-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefaa49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16944, - 16893, - 16941 - ]], - [[ - 16893, - 16959, - 16941 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baebc6f96-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca4b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16763, - 17856, - 16764 - ]], - [[ - 17856, - 17857, - 16764 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baebf073e-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef4d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17858, - 17859, - 17860 - ]], - [[ - 17858, - 17860, - 17861 - ]], - [[ - 17861, - 17860, - 17862 - ]], - [[ - 17859, - 17863, - 17860 - ]], - [[ - 17860, - 17864, - 17865 - ]], - [[ - 17860, - 17866, - 17864 - ]], - [[ - 17860, - 17867, - 17866 - ]], - [[ - 17860, - 17868, - 17867 - ]], - [[ - 17860, - 17869, - 17868 - ]], - [[ - 17860, - 17863, - 17869 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baec01841-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16060, - 16023, - 16059 - ]], - [[ - 16060, - 16059, - 16058 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baec0184a-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef1df549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15338, - 15684, - 15650 - ]], - [[ - 16178, - 15479, - 15339 - ]], - [[ - 15479, - 15496, - 15379 - ]], - [[ - 15360, - 15479, - 15379 - ]], - [[ - 15339, - 15479, - 15360 - ]], - [[ - 16186, - 16185, - 15150 - ]], - [[ - 13759, - 15505, - 15480 - ]], - [[ - 13746, - 13759, - 15480 - ]], - [[ - 15479, - 16178, - 15480 - ]], - [[ - 16185, - 9069, - 9076 - ]], - [[ - 17795, - 13707, - 13725 - ]], - [[ - 17795, - 17796, - 13707 - ]], - [[ - 16186, - 15203, - 17795 - ]], - [[ - 13725, - 16186, - 17795 - ]], - [[ - 13746, - 16186, - 13725 - ]], - [[ - 15203, - 16186, - 15154 - ]], - [[ - 16185, - 17794, - 15150 - ]], - [[ - 15150, - 17794, - 15131 - ]], - [[ - 9076, - 9075, - 17794 - ]], - [[ - 12796, - 14801, - 14764 - ]], - [[ - 15154, - 16186, - 15150 - ]], - [[ - 17794, - 16185, - 9076 - ]], - [[ - 15480, - 16186, - 13746 - ]], - [[ - 16178, - 16186, - 15480 - ]], - [[ - 15650, - 16178, - 15339 - ]], - [[ - 14764, - 14772, - 16179 - ]], - [[ - 16178, - 12806, - 16179 - ]], - [[ - 12796, - 12799, - 14801 - ]], - [[ - 16179, - 12796, - 14764 - ]], - [[ - 16179, - 12806, - 12796 - ]], - [[ - 14014, - 13998, - 12806 - ]], - [[ - 13998, - 12829, - 12806 - ]], - [[ - 16178, - 14014, - 12806 - ]], - [[ - 16178, - 14008, - 14014 - ]], - [[ - 16638, - 16641, - 15382 - ]], - [[ - 16640, - 15388, - 15382 - ]], - [[ - 16178, - 15388, - 14008 - ]], - [[ - 16178, - 15386, - 15388 - ]], - [[ - 15663, - 15630, - 15386 - ]], - [[ - 16178, - 15663, - 15386 - ]], - [[ - 15386, - 15630, - 15381 - ]], - [[ - 15650, - 15663, - 16178 - ]], - [[ - 15338, - 15650, - 15339 - ]], - [[ - 16856, - 16858, - 16639 - ]], - [[ - 14008, - 15388, - 16639 - ]], - [[ - 16641, - 16640, - 15382 - ]], - [[ - 16639, - 15388, - 16640 - ]], - [[ - 13997, - 16638, - 15382 - ]], - [[ - 16856, - 16638, - 13997 - ]], - [[ - 14008, - 16859, - 13997 - ]], - [[ - 16856, - 16639, - 16638 - ]], - [[ - 13997, - 16859, - 16857 - ]], - [[ - 14008, - 16639, - 16858 - ]], - [[ - 16859, - 14008, - 16858 - ]], - [[ - 16857, - 16856, - 13997 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baec2b0ec-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef344c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 14245, - 14240, - 17564 - ]], - [[ - 14240, - 15291, - 17564 - ]], - [[ - 17564, - 15291, - 15306 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baec2ff3f-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef345049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16173, - 16172, - 11900 - ]], - [[ - 16173, - 11900, - 11912 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baec32664-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eec1f949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 23, - 24, - 16170 - ]], - [[ - 23, - 16170, - 21 - ]], - [[ - 4, - 6, - 23 - ]], - [[ - 23, - 6, - 24 - ]], - [[ - 3, - 4, - 21 - ]], - [[ - 21, - 4, - 23 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baec76b97-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16275, - 35, - 16273 - ]], - [[ - 35, - 36, - 16273 - ]], - [[ - 8, - 18, - 35 - ]], - [[ - 35, - 18, - 36 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baec8f206-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17804, - 17803, - 17802 - ]], - [[ - 17803, - 17805, - 17802 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baec91931-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef344e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16289, - 16291, - 16293 - ]], - [[ - 16289, - 16293, - 16290 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baecc264e-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca8049cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 34, - 35, - 33 - ]], - [[ - 17870, - 31, - 33 - ]], - [[ - 35, - 16275, - 33 - ]], - [[ - 33, - 16275, - 17870 - ]], - [[ - 16, - 8, - 34 - ]], - [[ - 34, - 8, - 35 - ]], - [[ - 17, - 16, - 33 - ]], - [[ - 33, - 16, - 34 - ]], - [[ - 9, - 17, - 31 - ]], - [[ - 31, - 17, - 33 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baecdd400-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca8649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16989, - 16979, - 17871 - ]], - [[ - 16989, - 17872, - 16082 - ]], - [[ - 16989, - 17873, - 17872 - ]], - [[ - 17873, - 16989, - 17874 - ]], - [[ - 17874, - 16989, - 17875 - ]], - [[ - 17875, - 16989, - 17876 - ]], - [[ - 17876, - 16989, - 17871 - ]], - [[ - 17871, - 16979, - 17877 - ]], - [[ - 17877, - 16979, - 17878 - ]], - [[ - 17878, - 16979, - 17879 - ]], - [[ - 17879, - 16979, - 17880 - ]], - [[ - 17880, - 16979, - 17881 - ]], - [[ - 17881, - 16979, - 17882 - ]], - [[ - 17882, - 16979, - 17883 - ]], - [[ - 17883, - 16979, - 17884 - ]], - [[ - 17884, - 16979, - 17807 - ]], - [[ - 17885, - 17884, - 17807 - ]], - [[ - 17886, - 17885, - 17807 - ]], - [[ - 17887, - 17886, - 17807 - ]], - [[ - 17887, - 17807, - 17806 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baece497b-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef0b4a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 8699, - 8698, - 8697 - ]], - [[ - 8698, - 8692, - 8694 - ]], - [[ - 8698, - 8699, - 8692 - ]], - [[ - 8694, - 8692, - 8691 - ]], - [[ - 8692, - 8699, - 8689 - ]], - [[ - 8692, - 8689, - 8690 - ]], - [[ - 8699, - 6950, - 16648 - ]], - [[ - 8689, - 16649, - 6860 - ]], - [[ - 8689, - 8699, - 16649 - ]], - [[ - 16649, - 8699, - 16648 - ]], - [[ - 16648, - 6950, - 6951 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baecfa8c8-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17888, - 17889, - 17890 - ]], - [[ - 17888, - 17890, - 17891 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baed01e43-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca8449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16989, - 16953, - 16954 - ]], - [[ - 16989, - 16952, - 16953 - ]], - [[ - 16952, - 16989, - 16950 - ]], - [[ - 16950, - 16989, - 16949 - ]], - [[ - 16949, - 16989, - 16948 - ]], - [[ - 16948, - 16989, - 16947 - ]], - [[ - 16947, - 16989, - 16092 - ]], - [[ - 16947, - 16092, - 16945 - ]], - [[ - 16989, - 16090, - 16092 - ]], - [[ - 16989, - 16089, - 16090 - ]], - [[ - 16989, - 16088, - 16089 - ]], - [[ - 16989, - 16087, - 16088 - ]], - [[ - 16989, - 16086, - 16087 - ]], - [[ - 16989, - 16084, - 16086 - ]], - [[ - 16989, - 16083, - 16084 - ]], - [[ - 16989, - 16082, - 16083 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baed35282-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17892, - 17893, - 17894 - ]], - [[ - 17892, - 17894, - 17895 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baed6123a-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15238, - 17894, - 15251 - ]], - [[ - 15251, - 17894, - 17893 - ]], - [[ - 15238, - 14532, - 11376 - ]], - [[ - 11376, - 17895, - 15238 - ]], - [[ - 17894, - 15238, - 17895 - ]], - [[ - 15251, - 17892, - 11375 - ]], - [[ - 15251, - 17893, - 17892 - ]], - [[ - 15251, - 11375, - 14548 - ]], - [[ - 17892, - 17895, - 11375 - ]], - [[ - 11377, - 11376, - 14532 - ]], - [[ - 11375, - 17895, - 11376 - ]], - [[ - 14548, - 11377, - 14532 - ]], - [[ - 14548, - 11374, - 11377 - ]], - [[ - 14548, - 11375, - 11374 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baed74a77-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef6649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16589, - 16588, - 16587 - ]], - [[ - 16589, - 16587, - 16586 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baed8a9c4-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef170a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 7931, - 16410, - 7930 - ]], - [[ - 7931, - 7932, - 16643 - ]], - [[ - 16410, - 7931, - 16643 - ]], - [[ - 8186, - 16642, - 16643 - ]], - [[ - 16643, - 7932, - 8186 - ]], - [[ - 8186, - 16645, - 16642 - ]], - [[ - 16644, - 16642, - 16645 - ]], - [[ - 10010, - 8546, - 8544 - ]], - [[ - 8544, - 16645, - 10010 - ]], - [[ - 8545, - 8546, - 10205 - ]], - [[ - 10205, - 8546, - 10010 - ]], - [[ - 10010, - 16645, - 899 - ]], - [[ - 902, - 10010, - 899 - ]], - [[ - 899, - 16645, - 8186 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baed8f811-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee48c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17896, - 15440, - 15535 - ]], - [[ - 17896, - 17897, - 15440 - ]], - [[ - 17898, - 15440, - 17897 - ]], - [[ - 15534, - 17899, - 15535 - ]], - [[ - 17898, - 15420, - 15440 - ]], - [[ - 15535, - 17899, - 17896 - ]], - [[ - 15534, - 15420, - 17899 - ]], - [[ - 17899, - 15420, - 17898 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baedc2c50-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeeec549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17898, - 17897, - 17896 - ]], - [[ - 17898, - 17896, - 17899 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baedd648a-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeeed149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17900, - 16197, - 17901 - ]], - [[ - 17900, - 17901, - 17902 - ]], - [[ - 17901, - 17903, - 17904 - ]], - [[ - 17901, - 16197, - 17905 - ]], - [[ - 17901, - 17905, - 17903 - ]], - [[ - 17903, - 17905, - 17906 - ]], - [[ - 17905, - 16197, - 16180 - ]], - [[ - 17905, - 17907, - 17908 - ]], - [[ - 17907, - 17905, - 16180 - ]], - [[ - 17907, - 16180, - 17909 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baee30a16-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 9969, - 14460, - 9970 - ]], - [[ - 9971, - 17890, - 17889 - ]], - [[ - 17891, - 15729, - 15728 - ]], - [[ - 9968, - 9971, - 17889 - ]], - [[ - 17890, - 15729, - 17891 - ]], - [[ - 17566, - 9968, - 17889 - ]], - [[ - 14442, - 15729, - 17890 - ]], - [[ - 17888, - 17891, - 15728 - ]], - [[ - 14460, - 14442, - 9970 - ]], - [[ - 17566, - 17888, - 15728 - ]], - [[ - 14460, - 9969, - 17567 - ]], - [[ - 17889, - 17888, - 17566 - ]], - [[ - 14442, - 17890, - 9971 - ]], - [[ - 9970, - 14442, - 9971 - ]], - [[ - 17567, - 9968, - 17566 - ]], - [[ - 9969, - 9968, - 17567 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baee50621-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17910, - 17911, - 14746 - ]], - [[ - 17912, - 17910, - 14734 - ]], - [[ - 14732, - 17912, - 14734 - ]], - [[ - 17910, - 14746, - 14747 - ]], - [[ - 14732, - 17913, - 17912 - ]], - [[ - 14732, - 14746, - 17911 - ]], - [[ - 17913, - 14732, - 17911 - ]], - [[ - 14734, - 17910, - 14747 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baee6656b-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17698, - 17812, - 17699 - ]], - [[ - 17698, - 17697, - 17811 - ]], - [[ - 17812, - 17698, - 17811 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baee70214-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef344b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15292, - 15237, - 15301 - ]], - [[ - 15237, - 15261, - 15301 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baee86179-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef32d549cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 13131, - 13041, - 13037 - ]], - [[ - 13131, - 13037, - 13136 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baeeea27e-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eedb4f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "verkeersdrempel", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16945, - 16092, - 16136 - ]], - [[ - 16945, - 16136, - 16946 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baef24c20-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef32d449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 11785, - 13125, - 13139 - ]], - [[ - 11785, - 13139, - 11772 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baef3f9c3-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eec1f849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17914, - 16270, - 16269 - ]], - [[ - 17915, - 17916, - 16279 - ]], - [[ - 17917, - 17918, - 17919 - ]], - [[ - 17920, - 17870, - 16275 - ]], - [[ - 16279, - 17916, - 16284 - ]], - [[ - 16284, - 17916, - 16283 - ]], - [[ - 16283, - 17916, - 16282 - ]], - [[ - 16282, - 17916, - 16281 - ]], - [[ - 16281, - 17916, - 16280 - ]], - [[ - 16280, - 17916, - 16272 - ]], - [[ - 16272, - 17921, - 16278 - ]], - [[ - 16278, - 17921, - 16277 - ]], - [[ - 16277, - 17921, - 16276 - ]], - [[ - 17922, - 16275, - 16274 - ]], - [[ - 16276, - 17921, - 16274 - ]], - [[ - 17923, - 17920, - 16275 - ]], - [[ - 17924, - 17923, - 16275 - ]], - [[ - 17925, - 17924, - 16275 - ]], - [[ - 17926, - 17925, - 16275 - ]], - [[ - 17927, - 17926, - 16275 - ]], - [[ - 17922, - 17927, - 16275 - ]], - [[ - 17928, - 17922, - 16274 - ]], - [[ - 17921, - 17928, - 16274 - ]], - [[ - 17921, - 17929, - 17928 - ]], - [[ - 17921, - 17930, - 17929 - ]], - [[ - 17921, - 17931, - 17930 - ]], - [[ - 17932, - 17933, - 17931 - ]], - [[ - 17934, - 17935, - 17933 - ]], - [[ - 17936, - 17937, - 17935 - ]], - [[ - 17938, - 17939, - 17937 - ]], - [[ - 17940, - 17941, - 17939 - ]], - [[ - 17942, - 17943, - 17941 - ]], - [[ - 17944, - 17945, - 17943 - ]], - [[ - 17946, - 17947, - 17945 - ]], - [[ - 17948, - 17949, - 17947 - ]], - [[ - 17950, - 17951, - 17949 - ]], - [[ - 17952, - 17953, - 17951 - ]], - [[ - 17954, - 17955, - 17953 - ]], - [[ - 17956, - 17957, - 17955 - ]], - [[ - 17919, - 17958, - 17957 - ]], - [[ - 17917, - 17919, - 17957 - ]], - [[ - 16270, - 17915, - 16279 - ]], - [[ - 17959, - 17917, - 17957 - ]], - [[ - 17960, - 17959, - 17957 - ]], - [[ - 17961, - 17960, - 17957 - ]], - [[ - 17962, - 17961, - 17957 - ]], - [[ - 17963, - 17962, - 17957 - ]], - [[ - 17964, - 17963, - 17957 - ]], - [[ - 17956, - 17964, - 17957 - ]], - [[ - 17954, - 17956, - 17955 - ]], - [[ - 17952, - 17954, - 17953 - ]], - [[ - 17950, - 17952, - 17951 - ]], - [[ - 17948, - 17950, - 17949 - ]], - [[ - 17946, - 17948, - 17947 - ]], - [[ - 17944, - 17946, - 17945 - ]], - [[ - 17942, - 17944, - 17943 - ]], - [[ - 17940, - 17942, - 17941 - ]], - [[ - 17938, - 17940, - 17939 - ]], - [[ - 17936, - 17938, - 17937 - ]], - [[ - 17934, - 17936, - 17935 - ]], - [[ - 17932, - 17934, - 17933 - ]], - [[ - 17921, - 17932, - 17931 - ]], - [[ - 17921, - 17965, - 17932 - ]], - [[ - 17966, - 17967, - 17965 - ]], - [[ - 17968, - 17966, - 17965 - ]], - [[ - 17969, - 17968, - 17965 - ]], - [[ - 17970, - 17969, - 17965 - ]], - [[ - 17971, - 17972, - 17969 - ]], - [[ - 17971, - 17973, - 17972 - ]], - [[ - 17974, - 17971, - 17969 - ]], - [[ - 17974, - 17975, - 17971 - ]], - [[ - 17976, - 17974, - 17969 - ]], - [[ - 17976, - 17977, - 17974 - ]], - [[ - 17976, - 17978, - 17977 - ]], - [[ - 17976, - 17979, - 17978 - ]], - [[ - 17970, - 17976, - 17969 - ]], - [[ - 17980, - 17981, - 17976 - ]], - [[ - 17970, - 17980, - 17976 - ]], - [[ - 17921, - 17970, - 17965 - ]], - [[ - 17982, - 17983, - 17970 - ]], - [[ - 17921, - 17982, - 17970 - ]], - [[ - 17916, - 17921, - 16272 - ]], - [[ - 16270, - 17984, - 17915 - ]], - [[ - 16285, - 17985, - 16269 - ]], - [[ - 16285, - 16286, - 16830 - ]], - [[ - 16270, - 17986, - 17984 - ]], - [[ - 17986, - 16270, - 17987 - ]], - [[ - 17986, - 17987, - 17988 - ]], - [[ - 16270, - 17914, - 17987 - ]], - [[ - 16269, - 17985, - 17914 - ]], - [[ - 16286, - 16287, - 16846 - ]], - [[ - 17985, - 16285, - 17989 - ]], - [[ - 17989, - 16285, - 17990 - ]], - [[ - 17990, - 16285, - 16830 - ]], - [[ - 16830, - 16286, - 16831 - ]], - [[ - 16831, - 16286, - 16853 - ]], - [[ - 16853, - 16286, - 16852 - ]], - [[ - 16852, - 16286, - 16851 - ]], - [[ - 16851, - 16286, - 16850 - ]], - [[ - 16850, - 16286, - 16849 - ]], - [[ - 16849, - 16286, - 16848 - ]], - [[ - 16848, - 16286, - 16847 - ]], - [[ - 16847, - 16286, - 16846 - ]], - [[ - 16846, - 16287, - 16845 - ]], - [[ - 16845, - 16287, - 16844 - ]], - [[ - 16844, - 16287, - 16843 - ]], - [[ - 16843, - 16287, - 16842 - ]], - [[ - 16842, - 16287, - 16841 - ]], - [[ - 16841, - 16287, - 16840 - ]], - [[ - 16839, - 16840, - 17991 - ]], - [[ - 16838, - 16839, - 17991 - ]], - [[ - 16832, - 16838, - 17991 - ]], - [[ - 16837, - 16832, - 17991 - ]], - [[ - 16836, - 16837, - 17991 - ]], - [[ - 17869, - 16835, - 16834 - ]], - [[ - 16834, - 16836, - 17868 - ]], - [[ - 16833, - 16835, - 17859 - ]], - [[ - 17858, - 16833, - 17859 - ]], - [[ - 17859, - 16835, - 17863 - ]], - [[ - 17863, - 16835, - 17869 - ]], - [[ - 17869, - 16834, - 17868 - ]], - [[ - 17868, - 16836, - 17867 - ]], - [[ - 17867, - 16836, - 17991 - ]], - [[ - 17866, - 17867, - 17991 - ]], - [[ - 17864, - 17866, - 17991 - ]], - [[ - 17865, - 17864, - 17991 - ]], - [[ - 17865, - 17991, - 17992 - ]], - [[ - 16840, - 16287, - 17991 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baef46f44-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17260, - 16287, - 17259 - ]], - [[ - 17259, - 16287, - 16288 - ]], - [[ - 17260, - 17991, - 16287 - ]], - [[ - 17260, - 17261, - 17991 - ]], - [[ - 17991, - 17261, - 17992 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baefcac78-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17046, - 17045, - 14305 - ]], - [[ - 14285, - 17047, - 14305 - ]], - [[ - 17048, - 15792, - 15785 - ]], - [[ - 14305, - 17047, - 17046 - ]], - [[ - 14285, - 15792, - 17048 - ]], - [[ - 17045, - 17048, - 15785 - ]], - [[ - 17047, - 14285, - 17048 - ]], - [[ - 14305, - 17045, - 15785 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baefd21e7-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef345349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16026, - 16093, - 16114 - ]], - [[ - 16093, - 16113, - 16114 - ]], - [[ - 16113, - 16093, - 16111 - ]], - [[ - 16111, - 16093, - 16112 - ]], - [[ - 16112, - 16093, - 16106 - ]], - [[ - 16106, - 16093, - 16110 - ]], - [[ - 16110, - 16093, - 16107 - ]], - [[ - 16107, - 16093, - 16109 - ]], - [[ - 16109, - 16093, - 16108 - ]], - [[ - 16108, - 16093, - 16103 - ]], - [[ - 16103, - 16093, - 16104 - ]], - [[ - 16104, - 16093, - 16105 - ]], - [[ - 16105, - 16093, - 16099 - ]], - [[ - 16099, - 16093, - 16100 - ]], - [[ - 16100, - 16093, - 16102 - ]], - [[ - 16102, - 16093, - 16101 - ]], - [[ - 16101, - 16093, - 16098 - ]], - [[ - 16098, - 16093, - 16096 - ]], - [[ - 16096, - 16093, - 16097 - ]], - [[ - 16097, - 16093, - 16095 - ]], - [[ - 16095, - 16093, - 16080 - ]], - [[ - 16080, - 16093, - 16025 - ]], - [[ - 16093, - 16081, - 16025 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf005617-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef4e49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16787, - 11877, - 16316 - ]], - [[ - 16313, - 16315, - 17561 - ]], - [[ - 17561, - 16315, - 15473 - ]], - [[ - 11879, - 16785, - 16784 - ]], - [[ - 16315, - 15472, - 15473 - ]], - [[ - 11877, - 15472, - 16316 - ]], - [[ - 17563, - 16314, - 16313 - ]], - [[ - 16316, - 15472, - 16315 - ]], - [[ - 17562, - 16313, - 17561 - ]], - [[ - 17562, - 17563, - 16313 - ]], - [[ - 11879, - 11877, - 16786 - ]], - [[ - 16787, - 16786, - 11877 - ]], - [[ - 16785, - 11879, - 16786 - ]], - [[ - 16314, - 16787, - 16316 - ]], - [[ - 16314, - 17563, - 16784 - ]], - [[ - 16314, - 16784, - 16787 - ]], - [[ - 17563, - 11879, - 16784 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf00f2b1-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef344949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15746, - 12536, - 17565 - ]], - [[ - 15746, - 17565, - 15742 - ]], - [[ - 12536, - 12538, - 17565 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf01b573-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef33c249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16300, - 16299, - 16302 - ]], - [[ - 16300, - 16302, - 16309 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf03b16f-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef5b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16872, - 16974, - 16892 - ]], - [[ - 16974, - 16871, - 16892 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf03b17b-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17910, - 17912, - 17913 - ]], - [[ - 17910, - 17913, - 17911 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf053805-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eebe0649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16000, - 15999, - 16021 - ]], - [[ - 16000, - 16028, - 16344 - ]], - [[ - 16056, - 16057, - 15910 - ]], - [[ - 16973, - 16028, - 16891 - ]], - [[ - 16890, - 16891, - 16028 - ]], - [[ - 16889, - 16890, - 16028 - ]], - [[ - 16888, - 16889, - 16051 - ]], - [[ - 16887, - 16888, - 16051 - ]], - [[ - 16886, - 16887, - 16051 - ]], - [[ - 16885, - 16886, - 16051 - ]], - [[ - 16884, - 16885, - 16051 - ]], - [[ - 16883, - 16884, - 16051 - ]], - [[ - 16882, - 16883, - 15910 - ]], - [[ - 16881, - 16882, - 15910 - ]], - [[ - 16880, - 16881, - 15910 - ]], - [[ - 16879, - 16880, - 15910 - ]], - [[ - 16878, - 16879, - 15910 - ]], - [[ - 16877, - 16878, - 15910 - ]], - [[ - 16876, - 16877, - 15910 - ]], - [[ - 16875, - 15910, - 15909 - ]], - [[ - 16874, - 15910, - 16875 - ]], - [[ - 16874, - 16876, - 15910 - ]], - [[ - 15910, - 16883, - 16051 - ]], - [[ - 16345, - 16028, - 16973 - ]], - [[ - 15910, - 16055, - 16056 - ]], - [[ - 15910, - 16053, - 16055 - ]], - [[ - 15910, - 16054, - 16053 - ]], - [[ - 15910, - 16052, - 16054 - ]], - [[ - 16051, - 16889, - 16028 - ]], - [[ - 15910, - 16050, - 16052 - ]], - [[ - 16345, - 16344, - 16028 - ]], - [[ - 16050, - 15910, - 16051 - ]], - [[ - 16028, - 16000, - 16021 - ]], - [[ - 16026, - 16021, - 16894 - ]], - [[ - 16093, - 16026, - 15881 - ]], - [[ - 16136, - 16093, - 16972 - ]], - [[ - 16946, - 16136, - 16972 - ]], - [[ - 16972, - 16093, - 15881 - ]], - [[ - 15856, - 16972, - 15881 - ]], - [[ - 16026, - 16894, - 15881 - ]], - [[ - 16021, - 16896, - 16894 - ]], - [[ - 16021, - 15999, - 16896 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf05864c-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef6349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 2838, - 3009, - 3011 - ]], - [[ - 16661, - 16662, - 1074 - ]], - [[ - 2842, - 16653, - 2848 - ]], - [[ - 16653, - 2854, - 2856 - ]], - [[ - 16653, - 1092, - 2854 - ]], - [[ - 16662, - 16663, - 1074 - ]], - [[ - 16664, - 16049, - 1074 - ]], - [[ - 1091, - 16652, - 1090 - ]], - [[ - 1090, - 16652, - 1089 - ]], - [[ - 1089, - 16652, - 1088 - ]], - [[ - 1088, - 16652, - 1087 - ]], - [[ - 1087, - 16652, - 1086 - ]], - [[ - 1086, - 16652, - 1085 - ]], - [[ - 1085, - 16654, - 1084 - ]], - [[ - 1084, - 16654, - 1082 - ]], - [[ - 1082, - 16654, - 1081 - ]], - [[ - 1081, - 16655, - 1080 - ]], - [[ - 1080, - 16655, - 1079 - ]], - [[ - 1079, - 16655, - 1078 - ]], - [[ - 1078, - 16655, - 1077 - ]], - [[ - 16655, - 1075, - 1076 - ]], - [[ - 16655, - 1074, - 1075 - ]], - [[ - 1077, - 16655, - 1076 - ]], - [[ - 16665, - 16057, - 16049 - ]], - [[ - 16664, - 16665, - 16049 - ]], - [[ - 16663, - 16664, - 1074 - ]], - [[ - 1092, - 16652, - 1091 - ]], - [[ - 2848, - 16653, - 2856 - ]], - [[ - 2838, - 3011, - 2842 - ]], - [[ - 1074, - 16660, - 16661 - ]], - [[ - 1074, - 16658, - 16660 - ]], - [[ - 1074, - 16659, - 16658 - ]], - [[ - 1074, - 16657, - 16659 - ]], - [[ - 1074, - 16656, - 16657 - ]], - [[ - 1074, - 16655, - 16656 - ]], - [[ - 1081, - 16654, - 16655 - ]], - [[ - 1085, - 16652, - 16654 - ]], - [[ - 1092, - 16653, - 16652 - ]], - [[ - 6859, - 6860, - 16649 - ]], - [[ - 16651, - 6859, - 16649 - ]], - [[ - 16758, - 6858, - 16651 - ]], - [[ - 16651, - 6858, - 6859 - ]], - [[ - 16759, - 16758, - 16651 - ]], - [[ - 3007, - 3006, - 16759 - ]], - [[ - 3006, - 6818, - 16759 - ]], - [[ - 16651, - 3007, - 16759 - ]], - [[ - 16653, - 3007, - 16651 - ]], - [[ - 16653, - 3011, - 3007 - ]], - [[ - 16653, - 2842, - 3011 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf067030-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef344d49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 14738, - 14237, - 14748 - ]], - [[ - 14237, - 14234, - 14748 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf06be8c-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef32d349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 15421, - 11769, - 15442 - ]], - [[ - 11769, - 11793, - 15442 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf084513-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16085, - 16094, - 16091 - ]], - [[ - 16094, - 16135, - 16091 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf0b7934-00c9-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eee4b249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16777, - 8312, - 17806 - ]], - [[ - 17806, - 8312, - 17887 - ]], - [[ - 8356, - 16777, - 8353 - ]], - [[ - 17886, - 17887, - 8312 - ]], - [[ - 17885, - 17886, - 8312 - ]], - [[ - 17884, - 17885, - 8312 - ]], - [[ - 17883, - 17884, - 8312 - ]], - [[ - 17882, - 17883, - 8312 - ]], - [[ - 17881, - 17882, - 8312 - ]], - [[ - 17880, - 17881, - 8312 - ]], - [[ - 17879, - 17880, - 8312 - ]], - [[ - 17878, - 17879, - 8312 - ]], - [[ - 17877, - 17878, - 8312 - ]], - [[ - 17871, - 17877, - 8312 - ]], - [[ - 17876, - 17871, - 8312 - ]], - [[ - 17875, - 17876, - 8312 - ]], - [[ - 17874, - 17875, - 8312 - ]], - [[ - 17873, - 17874, - 8312 - ]], - [[ - 17872, - 17873, - 8312 - ]], - [[ - 16082, - 17872, - 8312 - ]], - [[ - 8312, - 16777, - 8336 - ]], - [[ - 8336, - 16777, - 8333 - ]], - [[ - 8335, - 8336, - 8334 - ]], - [[ - 8336, - 8333, - 8334 - ]], - [[ - 8353, - 16777, - 783 - ]], - [[ - 8333, - 16777, - 8332 - ]], - [[ - 8332, - 16777, - 8356 - ]], - [[ - 8355, - 8356, - 8354 - ]], - [[ - 8356, - 8353, - 8354 - ]], - [[ - 783, - 16777, - 782 - ]], - [[ - 8353, - 783, - 747 - ]], - [[ - 16777, - 16778, - 841 - ]], - [[ - 842, - 16777, - 841 - ]], - [[ - 781, - 782, - 779 - ]], - [[ - 781, - 779, - 780 - ]], - [[ - 782, - 16777, - 779 - ]], - [[ - 779, - 16777, - 778 - ]], - [[ - 778, - 16777, - 845 - ]], - [[ - 844, - 845, - 843 - ]], - [[ - 845, - 842, - 843 - ]], - [[ - 845, - 16777, - 842 - ]], - [[ - 841, - 16778, - 548 - ]], - [[ - 535, - 841, - 548 - ]], - [[ - 7323, - 16778, - 7322 - ]], - [[ - 547, - 548, - 546 - ]], - [[ - 548, - 545, - 546 - ]], - [[ - 548, - 16778, - 545 - ]], - [[ - 545, - 16778, - 544 - ]], - [[ - 544, - 16778, - 7299 - ]], - [[ - 7298, - 7299, - 7296 - ]], - [[ - 7298, - 7296, - 7297 - ]], - [[ - 7299, - 16778, - 7296 - ]], - [[ - 7296, - 7323, - 7294 - ]], - [[ - 7296, - 16778, - 7323 - ]], - [[ - 7534, - 16778, - 7533 - ]], - [[ - 7321, - 7322, - 7320 - ]], - [[ - 7322, - 7319, - 7320 - ]], - [[ - 7322, - 16778, - 7319 - ]], - [[ - 7319, - 16778, - 7317 - ]], - [[ - 7317, - 16778, - 7537 - ]], - [[ - 7536, - 7537, - 7534 - ]], - [[ - 7536, - 7534, - 7535 - ]], - [[ - 7537, - 16778, - 7534 - ]], - [[ - 7533, - 16778, - 7504 - ]], - [[ - 7515, - 7533, - 7504 - ]], - [[ - 7504, - 16778, - 7509 - ]], - [[ - 7449, - 7509, - 16760 - ]], - [[ - 16764, - 7475, - 7476 - ]], - [[ - 7476, - 7449, - 16760 - ]], - [[ - 7474, - 7475, - 7473 - ]], - [[ - 7473, - 7475, - 7472 - ]], - [[ - 16764, - 7471, - 7472 - ]], - [[ - 7472, - 7475, - 16764 - ]], - [[ - 7470, - 7471, - 7469 - ]], - [[ - 16764, - 7468, - 7471 - ]], - [[ - 7469, - 7471, - 7468 - ]], - [[ - 16764, - 7467, - 7468 - ]], - [[ - 7466, - 7467, - 7464 - ]], - [[ - 17857, - 7464, - 7467 - ]], - [[ - 7465, - 7466, - 7464 - ]], - [[ - 17857, - 7463, - 7464 - ]], - [[ - 7462, - 7463, - 7461 - ]], - [[ - 17857, - 7460, - 7463 - ]], - [[ - 7461, - 7463, - 7460 - ]], - [[ - 17857, - 7459, - 7460 - ]], - [[ - 16618, - 7459, - 17857 - ]], - [[ - 17857, - 7467, - 16764 - ]], - [[ - 7476, - 16760, - 16764 - ]], - [[ - 7509, - 16778, - 16760 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "baf3f295d-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef68e749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 3243, - 3242, - 3234 - ]], - [[ - 3243, - 3234, - 3398 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "baf3f2966-2d29-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef663a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 5950, - 5945, - 17993 - ]], - [[ - 5945, - 17994, - 17993 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "bbdc52a89-00b3-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "stuw", - "bronhouder": "W0372", - "creationdate": "", - "inonderzoek": "", - "lokaalid": "G0503.032e68f09ead49cce0532ee22091b28c", - "lv_publicatiedatum": "", - "namespace": "NL.IMGeo", - "plus_status": "", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "", - "tijdstipregistratie": "" - }, - "geometry": [{ - "boundaries": [ - [[ - 17076, - 17634, - 17077 - ]], - [[ - 17634, - 17635, - 17077 - ]], - [[ - 17080, - 17636, - 17076 - ]], - [[ - 17076, - 17636, - 17634 - ]], - [[ - 17637, - 17081, - 17635 - ]], - [[ - 17635, - 17081, - 17077 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "bdce6a385-fd58-11e5-8acc-1fc21a78c5fd": { - "attributes": { - "bgt_fysiekvoorkomen": "gesloten verharding", - "bgt_status": "bestaand", - "bronhouder": "P0028", - "creationdate": "2013-08-07", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "P0028.97986f98d554454a8a839c15b513a8e4", - "lv_publicatiedatum": "2015-11-30T11:11:19.000", - "namespace": "NL.IMGeo", - "onbegroeidterreindeeloptalud": "0", - "plus_fysiekvoorkomen": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2015-11-27T10:24:41.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17995, - 17996, - 17997 - ]], - [[ - 17998, - 5486, - 4891 - ]], - [[ - 17999, - 18000, - 4891 - ]], - [[ - 17996, - 5486, - 17998 - ]], - [[ - 18000, - 18001, - 4891 - ]], - [[ - 17997, - 11244, - 11217 - ]], - [[ - 11244, - 17999, - 4891 - ]], - [[ - 11244, - 18002, - 17999 - ]], - [[ - 18003, - 18004, - 17998 - ]], - [[ - 11217, - 5486, - 18005 - ]], - [[ - 18001, - 17998, - 4891 - ]], - [[ - 18001, - 18002, - 18006 - ]], - [[ - 18000, - 18002, - 18001 - ]], - [[ - 18000, - 17999, - 18002 - ]], - [[ - 18001, - 18003, - 17998 - ]], - [[ - 18006, - 11244, - 18004 - ]], - [[ - 18007, - 17995, - 17997 - ]], - [[ - 18008, - 18004, - 17997 - ]], - [[ - 18009, - 17995, - 18007 - ]], - [[ - 17996, - 18010, - 17997 - ]], - [[ - 18005, - 18007, - 11217 - ]], - [[ - 18005, - 18009, - 18007 - ]], - [[ - 18010, - 17996, - 17998 - ]], - [[ - 18009, - 5486, - 17996 - ]], - [[ - 17995, - 18009, - 17996 - ]], - [[ - 18005, - 5486, - 18009 - ]], - [[ - 17998, - 18008, - 18010 - ]], - [[ - 18004, - 11244, - 17997 - ]], - [[ - 17998, - 18004, - 18008 - ]], - [[ - 18003, - 18001, - 18006 - ]], - [[ - 18003, - 18006, - 18004 - ]], - [[ - 18002, - 11244, - 18006 - ]], - [[ - 18007, - 17997, - 11217 - ]], - [[ - 18010, - 18008, - 17997 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "LandUse" - }, - "be252b118-2d37-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "kademuur", - "bronhouder": "W0372", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f09a6949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 18011, - 18012, - 18013 - ]], - [[ - 18011, - 18013, - 18014 - ]], - [[ - 18015, - 18016, - 18011 - ]], - [[ - 18011, - 18016, - 18012 - ]], - [[ - 18017, - 18015, - 18014 - ]], - [[ - 18014, - 18015, - 18011 - ]], - [[ - 18018, - 18017, - 18013 - ]], - [[ - 18013, - 18017, - 18014 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "be2539be1-2d37-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bgt_type": "kademuur", - "bronhouder": "W0372", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f0986649cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-06-06T07:57:13.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 4964, - 18019, - 18012 - ]], - [[ - 4964, - 18020, - 11518 - ]], - [[ - 4964, - 18012, - 18020 - ]], - [[ - 18019, - 18013, - 18012 - ]], - [[ - 18019, - 18021, - 18013 - ]], - [[ - 18019, - 18022, - 18021 - ]], - [[ - 18021, - 18022, - 30 - ]], - [[ - 28, - 30, - 5621 - ]], - [[ - 28, - 18023, - 29 - ]], - [[ - 18023, - 28, - 5621 - ]], - [[ - 30, - 18022, - 5621 - ]], - [[ - 4965, - 4964, - 11518 - ]], - [[ - 11511, - 11518, - 18020 - ]], - [[ - 18016, - 11521, - 18012 - ]], - [[ - 18012, - 11521, - 11511 - ]], - [[ - 18012, - 11511, - 18020 - ]], - [[ - 18024, - 18018, - 18021 - ]], - [[ - 18021, - 18018, - 18013 - ]], - [[ - 15, - 18024, - 30 - ]], - [[ - 30, - 18024, - 18021 - ]], - [[ - 13, - 15, - 28 - ]], - [[ - 28, - 15, - 30 - ]], - [[ - 11, - 13, - 27 - ]], - [[ - 27, - 13, - 29 - ]], - [[ - 29, - 13, - 28 - ]], - [[ - 5643, - 27, - 18023 - ]], - [[ - 18023, - 27, - 29 - ]], - [[ - 5621, - 5643, - 18023 - ]], - [[ - 4804, - 5621, - 18022 - ]], - [[ - 4805, - 4804, - 18019 - ]], - [[ - 18019, - 4804, - 18022 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "+GenericCityObject" - }, - "bea630875-00b8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "dek", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoortbijtypeoverbrugging": "waardeOnbekend", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f09d6f49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "overbruggingisbeweegbaar": "0", - "plus_status": "geenWaarde", - "relatievehoogteligging": "1", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 18025, - 17793, - 17261 - ]], - [[ - 18025, - 17263, - 17793 - ]], - [[ - 17793, - 18026, - 17261 - ]], - [[ - 18027, - 18028, - 18029 - ]], - [[ - 18030, - 18026, - 18031 - ]], - [[ - 18032, - 18033, - 18034 - ]], - [[ - 18028, - 18030, - 18035 - ]], - [[ - 18033, - 18027, - 18036 - ]], - [[ - 18034, - 18033, - 18036 - ]], - [[ - 18036, - 18027, - 18029 - ]], - [[ - 18029, - 18028, - 18035 - ]], - [[ - 18035, - 18030, - 18031 - ]], - [[ - 18031, - 18026, - 18037 - ]], - [[ - 18037, - 18026, - 18038 - ]], - [[ - 18038, - 18026, - 17793 - ]], - [[ - 17248, - 17263, - 18025 - ]], - [[ - 17247, - 17263, - 17248 - ]], - [[ - 17250, - 18025, - 17261 - ]], - [[ - 17248, - 18025, - 17250 - ]], - [[ - 17992, - 17261, - 18026 - ]], - [[ - 17865, - 18026, - 18030 - ]], - [[ - 17992, - 18026, - 17865 - ]], - [[ - 17860, - 18030, - 18028 - ]], - [[ - 17865, - 18030, - 17860 - ]], - [[ - 17862, - 18028, - 18027 - ]], - [[ - 17860, - 18028, - 17862 - ]], - [[ - 15954, - 18029, - 18035 - ]], - [[ - 15953, - 18029, - 15954 - ]], - [[ - 17812, - 18035, - 18031 - ]], - [[ - 15954, - 18035, - 17812 - ]], - [[ - 17699, - 18031, - 18037 - ]], - [[ - 17812, - 18031, - 17699 - ]], - [[ - 17695, - 18037, - 18038 - ]], - [[ - 17699, - 18037, - 17695 - ]], - [[ - 17696, - 18038, - 17793 - ]], - [[ - 17695, - 18038, - 17696 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Bridge" - }, - "bea632f90-00b8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "class": "dek", - "creationdate": "2014-07-09", - "eindregistratie": "", - "hoortbijtypeoverbrugging": "waardeOnbekend", - "inonderzoek": "0", - "lokaalid": "G0503.032e68f09df249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "overbruggingisbeweegbaar": "0", - "plus_status": "geenWaarde", - "relatievehoogteligging": "1", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17797, - 18039, - 18040 - ]], - [[ - 17797, - 16206, - 18039 - ]], - [[ - 18039, - 16202, - 16264 - ]], - [[ - 16268, - 18041, - 1051 - ]], - [[ - 16202, - 18039, - 16206 - ]], - [[ - 16206, - 17797, - 16205 - ]], - [[ - 16205, - 17797, - 16268 - ]], - [[ - 16203, - 16205, - 16268 - ]], - [[ - 16261, - 16203, - 16256 - ]], - [[ - 16255, - 16261, - 16256 - ]], - [[ - 16203, - 16268, - 16256 - ]], - [[ - 17797, - 18041, - 16268 - ]], - [[ - 16262, - 16256, - 16268 - ]], - [[ - 1045, - 1051, - 18041 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Bridge" - }, - "bedab6302-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "W0372", - "class": "waterloop", - "creationdate": "2014-07-09", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eff33a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-03-15T12:02:49.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 18042, - 17361, - 17362 - ]], - [[ - 18043, - 18044, - 17171 - ]], - [[ - 16268, - 1045, - 17171 - ]], - [[ - 1054, - 17170, - 17171 - ]], - [[ - 1045, - 1051, - 17171 - ]], - [[ - 17171, - 1051, - 1054 - ]], - [[ - 17797, - 1046, - 1045 - ]], - [[ - 17801, - 17559, - 17560 - ]], - [[ - 1046, - 17798, - 17560 - ]], - [[ - 17558, - 17559, - 17770 - ]], - [[ - 17774, - 17557, - 17773 - ]], - [[ - 17556, - 17557, - 17776 - ]], - [[ - 17778, - 17554, - 17555 - ]], - [[ - 17555, - 17556, - 17777 - ]], - [[ - 17780, - 17552, - 17553 - ]], - [[ - 17553, - 17554, - 17779 - ]], - [[ - 17780, - 17551, - 17552 - ]], - [[ - 17780, - 17550, - 17551 - ]], - [[ - 17781, - 17549, - 17550 - ]], - [[ - 17781, - 17548, - 17549 - ]], - [[ - 17781, - 17547, - 17548 - ]], - [[ - 17781, - 17546, - 17547 - ]], - [[ - 17783, - 17545, - 17546 - ]], - [[ - 17784, - 17544, - 17545 - ]], - [[ - 17785, - 17543, - 17544 - ]], - [[ - 17786, - 17542, - 17543 - ]], - [[ - 17787, - 17541, - 17542 - ]], - [[ - 17788, - 17540, - 17541 - ]], - [[ - 17788, - 17539, - 17540 - ]], - [[ - 17789, - 17538, - 17539 - ]], - [[ - 17790, - 17537, - 17538 - ]], - [[ - 17536, - 17537, - 17790 - ]], - [[ - 17265, - 17534, - 17535 - ]], - [[ - 17535, - 17536, - 17264 - ]], - [[ - 17081, - 17532, - 17534 - ]], - [[ - 17533, - 17532, - 17637 - ]], - [[ - 17637, - 17532, - 17081 - ]], - [[ - 17081, - 17534, - 17082 - ]], - [[ - 17082, - 17534, - 17265 - ]], - [[ - 17265, - 17535, - 17264 - ]], - [[ - 17264, - 17536, - 17263 - ]], - [[ - 17262, - 17264, - 17263 - ]], - [[ - 17263, - 17536, - 17793 - ]], - [[ - 17793, - 17536, - 17792 - ]], - [[ - 17792, - 17536, - 17791 - ]], - [[ - 17791, - 17536, - 17790 - ]], - [[ - 17790, - 17538, - 17789 - ]], - [[ - 17789, - 17539, - 17788 - ]], - [[ - 17788, - 17541, - 17787 - ]], - [[ - 17787, - 17542, - 17786 - ]], - [[ - 17786, - 17543, - 17785 - ]], - [[ - 17785, - 17544, - 17784 - ]], - [[ - 17784, - 17545, - 17783 - ]], - [[ - 17783, - 17546, - 17782 - ]], - [[ - 17782, - 17546, - 17781 - ]], - [[ - 17781, - 17550, - 17780 - ]], - [[ - 17780, - 17553, - 17779 - ]], - [[ - 17779, - 17554, - 17778 - ]], - [[ - 17778, - 17555, - 17777 - ]], - [[ - 18045, - 18046, - 17174 - ]], - [[ - 17777, - 17556, - 17776 - ]], - [[ - 17776, - 17557, - 17774 - ]], - [[ - 17776, - 17774, - 17775 - ]], - [[ - 17557, - 17558, - 17772 - ]], - [[ - 17773, - 17557, - 17772 - ]], - [[ - 17772, - 17558, - 17771 - ]], - [[ - 17771, - 17558, - 17769 - ]], - [[ - 17769, - 17558, - 17770 - ]], - [[ - 17371, - 17372, - 17171 - ]], - [[ - 17770, - 17559, - 17801 - ]], - [[ - 17801, - 17560, - 17800 - ]], - [[ - 17800, - 17560, - 17798 - ]], - [[ - 18047, - 18048, - 18042 - ]], - [[ - 17799, - 17800, - 17798 - ]], - [[ - 1046, - 17797, - 17798 - ]], - [[ - 1045, - 16268, - 17797 - ]], - [[ - 18049, - 17178, - 17179 - ]], - [[ - 16268, - 17171, - 16266 - ]], - [[ - 16266, - 17171, - 17372 - ]], - [[ - 16267, - 16266, - 17372 - ]], - [[ - 17370, - 17371, - 17171 - ]], - [[ - 17369, - 17370, - 17171 - ]], - [[ - 17368, - 17369, - 17171 - ]], - [[ - 17171, - 17367, - 17368 - ]], - [[ - 17171, - 17366, - 17367 - ]], - [[ - 17171, - 17365, - 17366 - ]], - [[ - 17171, - 18050, - 17365 - ]], - [[ - 17365, - 18051, - 17364 - ]], - [[ - 18052, - 17180, - 17181 - ]], - [[ - 17363, - 17364, - 18053 - ]], - [[ - 17362, - 17363, - 18054 - ]], - [[ - 18042, - 17360, - 17361 - ]], - [[ - 18042, - 17359, - 17360 - ]], - [[ - 17356, - 17358, - 17359 - ]], - [[ - 17356, - 17357, - 17358 - ]], - [[ - 18055, - 17175, - 17176 - ]], - [[ - 17355, - 17357, - 17356 - ]], - [[ - 17174, - 17175, - 18045 - ]], - [[ - 17356, - 17359, - 18042 - ]], - [[ - 17174, - 18046, - 17173 - ]], - [[ - 18042, - 17362, - 18054 - ]], - [[ - 18056, - 18047, - 18042 - ]], - [[ - 18054, - 18056, - 18042 - ]], - [[ - 18057, - 18054, - 17363 - ]], - [[ - 18053, - 18057, - 17363 - ]], - [[ - 18051, - 18053, - 17364 - ]], - [[ - 18050, - 18051, - 17365 - ]], - [[ - 18058, - 18050, - 17171 - ]], - [[ - 18059, - 18058, - 17171 - ]], - [[ - 17172, - 18060, - 17171 - ]], - [[ - 17171, - 18061, - 18059 - ]], - [[ - 17171, - 18062, - 18061 - ]], - [[ - 17171, - 18063, - 18062 - ]], - [[ - 17171, - 18064, - 18063 - ]], - [[ - 17171, - 18044, - 18064 - ]], - [[ - 17172, - 17173, - 18046 - ]], - [[ - 17177, - 18065, - 17176 - ]], - [[ - 17171, - 18060, - 18043 - ]], - [[ - 17177, - 17178, - 18066 - ]], - [[ - 18055, - 18045, - 17175 - ]], - [[ - 18060, - 18067, - 18068 - ]], - [[ - 18060, - 17172, - 18067 - ]], - [[ - 17179, - 17180, - 18049 - ]], - [[ - 18046, - 18067, - 17172 - ]], - [[ - 18065, - 18055, - 17176 - ]], - [[ - 18069, - 18065, - 17177 - ]], - [[ - 18069, - 17177, - 18066 - ]], - [[ - 18066, - 17178, - 18049 - ]], - [[ - 18049, - 17180, - 18052 - ]], - [[ - 17183, - 17181, - 17182 - ]], - [[ - 18070, - 18052, - 18071 - ]], - [[ - 18072, - 18071, - 18073 - ]], - [[ - 18074, - 18072, - 18073 - ]], - [[ - 18075, - 18074, - 18073 - ]], - [[ - 18076, - 18077, - 18078 - ]], - [[ - 18079, - 18076, - 18080 - ]], - [[ - 18081, - 18079, - 18082 - ]], - [[ - 18083, - 18081, - 18084 - ]], - [[ - 18081, - 18085, - 18084 - ]], - [[ - 18081, - 18082, - 18085 - ]], - [[ - 18079, - 18080, - 18082 - ]], - [[ - 18077, - 18086, - 18087 - ]], - [[ - 18076, - 18078, - 18080 - ]], - [[ - 18077, - 18087, - 18078 - ]], - [[ - 18086, - 18088, - 18089 - ]], - [[ - 18086, - 18089, - 18087 - ]], - [[ - 18088, - 18075, - 18089 - ]], - [[ - 18075, - 18090, - 18089 - ]], - [[ - 18075, - 18073, - 18090 - ]], - [[ - 18071, - 17185, - 18073 - ]], - [[ - 18071, - 17184, - 17185 - ]], - [[ - 18071, - 18052, - 17183 - ]], - [[ - 18071, - 17183, - 17184 - ]], - [[ - 18052, - 17181, - 17183 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "WaterBody" - }, - "bedabd859-00c8-11e6-b420-2bdcc4ab5d7f": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "W0372", - "class": "waterloop", - "creationdate": "2015-04-22", - "eindregistratie": "", - "inonderzoek": "0", - "lokaalid": "G0503.016d65723c70442d8abf815e2dc165cd", - "lv_publicatiedatum": "2016-04-12T11:54:23.000", - "namespace": "NL.IMGeo", - "plus_status": "geenWaarde", - "plus_type": "waardeOnbekend", - "relatievehoogteligging": "0", - "terminationdate": "", - "tijdstipregistratie": "2016-04-10T04:15:11.000" - }, - "geometry": [{ - "boundaries": [ - [[ - 17636, - 17080, - 17254 - ]], - [[ - 17636, - 17256, - 17531 - ]], - [[ - 19, - 18, - 1 - ]], - [[ - 17530, - 2, - 17529 - ]], - [[ - 17528, - 2, - 20 - ]], - [[ - 17528, - 19, - 1 - ]], - [[ - 6, - 4, - 5 - ]], - [[ - 5, - 4, - 7 - ]], - [[ - 11, - 7, - 10 - ]], - [[ - 18091, - 18017, - 18092 - ]], - [[ - 13, - 11, - 18093 - ]], - [[ - 15, - 13, - 14 - ]], - [[ - 18024, - 18017, - 18018 - ]], - [[ - 14, - 18024, - 15 - ]], - [[ - 18092, - 18017, - 18024 - ]], - [[ - 18016, - 18015, - 11521 - ]], - [[ - 11521, - 18015, - 18094 - ]], - [[ - 11521, - 18095, - 11522 - ]], - [[ - 11521, - 18096, - 18095 - ]], - [[ - 11521, - 18097, - 18096 - ]], - [[ - 18096, - 18098, - 18099 - ]], - [[ - 18098, - 18096, - 18097 - ]], - [[ - 18098, - 18097, - 18100 - ]], - [[ - 18092, - 18024, - 14 - ]], - [[ - 11521, - 18101, - 18097 - ]], - [[ - 11521, - 18094, - 18101 - ]], - [[ - 18015, - 18091, - 18094 - ]], - [[ - 18094, - 18091, - 18102 - ]], - [[ - 18015, - 18017, - 18091 - ]], - [[ - 4, - 9, - 7 - ]], - [[ - 16, - 3, - 8 - ]], - [[ - 18092, - 14, - 18103 - ]], - [[ - 3, - 1, - 8 - ]], - [[ - 13, - 18093, - 14 - ]], - [[ - 11, - 10, - 18093 - ]], - [[ - 7, - 9, - 10 - ]], - [[ - 16, - 17, - 9 - ]], - [[ - 4, - 16, - 9 - ]], - [[ - 4, - 3, - 16 - ]], - [[ - 17258, - 20, - 17257 - ]], - [[ - 1, - 18, - 8 - ]], - [[ - 2, - 17530, - 17257 - ]], - [[ - 20, - 19, - 17528 - ]], - [[ - 17531, - 17256, - 17530 - ]], - [[ - 2, - 17257, - 20 - ]], - [[ - 17530, - 17256, - 17257 - ]], - [[ - 17636, - 17255, - 17256 - ]], - [[ - 17636, - 17254, - 17255 - ]], - [[ - 17254, - 17080, - 17079 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "WaterBody" - }, - "bfce80032-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef6449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 18104, - 18105, - 18106 - ]], - [[ - 18104, - 18106, - 18107 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfce91150-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 5643, - 5642, - 27 - ]], - [[ - 5642, - 26, - 27 - ]], - [[ - 5642, - 16769, - 26 - ]], - [[ - 7, - 11, - 26 - ]], - [[ - 26, - 11, - 27 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfce93872-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 18108, - 18109, - 18110 - ]], - [[ - 18108, - 18110, - 18111 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfce95fa3-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca8849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 9780, - 5952, - 18110 - ]], - [[ - 9780, - 16979, - 9773 - ]], - [[ - 18110, - 18109, - 17807 - ]], - [[ - 17994, - 18112, - 18113 - ]], - [[ - 17807, - 18113, - 17808 - ]], - [[ - 17808, - 18113, - 18114 - ]], - [[ - 18114, - 18115, - 18116 - ]], - [[ - 18114, - 18117, - 18115 - ]], - [[ - 18114, - 18113, - 18117 - ]], - [[ - 18117, - 18118, - 18119 - ]], - [[ - 18117, - 18120, - 18118 - ]], - [[ - 18117, - 18121, - 18120 - ]], - [[ - 18120, - 18121, - 18122 - ]], - [[ - 18122, - 18121, - 18123 - ]], - [[ - 18123, - 18121, - 18124 - ]], - [[ - 18117, - 18113, - 18121 - ]], - [[ - 18121, - 18113, - 18125 - ]], - [[ - 18125, - 18126, - 18127 - ]], - [[ - 18125, - 18128, - 18126 - ]], - [[ - 18125, - 18129, - 18128 - ]], - [[ - 18128, - 18130, - 18131 - ]], - [[ - 18131, - 18130, - 18132 - ]], - [[ - 18128, - 18129, - 18130 - ]], - [[ - 18130, - 18129, - 18133 - ]], - [[ - 18125, - 18113, - 18129 - ]], - [[ - 17994, - 5945, - 5944 - ]], - [[ - 17994, - 5944, - 18112 - ]], - [[ - 18108, - 17993, - 17994 - ]], - [[ - 17993, - 18111, - 5950 - ]], - [[ - 18113, - 18109, - 17994 - ]], - [[ - 17807, - 18109, - 18113 - ]], - [[ - 17807, - 16979, - 18110 - ]], - [[ - 9780, - 18110, - 16979 - ]], - [[ - 18111, - 17993, - 18108 - ]], - [[ - 5952, - 18111, - 18110 - ]], - [[ - 5952, - 5950, - 18111 - ]], - [[ - 18109, - 18108, - 17994 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcea2371-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef229849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 9282, - 9545, - 3440 - ]], - [[ - 9545, - 9503, - 3440 - ]], - [[ - 3950, - 17007, - 3949 - ]], - [[ - 3949, - 17009, - 3948 - ]], - [[ - 3948, - 17010, - 3458 - ]], - [[ - 17003, - 3440, - 3478 - ]], - [[ - 17000, - 3478, - 3538 - ]], - [[ - 3478, - 17000, - 17003 - ]], - [[ - 9503, - 9770, - 3440 - ]], - [[ - 3903, - 16783, - 17013 - ]], - [[ - 3458, - 17000, - 3475 - ]], - [[ - 3951, - 17006, - 3950 - ]], - [[ - 9278, - 9282, - 3440 - ]], - [[ - 9274, - 9278, - 3440 - ]], - [[ - 9273, - 9274, - 3440 - ]], - [[ - 17003, - 9273, - 3440 - ]], - [[ - 17003, - 9272, - 9273 - ]], - [[ - 17003, - 9271, - 9272 - ]], - [[ - 17003, - 9269, - 9271 - ]], - [[ - 3437, - 17004, - 3951 - ]], - [[ - 9269, - 17003, - 9265 - ]], - [[ - 9264, - 9265, - 17003 - ]], - [[ - 9263, - 9264, - 17003 - ]], - [[ - 9262, - 9263, - 17003 - ]], - [[ - 9261, - 9262, - 17003 - ]], - [[ - 9258, - 9261, - 17003 - ]], - [[ - 9257, - 9258, - 17003 - ]], - [[ - 9256, - 9257, - 17003 - ]], - [[ - 9254, - 17003, - 9249 - ]], - [[ - 9249, - 17003, - 9247 - ]], - [[ - 3475, - 17000, - 3538 - ]], - [[ - 9254, - 9256, - 17003 - ]], - [[ - 3437, - 3434, - 17012 - ]], - [[ - 17000, - 3458, - 17010 - ]], - [[ - 17010, - 3948, - 17009 - ]], - [[ - 17009, - 3949, - 17007 - ]], - [[ - 17007, - 3950, - 17006 - ]], - [[ - 17006, - 3951, - 17004 - ]], - [[ - 17004, - 3437, - 17012 - ]], - [[ - 17012, - 3434, - 17013 - ]], - [[ - 18134, - 16780, - 16783 - ]], - [[ - 18135, - 18134, - 16783 - ]], - [[ - 18136, - 18135, - 16783 - ]], - [[ - 18137, - 18136, - 16783 - ]], - [[ - 18138, - 18137, - 16783 - ]], - [[ - 18139, - 18138, - 16783 - ]], - [[ - 18140, - 18139, - 16783 - ]], - [[ - 18141, - 18140, - 16783 - ]], - [[ - 18142, - 18141, - 16783 - ]], - [[ - 18143, - 18142, - 16783 - ]], - [[ - 18144, - 18143, - 16783 - ]], - [[ - 18145, - 18144, - 16783 - ]], - [[ - 18146, - 18145, - 16783 - ]], - [[ - 18147, - 18146, - 16783 - ]], - [[ - 18148, - 18147, - 16783 - ]], - [[ - 18149, - 18148, - 16783 - ]], - [[ - 18150, - 18149, - 16783 - ]], - [[ - 18151, - 18150, - 16783 - ]], - [[ - 18152, - 18151, - 16783 - ]], - [[ - 18153, - 18152, - 16783 - ]], - [[ - 18154, - 18153, - 16783 - ]], - [[ - 3903, - 18154, - 16783 - ]], - [[ - 3903, - 18155, - 18154 - ]], - [[ - 3903, - 18156, - 18155 - ]], - [[ - 3903, - 18157, - 18156 - ]], - [[ - 3903, - 18158, - 18157 - ]], - [[ - 18159, - 18160, - 18158 - ]], - [[ - 18161, - 18159, - 18158 - ]], - [[ - 18161, - 18162, - 18159 - ]], - [[ - 18161, - 18163, - 18162 - ]], - [[ - 18164, - 18161, - 18158 - ]], - [[ - 18165, - 18166, - 18161 - ]], - [[ - 18167, - 18165, - 18161 - ]], - [[ - 18164, - 18167, - 18161 - ]], - [[ - 18164, - 18168, - 18167 - ]], - [[ - 18169, - 18164, - 18158 - ]], - [[ - 18169, - 18170, - 18164 - ]], - [[ - 18169, - 18171, - 18170 - ]], - [[ - 18172, - 18169, - 18158 - ]], - [[ - 18173, - 18174, - 18169 - ]], - [[ - 18173, - 18175, - 18174 - ]], - [[ - 18176, - 18173, - 18169 - ]], - [[ - 18176, - 18177, - 18173 - ]], - [[ - 18178, - 18176, - 18169 - ]], - [[ - 18178, - 18179, - 18176 - ]], - [[ - 18178, - 18180, - 18179 - ]], - [[ - 18178, - 18181, - 18180 - ]], - [[ - 18172, - 18178, - 18169 - ]], - [[ - 18182, - 18183, - 18178 - ]], - [[ - 18178, - 18172, - 18182 - ]], - [[ - 18184, - 18182, - 18172 - ]], - [[ - 18172, - 18158, - 3903 - ]], - [[ - 3434, - 3903, - 17013 - ]], - [[ - 18185, - 18172, - 3903 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcea4a8a-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eedb4949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "verkeersdrempel", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 17019, - 9243, - 9247 - ]], - [[ - 9247, - 17003, - 17002 - ]], - [[ - 17019, - 9247, - 17002 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcea70b2-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-11-03", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.c76f5d580cb14842ba0da04e1433d2ef", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 18186, - 18187, - 6423 - ]], - [[ - 18188, - 5944, - 5943 - ]], - [[ - 18188, - 18112, - 5944 - ]], - [[ - 5953, - 18189, - 5943 - ]], - [[ - 18190, - 18188, - 5943 - ]], - [[ - 18191, - 18190, - 5943 - ]], - [[ - 18192, - 18191, - 5943 - ]], - [[ - 18193, - 18192, - 5943 - ]], - [[ - 18194, - 18193, - 5943 - ]], - [[ - 18195, - 18194, - 5943 - ]], - [[ - 18189, - 18195, - 5943 - ]], - [[ - 18196, - 18189, - 5953 - ]], - [[ - 18197, - 18196, - 5953 - ]], - [[ - 18198, - 18197, - 5953 - ]], - [[ - 18199, - 18198, - 5953 - ]], - [[ - 18200, - 18199, - 5953 - ]], - [[ - 18201, - 18200, - 5953 - ]], - [[ - 18202, - 18201, - 5953 - ]], - [[ - 18203, - 18202, - 5953 - ]], - [[ - 18204, - 18203, - 5953 - ]], - [[ - 18205, - 18204, - 5953 - ]], - [[ - 18206, - 18205, - 5953 - ]], - [[ - 18207, - 18206, - 5953 - ]], - [[ - 18208, - 18207, - 5953 - ]], - [[ - 18209, - 18208, - 5953 - ]], - [[ - 6423, - 18209, - 5953 - ]], - [[ - 6423, - 18187, - 18209 - ]], - [[ - 6176, - 18186, - 6423 - ]], - [[ - 18210, - 18211, - 18186 - ]], - [[ - 6176, - 18210, - 18186 - ]], - [[ - 18212, - 5937, - 18107 - ]], - [[ - 5937, - 18210, - 6176 - ]], - [[ - 18104, - 5932, - 18105 - ]], - [[ - 18212, - 18210, - 5937 - ]], - [[ - 18213, - 18212, - 18214 - ]], - [[ - 18214, - 18212, - 18215 - ]], - [[ - 18216, - 18214, - 18215 - ]], - [[ - 18217, - 18216, - 18215 - ]], - [[ - 18215, - 18212, - 18218 - ]], - [[ - 18219, - 18215, - 18220 - ]], - [[ - 18221, - 18219, - 18220 - ]], - [[ - 18220, - 18215, - 18218 - ]], - [[ - 18222, - 18220, - 18218 - ]], - [[ - 18218, - 18212, - 18223 - ]], - [[ - 18224, - 18218, - 18225 - ]], - [[ - 18226, - 18224, - 18225 - ]], - [[ - 18225, - 18218, - 18227 - ]], - [[ - 18228, - 18225, - 18227 - ]], - [[ - 18227, - 18218, - 18229 - ]], - [[ - 18230, - 18227, - 18229 - ]], - [[ - 18229, - 18218, - 18223 - ]], - [[ - 18231, - 18229, - 18223 - ]], - [[ - 18232, - 18231, - 18223 - ]], - [[ - 18223, - 18212, - 16762 - ]], - [[ - 18233, - 18223, - 16762 - ]], - [[ - 18234, - 18233, - 16762 - ]], - [[ - 16762, - 18212, - 18107 - ]], - [[ - 18106, - 18105, - 5932 - ]], - [[ - 18106, - 5932, - 18235 - ]], - [[ - 17856, - 18106, - 18235 - ]], - [[ - 18104, - 5937, - 5932 - ]], - [[ - 16763, - 18106, - 17856 - ]], - [[ - 16763, - 18107, - 18106 - ]], - [[ - 16763, - 16762, - 18107 - ]], - [[ - 18107, - 5937, - 18104 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcea97e3-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca8149cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16769, - 25, - 26 - ]], - [[ - 5, - 7, - 25 - ]], - [[ - 25, - 7, - 26 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcea97e9-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca8249cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16400, - 16390, - 18236 - ]], - [[ - 16392, - 16400, - 18236 - ]], - [[ - 16398, - 16392, - 18236 - ]], - [[ - 18237, - 16394, - 18236 - ]], - [[ - 18236, - 16399, - 16398 - ]], - [[ - 18236, - 16394, - 16399 - ]], - [[ - 18237, - 16397, - 16394 - ]], - [[ - 18237, - 11378, - 11380 - ]], - [[ - 16397, - 18237, - 11380 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfceae630-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef0c3449cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "tegels", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 18238, - 3349, - 3266 - ]], - [[ - 18238, - 3220, - 3219 - ]], - [[ - 18238, - 3266, - 3220 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfceb347d-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eed11849cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "verkeersdrempel", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 18236, - 16390, - 16770 - ]], - [[ - 16403, - 16382, - 16770 - ]], - [[ - 16384, - 16403, - 16770 - ]], - [[ - 16402, - 16384, - 16770 - ]], - [[ - 16386, - 16402, - 16770 - ]], - [[ - 16401, - 16386, - 16770 - ]], - [[ - 16388, - 16401, - 16770 - ]], - [[ - 16390, - 16388, - 16770 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcebaa0a-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef172349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "asfalt", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "gesloten verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 9284, - 9226, - 4220 - ]], - [[ - 9253, - 9252, - 4009 - ]], - [[ - 9221, - 9219, - 3966 - ]], - [[ - 4022, - 4026, - 9198 - ]], - [[ - 9298, - 4013, - 3980 - ]], - [[ - 4034, - 4033, - 9189 - ]], - [[ - 9339, - 3298, - 3301 - ]], - [[ - 9246, - 3301, - 3973 - ]], - [[ - 3301, - 3302, - 3973 - ]], - [[ - 4016, - 4015, - 9461 - ]], - [[ - 9225, - 9396, - 4181 - ]], - [[ - 4015, - 4019, - 9469 - ]], - [[ - 9339, - 9244, - 3298 - ]], - [[ - 4182, - 9515, - 4296 - ]], - [[ - 9461, - 4015, - 9469 - ]], - [[ - 3973, - 4296, - 9236 - ]], - [[ - 9253, - 4009, - 4008 - ]], - [[ - 3307, - 4453, - 4801 - ]], - [[ - 3320, - 4360, - 4365 - ]], - [[ - 4355, - 4350, - 3335 - ]], - [[ - 4354, - 4355, - 3335 - ]], - [[ - 3327, - 4350, - 4356 - ]], - [[ - 5461, - 5465, - 3275 - ]], - [[ - 5476, - 5461, - 3348 - ]], - [[ - 3406, - 5471, - 5656 - ]], - [[ - 3352, - 5896, - 5847 - ]], - [[ - 5912, - 5612, - 3402 - ]], - [[ - 5540, - 5912, - 3402 - ]], - [[ - 5538, - 5540, - 3378 - ]], - [[ - 5609, - 5538, - 3378 - ]], - [[ - 5693, - 5609, - 3375 - ]], - [[ - 5632, - 5693, - 3376 - ]], - [[ - 5633, - 5632, - 3256 - ]], - [[ - 5618, - 5633, - 3257 - ]], - [[ - 5619, - 5618, - 18239 - ]], - [[ - 5619, - 18239, - 18237 - ]], - [[ - 5618, - 3257, - 18239 - ]], - [[ - 5633, - 3256, - 3257 - ]], - [[ - 3249, - 5890, - 5575 - ]], - [[ - 5632, - 3376, - 3256 - ]], - [[ - 5612, - 5890, - 3429 - ]], - [[ - 5574, - 3404, - 5575 - ]], - [[ - 3376, - 5693, - 3375 - ]], - [[ - 5609, - 3378, - 3375 - ]], - [[ - 5574, - 5896, - 3241 - ]], - [[ - 3429, - 3402, - 5612 - ]], - [[ - 3378, - 5540, - 3402 - ]], - [[ - 5848, - 3353, - 5847 - ]], - [[ - 3351, - 5655, - 5645 - ]], - [[ - 5890, - 3249, - 3429 - ]], - [[ - 3413, - 5479, - 5472 - ]], - [[ - 5575, - 3404, - 3249 - ]], - [[ - 5848, - 5479, - 3353 - ]], - [[ - 5471, - 3415, - 5472 - ]], - [[ - 3404, - 5574, - 3241 - ]], - [[ - 5896, - 3352, - 3241 - ]], - [[ - 5656, - 5655, - 3407 - ]], - [[ - 3413, - 3353, - 5479 - ]], - [[ - 3352, - 5847, - 3353 - ]], - [[ - 3415, - 3413, - 5472 - ]], - [[ - 5651, - 3219, - 5645 - ]], - [[ - 5471, - 3406, - 3415 - ]], - [[ - 5656, - 3407, - 3406 - ]], - [[ - 5651, - 5649, - 3349 - ]], - [[ - 5655, - 3351, - 3407 - ]], - [[ - 5649, - 5476, - 3270 - ]], - [[ - 5645, - 3219, - 3351 - ]], - [[ - 5651, - 18238, - 3219 - ]], - [[ - 3348, - 3270, - 5476 - ]], - [[ - 5651, - 3349, - 18238 - ]], - [[ - 3341, - 5468, - 4343 - ]], - [[ - 5649, - 3270, - 3349 - ]], - [[ - 5465, - 5468, - 3347 - ]], - [[ - 4342, - 3341, - 4343 - ]], - [[ - 3346, - 4351, - 4352 - ]], - [[ - 5461, - 3273, - 3348 - ]], - [[ - 4342, - 4351, - 3346 - ]], - [[ - 4353, - 3370, - 4352 - ]], - [[ - 3273, - 5461, - 3275 - ]], - [[ - 5465, - 3347, - 3275 - ]], - [[ - 4353, - 4354, - 3335 - ]], - [[ - 3287, - 4800, - 4404 - ]], - [[ - 3347, - 5468, - 3341 - ]], - [[ - 4342, - 3346, - 3341 - ]], - [[ - 4356, - 4360, - 3323 - ]], - [[ - 4800, - 3320, - 4365 - ]], - [[ - 3346, - 4352, - 3370 - ]], - [[ - 4453, - 3317, - 4404 - ]], - [[ - 3370, - 4353, - 3335 - ]], - [[ - 3323, - 3327, - 4356 - ]], - [[ - 3335, - 4350, - 3327 - ]], - [[ - 4681, - 3307, - 4801 - ]], - [[ - 3312, - 4802, - 4768 - ]], - [[ - 4360, - 3320, - 3323 - ]], - [[ - 4681, - 4802, - 3312 - ]], - [[ - 3320, - 4800, - 3287 - ]], - [[ - 4404, - 3317, - 3287 - ]], - [[ - 4453, - 3288, - 3317 - ]], - [[ - 4453, - 3307, - 3288 - ]], - [[ - 4768, - 4477, - 3309 - ]], - [[ - 4681, - 3312, - 3307 - ]], - [[ - 4477, - 4340, - 3309 - ]], - [[ - 4768, - 3311, - 3312 - ]], - [[ - 4340, - 3983, - 3303 - ]], - [[ - 4768, - 3309, - 3311 - ]], - [[ - 4340, - 3310, - 3309 - ]], - [[ - 4340, - 3303, - 3310 - ]], - [[ - 3983, - 3973, - 3302 - ]], - [[ - 3303, - 3983, - 3305 - ]], - [[ - 3305, - 3983, - 3300 - ]], - [[ - 3300, - 3983, - 3304 - ]], - [[ - 3304, - 3983, - 3302 - ]], - [[ - 3966, - 3965, - 9221 - ]], - [[ - 9244, - 3299, - 3298 - ]], - [[ - 9246, - 9339, - 3301 - ]], - [[ - 4181, - 9231, - 4182 - ]], - [[ - 3973, - 9236, - 9246 - ]], - [[ - 9284, - 4220, - 4000 - ]], - [[ - 4296, - 9515, - 9236 - ]], - [[ - 4181, - 4220, - 9225 - ]], - [[ - 9396, - 9231, - 4181 - ]], - [[ - 9515, - 4182, - 9231 - ]], - [[ - 3996, - 9379, - 4000 - ]], - [[ - 9226, - 9225, - 4220 - ]], - [[ - 4009, - 9260, - 3996 - ]], - [[ - 9379, - 9284, - 4000 - ]], - [[ - 9295, - 9379, - 3996 - ]], - [[ - 9260, - 9295, - 3996 - ]], - [[ - 3966, - 9219, - 4008 - ]], - [[ - 4009, - 9252, - 9260 - ]], - [[ - 3965, - 4014, - 9220 - ]], - [[ - 4013, - 9306, - 4014 - ]], - [[ - 4008, - 9223, - 9253 - ]], - [[ - 9299, - 4017, - 4018 - ]], - [[ - 4008, - 9218, - 9223 - ]], - [[ - 3980, - 4017, - 9297 - ]], - [[ - 9218, - 4008, - 9219 - ]], - [[ - 9306, - 9220, - 4014 - ]], - [[ - 9221, - 3965, - 9220 - ]], - [[ - 9212, - 9306, - 4013 - ]], - [[ - 4011, - 9462, - 4018 - ]], - [[ - 4013, - 9298, - 9212 - ]], - [[ - 3980, - 9297, - 9298 - ]], - [[ - 4011, - 4016, - 9461 - ]], - [[ - 9297, - 4017, - 9299 - ]], - [[ - 9299, - 4018, - 9462 - ]], - [[ - 9462, - 4011, - 9461 - ]], - [[ - 9469, - 4019, - 9185 - ]], - [[ - 9185, - 4019, - 4020 - ]], - [[ - 9186, - 9185, - 4020 - ]], - [[ - 9197, - 9186, - 4021 - ]], - [[ - 4026, - 9192, - 9198 - ]], - [[ - 9198, - 9197, - 4022 - ]], - [[ - 4058, - 9190, - 9192 - ]], - [[ - 4307, - 4046, - 9183 - ]], - [[ - 9190, - 4053, - 9191 - ]], - [[ - 4053, - 9189, - 9191 - ]], - [[ - 4060, - 9170, - 9180 - ]], - [[ - 4046, - 9179, - 9183 - ]], - [[ - 4029, - 9171, - 9170 - ]], - [[ - 9169, - 9171, - 9774 - ]], - [[ - 9318, - 9169, - 9777 - ]], - [[ - 9778, - 9318, - 9776 - ]], - [[ - 9776, - 9318, - 9777 - ]], - [[ - 9777, - 9169, - 9774 - ]], - [[ - 9774, - 9171, - 4029 - ]], - [[ - 9775, - 9774, - 4028 - ]], - [[ - 9771, - 9775, - 4028 - ]], - [[ - 9772, - 9771, - 4028 - ]], - [[ - 9772, - 4028, - 4308 - ]], - [[ - 9180, - 9179, - 4045 - ]], - [[ - 4033, - 9187, - 9189 - ]], - [[ - 4028, - 9774, - 4029 - ]], - [[ - 9182, - 4307, - 9183 - ]], - [[ - 4029, - 9170, - 4060 - ]], - [[ - 9180, - 4057, - 4060 - ]], - [[ - 9182, - 9187, - 4307 - ]], - [[ - 4057, - 9180, - 4045 - ]], - [[ - 4045, - 9179, - 4046 - ]], - [[ - 4033, - 4307, - 9187 - ]], - [[ - 4053, - 4034, - 9189 - ]], - [[ - 4054, - 4053, - 9190 - ]], - [[ - 4058, - 4054, - 9190 - ]], - [[ - 4026, - 4058, - 9192 - ]], - [[ - 4022, - 9197, - 4021 - ]], - [[ - 4021, - 9186, - 4020 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcec6cc0-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca8749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 9318, - 18240, - 9178 - ]], - [[ - 18241, - 9778, - 9773 - ]], - [[ - 18240, - 9318, - 18242 - ]], - [[ - 3510, - 3737, - 18240 - ]], - [[ - 3511, - 3510, - 18180 - ]], - [[ - 3903, - 3511, - 18185 - ]], - [[ - 18185, - 3511, - 18172 - ]], - [[ - 18172, - 3511, - 18184 - ]], - [[ - 18184, - 3511, - 18182 - ]], - [[ - 18182, - 3511, - 18183 - ]], - [[ - 18183, - 3511, - 18178 - ]], - [[ - 18178, - 3511, - 18181 - ]], - [[ - 18181, - 3511, - 18180 - ]], - [[ - 18180, - 3510, - 18179 - ]], - [[ - 18179, - 3510, - 18176 - ]], - [[ - 18176, - 3510, - 18177 - ]], - [[ - 18177, - 3510, - 18173 - ]], - [[ - 18173, - 3510, - 18175 - ]], - [[ - 18175, - 3510, - 18174 - ]], - [[ - 18174, - 3510, - 18240 - ]], - [[ - 18169, - 18174, - 18240 - ]], - [[ - 18171, - 18169, - 18240 - ]], - [[ - 18170, - 18171, - 18240 - ]], - [[ - 18164, - 18170, - 18240 - ]], - [[ - 18168, - 18164, - 18240 - ]], - [[ - 18165, - 18167, - 18240 - ]], - [[ - 18166, - 18165, - 18243 - ]], - [[ - 18161, - 18166, - 18243 - ]], - [[ - 18163, - 18161, - 18243 - ]], - [[ - 18162, - 18163, - 18243 - ]], - [[ - 18159, - 18162, - 18243 - ]], - [[ - 18160, - 18159, - 18243 - ]], - [[ - 18158, - 18160, - 18243 - ]], - [[ - 18157, - 18158, - 18243 - ]], - [[ - 18156, - 18157, - 18243 - ]], - [[ - 18155, - 18156, - 18154 - ]], - [[ - 18154, - 18156, - 18153 - ]], - [[ - 18153, - 18156, - 18151 - ]], - [[ - 18152, - 18153, - 18151 - ]], - [[ - 18151, - 18156, - 18137 - ]], - [[ - 18150, - 18151, - 18148 - ]], - [[ - 18149, - 18150, - 18148 - ]], - [[ - 18148, - 18151, - 18146 - ]], - [[ - 18147, - 18148, - 18146 - ]], - [[ - 18146, - 18151, - 18137 - ]], - [[ - 18145, - 18146, - 18142 - ]], - [[ - 18144, - 18145, - 18143 - ]], - [[ - 18143, - 18145, - 18142 - ]], - [[ - 18142, - 18146, - 18140 - ]], - [[ - 18141, - 18142, - 18140 - ]], - [[ - 18140, - 18146, - 18137 - ]], - [[ - 18139, - 18140, - 18137 - ]], - [[ - 18138, - 18139, - 18137 - ]], - [[ - 18137, - 18156, - 16780 - ]], - [[ - 18136, - 18137, - 16780 - ]], - [[ - 18135, - 18136, - 16780 - ]], - [[ - 18134, - 18135, - 16780 - ]], - [[ - 16780, - 18156, - 16782 - ]], - [[ - 18242, - 9318, - 9778 - ]], - [[ - 16979, - 18241, - 9773 - ]], - [[ - 16782, - 18241, - 16979 - ]], - [[ - 16782, - 18156, - 18243 - ]], - [[ - 16782, - 18243, - 18241 - ]], - [[ - 18167, - 18168, - 18240 - ]], - [[ - 18165, - 18240, - 18243 - ]], - [[ - 3737, - 9178, - 18240 - ]], - [[ - 18241, - 18242, - 9778 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcece247-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eedb4a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "verkeersdrempel", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 3252, - 16804, - 3257 - ]], - [[ - 16804, - 16861, - 3257 - ]], - [[ - 3257, - 16861, - 18239 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcedf371-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef173a49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "asfalt", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "gesloten verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 4089, - 5923, - 4338 - ]], - [[ - 4087, - 4338, - 5941 - ]], - [[ - 6301, - 6060, - 4270 - ]], - [[ - 5931, - 3963, - 4084 - ]], - [[ - 6029, - 6302, - 4074 - ]], - [[ - 6060, - 4077, - 4270 - ]], - [[ - 9783, - 4062, - 9785 - ]], - [[ - 5986, - 5985, - 4067 - ]], - [[ - 9786, - 4023, - 5948 - ]], - [[ - 9781, - 9772, - 4308 - ]], - [[ - 5951, - 5952, - 9779 - ]], - [[ - 4023, - 4025, - 5948 - ]], - [[ - 4062, - 4023, - 9785 - ]], - [[ - 4062, - 9781, - 4308 - ]], - [[ - 4085, - 4086, - 5927 - ]], - [[ - 9783, - 9781, - 4062 - ]], - [[ - 5985, - 6265, - 4066 - ]], - [[ - 5974, - 4069, - 4075 - ]], - [[ - 6301, - 4270, - 3963 - ]], - [[ - 9785, - 4023, - 9786 - ]], - [[ - 4086, - 4087, - 5927 - ]], - [[ - 9784, - 9786, - 5949 - ]], - [[ - 9782, - 9784, - 5949 - ]], - [[ - 9779, - 9782, - 5951 - ]], - [[ - 9779, - 5952, - 9780 - ]], - [[ - 5949, - 5951, - 9782 - ]], - [[ - 4064, - 5960, - 4025 - ]], - [[ - 5992, - 4063, - 4065 - ]], - [[ - 9786, - 5948, - 5949 - ]], - [[ - 4064, - 4063, - 5956 - ]], - [[ - 5960, - 5946, - 4025 - ]], - [[ - 5948, - 4025, - 5946 - ]], - [[ - 4027, - 5992, - 4065 - ]], - [[ - 4064, - 6282, - 5960 - ]], - [[ - 5985, - 4066, - 4067 - ]], - [[ - 4064, - 5956, - 6282 - ]], - [[ - 4027, - 4066, - 6265 - ]], - [[ - 5956, - 4063, - 5992 - ]], - [[ - 5992, - 4027, - 6264 - ]], - [[ - 4027, - 6265, - 6264 - ]], - [[ - 4067, - 4069, - 5986 - ]], - [[ - 4074, - 6302, - 4075 - ]], - [[ - 4077, - 6029, - 4074 - ]], - [[ - 5986, - 4069, - 5974 - ]], - [[ - 5974, - 4075, - 6302 - ]], - [[ - 6060, - 6029, - 4077 - ]], - [[ - 4085, - 5929, - 4084 - ]], - [[ - 5931, - 6301, - 3963 - ]], - [[ - 4084, - 5929, - 5931 - ]], - [[ - 4085, - 5928, - 5929 - ]], - [[ - 4085, - 5927, - 5928 - ]], - [[ - 4087, - 5941, - 5927 - ]], - [[ - 4338, - 5923, - 5941 - ]], - [[ - 5923, - 4089, - 5922 - ]], - [[ - 5922, - 4089, - 5919 - ]], - [[ - 5919, - 4089, - 18244 - ]], - [[ - 5920, - 5919, - 18245 - ]], - [[ - 5918, - 5920, - 18246 - ]], - [[ - 5918, - 18246, - 5994 - ]], - [[ - 5920, - 18247, - 18246 - ]], - [[ - 5920, - 18245, - 18247 - ]], - [[ - 5919, - 18248, - 18245 - ]], - [[ - 18249, - 5919, - 18250 - ]], - [[ - 5919, - 18251, - 18248 - ]], - [[ - 4089, - 4088, - 18252 - ]], - [[ - 18251, - 5919, - 18253 - ]], - [[ - 18253, - 5919, - 18254 - ]], - [[ - 18254, - 5919, - 18249 - ]], - [[ - 18250, - 5919, - 18255 - ]], - [[ - 18255, - 5919, - 18256 - ]], - [[ - 18256, - 5919, - 18244 - ]], - [[ - 18244, - 4089, - 18257 - ]], - [[ - 18257, - 4089, - 18258 - ]], - [[ - 18258, - 4089, - 18259 - ]], - [[ - 18259, - 4089, - 18252 - ]], - [[ - 18252, - 4088, - 18260 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcee1a90-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeef9749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 18261, - 32, - 31 - ]], - [[ - 18261, - 31, - 17870 - ]], - [[ - 10, - 9, - 32 - ]], - [[ - 32, - 9, - 31 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfceeb72a-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeca8349cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 18239, - 16861, - 18237 - ]], - [[ - 16861, - 11378, - 18237 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfceeb730-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eed11b49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "verkeersdrempel", - "plus_fysiekvoorkomenwegdeel": "waardeOnbekend", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 16826, - 3294, - 16870 - ]], - [[ - 3294, - 3297, - 16870 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfceede58-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "parkeervlak", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef229c49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 18187, - 18186, - 18211 - ]], - [[ - 18187, - 16775, - 18209 - ]], - [[ - 18209, - 18207, - 18208 - ]], - [[ - 18209, - 18192, - 18207 - ]], - [[ - 18207, - 18204, - 18206 - ]], - [[ - 18206, - 18204, - 18205 - ]], - [[ - 18207, - 18201, - 18204 - ]], - [[ - 18204, - 18202, - 18203 - ]], - [[ - 18204, - 18201, - 18202 - ]], - [[ - 18207, - 18195, - 18201 - ]], - [[ - 18201, - 18198, - 18200 - ]], - [[ - 18200, - 18198, - 18199 - ]], - [[ - 18201, - 18195, - 18198 - ]], - [[ - 18198, - 18195, - 18197 - ]], - [[ - 18197, - 18189, - 18196 - ]], - [[ - 18197, - 18195, - 18189 - ]], - [[ - 18207, - 18194, - 18195 - ]], - [[ - 18207, - 18192, - 18194 - ]], - [[ - 18194, - 18192, - 18193 - ]], - [[ - 18209, - 18188, - 18192 - ]], - [[ - 18192, - 18190, - 18191 - ]], - [[ - 18192, - 18188, - 18190 - ]], - [[ - 18209, - 18112, - 18188 - ]], - [[ - 18209, - 18113, - 18112 - ]], - [[ - 18113, - 18209, - 16775 - ]], - [[ - 18129, - 18113, - 16775 - ]], - [[ - 18133, - 18129, - 16775 - ]], - [[ - 18130, - 18133, - 16775 - ]], - [[ - 18132, - 18130, - 16775 - ]], - [[ - 18131, - 18132, - 16775 - ]], - [[ - 18128, - 18131, - 16775 - ]], - [[ - 18126, - 18128, - 16775 - ]], - [[ - 18127, - 18126, - 16775 - ]], - [[ - 18125, - 18127, - 16775 - ]], - [[ - 18121, - 18125, - 16775 - ]], - [[ - 18124, - 18121, - 16775 - ]], - [[ - 18123, - 18124, - 16775 - ]], - [[ - 18122, - 18123, - 16775 - ]], - [[ - 18120, - 18122, - 16775 - ]], - [[ - 18118, - 18120, - 16775 - ]], - [[ - 18119, - 18118, - 16775 - ]], - [[ - 18117, - 18119, - 16775 - ]], - [[ - 18115, - 18117, - 16775 - ]], - [[ - 18116, - 18115, - 16775 - ]], - [[ - 18114, - 18116, - 16775 - ]], - [[ - 18114, - 16775, - 17808 - ]], - [[ - 18187, - 16776, - 16775 - ]], - [[ - 18218, - 18224, - 16761 - ]], - [[ - 18234, - 16762, - 16761 - ]], - [[ - 18233, - 18234, - 16761 - ]], - [[ - 18223, - 18233, - 16761 - ]], - [[ - 18232, - 18223, - 16761 - ]], - [[ - 18231, - 18232, - 16761 - ]], - [[ - 18229, - 18231, - 16761 - ]], - [[ - 18230, - 18229, - 16761 - ]], - [[ - 18227, - 18230, - 16761 - ]], - [[ - 18228, - 18227, - 16761 - ]], - [[ - 18225, - 18228, - 16761 - ]], - [[ - 18226, - 18225, - 16761 - ]], - [[ - 18224, - 18226, - 16761 - ]], - [[ - 16776, - 18213, - 16761 - ]], - [[ - 18222, - 18218, - 16761 - ]], - [[ - 18211, - 18212, - 16776 - ]], - [[ - 16761, - 18220, - 18222 - ]], - [[ - 16761, - 18221, - 18220 - ]], - [[ - 16761, - 18219, - 18221 - ]], - [[ - 16761, - 18215, - 18219 - ]], - [[ - 16761, - 18217, - 18215 - ]], - [[ - 16761, - 18216, - 18217 - ]], - [[ - 16761, - 18214, - 18216 - ]], - [[ - 16761, - 18213, - 18214 - ]], - [[ - 16776, - 18212, - 18213 - ]], - [[ - 18211, - 18210, - 18212 - ]], - [[ - 18187, - 18211, - 16776 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcef52cd-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "rijbaan lokale weg", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eec1fb49cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "betonstraatstenen", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 3297, - 3299, - 16870 - ]], - [[ - 3299, - 16869, - 16870 - ]], - [[ - 3299, - 9244, - 16869 - ]], - [[ - 16869, - 9243, - 17019 - ]], - [[ - 9243, - 16869, - 9244 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcf03dd2-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68ef173949cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "asfalt", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "gesloten verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 5641, - 5619, - 18237 - ]], - [[ - 5641, - 18236, - 5622 - ]], - [[ - 5622, - 16770, - 5623 - ]], - [[ - 5623, - 16770, - 5642 - ]], - [[ - 5642, - 16770, - 16769 - ]], - [[ - 5622, - 18236, - 16770 - ]], - [[ - 5641, - 18237, - 18236 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - }, - "bfcf03dd8-2d38-11e6-9a38-393caa90be70": { - "attributes": { - "bgt_status": "bestaand", - "bronhouder": "G0503", - "creationdate": "2014-07-09", - "eindregistratie": "", - "function": "voetpad", - "inonderzoek": "0", - "lokaalid": "G0503.032e68eeefa749cce0532ee22091b28c", - "lv_publicatiedatum": "2016-06-07T16:22:15.000", - "namespace": "NL.IMGeo", - "plus_functiewegdeel": "waardeOnbekend", - "plus_fysiekvoorkomenwegdeel": "gebakken klinkers", - "plus_status": "geenWaarde", - "relatievehoogteligging": "0", - "surfacematerial": "open verharding", - "terminationdate": "", - "tijdstipregistratie": "2016-05-17T13:43:18.000", - "wegdeeloptalud": "0" - }, - "geometry": [{ - "boundaries": [ - [[ - 18242, - 18241, - 18243 - ]], - [[ - 18242, - 18243, - 18240 - ]] - ], - "lod": "1", - "type": "MultiSurface" - }], - "type": "Road" - } - }, - "metadata": { - "geographicalExtent": [ - 84616.468, - 447422.999, - -0.452, - 85140.83899999999, - 447750.636, - 16.846 - ], - "referenceSystem": "https://www.opengis.net/def/crs/EPSG/0/7415" - }, - "type": "CityJSON", - "version": "1.1", - "vertices": [ - [ - 411283, - 25181, - 572 - ], - [ - 412163, - 27032, - 582 - ], - [ - 411755, - 27133, - 582 - ], - [ - 413571, - 26683, - 582 - ], - [ - 418114, - 25557, - 582 - ], - [ - 418511, - 26894, - 582 - ], - [ - 418448, - 26903, - 582 - ], - [ - 423464, - 25667, - 582 - ], - [ - 412434, - 22752, - 582 - ], - [ - 421953, - 19972, - 582 - ], - [ - 423347, - 19595, - 582 - ], - [ - 424894, - 25312, - 582 - ], - [ - 423565, - 19536, - 572 - ], - [ - 425113, - 25258, - 582 - ], - [ - 423782, - 19478, - 582 - ], - [ - 425331, - 25204, - 582 - ], - [ - 417108, - 21489, - 582 - ], - [ - 417055, - 21296, - 582 - ], - [ - 411229, - 23077, - 582 - ], - [ - 411030, - 23131, - 582 - ], - [ - 410823, - 23187, - 582 - ], - [ - 413571, - 26683, - 1562 - ], - [ - 412163, - 27032, - 1562 - ], - [ - 418114, - 25557, - 1632 - ], - [ - 418448, - 26903, - 1812 - ], - [ - 418511, - 26894, - 1812 - ], - [ - 423464, - 25667, - 1892 - ], - [ - 424894, - 25312, - 1902 - ], - [ - 425113, - 25258, - 1982 - ], - [ - 424894, - 25312, - 1962 - ], - [ - 425331, - 25204, - 1962 - ], - [ - 421953, - 19972, - 1712 - ], - [ - 423347, - 19595, - 1702 - ], - [ - 417055, - 21296, - 1842 - ], - [ - 417108, - 21489, - 1852 - ], - [ - 412434, - 22752, - 1872 - ], - [ - 411229, - 23077, - 1882 - ], - [ - 411030, - 23131, - 2422 - ], - [ - 411229, - 23077, - 2292 - ], - [ - 410823, - 23187, - 2422 - ], - [ - 393347, - 59669, - 6452 - ], - [ - 416101, - 61295, - 6452 - ], - [ - 424165, - 81601, - 6452 - ], - [ - 404992, - 53462, - 6452 - ], - [ - 405974, - 54155, - 6452 - ], - [ - 393184, - 59554, - 6452 - ], - [ - 389219, - 56732, - 6452 - ], - [ - 399010, - 49244, - 6452 - ], - [ - 397907, - 47100, - 6452 - ], - [ - 396015, - 40703, - 6452 - ], - [ - 396198, - 40656, - 6452 - ], - [ - 398196, - 48188, - 6452 - ], - [ - 386610, - 44619, - 6452 - ], - [ - 389578, - 42358, - 6452 - ], - [ - 399888, - 49863, - 6452 - ], - [ - 386278, - 42772, - 6452 - ], - [ - 389466, - 41932, - 6452 - ], - [ - 386243, - 43226, - 6452 - ], - [ - 385960, - 42856, - 6452 - ], - [ - 386011, - 43050, - 6452 - ], - [ - 386069, - 43272, - 6452 - ], - [ - 387926, - 58500, - 6452 - ], - [ - 383712, - 45382, - 6452 - ], - [ - 380026, - 44875, - 6452 - ], - [ - 383345, - 43990, - 6452 - ], - [ - 383461, - 43722, - 6452 - ], - [ - 383519, - 43944, - 6452 - ], - [ - 383101, - 43610, - 6452 - ], - [ - 383410, - 43528, - 6452 - ], - [ - 379913, - 44450, - 6452 - ], - [ - 385366, - 61644, - 6452 - ], - [ - 373646, - 46546, - 6452 - ], - [ - 373636, - 46516, - 6452 - ], - [ - 373220, - 46223, - 6452 - ], - [ - 373624, - 46486, - 6452 - ], - [ - 373556, - 46379, - 6452 - ], - [ - 373610, - 46458, - 6452 - ], - [ - 373594, - 46430, - 6452 - ], - [ - 373576, - 46404, - 6452 - ], - [ - 373461, - 46295, - 6452 - ], - [ - 373534, - 46356, - 6452 - ], - [ - 373511, - 46334, - 6452 - ], - [ - 373487, - 46314, - 6452 - ], - [ - 373433, - 46279, - 6452 - ], - [ - 373405, - 46265, - 6452 - ], - [ - 373283, - 46228, - 6452 - ], - [ - 373376, - 46252, - 6452 - ], - [ - 373345, - 46242, - 6452 - ], - [ - 373315, - 46234, - 6452 - ], - [ - 373252, - 46225, - 6452 - ], - [ - 373125, - 46233, - 6452 - ], - [ - 373188, - 46224, - 6452 - ], - [ - 373156, - 46228, - 6452 - ], - [ - 366829, - 47900, - 6452 - ], - [ - 385535, - 61769, - 6452 - ], - [ - 389122, - 59387, - 6452 - ], - [ - 386731, - 62656, - 6452 - ], - [ - 427205, - 83282, - 6452 - ], - [ - 428972, - 80753, - 6452 - ], - [ - 426922, - 83461, - 6452 - ], - [ - 427742, - 84047, - 6452 - ], - [ - 427925, - 83785, - 6452 - ], - [ - 423945, - 66825, - 6452 - ], - [ - 429692, - 81256, - 6452 - ], - [ - 429875, - 80994, - 6452 - ], - [ - 433996, - 76230, - 6452 - ], - [ - 430424, - 81368, - 6452 - ], - [ - 438993, - 67054, - 6452 - ], - [ - 439132, - 66863, - 6452 - ], - [ - 440005, - 67586, - 6452 - ], - [ - 439885, - 67759, - 6452 - ], - [ - 440045, - 67529, - 6452 - ], - [ - 433002, - 62836, - 6452 - ], - [ - 431881, - 62005, - 6452 - ], - [ - 433290, - 62427, - 6452 - ], - [ - 432149, - 61624, - 6452 - ], - [ - 428849, - 59870, - 6452 - ], - [ - 405974, - 54155, - 352 - ], - [ - 416101, - 61295, - 352 - ], - [ - 404992, - 53462, - 352 - ], - [ - 399888, - 49863, - 352 - ], - [ - 399010, - 49244, - 352 - ], - [ - 398196, - 48188, - 352 - ], - [ - 397907, - 47100, - 352 - ], - [ - 396198, - 40656, - 352 - ], - [ - 396015, - 40703, - 352 - ], - [ - 389578, - 42358, - 352 - ], - [ - 389466, - 41932, - 352 - ], - [ - 386278, - 42772, - 352 - ], - [ - 385960, - 42856, - 352 - ], - [ - 386011, - 43050, - 352 - ], - [ - 386069, - 43272, - 352 - ], - [ - 386243, - 43226, - 352 - ], - [ - 386610, - 44619, - 352 - ], - [ - 383712, - 45382, - 352 - ], - [ - 383345, - 43990, - 352 - ], - [ - 383519, - 43944, - 352 - ], - [ - 383461, - 43722, - 352 - ], - [ - 383410, - 43528, - 352 - ], - [ - 383101, - 43610, - 352 - ], - [ - 379913, - 44450, - 352 - ], - [ - 380026, - 44875, - 352 - ], - [ - 373646, - 46546, - 352 - ], - [ - 373636, - 46516, - 352 - ], - [ - 373624, - 46486, - 352 - ], - [ - 373610, - 46458, - 352 - ], - [ - 373594, - 46430, - 352 - ], - [ - 373576, - 46404, - 352 - ], - [ - 373556, - 46379, - 352 - ], - [ - 373534, - 46356, - 352 - ], - [ - 373511, - 46334, - 352 - ], - [ - 373487, - 46314, - 352 - ], - [ - 373461, - 46295, - 352 - ], - [ - 373433, - 46279, - 352 - ], - [ - 373405, - 46265, - 352 - ], - [ - 373376, - 46252, - 352 - ], - [ - 373345, - 46242, - 352 - ], - [ - 373315, - 46234, - 352 - ], - [ - 373283, - 46228, - 352 - ], - [ - 373252, - 46225, - 352 - ], - [ - 373220, - 46223, - 352 - ], - [ - 373188, - 46224, - 352 - ], - [ - 373156, - 46228, - 352 - ], - [ - 373125, - 46233, - 352 - ], - [ - 366829, - 47900, - 352 - ], - [ - 385366, - 61644, - 352 - ], - [ - 385535, - 61769, - 352 - ], - [ - 386731, - 62656, - 352 - ], - [ - 389122, - 59387, - 352 - ], - [ - 387926, - 58500, - 352 - ], - [ - 389219, - 56732, - 352 - ], - [ - 393184, - 59554, - 352 - ], - [ - 393347, - 59669, - 352 - ], - [ - 424165, - 81601, - 352 - ], - [ - 426922, - 83461, - 352 - ], - [ - 427742, - 84047, - 352 - ], - [ - 427925, - 83785, - 352 - ], - [ - 427205, - 83282, - 352 - ], - [ - 428972, - 80753, - 352 - ], - [ - 429692, - 81256, - 352 - ], - [ - 429875, - 80994, - 352 - ], - [ - 430424, - 81368, - 352 - ], - [ - 433996, - 76230, - 352 - ], - [ - 439885, - 67759, - 352 - ], - [ - 440005, - 67586, - 352 - ], - [ - 440045, - 67529, - 352 - ], - [ - 439132, - 66863, - 352 - ], - [ - 438993, - 67054, - 352 - ], - [ - 433002, - 62836, - 352 - ], - [ - 433290, - 62427, - 352 - ], - [ - 432149, - 61624, - 352 - ], - [ - 431881, - 62005, - 352 - ], - [ - 428849, - 59870, - 352 - ], - [ - 423945, - 66825, - 352 - ], - [ - 239127, - 126716, - 3342 - ], - [ - 236526, - 130339, - 3342 - ], - [ - 226148, - 117412, - 3342 - ], - [ - 225229, - 117961, - 3342 - ], - [ - 222235, - 119812, - 3342 - ], - [ - 225196, - 117911, - 3342 - ], - [ - 222043, - 119937, - 3342 - ], - [ - 222075, - 119915, - 3342 - ], - [ - 239127, - 126716, - 432 - ], - [ - 236526, - 130339, - 432 - ], - [ - 239127, - 126716, - 442 - ], - [ - 236526, - 130339, - 442 - ], - [ - 236526, - 130339, - 452 - ], - [ - 236526, - 130339, - 3322 - ], - [ - 226148, - 117412, - 432 - ], - [ - 226148, - 117412, - 442 - ], - [ - 225229, - 117961, - 432 - ], - [ - 225196, - 117911, - 432 - ], - [ - 222235, - 119812, - 432 - ], - [ - 222075, - 119915, - 432 - ], - [ - 222043, - 119937, - 432 - ], - [ - 222043, - 119937, - 452 - ], - [ - 222043, - 119937, - 3322 - ], - [ - 227727, - 127337, - 3322 - ], - [ - 236681, - 133773, - 3322 - ], - [ - 238272, - 131560, - 3322 - ], - [ - 225757, - 130078, - 3322 - ], - [ - 220489, - 120985, - 3322 - ], - [ - 217534, - 122981, - 3322 - ], - [ - 217751, - 122834, - 3322 - ], - [ - 217723, - 122793, - 3322 - ], - [ - 217511, - 122947, - 3322 - ], - [ - 216716, - 123533, - 3322 - ], - [ - 216499, - 123680, - 3322 - ], - [ - 216693, - 123500, - 3322 - ], - [ - 216477, - 123647, - 3322 - ], - [ - 227727, - 127337, - 452 - ], - [ - 225757, - 130078, - 452 - ], - [ - 225757, - 130078, - 482 - ], - [ - 225757, - 130078, - 2942 - ], - [ - 236681, - 133773, - 452 - ], - [ - 236681, - 133773, - 532 - ], - [ - 238272, - 131560, - 452 - ], - [ - 238272, - 131560, - 532 - ], - [ - 220489, - 120985, - 452 - ], - [ - 217751, - 122834, - 452 - ], - [ - 217723, - 122793, - 452 - ], - [ - 217511, - 122947, - 452 - ], - [ - 217534, - 122981, - 452 - ], - [ - 216716, - 123533, - 452 - ], - [ - 216693, - 123500, - 452 - ], - [ - 216477, - 123647, - 452 - ], - [ - 216499, - 123680, - 452 - ], - [ - 216499, - 123680, - 482 - ], - [ - 216499, - 123680, - 2942 - ], - [ - 224136, - 131931, - 2942 - ], - [ - 216459, - 123706, - 2942 - ], - [ - 209579, - 128491, - 2942 - ], - [ - 209404, - 128301, - 2942 - ], - [ - 216677, - 133640, - 2942 - ], - [ - 220906, - 136370, - 2942 - ], - [ - 220783, - 136540, - 2942 - ], - [ - 227506, - 134382, - 2942 - ], - [ - 228961, - 132382, - 2942 - ], - [ - 228961, - 132382, - 482 - ], - [ - 228961, - 132382, - 512 - ], - [ - 228961, - 132382, - 2932 - ], - [ - 216459, - 123706, - 482 - ], - [ - 209404, - 128301, - 482 - ], - [ - 209579, - 128491, - 482 - ], - [ - 216677, - 133640, - 482 - ], - [ - 220783, - 136540, - 482 - ], - [ - 220906, - 136370, - 482 - ], - [ - 224136, - 131931, - 482 - ], - [ - 227506, - 134382, - 482 - ], - [ - 227506, - 134382, - 512 - ], - [ - 227506, - 134382, - 2932 - ], - [ - 234710, - 136515, - 2932 - ], - [ - 229924, - 143320, - 2932 - ], - [ - 224254, - 138853, - 2932 - ], - [ - 224130, - 139023, - 2932 - ], - [ - 234710, - 136515, - 512 - ], - [ - 229924, - 143320, - 512 - ], - [ - 234710, - 136515, - 532 - ], - [ - 229924, - 143320, - 532 - ], - [ - 224254, - 138853, - 512 - ], - [ - 224130, - 139023, - 512 - ], - [ - 243507, - 120624, - 3752 - ], - [ - 235960, - 110991, - 3752 - ], - [ - 245458, - 117882, - 3752 - ], - [ - 235767, - 111116, - 3752 - ], - [ - 235667, - 111182, - 3752 - ], - [ - 230733, - 114421, - 3752 - ], - [ - 250725, - 125757, - 3752 - ], - [ - 244733, - 124162, - 3752 - ], - [ - 230711, - 114435, - 3752 - ], - [ - 249506, - 127469, - 3752 - ], - [ - 243507, - 120624, - 442 - ], - [ - 250725, - 125757, - 442 - ], - [ - 245458, - 117882, - 442 - ], - [ - 245458, - 117882, - 3722 - ], - [ - 235960, - 110991, - 442 - ], - [ - 235960, - 110991, - 3722 - ], - [ - 235767, - 111116, - 442 - ], - [ - 235667, - 111182, - 442 - ], - [ - 230733, - 114421, - 442 - ], - [ - 230711, - 114435, - 442 - ], - [ - 230711, - 114435, - 3502 - ], - [ - 244733, - 124162, - 442 - ], - [ - 244733, - 124162, - 3502 - ], - [ - 249506, - 127469, - 442 - ], - [ - 239127, - 126716, - 3502 - ], - [ - 226148, - 117412, - 3502 - ], - [ - 226126, - 117378, - 3502 - ], - [ - 238272, - 131560, - 3502 - ], - [ - 236526, - 130339, - 3502 - ], - [ - 241718, - 128399, - 3502 - ], - [ - 241296, - 133674, - 3502 - ], - [ - 244031, - 130002, - 3502 - ], - [ - 226126, - 117378, - 442 - ], - [ - 238272, - 131560, - 442 - ], - [ - 238272, - 131560, - 3472 - ], - [ - 241296, - 133674, - 442 - ], - [ - 241296, - 133674, - 532 - ], - [ - 241296, - 133674, - 3472 - ], - [ - 244031, - 130002, - 442 - ], - [ - 241718, - 128399, - 442 - ], - [ - 269724, - 125155, - 3522 - ], - [ - 270795, - 125813, - 3522 - ], - [ - 267552, - 130267, - 3522 - ], - [ - 261643, - 128933, - 3522 - ], - [ - 263699, - 126130, - 3522 - ], - [ - 267997, - 124111, - 3522 - ], - [ - 262301, - 125150, - 3522 - ], - [ - 264561, - 122034, - 3522 - ], - [ - 264198, - 134874, - 3522 - ], - [ - 269483, - 138574, - 3522 - ], - [ - 265579, - 138864, - 3522 - ], - [ - 258205, - 133620, - 3522 - ], - [ - 268771, - 139552, - 3522 - ], - [ - 268012, - 140591, - 3522 - ], - [ - 264198, - 134874, - 892 - ], - [ - 269483, - 138574, - 892 - ], - [ - 264198, - 134874, - 1062 - ], - [ - 269483, - 138574, - 1062 - ], - [ - 267552, - 130267, - 892 - ], - [ - 267552, - 130267, - 942 - ], - [ - 267552, - 130267, - 1062 - ], - [ - 270795, - 125813, - 892 - ], - [ - 270795, - 125813, - 942 - ], - [ - 269724, - 125155, - 892 - ], - [ - 267997, - 124111, - 892 - ], - [ - 264561, - 122034, - 892 - ], - [ - 262301, - 125150, - 892 - ], - [ - 263699, - 126130, - 892 - ], - [ - 261643, - 128933, - 892 - ], - [ - 258205, - 133620, - 892 - ], - [ - 265579, - 138864, - 892 - ], - [ - 268012, - 140591, - 892 - ], - [ - 268771, - 139552, - 892 - ], - [ - 275036, - 133500, - 4422 - ], - [ - 274068, - 134829, - 4422 - ], - [ - 273822, - 132617, - 4422 - ], - [ - 276094, - 129496, - 4422 - ], - [ - 270902, - 125879, - 4422 - ], - [ - 276223, - 129318, - 4422 - ], - [ - 270969, - 125770, - 4422 - ], - [ - 267552, - 130267, - 4422 - ], - [ - 270795, - 125813, - 4422 - ], - [ - 272838, - 133968, - 4422 - ], - [ - 276094, - 129496, - 942 - ], - [ - 273822, - 132617, - 942 - ], - [ - 276223, - 129318, - 942 - ], - [ - 270969, - 125770, - 942 - ], - [ - 270902, - 125879, - 942 - ], - [ - 272838, - 133968, - 942 - ], - [ - 272838, - 133968, - 1062 - ], - [ - 274068, - 134829, - 942 - ], - [ - 274068, - 134829, - 1062 - ], - [ - 275036, - 133500, - 942 - ], - [ - 239663, - 138633, - 3472 - ], - [ - 234006, - 146275, - 3472 - ], - [ - 239243, - 138352, - 3472 - ], - [ - 242030, - 134187, - 3472 - ], - [ - 234710, - 136515, - 3472 - ], - [ - 236681, - 133773, - 3472 - ], - [ - 229924, - 143320, - 3472 - ], - [ - 239663, - 138633, - 532 - ], - [ - 234006, - 146275, - 532 - ], - [ - 239663, - 138633, - 542 - ], - [ - 234006, - 146275, - 542 - ], - [ - 239243, - 138352, - 532 - ], - [ - 242030, - 134187, - 532 - ], - [ - 336628, - 67047, - 3532 - ], - [ - 335233, - 68866, - 3532 - ], - [ - 330422, - 68973, - 3532 - ], - [ - 327637, - 59791, - 3532 - ], - [ - 321413, - 61704, - 3532 - ], - [ - 331944, - 73148, - 3532 - ], - [ - 329127, - 70864, - 3532 - ], - [ - 329010, - 70770, - 3532 - ], - [ - 335350, - 68960, - 3532 - ], - [ - 336628, - 67047, - 372 - ], - [ - 335233, - 68866, - 372 - ], - [ - 336628, - 67047, - 3422 - ], - [ - 335233, - 68866, - 3422 - ], - [ - 327637, - 59791, - 372 - ], - [ - 327637, - 59791, - 3422 - ], - [ - 321413, - 61704, - 372 - ], - [ - 321413, - 61704, - 392 - ], - [ - 321413, - 61704, - 3332 - ], - [ - 330422, - 68973, - 372 - ], - [ - 330422, - 68973, - 392 - ], - [ - 330422, - 68973, - 3332 - ], - [ - 329010, - 70770, - 372 - ], - [ - 329010, - 70770, - 392 - ], - [ - 329010, - 70770, - 3332 - ], - [ - 329127, - 70864, - 372 - ], - [ - 329127, - 70864, - 392 - ], - [ - 329127, - 70864, - 3332 - ], - [ - 331944, - 73148, - 372 - ], - [ - 335350, - 68960, - 372 - ], - [ - 335350, - 68960, - 3422 - ], - [ - 342837, - 65118, - 3422 - ], - [ - 341467, - 66952, - 3422 - ], - [ - 333863, - 57877, - 3422 - ], - [ - 338190, - 71237, - 3422 - ], - [ - 341584, - 67046, - 3422 - ], - [ - 342837, - 65118, - 352 - ], - [ - 341467, - 66952, - 352 - ], - [ - 342837, - 65118, - 3402 - ], - [ - 341467, - 66952, - 3402 - ], - [ - 333863, - 57877, - 352 - ], - [ - 333863, - 57877, - 3402 - ], - [ - 327637, - 59791, - 352 - ], - [ - 336628, - 67047, - 352 - ], - [ - 335233, - 68866, - 352 - ], - [ - 335350, - 68960, - 352 - ], - [ - 338190, - 71237, - 352 - ], - [ - 341584, - 67046, - 352 - ], - [ - 341584, - 67046, - 3402 - ], - [ - 300751, - 123562, - 3242 - ], - [ - 298348, - 126781, - 3242 - ], - [ - 300619, - 123464, - 3242 - ], - [ - 307689, - 114842, - 3242 - ], - [ - 307743, - 114881, - 3242 - ], - [ - 302333, - 122177, - 3242 - ], - [ - 301963, - 121903, - 3242 - ], - [ - 295840, - 125794, - 3242 - ], - [ - 299917, - 120333, - 3242 - ], - [ - 298495, - 119282, - 3242 - ], - [ - 303927, - 112023, - 3242 - ], - [ - 297958, - 127303, - 3242 - ], - [ - 300751, - 123562, - 592 - ], - [ - 298348, - 126781, - 592 - ], - [ - 300751, - 123562, - 602 - ], - [ - 298348, - 126781, - 602 - ], - [ - 300619, - 123464, - 592 - ], - [ - 300619, - 123464, - 602 - ], - [ - 301963, - 121903, - 592 - ], - [ - 301963, - 121903, - 602 - ], - [ - 302333, - 122177, - 592 - ], - [ - 302333, - 122177, - 602 - ], - [ - 307743, - 114881, - 592 - ], - [ - 307743, - 114881, - 602 - ], - [ - 307689, - 114842, - 592 - ], - [ - 303927, - 112023, - 592 - ], - [ - 303927, - 112023, - 3212 - ], - [ - 298495, - 119282, - 592 - ], - [ - 298495, - 119282, - 3212 - ], - [ - 299917, - 120333, - 592 - ], - [ - 295840, - 125794, - 592 - ], - [ - 297958, - 127303, - 592 - ], - [ - 310952, - 117539, - 3242 - ], - [ - 311149, - 117439, - 3242 - ], - [ - 311033, - 117598, - 3242 - ], - [ - 311186, - 117388, - 3242 - ], - [ - 303888, - 123272, - 3242 - ], - [ - 300222, - 128181, - 3242 - ], - [ - 305973, - 124814, - 3242 - ], - [ - 310952, - 117539, - 602 - ], - [ - 305973, - 124814, - 602 - ], - [ - 311033, - 117598, - 602 - ], - [ - 311149, - 117439, - 602 - ], - [ - 311186, - 117388, - 602 - ], - [ - 300222, - 128181, - 602 - ], - [ - 303888, - 123272, - 602 - ], - [ - 333629, - 110741, - 3612 - ], - [ - 334337, - 109627, - 3612 - ], - [ - 334429, - 109693, - 3612 - ], - [ - 328224, - 117845, - 3612 - ], - [ - 332862, - 110155, - 3612 - ], - [ - 333645, - 109130, - 3612 - ], - [ - 324201, - 114896, - 3612 - ], - [ - 329609, - 107676, - 3612 - ], - [ - 328185, - 117897, - 3612 - ], - [ - 333629, - 110741, - 472 - ], - [ - 328224, - 117845, - 472 - ], - [ - 333629, - 110741, - 532 - ], - [ - 328224, - 117845, - 532 - ], - [ - 333629, - 110741, - 3552 - ], - [ - 328224, - 117845, - 3552 - ], - [ - 334429, - 109693, - 472 - ], - [ - 334429, - 109693, - 532 - ], - [ - 334429, - 109693, - 3552 - ], - [ - 334337, - 109627, - 472 - ], - [ - 334337, - 109627, - 532 - ], - [ - 334337, - 109627, - 3552 - ], - [ - 333645, - 109130, - 472 - ], - [ - 332862, - 110155, - 472 - ], - [ - 329609, - 107676, - 472 - ], - [ - 324201, - 114896, - 472 - ], - [ - 328185, - 117897, - 472 - ], - [ - 339502, - 112081, - 3552 - ], - [ - 335044, - 108676, - 3552 - ], - [ - 332700, - 121225, - 3552 - ], - [ - 330739, - 119790, - 3552 - ], - [ - 330692, - 119855, - 3552 - ], - [ - 332653, - 121289, - 3552 - ], - [ - 339502, - 112081, - 532 - ], - [ - 332700, - 121225, - 532 - ], - [ - 339502, - 112081, - 3402 - ], - [ - 332700, - 121225, - 3402 - ], - [ - 335044, - 108676, - 532 - ], - [ - 330739, - 119790, - 532 - ], - [ - 330692, - 119855, - 532 - ], - [ - 332653, - 121289, - 532 - ], - [ - 330278, - 165190, - 3562 - ], - [ - 337488, - 172404, - 3562 - ], - [ - 329617, - 165846, - 3562 - ], - [ - 327202, - 166245, - 3562 - ], - [ - 328100, - 165355, - 3562 - ], - [ - 322013, - 165861, - 3562 - ], - [ - 324437, - 163457, - 3562 - ], - [ - 325634, - 169480, - 3562 - ], - [ - 333046, - 176505, - 3562 - ], - [ - 333151, - 176613, - 3562 - ], - [ - 332956, - 176802, - 3562 - ], - [ - 333737, - 175835, - 3562 - ], - [ - 333841, - 175943, - 3562 - ], - [ - 330278, - 165190, - 612 - ], - [ - 337488, - 172404, - 612 - ], - [ - 330278, - 165190, - 3462 - ], - [ - 337488, - 172404, - 3462 - ], - [ - 329617, - 165846, - 612 - ], - [ - 328100, - 165355, - 612 - ], - [ - 327202, - 166245, - 612 - ], - [ - 324437, - 163457, - 612 - ], - [ - 322013, - 165861, - 612 - ], - [ - 325634, - 169480, - 612 - ], - [ - 332956, - 176802, - 612 - ], - [ - 333151, - 176613, - 612 - ], - [ - 333046, - 176505, - 612 - ], - [ - 333737, - 175835, - 612 - ], - [ - 333841, - 175943, - 612 - ], - [ - 311662, - 117706, - 6562 - ], - [ - 334866, - 135470, - 6562 - ], - [ - 311601, - 117785, - 6562 - ], - [ - 311473, - 117952, - 6562 - ], - [ - 329358, - 142664, - 6562 - ], - [ - 306154, - 124900, - 6562 - ], - [ - 311662, - 117706, - 652 - ], - [ - 334866, - 135470, - 652 - ], - [ - 311601, - 117785, - 652 - ], - [ - 311473, - 117952, - 652 - ], - [ - 306154, - 124900, - 652 - ], - [ - 329358, - 142664, - 652 - ], - [ - 383533, - 127735, - 6612 - ], - [ - 383844, - 127529, - 6612 - ], - [ - 383582, - 127785, - 6612 - ], - [ - 375381, - 119436, - 6612 - ], - [ - 379831, - 129659, - 6612 - ], - [ - 370898, - 123632, - 6612 - ], - [ - 378379, - 131056, - 6612 - ], - [ - 380351, - 130200, - 6612 - ], - [ - 380185, - 130027, - 6612 - ], - [ - 380504, - 130358, - 6612 - ], - [ - 380650, - 130510, - 6612 - ], - [ - 380026, - 129861, - 6612 - ], - [ - 375381, - 119436, - 662 - ], - [ - 383844, - 127529, - 662 - ], - [ - 375381, - 119436, - 672 - ], - [ - 383844, - 127529, - 672 - ], - [ - 370898, - 123632, - 662 - ], - [ - 370898, - 123632, - 6512 - ], - [ - 378379, - 131056, - 662 - ], - [ - 378379, - 131056, - 6512 - ], - [ - 379831, - 129659, - 662 - ], - [ - 380026, - 129861, - 662 - ], - [ - 380185, - 130027, - 662 - ], - [ - 380351, - 130200, - 662 - ], - [ - 380504, - 130358, - 662 - ], - [ - 380650, - 130510, - 662 - ], - [ - 383533, - 127735, - 662 - ], - [ - 383582, - 127785, - 662 - ], - [ - 383532, - 119200, - 7122 - ], - [ - 379084, - 115970, - 7122 - ], - [ - 378597, - 114168, - 7122 - ], - [ - 377999, - 114811, - 7122 - ], - [ - 375381, - 119436, - 7122 - ], - [ - 383844, - 127529, - 7122 - ], - [ - 386585, - 124680, - 7122 - ], - [ - 386669, - 124766, - 7122 - ], - [ - 387457, - 123827, - 7122 - ], - [ - 387979, - 123489, - 7122 - ], - [ - 387541, - 123913, - 7122 - ], - [ - 383532, - 119200, - 672 - ], - [ - 387979, - 123489, - 672 - ], - [ - 383532, - 119200, - 692 - ], - [ - 387979, - 123489, - 692 - ], - [ - 383532, - 119200, - 6982 - ], - [ - 387979, - 123489, - 6982 - ], - [ - 378597, - 114168, - 672 - ], - [ - 378597, - 114168, - 692 - ], - [ - 378597, - 114168, - 6982 - ], - [ - 377999, - 114811, - 672 - ], - [ - 379084, - 115970, - 672 - ], - [ - 386669, - 124766, - 672 - ], - [ - 386585, - 124680, - 672 - ], - [ - 387457, - 123827, - 672 - ], - [ - 387541, - 123913, - 672 - ], - [ - 341965, - 117106, - 3402 - ], - [ - 341985, - 113977, - 3402 - ], - [ - 345747, - 112222, - 3402 - ], - [ - 344220, - 111091, - 3402 - ], - [ - 336346, - 124117, - 3402 - ], - [ - 336460, - 124214, - 3402 - ], - [ - 341965, - 117106, - 522 - ], - [ - 336460, - 124214, - 522 - ], - [ - 341965, - 117106, - 532 - ], - [ - 336460, - 124214, - 532 - ], - [ - 345747, - 112222, - 522 - ], - [ - 344220, - 111091, - 522 - ], - [ - 341985, - 113977, - 522 - ], - [ - 339502, - 112081, - 522 - ], - [ - 332700, - 121225, - 522 - ], - [ - 336346, - 124117, - 522 - ], - [ - 345842, - 120332, - 3912 - ], - [ - 345998, - 120187, - 3912 - ], - [ - 345877, - 120344, - 3912 - ], - [ - 345831, - 120060, - 3912 - ], - [ - 343263, - 123652, - 3912 - ], - [ - 341965, - 117106, - 3912 - ], - [ - 336460, - 124214, - 3912 - ], - [ - 340546, - 127151, - 3912 - ], - [ - 340089, - 127302, - 3912 - ], - [ - 340215, - 127239, - 3912 - ], - [ - 340389, - 127353, - 3912 - ], - [ - 340410, - 127326, - 3912 - ], - [ - 345842, - 120332, - 532 - ], - [ - 343263, - 123652, - 532 - ], - [ - 345877, - 120344, - 532 - ], - [ - 345998, - 120187, - 532 - ], - [ - 345831, - 120060, - 532 - ], - [ - 340089, - 127302, - 532 - ], - [ - 340215, - 127239, - 532 - ], - [ - 340389, - 127353, - 532 - ], - [ - 340410, - 127326, - 532 - ], - [ - 340546, - 127151, - 532 - ], - [ - 374145, - 136526, - 3402 - ], - [ - 374765, - 136104, - 3402 - ], - [ - 374236, - 136620, - 3402 - ], - [ - 366730, - 127732, - 3402 - ], - [ - 363790, - 127886, - 3402 - ], - [ - 365367, - 126410, - 3402 - ], - [ - 365182, - 129373, - 3402 - ], - [ - 364046, - 132734, - 3402 - ], - [ - 362744, - 131655, - 3402 - ], - [ - 371114, - 139667, - 3402 - ], - [ - 371183, - 139739, - 3402 - ], - [ - 370970, - 139949, - 3402 - ], - [ - 373174, - 137474, - 3402 - ], - [ - 373265, - 137567, - 3402 - ], - [ - 366730, - 127732, - 612 - ], - [ - 374765, - 136104, - 612 - ], - [ - 366730, - 127732, - 622 - ], - [ - 374765, - 136104, - 622 - ], - [ - 365367, - 126410, - 612 - ], - [ - 365367, - 126410, - 622 - ], - [ - 363790, - 127886, - 612 - ], - [ - 365182, - 129373, - 612 - ], - [ - 362744, - 131655, - 612 - ], - [ - 364046, - 132734, - 612 - ], - [ - 370970, - 139949, - 612 - ], - [ - 371183, - 139739, - 612 - ], - [ - 371114, - 139667, - 612 - ], - [ - 373265, - 137567, - 612 - ], - [ - 373174, - 137474, - 612 - ], - [ - 374145, - 136526, - 612 - ], - [ - 374236, - 136620, - 612 - ], - [ - 365367, - 126410, - 6512 - ], - [ - 366081, - 125741, - 6512 - ], - [ - 367279, - 127020, - 6512 - ], - [ - 377511, - 132933, - 6512 - ], - [ - 377664, - 133091, - 6512 - ], - [ - 374855, - 136016, - 6512 - ], - [ - 366730, - 127732, - 6512 - ], - [ - 376991, - 132392, - 6512 - ], - [ - 374765, - 136104, - 6512 - ], - [ - 377809, - 133242, - 6512 - ], - [ - 374890, - 136052, - 6512 - ], - [ - 377345, - 132760, - 6512 - ], - [ - 377185, - 132594, - 6512 - ], - [ - 370898, - 123632, - 622 - ], - [ - 378379, - 131056, - 622 - ], - [ - 367279, - 127020, - 622 - ], - [ - 366081, - 125741, - 622 - ], - [ - 374855, - 136016, - 622 - ], - [ - 374890, - 136052, - 622 - ], - [ - 377809, - 133242, - 622 - ], - [ - 377664, - 133091, - 622 - ], - [ - 377511, - 132933, - 622 - ], - [ - 377345, - 132760, - 622 - ], - [ - 377185, - 132594, - 622 - ], - [ - 376991, - 132392, - 622 - ], - [ - 339535, - 156468, - 3462 - ], - [ - 346572, - 163545, - 3462 - ], - [ - 337013, - 158896, - 3462 - ], - [ - 332416, - 158272, - 3462 - ], - [ - 335552, - 157450, - 3462 - ], - [ - 335673, - 157548, - 3462 - ], - [ - 335425, - 157360, - 3462 - ], - [ - 335293, - 157278, - 3462 - ], - [ - 335155, - 157206, - 3462 - ], - [ - 335013, - 157142, - 3462 - ], - [ - 334867, - 157088, - 3462 - ], - [ - 334717, - 157044, - 3462 - ], - [ - 334565, - 157010, - 3462 - ], - [ - 334412, - 156986, - 3462 - ], - [ - 334257, - 156972, - 3462 - ], - [ - 334101, - 156968, - 3462 - ], - [ - 333945, - 156974, - 3462 - ], - [ - 333791, - 156991, - 3462 - ], - [ - 333637, - 157018, - 3462 - ], - [ - 333486, - 157055, - 3462 - ], - [ - 333338, - 157102, - 3462 - ], - [ - 333192, - 157158, - 3462 - ], - [ - 333051, - 157224, - 3462 - ], - [ - 332915, - 157299, - 3462 - ], - [ - 332784, - 157383, - 3462 - ], - [ - 332658, - 157475, - 3462 - ], - [ - 332539, - 157575, - 3462 - ], - [ - 332427, - 157683, - 3462 - ], - [ - 332133, - 157988, - 3462 - ], - [ - 342098, - 168006, - 3462 - ], - [ - 342243, - 167740, - 3462 - ], - [ - 342306, - 167805, - 3462 - ], - [ - 342940, - 167068, - 3462 - ], - [ - 343003, - 167132, - 3462 - ], - [ - 346643, - 163616, - 3462 - ], - [ - 339535, - 156468, - 582 - ], - [ - 346572, - 163545, - 582 - ], - [ - 339535, - 156468, - 602 - ], - [ - 346572, - 163545, - 602 - ], - [ - 337013, - 158896, - 582 - ], - [ - 335673, - 157548, - 582 - ], - [ - 335552, - 157450, - 582 - ], - [ - 335425, - 157360, - 582 - ], - [ - 335293, - 157278, - 582 - ], - [ - 335155, - 157206, - 582 - ], - [ - 335013, - 157142, - 582 - ], - [ - 334867, - 157088, - 582 - ], - [ - 334717, - 157044, - 582 - ], - [ - 334565, - 157010, - 582 - ], - [ - 334412, - 156986, - 582 - ], - [ - 334257, - 156972, - 582 - ], - [ - 334101, - 156968, - 582 - ], - [ - 333945, - 156974, - 582 - ], - [ - 333791, - 156991, - 582 - ], - [ - 333637, - 157018, - 582 - ], - [ - 333486, - 157055, - 582 - ], - [ - 333338, - 157102, - 582 - ], - [ - 333192, - 157158, - 582 - ], - [ - 333051, - 157224, - 582 - ], - [ - 332915, - 157299, - 582 - ], - [ - 332784, - 157383, - 582 - ], - [ - 332658, - 157475, - 582 - ], - [ - 332539, - 157575, - 582 - ], - [ - 332427, - 157683, - 582 - ], - [ - 332133, - 157988, - 582 - ], - [ - 332133, - 157988, - 592 - ], - [ - 332416, - 158272, - 582 - ], - [ - 332416, - 158272, - 592 - ], - [ - 342098, - 168006, - 582 - ], - [ - 342098, - 168006, - 592 - ], - [ - 342306, - 167805, - 582 - ], - [ - 342243, - 167740, - 582 - ], - [ - 342940, - 167068, - 582 - ], - [ - 343003, - 167132, - 582 - ], - [ - 346643, - 163616, - 582 - ], - [ - 330728, - 158839, - 3462 - ], - [ - 330955, - 157510, - 3462 - ], - [ - 331304, - 157155, - 3462 - ], - [ - 330891, - 157648, - 3462 - ], - [ - 330837, - 157790, - 3462 - ], - [ - 330792, - 157935, - 3462 - ], - [ - 330757, - 158083, - 3462 - ], - [ - 330731, - 158233, - 3462 - ], - [ - 330716, - 158384, - 3462 - ], - [ - 330710, - 158536, - 3462 - ], - [ - 330714, - 158688, - 3462 - ], - [ - 330752, - 158989, - 3462 - ], - [ - 330786, - 159137, - 3462 - ], - [ - 330829, - 159283, - 3462 - ], - [ - 330882, - 159425, - 3462 - ], - [ - 330944, - 159564, - 3462 - ], - [ - 331015, - 159698, - 3462 - ], - [ - 331095, - 159828, - 3462 - ], - [ - 331183, - 159952, - 3462 - ], - [ - 331279, - 160070, - 3462 - ], - [ - 331382, - 160181, - 3462 - ], - [ - 331493, - 160285, - 3462 - ], - [ - 331610, - 160382, - 3462 - ], - [ - 331731, - 160469, - 3462 - ], - [ - 328600, - 163511, - 3462 - ], - [ - 341152, - 168809, - 3462 - ], - [ - 337516, - 172432, - 3462 - ], - [ - 341207, - 168866, - 3462 - ], - [ - 341848, - 168136, - 3462 - ], - [ - 341904, - 168194, - 3462 - ], - [ - 331304, - 157155, - 592 - ], - [ - 330955, - 157510, - 592 - ], - [ - 330891, - 157648, - 592 - ], - [ - 330837, - 157790, - 592 - ], - [ - 330792, - 157935, - 592 - ], - [ - 330757, - 158083, - 592 - ], - [ - 330731, - 158233, - 592 - ], - [ - 330716, - 158384, - 592 - ], - [ - 330710, - 158536, - 592 - ], - [ - 330714, - 158688, - 592 - ], - [ - 330728, - 158839, - 592 - ], - [ - 330752, - 158989, - 592 - ], - [ - 330786, - 159137, - 592 - ], - [ - 330829, - 159283, - 592 - ], - [ - 330882, - 159425, - 592 - ], - [ - 330944, - 159564, - 592 - ], - [ - 331015, - 159698, - 592 - ], - [ - 331095, - 159828, - 592 - ], - [ - 331183, - 159952, - 592 - ], - [ - 331279, - 160070, - 592 - ], - [ - 331382, - 160181, - 592 - ], - [ - 331493, - 160285, - 592 - ], - [ - 331610, - 160382, - 592 - ], - [ - 331731, - 160469, - 592 - ], - [ - 328600, - 163511, - 592 - ], - [ - 330278, - 165190, - 592 - ], - [ - 337488, - 172404, - 592 - ], - [ - 337516, - 172432, - 592 - ], - [ - 341207, - 168866, - 592 - ], - [ - 341152, - 168809, - 592 - ], - [ - 341848, - 168136, - 592 - ], - [ - 341904, - 168194, - 592 - ], - [ - 378317, - 75059, - 1124 - ], - [ - 378738, - 76596, - 682 - ], - [ - 377529, - 76956, - 857 - ], - [ - 378953, - 67998, - 918 - ], - [ - 378587, - 68443, - 1159 - ], - [ - 377742, - 67890, - 918 - ], - [ - 373456, - 54525, - 332 - ], - [ - 365076, - 48582, - 332 - ], - [ - 365016, - 48381, - 332 - ], - [ - 380668, - 58689, - 515 - ], - [ - 376187, - 56381, - 463 - ], - [ - 372503, - 56010, - 577 - ], - [ - 374585, - 57769, - 608 - ], - [ - 371945, - 56696, - 332 - ], - [ - 384526, - 65287, - 864 - ], - [ - 382738, - 64682, - 838 - ], - [ - 384706, - 64101, - 977 - ], - [ - 373775, - 55133, - 639 - ], - [ - 375964, - 60288, - 883 - ], - [ - 374095, - 60410, - 332 - ], - [ - 375135, - 58915, - 332 - ], - [ - 380442, - 60171, - 875 - ], - [ - 381590, - 62000, - 962 - ], - [ - 378229, - 62590, - 794 - ], - [ - 373009, - 59762, - 719 - ], - [ - 370804, - 59271, - 762 - ], - [ - 369207, - 57009, - 332 - ], - [ - 372690, - 60488, - 787 - ], - [ - 367241, - 55868, - 332 - ], - [ - 369100, - 57162, - 332 - ], - [ - 365988, - 57669, - 332 - ], - [ - 373463, - 63139, - 818 - ], - [ - 373677, - 61374, - 741 - ], - [ - 372314, - 62577, - 749 - ], - [ - 372515, - 62210, - 332 - ], - [ - 372561, - 62211, - 757 - ], - [ - 378031, - 69930, - 1171 - ], - [ - 379546, - 68901, - 917 - ], - [ - 379880, - 71279, - 1195 - ], - [ - 384732, - 68178, - 682 - ], - [ - 384261, - 67604, - 953 - ], - [ - 384784, - 68103, - 672 - ], - [ - 374756, - 69498, - 802 - ], - [ - 376554, - 68936, - 522 - ], - [ - 376888, - 69842, - 857 - ], - [ - 373034, - 69360, - 522 - ], - [ - 374379, - 67423, - 522 - ], - [ - 374694, - 69165, - 568 - ], - [ - 372674, - 70180, - 522 - ], - [ - 372813, - 71421, - 1023 - ], - [ - 371411, - 70507, - 935 - ], - [ - 377902, - 68940, - 1200 - ], - [ - 370850, - 68928, - 522 - ], - [ - 371160, - 68032, - 522 - ], - [ - 371346, - 68158, - 522 - ], - [ - 370300, - 69525, - 717 - ], - [ - 369193, - 70925, - 552 - ], - [ - 370939, - 70838, - 821 - ], - [ - 371618, - 71860, - 1328 - ], - [ - 373350, - 70343, - 921 - ], - [ - 373163, - 69450, - 522 - ], - [ - 378153, - 77385, - 572 - ], - [ - 378752, - 75318, - 1265 - ], - [ - 378838, - 76596, - 682 - ], - [ - 379439, - 74847, - 1207 - ], - [ - 379390, - 74488, - 1186 - ], - [ - 380006, - 74941, - 682 - ], - [ - 379096, - 75255, - 1270 - ], - [ - 380722, - 73916, - 692 - ], - [ - 382727, - 71047, - 692 - ], - [ - 382497, - 71375, - 692 - ], - [ - 381895, - 70985, - 1141 - ], - [ - 382655, - 70055, - 924 - ], - [ - 383280, - 68727, - 940 - ], - [ - 383344, - 69097, - 1141 - ], - [ - 386736, - 65309, - 672 - ], - [ - 373539, - 71705, - 1033 - ], - [ - 372569, - 72449, - 1123 - ], - [ - 370119, - 70913, - 889 - ], - [ - 380526, - 72860, - 1410 - ], - [ - 377697, - 67564, - 879 - ], - [ - 380459, - 72529, - 1088 - ], - [ - 380042, - 72602, - 999 - ], - [ - 379665, - 63651, - 784 - ], - [ - 381947, - 64688, - 972 - ], - [ - 372863, - 61819, - 752 - ], - [ - 372229, - 61924, - 757 - ], - [ - 373381, - 70669, - 741 - ], - [ - 374031, - 70620, - 827 - ], - [ - 374716, - 72589, - 872 - ], - [ - 375039, - 71535, - 1003 - ], - [ - 376119, - 72727, - 859 - ], - [ - 377192, - 74286, - 1068 - ], - [ - 377100, - 76671, - 815 - ], - [ - 375437, - 58990, - 622 - ], - [ - 383944, - 63083, - 890 - ], - [ - 384149, - 62559, - 640 - ], - [ - 384456, - 62888, - 932 - ], - [ - 381038, - 71337, - 1288 - ], - [ - 375225, - 65972, - 841 - ], - [ - 377272, - 67293, - 892 - ], - [ - 377489, - 67592, - 522 - ], - [ - 378927, - 64188, - 994 - ], - [ - 378422, - 63976, - 930 - ], - [ - 371615, - 63504, - 522 - ], - [ - 372030, - 62939, - 741 - ], - [ - 380141, - 73278, - 1134 - ], - [ - 377013, - 68392, - 571 - ], - [ - 378551, - 73986, - 922 - ], - [ - 379016, - 71794, - 944 - ], - [ - 379970, - 74992, - 682 - ], - [ - 374312, - 72657, - 990 - ], - [ - 372633, - 73112, - 804 - ], - [ - 373721, - 54764, - 549 - ], - [ - 376516, - 58775, - 629 - ], - [ - 377832, - 59562, - 857 - ], - [ - 376570, - 59102, - 782 - ], - [ - 377357, - 67968, - 832 - ], - [ - 374320, - 69549, - 954 - ], - [ - 375564, - 75542, - 941 - ], - [ - 373046, - 70730, - 589 - ], - [ - 381667, - 62641, - 854 - ], - [ - 382381, - 61992, - 839 - ], - [ - 384741, - 61873, - 652 - ], - [ - 377629, - 72800, - 1039 - ], - [ - 377680, - 70340, - 962 - ], - [ - 373873, - 74378, - 785 - ], - [ - 370241, - 71886, - 809 - ], - [ - 373686, - 64820, - 828 - ], - [ - 382726, - 61501, - 608 - ], - [ - 384626, - 63012, - 952 - ], - [ - 378501, - 64625, - 828 - ], - [ - 381331, - 60249, - 576 - ], - [ - 369192, - 71195, - 726 - ], - [ - 383784, - 62028, - 621 - ], - [ - 383653, - 61029, - 640 - ], - [ - 383963, - 61222, - 523 - ], - [ - 374217, - 74702, - 854 - ], - [ - 377692, - 58532, - 804 - ], - [ - 378539, - 58331, - 537 - ], - [ - 380326, - 59470, - 540 - ], - [ - 379919, - 59280, - 536 - ], - [ - 383536, - 62220, - 799 - ], - [ - 381021, - 64561, - 823 - ], - [ - 375038, - 74944, - 1024 - ], - [ - 377379, - 73518, - 945 - ], - [ - 376217, - 73384, - 1024 - ], - [ - 376871, - 58713, - 787 - ], - [ - 369022, - 71216, - 552 - ], - [ - 429299, - 81775, - 985 - ], - [ - 301265, - 70135, - 422 - ], - [ - 300020, - 70398, - 422 - ], - [ - 301115, - 69841, - 422 - ], - [ - 300485, - 71174, - 422 - ], - [ - 301740, - 70990, - 422 - ], - [ - 300849, - 71465, - 422 - ], - [ - 301318, - 70108, - 422 - ], - [ - 299899, - 70202, - 502 - ], - [ - 301109, - 69587, - 502 - ], - [ - 301213, - 69791, - 422 - ], - [ - 368423, - 74284, - 532 - ], - [ - 367730, - 73718, - 552 - ], - [ - 367581, - 72284, - 492 - ], - [ - 369135, - 81747, - 562 - ], - [ - 374018, - 77507, - 572 - ], - [ - 368699, - 83874, - 532 - ], - [ - 367859, - 81872, - 552 - ], - [ - 365005, - 78391, - 512 - ], - [ - 368444, - 81194, - 562 - ], - [ - 371843, - 77063, - 562 - ], - [ - 362319, - 78609, - 522 - ], - [ - 364451, - 79065, - 512 - ], - [ - 363752, - 78488, - 512 - ], - [ - 367153, - 74399, - 552 - ], - [ - 364339, - 77831, - 512 - ], - [ - 367862, - 74980, - 542 - ], - [ - 368562, - 82424, - 552 - ], - [ - 371266, - 77751, - 552 - ], - [ - 371965, - 78332, - 562 - ], - [ - 372533, - 77636, - 572 - ], - [ - 206259, - 124886, - 592 - ], - [ - 206430, - 125176, - 602 - ], - [ - 206072, - 124984, - 592 - ], - [ - 203991, - 124758, - 1646 - ], - [ - 203422, - 125508, - 532 - ], - [ - 203362, - 125366, - 532 - ], - [ - 205424, - 125285, - 1024 - ], - [ - 203563, - 126816, - 612 - ], - [ - 205961, - 124910, - 602 - ], - [ - 205853, - 124832, - 602 - ], - [ - 205748, - 124750, - 572 - ], - [ - 203339, - 125375, - 532 - ], - [ - 203289, - 125360, - 522 - ], - [ - 205503, - 124574, - 873 - ], - [ - 205549, - 124572, - 562 - ], - [ - 205647, - 124663, - 562 - ], - [ - 205339, - 124120, - 492 - ], - [ - 205312, - 124246, - 512 - ], - [ - 205282, - 124282, - 512 - ], - [ - 205033, - 123903, - 302 - ], - [ - 205140, - 123842, - 302 - ], - [ - 204655, - 124504, - 1522 - ], - [ - 205365, - 124379, - 542 - ], - [ - 205455, - 124477, - 542 - ], - [ - 204997, - 125089, - 1134 - ], - [ - 203174, - 124969, - 302 - ], - [ - 203199, - 125198, - 642 - ], - [ - 203223, - 125341, - 522 - ], - [ - 203051, - 125040, - 302 - ], - [ - 204439, - 125348, - 1130 - ], - [ - 203472, - 125654, - 532 - ], - [ - 203545, - 125954, - 552 - ], - [ - 203568, - 126107, - 572 - ], - [ - 203581, - 126261, - 572 - ], - [ - 203584, - 126415, - 602 - ], - [ - 203392, - 126503, - 572 - ], - [ - 203513, - 125803, - 552 - ], - [ - 271430, - 87656, - 642 - ], - [ - 271448, - 87794, - 462 - ], - [ - 271373, - 87623, - 642 - ], - [ - 271245, - 87911, - 462 - ], - [ - 271358, - 87914, - 462 - ], - [ - 271313, - 87594, - 642 - ], - [ - 271242, - 88061, - 462 - ], - [ - 270314, - 88038, - 462 - ], - [ - 271191, - 87545, - 632 - ], - [ - 271128, - 87525, - 632 - ], - [ - 271064, - 87509, - 632 - ], - [ - 270999, - 87496, - 632 - ], - [ - 270983, - 87493, - 632 - ], - [ - 270966, - 87490, - 632 - ], - [ - 270950, - 87488, - 632 - ], - [ - 270933, - 87486, - 632 - ], - [ - 270917, - 87484, - 632 - ], - [ - 270901, - 87482, - 632 - ], - [ - 270884, - 87481, - 632 - ], - [ - 270807, - 87477, - 632 - ], - [ - 270317, - 87888, - 462 - ], - [ - 270730, - 87478, - 632 - ], - [ - 270653, - 87484, - 632 - ], - [ - 270576, - 87494, - 632 - ], - [ - 270500, - 87509, - 622 - ], - [ - 270426, - 87529, - 622 - ], - [ - 270352, - 87553, - 622 - ], - [ - 270281, - 87582, - 612 - ], - [ - 270211, - 87615, - 612 - ], - [ - 270126, - 87752, - 462 - ], - [ - 270215, - 87885, - 462 - ], - [ - 271253, - 87568, - 632 - ], - [ - 332686, - 144539, - 782 - ], - [ - 332436, - 144378, - 1084 - ], - [ - 332970, - 144157, - 782 - ], - [ - 331628, - 145191, - 965 - ], - [ - 332108, - 145087, - 1116 - ], - [ - 330394, - 147703, - 972 - ], - [ - 329197, - 147149, - 852 - ], - [ - 330231, - 147828, - 972 - ], - [ - 331587, - 144834, - 1055 - ], - [ - 332066, - 144765, - 1120 - ], - [ - 332003, - 143482, - 802 - ], - [ - 332334, - 143714, - 901 - ], - [ - 355778, - 62380, - 722 - ], - [ - 355283, - 62068, - 515 - ], - [ - 355806, - 61882, - 452 - ], - [ - 353558, - 73686, - 512 - ], - [ - 354587, - 73277, - 577 - ], - [ - 353588, - 73781, - 512 - ], - [ - 350601, - 70925, - 487 - ], - [ - 351559, - 68783, - 522 - ], - [ - 352683, - 71618, - 462 - ], - [ - 354711, - 68167, - 629 - ], - [ - 354570, - 67168, - 504 - ], - [ - 357415, - 66125, - 526 - ], - [ - 360442, - 69813, - 618 - ], - [ - 362380, - 70939, - 482 - ], - [ - 357326, - 72485, - 462 - ], - [ - 357289, - 72370, - 462 - ], - [ - 362409, - 71034, - 482 - ], - [ - 363541, - 70673, - 482 - ], - [ - 363485, - 70491, - 482 - ], - [ - 361480, - 68902, - 482 - ], - [ - 356820, - 65747, - 538 - ], - [ - 359510, - 69501, - 491 - ], - [ - 361196, - 66437, - 619 - ], - [ - 359466, - 65749, - 548 - ], - [ - 359610, - 64760, - 452 - ], - [ - 353573, - 69607, - 517 - ], - [ - 354113, - 69804, - 462 - ], - [ - 356415, - 64736, - 802 - ], - [ - 355739, - 65426, - 699 - ], - [ - 355152, - 64737, - 520 - ], - [ - 356434, - 62705, - 741 - ], - [ - 356398, - 62390, - 811 - ], - [ - 356518, - 62628, - 452 - ], - [ - 355627, - 61329, - 566 - ], - [ - 355243, - 61714, - 616 - ], - [ - 348398, - 65619, - 530 - ], - [ - 347783, - 65119, - 342 - ], - [ - 350608, - 67366, - 342 - ], - [ - 335823, - 79075, - 586 - ], - [ - 334918, - 79541, - 482 - ], - [ - 334888, - 79445, - 482 - ], - [ - 342148, - 67543, - 739 - ], - [ - 344407, - 69328, - 342 - ], - [ - 332506, - 80192, - 472 - ], - [ - 332474, - 80086, - 472 - ], - [ - 336544, - 69975, - 523 - ], - [ - 329903, - 71497, - 584 - ], - [ - 321939, - 79954, - 650 - ], - [ - 325515, - 83193, - 522 - ], - [ - 320188, - 78913, - 572 - ], - [ - 325162, - 74628, - 575 - ], - [ - 322904, - 72789, - 422 - ], - [ - 325717, - 75056, - 392 - ], - [ - 329843, - 80899, - 472 - ], - [ - 329898, - 81081, - 472 - ], - [ - 328741, - 81365, - 502 - ], - [ - 322157, - 74066, - 835 - ], - [ - 322930, - 72940, - 908 - ], - [ - 322985, - 73307, - 1000 - ], - [ - 324112, - 75162, - 689 - ], - [ - 324137, - 75468, - 468 - ], - [ - 323863, - 75486, - 672 - ], - [ - 320326, - 78742, - 552 - ], - [ - 325912, - 76898, - 601 - ], - [ - 323650, - 75899, - 481 - ], - [ - 327823, - 79309, - 472 - ], - [ - 328768, - 81461, - 502 - ], - [ - 326387, - 82038, - 512 - ], - [ - 326962, - 77770, - 624 - ], - [ - 326182, - 75513, - 482 - ], - [ - 328549, - 76731, - 598 - ], - [ - 329303, - 77535, - 472 - ], - [ - 333507, - 74016, - 518 - ], - [ - 332213, - 73299, - 657 - ], - [ - 332162, - 72976, - 546 - ], - [ - 344102, - 69970, - 570 - ], - [ - 343211, - 69105, - 591 - ], - [ - 331349, - 76013, - 488 - ], - [ - 329392, - 77546, - 640 - ], - [ - 334015, - 77396, - 462 - ], - [ - 335996, - 79005, - 462 - ], - [ - 336052, - 79187, - 462 - ], - [ - 338769, - 71734, - 474 - ], - [ - 338650, - 70769, - 588 - ], - [ - 332145, - 79642, - 618 - ], - [ - 332533, - 78132, - 465 - ], - [ - 336842, - 75079, - 597 - ], - [ - 336432, - 72057, - 496 - ], - [ - 338150, - 71514, - 587 - ], - [ - 332167, - 77538, - 640 - ], - [ - 341119, - 77518, - 592 - ], - [ - 338658, - 78281, - 462 - ], - [ - 338623, - 78167, - 462 - ], - [ - 337992, - 77333, - 596 - ], - [ - 340263, - 75472, - 462 - ], - [ - 342290, - 77249, - 462 - ], - [ - 341149, - 77613, - 592 - ], - [ - 342235, - 77067, - 462 - ], - [ - 345970, - 71512, - 505 - ], - [ - 346441, - 73557, - 462 - ], - [ - 344367, - 72000, - 486 - ], - [ - 342027, - 68264, - 646 - ], - [ - 341295, - 68376, - 514 - ], - [ - 341205, - 67697, - 524 - ], - [ - 347323, - 75602, - 472 - ], - [ - 344903, - 76352, - 462 - ], - [ - 344871, - 76247, - 462 - ], - [ - 341696, - 73660, - 462 - ], - [ - 343229, - 71857, - 492 - ], - [ - 348445, - 75162, - 462 - ], - [ - 348501, - 75344, - 462 - ], - [ - 347353, - 75697, - 602 - ], - [ - 345112, - 70569, - 564 - ], - [ - 345529, - 68126, - 616 - ], - [ - 349848, - 71664, - 746 - ], - [ - 350826, - 72613, - 514 - ], - [ - 350291, - 72993, - 898 - ], - [ - 349779, - 73029, - 829 - ], - [ - 351070, - 74331, - 462 - ], - [ - 347875, - 71756, - 462 - ], - [ - 354673, - 73230, - 462 - ], - [ - 350926, - 73296, - 641 - ], - [ - 351105, - 74446, - 462 - ], - [ - 354730, - 73411, - 462 - ], - [ - 323242, - 75306, - 858 - ], - [ - 321805, - 75142, - 539 - ], - [ - 321302, - 75234, - 509 - ], - [ - 349335, - 67899, - 516 - ], - [ - 350482, - 67516, - 357 - ], - [ - 351062, - 68492, - 683 - ], - [ - 355947, - 63707, - 637 - ], - [ - 357499, - 64472, - 885 - ], - [ - 341929, - 67602, - 518 - ], - [ - 349761, - 66900, - 721 - ], - [ - 349563, - 67607, - 682 - ], - [ - 331336, - 73565, - 585 - ], - [ - 329766, - 73964, - 498 - ], - [ - 329005, - 71372, - 525 - ], - [ - 356619, - 62423, - 452 - ], - [ - 355872, - 63062, - 783 - ], - [ - 355550, - 61263, - 342 - ], - [ - 356717, - 62771, - 785 - ], - [ - 358866, - 64446, - 820 - ], - [ - 347299, - 70446, - 629 - ], - [ - 343528, - 71462, - 642 - ], - [ - 343135, - 71156, - 497 - ], - [ - 351290, - 66745, - 532 - ], - [ - 351844, - 67359, - 497 - ], - [ - 349738, - 70950, - 518 - ], - [ - 353808, - 69585, - 644 - ], - [ - 337622, - 70891, - 519 - ], - [ - 335669, - 71845, - 487 - ], - [ - 334853, - 69577, - 528 - ], - [ - 336354, - 71389, - 644 - ], - [ - 325248, - 75278, - 559 - ], - [ - 319133, - 77746, - 635 - ], - [ - 318955, - 77641, - 422 - ], - [ - 323313, - 75974, - 606 - ], - [ - 325597, - 77962, - 476 - ], - [ - 322850, - 75669, - 706 - ], - [ - 330662, - 73775, - 650 - ], - [ - 335312, - 69132, - 535 - ], - [ - 355039, - 63760, - 736 - ], - [ - 352023, - 65647, - 550 - ], - [ - 338911, - 70728, - 673 - ], - [ - 340876, - 71874, - 608 - ], - [ - 341564, - 67329, - 524 - ], - [ - 346006, - 67381, - 574 - ], - [ - 347892, - 65267, - 537 - ], - [ - 359346, - 64748, - 705 - ], - [ - 358995, - 65461, - 752 - ], - [ - 354977, - 70196, - 595 - ], - [ - 357668, - 65827, - 770 - ], - [ - 359688, - 64644, - 452 - ], - [ - 326509, - 74408, - 522 - ], - [ - 326552, - 74740, - 523 - ], - [ - 326105, - 74838, - 656 - ], - [ - 327962, - 72354, - 539 - ], - [ - 330866, - 72300, - 621 - ], - [ - 330626, - 73462, - 740 - ], - [ - 353971, - 68561, - 676 - ], - [ - 357068, - 65464, - 745 - ], - [ - 354581, - 64066, - 524 - ], - [ - 352852, - 66274, - 605 - ], - [ - 331587, - 77698, - 691 - ], - [ - 332701, - 74589, - 671 - ], - [ - 334691, - 76200, - 674 - ], - [ - 335454, - 75588, - 462 - ], - [ - 355988, - 61617, - 452 - ], - [ - 322402, - 76063, - 525 - ], - [ - 350719, - 69223, - 498 - ], - [ - 346855, - 72098, - 590 - ], - [ - 352337, - 68006, - 575 - ], - [ - 351875, - 67682, - 329 - ], - [ - 356779, - 65415, - 579 - ], - [ - 335836, - 75270, - 511 - ], - [ - 325687, - 75233, - 569 - ], - [ - 354098, - 69571, - 602 - ], - [ - 343737, - 70382, - 656 - ], - [ - 343484, - 71118, - 673 - ], - [ - 340187, - 70239, - 512 - ], - [ - 342500, - 68512, - 511 - ], - [ - 336256, - 76212, - 578 - ], - [ - 336547, - 75870, - 472 - ], - [ - 322969, - 76673, - 502 - ], - [ - 334995, - 75474, - 646 - ], - [ - 344663, - 70607, - 676 - ], - [ - 344749, - 71281, - 634 - ], - [ - 362870, - 67179, - 482 - ], - [ - 358091, - 124745, - 760 - ], - [ - 357082, - 124503, - 637 - ], - [ - 358992, - 121239, - 760 - ], - [ - 383663, - 110215, - 395 - ], - [ - 383647, - 109884, - 773 - ], - [ - 384940, - 109919, - 344 - ], - [ - 377880, - 96460, - 982 - ], - [ - 376887, - 96647, - 922 - ], - [ - 378571, - 95238, - 652 - ], - [ - 385950, - 104720, - 708 - ], - [ - 386001, - 105063, - 781 - ], - [ - 384527, - 103426, - 751 - ], - [ - 387330, - 102868, - 119 - ], - [ - 388311, - 103919, - 109 - ], - [ - 387463, - 103868, - 117 - ], - [ - 375672, - 106488, - 1118 - ], - [ - 374824, - 106542, - 924 - ], - [ - 375618, - 106134, - 1023 - ], - [ - 388050, - 101536, - 892 - ], - [ - 389892, - 100515, - 1009 - ], - [ - 390013, - 101920, - 94 - ], - [ - 394879, - 100780, - 1049 - ], - [ - 395332, - 100813, - 752 - ], - [ - 394810, - 101263, - 752 - ], - [ - 396849, - 100122, - 1029 - ], - [ - 397380, - 99175, - 752 - ], - [ - 397818, - 99643, - 752 - ], - [ - 395512, - 99049, - 1022 - ], - [ - 393511, - 100035, - 1110 - ], - [ - 396519, - 99923, - 1036 - ], - [ - 397311, - 99102, - 752 - ], - [ - 396083, - 98744, - 1132 - ], - [ - 394904, - 97571, - 987 - ], - [ - 397570, - 97315, - 736 - ], - [ - 395879, - 97399, - 753 - ], - [ - 398064, - 94345, - 772 - ], - [ - 389077, - 99560, - 1056 - ], - [ - 390141, - 100179, - 752 - ], - [ - 400383, - 95053, - 732 - ], - [ - 398481, - 93870, - 964 - ], - [ - 397900, - 93012, - 946 - ], - [ - 392065, - 98383, - 1054 - ], - [ - 391890, - 98542, - 752 - ], - [ - 391713, - 98567, - 974 - ], - [ - 379721, - 103700, - 818 - ], - [ - 380678, - 103927, - 467 - ], - [ - 380791, - 104565, - 860 - ], - [ - 393299, - 95469, - 758 - ], - [ - 397763, - 92930, - 782 - ], - [ - 394756, - 96588, - 740 - ], - [ - 390654, - 99509, - 1046 - ], - [ - 390395, - 101006, - 970 - ], - [ - 388947, - 93483, - 840 - ], - [ - 390218, - 93477, - 892 - ], - [ - 389219, - 95503, - 908 - ], - [ - 392536, - 102458, - 79 - ], - [ - 392851, - 102605, - 752 - ], - [ - 391868, - 103146, - 58 - ], - [ - 380649, - 89881, - 772 - ], - [ - 382080, - 91357, - 832 - ], - [ - 379810, - 90680, - 872 - ], - [ - 381405, - 92312, - 842 - ], - [ - 387898, - 93008, - 824 - ], - [ - 387544, - 92485, - 814 - ], - [ - 356120, - 119089, - 765 - ], - [ - 354205, - 118750, - 852 - ], - [ - 356622, - 118731, - 775 - ], - [ - 358280, - 119246, - 1091 - ], - [ - 357733, - 118614, - 1169 - ], - [ - 358961, - 117792, - 1113 - ], - [ - 344262, - 130349, - 632 - ], - [ - 349681, - 124087, - 842 - ], - [ - 348499, - 126936, - 712 - ], - [ - 345057, - 130934, - 572 - ], - [ - 352328, - 121998, - 863 - ], - [ - 353479, - 119519, - 852 - ], - [ - 353159, - 121253, - 872 - ], - [ - 348667, - 126740, - 712 - ], - [ - 355624, - 123539, - 690 - ], - [ - 354959, - 124928, - 1051 - ], - [ - 354349, - 124634, - 712 - ], - [ - 349785, - 125125, - 842 - ], - [ - 352016, - 122762, - 712 - ], - [ - 353960, - 120558, - 868 - ], - [ - 355559, - 119465, - 995 - ], - [ - 353700, - 120762, - 692 - ], - [ - 369243, - 105289, - 802 - ], - [ - 358012, - 114963, - 922 - ], - [ - 355295, - 127644, - 722 - ], - [ - 353009, - 127073, - 999 - ], - [ - 353270, - 126360, - 978 - ], - [ - 356100, - 133705, - 740 - ], - [ - 354421, - 135197, - 716 - ], - [ - 355610, - 133073, - 751 - ], - [ - 355202, - 132736, - 791 - ], - [ - 355590, - 132702, - 1160 - ], - [ - 355112, - 132056, - 795 - ], - [ - 355481, - 132049, - 850 - ], - [ - 357290, - 136026, - 843 - ], - [ - 357245, - 135710, - 808 - ], - [ - 358808, - 135339, - 612 - ], - [ - 356974, - 133670, - 794 - ], - [ - 359996, - 132459, - 644 - ], - [ - 361812, - 131907, - 740 - ], - [ - 358911, - 135242, - 612 - ], - [ - 360602, - 130291, - 945 - ], - [ - 360924, - 129929, - 710 - ], - [ - 361314, - 130248, - 837 - ], - [ - 364043, - 128448, - 411 - ], - [ - 369723, - 115255, - 932 - ], - [ - 367227, - 118237, - 975 - ], - [ - 365368, - 113580, - 1003 - ], - [ - 359352, - 120845, - 940 - ], - [ - 357884, - 119992, - 728 - ], - [ - 365566, - 118999, - 845 - ], - [ - 366428, - 121659, - 897 - ], - [ - 364458, - 119313, - 889 - ], - [ - 360195, - 121798, - 779 - ], - [ - 362454, - 123320, - 1042 - ], - [ - 362203, - 124721, - 774 - ], - [ - 367103, - 126721, - 1003 - ], - [ - 365609, - 108825, - 923 - ], - [ - 368879, - 109251, - 802 - ], - [ - 367455, - 111211, - 984 - ], - [ - 375222, - 118925, - 874 - ], - [ - 369060, - 110184, - 1004 - ], - [ - 371824, - 109786, - 1096 - ], - [ - 381766, - 92620, - 834 - ], - [ - 383247, - 93693, - 870 - ], - [ - 378980, - 98010, - 970 - ], - [ - 379235, - 96257, - 915 - ], - [ - 379778, - 96870, - 932 - ], - [ - 385180, - 95850, - 977 - ], - [ - 384908, - 96627, - 1106 - ], - [ - 384391, - 96874, - 970 - ], - [ - 381492, - 92353, - 652 - ], - [ - 367078, - 107418, - 802 - ], - [ - 372313, - 121795, - 930 - ], - [ - 374299, - 102491, - 1063 - ], - [ - 376448, - 100665, - 642 - ], - [ - 376593, - 103042, - 951 - ], - [ - 373873, - 106509, - 1155 - ], - [ - 372668, - 105762, - 1399 - ], - [ - 374097, - 106162, - 1003 - ], - [ - 370502, - 114922, - 1109 - ], - [ - 371301, - 116360, - 1112 - ], - [ - 372931, - 108148, - 678 - ], - [ - 372384, - 107788, - 464 - ], - [ - 378015, - 97470, - 1011 - ], - [ - 377518, - 97182, - 642 - ], - [ - 377503, - 96837, - 925 - ], - [ - 370755, - 104692, - 1354 - ], - [ - 371045, - 107122, - 802 - ], - [ - 389000, - 96368, - 1218 - ], - [ - 387995, - 97985, - 1155 - ], - [ - 386598, - 96793, - 1155 - ], - [ - 375109, - 113912, - 870 - ], - [ - 376460, - 112555, - 925 - ], - [ - 377542, - 113161, - 1041 - ], - [ - 381077, - 103841, - 782 - ], - [ - 382029, - 103278, - 815 - ], - [ - 373700, - 100836, - 887 - ], - [ - 375228, - 99410, - 642 - ], - [ - 376947, - 97597, - 936 - ], - [ - 372115, - 105069, - 1694 - ], - [ - 380799, - 111783, - 928 - ], - [ - 379100, - 111675, - 876 - ], - [ - 380538, - 109780, - 983 - ], - [ - 386922, - 102673, - 120 - ], - [ - 386580, - 103476, - 120 - ], - [ - 386489, - 102797, - 105 - ], - [ - 381277, - 97567, - 878 - ], - [ - 382151, - 98447, - 1038 - ], - [ - 379628, - 99251, - 868 - ], - [ - 385789, - 103359, - 968 - ], - [ - 382497, - 101123, - 925 - ], - [ - 382665, - 102471, - 776 - ], - [ - 380000, - 102296, - 451 - ], - [ - 390518, - 102402, - 104 - ], - [ - 392104, - 101965, - 131 - ], - [ - 390835, - 100857, - 1081 - ], - [ - 391324, - 101343, - 990 - ], - [ - 386410, - 101785, - 876 - ], - [ - 356287, - 131956, - 900 - ], - [ - 352028, - 136394, - 572 - ], - [ - 355390, - 132400, - 572 - ], - [ - 388358, - 106810, - 112 - ], - [ - 387554, - 104538, - 169 - ], - [ - 376006, - 105108, - 1261 - ], - [ - 376750, - 104404, - 632 - ], - [ - 376536, - 105410, - 1281 - ], - [ - 382717, - 109743, - 692 - ], - [ - 377923, - 107351, - 1266 - ], - [ - 378128, - 106306, - 1374 - ], - [ - 378506, - 106951, - 1301 - ], - [ - 378628, - 98740, - 890 - ], - [ - 378859, - 98320, - 642 - ], - [ - 377971, - 105285, - 1070 - ], - [ - 377916, - 104976, - 886 - ], - [ - 378302, - 105611, - 910 - ], - [ - 383001, - 98584, - 876 - ], - [ - 373977, - 119543, - 1034 - ], - [ - 372037, - 117450, - 953 - ], - [ - 379156, - 106223, - 801 - ], - [ - 361859, - 122015, - 958 - ], - [ - 360644, - 121026, - 1222 - ], - [ - 356251, - 120096, - 739 - ], - [ - 354901, - 121506, - 870 - ], - [ - 385668, - 96048, - 1152 - ], - [ - 390460, - 93686, - 892 - ], - [ - 385452, - 102802, - 1072 - ], - [ - 389860, - 96978, - 963 - ], - [ - 372436, - 108143, - 529 - ], - [ - 371596, - 108093, - 1042 - ], - [ - 371660, - 105077, - 1352 - ], - [ - 383800, - 90394, - 918 - ], - [ - 385337, - 93709, - 872 - ], - [ - 395358, - 91206, - 925 - ], - [ - 395086, - 91374, - 806 - ], - [ - 393947, - 89661, - 852 - ], - [ - 387927, - 104033, - 507 - ], - [ - 386604, - 106947, - 295 - ], - [ - 387830, - 106540, - 323 - ], - [ - 388179, - 106978, - 312 - ], - [ - 386881, - 105459, - 668 - ], - [ - 383938, - 109093, - 709 - ], - [ - 384350, - 109045, - 364 - ], - [ - 388090, - 102200, - 209 - ], - [ - 383305, - 109924, - 880 - ], - [ - 377228, - 105045, - 737 - ], - [ - 376717, - 104033, - 865 - ], - [ - 376317, - 104100, - 650 - ], - [ - 390455, - 101693, - 528 - ], - [ - 387629, - 101665, - 707 - ], - [ - 387953, - 100861, - 790 - ], - [ - 372176, - 120775, - 889 - ], - [ - 370843, - 117612, - 915 - ], - [ - 372122, - 108773, - 999 - ], - [ - 367823, - 125689, - 810 - ], - [ - 367542, - 126686, - 1008 - ], - [ - 396562, - 98105, - 746 - ], - [ - 377147, - 104365, - 862 - ], - [ - 378083, - 101205, - 959 - ], - [ - 356581, - 134362, - 555 - ], - [ - 356199, - 134405, - 815 - ], - [ - 353345, - 135989, - 741 - ], - [ - 354200, - 136210, - 708 - ], - [ - 352754, - 137007, - 932 - ], - [ - 379027, - 101777, - 851 - ], - [ - 379858, - 100962, - 911 - ], - [ - 379068, - 98659, - 996 - ], - [ - 378040, - 108395, - 964 - ], - [ - 376914, - 108457, - 937 - ], - [ - 377644, - 108060, - 988 - ], - [ - 377146, - 107089, - 1220 - ], - [ - 387426, - 106383, - 288 - ], - [ - 386992, - 106509, - 264 - ], - [ - 376145, - 106122, - 1324 - ], - [ - 372641, - 105411, - 1656 - ], - [ - 356040, - 126555, - 906 - ], - [ - 354993, - 125257, - 923 - ], - [ - 363665, - 129089, - 605 - ], - [ - 357754, - 129545, - 708 - ], - [ - 359875, - 131393, - 929 - ], - [ - 359071, - 132202, - 653 - ], - [ - 356033, - 132994, - 1109 - ], - [ - 381672, - 106114, - 716 - ], - [ - 378479, - 104214, - 957 - ], - [ - 380253, - 107760, - 736 - ], - [ - 381706, - 108535, - 891 - ], - [ - 380007, - 109181, - 869 - ], - [ - 377172, - 107415, - 972 - ], - [ - 389152, - 97690, - 900 - ], - [ - 359224, - 119824, - 1035 - ], - [ - 357601, - 117615, - 1182 - ], - [ - 357495, - 116957, - 912 - ], - [ - 359188, - 116765, - 754 - ], - [ - 365111, - 126414, - 847 - ], - [ - 364787, - 126013, - 871 - ], - [ - 365342, - 126054, - 839 - ], - [ - 359658, - 129742, - 943 - ], - [ - 364569, - 126697, - 618 - ], - [ - 355811, - 122897, - 692 - ], - [ - 356951, - 127197, - 924 - ], - [ - 367068, - 119924, - 864 - ], - [ - 364138, - 119002, - 911 - ], - [ - 362650, - 117605, - 951 - ], - [ - 366397, - 111830, - 1179 - ], - [ - 395228, - 97054, - 745 - ], - [ - 397257, - 98160, - 860 - ], - [ - 397473, - 98888, - 752 - ], - [ - 375784, - 110854, - 1071 - ], - [ - 375303, - 112922, - 1028 - ], - [ - 374168, - 110846, - 1016 - ], - [ - 375760, - 107166, - 1093 - ], - [ - 375432, - 108177, - 1109 - ], - [ - 390570, - 95612, - 1075 - ], - [ - 391309, - 95551, - 915 - ], - [ - 370785, - 123341, - 856 - ], - [ - 370153, - 122317, - 983 - ], - [ - 372279, - 116468, - 939 - ], - [ - 371810, - 115741, - 928 - ], - [ - 385142, - 95493, - 1109 - ], - [ - 384778, - 88569, - 842 - ], - [ - 385587, - 89393, - 733 - ], - [ - 389710, - 99200, - 905 - ], - [ - 390214, - 100111, - 752 - ], - [ - 395782, - 101077, - 1033 - ], - [ - 395309, - 100604, - 1027 - ], - [ - 381696, - 95072, - 940 - ], - [ - 382841, - 93761, - 940 - ], - [ - 383433, - 95010, - 1045 - ], - [ - 386438, - 92618, - 835 - ], - [ - 385780, - 93576, - 1037 - ], - [ - 383888, - 110994, - 692 - ], - [ - 386580, - 106591, - 638 - ], - [ - 384327, - 108698, - 693 - ], - [ - 367177, - 123978, - 912 - ], - [ - 363369, - 122996, - 1027 - ], - [ - 376718, - 110513, - 1216 - ], - [ - 377015, - 109123, - 1125 - ], - [ - 377187, - 110456, - 1076 - ], - [ - 377748, - 114838, - 832 - ], - [ - 376810, - 111159, - 1307 - ], - [ - 378194, - 112076, - 1259 - ], - [ - 381014, - 103528, - 479 - ], - [ - 380135, - 103319, - 444 - ], - [ - 375621, - 98689, - 902 - ], - [ - 369857, - 123684, - 917 - ], - [ - 371909, - 116408, - 1079 - ], - [ - 378615, - 112743, - 985 - ], - [ - 379030, - 113372, - 965 - ], - [ - 378818, - 111697, - 1084 - ], - [ - 378915, - 110322, - 791 - ], - [ - 395909, - 101430, - 752 - ], - [ - 355614, - 138145, - 771 - ], - [ - 355534, - 137475, - 878 - ], - [ - 356100, - 136798, - 710 - ], - [ - 354789, - 137880, - 876 - ], - [ - 354339, - 137246, - 738 - ], - [ - 353081, - 130503, - 852 - ], - [ - 350845, - 128796, - 712 - ], - [ - 351485, - 128617, - 893 - ], - [ - 351854, - 128241, - 785 - ], - [ - 359629, - 115379, - 726 - ], - [ - 363223, - 118558, - 1156 - ], - [ - 362277, - 118268, - 1183 - ], - [ - 373688, - 110177, - 1034 - ], - [ - 373040, - 108812, - 975 - ], - [ - 384036, - 102855, - 810 - ], - [ - 380733, - 96320, - 953 - ], - [ - 379888, - 96571, - 652 - ], - [ - 382440, - 97684, - 881 - ], - [ - 383342, - 97493, - 1021 - ], - [ - 383375, - 97818, - 882 - ], - [ - 386974, - 106168, - 635 - ], - [ - 382414, - 109054, - 897 - ], - [ - 386237, - 107077, - 343 - ], - [ - 384763, - 108569, - 366 - ], - [ - 384741, - 108239, - 688 - ], - [ - 386213, - 106717, - 675 - ], - [ - 372198, - 105746, - 1619 - ], - [ - 372142, - 105411, - 1444 - ], - [ - 362131, - 117241, - 1041 - ], - [ - 376078, - 109506, - 1208 - ], - [ - 360171, - 115352, - 909 - ], - [ - 360206, - 115677, - 792 - ], - [ - 354999, - 138904, - 602 - ], - [ - 357838, - 125493, - 646 - ], - [ - 357196, - 131970, - 723 - ], - [ - 374680, - 110521, - 1115 - ], - [ - 362567, - 131821, - 612 - ], - [ - 397821, - 92862, - 782 - ], - [ - 376429, - 112212, - 1125 - ], - [ - 355688, - 136456, - 709 - ], - [ - 362545, - 120302, - 1164 - ], - [ - 363914, - 119242, - 1145 - ], - [ - 363571, - 124692, - 731 - ], - [ - 375593, - 105810, - 1264 - ], - [ - 376736, - 107101, - 955 - ], - [ - 375226, - 109539, - 1015 - ], - [ - 387972, - 95518, - 1181 - ], - [ - 387477, - 100332, - 1068 - ], - [ - 388541, - 99880, - 1070 - ], - [ - 385118, - 98324, - 899 - ], - [ - 386056, - 99110, - 891 - ], - [ - 384345, - 98958, - 873 - ], - [ - 388835, - 100069, - 842 - ], - [ - 383916, - 101836, - 996 - ], - [ - 386232, - 100433, - 905 - ], - [ - 385271, - 101457, - 1029 - ], - [ - 386954, - 99463, - 1185 - ], - [ - 388619, - 98383, - 948 - ], - [ - 387270, - 102180, - 560 - ], - [ - 386629, - 97108, - 1010 - ], - [ - 388332, - 93893, - 1152 - ], - [ - 363220, - 125713, - 618 - ], - [ - 382808, - 93685, - 652 - ], - [ - 387423, - 93643, - 1220 - ], - [ - 384322, - 94400, - 808 - ], - [ - 381791, - 109251, - 767 - ], - [ - 381394, - 106190, - 863 - ], - [ - 380916, - 105578, - 736 - ], - [ - 359498, - 132128, - 834 - ], - [ - 358779, - 132597, - 637 - ], - [ - 353708, - 135233, - 852 - ], - [ - 370450, - 114615, - 956 - ], - [ - 352763, - 128134, - 788 - ], - [ - 363138, - 121316, - 910 - ], - [ - 379615, - 103059, - 521 - ], - [ - 379245, - 103449, - 818 - ], - [ - 378625, - 107949, - 1110 - ], - [ - 387605, - 92849, - 1005 - ], - [ - 362463, - 126763, - 625 - ], - [ - 365297, - 125739, - 787 - ], - [ - 360060, - 126280, - 795 - ], - [ - 361318, - 128230, - 627 - ], - [ - 365586, - 125731, - 960 - ], - [ - 359188, - 126368, - 631 - ], - [ - 360694, - 130998, - 924 - ], - [ - 361919, - 125774, - 838 - ], - [ - 377299, - 100269, - 935 - ], - [ - 370145, - 114888, - 1084 - ], - [ - 378181, - 115143, - 833 - ], - [ - 394383, - 97076, - 975 - ], - [ - 392921, - 95655, - 980 - ], - [ - 381859, - 107493, - 777 - ], - [ - 367707, - 121982, - 778 - ], - [ - 367629, - 121262, - 1011 - ], - [ - 386499, - 98947, - 1128 - ], - [ - 353592, - 120559, - 856 - ], - [ - 368515, - 123974, - 937 - ], - [ - 387122, - 100824, - 1011 - ], - [ - 374424, - 106181, - 1166 - ], - [ - 375884, - 108163, - 989 - ], - [ - 361856, - 130522, - 639 - ], - [ - 361455, - 129181, - 778 - ], - [ - 384135, - 97262, - 1082 - ], - [ - 386366, - 97947, - 1123 - ], - [ - 384827, - 98101, - 1031 - ], - [ - 382883, - 101060, - 828 - ], - [ - 357793, - 127518, - 912 - ], - [ - 361104, - 131288, - 714 - ], - [ - 376207, - 106784, - 955 - ], - [ - 375701, - 106811, - 937 - ], - [ - 384265, - 98281, - 1010 - ], - [ - 369042, - 123333, - 833 - ], - [ - 381193, - 107600, - 868 - ], - [ - 374117, - 110538, - 878 - ], - [ - 360764, - 131675, - 663 - ], - [ - 354546, - 124958, - 925 - ], - [ - 384473, - 97525, - 916 - ], - [ - 398659, - 70497, - 848 - ], - [ - 398468, - 69586, - 642 - ], - [ - 401530, - 71735, - 642 - ], - [ - 401529, - 74294, - 672 - ], - [ - 404590, - 73882, - 642 - ], - [ - 402798, - 75182, - 672 - ], - [ - 415594, - 87649, - 660 - ], - [ - 414786, - 89231, - 922 - ], - [ - 414442, - 89280, - 654 - ], - [ - 407835, - 95496, - 722 - ], - [ - 404087, - 98098, - 732 - ], - [ - 410628, - 91292, - 642 - ], - [ - 386659, - 73820, - 692 - ], - [ - 388676, - 70959, - 682 - ], - [ - 390250, - 72398, - 692 - ], - [ - 405917, - 99519, - 732 - ], - [ - 405800, - 99642, - 732 - ], - [ - 407754, - 97287, - 652 - ], - [ - 409227, - 102072, - 822 - ], - [ - 408923, - 102395, - 732 - ], - [ - 387469, - 76341, - 692 - ], - [ - 382678, - 79467, - 682 - ], - [ - 384643, - 76680, - 692 - ], - [ - 407871, - 97410, - 652 - ], - [ - 409354, - 102068, - 822 - ], - [ - 409292, - 102133, - 822 - ], - [ - 410714, - 100492, - 852 - ], - [ - 410921, - 100809, - 852 - ], - [ - 409557, - 102259, - 822 - ], - [ - 410718, - 100618, - 852 - ], - [ - 410857, - 93451, - 817 - ], - [ - 411902, - 91866, - 817 - ], - [ - 412302, - 92558, - 642 - ], - [ - 410779, - 100553, - 852 - ], - [ - 411000, - 100173, - 652 - ], - [ - 407900, - 97382, - 652 - ], - [ - 408498, - 95615, - 675 - ], - [ - 408171, - 95743, - 497 - ], - [ - 410291, - 94649, - 652 - ], - [ - 411842, - 91508, - 634 - ], - [ - 413475, - 90202, - 647 - ], - [ - 418337, - 86285, - 652 - ], - [ - 416325, - 88376, - 652 - ], - [ - 419920, - 84639, - 652 - ], - [ - 416739, - 84934, - 662 - ], - [ - 410070, - 78074, - 768 - ], - [ - 410714, - 78179, - 632 - ], - [ - 413774, - 80327, - 632 - ], - [ - 416639, - 82337, - 652 - ], - [ - 407652, - 76031, - 642 - ], - [ - 404249, - 74622, - 806 - ], - [ - 397666, - 70097, - 681 - ], - [ - 393081, - 68385, - 682 - ], - [ - 392563, - 65443, - 652 - ], - [ - 395406, - 67438, - 652 - ], - [ - 390692, - 68098, - 672 - ], - [ - 378297, - 85752, - 768 - ], - [ - 377821, - 86359, - 572 - ], - [ - 378429, - 86762, - 743 - ], - [ - 381985, - 84115, - 682 - ], - [ - 414314, - 90467, - 642 - ], - [ - 413884, - 90103, - 464 - ], - [ - 411698, - 90178, - 642 - ], - [ - 379545, - 87574, - 722 - ], - [ - 410179, - 93922, - 653 - ], - [ - 419551, - 78678, - 686 - ], - [ - 420093, - 79206, - 873 - ], - [ - 418954, - 79038, - 652 - ], - [ - 393530, - 60049, - 915 - ], - [ - 394071, - 60583, - 963 - ], - [ - 393084, - 60846, - 912 - ], - [ - 426537, - 83794, - 1051 - ], - [ - 426367, - 84251, - 652 - ], - [ - 393124, - 60182, - 1023 - ], - [ - 393003, - 60152, - 912 - ], - [ - 394884, - 60963, - 765 - ], - [ - 395276, - 62210, - 822 - ], - [ - 394680, - 61968, - 652 - ], - [ - 403515, - 67078, - 718 - ], - [ - 403855, - 68420, - 642 - ], - [ - 400796, - 66269, - 642 - ], - [ - 408803, - 71414, - 648 - ], - [ - 409261, - 72038, - 636 - ], - [ - 406914, - 70571, - 642 - ], - [ - 416091, - 77025, - 632 - ], - [ - 416343, - 76666, - 543 - ], - [ - 414453, - 75790, - 797 - ], - [ - 411256, - 73394, - 796 - ], - [ - 410736, - 73137, - 896 - ], - [ - 409732, - 72332, - 938 - ], - [ - 397736, - 64117, - 652 - ], - [ - 409973, - 72722, - 642 - ], - [ - 413033, - 74874, - 632 - ], - [ - 300675, - 84679, - 432 - ], - [ - 300666, - 84691, - 512 - ], - [ - 298390, - 83428, - 612 - ], - [ - 298345, - 83067, - 648 - ], - [ - 298591, - 82844, - 432 - ], - [ - 298442, - 83049, - 432 - ], - [ - 297867, - 82526, - 645 - ], - [ - 296317, - 81184, - 432 - ], - [ - 295019, - 85972, - 808 - ], - [ - 295979, - 86971, - 522 - ], - [ - 293444, - 85121, - 522 - ], - [ - 295837, - 86073, - 676 - ], - [ - 297830, - 84435, - 522 - ], - [ - 296144, - 81421, - 432 - ], - [ - 296477, - 81975, - 764 - ], - [ - 295606, - 84358, - 632 - ], - [ - 293456, - 85105, - 522 - ], - [ - 299707, - 85805, - 522 - ], - [ - 299803, - 85875, - 512 - ], - [ - 277832, - 92320, - 702 - ], - [ - 277375, - 91971, - 712 - ], - [ - 277572, - 91719, - 712 - ], - [ - 278027, - 92077, - 702 - ], - [ - 316987, - 155026, - 852 - ], - [ - 315700, - 154190, - 852 - ], - [ - 316604, - 152974, - 892 - ], - [ - 317981, - 153915, - 872 - ], - [ - 400004, - 48830, - 826 - ], - [ - 400391, - 48400, - 824 - ], - [ - 400586, - 48742, - 682 - ], - [ - 400469, - 49026, - 822 - ], - [ - 400366, - 49185, - 1012 - ], - [ - 400515, - 48934, - 682 - ], - [ - 400554, - 48839, - 682 - ], - [ - 400612, - 48643, - 682 - ], - [ - 400631, - 48542, - 672 - ], - [ - 400643, - 48441, - 672 - ], - [ - 400646, - 48236, - 672 - ], - [ - 400648, - 48338, - 672 - ], - [ - 400637, - 48134, - 672 - ], - [ - 400621, - 48033, - 672 - ], - [ - 400300, - 47719, - 818 - ], - [ - 400598, - 47933, - 672 - ], - [ - 400568, - 47835, - 672 - ], - [ - 400531, - 47739, - 682 - ], - [ - 400488, - 47646, - 682 - ], - [ - 400251, - 47357, - 809 - ], - [ - 400384, - 47470, - 682 - ], - [ - 400439, - 47556, - 672 - ], - [ - 400256, - 47310, - 682 - ], - [ - 400184, - 47236, - 682 - ], - [ - 399781, - 47145, - 809 - ], - [ - 400027, - 47106, - 682 - ], - [ - 400108, - 47168, - 682 - ], - [ - 399942, - 47049, - 682 - ], - [ - 399460, - 48285, - 829 - ], - [ - 399282, - 46948, - 813 - ], - [ - 399760, - 46953, - 682 - ], - [ - 399853, - 46998, - 682 - ], - [ - 399665, - 46915, - 682 - ], - [ - 399568, - 46883, - 692 - ], - [ - 399469, - 46858, - 692 - ], - [ - 398378, - 47203, - 836 - ], - [ - 398858, - 46855, - 692 - ], - [ - 399163, - 46825, - 692 - ], - [ - 399266, - 46829, - 692 - ], - [ - 399061, - 46828, - 692 - ], - [ - 398959, - 46838, - 692 - ], - [ - 400323, - 47387, - 682 - ], - [ - 399368, - 46840, - 682 - ], - [ - 251393, - 147531, - 823 - ], - [ - 250776, - 148722, - 632 - ], - [ - 250751, - 148704, - 758 - ], - [ - 260770, - 135935, - 1287 - ], - [ - 262714, - 126434, - 1077 - ], - [ - 264380, - 121924, - 962 - ], - [ - 260026, - 130547, - 1046 - ], - [ - 258515, - 130040, - 1265 - ], - [ - 258725, - 129583, - 1088 - ], - [ - 265414, - 119058, - 1035 - ], - [ - 265175, - 115372, - 662 - ], - [ - 267674, - 117148, - 662 - ], - [ - 263267, - 115704, - 870 - ], - [ - 264027, - 114769, - 989 - ], - [ - 263774, - 114973, - 1033 - ], - [ - 263968, - 114436, - 804 - ], - [ - 261165, - 125030, - 1208 - ], - [ - 259905, - 123471, - 843 - ], - [ - 261308, - 121749, - 923 - ], - [ - 258128, - 110370, - 696 - ], - [ - 258922, - 111265, - 422 - ], - [ - 256694, - 109681, - 422 - ], - [ - 259224, - 110909, - 675 - ], - [ - 259708, - 109971, - 762 - ], - [ - 259745, - 110303, - 661 - ], - [ - 263733, - 121617, - 872 - ], - [ - 262889, - 120999, - 1051 - ], - [ - 263553, - 120251, - 935 - ], - [ - 252326, - 116263, - 444 - ], - [ - 252226, - 117788, - 439 - ], - [ - 250284, - 117662, - 422 - ], - [ - 253039, - 114816, - 477 - ], - [ - 252853, - 115950, - 682 - ], - [ - 250615, - 112571, - 422 - ], - [ - 248601, - 115907, - 527 - ], - [ - 248099, - 116108, - 422 - ], - [ - 252036, - 118982, - 573 - ], - [ - 251722, - 119469, - 738 - ], - [ - 251304, - 119374, - 477 - ], - [ - 259036, - 126291, - 1169 - ], - [ - 258309, - 126541, - 1017 - ], - [ - 257869, - 125333, - 1117 - ], - [ - 247136, - 119394, - 496 - ], - [ - 248160, - 120261, - 756 - ], - [ - 246654, - 121563, - 598 - ], - [ - 247329, - 123337, - 872 - ], - [ - 248667, - 115309, - 422 - ], - [ - 258050, - 133758, - 1215 - ], - [ - 257254, - 133402, - 1087 - ], - [ - 257967, - 133071, - 1356 - ], - [ - 250292, - 132857, - 671 - ], - [ - 249225, - 128022, - 971 - ], - [ - 251339, - 131641, - 934 - ], - [ - 243373, - 129537, - 833 - ], - [ - 249911, - 127542, - 851 - ], - [ - 250076, - 126686, - 816 - ], - [ - 243548, - 130901, - 699 - ], - [ - 243915, - 131022, - 716 - ], - [ - 241819, - 133786, - 743 - ], - [ - 242304, - 134250, - 744 - ], - [ - 241698, - 137373, - 542 - ], - [ - 240434, - 139151, - 542 - ], - [ - 244088, - 129795, - 699 - ], - [ - 245226, - 128468, - 585 - ], - [ - 244512, - 129918, - 665 - ], - [ - 256617, - 141113, - 849 - ], - [ - 255624, - 142768, - 811 - ], - [ - 255251, - 142595, - 956 - ], - [ - 245753, - 141964, - 924 - ], - [ - 246198, - 142342, - 572 - ], - [ - 243206, - 140143, - 562 - ], - [ - 248699, - 144174, - 779 - ], - [ - 249189, - 144540, - 602 - ], - [ - 246170, - 142070, - 829 - ], - [ - 246114, - 141770, - 629 - ], - [ - 246977, - 141289, - 809 - ], - [ - 249854, - 143589, - 602 - ], - [ - 250694, - 142072, - 1377 - ], - [ - 251831, - 143960, - 1203 - ], - [ - 250531, - 145447, - 602 - ], - [ - 251072, - 145832, - 602 - ], - [ - 250859, - 146749, - 834 - ], - [ - 251342, - 138021, - 1072 - ], - [ - 251666, - 140372, - 1163 - ], - [ - 249207, - 140053, - 1303 - ], - [ - 249067, - 147507, - 602 - ], - [ - 251722, - 144918, - 602 - ], - [ - 252303, - 145122, - 1103 - ], - [ - 252646, - 145597, - 1049 - ], - [ - 252766, - 144380, - 1153 - ], - [ - 258146, - 145761, - 642 - ], - [ - 258403, - 145383, - 840 - ], - [ - 261957, - 148485, - 732 - ], - [ - 264826, - 138747, - 1113 - ], - [ - 262697, - 138355, - 1061 - ], - [ - 261279, - 136795, - 1088 - ], - [ - 267584, - 141055, - 1154 - ], - [ - 265936, - 140365, - 1153 - ], - [ - 254578, - 137493, - 1181 - ], - [ - 258848, - 137392, - 1042 - ], - [ - 258815, - 139520, - 1070 - ], - [ - 249681, - 143815, - 825 - ], - [ - 249116, - 142706, - 771 - ], - [ - 257924, - 132721, - 1415 - ], - [ - 258272, - 132957, - 1326 - ], - [ - 249252, - 137500, - 977 - ], - [ - 251585, - 137826, - 891 - ], - [ - 254021, - 116139, - 944 - ], - [ - 253700, - 116630, - 787 - ], - [ - 253270, - 118994, - 756 - ], - [ - 253831, - 117652, - 687 - ], - [ - 256063, - 119290, - 732 - ], - [ - 251937, - 130537, - 914 - ], - [ - 252492, - 131384, - 692 - ], - [ - 243678, - 129332, - 611 - ], - [ - 243327, - 129199, - 842 - ], - [ - 243591, - 128673, - 626 - ], - [ - 249560, - 142799, - 1057 - ], - [ - 253828, - 147715, - 763 - ], - [ - 255974, - 148014, - 841 - ], - [ - 255553, - 149470, - 642 - ], - [ - 250857, - 125720, - 798 - ], - [ - 253729, - 126342, - 1054 - ], - [ - 251048, - 127047, - 954 - ], - [ - 261050, - 128707, - 1094 - ], - [ - 259660, - 127833, - 1059 - ], - [ - 261995, - 126778, - 1038 - ], - [ - 251799, - 141398, - 1087 - ], - [ - 260311, - 135740, - 1162 - ], - [ - 258452, - 134320, - 1275 - ], - [ - 247144, - 122010, - 782 - ], - [ - 248957, - 120479, - 830 - ], - [ - 253025, - 117285, - 566 - ], - [ - 252847, - 118142, - 714 - ], - [ - 244415, - 119476, - 754 - ], - [ - 245390, - 121763, - 600 - ], - [ - 250515, - 125599, - 839 - ], - [ - 262078, - 121717, - 1078 - ], - [ - 257232, - 116004, - 895 - ], - [ - 256438, - 114924, - 731 - ], - [ - 259044, - 111404, - 766 - ], - [ - 246412, - 129178, - 887 - ], - [ - 246272, - 128140, - 887 - ], - [ - 262513, - 115082, - 958 - ], - [ - 262812, - 112352, - 838 - ], - [ - 262928, - 108923, - 618 - ], - [ - 261959, - 111076, - 778 - ], - [ - 260005, - 109468, - 615 - ], - [ - 260988, - 140820, - 1048 - ], - [ - 261164, - 142228, - 867 - ], - [ - 260566, - 140602, - 1111 - ], - [ - 259865, - 140203, - 977 - ], - [ - 259560, - 142813, - 770 - ], - [ - 250597, - 126252, - 748 - ], - [ - 261668, - 128779, - 1175 - ], - [ - 262811, - 127076, - 1210 - ], - [ - 247653, - 123088, - 738 - ], - [ - 249581, - 122973, - 886 - ], - [ - 257350, - 134045, - 1218 - ], - [ - 254289, - 132936, - 714 - ], - [ - 253323, - 134207, - 666 - ], - [ - 253861, - 132439, - 683 - ], - [ - 244041, - 139015, - 542 - ], - [ - 244649, - 139001, - 765 - ], - [ - 250641, - 141749, - 1248 - ], - [ - 251473, - 141220, - 1374 - ], - [ - 245639, - 141320, - 563 - ], - [ - 245975, - 140753, - 604 - ], - [ - 246489, - 141219, - 613 - ], - [ - 252702, - 136328, - 661 - ], - [ - 252954, - 137971, - 1097 - ], - [ - 249458, - 142102, - 945 - ], - [ - 247770, - 141522, - 777 - ], - [ - 245367, - 139265, - 652 - ], - [ - 248494, - 140496, - 1245 - ], - [ - 247651, - 140508, - 1010 - ], - [ - 247979, - 138730, - 998 - ], - [ - 247822, - 137731, - 691 - ], - [ - 242536, - 135925, - 818 - ], - [ - 249249, - 134916, - 679 - ], - [ - 259427, - 107939, - 677 - ], - [ - 258342, - 108896, - 561 - ], - [ - 263433, - 112643, - 658 - ], - [ - 263271, - 113493, - 898 - ], - [ - 265721, - 141930, - 1164 - ], - [ - 262594, - 140213, - 986 - ], - [ - 257533, - 145002, - 817 - ], - [ - 253899, - 145119, - 793 - ], - [ - 248559, - 120087, - 422 - ], - [ - 250657, - 121102, - 845 - ], - [ - 249667, - 119519, - 469 - ], - [ - 253339, - 116835, - 858 - ], - [ - 252642, - 116770, - 442 - ], - [ - 249818, - 120551, - 625 - ], - [ - 254154, - 117152, - 876 - ], - [ - 253419, - 117490, - 732 - ], - [ - 257326, - 123802, - 863 - ], - [ - 263454, - 146531, - 742 - ], - [ - 265903, - 143296, - 1130 - ], - [ - 263289, - 142760, - 1033 - ], - [ - 260919, - 125171, - 1032 - ], - [ - 258792, - 124632, - 895 - ], - [ - 244924, - 138440, - 787 - ], - [ - 249345, - 141069, - 1317 - ], - [ - 250558, - 141025, - 1454 - ], - [ - 246686, - 142527, - 881 - ], - [ - 254395, - 115678, - 891 - ], - [ - 254917, - 116229, - 847 - ], - [ - 256059, - 116797, - 856 - ], - [ - 256813, - 117600, - 938 - ], - [ - 251183, - 132906, - 675 - ], - [ - 250853, - 132418, - 854 - ], - [ - 251723, - 128875, - 1072 - ], - [ - 253951, - 130219, - 1093 - ], - [ - 255681, - 131112, - 1133 - ], - [ - 259391, - 131808, - 1254 - ], - [ - 253461, - 114973, - 569 - ], - [ - 255514, - 116056, - 422 - ], - [ - 250057, - 119984, - 441 - ], - [ - 248008, - 141001, - 872 - ], - [ - 247348, - 141047, - 962 - ], - [ - 247299, - 140720, - 894 - ], - [ - 246937, - 140945, - 909 - ], - [ - 246843, - 140259, - 890 - ], - [ - 244484, - 126333, - 757 - ], - [ - 247357, - 126581, - 939 - ], - [ - 246118, - 127164, - 580 - ], - [ - 246870, - 126145, - 673 - ], - [ - 260792, - 129889, - 1125 - ], - [ - 244298, - 125010, - 639 - ], - [ - 246494, - 126035, - 630 - ], - [ - 246312, - 126591, - 606 - ], - [ - 263290, - 111606, - 624 - ], - [ - 266640, - 111289, - 641 - ], - [ - 265015, - 113080, - 649 - ], - [ - 267384, - 112198, - 827 - ], - [ - 245542, - 127908, - 570 - ], - [ - 245453, - 127231, - 620 - ], - [ - 245179, - 125192, - 624 - ], - [ - 245146, - 124869, - 774 - ], - [ - 247157, - 142652, - 751 - ], - [ - 257811, - 129598, - 1209 - ], - [ - 251364, - 129404, - 911 - ], - [ - 252027, - 146963, - 632 - ], - [ - 253206, - 147793, - 875 - ], - [ - 252472, - 146484, - 893 - ], - [ - 260846, - 103843, - 412 - ], - [ - 257474, - 108830, - 673 - ], - [ - 246371, - 140158, - 957 - ], - [ - 256181, - 115372, - 737 - ], - [ - 265861, - 119140, - 1020 - ], - [ - 259990, - 121003, - 792 - ], - [ - 246807, - 139931, - 1003 - ], - [ - 247209, - 140070, - 880 - ], - [ - 251773, - 146985, - 753 - ], - [ - 252256, - 144776, - 1101 - ], - [ - 252085, - 139301, - 1214 - ], - [ - 245452, - 118302, - 665 - ], - [ - 257184, - 109696, - 666 - ], - [ - 245366, - 129452, - 673 - ], - [ - 244232, - 121051, - 721 - ], - [ - 243705, - 120623, - 661 - ], - [ - 246660, - 138904, - 890 - ], - [ - 252971, - 146099, - 788 - ], - [ - 257713, - 146368, - 760 - ], - [ - 245102, - 127437, - 812 - ], - [ - 260891, - 136958, - 1044 - ], - [ - 257539, - 135425, - 1279 - ], - [ - 255899, - 135706, - 1019 - ], - [ - 260708, - 144476, - 737 - ], - [ - 260007, - 143739, - 756 - ], - [ - 264869, - 139070, - 1114 - ], - [ - 260895, - 140172, - 978 - ], - [ - 262381, - 138512, - 1206 - ], - [ - 249455, - 120095, - 689 - ], - [ - 262771, - 126754, - 1263 - ], - [ - 247065, - 139044, - 805 - ], - [ - 247271, - 140379, - 1158 - ], - [ - 259295, - 131130, - 1209 - ], - [ - 258365, - 126891, - 1146 - ], - [ - 263091, - 143971, - 862 - ], - [ - 259354, - 131453, - 1402 - ], - [ - 259671, - 131016, - 1128 - ], - [ - 269204, - 109701, - 662 - ], - [ - 251715, - 132135, - 671 - ], - [ - 253739, - 131425, - 895 - ], - [ - 252832, - 130483, - 839 - ], - [ - 252434, - 134277, - 791 - ], - [ - 266148, - 107606, - 683 - ], - [ - 268597, - 109581, - 798 - ], - [ - 266584, - 108723, - 633 - ], - [ - 267646, - 111652, - 684 - ], - [ - 245140, - 127814, - 623 - ], - [ - 257945, - 142031, - 767 - ], - [ - 258831, - 127776, - 1046 - ], - [ - 255052, - 136131, - 1093 - ], - [ - 255048, - 132113, - 856 - ], - [ - 254670, - 131582, - 847 - ], - [ - 250895, - 147102, - 688 - ], - [ - 260238, - 118324, - 873 - ], - [ - 261620, - 121233, - 989 - ], - [ - 261653, - 121578, - 805 - ], - [ - 259862, - 119957, - 969 - ], - [ - 261439, - 119874, - 1026 - ], - [ - 263793, - 107282, - 604 - ], - [ - 261174, - 105353, - 595 - ], - [ - 265196, - 108267, - 780 - ], - [ - 258934, - 135580, - 1147 - ], - [ - 254539, - 132437, - 886 - ], - [ - 261847, - 144087, - 960 - ], - [ - 260318, - 143597, - 899 - ], - [ - 245820, - 129917, - 665 - ], - [ - 247272, - 122986, - 741 - ], - [ - 252380, - 118772, - 733 - ], - [ - 258574, - 108030, - 544 - ], - [ - 265570, - 108044, - 627 - ], - [ - 258896, - 119271, - 848 - ], - [ - 253424, - 138102, - 1035 - ], - [ - 270039, - 124633, - 942 - ], - [ - 269817, - 125001, - 1052 - ], - [ - 268746, - 124547, - 1046 - ], - [ - 268312, - 123589, - 912 - ], - [ - 268090, - 123957, - 1022 - ], - [ - 389728, - 74285, - 702 - ], - [ - 389671, - 74245, - 702 - ], - [ - 390071, - 73647, - 702 - ], - [ - 390603, - 74003, - 732 - ], - [ - 389896, - 75081, - 722 - ], - [ - 389416, - 74774, - 702 - ], - [ - 313059, - 159741, - 942 - ], - [ - 313958, - 160511, - 902 - ], - [ - 313000, - 159823, - 942 - ], - [ - 302733, - 149624, - 1180 - ], - [ - 301480, - 151393, - 872 - ], - [ - 301220, - 151186, - 1181 - ], - [ - 301840, - 147807, - 1106 - ], - [ - 298873, - 145451, - 882 - ], - [ - 303344, - 148791, - 872 - ], - [ - 298796, - 145557, - 882 - ], - [ - 297335, - 147417, - 882 - ], - [ - 298723, - 145503, - 882 - ], - [ - 296143, - 143670, - 1035 - ], - [ - 295706, - 146236, - 882 - ], - [ - 292843, - 144470, - 952 - ], - [ - 294409, - 142215, - 952 - ], - [ - 297265, - 149061, - 916 - ], - [ - 295541, - 148384, - 919 - ], - [ - 289615, - 143603, - 1291 - ], - [ - 289536, - 143700, - 1022 - ], - [ - 290251, - 142670, - 952 - ], - [ - 291240, - 146148, - 1033 - ], - [ - 292015, - 146536, - 963 - ], - [ - 290102, - 145539, - 1083 - ], - [ - 290394, - 145896, - 872 - ], - [ - 288786, - 144779, - 1022 - ], - [ - 291350, - 146835, - 1259 - ], - [ - 291247, - 146489, - 872 - ], - [ - 291660, - 146678, - 1146 - ], - [ - 290441, - 145769, - 1043 - ], - [ - 292285, - 149829, - 932 - ], - [ - 293174, - 148666, - 1131 - ], - [ - 294278, - 149067, - 756 - ], - [ - 291075, - 147638, - 1296 - ], - [ - 291397, - 147971, - 872 - ], - [ - 290602, - 147418, - 872 - ], - [ - 289799, - 150389, - 1067 - ], - [ - 290368, - 152572, - 932 - ], - [ - 288907, - 151557, - 872 - ], - [ - 294804, - 148870, - 725 - ], - [ - 294186, - 148414, - 697 - ], - [ - 309000, - 156786, - 862 - ], - [ - 308988, - 156802, - 942 - ], - [ - 306517, - 155006, - 862 - ], - [ - 291736, - 171269, - 1041 - ], - [ - 294013, - 172428, - 1081 - ], - [ - 292923, - 173676, - 1086 - ], - [ - 284457, - 159929, - 966 - ], - [ - 285895, - 158972, - 932 - ], - [ - 285401, - 160228, - 1164 - ], - [ - 280271, - 156152, - 972 - ], - [ - 279627, - 154543, - 852 - ], - [ - 282802, - 156786, - 872 - ], - [ - 282303, - 157603, - 1008 - ], - [ - 280691, - 157370, - 781 - ], - [ - 276686, - 154450, - 1103 - ], - [ - 276392, - 152258, - 902 - ], - [ - 277865, - 154433, - 1034 - ], - [ - 271759, - 151018, - 1062 - ], - [ - 271853, - 151705, - 1067 - ], - [ - 270595, - 151374, - 916 - ], - [ - 287845, - 162406, - 934 - ], - [ - 289172, - 161287, - 932 - ], - [ - 289086, - 162898, - 1178 - ], - [ - 273367, - 151222, - 1251 - ], - [ - 273445, - 151973, - 943 - ], - [ - 274968, - 153261, - 1009 - ], - [ - 275804, - 154139, - 923 - ], - [ - 273549, - 155237, - 892 - ], - [ - 274856, - 155789, - 902 - ], - [ - 274678, - 156031, - 902 - ], - [ - 279372, - 156110, - 892 - ], - [ - 280528, - 159843, - 862 - ], - [ - 286177, - 166094, - 988 - ], - [ - 284613, - 168202, - 950 - ], - [ - 284732, - 166333, - 1079 - ], - [ - 287250, - 161170, - 913 - ], - [ - 292501, - 161034, - 1256 - ], - [ - 291972, - 161362, - 1022 - ], - [ - 292272, - 159340, - 1244 - ], - [ - 277456, - 159206, - 892 - ], - [ - 279661, - 161448, - 1022 - ], - [ - 278386, - 161498, - 998 - ], - [ - 270440, - 159555, - 962 - ], - [ - 270638, - 159611, - 712 - ], - [ - 270451, - 159599, - 712 - ], - [ - 268012, - 153435, - 761 - ], - [ - 269708, - 154119, - 969 - ], - [ - 267499, - 155201, - 998 - ], - [ - 262898, - 157965, - 973 - ], - [ - 263965, - 158748, - 672 - ], - [ - 262287, - 157536, - 672 - ], - [ - 265123, - 153662, - 862 - ], - [ - 262753, - 156922, - 903 - ], - [ - 262204, - 157476, - 672 - ], - [ - 265392, - 156580, - 874 - ], - [ - 265296, - 153691, - 997 - ], - [ - 266600, - 155221, - 1080 - ], - [ - 266311, - 155371, - 672 - ], - [ - 266640, - 155545, - 1038 - ], - [ - 267792, - 156450, - 682 - ], - [ - 272904, - 159555, - 992 - ], - [ - 272689, - 159744, - 712 - ], - [ - 272567, - 159763, - 961 - ], - [ - 270337, - 155576, - 975 - ], - [ - 269509, - 157643, - 828 - ], - [ - 269145, - 157163, - 812 - ], - [ - 271328, - 156844, - 864 - ], - [ - 269351, - 157584, - 682 - ], - [ - 269692, - 158976, - 878 - ], - [ - 269239, - 157849, - 834 - ], - [ - 270365, - 159537, - 712 - ], - [ - 270580, - 159692, - 712 - ], - [ - 276535, - 160850, - 732 - ], - [ - 274992, - 159626, - 732 - ], - [ - 275319, - 159292, - 1002 - ], - [ - 272044, - 160688, - 712 - ], - [ - 274891, - 159561, - 980 - ], - [ - 273182, - 159685, - 976 - ], - [ - 274618, - 157485, - 1077 - ], - [ - 273879, - 160253, - 1029 - ], - [ - 273929, - 160618, - 1040 - ], - [ - 272950, - 159894, - 997 - ], - [ - 279235, - 161707, - 883 - ], - [ - 275055, - 162889, - 732 - ], - [ - 275392, - 163330, - 879 - ], - [ - 273287, - 165325, - 732 - ], - [ - 276699, - 164113, - 732 - ], - [ - 274887, - 166422, - 732 - ], - [ - 276718, - 160960, - 864 - ], - [ - 277045, - 163359, - 911 - ], - [ - 277459, - 162243, - 825 - ], - [ - 279052, - 163314, - 891 - ], - [ - 277735, - 162319, - 955 - ], - [ - 278103, - 165086, - 883 - ], - [ - 277451, - 164173, - 876 - ], - [ - 285145, - 165050, - 949 - ], - [ - 283895, - 163834, - 922 - ], - [ - 281611, - 166054, - 1084 - ], - [ - 281247, - 165235, - 996 - ], - [ - 282084, - 165389, - 923 - ], - [ - 280410, - 165385, - 732 - ], - [ - 281185, - 165834, - 732 - ], - [ - 281125, - 165914, - 732 - ], - [ - 280969, - 165083, - 1030 - ], - [ - 282042, - 166469, - 732 - ], - [ - 283719, - 167628, - 732 - ], - [ - 285676, - 162304, - 1099 - ], - [ - 285474, - 163469, - 940 - ], - [ - 284683, - 162764, - 922 - ], - [ - 284240, - 168367, - 923 - ], - [ - 284645, - 169673, - 722 - ], - [ - 283584, - 168997, - 722 - ], - [ - 284627, - 169698, - 722 - ], - [ - 291133, - 158482, - 932 - ], - [ - 286685, - 169864, - 978 - ], - [ - 286221, - 170789, - 742 - ], - [ - 295174, - 160804, - 1101 - ], - [ - 295528, - 160723, - 973 - ], - [ - 294480, - 161783, - 937 - ], - [ - 288545, - 170784, - 937 - ], - [ - 290393, - 170670, - 993 - ], - [ - 288592, - 171137, - 935 - ], - [ - 288301, - 172624, - 780 - ], - [ - 288486, - 173984, - 792 - ], - [ - 287241, - 174040, - 898 - ], - [ - 289279, - 173044, - 991 - ], - [ - 287797, - 175244, - 928 - ], - [ - 287795, - 175352, - 752 - ], - [ - 295007, - 171637, - 1227 - ], - [ - 295170, - 170939, - 902 - ], - [ - 295659, - 171292, - 902 - ], - [ - 289759, - 172580, - 752 - ], - [ - 290421, - 172883, - 1109 - ], - [ - 291631, - 173824, - 1065 - ], - [ - 289810, - 166180, - 1263 - ], - [ - 288934, - 165857, - 1353 - ], - [ - 289657, - 165191, - 998 - ], - [ - 293419, - 173784, - 752 - ], - [ - 293142, - 174176, - 752 - ], - [ - 301641, - 176246, - 772 - ], - [ - 301616, - 175592, - 902 - ], - [ - 303388, - 176920, - 1062 - ], - [ - 294849, - 175425, - 752 - ], - [ - 295145, - 175007, - 752 - ], - [ - 296375, - 176466, - 762 - ], - [ - 294951, - 176800, - 884 - ], - [ - 292613, - 178581, - 752 - ], - [ - 295136, - 178188, - 884 - ], - [ - 294120, - 179648, - 762 - ], - [ - 293813, - 173210, - 1183 - ], - [ - 293735, - 174008, - 752 - ], - [ - 299939, - 178118, - 954 - ], - [ - 299768, - 178870, - 772 - ], - [ - 299743, - 178853, - 772 - ], - [ - 299618, - 175678, - 1016 - ], - [ - 297593, - 176228, - 912 - ], - [ - 298044, - 174982, - 997 - ], - [ - 297450, - 175191, - 855 - ], - [ - 294997, - 174216, - 997 - ], - [ - 305432, - 172718, - 935 - ], - [ - 303966, - 172337, - 912 - ], - [ - 305016, - 171774, - 1072 - ], - [ - 314099, - 166440, - 944 - ], - [ - 312645, - 168154, - 1141 - ], - [ - 313325, - 166953, - 981 - ], - [ - 313434, - 155911, - 872 - ], - [ - 315918, - 157799, - 852 - ], - [ - 313382, - 155983, - 852 - ], - [ - 304173, - 154844, - 1072 - ], - [ - 301498, - 155806, - 942 - ], - [ - 302272, - 153742, - 954 - ], - [ - 302196, - 153064, - 1134 - ], - [ - 303228, - 153356, - 1190 - ], - [ - 299955, - 147650, - 1100 - ], - [ - 306015, - 150582, - 882 - ], - [ - 305957, - 150663, - 872 - ], - [ - 308391, - 152407, - 862 - ], - [ - 310874, - 154186, - 862 - ], - [ - 315967, - 157731, - 872 - ], - [ - 318508, - 159557, - 882 - ], - [ - 318415, - 159588, - 852 - ], - [ - 314805, - 165058, - 972 - ], - [ - 316538, - 162192, - 852 - ], - [ - 316456, - 162306, - 902 - ], - [ - 314585, - 164902, - 902 - ], - [ - 306492, - 155000, - 942 - ], - [ - 304084, - 153261, - 872 - ], - [ - 298413, - 160696, - 1052 - ], - [ - 298500, - 160292, - 912 - ], - [ - 299236, - 160814, - 912 - ], - [ - 297606, - 163114, - 912 - ], - [ - 297055, - 162724, - 912 - ], - [ - 294135, - 155805, - 1217 - ], - [ - 293764, - 156264, - 1251 - ], - [ - 293257, - 155731, - 1129 - ], - [ - 298734, - 159952, - 1163 - ], - [ - 299111, - 159430, - 942 - ], - [ - 298942, - 159308, - 942 - ], - [ - 299036, - 159377, - 942 - ], - [ - 296639, - 153373, - 970 - ], - [ - 295591, - 154645, - 947 - ], - [ - 295740, - 152829, - 1304 - ], - [ - 297279, - 155315, - 990 - ], - [ - 296919, - 155395, - 1100 - ], - [ - 295536, - 151505, - 938 - ], - [ - 295638, - 152167, - 1118 - ], - [ - 295561, - 152147, - 932 - ], - [ - 297010, - 162788, - 912 - ], - [ - 314038, - 160399, - 852 - ], - [ - 311507, - 158584, - 852 - ], - [ - 304385, - 157918, - 942 - ], - [ - 309372, - 171676, - 1036 - ], - [ - 310352, - 170286, - 929 - ], - [ - 310442, - 170982, - 908 - ], - [ - 311390, - 166042, - 961 - ], - [ - 314390, - 165294, - 1045 - ], - [ - 311127, - 162417, - 942 - ], - [ - 310952, - 162660, - 942 - ], - [ - 308672, - 169088, - 898 - ], - [ - 308007, - 168944, - 1015 - ], - [ - 310034, - 167880, - 948 - ], - [ - 305577, - 173746, - 1066 - ], - [ - 307081, - 173902, - 1215 - ], - [ - 306040, - 174674, - 982 - ], - [ - 303969, - 174614, - 1052 - ], - [ - 304613, - 174105, - 936 - ], - [ - 304702, - 174770, - 938 - ], - [ - 294903, - 173569, - 903 - ], - [ - 293799, - 165276, - 994 - ], - [ - 293405, - 165027, - 1308 - ], - [ - 293985, - 164116, - 1043 - ], - [ - 295177, - 170144, - 1003 - ], - [ - 295225, - 170456, - 1087 - ], - [ - 294863, - 170579, - 1208 - ], - [ - 292352, - 164053, - 1296 - ], - [ - 292676, - 164591, - 1422 - ], - [ - 291725, - 164732, - 1111 - ], - [ - 294027, - 161541, - 1008 - ], - [ - 293714, - 162037, - 1125 - ], - [ - 289241, - 168297, - 1071 - ], - [ - 287570, - 167078, - 991 - ], - [ - 288493, - 167205, - 974 - ], - [ - 294600, - 171080, - 1298 - ], - [ - 294102, - 155426, - 1449 - ], - [ - 294374, - 154626, - 1458 - ], - [ - 294640, - 153854, - 1364 - ], - [ - 293101, - 165506, - 1288 - ], - [ - 287526, - 170311, - 925 - ], - [ - 288867, - 169923, - 1103 - ], - [ - 287059, - 169751, - 953 - ], - [ - 292236, - 165629, - 1060 - ], - [ - 291348, - 165229, - 1045 - ], - [ - 292205, - 165241, - 1331 - ], - [ - 291394, - 147157, - 1279 - ], - [ - 291482, - 147810, - 1274 - ], - [ - 294106, - 147676, - 937 - ], - [ - 292267, - 148230, - 1294 - ], - [ - 293830, - 148144, - 713 - ], - [ - 296178, - 156273, - 998 - ], - [ - 295582, - 156407, - 1215 - ], - [ - 295252, - 156174, - 1116 - ], - [ - 293631, - 155232, - 1313 - ], - [ - 278225, - 157161, - 946 - ], - [ - 277710, - 156342, - 1268 - ], - [ - 278588, - 156920, - 865 - ], - [ - 277557, - 155339, - 1035 - ], - [ - 276779, - 155128, - 1135 - ], - [ - 277466, - 154656, - 1039 - ], - [ - 293074, - 167704, - 1164 - ], - [ - 292615, - 168329, - 1288 - ], - [ - 291626, - 167301, - 1049 - ], - [ - 288613, - 165616, - 1343 - ], - [ - 301267, - 151532, - 1192 - ], - [ - 292552, - 174201, - 1037 - ], - [ - 288447, - 171017, - 742 - ], - [ - 294771, - 160599, - 1138 - ], - [ - 267958, - 150510, - 913 - ], - [ - 267699, - 150806, - 772 - ], - [ - 269953, - 147709, - 852 - ], - [ - 273239, - 150030, - 902 - ], - [ - 287681, - 164211, - 1210 - ], - [ - 292812, - 163467, - 1082 - ], - [ - 293158, - 163387, - 946 - ], - [ - 293211, - 163679, - 1124 - ], - [ - 281663, - 164568, - 809 - ], - [ - 294945, - 159116, - 1065 - ], - [ - 295030, - 159796, - 965 - ], - [ - 293072, - 159774, - 1111 - ], - [ - 293348, - 156416, - 1112 - ], - [ - 293675, - 161681, - 1240 - ], - [ - 293223, - 160777, - 1335 - ], - [ - 293996, - 161186, - 1247 - ], - [ - 292658, - 159580, - 1065 - ], - [ - 294660, - 157085, - 884 - ], - [ - 294796, - 164181, - 897 - ], - [ - 294771, - 165948, - 912 - ], - [ - 292219, - 163000, - 1381 - ], - [ - 262841, - 157620, - 829 - ], - [ - 264108, - 157897, - 817 - ], - [ - 264153, - 158211, - 866 - ], - [ - 263775, - 158354, - 992 - ], - [ - 274059, - 160802, - 732 - ], - [ - 274359, - 160424, - 732 - ], - [ - 298357, - 149814, - 1134 - ], - [ - 298482, - 148411, - 1072 - ], - [ - 297419, - 156343, - 1031 - ], - [ - 298406, - 157569, - 1032 - ], - [ - 297240, - 157768, - 1170 - ], - [ - 297962, - 160453, - 964 - ], - [ - 297918, - 160096, - 1008 - ], - [ - 293023, - 162312, - 1057 - ], - [ - 292631, - 162119, - 1056 - ], - [ - 292932, - 161619, - 1081 - ], - [ - 292062, - 162029, - 1024 - ], - [ - 290579, - 162635, - 1068 - ], - [ - 304248, - 176688, - 1092 - ], - [ - 310686, - 166545, - 1097 - ], - [ - 308584, - 165940, - 942 - ], - [ - 308744, - 165718, - 942 - ], - [ - 300405, - 151085, - 1027 - ], - [ - 273082, - 156027, - 912 - ], - [ - 272390, - 158401, - 1060 - ], - [ - 292434, - 169840, - 1425 - ], - [ - 292764, - 174709, - 752 - ], - [ - 289828, - 143492, - 1092 - ], - [ - 289960, - 144514, - 1030 - ], - [ - 291021, - 144469, - 1113 - ], - [ - 307600, - 174461, - 1204 - ], - [ - 307307, - 175667, - 1100 - ], - [ - 303258, - 177423, - 772 - ], - [ - 278937, - 164294, - 732 - ], - [ - 309842, - 169716, - 933 - ], - [ - 308771, - 169762, - 1030 - ], - [ - 315294, - 165406, - 962 - ], - [ - 311539, - 167046, - 1178 - ], - [ - 294964, - 149856, - 1093 - ], - [ - 294679, - 147821, - 923 - ], - [ - 299434, - 158012, - 982 - ], - [ - 298509, - 158224, - 1245 - ], - [ - 300728, - 153472, - 1084 - ], - [ - 299539, - 153767, - 1106 - ], - [ - 296969, - 152897, - 1157 - ], - [ - 296149, - 152771, - 1217 - ], - [ - 296883, - 152238, - 1179 - ], - [ - 294991, - 156597, - 1165 - ], - [ - 297241, - 176306, - 1037 - ], - [ - 274548, - 160120, - 994 - ], - [ - 293544, - 168976, - 993 - ], - [ - 297419, - 167823, - 912 - ], - [ - 290616, - 169503, - 1009 - ], - [ - 290948, - 168650, - 1221 - ], - [ - 270796, - 159018, - 909 - ], - [ - 312954, - 167372, - 1211 - ], - [ - 303870, - 177198, - 927 - ], - [ - 304579, - 176621, - 942 - ], - [ - 303964, - 177857, - 1009 - ], - [ - 307358, - 172779, - 938 - ], - [ - 289792, - 172432, - 1010 - ], - [ - 286184, - 174211, - 742 - ], - [ - 298641, - 159270, - 1138 - ], - [ - 286858, - 169891, - 742 - ], - [ - 273874, - 152048, - 916 - ], - [ - 274443, - 152864, - 878 - ], - [ - 284384, - 161397, - 1072 - ], - [ - 299241, - 158742, - 1201 - ], - [ - 299745, - 157975, - 972 - ], - [ - 279190, - 158070, - 816 - ], - [ - 278100, - 156081, - 1220 - ], - [ - 293402, - 155236, - 932 - ], - [ - 306581, - 173064, - 964 - ], - [ - 307184, - 171391, - 1079 - ], - [ - 276117, - 158208, - 942 - ], - [ - 293874, - 148483, - 699 - ], - [ - 296926, - 176796, - 996 - ], - [ - 279651, - 164784, - 892 - ], - [ - 285283, - 164214, - 1069 - ], - [ - 284266, - 168007, - 722 - ], - [ - 292735, - 162778, - 1264 - ], - [ - 296146, - 158721, - 1091 - ], - [ - 296189, - 159102, - 977 - ], - [ - 296074, - 160154, - 1101 - ], - [ - 297141, - 160335, - 977 - ], - [ - 295378, - 157228, - 914 - ], - [ - 295663, - 157086, - 1089 - ], - [ - 295483, - 160384, - 970 - ], - [ - 290202, - 166390, - 1062 - ], - [ - 289906, - 166861, - 1319 - ], - [ - 289161, - 167573, - 1305 - ], - [ - 292615, - 166161, - 1039 - ], - [ - 293846, - 165625, - 993 - ], - [ - 290764, - 167257, - 1258 - ], - [ - 290672, - 169829, - 1163 - ], - [ - 291950, - 166445, - 1037 - ], - [ - 292938, - 168575, - 1036 - ], - [ - 293112, - 168081, - 999 - ], - [ - 292666, - 156692, - 1216 - ], - [ - 278311, - 157828, - 890 - ], - [ - 277835, - 157368, - 1089 - ], - [ - 293748, - 162384, - 958 - ], - [ - 296359, - 157652, - 961 - ], - [ - 290249, - 163531, - 1056 - ], - [ - 292568, - 165807, - 1045 - ], - [ - 299966, - 154353, - 1099 - ], - [ - 300763, - 153808, - 965 - ], - [ - 298983, - 154604, - 999 - ], - [ - 296586, - 159349, - 973 - ], - [ - 289730, - 169920, - 1016 - ], - [ - 308087, - 169668, - 806 - ], - [ - 305200, - 178903, - 902 - ], - [ - 268788, - 158399, - 682 - ], - [ - 293355, - 161811, - 1249 - ], - [ - 286041, - 165038, - 1073 - ], - [ - 286696, - 164119, - 950 - ], - [ - 306304, - 169098, - 912 - ], - [ - 277458, - 157621, - 1040 - ], - [ - 308278, - 171036, - 921 - ], - [ - 291592, - 166946, - 1224 - ], - [ - 269881, - 152202, - 968 - ], - [ - 268238, - 150349, - 936 - ], - [ - 297736, - 155556, - 1158 - ], - [ - 290812, - 164374, - 1072 - ], - [ - 291227, - 164167, - 1337 - ], - [ - 289653, - 162270, - 1118 - ], - [ - 287725, - 175302, - 752 - ], - [ - 287332, - 174706, - 914 - ], - [ - 277954, - 155089, - 1057 - ], - [ - 277917, - 154730, - 1217 - ], - [ - 275724, - 156076, - 1100 - ], - [ - 297716, - 174770, - 884 - ], - [ - 297275, - 152171, - 1031 - ], - [ - 295861, - 150776, - 932 - ], - [ - 296326, - 150966, - 1080 - ], - [ - 297279, - 176673, - 897 - ], - [ - 299110, - 178281, - 911 - ], - [ - 297409, - 153205, - 982 - ], - [ - 297909, - 151018, - 970 - ], - [ - 298532, - 151162, - 1095 - ], - [ - 298325, - 154065, - 1119 - ], - [ - 278215, - 165241, - 732 - ], - [ - 279839, - 159359, - 862 - ], - [ - 278359, - 158184, - 889 - ], - [ - 297557, - 160180, - 1093 - ], - [ - 269011, - 158371, - 843 - ], - [ - 266763, - 151520, - 742 - ], - [ - 266647, - 152337, - 945 - ], - [ - 271583, - 155601, - 815 - ], - [ - 267568, - 152626, - 869 - ], - [ - 279288, - 158704, - 986 - ], - [ - 297170, - 144217, - 882 - ], - [ - 297863, - 148542, - 894 - ], - [ - 293569, - 163593, - 930 - ], - [ - 298040, - 154826, - 1016 - ], - [ - 294070, - 179426, - 876 - ], - [ - 294395, - 164293, - 1024 - ], - [ - 294342, - 163963, - 909 - ], - [ - 267580, - 150967, - 772 - ], - [ - 298706, - 147633, - 863 - ], - [ - 347383, - 147813, - 853 - ], - [ - 347782, - 147102, - 941 - ], - [ - 348296, - 147724, - 897 - ], - [ - 343134, - 146181, - 857 - ], - [ - 345265, - 147813, - 889 - ], - [ - 342906, - 146074, - 622 - ], - [ - 346136, - 145226, - 1042 - ], - [ - 345191, - 145392, - 1089 - ], - [ - 346200, - 145149, - 1022 - ], - [ - 346384, - 146545, - 1083 - ], - [ - 346366, - 145419, - 1042 - ], - [ - 346430, - 145342, - 1042 - ], - [ - 344443, - 143812, - 897 - ], - [ - 344098, - 143264, - 1022 - ], - [ - 343089, - 145833, - 864 - ], - [ - 343784, - 143158, - 1022 - ], - [ - 342738, - 143106, - 1043 - ], - [ - 343848, - 143081, - 982 - ], - [ - 343281, - 143714, - 903 - ], - [ - 344034, - 143341, - 1042 - ], - [ - 341734, - 141262, - 882 - ], - [ - 341416, - 141128, - 862 - ], - [ - 340212, - 140287, - 800 - ], - [ - 341480, - 141051, - 832 - ], - [ - 341671, - 141339, - 882 - ], - [ - 340477, - 142309, - 752 - ], - [ - 341385, - 144530, - 892 - ], - [ - 340962, - 143590, - 962 - ], - [ - 338667, - 143866, - 739 - ], - [ - 339590, - 143054, - 622 - ], - [ - 338204, - 144300, - 622 - ], - [ - 337018, - 143282, - 622 - ], - [ - 339424, - 142967, - 773 - ], - [ - 346177, - 148012, - 973 - ], - [ - 346121, - 147667, - 836 - ], - [ - 347439, - 148143, - 1018 - ], - [ - 346432, - 149661, - 622 - ], - [ - 347914, - 148123, - 894 - ], - [ - 342095, - 145005, - 967 - ], - [ - 340864, - 142889, - 901 - ], - [ - 348542, - 147614, - 622 - ], - [ - 340086, - 139894, - 622 - ], - [ - 339591, - 140838, - 784 - ], - [ - 344710, - 145842, - 854 - ], - [ - 345866, - 145608, - 1101 - ], - [ - 345172, - 147165, - 796 - ], - [ - 340617, - 143358, - 757 - ], - [ - 340579, - 143010, - 860 - ], - [ - 217223, - 123174, - 611 - ], - [ - 216050, - 123077, - 582 - ], - [ - 216396, - 123609, - 572 - ], - [ - 217727, - 122637, - 628 - ], - [ - 219410, - 121493, - 700 - ], - [ - 218170, - 122513, - 622 - ], - [ - 220572, - 120844, - 669 - ], - [ - 219876, - 120535, - 562 - ], - [ - 221972, - 119836, - 679 - ], - [ - 221705, - 119320, - 602 - ], - [ - 296155, - 135648, - 975 - ], - [ - 296803, - 135833, - 978 - ], - [ - 293358, - 137759, - 1012 - ], - [ - 296667, - 134835, - 944 - ], - [ - 297800, - 131706, - 832 - ], - [ - 305571, - 137698, - 822 - ], - [ - 301594, - 138337, - 992 - ], - [ - 296437, - 135596, - 745 - ], - [ - 301360, - 143916, - 882 - ], - [ - 441922, - 69187, - 1192 - ], - [ - 439056, - 73379, - 1122 - ], - [ - 439159, - 68910, - 1297 - ], - [ - 434976, - 74885, - 1114 - ], - [ - 435893, - 77290, - 1077 - ], - [ - 438077, - 74795, - 1092 - ], - [ - 434399, - 75878, - 1115 - ], - [ - 439884, - 68052, - 1223 - ], - [ - 435942, - 77607, - 1191 - ], - [ - 436003, - 77746, - 1062 - ], - [ - 440341, - 68249, - 1181 - ], - [ - 434490, - 76553, - 1140 - ], - [ - 265914, - 91095, - 452 - ], - [ - 265675, - 90738, - 452 - ], - [ - 266006, - 91033, - 452 - ], - [ - 266754, - 90749, - 452 - ], - [ - 266106, - 91183, - 452 - ], - [ - 265702, - 90599, - 522 - ], - [ - 266653, - 90599, - 452 - ], - [ - 266828, - 90482, - 452 - ], - [ - 267576, - 90197, - 452 - ], - [ - 266928, - 90632, - 452 - ], - [ - 267476, - 90048, - 452 - ], - [ - 267770, - 89212, - 522 - ], - [ - 267530, - 90011, - 462 - ], - [ - 267658, - 89925, - 462 - ], - [ - 268306, - 89491, - 462 - ], - [ - 267770, - 90091, - 462 - ], - [ - 268418, - 89657, - 462 - ], - [ - 268158, - 89072, - 462 - ], - [ - 268398, - 89429, - 462 - ], - [ - 268019, - 89045, - 522 - ], - [ - 441873, - 68896, - 1192 - ], - [ - 442840, - 67546, - 1692 - ], - [ - 439155, - 65468, - 1787 - ], - [ - 441616, - 64306, - 1783 - ], - [ - 436319, - 64024, - 1678 - ], - [ - 434656, - 63573, - 1940 - ], - [ - 435526, - 61466, - 1909 - ], - [ - 433269, - 56803, - 1984 - ], - [ - 431569, - 57264, - 1690 - ], - [ - 432228, - 56264, - 1890 - ], - [ - 430417, - 60266, - 1808 - ], - [ - 430709, - 60119, - 1673 - ], - [ - 431053, - 50004, - 1924 - ], - [ - 428630, - 52973, - 1857 - ], - [ - 428535, - 52316, - 1751 - ], - [ - 423388, - 50635, - 1894 - ], - [ - 422432, - 51415, - 742 - ], - [ - 424720, - 49416, - 742 - ], - [ - 425939, - 51388, - 1684 - ], - [ - 426131, - 51031, - 742 - ], - [ - 426749, - 51134, - 1791 - ], - [ - 421861, - 50501, - 742 - ], - [ - 421732, - 50614, - 742 - ], - [ - 421365, - 49971, - 742 - ], - [ - 421297, - 51434, - 1750 - ], - [ - 421033, - 51529, - 1753 - ], - [ - 421941, - 51275, - 1752 - ], - [ - 422320, - 51537, - 1722 - ], - [ - 420736, - 52000, - 1782 - ], - [ - 419348, - 52842, - 812 - ], - [ - 419208, - 52341, - 742 - ], - [ - 419018, - 52598, - 792 - ], - [ - 420903, - 53316, - 1683 - ], - [ - 421590, - 53769, - 1507 - ], - [ - 421631, - 54103, - 1468 - ], - [ - 424031, - 55678, - 1535 - ], - [ - 424978, - 56140, - 1510 - ], - [ - 424790, - 56868, - 992 - ], - [ - 428047, - 58090, - 1688 - ], - [ - 437401, - 63958, - 1720 - ], - [ - 438634, - 64592, - 1887 - ], - [ - 437355, - 65433, - 1755 - ], - [ - 432381, - 54761, - 1802 - ], - [ - 438760, - 62452, - 1801 - ], - [ - 440651, - 60872, - 1961 - ], - [ - 441046, - 61439, - 2146 - ], - [ - 444267, - 59967, - 2190 - ], - [ - 442484, - 59462, - 2007 - ], - [ - 444078, - 58600, - 2039 - ], - [ - 433760, - 62709, - 1933 - ], - [ - 434126, - 61717, - 1849 - ], - [ - 442732, - 64633, - 1870 - ], - [ - 443519, - 63700, - 2218 - ], - [ - 444667, - 64973, - 1292 - ], - [ - 433141, - 45698, - 742 - ], - [ - 430820, - 48006, - 2338 - ], - [ - 427142, - 50939, - 742 - ], - [ - 434768, - 55713, - 1873 - ], - [ - 434441, - 56247, - 1906 - ], - [ - 434382, - 55903, - 1716 - ], - [ - 435908, - 64458, - 1755 - ], - [ - 436947, - 65226, - 1799 - ], - [ - 424907, - 49985, - 2159 - ], - [ - 424644, - 50391, - 2162 - ], - [ - 424973, - 50611, - 1924 - ], - [ - 425578, - 51144, - 1937 - ], - [ - 425401, - 51860, - 1649 - ], - [ - 430105, - 60086, - 1734 - ], - [ - 430332, - 59594, - 1867 - ], - [ - 438335, - 52479, - 1996 - ], - [ - 436890, - 51148, - 2132 - ], - [ - 434729, - 48097, - 2218 - ], - [ - 432961, - 61978, - 1657 - ], - [ - 432920, - 61665, - 1666 - ], - [ - 432542, - 61455, - 1675 - ], - [ - 432366, - 60107, - 1706 - ], - [ - 431776, - 47528, - 2052 - ], - [ - 433216, - 46817, - 2106 - ], - [ - 441109, - 55336, - 2093 - ], - [ - 443116, - 56845, - 1832 - ], - [ - 442584, - 56637, - 2031 - ], - [ - 427788, - 52881, - 1654 - ], - [ - 428277, - 50286, - 1876 - ], - [ - 423546, - 51989, - 1585 - ], - [ - 422625, - 51447, - 1706 - ], - [ - 423466, - 51298, - 1759 - ], - [ - 432588, - 61797, - 1701 - ], - [ - 444751, - 61206, - 2221 - ], - [ - 443886, - 62889, - 2224 - ], - [ - 443221, - 61362, - 2320 - ], - [ - 443109, - 67208, - 1692 - ], - [ - 427161, - 51333, - 1762 - ], - [ - 433798, - 63023, - 1873 - ], - [ - 425488, - 50465, - 1930 - ], - [ - 425910, - 51043, - 1927 - ], - [ - 421868, - 53382, - 1655 - ], - [ - 432749, - 46284, - 2151 - ], - [ - 431992, - 47043, - 2058 - ], - [ - 433610, - 46668, - 2290 - ], - [ - 438059, - 62698, - 1879 - ], - [ - 442246, - 64092, - 1987 - ], - [ - 445179, - 62071, - 1432 - ], - [ - 444693, - 59148, - 1662 - ], - [ - 422967, - 51032, - 1711 - ], - [ - 425406, - 56428, - 1638 - ], - [ - 428557, - 55460, - 1654 - ], - [ - 423411, - 55848, - 962 - ], - [ - 423988, - 55335, - 1571 - ], - [ - 443976, - 63567, - 2237 - ], - [ - 429052, - 59187, - 1704 - ], - [ - 429540, - 57863, - 1664 - ], - [ - 431056, - 56764, - 1695 - ], - [ - 430772, - 57932, - 1630 - ], - [ - 439393, - 60575, - 1984 - ], - [ - 436414, - 61192, - 1741 - ], - [ - 422329, - 54337, - 1514 - ], - [ - 422236, - 53626, - 1518 - ], - [ - 427948, - 50751, - 1819 - ], - [ - 432100, - 58076, - 1700 - ], - [ - 428460, - 57949, - 1699 - ], - [ - 442984, - 63169, - 2218 - ], - [ - 438568, - 57671, - 1806 - ], - [ - 438833, - 59705, - 1808 - ], - [ - 434071, - 61376, - 1710 - ], - [ - 441910, - 58239, - 2077 - ], - [ - 440765, - 55459, - 2083 - ], - [ - 437216, - 56276, - 1840 - ], - [ - 434309, - 55218, - 1942 - ], - [ - 440631, - 58386, - 1909 - ], - [ - 435004, - 60623, - 1743 - ], - [ - 433382, - 57793, - 1745 - ], - [ - 429595, - 58210, - 1792 - ], - [ - 435993, - 54996, - 1836 - ], - [ - 434501, - 49912, - 2169 - ], - [ - 439988, - 55803, - 1949 - ], - [ - 439217, - 59221, - 1997 - ], - [ - 439422, - 57734, - 1991 - ], - [ - 430910, - 58952, - 1680 - ], - [ - 435650, - 52320, - 1938 - ], - [ - 435573, - 49828, - 2024 - ], - [ - 442274, - 64411, - 1784 - ], - [ - 436936, - 51495, - 2146 - ], - [ - 437761, - 54734, - 1948 - ], - [ - 437452, - 55503, - 2011 - ], - [ - 437326, - 54508, - 2072 - ], - [ - 438409, - 56338, - 2032 - ], - [ - 442309, - 61269, - 2113 - ], - [ - 429776, - 59564, - 1816 - ], - [ - 262755, - 92937, - 432 - ], - [ - 262643, - 92771, - 432 - ], - [ - 262671, - 92632, - 502 - ], - [ - 263442, - 92476, - 452 - ], - [ - 263358, - 92292, - 452 - ], - [ - 263469, - 92458, - 452 - ], - [ - 263219, - 92264, - 502 - ], - [ - 291499, - 69222, - 442 - ], - [ - 291719, - 69139, - 442 - ], - [ - 292057, - 70296, - 432 - ], - [ - 292300, - 70158, - 412 - ], - [ - 398136, - 113578, - 112 - ], - [ - 395202, - 116431, - 312 - ], - [ - 395979, - 114144, - 312 - ], - [ - 396090, - 114036, - 112 - ], - [ - 397969, - 113406, - 112 - ], - [ - 397816, - 113248, - 112 - ], - [ - 397669, - 113097, - 112 - ], - [ - 397371, - 112791, - 112 - ], - [ - 395753, - 114364, - 312 - ], - [ - 394882, - 116102, - 312 - ], - [ - 394735, - 115951, - 312 - ], - [ - 394437, - 115644, - 312 - ], - [ - 395035, - 116259, - 312 - ], - [ - 402128, - 109631, - 752 - ], - [ - 401352, - 110382, - 112 - ], - [ - 401940, - 109437, - 752 - ], - [ - 401164, - 110188, - 112 - ], - [ - 401074, - 109690, - 752 - ], - [ - 401648, - 109135, - 752 - ], - [ - 400872, - 109886, - 112 - ], - [ - 320256, - 152713, - 852 - ], - [ - 317815, - 151178, - 892 - ], - [ - 319575, - 149449, - 842 - ], - [ - 321457, - 150841, - 832 - ], - [ - 397229, - 78997, - 812 - ], - [ - 398387, - 79795, - 792 - ], - [ - 396423, - 80166, - 822 - ], - [ - 390320, - 75248, - 732 - ], - [ - 394476, - 78252, - 812 - ], - [ - 394212, - 78616, - 812 - ], - [ - 396077, - 80668, - 822 - ], - [ - 393831, - 79143, - 832 - ], - [ - 390431, - 72923, - 692 - ], - [ - 390750, - 73165, - 712 - ], - [ - 390341, - 72877, - 692 - ], - [ - 390196, - 72644, - 692 - ], - [ - 390322, - 72863, - 692 - ], - [ - 390304, - 72848, - 692 - ], - [ - 390288, - 72831, - 692 - ], - [ - 390272, - 72814, - 692 - ], - [ - 388214, - 76066, - 702 - ], - [ - 388165, - 76056, - 702 - ], - [ - 387532, - 76265, - 692 - ], - [ - 387499, - 76302, - 692 - ], - [ - 390238, - 72418, - 692 - ], - [ - 390233, - 72755, - 692 - ], - [ - 390223, - 72734, - 692 - ], - [ - 390214, - 72712, - 692 - ], - [ - 390206, - 72690, - 692 - ], - [ - 390200, - 72668, - 692 - ], - [ - 390193, - 72621, - 692 - ], - [ - 390192, - 72598, - 692 - ], - [ - 390192, - 72574, - 692 - ], - [ - 390194, - 72551, - 692 - ], - [ - 387687, - 76142, - 692 - ], - [ - 390198, - 72528, - 692 - ], - [ - 387645, - 76168, - 692 - ], - [ - 390203, - 72505, - 692 - ], - [ - 390209, - 72482, - 692 - ], - [ - 387605, - 76198, - 692 - ], - [ - 390217, - 72460, - 692 - ], - [ - 390227, - 72439, - 692 - ], - [ - 387568, - 76230, - 692 - ], - [ - 390245, - 72776, - 692 - ], - [ - 390258, - 72795, - 692 - ], - [ - 387731, - 76118, - 692 - ], - [ - 387823, - 76081, - 692 - ], - [ - 387776, - 76098, - 692 - ], - [ - 387870, - 76067, - 692 - ], - [ - 387919, - 76056, - 692 - ], - [ - 387968, - 76049, - 692 - ], - [ - 388017, - 76046, - 692 - ], - [ - 388067, - 76046, - 692 - ], - [ - 388116, - 76049, - 702 - ], - [ - 388250, - 76076, - 702 - ], - [ - 388285, - 76088, - 702 - ], - [ - 388320, - 76102, - 702 - ], - [ - 393404, - 79735, - 832 - ], - [ - 388354, - 76118, - 712 - ], - [ - 388387, - 76136, - 712 - ], - [ - 388419, - 76155, - 712 - ], - [ - 388450, - 76176, - 712 - ], - [ - 388567, - 76260, - 732 - ], - [ - 388892, - 76494, - 742 - ], - [ - 397637, - 81136, - 822 - ], - [ - 398903, - 80151, - 802 - ], - [ - 397991, - 81381, - 822 - ], - [ - 396439, - 82704, - 802 - ], - [ - 395242, - 81878, - 832 - ], - [ - 396140, - 89738, - 838 - ], - [ - 397078, - 88587, - 832 - ], - [ - 395990, - 90181, - 1682 - ], - [ - 397392, - 81490, - 822 - ], - [ - 395128, - 89546, - 781 - ], - [ - 394360, - 86732, - 872 - ], - [ - 392777, - 87989, - 892 - ], - [ - 396951, - 83057, - 822 - ], - [ - 398983, - 82636, - 822 - ], - [ - 398132, - 83871, - 832 - ], - [ - 410986, - 90197, - 642 - ], - [ - 410567, - 90687, - 642 - ], - [ - 410453, - 90608, - 642 - ], - [ - 410590, - 90706, - 642 - ], - [ - 410631, - 90748, - 642 - ], - [ - 410611, - 90726, - 642 - ], - [ - 411053, - 90243, - 642 - ], - [ - 411578, - 90262, - 642 - ], - [ - 411610, - 90244, - 642 - ], - [ - 410678, - 91219, - 642 - ], - [ - 411152, - 90290, - 642 - ], - [ - 410693, - 90848, - 642 - ], - [ - 410680, - 90822, - 642 - ], - [ - 411187, - 90301, - 642 - ], - [ - 410704, - 90876, - 642 - ], - [ - 411222, - 90310, - 642 - ], - [ - 410713, - 90904, - 642 - ], - [ - 410725, - 90962, - 642 - ], - [ - 410720, - 90933, - 642 - ], - [ - 411295, - 90320, - 642 - ], - [ - 411670, - 90202, - 642 - ], - [ - 410729, - 91021, - 642 - ], - [ - 411405, - 90317, - 642 - ], - [ - 410728, - 91050, - 642 - ], - [ - 411441, - 90311, - 642 - ], - [ - 410725, - 91080, - 642 - ], - [ - 411476, - 90302, - 642 - ], - [ - 410719, - 91109, - 642 - ], - [ - 411511, - 90291, - 642 - ], - [ - 410712, - 91137, - 642 - ], - [ - 411545, - 90278, - 642 - ], - [ - 410703, - 91165, - 642 - ], - [ - 410691, - 91193, - 642 - ], - [ - 410663, - 91245, - 642 - ], - [ - 410646, - 91269, - 642 - ], - [ - 411641, - 90224, - 642 - ], - [ - 410728, - 90991, - 642 - ], - [ - 411368, - 90320, - 642 - ], - [ - 411332, - 90322, - 642 - ], - [ - 411259, - 90317, - 642 - ], - [ - 410665, - 90796, - 642 - ], - [ - 411118, - 90277, - 642 - ], - [ - 410649, - 90772, - 642 - ], - [ - 411085, - 90261, - 642 - ], - [ - 410321, - 89736, - 712 - ], - [ - 410121, - 90376, - 672 - ], - [ - 409788, - 90145, - 692 - ], - [ - 410204, - 90434, - 662 - ], - [ - 410654, - 89966, - 682 - ], - [ - 399335, - 82126, - 822 - ], - [ - 397746, - 81735, - 822 - ], - [ - 401697, - 75998, - 762 - ], - [ - 400119, - 80990, - 812 - ], - [ - 401390, - 75296, - 742 - ], - [ - 402144, - 75334, - 682 - ], - [ - 401920, - 75666, - 742 - ], - [ - 401638, - 74415, - 672 - ], - [ - 401619, - 74388, - 672 - ], - [ - 402676, - 75128, - 672 - ], - [ - 401686, - 74824, - 682 - ], - [ - 402262, - 75206, - 672 - ], - [ - 402236, - 75227, - 672 - ], - [ - 401703, - 74761, - 682 - ], - [ - 402318, - 75170, - 672 - ], - [ - 402289, - 75187, - 672 - ], - [ - 401695, - 74793, - 682 - ], - [ - 402411, - 75131, - 672 - ], - [ - 401710, - 74630, - 672 - ], - [ - 402443, - 75122, - 672 - ], - [ - 401710, - 74696, - 672 - ], - [ - 402379, - 75142, - 672 - ], - [ - 402348, - 75155, - 672 - ], - [ - 401691, - 74534, - 672 - ], - [ - 402543, - 75111, - 682 - ], - [ - 402510, - 75112, - 682 - ], - [ - 401554, - 74315, - 672 - ], - [ - 401669, - 74473, - 672 - ], - [ - 402610, - 75115, - 682 - ], - [ - 402577, - 75112, - 682 - ], - [ - 401681, - 74503, - 672 - ], - [ - 401654, - 74443, - 672 - ], - [ - 402643, - 75121, - 672 - ], - [ - 402707, - 75139, - 672 - ], - [ - 401577, - 74338, - 672 - ], - [ - 402769, - 75165, - 672 - ], - [ - 402739, - 75151, - 672 - ], - [ - 401599, - 74362, - 672 - ], - [ - 402476, - 75116, - 672 - ], - [ - 401700, - 74566, - 672 - ], - [ - 401706, - 74598, - 672 - ], - [ - 401711, - 74663, - 672 - ], - [ - 401708, - 74728, - 672 - ], - [ - 402211, - 75250, - 682 - ], - [ - 401674, - 74855, - 682 - ], - [ - 402188, - 75274, - 682 - ], - [ - 401661, - 74884, - 682 - ], - [ - 402167, - 75300, - 682 - ], - [ - 401645, - 74913, - 682 - ], - [ - 401612, - 74963, - 702 - ], - [ - 401168, - 75629, - 762 - ], - [ - 391077, - 73396, - 752 - ], - [ - 391444, - 73655, - 772 - ], - [ - 395773, - 89881, - 820 - ], - [ - 450321, - 40934, - 2114 - ], - [ - 451872, - 42489, - 2062 - ], - [ - 450753, - 43151, - 2102 - ], - [ - 447691, - 38046, - 2166 - ], - [ - 447994, - 38083, - 2930 - ], - [ - 448195, - 38286, - 2162 - ], - [ - 445139, - 40116, - 2315 - ], - [ - 446842, - 41731, - 2102 - ], - [ - 444035, - 39590, - 2283 - ], - [ - 445903, - 40337, - 2226 - ], - [ - 446622, - 37734, - 2300 - ], - [ - 446945, - 36786, - 2648 - ], - [ - 446738, - 36906, - 2173 - ], - [ - 446751, - 36643, - 2825 - ], - [ - 446683, - 36366, - 2183 - ], - [ - 444168, - 36206, - 2236 - ], - [ - 444245, - 35528, - 2262 - ], - [ - 447317, - 36439, - 2182 - ], - [ - 447287, - 36640, - 2575 - ], - [ - 446965, - 36399, - 2565 - ], - [ - 438771, - 35841, - 2412 - ], - [ - 441524, - 37755, - 2313 - ], - [ - 436935, - 35096, - 2151 - ], - [ - 442391, - 32077, - 2132 - ], - [ - 443894, - 35234, - 2272 - ], - [ - 443576, - 35608, - 2282 - ], - [ - 439752, - 33758, - 2326 - ], - [ - 439769, - 33335, - 2307 - ], - [ - 429878, - 29604, - 2090 - ], - [ - 429000, - 29787, - 2002 - ], - [ - 429614, - 29631, - 9978 - ], - [ - 439653, - 30911, - 2112 - ], - [ - 437372, - 31989, - 2277 - ], - [ - 429052, - 29294, - 2067 - ], - [ - 427719, - 28928, - 1962 - ], - [ - 429369, - 29195, - 2033 - ], - [ - 429664, - 29368, - 2071 - ], - [ - 429420, - 29566, - 2081 - ], - [ - 428829, - 28820, - 2012 - ], - [ - 427490, - 28775, - 1962 - ], - [ - 439652, - 33651, - 4025 - ], - [ - 439600, - 33645, - 2320 - ], - [ - 450008, - 40639, - 2134 - ], - [ - 450264, - 40760, - 2721 - ], - [ - 447860, - 42464, - 2102 - ], - [ - 447117, - 41570, - 2215 - ], - [ - 449736, - 44128, - 2072 - ], - [ - 450585, - 45051, - 2032 - ], - [ - 452077, - 45389, - 2032 - ], - [ - 452085, - 47060, - 1932 - ], - [ - 451369, - 46030, - 1962 - ], - [ - 452730, - 48136, - 1872 - ], - [ - 454642, - 47484, - 1942 - ], - [ - 453300, - 49253, - 1812 - ], - [ - 453793, - 50407, - 1802 - ], - [ - 455327, - 49354, - 1882 - ], - [ - 454647, - 51252, - 1922 - ], - [ - 455558, - 50344, - 1852 - ], - [ - 454788, - 54030, - 1722 - ], - [ - 454538, - 52801, - 1742 - ], - [ - 454826, - 52636, - 1923 - ], - [ - 455305, - 55766, - 7851 - ], - [ - 455075, - 55969, - 10202 - ], - [ - 455203, - 55645, - 1763 - ], - [ - 455312, - 60423, - 11508 - ], - [ - 455046, - 60433, - 1680 - ], - [ - 455391, - 60169, - 13085 - ], - [ - 452566, - 66330, - 1422 - ], - [ - 453174, - 65186, - 1362 - ], - [ - 453179, - 65841, - 1442 - ], - [ - 451630, - 68395, - 1352 - ], - [ - 451118, - 68475, - 1302 - ], - [ - 451880, - 67428, - 1372 - ], - [ - 445882, - 75456, - 1233 - ], - [ - 447384, - 73248, - 1082 - ], - [ - 446962, - 74064, - 1268 - ], - [ - 437098, - 86286, - 952 - ], - [ - 437567, - 85797, - 902 - ], - [ - 437877, - 85923, - 1060 - ], - [ - 436424, - 86990, - 972 - ], - [ - 436055, - 88299, - 1042 - ], - [ - 435604, - 87845, - 982 - ], - [ - 437463, - 87999, - 1052 - ], - [ - 436434, - 88488, - 1052 - ], - [ - 436861, - 88468, - 1062 - ], - [ - 439461, - 85157, - 1072 - ], - [ - 437191, - 88327, - 1052 - ], - [ - 438551, - 86416, - 1052 - ], - [ - 448381, - 72323, - 1321 - ], - [ - 451048, - 69232, - 1322 - ], - [ - 439678, - 83526, - 1100 - ], - [ - 445098, - 77204, - 1182 - ], - [ - 441046, - 82895, - 1092 - ], - [ - 446690, - 74950, - 1202 - ], - [ - 448163, - 73031, - 1222 - ], - [ - 452354, - 67143, - 1419 - ], - [ - 452071, - 67399, - 10105 - ], - [ - 452310, - 66825, - 1380 - ], - [ - 451950, - 67580, - 1452 - ], - [ - 452288, - 67316, - 1412 - ], - [ - 453938, - 64281, - 10467 - ], - [ - 453701, - 64003, - 1402 - ], - [ - 454150, - 64072, - 1502 - ], - [ - 452457, - 66954, - 9749 - ], - [ - 454143, - 62785, - 1452 - ], - [ - 454571, - 63165, - 1512 - ], - [ - 453617, - 64776, - 1541 - ], - [ - 454508, - 62572, - 1772 - ], - [ - 454444, - 62223, - 1496 - ], - [ - 454936, - 62237, - 1522 - ], - [ - 455299, - 59083, - 1750 - ], - [ - 454940, - 59031, - 1562 - ], - [ - 455503, - 57991, - 1714 - ], - [ - 454183, - 62719, - 8436 - ], - [ - 454532, - 62876, - 1549 - ], - [ - 455030, - 57780, - 1602 - ], - [ - 455087, - 60773, - 1619 - ], - [ - 455523, - 60312, - 1592 - ], - [ - 455336, - 56639, - 1840 - ], - [ - 455034, - 56525, - 1692 - ], - [ - 455516, - 56278, - 1756 - ], - [ - 455413, - 60036, - 1618 - ], - [ - 455540, - 54566, - 1809 - ], - [ - 455854, - 53333, - 1802 - ], - [ - 455550, - 57759, - 7679 - ], - [ - 455688, - 57628, - 1728 - ], - [ - 454206, - 51591, - 1772 - ], - [ - 455825, - 54564, - 1751 - ], - [ - 455872, - 56821, - 1722 - ], - [ - 455691, - 51343, - 1832 - ], - [ - 455025, - 48400, - 1912 - ], - [ - 453183, - 44735, - 2012 - ], - [ - 448826, - 43264, - 2072 - ], - [ - 450385, - 39975, - 2112 - ], - [ - 444076, - 33139, - 2162 - ], - [ - 445602, - 34222, - 2172 - ], - [ - 444202, - 35343, - 2276 - ], - [ - 444196, - 35383, - 4128 - ], - [ - 448017, - 37637, - 2845 - ], - [ - 447743, - 37713, - 3056 - ], - [ - 447778, - 37584, - 2550 - ], - [ - 437256, - 34764, - 2333 - ], - [ - 445939, - 40474, - 4747 - ], - [ - 445860, - 40363, - 2271 - ], - [ - 455271, - 57743, - 15812 - ], - [ - 455278, - 57049, - 11095 - ], - [ - 455379, - 56995, - 1791 - ], - [ - 455387, - 55265, - 1786 - ], - [ - 454953, - 55273, - 1752 - ], - [ - 455490, - 56645, - 14791 - ], - [ - 455112, - 57689, - 1649 - ], - [ - 454766, - 60273, - 1562 - ], - [ - 455795, - 58339, - 1682 - ], - [ - 455555, - 56591, - 1738 - ], - [ - 455475, - 55947, - 1787 - ], - [ - 455245, - 55964, - 1788 - ], - [ - 452627, - 66362, - 1423 - ], - [ - 431955, - 29081, - 2082 - ], - [ - 429830, - 28873, - 2052 - ], - [ - 429684, - 28946, - 2042 - ], - [ - 433804, - 29385, - 2092 - ], - [ - 436098, - 34352, - 2246 - ], - [ - 454400, - 61909, - 1461 - ], - [ - 454498, - 61540, - 1492 - ], - [ - 454792, - 61824, - 1683 - ], - [ - 455775, - 54967, - 11035 - ], - [ - 455665, - 55576, - 1759 - ], - [ - 429364, - 29563, - 2092 - ], - [ - 429101, - 29684, - 2005 - ], - [ - 429170, - 29347, - 9733 - ], - [ - 429803, - 28876, - 7555 - ], - [ - 429073, - 28854, - 2024 - ], - [ - 455775, - 55262, - 10483 - ], - [ - 447527, - 37633, - 2868 - ], - [ - 447185, - 37488, - 2167 - ], - [ - 447558, - 37384, - 2530 - ], - [ - 448286, - 37586, - 2594 - ], - [ - 448140, - 37674, - 2514 - ], - [ - 448045, - 37396, - 2517 - ], - [ - 443848, - 36484, - 2269 - ], - [ - 443944, - 35917, - 2272 - ], - [ - 444159, - 36196, - 2433 - ], - [ - 446939, - 37528, - 2261 - ], - [ - 446080, - 40620, - 2279 - ], - [ - 435632, - 29812, - 2102 - ], - [ - 440903, - 36769, - 2187 - ], - [ - 441110, - 31507, - 2122 - ], - [ - 448601, - 37862, - 2119 - ], - [ - 448571, - 37130, - 2142 - ], - [ - 449151, - 37935, - 2142 - ], - [ - 447239, - 37338, - 2921 - ], - [ - 448177, - 37999, - 2444 - ], - [ - 448517, - 38021, - 2274 - ], - [ - 450277, - 40600, - 2104 - ], - [ - 446998, - 36177, - 2164 - ], - [ - 447249, - 35643, - 2162 - ], - [ - 447827, - 36870, - 2180 - ], - [ - 447940, - 36363, - 2152 - ], - [ - 447035, - 36178, - 2452 - ], - [ - 448321, - 37346, - 2175 - ], - [ - 448071, - 37298, - 2236 - ], - [ - 447268, - 37107, - 2575 - ], - [ - 447200, - 37230, - 2851 - ], - [ - 447574, - 36918, - 2565 - ], - [ - 447800, - 37120, - 2494 - ], - [ - 447607, - 36663, - 2171 - ], - [ - 447544, - 36744, - 2477 - ], - [ - 441542, - 37295, - 2312 - ], - [ - 442414, - 38147, - 2305 - ], - [ - 442046, - 38171, - 2177 - ], - [ - 444156, - 39373, - 2285 - ], - [ - 438323, - 30484, - 2112 - ], - [ - 397382, - 125632, - 1949 - ], - [ - 397862, - 125775, - 1062 - ], - [ - 397429, - 125990, - 1930 - ], - [ - 400161, - 122409, - 1942 - ], - [ - 399835, - 122365, - 942 - ], - [ - 400428, - 122021, - 978 - ], - [ - 403191, - 119506, - 1863 - ], - [ - 402674, - 119631, - 942 - ], - [ - 403776, - 118959, - 1007 - ], - [ - 431607, - 94664, - 1057 - ], - [ - 431495, - 94360, - 992 - ], - [ - 432178, - 95139, - 1082 - ], - [ - 411789, - 112514, - 2063 - ], - [ - 412194, - 112141, - 1045 - ], - [ - 411116, - 113370, - 1082 - ], - [ - 409106, - 114009, - 1222 - ], - [ - 409047, - 113680, - 1003 - ], - [ - 409526, - 113815, - 2087 - ], - [ - 408760, - 114780, - 1083 - ], - [ - 408258, - 114574, - 1007 - ], - [ - 408779, - 114384, - 2089 - ], - [ - 405789, - 117150, - 2026 - ], - [ - 405535, - 116920, - 1982 - ], - [ - 405682, - 116899, - 995 - ], - [ - 413859, - 109362, - 1017 - ], - [ - 413336, - 109831, - 1018 - ], - [ - 414248, - 108927, - 1862 - ], - [ - 415377, - 108037, - 1040 - ], - [ - 417195, - 106309, - 962 - ], - [ - 417387, - 106258, - 1041 - ], - [ - 418456, - 105635, - 1416 - ], - [ - 419199, - 104752, - 1007 - ], - [ - 419313, - 105054, - 2056 - ], - [ - 418900, - 105201, - 2095 - ], - [ - 424273, - 101541, - 7542 - ], - [ - 424190, - 101245, - 2088 - ], - [ - 424990, - 100924, - 9726 - ], - [ - 427318, - 99129, - 12875 - ], - [ - 427284, - 99208, - 1050 - ], - [ - 426902, - 99227, - 13255 - ], - [ - 395143, - 127370, - 978 - ], - [ - 395553, - 127169, - 7188 - ], - [ - 395604, - 127418, - 1934 - ], - [ - 420545, - 103618, - 1008 - ], - [ - 420419, - 104036, - 2064 - ], - [ - 420163, - 103716, - 952 - ], - [ - 429063, - 96984, - 7695 - ], - [ - 428511, - 97112, - 13983 - ], - [ - 429107, - 96460, - 962 - ], - [ - 404483, - 117995, - 988 - ], - [ - 421945, - 102736, - 2055 - ], - [ - 422302, - 102612, - 1321 - ], - [ - 422394, - 102919, - 2060 - ], - [ - 417587, - 107241, - 2008 - ], - [ - 419072, - 106067, - 1092 - ], - [ - 417046, - 107853, - 1102 - ], - [ - 416580, - 107107, - 2093 - ], - [ - 416781, - 106746, - 1038 - ], - [ - 416828, - 107079, - 1080 - ], - [ - 412541, - 110976, - 2099 - ], - [ - 412964, - 111238, - 2064 - ], - [ - 412627, - 111648, - 2054 - ], - [ - 409758, - 114110, - 1049 - ], - [ - 409712, - 113755, - 1057 - ], - [ - 410040, - 114018, - 1363 - ], - [ - 406099, - 116718, - 2035 - ], - [ - 406631, - 116487, - 2023 - ], - [ - 406436, - 116950, - 2071 - ], - [ - 405095, - 118467, - 2009 - ], - [ - 404595, - 118285, - 2026 - ], - [ - 405005, - 117789, - 2003 - ], - [ - 402470, - 120208, - 1997 - ], - [ - 401226, - 121359, - 986 - ], - [ - 375184, - 147659, - 1913 - ], - [ - 374052, - 147629, - 1755 - ], - [ - 374797, - 147336, - 1459 - ], - [ - 369491, - 152176, - 1145 - ], - [ - 369119, - 152529, - 933 - ], - [ - 368838, - 152527, - 906 - ], - [ - 368369, - 153151, - 950 - ], - [ - 368612, - 153514, - 942 - ], - [ - 368245, - 153109, - 902 - ], - [ - 395895, - 127305, - 1030 - ], - [ - 394932, - 128567, - 990 - ], - [ - 394196, - 129441, - 1032 - ], - [ - 395903, - 126888, - 1923 - ], - [ - 425616, - 100327, - 10953 - ], - [ - 425746, - 99978, - 1390 - ], - [ - 426051, - 100185, - 11623 - ], - [ - 429880, - 96537, - 1049 - ], - [ - 429881, - 96133, - 15308 - ], - [ - 430333, - 96398, - 2061 - ], - [ - 429545, - 96539, - 9747 - ], - [ - 431031, - 94880, - 1050 - ], - [ - 424631, - 100711, - 1117 - ], - [ - 425271, - 100454, - 14636 - ], - [ - 428308, - 97229, - 1020 - ], - [ - 429698, - 97183, - 10723 - ], - [ - 430177, - 96788, - 11728 - ], - [ - 430225, - 96103, - 1065 - ], - [ - 430234, - 95761, - 1840 - ], - [ - 430299, - 96074, - 14815 - ], - [ - 426324, - 99434, - 10684 - ], - [ - 426945, - 99335, - 1043 - ], - [ - 429443, - 96907, - 7605 - ], - [ - 429420, - 96653, - 1140 - ], - [ - 425317, - 100098, - 1324 - ], - [ - 426342, - 98713, - 12310 - ], - [ - 422938, - 101427, - 962 - ], - [ - 427529, - 97749, - 12469 - ], - [ - 427801, - 98371, - 1461 - ], - [ - 427478, - 98432, - 1324 - ], - [ - 427633, - 98041, - 13403 - ], - [ - 427568, - 98743, - 2017 - ], - [ - 427254, - 98514, - 1946 - ], - [ - 428482, - 97802, - 12281 - ], - [ - 428751, - 97758, - 11269 - ], - [ - 428399, - 97873, - 1092 - ], - [ - 426577, - 99754, - 1068 - ], - [ - 427147, - 98188, - 1030 - ], - [ - 427239, - 98495, - 12950 - ], - [ - 426916, - 98641, - 1941 - ], - [ - 427752, - 98710, - 13827 - ], - [ - 425287, - 100874, - 1952 - ], - [ - 425485, - 100691, - 13330 - ], - [ - 426096, - 99150, - 7961 - ], - [ - 425254, - 99786, - 1024 - ], - [ - 427272, - 98807, - 12846 - ], - [ - 427819, - 98711, - 1070 - ], - [ - 431272, - 94763, - 1059 - ], - [ - 431302, - 94827, - 9116 - ], - [ - 430612, - 95673, - 2041 - ], - [ - 430486, - 96057, - 10668 - ], - [ - 428078, - 97595, - 1962 - ], - [ - 428421, - 97458, - 12049 - ], - [ - 426728, - 98948, - 11282 - ], - [ - 429343, - 97250, - 15751 - ], - [ - 428152, - 97891, - 12000 - ], - [ - 427128, - 98194, - 11939 - ], - [ - 426585, - 98649, - 9795 - ], - [ - 424920, - 100227, - 1236 - ], - [ - 425202, - 99788, - 10990 - ], - [ - 430601, - 96045, - 1178 - ], - [ - 396937, - 125921, - 1046 - ], - [ - 397169, - 126082, - 9224 - ], - [ - 396983, - 126252, - 1075 - ], - [ - 398127, - 125311, - 1028 - ], - [ - 398170, - 125284, - 8048 - ], - [ - 425003, - 100931, - 1078 - ], - [ - 423192, - 102578, - 1092 - ], - [ - 423572, - 102175, - 7109 - ], - [ - 423868, - 101365, - 2066 - ], - [ - 423598, - 101433, - 8899 - ], - [ - 423759, - 101079, - 1046 - ], - [ - 423537, - 101831, - 7268 - ], - [ - 424643, - 100356, - 1956 - ], - [ - 424862, - 99916, - 982 - ], - [ - 430637, - 96364, - 1091 - ], - [ - 398141, - 124928, - 1932 - ], - [ - 398895, - 124611, - 1029 - ], - [ - 396587, - 126068, - 1074 - ], - [ - 396452, - 126871, - 1914 - ], - [ - 396229, - 127038, - 1890 - ], - [ - 396408, - 126528, - 1929 - ], - [ - 396632, - 126428, - 1032 - ], - [ - 394533, - 128793, - 1018 - ], - [ - 394116, - 128539, - 1953 - ], - [ - 394488, - 128446, - 1024 - ], - [ - 396350, - 126183, - 1765 - ], - [ - 395520, - 127124, - 1294 - ], - [ - 384774, - 137556, - 1997 - ], - [ - 385226, - 137482, - 2022 - ], - [ - 385271, - 137824, - 2009 - ], - [ - 399827, - 122644, - 994 - ], - [ - 395280, - 127945, - 1847 - ], - [ - 395971, - 127326, - 7314 - ], - [ - 393742, - 129059, - 1920 - ], - [ - 394159, - 128855, - 1962 - ], - [ - 392760, - 129655, - 982 - ], - [ - 424171, - 101631, - 1090 - ], - [ - 423467, - 101512, - 1318 - ], - [ - 423517, - 101867, - 1372 - ], - [ - 429255, - 97276, - 9868 - ], - [ - 423537, - 102194, - 1026 - ], - [ - 422710, - 102162, - 1353 - ], - [ - 422798, - 102456, - 2059 - ], - [ - 431694, - 95341, - 1027 - ], - [ - 431428, - 95446, - 1993 - ], - [ - 431323, - 95121, - 1113 - ], - [ - 430865, - 95263, - 2005 - ], - [ - 399679, - 123804, - 1053 - ], - [ - 399688, - 123376, - 1976 - ], - [ - 399965, - 123658, - 1036 - ], - [ - 398469, - 124452, - 1064 - ], - [ - 398439, - 124120, - 1256 - ], - [ - 398867, - 124231, - 1334 - ], - [ - 396141, - 126390, - 1867 - ], - [ - 431719, - 95010, - 1993 - ], - [ - 424139, - 100909, - 1989 - ], - [ - 399178, - 124440, - 1020 - ], - [ - 399724, - 123969, - 1092 - ], - [ - 420678, - 104630, - 996 - ], - [ - 421120, - 104309, - 1072 - ], - [ - 417176, - 106658, - 2072 - ], - [ - 417761, - 106158, - 2034 - ], - [ - 416983, - 107713, - 2085 - ], - [ - 416647, - 108163, - 1042 - ], - [ - 421530, - 102894, - 1007 - ], - [ - 421926, - 103126, - 1050 - ], - [ - 421966, - 103442, - 1016 - ], - [ - 385511, - 136759, - 1952 - ], - [ - 385703, - 136450, - 1006 - ], - [ - 399541, - 122798, - 984 - ], - [ - 402832, - 120421, - 2003 - ], - [ - 402731, - 120147, - 1094 - ], - [ - 403882, - 119230, - 2010 - ], - [ - 403516, - 119399, - 1994 - ], - [ - 403602, - 120051, - 1988 - ], - [ - 403290, - 120169, - 2021 - ], - [ - 370808, - 151477, - 945 - ], - [ - 369956, - 151718, - 1810 - ], - [ - 371238, - 150978, - 1925 - ], - [ - 372005, - 149948, - 1912 - ], - [ - 372542, - 149282, - 1926 - ], - [ - 372097, - 150632, - 1923 - ], - [ - 419721, - 104588, - 2081 - ], - [ - 420087, - 104158, - 2006 - ], - [ - 420507, - 104708, - 2054 - ], - [ - 421644, - 103199, - 2064 - ], - [ - 400254, - 123079, - 2006 - ], - [ - 399936, - 122930, - 1976 - ], - [ - 400153, - 122802, - 1101 - ], - [ - 402990, - 120353, - 1234 - ], - [ - 402991, - 119946, - 1988 - ], - [ - 402888, - 119694, - 1008 - ], - [ - 400889, - 122211, - 1026 - ], - [ - 400993, - 122480, - 1984 - ], - [ - 400531, - 122263, - 1976 - ], - [ - 391632, - 131226, - 1946 - ], - [ - 391982, - 131131, - 1053 - ], - [ - 391673, - 131570, - 1879 - ], - [ - 394145, - 129276, - 982 - ], - [ - 398529, - 124800, - 1243 - ], - [ - 411322, - 111568, - 1812 - ], - [ - 408418, - 114232, - 2002 - ], - [ - 409798, - 114427, - 1027 - ], - [ - 409191, - 115108, - 1082 - ], - [ - 408666, - 114112, - 1011 - ], - [ - 411200, - 111928, - 2050 - ], - [ - 410430, - 112517, - 1020 - ], - [ - 418586, - 106287, - 2034 - ], - [ - 407025, - 115664, - 990 - ], - [ - 406166, - 117771, - 1022 - ], - [ - 405777, - 117568, - 1078 - ], - [ - 406186, - 117390, - 2019 - ], - [ - 407937, - 114990, - 2083 - ], - [ - 407559, - 115789, - 2067 - ], - [ - 407514, - 115475, - 2021 - ], - [ - 406279, - 116340, - 991 - ], - [ - 406835, - 116771, - 1061 - ], - [ - 406787, - 116431, - 1027 - ], - [ - 407223, - 116592, - 2043 - ], - [ - 405460, - 117668, - 2017 - ], - [ - 404297, - 119418, - 2028 - ], - [ - 404205, - 118742, - 2008 - ], - [ - 406678, - 116832, - 2042 - ], - [ - 409247, - 114609, - 2092 - ], - [ - 409481, - 113499, - 2047 - ], - [ - 410904, - 113028, - 2051 - ], - [ - 410518, - 113162, - 1053 - ], - [ - 410544, - 112795, - 2108 - ], - [ - 409224, - 115005, - 1020 - ], - [ - 410258, - 113623, - 1069 - ], - [ - 410000, - 113328, - 2096 - ], - [ - 410210, - 113265, - 1045 - ], - [ - 409507, - 114235, - 1030 - ], - [ - 409138, - 114355, - 1024 - ], - [ - 408868, - 115058, - 2084 - ], - [ - 374721, - 147059, - 908 - ], - [ - 375051, - 147072, - 1149 - ], - [ - 374993, - 146768, - 878 - ], - [ - 373545, - 148078, - 901 - ], - [ - 379645, - 142514, - 1949 - ], - [ - 379214, - 142636, - 911 - ], - [ - 380812, - 141131, - 1901 - ], - [ - 378754, - 143175, - 1869 - ], - [ - 378941, - 142977, - 906 - ], - [ - 379044, - 143177, - 1960 - ], - [ - 375610, - 146835, - 914 - ], - [ - 375139, - 147321, - 1906 - ], - [ - 375298, - 146837, - 891 - ], - [ - 371767, - 149956, - 1840 - ], - [ - 371519, - 150307, - 1931 - ], - [ - 376212, - 145793, - 1834 - ], - [ - 376311, - 146489, - 1924 - ], - [ - 375926, - 146409, - 1920 - ], - [ - 379322, - 142879, - 1962 - ], - [ - 379735, - 143202, - 1934 - ], - [ - 373647, - 148286, - 1912 - ], - [ - 373220, - 148614, - 1933 - ], - [ - 375967, - 146731, - 1914 - ], - [ - 373691, - 148605, - 1930 - ], - [ - 431161, - 95855, - 1072 - ], - [ - 430956, - 95935, - 2050 - ], - [ - 430847, - 95620, - 1072 - ], - [ - 369025, - 153417, - 1863 - ], - [ - 370513, - 152045, - 1905 - ], - [ - 368863, - 153791, - 1002 - ], - [ - 368746, - 153420, - 1889 - ], - [ - 411226, - 112654, - 1049 - ], - [ - 411270, - 112993, - 1048 - ], - [ - 409953, - 112970, - 2088 - ], - [ - 408371, - 114859, - 2063 - ], - [ - 407980, - 115320, - 2074 - ], - [ - 406520, - 116213, - 977 - ], - [ - 407136, - 115944, - 2027 - ], - [ - 406807, - 116044, - 2028 - ], - [ - 407277, - 116858, - 1092 - ], - [ - 406875, - 117108, - 1009 - ], - [ - 388298, - 134407, - 1958 - ], - [ - 387783, - 134648, - 961 - ], - [ - 388252, - 134077, - 1931 - ], - [ - 388659, - 133968, - 1956 - ], - [ - 389044, - 133893, - 1958 - ], - [ - 388685, - 134337, - 1627 - ], - [ - 413068, - 111505, - 1092 - ], - [ - 410795, - 112763, - 1030 - ], - [ - 410815, - 112355, - 2064 - ], - [ - 409618, - 114521, - 2072 - ], - [ - 377023, - 145965, - 915 - ], - [ - 376683, - 146164, - 1918 - ], - [ - 376594, - 145480, - 1936 - ], - [ - 375585, - 146474, - 1214 - ], - [ - 410591, - 113499, - 1455 - ], - [ - 408002, - 116058, - 1002 - ], - [ - 407605, - 116147, - 2048 - ], - [ - 394488, - 128019, - 1820 - ], - [ - 393095, - 129455, - 1921 - ], - [ - 393454, - 129595, - 1936 - ], - [ - 393080, - 129857, - 963 - ], - [ - 391993, - 130729, - 1956 - ], - [ - 392319, - 130221, - 1935 - ], - [ - 392589, - 130515, - 977 - ], - [ - 381864, - 140104, - 914 - ], - [ - 381590, - 140374, - 1949 - ], - [ - 389296, - 133453, - 1947 - ], - [ - 389955, - 133431, - 1022 - ], - [ - 389288, - 133877, - 1026 - ], - [ - 387109, - 135384, - 1990 - ], - [ - 387104, - 135812, - 1114 - ], - [ - 386765, - 135457, - 1978 - ], - [ - 392630, - 130830, - 976 - ], - [ - 383069, - 138965, - 935 - ], - [ - 390963, - 132188, - 1936 - ], - [ - 390523, - 132744, - 991 - ], - [ - 390145, - 132780, - 1928 - ], - [ - 388615, - 133653, - 1937 - ], - [ - 390131, - 133192, - 969 - ], - [ - 389250, - 133110, - 1925 - ], - [ - 388995, - 133540, - 1925 - ], - [ - 381680, - 141024, - 2006 - ], - [ - 380861, - 141461, - 1976 - ], - [ - 382366, - 140646, - 1995 - ], - [ - 382004, - 141127, - 981 - ], - [ - 377270, - 144591, - 892 - ], - [ - 377375, - 144803, - 1942 - ], - [ - 397757, - 125441, - 1923 - ], - [ - 397334, - 125289, - 1913 - ], - [ - 397675, - 125143, - 1335 - ], - [ - 396892, - 125604, - 1007 - ], - [ - 408461, - 115537, - 2057 - ], - [ - 416013, - 108598, - 2066 - ], - [ - 416390, - 108173, - 2066 - ], - [ - 414945, - 108470, - 1022 - ], - [ - 416936, - 107354, - 2090 - ], - [ - 415491, - 108351, - 2083 - ], - [ - 415099, - 109080, - 2089 - ], - [ - 417157, - 107055, - 1059 - ], - [ - 415905, - 108307, - 1068 - ], - [ - 415141, - 109425, - 2023 - ], - [ - 415045, - 109666, - 1102 - ], - [ - 414744, - 109520, - 2077 - ], - [ - 415926, - 107925, - 2074 - ], - [ - 415056, - 108746, - 2087 - ], - [ - 386137, - 136624, - 1976 - ], - [ - 385744, - 136767, - 1010 - ], - [ - 383540, - 139261, - 1027 - ], - [ - 384037, - 139067, - 1983 - ], - [ - 383585, - 139598, - 1035 - ], - [ - 386094, - 136305, - 1968 - ], - [ - 386414, - 136293, - 1041 - ], - [ - 383217, - 139509, - 1995 - ], - [ - 388288, - 134849, - 974 - ], - [ - 386852, - 136103, - 2000 - ], - [ - 386459, - 136646, - 1008 - ], - [ - 385561, - 137110, - 2008 - ], - [ - 385606, - 137466, - 1976 - ], - [ - 394842, - 127887, - 984 - ], - [ - 419337, - 105792, - 1005 - ], - [ - 419808, - 105265, - 2046 - ], - [ - 420701, - 104235, - 2064 - ], - [ - 421004, - 104134, - 2073 - ], - [ - 405842, - 117889, - 1409 - ], - [ - 406479, - 117282, - 2066 - ], - [ - 405373, - 118619, - 1102 - ], - [ - 405543, - 118314, - 1990 - ], - [ - 405502, - 117985, - 2024 - ], - [ - 411248, - 112267, - 2096 - ], - [ - 412762, - 110270, - 1012 - ], - [ - 414387, - 109935, - 2081 - ], - [ - 414727, - 109927, - 1063 - ], - [ - 413634, - 110098, - 1044 - ], - [ - 413448, - 110110, - 2084 - ], - [ - 413248, - 110846, - 2076 - ], - [ - 412923, - 110922, - 2064 - ], - [ - 413138, - 110559, - 1060 - ], - [ - 412166, - 111393, - 2045 - ], - [ - 413749, - 110393, - 2105 - ], - [ - 412875, - 110566, - 2055 - ], - [ - 413157, - 110171, - 2057 - ], - [ - 414019, - 109991, - 2098 - ], - [ - 413654, - 109695, - 2079 - ], - [ - 413424, - 110481, - 1051 - ], - [ - 413970, - 109632, - 2072 - ], - [ - 413533, - 110767, - 2069 - ], - [ - 414057, - 110309, - 2038 - ], - [ - 413226, - 111238, - 1037 - ], - [ - 389818, - 133255, - 1938 - ], - [ - 383549, - 138810, - 1991 - ], - [ - 383171, - 139178, - 1960 - ], - [ - 399147, - 124089, - 1224 - ], - [ - 399464, - 123882, - 1932 - ], - [ - 398862, - 123869, - 1938 - ], - [ - 399420, - 123532, - 1961 - ], - [ - 389723, - 132553, - 1908 - ], - [ - 390872, - 131519, - 1903 - ], - [ - 389409, - 132798, - 936 - ], - [ - 391886, - 130462, - 945 - ], - [ - 393125, - 130191, - 963 - ], - [ - 389716, - 132999, - 979 - ], - [ - 387450, - 134931, - 1988 - ], - [ - 389512, - 133038, - 1939 - ], - [ - 431094, - 95207, - 1337 - ], - [ - 418547, - 105968, - 2078 - ], - [ - 404683, - 118961, - 2027 - ], - [ - 400520, - 122664, - 1069 - ], - [ - 400563, - 123012, - 1025 - ], - [ - 399376, - 123201, - 1949 - ], - [ - 400901, - 121804, - 1948 - ], - [ - 401336, - 121651, - 1979 - ], - [ - 401376, - 121967, - 1961 - ], - [ - 410882, - 113418, - 1030 - ], - [ - 368603, - 152868, - 913 - ], - [ - 368696, - 153060, - 1848 - ], - [ - 370464, - 151675, - 1898 - ], - [ - 384291, - 138103, - 1086 - ], - [ - 384819, - 137890, - 2008 - ], - [ - 383996, - 138743, - 1996 - ], - [ - 371908, - 149749, - 936 - ], - [ - 401703, - 121169, - 1976 - ], - [ - 401746, - 121499, - 1972 - ], - [ - 402192, - 121382, - 1916 - ], - [ - 402869, - 120745, - 1920 - ], - [ - 403028, - 120708, - 1094 - ], - [ - 401596, - 122175, - 1092 - ], - [ - 411658, - 111536, - 2036 - ], - [ - 412058, - 111121, - 1036 - ], - [ - 411705, - 111864, - 2086 - ], - [ - 382813, - 139239, - 1923 - ], - [ - 382322, - 140314, - 1997 - ], - [ - 381249, - 140733, - 1958 - ], - [ - 383946, - 138389, - 1968 - ], - [ - 377037, - 145500, - 1954 - ], - [ - 368136, - 152989, - 892 - ], - [ - 374471, - 147284, - 1855 - ], - [ - 382906, - 139917, - 1966 - ], - [ - 382276, - 139969, - 1984 - ], - [ - 382652, - 140269, - 1997 - ], - [ - 383206, - 139961, - 1005 - ], - [ - 382551, - 140731, - 1072 - ], - [ - 422774, - 102820, - 1024 - ], - [ - 422235, - 102278, - 1001 - ], - [ - 421309, - 103674, - 2046 - ], - [ - 420912, - 103463, - 2030 - ], - [ - 421684, - 103518, - 2022 - ], - [ - 421284, - 104052, - 987 - ], - [ - 420658, - 103920, - 2040 - ], - [ - 407957, - 115694, - 1050 - ], - [ - 392907, - 130248, - 1948 - ], - [ - 392409, - 130876, - 1962 - ], - [ - 393786, - 129377, - 1943 - ], - [ - 392861, - 129917, - 1923 - ], - [ - 391584, - 130888, - 1890 - ], - [ - 398045, - 124657, - 1095 - ], - [ - 418985, - 105851, - 2067 - ], - [ - 412216, - 111745, - 2094 - ], - [ - 431183, - 95509, - 2032 - ], - [ - 401729, - 121884, - 1010 - ], - [ - 371606, - 150968, - 1937 - ], - [ - 378846, - 143848, - 1914 - ], - [ - 378281, - 144506, - 1951 - ], - [ - 377420, - 145144, - 1947 - ], - [ - 387499, - 135292, - 2015 - ], - [ - 387857, - 134915, - 1515 - ], - [ - 403479, - 120392, - 1092 - ], - [ - 368935, - 152769, - 1784 - ], - [ - 369572, - 152399, - 1873 - ], - [ - 369207, - 152758, - 1717 - ], - [ - 406725, - 117189, - 2032 - ], - [ - 377769, - 144160, - 1922 - ], - [ - 405080, - 118871, - 1035 - ], - [ - 419359, - 105396, - 2067 - ], - [ - 380432, - 142604, - 962 - ], - [ - 380902, - 141786, - 1946 - ], - [ - 380028, - 142511, - 1965 - ], - [ - 380070, - 142852, - 1923 - ], - [ - 410301, - 113963, - 1031 - ], - [ - 399605, - 123108, - 1320 - ], - [ - 414248, - 108927, - 982 - ], - [ - 411322, - 111568, - 952 - ], - [ - 408418, - 114232, - 1002 - ], - [ - 405535, - 116920, - 932 - ], - [ - 210602, - 319433, - 1062 - ], - [ - 211419, - 318556, - 1062 - ], - [ - 214793, - 319857, - 832 - ], - [ - 208877, - 320868, - 1062 - ], - [ - 211070, - 325923, - 832 - ], - [ - 210218, - 325787, - 832 - ], - [ - 207846, - 325349, - 832 - ], - [ - 212854, - 327427, - 832 - ], - [ - 211248, - 326057, - 832 - ], - [ - 335118, - 198071, - 876 - ], - [ - 333494, - 199934, - 813 - ], - [ - 334518, - 196473, - 962 - ], - [ - 336397, - 197315, - 832 - ], - [ - 419248, - 114877, - 832 - ], - [ - 420635, - 113524, - 832 - ], - [ - 421626, - 113801, - 853 - ], - [ - 436212, - 96346, - 911 - ], - [ - 436634, - 96196, - 878 - ], - [ - 436593, - 96307, - 12502 - ], - [ - 438747, - 89436, - 1185 - ], - [ - 440095, - 92440, - 722 - ], - [ - 437873, - 90413, - 1072 - ], - [ - 441204, - 91074, - 712 - ], - [ - 445663, - 85012, - 712 - ], - [ - 445651, - 85029, - 712 - ], - [ - 444145, - 84104, - 1020 - ], - [ - 439076, - 88953, - 1067 - ], - [ - 442779, - 87036, - 907 - ], - [ - 411461, - 122262, - 862 - ], - [ - 417612, - 118356, - 722 - ], - [ - 407393, - 128667, - 722 - ], - [ - 438278, - 89477, - 1082 - ], - [ - 439538, - 92624, - 778 - ], - [ - 438411, - 92753, - 892 - ], - [ - 438493, - 92925, - 8867 - ], - [ - 438452, - 93067, - 890 - ], - [ - 428468, - 106175, - 836 - ], - [ - 433609, - 100429, - 842 - ], - [ - 424764, - 110579, - 752 - ], - [ - 437190, - 94534, - 949 - ], - [ - 437143, - 94169, - 967 - ], - [ - 437474, - 94009, - 922 - ], - [ - 434532, - 98280, - 920 - ], - [ - 434253, - 99103, - 870 - ], - [ - 432905, - 99526, - 922 - ], - [ - 437129, - 95022, - 10123 - ], - [ - 436466, - 94846, - 986 - ], - [ - 436857, - 94656, - 961 - ], - [ - 434692, - 97225, - 932 - ], - [ - 434783, - 98118, - 904 - ], - [ - 435518, - 97038, - 929 - ], - [ - 436293, - 97123, - 872 - ], - [ - 435032, - 97998, - 889 - ], - [ - 429245, - 105119, - 9336 - ], - [ - 428982, - 105017, - 855 - ], - [ - 429313, - 104922, - 824 - ], - [ - 423405, - 110698, - 812 - ], - [ - 427421, - 106058, - 872 - ], - [ - 404185, - 131903, - 732 - ], - [ - 403389, - 128842, - 922 - ], - [ - 417605, - 117981, - 849 - ], - [ - 414543, - 119658, - 822 - ], - [ - 416938, - 117296, - 832 - ], - [ - 399819, - 132350, - 912 - ], - [ - 401257, - 130875, - 922 - ], - [ - 406460, - 126326, - 892 - ], - [ - 404893, - 127557, - 942 - ], - [ - 398473, - 133840, - 902 - ], - [ - 395364, - 137452, - 862 - ], - [ - 393008, - 140033, - 822 - ], - [ - 390592, - 142594, - 822 - ], - [ - 367036, - 162765, - 1012 - ], - [ - 373525, - 157278, - 944 - ], - [ - 366264, - 164327, - 992 - ], - [ - 388503, - 144618, - 842 - ], - [ - 363379, - 169772, - 882 - ], - [ - 369096, - 158919, - 972 - ], - [ - 370139, - 157275, - 952 - ], - [ - 339854, - 193579, - 858 - ], - [ - 339680, - 193499, - 11170 - ], - [ - 339808, - 193229, - 881 - ], - [ - 380395, - 150013, - 912 - ], - [ - 382368, - 148955, - 872 - ], - [ - 377282, - 154434, - 877 - ], - [ - 376331, - 154665, - 930 - ], - [ - 376249, - 154952, - 7679 - ], - [ - 376132, - 154823, - 6289 - ], - [ - 377253, - 153918, - 6554 - ], - [ - 377195, - 153771, - 875 - ], - [ - 377481, - 152779, - 901 - ], - [ - 375712, - 154577, - 927 - ], - [ - 374857, - 154203, - 893 - ], - [ - 374817, - 153877, - 927 - ], - [ - 372803, - 154631, - 902 - ], - [ - 375174, - 153053, - 912 - ], - [ - 373769, - 156281, - 893 - ], - [ - 373517, - 156396, - 7039 - ], - [ - 373387, - 156264, - 890 - ], - [ - 376118, - 155310, - 892 - ], - [ - 376310, - 155259, - 7953 - ], - [ - 375543, - 155922, - 928 - ], - [ - 384417, - 147729, - 872 - ], - [ - 385692, - 146896, - 872 - ], - [ - 373254, - 155252, - 896 - ], - [ - 373096, - 156579, - 903 - ], - [ - 371923, - 155297, - 912 - ], - [ - 386775, - 146067, - 862 - ], - [ - 373524, - 157270, - 5542 - ], - [ - 370790, - 156394, - 942 - ], - [ - 375177, - 156599, - 940 - ], - [ - 367831, - 161248, - 1012 - ], - [ - 364702, - 167983, - 922 - ], - [ - 365364, - 166516, - 962 - ], - [ - 364329, - 168598, - 892 - ], - [ - 360072, - 173425, - 872 - ], - [ - 356544, - 177264, - 842 - ], - [ - 352392, - 181857, - 799 - ], - [ - 354092, - 179794, - 832 - ], - [ - 349405, - 184198, - 11356 - ], - [ - 349493, - 184488, - 822 - ], - [ - 349108, - 184528, - 873 - ], - [ - 349446, - 184133, - 827 - ], - [ - 346794, - 186536, - 842 - ], - [ - 350304, - 183346, - 812 - ], - [ - 345077, - 188892, - 825 - ], - [ - 342351, - 190432, - 882 - ], - [ - 320547, - 211858, - 1006 - ], - [ - 313361, - 219411, - 832 - ], - [ - 316369, - 214780, - 1012 - ], - [ - 338614, - 194159, - 871 - ], - [ - 338405, - 194569, - 10453 - ], - [ - 338139, - 194186, - 885 - ], - [ - 330899, - 199154, - 1012 - ], - [ - 328606, - 201149, - 1022 - ], - [ - 327141, - 202666, - 1012 - ], - [ - 324601, - 205572, - 1062 - ], - [ - 318746, - 212291, - 1062 - ], - [ - 319577, - 211421, - 1062 - ], - [ - 286012, - 245644, - 832 - ], - [ - 302359, - 225558, - 1062 - ], - [ - 314000, - 217159, - 1002 - ], - [ - 312651, - 218460, - 1062 - ], - [ - 311112, - 219741, - 1062 - ], - [ - 242536, - 283852, - 1062 - ], - [ - 268373, - 259616, - 1062 - ], - [ - 231298, - 298380, - 832 - ], - [ - 309463, - 220901, - 1062 - ], - [ - 300653, - 226658, - 1062 - ], - [ - 297218, - 229216, - 1062 - ], - [ - 292918, - 232334, - 1062 - ], - [ - 289684, - 234794, - 1062 - ], - [ - 287638, - 236691, - 1062 - ], - [ - 284091, - 241114, - 1062 - ], - [ - 281943, - 244084, - 1062 - ], - [ - 278205, - 249448, - 1062 - ], - [ - 276631, - 251666, - 1062 - ], - [ - 274926, - 253541, - 1062 - ], - [ - 272334, - 256108, - 1062 - ], - [ - 271457, - 256890, - 1062 - ], - [ - 269652, - 258500, - 1062 - ], - [ - 265231, - 261970, - 1062 - ], - [ - 245067, - 280767, - 1062 - ], - [ - 262061, - 263975, - 1062 - ], - [ - 256862, - 267538, - 1062 - ], - [ - 259607, - 265438, - 1062 - ], - [ - 254672, - 269515, - 1062 - ], - [ - 252458, - 271715, - 1062 - ], - [ - 250534, - 273565, - 1062 - ], - [ - 249268, - 274992, - 1062 - ], - [ - 247235, - 277665, - 1062 - ], - [ - 240065, - 286724, - 1062 - ], - [ - 227570, - 297540, - 1062 - ], - [ - 228211, - 296316, - 1062 - ], - [ - 238343, - 288386, - 1062 - ], - [ - 236027, - 290279, - 1062 - ], - [ - 233932, - 291726, - 1062 - ], - [ - 231275, - 293609, - 1062 - ], - [ - 229744, - 294730, - 1062 - ], - [ - 228881, - 295447, - 1062 - ], - [ - 228711, - 295667, - 1062 - ], - [ - 226505, - 299403, - 1062 - ], - [ - 219985, - 310200, - 832 - ], - [ - 221584, - 305692, - 1062 - ], - [ - 218292, - 312438, - 832 - ], - [ - 217434, - 310893, - 1062 - ], - [ - 216483, - 315620, - 832 - ], - [ - 213275, - 316227, - 1062 - ], - [ - 205414, - 323264, - 832 - ], - [ - 207209, - 321619, - 1062 - ], - [ - 205003, - 321964, - 1062 - ], - [ - 204150, - 322181, - 832 - ], - [ - 204136, - 322052, - 1062 - ], - [ - 205822, - 321866, - 1062 - ], - [ - 429041, - 105448, - 10435 - ], - [ - 429118, - 105331, - 15783 - ], - [ - 429964, - 104432, - 836 - ], - [ - 431964, - 100755, - 11847 - ], - [ - 431839, - 101153, - 9304 - ], - [ - 431164, - 101672, - 9748 - ], - [ - 434681, - 98236, - 14736 - ], - [ - 434573, - 98610, - 889 - ], - [ - 438575, - 94076, - 753 - ], - [ - 438157, - 94697, - 792 - ], - [ - 435849, - 96869, - 900 - ], - [ - 349781, - 184058, - 818 - ], - [ - 348945, - 184846, - 10253 - ], - [ - 349441, - 184562, - 11181 - ], - [ - 348764, - 184987, - 835 - ], - [ - 428735, - 105760, - 823 - ], - [ - 428512, - 104909, - 12989 - ], - [ - 428743, - 105216, - 10609 - ], - [ - 429008, - 105134, - 10553 - ], - [ - 430753, - 103266, - 831 - ], - [ - 430243, - 103012, - 889 - ], - [ - 430811, - 102928, - 15768 - ], - [ - 431310, - 102280, - 10694 - ], - [ - 431097, - 102832, - 827 - ], - [ - 430980, - 101949, - 13452 - ], - [ - 429918, - 104073, - 852 - ], - [ - 430333, - 103714, - 847 - ], - [ - 429956, - 104233, - 11317 - ], - [ - 428896, - 104340, - 892 - ], - [ - 429497, - 103686, - 10733 - ], - [ - 429493, - 103841, - 886 - ], - [ - 428962, - 104802, - 10533 - ], - [ - 429022, - 104683, - 15640 - ], - [ - 429254, - 104741, - 10185 - ], - [ - 436942, - 95338, - 910 - ], - [ - 437349, - 93019, - 996 - ], - [ - 436992, - 93380, - 992 - ], - [ - 437340, - 92350, - 1022 - ], - [ - 437561, - 94682, - 895 - ], - [ - 437864, - 94532, - 873 - ], - [ - 437906, - 94868, - 846 - ], - [ - 436675, - 96515, - 855 - ], - [ - 435476, - 96719, - 944 - ], - [ - 438100, - 94660, - 13683 - ], - [ - 437430, - 93666, - 940 - ], - [ - 437056, - 93494, - 983 - ], - [ - 437345, - 93200, - 10660 - ], - [ - 350242, - 183585, - 812 - ], - [ - 350084, - 183906, - 10287 - ], - [ - 350015, - 183629, - 813 - ], - [ - 348603, - 185039, - 11552 - ], - [ - 348245, - 185417, - 11779 - ], - [ - 348111, - 185489, - 9761 - ], - [ - 431583, - 101885, - 9623 - ], - [ - 431136, - 102027, - 8672 - ], - [ - 431492, - 102540, - 12807 - ], - [ - 431415, - 102390, - 857 - ], - [ - 431535, - 102270, - 8200 - ], - [ - 430288, - 103350, - 894 - ], - [ - 433193, - 100475, - 866 - ], - [ - 429231, - 104275, - 890 - ], - [ - 437575, - 94827, - 10887 - ], - [ - 429877, - 103756, - 875 - ], - [ - 428734, - 105139, - 15738 - ], - [ - 430190, - 103105, - 12217 - ], - [ - 437025, - 96014, - 820 - ], - [ - 436131, - 95700, - 969 - ], - [ - 431714, - 102321, - 836 - ], - [ - 432043, - 101764, - 11076 - ], - [ - 431901, - 101574, - 878 - ], - [ - 432022, - 101401, - 11459 - ], - [ - 432299, - 101043, - 11652 - ], - [ - 432102, - 101144, - 899 - ], - [ - 432058, - 100808, - 904 - ], - [ - 435601, - 96777, - 11284 - ], - [ - 435843, - 95466, - 962 - ], - [ - 436018, - 95529, - 10849 - ], - [ - 350062, - 183977, - 815 - ], - [ - 342832, - 190880, - 840 - ], - [ - 342496, - 191349, - 805 - ], - [ - 348766, - 184771, - 14346 - ], - [ - 347950, - 185882, - 829 - ], - [ - 339602, - 193987, - 818 - ], - [ - 339356, - 193993, - 867 - ], - [ - 339558, - 193646, - 856 - ], - [ - 428934, - 104490, - 10704 - ], - [ - 429283, - 104364, - 11326 - ], - [ - 429613, - 104299, - 11221 - ], - [ - 429534, - 104157, - 887 - ], - [ - 429578, - 104511, - 847 - ], - [ - 432439, - 101075, - 877 - ], - [ - 432479, - 101388, - 847 - ], - [ - 431947, - 101935, - 844 - ], - [ - 431632, - 101671, - 901 - ], - [ - 347587, - 186341, - 843 - ], - [ - 339727, - 193844, - 11183 - ], - [ - 436936, - 94465, - 14708 - ], - [ - 437270, - 95184, - 885 - ], - [ - 436816, - 94325, - 979 - ], - [ - 436103, - 95161, - 12741 - ], - [ - 436087, - 95364, - 951 - ], - [ - 435616, - 96714, - 7553 - ], - [ - 351710, - 182478, - 8734 - ], - [ - 351958, - 182251, - 807 - ], - [ - 350446, - 183728, - 10817 - ], - [ - 437697, - 93209, - 954 - ], - [ - 438116, - 94358, - 836 - ], - [ - 339837, - 193845, - 7901 - ], - [ - 338511, - 195170, - 10824 - ], - [ - 339455, - 194149, - 6807 - ], - [ - 436418, - 94489, - 982 - ], - [ - 351500, - 182290, - 817 - ], - [ - 351171, - 182693, - 809 - ], - [ - 351040, - 182939, - 8962 - ], - [ - 350489, - 183173, - 824 - ], - [ - 349844, - 183901, - 12448 - ], - [ - 340168, - 193197, - 867 - ], - [ - 340888, - 192682, - 840 - ], - [ - 339312, - 193662, - 862 - ], - [ - 339268, - 193306, - 903 - ], - [ - 338659, - 194517, - 858 - ], - [ - 337728, - 194627, - 912 - ], - [ - 340016, - 193538, - 7465 - ], - [ - 338172, - 194043, - 8198 - ], - [ - 336799, - 195117, - 927 - ], - [ - 338870, - 193276, - 892 - ], - [ - 342144, - 191752, - 824 - ], - [ - 339024, - 194071, - 881 - ], - [ - 338798, - 193643, - 11120 - ], - [ - 338277, - 195254, - 842 - ], - [ - 338698, - 194769, - 7637 - ], - [ - 338702, - 194853, - 823 - ], - [ - 351374, - 182359, - 9788 - ], - [ - 352342, - 181477, - 807 - ], - [ - 350537, - 183531, - 807 - ], - [ - 350837, - 183156, - 803 - ], - [ - 351544, - 182621, - 811 - ], - [ - 431674, - 102004, - 863 - ], - [ - 339104, - 194455, - 7207 - ], - [ - 338831, - 194627, - 9743 - ], - [ - 432791, - 100616, - 892 - ], - [ - 432424, - 100643, - 10104 - ], - [ - 432752, - 100301, - 916 - ], - [ - 340649, - 193018, - 7917 - ], - [ - 340558, - 193134, - 828 - ], - [ - 341276, - 192280, - 849 - ], - [ - 432943, - 100514, - 9089 - ], - [ - 432396, - 100995, - 9049 - ], - [ - 432128, - 100746, - 9757 - ], - [ - 432353, - 100398, - 906 - ], - [ - 437990, - 93369, - 898 - ], - [ - 437561, - 91369, - 1052 - ], - [ - 339300, - 193977, - 10839 - ], - [ - 435762, - 96190, - 936 - ], - [ - 373206, - 154891, - 874 - ], - [ - 437359, - 93895, - 9549 - ], - [ - 339071, - 194457, - 839 - ], - [ - 438192, - 93211, - 898 - ], - [ - 437848, - 93255, - 7668 - ], - [ - 376070, - 154949, - 892 - ], - [ - 375411, - 154880, - 998 - ], - [ - 374399, - 154541, - 901 - ], - [ - 377745, - 151518, - 902 - ], - [ - 368509, - 159999, - 992 - ], - [ - 376373, - 154994, - 910 - ], - [ - 375552, - 154968, - 2796 - ], - [ - 376104, - 152953, - 911 - ], - [ - 376286, - 154329, - 924 - ], - [ - 376030, - 154620, - 940 - ], - [ - 376737, - 154946, - 6019 - ], - [ - 376462, - 154865, - 6465 - ], - [ - 377150, - 153420, - 899 - ], - [ - 376724, - 153028, - 900 - ], - [ - 377101, - 153058, - 884 - ], - [ - 376677, - 152682, - 883 - ], - [ - 373433, - 156599, - 898 - ], - [ - 340211, - 193556, - 811 - ], - [ - 340974, - 192647, - 7563 - ], - [ - 339959, - 193754, - 9790 - ], - [ - 374798, - 153962, - 7456 - ], - [ - 338568, - 193796, - 897 - ], - [ - 373330, - 155020, - 6955 - ], - [ - 373584, - 154872, - 904 - ], - [ - 373856, - 156934, - 910 - ], - [ - 376485, - 152896, - 6262 - ], - [ - 377188, - 153174, - 7015 - ], - [ - 377240, - 154111, - 889 - ], - [ - 340342, - 193367, - 8083 - ], - [ - 376419, - 152978, - 906 - ], - [ - 373478, - 156950, - 895 - ], - [ - 376647, - 154724, - 890 - ], - [ - 376063, - 154573, - 5786 - ], - [ - 375756, - 154931, - 893 - ], - [ - 322234, - 208338, - 1082 - ], - [ - 335169, - 198375, - 1021 - ], - [ - 443903, - 81566, - 1152 - ], - [ - 444257, - 86883, - 594 - ], - [ - 457400, - 55040, - 1522 - ], - [ - 457359, - 53203, - 1522 - ], - [ - 462761, - 54675, - 1102 - ], - [ - 462283, - 55742, - 892 - ], - [ - 461801, - 56820, - 892 - ], - [ - 462865, - 54417, - 672 - ], - [ - 462925, - 54267, - 1102 - ], - [ - 457380, - 67875, - 732 - ], - [ - 456573, - 61990, - 1522 - ], - [ - 457365, - 57052, - 1522 - ], - [ - 457314, - 58070, - 1522 - ], - [ - 457230, - 59058, - 1522 - ], - [ - 457089, - 60054, - 1522 - ], - [ - 456863, - 61023, - 1522 - ], - [ - 456264, - 62958, - 1512 - ], - [ - 446661, - 80868, - 2267 - ], - [ - 446208, - 81296, - 1099 - ], - [ - 446246, - 80982, - 2193 - ], - [ - 455888, - 63885, - 1502 - ], - [ - 452239, - 73714, - 930 - ], - [ - 452651, - 73277, - 906 - ], - [ - 452856, - 73678, - 3059 - ], - [ - 455593, - 64769, - 1460 - ], - [ - 455450, - 64810, - 1502 - ], - [ - 455444, - 66553, - 2229 - ], - [ - 455580, - 66347, - 15749 - ], - [ - 455458, - 67211, - 1244 - ], - [ - 455665, - 65145, - 1795 - ], - [ - 454994, - 65722, - 7632 - ], - [ - 455167, - 67303, - 2413 - ], - [ - 454807, - 67706, - 2469 - ], - [ - 454549, - 67384, - 13398 - ], - [ - 453911, - 68982, - 9768 - ], - [ - 453822, - 69206, - 13102 - ], - [ - 453362, - 69277, - 11751 - ], - [ - 453417, - 69338, - 2139 - ], - [ - 453155, - 69786, - 2616 - ], - [ - 452150, - 73039, - 925 - ], - [ - 452561, - 72600, - 876 - ], - [ - 451170, - 73441, - 3132 - ], - [ - 451376, - 73263, - 910 - ], - [ - 451582, - 73669, - 3062 - ], - [ - 447785, - 77982, - 1339 - ], - [ - 448303, - 77930, - 3002 - ], - [ - 448209, - 78208, - 1189 - ], - [ - 446176, - 80339, - 2381 - ], - [ - 446155, - 80655, - 1500 - ], - [ - 445690, - 80676, - 8064 - ], - [ - 453374, - 72390, - 933 - ], - [ - 453409, - 72722, - 820 - ], - [ - 453014, - 72499, - 921 - ], - [ - 452692, - 69811, - 1303 - ], - [ - 452780, - 70190, - 1853 - ], - [ - 452376, - 70319, - 2447 - ], - [ - 455174, - 66703, - 9430 - ], - [ - 455072, - 66329, - 14322 - ], - [ - 455318, - 66470, - 6047 - ], - [ - 455102, - 66962, - 2137 - ], - [ - 454597, - 66662, - 1429 - ], - [ - 454154, - 69108, - 1229 - ], - [ - 454198, - 68815, - 2372 - ], - [ - 454477, - 69047, - 1088 - ], - [ - 454004, - 67443, - 1412 - ], - [ - 455334, - 67068, - 16640 - ], - [ - 455365, - 66825, - 6058 - ], - [ - 451739, - 73166, - 1014 - ], - [ - 451822, - 73500, - 1555 - ], - [ - 455421, - 69323, - 2312 - ], - [ - 455459, - 69639, - 2263 - ], - [ - 455014, - 69378, - 2340 - ], - [ - 455606, - 65724, - 6017 - ], - [ - 455747, - 65816, - 1729 - ], - [ - 455555, - 65734, - 16508 - ], - [ - 455354, - 65873, - 7632 - ], - [ - 455757, - 66117, - 1326 - ], - [ - 455417, - 66217, - 7895 - ], - [ - 455294, - 65837, - 1433 - ], - [ - 454360, - 68060, - 1241 - ], - [ - 454896, - 68404, - 2450 - ], - [ - 453629, - 70705, - 2635 - ], - [ - 453798, - 70586, - 928 - ], - [ - 453975, - 70980, - 2695 - ], - [ - 455208, - 67617, - 2432 - ], - [ - 454206, - 69516, - 8607 - ], - [ - 454303, - 69519, - 2556 - ], - [ - 454346, - 69833, - 2591 - ], - [ - 454616, - 68735, - 8360 - ], - [ - 455270, - 68937, - 902 - ], - [ - 455162, - 69094, - 10572 - ], - [ - 454627, - 69433, - 2484 - ], - [ - 453718, - 69893, - 1055 - ], - [ - 453801, - 69636, - 2694 - ], - [ - 453934, - 69900, - 13403 - ], - [ - 454392, - 69551, - 15497 - ], - [ - 453902, - 69168, - 1075 - ], - [ - 454158, - 69201, - 8503 - ], - [ - 453948, - 69499, - 1112 - ], - [ - 454552, - 69715, - 926 - ], - [ - 453978, - 68916, - 2599 - ], - [ - 454344, - 67427, - 2161 - ], - [ - 454637, - 66981, - 1394 - ], - [ - 455147, - 66093, - 15803 - ], - [ - 455627, - 67902, - 2362 - ], - [ - 455492, - 67523, - 1159 - ], - [ - 454110, - 69880, - 2691 - ], - [ - 446545, - 80511, - 1276 - ], - [ - 446280, - 80568, - 10029 - ], - [ - 445727, - 81098, - 1297 - ], - [ - 445852, - 82009, - 7881 - ], - [ - 453888, - 68666, - 10013 - ], - [ - 453506, - 69703, - 2732 - ], - [ - 452934, - 69170, - 1342 - ], - [ - 454407, - 68381, - 1320 - ], - [ - 453895, - 68539, - 2113 - ], - [ - 454028, - 68096, - 1300 - ], - [ - 455827, - 69588, - 2115 - ], - [ - 455540, - 70614, - 1634 - ], - [ - 455334, - 68648, - 2319 - ], - [ - 455639, - 68836, - 837 - ], - [ - 455600, - 68514, - 876 - ], - [ - 455572, - 68168, - 1114 - ], - [ - 445671, - 80755, - 1129 - ], - [ - 447442, - 77736, - 1281 - ], - [ - 447233, - 77896, - 2353 - ], - [ - 447095, - 77528, - 1105 - ], - [ - 455795, - 69252, - 2260 - ], - [ - 453031, - 72186, - 1748 - ], - [ - 453469, - 72141, - 2741 - ], - [ - 446895, - 80720, - 1085 - ], - [ - 444586, - 82508, - 1035 - ], - [ - 445159, - 83722, - 916 - ], - [ - 455251, - 67974, - 2381 - ], - [ - 455441, - 67774, - 11216 - ], - [ - 454411, - 67781, - 2450 - ], - [ - 446314, - 78822, - 1130 - ], - [ - 445812, - 78876, - 1162 - ], - [ - 446813, - 77617, - 1153 - ], - [ - 446303, - 81650, - 1766 - ], - [ - 446289, - 81531, - 8380 - ], - [ - 445305, - 81249, - 1642 - ], - [ - 444862, - 81369, - 1052 - ], - [ - 447601, - 79076, - 1073 - ], - [ - 447936, - 79320, - 1018 - ], - [ - 447658, - 79409, - 1251 - ], - [ - 446656, - 81492, - 1050 - ], - [ - 445586, - 80108, - 1138 - ], - [ - 445525, - 82579, - 2278 - ], - [ - 445921, - 82455, - 1541 - ], - [ - 446037, - 82794, - 2539 - ], - [ - 445308, - 81604, - 1031 - ], - [ - 446712, - 81829, - 1213 - ], - [ - 446264, - 81854, - 7444 - ], - [ - 446300, - 81978, - 1137 - ], - [ - 445928, - 82143, - 2220 - ], - [ - 447026, - 81088, - 2267 - ], - [ - 447079, - 81270, - 7418 - ], - [ - 446973, - 81414, - 912 - ], - [ - 447267, - 81274, - 859 - ], - [ - 447347, - 81641, - 1311 - ], - [ - 447540, - 80248, - 2358 - ], - [ - 447205, - 80296, - 1763 - ], - [ - 447195, - 79976, - 2208 - ], - [ - 447173, - 82412, - 1911 - ], - [ - 447225, - 82753, - 1998 - ], - [ - 446482, - 82688, - 2382 - ], - [ - 453874, - 70303, - 2500 - ], - [ - 452943, - 70901, - 2853 - ], - [ - 453349, - 71119, - 2927 - ], - [ - 452994, - 71242, - 2950 - ], - [ - 445648, - 80989, - 6894 - ], - [ - 444538, - 82150, - 1019 - ], - [ - 446437, - 82333, - 2410 - ], - [ - 446938, - 83212, - 1858 - ], - [ - 447691, - 82222, - 885 - ], - [ - 447904, - 81431, - 1024 - ], - [ - 447561, - 81189, - 950 - ], - [ - 444656, - 82380, - 7296 - ], - [ - 444987, - 82377, - 959 - ], - [ - 455222, - 68250, - 1472 - ], - [ - 454158, - 70236, - 2723 - ], - [ - 455044, - 69712, - 2146 - ], - [ - 452329, - 74050, - 1579 - ], - [ - 452767, - 74277, - 705 - ], - [ - 452469, - 74445, - 2838 - ], - [ - 450277, - 74609, - 1125 - ], - [ - 450325, - 74971, - 1138 - ], - [ - 450094, - 74769, - 3043 - ], - [ - 449022, - 76413, - 2824 - ], - [ - 449349, - 76599, - 1090 - ], - [ - 449119, - 77059, - 3007 - ], - [ - 449579, - 77289, - 3065 - ], - [ - 449854, - 76828, - 1569 - ], - [ - 449989, - 77216, - 2748 - ], - [ - 448906, - 79173, - 2722 - ], - [ - 448442, - 79262, - 2510 - ], - [ - 448410, - 78911, - 2702 - ], - [ - 449221, - 75569, - 1174 - ], - [ - 449651, - 75470, - 1186 - ], - [ - 449709, - 75806, - 1395 - ], - [ - 450823, - 76901, - 1107 - ], - [ - 450759, - 76560, - 832 - ], - [ - 451217, - 76843, - 2477 - ], - [ - 452081, - 72395, - 1130 - ], - [ - 451742, - 72211, - 2794 - ], - [ - 452154, - 72091, - 2709 - ], - [ - 451180, - 74701, - 958 - ], - [ - 451689, - 74636, - 2801 - ], - [ - 451595, - 74923, - 965 - ], - [ - 450818, - 73491, - 2992 - ], - [ - 450652, - 73109, - 1373 - ], - [ - 451129, - 73110, - 3161 - ], - [ - 452417, - 70661, - 2411 - ], - [ - 451781, - 70784, - 2042 - ], - [ - 452545, - 71327, - 2984 - ], - [ - 452900, - 71516, - 1111 - ], - [ - 451615, - 73995, - 2925 - ], - [ - 451833, - 73843, - 1094 - ], - [ - 451983, - 74226, - 2494 - ], - [ - 450352, - 74018, - 3248 - ], - [ - 450877, - 73838, - 3185 - ], - [ - 452189, - 73356, - 886 - ], - [ - 451288, - 74430, - 2969 - ], - [ - 453684, - 71027, - 2818 - ], - [ - 453588, - 71316, - 931 - ], - [ - 453198, - 72889, - 2796 - ], - [ - 453245, - 71405, - 920 - ], - [ - 451403, - 72630, - 2453 - ], - [ - 450889, - 72349, - 1181 - ], - [ - 451314, - 72257, - 1881 - ], - [ - 452520, - 72260, - 926 - ], - [ - 452893, - 73987, - 3011 - ], - [ - 453760, - 71694, - 2666 - ], - [ - 453289, - 71747, - 926 - ], - [ - 454395, - 70169, - 2659 - ], - [ - 453314, - 70798, - 3008 - ], - [ - 453240, - 70431, - 2645 - ], - [ - 452772, - 70478, - 1202 - ], - [ - 454505, - 71155, - 2421 - ], - [ - 454273, - 71248, - 2499 - ], - [ - 454105, - 70848, - 877 - ], - [ - 451646, - 75264, - 1045 - ], - [ - 451986, - 75154, - 845 - ], - [ - 452023, - 75499, - 727 - ], - [ - 448788, - 78191, - 2856 - ], - [ - 448699, - 78470, - 1102 - ], - [ - 449022, - 77369, - 1070 - ], - [ - 448658, - 77162, - 2909 - ], - [ - 448398, - 78601, - 3117 - ], - [ - 451409, - 76371, - 1133 - ], - [ - 451410, - 76715, - 519 - ], - [ - 450023, - 77527, - 2663 - ], - [ - 450449, - 77802, - 2481 - ], - [ - 450778, - 77675, - 2572 - ], - [ - 450448, - 78101, - 1925 - ], - [ - 448881, - 78837, - 2979 - ], - [ - 453875, - 71229, - 838 - ], - [ - 453111, - 73177, - 1055 - ], - [ - 454542, - 71507, - 2298 - ], - [ - 454182, - 71520, - 732 - ], - [ - 453837, - 72386, - 2492 - ], - [ - 453905, - 73030, - 2274 - ], - [ - 453079, - 71897, - 2942 - ], - [ - 454055, - 71627, - 2626 - ], - [ - 454192, - 70554, - 2635 - ], - [ - 454129, - 72298, - 2448 - ], - [ - 454165, - 72635, - 2345 - ], - [ - 454601, - 70077, - 958 - ], - [ - 453222, - 73559, - 1924 - ], - [ - 451460, - 76086, - 2367 - ], - [ - 450705, - 76216, - 699 - ], - [ - 453294, - 73893, - 2329 - ], - [ - 452379, - 74735, - 1040 - ], - [ - 452797, - 74593, - 561 - ], - [ - 452407, - 75062, - 832 - ], - [ - 449322, - 78756, - 2746 - ], - [ - 455151, - 70399, - 2400 - ], - [ - 454776, - 70461, - 2697 - ], - [ - 450284, - 77080, - 1483 - ], - [ - 450431, - 77451, - 2866 - ], - [ - 450985, - 77252, - 2735 - ], - [ - 450582, - 76960, - 1110 - ], - [ - 449671, - 78271, - 2549 - ], - [ - 450086, - 78165, - 2367 - ], - [ - 450124, - 78521, - 2248 - ], - [ - 453495, - 73080, - 1379 - ], - [ - 449191, - 77725, - 2793 - ], - [ - 449660, - 77959, - 2973 - ], - [ - 449281, - 79050, - 1634 - ], - [ - 449637, - 78936, - 842 - ], - [ - 449273, - 79369, - 936 - ], - [ - 452049, - 74561, - 2814 - ], - [ - 448025, - 79020, - 2798 - ], - [ - 448933, - 75732, - 2828 - ], - [ - 448853, - 76050, - 1123 - ], - [ - 448394, - 76126, - 1105 - ], - [ - 448152, - 76918, - 2733 - ], - [ - 447795, - 77330, - 2665 - ], - [ - 447330, - 77047, - 971 - ], - [ - 448579, - 77484, - 1225 - ], - [ - 448753, - 77865, - 2970 - ], - [ - 451668, - 71550, - 2947 - ], - [ - 451580, - 71188, - 2373 - ], - [ - 452083, - 71426, - 2918 - ], - [ - 453802, - 72049, - 2617 - ], - [ - 453591, - 70376, - 2695 - ], - [ - 451768, - 75636, - 2088 - ], - [ - 451742, - 76271, - 559 - ], - [ - 448498, - 79608, - 2669 - ], - [ - 448427, - 79915, - 1114 - ], - [ - 448113, - 79666, - 2855 - ], - [ - 454835, - 71093, - 2384 - ], - [ - 454752, - 71392, - 684 - ], - [ - 454339, - 71882, - 2270 - ], - [ - 454596, - 71850, - 2430 - ], - [ - 447947, - 78330, - 2961 - ], - [ - 448200, - 77279, - 2750 - ], - [ - 447603, - 78126, - 2821 - ], - [ - 448565, - 76487, - 2852 - ], - [ - 448501, - 76810, - 1361 - ], - [ - 447512, - 77451, - 2790 - ], - [ - 448023, - 76551, - 1605 - ], - [ - 447996, - 78688, - 2994 - ], - [ - 447537, - 78438, - 1341 - ], - [ - 447850, - 77656, - 2833 - ], - [ - 450854, - 74811, - 1099 - ], - [ - 450552, - 74872, - 1008 - ], - [ - 450666, - 74601, - 3092 - ], - [ - 451723, - 75961, - 863 - ], - [ - 450883, - 75122, - 934 - ], - [ - 450938, - 75457, - 1097 - ], - [ - 450619, - 75203, - 1335 - ], - [ - 451952, - 74827, - 960 - ], - [ - 450057, - 74457, - 3095 - ], - [ - 450249, - 74296, - 1300 - ], - [ - 450960, - 75767, - 843 - ], - [ - 449726, - 76140, - 1025 - ], - [ - 449400, - 75948, - 2998 - ], - [ - 450386, - 72893, - 2290 - ], - [ - 449352, - 74003, - 1762 - ], - [ - 450580, - 72414, - 1252 - ], - [ - 450391, - 75297, - 1467 - ], - [ - 449609, - 75155, - 1177 - ], - [ - 449239, - 74930, - 2591 - ], - [ - 449311, - 75269, - 2996 - ], - [ - 448844, - 75060, - 2809 - ], - [ - 449704, - 74873, - 3036 - ], - [ - 450017, - 74101, - 3189 - ], - [ - 450484, - 74228, - 1224 - ], - [ - 449951, - 73773, - 2861 - ], - [ - 449602, - 74170, - 2896 - ], - [ - 449398, - 76912, - 1201 - ], - [ - 449443, - 76288, - 2976 - ], - [ - 449914, - 76519, - 2974 - ], - [ - 450159, - 76391, - 986 - ], - [ - 450557, - 76637, - 1363 - ], - [ - 450073, - 75739, - 973 - ], - [ - 453546, - 70056, - 2644 - ], - [ - 450679, - 75867, - 967 - ], - [ - 450905, - 74165, - 2986 - ], - [ - 447077, - 79640, - 1162 - ], - [ - 447441, - 79229, - 2829 - ], - [ - 447480, - 79558, - 2772 - ], - [ - 447796, - 79775, - 2517 - ], - [ - 446710, - 79083, - 1475 - ], - [ - 446431, - 79172, - 2139 - ], - [ - 448457, - 80227, - 969 - ], - [ - 448065, - 79983, - 1596 - ], - [ - 447336, - 80980, - 2360 - ], - [ - 447090, - 78970, - 2568 - ], - [ - 447367, - 78880, - 2440 - ], - [ - 447091, - 82068, - 1372 - ], - [ - 446828, - 82183, - 2206 - ], - [ - 451346, - 72910, - 1129 - ], - [ - 450702, - 72831, - 2580 - ], - [ - 450933, - 72708, - 1142 - ], - [ - 446901, - 78266, - 1216 - ], - [ - 446824, - 79415, - 2475 - ], - [ - 447302, - 78233, - 2699 - ], - [ - 446496, - 80151, - 1239 - ], - [ - 446530, - 79854, - 2269 - ], - [ - 446919, - 80072, - 2616 - ], - [ - 447401, - 79870, - 1106 - ], - [ - 446871, - 79754, - 2520 - ], - [ - 447742, - 80089, - 1186 - ], - [ - 447785, - 80430, - 1168 - ], - [ - 448215, - 80669, - 2454 - ], - [ - 447926, - 80808, - 2458 - ], - [ - 448068, - 80317, - 1033 - ], - [ - 447952, - 81117, - 2259 - ], - [ - 447514, - 80872, - 857 - ], - [ - 447927, - 81742, - 774 - ], - [ - 447214, - 80607, - 1320 - ], - [ - 452548, - 71959, - 1871 - ], - [ - 452441, - 71586, - 1053 - ], - [ - 451998, - 71698, - 1236 - ], - [ - 447582, - 80560, - 2388 - ], - [ - 448552, - 80904, - 1077 - ], - [ - 448227, - 81005, - 2015 - ], - [ - 454670, - 70719, - 758 - ], - [ - 454301, - 70425, - 890 - ], - [ - 448313, - 75481, - 1157 - ], - [ - 452504, - 71010, - 2979 - ], - [ - 455092, - 70704, - 1030 - ], - [ - 455496, - 69962, - 2211 - ], - [ - 445412, - 82255, - 1295 - ], - [ - 450219, - 76743, - 1189 - ], - [ - 449397, - 79728, - 2027 - ], - [ - 448985, - 79845, - 2599 - ], - [ - 448924, - 80182, - 1136 - ], - [ - 448533, - 80565, - 1420 - ], - [ - 449717, - 78625, - 2550 - ], - [ - 448866, - 79485, - 1588 - ], - [ - 451660, - 72490, - 1125 - ], - [ - 451581, - 71846, - 1194 - ], - [ - 451337, - 71966, - 2725 - ], - [ - 450935, - 72074, - 2315 - ], - [ - 445994, - 79619, - 1144 - ], - [ - 446856, - 80403, - 1111 - ], - [ - 446047, - 79979, - 1226 - ], - [ - 448268, - 81360, - 1945 - ], - [ - 448322, - 81399, - 732 - ], - [ - 446500, - 83637, - 884 - ], - [ - 446075, - 83461, - 1847 - ], - [ - 446537, - 83326, - 1975 - ], - [ - 447099, - 81759, - 2059 - ], - [ - 447994, - 76223, - 1804 - ], - [ - 448162, - 75600, - 1202 - ], - [ - 447572, - 78762, - 1228 - ], - [ - 451705, - 72808, - 1178 - ], - [ - 450967, - 74512, - 3221 - ], - [ - 450437, - 73237, - 2375 - ], - [ - 450227, - 73337, - 2747 - ], - [ - 445073, - 83049, - 929 - ], - [ - 445186, - 83397, - 1873 - ], - [ - 451309, - 75715, - 921 - ], - [ - 447340, - 78550, - 2662 - ], - [ - 447030, - 78631, - 2351 - ], - [ - 447151, - 77202, - 2470 - ], - [ - 451220, - 73762, - 3243 - ], - [ - 451240, - 74083, - 2928 - ], - [ - 449206, - 74615, - 2713 - ], - [ - 451232, - 75048, - 1057 - ], - [ - 447378, - 81980, - 1113 - ], - [ - 445565, - 83594, - 984 - ], - [ - 446082, - 84124, - 743 - ], - [ - 445559, - 82931, - 2107 - ], - [ - 445586, - 83248, - 1913 - ], - [ - 446066, - 83107, - 2385 - ], - [ - 446492, - 79496, - 2394 - ], - [ - 447420, - 82312, - 1111 - ], - [ - 446097, - 83772, - 1594 - ], - [ - 446657, - 78722, - 1395 - ], - [ - 445906, - 78943, - 1147 - ], - [ - 450630, - 75549, - 871 - ], - [ - 452133, - 72720, - 1262 - ], - [ - 455511, - 70291, - 1813 - ], - [ - 462761, - 54675, - 252 - ], - [ - 462925, - 54267, - 252 - ], - [ - 454994, - 65722, - 1502 - ], - [ - 451781, - 70784, - 1292 - ], - [ - 449352, - 74003, - 1222 - ], - [ - 427492, - 25064, - 10375 - ], - [ - 427104, - 25150, - 1842 - ], - [ - 428710, - 24676, - 1902 - ], - [ - 429886, - 24540, - 1752 - ], - [ - 429729, - 24684, - 8371 - ], - [ - 429748, - 24454, - 9076 - ], - [ - 428957, - 26113, - 1946 - ], - [ - 429466, - 26142, - 1956 - ], - [ - 429117, - 26482, - 1982 - ], - [ - 429218, - 25946, - 1960 - ], - [ - 429521, - 25914, - 2008 - ], - [ - 429424, - 26598, - 1992 - ], - [ - 429268, - 26545, - 1982 - ], - [ - 429770, - 26351, - 1924 - ], - [ - 429582, - 26640, - 2002 - ], - [ - 429888, - 26447, - 7781 - ], - [ - 429783, - 26645, - 1986 - ], - [ - 430138, - 26534, - 1920 - ], - [ - 429906, - 26691, - 2012 - ], - [ - 430153, - 24797, - 10198 - ], - [ - 430334, - 24918, - 1863 - ], - [ - 430079, - 25183, - 1811 - ], - [ - 430477, - 26540, - 1959 - ], - [ - 430398, - 26686, - 2022 - ], - [ - 430216, - 26230, - 8965 - ], - [ - 430345, - 26280, - 9199 - ], - [ - 430325, - 26334, - 7197 - ], - [ - 430896, - 26218, - 1888 - ], - [ - 430665, - 26291, - 1937 - ], - [ - 430815, - 26040, - 1989 - ], - [ - 430335, - 26012, - 13788 - ], - [ - 430474, - 26031, - 1927 - ], - [ - 430878, - 26581, - 2032 - ], - [ - 430720, - 26627, - 2022 - ], - [ - 430684, - 25959, - 13551 - ], - [ - 430495, - 26013, - 2024 - ], - [ - 437843, - 23600, - 2654 - ], - [ - 437560, - 23896, - 1692 - ], - [ - 437360, - 23602, - 1802 - ], - [ - 437690, - 23903, - 1722 - ], - [ - 437826, - 23850, - 1982 - ], - [ - 438079, - 23870, - 1802 - ], - [ - 437950, - 23889, - 1732 - ], - [ - 438832, - 22582, - 2902 - ], - [ - 439112, - 22827, - 2597 - ], - [ - 438747, - 23330, - 2566 - ], - [ - 438206, - 23842, - 1872 - ], - [ - 438298, - 23481, - 2673 - ], - [ - 438325, - 23781, - 2499 - ], - [ - 438331, - 23805, - 1972 - ], - [ - 438573, - 23707, - 1982 - ], - [ - 438454, - 23760, - 2152 - ], - [ - 438688, - 23647, - 2152 - ], - [ - 438799, - 23578, - 2162 - ], - [ - 439006, - 23420, - 2192 - ], - [ - 438905, - 23503, - 2192 - ], - [ - 438794, - 22489, - 3142 - ], - [ - 438887, - 22452, - 3142 - ], - [ - 439190, - 23236, - 1922 - ], - [ - 439101, - 23331, - 2152 - ], - [ - 439082, - 22519, - 2742 - ], - [ - 439416, - 22918, - 1912 - ], - [ - 439348, - 23029, - 1912 - ], - [ - 439437, - 22735, - 2533 - ], - [ - 438322, - 22788, - 2812 - ], - [ - 439673, - 22501, - 1708 - ], - [ - 439626, - 22735, - 1912 - ], - [ - 439859, - 22581, - 1912 - ], - [ - 439740, - 22654, - 1922 - ], - [ - 439954, - 22405, - 1635 - ], - [ - 439982, - 22516, - 1912 - ], - [ - 440223, - 22254, - 1448 - ], - [ - 440109, - 22459, - 1752 - ], - [ - 440240, - 22411, - 1702 - ], - [ - 440510, - 22340, - 1482 - ], - [ - 440507, - 22155, - 1383 - ], - [ - 440647, - 22318, - 1452 - ], - [ - 440786, - 22305, - 1422 - ], - [ - 440895, - 22037, - 1348 - ], - [ - 440926, - 22301, - 1412 - ], - [ - 439518, - 22823, - 1872 - ], - [ - 446790, - 24428, - 1178 - ], - [ - 446863, - 24311, - 8988 - ], - [ - 447150, - 24332, - 1080 - ], - [ - 453776, - 25552, - 666 - ], - [ - 454214, - 25199, - 598 - ], - [ - 454315, - 25460, - 572 - ], - [ - 450930, - 24112, - 3932 - ], - [ - 445177, - 22501, - 1062 - ], - [ - 454691, - 25162, - 492 - ], - [ - 446421, - 24084, - 7373 - ], - [ - 446491, - 24045, - 2362 - ], - [ - 446580, - 24150, - 8369 - ], - [ - 446726, - 24356, - 6976 - ], - [ - 446945, - 24957, - 8958 - ], - [ - 446730, - 24923, - 8894 - ], - [ - 447377, - 25161, - 8555 - ], - [ - 447485, - 25215, - 1133 - ], - [ - 447463, - 25355, - 3627 - ], - [ - 447713, - 24666, - 8424 - ], - [ - 447881, - 24825, - 1029 - ], - [ - 447754, - 25016, - 8353 - ], - [ - 448132, - 24850, - 1057 - ], - [ - 448070, - 24866, - 3624 - ], - [ - 448088, - 24606, - 4347 - ], - [ - 448844, - 25496, - 1107 - ], - [ - 448645, - 25261, - 4604 - ], - [ - 448687, - 25224, - 3911 - ], - [ - 447918, - 25094, - 4486 - ], - [ - 447632, - 25271, - 1080 - ], - [ - 447845, - 24589, - 1063 - ], - [ - 447945, - 24392, - 7120 - ], - [ - 448864, - 25528, - 4610 - ], - [ - 448776, - 25579, - 4871 - ], - [ - 449042, - 26179, - 1179 - ], - [ - 448903, - 26026, - 1140 - ], - [ - 449233, - 25980, - 1164 - ], - [ - 448446, - 24227, - 4396 - ], - [ - 448657, - 24272, - 883 - ], - [ - 448645, - 24416, - 917 - ], - [ - 449533, - 26463, - 1272 - ], - [ - 449300, - 26407, - 1312 - ], - [ - 450751, - 24151, - 419 - ], - [ - 451053, - 24252, - 442 - ], - [ - 454690, - 25163, - 492 - ], - [ - 454691, - 25163, - 472 - ], - [ - 447755, - 24376, - 4468 - ], - [ - 448448, - 24988, - 3843 - ], - [ - 448337, - 24798, - 3605 - ], - [ - 448577, - 24744, - 3601 - ], - [ - 450370, - 24731, - 931 - ], - [ - 449915, - 24143, - 575 - ], - [ - 450221, - 24031, - 446 - ], - [ - 449533, - 25395, - 1036 - ], - [ - 449207, - 25293, - 1018 - ], - [ - 449387, - 25254, - 3602 - ], - [ - 449768, - 26509, - 1242 - ], - [ - 445942, - 23482, - 4111 - ], - [ - 445875, - 23236, - 1013 - ], - [ - 446088, - 23456, - 5299 - ], - [ - 449258, - 25657, - 1077 - ], - [ - 440168, - 22162, - 2642 - ], - [ - 440713, - 21774, - 1542 - ], - [ - 445900, - 22896, - 825 - ], - [ - 446058, - 23109, - 2394 - ], - [ - 444815, - 22757, - 999 - ], - [ - 441065, - 22306, - 1412 - ], - [ - 440374, - 22371, - 1632 - ], - [ - 439841, - 22174, - 2802 - ], - [ - 440100, - 22069, - 2802 - ], - [ - 439804, - 22081, - 2892 - ], - [ - 439711, - 22119, - 2892 - ], - [ - 431443, - 25729, - 1795 - ], - [ - 431514, - 25985, - 14508 - ], - [ - 431321, - 25807, - 8651 - ], - [ - 436940, - 23738, - 1589 - ], - [ - 436960, - 23473, - 2332 - ], - [ - 437711, - 23131, - 2541 - ], - [ - 437766, - 22959, - 2763 - ], - [ - 437815, - 23292, - 2850 - ], - [ - 436109, - 22869, - 2122 - ], - [ - 435845, - 22911, - 2212 - ], - [ - 435845, - 22910, - 1762 - ], - [ - 433744, - 24150, - 1834 - ], - [ - 434272, - 23941, - 2142 - ], - [ - 433786, - 24485, - 1799 - ], - [ - 430018, - 26356, - 14289 - ], - [ - 430282, - 24665, - 1767 - ], - [ - 430358, - 24544, - 1730 - ], - [ - 430555, - 24716, - 1939 - ], - [ - 431757, - 25608, - 1891 - ], - [ - 431763, - 25916, - 1815 - ], - [ - 431645, - 25677, - 3824 - ], - [ - 430070, - 26701, - 2012 - ], - [ - 430675, - 25704, - 2156 - ], - [ - 430431, - 25706, - 1936 - ], - [ - 432695, - 23871, - 1850 - ], - [ - 433007, - 24050, - 2023 - ], - [ - 432941, - 24162, - 1779 - ], - [ - 431165, - 25290, - 7407 - ], - [ - 430824, - 25435, - 2246 - ], - [ - 431105, - 25240, - 2181 - ], - [ - 430179, - 26056, - 3373 - ], - [ - 430260, - 26060, - 2273 - ], - [ - 431342, - 25517, - 2785 - ], - [ - 431334, - 25781, - 2180 - ], - [ - 430820, - 25575, - 2012 - ], - [ - 431102, - 25933, - 1787 - ], - [ - 431264, - 25988, - 7517 - ], - [ - 430304, - 25979, - 5291 - ], - [ - 429328, - 25756, - 9602 - ], - [ - 429506, - 25646, - 10636 - ], - [ - 429433, - 25814, - 9278 - ], - [ - 429687, - 25883, - 8741 - ], - [ - 429590, - 25920, - 8923 - ], - [ - 430540, - 25178, - 1879 - ], - [ - 430412, - 25142, - 2702 - ], - [ - 430360, - 24893, - 14124 - ], - [ - 430560, - 26662, - 2022 - ], - [ - 429964, - 25222, - 13570 - ], - [ - 429867, - 24943, - 1795 - ], - [ - 432618, - 24138, - 2884 - ], - [ - 432718, - 24207, - 2083 - ], - [ - 432561, - 24189, - 13835 - ], - [ - 430576, - 24298, - 1881 - ], - [ - 430875, - 24705, - 1924 - ], - [ - 430007, - 26101, - 9559 - ], - [ - 430127, - 25805, - 7962 - ], - [ - 430187, - 25773, - 3586 - ], - [ - 430291, - 25829, - 1947 - ], - [ - 433511, - 23602, - 2251 - ], - [ - 433337, - 24254, - 1732 - ], - [ - 432598, - 24478, - 3564 - ], - [ - 430122, - 25483, - 10945 - ], - [ - 429913, - 25333, - 8117 - ], - [ - 429255, - 24839, - 1805 - ], - [ - 429565, - 25108, - 1861 - ], - [ - 429233, - 25236, - 1889 - ], - [ - 432114, - 24104, - 4174 - ], - [ - 432084, - 24150, - 2126 - ], - [ - 432029, - 24038, - 3043 - ], - [ - 431224, - 24339, - 10008 - ], - [ - 431113, - 24339, - 1732 - ], - [ - 431027, - 24285, - 7327 - ], - [ - 430185, - 25770, - 6993 - ], - [ - 430033, - 25737, - 9382 - ], - [ - 430855, - 25138, - 1957 - ], - [ - 430723, - 24998, - 1857 - ], - [ - 431012, - 25011, - 11395 - ], - [ - 431182, - 26459, - 2012 - ], - [ - 431032, - 26525, - 2012 - ], - [ - 430232, - 25258, - 11652 - ], - [ - 430313, - 25370, - 1894 - ], - [ - 430692, - 25250, - 2194 - ], - [ - 430632, - 25157, - 11423 - ], - [ - 430544, - 25614, - 6512 - ], - [ - 430420, - 25651, - 6162 - ], - [ - 430784, - 25570, - 7010 - ], - [ - 430714, - 25683, - 13272 - ], - [ - 431239, - 25086, - 2121 - ], - [ - 431793, - 24938, - 1984 - ], - [ - 431746, - 25050, - 2778 - ], - [ - 431477, - 24752, - 1893 - ], - [ - 431162, - 24531, - 1757 - ], - [ - 429542, - 25472, - 1980 - ], - [ - 429841, - 25354, - 1925 - ], - [ - 429679, - 25640, - 1951 - ], - [ - 427716, - 25371, - 1884 - ], - [ - 428033, - 25602, - 10665 - ], - [ - 427458, - 25291, - 9468 - ], - [ - 430362, - 25279, - 7383 - ], - [ - 430288, - 25286, - 11198 - ], - [ - 430267, - 25579, - 5852 - ], - [ - 430443, - 25463, - 2549 - ], - [ - 432919, - 24556, - 1876 - ], - [ - 432867, - 24696, - 3271 - ], - [ - 431132, - 24870, - 2017 - ], - [ - 431353, - 26101, - 1859 - ], - [ - 430892, - 24203, - 1984 - ], - [ - 432314, - 24277, - 3073 - ], - [ - 432402, - 24058, - 1830 - ], - [ - 430102, - 24725, - 1757 - ], - [ - 429911, - 25229, - 9931 - ], - [ - 429899, - 24816, - 1739 - ], - [ - 430513, - 25522, - 2064 - ], - [ - 430544, - 25299, - 9913 - ], - [ - 428366, - 25037, - 2364 - ], - [ - 428195, - 25167, - 2664 - ], - [ - 428135, - 24945, - 2008 - ], - [ - 428216, - 25743, - 1887 - ], - [ - 427809, - 24991, - 8621 - ], - [ - 427894, - 25147, - 1962 - ], - [ - 427507, - 25124, - 1844 - ], - [ - 428555, - 25575, - 1917 - ], - [ - 428426, - 25159, - 11043 - ], - [ - 428636, - 25472, - 2179 - ], - [ - 428882, - 24758, - 8117 - ], - [ - 428925, - 24955, - 1902 - ], - [ - 428624, - 25053, - 9009 - ], - [ - 428119, - 25414, - 1943 - ], - [ - 428173, - 25385, - 1952 - ], - [ - 428284, - 25175, - 8982 - ], - [ - 429887, - 26315, - 14073 - ], - [ - 429797, - 26145, - 2101 - ], - [ - 429928, - 26161, - 13524 - ], - [ - 429748, - 26026, - 2229 - ], - [ - 429896, - 25798, - 8090 - ], - [ - 429373, - 25454, - 1923 - ], - [ - 428666, - 25121, - 1947 - ], - [ - 429470, - 25314, - 10732 - ], - [ - 428910, - 25747, - 1948 - ], - [ - 429070, - 25859, - 8729 - ], - [ - 428883, - 25825, - 1988 - ], - [ - 447527, - 24382, - 988 - ], - [ - 447539, - 24576, - 1040 - ], - [ - 449084, - 25788, - 3825 - ], - [ - 430124, - 24467, - 10392 - ], - [ - 430036, - 25633, - 6022 - ], - [ - 429968, - 25717, - 3190 - ], - [ - 430132, - 25635, - 4531 - ], - [ - 430234, - 26699, - 2012 - ], - [ - 429210, - 25659, - 1969 - ], - [ - 446606, - 23299, - 4798 - ], - [ - 446548, - 23239, - 6513 - ], - [ - 446646, - 23233, - 4181 - ], - [ - 447405, - 24819, - 8323 - ], - [ - 447395, - 24988, - 3332 - ], - [ - 446860, - 24058, - 7281 - ], - [ - 446987, - 23954, - 5202 - ], - [ - 447124, - 24160, - 6387 - ], - [ - 446382, - 23008, - 665 - ], - [ - 446146, - 23066, - 965 - ], - [ - 445933, - 22717, - 405 - ], - [ - 447220, - 23884, - 6479 - ], - [ - 447161, - 23934, - 7321 - ], - [ - 447022, - 23760, - 4766 - ], - [ - 448046, - 24164, - 2946 - ], - [ - 448048, - 24073, - 861 - ], - [ - 448174, - 24048, - 860 - ], - [ - 430344, - 25774, - 6221 - ], - [ - 446579, - 23602, - 5055 - ], - [ - 446596, - 23521, - 963 - ], - [ - 446710, - 23546, - 2885 - ], - [ - 446506, - 23962, - 6046 - ], - [ - 446373, - 23987, - 8247 - ], - [ - 429424, - 25820, - 1962 - ], - [ - 429171, - 25604, - 1935 - ], - [ - 428924, - 25519, - 2584 - ], - [ - 429095, - 25389, - 9977 - ], - [ - 429547, - 25945, - 6646 - ], - [ - 449063, - 25723, - 1124 - ], - [ - 447485, - 24201, - 971 - ], - [ - 432758, - 25315, - 1852 - ], - [ - 431422, - 26178, - 1826 - ], - [ - 429616, - 24698, - 9930 - ], - [ - 429587, - 24706, - 1774 - ], - [ - 429519, - 24571, - 1681 - ], - [ - 429494, - 24760, - 8075 - ], - [ - 447580, - 23987, - 5930 - ], - [ - 447371, - 24101, - 3799 - ], - [ - 446551, - 24379, - 8709 - ], - [ - 447393, - 25129, - 8409 - ], - [ - 447132, - 25239, - 4522 - ], - [ - 446794, - 25053, - 8322 - ], - [ - 446452, - 24717, - 7482 - ], - [ - 447010, - 25027, - 4120 - ], - [ - 447192, - 24856, - 6317 - ], - [ - 430281, - 24342, - 7987 - ], - [ - 429918, - 25700, - 3976 - ], - [ - 429821, - 25752, - 1983 - ], - [ - 430228, - 25704, - 6390 - ], - [ - 429977, - 25543, - 6981 - ], - [ - 430019, - 25781, - 2355 - ], - [ - 429964, - 25820, - 5642 - ], - [ - 430081, - 25613, - 5329 - ], - [ - 430057, - 25555, - 1911 - ], - [ - 447025, - 23928, - 1026 - ], - [ - 447866, - 24220, - 948 - ], - [ - 447952, - 24135, - 3292 - ], - [ - 450033, - 25468, - 980 - ], - [ - 451211, - 25794, - 981 - ], - [ - 451201, - 26587, - 1102 - ], - [ - 450937, - 25767, - 1011 - ], - [ - 450722, - 26599, - 1182 - ], - [ - 447570, - 24185, - 7285 - ], - [ - 431833, - 24047, - 1936 - ], - [ - 431617, - 24323, - 2295 - ], - [ - 431516, - 24196, - 7704 - ], - [ - 431244, - 24816, - 2693 - ], - [ - 431453, - 25094, - 2043 - ], - [ - 431491, - 24220, - 2022 - ], - [ - 431627, - 24605, - 1913 - ], - [ - 428903, - 25425, - 1934 - ], - [ - 429264, - 24737, - 1711 - ], - [ - 429182, - 24589, - 8002 - ], - [ - 428991, - 25986, - 7376 - ], - [ - 447324, - 24752, - 8130 - ], - [ - 447229, - 24094, - 1037 - ], - [ - 447650, - 23646, - 4965 - ], - [ - 447913, - 23468, - 658 - ], - [ - 447801, - 23642, - 6459 - ], - [ - 447545, - 23955, - 949 - ], - [ - 447273, - 24006, - 5513 - ], - [ - 446275, - 24179, - 7597 - ], - [ - 446259, - 24052, - 6262 - ], - [ - 446883, - 23885, - 3444 - ], - [ - 446924, - 23793, - 2813 - ], - [ - 446711, - 24020, - 6252 - ], - [ - 448155, - 24424, - 955 - ], - [ - 447970, - 23900, - 3974 - ], - [ - 448100, - 23855, - 5892 - ], - [ - 447931, - 23741, - 5154 - ], - [ - 451678, - 25485, - 991 - ], - [ - 451227, - 25329, - 918 - ], - [ - 451702, - 25091, - 829 - ], - [ - 451677, - 26536, - 1052 - ], - [ - 432018, - 24645, - 2842 - ], - [ - 432335, - 24510, - 3097 - ], - [ - 436057, - 23432, - 1752 - ], - [ - 435325, - 23045, - 2200 - ], - [ - 435729, - 23222, - 1923 - ], - [ - 431936, - 24074, - 1719 - ], - [ - 432161, - 23943, - 1693 - ], - [ - 432382, - 24508, - 1855 - ], - [ - 447716, - 23933, - 3665 - ], - [ - 447768, - 23851, - 5598 - ], - [ - 446528, - 23533, - 5956 - ], - [ - 446770, - 23481, - 5624 - ], - [ - 446824, - 23665, - 4592 - ], - [ - 447251, - 23744, - 897 - ], - [ - 447300, - 23695, - 5254 - ], - [ - 447444, - 23764, - 2761 - ], - [ - 446003, - 23765, - 2901 - ], - [ - 446059, - 23798, - 5546 - ], - [ - 445854, - 23969, - 5292 - ], - [ - 446295, - 23845, - 5786 - ], - [ - 446375, - 23653, - 4571 - ], - [ - 446604, - 23758, - 8216 - ], - [ - 429743, - 26671, - 2002 - ], - [ - 447670, - 25437, - 8445 - ], - [ - 447553, - 25637, - 4962 - ], - [ - 447937, - 25481, - 5004 - ], - [ - 447143, - 23496, - 2876 - ], - [ - 446492, - 23360, - 2799 - ], - [ - 446652, - 23692, - 7134 - ], - [ - 446745, - 23806, - 5838 - ], - [ - 446526, - 23161, - 2360 - ], - [ - 446401, - 23307, - 4376 - ], - [ - 447277, - 23431, - 659 - ], - [ - 447324, - 23504, - 5049 - ], - [ - 447599, - 23318, - 464 - ], - [ - 447567, - 23608, - 806 - ], - [ - 446306, - 23292, - 1748 - ], - [ - 446347, - 23230, - 1084 - ], - [ - 446188, - 23604, - 3500 - ], - [ - 446182, - 23510, - 7501 - ], - [ - 446239, - 23656, - 2625 - ], - [ - 446443, - 23627, - 7326 - ], - [ - 446312, - 23418, - 5784 - ], - [ - 446168, - 23752, - 6866 - ], - [ - 446043, - 23611, - 2328 - ], - [ - 446117, - 23232, - 4953 - ], - [ - 445805, - 23680, - 7992 - ], - [ - 445857, - 23697, - 1019 - ], - [ - 446124, - 23421, - 1091 - ], - [ - 445602, - 23562, - 4192 - ], - [ - 445635, - 22722, - 670 - ], - [ - 446622, - 23194, - 738 - ], - [ - 446839, - 23387, - 817 - ], - [ - 446948, - 23455, - 2621 - ], - [ - 448421, - 23796, - 752 - ], - [ - 448301, - 23652, - 5187 - ], - [ - 448447, - 23476, - 530 - ], - [ - 448199, - 23640, - 727 - ], - [ - 448208, - 23774, - 3650 - ], - [ - 448239, - 23904, - 3745 - ], - [ - 448530, - 24112, - 3039 - ], - [ - 448554, - 24138, - 4363 - ], - [ - 447611, - 23767, - 5543 - ], - [ - 447744, - 23696, - 3343 - ], - [ - 447887, - 23808, - 5863 - ], - [ - 428403, - 24893, - 1881 - ], - [ - 429919, - 26041, - 8543 - ], - [ - 445860, - 23660, - 5356 - ], - [ - 445661, - 23557, - 4385 - ], - [ - 445584, - 23476, - 1015 - ], - [ - 430319, - 25666, - 4984 - ], - [ - 445599, - 22922, - 1121 - ], - [ - 445383, - 23135, - 1122 - ], - [ - 445161, - 22587, - 1062 - ], - [ - 447050, - 23534, - 868 - ], - [ - 448605, - 26045, - 4765 - ], - [ - 448841, - 26268, - 3662 - ], - [ - 448395, - 26092, - 4332 - ], - [ - 446939, - 23327, - 5305 - ], - [ - 447044, - 23374, - 4634 - ], - [ - 446197, - 23749, - 7491 - ], - [ - 446189, - 24348, - 7244 - ], - [ - 446138, - 24355, - 6092 - ], - [ - 446133, - 24141, - 8312 - ], - [ - 448672, - 25681, - 3222 - ], - [ - 448857, - 25684, - 1112 - ], - [ - 448342, - 25488, - 5314 - ], - [ - 447888, - 25338, - 4835 - ], - [ - 448840, - 25857, - 4812 - ], - [ - 448690, - 23696, - 635 - ], - [ - 448667, - 24035, - 793 - ], - [ - 447161, - 25360, - 7862 - ], - [ - 446831, - 25072, - 7118 - ], - [ - 449107, - 25397, - 3696 - ], - [ - 448625, - 25646, - 4676 - ], - [ - 448183, - 24450, - 4315 - ], - [ - 448315, - 24239, - 4315 - ], - [ - 451174, - 24967, - 832 - ], - [ - 451348, - 24591, - 658 - ], - [ - 448179, - 23611, - 4962 - ], - [ - 453061, - 26157, - 812 - ], - [ - 453378, - 24841, - 217 - ], - [ - 453497, - 25959, - 722 - ], - [ - 453916, - 25726, - 652 - ], - [ - 450510, - 25770, - 1009 - ], - [ - 450140, - 24015, - 5121 - ], - [ - 449369, - 23680, - 375 - ], - [ - 447959, - 23340, - 4842 - ], - [ - 447303, - 23151, - 402 - ], - [ - 449622, - 23844, - 542 - ], - [ - 446739, - 23272, - 2568 - ], - [ - 447890, - 23809, - 817 - ], - [ - 448957, - 23597, - 438 - ], - [ - 449144, - 24085, - 838 - ], - [ - 449295, - 24731, - 949 - ], - [ - 447078, - 23284, - 565 - ], - [ - 449400, - 23796, - 562 - ], - [ - 449272, - 25170, - 1036 - ], - [ - 449137, - 25099, - 3375 - ], - [ - 449155, - 24921, - 973 - ], - [ - 448375, - 24609, - 1003 - ], - [ - 448390, - 24716, - 1028 - ], - [ - 449109, - 25547, - 4882 - ], - [ - 449552, - 24999, - 968 - ], - [ - 449041, - 25711, - 3639 - ], - [ - 450232, - 23962, - 384 - ], - [ - 451300, - 24302, - 435 - ], - [ - 451736, - 25620, - 886 - ], - [ - 451957, - 25208, - 706 - ], - [ - 452610, - 26320, - 922 - ], - [ - 446872, - 25062, - 6415 - ], - [ - 446855, - 25075, - 7483 - ], - [ - 448275, - 25738, - 4915 - ], - [ - 448174, - 25799, - 3594 - ], - [ - 431702, - 25246, - 1789 - ], - [ - 448883, - 25089, - 4569 - ], - [ - 448865, - 25035, - 1051 - ], - [ - 449081, - 25313, - 1075 - ], - [ - 448623, - 24825, - 1020 - ], - [ - 448885, - 24663, - 952 - ], - [ - 448430, - 25197, - 4170 - ], - [ - 432432, - 23944, - 2203 - ], - [ - 433340, - 23546, - 1946 - ], - [ - 448281, - 25980, - 6022 - ], - [ - 448836, - 26215, - 4557 - ], - [ - 445787, - 23377, - 2396 - ], - [ - 448906, - 24263, - 859 - ], - [ - 448596, - 24497, - 4307 - ], - [ - 448683, - 24383, - 4542 - ], - [ - 448706, - 24641, - 909 - ], - [ - 448409, - 25093, - 4431 - ], - [ - 449416, - 24989, - 3281 - ], - [ - 448725, - 24337, - 3860 - ], - [ - 450658, - 25681, - 998 - ], - [ - 450554, - 25568, - 1990 - ], - [ - 450678, - 25240, - 952 - ], - [ - 451113, - 25753, - 3527 - ], - [ - 450358, - 25704, - 1185 - ], - [ - 445907, - 23715, - 4542 - ], - [ - 450971, - 24986, - 1093 - ], - [ - 446817, - 23780, - 939 - ], - [ - 446264, - 23315, - 2439 - ], - [ - 448397, - 24178, - 900 - ], - [ - 448968, - 25727, - 2732 - ], - [ - 446399, - 24640, - 8478 - ], - [ - 448167, - 24881, - 4312 - ], - [ - 446039, - 24155, - 5668 - ], - [ - 445946, - 24088, - 7252 - ], - [ - 447996, - 24081, - 3845 - ], - [ - 447965, - 25882, - 4602 - ], - [ - 448130, - 25822, - 4335 - ], - [ - 451746, - 25085, - 1981 - ], - [ - 452148, - 26447, - 982 - ], - [ - 433089, - 24729, - 1917 - ], - [ - 432532, - 24626, - 2352 - ], - [ - 432336, - 24765, - 2631 - ], - [ - 433033, - 24369, - 1799 - ], - [ - 432783, - 24834, - 1852 - ], - [ - 451273, - 24582, - 706 - ], - [ - 450698, - 24839, - 868 - ], - [ - 448394, - 25560, - 4374 - ], - [ - 433387, - 24599, - 1799 - ], - [ - 432100, - 24903, - 2501 - ], - [ - 432315, - 25025, - 1863 - ], - [ - 439647, - 22179, - 1919 - ], - [ - 446963, - 25016, - 4899 - ], - [ - 450243, - 26573, - 1202 - ], - [ - 436086, - 23747, - 1595 - ], - [ - 435746, - 23526, - 1611 - ], - [ - 437732, - 22636, - 2869 - ], - [ - 447058, - 24914, - 8528 - ], - [ - 436554, - 22950, - 2597 - ], - [ - 436535, - 23086, - 2541 - ], - [ - 437374, - 23361, - 2445 - ], - [ - 436566, - 22748, - 2284 - ], - [ - 437431, - 22582, - 2265 - ], - [ - 436898, - 22830, - 2640 - ], - [ - 438142, - 22342, - 3462 - ], - [ - 438142, - 22343, - 2622 - ], - [ - 436097, - 23431, - 1956 - ], - [ - 436302, - 23596, - 2061 - ], - [ - 437386, - 23923, - 1578 - ], - [ - 434872, - 24403, - 1722 - ], - [ - 438187, - 22472, - 2976 - ], - [ - 432669, - 23840, - 2058 - ], - [ - 433706, - 23839, - 2292 - ], - [ - 434100, - 23403, - 2074 - ], - [ - 433503, - 24224, - 1961 - ], - [ - 437820, - 23900, - 1722 - ], - [ - 435676, - 23337, - 2073 - ], - [ - 435786, - 23879, - 1517 - ], - [ - 435357, - 23636, - 1549 - ], - [ - 435140, - 23960, - 1822 - ], - [ - 434961, - 23778, - 1733 - ], - [ - 433107, - 24246, - 1943 - ], - [ - 434929, - 23470, - 1843 - ], - [ - 434541, - 23595, - 1793 - ], - [ - 434636, - 23296, - 2083 - ], - [ - 434995, - 24120, - 1585 - ], - [ - 434616, - 24259, - 1635 - ], - [ - 433729, - 23453, - 2177 - ], - [ - 450835, - 25039, - 913 - ], - [ - 436575, - 23529, - 1836 - ], - [ - 437410, - 22980, - 2356 - ], - [ - 436913, - 23122, - 2323 - ], - [ - 437054, - 22975, - 2724 - ], - [ - 436310, - 23630, - 1839 - ], - [ - 437350, - 23048, - 2674 - ], - [ - 436290, - 23344, - 2074 - ], - [ - 439385, - 22396, - 2423 - ], - [ - 435150, - 23343, - 2046 - ], - [ - 434897, - 23150, - 1992 - ], - [ - 434293, - 23521, - 2069 - ], - [ - 434536, - 23300, - 2272 - ], - [ - 439272, - 23135, - 1872 - ], - [ - 433699, - 24432, - 2017 - ], - [ - 435337, - 23350, - 1796 - ], - [ - 435410, - 23992, - 1655 - ], - [ - 440265, - 22590, - 1416 - ], - [ - 450594, - 26838, - 1327 - ], - [ - 450297, - 27002, - 1385 - ], - [ - 461878, - 37046, - 1712 - ], - [ - 465239, - 35098, - 1102 - ], - [ - 465382, - 35631, - 1102 - ], - [ - 465511, - 36168, - 1102 - ], - [ - 465627, - 36707, - 1102 - ], - [ - 465894, - 38340, - 1102 - ], - [ - 462103, - 39179, - 1712 - ], - [ - 465819, - 37793, - 1102 - ], - [ - 466039, - 39988, - 1102 - ], - [ - 466060, - 40539, - 1102 - ], - [ - 461702, - 40794, - 1712 - ], - [ - 466067, - 41091, - 1102 - ], - [ - 466065, - 41413, - 1102 - ], - [ - 465945, - 42550, - 1102 - ], - [ - 465796, - 43683, - 1102 - ], - [ - 460194, - 42014, - 1712 - ], - [ - 465618, - 44813, - 1102 - ], - [ - 465412, - 45937, - 1102 - ], - [ - 465178, - 47056, - 1102 - ], - [ - 458792, - 42521, - 1712 - ], - [ - 464915, - 48169, - 1102 - ], - [ - 456779, - 49051, - 1952 - ], - [ - 464625, - 49275, - 1102 - ], - [ - 464307, - 50373, - 1102 - ], - [ - 463961, - 51463, - 1102 - ], - [ - 457150, - 51032, - 1522 - ], - [ - 463588, - 52543, - 1102 - ], - [ - 463188, - 53614, - 1102 - ], - [ - 457356, - 53049, - 1522 - ], - [ - 462925, - 54267, - 1952 - ], - [ - 450583, - 33661, - 1994 - ], - [ - 449488, - 35894, - 2112 - ], - [ - 448834, - 35155, - 2122 - ], - [ - 463834, - 31497, - 1102 - ], - [ - 464040, - 31890, - 1102 - ], - [ - 460695, - 34639, - 1712 - ], - [ - 456115, - 47149, - 1952 - ], - [ - 448856, - 34176, - 2186 - ], - [ - 448868, - 34272, - 2068 - ], - [ - 447940, - 34309, - 2122 - ], - [ - 450776, - 27561, - 1478 - ], - [ - 450814, - 27889, - 1414 - ], - [ - 450425, - 27810, - 3564 - ], - [ - 450535, - 27439, - 1923 - ], - [ - 450348, - 27603, - 1511 - ], - [ - 455300, - 25392, - 309 - ], - [ - 454691, - 25162, - 472 - ], - [ - 456956, - 25796, - 372 - ], - [ - 461458, - 35643, - 1712 - ], - [ - 464579, - 33107, - 1102 - ], - [ - 466004, - 39438, - 1102 - ], - [ - 465956, - 38888, - 1102 - ], - [ - 465730, - 37249, - 1102 - ], - [ - 465083, - 34569, - 1102 - ], - [ - 464914, - 34044, - 1102 - ], - [ - 464732, - 33523, - 1102 - ], - [ - 464413, - 32695, - 1102 - ], - [ - 447887, - 26089, - 4358 - ], - [ - 448002, - 26108, - 4789 - ], - [ - 447670, - 26221, - 4960 - ], - [ - 464233, - 32290, - 1102 - ], - [ - 463615, - 31112, - 1102 - ], - [ - 463384, - 30733, - 1102 - ], - [ - 462886, - 29999, - 1102 - ], - [ - 463141, - 30362, - 1102 - ], - [ - 459524, - 34165, - 1712 - ], - [ - 462619, - 29645, - 1102 - ], - [ - 462340, - 29300, - 1102 - ], - [ - 462050, - 28964, - 1102 - ], - [ - 461750, - 28638, - 1102 - ], - [ - 453097, - 35621, - 1848 - ], - [ - 455909, - 35805, - 1672 - ], - [ - 455741, - 36444, - 1722 - ], - [ - 461164, - 28073, - 1102 - ], - [ - 460881, - 27833, - 1102 - ], - [ - 460589, - 27603, - 1102 - ], - [ - 455633, - 33111, - 1495 - ], - [ - 460290, - 27383, - 1102 - ], - [ - 455667, - 27768, - 868 - ], - [ - 454365, - 29176, - 1259 - ], - [ - 459984, - 27174, - 1102 - ], - [ - 459670, - 26976, - 1102 - ], - [ - 459350, - 26788, - 1102 - ], - [ - 459024, - 26611, - 1102 - ], - [ - 457312, - 25902, - 1102 - ], - [ - 458691, - 26446, - 1102 - ], - [ - 458354, - 26292, - 1102 - ], - [ - 458011, - 26150, - 1102 - ], - [ - 450565, - 27122, - 1635 - ], - [ - 450831, - 27159, - 2031 - ], - [ - 446550, - 25978, - 8167 - ], - [ - 446983, - 25931, - 9112 - ], - [ - 446810, - 26369, - 4468 - ], - [ - 455018, - 25460, - 570 - ], - [ - 454691, - 25163, - 492 - ], - [ - 447319, - 28268, - 1607 - ], - [ - 447647, - 27811, - 1724 - ], - [ - 448327, - 28009, - 1495 - ], - [ - 433693, - 27875, - 2032 - ], - [ - 433474, - 25304, - 1727 - ], - [ - 434687, - 28062, - 2022 - ], - [ - 455657, - 25623, - 531 - ], - [ - 451842, - 27067, - 1114 - ], - [ - 451747, - 27394, - 1167 - ], - [ - 451516, - 27406, - 1204 - ], - [ - 455532, - 25871, - 626 - ], - [ - 447039, - 25403, - 8522 - ], - [ - 447001, - 25465, - 9136 - ], - [ - 446885, - 25396, - 7303 - ], - [ - 444765, - 25502, - 4458 - ], - [ - 444591, - 25364, - 3384 - ], - [ - 444648, - 25253, - 1422 - ], - [ - 452292, - 27180, - 1059 - ], - [ - 445044, - 28664, - 1916 - ], - [ - 444654, - 26805, - 1634 - ], - [ - 445402, - 26952, - 1573 - ], - [ - 451623, - 26752, - 1094 - ], - [ - 451868, - 27023, - 3541 - ], - [ - 452309, - 26765, - 1030 - ], - [ - 438799, - 23960, - 2154 - ], - [ - 437714, - 23912, - 1976 - ], - [ - 437836, - 24138, - 1588 - ], - [ - 439988, - 22725, - 1537 - ], - [ - 440029, - 23066, - 1482 - ], - [ - 451811, - 26658, - 3405 - ], - [ - 448727, - 27148, - 1337 - ], - [ - 448682, - 26823, - 1288 - ], - [ - 448937, - 26918, - 4682 - ], - [ - 449053, - 27088, - 1312 - ], - [ - 449445, - 26920, - 1516 - ], - [ - 449858, - 26950, - 1263 - ], - [ - 445982, - 26935, - 4531 - ], - [ - 445907, - 27101, - 3187 - ], - [ - 445841, - 26823, - 7955 - ], - [ - 442355, - 30434, - 2092 - ], - [ - 441432, - 30019, - 2092 - ], - [ - 441754, - 28292, - 1947 - ], - [ - 447636, - 25895, - 5087 - ], - [ - 445590, - 25167, - 8891 - ], - [ - 445355, - 25243, - 8386 - ], - [ - 445277, - 25017, - 8781 - ], - [ - 445540, - 25269, - 6577 - ], - [ - 445564, - 25562, - 6379 - ], - [ - 445328, - 25536, - 8669 - ], - [ - 445931, - 24682, - 7926 - ], - [ - 445889, - 24714, - 7790 - ], - [ - 445781, - 24582, - 6090 - ], - [ - 444772, - 24879, - 4749 - ], - [ - 444872, - 24986, - 8004 - ], - [ - 444913, - 25717, - 6014 - ], - [ - 444756, - 26118, - 4209 - ], - [ - 444627, - 25615, - 1545 - ], - [ - 444688, - 24408, - 1295 - ], - [ - 444846, - 24634, - 3683 - ], - [ - 444525, - 24691, - 3679 - ], - [ - 445282, - 25309, - 4858 - ], - [ - 444127, - 25163, - 1449 - ], - [ - 439759, - 23183, - 1665 - ], - [ - 439205, - 24083, - 1584 - ], - [ - 441915, - 28062, - 2185 - ], - [ - 442105, - 28038, - 4188 - ], - [ - 436721, - 26007, - 1900 - ], - [ - 435039, - 24445, - 1611 - ], - [ - 439164, - 23454, - 2165 - ], - [ - 431901, - 26675, - 1942 - ], - [ - 431431, - 26791, - 8364 - ], - [ - 431398, - 26546, - 1966 - ], - [ - 438781, - 23659, - 2435 - ], - [ - 432861, - 27326, - 2010 - ], - [ - 432720, - 27698, - 2042 - ], - [ - 432643, - 27432, - 2028 - ], - [ - 438336, - 24342, - 1628 - ], - [ - 438123, - 28888, - 2072 - ], - [ - 441665, - 27627, - 1913 - ], - [ - 432372, - 27234, - 2020 - ], - [ - 431947, - 27003, - 1991 - ], - [ - 432592, - 27074, - 1977 - ], - [ - 428313, - 26439, - 1967 - ], - [ - 427756, - 26940, - 1962 - ], - [ - 427455, - 26830, - 1952 - ], - [ - 438343, - 24075, - 2209 - ], - [ - 425403, - 25652, - 1932 - ], - [ - 425836, - 26335, - 1912 - ], - [ - 425040, - 26196, - 1902 - ], - [ - 437985, - 24283, - 1740 - ], - [ - 426660, - 25586, - 1831 - ], - [ - 426725, - 25372, - 10061 - ], - [ - 426951, - 25535, - 1804 - ], - [ - 430777, - 26911, - 2018 - ], - [ - 431190, - 26716, - 14481 - ], - [ - 431056, - 26744, - 1973 - ], - [ - 428589, - 26888, - 2005 - ], - [ - 429713, - 27380, - 1992 - ], - [ - 428723, - 27191, - 1982 - ], - [ - 431037, - 27142, - 2020 - ], - [ - 430994, - 26917, - 1973 - ], - [ - 427695, - 25799, - 1949 - ], - [ - 427489, - 25614, - 9315 - ], - [ - 426222, - 25934, - 1854 - ], - [ - 426594, - 26083, - 1877 - ], - [ - 430621, - 27196, - 2036 - ], - [ - 426816, - 26597, - 1932 - ], - [ - 423882, - 26035, - 1882 - ], - [ - 425008, - 25732, - 1902 - ], - [ - 456002, - 37710, - 1782 - ], - [ - 451723, - 39243, - 2082 - ], - [ - 461439, - 28322, - 1102 - ], - [ - 453053, - 35299, - 1822 - ], - [ - 457518, - 34419, - 1632 - ], - [ - 455197, - 45364, - 1982 - ], - [ - 456562, - 39201, - 1802 - ], - [ - 454244, - 43583, - 2002 - ], - [ - 458075, - 42049, - 1712 - ], - [ - 457516, - 41161, - 1802 - ], - [ - 452861, - 35651, - 1863 - ], - [ - 450660, - 37531, - 2102 - ], - [ - 450148, - 36748, - 2112 - ], - [ - 431157, - 27053, - 10581 - ], - [ - 431377, - 26988, - 2012 - ], - [ - 431499, - 26323, - 9888 - ], - [ - 431793, - 26314, - 14426 - ], - [ - 431739, - 26345, - 1920 - ], - [ - 431998, - 26478, - 1968 - ], - [ - 432170, - 25807, - 1821 - ], - [ - 432018, - 26093, - 1889 - ], - [ - 428608, - 26467, - 1987 - ], - [ - 428526, - 26486, - 12030 - ], - [ - 432415, - 27559, - 2030 - ], - [ - 432345, - 27423, - 11883 - ], - [ - 432537, - 27392, - 2067 - ], - [ - 431992, - 27195, - 10733 - ], - [ - 431679, - 27163, - 11146 - ], - [ - 432613, - 27225, - 11039 - ], - [ - 432468, - 27271, - 8878 - ], - [ - 426171, - 25565, - 1820 - ], - [ - 426330, - 25733, - 1863 - ], - [ - 427002, - 25892, - 1852 - ], - [ - 427120, - 25838, - 9796 - ], - [ - 427193, - 26114, - 1924 - ], - [ - 430762, - 27230, - 9416 - ], - [ - 430653, - 27188, - 8020 - ], - [ - 431356, - 27426, - 2043 - ], - [ - 431228, - 27468, - 9196 - ], - [ - 431071, - 27251, - 8077 - ], - [ - 427430, - 25716, - 1848 - ], - [ - 427214, - 25684, - 1871 - ], - [ - 431601, - 27197, - 7730 - ], - [ - 431696, - 27198, - 2043 - ], - [ - 431544, - 27472, - 2012 - ], - [ - 431399, - 26428, - 1900 - ], - [ - 426912, - 25874, - 1889 - ], - [ - 426637, - 26033, - 1910 - ], - [ - 427061, - 25494, - 9608 - ], - [ - 431087, - 27503, - 2022 - ], - [ - 431656, - 27539, - 11269 - ], - [ - 431495, - 27104, - 2002 - ], - [ - 431995, - 27348, - 2029 - ], - [ - 431954, - 27381, - 2064 - ], - [ - 432289, - 27523, - 9841 - ], - [ - 431038, - 27244, - 2001 - ], - [ - 426528, - 25943, - 10711 - ], - [ - 426453, - 25556, - 10361 - ], - [ - 426545, - 25728, - 1852 - ], - [ - 426936, - 25440, - 1796 - ], - [ - 426749, - 25942, - 9316 - ], - [ - 426753, - 25677, - 9887 - ], - [ - 447233, - 27588, - 1647 - ], - [ - 447698, - 27463, - 1655 - ], - [ - 445071, - 26580, - 3041 - ], - [ - 445086, - 26082, - 4160 - ], - [ - 446543, - 25407, - 9104 - ], - [ - 446568, - 25719, - 8890 - ], - [ - 446489, - 25609, - 1347 - ], - [ - 447888, - 26827, - 3874 - ], - [ - 448014, - 26673, - 3908 - ], - [ - 448040, - 26983, - 3714 - ], - [ - 445601, - 24560, - 8715 - ], - [ - 445814, - 24509, - 1210 - ], - [ - 446552, - 25843, - 7743 - ], - [ - 446460, - 25117, - 9752 - ], - [ - 446283, - 25510, - 8765 - ], - [ - 447100, - 25468, - 3663 - ], - [ - 442241, - 28031, - 1944 - ], - [ - 442161, - 27883, - 1917 - ], - [ - 445380, - 23828, - 4195 - ], - [ - 445486, - 24087, - 2259 - ], - [ - 445271, - 24055, - 1135 - ], - [ - 444921, - 25077, - 2149 - ], - [ - 444963, - 24998, - 1500 - ], - [ - 444554, - 26100, - 1510 - ], - [ - 445010, - 24234, - 1202 - ], - [ - 445156, - 24448, - 2793 - ], - [ - 445131, - 24520, - 7628 - ], - [ - 445672, - 26272, - 6599 - ], - [ - 448314, - 26343, - 4361 - ], - [ - 448394, - 26725, - 4792 - ], - [ - 445218, - 24659, - 1611 - ], - [ - 444578, - 25585, - 2373 - ], - [ - 444988, - 24638, - 1310 - ], - [ - 444986, - 25413, - 4989 - ], - [ - 445192, - 25280, - 6370 - ], - [ - 444349, - 24959, - 1436 - ], - [ - 445290, - 23662, - 1071 - ], - [ - 445311, - 23198, - 1029 - ], - [ - 432241, - 27606, - 2062 - ], - [ - 446311, - 27776, - 1527 - ], - [ - 445856, - 27549, - 1640 - ], - [ - 445946, - 27429, - 3116 - ], - [ - 447077, - 25963, - 8971 - ], - [ - 447160, - 25826, - 3826 - ], - [ - 445319, - 24389, - 4856 - ], - [ - 445281, - 24525, - 5389 - ], - [ - 445249, - 24446, - 1237 - ], - [ - 445928, - 24415, - 8364 - ], - [ - 446005, - 24343, - 6107 - ], - [ - 446108, - 24526, - 8467 - ], - [ - 445510, - 24816, - 6094 - ], - [ - 446109, - 25287, - 7978 - ], - [ - 445575, - 24375, - 5295 - ], - [ - 446322, - 24593, - 8704 - ], - [ - 446291, - 24894, - 9020 - ], - [ - 445468, - 24889, - 6755 - ], - [ - 445231, - 25208, - 5770 - ], - [ - 445811, - 24280, - 5785 - ], - [ - 448799, - 26641, - 4975 - ], - [ - 449005, - 26733, - 1284 - ], - [ - 446272, - 26841, - 8074 - ], - [ - 446014, - 26694, - 5425 - ], - [ - 447258, - 26802, - 3437 - ], - [ - 447616, - 26820, - 3456 - ], - [ - 447532, - 27102, - 1391 - ], - [ - 447616, - 26405, - 3857 - ], - [ - 445259, - 25786, - 7117 - ], - [ - 445130, - 25775, - 7077 - ], - [ - 444836, - 25220, - 3460 - ], - [ - 447361, - 25595, - 8549 - ], - [ - 446785, - 25110, - 7863 - ], - [ - 448637, - 28261, - 1521 - ], - [ - 450623, - 29674, - 1603 - ], - [ - 446009, - 30429, - 2061 - ], - [ - 445638, - 27059, - 4691 - ], - [ - 445834, - 23971, - 5585 - ], - [ - 445016, - 25198, - 4627 - ], - [ - 444932, - 25265, - 5991 - ], - [ - 446608, - 26322, - 8363 - ], - [ - 446315, - 26681, - 3571 - ], - [ - 447314, - 26630, - 4538 - ], - [ - 446811, - 26639, - 3987 - ], - [ - 447190, - 26400, - 5326 - ], - [ - 446404, - 27368, - 3585 - ], - [ - 447227, - 26214, - 4831 - ], - [ - 447317, - 26206, - 3310 - ], - [ - 446805, - 27432, - 2457 - ], - [ - 446862, - 27301, - 1566 - ], - [ - 446935, - 27375, - 4400 - ], - [ - 446587, - 26556, - 7632 - ], - [ - 447745, - 27499, - 5835 - ], - [ - 447279, - 27364, - 2694 - ], - [ - 446114, - 26303, - 7537 - ], - [ - 446044, - 26488, - 8257 - ], - [ - 446001, - 26417, - 5742 - ], - [ - 445047, - 24179, - 4799 - ], - [ - 445088, - 24133, - 4116 - ], - [ - 445541, - 24274, - 1213 - ], - [ - 445350, - 24151, - 4473 - ], - [ - 445525, - 24320, - 6171 - ], - [ - 445736, - 24049, - 2815 - ], - [ - 446098, - 25510, - 8756 - ], - [ - 446270, - 26033, - 8649 - ], - [ - 445030, - 23834, - 1129 - ], - [ - 445156, - 23577, - 4273 - ], - [ - 448566, - 26795, - 3179 - ], - [ - 448427, - 27041, - 4683 - ], - [ - 447667, - 27054, - 3389 - ], - [ - 447961, - 27432, - 1773 - ], - [ - 448954, - 26384, - 1196 - ], - [ - 451147, - 27035, - 1230 - ], - [ - 450873, - 27093, - 1373 - ], - [ - 449456, - 27039, - 1341 - ], - [ - 448801, - 26430, - 3670 - ], - [ - 449910, - 27302, - 1341 - ], - [ - 450252, - 27793, - 1608 - ], - [ - 450009, - 28004, - 1454 - ], - [ - 445566, - 23890, - 1042 - ], - [ - 446775, - 27677, - 1574 - ], - [ - 446902, - 27038, - 4550 - ], - [ - 446033, - 25658, - 7574 - ], - [ - 447350, - 26399, - 5466 - ], - [ - 447078, - 26238, - 8475 - ], - [ - 444741, - 26123, - 4102 - ], - [ - 444730, - 23537, - 1160 - ], - [ - 445419, - 23761, - 3577 - ], - [ - 448442, - 26864, - 1316 - ], - [ - 448114, - 27070, - 3788 - ], - [ - 448235, - 27295, - 1512 - ], - [ - 448177, - 26934, - 1351 - ], - [ - 447878, - 27012, - 1373 - ], - [ - 448593, - 26619, - 4590 - ], - [ - 451338, - 27200, - 1417 - ], - [ - 448490, - 27210, - 1359 - ], - [ - 457663, - 26020, - 1102 - ], - [ - 456382, - 35155, - 1632 - ], - [ - 451579, - 27604, - 1268 - ], - [ - 451711, - 27449, - 3881 - ], - [ - 450419, - 27012, - 4174 - ], - [ - 451823, - 27452, - 1193 - ], - [ - 451570, - 27783, - 1282 - ], - [ - 445396, - 32229, - 2102 - ], - [ - 446606, - 33115, - 2112 - ], - [ - 445606, - 24858, - 8257 - ], - [ - 445862, - 24032, - 8142 - ], - [ - 446376, - 26486, - 4798 - ], - [ - 452072, - 26951, - 1087 - ], - [ - 451862, - 26643, - 1063 - ], - [ - 445641, - 23958, - 4464 - ], - [ - 445599, - 23984, - 5144 - ], - [ - 445905, - 24195, - 7883 - ], - [ - 445204, - 25154, - 7500 - ], - [ - 445058, - 25138, - 3971 - ], - [ - 444670, - 24795, - 1370 - ], - [ - 451144, - 27166, - 1379 - ], - [ - 451926, - 26996, - 1053 - ], - [ - 444460, - 25427, - 1420 - ], - [ - 444369, - 24562, - 1367 - ], - [ - 446042, - 24926, - 9318 - ], - [ - 446047, - 25142, - 8706 - ], - [ - 445813, - 24959, - 8909 - ], - [ - 445641, - 25319, - 7932 - ], - [ - 445887, - 25402, - 7396 - ], - [ - 445805, - 25578, - 8632 - ], - [ - 446531, - 24807, - 8751 - ], - [ - 445825, - 26626, - 7603 - ], - [ - 445663, - 26001, - 6969 - ], - [ - 445287, - 26117, - 6913 - ], - [ - 447536, - 26249, - 5165 - ], - [ - 447187, - 26960, - 2134 - ], - [ - 445764, - 25103, - 6000 - ], - [ - 445667, - 24997, - 7721 - ], - [ - 449117, - 33832, - 2019 - ], - [ - 449385, - 28244, - 1671 - ], - [ - 450308, - 27281, - 1539 - ], - [ - 452095, - 26981, - 3434 - ], - [ - 452207, - 26969, - 1005 - ], - [ - 450827, - 27877, - 1624 - ], - [ - 449650, - 28442, - 1517 - ], - [ - 450952, - 28909, - 1496 - ], - [ - 450578, - 29347, - 1569 - ], - [ - 450651, - 29440, - 3585 - ], - [ - 445651, - 25181, - 8288 - ], - [ - 444858, - 25504, - 6863 - ], - [ - 439976, - 29464, - 2082 - ], - [ - 446652, - 25049, - 10141 - ], - [ - 446708, - 25275, - 9055 - ], - [ - 446483, - 26261, - 8622 - ], - [ - 446058, - 25964, - 8367 - ], - [ - 445833, - 30081, - 1909 - ], - [ - 443624, - 31102, - 2102 - ], - [ - 446438, - 27696, - 3451 - ], - [ - 446567, - 25182, - 9868 - ], - [ - 447650, - 26735, - 3748 - ], - [ - 451229, - 27850, - 1327 - ], - [ - 451021, - 27151, - 3298 - ], - [ - 448349, - 26355, - 4643 - ], - [ - 448539, - 26202, - 3885 - ], - [ - 448530, - 26368, - 5827 - ], - [ - 448542, - 26487, - 3408 - ], - [ - 448307, - 26065, - 4764 - ], - [ - 447653, - 25975, - 3381 - ], - [ - 444987, - 26722, - 1604 - ], - [ - 446110, - 26048, - 7946 - ], - [ - 445465, - 25617, - 6303 - ], - [ - 445049, - 23406, - 1092 - ], - [ - 436307, - 28419, - 2032 - ], - [ - 450384, - 27933, - 1428 - ], - [ - 453051, - 35603, - 2034 - ], - [ - 436980, - 24057, - 1561 - ], - [ - 314430, - 207249, - 1230 - ], - [ - 316355, - 206791, - 1242 - ], - [ - 314669, - 208453, - 1202 - ], - [ - 318361, - 208953, - 1172 - ], - [ - 316687, - 208899, - 1192 - ], - [ - 317776, - 207285, - 1242 - ], - [ - 319271, - 208784, - 1152 - ], - [ - 320047, - 208371, - 1142 - ], - [ - 319771, - 206542, - 1242 - ], - [ - 323142, - 202960, - 1232 - ], - [ - 327150, - 199075, - 1202 - ], - [ - 325911, - 201792, - 1132 - ], - [ - 327721, - 199830, - 1122 - ], - [ - 328956, - 198774, - 1112 - ], - [ - 333112, - 193411, - 1136 - ], - [ - 330830, - 197303, - 1092 - ], - [ - 312886, - 207209, - 1162 - ], - [ - 313587, - 207937, - 1202 - ], - [ - 312712, - 207384, - 1162 - ], - [ - 313778, - 207489, - 1198 - ], - [ - 319147, - 201156, - 1215 - ], - [ - 320122, - 199958, - 1102 - ], - [ - 319727, - 202427, - 1245 - ], - [ - 319867, - 203514, - 1242 - ], - [ - 319468, - 203160, - 7771 - ], - [ - 320609, - 207872, - 1142 - ], - [ - 321523, - 205143, - 1232 - ], - [ - 363109, - 162872, - 1052 - ], - [ - 361573, - 161240, - 1002 - ], - [ - 361761, - 161057, - 1012 - ], - [ - 364263, - 163928, - 1032 - ], - [ - 363554, - 163787, - 1052 - ], - [ - 364176, - 162373, - 1052 - ], - [ - 364017, - 161209, - 1052 - ], - [ - 362192, - 160639, - 1022 - ], - [ - 363749, - 160169, - 1042 - ], - [ - 363387, - 159480, - 1012 - ], - [ - 362908, - 163067, - 1052 - ], - [ - 362755, - 167217, - 8025 - ], - [ - 362740, - 166993, - 1190 - ], - [ - 363460, - 167065, - 992 - ], - [ - 319004, - 203336, - 1240 - ], - [ - 317349, - 204086, - 1252 - ], - [ - 318390, - 202041, - 1213 - ], - [ - 364237, - 164921, - 1022 - ], - [ - 362338, - 165975, - 1056 - ], - [ - 362458, - 164939, - 1056 - ], - [ - 362638, - 166297, - 1058 - ], - [ - 319238, - 201842, - 1206 - ], - [ - 319510, - 202253, - 9956 - ], - [ - 319333, - 202553, - 1225 - ], - [ - 346165, - 182707, - 1105 - ], - [ - 346507, - 182992, - 1070 - ], - [ - 345923, - 183129, - 1115 - ], - [ - 346931, - 180864, - 15344 - ], - [ - 347250, - 181268, - 14727 - ], - [ - 346905, - 181042, - 1156 - ], - [ - 349509, - 181935, - 941 - ], - [ - 351591, - 180056, - 892 - ], - [ - 347816, - 183572, - 9642 - ], - [ - 347267, - 180561, - 1172 - ], - [ - 348781, - 181202, - 14764 - ], - [ - 348703, - 181387, - 1054 - ], - [ - 348630, - 181341, - 12375 - ], - [ - 348357, - 182038, - 7234 - ], - [ - 348401, - 182176, - 988 - ], - [ - 348275, - 182166, - 12316 - ], - [ - 347764, - 180836, - 1125 - ], - [ - 347342, - 180529, - 12886 - ], - [ - 357201, - 174332, - 942 - ], - [ - 354706, - 177010, - 922 - ], - [ - 352732, - 174699, - 1131 - ], - [ - 362586, - 166308, - 7340 - ], - [ - 362355, - 166095, - 4514 - ], - [ - 362686, - 166667, - 1042 - ], - [ - 362534, - 166786, - 2282 - ], - [ - 363036, - 167838, - 992 - ], - [ - 362775, - 167364, - 992 - ], - [ - 313895, - 208084, - 1202 - ], - [ - 321947, - 203319, - 1273 - ], - [ - 321612, - 204086, - 1232 - ], - [ - 321461, - 202706, - 1253 - ], - [ - 314335, - 206482, - 1320 - ], - [ - 316083, - 205747, - 1262 - ], - [ - 335581, - 191314, - 9861 - ], - [ - 335697, - 191227, - 6975 - ], - [ - 335614, - 191344, - 1186 - ], - [ - 348948, - 180230, - 1110 - ], - [ - 348762, - 178829, - 1121 - ], - [ - 349609, - 180456, - 1027 - ], - [ - 347358, - 181270, - 1116 - ], - [ - 347589, - 181282, - 10287 - ], - [ - 346832, - 180804, - 14063 - ], - [ - 346855, - 180668, - 1154 - ], - [ - 346952, - 181401, - 1140 - ], - [ - 346325, - 181582, - 1130 - ], - [ - 346591, - 181158, - 1160 - ], - [ - 347297, - 181312, - 10805 - ], - [ - 347038, - 181655, - 11031 - ], - [ - 345129, - 182313, - 1144 - ], - [ - 343219, - 184235, - 1114 - ], - [ - 342057, - 184895, - 1121 - ], - [ - 346997, - 181745, - 1131 - ], - [ - 336667, - 192051, - 10285 - ], - [ - 336864, - 191883, - 1067 - ], - [ - 336989, - 192075, - 14690 - ], - [ - 339073, - 187565, - 1119 - ], - [ - 347224, - 180230, - 1173 - ], - [ - 347678, - 180163, - 1170 - ], - [ - 347406, - 181655, - 1067 - ], - [ - 346029, - 181660, - 1127 - ], - [ - 346120, - 182362, - 1113 - ], - [ - 345789, - 182093, - 1149 - ], - [ - 343494, - 187404, - 982 - ], - [ - 339758, - 190031, - 1023 - ], - [ - 347720, - 180492, - 1149 - ], - [ - 348444, - 182504, - 982 - ], - [ - 348833, - 182403, - 979 - ], - [ - 348353, - 181540, - 8116 - ], - [ - 348745, - 181731, - 979 - ], - [ - 349039, - 180939, - 1065 - ], - [ - 348656, - 181009, - 1088 - ], - [ - 348610, - 180651, - 1109 - ], - [ - 348032, - 181289, - 4071 - ], - [ - 348267, - 181107, - 1085 - ], - [ - 348991, - 180577, - 1079 - ], - [ - 349307, - 180854, - 10589 - ], - [ - 349418, - 181222, - 994 - ], - [ - 349374, - 180868, - 1031 - ], - [ - 349661, - 180913, - 9921 - ], - [ - 339190, - 190788, - 1009 - ], - [ - 339440, - 190373, - 1027 - ], - [ - 339488, - 190758, - 981 - ], - [ - 334433, - 192736, - 1183 - ], - [ - 334519, - 193426, - 1108 - ], - [ - 333550, - 192918, - 1273 - ], - [ - 346279, - 181220, - 1147 - ], - [ - 336300, - 191898, - 9689 - ], - [ - 335882, - 191383, - 9267 - ], - [ - 336224, - 191419, - 5321 - ], - [ - 336634, - 190105, - 1162 - ], - [ - 337462, - 189421, - 13922 - ], - [ - 337133, - 190013, - 1173 - ], - [ - 339630, - 190263, - 8131 - ], - [ - 339490, - 190844, - 992 - ], - [ - 346544, - 180804, - 1168 - ], - [ - 336942, - 191422, - 9695 - ], - [ - 337272, - 191077, - 1146 - ], - [ - 337318, - 191392, - 1188 - ], - [ - 335614, - 192896, - 12391 - ], - [ - 335958, - 192848, - 12277 - ], - [ - 336138, - 193030, - 9785 - ], - [ - 337925, - 188830, - 1141 - ], - [ - 338108, - 190208, - 1145 - ], - [ - 337543, - 189560, - 1157 - ], - [ - 338294, - 191678, - 1011 - ], - [ - 338132, - 191276, - 12766 - ], - [ - 338246, - 191292, - 1057 - ], - [ - 337636, - 190265, - 1141 - ], - [ - 337528, - 191954, - 10153 - ], - [ - 337363, - 191790, - 1081 - ], - [ - 337424, - 191320, - 9883 - ], - [ - 336787, - 191058, - 8205 - ], - [ - 336251, - 190843, - 1191 - ], - [ - 336119, - 190767, - 13686 - ], - [ - 336209, - 190505, - 1231 - ], - [ - 338213, - 190281, - 15733 - ], - [ - 338155, - 190574, - 1117 - ], - [ - 337163, - 190858, - 13787 - ], - [ - 337230, - 190707, - 1242 - ], - [ - 338524, - 190197, - 1094 - ], - [ - 338533, - 190336, - 13562 - ], - [ - 337732, - 191006, - 1116 - ], - [ - 337184, - 190388, - 1200 - ], - [ - 337683, - 190627, - 1136 - ], - [ - 337541, - 191298, - 11557 - ], - [ - 337703, - 190600, - 8021 - ], - [ - 337891, - 190244, - 11310 - ], - [ - 337388, - 191420, - 15867 - ], - [ - 338427, - 191499, - 9914 - ], - [ - 348226, - 180772, - 1130 - ], - [ - 348482, - 180704, - 4908 - ], - [ - 348176, - 180397, - 1138 - ], - [ - 347627, - 179797, - 1155 - ], - [ - 348038, - 179348, - 1161 - ], - [ - 337774, - 191349, - 1059 - ], - [ - 337820, - 191698, - 1057 - ], - [ - 338989, - 191169, - 982 - ], - [ - 339401, - 190852, - 12193 - ], - [ - 320703, - 201104, - 12170 - ], - [ - 320762, - 201386, - 12471 - ], - [ - 320602, - 201128, - 1348 - ], - [ - 320393, - 202284, - 1233 - ], - [ - 321435, - 202522, - 10045 - ], - [ - 335308, - 191431, - 1195 - ], - [ - 335821, - 191275, - 13264 - ], - [ - 336299, - 191219, - 1172 - ], - [ - 362047, - 165655, - 1056 - ], - [ - 362093, - 165996, - 1063 - ], - [ - 345713, - 181839, - 10289 - ], - [ - 345500, - 182185, - 1112 - ], - [ - 336737, - 190734, - 1421 - ], - [ - 336682, - 190451, - 1185 - ], - [ - 337023, - 190431, - 12635 - ], - [ - 338657, - 191248, - 997 - ], - [ - 338566, - 190530, - 1066 - ], - [ - 338627, - 188339, - 1164 - ], - [ - 348208, - 181655, - 5847 - ], - [ - 348431, - 181965, - 14870 - ], - [ - 348199, - 181933, - 11682 - ], - [ - 348951, - 181363, - 10274 - ], - [ - 349083, - 181286, - 1035 - ], - [ - 349129, - 181652, - 991 - ], - [ - 348992, - 181711, - 10211 - ], - [ - 348789, - 182072, - 994 - ], - [ - 345151, - 185929, - 963 - ], - [ - 348635, - 180553, - 7333 - ], - [ - 349036, - 180418, - 13240 - ], - [ - 347570, - 179834, - 6789 - ], - [ - 336245, - 193003, - 11320 - ], - [ - 335978, - 193505, - 9682 - ], - [ - 348142, - 181627, - 11463 - ], - [ - 347320, - 181731, - 10336 - ], - [ - 347478, - 182337, - 6776 - ], - [ - 347539, - 182686, - 1034 - ], - [ - 347416, - 182701, - 14384 - ], - [ - 320492, - 201080, - 9396 - ], - [ - 320645, - 201483, - 1297 - ], - [ - 320022, - 201383, - 7068 - ], - [ - 320301, - 201011, - 11480 - ], - [ - 320929, - 201064, - 10592 - ], - [ - 320976, - 201416, - 1257 - ], - [ - 321370, - 202021, - 1246 - ], - [ - 321178, - 202080, - 12139 - ], - [ - 321021, - 201759, - 1240 - ], - [ - 321143, - 201171, - 8524 - ], - [ - 336976, - 190153, - 5819 - ], - [ - 335075, - 191677, - 12072 - ], - [ - 334382, - 192365, - 1160 - ], - [ - 335404, - 192169, - 1181 - ], - [ - 335118, - 192530, - 1189 - ], - [ - 335421, - 192759, - 9946 - ], - [ - 336966, - 190748, - 4574 - ], - [ - 336304, - 190418, - 8277 - ], - [ - 336622, - 190774, - 6450 - ], - [ - 347867, - 181500, - 1337 - ], - [ - 347991, - 181769, - 9088 - ], - [ - 347726, - 181802, - 11245 - ], - [ - 347800, - 182521, - 10944 - ], - [ - 347824, - 180368, - 9359 - ], - [ - 347918, - 180488, - 10447 - ], - [ - 348319, - 180604, - 9380 - ], - [ - 319913, - 201268, - 1270 - ], - [ - 320224, - 200755, - 1677 - ], - [ - 320346, - 200659, - 3484 - ], - [ - 320562, - 200771, - 1447 - ], - [ - 321272, - 201277, - 1253 - ], - [ - 321344, - 201252, - 11072 - ], - [ - 321320, - 201639, - 1258 - ], - [ - 322360, - 202869, - 1270 - ], - [ - 322490, - 202316, - 1242 - ], - [ - 336730, - 192274, - 10753 - ], - [ - 336690, - 192227, - 14470 - ], - [ - 336088, - 192708, - 9687 - ], - [ - 336049, - 192316, - 9860 - ], - [ - 347084, - 182426, - 1100 - ], - [ - 346767, - 182538, - 1080 - ], - [ - 346738, - 182340, - 9853 - ], - [ - 347488, - 182029, - 12137 - ], - [ - 347130, - 182789, - 1067 - ], - [ - 346654, - 183656, - 10445 - ], - [ - 346898, - 183219, - 10466 - ], - [ - 347167, - 183329, - 9706 - ], - [ - 346702, - 182880, - 12580 - ], - [ - 347583, - 183043, - 981 - ], - [ - 347136, - 182908, - 10057 - ], - [ - 346487, - 182775, - 9745 - ], - [ - 346552, - 183341, - 1037 - ], - [ - 346277, - 183635, - 9379 - ], - [ - 345970, - 183510, - 1066 - ], - [ - 344926, - 184177, - 1067 - ], - [ - 346017, - 183871, - 1044 - ], - [ - 345820, - 184656, - 995 - ], - [ - 346465, - 182663, - 1091 - ], - [ - 347181, - 182110, - 12188 - ], - [ - 346723, - 182185, - 1119 - ], - [ - 346458, - 182385, - 10065 - ], - [ - 336350, - 191356, - 7180 - ], - [ - 336694, - 190963, - 7095 - ], - [ - 349332, - 180538, - 1059 - ], - [ - 349429, - 180818, - 12371 - ], - [ - 349464, - 181579, - 969 - ], - [ - 349174, - 182041, - 922 - ], - [ - 349366, - 181684, - 9874 - ], - [ - 349879, - 180751, - 970 - ], - [ - 349973, - 181485, - 933 - ], - [ - 349655, - 180820, - 988 - ], - [ - 337253, - 191560, - 13731 - ], - [ - 336538, - 191598, - 9347 - ], - [ - 336347, - 191582, - 1165 - ], - [ - 336626, - 191973, - 14059 - ], - [ - 336596, - 191846, - 9693 - ], - [ - 338903, - 190476, - 1053 - ], - [ - 318815, - 201911, - 1237 - ], - [ - 320960, - 200956, - 6462 - ], - [ - 321757, - 201899, - 1252 - ], - [ - 322263, - 202149, - 1261 - ], - [ - 321856, - 202637, - 1265 - ], - [ - 347806, - 181170, - 1109 - ], - [ - 334864, - 193363, - 1090 - ], - [ - 335886, - 193495, - 1013 - ], - [ - 333818, - 195062, - 1053 - ], - [ - 335166, - 192917, - 1131 - ], - [ - 348117, - 183262, - 14002 - ], - [ - 349700, - 181167, - 972 - ], - [ - 349118, - 182214, - 11024 - ], - [ - 346418, - 182285, - 1127 - ], - [ - 349438, - 181918, - 10446 - ], - [ - 319542, - 201023, - 1245 - ], - [ - 319730, - 200938, - 9429 - ], - [ - 349607, - 180616, - 9716 - ], - [ - 350220, - 181074, - 944 - ], - [ - 347039, - 182080, - 1107 - ], - [ - 346181, - 182387, - 10362 - ], - [ - 319025, - 201451, - 10759 - ], - [ - 319927, - 202208, - 9828 - ], - [ - 319680, - 202075, - 1241 - ], - [ - 320481, - 200567, - 5458 - ], - [ - 320502, - 200452, - 1201 - ], - [ - 320596, - 200493, - 7142 - ], - [ - 320275, - 200533, - 7437 - ], - [ - 320469, - 200611, - 9907 - ], - [ - 321834, - 201837, - 7769 - ], - [ - 346696, - 184026, - 10344 - ], - [ - 346949, - 183961, - 988 - ], - [ - 346148, - 184913, - 942 - ], - [ - 346392, - 184500, - 947 - ], - [ - 344972, - 184533, - 1055 - ], - [ - 345594, - 182882, - 1126 - ], - [ - 345667, - 183168, - 7134 - ], - [ - 349652, - 181464, - 8763 - ], - [ - 349743, - 181505, - 948 - ], - [ - 337580, - 192268, - 10299 - ], - [ - 336957, - 192597, - 1031 - ], - [ - 337861, - 192041, - 1002 - ], - [ - 336833, - 192357, - 12018 - ], - [ - 334817, - 192999, - 1117 - ], - [ - 334588, - 193379, - 8165 - ], - [ - 362287, - 168704, - 982 - ], - [ - 359584, - 171751, - 932 - ], - [ - 358875, - 168599, - 1102 - ], - [ - 335753, - 192411, - 1153 - ], - [ - 335772, - 192666, - 10019 - ], - [ - 349994, - 181426, - 8759 - ], - [ - 348067, - 181808, - 16009 - ], - [ - 319868, - 200936, - 1267 - ], - [ - 320158, - 200516, - 1211 - ], - [ - 319818, - 200562, - 1248 - ], - [ - 320113, - 200185, - 1202 - ], - [ - 320184, - 200412, - 6437 - ], - [ - 362528, - 167295, - 1276 - ], - [ - 362235, - 166994, - 1204 - ], - [ - 362247, - 165281, - 1065 - ], - [ - 362428, - 166670, - 1045 - ], - [ - 361864, - 167043, - 1085 - ], - [ - 362385, - 166325, - 1064 - ], - [ - 364015, - 165772, - 1022 - ], - [ - 322330, - 202948, - 7072 - ], - [ - 362561, - 167692, - 1005 - ], - [ - 362054, - 165422, - 6710 - ], - [ - 361726, - 165994, - 1102 - ], - [ - 360906, - 166704, - 1101 - ], - [ - 345495, - 185146, - 987 - ], - [ - 344484, - 184288, - 1090 - ], - [ - 344526, - 184621, - 1073 - ], - [ - 344844, - 184272, - 6198 - ], - [ - 346071, - 184632, - 10082 - ], - [ - 345642, - 183265, - 1087 - ], - [ - 319431, - 203295, - 1218 - ], - [ - 336554, - 190895, - 10856 - ], - [ - 319519, - 200884, - 6700 - ], - [ - 313729, - 207097, - 1242 - ], - [ - 314145, - 207108, - 2118 - ], - [ - 314382, - 206850, - 1292 - ], - [ - 314063, - 206972, - 1281 - ], - [ - 335978, - 193505, - 1012 - ], - [ - 347816, - 183572, - 972 - ], - [ - 324535, - 201237, - 2066 - ], - [ - 326025, - 200001, - 2111 - ], - [ - 323719, - 202321, - 1983 - ], - [ - 336133, - 189602, - 7396 - ], - [ - 336282, - 189421, - 9795 - ], - [ - 336350, - 189622, - 10357 - ], - [ - 345881, - 180097, - 1966 - ], - [ - 346071, - 180294, - 8519 - ], - [ - 345927, - 180436, - 1987 - ], - [ - 326850, - 199020, - 2128 - ], - [ - 326305, - 198932, - 1504 - ], - [ - 326800, - 198650, - 2116 - ], - [ - 335812, - 190597, - 1144 - ], - [ - 336456, - 189959, - 15407 - ], - [ - 341359, - 185211, - 2045 - ], - [ - 335767, - 190204, - 1233 - ], - [ - 335534, - 190600, - 1463 - ], - [ - 335049, - 190631, - 8697 - ], - [ - 335203, - 190419, - 6250 - ], - [ - 335213, - 190725, - 1191 - ], - [ - 336496, - 189030, - 1238 - ], - [ - 336541, - 189403, - 1158 - ], - [ - 336097, - 190071, - 10222 - ], - [ - 336083, - 189800, - 14975 - ], - [ - 336148, - 189639, - 1985 - ], - [ - 338570, - 187460, - 2008 - ], - [ - 338522, - 187110, - 1985 - ], - [ - 338727, - 187243, - 1108 - ], - [ - 336992, - 188950, - 1181 - ], - [ - 337074, - 189141, - 1963 - ], - [ - 335703, - 190030, - 9266 - ], - [ - 335391, - 190011, - 9615 - ], - [ - 335462, - 189794, - 1941 - ], - [ - 339240, - 186130, - 1049 - ], - [ - 339673, - 185875, - 1964 - ], - [ - 339722, - 186202, - 2037 - ], - [ - 336348, - 189974, - 13894 - ], - [ - 336169, - 190081, - 1466 - ], - [ - 331054, - 194259, - 2086 - ], - [ - 331288, - 193986, - 1098 - ], - [ - 331380, - 194134, - 2091 - ], - [ - 350019, - 176825, - 1116 - ], - [ - 339426, - 187008, - 2017 - ], - [ - 339739, - 186662, - 1431 - ], - [ - 335995, - 190015, - 8920 - ], - [ - 358525, - 168102, - 2075 - ], - [ - 358161, - 168642, - 1141 - ], - [ - 358154, - 168129, - 2005 - ], - [ - 339021, - 186707, - 1989 - ], - [ - 339337, - 186819, - 1119 - ], - [ - 334991, - 190312, - 8477 - ], - [ - 336626, - 189602, - 1979 - ], - [ - 335751, - 189732, - 1885 - ], - [ - 338153, - 187412, - 1073 - ], - [ - 338436, - 186961, - 1057 - ], - [ - 362065, - 163931, - 1027 - ], - [ - 362372, - 163737, - 2060 - ], - [ - 335506, - 190171, - 1860 - ], - [ - 335392, - 190573, - 8587 - ], - [ - 334564, - 190789, - 1670 - ], - [ - 334588, - 191220, - 1208 - ], - [ - 334276, - 191129, - 1958 - ], - [ - 335181, - 190306, - 1512 - ], - [ - 326716, - 198529, - 1196 - ], - [ - 327236, - 198531, - 2121 - ], - [ - 338788, - 187535, - 1433 - ], - [ - 359482, - 166612, - 2112 - ], - [ - 359038, - 167037, - 2105 - ], - [ - 358683, - 167202, - 1006 - ], - [ - 333822, - 191448, - 1077 - ], - [ - 334837, - 190462, - 1092 - ], - [ - 335294, - 190909, - 1976 - ], - [ - 346225, - 180391, - 1948 - ], - [ - 346182, - 180042, - 1985 - ], - [ - 363051, - 164037, - 2151 - ], - [ - 362765, - 164422, - 2126 - ], - [ - 345594, - 180192, - 1963 - ], - [ - 355642, - 170240, - 2099 - ], - [ - 355734, - 170942, - 2079 - ], - [ - 355285, - 170503, - 1013 - ], - [ - 336098, - 189308, - 1913 - ], - [ - 341312, - 184859, - 2039 - ], - [ - 340762, - 184818, - 1047 - ], - [ - 341265, - 184516, - 2025 - ], - [ - 349669, - 176328, - 2070 - ], - [ - 349378, - 176420, - 2020 - ], - [ - 349578, - 176191, - 1054 - ], - [ - 352421, - 173849, - 2071 - ], - [ - 352639, - 173493, - 2066 - ], - [ - 352656, - 173941, - 1481 - ], - [ - 345405, - 180988, - 2014 - ], - [ - 360379, - 165897, - 6536 - ], - [ - 360056, - 166458, - 1054 - ], - [ - 360719, - 165335, - 1025 - ], - [ - 360422, - 165564, - 2111 - ], - [ - 361238, - 165145, - 2094 - ], - [ - 361332, - 165829, - 2139 - ], - [ - 360781, - 165659, - 1288 - ], - [ - 361648, - 165296, - 1296 - ], - [ - 362251, - 164744, - 2107 - ], - [ - 334922, - 190621, - 1977 - ], - [ - 359479, - 167155, - 1082 - ], - [ - 359736, - 166807, - 1059 - ], - [ - 359832, - 166976, - 2079 - ], - [ - 350265, - 175690, - 1155 - ], - [ - 349877, - 175807, - 1030 - ], - [ - 350586, - 175288, - 1044 - ], - [ - 362163, - 164082, - 2110 - ], - [ - 360465, - 165896, - 2094 - ], - [ - 360867, - 165883, - 2063 - ], - [ - 360510, - 166231, - 2109 - ], - [ - 363242, - 163486, - 1058 - ], - [ - 363007, - 163712, - 2133 - ], - [ - 362956, - 163391, - 2014 - ], - [ - 361963, - 164450, - 2095 - ], - [ - 361862, - 164253, - 1050 - ], - [ - 323252, - 202068, - 1968 - ], - [ - 323300, - 202410, - 2011 - ], - [ - 322791, - 202357, - 1260 - ], - [ - 324405, - 200731, - 1211 - ], - [ - 326396, - 198523, - 1102 - ], - [ - 331869, - 193590, - 1965 - ], - [ - 330961, - 194112, - 1079 - ], - [ - 334005, - 192292, - 2054 - ], - [ - 330795, - 195420, - 2114 - ], - [ - 356334, - 169760, - 2118 - ], - [ - 356721, - 170086, - 2077 - ], - [ - 356380, - 170136, - 2067 - ], - [ - 358783, - 167370, - 2091 - ], - [ - 359028, - 167537, - 1052 - ], - [ - 358824, - 167727, - 2009 - ], - [ - 349007, - 177597, - 1995 - ], - [ - 348711, - 177961, - 2018 - ], - [ - 359350, - 167340, - 2127 - ], - [ - 359254, - 167152, - 1149 - ], - [ - 358382, - 167589, - 1015 - ], - [ - 350356, - 175895, - 2040 - ], - [ - 349971, - 175958, - 2060 - ], - [ - 327856, - 198265, - 2161 - ], - [ - 327760, - 197568, - 2113 - ], - [ - 327973, - 197347, - 1147 - ], - [ - 328062, - 197482, - 2117 - ], - [ - 362571, - 163560, - 1037 - ], - [ - 356128, - 170552, - 1932 - ], - [ - 355851, - 170221, - 2104 - ], - [ - 357805, - 168907, - 2011 - ], - [ - 357709, - 168188, - 2018 - ], - [ - 349204, - 177275, - 1256 - ], - [ - 348962, - 177215, - 2074 - ], - [ - 349194, - 176780, - 2048 - ], - [ - 356929, - 168973, - 2090 - ], - [ - 357251, - 168782, - 1021 - ], - [ - 354941, - 170925, - 1018 - ], - [ - 355036, - 171063, - 2091 - ], - [ - 347439, - 178397, - 1127 - ], - [ - 347851, - 177986, - 1075 - ], - [ - 347910, - 178292, - 1343 - ], - [ - 354233, - 172014, - 1321 - ], - [ - 353379, - 172524, - 1074 - ], - [ - 358065, - 167965, - 1062 - ], - [ - 346134, - 179695, - 1972 - ], - [ - 346484, - 179922, - 1977 - ], - [ - 354603, - 171639, - 1136 - ], - [ - 355034, - 171577, - 1101 - ], - [ - 354689, - 171847, - 1947 - ], - [ - 352464, - 174175, - 2076 - ], - [ - 352153, - 173872, - 2047 - ], - [ - 350399, - 176216, - 2043 - ], - [ - 352779, - 172950, - 1014 - ], - [ - 351813, - 174117, - 1069 - ], - [ - 357855, - 169235, - 2106 - ], - [ - 357348, - 168922, - 2095 - ], - [ - 351540, - 175146, - 1366 - ], - [ - 353052, - 172895, - 1046 - ], - [ - 353147, - 173053, - 2078 - ], - [ - 352872, - 173108, - 2024 - ], - [ - 353954, - 173007, - 2068 - ], - [ - 353473, - 172695, - 2072 - ], - [ - 355755, - 170085, - 1025 - ], - [ - 356041, - 169826, - 2056 - ], - [ - 347527, - 178570, - 2041 - ], - [ - 347572, - 178936, - 1984 - ], - [ - 349101, - 176625, - 1039 - ], - [ - 336977, - 188459, - 1891 - ], - [ - 348534, - 177147, - 1056 - ], - [ - 348190, - 177524, - 1053 - ], - [ - 346654, - 178869, - 1694 - ], - [ - 341866, - 183508, - 1040 - ], - [ - 341175, - 184360, - 1052 - ], - [ - 339588, - 185731, - 1048 - ], - [ - 358483, - 167776, - 2090 - ], - [ - 358873, - 168071, - 2053 - ], - [ - 359090, - 167816, - 1393 - ], - [ - 359394, - 167682, - 2110 - ], - [ - 354271, - 172394, - 1148 - ], - [ - 348282, - 177717, - 1995 - ], - [ - 340365, - 185165, - 1343 - ], - [ - 340854, - 184991, - 2019 - ], - [ - 341621, - 184609, - 1116 - ], - [ - 339966, - 185608, - 1112 - ], - [ - 343011, - 182404, - 1618 - ], - [ - 343472, - 182585, - 2025 - ], - [ - 343071, - 182663, - 1973 - ], - [ - 342286, - 183579, - 1997 - ], - [ - 341951, - 183650, - 1963 - ], - [ - 342203, - 183438, - 1077 - ], - [ - 342535, - 183215, - 1978 - ], - [ - 342444, - 183030, - 1052 - ], - [ - 346044, - 179500, - 1056 - ], - [ - 346350, - 179402, - 1066 - ], - [ - 342336, - 183949, - 2003 - ], - [ - 342050, - 184367, - 2016 - ], - [ - 342003, - 184013, - 2018 - ], - [ - 342579, - 183536, - 2000 - ], - [ - 342796, - 183614, - 1153 - ], - [ - 339331, - 186308, - 1989 - ], - [ - 342698, - 182937, - 1037 - ], - [ - 343076, - 183183, - 1079 - ], - [ - 342748, - 183263, - 1127 - ], - [ - 344896, - 180596, - 1053 - ], - [ - 345271, - 180467, - 1088 - ], - [ - 345359, - 180643, - 2004 - ], - [ - 329030, - 196206, - 1099 - ], - [ - 329457, - 195740, - 1088 - ], - [ - 329545, - 195845, - 2094 - ], - [ - 361592, - 164989, - 1085 - ], - [ - 361546, - 164640, - 1086 - ], - [ - 356237, - 169623, - 1009 - ], - [ - 345074, - 181449, - 1978 - ], - [ - 349719, - 176696, - 2076 - ], - [ - 350642, - 175606, - 1233 - ], - [ - 348668, - 177628, - 2045 - ], - [ - 349393, - 176880, - 1378 - ], - [ - 349467, - 177082, - 2046 - ], - [ - 352970, - 173815, - 2080 - ], - [ - 350726, - 175792, - 2074 - ], - [ - 343518, - 182927, - 2020 - ], - [ - 331616, - 194021, - 2106 - ], - [ - 331534, - 193855, - 1281 - ], - [ - 330747, - 195057, - 2118 - ], - [ - 331061, - 194824, - 1150 - ], - [ - 334669, - 191395, - 2002 - ], - [ - 330700, - 194717, - 2085 - ], - [ - 334288, - 191660, - 1159 - ], - [ - 334370, - 191827, - 1986 - ], - [ - 333103, - 192852, - 2049 - ], - [ - 332670, - 193483, - 1272 - ], - [ - 332661, - 192974, - 2081 - ], - [ - 362860, - 163195, - 1048 - ], - [ - 338933, - 186541, - 1069 - ], - [ - 338679, - 186901, - 1087 - ], - [ - 333880, - 191756, - 1313 - ], - [ - 346439, - 179599, - 1942 - ], - [ - 346729, - 179602, - 1372 - ], - [ - 346710, - 179144, - 1956 - ], - [ - 347122, - 179035, - 1994 - ], - [ - 340055, - 185795, - 2011 - ], - [ - 340437, - 185361, - 1985 - ], - [ - 344988, - 181258, - 1125 - ], - [ - 344953, - 180863, - 1352 - ], - [ - 343780, - 181813, - 1639 - ], - [ - 343843, - 182111, - 1983 - ], - [ - 343415, - 182275, - 1808 - ], - [ - 330329, - 195213, - 2097 - ], - [ - 337356, - 188196, - 1088 - ], - [ - 337404, - 188548, - 1108 - ], - [ - 338234, - 187558, - 1950 - ], - [ - 337911, - 188279, - 1980 - ], - [ - 327806, - 197912, - 2127 - ], - [ - 327508, - 198032, - 2124 - ], - [ - 328445, - 197657, - 2139 - ], - [ - 323175, - 201923, - 1191 - ], - [ - 352727, - 174155, - 2081 - ], - [ - 352325, - 173666, - 1055 - ], - [ - 352245, - 174563, - 2064 - ], - [ - 351947, - 174608, - 2031 - ], - [ - 351903, - 174264, - 2060 - ], - [ - 351138, - 175396, - 2079 - ], - [ - 351091, - 175060, - 2054 - ], - [ - 352546, - 173360, - 1020 - ], - [ - 340104, - 186145, - 2037 - ], - [ - 332258, - 193437, - 2095 - ], - [ - 332168, - 193296, - 1108 - ], - [ - 333533, - 192379, - 2025 - ], - [ - 333925, - 192145, - 1220 - ], - [ - 330614, - 194610, - 1089 - ], - [ - 333491, - 192043, - 2055 - ], - [ - 333054, - 192477, - 2044 - ], - [ - 329993, - 195711, - 2139 - ], - [ - 329947, - 195379, - 2108 - ], - [ - 330244, - 195076, - 1159 - ], - [ - 328350, - 196958, - 2102 - ], - [ - 328259, - 196834, - 1092 - ], - [ - 330355, - 195686, - 1581 - ], - [ - 329123, - 196341, - 2137 - ], - [ - 328663, - 196508, - 2044 - ], - [ - 329596, - 196208, - 2137 - ], - [ - 327672, - 197470, - 1095 - ], - [ - 328712, - 196820, - 2144 - ], - [ - 328757, - 197169, - 2137 - ], - [ - 327422, - 197901, - 1185 - ], - [ - 327191, - 198207, - 2096 - ], - [ - 327100, - 198057, - 1110 - ], - [ - 353904, - 172639, - 2055 - ], - [ - 353859, - 172318, - 2027 - ], - [ - 351527, - 174664, - 2087 - ], - [ - 351001, - 174917, - 1051 - ], - [ - 347072, - 178696, - 1918 - ], - [ - 343887, - 182436, - 1990 - ], - [ - 344207, - 182174, - 1138 - ], - [ - 345800, - 179925, - 1157 - ], - [ - 348595, - 177403, - 1427 - ], - [ - 348328, - 178035, - 2037 - ], - [ - 326382, - 199158, - 2144 - ], - [ - 329640, - 196555, - 2104 - ], - [ - 328085, - 197951, - 1581 - ], - [ - 348878, - 177011, - 1259 - ], - [ - 344114, - 181520, - 1054 - ], - [ - 344169, - 181798, - 1310 - ], - [ - 344603, - 181719, - 1122 - ], - [ - 344569, - 181309, - 1411 - ], - [ - 344507, - 181031, - 1055 - ], - [ - 332302, - 193792, - 2048 - ], - [ - 331660, - 194354, - 2097 - ], - [ - 331424, - 194464, - 2112 - ], - [ - 324774, - 200449, - 1879 - ], - [ - 325176, - 200456, - 1510 - ], - [ - 324829, - 200725, - 2126 - ], - [ - 323904, - 201322, - 1202 - ], - [ - 323622, - 201578, - 1996 - ], - [ - 324230, - 201009, - 2017 - ], - [ - 323982, - 201487, - 1963 - ], - [ - 325114, - 200141, - 1235 - ], - [ - 324486, - 200853, - 2090 - ], - [ - 323651, - 202049, - 1546 - ], - [ - 325632, - 200133, - 2127 - ], - [ - 325921, - 199384, - 1813 - ], - [ - 325574, - 199844, - 1867 - ], - [ - 337867, - 187951, - 1972 - ], - [ - 330037, - 196067, - 2096 - ], - [ - 338276, - 187919, - 1859 - ], - [ - 325976, - 199655, - 2081 - ], - [ - 359539, - 167415, - 1433 - ], - [ - 321565, - 101452, - 7022 - ], - [ - 316136, - 108781, - 7022 - ], - [ - 318329, - 98955, - 7022 - ], - [ - 318266, - 97697, - 7022 - ], - [ - 318913, - 98197, - 7022 - ], - [ - 312086, - 105772, - 7022 - ], - [ - 317461, - 98548, - 7022 - ], - [ - 318173, - 97626, - 7022 - ], - [ - 321565, - 101452, - 482 - ], - [ - 316136, - 108781, - 482 - ], - [ - 321565, - 101452, - 3622 - ], - [ - 316136, - 108781, - 3622 - ], - [ - 318329, - 98955, - 482 - ], - [ - 318913, - 98197, - 482 - ], - [ - 318266, - 97697, - 482 - ], - [ - 318173, - 97626, - 482 - ], - [ - 317461, - 98548, - 482 - ], - [ - 312086, - 105772, - 482 - ], - [ - 326728, - 103507, - 3622 - ], - [ - 320407, - 112038, - 3622 - ], - [ - 320158, - 111769, - 3622 - ], - [ - 324474, - 101768, - 3622 - ], - [ - 324026, - 98263, - 3622 - ], - [ - 324885, - 98926, - 3622 - ], - [ - 320119, - 111821, - 3622 - ], - [ - 326728, - 103507, - 482 - ], - [ - 320407, - 112038, - 482 - ], - [ - 326728, - 103507, - 3612 - ], - [ - 320407, - 112038, - 3612 - ], - [ - 324474, - 101768, - 482 - ], - [ - 324885, - 98926, - 482 - ], - [ - 324026, - 98263, - 482 - ], - [ - 320158, - 111769, - 482 - ], - [ - 320119, - 111821, - 482 - ], - [ - 326772, - 103541, - 3612 - ], - [ - 332412, - 103931, - 3612 - ], - [ - 328622, - 101071, - 3612 - ], - [ - 332412, - 103931, - 472 - ], - [ - 328622, - 101071, - 472 - ], - [ - 326772, - 103541, - 472 - ], - [ - 326728, - 103507, - 472 - ], - [ - 320407, - 112038, - 472 - ], - [ - 324212, - 70905, - 3332 - ], - [ - 315416, - 63807, - 3332 - ], - [ - 325717, - 75056, - 3332 - ], - [ - 322904, - 72789, - 3332 - ], - [ - 322787, - 72695, - 3332 - ], - [ - 315416, - 63807, - 392 - ], - [ - 315416, - 63807, - 422 - ], - [ - 324212, - 70905, - 392 - ], - [ - 324212, - 70905, - 422 - ], - [ - 322787, - 72695, - 392 - ], - [ - 322787, - 72695, - 422 - ], - [ - 322904, - 72789, - 392 - ], - [ - 242641, - 106650, - 3712 - ], - [ - 250615, - 112571, - 3712 - ], - [ - 242651, - 106667, - 3712 - ], - [ - 248667, - 115309, - 3712 - ], - [ - 242584, - 106710, - 3712 - ], - [ - 239452, - 108734, - 3712 - ], - [ - 242641, - 106650, - 422 - ], - [ - 242641, - 106650, - 3532 - ], - [ - 250615, - 112571, - 3532 - ], - [ - 242651, - 106667, - 422 - ], - [ - 242584, - 106710, - 422 - ], - [ - 239452, - 108734, - 422 - ], - [ - 239452, - 108734, - 3722 - ], - [ - 248667, - 115309, - 3722 - ], - [ - 248099, - 116108, - 3722 - ], - [ - 250284, - 117662, - 3722 - ], - [ - 248559, - 120087, - 3722 - ], - [ - 235960, - 110991, - 422 - ], - [ - 245458, - 117882, - 422 - ], - [ - 296708, - 117959, - 3212 - ], - [ - 292089, - 119783, - 3212 - ], - [ - 300072, - 109133, - 3212 - ], - [ - 292365, - 119989, - 3212 - ], - [ - 292588, - 123477, - 3212 - ], - [ - 290772, - 122121, - 3212 - ], - [ - 303927, - 112023, - 582 - ], - [ - 298495, - 119282, - 582 - ], - [ - 300072, - 109133, - 582 - ], - [ - 300072, - 109133, - 3142 - ], - [ - 292089, - 119783, - 582 - ], - [ - 292089, - 119783, - 3142 - ], - [ - 292365, - 119989, - 582 - ], - [ - 290772, - 122121, - 582 - ], - [ - 292588, - 123477, - 582 - ], - [ - 296708, - 117959, - 582 - ], - [ - 314171, - 94666, - 4352 - ], - [ - 308080, - 102796, - 4352 - ], - [ - 314101, - 94612, - 4352 - ], - [ - 305788, - 100976, - 4352 - ], - [ - 311270, - 92427, - 4352 - ], - [ - 311966, - 89166, - 4352 - ], - [ - 313107, - 90047, - 4352 - ], - [ - 304038, - 99752, - 4352 - ], - [ - 304323, - 99873, - 4352 - ], - [ - 304239, - 99985, - 4352 - ], - [ - 303999, - 99804, - 4352 - ], - [ - 305704, - 101088, - 4352 - ], - [ - 308041, - 102848, - 4352 - ], - [ - 314171, - 94666, - 532 - ], - [ - 308080, - 102796, - 532 - ], - [ - 314101, - 94612, - 532 - ], - [ - 311270, - 92427, - 532 - ], - [ - 313107, - 90047, - 532 - ], - [ - 311966, - 89166, - 532 - ], - [ - 304038, - 99752, - 532 - ], - [ - 303999, - 99804, - 532 - ], - [ - 304239, - 99985, - 532 - ], - [ - 304323, - 99873, - 532 - ], - [ - 305788, - 100976, - 532 - ], - [ - 305704, - 101088, - 532 - ], - [ - 308041, - 102848, - 532 - ], - [ - 275487, - 95750, - 4292 - ], - [ - 277386, - 97204, - 4292 - ], - [ - 275086, - 96274, - 4292 - ], - [ - 266754, - 90749, - 4292 - ], - [ - 266653, - 90599, - 4292 - ], - [ - 266928, - 90632, - 4292 - ], - [ - 267576, - 90197, - 4292 - ], - [ - 267530, - 90011, - 4292 - ], - [ - 268184, - 90988, - 4292 - ], - [ - 267476, - 90048, - 4292 - ], - [ - 273922, - 98160, - 4292 - ], - [ - 266828, - 90482, - 4292 - ], - [ - 266106, - 91183, - 4292 - ], - [ - 272802, - 99660, - 4292 - ], - [ - 272509, - 99441, - 4292 - ], - [ - 265914, - 91095, - 4292 - ], - [ - 266006, - 91033, - 4292 - ], - [ - 263469, - 92458, - 4292 - ], - [ - 265675, - 90738, - 4292 - ], - [ - 263358, - 92292, - 4292 - ], - [ - 263442, - 92476, - 4292 - ], - [ - 275565, - 99388, - 4292 - ], - [ - 275687, - 99479, - 4292 - ], - [ - 275487, - 95750, - 452 - ], - [ - 277386, - 97204, - 452 - ], - [ - 275487, - 95750, - 462 - ], - [ - 277386, - 97204, - 462 - ], - [ - 275086, - 96274, - 452 - ], - [ - 275086, - 96274, - 462 - ], - [ - 268184, - 90988, - 452 - ], - [ - 268184, - 90988, - 462 - ], - [ - 267530, - 90011, - 452 - ], - [ - 263442, - 92476, - 4012 - ], - [ - 272509, - 99441, - 452 - ], - [ - 272509, - 99441, - 4012 - ], - [ - 272802, - 99660, - 452 - ], - [ - 273922, - 98160, - 452 - ], - [ - 275565, - 99388, - 452 - ], - [ - 275565, - 99388, - 662 - ], - [ - 275565, - 99388, - 2862 - ], - [ - 275687, - 99479, - 452 - ], - [ - 275687, - 99479, - 662 - ], - [ - 275687, - 99479, - 2862 - ], - [ - 261311, - 95816, - 4012 - ], - [ - 268781, - 99073, - 4012 - ], - [ - 260000, - 94772, - 4012 - ], - [ - 262643, - 92771, - 4012 - ], - [ - 262755, - 92937, - 4012 - ], - [ - 259894, - 94614, - 4012 - ], - [ - 260810, - 95435, - 4012 - ], - [ - 259967, - 94794, - 4012 - ], - [ - 260592, - 95722, - 4012 - ], - [ - 261093, - 96103, - 4012 - ], - [ - 271351, - 100992, - 4012 - ], - [ - 267628, - 100616, - 4012 - ], - [ - 263442, - 92476, - 432 - ], - [ - 272509, - 99441, - 432 - ], - [ - 259894, - 94614, - 432 - ], - [ - 260000, - 94772, - 432 - ], - [ - 259967, - 94794, - 432 - ], - [ - 259967, - 94794, - 4002 - ], - [ - 260810, - 95435, - 432 - ], - [ - 260810, - 95435, - 4002 - ], - [ - 260592, - 95722, - 432 - ], - [ - 260592, - 95722, - 4002 - ], - [ - 261093, - 96103, - 432 - ], - [ - 261093, - 96103, - 4002 - ], - [ - 261311, - 95816, - 432 - ], - [ - 261311, - 95816, - 4002 - ], - [ - 267628, - 100616, - 432 - ], - [ - 267628, - 100616, - 4002 - ], - [ - 268781, - 99073, - 432 - ], - [ - 271351, - 100992, - 432 - ], - [ - 317461, - 98548, - 7642 - ], - [ - 312086, - 105772, - 7642 - ], - [ - 314380, - 96170, - 7642 - ], - [ - 314171, - 94666, - 7642 - ], - [ - 315030, - 95329, - 7642 - ], - [ - 308080, - 102796, - 7642 - ], - [ - 314380, - 96170, - 482 - ], - [ - 315030, - 95329, - 482 - ], - [ - 314171, - 94666, - 482 - ], - [ - 308080, - 102796, - 482 - ], - [ - 266612, - 101977, - 4002 - ], - [ - 267927, - 105623, - 4002 - ], - [ - 256054, - 97221, - 4002 - ], - [ - 259286, - 95251, - 4002 - ], - [ - 257982, - 95896, - 4002 - ], - [ - 259180, - 95093, - 4002 - ], - [ - 269207, - 103914, - 4002 - ], - [ - 261311, - 95816, - 422 - ], - [ - 267628, - 100616, - 422 - ], - [ - 261093, - 96103, - 422 - ], - [ - 260592, - 95722, - 422 - ], - [ - 260810, - 95435, - 422 - ], - [ - 259967, - 94794, - 422 - ], - [ - 259286, - 95251, - 422 - ], - [ - 259180, - 95093, - 422 - ], - [ - 257982, - 95896, - 422 - ], - [ - 256054, - 97221, - 422 - ], - [ - 267927, - 105623, - 422 - ], - [ - 269207, - 103914, - 422 - ], - [ - 266612, - 101977, - 422 - ], - [ - 284629, - 97909, - 2902 - ], - [ - 284611, - 97797, - 2902 - ], - [ - 284676, - 97845, - 2902 - ], - [ - 278575, - 106760, - 2902 - ], - [ - 277332, - 103623, - 2902 - ], - [ - 277273, - 108504, - 2902 - ], - [ - 276816, - 109378, - 2902 - ], - [ - 275127, - 106624, - 2902 - ], - [ - 284489, - 97659, - 2902 - ], - [ - 284664, - 97725, - 2902 - ], - [ - 284518, - 97618, - 2902 - ], - [ - 277167, - 100588, - 2902 - ], - [ - 283785, - 97147, - 2902 - ], - [ - 283815, - 97106, - 2902 - ], - [ - 281203, - 95205, - 2902 - ], - [ - 281077, - 95373, - 2902 - ], - [ - 275762, - 102462, - 2902 - ], - [ - 273524, - 105447, - 2902 - ], - [ - 271299, - 108414, - 2902 - ], - [ - 275386, - 111292, - 2902 - ], - [ - 277399, - 108598, - 2902 - ], - [ - 284629, - 97909, - 622 - ], - [ - 278575, - 106760, - 622 - ], - [ - 284676, - 97845, - 622 - ], - [ - 284611, - 97797, - 622 - ], - [ - 284664, - 97725, - 622 - ], - [ - 284518, - 97618, - 622 - ], - [ - 284489, - 97659, - 622 - ], - [ - 283785, - 97147, - 622 - ], - [ - 283815, - 97106, - 622 - ], - [ - 281203, - 95205, - 622 - ], - [ - 281077, - 95373, - 622 - ], - [ - 277167, - 100588, - 622 - ], - [ - 277167, - 100588, - 662 - ], - [ - 277167, - 100588, - 2862 - ], - [ - 275762, - 102462, - 622 - ], - [ - 275762, - 102462, - 662 - ], - [ - 275762, - 102462, - 2862 - ], - [ - 277332, - 103623, - 622 - ], - [ - 275127, - 106624, - 622 - ], - [ - 273524, - 105447, - 622 - ], - [ - 273524, - 105447, - 662 - ], - [ - 273524, - 105447, - 2862 - ], - [ - 271299, - 108414, - 622 - ], - [ - 271299, - 108414, - 662 - ], - [ - 271299, - 108414, - 2862 - ], - [ - 275386, - 111292, - 622 - ], - [ - 276816, - 109378, - 622 - ], - [ - 277399, - 108598, - 622 - ], - [ - 277273, - 108504, - 622 - ], - [ - 288352, - 100511, - 3332 - ], - [ - 282894, - 107738, - 3332 - ], - [ - 281183, - 106472, - 3332 - ], - [ - 285324, - 98415, - 3332 - ], - [ - 285371, - 98351, - 3332 - ], - [ - 278575, - 106760, - 3332 - ], - [ - 284629, - 97909, - 3332 - ], - [ - 280111, - 107907, - 3332 - ], - [ - 288352, - 100511, - 592 - ], - [ - 282894, - 107738, - 592 - ], - [ - 288352, - 100511, - 642 - ], - [ - 282894, - 107738, - 642 - ], - [ - 288352, - 100511, - 3312 - ], - [ - 282894, - 107738, - 3312 - ], - [ - 285371, - 98351, - 592 - ], - [ - 285324, - 98415, - 592 - ], - [ - 284629, - 97909, - 592 - ], - [ - 278575, - 106760, - 592 - ], - [ - 280111, - 107907, - 592 - ], - [ - 281183, - 106472, - 592 - ], - [ - 253797, - 98830, - 2692 - ], - [ - 260846, - 103843, - 2692 - ], - [ - 252978, - 99386, - 2692 - ], - [ - 252813, - 99500, - 2692 - ], - [ - 252756, - 99539, - 2692 - ], - [ - 252584, - 99659, - 2692 - ], - [ - 251832, - 100239, - 2692 - ], - [ - 251803, - 100198, - 2692 - ], - [ - 256694, - 109681, - 2692 - ], - [ - 251635, - 100376, - 2692 - ], - [ - 247639, - 103079, - 2692 - ], - [ - 251606, - 100335, - 2692 - ], - [ - 247339, - 103347, - 2692 - ], - [ - 247459, - 103204, - 2692 - ], - [ - 247418, - 103232, - 2692 - ], - [ - 247311, - 103306, - 2692 - ], - [ - 253797, - 98830, - 412 - ], - [ - 252978, - 99386, - 412 - ], - [ - 252813, - 99500, - 412 - ], - [ - 252756, - 99539, - 412 - ], - [ - 252584, - 99659, - 412 - ], - [ - 251803, - 100198, - 412 - ], - [ - 251832, - 100239, - 412 - ], - [ - 251635, - 100376, - 412 - ], - [ - 251606, - 100335, - 412 - ], - [ - 247639, - 103079, - 412 - ], - [ - 247459, - 103204, - 412 - ], - [ - 247418, - 103232, - 412 - ], - [ - 247311, - 103306, - 412 - ], - [ - 247339, - 103347, - 412 - ], - [ - 247339, - 103347, - 422 - ], - [ - 256694, - 109681, - 412 - ], - [ - 284886, - 109212, - 3312 - ], - [ - 282523, - 116259, - 3312 - ], - [ - 280662, - 114869, - 3312 - ], - [ - 292252, - 103337, - 3312 - ], - [ - 292241, - 103329, - 3312 - ], - [ - 292252, - 103337, - 642 - ], - [ - 282523, - 116259, - 642 - ], - [ - 292241, - 103329, - 642 - ], - [ - 284886, - 109212, - 642 - ], - [ - 280662, - 114869, - 642 - ], - [ - 296202, - 106265, - 3312 - ], - [ - 290725, - 113533, - 3312 - ], - [ - 289095, - 112327, - 3312 - ], - [ - 284857, - 118002, - 3312 - ], - [ - 296202, - 106265, - 602 - ], - [ - 290725, - 113533, - 602 - ], - [ - 296202, - 106265, - 3142 - ], - [ - 290725, - 113533, - 3142 - ], - [ - 292252, - 103337, - 602 - ], - [ - 282523, - 116259, - 602 - ], - [ - 284857, - 118002, - 602 - ], - [ - 289095, - 112327, - 602 - ], - [ - 247339, - 103347, - 3532 - ], - [ - 256694, - 109681, - 3532 - ], - [ - 247190, - 103432, - 3532 - ], - [ - 247202, - 103448, - 3532 - ], - [ - 255514, - 116056, - 3532 - ], - [ - 258922, - 111265, - 3532 - ], - [ - 247202, - 103448, - 422 - ], - [ - 247190, - 103432, - 422 - ], - [ - 291454, - 116686, - 3142 - ], - [ - 291668, - 116846, - 3142 - ], - [ - 290197, - 118370, - 3142 - ], - [ - 292926, - 115161, - 3142 - ], - [ - 300072, - 109133, - 572 - ], - [ - 292089, - 119783, - 572 - ], - [ - 296202, - 106265, - 572 - ], - [ - 290725, - 113533, - 572 - ], - [ - 292926, - 115161, - 572 - ], - [ - 291668, - 116846, - 572 - ], - [ - 291454, - 116686, - 572 - ], - [ - 290197, - 118370, - 572 - ], - [ - 278796, - 93349, - 4552 - ], - [ - 279734, - 94059, - 4552 - ], - [ - 278748, - 93413, - 4552 - ], - [ - 271242, - 88061, - 4552 - ], - [ - 271358, - 87914, - 4552 - ], - [ - 278151, - 92962, - 4552 - ], - [ - 271448, - 87794, - 4552 - ], - [ - 278200, - 92899, - 4552 - ], - [ - 279609, - 94227, - 4552 - ], - [ - 271245, - 87911, - 4552 - ], - [ - 275487, - 95750, - 4552 - ], - [ - 277386, - 97204, - 4552 - ], - [ - 270215, - 87885, - 4552 - ], - [ - 270317, - 87888, - 4552 - ], - [ - 270314, - 88038, - 4552 - ], - [ - 268158, - 89072, - 4552 - ], - [ - 270126, - 87752, - 4552 - ], - [ - 268398, - 89429, - 4552 - ], - [ - 268418, - 89657, - 4552 - ], - [ - 268306, - 89491, - 4552 - ], - [ - 268184, - 90988, - 4552 - ], - [ - 267770, - 90091, - 4552 - ], - [ - 267530, - 90011, - 4552 - ], - [ - 267658, - 89925, - 4552 - ], - [ - 275086, - 96274, - 4552 - ], - [ - 278796, - 93349, - 462 - ], - [ - 279734, - 94059, - 462 - ], - [ - 278748, - 93413, - 462 - ], - [ - 278151, - 92962, - 462 - ], - [ - 278200, - 92899, - 462 - ], - [ - 279609, - 94227, - 462 - ], - [ - 269878, - 107003, - 2862 - ], - [ - 271217, - 108003, - 2862 - ], - [ - 271044, - 108235, - 2862 - ], - [ - 269878, - 107003, - 662 - ], - [ - 271217, - 108003, - 662 - ], - [ - 271044, - 108235, - 662 - ], - [ - 285255, - 79041, - 7572 - ], - [ - 285101, - 79074, - 7572 - ], - [ - 285230, - 78998, - 7572 - ], - [ - 282017, - 83298, - 7572 - ], - [ - 283768, - 79886, - 7572 - ], - [ - 284660, - 85282, - 7572 - ], - [ - 284805, - 79257, - 7572 - ], - [ - 285061, - 79004, - 7572 - ], - [ - 284763, - 79189, - 7572 - ], - [ - 284029, - 79736, - 7572 - ], - [ - 284946, - 85484, - 7572 - ], - [ - 293415, - 85075, - 7572 - ], - [ - 283987, - 79668, - 7572 - ], - [ - 283731, - 79826, - 7572 - ], - [ - 281832, - 81082, - 7572 - ], - [ - 281565, - 81549, - 7572 - ], - [ - 281696, - 82796, - 7572 - ], - [ - 281489, - 81212, - 7572 - ], - [ - 281796, - 81022, - 7572 - ], - [ - 281449, - 81216, - 7572 - ], - [ - 281485, - 81557, - 7572 - ], - [ - 281616, - 82804, - 7572 - ], - [ - 281703, - 83150, - 7572 - ], - [ - 281653, - 83155, - 7572 - ], - [ - 281975, - 83354, - 7572 - ], - [ - 284618, - 85338, - 7572 - ], - [ - 284898, - 85548, - 7572 - ], - [ - 290183, - 89408, - 7572 - ], - [ - 285255, - 79041, - 442 - ], - [ - 293415, - 85075, - 442 - ], - [ - 293415, - 85075, - 522 - ], - [ - 293415, - 85075, - 3782 - ], - [ - 285230, - 78998, - 442 - ], - [ - 285101, - 79074, - 442 - ], - [ - 285061, - 79004, - 442 - ], - [ - 284763, - 79189, - 442 - ], - [ - 284805, - 79257, - 442 - ], - [ - 284029, - 79736, - 442 - ], - [ - 283987, - 79668, - 442 - ], - [ - 283731, - 79826, - 442 - ], - [ - 283768, - 79886, - 442 - ], - [ - 281832, - 81082, - 442 - ], - [ - 281796, - 81022, - 442 - ], - [ - 281489, - 81212, - 442 - ], - [ - 281449, - 81216, - 442 - ], - [ - 281485, - 81557, - 442 - ], - [ - 281565, - 81549, - 442 - ], - [ - 281696, - 82796, - 442 - ], - [ - 281616, - 82804, - 442 - ], - [ - 281653, - 83155, - 442 - ], - [ - 281703, - 83150, - 442 - ], - [ - 281975, - 83354, - 442 - ], - [ - 282017, - 83298, - 442 - ], - [ - 284660, - 85282, - 442 - ], - [ - 284618, - 85338, - 442 - ], - [ - 284898, - 85548, - 442 - ], - [ - 284946, - 85484, - 442 - ], - [ - 290183, - 89408, - 442 - ], - [ - 290183, - 89408, - 522 - ], - [ - 290183, - 89408, - 3782 - ], - [ - 289448, - 76581, - 7572 - ], - [ - 296144, - 81421, - 7572 - ], - [ - 286005, - 78543, - 7572 - ], - [ - 288665, - 76982, - 7572 - ], - [ - 288691, - 77026, - 7572 - ], - [ - 286030, - 78586, - 7572 - ], - [ - 293456, - 85105, - 7572 - ], - [ - 289448, - 76581, - 422 - ], - [ - 296144, - 81421, - 422 - ], - [ - 289448, - 76581, - 432 - ], - [ - 289448, - 76581, - 3612 - ], - [ - 296144, - 81421, - 3612 - ], - [ - 288691, - 77026, - 422 - ], - [ - 288665, - 76982, - 422 - ], - [ - 286005, - 78543, - 422 - ], - [ - 286030, - 78586, - 422 - ], - [ - 285255, - 79041, - 422 - ], - [ - 293415, - 85075, - 422 - ], - [ - 293456, - 85105, - 422 - ], - [ - 293456, - 85105, - 3782 - ], - [ - 299707, - 85805, - 3782 - ], - [ - 294575, - 92699, - 3782 - ], - [ - 295979, - 86971, - 3782 - ], - [ - 297830, - 84435, - 3782 - ], - [ - 293444, - 85121, - 3782 - ], - [ - 294375, - 92474, - 3782 - ], - [ - 291143, - 90052, - 3782 - ], - [ - 291107, - 90100, - 3782 - ], - [ - 293647, - 91929, - 3782 - ], - [ - 292519, - 91084, - 3782 - ], - [ - 293611, - 91977, - 3782 - ], - [ - 292483, - 91132, - 3782 - ], - [ - 294339, - 92522, - 3782 - ], - [ - 294575, - 92699, - 522 - ], - [ - 299707, - 85805, - 3482 - ], - [ - 294575, - 92699, - 3482 - ], - [ - 291107, - 90100, - 522 - ], - [ - 291143, - 90052, - 522 - ], - [ - 292519, - 91084, - 522 - ], - [ - 292483, - 91132, - 522 - ], - [ - 293611, - 91977, - 522 - ], - [ - 293647, - 91929, - 522 - ], - [ - 294375, - 92474, - 522 - ], - [ - 294339, - 92522, - 522 - ], - [ - 296317, - 81184, - 3612 - ], - [ - 293011, - 74542, - 3612 - ], - [ - 298591, - 82844, - 3612 - ], - [ - 290849, - 75673, - 3612 - ], - [ - 290977, - 75595, - 3612 - ], - [ - 291060, - 75731, - 3612 - ], - [ - 290745, - 75829, - 3612 - ], - [ - 290704, - 75761, - 3612 - ], - [ - 289995, - 76287, - 3612 - ], - [ - 289953, - 76218, - 3612 - ], - [ - 289423, - 76538, - 3612 - ], - [ - 307471, - 85698, - 3612 - ], - [ - 300675, - 84679, - 3612 - ], - [ - 298442, - 83049, - 3612 - ], - [ - 303152, - 86371, - 3612 - ], - [ - 305534, - 88209, - 3612 - ], - [ - 303094, - 86446, - 3612 - ], - [ - 300666, - 84691, - 3612 - ], - [ - 293011, - 74542, - 432 - ], - [ - 307471, - 85698, - 432 - ], - [ - 291060, - 75731, - 432 - ], - [ - 290977, - 75595, - 432 - ], - [ - 290849, - 75673, - 432 - ], - [ - 290704, - 75761, - 432 - ], - [ - 290745, - 75829, - 432 - ], - [ - 289995, - 76287, - 432 - ], - [ - 289953, - 76218, - 432 - ], - [ - 289423, - 76538, - 432 - ], - [ - 300666, - 84691, - 432 - ], - [ - 300666, - 84691, - 3482 - ], - [ - 303094, - 86446, - 432 - ], - [ - 303094, - 86446, - 512 - ], - [ - 303094, - 86446, - 3482 - ], - [ - 303152, - 86371, - 432 - ], - [ - 305534, - 88209, - 432 - ], - [ - 297421, - 71719, - 3632 - ], - [ - 293167, - 74447, - 3632 - ], - [ - 293211, - 74232, - 3632 - ], - [ - 293083, - 74310, - 3632 - ], - [ - 308700, - 83175, - 3632 - ], - [ - 307471, - 85698, - 3632 - ], - [ - 293011, - 74542, - 3632 - ], - [ - 309150, - 83523, - 3632 - ], - [ - 307585, - 85551, - 3632 - ], - [ - 310121, - 81333, - 3632 - ], - [ - 297421, - 71719, - 432 - ], - [ - 310121, - 81333, - 432 - ], - [ - 297421, - 71719, - 3212 - ], - [ - 310121, - 81333, - 3212 - ], - [ - 293211, - 74232, - 432 - ], - [ - 293083, - 74310, - 432 - ], - [ - 293167, - 74447, - 432 - ], - [ - 307585, - 85551, - 432 - ], - [ - 309150, - 83523, - 432 - ], - [ - 308700, - 83175, - 432 - ], - [ - 301931, - 87954, - 3482 - ], - [ - 301057, - 87279, - 3482 - ], - [ - 299350, - 89491, - 3482 - ], - [ - 299803, - 85875, - 3482 - ], - [ - 294815, - 92804, - 3482 - ], - [ - 295527, - 93338, - 3482 - ], - [ - 298894, - 95920, - 3482 - ], - [ - 301998, - 91535, - 3482 - ], - [ - 294779, - 92852, - 3482 - ], - [ - 295491, - 93386, - 3482 - ], - [ - 299350, - 89491, - 512 - ], - [ - 301998, - 91535, - 512 - ], - [ - 301998, - 91535, - 522 - ], - [ - 301057, - 87279, - 512 - ], - [ - 301931, - 87954, - 512 - ], - [ - 299707, - 85805, - 512 - ], - [ - 294575, - 92699, - 512 - ], - [ - 294779, - 92852, - 512 - ], - [ - 294815, - 92804, - 512 - ], - [ - 295527, - 93338, - 512 - ], - [ - 295491, - 93386, - 512 - ], - [ - 298894, - 95920, - 512 - ], - [ - 298894, - 95920, - 522 - ], - [ - 309662, - 74799, - 3212 - ], - [ - 305046, - 72056, - 3212 - ], - [ - 306096, - 72012, - 3212 - ], - [ - 301740, - 70990, - 3212 - ], - [ - 303297, - 70652, - 3212 - ], - [ - 302106, - 69696, - 3212 - ], - [ - 301213, - 69791, - 3212 - ], - [ - 301961, - 69411, - 3212 - ], - [ - 301318, - 70108, - 3212 - ], - [ - 301115, - 69841, - 3212 - ], - [ - 301265, - 70135, - 3212 - ], - [ - 300849, - 71465, - 3212 - ], - [ - 300485, - 71174, - 3212 - ], - [ - 300020, - 70398, - 3212 - ], - [ - 312896, - 77738, - 3212 - ], - [ - 313106, - 77491, - 3212 - ], - [ - 309662, - 74799, - 422 - ], - [ - 313106, - 77491, - 422 - ], - [ - 306096, - 72012, - 422 - ], - [ - 305046, - 72056, - 422 - ], - [ - 303297, - 70652, - 422 - ], - [ - 302106, - 69696, - 422 - ], - [ - 301961, - 69411, - 422 - ], - [ - 297421, - 71719, - 422 - ], - [ - 310121, - 81333, - 422 - ], - [ - 312896, - 77738, - 422 - ], - [ - 308637, - 91517, - 6312 - ], - [ - 304038, - 99752, - 6312 - ], - [ - 301998, - 91535, - 6312 - ], - [ - 311966, - 89166, - 6312 - ], - [ - 309245, - 90729, - 6312 - ], - [ - 310164, - 87775, - 6312 - ], - [ - 308392, - 90071, - 6312 - ], - [ - 304485, - 88313, - 6312 - ], - [ - 298894, - 95920, - 6312 - ], - [ - 311966, - 89166, - 522 - ], - [ - 304038, - 99752, - 522 - ], - [ - 310164, - 87775, - 522 - ], - [ - 308392, - 90071, - 522 - ], - [ - 309245, - 90729, - 522 - ], - [ - 308637, - 91517, - 522 - ], - [ - 304485, - 88313, - 522 - ], - [ - 324212, - 70905, - 6592 - ], - [ - 322787, - 72695, - 6592 - ], - [ - 315416, - 63807, - 6592 - ], - [ - 318955, - 77641, - 6592 - ], - [ - 309811, - 66170, - 6592 - ], - [ - 307588, - 68879, - 6592 - ], - [ - 318753, - 77889, - 6592 - ], - [ - 322904, - 72789, - 6592 - ], - [ - 309811, - 66170, - 422 - ], - [ - 307588, - 68879, - 422 - ], - [ - 318753, - 77889, - 422 - ], - [ - 331953, - 177538, - 6512 - ], - [ - 332072, - 177660, - 6512 - ], - [ - 328396, - 181227, - 6512 - ], - [ - 321097, - 173980, - 6512 - ], - [ - 325634, - 169480, - 6512 - ], - [ - 332644, - 176868, - 6512 - ], - [ - 332956, - 176802, - 6512 - ], - [ - 332762, - 176990, - 6512 - ], - [ - 325634, - 169480, - 592 - ], - [ - 332956, - 176802, - 592 - ], - [ - 321097, - 173980, - 592 - ], - [ - 321097, - 173980, - 602 - ], - [ - 321097, - 173980, - 4962 - ], - [ - 328396, - 181227, - 592 - ], - [ - 328396, - 181227, - 602 - ], - [ - 328396, - 181227, - 4962 - ], - [ - 332072, - 177660, - 592 - ], - [ - 331953, - 177538, - 592 - ], - [ - 332644, - 176868, - 592 - ], - [ - 332762, - 176990, - 592 - ], - [ - 316455, - 176669, - 4962 - ], - [ - 320140, - 173015, - 4962 - ], - [ - 317163, - 177483, - 4962 - ], - [ - 316405, - 176719, - 4962 - ], - [ - 325542, - 183891, - 4962 - ], - [ - 324657, - 184882, - 4962 - ], - [ - 324774, - 184631, - 4962 - ], - [ - 324843, - 184703, - 4962 - ], - [ - 325611, - 183963, - 4962 - ], - [ - 328424, - 181255, - 4962 - ], - [ - 320140, - 173015, - 602 - ], - [ - 316455, - 176669, - 602 - ], - [ - 316405, - 176719, - 602 - ], - [ - 317163, - 177483, - 602 - ], - [ - 317163, - 177483, - 612 - ], - [ - 317163, - 177483, - 3442 - ], - [ - 324657, - 184882, - 602 - ], - [ - 324657, - 184882, - 612 - ], - [ - 324657, - 184882, - 3442 - ], - [ - 324843, - 184703, - 602 - ], - [ - 324774, - 184631, - 602 - ], - [ - 325542, - 183891, - 602 - ], - [ - 325611, - 183963, - 602 - ], - [ - 328424, - 181255, - 602 - ], - [ - 288911, - 148046, - 3492 - ], - [ - 282802, - 156786, - 3492 - ], - [ - 287275, - 146884, - 3492 - ], - [ - 288786, - 144779, - 3492 - ], - [ - 290394, - 145896, - 3492 - ], - [ - 279627, - 154543, - 3492 - ], - [ - 285741, - 145795, - 3492 - ], - [ - 288911, - 148046, - 852 - ], - [ - 282802, - 156786, - 852 - ], - [ - 288911, - 148046, - 872 - ], - [ - 290394, - 145896, - 852 - ], - [ - 288786, - 144779, - 852 - ], - [ - 288786, - 144779, - 3392 - ], - [ - 287275, - 146884, - 852 - ], - [ - 287275, - 146884, - 1022 - ], - [ - 287275, - 146884, - 3392 - ], - [ - 285741, - 145795, - 852 - ], - [ - 285741, - 145795, - 1022 - ], - [ - 285741, - 145795, - 3392 - ], - [ - 288907, - 151557, - 3692 - ], - [ - 288911, - 148046, - 3692 - ], - [ - 291397, - 147971, - 3692 - ], - [ - 290602, - 147418, - 3692 - ], - [ - 290394, - 145896, - 3692 - ], - [ - 291247, - 146489, - 3692 - ], - [ - 282802, - 156786, - 3692 - ], - [ - 290368, - 152572, - 3692 - ], - [ - 285895, - 158972, - 3692 - ], - [ - 290368, - 152572, - 872 - ], - [ - 290368, - 152572, - 3482 - ], - [ - 285895, - 158972, - 872 - ], - [ - 285895, - 158972, - 3482 - ], - [ - 292764, - 174709, - 3382 - ], - [ - 286234, - 183959, - 3382 - ], - [ - 287795, - 175352, - 3382 - ], - [ - 289759, - 172580, - 3382 - ], - [ - 283137, - 181760, - 3382 - ], - [ - 287725, - 175302, - 3382 - ], - [ - 286234, - 183959, - 752 - ], - [ - 283137, - 181760, - 752 - ], - [ - 289172, - 161287, - 3482 - ], - [ - 291133, - 158482, - 3482 - ], - [ - 292285, - 149829, - 3482 - ], - [ - 295561, - 152147, - 3482 - ], - [ - 293402, - 155236, - 3482 - ], - [ - 294120, - 179648, - 3392 - ], - [ - 289449, - 186241, - 3392 - ], - [ - 292613, - 178581, - 3392 - ], - [ - 293735, - 174008, - 3392 - ], - [ - 295145, - 175007, - 3392 - ], - [ - 294849, - 175425, - 3392 - ], - [ - 292764, - 174709, - 3392 - ], - [ - 286234, - 183959, - 3392 - ], - [ - 293142, - 174176, - 3392 - ], - [ - 293419, - 173784, - 3392 - ], - [ - 294120, - 179648, - 752 - ], - [ - 289449, - 186241, - 752 - ], - [ - 289449, - 186241, - 762 - ], - [ - 299743, - 178853, - 3472 - ], - [ - 292838, - 188647, - 3472 - ], - [ - 294120, - 179648, - 3472 - ], - [ - 296375, - 176466, - 3472 - ], - [ - 289449, - 186241, - 3472 - ], - [ - 299743, - 178853, - 762 - ], - [ - 292838, - 188647, - 762 - ], - [ - 292838, - 188647, - 772 - ], - [ - 299768, - 178870, - 3482 - ], - [ - 303258, - 177423, - 3482 - ], - [ - 301283, - 180136, - 3482 - ], - [ - 299036, - 183223, - 3482 - ], - [ - 301641, - 176246, - 3482 - ], - [ - 299743, - 178853, - 3482 - ], - [ - 292838, - 188647, - 3482 - ], - [ - 300669, - 184528, - 3482 - ], - [ - 295734, - 190703, - 3482 - ], - [ - 299036, - 183223, - 772 - ], - [ - 300669, - 184528, - 772 - ], - [ - 301283, - 180136, - 772 - ], - [ - 295734, - 190703, - 772 - ], - [ - 297606, - 163114, - 3692 - ], - [ - 297010, - 162788, - 3692 - ], - [ - 297055, - 162724, - 3692 - ], - [ - 306304, - 169098, - 3692 - ], - [ - 297419, - 167823, - 3692 - ], - [ - 294771, - 165948, - 3692 - ], - [ - 303966, - 172337, - 3692 - ], - [ - 297606, - 163114, - 3642 - ], - [ - 306304, - 169098, - 3642 - ], - [ - 297419, - 167823, - 3542 - ], - [ - 303966, - 172337, - 3542 - ], - [ - 295659, - 171292, - 3542 - ], - [ - 295170, - 170939, - 3542 - ], - [ - 301616, - 175592, - 3542 - ], - [ - 297419, - 167823, - 902 - ], - [ - 303966, - 172337, - 902 - ], - [ - 313672, - 195421, - 3402 - ], - [ - 312750, - 196309, - 3402 - ], - [ - 307093, - 187853, - 3402 - ], - [ - 300705, - 194189, - 3402 - ], - [ - 297256, - 191823, - 3402 - ], - [ - 300572, - 192262, - 3402 - ], - [ - 298508, - 190251, - 3402 - ], - [ - 298658, - 190397, - 3402 - ], - [ - 301782, - 193120, - 3402 - ], - [ - 309869, - 199084, - 3402 - ], - [ - 309946, - 199163, - 3402 - ], - [ - 309485, - 199607, - 3402 - ], - [ - 307403, - 200439, - 3402 - ], - [ - 307829, - 200837, - 3402 - ], - [ - 308461, - 200517, - 3402 - ], - [ - 308041, - 201075, - 3402 - ], - [ - 307816, - 200852, - 3402 - ], - [ - 308537, - 200596, - 3402 - ], - [ - 309408, - 199528, - 3402 - ], - [ - 311310, - 197697, - 3402 - ], - [ - 314159, - 194917, - 3402 - ], - [ - 310813, - 198175, - 3402 - ], - [ - 310889, - 198254, - 3402 - ], - [ - 311386, - 197776, - 3402 - ], - [ - 312246, - 196795, - 3402 - ], - [ - 312826, - 196388, - 3402 - ], - [ - 312322, - 196874, - 3402 - ], - [ - 314253, - 195014, - 3402 - ], - [ - 313748, - 195500, - 3402 - ], - [ - 307093, - 187853, - 762 - ], - [ - 314159, - 194917, - 762 - ], - [ - 301782, - 193120, - 762 - ], - [ - 300572, - 192262, - 762 - ], - [ - 298658, - 190397, - 762 - ], - [ - 298508, - 190251, - 762 - ], - [ - 297256, - 191823, - 762 - ], - [ - 300705, - 194189, - 762 - ], - [ - 307403, - 200439, - 762 - ], - [ - 307829, - 200837, - 762 - ], - [ - 307816, - 200852, - 762 - ], - [ - 308041, - 201075, - 762 - ], - [ - 308537, - 200596, - 762 - ], - [ - 308461, - 200517, - 762 - ], - [ - 309408, - 199528, - 762 - ], - [ - 309485, - 199607, - 762 - ], - [ - 309946, - 199163, - 762 - ], - [ - 309869, - 199084, - 762 - ], - [ - 310813, - 198175, - 762 - ], - [ - 310889, - 198254, - 762 - ], - [ - 311386, - 197776, - 762 - ], - [ - 311310, - 197697, - 762 - ], - [ - 312246, - 196795, - 762 - ], - [ - 312322, - 196874, - 762 - ], - [ - 312826, - 196388, - 762 - ], - [ - 312750, - 196309, - 762 - ], - [ - 313672, - 195421, - 762 - ], - [ - 313748, - 195500, - 762 - ], - [ - 314253, - 195014, - 762 - ], - [ - 299111, - 159430, - 3642 - ], - [ - 308584, - 165940, - 3642 - ], - [ - 299236, - 160814, - 3642 - ], - [ - 298500, - 160292, - 3642 - ], - [ - 299111, - 159430, - 912 - ], - [ - 308584, - 165940, - 912 - ], - [ - 299111, - 159430, - 3452 - ], - [ - 308584, - 165940, - 3452 - ], - [ - 313000, - 159823, - 3452 - ], - [ - 311127, - 162417, - 3452 - ], - [ - 308988, - 156802, - 3452 - ], - [ - 313059, - 159741, - 3452 - ], - [ - 310952, - 162660, - 3452 - ], - [ - 304385, - 157918, - 3452 - ], - [ - 306492, - 155000, - 3452 - ], - [ - 301498, - 155806, - 3452 - ], - [ - 308744, - 165718, - 3452 - ], - [ - 299036, - 159377, - 3452 - ], - [ - 298942, - 159308, - 3452 - ], - [ - 313000, - 159823, - 3352 - ], - [ - 311127, - 162417, - 3352 - ], - [ - 310485, - 184487, - 4512 - ], - [ - 317462, - 191694, - 4512 - ], - [ - 317294, - 191858, - 4512 - ], - [ - 307093, - 187853, - 4512 - ], - [ - 314159, - 194917, - 4512 - ], - [ - 310485, - 184487, - 662 - ], - [ - 317462, - 191694, - 662 - ], - [ - 310485, - 184487, - 3412 - ], - [ - 317462, - 191694, - 3412 - ], - [ - 307093, - 187853, - 662 - ], - [ - 314159, - 194917, - 662 - ], - [ - 317294, - 191858, - 662 - ], - [ - 314327, - 182023, - 3412 - ], - [ - 320784, - 188453, - 3412 - ], - [ - 312691, - 180394, - 3412 - ], - [ - 309519, - 183489, - 3412 - ], - [ - 314327, - 182023, - 642 - ], - [ - 320784, - 188453, - 642 - ], - [ - 312691, - 180394, - 642 - ], - [ - 309519, - 183489, - 642 - ], - [ - 310485, - 184487, - 642 - ], - [ - 317462, - 191694, - 642 - ], - [ - 324384, - 184979, - 3442 - ], - [ - 316408, - 179960, - 3442 - ], - [ - 315544, - 179089, - 3442 - ], - [ - 320784, - 188453, - 3442 - ], - [ - 314327, - 182023, - 3442 - ], - [ - 323662, - 185680, - 3442 - ], - [ - 320878, - 188549, - 3442 - ], - [ - 323746, - 185766, - 3442 - ], - [ - 324468, - 185065, - 3442 - ], - [ - 315544, - 179089, - 612 - ], - [ - 316408, - 179960, - 612 - ], - [ - 314327, - 182023, - 612 - ], - [ - 320784, - 188453, - 612 - ], - [ - 320878, - 188549, - 612 - ], - [ - 323746, - 185766, - 612 - ], - [ - 323662, - 185680, - 612 - ], - [ - 324384, - 184979, - 612 - ], - [ - 324468, - 185065, - 612 - ], - [ - 255553, - 149470, - 6002 - ], - [ - 249682, - 157867, - 6002 - ], - [ - 250776, - 148722, - 6002 - ], - [ - 252027, - 146963, - 6002 - ], - [ - 246297, - 155387, - 6002 - ], - [ - 255553, - 149470, - 632 - ], - [ - 249682, - 157867, - 632 - ], - [ - 249682, - 157867, - 642 - ], - [ - 255553, - 149470, - 5062 - ], - [ - 249682, - 157867, - 5062 - ], - [ - 250776, - 148722, - 3492 - ], - [ - 246297, - 155387, - 632 - ], - [ - 246297, - 155387, - 3492 - ], - [ - 259601, - 152388, - 5062 - ], - [ - 261957, - 148485, - 5062 - ], - [ - 262285, - 148725, - 5062 - ], - [ - 253525, - 160683, - 5062 - ], - [ - 258146, - 145761, - 5062 - ], - [ - 259601, - 152388, - 642 - ], - [ - 253525, - 160683, - 642 - ], - [ - 259601, - 152388, - 732 - ], - [ - 259601, - 152388, - 3212 - ], - [ - 253525, - 160683, - 3212 - ], - [ - 262285, - 148725, - 642 - ], - [ - 262285, - 148725, - 732 - ], - [ - 262285, - 148725, - 3212 - ], - [ - 261957, - 148485, - 642 - ], - [ - 261957, - 148485, - 3212 - ], - [ - 261558, - 155572, - 3212 - ], - [ - 262506, - 154431, - 3212 - ], - [ - 259635, - 157930, - 3212 - ], - [ - 256062, - 162600, - 3212 - ], - [ - 261558, - 155572, - 642 - ], - [ - 259635, - 157930, - 642 - ], - [ - 262506, - 154431, - 642 - ], - [ - 262506, - 154431, - 732 - ], - [ - 256062, - 162600, - 642 - ], - [ - 267792, - 156450, - 3202 - ], - [ - 260949, - 166074, - 3202 - ], - [ - 263965, - 158748, - 3202 - ], - [ - 266311, - 155371, - 3202 - ], - [ - 257683, - 163769, - 3202 - ], - [ - 262287, - 157536, - 3202 - ], - [ - 262204, - 157476, - 3202 - ], - [ - 267792, - 156450, - 672 - ], - [ - 260949, - 166074, - 672 - ], - [ - 260949, - 166074, - 682 - ], - [ - 257683, - 163769, - 672 - ], - [ - 263821, - 152709, - 3212 - ], - [ - 265460, - 150560, - 3212 - ], - [ - 265672, - 150282, - 3212 - ], - [ - 263454, - 146531, - 3212 - ], - [ - 266773, - 148837, - 3212 - ], - [ - 262531, - 154401, - 3212 - ], - [ - 265460, - 150560, - 732 - ], - [ - 263821, - 152709, - 732 - ], - [ - 265672, - 150282, - 732 - ], - [ - 266773, - 148837, - 732 - ], - [ - 266773, - 148837, - 742 - ], - [ - 263454, - 146531, - 732 - ], - [ - 262531, - 154401, - 732 - ], - [ - 270365, - 159537, - 3382 - ], - [ - 264082, - 168286, - 3382 - ], - [ - 268788, - 158399, - 3382 - ], - [ - 267792, - 156450, - 3382 - ], - [ - 269351, - 157584, - 3382 - ], - [ - 260949, - 166074, - 3382 - ], - [ - 270365, - 159537, - 682 - ], - [ - 264082, - 168286, - 682 - ], - [ - 264082, - 168286, - 712 - ], - [ - 270365, - 159537, - 3372 - ], - [ - 264082, - 168286, - 3372 - ], - [ - 274059, - 160802, - 3372 - ], - [ - 267277, - 170541, - 3372 - ], - [ - 272044, - 160688, - 3372 - ], - [ - 272689, - 159744, - 3372 - ], - [ - 270580, - 159692, - 3372 - ], - [ - 270638, - 159611, - 3372 - ], - [ - 270451, - 159599, - 3372 - ], - [ - 274059, - 160802, - 712 - ], - [ - 267277, - 170541, - 712 - ], - [ - 267277, - 170541, - 732 - ], - [ - 274059, - 160802, - 3312 - ], - [ - 267277, - 170541, - 3312 - ], - [ - 276535, - 160850, - 3312 - ], - [ - 275055, - 162889, - 3312 - ], - [ - 273287, - 165325, - 3312 - ], - [ - 274359, - 160424, - 3312 - ], - [ - 274992, - 159626, - 3312 - ], - [ - 274887, - 166422, - 3312 - ], - [ - 270371, - 172725, - 3312 - ], - [ - 274887, - 166422, - 3302 - ], - [ - 270371, - 172725, - 732 - ], - [ - 270371, - 172725, - 3302 - ], - [ - 280410, - 165385, - 3302 - ], - [ - 273617, - 175016, - 3302 - ], - [ - 278215, - 165241, - 3302 - ], - [ - 278937, - 164294, - 3302 - ], - [ - 276699, - 164113, - 3302 - ], - [ - 273617, - 175016, - 732 - ], - [ - 283719, - 167628, - 3302 - ], - [ - 276879, - 177318, - 3302 - ], - [ - 282042, - 166469, - 3302 - ], - [ - 281125, - 165914, - 3302 - ], - [ - 281185, - 165834, - 3302 - ], - [ - 276879, - 177318, - 732 - ], - [ - 286221, - 170789, - 3482 - ], - [ - 279959, - 179504, - 3482 - ], - [ - 284627, - 169698, - 3482 - ], - [ - 284645, - 169673, - 3482 - ], - [ - 276879, - 177318, - 3482 - ], - [ - 283584, - 168997, - 3482 - ], - [ - 283719, - 167628, - 3482 - ], - [ - 284266, - 168007, - 3482 - ], - [ - 286221, - 170789, - 722 - ], - [ - 279959, - 179504, - 722 - ], - [ - 279959, - 179504, - 742 - ], - [ - 283719, - 167628, - 722 - ], - [ - 276879, - 177318, - 722 - ], - [ - 287725, - 175302, - 3572 - ], - [ - 283137, - 181760, - 3572 - ], - [ - 286184, - 174211, - 3572 - ], - [ - 286221, - 170789, - 3572 - ], - [ - 288447, - 171017, - 3572 - ], - [ - 279959, - 179504, - 3572 - ], - [ - 286858, - 169891, - 3572 - ], - [ - 287725, - 175302, - 742 - ], - [ - 283137, - 181760, - 742 - ], - [ - 243206, - 140143, - 3472 - ], - [ - 241698, - 137373, - 3472 - ], - [ - 244041, - 139015, - 3472 - ], - [ - 237003, - 148528, - 3472 - ], - [ - 240434, - 139151, - 3472 - ], - [ - 233982, - 146308, - 3472 - ], - [ - 243206, - 140143, - 542 - ], - [ - 237003, - 148528, - 542 - ], - [ - 237003, - 148528, - 562 - ], - [ - 233982, - 146308, - 542 - ], - [ - 246198, - 142342, - 3472 - ], - [ - 240105, - 150808, - 3472 - ], - [ - 246198, - 142342, - 562 - ], - [ - 240105, - 150808, - 562 - ], - [ - 240105, - 150808, - 572 - ], - [ - 249189, - 144540, - 3482 - ], - [ - 243208, - 153088, - 3482 - ], - [ - 243152, - 153047, - 3482 - ], - [ - 240105, - 150808, - 3482 - ], - [ - 246198, - 142342, - 3482 - ], - [ - 249189, - 144540, - 572 - ], - [ - 243208, - 153088, - 572 - ], - [ - 243208, - 153088, - 602 - ], - [ - 243152, - 153047, - 572 - ], - [ - 249067, - 147507, - 3492 - ], - [ - 243208, - 153088, - 3492 - ], - [ - 251722, - 144918, - 3492 - ], - [ - 251072, - 145832, - 3492 - ], - [ - 250531, - 145447, - 3492 - ], - [ - 249854, - 143589, - 3492 - ], - [ - 249189, - 144540, - 3492 - ], - [ - 250776, - 148722, - 602 - ], - [ - 246297, - 155387, - 602 - ], - [ - 271791, - 135405, - 4442 - ], - [ - 272838, - 133968, - 4442 - ], - [ - 273004, - 136289, - 4442 - ], - [ - 274068, - 134829, - 4442 - ], - [ - 267552, - 130267, - 4442 - ], - [ - 269871, - 138042, - 4442 - ], - [ - 264198, - 134874, - 4442 - ], - [ - 269483, - 138574, - 4442 - ], - [ - 269777, - 138171, - 4442 - ], - [ - 269836, - 138090, - 4442 - ], - [ - 271791, - 135405, - 1062 - ], - [ - 269871, - 138042, - 1062 - ], - [ - 273004, - 136289, - 1062 - ], - [ - 269777, - 138171, - 1062 - ], - [ - 269836, - 138090, - 1062 - ], - [ - 288327, - 137900, - 3582 - ], - [ - 283106, - 139141, - 3582 - ], - [ - 288245, - 137842, - 3582 - ], - [ - 285377, - 135915, - 3582 - ], - [ - 285423, - 135849, - 3582 - ], - [ - 290251, - 142670, - 3582 - ], - [ - 293331, - 141434, - 3582 - ], - [ - 292843, - 144470, - 3582 - ], - [ - 289536, - 143700, - 3582 - ], - [ - 294409, - 142215, - 3582 - ], - [ - 293424, - 141500, - 3582 - ], - [ - 293343, - 141443, - 3582 - ], - [ - 288327, - 137900, - 952 - ], - [ - 293331, - 141434, - 952 - ], - [ - 288245, - 137842, - 952 - ], - [ - 285423, - 135849, - 952 - ], - [ - 285377, - 135915, - 952 - ], - [ - 283106, - 139141, - 952 - ], - [ - 283106, - 139141, - 1022 - ], - [ - 283106, - 139141, - 3392 - ], - [ - 289536, - 143700, - 952 - ], - [ - 289536, - 143700, - 3392 - ], - [ - 293424, - 141500, - 952 - ], - [ - 293343, - 141443, - 952 - ], - [ - 279265, - 141197, - 3772 - ], - [ - 273239, - 150030, - 3772 - ], - [ - 278332, - 140535, - 3772 - ], - [ - 269953, - 147709, - 3772 - ], - [ - 276086, - 138940, - 3772 - ], - [ - 269921, - 147686, - 3772 - ], - [ - 279265, - 141197, - 852 - ], - [ - 273239, - 150030, - 852 - ], - [ - 279265, - 141197, - 902 - ], - [ - 279265, - 141197, - 1022 - ], - [ - 279265, - 141197, - 3392 - ], - [ - 279265, - 141197, - 3662 - ], - [ - 273239, - 150030, - 3662 - ], - [ - 278332, - 140535, - 852 - ], - [ - 278332, - 140535, - 1022 - ], - [ - 278332, - 140535, - 3392 - ], - [ - 276086, - 138940, - 852 - ], - [ - 269921, - 147686, - 852 - ], - [ - 282413, - 143432, - 3392 - ], - [ - 278842, - 139800, - 3392 - ], - [ - 281394, - 141573, - 3392 - ], - [ - 281394, - 141573, - 1022 - ], - [ - 278842, - 139800, - 1022 - ], - [ - 282413, - 143432, - 1022 - ], - [ - 266866, - 148715, - 4602 - ], - [ - 263454, - 146531, - 4602 - ], - [ - 267637, - 147718, - 4602 - ], - [ - 266773, - 148837, - 4602 - ], - [ - 271984, - 141966, - 4602 - ], - [ - 268012, - 140591, - 4602 - ], - [ - 268771, - 139552, - 4602 - ], - [ - 266866, - 148715, - 742 - ], - [ - 267637, - 147718, - 742 - ], - [ - 271984, - 141966, - 742 - ], - [ - 268771, - 139552, - 742 - ], - [ - 268012, - 140591, - 742 - ], - [ - 282413, - 143432, - 3662 - ], - [ - 276392, - 152258, - 3662 - ], - [ - 282413, - 143432, - 902 - ], - [ - 282429, - 146923, - 3692 - ], - [ - 279627, - 154543, - 3692 - ], - [ - 276392, - 152258, - 3692 - ], - [ - 282413, - 143432, - 3692 - ], - [ - 283157, - 145876, - 3692 - ], - [ - 283168, - 147437, - 3692 - ], - [ - 285741, - 145795, - 3692 - ], - [ - 283896, - 146390, - 3692 - ], - [ - 285741, - 145795, - 842 - ], - [ - 279627, - 154543, - 842 - ], - [ - 282413, - 143432, - 842 - ], - [ - 276392, - 152258, - 842 - ], - [ - 283157, - 145876, - 842 - ], - [ - 282429, - 146923, - 842 - ], - [ - 283896, - 146390, - 842 - ], - [ - 283168, - 147437, - 842 - ], - [ - 405917, - 99519, - 9022 - ], - [ - 408923, - 102395, - 9022 - ], - [ - 408845, - 102478, - 9022 - ], - [ - 405841, - 106035, - 9022 - ], - [ - 405800, - 99642, - 9022 - ], - [ - 404087, - 98098, - 9022 - ], - [ - 400383, - 95053, - 9022 - ], - [ - 400456, - 94957, - 9022 - ], - [ - 397473, - 98888, - 9022 - ], - [ - 409113, - 102730, - 9022 - ], - [ - 400456, - 94957, - 732 - ], - [ - 397473, - 98888, - 732 - ], - [ - 397473, - 98888, - 3372 - ], - [ - 405841, - 106035, - 732 - ], - [ - 405841, - 106035, - 752 - ], - [ - 405841, - 106035, - 3372 - ], - [ - 409113, - 102730, - 732 - ], - [ - 408845, - 102478, - 732 - ], - [ - 413870, - 97872, - 4142 - ], - [ - 413559, - 98178, - 4142 - ], - [ - 410291, - 94649, - 4142 - ], - [ - 407900, - 97382, - 4142 - ], - [ - 407871, - 97410, - 4142 - ], - [ - 407754, - 97287, - 4142 - ], - [ - 411088, - 100076, - 4142 - ], - [ - 411000, - 100173, - 4142 - ], - [ - 411371, - 100331, - 4142 - ], - [ - 413870, - 97872, - 652 - ], - [ - 413559, - 98178, - 652 - ], - [ - 411088, - 100076, - 652 - ], - [ - 411371, - 100331, - 652 - ], - [ - 418954, - 79038, - 4122 - ], - [ - 426367, - 84251, - 4122 - ], - [ - 419920, - 84639, - 4122 - ], - [ - 416639, - 82337, - 4122 - ], - [ - 424238, - 87669, - 4122 - ], - [ - 426552, - 85392, - 4122 - ], - [ - 427122, - 84831, - 4122 - ], - [ - 424238, - 87669, - 652 - ], - [ - 426552, - 85392, - 652 - ], - [ - 427122, - 84831, - 652 - ], - [ - 406914, - 70571, - 4302 - ], - [ - 404590, - 73882, - 4302 - ], - [ - 401530, - 71735, - 4302 - ], - [ - 403855, - 68420, - 4302 - ], - [ - 403855, - 68420, - 4292 - ], - [ - 401530, - 71735, - 4292 - ], - [ - 409973, - 72722, - 4332 - ], - [ - 407652, - 76031, - 4332 - ], - [ - 404590, - 73882, - 4332 - ], - [ - 406914, - 70571, - 4332 - ], - [ - 409973, - 72722, - 4232 - ], - [ - 407652, - 76031, - 4232 - ], - [ - 413033, - 74874, - 4232 - ], - [ - 410714, - 78179, - 4232 - ], - [ - 413033, - 74874, - 4222 - ], - [ - 410714, - 78179, - 4222 - ], - [ - 409973, - 72722, - 632 - ], - [ - 407652, - 76031, - 632 - ], - [ - 412302, - 92558, - 4262 - ], - [ - 415940, - 95834, - 4262 - ], - [ - 413870, - 97872, - 4262 - ], - [ - 410291, - 94649, - 4262 - ], - [ - 415940, - 95834, - 642 - ], - [ - 410291, - 94649, - 642 - ], - [ - 413870, - 97872, - 642 - ], - [ - 416091, - 77025, - 4222 - ], - [ - 413774, - 80327, - 4222 - ], - [ - 416091, - 77025, - 4132 - ], - [ - 413774, - 80327, - 4132 - ], - [ - 414314, - 90467, - 4272 - ], - [ - 418011, - 93796, - 4272 - ], - [ - 415940, - 95834, - 4272 - ], - [ - 412302, - 92558, - 4272 - ], - [ - 418011, - 93796, - 642 - ], - [ - 418954, - 79038, - 4132 - ], - [ - 416639, - 82337, - 4132 - ], - [ - 418954, - 79038, - 632 - ], - [ - 416639, - 82337, - 632 - ], - [ - 384643, - 76680, - 4262 - ], - [ - 382678, - 79467, - 4262 - ], - [ - 379970, - 74992, - 4262 - ], - [ - 380006, - 74941, - 4262 - ], - [ - 380722, - 73916, - 4262 - ], - [ - 378838, - 76596, - 4262 - ], - [ - 378738, - 76596, - 4262 - ], - [ - 384643, - 76680, - 682 - ], - [ - 382678, - 79467, - 4182 - ], - [ - 380722, - 73916, - 682 - ], - [ - 378738, - 76596, - 4182 - ], - [ - 386659, - 73820, - 4282 - ], - [ - 384643, - 76680, - 4282 - ], - [ - 382497, - 71375, - 4282 - ], - [ - 382727, - 71047, - 4282 - ], - [ - 380722, - 73916, - 4282 - ], - [ - 386659, - 73820, - 4262 - ], - [ - 382727, - 71047, - 4262 - ], - [ - 388676, - 70959, - 4262 - ], - [ - 384732, - 68178, - 4262 - ], - [ - 386659, - 73820, - 682 - ], - [ - 388676, - 70959, - 4212 - ], - [ - 384732, - 68178, - 4212 - ], - [ - 382727, - 71047, - 682 - ], - [ - 390692, - 68098, - 4212 - ], - [ - 384784, - 68103, - 4212 - ], - [ - 386736, - 65309, - 4212 - ], - [ - 388676, - 70959, - 672 - ], - [ - 384732, - 68178, - 672 - ], - [ - 400796, - 66269, - 4302 - ], - [ - 398468, - 69586, - 4302 - ], - [ - 395406, - 67438, - 4302 - ], - [ - 397736, - 64117, - 4302 - ], - [ - 400796, - 66269, - 4292 - ], - [ - 398468, - 69586, - 4292 - ], - [ - 397736, - 64117, - 642 - ], - [ - 397736, - 64117, - 3942 - ], - [ - 395406, - 67438, - 642 - ], - [ - 395406, - 67438, - 3942 - ], - [ - 392563, - 65443, - 3942 - ], - [ - 394565, - 62132, - 3942 - ], - [ - 394680, - 61968, - 3942 - ], - [ - 392348, - 65292, - 3942 - ], - [ - 394565, - 62132, - 652 - ], - [ - 392348, - 65292, - 652 - ], - [ - 362805, - 59688, - 3182 - ], - [ - 365314, - 59725, - 3182 - ], - [ - 364394, - 61047, - 3182 - ], - [ - 354119, - 51666, - 3182 - ], - [ - 349519, - 53341, - 3182 - ], - [ - 349436, - 53073, - 3182 - ], - [ - 359019, - 59913, - 3182 - ], - [ - 360434, - 58039, - 3182 - ], - [ - 362686, - 59859, - 3182 - ], - [ - 354119, - 51666, - 342 - ], - [ - 365314, - 59725, - 342 - ], - [ - 354119, - 51666, - 3172 - ], - [ - 365314, - 59725, - 3172 - ], - [ - 349436, - 53073, - 342 - ], - [ - 349519, - 53341, - 342 - ], - [ - 359019, - 59913, - 342 - ], - [ - 360434, - 58039, - 342 - ], - [ - 362805, - 59688, - 342 - ], - [ - 362686, - 59859, - 342 - ], - [ - 364394, - 61047, - 342 - ], - [ - 372515, - 62210, - 3172 - ], - [ - 371615, - 63504, - 3172 - ], - [ - 369304, - 62501, - 3172 - ], - [ - 359675, - 49981, - 3172 - ], - [ - 367241, - 55868, - 3172 - ], - [ - 365988, - 57669, - 3172 - ], - [ - 371331, - 63912, - 3172 - ], - [ - 371615, - 63504, - 332 - ], - [ - 371615, - 63504, - 3102 - ], - [ - 359675, - 49981, - 332 - ], - [ - 354119, - 51666, - 332 - ], - [ - 365314, - 59725, - 332 - ], - [ - 369304, - 62501, - 332 - ], - [ - 369304, - 62501, - 522 - ], - [ - 369304, - 62501, - 3102 - ], - [ - 371331, - 63912, - 332 - ], - [ - 371331, - 63912, - 522 - ], - [ - 371331, - 63912, - 3102 - ], - [ - 359792, - 64490, - 2902 - ], - [ - 359744, - 64561, - 2902 - ], - [ - 359559, - 64329, - 2902 - ], - [ - 356619, - 62423, - 2902 - ], - [ - 360748, - 62613, - 2902 - ], - [ - 357075, - 60038, - 2902 - ], - [ - 355806, - 61882, - 2902 - ], - [ - 355988, - 61617, - 2902 - ], - [ - 356045, - 61535, - 2902 - ], - [ - 359688, - 64644, - 2902 - ], - [ - 359610, - 64760, - 2902 - ], - [ - 356518, - 62628, - 2902 - ], - [ - 359792, - 64490, - 452 - ], - [ - 359744, - 64561, - 452 - ], - [ - 359559, - 64329, - 452 - ], - [ - 360748, - 62613, - 452 - ], - [ - 357075, - 60038, - 452 - ], - [ - 356045, - 61535, - 452 - ], - [ - 369100, - 57162, - 3182 - ], - [ - 367241, - 55868, - 3182 - ], - [ - 369207, - 57009, - 3182 - ], - [ - 371945, - 56696, - 3182 - ], - [ - 374095, - 60410, - 3182 - ], - [ - 373456, - 54525, - 3182 - ], - [ - 375135, - 58915, - 3182 - ], - [ - 365076, - 48582, - 3182 - ], - [ - 359675, - 49981, - 3182 - ], - [ - 365016, - 48381, - 3182 - ], - [ - 397818, - 99643, - 3372 - ], - [ - 397380, - 99175, - 3372 - ], - [ - 397311, - 99102, - 3372 - ], - [ - 405045, - 105946, - 3372 - ], - [ - 395332, - 100813, - 3372 - ], - [ - 395909, - 101430, - 3372 - ], - [ - 394810, - 101263, - 3372 - ], - [ - 392851, - 102605, - 3372 - ], - [ - 391890, - 98542, - 3372 - ], - [ - 393822, - 103259, - 3372 - ], - [ - 390214, - 100111, - 3372 - ], - [ - 390141, - 100179, - 3372 - ], - [ - 401648, - 109135, - 3372 - ], - [ - 401074, - 109690, - 3372 - ], - [ - 404305, - 106662, - 3372 - ], - [ - 401940, - 109437, - 3372 - ], - [ - 404583, - 106949, - 3372 - ], - [ - 402128, - 109631, - 3372 - ], - [ - 404736, - 107108, - 3372 - ], - [ - 405764, - 106113, - 3372 - ], - [ - 405323, - 106234, - 3372 - ], - [ - 405476, - 106392, - 3372 - ], - [ - 393822, - 103259, - 752 - ], - [ - 404736, - 107108, - 752 - ], - [ - 404583, - 106949, - 752 - ], - [ - 404305, - 106662, - 752 - ], - [ - 405045, - 105946, - 752 - ], - [ - 405323, - 106234, - 752 - ], - [ - 405476, - 106392, - 752 - ], - [ - 405764, - 106113, - 752 - ], - [ - 383888, - 110994, - 6982 - ], - [ - 382717, - 109743, - 6982 - ], - [ - 392269, - 119285, - 6982 - ], - [ - 391801, - 119611, - 6982 - ], - [ - 388341, - 122997, - 6982 - ], - [ - 388411, - 123069, - 6982 - ], - [ - 389224, - 122147, - 6982 - ], - [ - 390918, - 120460, - 6982 - ], - [ - 389293, - 122219, - 6982 - ], - [ - 391015, - 120561, - 6982 - ], - [ - 391898, - 119711, - 6982 - ], - [ - 392303, - 119321, - 6982 - ], - [ - 392269, - 119285, - 692 - ], - [ - 383888, - 110994, - 6112 - ], - [ - 392269, - 119285, - 6112 - ], - [ - 388411, - 123069, - 692 - ], - [ - 388341, - 122997, - 692 - ], - [ - 389224, - 122147, - 692 - ], - [ - 389293, - 122219, - 692 - ], - [ - 391015, - 120561, - 692 - ], - [ - 390918, - 120460, - 692 - ], - [ - 391801, - 119611, - 692 - ], - [ - 391898, - 119711, - 692 - ], - [ - 392303, - 119321, - 692 - ], - [ - 395035, - 116259, - 6112 - ], - [ - 395202, - 116431, - 6112 - ], - [ - 394437, - 115644, - 6112 - ], - [ - 394882, - 116102, - 6112 - ], - [ - 394735, - 115951, - 6112 - ], - [ - 388179, - 106978, - 6112 - ], - [ - 395979, - 114144, - 6112 - ], - [ - 395753, - 114364, - 6112 - ], - [ - 388179, - 106978, - 5732 - ], - [ - 395979, - 114144, - 5732 - ], - [ - 383888, - 110994, - 312 - ], - [ - 392269, - 119285, - 312 - ], - [ - 416325, - 88376, - 4302 - ], - [ - 420082, - 91759, - 4302 - ], - [ - 418011, - 93796, - 4302 - ], - [ - 414314, - 90467, - 4302 - ], - [ - 416325, - 88376, - 642 - ], - [ - 420082, - 91759, - 642 - ], - [ - 420082, - 91759, - 652 - ], - [ - 416325, - 88376, - 4272 - ], - [ - 420082, - 91759, - 4272 - ], - [ - 418337, - 86285, - 4272 - ], - [ - 422153, - 89721, - 4272 - ], - [ - 422153, - 89721, - 652 - ], - [ - 419920, - 84639, - 4332 - ], - [ - 424238, - 87669, - 4332 - ], - [ - 422153, - 89721, - 4332 - ], - [ - 418337, - 86285, - 4332 - ], - [ - 432960, - 45174, - 4292 - ], - [ - 433299, - 45560, - 4292 - ], - [ - 433224, - 45625, - 4292 - ], - [ - 431114, - 42618, - 4292 - ], - [ - 431596, - 42966, - 4292 - ], - [ - 431177, - 43337, - 4292 - ], - [ - 431211, - 42531, - 4292 - ], - [ - 426108, - 36938, - 4292 - ], - [ - 426615, - 37167, - 4292 - ], - [ - 428745, - 39942, - 4292 - ], - [ - 428609, - 39425, - 4292 - ], - [ - 429015, - 39704, - 4292 - ], - [ - 428699, - 39346, - 4292 - ], - [ - 423096, - 34193, - 4292 - ], - [ - 423016, - 34104, - 4292 - ], - [ - 423443, - 33725, - 4292 - ], - [ - 418073, - 38651, - 4292 - ], - [ - 426370, - 36707, - 4292 - ], - [ - 426679, - 37057, - 4292 - ], - [ - 426590, - 37136, - 4292 - ], - [ - 421732, - 50614, - 4292 - ], - [ - 421861, - 50501, - 4292 - ], - [ - 422432, - 51415, - 4292 - ], - [ - 420131, - 36824, - 4292 - ], - [ - 426066, - 36891, - 4292 - ], - [ - 423820, - 34152, - 4292 - ], - [ - 423723, - 34238, - 4292 - ], - [ - 422782, - 34472, - 4292 - ], - [ - 427142, - 50939, - 4292 - ], - [ - 424720, - 49416, - 4292 - ], - [ - 422929, - 34341, - 4292 - ], - [ - 414465, - 41853, - 4292 - ], - [ - 421365, - 49971, - 4292 - ], - [ - 415139, - 49105, - 4292 - ], - [ - 417993, - 38561, - 4292 - ], - [ - 420052, - 36734, - 4292 - ], - [ - 413959, - 42142, - 4292 - ], - [ - 414385, - 41763, - 4292 - ], - [ - 410458, - 38548, - 4292 - ], - [ - 413284, - 48515, - 4292 - ], - [ - 410165, - 38247, - 4292 - ], - [ - 410332, - 38419, - 4292 - ], - [ - 403840, - 38847, - 4292 - ], - [ - 408747, - 36792, - 4292 - ], - [ - 403722, - 38422, - 4292 - ], - [ - 403661, - 38201, - 4292 - ], - [ - 414011, - 49259, - 4292 - ], - [ - 415014, - 49223, - 4292 - ], - [ - 419208, - 52341, - 4292 - ], - [ - 432863, - 45259, - 4292 - ], - [ - 426131, - 51031, - 4292 - ], - [ - 433141, - 45698, - 4292 - ], - [ - 432960, - 45174, - 742 - ], - [ - 433299, - 45560, - 742 - ], - [ - 432863, - 45259, - 742 - ], - [ - 431177, - 43337, - 742 - ], - [ - 431596, - 42966, - 742 - ], - [ - 431211, - 42531, - 742 - ], - [ - 431114, - 42618, - 742 - ], - [ - 428745, - 39942, - 742 - ], - [ - 429015, - 39704, - 742 - ], - [ - 428699, - 39346, - 742 - ], - [ - 428609, - 39425, - 742 - ], - [ - 426615, - 37167, - 742 - ], - [ - 426590, - 37136, - 742 - ], - [ - 426679, - 37057, - 742 - ], - [ - 426370, - 36707, - 742 - ], - [ - 426108, - 36938, - 742 - ], - [ - 426066, - 36891, - 742 - ], - [ - 423723, - 34238, - 742 - ], - [ - 423820, - 34152, - 742 - ], - [ - 423443, - 33725, - 742 - ], - [ - 423016, - 34104, - 742 - ], - [ - 423096, - 34193, - 742 - ], - [ - 422929, - 34341, - 742 - ], - [ - 422782, - 34472, - 742 - ], - [ - 420131, - 36824, - 742 - ], - [ - 420052, - 36734, - 742 - ], - [ - 417993, - 38561, - 742 - ], - [ - 418073, - 38651, - 742 - ], - [ - 414465, - 41853, - 742 - ], - [ - 414385, - 41763, - 742 - ], - [ - 413959, - 42142, - 742 - ], - [ - 410458, - 38548, - 742 - ], - [ - 410332, - 38419, - 742 - ], - [ - 410165, - 38247, - 742 - ], - [ - 408747, - 36792, - 742 - ], - [ - 403661, - 38201, - 742 - ], - [ - 403722, - 38422, - 742 - ], - [ - 403840, - 38847, - 742 - ], - [ - 413284, - 48515, - 742 - ], - [ - 414011, - 49259, - 742 - ], - [ - 415014, - 49223, - 742 - ], - [ - 415139, - 49105, - 742 - ], - [ - 433224, - 45625, - 742 - ], - [ - 377821, - 86359, - 4182 - ], - [ - 378153, - 77385, - 4182 - ], - [ - 374242, - 83471, - 4182 - ], - [ - 373810, - 83134, - 4182 - ], - [ - 377706, - 86522, - 4182 - ], - [ - 377802, - 87185, - 4182 - ], - [ - 377918, - 87064, - 4182 - ], - [ - 378076, - 86899, - 4182 - ], - [ - 382678, - 79467, - 572 - ], - [ - 378738, - 76596, - 572 - ], - [ - 373810, - 83134, - 572 - ], - [ - 374242, - 83471, - 572 - ], - [ - 377802, - 87185, - 572 - ], - [ - 377918, - 87064, - 572 - ], - [ - 378076, - 86899, - 572 - ], - [ - 377706, - 86522, - 572 - ], - [ - 374379, - 67423, - 3102 - ], - [ - 377489, - 67592, - 3102 - ], - [ - 376554, - 68936, - 3102 - ], - [ - 371346, - 68158, - 3102 - ], - [ - 373034, - 69360, - 3102 - ], - [ - 370850, - 68928, - 3102 - ], - [ - 367278, - 65413, - 3102 - ], - [ - 371160, - 68032, - 3102 - ], - [ - 372674, - 70180, - 3102 - ], - [ - 373163, - 69450, - 3102 - ], - [ - 367278, - 65413, - 522 - ], - [ - 393822, - 103259, - 5732 - ], - [ - 388358, - 106810, - 5732 - ], - [ - 392851, - 102605, - 5732 - ], - [ - 397371, - 112791, - 5732 - ], - [ - 396090, - 114036, - 5732 - ], - [ - 401074, - 109690, - 5732 - ], - [ - 400872, - 109886, - 5732 - ], - [ - 397669, - 113097, - 5732 - ], - [ - 401107, - 110618, - 5732 - ], - [ - 397816, - 113248, - 5732 - ], - [ - 397969, - 113406, - 5732 - ], - [ - 398136, - 113578, - 5732 - ], - [ - 401142, - 110654, - 5732 - ], - [ - 401164, - 110188, - 5732 - ], - [ - 401352, - 110382, - 5732 - ], - [ - 393822, - 103259, - 112 - ], - [ - 401074, - 109690, - 112 - ], - [ - 392851, - 102605, - 112 - ], - [ - 388179, - 106978, - 112 - ], - [ - 395979, - 114144, - 112 - ], - [ - 401142, - 110654, - 112 - ], - [ - 401107, - 110618, - 112 - ], - [ - 346747, - 54021, - 3432 - ], - [ - 340090, - 55962, - 3432 - ], - [ - 346717, - 53925, - 3432 - ], - [ - 355613, - 61186, - 3432 - ], - [ - 355550, - 61263, - 3432 - ], - [ - 349045, - 63188, - 3432 - ], - [ - 347666, - 65026, - 3432 - ], - [ - 347783, - 65119, - 3432 - ], - [ - 350608, - 67366, - 3432 - ], - [ - 346747, - 54021, - 342 - ], - [ - 355613, - 61186, - 342 - ], - [ - 346717, - 53925, - 342 - ], - [ - 340090, - 55962, - 342 - ], - [ - 340090, - 55962, - 3402 - ], - [ - 349045, - 63188, - 342 - ], - [ - 349045, - 63188, - 3402 - ], - [ - 347666, - 65026, - 342 - ], - [ - 347666, - 65026, - 3402 - ], - [ - 347783, - 65119, - 3402 - ], - [ - 344407, - 69328, - 3402 - ], - [ - 333863, - 57877, - 342 - ], - [ - 342837, - 65118, - 342 - ], - [ - 341467, - 66952, - 342 - ], - [ - 341584, - 67046, - 342 - ], - [ - 364046, - 132734, - 6282 - ], - [ - 362567, - 131821, - 6282 - ], - [ - 362744, - 131655, - 6282 - ], - [ - 360261, - 136588, - 6282 - ], - [ - 358911, - 135242, - 6282 - ], - [ - 358808, - 135339, - 6282 - ], - [ - 369753, - 140964, - 6282 - ], - [ - 367121, - 143737, - 6282 - ], - [ - 370664, - 140067, - 6282 - ], - [ - 370970, - 139949, - 6282 - ], - [ - 369844, - 141057, - 6282 - ], - [ - 370756, - 140160, - 6282 - ], - [ - 358808, - 135339, - 6222 - ], - [ - 360261, - 136588, - 612 - ], - [ - 360261, - 136588, - 6222 - ], - [ - 367121, - 143737, - 612 - ], - [ - 367121, - 143737, - 6222 - ], - [ - 369844, - 141057, - 612 - ], - [ - 369753, - 140964, - 612 - ], - [ - 370664, - 140067, - 612 - ], - [ - 370756, - 140160, - 612 - ], - [ - 356244, - 139956, - 6222 - ], - [ - 354999, - 138904, - 6222 - ], - [ - 366632, - 144077, - 6222 - ], - [ - 356001, - 140183, - 6222 - ], - [ - 362645, - 147421, - 6222 - ], - [ - 355935, - 140244, - 6222 - ], - [ - 364411, - 146078, - 6222 - ], - [ - 362891, - 147702, - 6222 - ], - [ - 362623, - 147441, - 6222 - ], - [ - 363442, - 147024, - 6222 - ], - [ - 363525, - 147110, - 6222 - ], - [ - 364495, - 146164, - 6222 - ], - [ - 366702, - 144149, - 6222 - ], - [ - 360261, - 136588, - 602 - ], - [ - 367121, - 143737, - 602 - ], - [ - 358808, - 135339, - 602 - ], - [ - 356244, - 139956, - 602 - ], - [ - 356001, - 140183, - 602 - ], - [ - 355935, - 140244, - 602 - ], - [ - 362645, - 147421, - 602 - ], - [ - 362623, - 147441, - 602 - ], - [ - 362891, - 147702, - 602 - ], - [ - 363525, - 147110, - 602 - ], - [ - 363442, - 147024, - 602 - ], - [ - 364411, - 146078, - 602 - ], - [ - 364495, - 146164, - 602 - ], - [ - 366632, - 144077, - 602 - ], - [ - 366702, - 144149, - 602 - ], - [ - 355523, - 154395, - 3222 - ], - [ - 355770, - 154650, - 3222 - ], - [ - 355502, - 154416, - 3222 - ], - [ - 346432, - 149661, - 3222 - ], - [ - 348542, - 147614, - 3222 - ], - [ - 349018, - 147818, - 3222 - ], - [ - 348614, - 147544, - 3222 - ], - [ - 348735, - 147426, - 3222 - ], - [ - 349085, - 147744, - 3222 - ], - [ - 353510, - 152431, - 3222 - ], - [ - 351253, - 158864, - 3222 - ], - [ - 351158, - 159081, - 3222 - ], - [ - 340115, - 148068, - 3222 - ], - [ - 342906, - 146074, - 3222 - ], - [ - 338204, - 144300, - 3222 - ], - [ - 339590, - 143054, - 3222 - ], - [ - 336948, - 145258, - 3222 - ], - [ - 334052, - 142688, - 3222 - ], - [ - 337018, - 143282, - 3222 - ], - [ - 334785, - 141677, - 3222 - ], - [ - 337657, - 137679, - 3222 - ], - [ - 340153, - 139820, - 3222 - ], - [ - 340086, - 139894, - 3222 - ], - [ - 340220, - 139746, - 3222 - ], - [ - 337689, - 137635, - 3222 - ], - [ - 352030, - 158119, - 3222 - ], - [ - 337044, - 145343, - 3222 - ], - [ - 352092, - 158184, - 3222 - ], - [ - 351315, - 158929, - 3222 - ], - [ - 355523, - 154395, - 622 - ], - [ - 355770, - 154650, - 622 - ], - [ - 355502, - 154416, - 622 - ], - [ - 353510, - 152431, - 622 - ], - [ - 349018, - 147818, - 622 - ], - [ - 349085, - 147744, - 622 - ], - [ - 348735, - 147426, - 622 - ], - [ - 348614, - 147544, - 622 - ], - [ - 340153, - 139820, - 622 - ], - [ - 340220, - 139746, - 622 - ], - [ - 337689, - 137635, - 622 - ], - [ - 337657, - 137679, - 622 - ], - [ - 334785, - 141677, - 622 - ], - [ - 334052, - 142688, - 622 - ], - [ - 334052, - 142688, - 782 - ], - [ - 334052, - 142688, - 3212 - ], - [ - 336948, - 145258, - 622 - ], - [ - 336948, - 145258, - 782 - ], - [ - 336948, - 145258, - 3212 - ], - [ - 337044, - 145343, - 622 - ], - [ - 340115, - 148068, - 622 - ], - [ - 351158, - 159081, - 622 - ], - [ - 351315, - 158929, - 622 - ], - [ - 351253, - 158864, - 622 - ], - [ - 352030, - 158119, - 622 - ], - [ - 352092, - 158184, - 622 - ], - [ - 340115, - 148068, - 3502 - ], - [ - 351158, - 159081, - 3502 - ], - [ - 339585, - 153166, - 3502 - ], - [ - 337466, - 150650, - 3502 - ], - [ - 339535, - 156468, - 3502 - ], - [ - 337907, - 154831, - 3502 - ], - [ - 350169, - 159917, - 3502 - ], - [ - 346572, - 163545, - 3502 - ], - [ - 350231, - 159982, - 3502 - ], - [ - 350865, - 159240, - 3502 - ], - [ - 350927, - 159304, - 3502 - ], - [ - 340115, - 148068, - 602 - ], - [ - 351158, - 159081, - 602 - ], - [ - 337466, - 150650, - 602 - ], - [ - 339585, - 153166, - 602 - ], - [ - 337907, - 154831, - 602 - ], - [ - 350231, - 159982, - 602 - ], - [ - 350169, - 159917, - 602 - ], - [ - 350865, - 159240, - 602 - ], - [ - 350927, - 159304, - 602 - ], - [ - 354349, - 124634, - 2882 - ], - [ - 350845, - 128796, - 2882 - ], - [ - 348667, - 126740, - 2882 - ], - [ - 352016, - 122762, - 2882 - ], - [ - 348499, - 126936, - 2882 - ], - [ - 354349, - 124634, - 2852 - ], - [ - 350845, - 128796, - 2872 - ], - [ - 352016, - 122762, - 2852 - ], - [ - 348499, - 126936, - 2872 - ], - [ - 349839, - 134818, - 2872 - ], - [ - 355390, - 132400, - 2872 - ], - [ - 351481, - 136206, - 2872 - ], - [ - 345569, - 131211, - 2872 - ], - [ - 345492, - 131302, - 2872 - ], - [ - 345057, - 130934, - 2872 - ], - [ - 347708, - 133018, - 2872 - ], - [ - 349350, - 134405, - 2872 - ], - [ - 347211, - 132598, - 2872 - ], - [ - 347630, - 133109, - 2872 - ], - [ - 347134, - 132690, - 2872 - ], - [ - 352028, - 136394, - 2872 - ], - [ - 349761, - 134910, - 2872 - ], - [ - 349272, - 134497, - 2872 - ], - [ - 351816, - 136646, - 2872 - ], - [ - 351403, - 136297, - 2872 - ], - [ - 350845, - 128796, - 572 - ], - [ - 348499, - 126936, - 572 - ], - [ - 345492, - 131302, - 572 - ], - [ - 345569, - 131211, - 572 - ], - [ - 347211, - 132598, - 572 - ], - [ - 347134, - 132690, - 572 - ], - [ - 347630, - 133109, - 572 - ], - [ - 347708, - 133018, - 572 - ], - [ - 349350, - 134405, - 572 - ], - [ - 349272, - 134497, - 572 - ], - [ - 349761, - 134910, - 572 - ], - [ - 349839, - 134818, - 572 - ], - [ - 351481, - 136206, - 572 - ], - [ - 351403, - 136297, - 572 - ], - [ - 351816, - 136646, - 572 - ], - [ - 333642, - 143254, - 3212 - ], - [ - 332970, - 144157, - 3212 - ], - [ - 332842, - 144682, - 3212 - ], - [ - 332686, - 144539, - 3212 - ], - [ - 335419, - 147065, - 3212 - ], - [ - 333642, - 143254, - 782 - ], - [ - 332842, - 144682, - 782 - ], - [ - 335419, - 147065, - 782 - ], - [ - 332474, - 80086, - 1202 - ], - [ - 332506, - 80192, - 1202 - ], - [ - 329843, - 80899, - 1202 - ], - [ - 329303, - 77535, - 1202 - ], - [ - 327823, - 79309, - 1202 - ], - [ - 329898, - 81081, - 1202 - ], - [ - 332534, - 80287, - 1202 - ], - [ - 332534, - 80287, - 472 - ], - [ - 271703, - 111477, - 2852 - ], - [ - 267674, - 117148, - 2852 - ], - [ - 265175, - 115372, - 2852 - ], - [ - 269204, - 109701, - 2852 - ], - [ - 271703, - 111477, - 662 - ], - [ - 321668, - 143068, - 3392 - ], - [ - 324014, - 140186, - 3392 - ], - [ - 322956, - 144116, - 3392 - ], - [ - 325333, - 141195, - 3392 - ], - [ - 324110, - 140068, - 3392 - ], - [ - 325397, - 141116, - 3392 - ], - [ - 321668, - 143068, - 792 - ], - [ - 324014, - 140186, - 792 - ], - [ - 322956, - 144116, - 792 - ], - [ - 325333, - 141195, - 792 - ], - [ - 325397, - 141116, - 792 - ], - [ - 324110, - 140068, - 792 - ], - [ - 315042, - 138254, - 3292 - ], - [ - 312962, - 140962, - 3292 - ], - [ - 307736, - 136947, - 3292 - ], - [ - 309817, - 134239, - 3292 - ], - [ - 315042, - 138254, - 802 - ], - [ - 312962, - 140962, - 802 - ], - [ - 309817, - 134239, - 802 - ], - [ - 307736, - 136947, - 802 - ], - [ - 321641, - 143318, - 2862 - ], - [ - 319557, - 146030, - 2862 - ], - [ - 314308, - 141997, - 2862 - ], - [ - 316391, - 139285, - 2862 - ], - [ - 321641, - 143318, - 802 - ], - [ - 319557, - 146030, - 802 - ], - [ - 316391, - 139285, - 802 - ], - [ - 314308, - 141997, - 802 - ], - [ - 308391, - 152407, - 3302 - ], - [ - 306517, - 155006, - 3302 - ], - [ - 305957, - 150663, - 3302 - ], - [ - 304084, - 153261, - 3302 - ], - [ - 305957, - 150663, - 862 - ], - [ - 304084, - 153261, - 862 - ], - [ - 310874, - 154186, - 3322 - ], - [ - 309000, - 156786, - 3322 - ], - [ - 308391, - 152407, - 3322 - ], - [ - 306517, - 155006, - 3322 - ], - [ - 313382, - 155983, - 3322 - ], - [ - 311507, - 158584, - 3322 - ], - [ - 313382, - 155983, - 3302 - ], - [ - 311507, - 158584, - 3302 - ], - [ - 310874, - 154186, - 852 - ], - [ - 309000, - 156786, - 852 - ], - [ - 316456, - 162306, - 3352 - ], - [ - 314585, - 164902, - 3352 - ], - [ - 313958, - 160511, - 3352 - ], - [ - 313000, - 159823, - 902 - ], - [ - 311127, - 162417, - 902 - ], - [ - 315918, - 157799, - 3302 - ], - [ - 314038, - 160399, - 3302 - ], - [ - 315918, - 157799, - 842 - ], - [ - 314038, - 160399, - 842 - ], - [ - 315918, - 157799, - 3282 - ], - [ - 314038, - 160399, - 3282 - ], - [ - 313382, - 155983, - 842 - ], - [ - 311507, - 158584, - 842 - ], - [ - 316538, - 162192, - 3282 - ], - [ - 318415, - 159588, - 3282 - ], - [ - 321270, - 165056, - 2052 - ], - [ - 319012, - 162680, - 2052 - ], - [ - 323406, - 163057, - 2052 - ], - [ - 320712, - 160257, - 2052 - ], - [ - 321270, - 165056, - 852 - ], - [ - 319012, - 162680, - 852 - ], - [ - 323406, - 163057, - 852 - ], - [ - 320712, - 160257, - 852 - ], - [ - 308468, - 133209, - 1482 - ], - [ - 306390, - 135913, - 1482 - ], - [ - 302361, - 130439, - 1482 - ], - [ - 303290, - 129230, - 1482 - ], - [ - 301212, - 131934, - 1482 - ], - [ - 308468, - 133209, - 722 - ], - [ - 306390, - 135913, - 722 - ], - [ - 303290, - 129230, - 722 - ], - [ - 302361, - 130439, - 722 - ], - [ - 301212, - 131934, - 722 - ], - [ - 295706, - 146236, - 2942 - ], - [ - 297170, - 144217, - 2942 - ], - [ - 298723, - 145503, - 2942 - ], - [ - 297335, - 147417, - 2942 - ], - [ - 298873, - 145451, - 2942 - ], - [ - 298796, - 145557, - 2942 - ], - [ - 303344, - 148791, - 3302 - ], - [ - 301480, - 151393, - 3302 - ], - [ - 353700, - 120762, - 2852 - ], - [ - 355811, - 122897, - 2852 - ], - [ - 352016, - 122762, - 692 - ], - [ - 354349, - 124634, - 692 - ], - [ - 375228, - 99410, - 2862 - ], - [ - 377518, - 97182, - 2862 - ], - [ - 376448, - 100665, - 2862 - ], - [ - 378859, - 98320, - 2862 - ], - [ - 381492, - 92353, - 2762 - ], - [ - 382808, - 93685, - 2762 - ], - [ - 378571, - 95238, - 2762 - ], - [ - 379888, - 96571, - 2762 - ], - [ - 368879, - 109251, - 3242 - ], - [ - 367078, - 107418, - 3242 - ], - [ - 371045, - 107122, - 3242 - ], - [ - 369243, - 105289, - 3242 - ], - [ - 351070, - 74331, - 2242 - ], - [ - 351105, - 74446, - 2242 - ], - [ - 348445, - 75162, - 2242 - ], - [ - 347875, - 71756, - 2242 - ], - [ - 346441, - 73557, - 2242 - ], - [ - 348501, - 75344, - 2242 - ], - [ - 351134, - 74542, - 2242 - ], - [ - 351134, - 74542, - 462 - ], - [ - 357289, - 72370, - 1662 - ], - [ - 357326, - 72485, - 1662 - ], - [ - 354673, - 73230, - 1662 - ], - [ - 354113, - 69804, - 1662 - ], - [ - 352683, - 71618, - 1662 - ], - [ - 354730, - 73411, - 1662 - ], - [ - 357356, - 72580, - 1662 - ], - [ - 357356, - 72580, - 462 - ], - [ - 362932, - 67101, - 2812 - ], - [ - 366113, - 69659, - 2812 - ], - [ - 362870, - 67179, - 2812 - ], - [ - 363485, - 70491, - 2812 - ], - [ - 361480, - 68902, - 2812 - ], - [ - 365943, - 69940, - 2812 - ], - [ - 363541, - 70673, - 2812 - ], - [ - 366177, - 69869, - 2812 - ], - [ - 362932, - 67101, - 482 - ], - [ - 366113, - 69659, - 482 - ], - [ - 365943, - 69940, - 482 - ], - [ - 366177, - 69869, - 482 - ], - [ - 344871, - 76247, - 1202 - ], - [ - 344903, - 76352, - 1202 - ], - [ - 342235, - 77067, - 1202 - ], - [ - 341696, - 73660, - 1202 - ], - [ - 340263, - 75472, - 1202 - ], - [ - 342290, - 77249, - 1202 - ], - [ - 344932, - 76448, - 1202 - ], - [ - 344932, - 76448, - 462 - ], - [ - 338623, - 78167, - 2802 - ], - [ - 338658, - 78281, - 2802 - ], - [ - 335996, - 79005, - 2802 - ], - [ - 335454, - 75588, - 2802 - ], - [ - 334015, - 77396, - 2802 - ], - [ - 336052, - 79187, - 2802 - ], - [ - 338688, - 78377, - 2802 - ], - [ - 338688, - 78377, - 462 - ], - [ - 400851, - 48956, - 795 - ], - [ - 422845, - 56627, - 812 - ], - [ - 417141, - 55824, - 732 - ], - [ - 413765, - 53326, - 722 - ], - [ - 411122, - 50812, - 712 - ], - [ - 414032, - 52965, - 722 - ], - [ - 406173, - 51786, - 682 - ], - [ - 403136, - 44100, - 606 - ], - [ - 403246, - 38774, - 341 - ], - [ - 402442, - 38756, - 852 - ], - [ - 402058, - 39567, - 844 - ], - [ - 401837, - 38858, - 858 - ], - [ - 402874, - 38877, - 508 - ], - [ - 402718, - 39204, - 840 - ], - [ - 401331, - 38833, - 820 - ], - [ - 401437, - 39163, - 493 - ], - [ - 401271, - 39062, - 882 - ], - [ - 416744, - 60964, - 765 - ], - [ - 415438, - 60041, - 773 - ], - [ - 399700, - 43288, - 638 - ], - [ - 397819, - 39967, - 507 - ], - [ - 401010, - 39250, - 445 - ], - [ - 396619, - 41430, - 767 - ], - [ - 396555, - 41708, - 1005 - ], - [ - 396271, - 40843, - 590 - ], - [ - 397407, - 43231, - 664 - ], - [ - 397780, - 42766, - 701 - ], - [ - 398814, - 43511, - 647 - ], - [ - 397448, - 41724, - 1002 - ], - [ - 396736, - 42153, - 1076 - ], - [ - 397906, - 46967, - 717 - ], - [ - 407166, - 52470, - 702 - ], - [ - 398564, - 42256, - 1188 - ], - [ - 400943, - 41094, - 671 - ], - [ - 402014, - 40512, - 848 - ], - [ - 402523, - 50433, - 692 - ], - [ - 405077, - 52427, - 668 - ], - [ - 402401, - 50610, - 702 - ], - [ - 408219, - 54243, - 759 - ], - [ - 400937, - 49612, - 779 - ], - [ - 414474, - 57888, - 750 - ], - [ - 426446, - 58174, - 1078 - ], - [ - 425051, - 57097, - 739 - ], - [ - 423400, - 61943, - 852 - ], - [ - 424212, - 57641, - 872 - ], - [ - 425155, - 57810, - 886 - ], - [ - 423410, - 57818, - 880 - ], - [ - 428437, - 59953, - 942 - ], - [ - 425971, - 58252, - 942 - ], - [ - 426855, - 58739, - 906 - ], - [ - 425880, - 63651, - 912 - ], - [ - 420952, - 64059, - 865 - ], - [ - 423835, - 66079, - 851 - ], - [ - 423351, - 57461, - 721 - ], - [ - 401521, - 40111, - 712 - ], - [ - 410084, - 56299, - 776 - ], - [ - 414577, - 58603, - 882 - ], - [ - 401549, - 39804, - 496 - ], - [ - 396461, - 40370, - 513 - ], - [ - 396238, - 40374, - 792 - ], - [ - 396304, - 40629, - 792 - ], - [ - 396508, - 40720, - 530 - ], - [ - 427312, - 59000, - 1073 - ], - [ - 399000, - 41325, - 674 - ], - [ - 399407, - 41995, - 858 - ], - [ - 400576, - 40905, - 751 - ], - [ - 398876, - 40521, - 658 - ], - [ - 397603, - 41419, - 718 - ], - [ - 399830, - 40197, - 413 - ], - [ - 398398, - 41619, - 938 - ], - [ - 401213, - 38839, - 942 - ], - [ - 425890, - 57994, - 1109 - ], - [ - 426206, - 58241, - 1112 - ], - [ - 400106, - 41330, - 669 - ], - [ - 396715, - 40608, - 505 - ], - [ - 397755, - 42455, - 928 - ], - [ - 402384, - 38534, - 862 - ], - [ - 400026, - 40774, - 688 - ], - [ - 423756, - 57393, - 959 - ], - [ - 320633, - 160196, - 1052 - ], - [ - 320274, - 159942, - 902 - ], - [ - 321787, - 158333, - 1072 - ], - [ - 321870, - 158389, - 1082 - ], - [ - 321906, - 158160, - 1192 - ], - [ - 322619, - 157296, - 942 - ], - [ - 321989, - 158216, - 1082 - ], - [ - 323108, - 156404, - 902 - ], - [ - 323191, - 156461, - 902 - ], - [ - 323221, - 156239, - 902 - ], - [ - 324314, - 154821, - 932 - ], - [ - 323304, - 156296, - 932 - ], - [ - 324232, - 154764, - 932 - ], - [ - 324344, - 154599, - 932 - ], - [ - 325778, - 152506, - 922 - ], - [ - 324427, - 154656, - 932 - ], - [ - 326849, - 150652, - 872 - ], - [ - 325861, - 152562, - 862 - ], - [ - 325475, - 153356, - 862 - ], - [ - 326068, - 152454, - 862 - ], - [ - 326018, - 153699, - 902 - ], - [ - 327292, - 152115, - 902 - ], - [ - 325897, - 152333, - 872 - ], - [ - 326606, - 151620, - 872 - ], - [ - 327116, - 150840, - 892 - ], - [ - 298144, - 128200, - 861 - ], - [ - 296646, - 129588, - 746 - ], - [ - 297195, - 127057, - 810 - ], - [ - 287618, - 137284, - 1314 - ], - [ - 291864, - 124088, - 789 - ], - [ - 290068, - 125689, - 697 - ], - [ - 290398, - 122401, - 791 - ], - [ - 271691, - 120646, - 922 - ], - [ - 274099, - 122334, - 942 - ], - [ - 286388, - 122155, - 741 - ], - [ - 284632, - 126039, - 912 - ], - [ - 282190, - 124364, - 862 - ], - [ - 284086, - 117734, - 907 - ], - [ - 279862, - 116417, - 757 - ], - [ - 278758, - 113666, - 782 - ], - [ - 271295, - 109058, - 807 - ], - [ - 270784, - 108282, - 832 - ], - [ - 274815, - 111492, - 846 - ], - [ - 276181, - 112283, - 852 - ], - [ - 269422, - 106851, - 782 - ], - [ - 267137, - 105353, - 664 - ], - [ - 268091, - 105896, - 676 - ], - [ - 255711, - 97465, - 452 - ], - [ - 255769, - 97546, - 452 - ], - [ - 255776, - 97677, - 452 - ], - [ - 255712, - 97587, - 452 - ], - [ - 254514, - 98639, - 580 - ], - [ - 254312, - 98708, - 482 - ], - [ - 259918, - 102701, - 542 - ], - [ - 253988, - 98760, - 569 - ], - [ - 254205, - 98662, - 482 - ], - [ - 254254, - 98627, - 482 - ], - [ - 254147, - 98580, - 472 - ], - [ - 254885, - 98835, - 469 - ], - [ - 262030, - 104423, - 640 - ], - [ - 273649, - 110907, - 710 - ], - [ - 271811, - 111321, - 712 - ], - [ - 272091, - 111865, - 622 - ], - [ - 271900, - 111383, - 712 - ], - [ - 269650, - 117340, - 874 - ], - [ - 266817, - 121386, - 882 - ], - [ - 272668, - 112910, - 862 - ], - [ - 277289, - 113920, - 734 - ], - [ - 265583, - 120534, - 982 - ], - [ - 264654, - 121880, - 1002 - ], - [ - 266759, - 122957, - 897 - ], - [ - 280631, - 115511, - 987 - ], - [ - 270911, - 125654, - 1182 - ], - [ - 271219, - 125476, - 983 - ], - [ - 271263, - 125801, - 989 - ], - [ - 271006, - 125711, - 1182 - ], - [ - 295445, - 125706, - 807 - ], - [ - 285503, - 135734, - 1082 - ], - [ - 299309, - 128864, - 892 - ], - [ - 301754, - 130500, - 998 - ], - [ - 300917, - 130434, - 833 - ], - [ - 292618, - 134918, - 1002 - ], - [ - 291979, - 137348, - 1052 - ], - [ - 289671, - 135698, - 1022 - ], - [ - 292983, - 139190, - 1075 - ], - [ - 293216, - 138266, - 1022 - ], - [ - 294185, - 140231, - 972 - ], - [ - 317092, - 146582, - 832 - ], - [ - 321558, - 157176, - 862 - ], - [ - 319205, - 157746, - 862 - ], - [ - 317548, - 163169, - 922 - ], - [ - 315992, - 166063, - 942 - ], - [ - 317784, - 163337, - 922 - ], - [ - 312560, - 152955, - 872 - ], - [ - 321792, - 157344, - 872 - ], - [ - 323411, - 151454, - 832 - ], - [ - 326329, - 150897, - 862 - ], - [ - 326084, - 150723, - 862 - ], - [ - 334684, - 135723, - 775 - ], - [ - 329776, - 142382, - 778 - ], - [ - 329435, - 142789, - 799 - ], - [ - 336901, - 137082, - 772 - ], - [ - 332750, - 142506, - 812 - ], - [ - 334314, - 136477, - 798 - ], - [ - 328578, - 143680, - 812 - ], - [ - 324113, - 149493, - 842 - ], - [ - 302079, - 147382, - 1038 - ], - [ - 304104, - 134615, - 845 - ], - [ - 300865, - 144522, - 892 - ], - [ - 309573, - 138665, - 909 - ], - [ - 290252, - 133223, - 982 - ], - [ - 294161, - 132763, - 952 - ], - [ - 280691, - 126549, - 942 - ], - [ - 283133, - 128224, - 942 - ], - [ - 291794, - 131069, - 932 - ], - [ - 278224, - 113490, - 1073 - ], - [ - 281976, - 116500, - 788 - ], - [ - 282691, - 119743, - 637 - ], - [ - 273682, - 117804, - 862 - ], - [ - 276090, - 119492, - 882 - ], - [ - 271972, - 125683, - 959 - ], - [ - 270409, - 116811, - 811 - ], - [ - 271009, - 116364, - 804 - ], - [ - 284454, - 134676, - 1288 - ], - [ - 284303, - 133698, - 1031 - ], - [ - 281083, - 130803, - 1009 - ], - [ - 278089, - 129933, - 1170 - ], - [ - 280959, - 131913, - 1346 - ], - [ - 277334, - 130001, - 1183 - ], - [ - 284594, - 118247, - 751 - ], - [ - 287381, - 120295, - 884 - ], - [ - 282066, - 132595, - 1092 - ], - [ - 277012, - 129856, - 1114 - ], - [ - 287978, - 136822, - 1053 - ], - [ - 288453, - 137347, - 1138 - ], - [ - 282617, - 116945, - 935 - ], - [ - 277120, - 112560, - 929 - ], - [ - 272415, - 114207, - 729 - ], - [ - 273477, - 112470, - 699 - ], - [ - 292741, - 124246, - 811 - ], - [ - 280717, - 116193, - 930 - ], - [ - 282589, - 133466, - 1230 - ], - [ - 280897, - 131566, - 1137 - ], - [ - 282114, - 132928, - 1127 - ], - [ - 271701, - 126221, - 1125 - ], - [ - 271987, - 114093, - 969 - ], - [ - 270660, - 115902, - 1032 - ], - [ - 269790, - 118320, - 977 - ], - [ - 271197, - 115774, - 779 - ], - [ - 272191, - 112510, - 788 - ], - [ - 271434, - 112058, - 1092 - ], - [ - 302027, - 147063, - 910 - ], - [ - 292831, - 139126, - 1252 - ], - [ - 270920, - 115686, - 830 - ], - [ - 320219, - 160332, - 912 - ], - [ - 320135, - 159965, - 902 - ], - [ - 320453, - 160191, - 1032 - ], - [ - 320553, - 159271, - 1055 - ], - [ - 318238, - 163157, - 922 - ], - [ - 319903, - 160783, - 912 - ], - [ - 316263, - 165973, - 952 - ], - [ - 316131, - 166161, - 942 - ], - [ - 315761, - 168808, - 942 - ], - [ - 316919, - 168580, - 887 - ], - [ - 317415, - 169133, - 1166 - ], - [ - 317911, - 163623, - 922 - ], - [ - 316353, - 166036, - 952 - ], - [ - 318001, - 163687, - 942 - ], - [ - 318328, - 163220, - 932 - ], - [ - 319993, - 160846, - 912 - ], - [ - 321380, - 158295, - 1088 - ], - [ - 320309, - 160395, - 942 - ], - [ - 320192, - 159884, - 902 - ], - [ - 321459, - 166112, - 1057 - ], - [ - 324930, - 158180, - 929 - ], - [ - 322708, - 157380, - 1052 - ], - [ - 324056, - 155427, - 932 - ], - [ - 328235, - 163846, - 815 - ], - [ - 329397, - 165678, - 722 - ], - [ - 326101, - 154928, - 923 - ], - [ - 326091, - 157427, - 956 - ], - [ - 326302, - 156259, - 1272 - ], - [ - 327288, - 156643, - 934 - ], - [ - 321182, - 160501, - 1038 - ], - [ - 316456, - 166290, - 942 - ], - [ - 317203, - 166854, - 942 - ], - [ - 312706, - 178940, - 798 - ], - [ - 313434, - 179142, - 635 - ], - [ - 313264, - 180198, - 1000 - ], - [ - 320970, - 165561, - 1031 - ], - [ - 320528, - 165735, - 864 - ], - [ - 320925, - 165224, - 1015 - ], - [ - 314446, - 178845, - 861 - ], - [ - 314337, - 178169, - 606 - ], - [ - 315642, - 178238, - 710 - ], - [ - 310014, - 176506, - 1083 - ], - [ - 307491, - 179396, - 932 - ], - [ - 312693, - 172965, - 912 - ], - [ - 311092, - 175785, - 1091 - ], - [ - 311675, - 177139, - 645 - ], - [ - 305242, - 181844, - 912 - ], - [ - 306383, - 180602, - 902 - ], - [ - 309161, - 183065, - 855 - ], - [ - 304791, - 184134, - 906 - ], - [ - 303384, - 184165, - 872 - ], - [ - 304641, - 182595, - 902 - ], - [ - 309308, - 184125, - 934 - ], - [ - 306519, - 185808, - 853 - ], - [ - 304317, - 187075, - 1092 - ], - [ - 303803, - 185737, - 1296 - ], - [ - 304654, - 186221, - 1457 - ], - [ - 305461, - 185663, - 1376 - ], - [ - 299151, - 190582, - 1065 - ], - [ - 304547, - 185537, - 1239 - ], - [ - 307326, - 186925, - 1085 - ], - [ - 307136, - 187731, - 1122 - ], - [ - 306711, - 187188, - 984 - ], - [ - 310369, - 181870, - 962 - ], - [ - 310459, - 177479, - 850 - ], - [ - 311080, - 179073, - 913 - ], - [ - 314775, - 181263, - 972 - ], - [ - 313637, - 180420, - 1083 - ], - [ - 323295, - 164439, - 1008 - ], - [ - 318674, - 171300, - 1191 - ], - [ - 319011, - 170509, - 1085 - ], - [ - 320206, - 171227, - 825 - ], - [ - 315738, - 178887, - 833 - ], - [ - 315693, - 178540, - 851 - ], - [ - 315928, - 177088, - 741 - ], - [ - 315284, - 175411, - 916 - ], - [ - 321052, - 166275, - 849 - ], - [ - 320610, - 172147, - 992 - ], - [ - 323455, - 167972, - 1087 - ], - [ - 318359, - 172872, - 904 - ], - [ - 319704, - 172440, - 1145 - ], - [ - 319312, - 172985, - 737 - ], - [ - 327580, - 161903, - 792 - ], - [ - 325398, - 161598, - 1144 - ], - [ - 327864, - 161127, - 684 - ], - [ - 324652, - 163237, - 1070 - ], - [ - 323831, - 163492, - 978 - ], - [ - 325983, - 163202, - 676 - ], - [ - 326123, - 164260, - 658 - ], - [ - 325594, - 163342, - 647 - ], - [ - 329947, - 159200, - 695 - ], - [ - 328635, - 163403, - 757 - ], - [ - 328587, - 163028, - 773 - ], - [ - 329238, - 160774, - 674 - ], - [ - 330798, - 157562, - 976 - ], - [ - 328668, - 160179, - 744 - ], - [ - 326549, - 154005, - 1017 - ], - [ - 329671, - 160326, - 798 - ], - [ - 327788, - 160397, - 964 - ], - [ - 329364, - 157887, - 1027 - ], - [ - 337118, - 150896, - 837 - ], - [ - 336722, - 150981, - 879 - ], - [ - 337467, - 150482, - 879 - ], - [ - 329825, - 158117, - 991 - ], - [ - 330519, - 157959, - 1006 - ], - [ - 330622, - 156194, - 1060 - ], - [ - 331301, - 156732, - 991 - ], - [ - 327211, - 155955, - 1125 - ], - [ - 326740, - 155390, - 1121 - ], - [ - 328042, - 155365, - 920 - ], - [ - 326635, - 154707, - 913 - ], - [ - 330661, - 151964, - 909 - ], - [ - 332257, - 157282, - 1016 - ], - [ - 331115, - 155361, - 928 - ], - [ - 332756, - 157188, - 1030 - ], - [ - 332529, - 155472, - 1052 - ], - [ - 333214, - 157135, - 928 - ], - [ - 333641, - 156704, - 962 - ], - [ - 334398, - 156603, - 931 - ], - [ - 334677, - 156916, - 755 - ], - [ - 334880, - 156198, - 739 - ], - [ - 335278, - 156508, - 721 - ], - [ - 334442, - 156942, - 918 - ], - [ - 335373, - 157150, - 863 - ], - [ - 335754, - 157105, - 694 - ], - [ - 336273, - 158057, - 707 - ], - [ - 337074, - 153722, - 695 - ], - [ - 337662, - 155023, - 751 - ], - [ - 332567, - 145408, - 1001 - ], - [ - 330564, - 147826, - 952 - ], - [ - 338440, - 148503, - 789 - ], - [ - 338748, - 147680, - 922 - ], - [ - 338888, - 148725, - 939 - ], - [ - 336831, - 145721, - 832 - ], - [ - 334851, - 150253, - 824 - ], - [ - 331762, - 149686, - 1083 - ], - [ - 301347, - 191806, - 1037 - ], - [ - 300988, - 192141, - 1275 - ], - [ - 299676, - 189329, - 1117 - ], - [ - 320890, - 171694, - 796 - ], - [ - 320109, - 172708, - 1041 - ], - [ - 304416, - 187749, - 1234 - ], - [ - 301745, - 188778, - 1054 - ], - [ - 301489, - 192795, - 1169 - ], - [ - 301025, - 192544, - 1064 - ], - [ - 334307, - 155879, - 1010 - ], - [ - 333461, - 155360, - 941 - ], - [ - 334425, - 154833, - 1087 - ], - [ - 337247, - 151934, - 707 - ], - [ - 324940, - 161750, - 963 - ], - [ - 322999, - 159873, - 972 - ], - [ - 325466, - 155859, - 930 - ], - [ - 326437, - 155479, - 1112 - ], - [ - 315193, - 181137, - 838 - ], - [ - 315355, - 179296, - 890 - ], - [ - 313313, - 180528, - 1060 - ], - [ - 312898, - 180308, - 939 - ], - [ - 326695, - 165107, - 987 - ], - [ - 325262, - 164127, - 1055 - ], - [ - 326371, - 155194, - 721 - ], - [ - 329968, - 153854, - 920 - ], - [ - 321996, - 166666, - 1000 - ], - [ - 321382, - 168640, - 1076 - ], - [ - 320401, - 167894, - 1000 - ], - [ - 319653, - 169280, - 995 - ], - [ - 319435, - 170376, - 1189 - ], - [ - 318443, - 169635, - 1059 - ], - [ - 327176, - 163169, - 693 - ], - [ - 326634, - 164802, - 687 - ], - [ - 324694, - 163566, - 1033 - ], - [ - 323406, - 162949, - 985 - ], - [ - 308372, - 186570, - 975 - ], - [ - 304871, - 187997, - 1200 - ], - [ - 304498, - 188494, - 1010 - ], - [ - 321951, - 169966, - 798 - ], - [ - 322453, - 170132, - 967 - ], - [ - 322039, - 170633, - 797 - ], - [ - 318923, - 173479, - 664 - ], - [ - 316521, - 170496, - 934 - ], - [ - 316496, - 172998, - 888 - ], - [ - 315078, - 170476, - 1066 - ], - [ - 304166, - 188551, - 1141 - ], - [ - 303548, - 184296, - 922 - ], - [ - 301253, - 187789, - 1273 - ], - [ - 321597, - 170420, - 786 - ], - [ - 304738, - 186926, - 1331 - ], - [ - 304786, - 187263, - 1363 - ], - [ - 304048, - 184929, - 1307 - ], - [ - 305000, - 185404, - 1455 - ], - [ - 306326, - 186898, - 1138 - ], - [ - 305082, - 186152, - 1213 - ], - [ - 338927, - 149088, - 812 - ], - [ - 312209, - 175098, - 953 - ], - [ - 313110, - 176711, - 607 - ], - [ - 311902, - 175936, - 746 - ], - [ - 303708, - 190149, - 1012 - ], - [ - 303286, - 191337, - 1142 - ], - [ - 302607, - 192188, - 1033 - ], - [ - 305181, - 186858, - 1298 - ], - [ - 323212, - 158669, - 1226 - ], - [ - 310599, - 181057, - 843 - ], - [ - 319146, - 168381, - 848 - ], - [ - 319936, - 169167, - 842 - ], - [ - 322782, - 168976, - 909 - ], - [ - 317263, - 168151, - 863 - ], - [ - 314230, - 180297, - 862 - ], - [ - 336345, - 155258, - 749 - ], - [ - 335353, - 147719, - 906 - ], - [ - 309782, - 184681, - 938 - ], - [ - 304821, - 187669, - 1115 - ], - [ - 304959, - 188765, - 1008 - ], - [ - 305094, - 189767, - 1042 - ], - [ - 318007, - 170053, - 1167 - ], - [ - 317874, - 169064, - 1148 - ], - [ - 317330, - 171676, - 900 - ], - [ - 311725, - 180678, - 888 - ], - [ - 314244, - 177483, - 565 - ], - [ - 319993, - 169506, - 1007 - ], - [ - 320125, - 170500, - 1022 - ], - [ - 317063, - 174654, - 830 - ], - [ - 313018, - 178539, - 637 - ], - [ - 302563, - 191857, - 1034 - ], - [ - 305217, - 187242, - 1096 - ], - [ - 305257, - 187592, - 1003 - ], - [ - 333126, - 147068, - 839 - ], - [ - 334458, - 147196, - 991 - ], - [ - 336346, - 151788, - 730 - ], - [ - 335041, - 151602, - 954 - ], - [ - 322538, - 158599, - 1204 - ], - [ - 336173, - 153861, - 930 - ], - [ - 336524, - 153132, - 729 - ], - [ - 335495, - 155010, - 970 - ], - [ - 333739, - 154265, - 939 - ], - [ - 320572, - 169274, - 845 - ], - [ - 323894, - 168875, - 1158 - ], - [ - 317325, - 168476, - 1119 - ], - [ - 311399, - 181504, - 871 - ], - [ - 329888, - 153174, - 1062 - ], - [ - 329574, - 153603, - 910 - ], - [ - 322572, - 158945, - 1036 - ], - [ - 325032, - 162441, - 965 - ], - [ - 316831, - 172950, - 746 - ], - [ - 317349, - 174223, - 837 - ], - [ - 317386, - 174605, - 664 - ], - [ - 316882, - 173256, - 886 - ], - [ - 337443, - 156468, - 748 - ], - [ - 309446, - 177494, - 889 - ], - [ - 337434, - 153300, - 774 - ], - [ - 325078, - 162758, - 1021 - ], - [ - 325948, - 162855, - 826 - ], - [ - 313990, - 178618, - 627 - ], - [ - 334872, - 147459, - 845 - ], - [ - 332399, - 150940, - 1048 - ], - [ - 330938, - 153977, - 1030 - ], - [ - 304068, - 190385, - 1190 - ], - [ - 334163, - 150744, - 840 - ], - [ - 303122, - 181483, - 862 - ], - [ - 299407, - 183252, - 894 - ], - [ - 304139, - 179284, - 808 - ], - [ - 302819, - 178512, - 968 - ], - [ - 296436, - 124758, - 842 - ], - [ - 295015, - 124758, - 984 - ], - [ - 296935, - 119069, - 909 - ], - [ - 293839, - 123318, - 937 - ], - [ - 294713, - 124840, - 912 - ], - [ - 299298, - 121107, - 849 - ], - [ - 293517, - 124095, - 798 - ], - [ - 295798, - 123188, - 771 - ], - [ - 295762, - 122819, - 940 - ], - [ - 262874, - 72930, - 412 - ], - [ - 262387, - 74028, - 352 - ], - [ - 262102, - 74096, - 352 - ], - [ - 261471, - 72385, - 402 - ], - [ - 261079, - 72615, - 402 - ], - [ - 261592, - 71841, - 382 - ], - [ - 261971, - 72092, - 382 - ], - [ - 261779, - 72205, - 382 - ], - [ - 261648, - 72118, - 392 - ], - [ - 260876, - 73284, - 402 - ], - [ - 261987, - 74260, - 352 - ], - [ - 260599, - 73340, - 402 - ], - [ - 262158, - 74373, - 342 - ], - [ - 263151, - 72873, - 412 - ], - [ - 411720, - 38460, - 1792 - ], - [ - 411464, - 37614, - 2252 - ], - [ - 415386, - 40998, - 1974 - ], - [ - 416921, - 39386, - 1856 - ], - [ - 412314, - 37126, - 1986 - ], - [ - 410976, - 36624, - 1072 - ], - [ - 412338, - 36701, - 1920 - ], - [ - 417939, - 38711, - 2215 - ], - [ - 417249, - 39134, - 2111 - ], - [ - 421139, - 34340, - 1916 - ], - [ - 421959, - 35045, - 1943 - ], - [ - 421711, - 35297, - 1943 - ], - [ - 417966, - 38387, - 2021 - ], - [ - 420098, - 36705, - 2092 - ], - [ - 419763, - 36447, - 2035 - ], - [ - 422261, - 34369, - 1976 - ], - [ - 422695, - 34374, - 1962 - ], - [ - 422639, - 34312, - 1962 - ], - [ - 422579, - 34254, - 1962 - ], - [ - 422516, - 34200, - 1962 - ], - [ - 422449, - 34150, - 1952 - ], - [ - 422378, - 34105, - 1952 - ], - [ - 422305, - 34065, - 1952 - ], - [ - 422230, - 34029, - 1942 - ], - [ - 421998, - 34133, - 1955 - ], - [ - 422152, - 33999, - 2282 - ], - [ - 422073, - 33974, - 2172 - ], - [ - 421992, - 33954, - 2172 - ], - [ - 421827, - 33930, - 2172 - ], - [ - 421910, - 33939, - 2172 - ], - [ - 421743, - 33927, - 2142 - ], - [ - 421470, - 34128, - 1894 - ], - [ - 421660, - 33929, - 2142 - ], - [ - 421577, - 33936, - 2142 - ], - [ - 421495, - 33949, - 2092 - ], - [ - 418244, - 38285, - 1997 - ], - [ - 413025, - 38300, - 1805 - ], - [ - 415524, - 38476, - 1749 - ], - [ - 414402, - 39242, - 1802 - ], - [ - 414758, - 41270, - 1963 - ], - [ - 414806, - 40405, - 1822 - ], - [ - 413597, - 39873, - 1769 - ], - [ - 411283, - 39275, - 1900 - ], - [ - 410967, - 38987, - 1885 - ], - [ - 419438, - 36212, - 1885 - ], - [ - 418378, - 35608, - 1751 - ], - [ - 418957, - 35147, - 1978 - ], - [ - 419421, - 34763, - 1838 - ], - [ - 413520, - 39210, - 1923 - ], - [ - 413204, - 39666, - 1779 - ], - [ - 412709, - 40624, - 1896 - ], - [ - 417992, - 38033, - 1851 - ], - [ - 419748, - 36946, - 1928 - ], - [ - 421255, - 34020, - 2062 - ], - [ - 421333, - 33991, - 2092 - ], - [ - 415473, - 39083, - 1933 - ], - [ - 412765, - 36286, - 1890 - ], - [ - 417648, - 38085, - 1971 - ], - [ - 413903, - 40802, - 1962 - ], - [ - 413512, - 36003, - 1864 - ], - [ - 418353, - 35969, - 1881 - ], - [ - 412214, - 37913, - 1811 - ], - [ - 416743, - 37211, - 1882 - ], - [ - 415433, - 40140, - 1825 - ], - [ - 421413, - 33967, - 2092 - ], - [ - 406718, - 52822, - 708 - ], - [ - 309240, - 61679, - 372 - ], - [ - 308821, - 60565, - 332 - ], - [ - 309534, - 61549, - 362 - ], - [ - 309130, - 60459, - 332 - ], - [ - 275503, - 130529, - 1171 - ], - [ - 274129, - 132827, - 1278 - ], - [ - 274271, - 138393, - 1154 - ], - [ - 276815, - 134931, - 1082 - ], - [ - 272872, - 140416, - 962 - ], - [ - 278039, - 132857, - 1087 - ], - [ - 279186, - 131634, - 1312 - ], - [ - 277374, - 132544, - 1131 - ], - [ - 275083, - 133695, - 1263 - ], - [ - 275042, - 133376, - 1289 - ], - [ - 273397, - 136096, - 1254 - ], - [ - 272784, - 136949, - 1221 - ], - [ - 274085, - 135072, - 1267 - ], - [ - 270272, - 137886, - 1327 - ], - [ - 271789, - 136403, - 1286 - ], - [ - 273627, - 135560, - 1264 - ], - [ - 276216, - 129750, - 1099 - ], - [ - 319963, - 204206, - 1244 - ], - [ - 319496, - 203624, - 7337 - ], - [ - 319475, - 203629, - 1224 - ], - [ - 368520, - 155696, - 1002 - ], - [ - 369459, - 155484, - 992 - ], - [ - 369005, - 155749, - 992 - ], - [ - 427949, - 102137, - 1047 - ], - [ - 427893, - 102343, - 15039 - ], - [ - 427343, - 102324, - 1078 - ], - [ - 429020, - 100059, - 10771 - ], - [ - 429159, - 100300, - 17232 - ], - [ - 429017, - 100150, - 1066 - ], - [ - 369103, - 154055, - 1002 - ], - [ - 372235, - 153193, - 942 - ], - [ - 370916, - 154179, - 952 - ], - [ - 377847, - 145283, - 942 - ], - [ - 376838, - 150276, - 962 - ], - [ - 374552, - 151709, - 942 - ], - [ - 391445, - 133479, - 960 - ], - [ - 395688, - 134796, - 962 - ], - [ - 393164, - 137588, - 952 - ], - [ - 379030, - 149061, - 962 - ], - [ - 379537, - 145007, - 1061 - ], - [ - 382108, - 147380, - 952 - ], - [ - 384666, - 145799, - 942 - ], - [ - 383412, - 146601, - 942 - ], - [ - 386241, - 144564, - 922 - ], - [ - 386491, - 139741, - 1172 - ], - [ - 389527, - 138015, - 1071 - ], - [ - 389826, - 137931, - 1061 - ], - [ - 389862, - 138264, - 5360 - ], - [ - 390322, - 140700, - 922 - ], - [ - 388317, - 142722, - 922 - ], - [ - 390272, - 134227, - 1015 - ], - [ - 391085, - 133618, - 991 - ], - [ - 389984, - 135012, - 999 - ], - [ - 392204, - 132829, - 998 - ], - [ - 399520, - 127385, - 10424 - ], - [ - 400015, - 127416, - 11647 - ], - [ - 399633, - 127592, - 11648 - ], - [ - 400632, - 128695, - 1048 - ], - [ - 400289, - 128448, - 9219 - ], - [ - 400705, - 128623, - 14778 - ], - [ - 411238, - 116098, - 1033 - ], - [ - 411545, - 118449, - 968 - ], - [ - 412816, - 116853, - 997 - ], - [ - 413506, - 118551, - 892 - ], - [ - 400928, - 127894, - 6701 - ], - [ - 401603, - 127588, - 1038 - ], - [ - 400869, - 128229, - 1050 - ], - [ - 412946, - 116337, - 3815 - ], - [ - 412557, - 116696, - 5051 - ], - [ - 421727, - 110285, - 882 - ], - [ - 420306, - 111723, - 882 - ], - [ - 416992, - 115098, - 862 - ], - [ - 418412, - 113610, - 862 - ], - [ - 422502, - 107464, - 1054 - ], - [ - 422707, - 109211, - 892 - ], - [ - 434599, - 94621, - 1039 - ], - [ - 434944, - 94079, - 1052 - ], - [ - 434351, - 95088, - 1022 - ], - [ - 434229, - 92940, - 12169 - ], - [ - 434059, - 93022, - 15684 - ], - [ - 434265, - 92844, - 7362 - ], - [ - 435248, - 92173, - 1143 - ], - [ - 435745, - 92280, - 1102 - ], - [ - 435529, - 92338, - 14509 - ], - [ - 434824, - 91666, - 1101 - ], - [ - 434779, - 91322, - 1121 - ], - [ - 435058, - 91437, - 9486 - ], - [ - 435692, - 90860, - 1102 - ], - [ - 435261, - 90947, - 8665 - ], - [ - 435067, - 90819, - 1103 - ], - [ - 434601, - 90006, - 1052 - ], - [ - 434557, - 89669, - 1056 - ], - [ - 434618, - 89697, - 14372 - ], - [ - 434000, - 89673, - 15052 - ], - [ - 433339, - 90209, - 1042 - ], - [ - 434586, - 88908, - 992 - ], - [ - 434643, - 90322, - 1063 - ], - [ - 435267, - 89969, - 1062 - ], - [ - 432823, - 90748, - 962 - ], - [ - 433161, - 90714, - 1061 - ], - [ - 432801, - 90782, - 962 - ], - [ - 433207, - 91033, - 1115 - ], - [ - 425962, - 105435, - 6231 - ], - [ - 426321, - 105031, - 932 - ], - [ - 424379, - 107333, - 892 - ], - [ - 432782, - 90818, - 962 - ], - [ - 432773, - 91008, - 12688 - ], - [ - 432765, - 90855, - 962 - ], - [ - 432750, - 90893, - 962 - ], - [ - 432739, - 90931, - 962 - ], - [ - 428034, - 102822, - 977 - ], - [ - 429130, - 101681, - 992 - ], - [ - 432729, - 90971, - 962 - ], - [ - 432723, - 91011, - 962 - ], - [ - 432719, - 91051, - 952 - ], - [ - 432718, - 91092, - 952 - ], - [ - 432719, - 91132, - 952 - ], - [ - 429192, - 98318, - 11568 - ], - [ - 428847, - 98416, - 11407 - ], - [ - 429126, - 97972, - 11287 - ], - [ - 432724, - 91173, - 952 - ], - [ - 433149, - 91226, - 12156 - ], - [ - 432731, - 91213, - 952 - ], - [ - 432740, - 91252, - 952 - ], - [ - 432753, - 91291, - 952 - ], - [ - 432767, - 91328, - 952 - ], - [ - 434281, - 94276, - 10394 - ], - [ - 434268, - 94095, - 1094 - ], - [ - 434513, - 93946, - 1076 - ], - [ - 432785, - 91365, - 952 - ], - [ - 433514, - 93176, - 13703 - ], - [ - 433109, - 93536, - 1091 - ], - [ - 433135, - 93291, - 13571 - ], - [ - 432805, - 91401, - 952 - ], - [ - 433818, - 95724, - 1015 - ], - [ - 433806, - 95916, - 1012 - ], - [ - 433526, - 90570, - 1054 - ], - [ - 433421, - 90433, - 11425 - ], - [ - 433479, - 90237, - 1024 - ], - [ - 434782, - 93837, - 1080 - ], - [ - 434823, - 94094, - 13013 - ], - [ - 423588, - 102546, - 1087 - ], - [ - 423633, - 102890, - 1091 - ], - [ - 433414, - 95877, - 1040 - ], - [ - 434059, - 94608, - 1068 - ], - [ - 431767, - 98100, - 14054 - ], - [ - 431950, - 98288, - 1012 - ], - [ - 431756, - 98465, - 999 - ], - [ - 405782, - 124896, - 992 - ], - [ - 411618, - 120187, - 902 - ], - [ - 404358, - 126027, - 1002 - ], - [ - 428625, - 99569, - 1118 - ], - [ - 428726, - 99416, - 12704 - ], - [ - 424614, - 103496, - 8721 - ], - [ - 424499, - 103146, - 13029 - ], - [ - 424680, - 103403, - 15141 - ], - [ - 413184, - 116412, - 982 - ], - [ - 414802, - 117311, - 892 - ], - [ - 412261, - 116625, - 1016 - ], - [ - 401061, - 126733, - 1099 - ], - [ - 399362, - 125785, - 1094 - ], - [ - 399464, - 125826, - 6796 - ], - [ - 399407, - 126127, - 1098 - ], - [ - 398141, - 128161, - 7908 - ], - [ - 398484, - 127999, - 1036 - ], - [ - 398666, - 128930, - 8223 - ], - [ - 390189, - 137680, - 6670 - ], - [ - 390088, - 137860, - 1060 - ], - [ - 389836, - 137865, - 5748 - ], - [ - 367365, - 155690, - 992 - ], - [ - 429345, - 99583, - 16315 - ], - [ - 429809, - 99661, - 1035 - ], - [ - 429851, - 99977, - 1029 - ], - [ - 428299, - 101607, - 11091 - ], - [ - 428174, - 101387, - 1083 - ], - [ - 428513, - 101345, - 1086 - ], - [ - 431109, - 97613, - 1072 - ], - [ - 431468, - 98195, - 1048 - ], - [ - 430943, - 98720, - 1039 - ], - [ - 428887, - 99136, - 1119 - ], - [ - 429313, - 99373, - 1085 - ], - [ - 431512, - 98556, - 1003 - ], - [ - 431525, - 98444, - 15321 - ], - [ - 429802, - 99493, - 13495 - ], - [ - 428840, - 98778, - 1130 - ], - [ - 428533, - 98869, - 1132 - ], - [ - 428632, - 98727, - 17298 - ], - [ - 426227, - 100544, - 1088 - ], - [ - 426715, - 100644, - 13984 - ], - [ - 426249, - 100796, - 13294 - ], - [ - 435179, - 89796, - 1052 - ], - [ - 434946, - 89544, - 15505 - ], - [ - 434751, - 89227, - 13319 - ], - [ - 424898, - 102734, - 1110 - ], - [ - 425175, - 102881, - 13107 - ], - [ - 424938, - 103053, - 1088 - ], - [ - 426783, - 101653, - 13046 - ], - [ - 426844, - 101751, - 1110 - ], - [ - 426406, - 101858, - 1155 - ], - [ - 428897, - 98749, - 11490 - ], - [ - 429187, - 98400, - 1123 - ], - [ - 429725, - 99009, - 1056 - ], - [ - 429937, - 100649, - 990 - ], - [ - 429634, - 100192, - 14348 - ], - [ - 430105, - 98222, - 1086 - ], - [ - 430062, - 97888, - 1115 - ], - [ - 430407, - 97454, - 1141 - ], - [ - 430148, - 98562, - 1063 - ], - [ - 430114, - 98418, - 14329 - ], - [ - 400854, - 128108, - 9586 - ], - [ - 399627, - 127598, - 5800 - ], - [ - 399291, - 128064, - 12313 - ], - [ - 399205, - 127399, - 12344 - ], - [ - 431492, - 98805, - 14162 - ], - [ - 430662, - 99446, - 1008 - ], - [ - 430204, - 99411, - 13728 - ], - [ - 429967, - 99073, - 16634 - ], - [ - 430234, - 99233, - 1027 - ], - [ - 428955, - 99068, - 11707 - ], - [ - 430282, - 99140, - 8775 - ], - [ - 430192, - 98891, - 1076 - ], - [ - 424435, - 103630, - 1086 - ], - [ - 424730, - 103514, - 1088 - ], - [ - 426917, - 99567, - 12820 - ], - [ - 427773, - 99402, - 7704 - ], - [ - 426987, - 99649, - 1064 - ], - [ - 427721, - 102549, - 989 - ], - [ - 429445, - 100404, - 1030 - ], - [ - 430167, - 99750, - 12563 - ], - [ - 431672, - 97816, - 1032 - ], - [ - 433212, - 96731, - 1002 - ], - [ - 430052, - 98778, - 12748 - ], - [ - 429636, - 98309, - 1111 - ], - [ - 431026, - 96969, - 1101 - ], - [ - 431247, - 97228, - 8236 - ], - [ - 431069, - 97301, - 1089 - ], - [ - 430323, - 99907, - 1014 - ], - [ - 430280, - 99594, - 1011 - ], - [ - 427389, - 102682, - 1065 - ], - [ - 427361, - 103175, - 12311 - ], - [ - 427023, - 103128, - 1046 - ], - [ - 426187, - 100159, - 7348 - ], - [ - 428565, - 98146, - 7873 - ], - [ - 430359, - 97096, - 1117 - ], - [ - 430680, - 96698, - 1093 - ], - [ - 431342, - 97237, - 1069 - ], - [ - 435187, - 92835, - 12778 - ], - [ - 435519, - 92954, - 1082 - ], - [ - 434884, - 89477, - 1026 - ], - [ - 434934, - 89835, - 1055 - ], - [ - 434524, - 89327, - 1231 - ], - [ - 434492, - 89379, - 13176 - ], - [ - 434204, - 89474, - 1019 - ], - [ - 428375, - 99156, - 12799 - ], - [ - 428583, - 99228, - 1155 - ], - [ - 428291, - 99633, - 1141 - ], - [ - 428552, - 101663, - 1038 - ], - [ - 428214, - 101702, - 1055 - ], - [ - 429060, - 100479, - 1053 - ], - [ - 428301, - 101950, - 10464 - ], - [ - 426934, - 102426, - 1110 - ], - [ - 426800, - 102668, - 11354 - ], - [ - 426451, - 102215, - 1126 - ], - [ - 428258, - 102062, - 1012 - ], - [ - 426913, - 103314, - 11744 - ], - [ - 426572, - 103217, - 951 - ], - [ - 430928, - 97297, - 14669 - ], - [ - 430984, - 96653, - 1101 - ], - [ - 431209, - 96198, - 1105 - ], - [ - 429469, - 100608, - 11200 - ], - [ - 425157, - 104728, - 1036 - ], - [ - 425372, - 104182, - 13463 - ], - [ - 425441, - 104254, - 1050 - ], - [ - 425268, - 102927, - 1087 - ], - [ - 424683, - 103154, - 1096 - ], - [ - 425997, - 103285, - 10802 - ], - [ - 425660, - 102800, - 1113 - ], - [ - 426081, - 102655, - 1113 - ], - [ - 400909, - 128553, - 1019 - ], - [ - 399224, - 124753, - 1073 - ], - [ - 398607, - 125493, - 1061 - ], - [ - 428096, - 98570, - 13931 - ], - [ - 429519, - 98226, - 11846 - ], - [ - 429592, - 97973, - 1114 - ], - [ - 429675, - 97528, - 9739 - ], - [ - 429656, - 97521, - 15122 - ], - [ - 429976, - 97235, - 1112 - ], - [ - 434677, - 93675, - 7750 - ], - [ - 434520, - 93807, - 9219 - ], - [ - 434473, - 93633, - 1095 - ], - [ - 435047, - 93275, - 13796 - ], - [ - 434611, - 93033, - 8012 - ], - [ - 433126, - 92966, - 14066 - ], - [ - 433810, - 92324, - 7362 - ], - [ - 434430, - 93300, - 1114 - ], - [ - 434524, - 93559, - 15238 - ], - [ - 434394, - 93239, - 13979 - ], - [ - 433881, - 93239, - 1098 - ], - [ - 434912, - 92343, - 1096 - ], - [ - 435335, - 92848, - 1122 - ], - [ - 434354, - 94777, - 1050 - ], - [ - 434315, - 94608, - 10257 - ], - [ - 434602, - 93462, - 11039 - ], - [ - 433736, - 90083, - 1030 - ], - [ - 433796, - 90004, - 11517 - ], - [ - 427993, - 102484, - 1009 - ], - [ - 428177, - 102633, - 12477 - ], - [ - 426357, - 103169, - 10351 - ], - [ - 426168, - 103339, - 1069 - ], - [ - 425487, - 104612, - 1028 - ], - [ - 426075, - 104628, - 9374 - ], - [ - 425793, - 103832, - 1066 - ], - [ - 400226, - 129786, - 982 - ], - [ - 402623, - 127530, - 1002 - ], - [ - 426663, - 103886, - 985 - ], - [ - 426574, - 103758, - 12337 - ], - [ - 427104, - 103778, - 981 - ], - [ - 398667, - 129386, - 1026 - ], - [ - 398281, - 129895, - 1023 - ], - [ - 397861, - 129758, - 1000 - ], - [ - 398349, - 131742, - 952 - ], - [ - 397906, - 130089, - 1014 - ], - [ - 430315, - 96776, - 1097 - ], - [ - 430810, - 96646, - 14210 - ], - [ - 429713, - 97865, - 9647 - ], - [ - 430103, - 97468, - 9381 - ], - [ - 430155, - 97114, - 10790 - ], - [ - 429433, - 97915, - 11204 - ], - [ - 427910, - 99361, - 1145 - ], - [ - 427797, - 99717, - 7452 - ], - [ - 427561, - 101108, - 12614 - ], - [ - 427814, - 101110, - 1047 - ], - [ - 428068, - 101659, - 12769 - ], - [ - 426623, - 100082, - 1107 - ], - [ - 426526, - 102729, - 13586 - ], - [ - 428044, - 100663, - 9210 - ], - [ - 428093, - 100271, - 10658 - ], - [ - 428129, - 100646, - 6453 - ], - [ - 426505, - 102127, - 8180 - ], - [ - 428071, - 99952, - 10941 - ], - [ - 427997, - 100033, - 1105 - ], - [ - 427863, - 99029, - 1091 - ], - [ - 427641, - 99778, - 1105 - ], - [ - 428675, - 100127, - 10626 - ], - [ - 428668, - 99899, - 1107 - ], - [ - 428523, - 99815, - 13678 - ], - [ - 427217, - 101360, - 1092 - ], - [ - 428544, - 101496, - 10777 - ], - [ - 428839, - 101227, - 1045 - ], - [ - 434310, - 94434, - 1061 - ], - [ - 434372, - 92594, - 1603 - ], - [ - 434409, - 92389, - 6319 - ], - [ - 434748, - 92683, - 10631 - ], - [ - 433252, - 91391, - 1098 - ], - [ - 432851, - 91467, - 952 - ], - [ - 435447, - 93016, - 12080 - ], - [ - 435376, - 93174, - 1084 - ], - [ - 434248, - 89794, - 1050 - ], - [ - 433982, - 89927, - 1047 - ], - [ - 434428, - 91137, - 1097 - ], - [ - 434710, - 91319, - 12650 - ], - [ - 434413, - 91164, - 12682 - ], - [ - 434220, - 92193, - 7952 - ], - [ - 434213, - 92533, - 7199 - ], - [ - 435110, - 91151, - 1103 - ], - [ - 434804, - 91215, - 10353 - ], - [ - 435783, - 91422, - 1102 - ], - [ - 425801, - 104006, - 11574 - ], - [ - 426300, - 104369, - 998 - ], - [ - 434381, - 90795, - 1081 - ], - [ - 433494, - 90780, - 11820 - ], - [ - 434738, - 93491, - 1093 - ], - [ - 435044, - 93352, - 1078 - ], - [ - 426557, - 104447, - 10788 - ], - [ - 426708, - 104221, - 985 - ], - [ - 425615, - 102454, - 1124 - ], - [ - 426254, - 104015, - 1010 - ], - [ - 426742, - 101322, - 13095 - ], - [ - 425069, - 104053, - 1054 - ], - [ - 426717, - 100786, - 1106 - ], - [ - 427162, - 102251, - 11234 - ], - [ - 426589, - 101020, - 11470 - ], - [ - 426967, - 100911, - 10991 - ], - [ - 426362, - 101540, - 1119 - ], - [ - 425530, - 101805, - 1137 - ], - [ - 425300, - 101108, - 9913 - ], - [ - 426193, - 101168, - 11796 - ], - [ - 425944, - 101905, - 12639 - ], - [ - 425610, - 102020, - 12610 - ], - [ - 425279, - 101863, - 12081 - ], - [ - 426020, - 102213, - 13144 - ], - [ - 427246, - 100198, - 9816 - ], - [ - 426985, - 100581, - 11854 - ], - [ - 427251, - 102555, - 11929 - ], - [ - 433855, - 92714, - 13337 - ], - [ - 433425, - 92715, - 1059 - ], - [ - 432827, - 91435, - 952 - ], - [ - 434121, - 90962, - 1095 - ], - [ - 434209, - 91606, - 1140 - ], - [ - 433893, - 91669, - 9746 - ], - [ - 433721, - 91734, - 13281 - ], - [ - 433659, - 91554, - 1113 - ], - [ - 433507, - 91445, - 10733 - ], - [ - 433707, - 91913, - 1115 - ], - [ - 425573, - 102122, - 1142 - ], - [ - 425136, - 101911, - 1121 - ], - [ - 424641, - 102835, - 1104 - ], - [ - 424598, - 102505, - 1125 - ], - [ - 425814, - 100638, - 1114 - ], - [ - 423888, - 102045, - 1077 - ], - [ - 425093, - 101580, - 1121 - ], - [ - 432322, - 93778, - 1031 - ], - [ - 432693, - 93653, - 1069 - ], - [ - 425963, - 105159, - 974 - ], - [ - 427065, - 103460, - 1022 - ], - [ - 426444, - 104177, - 9703 - ], - [ - 399391, - 126807, - 9700 - ], - [ - 399529, - 126983, - 11319 - ], - [ - 399211, - 126963, - 1099 - ], - [ - 398597, - 127853, - 9256 - ], - [ - 398096, - 127834, - 7882 - ], - [ - 400867, - 126931, - 11952 - ], - [ - 400690, - 126848, - 1105 - ], - [ - 400491, - 127222, - 10190 - ], - [ - 400735, - 127190, - 1099 - ], - [ - 400460, - 127357, - 1106 - ], - [ - 400841, - 127248, - 6658 - ], - [ - 401101, - 127053, - 1065 - ], - [ - 401123, - 127225, - 10663 - ], - [ - 399821, - 126504, - 10600 - ], - [ - 399728, - 126308, - 1121 - ], - [ - 400039, - 126483, - 1132 - ], - [ - 400827, - 127356, - 10598 - ], - [ - 401144, - 127385, - 1049 - ], - [ - 399826, - 126898, - 9925 - ], - [ - 399494, - 126787, - 1086 - ], - [ - 399826, - 126976, - 1249 - ], - [ - 399872, - 127063, - 5922 - ], - [ - 424905, - 104866, - 1039 - ], - [ - 424289, - 104675, - 7116 - ], - [ - 424524, - 104304, - 1066 - ], - [ - 428486, - 101190, - 10538 - ], - [ - 427137, - 100943, - 6853 - ], - [ - 427775, - 100748, - 10290 - ], - [ - 427737, - 100407, - 10396 - ], - [ - 428883, - 101571, - 1022 - ], - [ - 428190, - 101303, - 10095 - ], - [ - 428352, - 100212, - 10475 - ], - [ - 428821, - 100482, - 7117 - ], - [ - 427766, - 99704, - 12158 - ], - [ - 400325, - 126336, - 1122 - ], - [ - 400149, - 126277, - 11312 - ], - [ - 399994, - 126151, - 1122 - ], - [ - 400084, - 126829, - 1127 - ], - [ - 400147, - 126907, - 5926 - ], - [ - 435522, - 91001, - 1101 - ], - [ - 435157, - 91493, - 1128 - ], - [ - 401534, - 127250, - 6758 - ], - [ - 401129, - 127040, - 6895 - ], - [ - 434652, - 92820, - 1129 - ], - [ - 434058, - 92294, - 10950 - ], - [ - 434003, - 92079, - 1102 - ], - [ - 428593, - 101997, - 1001 - ], - [ - 424348, - 102952, - 1113 - ], - [ - 424525, - 102835, - 8715 - ], - [ - 424793, - 103056, - 12123 - ], - [ - 433743, - 95798, - 12035 - ], - [ - 399052, - 127987, - 9083 - ], - [ - 398650, - 125809, - 1070 - ], - [ - 398220, - 125989, - 1072 - ], - [ - 398906, - 127034, - 8803 - ], - [ - 398694, - 126144, - 1059 - ], - [ - 399171, - 126291, - 7544 - ], - [ - 398723, - 127254, - 12164 - ], - [ - 399313, - 125423, - 1081 - ], - [ - 399295, - 125736, - 10343 - ], - [ - 400509, - 127044, - 6703 - ], - [ - 399773, - 126657, - 1106 - ], - [ - 399078, - 125964, - 1076 - ], - [ - 400008, - 127824, - 10776 - ], - [ - 400430, - 126898, - 9929 - ], - [ - 400415, - 127012, - 1116 - ], - [ - 399325, - 126480, - 9375 - ], - [ - 399453, - 126464, - 1109 - ], - [ - 400372, - 126681, - 1138 - ], - [ - 400521, - 127549, - 9995 - ], - [ - 428129, - 101051, - 1071 - ], - [ - 428106, - 100966, - 9516 - ], - [ - 425059, - 101236, - 10110 - ], - [ - 425049, - 101264, - 1114 - ], - [ - 428465, - 100988, - 1072 - ], - [ - 429103, - 100802, - 1059 - ], - [ - 428711, - 100212, - 1126 - ], - [ - 400043, - 128411, - 5830 - ], - [ - 399720, - 128499, - 1079 - ], - [ - 399679, - 125948, - 1100 - ], - [ - 399548, - 124954, - 1106 - ], - [ - 433569, - 90882, - 1084 - ], - [ - 433296, - 91134, - 8304 - ], - [ - 434579, - 91693, - 10059 - ], - [ - 400646, - 126514, - 1109 - ], - [ - 400508, - 126669, - 7382 - ], - [ - 431409, - 95795, - 1065 - ], - [ - 433887, - 92382, - 14424 - ], - [ - 398002, - 129979, - 8456 - ], - [ - 397162, - 127610, - 1063 - ], - [ - 397594, - 127711, - 1052 - ], - [ - 397206, - 127957, - 1026 - ], - [ - 397773, - 129078, - 1020 - ], - [ - 395641, - 128169, - 1055 - ], - [ - 396768, - 127452, - 1029 - ], - [ - 396484, - 127596, - 1029 - ], - [ - 396441, - 127282, - 989 - ], - [ - 398012, - 127551, - 7236 - ], - [ - 398402, - 127345, - 1094 - ], - [ - 434518, - 91813, - 1113 - ], - [ - 397640, - 128115, - 6833 - ], - [ - 399033, - 125627, - 1073 - ], - [ - 398663, - 125787, - 7707 - ], - [ - 399637, - 125977, - 8970 - ], - [ - 423981, - 102718, - 1119 - ], - [ - 426125, - 100479, - 12127 - ], - [ - 427010, - 99905, - 13511 - ], - [ - 427446, - 100181, - 6643 - ], - [ - 400035, - 128675, - 1035 - ], - [ - 394753, - 130461, - 986 - ], - [ - 397792, - 126188, - 1042 - ], - [ - 398103, - 126193, - 5398 - ], - [ - 425202, - 105075, - 1012 - ], - [ - 425135, - 105374, - 7793 - ], - [ - 424947, - 105177, - 1048 - ], - [ - 425908, - 105099, - 6102 - ], - [ - 434255, - 91924, - 1184 - ], - [ - 434664, - 92234, - 6433 - ], - [ - 423734, - 102782, - 8284 - ], - [ - 394252, - 129929, - 1270 - ], - [ - 394302, - 130264, - 1350 - ], - [ - 393523, - 130270, - 1645 - ], - [ - 424988, - 105515, - 1001 - ], - [ - 424245, - 104744, - 1053 - ], - [ - 424157, - 104067, - 1082 - ], - [ - 424580, - 104197, - 6918 - ], - [ - 424818, - 104194, - 1065 - ], - [ - 424479, - 103971, - 1072 - ], - [ - 396814, - 127788, - 1060 - ], - [ - 396723, - 127109, - 1047 - ], - [ - 397929, - 127203, - 1065 - ], - [ - 399505, - 124619, - 1124 - ], - [ - 399378, - 124779, - 7537 - ], - [ - 396369, - 127441, - 7500 - ], - [ - 434356, - 94915, - 10260 - ], - [ - 400822, - 127870, - 1064 - ], - [ - 400806, - 127805, - 9467 - ], - [ - 398152, - 128900, - 1047 - ], - [ - 398358, - 127027, - 1086 - ], - [ - 398591, - 127074, - 10628 - ], - [ - 398335, - 127015, - 7138 - ], - [ - 400144, - 127067, - 9758 - ], - [ - 401561, - 127266, - 1052 - ], - [ - 398309, - 126670, - 1053 - ], - [ - 389482, - 137683, - 1059 - ], - [ - 389996, - 137173, - 1050 - ], - [ - 390810, - 138290, - 1009 - ], - [ - 390722, - 137602, - 1039 - ], - [ - 391285, - 138485, - 989 - ], - [ - 390436, - 138417, - 1007 - ], - [ - 390400, - 138088, - 5053 - ], - [ - 390393, - 138081, - 1019 - ], - [ - 425328, - 106063, - 944 - ], - [ - 425284, - 105730, - 958 - ], - [ - 425544, - 105243, - 5585 - ], - [ - 399272, - 125108, - 1088 - ], - [ - 397019, - 127652, - 8469 - ], - [ - 434585, - 92144, - 1447 - ], - [ - 388698, - 137894, - 1077 - ], - [ - 389103, - 137797, - 1069 - ], - [ - 390629, - 136921, - 1022 - ], - [ - 390257, - 137049, - 1047 - ], - [ - 390488, - 137028, - 4327 - ], - [ - 390255, - 137130, - 4803 - ], - [ - 389914, - 138615, - 1015 - ], - [ - 390128, - 138182, - 1023 - ], - [ - 389054, - 137436, - 1042 - ], - [ - 388978, - 137765, - 5295 - ], - [ - 390016, - 137163, - 5199 - ], - [ - 411712, - 116353, - 992 - ], - [ - 412373, - 116144, - 3482 - ], - [ - 412723, - 116148, - 999 - ], - [ - 390347, - 137728, - 1034 - ], - [ - 390856, - 138636, - 996 - ], - [ - 429188, - 101479, - 996 - ], - [ - 390609, - 139759, - 949 - ], - [ - 412170, - 115948, - 991 - ], - [ - 411672, - 116035, - 1010 - ], - [ - 391124, - 138545, - 4961 - ], - [ - 424241, - 104339, - 7053 - ], - [ - 411492, - 116247, - 4314 - ], - [ - 391428, - 133124, - 1384 - ], - [ - 393590, - 130982, - 1259 - ], - [ - 393547, - 130633, - 1311 - ], - [ - 393907, - 130813, - 963 - ], - [ - 391797, - 132985, - 960 - ], - [ - 393236, - 130836, - 1331 - ], - [ - 393214, - 130467, - 1709 - ], - [ - 392895, - 130683, - 979 - ], - [ - 393281, - 131184, - 1315 - ], - [ - 392966, - 131007, - 1372 - ], - [ - 391663, - 131969, - 980 - ], - [ - 392400, - 131324, - 997 - ], - [ - 392071, - 131842, - 977 - ], - [ - 394192, - 129620, - 1001 - ], - [ - 393311, - 131573, - 1004 - ], - [ - 390679, - 133708, - 1369 - ], - [ - 390638, - 133385, - 1403 - ], - [ - 390610, - 132992, - 1746 - ], - [ - 391378, - 132767, - 1347 - ], - [ - 391354, - 132386, - 1731 - ], - [ - 391776, - 132611, - 1377 - ], - [ - 391733, - 132262, - 1425 - ], - [ - 392676, - 131168, - 991 - ], - [ - 390180, - 133550, - 988 - ], - [ - 433810, - 92324, - 1112 - ], - [ - 367650, - 158541, - 1032 - ], - [ - 367458, - 158917, - 1032 - ], - [ - 365788, - 157197, - 1012 - ], - [ - 367797, - 157613, - 1022 - ], - [ - 367809, - 158208, - 1022 - ], - [ - 367091, - 156892, - 1012 - ], - [ - 367484, - 157103, - 1022 - ], - [ - 366280, - 156728, - 1002 - ], - [ - 364746, - 159143, - 1032 - ], - [ - 364397, - 158523, - 1012 - ], - [ - 366801, - 160205, - 1032 - ], - [ - 365191, - 160302, - 1052 - ], - [ - 366614, - 160567, - 1032 - ], - [ - 365453, - 160670, - 1052 - ], - [ - 366246, - 160828, - 1042 - ], - [ - 365762, - 160903, - 1052 - ], - [ - 366743, - 61321, - 521 - ], - [ - 366715, - 61012, - 684 - ], - [ - 367178, - 61033, - 596 - ], - [ - 360146, - 60654, - 505 - ], - [ - 362406, - 60014, - 526 - ], - [ - 359783, - 59648, - 530 - ], - [ - 363327, - 60736, - 584 - ], - [ - 365060, - 61939, - 567 - ], - [ - 364548, - 60883, - 525 - ], - [ - 367939, - 63755, - 694 - ], - [ - 363950, - 60818, - 564 - ], - [ - 368579, - 62108, - 676 - ], - [ - 367883, - 63414, - 545 - ], - [ - 359872, - 60335, - 520 - ], - [ - 362444, - 60353, - 425 - ], - [ - 276619, - 138066, - 992 - ], - [ - 276701, - 138123, - 992 - ], - [ - 271333, - 143816, - 911 - ], - [ - 271299, - 143461, - 1107 - ], - [ - 271806, - 142333, - 958 - ], - [ - 276896, - 134990, - 1082 - ], - [ - 278139, - 135883, - 1042 - ], - [ - 272893, - 140558, - 1052 - ], - [ - 278179, - 135825, - 1042 - ], - [ - 270504, - 144491, - 899 - ], - [ - 270075, - 138451, - 1171 - ], - [ - 269966, - 140380, - 1118 - ], - [ - 269404, - 139274, - 1136 - ], - [ - 272067, - 141754, - 946 - ], - [ - 270667, - 140950, - 1073 - ], - [ - 272888, - 141296, - 943 - ], - [ - 275114, - 140275, - 984 - ], - [ - 267332, - 148338, - 856 - ], - [ - 282476, - 162547, - 1026 - ], - [ - 281520, - 161268, - 823 - ], - [ - 276496, - 156973, - 1079 - ], - [ - 270105, - 153871, - 944 - ], - [ - 268391, - 147198, - 881 - ], - [ - 310521, - 145779, - 966 - ], - [ - 271102, - 101478, - 740 - ], - [ - 271485, - 100944, - 790 - ], - [ - 273542, - 102071, - 795 - ], - [ - 273800, - 98326, - 838 - ], - [ - 272670, - 99741, - 811 - ], - [ - 274593, - 100515, - 832 - ], - [ - 272398, - 99596, - 790 - ], - [ - 268053, - 105577, - 738 - ], - [ - 268697, - 99199, - 785 - ], - [ - 268903, - 103113, - 585 - ], - [ - 269329, - 103908, - 755 - ], - [ - 267460, - 101187, - 741 - ], - [ - 268235, - 100677, - 820 - ], - [ - 269338, - 102006, - 728 - ], - [ - 269056, - 104145, - 768 - ], - [ - 268589, - 103360, - 723 - ], - [ - 267071, - 101755, - 681 - ], - [ - 271017, - 100834, - 758 - ], - [ - 271058, - 101149, - 752 - ], - [ - 274364, - 98824, - 818 - ], - [ - 274455, - 99497, - 825 - ], - [ - 272911, - 99562, - 829 - ], - [ - 266693, - 101993, - 791 - ], - [ - 268141, - 100004, - 785 - ], - [ - 268434, - 104954, - 764 - ], - [ - 270059, - 102895, - 860 - ], - [ - 270467, - 102969, - 713 - ], - [ - 267844, - 100581, - 789 - ], - [ - 275350, - 99475, - 826 - ], - [ - 221743, - 136457, - 648 - ], - [ - 222631, - 134036, - 634 - ], - [ - 226841, - 134405, - 743 - ], - [ - 226406, - 134591, - 593 - ], - [ - 223827, - 133315, - 672 - ], - [ - 222347, - 134950, - 680 - ], - [ - 383073, - 43503, - 592 - ], - [ - 386250, - 42666, - 592 - ], - [ - 425929, - 58322, - 1045 - ], - [ - 366134, - 100539, - 622 - ], - [ - 365082, - 101593, - 632 - ], - [ - 360010, - 105604, - 642 - ], - [ - 370368, - 95603, - 592 - ], - [ - 360779, - 105741, - 642 - ], - [ - 361857, - 104697, - 642 - ], - [ - 365561, - 103453, - 694 - ], - [ - 364971, - 104124, - 696 - ], - [ - 361901, - 107539, - 792 - ], - [ - 361822, - 106815, - 712 - ], - [ - 362898, - 105757, - 692 - ], - [ - 372246, - 97494, - 752 - ], - [ - 370467, - 96364, - 612 - ], - [ - 367196, - 101608, - 642 - ], - [ - 370457, - 98470, - 652 - ], - [ - 371488, - 97446, - 682 - ], - [ - 369383, - 97413, - 612 - ], - [ - 366131, - 102645, - 662 - ], - [ - 368972, - 98867, - 738 - ], - [ - 365618, - 103790, - 860 - ], - [ - 312807, - 134360, - 1079 - ], - [ - 312314, - 133791, - 850 - ], - [ - 313654, - 133483, - 1029 - ], - [ - 305367, - 129285, - 1010 - ], - [ - 305314, - 128950, - 879 - ], - [ - 307665, - 130718, - 801 - ], - [ - 301981, - 125849, - 804 - ], - [ - 305269, - 125776, - 794 - ], - [ - 299515, - 128094, - 984 - ], - [ - 302336, - 128572, - 726 - ], - [ - 302726, - 129122, - 879 - ], - [ - 307563, - 134619, - 833 - ], - [ - 308681, - 131876, - 990 - ], - [ - 307764, - 131358, - 1001 - ], - [ - 310868, - 133110, - 822 - ], - [ - 311054, - 134487, - 877 - ], - [ - 310190, - 133672, - 812 - ], - [ - 315174, - 138287, - 973 - ], - [ - 313445, - 135650, - 1082 - ], - [ - 314504, - 133229, - 951 - ], - [ - 325938, - 146423, - 1041 - ], - [ - 325457, - 145886, - 815 - ], - [ - 322418, - 146540, - 798 - ], - [ - 321522, - 146095, - 918 - ], - [ - 321427, - 145443, - 809 - ], - [ - 324922, - 141775, - 945 - ], - [ - 321254, - 144066, - 921 - ], - [ - 317572, - 139980, - 910 - ], - [ - 319015, - 140631, - 747 - ], - [ - 316962, - 138758, - 971 - ], - [ - 316125, - 138311, - 861 - ], - [ - 313567, - 136635, - 975 - ], - [ - 304621, - 130196, - 1104 - ], - [ - 304850, - 128758, - 893 - ], - [ - 312647, - 136123, - 1176 - ], - [ - 313627, - 136981, - 1169 - ], - [ - 300730, - 129077, - 731 - ], - [ - 307946, - 132747, - 974 - ], - [ - 311400, - 134366, - 1045 - ], - [ - 309152, - 132477, - 820 - ], - [ - 308768, - 132532, - 997 - ], - [ - 312426, - 131698, - 694 - ], - [ - 324281, - 146988, - 804 - ], - [ - 300236, - 128203, - 805 - ], - [ - 300272, - 128531, - 716 - ], - [ - 306753, - 130995, - 921 - ], - [ - 312894, - 135072, - 977 - ], - [ - 311836, - 134979, - 1080 - ], - [ - 312178, - 132782, - 816 - ], - [ - 312988, - 132258, - 982 - ], - [ - 312579, - 132700, - 972 - ], - [ - 324053, - 148484, - 964 - ], - [ - 322563, - 147522, - 996 - ], - [ - 323521, - 147616, - 811 - ], - [ - 309061, - 131794, - 807 - ], - [ - 302426, - 129247, - 742 - ], - [ - 313031, - 136042, - 1099 - ], - [ - 312546, - 135462, - 987 - ], - [ - 321960, - 146649, - 819 - ], - [ - 275475, - 103353, - 863 - ], - [ - 275368, - 106193, - 947 - ], - [ - 275223, - 105228, - 751 - ], - [ - 274344, - 105579, - 870 - ], - [ - 274790, - 105715, - 736 - ], - [ - 391587, - 60427, - 897 - ], - [ - 391318, - 58414, - 860 - ], - [ - 392796, - 60099, - 832 - ], - [ - 388995, - 59933, - 810 - ], - [ - 387242, - 62076, - 857 - ], - [ - 388863, - 58919, - 828 - ], - [ - 388439, - 58768, - 843 - ], - [ - 388355, - 58122, - 848 - ], - [ - 389204, - 58045, - 849 - ], - [ - 387338, - 65627, - 827 - ], - [ - 386935, - 62591, - 826 - ], - [ - 391031, - 60743, - 751 - ], - [ - 386142, - 62332, - 822 - ], - [ - 386572, - 62787, - 799 - ], - [ - 386500, - 65020, - 835 - ], - [ - 392896, - 60958, - 882 - ], - [ - 389424, - 59737, - 808 - ], - [ - 389380, - 59399, - 810 - ], - [ - 390026, - 57684, - 830 - ], - [ - 385688, - 62180, - 817 - ], - [ - 395439, - 33798, - 622 - ], - [ - 396591, - 33463, - 632 - ], - [ - 396716, - 33896, - 642 - ], - [ - 395564, - 34230, - 632 - ], - [ - 405450, - 106376, - 940 - ], - [ - 235199, - 132876, - 712 - ], - [ - 235342, - 133869, - 806 - ], - [ - 226281, - 130328, - 733 - ], - [ - 229817, - 132981, - 986 - ], - [ - 228914, - 132270, - 999 - ], - [ - 229234, - 131801, - 726 - ], - [ - 232296, - 134563, - 1017 - ], - [ - 228138, - 131533, - 966 - ], - [ - 230175, - 132189, - 852 - ], - [ - 230277, - 132832, - 1043 - ], - [ - 231230, - 133254, - 703 - ], - [ - 233239, - 134229, - 723 - ], - [ - 232244, - 134205, - 984 - ], - [ - 235735, - 134406, - 789 - ], - [ - 226188, - 129680, - 681 - ], - [ - 226235, - 129991, - 758 - ], - [ - 228073, - 131188, - 725 - ], - [ - 230634, - 132024, - 700 - ], - [ - 227946, - 128058, - 645 - ], - [ - 350141, - 122886, - 742 - ], - [ - 347205, - 126302, - 752 - ], - [ - 344822, - 121668, - 715 - ], - [ - 360369, - 110915, - 652 - ], - [ - 354926, - 108852, - 642 - ], - [ - 359563, - 106065, - 642 - ], - [ - 361890, - 108444, - 732 - ], - [ - 361606, - 109866, - 632 - ], - [ - 379954, - 89164, - 712 - ], - [ - 379632, - 90679, - 730 - ], - [ - 379572, - 90939, - 922 - ], - [ - 379383, - 91080, - 677 - ], - [ - 377012, - 90096, - 622 - ], - [ - 379386, - 88579, - 722 - ], - [ - 379670, - 88872, - 722 - ], - [ - 353638, - 118214, - 719 - ], - [ - 354684, - 116451, - 682 - ], - [ - 353909, - 118490, - 852 - ], - [ - 368462, - 70410, - 542 - ], - [ - 303617, - 70561, - 560 - ], - [ - 306618, - 69288, - 522 - ], - [ - 305887, - 71683, - 562 - ], - [ - 304437, - 71387, - 621 - ], - [ - 317569, - 80196, - 623 - ], - [ - 320909, - 82425, - 562 - ], - [ - 316531, - 79673, - 872 - ], - [ - 309289, - 74476, - 607 - ], - [ - 311243, - 75969, - 641 - ], - [ - 314293, - 78125, - 624 - ], - [ - 315972, - 78655, - 607 - ], - [ - 315642, - 78751, - 620 - ], - [ - 316061, - 79305, - 643 - ], - [ - 316637, - 79434, - 746 - ], - [ - 336807, - 95173, - 673 - ], - [ - 338208, - 96250, - 552 - ], - [ - 320553, - 82941, - 572 - ], - [ - 325695, - 84711, - 522 - ], - [ - 334893, - 93514, - 549 - ], - [ - 336440, - 93341, - 552 - ], - [ - 336474, - 93380, - 552 - ], - [ - 352789, - 118551, - 697 - ], - [ - 353153, - 119210, - 842 - ], - [ - 375222, - 87220, - 607 - ], - [ - 373735, - 84574, - 602 - ], - [ - 375340, - 85504, - 781 - ], - [ - 346341, - 119762, - 670 - ], - [ - 350182, - 114993, - 652 - ], - [ - 346028, - 120160, - 731 - ], - [ - 345800, - 120530, - 702 - ], - [ - 343678, - 123486, - 746 - ], - [ - 346993, - 126549, - 752 - ], - [ - 350357, - 122646, - 752 - ], - [ - 353309, - 119358, - 842 - ], - [ - 347282, - 126370, - 762 - ], - [ - 350233, - 122953, - 822 - ], - [ - 349294, - 119682, - 659 - ], - [ - 350436, - 122705, - 822 - ], - [ - 337030, - 93622, - 552 - ], - [ - 337082, - 93620, - 552 - ], - [ - 336978, - 93620, - 552 - ], - [ - 336926, - 93615, - 552 - ], - [ - 336875, - 93606, - 552 - ], - [ - 336825, - 93594, - 552 - ], - [ - 336775, - 93578, - 552 - ], - [ - 336727, - 93559, - 552 - ], - [ - 336680, - 93537, - 552 - ], - [ - 336635, - 93511, - 552 - ], - [ - 336550, - 93451, - 552 - ], - [ - 336591, - 93483, - 552 - ], - [ - 336511, - 93417, - 552 - ], - [ - 336408, - 93300, - 552 - ], - [ - 336380, - 93256, - 552 - ], - [ - 336354, - 93211, - 552 - ], - [ - 336332, - 93164, - 552 - ], - [ - 336297, - 93066, - 552 - ], - [ - 336313, - 93116, - 552 - ], - [ - 336285, - 93016, - 552 - ], - [ - 336276, - 92965, - 552 - ], - [ - 336271, - 92913, - 552 - ], - [ - 336269, - 92861, - 552 - ], - [ - 336271, - 92809, - 552 - ], - [ - 336276, - 92757, - 552 - ], - [ - 336285, - 92706, - 552 - ], - [ - 336297, - 92656, - 562 - ], - [ - 336313, - 92606, - 562 - ], - [ - 336332, - 92558, - 562 - ], - [ - 336354, - 92511, - 562 - ], - [ - 336380, - 92466, - 562 - ], - [ - 337178, - 87197, - 542 - ], - [ - 337194, - 87247, - 542 - ], - [ - 336408, - 92422, - 562 - ], - [ - 337855, - 87748, - 542 - ], - [ - 337907, - 87750, - 542 - ], - [ - 337235, - 92128, - 552 - ], - [ - 336440, - 92381, - 562 - ], - [ - 336474, - 92342, - 562 - ], - [ - 337235, - 87341, - 542 - ], - [ - 336511, - 92305, - 562 - ], - [ - 337260, - 87386, - 542 - ], - [ - 336550, - 92271, - 562 - ], - [ - 338945, - 80700, - 532 - ], - [ - 351242, - 80381, - 544 - ], - [ - 338993, - 80719, - 532 - ], - [ - 336591, - 92239, - 562 - ], - [ - 337289, - 87430, - 542 - ], - [ - 337320, - 87471, - 542 - ], - [ - 336635, - 92211, - 562 - ], - [ - 337354, - 87510, - 542 - ], - [ - 336680, - 92185, - 552 - ], - [ - 337390, - 87546, - 542 - ], - [ - 336727, - 92163, - 562 - ], - [ - 336775, - 92144, - 562 - ], - [ - 337470, - 87611, - 542 - ], - [ - 336825, - 92128, - 562 - ], - [ - 337429, - 87580, - 542 - ], - [ - 337514, - 87640, - 542 - ], - [ - 336875, - 92116, - 562 - ], - [ - 337559, - 87665, - 542 - ], - [ - 336926, - 92107, - 562 - ], - [ - 337605, - 87687, - 542 - ], - [ - 336978, - 92102, - 562 - ], - [ - 337653, - 87706, - 542 - ], - [ - 337030, - 92100, - 552 - ], - [ - 337703, - 87722, - 542 - ], - [ - 337082, - 92102, - 552 - ], - [ - 337753, - 87734, - 542 - ], - [ - 337134, - 92107, - 552 - ], - [ - 337804, - 87743, - 542 - ], - [ - 337185, - 92116, - 552 - ], - [ - 337959, - 87748, - 542 - ], - [ - 338010, - 87743, - 542 - ], - [ - 337333, - 92163, - 552 - ], - [ - 338061, - 87734, - 542 - ], - [ - 338111, - 87722, - 542 - ], - [ - 337425, - 92211, - 552 - ], - [ - 338161, - 87706, - 542 - ], - [ - 338209, - 87688, - 542 - ], - [ - 337510, - 92271, - 552 - ], - [ - 338255, - 87665, - 542 - ], - [ - 338300, - 87640, - 542 - ], - [ - 342488, - 90818, - 546 - ], - [ - 338385, - 87580, - 542 - ], - [ - 338424, - 87546, - 542 - ], - [ - 337959, - 86238, - 532 - ], - [ - 337907, - 86236, - 532 - ], - [ - 338492, - 82129, - 522 - ], - [ - 338161, - 86280, - 532 - ], - [ - 338111, - 86264, - 532 - ], - [ - 338694, - 82157, - 532 - ], - [ - 343414, - 94496, - 559 - ], - [ - 343556, - 94047, - 952 - ], - [ - 343855, - 94856, - 952 - ], - [ - 346944, - 84398, - 533 - ], - [ - 339442, - 81356, - 542 - ], - [ - 339437, - 81305, - 542 - ], - [ - 337134, - 93615, - 552 - ], - [ - 342940, - 89804, - 552 - ], - [ - 338554, - 87386, - 542 - ], - [ - 338579, - 87341, - 532 - ], - [ - 337789, - 92913, - 562 - ], - [ - 342670, - 92193, - 548 - ], - [ - 337784, - 92965, - 562 - ], - [ - 337775, - 93016, - 562 - ], - [ - 342937, - 94199, - 545 - ], - [ - 337763, - 93066, - 562 - ], - [ - 337747, - 93116, - 562 - ], - [ - 337728, - 93164, - 562 - ], - [ - 337706, - 93211, - 562 - ], - [ - 337680, - 93256, - 562 - ], - [ - 337652, - 93300, - 562 - ], - [ - 337620, - 93341, - 562 - ], - [ - 337586, - 93380, - 562 - ], - [ - 337549, - 93417, - 552 - ], - [ - 337510, - 93451, - 562 - ], - [ - 337469, - 93483, - 562 - ], - [ - 337425, - 93511, - 552 - ], - [ - 337380, - 93537, - 552 - ], - [ - 337333, - 93559, - 552 - ], - [ - 337285, - 93578, - 552 - ], - [ - 337235, - 93594, - 552 - ], - [ - 337185, - 93606, - 552 - ], - [ - 338847, - 82141, - 542 - ], - [ - 338255, - 86321, - 532 - ], - [ - 338796, - 82150, - 542 - ], - [ - 338221, - 81989, - 522 - ], - [ - 337605, - 86299, - 532 - ], - [ - 338182, - 81955, - 522 - ], - [ - 327152, - 82909, - 492 - ], - [ - 337972, - 81609, - 512 - ], - [ - 337987, - 81658, - 512 - ], - [ - 337960, - 81560, - 512 - ], - [ - 337951, - 81509, - 512 - ], - [ - 337946, - 81458, - 512 - ], - [ - 337944, - 81407, - 512 - ], - [ - 337946, - 81356, - 512 - ], - [ - 337951, - 81305, - 512 - ], - [ - 337960, - 81254, - 502 - ], - [ - 337972, - 81205, - 502 - ], - [ - 337987, - 81156, - 502 - ], - [ - 338006, - 81108, - 502 - ], - [ - 338028, - 81062, - 502 - ], - [ - 338053, - 81017, - 502 - ], - [ - 338081, - 80974, - 502 - ], - [ - 338112, - 80934, - 502 - ], - [ - 338146, - 80895, - 502 - ], - [ - 338182, - 80859, - 502 - ], - [ - 338221, - 80825, - 512 - ], - [ - 338261, - 80794, - 512 - ], - [ - 338304, - 80766, - 512 - ], - [ - 338349, - 80741, - 512 - ], - [ - 338395, - 80719, - 512 - ], - [ - 342944, - 90666, - 732 - ], - [ - 338443, - 80700, - 502 - ], - [ - 366246, - 70840, - 482 - ], - [ - 338541, - 80673, - 512 - ], - [ - 338492, - 80685, - 502 - ], - [ - 338592, - 80664, - 512 - ], - [ - 338643, - 80659, - 512 - ], - [ - 338694, - 80657, - 512 - ], - [ - 338745, - 80659, - 522 - ], - [ - 338796, - 80664, - 522 - ], - [ - 338847, - 80673, - 522 - ], - [ - 354860, - 79368, - 513 - ], - [ - 359198, - 79639, - 520 - ], - [ - 357071, - 79250, - 524 - ], - [ - 339084, - 80766, - 532 - ], - [ - 339039, - 80741, - 532 - ], - [ - 339127, - 80794, - 532 - ], - [ - 347798, - 83892, - 962 - ], - [ - 347355, - 84507, - 962 - ], - [ - 339167, - 80825, - 532 - ], - [ - 350781, - 80763, - 542 - ], - [ - 339206, - 80859, - 532 - ], - [ - 346957, - 85151, - 952 - ], - [ - 346604, - 85822, - 962 - ], - [ - 345875, - 86545, - 536 - ], - [ - 339276, - 80934, - 532 - ], - [ - 339242, - 80895, - 532 - ], - [ - 348533, - 82562, - 544 - ], - [ - 346299, - 86515, - 962 - ], - [ - 345422, - 88361, - 555 - ], - [ - 345924, - 86889, - 586 - ], - [ - 345836, - 87957, - 942 - ], - [ - 339360, - 81062, - 532 - ], - [ - 339382, - 81108, - 532 - ], - [ - 346042, - 87228, - 952 - ], - [ - 345271, - 89390, - 559 - ], - [ - 345680, - 88698, - 942 - ], - [ - 345577, - 89449, - 932 - ], - [ - 345526, - 90204, - 952 - ], - [ - 345169, - 90443, - 551 - ], - [ - 343427, - 91086, - 569 - ], - [ - 345527, - 90962, - 952 - ], - [ - 343188, - 91120, - 962 - ], - [ - 343132, - 92378, - 972 - ], - [ - 343315, - 93220, - 942 - ], - [ - 338061, - 86252, - 532 - ], - [ - 338643, - 82155, - 532 - ], - [ - 338010, - 86243, - 532 - ], - [ - 338541, - 82141, - 522 - ], - [ - 337855, - 86238, - 532 - ], - [ - 337804, - 86243, - 532 - ], - [ - 338395, - 82095, - 522 - ], - [ - 339334, - 81796, - 542 - ], - [ - 339306, - 81839, - 542 - ], - [ - 339275, - 81880, - 542 - ], - [ - 338579, - 86645, - 532 - ], - [ - 339206, - 81955, - 542 - ], - [ - 339242, - 81919, - 542 - ], - [ - 338554, - 86600, - 532 - ], - [ - 339167, - 81988, - 542 - ], - [ - 338525, - 86556, - 532 - ], - [ - 339126, - 82019, - 542 - ], - [ - 338494, - 86515, - 532 - ], - [ - 339083, - 82047, - 542 - ], - [ - 338460, - 86476, - 532 - ], - [ - 339039, - 82073, - 542 - ], - [ - 338424, - 86440, - 532 - ], - [ - 338993, - 82095, - 542 - ], - [ - 337285, - 92144, - 552 - ], - [ - 337289, - 86556, - 532 - ], - [ - 337152, - 87045, - 532 - ], - [ - 338385, - 86406, - 532 - ], - [ - 338945, - 82113, - 542 - ], - [ - 338344, - 86375, - 532 - ], - [ - 338896, - 82129, - 542 - ], - [ - 338300, - 86346, - 532 - ], - [ - 338209, - 86299, - 532 - ], - [ - 338745, - 82155, - 532 - ], - [ - 338592, - 82150, - 522 - ], - [ - 338443, - 82114, - 522 - ], - [ - 337178, - 86789, - 532 - ], - [ - 337166, - 86839, - 532 - ], - [ - 337213, - 87295, - 542 - ], - [ - 337703, - 86264, - 532 - ], - [ - 338261, - 82020, - 522 - ], - [ - 338304, - 82048, - 522 - ], - [ - 337653, - 86280, - 522 - ], - [ - 337559, - 86321, - 532 - ], - [ - 338146, - 81919, - 522 - ], - [ - 337166, - 87147, - 542 - ], - [ - 337514, - 86346, - 532 - ], - [ - 338112, - 81880, - 522 - ], - [ - 337157, - 87096, - 532 - ], - [ - 338081, - 81840, - 512 - ], - [ - 337470, - 86375, - 532 - ], - [ - 337390, - 86440, - 532 - ], - [ - 338028, - 81752, - 512 - ], - [ - 338053, - 81797, - 512 - ], - [ - 337150, - 86993, - 532 - ], - [ - 338006, - 81706, - 512 - ], - [ - 337354, - 86476, - 532 - ], - [ - 337152, - 86941, - 532 - ], - [ - 337320, - 86515, - 532 - ], - [ - 337157, - 86890, - 532 - ], - [ - 337429, - 86406, - 532 - ], - [ - 338349, - 82073, - 522 - ], - [ - 337753, - 86252, - 532 - ], - [ - 337194, - 86739, - 532 - ], - [ - 337213, - 86691, - 532 - ], - [ - 337235, - 86645, - 532 - ], - [ - 337260, - 86600, - 532 - ], - [ - 339360, - 81752, - 542 - ], - [ - 339382, - 81706, - 542 - ], - [ - 339400, - 81658, - 532 - ], - [ - 339416, - 81609, - 542 - ], - [ - 337620, - 92381, - 562 - ], - [ - 337586, - 92342, - 562 - ], - [ - 338601, - 86691, - 532 - ], - [ - 343008, - 91525, - 962 - ], - [ - 338620, - 86739, - 532 - ], - [ - 338636, - 86789, - 532 - ], - [ - 337706, - 92511, - 562 - ], - [ - 337680, - 92466, - 562 - ], - [ - 338648, - 86839, - 532 - ], - [ - 337728, - 92558, - 562 - ], - [ - 343549, - 95515, - 555 - ], - [ - 337747, - 92606, - 562 - ], - [ - 337763, - 92656, - 562 - ], - [ - 337549, - 92305, - 562 - ], - [ - 338344, - 87612, - 542 - ], - [ - 338657, - 87096, - 532 - ], - [ - 338662, - 87045, - 532 - ], - [ - 338602, - 87295, - 532 - ], - [ - 338620, - 87247, - 532 - ], - [ - 338526, - 87430, - 542 - ], - [ - 338494, - 87471, - 542 - ], - [ - 338460, - 87510, - 542 - ], - [ - 337469, - 92239, - 552 - ], - [ - 337380, - 92185, - 552 - ], - [ - 376640, - 76733, - 737 - ], - [ - 376820, - 78088, - 754 - ], - [ - 372943, - 82294, - 573 - ], - [ - 374054, - 83893, - 778 - ], - [ - 373612, - 83577, - 721 - ], - [ - 372669, - 90403, - 589 - ], - [ - 377365, - 92773, - 614 - ], - [ - 380852, - 92275, - 822 - ], - [ - 378086, - 94716, - 754 - ], - [ - 376427, - 91506, - 750 - ], - [ - 361712, - 110534, - 893 - ], - [ - 374122, - 98431, - 783 - ], - [ - 376719, - 95882, - 909 - ], - [ - 373803, - 98802, - 931 - ], - [ - 373170, - 97523, - 722 - ], - [ - 370830, - 95170, - 592 - ], - [ - 374727, - 94299, - 612 - ], - [ - 367640, - 91095, - 547 - ], - [ - 367718, - 89456, - 533 - ], - [ - 352854, - 102675, - 611 - ], - [ - 353621, - 102409, - 992 - ], - [ - 353677, - 102614, - 624 - ], - [ - 373699, - 93197, - 622 - ], - [ - 367234, - 93082, - 572 - ], - [ - 367408, - 91735, - 559 - ], - [ - 375825, - 93298, - 612 - ], - [ - 377215, - 94808, - 663 - ], - [ - 375932, - 95276, - 629 - ], - [ - 369513, - 102895, - 898 - ], - [ - 368925, - 103178, - 694 - ], - [ - 368533, - 102804, - 821 - ], - [ - 357121, - 114258, - 690 - ], - [ - 357313, - 102636, - 626 - ], - [ - 357879, - 102206, - 1032 - ], - [ - 358415, - 102200, - 669 - ], - [ - 356066, - 102787, - 612 - ], - [ - 352772, - 102264, - 982 - ], - [ - 344661, - 97071, - 564 - ], - [ - 345078, - 97129, - 952 - ], - [ - 345587, - 97824, - 972 - ], - [ - 351496, - 102078, - 679 - ], - [ - 351934, - 102059, - 982 - ], - [ - 352342, - 102331, - 636 - ], - [ - 338664, - 86993, - 532 - ], - [ - 351113, - 101797, - 982 - ], - [ - 337775, - 92706, - 562 - ], - [ - 346332, - 99203, - 576 - ], - [ - 349177, - 101201, - 605 - ], - [ - 337789, - 92809, - 562 - ], - [ - 337784, - 92757, - 562 - ], - [ - 350599, - 102076, - 589 - ], - [ - 350313, - 101478, - 982 - ], - [ - 337791, - 92861, - 562 - ], - [ - 349536, - 101104, - 982 - ], - [ - 348071, - 100199, - 972 - ], - [ - 348788, - 100677, - 982 - ], - [ - 338648, - 87147, - 532 - ], - [ - 338636, - 87197, - 532 - ], - [ - 346746, - 99098, - 952 - ], - [ - 346573, - 99153, - 652 - ], - [ - 346296, - 98891, - 641 - ], - [ - 346145, - 98481, - 952 - ], - [ - 338662, - 86941, - 532 - ], - [ - 344621, - 96737, - 622 - ], - [ - 339428, - 81560, - 542 - ], - [ - 339437, - 81509, - 542 - ], - [ - 344209, - 95641, - 982 - ], - [ - 338657, - 86890, - 532 - ], - [ - 339442, - 81458, - 542 - ], - [ - 339444, - 81407, - 542 - ], - [ - 343175, - 90933, - 962 - ], - [ - 343165, - 90746, - 952 - ], - [ - 343378, - 90730, - 558 - ], - [ - 343158, - 89811, - 552 - ], - [ - 344247, - 90608, - 539 - ], - [ - 343153, - 89998, - 552 - ], - [ - 343152, - 90185, - 562 - ], - [ - 343158, - 90559, - 952 - ], - [ - 339428, - 81254, - 542 - ], - [ - 339416, - 81205, - 542 - ], - [ - 339401, - 81156, - 532 - ], - [ - 339335, - 81017, - 532 - ], - [ - 339307, - 80974, - 532 - ], - [ - 348282, - 83309, - 962 - ], - [ - 349959, - 81780, - 952 - ], - [ - 349365, - 82251, - 952 - ], - [ - 338896, - 80685, - 522 - ], - [ - 353335, - 80103, - 942 - ], - [ - 351855, - 80363, - 563 - ], - [ - 350584, - 81352, - 962 - ], - [ - 351916, - 80632, - 952 - ], - [ - 351237, - 80969, - 952 - ], - [ - 352616, - 80343, - 952 - ], - [ - 352216, - 80345, - 831 - ], - [ - 356322, - 79655, - 952 - ], - [ - 355566, - 79689, - 942 - ], - [ - 354813, - 79775, - 942 - ], - [ - 357834, - 79746, - 952 - ], - [ - 357080, - 79674, - 952 - ], - [ - 358037, - 79575, - 592 - ], - [ - 359910, - 79971, - 536 - ], - [ - 359254, - 80038, - 962 - ], - [ - 358549, - 79868, - 962 - ], - [ - 360623, - 80514, - 952 - ], - [ - 359946, - 80253, - 952 - ], - [ - 363565, - 81970, - 527 - ], - [ - 363669, - 82451, - 952 - ], - [ - 363114, - 81985, - 952 - ], - [ - 360937, - 80295, - 528 - ], - [ - 361281, - 80819, - 952 - ], - [ - 361901, - 80920, - 540 - ], - [ - 361917, - 81167, - 952 - ], - [ - 362626, - 81241, - 539 - ], - [ - 362908, - 81591, - 569 - ], - [ - 362529, - 81556, - 952 - ], - [ - 364459, - 82968, - 553 - ], - [ - 364682, - 83489, - 942 - ], - [ - 364193, - 82953, - 942 - ], - [ - 365017, - 83629, - 561 - ], - [ - 365614, - 84313, - 541 - ], - [ - 365134, - 84056, - 942 - ], - [ - 365548, - 84651, - 952 - ], - [ - 366211, - 85333, - 546 - ], - [ - 366702, - 86377, - 541 - ], - [ - 366254, - 85917, - 932 - ], - [ - 366950, - 94430, - 570 - ], - [ - 366744, - 86692, - 560 - ], - [ - 366542, - 86583, - 962 - ], - [ - 367154, - 87407, - 522 - ], - [ - 366984, - 87963, - 952 - ], - [ - 366786, - 87266, - 952 - ], - [ - 367377, - 89092, - 552 - ], - [ - 367240, - 89390, - 962 - ], - [ - 367136, - 88672, - 962 - ], - [ - 367423, - 89440, - 558 - ], - [ - 367466, - 89770, - 546 - ], - [ - 367297, - 90113, - 962 - ], - [ - 367367, - 91403, - 593 - ], - [ - 367267, - 91562, - 952 - ], - [ - 367306, - 90838, - 962 - ], - [ - 367192, - 92743, - 604 - ], - [ - 367046, - 92995, - 962 - ], - [ - 367180, - 92282, - 962 - ], - [ - 366905, - 94071, - 589 - ], - [ - 366557, - 94636, - 972 - ], - [ - 366830, - 93824, - 972 - ], - [ - 366571, - 95395, - 577 - ], - [ - 366530, - 95079, - 598 - ], - [ - 365895, - 96761, - 565 - ], - [ - 365853, - 96414, - 628 - ], - [ - 365405, - 96929, - 972 - ], - [ - 365842, - 96192, - 972 - ], - [ - 364254, - 98741, - 587 - ], - [ - 362230, - 100487, - 608 - ], - [ - 365036, - 97744, - 592 - ], - [ - 364379, - 98300, - 972 - ], - [ - 363797, - 98928, - 972 - ], - [ - 363171, - 99514, - 972 - ], - [ - 360922, - 101422, - 605 - ], - [ - 361197, - 101111, - 620 - ], - [ - 359622, - 102141, - 609 - ], - [ - 358785, - 102210, - 619 - ], - [ - 359517, - 101709, - 1012 - ], - [ - 357037, - 102367, - 1042 - ], - [ - 356186, - 102468, - 1032 - ], - [ - 354518, - 102928, - 609 - ], - [ - 355331, - 102509, - 992 - ], - [ - 354483, - 102589, - 739 - ], - [ - 354474, - 102489, - 992 - ], - [ - 343153, - 90372, - 732 - ], - [ - 345217, - 90801, - 563 - ], - [ - 354068, - 79913, - 942 - ], - [ - 348805, - 82761, - 952 - ], - [ - 351034, - 80731, - 556 - ], - [ - 358707, - 101987, - 1022 - ], - [ - 344053, - 95796, - 582 - ], - [ - 366227, - 95427, - 972 - ], - [ - 364971, - 83295, - 536 - ], - [ - 350561, - 101742, - 653 - ], - [ - 343309, - 93487, - 965 - ], - [ - 343371, - 94162, - 589 - ], - [ - 364916, - 97633, - 972 - ], - [ - 362506, - 100054, - 992 - ], - [ - 361805, - 100546, - 972 - ], - [ - 359586, - 101792, - 749 - ], - [ - 360493, - 101456, - 627 - ], - [ - 361070, - 100987, - 972 - ], - [ - 365922, - 85273, - 932 - ], - [ - 347389, - 99672, - 972 - ], - [ - 309197, - 73799, - 577 - ], - [ - 311928, - 76441, - 654 - ], - [ - 374822, - 92177, - 702 - ], - [ - 374991, - 90957, - 848 - ], - [ - 344617, - 96400, - 952 - ], - [ - 370322, - 101696, - 825 - ], - [ - 370707, - 101388, - 996 - ], - [ - 360875, - 111554, - 726 - ], - [ - 357729, - 114680, - 912 - ], - [ - 372688, - 99752, - 773 - ], - [ - 376672, - 95563, - 843 - ], - [ - 376344, - 95610, - 816 - ], - [ - 368662, - 103819, - 748 - ], - [ - 368565, - 103147, - 623 - ], - [ - 368171, - 103476, - 947 - ], - [ - 367269, - 104143, - 775 - ], - [ - 368444, - 102156, - 761 - ], - [ - 364608, - 107864, - 922 - ], - [ - 364138, - 108221, - 792 - ], - [ - 364516, - 107187, - 881 - ], - [ - 369653, - 101596, - 945 - ], - [ - 371306, - 99388, - 869 - ], - [ - 363317, - 108567, - 900 - ], - [ - 363491, - 106897, - 881 - ], - [ - 368488, - 102487, - 767 - ], - [ - 369427, - 102246, - 887 - ], - [ - 356842, - 115310, - 757 - ], - [ - 355146, - 116432, - 829 - ], - [ - 306365, - 71921, - 588 - ], - [ - 373481, - 82576, - 738 - ], - [ - 373732, - 81547, - 605 - ], - [ - 373981, - 97455, - 620 - ], - [ - 374855, - 96731, - 642 - ], - [ - 360307, - 101376, - 982 - ], - [ - 337652, - 92422, - 562 - ], - [ - 365671, - 106457, - 915 - ], - [ - 377152, - 87666, - 725 - ], - [ - 375181, - 89576, - 631 - ], - [ - 374586, - 90966, - 706 - ], - [ - 373734, - 92023, - 753 - ], - [ - 366073, - 105455, - 902 - ], - [ - 313227, - 77388, - 636 - ], - [ - 317047, - 79645, - 725 - ], - [ - 362092, - 110186, - 774 - ], - [ - 365875, - 105798, - 759 - ], - [ - 360837, - 111202, - 820 - ], - [ - 362260, - 109148, - 660 - ], - [ - 376027, - 95977, - 665 - ], - [ - 376076, - 96310, - 736 - ], - [ - 377265, - 95155, - 719 - ], - [ - 374962, - 97378, - 935 - ], - [ - 279881, - 113604, - 776 - ], - [ - 281222, - 113252, - 757 - ], - [ - 280922, - 114088, - 989 - ], - [ - 280828, - 110254, - 884 - ], - [ - 281617, - 111662, - 764 - ], - [ - 279582, - 111252, - 1013 - ], - [ - 280457, - 107579, - 742 - ], - [ - 282181, - 109610, - 820 - ], - [ - 280090, - 108003, - 820 - ], - [ - 278725, - 108031, - 657 - ], - [ - 278312, - 107810, - 782 - ], - [ - 281822, - 113009, - 1091 - ], - [ - 282519, - 111962, - 1102 - ], - [ - 281091, - 112286, - 756 - ], - [ - 278446, - 113384, - 1065 - ], - [ - 283464, - 109843, - 716 - ], - [ - 282273, - 110313, - 778 - ], - [ - 275951, - 110587, - 843 - ], - [ - 277760, - 110174, - 834 - ], - [ - 276091, - 111579, - 923 - ], - [ - 278138, - 112845, - 1090 - ], - [ - 279092, - 113528, - 900 - ], - [ - 280489, - 114495, - 927 - ], - [ - 279476, - 110607, - 758 - ], - [ - 277071, - 112249, - 833 - ], - [ - 278722, - 110849, - 784 - ], - [ - 278874, - 109027, - 860 - ], - [ - 280314, - 109718, - 725 - ], - [ - 277418, - 112100, - 826 - ], - [ - 283830, - 109333, - 813 - ], - [ - 241584, - 106947, - 530 - ], - [ - 242064, - 105938, - 462 - ], - [ - 242111, - 105909, - 462 - ], - [ - 235216, - 110269, - 492 - ], - [ - 241408, - 107311, - 769 - ], - [ - 282378, - 137833, - 1066 - ], - [ - 284722, - 136719, - 1192 - ], - [ - 279527, - 133298, - 1093 - ], - [ - 279268, - 131691, - 1312 - ], - [ - 284905, - 135919, - 1204 - ], - [ - 284238, - 135510, - 1076 - ], - [ - 278221, - 135940, - 1042 - ], - [ - 282083, - 140355, - 1181 - ], - [ - 276684, - 139317, - 1111 - ], - [ - 281591, - 138471, - 1200 - ], - [ - 280022, - 140598, - 1157 - ], - [ - 280440, - 140065, - 1100 - ], - [ - 281257, - 140405, - 1247 - ], - [ - 281205, - 140082, - 1120 - ], - [ - 281667, - 137322, - 1077 - ], - [ - 280934, - 138032, - 1191 - ], - [ - 282531, - 135985, - 1202 - ], - [ - 281593, - 134527, - 1114 - ], - [ - 281873, - 134064, - 1119 - ], - [ - 279462, - 140092, - 1223 - ], - [ - 280867, - 133022, - 1316 - ], - [ - 280652, - 133521, - 1280 - ], - [ - 280916, - 133383, - 1325 - ], - [ - 280684, - 133853, - 1104 - ], - [ - 344179, - 129988, - 742 - ], - [ - 343653, - 129587, - 642 - ], - [ - 343754, - 129442, - 642 - ], - [ - 347070, - 126618, - 752 - ], - [ - 343332, - 129120, - 812 - ], - [ - 343243, - 128745, - 637 - ], - [ - 341400, - 127793, - 662 - ], - [ - 341525, - 127704, - 672 - ], - [ - 344268, - 124457, - 729 - ], - [ - 341102, - 127374, - 672 - ], - [ - 341003, - 127501, - 672 - ], - [ - 343250, - 129214, - 812 - ], - [ - 342422, - 124742, - 725 - ], - [ - 343346, - 123899, - 737 - ], - [ - 418037, - 53089, - 761 - ], - [ - 417462, - 53645, - 746 - ], - [ - 418089, - 53413, - 905 - ], - [ - 337384, - 106413, - 971 - ], - [ - 336527, - 105599, - 930 - ], - [ - 337526, - 103999, - 927 - ], - [ - 314133, - 80318, - 925 - ], - [ - 310494, - 81479, - 752 - ], - [ - 313160, - 77834, - 612 - ], - [ - 320209, - 83061, - 857 - ], - [ - 334642, - 93936, - 588 - ], - [ - 333652, - 93190, - 778 - ], - [ - 333605, - 92875, - 708 - ], - [ - 317593, - 83688, - 853 - ], - [ - 317828, - 85388, - 975 - ], - [ - 314509, - 83953, - 942 - ], - [ - 314930, - 83395, - 922 - ], - [ - 314696, - 84168, - 932 - ], - [ - 315082, - 83489, - 922 - ], - [ - 316685, - 79792, - 746 - ], - [ - 316382, - 79886, - 872 - ], - [ - 317863, - 82235, - 948 - ], - [ - 318928, - 86817, - 844 - ], - [ - 319232, - 87223, - 1392 - ], - [ - 314560, - 96306, - 673 - ], - [ - 305979, - 88408, - 569 - ], - [ - 304977, - 88662, - 645 - ], - [ - 310252, - 81432, - 752 - ], - [ - 310173, - 81543, - 752 - ], - [ - 309923, - 82377, - 701 - ], - [ - 309884, - 82046, - 755 - ], - [ - 312205, - 83057, - 965 - ], - [ - 312834, - 83183, - 892 - ], - [ - 312637, - 83958, - 894 - ], - [ - 313367, - 84719, - 637 - ], - [ - 315199, - 84877, - 779 - ], - [ - 319078, - 87389, - 912 - ], - [ - 309377, - 87454, - 530 - ], - [ - 308254, - 86090, - 770 - ], - [ - 310759, - 85601, - 558 - ], - [ - 302738, - 87101, - 822 - ], - [ - 304037, - 87165, - 831 - ], - [ - 303735, - 88258, - 742 - ], - [ - 300989, - 87549, - 657 - ], - [ - 299617, - 89354, - 691 - ], - [ - 301024, - 90669, - 719 - ], - [ - 307854, - 86526, - 569 - ], - [ - 308711, - 84202, - 892 - ], - [ - 309245, - 83624, - 937 - ], - [ - 312117, - 85223, - 559 - ], - [ - 313095, - 85198, - 754 - ], - [ - 313171, - 85873, - 573 - ], - [ - 312046, - 88063, - 659 - ], - [ - 321656, - 88650, - 1015 - ], - [ - 320910, - 88121, - 1274 - ], - [ - 321891, - 88239, - 708 - ], - [ - 315859, - 93414, - 745 - ], - [ - 316707, - 93165, - 777 - ], - [ - 317313, - 94370, - 918 - ], - [ - 322292, - 98856, - 677 - ], - [ - 319132, - 98281, - 679 - ], - [ - 319813, - 97044, - 691 - ], - [ - 314099, - 90111, - 866 - ], - [ - 313086, - 89801, - 815 - ], - [ - 314070, - 92618, - 670 - ], - [ - 312024, - 91525, - 719 - ], - [ - 314810, - 92683, - 935 - ], - [ - 314861, - 93007, - 1054 - ], - [ - 314458, - 92816, - 893 - ], - [ - 314219, - 91127, - 680 - ], - [ - 314626, - 91361, - 828 - ], - [ - 315147, - 95358, - 694 - ], - [ - 314350, - 94623, - 858 - ], - [ - 321916, - 95860, - 977 - ], - [ - 324532, - 95355, - 1054 - ], - [ - 324329, - 97780, - 889 - ], - [ - 321696, - 96943, - 865 - ], - [ - 318728, - 95257, - 649 - ], - [ - 317965, - 93448, - 1059 - ], - [ - 319870, - 93874, - 893 - ], - [ - 332402, - 103225, - 623 - ], - [ - 330977, - 101837, - 538 - ], - [ - 331473, - 100699, - 568 - ], - [ - 323562, - 98581, - 837 - ], - [ - 318017, - 96592, - 767 - ], - [ - 322944, - 98396, - 953 - ], - [ - 344551, - 106324, - 593 - ], - [ - 343799, - 105390, - 838 - ], - [ - 345392, - 105863, - 580 - ], - [ - 328175, - 97171, - 769 - ], - [ - 325044, - 99393, - 712 - ], - [ - 324958, - 98714, - 763 - ], - [ - 327194, - 102487, - 679 - ], - [ - 325446, - 102431, - 682 - ], - [ - 326903, - 102892, - 805 - ], - [ - 326052, - 96499, - 777 - ], - [ - 330679, - 102600, - 613 - ], - [ - 330358, - 106812, - 650 - ], - [ - 333899, - 108059, - 686 - ], - [ - 331925, - 108889, - 690 - ], - [ - 342904, - 110602, - 561 - ], - [ - 341003, - 111900, - 612 - ], - [ - 341591, - 110769, - 606 - ], - [ - 349651, - 111739, - 628 - ], - [ - 349642, - 114785, - 795 - ], - [ - 348142, - 114393, - 686 - ], - [ - 335609, - 107963, - 701 - ], - [ - 343701, - 110817, - 775 - ], - [ - 343611, - 110162, - 739 - ], - [ - 345379, - 119539, - 610 - ], - [ - 344813, - 119239, - 725 - ], - [ - 346298, - 112607, - 738 - ], - [ - 346163, - 111562, - 786 - ], - [ - 345983, - 119822, - 737 - ], - [ - 317579, - 93214, - 906 - ], - [ - 316585, - 92125, - 998 - ], - [ - 319418, - 86740, - 835 - ], - [ - 319530, - 87396, - 1186 - ], - [ - 319940, - 86954, - 926 - ], - [ - 320803, - 87436, - 1046 - ], - [ - 332379, - 96637, - 689 - ], - [ - 330202, - 98876, - 857 - ], - [ - 330829, - 95674, - 881 - ], - [ - 317895, - 88862, - 839 - ], - [ - 318734, - 88625, - 1238 - ], - [ - 318839, - 89626, - 849 - ], - [ - 321031, - 89122, - 1103 - ], - [ - 320982, - 88793, - 1036 - ], - [ - 322050, - 94093, - 1079 - ], - [ - 326611, - 96047, - 934 - ], - [ - 310250, - 84732, - 890 - ], - [ - 319791, - 85934, - 722 - ], - [ - 319866, - 86284, - 1123 - ], - [ - 321754, - 100737, - 696 - ], - [ - 321162, - 96030, - 1158 - ], - [ - 337901, - 110484, - 611 - ], - [ - 340023, - 110726, - 528 - ], - [ - 337954, - 110811, - 750 - ], - [ - 336164, - 105383, - 616 - ], - [ - 333401, - 104368, - 594 - ], - [ - 321458, - 89720, - 926 - ], - [ - 320430, - 90646, - 929 - ], - [ - 314725, - 92007, - 1002 - ], - [ - 315230, - 92214, - 1128 - ], - [ - 314770, - 92323, - 1044 - ], - [ - 304478, - 87395, - 808 - ], - [ - 344372, - 109763, - 719 - ], - [ - 304931, - 88311, - 658 - ], - [ - 317829, - 95239, - 646 - ], - [ - 316660, - 95969, - 645 - ], - [ - 319617, - 91842, - 1124 - ], - [ - 318311, - 91904, - 1012 - ], - [ - 318944, - 90330, - 1020 - ], - [ - 316461, - 91164, - 1038 - ], - [ - 315962, - 90611, - 826 - ], - [ - 317089, - 89535, - 860 - ], - [ - 314817, - 89192, - 955 - ], - [ - 319755, - 89092, - 1182 - ], - [ - 305899, - 87738, - 696 - ], - [ - 307111, - 88141, - 534 - ], - [ - 306907, - 86476, - 763 - ], - [ - 316132, - 95444, - 794 - ], - [ - 317744, - 97722, - 724 - ], - [ - 317377, - 98214, - 793 - ], - [ - 318022, - 89871, - 761 - ], - [ - 312890, - 88437, - 585 - ], - [ - 317760, - 87842, - 844 - ], - [ - 317531, - 88307, - 1020 - ], - [ - 316462, - 87950, - 919 - ], - [ - 314997, - 87029, - 549 - ], - [ - 316220, - 86274, - 636 - ], - [ - 335453, - 99996, - 675 - ], - [ - 332398, - 100107, - 652 - ], - [ - 336865, - 102724, - 595 - ], - [ - 336328, - 104278, - 602 - ], - [ - 334551, - 103059, - 591 - ], - [ - 336298, - 106402, - 591 - ], - [ - 320232, - 96548, - 995 - ], - [ - 318067, - 90187, - 803 - ], - [ - 317750, - 89987, - 981 - ], - [ - 323742, - 89627, - 678 - ], - [ - 321885, - 90334, - 1096 - ], - [ - 322038, - 89238, - 903 - ], - [ - 321298, - 91154, - 1081 - ], - [ - 322101, - 92032, - 963 - ], - [ - 320521, - 91323, - 929 - ], - [ - 337940, - 103556, - 929 - ], - [ - 337456, - 103648, - 598 - ], - [ - 338801, - 104055, - 760 - ], - [ - 337047, - 104078, - 604 - ], - [ - 337876, - 103218, - 662 - ], - [ - 339879, - 105569, - 758 - ], - [ - 336227, - 101140, - 572 - ], - [ - 314356, - 92144, - 709 - ], - [ - 313166, - 90472, - 707 - ], - [ - 316953, - 88503, - 875 - ], - [ - 320719, - 86763, - 1137 - ], - [ - 319890, - 86612, - 844 - ], - [ - 322081, - 87498, - 714 - ], - [ - 322467, - 87412, - 807 - ], - [ - 320553, - 82974, - 783 - ], - [ - 322620, - 85032, - 708 - ], - [ - 328281, - 100926, - 731 - ], - [ - 324757, - 93597, - 855 - ], - [ - 344412, - 118640, - 606 - ], - [ - 343100, - 115697, - 690 - ], - [ - 345503, - 113391, - 781 - ], - [ - 316963, - 95161, - 662 - ], - [ - 307373, - 86344, - 533 - ], - [ - 306948, - 86797, - 733 - ], - [ - 341592, - 104235, - 906 - ], - [ - 338179, - 102464, - 620 - ], - [ - 317796, - 90304, - 1051 - ], - [ - 317242, - 90534, - 1149 - ], - [ - 317664, - 91092, - 1223 - ], - [ - 316866, - 90988, - 946 - ], - [ - 333324, - 103693, - 773 - ], - [ - 332851, - 103461, - 761 - ], - [ - 336419, - 104954, - 622 - ], - [ - 333920, - 95220, - 756 - ], - [ - 342339, - 106228, - 798 - ], - [ - 341486, - 99853, - 714 - ], - [ - 342395, - 106584, - 918 - ], - [ - 341940, - 106921, - 769 - ], - [ - 317802, - 94922, - 860 - ], - [ - 337510, - 107426, - 849 - ], - [ - 337085, - 107568, - 591 - ], - [ - 337008, - 106853, - 847 - ], - [ - 337585, - 108138, - 579 - ], - [ - 317239, - 88086, - 841 - ], - [ - 301999, - 87962, - 684 - ], - [ - 340415, - 109592, - 787 - ], - [ - 340884, - 110894, - 823 - ], - [ - 340219, - 109964, - 575 - ], - [ - 341572, - 113563, - 645 - ], - [ - 331083, - 108716, - 652 - ], - [ - 343518, - 107441, - 670 - ], - [ - 343074, - 104083, - 694 - ], - [ - 346913, - 103602, - 557 - ], - [ - 350760, - 110231, - 758 - ], - [ - 338591, - 108603, - 621 - ], - [ - 338995, - 108495, - 817 - ], - [ - 338681, - 109307, - 576 - ], - [ - 340496, - 111994, - 702 - ], - [ - 318801, - 98072, - 704 - ], - [ - 332192, - 92147, - 596 - ], - [ - 331413, - 92723, - 632 - ], - [ - 339505, - 109446, - 567 - ], - [ - 336595, - 106285, - 603 - ], - [ - 342407, - 116826, - 763 - ], - [ - 320258, - 100396, - 686 - ], - [ - 318843, - 98398, - 678 - ], - [ - 299661, - 89671, - 708 - ], - [ - 301667, - 88012, - 673 - ], - [ - 334340, - 101369, - 786 - ], - [ - 330595, - 101923, - 702 - ], - [ - 322634, - 88764, - 637 - ], - [ - 323561, - 88298, - 614 - ], - [ - 323973, - 87845, - 594 - ], - [ - 344064, - 107421, - 753 - ], - [ - 343380, - 108461, - 656 - ], - [ - 338139, - 108713, - 723 - ], - [ - 345842, - 112651, - 780 - ], - [ - 318694, - 99155, - 674 - ], - [ - 322843, - 86674, - 773 - ], - [ - 321161, - 87359, - 1142 - ], - [ - 317322, - 97870, - 659 - ], - [ - 341670, - 108326, - 865 - ], - [ - 321946, - 88562, - 875 - ], - [ - 321985, - 88891, - 798 - ], - [ - 329795, - 95881, - 729 - ], - [ - 323445, - 91075, - 1016 - ], - [ - 336245, - 98016, - 675 - ], - [ - 311616, - 84687, - 901 - ], - [ - 314868, - 86023, - 601 - ], - [ - 314840, - 79023, - 895 - ], - [ - 320635, - 88859, - 1013 - ], - [ - 325553, - 90056, - 809 - ], - [ - 326951, - 88075, - 563 - ], - [ - 335423, - 95098, - 563 - ], - [ - 335799, - 94658, - 695 - ], - [ - 335889, - 95334, - 692 - ], - [ - 324796, - 87084, - 708 - ], - [ - 325568, - 88300, - 719 - ], - [ - 318049, - 87069, - 945 - ], - [ - 312402, - 84751, - 600 - ], - [ - 340443, - 99256, - 573 - ], - [ - 337727, - 99080, - 584 - ], - [ - 337949, - 97677, - 691 - ], - [ - 336347, - 98715, - 811 - ], - [ - 342478, - 107235, - 865 - ], - [ - 324835, - 87440, - 584 - ], - [ - 337814, - 96669, - 689 - ], - [ - 314712, - 84671, - 936 - ], - [ - 340902, - 99218, - 574 - ], - [ - 351950, - 112169, - 779 - ], - [ - 351585, - 111534, - 630 - ], - [ - 335083, - 94861, - 700 - ], - [ - 325177, - 87345, - 586 - ], - [ - 309803, - 88014, - 623 - ], - [ - 315229, - 149210, - 949 - ], - [ - 274474, - 89653, - 712 - ], - [ - 275080, - 90106, - 712 - ], - [ - 274901, - 90328, - 712 - ], - [ - 274302, - 89873, - 712 - ], - [ - 291704, - 116483, - 806 - ], - [ - 292036, - 116072, - 857 - ], - [ - 290621, - 114646, - 1021 - ], - [ - 290250, - 114705, - 819 - ], - [ - 290216, - 114378, - 937 - ], - [ - 287064, - 115093, - 803 - ], - [ - 289870, - 118348, - 976 - ], - [ - 286746, - 115584, - 816 - ], - [ - 291288, - 116586, - 828 - ], - [ - 290664, - 117744, - 933 - ], - [ - 290182, - 118251, - 980 - ], - [ - 291154, - 115593, - 808 - ], - [ - 288769, - 113071, - 785 - ], - [ - 253466, - 195340, - 1082 - ], - [ - 253422, - 195341, - 1082 - ], - [ - 253511, - 195335, - 1082 - ], - [ - 254072, - 194691, - 1062 - ], - [ - 253640, - 195304, - 1082 - ], - [ - 253554, - 195328, - 1082 - ], - [ - 253598, - 195317, - 1082 - ], - [ - 253681, - 195288, - 1082 - ], - [ - 253797, - 195222, - 1072 - ], - [ - 253760, - 195247, - 1072 - ], - [ - 253721, - 195269, - 1072 - ], - [ - 253897, - 195135, - 1072 - ], - [ - 253866, - 195166, - 1072 - ], - [ - 253833, - 195196, - 1072 - ], - [ - 254066, - 194780, - 1062 - ], - [ - 254019, - 194950, - 1072 - ], - [ - 253927, - 195102, - 1072 - ], - [ - 253978, - 195029, - 1072 - ], - [ - 253953, - 195066, - 1072 - ], - [ - 254000, - 194990, - 1072 - ], - [ - 254059, - 194823, - 1072 - ], - [ - 254035, - 194909, - 1072 - ], - [ - 254048, - 194867, - 1072 - ], - [ - 254071, - 194735, - 1062 - ], - [ - 253378, - 195339, - 1082 - ], - [ - 254070, - 194647, - 1062 - ], - [ - 254018, - 194432, - 1062 - ], - [ - 254066, - 194602, - 1062 - ], - [ - 254048, - 194516, - 1062 - ], - [ - 254058, - 194559, - 1062 - ], - [ - 254034, - 194473, - 1062 - ], - [ - 253760, - 194136, - 1052 - ], - [ - 253977, - 194353, - 1062 - ], - [ - 253999, - 194392, - 1062 - ], - [ - 253953, - 194316, - 1062 - ], - [ - 253926, - 194281, - 1062 - ], - [ - 253897, - 194247, - 1062 - ], - [ - 253797, - 194160, - 1052 - ], - [ - 253866, - 194216, - 1062 - ], - [ - 253832, - 194187, - 1062 - ], - [ - 253681, - 194095, - 1052 - ], - [ - 253721, - 194114, - 1052 - ], - [ - 253640, - 194079, - 1052 - ], - [ - 253554, - 194055, - 1042 - ], - [ - 253597, - 194065, - 1052 - ], - [ - 253466, - 194043, - 1042 - ], - [ - 253511, - 194047, - 1042 - ], - [ - 253378, - 194043, - 1042 - ], - [ - 253422, - 194041, - 1042 - ], - [ - 253204, - 194079, - 1032 - ], - [ - 253333, - 194047, - 1042 - ], - [ - 253290, - 194055, - 1042 - ], - [ - 253247, - 194065, - 1032 - ], - [ - 253084, - 194136, - 1032 - ], - [ - 253163, - 194095, - 1032 - ], - [ - 253123, - 194114, - 1032 - ], - [ - 252947, - 194247, - 1042 - ], - [ - 253047, - 194160, - 1032 - ], - [ - 252978, - 194216, - 1032 - ], - [ - 253012, - 194187, - 1032 - ], - [ - 252891, - 194316, - 1042 - ], - [ - 252918, - 194281, - 1042 - ], - [ - 252796, - 194866, - 1052 - ], - [ - 252826, - 194432, - 1042 - ], - [ - 252867, - 194353, - 1042 - ], - [ - 252845, - 194392, - 1042 - ], - [ - 252796, - 194516, - 1042 - ], - [ - 252810, - 194473, - 1042 - ], - [ - 252778, - 194602, - 1052 - ], - [ - 252786, - 194559, - 1042 - ], - [ - 252774, - 194647, - 1042 - ], - [ - 252772, - 194691, - 1042 - ], - [ - 252774, - 194735, - 1042 - ], - [ - 252786, - 194823, - 1052 - ], - [ - 252778, - 194780, - 1052 - ], - [ - 253333, - 195335, - 1082 - ], - [ - 252845, - 194990, - 1062 - ], - [ - 252810, - 194909, - 1052 - ], - [ - 252826, - 194950, - 1052 - ], - [ - 252867, - 195029, - 1062 - ], - [ - 252918, - 195101, - 1062 - ], - [ - 252891, - 195066, - 1062 - ], - [ - 252978, - 195166, - 1072 - ], - [ - 252947, - 195135, - 1072 - ], - [ - 253123, - 195268, - 1072 - ], - [ - 253012, - 195195, - 1072 - ], - [ - 253084, - 195246, - 1072 - ], - [ - 253047, - 195222, - 1072 - ], - [ - 253163, - 195287, - 1072 - ], - [ - 253247, - 195317, - 1072 - ], - [ - 253204, - 195303, - 1072 - ], - [ - 253290, - 195327, - 1082 - ], - [ - 234223, - 111538, - 476 - ], - [ - 230290, - 113731, - 592 - ], - [ - 235230, - 110511, - 502 - ], - [ - 235043, - 110913, - 464 - ], - [ - 234819, - 111231, - 641 - ], - [ - 472036, - 6052, - 32 - ], - [ - 472073, - 5790, - 32 - ], - [ - 521245, - 8267, - 32 - ], - [ - 471981, - 6311, - 32 - ], - [ - 511547, - 29311, - 32 - ], - [ - 471816, - 6815, - 32 - ], - [ - 471907, - 6566, - 32 - ], - [ - 471708, - 7057, - 32 - ], - [ - 471583, - 7290, - 32 - ], - [ - 471442, - 7514, - 32 - ], - [ - 471285, - 7728, - 32 - ], - [ - 470929, - 8120, - 32 - ], - [ - 471114, - 7931, - 32 - ], - [ - 509635, - 33904, - 32 - ], - [ - 269998, - 298272, - 32 - ], - [ - 268785, - 299473, - 32 - ], - [ - 239297, - 291307, - 32 - ], - [ - 459783, - 26663, - 32 - ], - [ - 462934, - 8074, - 32 - ], - [ - 468286, - 9168, - 32 - ], - [ - 272430, - 295877, - 32 - ], - [ - 271213, - 297073, - 32 - ], - [ - 276094, - 292300, - 32 - ], - [ - 274871, - 293490, - 32 - ], - [ - 273650, - 294682, - 32 - ], - [ - 345366, - 228398, - 32 - ], - [ - 344812, - 228926, - 32 - ], - [ - 334996, - 235648, - 32 - ], - [ - 354456, - 217238, - 32 - ], - [ - 348226, - 225589, - 32 - ], - [ - 348688, - 225129, - 32 - ], - [ - 327540, - 242921, - 32 - ], - [ - 286335, - 245958, - 32 - ], - [ - 278547, - 289925, - 32 - ], - [ - 375001, - 160796, - 32 - ], - [ - 383532, - 152521, - 32 - ], - [ - 400790, - 171272, - 32 - ], - [ - 397001, - 178401, - 32 - ], - [ - 387037, - 188308, - 32 - ], - [ - 386741, - 188445, - 32 - ], - [ - 384655, - 189411, - 32 - ], - [ - 380229, - 191675, - 32 - ], - [ - 397109, - 178201, - 32 - ], - [ - 456905, - 10065, - 32 - ], - [ - 457014, - 9820, - 32 - ], - [ - 367413, - 204506, - 32 - ], - [ - 464686, - 32274, - 32 - ], - [ - 470522, - 8459, - 32 - ], - [ - 470731, - 8297, - 32 - ], - [ - 465043, - 33092, - 32 - ], - [ - 267574, - 300676, - 32 - ], - [ - 465298, - 33736, - 32 - ], - [ - 266365, - 301881, - 32 - ], - [ - 510603, - 31683, - 32 - ], - [ - 265158, - 303088, - 32 - ], - [ - 263953, - 304297, - 32 - ], - [ - 262750, - 305508, - 32 - ], - [ - 261550, - 306722, - 32 - ], - [ - 259693, - 308621, - 32 - ], - [ - 456590, - 10497, - 32 - ], - [ - 456763, - 10292, - 32 - ], - [ - 511560, - 29458, - 32 - ], - [ - 471815, - 3972, - 32 - ], - [ - 471707, - 3730, - 32 - ], - [ - 521510, - 8125, - 32 - ], - [ - 521293, - 8289, - 32 - ], - [ - 521721, - 7955, - 32 - ], - [ - 521928, - 7779, - 32 - ], - [ - 522129, - 7597, - 32 - ], - [ - 523558, - 5333, - 32 - ], - [ - 522325, - 7409, - 32 - ], - [ - 522515, - 7215, - 32 - ], - [ - 522699, - 7016, - 32 - ], - [ - 522877, - 6812, - 32 - ], - [ - 523050, - 6602, - 32 - ], - [ - 523215, - 6387, - 32 - ], - [ - 523375, - 6168, - 32 - ], - [ - 523528, - 5943, - 32 - ], - [ - 523674, - 5715, - 32 - ], - [ - 523813, - 5482, - 32 - ], - [ - 524371, - 3938, - 32 - ], - [ - 471582, - 3496, - 32 - ], - [ - 463099, - 0, - 32 - ], - [ - 469332, - 1758, - 32 - ], - [ - 469074, - 1696, - 32 - ], - [ - 466368, - 43344, - 32 - ], - [ - 500429, - 53663, - 32 - ], - [ - 499352, - 55832, - 32 - ], - [ - 469584, - 1838, - 32 - ], - [ - 471284, - 3058, - 32 - ], - [ - 471113, - 2856, - 32 - ], - [ - 469831, - 1936, - 32 - ], - [ - 470928, - 2666, - 32 - ], - [ - 470730, - 2490, - 32 - ], - [ - 470069, - 2050, - 32 - ], - [ - 470520, - 2328, - 32 - ], - [ - 470300, - 2181, - 32 - ], - [ - 508656, - 36119, - 32 - ], - [ - 507666, - 38330, - 32 - ], - [ - 465687, - 34855, - 32 - ], - [ - 466287, - 37148, - 32 - ], - [ - 506665, - 40535, - 32 - ], - [ - 505653, - 42736, - 32 - ], - [ - 466017, - 35994, - 32 - ], - [ - 504630, - 44932, - 32 - ], - [ - 503596, - 47123, - 32 - ], - [ - 466621, - 39311, - 32 - ], - [ - 501496, - 51488, - 32 - ], - [ - 466542, - 42349, - 32 - ], - [ - 471440, - 3272, - 32 - ], - [ - 471906, - 4220, - 32 - ], - [ - 471980, - 4475, - 32 - ], - [ - 472035, - 4734, - 32 - ], - [ - 472073, - 4996, - 32 - ], - [ - 472091, - 5261, - 32 - ], - [ - 472091, - 5526, - 32 - ], - [ - 438754, - 16498, - 32 - ], - [ - 438239, - 15329, - 32 - ], - [ - 438239, - 15328, - 32 - ], - [ - 464297, - 31472, - 32 - ], - [ - 470301, - 8606, - 32 - ], - [ - 464020, - 30946, - 32 - ], - [ - 470071, - 8737, - 32 - ], - [ - 463578, - 30171, - 32 - ], - [ - 469832, - 8852, - 32 - ], - [ - 463176, - 29527, - 32 - ], - [ - 469586, - 8949, - 32 - ], - [ - 462986, - 29257, - 32 - ], - [ - 469333, - 9029, - 32 - ], - [ - 462677, - 28871, - 32 - ], - [ - 469076, - 9091, - 32 - ], - [ - 462456, - 28626, - 32 - ], - [ - 468815, - 9135, - 32 - ], - [ - 462224, - 28392, - 32 - ], - [ - 468551, - 9161, - 32 - ], - [ - 461854, - 28064, - 32 - ], - [ - 277320, - 291111, - 32 - ], - [ - 456493, - 10590, - 32 - ], - [ - 456576, - 10510, - 32 - ], - [ - 456405, - 10664, - 32 - ], - [ - 457104, - 25370, - 32 - ], - [ - 456390, - 10676, - 32 - ], - [ - 456167, - 10825, - 32 - ], - [ - 455926, - 10941, - 32 - ], - [ - 455670, - 11022, - 32 - ], - [ - 456228, - 25069, - 32 - ], - [ - 455406, - 11066, - 32 - ], - [ - 454812, - 24729, - 32 - ], - [ - 455138, - 11073, - 32 - ], - [ - 454872, - 11041, - 32 - ], - [ - 453048, - 11160, - 32 - ], - [ - 454741, - 11012, - 32 - ], - [ - 453213, - 11106, - 32 - ], - [ - 454612, - 10973, - 32 - ], - [ - 453254, - 11092, - 32 - ], - [ - 454365, - 10869, - 32 - ], - [ - 453448, - 10997, - 32 - ], - [ - 454135, - 10732, - 32 - ], - [ - 453628, - 10875, - 32 - ], - [ - 453927, - 10563, - 32 - ], - [ - 453788, - 10729, - 32 - ], - [ - 453780, - 10736, - 32 - ], - [ - 453721, - 10790, - 32 - ], - [ - 453540, - 10939, - 32 - ], - [ - 453411, - 11015, - 32 - ], - [ - 453323, - 11058, - 32 - ], - [ - 452870, - 11192, - 32 - ], - [ - 452835, - 11198, - 32 - ], - [ - 452782, - 11200, - 32 - ], - [ - 452642, - 11206, - 32 - ], - [ - 452618, - 11207, - 32 - ], - [ - 452510, - 11200, - 32 - ], - [ - 452421, - 11188, - 32 - ], - [ - 452402, - 11185, - 32 - ], - [ - 445258, - 22056, - 32 - ], - [ - 452332, - 11168, - 32 - ], - [ - 452192, - 11134, - 32 - ], - [ - 452121, - 11106, - 32 - ], - [ - 451990, - 11054, - 32 - ], - [ - 440846, - 21249, - 32 - ], - [ - 440283, - 19971, - 32 - ], - [ - 440283, - 19970, - 32 - ], - [ - 466657, - 41136, - 32 - ], - [ - 502551, - 49308, - 32 - ], - [ - 466497, - 38315, - 32 - ], - [ - 466670, - 40223, - 32 - ], - [ - 461726, - 27960, - 32 - ], - [ - 498264, - 57996, - 32 - ], - [ - 466038, - 44917, - 32 - ], - [ - 461980, - 28170, - 32 - ], - [ - 463086, - 54722, - 32 - ], - [ - 497165, - 60155, - 32 - ], - [ - 488136, - 77001, - 32 - ], - [ - 462103, - 28280, - 32 - ], - [ - 465560, - 46867, - 32 - ], - [ - 462341, - 28508, - 32 - ], - [ - 462568, - 28747, - 32 - ], - [ - 462783, - 28997, - 32 - ], - [ - 462886, - 29126, - 32 - ], - [ - 463082, - 29391, - 32 - ], - [ - 463266, - 29665, - 32 - ], - [ - 463424, - 29917, - 32 - ], - [ - 463729, - 30427, - 32 - ], - [ - 463876, - 30686, - 32 - ], - [ - 464160, - 31208, - 32 - ], - [ - 464430, - 31738, - 32 - ], - [ - 464560, - 32005, - 32 - ], - [ - 486655, - 79502, - 32 - ], - [ - 460461, - 61701, - 32 - ], - [ - 464809, - 32545, - 32 - ], - [ - 464928, - 32818, - 32 - ], - [ - 457614, - 68589, - 32 - ], - [ - 485127, - 81976, - 32 - ], - [ - 483553, - 84420, - 32 - ], - [ - 457824, - 68110, - 32 - ], - [ - 465155, - 33367, - 32 - ], - [ - 465564, - 34480, - 32 - ], - [ - 465434, - 34107, - 32 - ], - [ - 481935, - 86835, - 32 - ], - [ - 456906, - 69987, - 32 - ], - [ - 465804, - 35233, - 32 - ], - [ - 465914, - 35613, - 32 - ], - [ - 454930, - 72988, - 32 - ], - [ - 480271, - 89219, - 32 - ], - [ - 478564, - 91572, - 32 - ], - [ - 456229, - 71105, - 32 - ], - [ - 466114, - 36377, - 32 - ], - [ - 466204, - 36762, - 32 - ], - [ - 466363, - 37536, - 32 - ], - [ - 476813, - 93893, - 32 - ], - [ - 453729, - 74620, - 32 - ], - [ - 466433, - 37925, - 32 - ], - [ - 448732, - 81686, - 32 - ], - [ - 475019, - 96181, - 32 - ], - [ - 473183, - 98435, - 32 - ], - [ - 452482, - 76216, - 32 - ], - [ - 466553, - 38706, - 32 - ], - [ - 466590, - 39008, - 32 - ], - [ - 466644, - 39615, - 32 - ], - [ - 471305, - 100655, - 32 - ], - [ - 469386, - 102839, - 32 - ], - [ - 467427, - 104987, - 32 - ], - [ - 466660, - 39919, - 32 - ], - [ - 466672, - 40528, - 32 - ], - [ - 466668, - 40832, - 32 - ], - [ - 465429, - 107098, - 32 - ], - [ - 441602, - 91378, - 32 - ], - [ - 417974, - 118701, - 32 - ], - [ - 463391, - 109172, - 32 - ], - [ - 414047, - 158268, - 32 - ], - [ - 466638, - 41440, - 32 - ], - [ - 466613, - 41744, - 32 - ], - [ - 466581, - 42047, - 32 - ], - [ - 466497, - 42650, - 32 - ], - [ - 466444, - 42950, - 32 - ], - [ - 466290, - 43738, - 32 - ], - [ - 466209, - 44132, - 32 - ], - [ - 466125, - 44525, - 32 - ], - [ - 465948, - 45308, - 32 - ], - [ - 465855, - 45699, - 32 - ], - [ - 465760, - 46089, - 32 - ], - [ - 465661, - 46478, - 32 - ], - [ - 465456, - 47255, - 32 - ], - [ - 465348, - 47642, - 32 - ], - [ - 465238, - 48028, - 32 - ], - [ - 465125, - 48413, - 32 - ], - [ - 457721, - 68350, - 32 - ], - [ - 457504, - 68826, - 32 - ], - [ - 457275, - 69295, - 32 - ], - [ - 457391, - 69061, - 32 - ], - [ - 457155, - 69527, - 32 - ], - [ - 457032, - 69758, - 32 - ], - [ - 456777, - 70214, - 32 - ], - [ - 456644, - 70440, - 32 - ], - [ - 456509, - 70663, - 32 - ], - [ - 456371, - 70885, - 32 - ], - [ - 456085, - 71323, - 32 - ], - [ - 455801, - 71742, - 32 - ], - [ - 455514, - 72160, - 32 - ], - [ - 455223, - 72575, - 32 - ], - [ - 454634, - 73399, - 32 - ], - [ - 454336, - 73808, - 32 - ], - [ - 454034, - 74215, - 32 - ], - [ - 453422, - 75022, - 32 - ], - [ - 453112, - 75422, - 32 - ], - [ - 452798, - 75820, - 32 - ], - [ - 452164, - 76610, - 32 - ], - [ - 451842, - 77001, - 32 - ], - [ - 441072, - 92059, - 32 - ], - [ - 440541, - 92738, - 32 - ], - [ - 440007, - 93416, - 32 - ], - [ - 439471, - 94092, - 32 - ], - [ - 438932, - 94766, - 32 - ], - [ - 438392, - 95438, - 32 - ], - [ - 437849, - 96109, - 32 - ], - [ - 437304, - 96778, - 32 - ], - [ - 436757, - 97445, - 32 - ], - [ - 436208, - 98110, - 32 - ], - [ - 435657, - 98774, - 32 - ], - [ - 435103, - 99435, - 32 - ], - [ - 434548, - 100095, - 32 - ], - [ - 433990, - 100753, - 32 - ], - [ - 425137, - 110912, - 32 - ], - [ - 404623, - 132355, - 32 - ], - [ - 346380, - 48953, - 232 - ], - [ - 347288, - 48677, - 232 - ], - [ - 347434, - 49155, - 242 - ], - [ - 346525, - 49432, - 242 - ], - [ - 423682, - 32197, - 1922 - ], - [ - 422605, - 33729, - 1952 - ], - [ - 423647, - 32174, - 1922 - ], - [ - 216745, - 315746, - 762 - ], - [ - 218534, - 312598, - 762 - ], - [ - 460461, - 61701, - 692 - ], - [ - 231625, - 298703, - 762 - ], - [ - 239297, - 291307, - 762 - ], - [ - 286335, - 245958, - 762 - ], - [ - 428276, - 106956, - 580 - ], - [ - 425311, - 110712, - 210 - ], - [ - 444037, - 87707, - 260 - ], - [ - 446542, - 84311, - 243 - ], - [ - 435103, - 99435, - 812 - ], - [ - 434654, - 99311, - 746 - ], - [ - 435124, - 98993, - 345 - ], - [ - 435657, - 98774, - 822 - ], - [ - 435646, - 98380, - 252 - ], - [ - 436208, - 98110, - 852 - ], - [ - 436327, - 97369, - 618 - ], - [ - 436757, - 97445, - 822 - ], - [ - 437396, - 96540, - 145 - ], - [ - 437304, - 96778, - 632 - ], - [ - 437956, - 95577, - 240 - ], - [ - 438956, - 94624, - 159 - ], - [ - 438932, - 94766, - 572 - ], - [ - 439471, - 94092, - 722 - ], - [ - 439631, - 93664, - 166 - ], - [ - 440007, - 93416, - 702 - ], - [ - 440040, - 93164, - 188 - ], - [ - 440541, - 92738, - 572 - ], - [ - 453264, - 74498, - 788 - ], - [ - 455514, - 72160, - 692 - ], - [ - 451842, - 77001, - 552 - ], - [ - 452164, - 76610, - 552 - ], - [ - 452798, - 75820, - 722 - ], - [ - 452932, - 75631, - 557 - ], - [ - 452482, - 76216, - 722 - ], - [ - 453422, - 75022, - 702 - ], - [ - 453729, - 74620, - 692 - ], - [ - 453112, - 75422, - 782 - ], - [ - 454336, - 73808, - 692 - ], - [ - 454034, - 74215, - 782 - ], - [ - 454634, - 73399, - 692 - ], - [ - 454930, - 72988, - 692 - ], - [ - 455223, - 72575, - 692 - ], - [ - 455801, - 71742, - 692 - ], - [ - 456085, - 71323, - 692 - ], - [ - 456229, - 71105, - 692 - ], - [ - 456371, - 70885, - 692 - ], - [ - 456509, - 70663, - 692 - ], - [ - 456644, - 70440, - 692 - ], - [ - 456777, - 70214, - 692 - ], - [ - 456906, - 69987, - 692 - ], - [ - 457032, - 69758, - 692 - ], - [ - 457155, - 69527, - 692 - ], - [ - 457275, - 69295, - 692 - ], - [ - 457391, - 69061, - 692 - ], - [ - 457504, - 68826, - 692 - ], - [ - 457614, - 68589, - 692 - ], - [ - 457721, - 68350, - 692 - ], - [ - 457824, - 68110, - 692 - ], - [ - 220224, - 310364, - 762 - ], - [ - 463086, - 54722, - 692 - ], - [ - 441370, - 91281, - 253 - ], - [ - 450979, - 78223, - 871 - ], - [ - 447481, - 83293, - 172 - ], - [ - 422871, - 113340, - 395 - ], - [ - 424691, - 111309, - 272 - ], - [ - 425137, - 110912, - 642 - ], - [ - 448277, - 82302, - 356 - ], - [ - 437073, - 96695, - 226 - ], - [ - 433952, - 100245, - 510 - ], - [ - 433990, - 100753, - 812 - ], - [ - 438941, - 94286, - 581 - ], - [ - 432535, - 102080, - 346 - ], - [ - 433282, - 101530, - 141 - ], - [ - 434548, - 100095, - 812 - ], - [ - 424998, - 110832, - 323 - ], - [ - 413962, - 122503, - 584 - ], - [ - 416435, - 119951, - 569 - ], - [ - 330858, - 203191, - 393 - ], - [ - 319873, - 213555, - 667 - ], - [ - 406530, - 130040, - 622 - ], - [ - 402046, - 134540, - 412 - ], - [ - 397414, - 139241, - 146 - ], - [ - 356336, - 178551, - 771 - ], - [ - 353319, - 181395, - 632 - ], - [ - 369945, - 165171, - 830 - ], - [ - 379691, - 155933, - 625 - ], - [ - 391007, - 145020, - 673 - ], - [ - 394352, - 141909, - 565 - ], - [ - 215069, - 319948, - 762 - ], - [ - 213100, - 327637, - 762 - ], - [ - 433606, - 101038, - 204 - ], - [ - 440025, - 92843, - 574 - ], - [ - 404299, - 132337, - 468 - ], - [ - 404013, - 132854, - 164 - ], - [ - 382347, - 153563, - 413 - ], - [ - 380287, - 155624, - 405 - ], - [ - 404721, - 131730, - 639 - ], - [ - 404736, - 132121, - 139 - ], - [ - 404623, - 132355, - 682 - ], - [ - 404492, - 132247, - 234 - ], - [ - 408122, - 128764, - 171 - ], - [ - 405377, - 131531, - 131 - ], - [ - 440444, - 92745, - 182 - ], - [ - 400920, - 135857, - 140 - ], - [ - 318444, - 215098, - 311 - ], - [ - 315129, - 217971, - 728 - ], - [ - 383532, - 152521, - 712 - ], - [ - 450113, - 79500, - 297 - ], - [ - 422841, - 112964, - 670 - ], - [ - 419826, - 116466, - 485 - ], - [ - 423169, - 112881, - 344 - ], - [ - 375001, - 160796, - 762 - ], - [ - 345933, - 188714, - 468 - ], - [ - 387943, - 148266, - 256 - ], - [ - 407867, - 128514, - 700 - ], - [ - 375160, - 160395, - 765 - ], - [ - 372327, - 163163, - 612 - ], - [ - 407611, - 128942, - 564 - ], - [ - 443036, - 89378, - 209 - ], - [ - 428794, - 106430, - 395 - ], - [ - 429385, - 105605, - 563 - ], - [ - 430835, - 103943, - 711 - ], - [ - 421912, - 114401, - 137 - ], - [ - 421682, - 114534, - 243 - ], - [ - 431771, - 103011, - 363 - ], - [ - 376016, - 159750, - 498 - ], - [ - 370463, - 164902, - 798 - ], - [ - 365007, - 170394, - 520 - ], - [ - 436461, - 22314, - 352 - ], - [ - 435777, - 22464, - 1332 - ], - [ - 437964, - 21922, - 1702 - ], - [ - 436139, - 22586, - 1837 - ], - [ - 436073, - 22446, - 139 - ], - [ - 437176, - 22242, - 1709 - ], - [ - 438089, - 22218, - 1792 - ], - [ - 438142, - 22342, - 2622 - ], - [ - 435845, - 22910, - 2212 - ], - [ - 435811, - 22495, - 450 - ], - [ - 437964, - 21923, - 1702 - ], - [ - 435777, - 22464, - 582 - ], - [ - 437964, - 21922, - 582 - ], - [ - 455572, - 25215, - 92 - ], - [ - 455303, - 25294, - 247 - ], - [ - 454793, - 25027, - 195 - ], - [ - 440852, - 21711, - 1340 - ], - [ - 441052, - 21532, - 1342 - ], - [ - 445151, - 22054, - 280 - ], - [ - 440846, - 21249, - 1052 - ], - [ - 440712, - 21774, - 1372 - ], - [ - 443011, - 67668, - 1232 - ], - [ - 443359, - 67391, - 1392 - ], - [ - 443089, - 67731, - 1232 - ], - [ - 443281, - 67328, - 1392 - ], - [ - 444746, - 65227, - 4212 - ], - [ - 444667, - 64973, - 4212 - ], - [ - 444839, - 65263, - 4212 - ], - [ - 445006, - 64828, - 4212 - ], - [ - 445179, - 62071, - 4282 - ], - [ - 445357, - 62274, - 4282 - ], - [ - 444912, - 64793, - 4212 - ], - [ - 445457, - 62272, - 4282 - ], - [ - 445447, - 61798, - 4302 - ], - [ - 444999, - 59173, - 4132 - ], - [ - 444920, - 59235, - 4222 - ], - [ - 444693, - 59148, - 4262 - ], - [ - 445347, - 61800, - 4282 - ], - [ - 444718, - 58813, - 4132 - ], - [ - 443116, - 56845, - 4522 - ], - [ - 443200, - 56771, - 4512 - ], - [ - 444635, - 58869, - 4132 - ], - [ - 443282, - 56715, - 4512 - ], - [ - 442976, - 56372, - 4612 - ], - [ - 442901, - 56439, - 4532 - ], - [ - 441208, - 54548, - 4792 - ], - [ - 441283, - 54481, - 4792 - ], - [ - 440902, - 54205, - 4792 - ], - [ - 440976, - 54138, - 4772 - ], - [ - 439283, - 52247, - 4692 - ], - [ - 439209, - 52314, - 4682 - ], - [ - 438896, - 51964, - 4682 - ], - [ - 438970, - 51897, - 4682 - ], - [ - 437284, - 50013, - 12682 - ], - [ - 437210, - 50080, - 12422 - ], - [ - 436903, - 49737, - 12422 - ], - [ - 436978, - 49670, - 12772 - ], - [ - 435298, - 47794, - 14282 - ], - [ - 435224, - 47860, - 14212 - ], - [ - 434985, - 47444, - 15092 - ], - [ - 434910, - 47510, - 14472 - ], - [ - 443011, - 67668, - 1202 - ], - [ - 443089, - 67731, - 1192 - ], - [ - 443359, - 67391, - 1202 - ], - [ - 443281, - 67328, - 1212 - ], - [ - 444746, - 65227, - 1262 - ], - [ - 444839, - 65263, - 1262 - ], - [ - 445006, - 64828, - 1282 - ], - [ - 444912, - 64793, - 1292 - ], - [ - 445357, - 62274, - 1422 - ], - [ - 445457, - 62272, - 1422 - ], - [ - 445447, - 61798, - 1452 - ], - [ - 445347, - 61800, - 1462 - ], - [ - 444920, - 59235, - 1612 - ], - [ - 444999, - 59173, - 1612 - ], - [ - 444718, - 58813, - 1662 - ], - [ - 444635, - 58869, - 1662 - ], - [ - 443200, - 56771, - 1822 - ], - [ - 443282, - 56715, - 1812 - ], - [ - 442976, - 56372, - 1852 - ], - [ - 442901, - 56439, - 1872 - ], - [ - 441208, - 54548, - 2002 - ], - [ - 441283, - 54481, - 2002 - ], - [ - 440976, - 54138, - 2012 - ], - [ - 440902, - 54205, - 2002 - ], - [ - 439209, - 52314, - 2072 - ], - [ - 439283, - 52247, - 2072 - ], - [ - 438970, - 51897, - 2082 - ], - [ - 438896, - 51964, - 2082 - ], - [ - 437210, - 50080, - 2192 - ], - [ - 437284, - 50013, - 2192 - ], - [ - 436978, - 49670, - 2212 - ], - [ - 436903, - 49737, - 2212 - ], - [ - 435224, - 47860, - 2242 - ], - [ - 435298, - 47794, - 2242 - ], - [ - 434985, - 47444, - 2252 - ], - [ - 434910, - 47510, - 2252 - ], - [ - 397989, - 92847, - 2772 - ], - [ - 397821, - 92862, - 2652 - ], - [ - 397899, - 92770, - 2622 - ], - [ - 397989, - 92847, - 1002 - ], - [ - 221793, - 119101, - 642 - ], - [ - 225523, - 116542, - 512 - ], - [ - 225624, - 116703, - 542 - ], - [ - 221531, - 119040, - 572 - ], - [ - 221633, - 119204, - 602 - ], - [ - 221793, - 119101, - 482 - ], - [ - 225624, - 116703, - 482 - ], - [ - 225523, - 116542, - 472 - ], - [ - 221531, - 119040, - 482 - ], - [ - 221633, - 119204, - 492 - ], - [ - 230175, - 113556, - 542 - ], - [ - 230175, - 113556, - 472 - ], - [ - 312834, - 83183, - 4512 - ], - [ - 314696, - 84168, - 3022 - ], - [ - 319078, - 87389, - 1412 - ], - [ - 314509, - 83953, - 3412 - ], - [ - 315082, - 83489, - 3022 - ], - [ - 314930, - 83395, - 3012 - ], - [ - 380581, - 86368, - 1448 - ], - [ - 380965, - 86254, - 1424 - ], - [ - 380569, - 86679, - 718 - ], - [ - 381624, - 84713, - 685 - ], - [ - 378528, - 87461, - 846 - ], - [ - 377963, - 86496, - 1180 - ], - [ - 378162, - 87187, - 2680 - ], - [ - 378697, - 87794, - 2603 - ], - [ - 379122, - 88095, - 2543 - ], - [ - 379278, - 87979, - 755 - ], - [ - 379342, - 88317, - 1016 - ], - [ - 378944, - 87721, - 739 - ], - [ - 381304, - 85829, - 763 - ], - [ - 381257, - 85507, - 702 - ], - [ - 379888, - 87169, - 690 - ], - [ - 380922, - 85925, - 1420 - ], - [ - 382344, - 84388, - 762 - ], - [ - 380251, - 86728, - 1101 - ], - [ - 406073, - 94308, - 1426 - ], - [ - 406497, - 94521, - 803 - ], - [ - 406117, - 94548, - 772 - ], - [ - 408107, - 92254, - 1447 - ], - [ - 407877, - 93033, - 1417 - ], - [ - 408044, - 92342, - 5044 - ], - [ - 410159, - 90800, - 642 - ], - [ - 407334, - 93545, - 1403 - ], - [ - 407530, - 92817, - 1435 - ], - [ - 407248, - 92869, - 1446 - ], - [ - 405777, - 94324, - 802 - ], - [ - 409457, - 91318, - 1403 - ], - [ - 407081, - 93985, - 816 - ], - [ - 406457, - 94772, - 692 - ], - [ - 406870, - 94079, - 1446 - ], - [ - 407834, - 92693, - 1445 - ], - [ - 409417, - 91001, - 1432 - ], - [ - 409734, - 90549, - 675 - ], - [ - 409782, - 90882, - 745 - ], - [ - 357141, - 94149, - 1865 - ], - [ - 356587, - 96824, - 1592 - ], - [ - 356446, - 96819, - 1592 - ], - [ - 356728, - 96819, - 1592 - ], - [ - 356869, - 96805, - 1592 - ], - [ - 357009, - 96781, - 1602 - ], - [ - 357146, - 96747, - 1592 - ], - [ - 357281, - 96704, - 1602 - ], - [ - 357412, - 96652, - 1602 - ], - [ - 357540, - 96592, - 1602 - ], - [ - 357663, - 96522, - 1602 - ], - [ - 357782, - 96445, - 1612 - ], - [ - 357894, - 96359, - 1612 - ], - [ - 358001, - 96266, - 1612 - ], - [ - 358101, - 96166, - 1622 - ], - [ - 358194, - 96059, - 1642 - ], - [ - 358280, - 95947, - 1652 - ], - [ - 358357, - 95828, - 1642 - ], - [ - 358427, - 95705, - 1652 - ], - [ - 358487, - 95577, - 1652 - ], - [ - 358539, - 95446, - 1682 - ], - [ - 358582, - 95311, - 1682 - ], - [ - 358616, - 95174, - 1682 - ], - [ - 358640, - 95034, - 1692 - ], - [ - 358654, - 94893, - 1722 - ], - [ - 358659, - 94752, - 1722 - ], - [ - 358654, - 94611, - 1732 - ], - [ - 358640, - 94470, - 1732 - ], - [ - 358616, - 94330, - 1732 - ], - [ - 358582, - 94193, - 1732 - ], - [ - 358539, - 94058, - 1742 - ], - [ - 358487, - 93927, - 1742 - ], - [ - 358427, - 93799, - 1742 - ], - [ - 358357, - 93675, - 1752 - ], - [ - 358280, - 93557, - 1752 - ], - [ - 358194, - 93444, - 1772 - ], - [ - 358101, - 93338, - 1772 - ], - [ - 358001, - 93238, - 1772 - ], - [ - 357895, - 93145, - 1782 - ], - [ - 357782, - 93059, - 1782 - ], - [ - 357664, - 92982, - 1772 - ], - [ - 357540, - 92912, - 1782 - ], - [ - 357412, - 92852, - 1782 - ], - [ - 357281, - 92800, - 1782 - ], - [ - 357146, - 92757, - 1782 - ], - [ - 357009, - 92723, - 1782 - ], - [ - 356869, - 92699, - 1782 - ], - [ - 356728, - 92685, - 1782 - ], - [ - 356587, - 92680, - 1782 - ], - [ - 356305, - 92699, - 1782 - ], - [ - 356446, - 92685, - 1782 - ], - [ - 356165, - 92723, - 1782 - ], - [ - 356028, - 92757, - 1782 - ], - [ - 355893, - 92800, - 1782 - ], - [ - 355762, - 92852, - 1782 - ], - [ - 355634, - 92912, - 1782 - ], - [ - 355510, - 92982, - 1782 - ], - [ - 355392, - 93059, - 1792 - ], - [ - 355279, - 93145, - 1772 - ], - [ - 355173, - 93238, - 1772 - ], - [ - 355073, - 93338, - 1772 - ], - [ - 354980, - 93444, - 1762 - ], - [ - 354894, - 93557, - 1752 - ], - [ - 354817, - 93675, - 1742 - ], - [ - 354747, - 93799, - 1742 - ], - [ - 354687, - 93927, - 1732 - ], - [ - 354635, - 94058, - 1722 - ], - [ - 354592, - 94193, - 1712 - ], - [ - 354558, - 94330, - 1712 - ], - [ - 354534, - 94470, - 1702 - ], - [ - 354520, - 94611, - 1692 - ], - [ - 354515, - 94752, - 1692 - ], - [ - 354520, - 94893, - 1682 - ], - [ - 354534, - 95034, - 1682 - ], - [ - 354558, - 95174, - 1672 - ], - [ - 354592, - 95311, - 1672 - ], - [ - 354635, - 95446, - 1662 - ], - [ - 354687, - 95577, - 1662 - ], - [ - 354747, - 95705, - 1662 - ], - [ - 354817, - 95829, - 1662 - ], - [ - 354894, - 95947, - 1652 - ], - [ - 354980, - 96060, - 1652 - ], - [ - 355073, - 96166, - 1642 - ], - [ - 355173, - 96266, - 1642 - ], - [ - 355279, - 96359, - 1642 - ], - [ - 355392, - 96445, - 1622 - ], - [ - 355510, - 96522, - 1622 - ], - [ - 355634, - 96592, - 1622 - ], - [ - 355762, - 96652, - 1602 - ], - [ - 355893, - 96704, - 1602 - ], - [ - 356028, - 96747, - 1602 - ], - [ - 356165, - 96781, - 1602 - ], - [ - 356305, - 96805, - 1592 - ], - [ - 276578, - 65311, - 484 - ], - [ - 277506, - 65264, - 352 - ], - [ - 276236, - 65983, - 332 - ], - [ - 276535, - 64978, - 500 - ], - [ - 276520, - 65098, - 5037 - ], - [ - 276181, - 65126, - 465 - ], - [ - 276732, - 63964, - 372 - ], - [ - 275479, - 64710, - 372 - ], - [ - 222828, - 114271, - 642 - ], - [ - 223074, - 114299, - 5308 - ], - [ - 223200, - 114419, - 412 - ], - [ - 221600, - 114351, - 506 - ], - [ - 221899, - 114944, - 549 - ], - [ - 221192, - 114020, - 362 - ], - [ - 222117, - 113525, - 7388 - ], - [ - 222164, - 113773, - 523 - ], - [ - 221716, - 113951, - 524 - ], - [ - 222697, - 114161, - 5184 - ], - [ - 222707, - 114122, - 612 - ], - [ - 222251, - 113384, - 438 - ], - [ - 221398, - 113928, - 432 - ], - [ - 222237, - 114179, - 7785 - ], - [ - 222011, - 114169, - 626 - ], - [ - 222282, - 113709, - 5066 - ], - [ - 222394, - 113935, - 1438 - ], - [ - 222288, - 114870, - 568 - ], - [ - 221989, - 115237, - 402 - ], - [ - 222653, - 113792, - 481 - ], - [ - 222287, - 113653, - 508 - ], - [ - 222481, - 114002, - 7262 - ], - [ - 222511, - 114034, - 588 - ], - [ - 222331, - 114407, - 704 - ], - [ - 222466, - 114715, - 5706 - ], - [ - 221521, - 113988, - 5575 - ], - [ - 222415, - 113219, - 362 - ], - [ - 222427, - 114639, - 564 - ], - [ - 401966, - 79855, - 1304 - ], - [ - 401882, - 79501, - 789 - ], - [ - 402238, - 79381, - 1254 - ], - [ - 403351, - 82639, - 802 - ], - [ - 401687, - 81443, - 792 - ], - [ - 402358, - 80509, - 772 - ], - [ - 403220, - 80109, - 772 - ], - [ - 404547, - 80975, - 802 - ], - [ - 401739, - 79957, - 1155 - ], - [ - 402290, - 80047, - 765 - ], - [ - 401868, - 79050, - 802 - ], - [ - 401343, - 79780, - 812 - ], - [ - 393061, - 83483, - 1307 - ], - [ - 393484, - 83814, - 892 - ], - [ - 389725, - 81166, - 822 - ], - [ - 392893, - 82477, - 817 - ], - [ - 392986, - 83156, - 869 - ], - [ - 392503, - 82974, - 820 - ], - [ - 393323, - 82595, - 857 - ], - [ - 394078, - 82973, - 852 - ], - [ - 393458, - 83626, - 838 - ], - [ - 391575, - 82348, - 979 - ], - [ - 393404, - 82962, - 1315 - ], - [ - 391438, - 81367, - 871 - ], - [ - 391085, - 81885, - 842 - ], - [ - 393687, - 82784, - 1303 - ], - [ - 391986, - 82494, - 828 - ], - [ - 392373, - 81982, - 823 - ], - [ - 391888, - 81515, - 1259 - ], - [ - 391553, - 82018, - 1275 - ], - [ - 391945, - 82180, - 828 - ], - [ - 390319, - 80324, - 802 - ], - [ - 391477, - 81695, - 799 - ], - [ - 358916, - 33479, - 684 - ], - [ - 359821, - 33303, - 592 - ], - [ - 358289, - 33668, - 652 - ], - [ - 358322, - 32795, - 740 - ], - [ - 358363, - 33117, - 729 - ], - [ - 357944, - 32179, - 692 - ], - [ - 358195, - 32436, - 7567 - ], - [ - 358275, - 32449, - 728 - ], - [ - 359345, - 33148, - 723 - ], - [ - 359511, - 32841, - 7920 - ], - [ - 359566, - 32878, - 7146 - ], - [ - 358349, - 32822, - 8992 - ], - [ - 358494, - 32470, - 7265 - ], - [ - 358668, - 32855, - 779 - ], - [ - 358354, - 32922, - 779 - ], - [ - 359652, - 32801, - 651 - ], - [ - 359469, - 32642, - 3818 - ], - [ - 359334, - 32224, - 766 - ], - [ - 358839, - 32836, - 787 - ], - [ - 358913, - 32960, - 1170 - ], - [ - 358771, - 32873, - 7977 - ], - [ - 358642, - 33325, - 780 - ], - [ - 358877, - 33150, - 734 - ], - [ - 358421, - 33097, - 7811 - ], - [ - 359164, - 33088, - 7642 - ], - [ - 358722, - 33011, - 8560 - ], - [ - 359209, - 32105, - 732 - ], - [ - 359400, - 31843, - 642 - ], - [ - 358381, - 32477, - 750 - ], - [ - 359285, - 33167, - 743 - ], - [ - 359479, - 33250, - 8061 - ], - [ - 359253, - 32742, - 6689 - ], - [ - 358952, - 32719, - 811 - ], - [ - 359254, - 32454, - 726 - ], - [ - 359667, - 33148, - 735 - ], - [ - 359201, - 32857, - 7315 - ], - [ - 359153, - 32824, - 2797 - ], - [ - 358229, - 32121, - 679 - ], - [ - 358785, - 32461, - 732 - ], - [ - 358858, - 32555, - 7040 - ], - [ - 358636, - 32199, - 5536 - ], - [ - 358576, - 32071, - 6456 - ], - [ - 358738, - 32111, - 728 - ], - [ - 359300, - 32797, - 749 - ], - [ - 359310, - 32699, - 755 - ], - [ - 358696, - 32372, - 761 - ], - [ - 359413, - 32604, - 4624 - ], - [ - 331793, - 54550, - 405 - ], - [ - 332738, - 54284, - 272 - ], - [ - 331318, - 54711, - 282 - ], - [ - 331256, - 53602, - 360 - ], - [ - 330904, - 53352, - 232 - ], - [ - 331657, - 53530, - 399 - ], - [ - 332050, - 53453, - 406 - ], - [ - 331657, - 53768, - 5723 - ], - [ - 331713, - 53883, - 540 - ], - [ - 332017, - 53052, - 6396 - ], - [ - 332004, - 53106, - 396 - ], - [ - 332395, - 53374, - 365 - ], - [ - 332323, - 52920, - 4672 - ], - [ - 332323, - 52920, - 252 - ], - [ - 404406, - 31622, - 921 - ], - [ - 404620, - 31530, - 5163 - ], - [ - 404725, - 31724, - 2401 - ], - [ - 404591, - 31412, - 937 - ], - [ - 404683, - 31190, - 914 - ], - [ - 404699, - 31360, - 6593 - ], - [ - 404842, - 31229, - 950 - ], - [ - 405089, - 31112, - 1623 - ], - [ - 404821, - 31660, - 961 - ], - [ - 404427, - 31165, - 920 - ], - [ - 405070, - 32441, - 968 - ], - [ - 405601, - 32325, - 862 - ], - [ - 404168, - 32743, - 812 - ], - [ - 404732, - 31554, - 909 - ], - [ - 404959, - 31073, - 5037 - ], - [ - 405313, - 31882, - 1608 - ], - [ - 404774, - 31880, - 907 - ], - [ - 403757, - 31323, - 832 - ], - [ - 404362, - 32528, - 956 - ], - [ - 405190, - 30907, - 1652 - ], - [ - 405363, - 31844, - 1659 - ], - [ - 405302, - 32161, - 924 - ], - [ - 404773, - 31727, - 1667 - ], - [ - 405190, - 30907, - 872 - ], - [ - 392622, - 24984, - 746 - ], - [ - 392956, - 25106, - 662 - ], - [ - 392538, - 25049, - 5101 - ], - [ - 391361, - 24344, - 5696 - ], - [ - 391415, - 24657, - 817 - ], - [ - 391148, - 23986, - 682 - ], - [ - 392290, - 24648, - 834 - ], - [ - 392580, - 24650, - 778 - ], - [ - 392475, - 24885, - 6148 - ], - [ - 391727, - 25243, - 751 - ], - [ - 391779, - 24997, - 3579 - ], - [ - 391952, - 25297, - 800 - ], - [ - 391447, - 24794, - 4111 - ], - [ - 391634, - 25180, - 5586 - ], - [ - 391484, - 25470, - 1192 - ], - [ - 391976, - 24804, - 802 - ], - [ - 391811, - 24734, - 3300 - ], - [ - 392035, - 24775, - 4504 - ], - [ - 392332, - 25085, - 3732 - ], - [ - 392014, - 25262, - 4454 - ], - [ - 392604, - 23657, - 712 - ], - [ - 392072, - 24437, - 767 - ], - [ - 391440, - 24192, - 780 - ], - [ - 391592, - 25349, - 6084 - ], - [ - 391685, - 24519, - 791 - ], - [ - 392160, - 25103, - 770 - ], - [ - 392142, - 24805, - 1073 - ], - [ - 392269, - 25090, - 812 - ], - [ - 391636, - 24554, - 765 - ], - [ - 391663, - 24941, - 804 - ], - [ - 392628, - 24755, - 3990 - ], - [ - 392891, - 24906, - 4330 - ], - [ - 392563, - 24617, - 5052 - ], - [ - 392556, - 24541, - 816 - ], - [ - 392401, - 24472, - 3157 - ], - [ - 392533, - 24290, - 767 - ], - [ - 392687, - 24125, - 3572 - ], - [ - 392840, - 24856, - 782 - ], - [ - 391685, - 24910, - 784 - ], - [ - 392377, - 24954, - 3165 - ], - [ - 392535, - 24992, - 782 - ], - [ - 392580, - 24047, - 825 - ], - [ - 392134, - 24686, - 3106 - ], - [ - 392086, - 24739, - 3778 - ], - [ - 391484, - 25470, - 652 - ], - [ - 284462, - 74566, - 2446 - ], - [ - 285172, - 74327, - 382 - ], - [ - 283876, - 75077, - 1622 - ], - [ - 284014, - 73348, - 3061 - ], - [ - 284030, - 73401, - 8379 - ], - [ - 283548, - 73531, - 3052 - ], - [ - 284408, - 74241, - 2304 - ], - [ - 284445, - 74233, - 7263 - ], - [ - 284596, - 74375, - 657 - ], - [ - 283587, - 73615, - 2392 - ], - [ - 283998, - 73682, - 7425 - ], - [ - 283681, - 74122, - 2389 - ], - [ - 284268, - 74163, - 10202 - ], - [ - 284259, - 74445, - 4379 - ], - [ - 284532, - 73440, - 1454 - ], - [ - 284422, - 73030, - 2732 - ], - [ - 284035, - 73687, - 2738 - ], - [ - 284802, - 73994, - 637 - ], - [ - 284837, - 74307, - 551 - ], - [ - 284308, - 73562, - 2181 - ], - [ - 284309, - 73259, - 2738 - ], - [ - 284137, - 74685, - 2329 - ], - [ - 284338, - 73872, - 2029 - ], - [ - 284575, - 74067, - 911 - ], - [ - 284544, - 73745, - 1076 - ], - [ - 283175, - 73865, - 5242 - ], - [ - 283242, - 73888, - 2088 - ], - [ - 283763, - 74774, - 2323 - ], - [ - 284422, - 73030, - 352 - ], - [ - 283876, - 75077, - 392 - ], - [ - 283175, - 73865, - 342 - ], - [ - 338571, - 81703, - 563 - ], - [ - 339054, - 81664, - 540 - ], - [ - 338745, - 81449, - 3472 - ], - [ - 339012, - 81332, - 556 - ], - [ - 338480, - 81023, - 553 - ], - [ - 338241, - 81170, - 3434 - ], - [ - 338069, - 81435, - 526 - ], - [ - 301147, - 65257, - 953 - ], - [ - 302005, - 65296, - 382 - ], - [ - 300673, - 65955, - 372 - ], - [ - 301353, - 63982, - 5852 - ], - [ - 301161, - 64503, - 8408 - ], - [ - 301199, - 64061, - 5912 - ], - [ - 300972, - 64197, - 485 - ], - [ - 300891, - 64220, - 6292 - ], - [ - 301045, - 64140, - 5912 - ], - [ - 301010, - 64970, - 5551 - ], - [ - 300634, - 64518, - 7270 - ], - [ - 300639, - 64963, - 577 - ], - [ - 301115, - 64943, - 1076 - ], - [ - 300584, - 64380, - 6292 - ], - [ - 300737, - 64300, - 6292 - ], - [ - 300277, - 64541, - 6282 - ], - [ - 300430, - 64460, - 6292 - ], - [ - 301216, - 64863, - 8516 - ], - [ - 301523, - 64962, - 6535 - ], - [ - 301515, - 65120, - 584 - ], - [ - 301472, - 64775, - 615 - ], - [ - 301843, - 65026, - 559 - ], - [ - 299977, - 64688, - 342 - ], - [ - 300144, - 64686, - 399 - ], - [ - 301353, - 63982, - 382 - ], - [ - 371964, - 30297, - 406 - ], - [ - 373210, - 29990, - 452 - ], - [ - 371725, - 30357, - 432 - ], - [ - 372777, - 29639, - 3540 - ], - [ - 372974, - 29413, - 537 - ], - [ - 372997, - 29537, - 564 - ], - [ - 372658, - 29465, - 5292 - ], - [ - 372746, - 29184, - 577 - ], - [ - 372885, - 29230, - 6325 - ], - [ - 373059, - 29357, - 7447 - ], - [ - 373015, - 29735, - 512 - ], - [ - 373001, - 29276, - 8298 - ], - [ - 371903, - 28994, - 6599 - ], - [ - 371794, - 28944, - 8136 - ], - [ - 371794, - 28934, - 536 - ], - [ - 372349, - 29055, - 6137 - ], - [ - 372294, - 29090, - 6877 - ], - [ - 372344, - 28947, - 596 - ], - [ - 372154, - 29106, - 6222 - ], - [ - 372204, - 29181, - 535 - ], - [ - 371759, - 29136, - 561 - ], - [ - 372869, - 28520, - 492 - ], - [ - 372578, - 28828, - 593 - ], - [ - 372058, - 29032, - 575 - ], - [ - 371423, - 28881, - 482 - ], - [ - 372927, - 29052, - 545 - ], - [ - 372601, - 29427, - 6108 - ], - [ - 372557, - 29602, - 6599 - ], - [ - 372439, - 29540, - 4547 - ], - [ - 372424, - 29777, - 2032 - ], - [ - 372292, - 29862, - 503 - ], - [ - 372319, - 29401, - 595 - ], - [ - 372821, - 29866, - 6750 - ], - [ - 372254, - 30146, - 6652 - ], - [ - 372627, - 29587, - 5742 - ], - [ - 372630, - 29467, - 546 - ], - [ - 372670, - 29784, - 525 - ], - [ - 372560, - 29736, - 2747 - ], - [ - 372612, - 29688, - 2062 - ], - [ - 372554, - 29287, - 589 - ], - [ - 372522, - 29646, - 775 - ], - [ - 372471, - 29701, - 1436 - ], - [ - 372721, - 29648, - 585 - ], - [ - 372505, - 29711, - 7227 - ], - [ - 372585, - 29126, - 552 - ], - [ - 372871, - 29794, - 6113 - ], - [ - 372978, - 29795, - 4636 - ], - [ - 203238, - 113068, - 1401 - ], - [ - 203383, - 112990, - 4932 - ], - [ - 202163, - 113846, - 4622 - ], - [ - 202311, - 113227, - 5919 - ], - [ - 202126, - 113106, - 5576 - ], - [ - 202433, - 113162, - 1457 - ], - [ - 201865, - 112353, - 1345 - ], - [ - 202063, - 112269, - 5242 - ], - [ - 202163, - 112575, - 1414 - ], - [ - 203096, - 113052, - 5231 - ], - [ - 203233, - 112831, - 1351 - ], - [ - 202676, - 112721, - 5436 - ], - [ - 202534, - 112533, - 1419 - ], - [ - 202663, - 112546, - 1346 - ], - [ - 202563, - 111863, - 1294 - ], - [ - 202521, - 111762, - 1232 - ], - [ - 202864, - 112331, - 4982 - ], - [ - 202732, - 113063, - 6849 - ], - [ - 202826, - 112753, - 6810 - ], - [ - 202974, - 112783, - 5308 - ], - [ - 203119, - 112749, - 5191 - ], - [ - 202949, - 112424, - 1279 - ], - [ - 202759, - 112472, - 5254 - ], - [ - 202820, - 112511, - 1468 - ], - [ - 203002, - 112751, - 1381 - ], - [ - 203048, - 113091, - 1356 - ], - [ - 202760, - 113217, - 1399 - ], - [ - 202883, - 113120, - 1417 - ], - [ - 202586, - 112979, - 6400 - ], - [ - 202375, - 113329, - 1404 - ], - [ - 202532, - 113376, - 6216 - ], - [ - 202184, - 112270, - 1377 - ], - [ - 202318, - 113503, - 1432 - ], - [ - 202047, - 112861, - 1582 - ], - [ - 202526, - 112293, - 1376 - ], - [ - 202351, - 112478, - 5371 - ], - [ - 202433, - 112224, - 5260 - ], - [ - 202280, - 112655, - 1409 - ], - [ - 201968, - 113236, - 1453 - ], - [ - 201302, - 112618, - 1332 - ], - [ - 202505, - 113069, - 3899 - ], - [ - 202002, - 113408, - 5648 - ], - [ - 202614, - 112201, - 1333 - ], - [ - 202266, - 112301, - 1908 - ], - [ - 202214, - 112062, - 1298 - ], - [ - 202469, - 112024, - 5108 - ], - [ - 203316, - 112992, - 1277 - ], - [ - 201935, - 113387, - 1423 - ], - [ - 202546, - 112937, - 4626 - ], - [ - 203383, - 112990, - 1272 - ], - [ - 202163, - 113846, - 1412 - ], - [ - 258306, - 188700, - 1002 - ], - [ - 258262, - 188701, - 1002 - ], - [ - 258391, - 188133, - 1163 - ], - [ - 258351, - 188695, - 1012 - ], - [ - 258394, - 188688, - 1012 - ], - [ - 258438, - 188677, - 1012 - ], - [ - 258480, - 188664, - 1012 - ], - [ - 258521, - 188648, - 1002 - ], - [ - 258561, - 188629, - 1002 - ], - [ - 258600, - 188607, - 1002 - ], - [ - 258637, - 188582, - 1002 - ], - [ - 258673, - 188556, - 1012 - ], - [ - 258706, - 188526, - 1012 - ], - [ - 258737, - 188495, - 1012 - ], - [ - 258767, - 188462, - 1002 - ], - [ - 258793, - 188426, - 1012 - ], - [ - 258818, - 188389, - 1002 - ], - [ - 258840, - 188350, - 1002 - ], - [ - 258859, - 188310, - 1002 - ], - [ - 258875, - 188269, - 1002 - ], - [ - 258888, - 188227, - 1002 - ], - [ - 258899, - 188183, - 1002 - ], - [ - 258906, - 188140, - 1002 - ], - [ - 258911, - 188095, - 1002 - ], - [ - 258216, - 188699, - 1002 - ], - [ - 258912, - 188051, - 1002 - ], - [ - 258910, - 188005, - 1002 - ], - [ - 258906, - 187960, - 1002 - ], - [ - 258898, - 187915, - 1002 - ], - [ - 258886, - 187871, - 1002 - ], - [ - 258872, - 187827, - 1002 - ], - [ - 258855, - 187785, - 1002 - ], - [ - 258835, - 187744, - 1002 - ], - [ - 258812, - 187704, - 1002 - ], - [ - 258786, - 187666, - 1002 - ], - [ - 258758, - 187631, - 992 - ], - [ - 258727, - 187597, - 992 - ], - [ - 258694, - 187565, - 992 - ], - [ - 258659, - 187536, - 992 - ], - [ - 258622, - 187509, - 982 - ], - [ - 258583, - 187486, - 982 - ], - [ - 258542, - 187464, - 982 - ], - [ - 258500, - 187446, - 982 - ], - [ - 258457, - 187431, - 982 - ], - [ - 258413, - 187419, - 972 - ], - [ - 258368, - 187410, - 972 - ], - [ - 258171, - 188695, - 1002 - ], - [ - 258323, - 187404, - 972 - ], - [ - 258277, - 187401, - 972 - ], - [ - 258232, - 187402, - 972 - ], - [ - 258186, - 187405, - 972 - ], - [ - 258141, - 187412, - 972 - ], - [ - 258096, - 187422, - 972 - ], - [ - 258052, - 187436, - 972 - ], - [ - 258010, - 187452, - 972 - ], - [ - 257968, - 187471, - 972 - ], - [ - 257928, - 187493, - 972 - ], - [ - 257890, - 187518, - 972 - ], - [ - 257853, - 187546, - 972 - ], - [ - 257819, - 187576, - 972 - ], - [ - 257787, - 187608, - 972 - ], - [ - 257757, - 187642, - 982 - ], - [ - 257729, - 187679, - 982 - ], - [ - 257704, - 187717, - 982 - ], - [ - 257811, - 188239, - 1158 - ], - [ - 257682, - 187757, - 982 - ], - [ - 257663, - 187799, - 982 - ], - [ - 257647, - 187841, - 982 - ], - [ - 257633, - 187885, - 982 - ], - [ - 257623, - 187930, - 982 - ], - [ - 257616, - 187975, - 982 - ], - [ - 257613, - 188021, - 982 - ], - [ - 257612, - 188066, - 982 - ], - [ - 257615, - 188112, - 982 - ], - [ - 257621, - 188157, - 982 - ], - [ - 257630, - 188202, - 982 - ], - [ - 257996, - 188644, - 1012 - ], - [ - 257657, - 188289, - 1002 - ], - [ - 257675, - 188331, - 1002 - ], - [ - 257697, - 188372, - 1002 - ], - [ - 257720, - 188411, - 1002 - ], - [ - 257747, - 188448, - 1002 - ], - [ - 257776, - 188483, - 1002 - ], - [ - 257808, - 188516, - 1002 - ], - [ - 257842, - 188547, - 1002 - ], - [ - 257877, - 188575, - 1002 - ], - [ - 257915, - 188601, - 1012 - ], - [ - 257955, - 188624, - 1012 - ], - [ - 258038, - 188661, - 1012 - ], - [ - 258082, - 188675, - 1012 - ], - [ - 258126, - 188687, - 1012 - ], - [ - 257642, - 188246, - 982 - ], - [ - 372016, - 77661, - 3246 - ], - [ - 372173, - 78021, - 4751 - ], - [ - 371902, - 78252, - 579 - ], - [ - 371770, - 77244, - 585 - ], - [ - 371862, - 78102, - 6654 - ], - [ - 406323, - 79159, - 764 - ], - [ - 414749, - 85128, - 772 - ], - [ - 412640, - 83511, - 1377 - ], - [ - 412589, - 83152, - 1330 - ], - [ - 413062, - 83393, - 1426 - ], - [ - 410196, - 81840, - 798 - ], - [ - 411217, - 89217, - 1416 - ], - [ - 411175, - 88886, - 1430 - ], - [ - 411541, - 89165, - 772 - ], - [ - 410693, - 89660, - 1404 - ], - [ - 410949, - 89624, - 1411 - ], - [ - 410944, - 89954, - 716 - ], - [ - 410905, - 89306, - 1385 - ], - [ - 410970, - 89340, - 5938 - ], - [ - 414698, - 86145, - 710 - ], - [ - 414732, - 86275, - 5718 - ], - [ - 414414, - 86555, - 688 - ], - [ - 409250, - 81165, - 5860 - ], - [ - 407381, - 79674, - 1335 - ], - [ - 406809, - 79421, - 935 - ], - [ - 407339, - 79345, - 1367 - ], - [ - 414953, - 85698, - 709 - ], - [ - 415973, - 85008, - 662 - ], - [ - 411541, - 88833, - 1394 - ], - [ - 411500, - 88516, - 1407 - ], - [ - 413823, - 87026, - 721 - ], - [ - 409870, - 81554, - 1268 - ], - [ - 414093, - 86266, - 1382 - ], - [ - 415289, - 85305, - 748 - ], - [ - 415286, - 84953, - 1360 - ], - [ - 409537, - 80939, - 1390 - ], - [ - 409498, - 80630, - 1403 - ], - [ - 409745, - 80865, - 791 - ], - [ - 411050, - 82063, - 1323 - ], - [ - 411088, - 82395, - 1228 - ], - [ - 410609, - 82107, - 831 - ], - [ - 409579, - 81298, - 1307 - ], - [ - 409251, - 81049, - 1314 - ], - [ - 404985, - 78171, - 758 - ], - [ - 405662, - 78578, - 5731 - ], - [ - 406232, - 78486, - 741 - ], - [ - 405914, - 78281, - 1303 - ], - [ - 405524, - 78009, - 798 - ], - [ - 405609, - 78384, - 1306 - ], - [ - 402259, - 76252, - 1249 - ], - [ - 402222, - 75915, - 1364 - ], - [ - 411100, - 88946, - 4808 - ], - [ - 411226, - 89560, - 908 - ], - [ - 411492, - 82310, - 1273 - ], - [ - 414435, - 84147, - 716 - ], - [ - 414094, - 86608, - 742 - ], - [ - 411849, - 82694, - 5607 - ], - [ - 412064, - 82910, - 1329 - ], - [ - 415327, - 85623, - 688 - ], - [ - 403260, - 76968, - 809 - ], - [ - 403797, - 77191, - 1326 - ], - [ - 404721, - 77958, - 1218 - ], - [ - 403164, - 76288, - 719 - ], - [ - 413548, - 87092, - 1386 - ], - [ - 413769, - 86335, - 1253 - ], - [ - 413824, - 86678, - 1394 - ], - [ - 411931, - 88774, - 1202 - ], - [ - 412296, - 88332, - 1366 - ], - [ - 414226, - 85953, - 3859 - ], - [ - 414374, - 85909, - 1327 - ], - [ - 407977, - 80234, - 1267 - ], - [ - 406318, - 78837, - 1297 - ], - [ - 405292, - 78135, - 1348 - ], - [ - 404684, - 77632, - 1326 - ], - [ - 414527, - 84470, - 1412 - ], - [ - 414193, - 84533, - 1324 - ], - [ - 414159, - 84220, - 1431 - ], - [ - 412020, - 82552, - 1380 - ], - [ - 405959, - 78603, - 1338 - ], - [ - 414659, - 85473, - 1414 - ], - [ - 414663, - 85783, - 883 - ], - [ - 414963, - 85388, - 1428 - ], - [ - 414539, - 84795, - 964 - ], - [ - 410531, - 81459, - 933 - ], - [ - 411403, - 81948, - 709 - ], - [ - 409118, - 80337, - 762 - ], - [ - 408879, - 80764, - 1348 - ], - [ - 408840, - 80429, - 1427 - ], - [ - 407850, - 79572, - 722 - ], - [ - 410603, - 81800, - 1322 - ], - [ - 409829, - 81230, - 1299 - ], - [ - 412502, - 82801, - 746 - ], - [ - 412251, - 87972, - 1394 - ], - [ - 410166, - 81488, - 1032 - ], - [ - 403753, - 76849, - 1344 - ], - [ - 402731, - 76105, - 1366 - ], - [ - 403254, - 76646, - 1335 - ], - [ - 411892, - 88435, - 1273 - ], - [ - 418886, - 92999, - 1034 - ], - [ - 420200, - 92831, - 1055 - ], - [ - 419169, - 93205, - 1028 - ], - [ - 425511, - 88240, - 1521 - ], - [ - 424658, - 88474, - 1503 - ], - [ - 424550, - 87779, - 1277 - ], - [ - 424524, - 87465, - 1505 - ], - [ - 424903, - 87017, - 1235 - ], - [ - 426073, - 87698, - 1505 - ], - [ - 426679, - 87865, - 932 - ], - [ - 426607, - 88009, - 922 - ], - [ - 425833, - 88144, - 1203 - ], - [ - 426437, - 88281, - 922 - ], - [ - 426339, - 88409, - 922 - ], - [ - 426526, - 88148, - 922 - ], - [ - 426741, - 87717, - 932 - ], - [ - 426156, - 85954, - 1412 - ], - [ - 425616, - 86455, - 1293 - ], - [ - 426305, - 85638, - 4122 - ], - [ - 426898, - 86466, - 1169 - ], - [ - 426625, - 86902, - 1392 - ], - [ - 426523, - 86230, - 1204 - ], - [ - 423917, - 88045, - 4116 - ], - [ - 423077, - 88962, - 1136 - ], - [ - 422826, - 89071, - 1190 - ], - [ - 420463, - 92023, - 1145 - ], - [ - 420516, - 92357, - 1279 - ], - [ - 420062, - 91805, - 1025 - ], - [ - 422109, - 89778, - 4125 - ], - [ - 421175, - 90758, - 1025 - ], - [ - 416811, - 94978, - 4117 - ], - [ - 415019, - 96748, - 4117 - ], - [ - 413770, - 97981, - 4100 - ], - [ - 418769, - 93090, - 4124 - ], - [ - 420821, - 91564, - 1079 - ], - [ - 420584, - 91355, - 4132 - ], - [ - 420773, - 91206, - 1077 - ], - [ - 417866, - 94683, - 1044 - ], - [ - 418692, - 94122, - 1068 - ], - [ - 417924, - 95020, - 1226 - ], - [ - 416013, - 95878, - 1042 - ], - [ - 415894, - 95903, - 4108 - ], - [ - 422735, - 89183, - 4110 - ], - [ - 422250, - 89666, - 1061 - ], - [ - 426445, - 85557, - 1360 - ], - [ - 426663, - 87260, - 1250 - ], - [ - 426795, - 87565, - 932 - ], - [ - 414207, - 97590, - 4121 - ], - [ - 424146, - 87930, - 1341 - ], - [ - 414054, - 97959, - 1249 - ], - [ - 414087, - 98322, - 1041 - ], - [ - 416482, - 95402, - 4123 - ], - [ - 416312, - 95769, - 1020 - ], - [ - 415729, - 96286, - 1027 - ], - [ - 422337, - 90310, - 1093 - ], - [ - 422669, - 90216, - 1204 - ], - [ - 422410, - 90653, - 1476 - ], - [ - 422045, - 90799, - 1268 - ], - [ - 422506, - 91326, - 1582 - ], - [ - 421939, - 90124, - 1032 - ], - [ - 422293, - 89982, - 1072 - ], - [ - 416642, - 95347, - 1034 - ], - [ - 417009, - 94929, - 1046 - ], - [ - 417543, - 95489, - 1118 - ], - [ - 415538, - 97348, - 1060 - ], - [ - 415188, - 97068, - 1223 - ], - [ - 414645, - 97187, - 4114 - ], - [ - 414538, - 97910, - 1233 - ], - [ - 421382, - 92102, - 1436 - ], - [ - 421783, - 91586, - 1589 - ], - [ - 421639, - 90628, - 1332 - ], - [ - 422868, - 89427, - 1125 - ], - [ - 423965, - 89743, - 1582 - ], - [ - 424752, - 89121, - 1622 - ], - [ - 424784, - 89456, - 1446 - ], - [ - 422572, - 89539, - 1082 - ], - [ - 423240, - 89972, - 1549 - ], - [ - 423770, - 88367, - 1415 - ], - [ - 423800, - 88709, - 1199 - ], - [ - 415135, - 96745, - 1067 - ], - [ - 414491, - 97599, - 1148 - ], - [ - 426823, - 85819, - 1336 - ], - [ - 426483, - 85886, - 1276 - ], - [ - 425977, - 87022, - 1410 - ], - [ - 426280, - 86966, - 1257 - ], - [ - 426974, - 86864, - 972 - ], - [ - 425659, - 86795, - 1275 - ], - [ - 425472, - 86584, - 4125 - ], - [ - 425936, - 86702, - 1429 - ], - [ - 421226, - 91070, - 1157 - ], - [ - 420426, - 91701, - 1226 - ], - [ - 414863, - 97158, - 1123 - ], - [ - 424190, - 88261, - 1334 - ], - [ - 424398, - 89921, - 1161 - ], - [ - 424033, - 90393, - 1328 - ], - [ - 414957, - 97827, - 1186 - ], - [ - 427020, - 85840, - 1002 - ], - [ - 414435, - 98555, - 932 - ], - [ - 422790, - 90865, - 1699 - ], - [ - 418601, - 93447, - 1041 - ], - [ - 418934, - 93357, - 1045 - ], - [ - 425887, - 88478, - 1347 - ], - [ - 425322, - 86914, - 1330 - ], - [ - 425816, - 87823, - 1567 - ], - [ - 425362, - 87272, - 1232 - ], - [ - 425699, - 87122, - 1210 - ], - [ - 425423, - 87590, - 1494 - ], - [ - 424943, - 87347, - 1183 - ], - [ - 419574, - 93755, - 1278 - ], - [ - 421013, - 92883, - 1326 - ], - [ - 425130, - 88698, - 1296 - ], - [ - 423598, - 90164, - 1373 - ], - [ - 423652, - 90522, - 1457 - ], - [ - 423104, - 91094, - 1335 - ], - [ - 417777, - 94036, - 991 - ], - [ - 423080, - 90774, - 1597 - ], - [ - 423029, - 90439, - 1504 - ], - [ - 419216, - 93549, - 1055 - ], - [ - 426838, - 87410, - 932 - ], - [ - 423338, - 90986, - 1017 - ], - [ - 426166, - 88669, - 922 - ], - [ - 422145, - 91477, - 1417 - ], - [ - 421841, - 92269, - 1113 - ], - [ - 421810, - 91946, - 1274 - ], - [ - 423310, - 90648, - 1263 - ], - [ - 419603, - 94100, - 1041 - ], - [ - 425536, - 88598, - 1212 - ], - [ - 425168, - 89041, - 1187 - ], - [ - 420973, - 92550, - 1384 - ], - [ - 419083, - 94312, - 1360 - ], - [ - 417969, - 95363, - 1223 - ], - [ - 415222, - 97388, - 1097 - ], - [ - 415277, - 97743, - 1208 - ], - [ - 419290, - 93908, - 1433 - ], - [ - 419309, - 94227, - 1106 - ], - [ - 418228, - 93883, - 1023 - ], - [ - 421688, - 90941, - 1436 - ], - [ - 425196, - 89372, - 958 - ], - [ - 421723, - 91273, - 1314 - ], - [ - 420914, - 92237, - 1134 - ], - [ - 420869, - 91905, - 1126 - ], - [ - 245768, - 99484, - 471 - ], - [ - 246666, - 99141, - 392 - ], - [ - 245447, - 99958, - 412 - ], - [ - 245131, - 98838, - 497 - ], - [ - 244621, - 98695, - 362 - ], - [ - 245763, - 98820, - 747 - ], - [ - 246160, - 98696, - 603 - ], - [ - 246154, - 98819, - 7036 - ], - [ - 246328, - 99088, - 462 - ], - [ - 246036, - 98955, - 598 - ], - [ - 246069, - 99274, - 471 - ], - [ - 245849, - 97892, - 352 - ], - [ - 245493, - 98628, - 534 - ], - [ - 245530, - 98743, - 4575 - ], - [ - 245469, - 99090, - 597 - ], - [ - 245768, - 99173, - 1050 - ], - [ - 389900, - 81946, - 1235 - ], - [ - 392120, - 83508, - 818 - ], - [ - 388959, - 81299, - 822 - ], - [ - 389391, - 81115, - 840 - ], - [ - 390186, - 79558, - 802 - ], - [ - 394297, - 83156, - 981 - ], - [ - 389434, - 81446, - 834 - ], - [ - 391143, - 82231, - 1010 - ], - [ - 391208, - 82569, - 1289 - ], - [ - 390792, - 82401, - 888 - ], - [ - 394844, - 82840, - 822 - ], - [ - 393617, - 84581, - 862 - ], - [ - 390215, - 82097, - 954 - ], - [ - 390743, - 82059, - 841 - ], - [ - 392077, - 83176, - 824 - ], - [ - 392030, - 82828, - 818 - ], - [ - 393083, - 83810, - 1011 - ], - [ - 389051, - 81287, - 1179 - ], - [ - 391653, - 83024, - 814 - ], - [ - 391609, - 82689, - 824 - ], - [ - 389825, - 81603, - 816 - ], - [ - 403124, - 88900, - 759 - ], - [ - 403090, - 90362, - 815 - ], - [ - 401859, - 89775, - 812 - ], - [ - 403751, - 90915, - 5816 - ], - [ - 403644, - 91026, - 7373 - ], - [ - 403588, - 90562, - 4176 - ], - [ - 404718, - 91806, - 782 - ], - [ - 405450, - 89958, - 767 - ], - [ - 405527, - 90290, - 1245 - ], - [ - 405040, - 90404, - 793 - ], - [ - 404228, - 91358, - 783 - ], - [ - 404180, - 91102, - 6717 - ], - [ - 404187, - 91021, - 824 - ], - [ - 404155, - 90705, - 974 - ], - [ - 404647, - 90869, - 785 - ], - [ - 404719, - 91229, - 1118 - ], - [ - 404015, - 90794, - 4971 - ], - [ - 403681, - 90469, - 909 - ], - [ - 405903, - 89821, - 1222 - ], - [ - 406137, - 89809, - 792 - ], - [ - 405154, - 91074, - 1144 - ], - [ - 403881, - 88678, - 908 - ], - [ - 403912, - 89000, - 732 - ], - [ - 405112, - 90746, - 1178 - ], - [ - 404050, - 90002, - 807 - ], - [ - 403582, - 89793, - 768 - ], - [ - 404012, - 89673, - 883 - ], - [ - 403278, - 87778, - 822 - ], - [ - 405404, - 89615, - 764 - ], - [ - 405537, - 90609, - 779 - ], - [ - 344126, - 36413, - 1504 - ], - [ - 343680, - 36349, - 1506 - ], - [ - 344054, - 36035, - 1342 - ], - [ - 343277, - 36537, - 1522 - ], - [ - 342773, - 37263, - 1502 - ], - [ - 342597, - 36361, - 1402 - ], - [ - 343161, - 36243, - 1426 - ], - [ - 343491, - 36283, - 4942 - ], - [ - 343439, - 36471, - 3874 - ], - [ - 343676, - 36491, - 1475 - ], - [ - 344100, - 36831, - 1549 - ], - [ - 344304, - 36909, - 1362 - ], - [ - 384794, - 37380, - 362 - ], - [ - 384972, - 37459, - 511 - ], - [ - 384540, - 38549, - 292 - ], - [ - 384109, - 37139, - 252 - ], - [ - 385000, - 37093, - 375 - ], - [ - 384899, - 37227, - 2120 - ], - [ - 384712, - 37213, - 366 - ], - [ - 385912, - 38128, - 322 - ], - [ - 385131, - 37203, - 375 - ], - [ - 385483, - 36720, - 262 - ], - [ - 393207, - 84820, - 856 - ], - [ - 391746, - 83725, - 822 - ], - [ - 394708, - 81825, - 841 - ], - [ - 395118, - 82028, - 828 - ], - [ - 394783, - 82152, - 1286 - ], - [ - 394064, - 81467, - 831 - ], - [ - 394011, - 85457, - 868 - ], - [ - 393624, - 84621, - 1318 - ], - [ - 394321, - 85303, - 1355 - ], - [ - 388417, - 79509, - 788 - ], - [ - 387532, - 79522, - 791 - ], - [ - 387925, - 79038, - 849 - ], - [ - 383284, - 84555, - 766 - ], - [ - 384083, - 84302, - 784 - ], - [ - 382998, - 84850, - 782 - ], - [ - 388279, - 78477, - 780 - ], - [ - 388518, - 78269, - 4539 - ], - [ - 388623, - 78285, - 759 - ], - [ - 391268, - 83259, - 848 - ], - [ - 390920, - 90681, - 862 - ], - [ - 384474, - 83840, - 815 - ], - [ - 389153, - 79097, - 1248 - ], - [ - 389077, - 78768, - 785 - ], - [ - 389459, - 78594, - 1258 - ], - [ - 386255, - 80580, - 818 - ], - [ - 384701, - 82693, - 758 - ], - [ - 390019, - 78872, - 790 - ], - [ - 389516, - 79260, - 812 - ], - [ - 387877, - 78680, - 836 - ], - [ - 387838, - 79014, - 6070 - ], - [ - 395195, - 82368, - 1282 - ], - [ - 394799, - 82503, - 859 - ], - [ - 394507, - 84842, - 798 - ], - [ - 392268, - 80958, - 1249 - ], - [ - 388595, - 80838, - 815 - ], - [ - 388673, - 81189, - 1280 - ], - [ - 386034, - 81083, - 816 - ], - [ - 386085, - 81410, - 914 - ], - [ - 386287, - 80829, - 4858 - ], - [ - 386292, - 80899, - 769 - ], - [ - 386078, - 80999, - 5900 - ], - [ - 386526, - 80438, - 766 - ], - [ - 387712, - 80876, - 796 - ], - [ - 385139, - 82852, - 758 - ], - [ - 389523, - 82126, - 824 - ], - [ - 386082, - 81304, - 5380 - ], - [ - 384320, - 83381, - 5838 - ], - [ - 384700, - 83267, - 5075 - ], - [ - 384535, - 83545, - 2229 - ], - [ - 384364, - 83710, - 5843 - ], - [ - 384041, - 83967, - 801 - ], - [ - 383893, - 84148, - 4693 - ], - [ - 388580, - 77953, - 768 - ], - [ - 389377, - 78225, - 792 - ], - [ - 384743, - 83011, - 768 - ], - [ - 388684, - 81516, - 822 - ], - [ - 389537, - 77070, - 774 - ], - [ - 394708, - 83991, - 944 - ], - [ - 394787, - 84667, - 792 - ], - [ - 394057, - 85801, - 874 - ], - [ - 390647, - 78556, - 866 - ], - [ - 388850, - 79953, - 835 - ], - [ - 388551, - 80509, - 814 - ], - [ - 388541, - 80203, - 1237 - ], - [ - 392169, - 83852, - 851 - ], - [ - 392669, - 83987, - 1249 - ], - [ - 391698, - 83367, - 820 - ], - [ - 389104, - 81644, - 1267 - ], - [ - 388054, - 80028, - 811 - ], - [ - 394469, - 81994, - 1281 - ], - [ - 392584, - 80120, - 840 - ], - [ - 392719, - 81132, - 847 - ], - [ - 392197, - 80631, - 855 - ], - [ - 395620, - 82559, - 794 - ], - [ - 395058, - 84503, - 796 - ], - [ - 394567, - 85178, - 1011 - ], - [ - 389508, - 81772, - 1257 - ], - [ - 393196, - 84489, - 1328 - ], - [ - 390869, - 82764, - 1287 - ], - [ - 389938, - 82263, - 1175 - ], - [ - 389971, - 78514, - 779 - ], - [ - 390251, - 78369, - 780 - ], - [ - 391707, - 80159, - 1234 - ], - [ - 392182, - 80309, - 1249 - ], - [ - 391718, - 80472, - 807 - ], - [ - 394177, - 82148, - 1157 - ], - [ - 393844, - 81968, - 833 - ], - [ - 391540, - 79145, - 781 - ], - [ - 392092, - 79632, - 1249 - ], - [ - 391251, - 79987, - 811 - ], - [ - 392538, - 79775, - 838 - ], - [ - 389666, - 78033, - 799 - ], - [ - 389842, - 77551, - 770 - ], - [ - 390195, - 77702, - 1233 - ], - [ - 390598, - 78193, - 849 - ], - [ - 391061, - 78331, - 1228 - ], - [ - 389964, - 78209, - 1253 - ], - [ - 391495, - 78802, - 782 - ], - [ - 391997, - 78951, - 1164 - ], - [ - 392107, - 79979, - 813 - ], - [ - 390215, - 78053, - 856 - ], - [ - 390579, - 77862, - 1213 - ], - [ - 392020, - 79280, - 897 - ], - [ - 392493, - 79443, - 831 - ], - [ - 391483, - 78482, - 1223 - ], - [ - 388178, - 80714, - 1272 - ], - [ - 389758, - 78713, - 829 - ], - [ - 388757, - 79273, - 786 - ], - [ - 388834, - 79620, - 1235 - ], - [ - 389174, - 79423, - 933 - ], - [ - 393520, - 81769, - 830 - ], - [ - 393189, - 81595, - 830 - ], - [ - 393798, - 81611, - 837 - ], - [ - 394478, - 82325, - 809 - ], - [ - 389797, - 77193, - 786 - ], - [ - 336935, - 93050, - 726 - ], - [ - 337321, - 92968, - 663 - ], - [ - 337085, - 92697, - 3503 - ], - [ - 337270, - 92609, - 617 - ], - [ - 337033, - 92381, - 3362 - ], - [ - 337227, - 92291, - 605 - ], - [ - 336632, - 92478, - 3248 - ], - [ - 336487, - 92812, - 582 - ], - [ - 395527, - 71699, - 725 - ], - [ - 393356, - 70164, - 882 - ], - [ - 394143, - 71445, - 753 - ], - [ - 393497, - 72730, - 763 - ], - [ - 393277, - 71053, - 786 - ], - [ - 392586, - 74716, - 822 - ], - [ - 392571, - 74394, - 1213 - ], - [ - 393079, - 74050, - 783 - ], - [ - 396377, - 78079, - 789 - ], - [ - 397525, - 79046, - 1152 - ], - [ - 397790, - 79262, - 782 - ], - [ - 393391, - 76415, - 773 - ], - [ - 393313, - 74978, - 782 - ], - [ - 394354, - 76300, - 764 - ], - [ - 396033, - 72240, - 734 - ], - [ - 395871, - 72203, - 4654 - ], - [ - 396708, - 72984, - 938 - ], - [ - 396512, - 73121, - 5873 - ], - [ - 396491, - 73114, - 773 - ], - [ - 391691, - 73411, - 790 - ], - [ - 391612, - 73446, - 6032 - ], - [ - 399565, - 77247, - 1028 - ], - [ - 399030, - 76719, - 1220 - ], - [ - 399205, - 76440, - 782 - ], - [ - 397919, - 78250, - 772 - ], - [ - 396873, - 78293, - 1281 - ], - [ - 397701, - 78588, - 780 - ], - [ - 399040, - 77022, - 777 - ], - [ - 398662, - 77493, - 909 - ], - [ - 397294, - 73082, - 753 - ], - [ - 396940, - 72843, - 767 - ], - [ - 396820, - 72637, - 6335 - ], - [ - 393419, - 70515, - 3783 - ], - [ - 393321, - 70772, - 6031 - ], - [ - 392119, - 73535, - 784 - ], - [ - 397377, - 73395, - 5861 - ], - [ - 397336, - 73399, - 738 - ], - [ - 394599, - 73168, - 762 - ], - [ - 395616, - 72375, - 725 - ], - [ - 396741, - 73335, - 745 - ], - [ - 397744, - 73606, - 723 - ], - [ - 396777, - 72943, - 5153 - ], - [ - 392029, - 72862, - 771 - ], - [ - 391935, - 73214, - 4601 - ], - [ - 391888, - 72857, - 4615 - ], - [ - 391891, - 72566, - 5207 - ], - [ - 393637, - 70955, - 6011 - ], - [ - 393640, - 70911, - 761 - ], - [ - 396724, - 72696, - 1702 - ], - [ - 397703, - 73278, - 756 - ], - [ - 391980, - 72501, - 754 - ], - [ - 392227, - 72030, - 751 - ], - [ - 400110, - 74900, - 834 - ], - [ - 395037, - 71517, - 734 - ], - [ - 392723, - 71370, - 764 - ], - [ - 393979, - 73276, - 1132 - ], - [ - 392992, - 73403, - 766 - ], - [ - 392074, - 73177, - 813 - ], - [ - 392774, - 73880, - 842 - ], - [ - 393573, - 73104, - 1135 - ], - [ - 393324, - 73608, - 804 - ], - [ - 394000, - 73618, - 793 - ], - [ - 394928, - 77182, - 1098 - ], - [ - 399999, - 77094, - 782 - ], - [ - 392493, - 74038, - 775 - ], - [ - 392253, - 74532, - 813 - ], - [ - 391481, - 75276, - 770 - ], - [ - 391598, - 75937, - 1187 - ], - [ - 392894, - 77062, - 777 - ], - [ - 392114, - 76431, - 1111 - ], - [ - 392538, - 76566, - 1034 - ], - [ - 394431, - 76658, - 1188 - ], - [ - 391978, - 75421, - 1080 - ], - [ - 392005, - 75769, - 816 - ], - [ - 393720, - 76604, - 795 - ], - [ - 393437, - 76755, - 776 - ], - [ - 392855, - 76744, - 828 - ], - [ - 399083, - 77354, - 778 - ], - [ - 399596, - 77558, - 873 - ], - [ - 397475, - 78725, - 1036 - ], - [ - 393589, - 73404, - 789 - ], - [ - 394450, - 77003, - 808 - ], - [ - 393792, - 76953, - 1157 - ], - [ - 393856, - 77620, - 818 - ], - [ - 394954, - 77535, - 814 - ], - [ - 392323, - 74879, - 1155 - ], - [ - 393304, - 73264, - 1161 - ], - [ - 393558, - 77448, - 1204 - ], - [ - 393814, - 77289, - 834 - ], - [ - 393484, - 77091, - 824 - ], - [ - 392484, - 76241, - 870 - ], - [ - 392342, - 75212, - 802 - ], - [ - 393248, - 77273, - 1188 - ], - [ - 397229, - 78484, - 1170 - ], - [ - 397411, - 78389, - 755 - ], - [ - 393067, - 73751, - 1177 - ], - [ - 399647, - 77890, - 974 - ], - [ - 399130, - 77699, - 796 - ], - [ - 383557, - 83744, - 724 - ], - [ - 385701, - 80568, - 1352 - ], - [ - 385938, - 80379, - 753 - ], - [ - 388102, - 77151, - 752 - ], - [ - 388444, - 76926, - 767 - ], - [ - 387737, - 77681, - 728 - ], - [ - 387636, - 77981, - 5151 - ], - [ - 388375, - 76260, - 1036 - ], - [ - 383542, - 83419, - 1114 - ], - [ - 383499, - 83076, - 1146 - ], - [ - 384285, - 82184, - 1230 - ], - [ - 387348, - 78170, - 720 - ], - [ - 387305, - 77512, - 1358 - ], - [ - 386995, - 78726, - 909 - ], - [ - 386694, - 79224, - 748 - ], - [ - 382760, - 84433, - 1159 - ], - [ - 382671, - 84619, - 782 - ], - [ - 384204, - 81810, - 798 - ], - [ - 384564, - 81378, - 1281 - ], - [ - 386694, - 78899, - 1350 - ], - [ - 386366, - 79092, - 1045 - ], - [ - 386651, - 78570, - 1362 - ], - [ - 386436, - 79446, - 1373 - ], - [ - 385610, - 79870, - 1365 - ], - [ - 385661, - 80230, - 1415 - ], - [ - 386204, - 79920, - 1331 - ], - [ - 388053, - 76488, - 1313 - ], - [ - 386986, - 78406, - 1383 - ], - [ - 387682, - 77044, - 1142 - ], - [ - 387732, - 77361, - 1256 - ], - [ - 388093, - 76822, - 1246 - ], - [ - 213699, - 104548, - 650 - ], - [ - 213478, - 104504, - 622 - ], - [ - 213858, - 104221, - 8065 - ], - [ - 213395, - 104563, - 9221 - ], - [ - 213521, - 104820, - 601 - ], - [ - 213164, - 104677, - 562 - ], - [ - 214577, - 105436, - 9640 - ], - [ - 215127, - 105110, - 3122 - ], - [ - 213929, - 105898, - 532 - ], - [ - 214663, - 105296, - 5684 - ], - [ - 214863, - 105188, - 4691 - ], - [ - 214329, - 105355, - 2479 - ], - [ - 214076, - 105339, - 8476 - ], - [ - 214326, - 105263, - 9349 - ], - [ - 213855, - 104584, - 786 - ], - [ - 214356, - 103886, - 532 - ], - [ - 213568, - 105150, - 612 - ], - [ - 213633, - 104937, - 644 - ], - [ - 214005, - 105220, - 641 - ], - [ - 214792, - 104887, - 636 - ], - [ - 213322, - 104752, - 8707 - ], - [ - 214337, - 105473, - 627 - ], - [ - 214107, - 105652, - 8524 - ], - [ - 214031, - 105563, - 630 - ], - [ - 214260, - 105010, - 681 - ], - [ - 214337, - 105027, - 739 - ], - [ - 214464, - 105375, - 3836 - ], - [ - 213527, - 104890, - 9001 - ], - [ - 214486, - 105186, - 7260 - ], - [ - 214444, - 105174, - 7769 - ], - [ - 214432, - 105082, - 8309 - ], - [ - 214641, - 105087, - 3574 - ], - [ - 214481, - 105340, - 4653 - ], - [ - 214530, - 105332, - 5412 - ], - [ - 214699, - 105082, - 753 - ], - [ - 214716, - 105103, - 4242 - ], - [ - 214553, - 105301, - 6208 - ], - [ - 214647, - 105253, - 898 - ], - [ - 215127, - 105110, - 492 - ], - [ - 282059, - 85531, - 922 - ], - [ - 281109, - 86780, - 602 - ], - [ - 282073, - 85467, - 752 - ], - [ - 282162, - 86241, - 1026 - ], - [ - 281929, - 86339, - 980 - ], - [ - 281908, - 86261, - 5187 - ], - [ - 282278, - 87215, - 828 - ], - [ - 282143, - 86971, - 7080 - ], - [ - 282243, - 86890, - 948 - ], - [ - 282009, - 87015, - 846 - ], - [ - 281854, - 86569, - 3910 - ], - [ - 282436, - 87760, - 622 - ], - [ - 283370, - 86470, - 762 - ], - [ - 281876, - 86016, - 859 - ], - [ - 282107, - 85891, - 916 - ], - [ - 281981, - 85964, - 6716 - ], - [ - 281974, - 86674, - 991 - ], - [ - 282244, - 86586, - 1503 - ], - [ - 282493, - 86434, - 1033 - ], - [ - 269192, - 177392, - 894 - ], - [ - 268952, - 177841, - 892 - ], - [ - 268906, - 177839, - 892 - ], - [ - 268996, - 177840, - 892 - ], - [ - 269041, - 177835, - 892 - ], - [ - 269084, - 177828, - 892 - ], - [ - 269128, - 177817, - 892 - ], - [ - 269170, - 177804, - 882 - ], - [ - 269211, - 177788, - 882 - ], - [ - 269251, - 177769, - 882 - ], - [ - 269290, - 177747, - 872 - ], - [ - 268988, - 177071, - 3897 - ], - [ - 269146, - 177049, - 908 - ], - [ - 269363, - 177696, - 862 - ], - [ - 269327, - 177722, - 872 - ], - [ - 269396, - 177666, - 872 - ], - [ - 269427, - 177635, - 872 - ], - [ - 269457, - 177602, - 872 - ], - [ - 269483, - 177566, - 862 - ], - [ - 269508, - 177529, - 852 - ], - [ - 269530, - 177490, - 862 - ], - [ - 269549, - 177450, - 862 - ], - [ - 269565, - 177409, - 852 - ], - [ - 269578, - 177367, - 852 - ], - [ - 269589, - 177323, - 852 - ], - [ - 269596, - 177280, - 852 - ], - [ - 268861, - 177835, - 892 - ], - [ - 269602, - 177191, - 842 - ], - [ - 269601, - 177235, - 852 - ], - [ - 269600, - 177145, - 852 - ], - [ - 269596, - 177100, - 852 - ], - [ - 269588, - 177055, - 852 - ], - [ - 269097, - 176699, - 879 - ], - [ - 268741, - 176882, - 901 - ], - [ - 269562, - 176967, - 852 - ], - [ - 269545, - 176925, - 852 - ], - [ - 269525, - 176884, - 852 - ], - [ - 269502, - 176844, - 802 - ], - [ - 269476, - 176806, - 802 - ], - [ - 269448, - 176771, - 802 - ], - [ - 269417, - 176737, - 802 - ], - [ - 269384, - 176705, - 802 - ], - [ - 269349, - 176676, - 812 - ], - [ - 269312, - 176649, - 812 - ], - [ - 269273, - 176626, - 812 - ], - [ - 269232, - 176604, - 802 - ], - [ - 269190, - 176586, - 802 - ], - [ - 269147, - 176571, - 802 - ], - [ - 269103, - 176559, - 792 - ], - [ - 269058, - 176550, - 802 - ], - [ - 269013, - 176544, - 802 - ], - [ - 268876, - 176545, - 832 - ], - [ - 268967, - 176541, - 812 - ], - [ - 268922, - 176542, - 832 - ], - [ - 268816, - 177827, - 892 - ], - [ - 268786, - 176562, - 822 - ], - [ - 268831, - 176552, - 822 - ], - [ - 268742, - 176576, - 812 - ], - [ - 268700, - 176592, - 812 - ], - [ - 268658, - 176611, - 822 - ], - [ - 268618, - 176633, - 822 - ], - [ - 268580, - 176658, - 832 - ], - [ - 268646, - 177302, - 3266 - ], - [ - 268509, - 176716, - 832 - ], - [ - 268477, - 176748, - 822 - ], - [ - 268447, - 176782, - 832 - ], - [ - 268419, - 176819, - 832 - ], - [ - 268436, - 177056, - 873 - ], - [ - 268394, - 176857, - 842 - ], - [ - 268372, - 176897, - 842 - ], - [ - 268353, - 176939, - 842 - ], - [ - 268323, - 177025, - 842 - ], - [ - 268337, - 176981, - 842 - ], - [ - 268313, - 177070, - 842 - ], - [ - 268306, - 177115, - 852 - ], - [ - 268303, - 177161, - 872 - ], - [ - 268483, - 177374, - 941 - ], - [ - 268302, - 177206, - 872 - ], - [ - 268305, - 177252, - 872 - ], - [ - 268311, - 177297, - 872 - ], - [ - 268320, - 177342, - 872 - ], - [ - 268332, - 177386, - 892 - ], - [ - 268387, - 177512, - 892 - ], - [ - 268410, - 177551, - 892 - ], - [ - 268437, - 177588, - 892 - ], - [ - 268466, - 177623, - 892 - ], - [ - 268498, - 177656, - 892 - ], - [ - 268532, - 177687, - 892 - ], - [ - 268567, - 177715, - 892 - ], - [ - 268605, - 177741, - 892 - ], - [ - 268645, - 177764, - 892 - ], - [ - 268686, - 177784, - 892 - ], - [ - 268728, - 177801, - 892 - ], - [ - 268772, - 177815, - 892 - ], - [ - 269576, - 177011, - 852 - ], - [ - 268543, - 176686, - 832 - ], - [ - 268365, - 177471, - 892 - ], - [ - 268347, - 177429, - 892 - ], - [ - 399065, - 84478, - 832 - ], - [ - 401982, - 86427, - 822 - ], - [ - 401064, - 86596, - 772 - ], - [ - 398128, - 85214, - 1304 - ], - [ - 397490, - 84708, - 842 - ], - [ - 398428, - 85375, - 832 - ], - [ - 397119, - 86969, - 1229 - ], - [ - 399014, - 88338, - 1107 - ], - [ - 396245, - 86461, - 842 - ], - [ - 399295, - 88189, - 750 - ], - [ - 400042, - 89159, - 812 - ], - [ - 400119, - 88573, - 753 - ], - [ - 401287, - 86846, - 736 - ], - [ - 400930, - 87639, - 870 - ], - [ - 397151, - 86307, - 842 - ], - [ - 397854, - 85695, - 1311 - ], - [ - 397644, - 85614, - 842 - ], - [ - 399229, - 85369, - 802 - ], - [ - 398582, - 86281, - 792 - ], - [ - 401371, - 87166, - 1327 - ], - [ - 398140, - 85539, - 860 - ], - [ - 398177, - 85853, - 809 - ], - [ - 397730, - 85012, - 838 - ], - [ - 397579, - 87145, - 811 - ], - [ - 399888, - 88253, - 772 - ], - [ - 401700, - 86667, - 1283 - ], - [ - 400540, - 88139, - 1171 - ], - [ - 400077, - 88250, - 767 - ], - [ - 398453, - 87885, - 899 - ], - [ - 360745, - 106830, - 914 - ], - [ - 370767, - 95342, - 798 - ], - [ - 371960, - 97073, - 1014 - ], - [ - 363397, - 106192, - 861 - ], - [ - 365848, - 103777, - 839 - ], - [ - 363828, - 105856, - 826 - ], - [ - 369468, - 100279, - 780 - ], - [ - 369515, - 100607, - 838 - ], - [ - 369785, - 100262, - 1126 - ], - [ - 363140, - 107192, - 953 - ], - [ - 364301, - 105518, - 965 - ], - [ - 369810, - 100627, - 837 - ], - [ - 368385, - 101448, - 1250 - ], - [ - 368397, - 101815, - 731 - ], - [ - 367956, - 101806, - 1033 - ], - [ - 369272, - 100886, - 1227 - ], - [ - 368963, - 100842, - 1096 - ], - [ - 362309, - 107151, - 966 - ], - [ - 362394, - 107827, - 909 - ], - [ - 362064, - 107469, - 1026 - ], - [ - 369558, - 100927, - 853 - ], - [ - 365678, - 104122, - 1086 - ], - [ - 365896, - 104137, - 845 - ], - [ - 367104, - 102805, - 936 - ], - [ - 367136, - 103147, - 762 - ], - [ - 366441, - 103491, - 1056 - ], - [ - 368665, - 101151, - 787 - ], - [ - 368992, - 101210, - 822 - ], - [ - 365460, - 104784, - 1039 - ], - [ - 365936, - 104480, - 779 - ], - [ - 365111, - 105141, - 775 - ], - [ - 368032, - 102461, - 887 - ], - [ - 370167, - 100310, - 1196 - ], - [ - 372713, - 97751, - 1067 - ], - [ - 372137, - 98429, - 988 - ], - [ - 371699, - 98731, - 805 - ], - [ - 372438, - 97741, - 989 - ], - [ - 372469, - 98063, - 812 - ], - [ - 371910, - 96731, - 951 - ], - [ - 371384, - 96371, - 768 - ], - [ - 371209, - 98714, - 768 - ], - [ - 370868, - 99366, - 809 - ], - [ - 370496, - 99703, - 1134 - ], - [ - 366190, - 104131, - 972 - ], - [ - 366470, - 103829, - 831 - ], - [ - 368719, - 101459, - 967 - ], - [ - 363092, - 106874, - 874 - ], - [ - 360786, - 107151, - 883 - ], - [ - 367974, - 102130, - 691 - ], - [ - 367541, - 102455, - 1112 - ], - [ - 364685, - 105128, - 841 - ], - [ - 366143, - 103773, - 988 - ], - [ - 370110, - 99998, - 982 - ], - [ - 362853, - 107189, - 818 - ], - [ - 363058, - 106532, - 1025 - ], - [ - 210199, - 122073, - 5755 - ], - [ - 210118, - 122142, - 5683 - ], - [ - 210094, - 122011, - 822 - ], - [ - 210302, - 121824, - 1252 - ], - [ - 210332, - 121958, - 4626 - ], - [ - 210264, - 121948, - 3955 - ], - [ - 210623, - 120937, - 402 - ], - [ - 210101, - 121391, - 6934 - ], - [ - 209869, - 121533, - 645 - ], - [ - 210451, - 122563, - 864 - ], - [ - 211422, - 122158, - 452 - ], - [ - 210200, - 122974, - 492 - ], - [ - 210462, - 121183, - 6373 - ], - [ - 211296, - 122109, - 512 - ], - [ - 210402, - 122205, - 6114 - ], - [ - 210310, - 122150, - 1215 - ], - [ - 210415, - 121984, - 5234 - ], - [ - 211335, - 122111, - 5339 - ], - [ - 210851, - 121699, - 4802 - ], - [ - 210888, - 121358, - 525 - ], - [ - 210204, - 121436, - 694 - ], - [ - 210491, - 121233, - 648 - ], - [ - 210665, - 121314, - 678 - ], - [ - 210652, - 121633, - 3022 - ], - [ - 210465, - 121569, - 5654 - ], - [ - 210810, - 121379, - 4854 - ], - [ - 210937, - 122029, - 5369 - ], - [ - 210855, - 121922, - 831 - ], - [ - 210475, - 121629, - 906 - ], - [ - 210354, - 121764, - 2871 - ], - [ - 210250, - 121727, - 2204 - ], - [ - 210470, - 121913, - 5060 - ], - [ - 210360, - 122468, - 6224 - ], - [ - 210628, - 122192, - 6723 - ], - [ - 210073, - 121884, - 2627 - ], - [ - 209951, - 121902, - 5490 - ], - [ - 210145, - 122341, - 696 - ], - [ - 210171, - 122352, - 5775 - ], - [ - 210196, - 122686, - 588 - ], - [ - 210145, - 122180, - 3352 - ], - [ - 209478, - 121842, - 597 - ], - [ - 210194, - 122174, - 4050 - ], - [ - 209811, - 121802, - 707 - ], - [ - 210043, - 121822, - 5259 - ], - [ - 210142, - 121731, - 786 - ], - [ - 210142, - 121891, - 3367 - ], - [ - 209394, - 121742, - 452 - ], - [ - 210779, - 122044, - 3566 - ], - [ - 210614, - 121652, - 2251 - ], - [ - 210558, - 122008, - 6599 - ], - [ - 210469, - 121982, - 5943 - ], - [ - 210414, - 121768, - 3541 - ], - [ - 401742, - 78282, - 792 - ], - [ - 401565, - 80726, - 903 - ], - [ - 400919, - 81569, - 812 - ], - [ - 401590, - 80635, - 802 - ], - [ - 402662, - 79286, - 1265 - ], - [ - 403695, - 80027, - 1229 - ], - [ - 404765, - 81454, - 787 - ], - [ - 405315, - 80849, - 792 - ], - [ - 403477, - 83407, - 832 - ], - [ - 404708, - 80784, - 1237 - ], - [ - 405122, - 80984, - 1233 - ], - [ - 401791, - 80294, - 1264 - ], - [ - 401178, - 80160, - 819 - ], - [ - 401468, - 80045, - 795 - ], - [ - 400575, - 79906, - 812 - ], - [ - 401551, - 80415, - 1292 - ], - [ - 402159, - 79039, - 796 - ], - [ - 404211, - 80559, - 856 - ], - [ - 402118, - 78722, - 805 - ], - [ - 398222, - 86213, - 771 - ], - [ - 397484, - 86169, - 1292 - ], - [ - 397859, - 86004, - 807 - ], - [ - 367571, - 74496, - 596 - ], - [ - 367724, - 73938, - 3732 - ], - [ - 367952, - 74137, - 564 - ], - [ - 367742, - 74244, - 3412 - ], - [ - 216549, - 118545, - 502 - ], - [ - 216624, - 118345, - 551 - ], - [ - 217042, - 118167, - 630 - ], - [ - 216112, - 118437, - 530 - ], - [ - 216271, - 118087, - 8264 - ], - [ - 216244, - 118431, - 562 - ], - [ - 215895, - 118165, - 561 - ], - [ - 216332, - 117629, - 614 - ], - [ - 216089, - 117800, - 6307 - ], - [ - 216006, - 117511, - 5712 - ], - [ - 216475, - 117515, - 7306 - ], - [ - 216466, - 117858, - 681 - ], - [ - 216517, - 117875, - 7196 - ], - [ - 216701, - 117910, - 606 - ], - [ - 216340, - 117878, - 4694 - ], - [ - 216881, - 117646, - 516 - ], - [ - 217370, - 118275, - 422 - ], - [ - 216259, - 118063, - 627 - ], - [ - 216348, - 117990, - 2963 - ], - [ - 216824, - 118004, - 5344 - ], - [ - 216159, - 118799, - 495 - ], - [ - 216486, - 118597, - 848 - ], - [ - 216126, - 119072, - 442 - ], - [ - 215934, - 117820, - 567 - ], - [ - 216456, - 117195, - 537 - ], - [ - 216411, - 117534, - 538 - ], - [ - 216808, - 117462, - 538 - ], - [ - 215331, - 117856, - 382 - ], - [ - 215817, - 118419, - 6261 - ], - [ - 215975, - 117450, - 532 - ], - [ - 216567, - 117047, - 372 - ], - [ - 215931, - 118546, - 551 - ], - [ - 216099, - 118552, - 5013 - ], - [ - 402764, - 87662, - 1245 - ], - [ - 401092, - 89905, - 832 - ], - [ - 403148, - 87011, - 822 - ], - [ - 402020, - 89363, - 767 - ], - [ - 401676, - 89522, - 1230 - ], - [ - 403316, - 91148, - 6179 - ], - [ - 403695, - 91365, - 7450 - ], - [ - 403469, - 91460, - 7767 - ], - [ - 404247, - 87846, - 787 - ], - [ - 405784, - 89149, - 789 - ], - [ - 403652, - 91695, - 6238 - ], - [ - 404848, - 92573, - 772 - ], - [ - 406904, - 89679, - 782 - ], - [ - 402437, - 90688, - 4175 - ], - [ - 402846, - 90486, - 784 - ], - [ - 402628, - 90912, - 1211 - ], - [ - 403879, - 91581, - 6368 - ], - [ - 404285, - 91671, - 998 - ], - [ - 404196, - 91772, - 5694 - ], - [ - 403864, - 91225, - 6816 - ], - [ - 402972, - 90588, - 6693 - ], - [ - 403087, - 91226, - 7133 - ], - [ - 404263, - 92125, - 5980 - ], - [ - 403805, - 91477, - 770 - ], - [ - 401271, - 89998, - 1262 - ], - [ - 403142, - 90823, - 4325 - ], - [ - 404344, - 92030, - 1155 - ], - [ - 402512, - 90261, - 786 - ], - [ - 402159, - 90360, - 855 - ], - [ - 401753, - 90166, - 1106 - ], - [ - 406235, - 89384, - 1245 - ], - [ - 406499, - 89602, - 801 - ], - [ - 402984, - 87584, - 1241 - ], - [ - 402992, - 87898, - 780 - ], - [ - 402568, - 88131, - 1252 - ], - [ - 403253, - 87095, - 1167 - ], - [ - 403274, - 87452, - 798 - ], - [ - 402581, - 88487, - 764 - ], - [ - 401685, - 89837, - 760 - ], - [ - 402799, - 88007, - 1094 - ], - [ - 313061, - 45423, - 662 - ], - [ - 313690, - 46863, - 632 - ], - [ - 313067, - 47103, - 722 - ], - [ - 311994, - 46696, - 706 - ], - [ - 312248, - 47460, - 582 - ], - [ - 311687, - 46024, - 612 - ], - [ - 271247, - 68827, - 1167 - ], - [ - 271725, - 68603, - 322 - ], - [ - 270328, - 69414, - 312 - ], - [ - 270242, - 68456, - 453 - ], - [ - 269612, - 68124, - 382 - ], - [ - 270159, - 67810, - 512 - ], - [ - 270269, - 68180, - 1319 - ], - [ - 271537, - 68627, - 372 - ], - [ - 270732, - 68305, - 595 - ], - [ - 270811, - 68951, - 487 - ], - [ - 271096, - 68100, - 436 - ], - [ - 271203, - 68505, - 1143 - ], - [ - 270679, - 67958, - 520 - ], - [ - 270628, - 67611, - 450 - ], - [ - 270962, - 67321, - 372 - ], - [ - 293999, - 55898, - 480 - ], - [ - 295381, - 55550, - 342 - ], - [ - 294017, - 56283, - 332 - ], - [ - 293305, - 54920, - 392 - ], - [ - 294624, - 54209, - 422 - ], - [ - 300527, - 52414, - 554 - ], - [ - 300866, - 52327, - 550 - ], - [ - 300012, - 53061, - 442 - ], - [ - 299761, - 51879, - 560 - ], - [ - 300144, - 52142, - 612 - ], - [ - 300390, - 51371, - 579 - ], - [ - 300123, - 52001, - 5213 - ], - [ - 300485, - 52058, - 619 - ], - [ - 300845, - 51718, - 1346 - ], - [ - 299312, - 51705, - 462 - ], - [ - 300829, - 51998, - 642 - ], - [ - 300489, - 52253, - 5062 - ], - [ - 301369, - 52331, - 422 - ], - [ - 300590, - 51024, - 492 - ], - [ - 367050, - 91544, - 962 - ], - [ - 366965, - 92249, - 962 - ], - [ - 366339, - 86663, - 962 - ], - [ - 366578, - 87332, - 952 - ], - [ - 364959, - 84186, - 942 - ], - [ - 365365, - 84770, - 952 - ], - [ - 362979, - 82156, - 952 - ], - [ - 363524, - 82614, - 952 - ], - [ - 360538, - 80715, - 952 - ], - [ - 361183, - 81014, - 952 - ], - [ - 357804, - 79962, - 952 - ], - [ - 358505, - 80082, - 962 - ], - [ - 354839, - 79992, - 942 - ], - [ - 355578, - 79907, - 952 - ], - [ - 351997, - 80834, - 962 - ], - [ - 352684, - 80550, - 952 - ], - [ - 349495, - 82426, - 952 - ], - [ - 350078, - 81963, - 952 - ], - [ - 348849, - 98514, - 994 - ], - [ - 351234, - 101610, - 982 - ], - [ - 346028, - 93837, - 952 - ], - [ - 346072, - 93977, - 952 - ], - [ - 343852, - 94242, - 952 - ], - [ - 345986, - 93697, - 962 - ], - [ - 345946, - 93556, - 952 - ], - [ - 345907, - 93415, - 962 - ], - [ - 345870, - 93273, - 962 - ], - [ - 345835, - 93131, - 962 - ], - [ - 343601, - 93452, - 872 - ], - [ - 345801, - 92988, - 932 - ], - [ - 346284, - 93925, - 962 - ], - [ - 344919, - 96485, - 952 - ], - [ - 344156, - 95014, - 962 - ], - [ - 344512, - 95763, - 952 - ], - [ - 345374, - 97178, - 952 - ], - [ - 345876, - 97839, - 952 - ], - [ - 346421, - 98463, - 962 - ], - [ - 357004, - 102151, - 1042 - ], - [ - 348295, - 100094, - 982 - ], - [ - 348989, - 100547, - 982 - ], - [ - 349713, - 100953, - 982 - ], - [ - 350462, - 101307, - 982 - ], - [ - 352025, - 101859, - 992 - ], - [ - 352831, - 102054, - 992 - ], - [ - 353649, - 102193, - 992 - ], - [ - 354487, - 102271, - 1002 - ], - [ - 355328, - 102291, - 1032 - ], - [ - 356168, - 102251, - 1052 - ], - [ - 345746, - 90981, - 952 - ], - [ - 345743, - 90238, - 952 - ], - [ - 345881, - 92259, - 962 - ], - [ - 345820, - 91835, - 962 - ], - [ - 347634, - 99593, - 972 - ], - [ - 346160, - 93515, - 962 - ], - [ - 346051, - 93100, - 962 - ], - [ - 345958, - 92681, - 962 - ], - [ - 345775, - 91409, - 952 - ], - [ - 345791, - 89496, - 952 - ], - [ - 345891, - 88759, - 952 - ], - [ - 346042, - 88031, - 962 - ], - [ - 346243, - 87315, - 962 - ], - [ - 346493, - 86615, - 962 - ], - [ - 346792, - 85934, - 962 - ], - [ - 347137, - 85276, - 962 - ], - [ - 347527, - 84643, - 962 - ], - [ - 347960, - 84038, - 962 - ], - [ - 348434, - 83466, - 962 - ], - [ - 348946, - 82927, - 952 - ], - [ - 350691, - 81543, - 962 - ], - [ - 351331, - 81166, - 962 - ], - [ - 353389, - 80314, - 942 - ], - [ - 354108, - 80128, - 942 - ], - [ - 356321, - 79874, - 952 - ], - [ - 357064, - 79892, - 952 - ], - [ - 359196, - 80248, - 962 - ], - [ - 359874, - 80459, - 962 - ], - [ - 361806, - 81355, - 962 - ], - [ - 362406, - 81736, - 962 - ], - [ - 364036, - 83106, - 942 - ], - [ - 364516, - 83631, - 952 - ], - [ - 365731, - 85379, - 932 - ], - [ - 366056, - 86011, - 962 - ], - [ - 366772, - 88016, - 952 - ], - [ - 366921, - 88711, - 962 - ], - [ - 367024, - 89415, - 962 - ], - [ - 367079, - 90123, - 962 - ], - [ - 367088, - 90834, - 962 - ], - [ - 366833, - 92948, - 962 - ], - [ - 366621, - 93762, - 982 - ], - [ - 366353, - 94560, - 982 - ], - [ - 366029, - 95336, - 982 - ], - [ - 365651, - 96088, - 992 - ], - [ - 365221, - 96811, - 992 - ], - [ - 364741, - 97502, - 982 - ], - [ - 364214, - 98158, - 982 - ], - [ - 363642, - 98775, - 992 - ], - [ - 363028, - 99350, - 992 - ], - [ - 362374, - 99880, - 992 - ], - [ - 361686, - 100363, - 992 - ], - [ - 360964, - 100797, - 982 - ], - [ - 360214, - 101178, - 1012 - ], - [ - 359440, - 101506, - 1022 - ], - [ - 358643, - 101778, - 1042 - ], - [ - 357830, - 101994, - 1042 - ], - [ - 347008, - 99049, - 962 - ], - [ - 380704, - 89760, - 1836 - ], - [ - 380973, - 89692, - 770 - ], - [ - 381034, - 90037, - 989 - ], - [ - 383485, - 88050, - 841 - ], - [ - 382694, - 86537, - 788 - ], - [ - 383002, - 86453, - 802 - ], - [ - 383004, - 86233, - 5753 - ], - [ - 387775, - 89848, - 829 - ], - [ - 388171, - 90319, - 835 - ], - [ - 387853, - 90164, - 1336 - ], - [ - 388771, - 92152, - 836 - ], - [ - 393310, - 89028, - 873 - ], - [ - 392922, - 89232, - 1415 - ], - [ - 392852, - 88913, - 1034 - ], - [ - 391537, - 90288, - 887 - ], - [ - 391930, - 90452, - 1883 - ], - [ - 391579, - 90625, - 848 - ], - [ - 396959, - 91642, - 2711 - ], - [ - 397445, - 91799, - 2873 - ], - [ - 397815, - 92343, - 1001 - ], - [ - 402725, - 96911, - 8852 - ], - [ - 398305, - 92520, - 1002 - ], - [ - 398443, - 92855, - 2321 - ], - [ - 398060, - 92763, - 1242 - ], - [ - 395722, - 90724, - 2670 - ], - [ - 393914, - 89211, - 2102 - ], - [ - 399088, - 93743, - 3686 - ], - [ - 400650, - 94844, - 7398 - ], - [ - 400800, - 95158, - 8916 - ], - [ - 400506, - 94938, - 9801 - ], - [ - 403847, - 97515, - 1795 - ], - [ - 404104, - 97727, - 1382 - ], - [ - 403685, - 97596, - 8911 - ], - [ - 404554, - 97197, - 653 - ], - [ - 405311, - 95926, - 680 - ], - [ - 400322, - 94622, - 7809 - ], - [ - 398563, - 90707, - 1959 - ], - [ - 398453, - 90390, - 985 - ], - [ - 398937, - 90243, - 3330 - ], - [ - 394715, - 89823, - 2657 - ], - [ - 394664, - 89482, - 2584 - ], - [ - 395629, - 90077, - 2551 - ], - [ - 401759, - 93099, - 9080 - ], - [ - 401306, - 92896, - 9385 - ], - [ - 401595, - 92797, - 7327 - ], - [ - 402181, - 93969, - 6697 - ], - [ - 402087, - 93642, - 5967 - ], - [ - 402340, - 93523, - 3124 - ], - [ - 405272, - 95215, - 1459 - ], - [ - 405355, - 95549, - 2012 - ], - [ - 404765, - 95402, - 777 - ], - [ - 403000, - 92988, - 7860 - ], - [ - 403157, - 92830, - 785 - ], - [ - 403210, - 93185, - 877 - ], - [ - 403063, - 97075, - 1086 - ], - [ - 402179, - 96393, - 8847 - ], - [ - 403222, - 95613, - 818 - ], - [ - 402890, - 95807, - 6628 - ], - [ - 402839, - 95471, - 6536 - ], - [ - 403250, - 93505, - 836 - ], - [ - 403002, - 93659, - 6634 - ], - [ - 403243, - 93235, - 5571 - ], - [ - 402107, - 96059, - 8458 - ], - [ - 402384, - 96300, - 5188 - ], - [ - 403131, - 95004, - 5931 - ], - [ - 403182, - 95293, - 840 - ], - [ - 402919, - 95123, - 8318 - ], - [ - 405178, - 94890, - 741 - ], - [ - 403711, - 95063, - 790 - ], - [ - 403803, - 93944, - 912 - ], - [ - 402592, - 96560, - 994 - ], - [ - 403259, - 96342, - 5238 - ], - [ - 403028, - 96760, - 1170 - ], - [ - 403487, - 97311, - 1400 - ], - [ - 402428, - 92166, - 6903 - ], - [ - 403378, - 92888, - 8147 - ], - [ - 403210, - 95327, - 6445 - ], - [ - 402848, - 92687, - 6261 - ], - [ - 402676, - 93381, - 2523 - ], - [ - 403427, - 94831, - 866 - ], - [ - 403094, - 94619, - 865 - ], - [ - 403340, - 94158, - 903 - ], - [ - 403471, - 95188, - 826 - ], - [ - 403661, - 96509, - 1043 - ], - [ - 403368, - 96617, - 1016 - ], - [ - 403323, - 96285, - 999 - ], - [ - 399689, - 92796, - 6030 - ], - [ - 399148, - 92915, - 1319 - ], - [ - 399384, - 92485, - 2315 - ], - [ - 402722, - 93824, - 7969 - ], - [ - 403491, - 93383, - 830 - ], - [ - 403886, - 96419, - 756 - ], - [ - 404424, - 96179, - 716 - ], - [ - 404160, - 96642, - 916 - ], - [ - 404020, - 95632, - 830 - ], - [ - 403559, - 95863, - 822 - ], - [ - 403515, - 95528, - 801 - ], - [ - 405706, - 95098, - 1419 - ], - [ - 403269, - 95945, - 877 - ], - [ - 403336, - 95648, - 7624 - ], - [ - 402277, - 95663, - 4878 - ], - [ - 402130, - 96028, - 2120 - ], - [ - 402082, - 95728, - 8724 - ], - [ - 402622, - 93135, - 7839 - ], - [ - 402281, - 93309, - 9325 - ], - [ - 402202, - 92962, - 8868 - ], - [ - 399464, - 90692, - 3049 - ], - [ - 399213, - 90804, - 3029 - ], - [ - 399194, - 90471, - 3377 - ], - [ - 399402, - 93566, - 3698 - ], - [ - 399791, - 93439, - 6269 - ], - [ - 399841, - 93780, - 6347 - ], - [ - 400562, - 91272, - 1943 - ], - [ - 400515, - 90924, - 1943 - ], - [ - 401110, - 91457, - 2999 - ], - [ - 402530, - 92827, - 7116 - ], - [ - 403444, - 93035, - 806 - ], - [ - 402405, - 92481, - 5981 - ], - [ - 401994, - 92311, - 7150 - ], - [ - 402927, - 96066, - 1036 - ], - [ - 406072, - 94659, - 761 - ], - [ - 405664, - 94761, - 1450 - ], - [ - 382572, - 86358, - 5060 - ], - [ - 383829, - 88606, - 875 - ], - [ - 384191, - 88449, - 853 - ], - [ - 384235, - 88791, - 847 - ], - [ - 401792, - 93425, - 8936 - ], - [ - 401631, - 93763, - 6050 - ], - [ - 401409, - 93555, - 9602 - ], - [ - 402150, - 92627, - 8759 - ], - [ - 403050, - 94257, - 921 - ], - [ - 402982, - 94366, - 5008 - ], - [ - 402713, - 94164, - 7205 - ], - [ - 400857, - 93369, - 7651 - ], - [ - 400179, - 93230, - 3777 - ], - [ - 400911, - 93049, - 8995 - ], - [ - 403047, - 94011, - 6614 - ], - [ - 401983, - 95094, - 8513 - ], - [ - 401425, - 95224, - 6704 - ], - [ - 401533, - 94892, - 8851 - ], - [ - 402359, - 94263, - 8647 - ], - [ - 401856, - 94411, - 7990 - ], - [ - 401913, - 94085, - 9415 - ], - [ - 402888, - 94788, - 8501 - ], - [ - 403096, - 94683, - 6029 - ], - [ - 402031, - 95420, - 8573 - ], - [ - 401663, - 95861, - 8863 - ], - [ - 401475, - 95553, - 6809 - ], - [ - 382705, - 89636, - 797 - ], - [ - 380539, - 89085, - 768 - ], - [ - 383317, - 88797, - 870 - ], - [ - 383256, - 86343, - 809 - ], - [ - 403550, - 93744, - 986 - ], - [ - 403321, - 93903, - 5445 - ], - [ - 403275, - 93549, - 5440 - ], - [ - 402551, - 96239, - 1031 - ], - [ - 402425, - 94611, - 8916 - ], - [ - 400959, - 94055, - 7803 - ], - [ - 401322, - 94250, - 7084 - ], - [ - 401012, - 94380, - 7941 - ], - [ - 402880, - 94456, - 9022 - ], - [ - 383870, - 88920, - 867 - ], - [ - 382954, - 86095, - 790 - ], - [ - 382867, - 85445, - 783 - ], - [ - 382309, - 86648, - 797 - ], - [ - 398014, - 91653, - 5090 - ], - [ - 397769, - 92001, - 997 - ], - [ - 398316, - 91507, - 3047 - ], - [ - 398754, - 91402, - 3341 - ], - [ - 398625, - 91738, - 890 - ], - [ - 403718, - 93268, - 968 - ], - [ - 403758, - 93600, - 918 - ], - [ - 403609, - 93799, - 5360 - ], - [ - 384633, - 88332, - 976 - ], - [ - 403424, - 94916, - 4995 - ], - [ - 397967, - 89175, - 2488 - ], - [ - 403660, - 92932, - 791 - ], - [ - 404538, - 93696, - 768 - ], - [ - 405050, - 93905, - 786 - ], - [ - 404984, - 96354, - 2100 - ], - [ - 404512, - 96853, - 703 - ], - [ - 399829, - 90888, - 3224 - ], - [ - 400075, - 91077, - 940 - ], - [ - 399716, - 91256, - 955 - ], - [ - 399882, - 91899, - 2084 - ], - [ - 400170, - 91773, - 975 - ], - [ - 400350, - 92082, - 2920 - ], - [ - 400043, - 90746, - 1100 - ], - [ - 400706, - 91942, - 2724 - ], - [ - 400704, - 91597, - 3333 - ], - [ - 401259, - 91792, - 4459 - ], - [ - 397823, - 91312, - 3030 - ], - [ - 400130, - 91417, - 1072 - ], - [ - 399300, - 92251, - 4704 - ], - [ - 399547, - 92333, - 1167 - ], - [ - 400157, - 92871, - 4130 - ], - [ - 400392, - 92411, - 2905 - ], - [ - 400845, - 92698, - 8731 - ], - [ - 399356, - 92146, - 2546 - ], - [ - 399527, - 93898, - 4858 - ], - [ - 399814, - 94109, - 5359 - ], - [ - 399706, - 92683, - 2746 - ], - [ - 386400, - 89117, - 820 - ], - [ - 386844, - 89260, - 1226 - ], - [ - 386520, - 89789, - 1266 - ], - [ - 400032, - 92561, - 2962 - ], - [ - 401203, - 95004, - 9461 - ], - [ - 403409, - 96958, - 970 - ], - [ - 403730, - 97191, - 742 - ], - [ - 398575, - 93205, - 3526 - ], - [ - 398825, - 93065, - 1243 - ], - [ - 398864, - 93407, - 1150 - ], - [ - 399863, - 93015, - 4328 - ], - [ - 400015, - 93334, - 5883 - ], - [ - 404021, - 97406, - 817 - ], - [ - 404265, - 96962, - 1791 - ], - [ - 401381, - 93881, - 8604 - ], - [ - 400977, - 93715, - 8681 - ], - [ - 401176, - 93226, - 6935 - ], - [ - 404084, - 93476, - 970 - ], - [ - 399064, - 91224, - 3300 - ], - [ - 398720, - 91061, - 3500 - ], - [ - 399915, - 91561, - 3185 - ], - [ - 397987, - 92690, - 2777 - ], - [ - 398130, - 91196, - 1004 - ], - [ - 398880, - 89913, - 3147 - ], - [ - 399406, - 90336, - 2898 - ], - [ - 401369, - 92117, - 5403 - ], - [ - 401892, - 91971, - 6334 - ], - [ - 401623, - 92440, - 8402 - ], - [ - 400609, - 94510, - 7447 - ], - [ - 402401, - 95295, - 7303 - ], - [ - 399569, - 93131, - 3709 - ], - [ - 399171, - 92579, - 2278 - ], - [ - 399916, - 92209, - 1986 - ], - [ - 401118, - 92273, - 7885 - ], - [ - 401167, - 92581, - 8012 - ], - [ - 400044, - 93979, - 5083 - ], - [ - 399337, - 93241, - 3385 - ], - [ - 398256, - 92190, - 931 - ], - [ - 398811, - 92382, - 2319 - ], - [ - 405702, - 95448, - 689 - ], - [ - 397743, - 90667, - 3111 - ], - [ - 397710, - 90338, - 3267 - ], - [ - 398195, - 90521, - 3197 - ], - [ - 398255, - 90858, - 3401 - ], - [ - 397088, - 90138, - 946 - ], - [ - 397188, - 89809, - 2969 - ], - [ - 399564, - 91339, - 3253 - ], - [ - 399504, - 92018, - 1147 - ], - [ - 399542, - 91654, - 2346 - ], - [ - 399503, - 91009, - 3005 - ], - [ - 399073, - 91583, - 2759 - ], - [ - 403972, - 97064, - 758 - ], - [ - 382384, - 90440, - 689 - ], - [ - 382943, - 90313, - 2913 - ], - [ - 382797, - 89994, - 1426 - ], - [ - 383182, - 90205, - 809 - ], - [ - 399071, - 90553, - 4653 - ], - [ - 401402, - 94582, - 7580 - ], - [ - 401197, - 95353, - 8733 - ], - [ - 399133, - 90149, - 3116 - ], - [ - 398559, - 90031, - 3159 - ], - [ - 398464, - 89716, - 2413 - ], - [ - 398094, - 89849, - 3013 - ], - [ - 397946, - 89490, - 1597 - ], - [ - 398912, - 92719, - 3116 - ], - [ - 398766, - 92052, - 2295 - ], - [ - 400099, - 93643, - 6491 - ], - [ - 391627, - 91824, - 2709 - ], - [ - 390375, - 93260, - 2726 - ], - [ - 390611, - 92385, - 2445 - ], - [ - 390315, - 92929, - 2487 - ], - [ - 398321, - 91844, - 2497 - ], - [ - 399163, - 91919, - 3397 - ], - [ - 396880, - 90943, - 2891 - ], - [ - 397325, - 90792, - 3063 - ], - [ - 397372, - 91130, - 3091 - ], - [ - 381469, - 90278, - 1012 - ], - [ - 389716, - 92466, - 986 - ], - [ - 390156, - 92593, - 862 - ], - [ - 390111, - 92259, - 853 - ], - [ - 396727, - 89937, - 2627 - ], - [ - 397595, - 89646, - 2935 - ], - [ - 396777, - 90271, - 2707 - ], - [ - 390814, - 91843, - 849 - ], - [ - 389196, - 91962, - 983 - ], - [ - 383163, - 89887, - 1121 - ], - [ - 383689, - 89380, - 1246 - ], - [ - 383608, - 88371, - 1980 - ], - [ - 396186, - 90080, - 849 - ], - [ - 396342, - 90415, - 2409 - ], - [ - 397212, - 90459, - 2088 - ], - [ - 403598, - 96180, - 775 - ], - [ - 383400, - 89472, - 792 - ], - [ - 383614, - 89021, - 860 - ], - [ - 387690, - 91004, - 1619 - ], - [ - 388435, - 91670, - 2040 - ], - [ - 399254, - 91118, - 3014 - ], - [ - 401907, - 94762, - 8059 - ], - [ - 402430, - 94930, - 8405 - ], - [ - 397498, - 88974, - 2819 - ], - [ - 383781, - 88246, - 872 - ], - [ - 400469, - 93879, - 6653 - ], - [ - 400594, - 94178, - 7845 - ], - [ - 400212, - 94305, - 6842 - ], - [ - 400404, - 93549, - 6361 - ], - [ - 404940, - 96036, - 2078 - ], - [ - 404824, - 95718, - 1032 - ], - [ - 404050, - 95944, - 658 - ], - [ - 380187, - 89173, - 1167 - ], - [ - 396811, - 90611, - 2534 - ], - [ - 399303, - 91786, - 2455 - ], - [ - 397054, - 89110, - 2385 - ], - [ - 387590, - 90665, - 826 - ], - [ - 387284, - 90491, - 873 - ], - [ - 387570, - 90307, - 1222 - ], - [ - 387404, - 90821, - 1947 - ], - [ - 396560, - 89622, - 862 - ], - [ - 399622, - 90549, - 957 - ], - [ - 392764, - 90426, - 2630 - ], - [ - 392022, - 90786, - 2550 - ], - [ - 392310, - 90309, - 2343 - ], - [ - 391623, - 90959, - 847 - ], - [ - 391407, - 91177, - 822 - ], - [ - 391573, - 91487, - 2576 - ], - [ - 391120, - 91344, - 857 - ], - [ - 392711, - 90067, - 2558 - ], - [ - 392934, - 89557, - 976 - ], - [ - 393481, - 89388, - 2605 - ], - [ - 392793, - 88555, - 860 - ], - [ - 392487, - 89075, - 1249 - ], - [ - 392068, - 89288, - 849 - ], - [ - 388261, - 90998, - 841 - ], - [ - 388685, - 91482, - 880 - ], - [ - 392190, - 89966, - 1292 - ], - [ - 393740, - 88854, - 842 - ], - [ - 382346, - 90098, - 794 - ], - [ - 381886, - 90211, - 789 - ], - [ - 380587, - 89429, - 799 - ], - [ - 391273, - 91652, - 2445 - ], - [ - 393911, - 89188, - 2635 - ], - [ - 394340, - 89322, - 2643 - ], - [ - 393222, - 88354, - 891 - ], - [ - 387912, - 90839, - 911 - ], - [ - 391844, - 90138, - 1264 - ], - [ - 404292, - 97628, - 951 - ], - [ - 384058, - 89268, - 2857 - ], - [ - 389233, - 92282, - 904 - ], - [ - 388026, - 91193, - 1847 - ], - [ - 386949, - 89969, - 1384 - ], - [ - 387173, - 89469, - 1217 - ], - [ - 386352, - 88758, - 819 - ], - [ - 399317, - 91475, - 3251 - ], - [ - 395937, - 90226, - 2481 - ], - [ - 387531, - 89991, - 1265 - ], - [ - 396441, - 91113, - 2501 - ], - [ - 396399, - 90755, - 2575 - ], - [ - 392590, - 89748, - 1455 - ], - [ - 385097, - 88543, - 804 - ], - [ - 386079, - 89584, - 1427 - ], - [ - 385994, - 89267, - 812 - ], - [ - 385950, - 88934, - 814 - ], - [ - 386620, - 90109, - 2080 - ], - [ - 381988, - 90864, - 1018 - ], - [ - 387872, - 90522, - 937 - ], - [ - 388765, - 91799, - 1409 - ], - [ - 386976, - 90298, - 1139 - ], - [ - 392141, - 89609, - 1274 - ], - [ - 385574, - 89063, - 1160 - ], - [ - 391794, - 89805, - 1172 - ], - [ - 403851, - 96084, - 877 - ], - [ - 406723, - 82661, - 792 - ], - [ - 409308, - 84519, - 802 - ], - [ - 408170, - 86102, - 792 - ], - [ - 405585, - 84244, - 792 - ], - [ - 366230, - 102122, - 634 - ], - [ - 366199, - 101802, - 798 - ], - [ - 365854, - 101782, - 620 - ], - [ - 251774, - 80564, - 339 - ], - [ - 251938, - 80455, - 352 - ], - [ - 250654, - 81315, - 962 - ], - [ - 251042, - 80377, - 509 - ], - [ - 251173, - 80430, - 9281 - ], - [ - 251135, - 80468, - 499 - ], - [ - 251350, - 80299, - 5637 - ], - [ - 251105, - 80129, - 5358 - ], - [ - 251572, - 79994, - 6791 - ], - [ - 251391, - 80016, - 439 - ], - [ - 251531, - 79909, - 7665 - ], - [ - 251396, - 80652, - 462 - ], - [ - 251137, - 80652, - 5249 - ], - [ - 251205, - 80558, - 7612 - ], - [ - 251057, - 80630, - 4619 - ], - [ - 250466, - 80638, - 5055 - ], - [ - 250349, - 80479, - 6184 - ], - [ - 250617, - 80520, - 8823 - ], - [ - 251036, - 79763, - 452 - ], - [ - 251102, - 79304, - 382 - ], - [ - 251341, - 79653, - 425 - ], - [ - 251070, - 79886, - 8845 - ], - [ - 251423, - 79841, - 473 - ], - [ - 250976, - 80299, - 8961 - ], - [ - 251087, - 80124, - 472 - ], - [ - 250649, - 80571, - 490 - ], - [ - 250780, - 80245, - 485 - ], - [ - 251531, - 80413, - 6041 - ], - [ - 251730, - 80203, - 381 - ], - [ - 250469, - 80358, - 463 - ], - [ - 251027, - 79962, - 493 - ], - [ - 251004, - 80686, - 3048 - ], - [ - 251011, - 80664, - 2869 - ], - [ - 251481, - 80695, - 421 - ], - [ - 250558, - 81038, - 421 - ], - [ - 250651, - 81063, - 473 - ], - [ - 251359, - 80205, - 7289 - ], - [ - 251374, - 80115, - 8909 - ], - [ - 251399, - 80250, - 451 - ], - [ - 250309, - 80309, - 507 - ], - [ - 249917, - 80063, - 422 - ], - [ - 251435, - 80337, - 438 - ], - [ - 250596, - 80913, - 8845 - ], - [ - 250866, - 80898, - 442 - ], - [ - 250514, - 80705, - 430 - ], - [ - 250024, - 80196, - 459 - ], - [ - 250717, - 81263, - 8888 - ], - [ - 250998, - 80833, - 576 - ], - [ - 250949, - 80971, - 5665 - ], - [ - 251590, - 80066, - 5858 - ], - [ - 251045, - 80672, - 3784 - ], - [ - 250988, - 80719, - 2292 - ], - [ - 251179, - 80803, - 481 - ], - [ - 250654, - 81315, - 382 - ], - [ - 379540, - 27979, - 8235 - ], - [ - 379502, - 27935, - 5560 - ], - [ - 379549, - 27856, - 552 - ], - [ - 378235, - 28031, - 569 - ], - [ - 378352, - 28719, - 482 - ], - [ - 378034, - 27287, - 512 - ], - [ - 379078, - 27697, - 5089 - ], - [ - 379232, - 27653, - 569 - ], - [ - 379218, - 27671, - 9783 - ], - [ - 379399, - 27636, - 612 - ], - [ - 379334, - 27872, - 7995 - ], - [ - 379167, - 27725, - 7756 - ], - [ - 379062, - 27772, - 599 - ], - [ - 378575, - 28612, - 6888 - ], - [ - 378700, - 28487, - 582 - ], - [ - 378970, - 28487, - 6044 - ], - [ - 379545, - 27750, - 5087 - ], - [ - 379566, - 27560, - 8174 - ], - [ - 379666, - 27913, - 576 - ], - [ - 378916, - 27444, - 569 - ], - [ - 378693, - 27142, - 6277 - ], - [ - 378874, - 27122, - 588 - ], - [ - 379336, - 27894, - 5245 - ], - [ - 379480, - 27880, - 9168 - ], - [ - 378774, - 27096, - 541 - ], - [ - 379228, - 27030, - 7398 - ], - [ - 379187, - 27311, - 574 - ], - [ - 379461, - 27172, - 590 - ], - [ - 379507, - 27533, - 560 - ], - [ - 378318, - 27575, - 6666 - ], - [ - 378492, - 27801, - 607 - ], - [ - 378275, - 27758, - 7144 - ], - [ - 379025, - 28043, - 915 - ], - [ - 378967, - 27992, - 1773 - ], - [ - 379076, - 27922, - 8895 - ], - [ - 379590, - 28190, - 514 - ], - [ - 379814, - 28285, - 7473 - ], - [ - 379834, - 28352, - 2572 - ], - [ - 379319, - 28338, - 524 - ], - [ - 379160, - 28424, - 7345 - ], - [ - 379471, - 26881, - 502 - ], - [ - 379455, - 28085, - 6124 - ], - [ - 379376, - 28103, - 583 - ], - [ - 378910, - 28004, - 2579 - ], - [ - 378725, - 27986, - 603 - ], - [ - 378964, - 27811, - 558 - ], - [ - 379136, - 27803, - 4190 - ], - [ - 378220, - 27718, - 6216 - ], - [ - 378470, - 28239, - 598 - ], - [ - 378723, - 28321, - 548 - ], - [ - 378622, - 28502, - 6301 - ], - [ - 379054, - 28212, - 1088 - ], - [ - 379272, - 27973, - 547 - ], - [ - 378588, - 27280, - 583 - ], - [ - 378631, - 27607, - 572 - ], - [ - 378749, - 27511, - 610 - ], - [ - 378259, - 27795, - 583 - ], - [ - 378258, - 27518, - 612 - ], - [ - 378610, - 27468, - 7211 - ], - [ - 379022, - 27709, - 5878 - ], - [ - 379011, - 28303, - 5605 - ], - [ - 379050, - 28496, - 504 - ], - [ - 379655, - 28074, - 6547 - ], - [ - 379711, - 28085, - 5724 - ], - [ - 379421, - 27153, - 638 - ], - [ - 379035, - 27707, - 6137 - ], - [ - 379834, - 28352, - 452 - ], - [ - 385920, - 26843, - 7195 - ], - [ - 385970, - 26831, - 6463 - ], - [ - 384791, - 27125, - 442 - ], - [ - 385547, - 26596, - 6670 - ], - [ - 385505, - 26841, - 521 - ], - [ - 385453, - 26767, - 7912 - ], - [ - 385685, - 25806, - 7627 - ], - [ - 385787, - 25628, - 9994 - ], - [ - 385809, - 25730, - 604 - ], - [ - 385972, - 26554, - 568 - ], - [ - 386037, - 26307, - 5877 - ], - [ - 386102, - 26518, - 9085 - ], - [ - 385239, - 26393, - 589 - ], - [ - 385385, - 26478, - 9099 - ], - [ - 385382, - 26549, - 6148 - ], - [ - 385896, - 25286, - 522 - ], - [ - 385885, - 25699, - 4801 - ], - [ - 384883, - 26698, - 5478 - ], - [ - 384897, - 26478, - 9501 - ], - [ - 384993, - 26534, - 566 - ], - [ - 385761, - 25606, - 563 - ], - [ - 385571, - 25428, - 545 - ], - [ - 385547, - 25849, - 593 - ], - [ - 384838, - 26797, - 6043 - ], - [ - 385027, - 26680, - 533 - ], - [ - 384943, - 26357, - 8932 - ], - [ - 385352, - 26958, - 6279 - ], - [ - 385308, - 26843, - 9945 - ], - [ - 384981, - 26332, - 548 - ], - [ - 385083, - 26888, - 6520 - ], - [ - 385217, - 26863, - 563 - ], - [ - 385068, - 27012, - 489 - ], - [ - 385139, - 26840, - 9447 - ], - [ - 385126, - 26757, - 5988 - ], - [ - 385168, - 26617, - 5492 - ], - [ - 384451, - 25666, - 482 - ], - [ - 384650, - 26374, - 9066 - ], - [ - 384706, - 26208, - 583 - ], - [ - 384936, - 25990, - 543 - ], - [ - 385436, - 26606, - 5324 - ], - [ - 385493, - 26555, - 890 - ], - [ - 385259, - 25951, - 609 - ], - [ - 385809, - 26821, - 8817 - ], - [ - 385489, - 26471, - 7593 - ], - [ - 385626, - 26578, - 7928 - ], - [ - 385879, - 26379, - 6692 - ], - [ - 385764, - 26671, - 583 - ], - [ - 385741, - 26297, - 4087 - ], - [ - 385663, - 26291, - 7600 - ], - [ - 385785, - 26206, - 599 - ], - [ - 385897, - 26656, - 527 - ], - [ - 385314, - 26345, - 5220 - ], - [ - 385477, - 26427, - 1188 - ], - [ - 385368, - 25825, - 485 - ], - [ - 385173, - 25838, - 5982 - ], - [ - 385809, - 25972, - 559 - ], - [ - 385576, - 26571, - 8653 - ], - [ - 385571, - 26098, - 6687 - ], - [ - 385692, - 26311, - 4789 - ], - [ - 385634, - 26361, - 2651 - ], - [ - 384666, - 26421, - 5344 - ], - [ - 385855, - 26322, - 551 - ], - [ - 386107, - 26564, - 4671 - ], - [ - 385794, - 26301, - 3325 - ], - [ - 384586, - 26062, - 6751 - ], - [ - 385866, - 26228, - 4696 - ], - [ - 385583, - 26342, - 3404 - ], - [ - 385996, - 26040, - 600 - ], - [ - 386184, - 26486, - 510 - ], - [ - 386273, - 26759, - 3322 - ], - [ - 385818, - 26289, - 5349 - ], - [ - 385523, - 26308, - 610 - ], - [ - 385501, - 25903, - 4900 - ], - [ - 385433, - 26204, - 703 - ], - [ - 385470, - 26245, - 5106 - ], - [ - 384730, - 25719, - 580 - ], - [ - 384969, - 27040, - 546 - ], - [ - 385640, - 26316, - 5534 - ], - [ - 386273, - 26759, - 462 - ], - [ - 292494, - 140704, - 1213 - ], - [ - 292674, - 140826, - 3396 - ], - [ - 292291, - 140586, - 3789 - ], - [ - 292941, - 138870, - 1084 - ], - [ - 288368, - 137846, - 4447 - ], - [ - 289690, - 138741, - 3584 - ], - [ - 289988, - 139061, - 7001 - ], - [ - 289498, - 138623, - 1236 - ], - [ - 289400, - 138432, - 4403 - ], - [ - 289421, - 138581, - 7710 - ], - [ - 288561, - 137975, - 1442 - ], - [ - 288840, - 137866, - 1171 - ], - [ - 288790, - 138047, - 4393 - ], - [ - 289115, - 138363, - 8209 - ], - [ - 288743, - 138117, - 9015 - ], - [ - 289170, - 138402, - 1384 - ], - [ - 288886, - 138186, - 1222 - ], - [ - 289469, - 138251, - 1516 - ], - [ - 289080, - 138297, - 3629 - ], - [ - 290671, - 139206, - 1306 - ], - [ - 290352, - 139323, - 6511 - ], - [ - 290296, - 139009, - 1184 - ], - [ - 289860, - 138436, - 1523 - ], - [ - 291084, - 139392, - 1298 - ], - [ - 290956, - 139581, - 4443 - ], - [ - 290732, - 139497, - 1606 - ], - [ - 291831, - 140363, - 3851 - ], - [ - 289122, - 138069, - 1345 - ], - [ - 288499, - 137663, - 1164 - ], - [ - 289364, - 137590, - 1285 - ], - [ - 290779, - 137009, - 1465 - ], - [ - 290743, - 136661, - 1624 - ], - [ - 291168, - 136919, - 1133 - ], - [ - 289766, - 137764, - 1473 - ], - [ - 289020, - 137374, - 1218 - ], - [ - 289332, - 137207, - 1558 - ], - [ - 291125, - 139744, - 1218 - ], - [ - 291556, - 139571, - 1580 - ], - [ - 293490, - 140769, - 1142 - ], - [ - 292876, - 140617, - 1415 - ], - [ - 293446, - 140394, - 1222 - ], - [ - 290275, - 138650, - 1544 - ], - [ - 291051, - 139038, - 1470 - ], - [ - 291302, - 139872, - 3351 - ], - [ - 291578, - 139945, - 1211 - ], - [ - 290591, - 139404, - 4431 - ], - [ - 291963, - 139495, - 1354 - ], - [ - 292047, - 140156, - 1293 - ], - [ - 292330, - 139321, - 1484 - ], - [ - 292192, - 138323, - 1410 - ], - [ - 292594, - 138586, - 1253 - ], - [ - 291318, - 137913, - 1356 - ], - [ - 291753, - 137762, - 1634 - ], - [ - 292104, - 140470, - 1486 - ], - [ - 292453, - 140384, - 1223 - ], - [ - 293526, - 141103, - 1019 - ], - [ - 290199, - 139173, - 4744 - ], - [ - 292905, - 140975, - 1160 - ], - [ - 289888, - 138834, - 1187 - ], - [ - 290217, - 138306, - 1380 - ], - [ - 290053, - 138996, - 3120 - ], - [ - 293081, - 139827, - 1255 - ], - [ - 293142, - 140163, - 1473 - ], - [ - 293412, - 140063, - 1359 - ], - [ - 293358, - 139740, - 1219 - ], - [ - 293691, - 139963, - 1737 - ], - [ - 294082, - 140220, - 1641 - ], - [ - 293789, - 140605, - 1911 - ], - [ - 292582, - 138221, - 1759 - ], - [ - 292867, - 138133, - 1400 - ], - [ - 292904, - 138492, - 1248 - ], - [ - 293753, - 140255, - 2058 - ], - [ - 291221, - 137240, - 1262 - ], - [ - 292139, - 137998, - 1279 - ], - [ - 293260, - 141228, - 1136 - ], - [ - 290401, - 137164, - 1336 - ], - [ - 290320, - 136471, - 1503 - ], - [ - 290354, - 136831, - 1312 - ], - [ - 289988, - 136635, - 1330 - ], - [ - 289673, - 137118, - 1388 - ], - [ - 290045, - 136968, - 1483 - ], - [ - 289809, - 138132, - 1395 - ], - [ - 219974, - 101587, - 478 - ], - [ - 219928, - 101253, - 489 - ], - [ - 220257, - 101418, - 491 - ], - [ - 220068, - 100867, - 4868 - ], - [ - 219885, - 100936, - 496 - ], - [ - 220093, - 100741, - 508 - ], - [ - 220303, - 100924, - 6888 - ], - [ - 220163, - 100742, - 491 - ], - [ - 220218, - 100692, - 9675 - ], - [ - 221049, - 101212, - 372 - ], - [ - 219784, - 102047, - 402 - ], - [ - 219713, - 100862, - 508 - ], - [ - 219837, - 100600, - 470 - ], - [ - 220093, - 100685, - 8205 - ], - [ - 220113, - 100386, - 474 - ], - [ - 220321, - 100531, - 6849 - ], - [ - 219408, - 100633, - 447 - ], - [ - 219348, - 100626, - 6629 - ], - [ - 219491, - 100598, - 8902 - ], - [ - 219750, - 100479, - 503 - ], - [ - 220216, - 100032, - 432 - ], - [ - 220441, - 100626, - 502 - ], - [ - 220412, - 100665, - 5775 - ], - [ - 220453, - 100809, - 3921 - ], - [ - 219383, - 101025, - 477 - ], - [ - 219597, - 101283, - 6911 - ], - [ - 219015, - 100832, - 432 - ], - [ - 220053, - 101118, - 532 - ], - [ - 220060, - 101062, - 8380 - ], - [ - 219723, - 101283, - 511 - ], - [ - 219639, - 101117, - 473 - ], - [ - 220205, - 101096, - 2803 - ], - [ - 220315, - 101303, - 774 - ], - [ - 220257, - 101088, - 3589 - ], - [ - 219756, - 101375, - 7392 - ], - [ - 220211, - 101086, - 492 - ], - [ - 219584, - 100892, - 5235 - ], - [ - 219316, - 100653, - 458 - ], - [ - 219687, - 101468, - 465 - ], - [ - 219857, - 101415, - 8002 - ], - [ - 220519, - 100833, - 466 - ], - [ - 220428, - 100996, - 495 - ], - [ - 220488, - 100783, - 4772 - ], - [ - 219593, - 100786, - 469 - ], - [ - 220179, - 100354, - 8002 - ], - [ - 220567, - 101193, - 443 - ], - [ - 393162, - 69052, - 682 - ], - [ - 400939, - 74218, - 573 - ], - [ - 396713, - 71167, - 679 - ], - [ - 393815, - 69067, - 565 - ], - [ - 282914, - 61868, - 475 - ], - [ - 283665, - 61879, - 402 - ], - [ - 282286, - 62626, - 312 - ], - [ - 282881, - 60563, - 402 - ], - [ - 282824, - 61190, - 468 - ], - [ - 282220, - 61365, - 476 - ], - [ - 282656, - 61973, - 769 - ], - [ - 281583, - 61285, - 362 - ], - [ - 282760, - 61772, - 2512 - ], - [ - 334028, - 142058, - 4546 - ], - [ - 333630, - 142133, - 4412 - ], - [ - 333987, - 141688, - 4653 - ], - [ - 336824, - 137479, - 11285 - ], - [ - 336668, - 137678, - 846 - ], - [ - 333083, - 142544, - 976 - ], - [ - 333032, - 142190, - 918 - ], - [ - 336947, - 137282, - 784 - ], - [ - 334776, - 141189, - 4973 - ], - [ - 335188, - 140773, - 5049 - ], - [ - 334789, - 141556, - 4468 - ], - [ - 336791, - 137971, - 5721 - ], - [ - 337035, - 137952, - 9190 - ], - [ - 337390, - 137527, - 818 - ], - [ - 336353, - 138592, - 7469 - ], - [ - 336637, - 138627, - 6491 - ], - [ - 336740, - 138890, - 3286 - ], - [ - 335047, - 140187, - 4156 - ], - [ - 334772, - 139872, - 884 - ], - [ - 335318, - 139618, - 2401 - ], - [ - 336722, - 138029, - 946 - ], - [ - 335798, - 139382, - 3806 - ], - [ - 335940, - 138928, - 994 - ], - [ - 336038, - 139567, - 1189 - ], - [ - 337386, - 137758, - 6045 - ], - [ - 337220, - 138012, - 7950 - ], - [ - 336784, - 138344, - 1232 - ], - [ - 334888, - 140146, - 8482 - ], - [ - 335125, - 140475, - 4721 - ], - [ - 334341, - 141227, - 5003 - ], - [ - 334257, - 140966, - 4319 - ], - [ - 334649, - 141006, - 3541 - ], - [ - 335723, - 138682, - 4059 - ], - [ - 336183, - 138165, - 949 - ], - [ - 336197, - 139675, - 3229 - ], - [ - 334418, - 141927, - 4772 - ], - [ - 335857, - 139665, - 4108 - ], - [ - 335357, - 139107, - 3906 - ], - [ - 335752, - 139020, - 3831 - ], - [ - 337445, - 137845, - 1003 - ], - [ - 333697, - 142861, - 3987 - ], - [ - 335257, - 139398, - 8571 - ], - [ - 334580, - 140258, - 3960 - ], - [ - 335545, - 140448, - 4036 - ], - [ - 333854, - 141080, - 3938 - ], - [ - 335428, - 139850, - 3512 - ], - [ - 335854, - 140123, - 3218 - ], - [ - 333541, - 141481, - 4377 - ], - [ - 336051, - 138291, - 3763 - ], - [ - 334043, - 142428, - 4065 - ], - [ - 335511, - 140111, - 4187 - ], - [ - 333915, - 141386, - 4223 - ], - [ - 334203, - 140663, - 4131 - ], - [ - 317929, - 58519, - 484 - ], - [ - 318539, - 58038, - 523 - ], - [ - 319191, - 58428, - 362 - ], - [ - 318119, - 57787, - 540 - ], - [ - 318490, - 57689, - 495 - ], - [ - 318515, - 57866, - 5871 - ], - [ - 318354, - 57478, - 8301 - ], - [ - 318563, - 57398, - 11348 - ], - [ - 319004, - 57978, - 502 - ], - [ - 317921, - 57420, - 6694 - ], - [ - 318422, - 57189, - 5830 - ], - [ - 318442, - 57351, - 441 - ], - [ - 317789, - 57491, - 429 - ], - [ - 317589, - 57456, - 6656 - ], - [ - 318786, - 57396, - 5124 - ], - [ - 318161, - 58107, - 525 - ], - [ - 317577, - 58233, - 429 - ], - [ - 317651, - 58411, - 5749 - ], - [ - 317776, - 58913, - 362 - ], - [ - 317531, - 57911, - 382 - ], - [ - 317481, - 57547, - 358 - ], - [ - 317882, - 58156, - 502 - ], - [ - 318782, - 57059, - 5822 - ], - [ - 317337, - 57516, - 1652 - ], - [ - 317571, - 58021, - 5363 - ], - [ - 318782, - 57059, - 332 - ], - [ - 317337, - 57516, - 362 - ], - [ - 411354, - 81604, - 665 - ], - [ - 409407, - 80259, - 825 - ], - [ - 406135, - 77833, - 598 - ], - [ - 408266, - 79469, - 684 - ], - [ - 258235, - 193341, - 1092 - ], - [ - 258421, - 192757, - 1153 - ], - [ - 258280, - 193345, - 1092 - ], - [ - 258192, - 193333, - 1092 - ], - [ - 258368, - 193346, - 1092 - ], - [ - 258324, - 193347, - 1092 - ], - [ - 258413, - 193341, - 1092 - ], - [ - 258500, - 193323, - 1102 - ], - [ - 258456, - 193334, - 1102 - ], - [ - 258542, - 193310, - 1102 - ], - [ - 258583, - 193294, - 1102 - ], - [ - 258847, - 193019, - 2205 - ], - [ - 258921, - 192956, - 1092 - ], - [ - 258902, - 192996, - 1092 - ], - [ - 258662, - 193253, - 1092 - ], - [ - 258699, - 193228, - 1092 - ], - [ - 258735, - 193202, - 1092 - ], - [ - 258768, - 193172, - 1092 - ], - [ - 258799, - 193141, - 1092 - ], - [ - 258829, - 193108, - 1092 - ], - [ - 258855, - 193072, - 1092 - ], - [ - 258880, - 193035, - 1092 - ], - [ - 258968, - 192786, - 1092 - ], - [ - 258782, - 192737, - 1841 - ], - [ - 258973, - 192741, - 1092 - ], - [ - 258937, - 192915, - 1092 - ], - [ - 258961, - 192829, - 1092 - ], - [ - 258950, - 192873, - 1092 - ], - [ - 258974, - 192697, - 1092 - ], - [ - 258972, - 192653, - 1092 - ], - [ - 258968, - 192608, - 1092 - ], - [ - 258960, - 192565, - 1092 - ], - [ - 258950, - 192522, - 1092 - ], - [ - 258699, - 192562, - 1035 - ], - [ - 258936, - 192479, - 1092 - ], - [ - 258920, - 192438, - 1092 - ], - [ - 258901, - 192398, - 1092 - ], - [ - 258879, - 192359, - 1092 - ], - [ - 258855, - 192322, - 1092 - ], - [ - 258828, - 192287, - 1092 - ], - [ - 258799, - 192253, - 1092 - ], - [ - 258768, - 192222, - 1092 - ], - [ - 258734, - 192193, - 1092 - ], - [ - 258699, - 192166, - 1092 - ], - [ - 258662, - 192142, - 1092 - ], - [ - 258623, - 192120, - 1092 - ], - [ - 258623, - 193275, - 1092 - ], - [ - 258542, - 192085, - 1092 - ], - [ - 258499, - 192071, - 1092 - ], - [ - 258456, - 192061, - 1092 - ], - [ - 258413, - 192053, - 1092 - ], - [ - 258368, - 192049, - 1092 - ], - [ - 258324, - 192047, - 1092 - ], - [ - 258280, - 192049, - 1092 - ], - [ - 258235, - 192053, - 1092 - ], - [ - 257922, - 192329, - 1049 - ], - [ - 258192, - 192061, - 1092 - ], - [ - 258149, - 192071, - 1092 - ], - [ - 258106, - 192085, - 1092 - ], - [ - 258065, - 192101, - 1092 - ], - [ - 258025, - 192120, - 1092 - ], - [ - 257986, - 192142, - 1092 - ], - [ - 257949, - 192166, - 1092 - ], - [ - 257914, - 192193, - 1092 - ], - [ - 257849, - 192253, - 1092 - ], - [ - 257880, - 192222, - 1092 - ], - [ - 257820, - 192287, - 1092 - ], - [ - 257793, - 192322, - 1092 - ], - [ - 257769, - 192359, - 1092 - ], - [ - 257747, - 192398, - 1092 - ], - [ - 257728, - 192438, - 1092 - ], - [ - 257712, - 192479, - 1092 - ], - [ - 257987, - 192644, - 1348 - ], - [ - 257698, - 192522, - 1092 - ], - [ - 257688, - 192565, - 1092 - ], - [ - 257680, - 192608, - 1092 - ], - [ - 257674, - 192697, - 1092 - ], - [ - 257676, - 192741, - 1092 - ], - [ - 257680, - 192786, - 1092 - ], - [ - 257688, - 192829, - 1092 - ], - [ - 257698, - 192872, - 1092 - ], - [ - 257712, - 192915, - 1092 - ], - [ - 257728, - 192956, - 1092 - ], - [ - 257747, - 192996, - 1092 - ], - [ - 257769, - 193035, - 1092 - ], - [ - 257793, - 193072, - 1092 - ], - [ - 257820, - 193107, - 1092 - ], - [ - 257849, - 193141, - 1092 - ], - [ - 257880, - 193172, - 1092 - ], - [ - 257914, - 193201, - 1092 - ], - [ - 257949, - 193228, - 1092 - ], - [ - 257986, - 193252, - 1092 - ], - [ - 258025, - 193274, - 1092 - ], - [ - 258065, - 193293, - 1092 - ], - [ - 258106, - 193309, - 1092 - ], - [ - 258149, - 193323, - 1092 - ], - [ - 258583, - 192101, - 1092 - ], - [ - 257676, - 192653, - 1092 - ], - [ - 364887, - 43722, - 486 - ], - [ - 364521, - 43802, - 1745 - ], - [ - 364626, - 43389, - 3965 - ], - [ - 364733, - 43237, - 5728 - ], - [ - 364837, - 43369, - 423 - ], - [ - 365077, - 42944, - 252 - ], - [ - 364361, - 43333, - 384 - ], - [ - 364457, - 44002, - 487 - ], - [ - 365501, - 44336, - 282 - ], - [ - 365058, - 43077, - 4046 - ], - [ - 365203, - 43528, - 5240 - ], - [ - 364097, - 44761, - 292 - ], - [ - 363915, - 43641, - 375 - ], - [ - 363674, - 43372, - 1742 - ], - [ - 365268, - 43678, - 365 - ], - [ - 364003, - 44322, - 354 - ], - [ - 363674, - 43372, - 242 - ], - [ - 295902, - 67709, - 5024 - ], - [ - 295893, - 67663, - 561 - ], - [ - 296271, - 67519, - 450 - ], - [ - 295485, - 67085, - 545 - ], - [ - 295800, - 66979, - 530 - ], - [ - 295847, - 67315, - 563 - ], - [ - 295961, - 67239, - 11227 - ], - [ - 296320, - 67861, - 489 - ], - [ - 296636, - 68026, - 382 - ], - [ - 295989, - 68034, - 1208 - ], - [ - 295206, - 67582, - 522 - ], - [ - 295351, - 67128, - 7734 - ], - [ - 295724, - 67654, - 7323 - ], - [ - 295663, - 68448, - 523 - ], - [ - 295482, - 68409, - 7215 - ], - [ - 295628, - 67809, - 1161 - ], - [ - 295332, - 68550, - 507 - ], - [ - 295293, - 68236, - 536 - ], - [ - 295291, - 67684, - 5956 - ], - [ - 294609, - 67470, - 5142 - ], - [ - 294885, - 67672, - 545 - ], - [ - 295325, - 68735, - 392 - ], - [ - 295249, - 67902, - 537 - ], - [ - 295953, - 66770, - 6532 - ], - [ - 296061, - 67224, - 8003 - ], - [ - 294816, - 67401, - 8535 - ], - [ - 295047, - 67254, - 7709 - ], - [ - 295953, - 66770, - 362 - ], - [ - 294609, - 67470, - 432 - ], - [ - 256722, - 91600, - 5482 - ], - [ - 256652, - 91557, - 1206 - ], - [ - 256652, - 91509, - 1981 - ], - [ - 256359, - 92319, - 872 - ], - [ - 256543, - 92482, - 6225 - ], - [ - 256496, - 92563, - 608 - ], - [ - 256345, - 91334, - 1024 - ], - [ - 256499, - 91488, - 7458 - ], - [ - 256285, - 91700, - 1203 - ], - [ - 256986, - 92272, - 580 - ], - [ - 256302, - 92834, - 442 - ], - [ - 256446, - 91133, - 7383 - ], - [ - 256534, - 91097, - 566 - ], - [ - 256981, - 91947, - 1116 - ], - [ - 257208, - 91605, - 702 - ], - [ - 257554, - 92024, - 402 - ], - [ - 255851, - 91909, - 1239 - ], - [ - 256176, - 92078, - 1956 - ], - [ - 256385, - 91769, - 5377 - ], - [ - 256646, - 91755, - 705 - ], - [ - 256198, - 91251, - 516 - ], - [ - 256330, - 91207, - 844 - ], - [ - 256829, - 91315, - 714 - ], - [ - 255867, - 91423, - 491 - ], - [ - 255913, - 91412, - 1267 - ], - [ - 256738, - 90774, - 362 - ], - [ - 256964, - 91499, - 5506 - ], - [ - 256008, - 91609, - 6320 - ], - [ - 256480, - 92209, - 1054 - ], - [ - 256713, - 92078, - 1031 - ], - [ - 255489, - 91591, - 442 - ], - [ - 256490, - 91837, - 1542 - ], - [ - 256554, - 91914, - 2612 - ], - [ - 256995, - 91641, - 1858 - ], - [ - 361820, - 105822, - 640 - ], - [ - 361864, - 106152, - 652 - ], - [ - 361073, - 105833, - 645 - ], - [ - 361596, - 106475, - 703 - ], - [ - 361731, - 106050, - 3341 - ], - [ - 364565, - 78666, - 3366 - ], - [ - 364480, - 78308, - 2835 - ], - [ - 364390, - 78913, - 491 - ], - [ - 364815, - 78265, - 539 - ], - [ - 396568, - 76274, - 745 - ], - [ - 397435, - 76584, - 772 - ], - [ - 397765, - 77344, - 782 - ], - [ - 398167, - 76638, - 1015 - ], - [ - 398299, - 76594, - 772 - ], - [ - 397820, - 76793, - 1220 - ], - [ - 395530, - 75206, - 796 - ], - [ - 394220, - 74824, - 762 - ], - [ - 394753, - 74074, - 762 - ], - [ - 395574, - 75525, - 813 - ], - [ - 396522, - 75919, - 759 - ], - [ - 396093, - 75746, - 1147 - ], - [ - 270976, - 113378, - 2156 - ], - [ - 271173, - 113537, - 1132 - ], - [ - 270956, - 113760, - 1198 - ], - [ - 271759, - 112382, - 1007 - ], - [ - 271434, - 112058, - 2792 - ], - [ - 271806, - 112741, - 995 - ], - [ - 271345, - 112306, - 1075 - ], - [ - 271438, - 112980, - 1101 - ], - [ - 270861, - 113079, - 1138 - ], - [ - 271014, - 114085, - 1378 - ], - [ - 270715, - 113990, - 1153 - ], - [ - 269468, - 114916, - 2842 - ], - [ - 265583, - 120534, - 1612 - ], - [ - 270765, - 113593, - 2563 - ], - [ - 270488, - 114542, - 1187 - ], - [ - 270548, - 114871, - 1402 - ], - [ - 270123, - 114450, - 1244 - ], - [ - 271907, - 113413, - 1128 - ], - [ - 271500, - 113319, - 1316 - ], - [ - 271871, - 113048, - 1315 - ], - [ - 271294, - 113141, - 3482 - ], - [ - 270850, - 114300, - 2414 - ], - [ - 270230, - 115116, - 1476 - ], - [ - 269780, - 114687, - 1214 - ], - [ - 271580, - 113972, - 1210 - ], - [ - 266882, - 120711, - 891 - ], - [ - 266486, - 120930, - 884 - ], - [ - 270394, - 113891, - 1109 - ], - [ - 270072, - 114117, - 1161 - ], - [ - 270484, - 113484, - 3079 - ], - [ - 269830, - 115026, - 1280 - ], - [ - 271090, - 114796, - 1114 - ], - [ - 271133, - 115111, - 1119 - ], - [ - 270850, - 114996, - 1147 - ], - [ - 266677, - 119000, - 1245 - ], - [ - 267022, - 118459, - 1284 - ], - [ - 272254, - 112811, - 1082 - ], - [ - 269398, - 115297, - 1202 - ], - [ - 270596, - 115210, - 1440 - ], - [ - 270620, - 115555, - 1129 - ], - [ - 267493, - 119239, - 1235 - ], - [ - 267530, - 119558, - 1164 - ], - [ - 267174, - 119806, - 880 - ], - [ - 271985, - 113740, - 1586 - ], - [ - 266387, - 119932, - 1370 - ], - [ - 265986, - 120149, - 883 - ], - [ - 266307, - 119597, - 896 - ], - [ - 266057, - 120450, - 1284 - ], - [ - 266078, - 120825, - 892 - ], - [ - 266491, - 120573, - 1613 - ], - [ - 271620, - 114307, - 1143 - ], - [ - 271318, - 114538, - 1268 - ], - [ - 268317, - 118899, - 1219 - ], - [ - 268587, - 118384, - 1115 - ], - [ - 266791, - 120035, - 889 - ], - [ - 266886, - 120360, - 1591 - ], - [ - 266403, - 120267, - 969 - ], - [ - 271056, - 114431, - 1329 - ], - [ - 270816, - 114659, - 1300 - ], - [ - 266744, - 119693, - 889 - ], - [ - 267267, - 120103, - 1591 - ], - [ - 268542, - 118018, - 1174 - ], - [ - 268498, - 117677, - 1204 - ], - [ - 268845, - 117407, - 1768 - ], - [ - 269105, - 116545, - 1198 - ], - [ - 267265, - 120483, - 869 - ], - [ - 269153, - 116885, - 1237 - ], - [ - 269199, - 117217, - 1253 - ], - [ - 269571, - 116627, - 1115 - ], - [ - 269882, - 115387, - 1313 - ], - [ - 338073, - 87306, - 542 - ], - [ - 338454, - 87225, - 550 - ], - [ - 338178, - 86981, - 2605 - ], - [ - 338406, - 86865, - 539 - ], - [ - 337984, - 86633, - 542 - ], - [ - 306464, - 49630, - 586 - ], - [ - 307421, - 49556, - 492 - ], - [ - 306041, - 50155, - 462 - ], - [ - 305925, - 49088, - 602 - ], - [ - 306012, - 49748, - 591 - ], - [ - 305405, - 48703, - 512 - ], - [ - 306097, - 49333, - 8178 - ], - [ - 306929, - 49472, - 588 - ], - [ - 306769, - 48104, - 542 - ], - [ - 306374, - 48922, - 631 - ], - [ - 306387, - 49333, - 6429 - ], - [ - 306604, - 49488, - 2745 - ], - [ - 262536, - 88746, - 437 - ], - [ - 263387, - 88197, - 442 - ], - [ - 262174, - 89009, - 442 - ], - [ - 262031, - 88626, - 4922 - ], - [ - 261355, - 87756, - 4992 - ], - [ - 261947, - 87610, - 5638 - ], - [ - 262296, - 87422, - 5382 - ], - [ - 262337, - 88054, - 4778 - ], - [ - 262920, - 88195, - 1007 - ], - [ - 262582, - 87830, - 8524 - ], - [ - 262461, - 88071, - 661 - ], - [ - 262800, - 87555, - 6218 - ], - [ - 262919, - 87893, - 7215 - ], - [ - 262102, - 88629, - 525 - ], - [ - 262567, - 88463, - 7145 - ], - [ - 263225, - 87987, - 5550 - ], - [ - 262577, - 86958, - 392 - ], - [ - 262533, - 88401, - 1030 - ], - [ - 262082, - 88301, - 6219 - ], - [ - 262797, - 87512, - 592 - ], - [ - 261684, - 87878, - 1578 - ], - [ - 261587, - 87871, - 6209 - ], - [ - 261355, - 87756, - 352 - ], - [ - 398281, - 34000, - 805 - ], - [ - 398864, - 33963, - 741 - ], - [ - 397903, - 34575, - 672 - ], - [ - 398561, - 33387, - 792 - ], - [ - 398771, - 33273, - 716 - ], - [ - 398653, - 33571, - 6083 - ], - [ - 398776, - 33114, - 6639 - ], - [ - 398913, - 32727, - 672 - ], - [ - 399323, - 34142, - 712 - ], - [ - 398576, - 33627, - 3989 - ], - [ - 398475, - 33660, - 1901 - ], - [ - 398625, - 33629, - 3237 - ], - [ - 398816, - 33598, - 746 - ], - [ - 397923, - 33171, - 726 - ], - [ - 398303, - 33548, - 796 - ], - [ - 398121, - 33239, - 780 - ], - [ - 398258, - 33088, - 5616 - ], - [ - 398325, - 33121, - 772 - ], - [ - 398350, - 33034, - 742 - ], - [ - 398582, - 32967, - 766 - ], - [ - 397487, - 33141, - 652 - ], - [ - 398723, - 32908, - 728 - ], - [ - 398525, - 33685, - 1130 - ], - [ - 398781, - 33743, - 809 - ], - [ - 392180, - 71673, - 758 - ], - [ - 390736, - 72786, - 1335 - ], - [ - 391124, - 72233, - 1434 - ], - [ - 391166, - 72589, - 1351 - ], - [ - 390777, - 73106, - 1315 - ], - [ - 401339, - 75149, - 1246 - ], - [ - 396352, - 72095, - 716 - ], - [ - 396893, - 72211, - 1282 - ], - [ - 398118, - 73150, - 1355 - ], - [ - 394538, - 70987, - 757 - ], - [ - 392535, - 70009, - 643 - ], - [ - 391852, - 71197, - 1392 - ], - [ - 392922, - 70255, - 1388 - ], - [ - 392411, - 71169, - 763 - ], - [ - 393554, - 69955, - 1340 - ], - [ - 393968, - 69784, - 1370 - ], - [ - 394006, - 70137, - 1245 - ], - [ - 398541, - 73321, - 671 - ], - [ - 398496, - 72984, - 666 - ], - [ - 399047, - 73518, - 683 - ], - [ - 401127, - 75258, - 1289 - ], - [ - 400846, - 75040, - 1356 - ], - [ - 401089, - 74946, - 1340 - ], - [ - 400107, - 74600, - 1359 - ], - [ - 400059, - 74238, - 1354 - ], - [ - 400462, - 74473, - 1330 - ], - [ - 400771, - 74694, - 948 - ], - [ - 396267, - 71419, - 773 - ], - [ - 396528, - 71649, - 883 - ], - [ - 396347, - 71760, - 1274 - ], - [ - 399673, - 74401, - 1221 - ], - [ - 398074, - 72805, - 1381 - ], - [ - 397660, - 72625, - 1369 - ], - [ - 399539, - 73705, - 638 - ], - [ - 399089, - 73851, - 660 - ], - [ - 398587, - 73663, - 682 - ], - [ - 396605, - 72001, - 1313 - ], - [ - 397175, - 72076, - 948 - ], - [ - 392873, - 69895, - 1366 - ], - [ - 393145, - 69753, - 1351 - ], - [ - 393143, - 70047, - 761 - ], - [ - 393512, - 69612, - 1384 - ], - [ - 399625, - 74068, - 1175 - ], - [ - 394536, - 70669, - 1320 - ], - [ - 394993, - 70838, - 1369 - ], - [ - 392407, - 70861, - 1284 - ], - [ - 394012, - 70457, - 741 - ], - [ - 396853, - 71895, - 1307 - ], - [ - 395976, - 71578, - 1162 - ], - [ - 395935, - 71224, - 1254 - ], - [ - 395519, - 71364, - 1248 - ], - [ - 401253, - 74791, - 722 - ], - [ - 393057, - 69390, - 791 - ], - [ - 391548, - 72048, - 1328 - ], - [ - 392370, - 70548, - 1354 - ], - [ - 392178, - 71353, - 1348 - ], - [ - 394995, - 71176, - 767 - ], - [ - 391899, - 71553, - 1376 - ], - [ - 391915, - 71858, - 1041 - ], - [ - 344584, - 50090, - 396 - ], - [ - 344906, - 50147, - 4733 - ], - [ - 345031, - 50367, - 410 - ], - [ - 344263, - 50434, - 359 - ], - [ - 344333, - 50782, - 282 - ], - [ - 343910, - 49392, - 4312 - ], - [ - 344323, - 49970, - 6095 - ], - [ - 344707, - 49764, - 7726 - ], - [ - 345435, - 50352, - 386 - ], - [ - 345744, - 50343, - 282 - ], - [ - 345313, - 50417, - 4229 - ], - [ - 344241, - 49303, - 6182 - ], - [ - 344491, - 49404, - 355 - ], - [ - 344125, - 49402, - 345 - ], - [ - 344917, - 49341, - 6354 - ], - [ - 345297, - 49320, - 375 - ], - [ - 345355, - 49603, - 6300 - ], - [ - 344169, - 49724, - 365 - ], - [ - 345345, - 49671, - 396 - ], - [ - 345228, - 49764, - 4249 - ], - [ - 345323, - 48962, - 4662 - ], - [ - 344513, - 49270, - 5945 - ], - [ - 345205, - 49137, - 5082 - ], - [ - 345281, - 50096, - 4371 - ], - [ - 345397, - 50036, - 440 - ], - [ - 345323, - 48962, - 242 - ], - [ - 343910, - 49392, - 242 - ], - [ - 368583, - 81578, - 1674 - ], - [ - 368549, - 81912, - 591 - ], - [ - 352158, - 34843, - 942 - ], - [ - 352773, - 34833, - 919 - ], - [ - 351652, - 35205, - 902 - ], - [ - 352367, - 33777, - 5813 - ], - [ - 352650, - 33771, - 6098 - ], - [ - 352639, - 33820, - 913 - ], - [ - 352344, - 33805, - 898 - ], - [ - 352020, - 33812, - 917 - ], - [ - 352983, - 34599, - 942 - ], - [ - 353109, - 34868, - 812 - ], - [ - 353042, - 34859, - 849 - ], - [ - 352726, - 34545, - 948 - ], - [ - 353004, - 34547, - 889 - ], - [ - 352780, - 33623, - 920 - ], - [ - 351325, - 33781, - 912 - ], - [ - 351526, - 33811, - 6150 - ], - [ - 351663, - 34070, - 974 - ], - [ - 352759, - 33440, - 822 - ], - [ - 352524, - 33552, - 903 - ], - [ - 352834, - 34764, - 6017 - ], - [ - 352444, - 34491, - 4829 - ], - [ - 352420, - 34535, - 1582 - ], - [ - 352361, - 34513, - 2387 - ], - [ - 352073, - 34309, - 985 - ], - [ - 351885, - 34162, - 5813 - ], - [ - 351726, - 34088, - 5855 - ], - [ - 351861, - 34637, - 995 - ], - [ - 351870, - 34864, - 5487 - ], - [ - 352470, - 34388, - 1010 - ], - [ - 351911, - 33741, - 977 - ], - [ - 351887, - 34183, - 986 - ], - [ - 352254, - 34569, - 3819 - ], - [ - 352402, - 34668, - 4663 - ], - [ - 352319, - 34802, - 3256 - ], - [ - 352189, - 34606, - 1335 - ], - [ - 352143, - 34541, - 5340 - ], - [ - 352501, - 34517, - 4040 - ], - [ - 351994, - 34440, - 5531 - ], - [ - 352308, - 34534, - 3103 - ], - [ - 352228, - 34355, - 993 - ], - [ - 352460, - 34527, - 1191 - ], - [ - 408268, - 86397, - 1262 - ], - [ - 408685, - 85607, - 1206 - ], - [ - 409701, - 84724, - 790 - ], - [ - 409687, - 84371, - 1255 - ], - [ - 409943, - 84307, - 808 - ], - [ - 404677, - 84393, - 802 - ], - [ - 405192, - 84451, - 1231 - ], - [ - 405577, - 84679, - 759 - ], - [ - 409321, - 84416, - 754 - ], - [ - 408853, - 83820, - 828 - ], - [ - 406483, - 82620, - 1204 - ], - [ - 406574, - 81754, - 802 - ], - [ - 406760, - 82213, - 1211 - ], - [ - 406221, - 83078, - 1154 - ], - [ - 405731, - 83557, - 1234 - ], - [ - 405949, - 83163, - 1227 - ], - [ - 408319, - 87009, - 802 - ], - [ - 409074, - 85508, - 794 - ], - [ - 409062, - 85178, - 1259 - ], - [ - 409403, - 84779, - 1250 - ], - [ - 407245, - 82795, - 762 - ], - [ - 408373, - 83250, - 1202 - ], - [ - 409238, - 83742, - 847 - ], - [ - 410215, - 84370, - 802 - ], - [ - 405524, - 84041, - 1193 - ], - [ - 405124, - 84131, - 849 - ], - [ - 406169, - 82718, - 1084 - ], - [ - 405739, - 83881, - 742 - ], - [ - 406771, - 82538, - 762 - ], - [ - 409299, - 84104, - 1034 - ], - [ - 408834, - 83506, - 1147 - ], - [ - 405652, - 83207, - 779 - ], - [ - 409640, - 84050, - 1193 - ], - [ - 398252, - 23053, - 837 - ], - [ - 398263, - 23168, - 8837 - ], - [ - 398149, - 23176, - 7549 - ], - [ - 398032, - 23420, - 799 - ], - [ - 398116, - 23817, - 4742 - ], - [ - 397780, - 22346, - 752 - ], - [ - 398219, - 23506, - 6269 - ], - [ - 398316, - 23670, - 850 - ], - [ - 398302, - 23593, - 11725 - ], - [ - 398296, - 23393, - 824 - ], - [ - 398370, - 23484, - 4013 - ], - [ - 399246, - 22432, - 873 - ], - [ - 399016, - 22494, - 8534 - ], - [ - 399081, - 22248, - 908 - ], - [ - 398881, - 22987, - 5403 - ], - [ - 398880, - 22893, - 975 - ], - [ - 399110, - 22995, - 9724 - ], - [ - 399374, - 23459, - 767 - ], - [ - 399599, - 23429, - 4772 - ], - [ - 399245, - 23509, - 11667 - ], - [ - 398052, - 22884, - 878 - ], - [ - 398377, - 22845, - 4364 - ], - [ - 398323, - 23593, - 4651 - ], - [ - 398639, - 23638, - 783 - ], - [ - 398338, - 23735, - 766 - ], - [ - 399181, - 23537, - 5291 - ], - [ - 398688, - 23359, - 6062 - ], - [ - 398582, - 23303, - 7707 - ], - [ - 398741, - 23345, - 5265 - ], - [ - 398578, - 23499, - 858 - ], - [ - 398471, - 23310, - 5592 - ], - [ - 398954, - 23535, - 811 - ], - [ - 399038, - 23227, - 868 - ], - [ - 399220, - 23365, - 4812 - ], - [ - 399478, - 23383, - 888 - ], - [ - 399110, - 23196, - 6592 - ], - [ - 399066, - 23135, - 10295 - ], - [ - 398338, - 23199, - 865 - ], - [ - 398259, - 23356, - 5775 - ], - [ - 398857, - 22825, - 3890 - ], - [ - 398863, - 22909, - 7329 - ], - [ - 398913, - 23210, - 838 - ], - [ - 398823, - 22450, - 889 - ], - [ - 398822, - 22520, - 847 - ], - [ - 399335, - 23120, - 850 - ], - [ - 399287, - 22755, - 861 - ], - [ - 399060, - 22758, - 864 - ], - [ - 399005, - 22782, - 5264 - ], - [ - 398206, - 22702, - 833 - ], - [ - 398523, - 22968, - 4810 - ], - [ - 398558, - 22963, - 904 - ], - [ - 398655, - 23600, - 6389 - ], - [ - 398815, - 22999, - 7989 - ], - [ - 398074, - 22414, - 881 - ], - [ - 398379, - 22309, - 888 - ], - [ - 398370, - 22576, - 7648 - ], - [ - 398799, - 22668, - 4872 - ], - [ - 398746, - 22611, - 5726 - ], - [ - 398595, - 22835, - 4058 - ], - [ - 398586, - 22882, - 1185 - ], - [ - 398741, - 22776, - 1898 - ], - [ - 398645, - 22827, - 3310 - ], - [ - 398620, - 22612, - 878 - ], - [ - 398712, - 22968, - 3065 - ], - [ - 398794, - 22792, - 1078 - ], - [ - 398550, - 22950, - 4650 - ], - [ - 398907, - 22801, - 3166 - ], - [ - 398096, - 22723, - 4852 - ], - [ - 397934, - 22786, - 841 - ], - [ - 398078, - 23206, - 4768 - ], - [ - 398065, - 22982, - 6136 - ], - [ - 397949, - 22733, - 7045 - ], - [ - 397889, - 22442, - 835 - ], - [ - 398359, - 22755, - 856 - ], - [ - 399280, - 22719, - 4358 - ], - [ - 399282, - 23046, - 885 - ], - [ - 398773, - 22249, - 5255 - ], - [ - 399301, - 22603, - 911 - ], - [ - 397977, - 23130, - 797 - ], - [ - 397977, - 23105, - 4642 - ], - [ - 398774, - 22155, - 869 - ], - [ - 399227, - 21986, - 1802 - ], - [ - 398601, - 22847, - 6134 - ], - [ - 399413, - 23053, - 5079 - ], - [ - 399227, - 21986, - 802 - ], - [ - 399599, - 23429, - 782 - ], - [ - 398116, - 23817, - 712 - ], - [ - 358688, - 146545, - 911 - ], - [ - 358731, - 145682, - 732 - ], - [ - 359177, - 146855, - 892 - ], - [ - 358817, - 147598, - 757 - ], - [ - 359882, - 146809, - 752 - ], - [ - 358923, - 146914, - 3493 - ], - [ - 358760, - 147980, - 692 - ], - [ - 358766, - 146790, - 1555 - ], - [ - 357583, - 146827, - 672 - ], - [ - 358263, - 146915, - 812 - ], - [ - 353878, - 149392, - 731 - ], - [ - 354545, - 149938, - 732 - ], - [ - 353617, - 150909, - 752 - ], - [ - 353251, - 149497, - 725 - ], - [ - 352672, - 149999, - 752 - ], - [ - 353590, - 149029, - 1632 - ], - [ - 353590, - 149029, - 722 - ], - [ - 378162, - 39687, - 716 - ], - [ - 379040, - 40227, - 272 - ], - [ - 377620, - 40670, - 262 - ], - [ - 377657, - 39440, - 340 - ], - [ - 377187, - 39250, - 242 - ], - [ - 378610, - 38816, - 252 - ], - [ - 371046, - 41647, - 417 - ], - [ - 371484, - 41603, - 465 - ], - [ - 370921, - 42697, - 272 - ], - [ - 370552, - 41385, - 313 - ], - [ - 370493, - 41292, - 4262 - ], - [ - 371322, - 41467, - 4625 - ], - [ - 371440, - 41279, - 456 - ], - [ - 370873, - 41507, - 4584 - ], - [ - 371003, - 41328, - 411 - ], - [ - 371909, - 41157, - 367 - ], - [ - 372310, - 42264, - 262 - ], - [ - 371884, - 40867, - 232 - ], - [ - 370493, - 41292, - 312 - ], - [ - 208520, - 109410, - 9285 - ], - [ - 209550, - 108771, - 3452 - ], - [ - 208333, - 109567, - 802 - ], - [ - 208223, - 107973, - 832 - ], - [ - 208672, - 108111, - 811 - ], - [ - 208596, - 108179, - 9973 - ], - [ - 208847, - 108796, - 8397 - ], - [ - 208953, - 108839, - 9009 - ], - [ - 208783, - 108971, - 8639 - ], - [ - 209122, - 108544, - 789 - ], - [ - 209126, - 108376, - 6244 - ], - [ - 209387, - 108566, - 6404 - ], - [ - 208573, - 108599, - 8215 - ], - [ - 208494, - 108223, - 842 - ], - [ - 208717, - 108424, - 834 - ], - [ - 208677, - 107555, - 732 - ], - [ - 209164, - 108866, - 749 - ], - [ - 209174, - 108889, - 10977 - ], - [ - 209070, - 108378, - 5515 - ], - [ - 208840, - 108509, - 7618 - ], - [ - 208811, - 108461, - 871 - ], - [ - 209169, - 108735, - 838 - ], - [ - 207921, - 108885, - 861 - ], - [ - 207526, - 108330, - 822 - ], - [ - 208682, - 108930, - 8075 - ], - [ - 208702, - 109141, - 843 - ], - [ - 208811, - 109129, - 779 - ], - [ - 208273, - 108333, - 820 - ], - [ - 208219, - 108332, - 8180 - ], - [ - 207913, - 108101, - 8143 - ], - [ - 209434, - 108623, - 761 - ], - [ - 208754, - 108694, - 3461 - ], - [ - 208414, - 109326, - 859 - ], - [ - 208642, - 109167, - 9022 - ], - [ - 208308, - 109016, - 7300 - ], - [ - 208372, - 109120, - 964 - ], - [ - 208191, - 109271, - 7453 - ], - [ - 208380, - 108568, - 862 - ], - [ - 208866, - 108690, - 4939 - ], - [ - 208771, - 108781, - 891 - ], - [ - 208186, - 108723, - 1286 - ], - [ - 208365, - 108743, - 7150 - ], - [ - 208857, - 108580, - 6638 - ], - [ - 209073, - 108187, - 807 - ], - [ - 208324, - 108674, - 875 - ], - [ - 208041, - 108307, - 898 - ], - [ - 208641, - 108752, - 1078 - ], - [ - 208517, - 108829, - 7643 - ], - [ - 208371, - 109010, - 876 - ], - [ - 207830, - 108230, - 857 - ], - [ - 208052, - 108880, - 894 - ], - [ - 208711, - 108709, - 2672 - ], - [ - 209550, - 108771, - 712 - ], - [ - 400522, - 77964, - 922 - ], - [ - 399993, - 80589, - 819 - ], - [ - 403353, - 77673, - 807 - ], - [ - 403305, - 77314, - 801 - ], - [ - 404316, - 78072, - 777 - ], - [ - 407871, - 87493, - 812 - ], - [ - 407795, - 86796, - 1048 - ], - [ - 402399, - 77562, - 784 - ], - [ - 403221, - 77266, - 6086 - ], - [ - 403054, - 77505, - 3291 - ], - [ - 404330, - 85054, - 796 - ], - [ - 405791, - 86037, - 1241 - ], - [ - 403336, - 84625, - 799 - ], - [ - 404095, - 83033, - 1241 - ], - [ - 404810, - 81771, - 828 - ], - [ - 400579, - 81439, - 835 - ], - [ - 400536, - 81121, - 819 - ], - [ - 400989, - 81295, - 1278 - ], - [ - 401225, - 80516, - 813 - ], - [ - 401305, - 80869, - 1273 - ], - [ - 400346, - 79449, - 1275 - ], - [ - 400599, - 78605, - 806 - ], - [ - 400675, - 78935, - 1259 - ], - [ - 405648, - 81129, - 779 - ], - [ - 406416, - 79861, - 770 - ], - [ - 412725, - 84470, - 776 - ], - [ - 413691, - 86000, - 776 - ], - [ - 413417, - 86437, - 750 - ], - [ - 412031, - 86652, - 765 - ], - [ - 411275, - 87167, - 767 - ], - [ - 406947, - 86342, - 814 - ], - [ - 404520, - 82917, - 811 - ], - [ - 404508, - 82564, - 1300 - ], - [ - 404897, - 82442, - 798 - ], - [ - 405746, - 79696, - 777 - ], - [ - 406072, - 79482, - 5756 - ], - [ - 406056, - 79627, - 778 - ], - [ - 412637, - 83824, - 748 - ], - [ - 405380, - 79100, - 783 - ], - [ - 407429, - 80342, - 769 - ], - [ - 407522, - 81041, - 774 - ], - [ - 408242, - 80958, - 3669 - ], - [ - 408496, - 81142, - 789 - ], - [ - 411144, - 83057, - 783 - ], - [ - 411777, - 83311, - 3439 - ], - [ - 411185, - 83373, - 772 - ], - [ - 413921, - 85282, - 787 - ], - [ - 414176, - 85639, - 3744 - ], - [ - 414286, - 85562, - 730 - ], - [ - 411233, - 83732, - 771 - ], - [ - 412150, - 83867, - 764 - ], - [ - 412110, - 83550, - 783 - ], - [ - 401157, - 77699, - 788 - ], - [ - 412597, - 87244, - 759 - ], - [ - 411849, - 83672, - 3788 - ], - [ - 408922, - 81398, - 760 - ], - [ - 411813, - 88073, - 840 - ], - [ - 402268, - 76596, - 749 - ], - [ - 401207, - 78047, - 849 - ], - [ - 400946, - 78169, - 1256 - ], - [ - 400997, - 78529, - 1303 - ], - [ - 400691, - 79282, - 844 - ], - [ - 410339, - 87318, - 792 - ], - [ - 411334, - 87484, - 1000 - ], - [ - 405162, - 81339, - 1127 - ], - [ - 405430, - 81522, - 791 - ], - [ - 405209, - 81683, - 1153 - ], - [ - 405423, - 81216, - 1253 - ], - [ - 406387, - 86509, - 1170 - ], - [ - 406050, - 86223, - 763 - ], - [ - 407916, - 87829, - 806 - ], - [ - 400656, - 81806, - 1239 - ], - [ - 400911, - 80951, - 830 - ], - [ - 406310, - 86149, - 764 - ], - [ - 405304, - 85478, - 888 - ], - [ - 400223, - 82266, - 914 - ], - [ - 400744, - 82466, - 1258 - ], - [ - 401581, - 83219, - 781 - ], - [ - 402380, - 83195, - 918 - ], - [ - 403208, - 83649, - 801 - ], - [ - 402433, - 83527, - 1034 - ], - [ - 401947, - 83433, - 1244 - ], - [ - 402168, - 83311, - 957 - ], - [ - 403749, - 83834, - 1260 - ], - [ - 403761, - 84169, - 795 - ], - [ - 401869, - 83084, - 783 - ], - [ - 403324, - 84302, - 1225 - ], - [ - 403256, - 83982, - 866 - ], - [ - 401169, - 82673, - 1244 - ], - [ - 412195, - 87655, - 1205 - ], - [ - 407416, - 87239, - 1087 - ], - [ - 411682, - 87089, - 835 - ], - [ - 404883, - 82109, - 1242 - ], - [ - 404134, - 83346, - 1204 - ], - [ - 401090, - 82308, - 814 - ], - [ - 400671, - 82145, - 816 - ], - [ - 405226, - 82005, - 793 - ], - [ - 404855, - 85262, - 1164 - ], - [ - 404813, - 84919, - 1214 - ], - [ - 400361, - 79797, - 838 - ], - [ - 399979, - 80244, - 1263 - ], - [ - 401004, - 78829, - 839 - ], - [ - 404151, - 83696, - 808 - ], - [ - 402472, - 83869, - 942 - ], - [ - 402110, - 82959, - 788 - ], - [ - 411753, - 87405, - 1251 - ], - [ - 412106, - 87012, - 1146 - ], - [ - 411798, - 87764, - 1215 - ], - [ - 411366, - 87842, - 778 - ], - [ - 399935, - 79925, - 1239 - ], - [ - 399445, - 80059, - 820 - ], - [ - 411421, - 88181, - 924 - ], - [ - 400174, - 81946, - 828 - ], - [ - 407372, - 86910, - 1081 - ], - [ - 365872, - 31658, - 7083 - ], - [ - 365922, - 31594, - 6442 - ], - [ - 366212, - 31580, - 7133 - ], - [ - 366216, - 31397, - 557 - ], - [ - 366060, - 31508, - 611 - ], - [ - 365948, - 31134, - 6427 - ], - [ - 366052, - 30868, - 9807 - ], - [ - 366083, - 31062, - 626 - ], - [ - 366260, - 31405, - 6612 - ], - [ - 366354, - 31686, - 452 - ], - [ - 365349, - 31171, - 5874 - ], - [ - 365361, - 31369, - 987 - ], - [ - 365310, - 31399, - 6243 - ], - [ - 366111, - 30935, - 8955 - ], - [ - 365570, - 31752, - 7078 - ], - [ - 365607, - 31485, - 6767 - ], - [ - 365703, - 31598, - 9397 - ], - [ - 365715, - 31555, - 634 - ], - [ - 364670, - 30806, - 6614 - ], - [ - 364620, - 30918, - 7226 - ], - [ - 364501, - 30603, - 552 - ], - [ - 365737, - 31095, - 678 - ], - [ - 365629, - 30744, - 624 - ], - [ - 364597, - 30951, - 609 - ], - [ - 364845, - 31108, - 610 - ], - [ - 365580, - 30375, - 612 - ], - [ - 365942, - 30216, - 522 - ], - [ - 365764, - 30612, - 657 - ], - [ - 365305, - 31775, - 587 - ], - [ - 365424, - 31434, - 4664 - ], - [ - 364872, - 30835, - 641 - ], - [ - 364801, - 30788, - 601 - ], - [ - 365792, - 31318, - 8404 - ], - [ - 365065, - 31680, - 625 - ], - [ - 365266, - 31454, - 629 - ], - [ - 365022, - 30559, - 6192 - ], - [ - 364869, - 30744, - 8133 - ], - [ - 365288, - 31845, - 6212 - ], - [ - 365718, - 31430, - 605 - ], - [ - 365157, - 30489, - 6060 - ], - [ - 365165, - 30847, - 8591 - ], - [ - 365223, - 31118, - 641 - ], - [ - 365089, - 31192, - 655 - ], - [ - 365515, - 30988, - 4927 - ], - [ - 365399, - 31124, - 674 - ], - [ - 365175, - 30760, - 622 - ], - [ - 365116, - 30707, - 646 - ], - [ - 365424, - 30671, - 657 - ], - [ - 364929, - 30793, - 7278 - ], - [ - 365649, - 31269, - 6353 - ], - [ - 365479, - 31434, - 3918 - ], - [ - 365529, - 31302, - 3343 - ], - [ - 365014, - 31232, - 5811 - ], - [ - 365584, - 31222, - 2660 - ], - [ - 364889, - 31449, - 600 - ], - [ - 366165, - 31028, - 523 - ], - [ - 365758, - 31770, - 532 - ], - [ - 365673, - 31069, - 641 - ], - [ - 364842, - 32061, - 502 - ], - [ - 405848, - 92968, - 765 - ], - [ - 405803, - 92632, - 760 - ], - [ - 406316, - 93195, - 739 - ], - [ - 397226, - 84471, - 828 - ], - [ - 397597, - 84002, - 838 - ], - [ - 401568, - 85663, - 1308 - ], - [ - 401893, - 85562, - 828 - ], - [ - 401970, - 85898, - 1298 - ], - [ - 396633, - 86764, - 841 - ], - [ - 401776, - 91647, - 5308 - ], - [ - 401468, - 88166, - 828 - ], - [ - 401001, - 87972, - 1238 - ], - [ - 401421, - 87809, - 826 - ], - [ - 402261, - 88238, - 1028 - ], - [ - 402204, - 87921, - 815 - ], - [ - 405181, - 87934, - 763 - ], - [ - 404710, - 87730, - 1150 - ], - [ - 405137, - 87616, - 747 - ], - [ - 408809, - 90763, - 735 - ], - [ - 406992, - 89100, - 793 - ], - [ - 406714, - 89179, - 793 - ], - [ - 404028, - 93145, - 797 - ], - [ - 403940, - 92494, - 765 - ], - [ - 404359, - 92347, - 774 - ], - [ - 400566, - 84937, - 781 - ], - [ - 400051, - 84410, - 1252 - ], - [ - 400526, - 84623, - 808 - ], - [ - 400431, - 90277, - 1954 - ], - [ - 400856, - 90480, - 1251 - ], - [ - 400422, - 90591, - 1246 - ], - [ - 397658, - 87492, - 1275 - ], - [ - 395287, - 86201, - 838 - ], - [ - 399095, - 83698, - 922 - ], - [ - 399164, - 84018, - 1285 - ], - [ - 398798, - 84196, - 1208 - ], - [ - 395688, - 86059, - 1345 - ], - [ - 395282, - 85888, - 1353 - ], - [ - 398053, - 84893, - 842 - ], - [ - 398460, - 84285, - 848 - ], - [ - 398415, - 83965, - 820 - ], - [ - 402487, - 91834, - 8361 - ], - [ - 402888, - 92345, - 7463 - ], - [ - 404962, - 93223, - 832 - ], - [ - 405420, - 93103, - 1115 - ], - [ - 402150, - 90832, - 5478 - ], - [ - 401786, - 90508, - 924 - ], - [ - 402597, - 91024, - 5821 - ], - [ - 403118, - 91562, - 6940 - ], - [ - 402713, - 91346, - 6858 - ], - [ - 402254, - 91528, - 5632 - ], - [ - 402248, - 91169, - 6226 - ], - [ - 403398, - 92705, - 784 - ], - [ - 403619, - 92599, - 833 - ], - [ - 402749, - 92041, - 6059 - ], - [ - 402674, - 91686, - 5658 - ], - [ - 403311, - 92578, - 7771 - ], - [ - 403638, - 92448, - 8302 - ], - [ - 403950, - 92254, - 6120 - ], - [ - 403276, - 92225, - 7921 - ], - [ - 403671, - 92337, - 5313 - ], - [ - 400129, - 90401, - 2950 - ], - [ - 400072, - 90068, - 2774 - ], - [ - 401638, - 91334, - 3941 - ], - [ - 401703, - 91002, - 5490 - ], - [ - 400992, - 91126, - 1956 - ], - [ - 398449, - 89383, - 2813 - ], - [ - 399362, - 89993, - 2909 - ], - [ - 401465, - 90669, - 2746 - ], - [ - 403873, - 91921, - 5654 - ], - [ - 403667, - 92007, - 5870 - ], - [ - 401275, - 90313, - 733 - ], - [ - 400917, - 90812, - 1502 - ], - [ - 398942, - 89122, - 2347 - ], - [ - 398396, - 89071, - 2656 - ], - [ - 403473, - 92128, - 6576 - ], - [ - 403216, - 91889, - 7702 - ], - [ - 397421, - 88651, - 2351 - ], - [ - 398694, - 88891, - 2421 - ], - [ - 398662, - 88562, - 2593 - ], - [ - 398789, - 88780, - 823 - ], - [ - 398354, - 88713, - 2728 - ], - [ - 398175, - 88366, - 846 - ], - [ - 397714, - 88162, - 819 - ], - [ - 399077, - 88984, - 786 - ], - [ - 399053, - 88670, - 1030 - ], - [ - 397899, - 88531, - 2726 - ], - [ - 397938, - 88844, - 2701 - ], - [ - 398755, - 88447, - 967 - ], - [ - 399844, - 89415, - 792 - ], - [ - 399483, - 89543, - 868 - ], - [ - 399435, - 89226, - 787 - ], - [ - 400332, - 89943, - 1183 - ], - [ - 399887, - 89749, - 771 - ], - [ - 400259, - 89608, - 804 - ], - [ - 399700, - 90217, - 2654 - ], - [ - 399248, - 89320, - 2571 - ], - [ - 399291, - 89663, - 2529 - ], - [ - 399641, - 89872, - 2480 - ], - [ - 400777, - 90136, - 779 - ], - [ - 399832, - 89074, - 1254 - ], - [ - 400213, - 89248, - 803 - ], - [ - 400600, - 88791, - 795 - ], - [ - 399009, - 89453, - 2674 - ], - [ - 397180, - 87636, - 839 - ], - [ - 398522, - 88215, - 1252 - ], - [ - 398145, - 88035, - 1043 - ], - [ - 398800, - 89594, - 2613 - ], - [ - 395562, - 85380, - 839 - ], - [ - 396069, - 85916, - 873 - ], - [ - 396449, - 85112, - 1325 - ], - [ - 396823, - 84940, - 845 - ], - [ - 395603, - 85714, - 796 - ], - [ - 396056, - 85573, - 1327 - ], - [ - 405660, - 88175, - 862 - ], - [ - 401101, - 85138, - 1304 - ], - [ - 400203, - 88933, - 1258 - ], - [ - 400590, - 88456, - 1285 - ], - [ - 396730, - 84266, - 797 - ], - [ - 397217, - 84143, - 1312 - ], - [ - 403185, - 86776, - 807 - ], - [ - 402559, - 86342, - 818 - ], - [ - 402775, - 86228, - 823 - ], - [ - 398547, - 84960, - 837 - ], - [ - 398535, - 84622, - 1278 - ], - [ - 399581, - 84237, - 1271 - ], - [ - 399502, - 83870, - 834 - ], - [ - 403427, - 91792, - 6548 - ], - [ - 397670, - 87821, - 830 - ], - [ - 401015, - 88309, - 806 - ], - [ - 401888, - 88335, - 826 - ], - [ - 399588, - 84540, - 813 - ], - [ - 404724, - 88047, - 752 - ], - [ - 404224, - 87492, - 1136 - ], - [ - 402012, - 86215, - 1288 - ], - [ - 406455, - 89284, - 778 - ], - [ - 406441, - 88927, - 1243 - ], - [ - 406169, - 89053, - 947 - ], - [ - 405727, - 88497, - 1220 - ], - [ - 405234, - 88268, - 877 - ], - [ - 402275, - 86130, - 855 - ], - [ - 403676, - 86974, - 1192 - ], - [ - 404165, - 87172, - 899 - ], - [ - 397145, - 83822, - 898 - ], - [ - 397583, - 83669, - 1267 - ], - [ - 398333, - 85097, - 1267 - ], - [ - 396814, - 84629, - 1309 - ], - [ - 395972, - 85235, - 779 - ], - [ - 408011, - 91941, - 670 - ], - [ - 396110, - 86246, - 827 - ], - [ - 399179, - 84372, - 829 - ], - [ - 401378, - 87492, - 816 - ], - [ - 409310, - 90643, - 580 - ], - [ - 408871, - 91094, - 977 - ], - [ - 405903, - 93282, - 960 - ], - [ - 397156, - 87302, - 1126 - ], - [ - 257660, - 76766, - 474 - ], - [ - 258320, - 76390, - 382 - ], - [ - 256272, - 77590, - 5082 - ], - [ - 257463, - 75582, - 8736 - ], - [ - 257533, - 75828, - 489 - ], - [ - 257368, - 75687, - 9317 - ], - [ - 258098, - 76512, - 10150 - ], - [ - 257929, - 76304, - 452 - ], - [ - 256827, - 77082, - 5075 - ], - [ - 256897, - 76894, - 503 - ], - [ - 256989, - 76978, - 8798 - ], - [ - 257143, - 76487, - 5011 - ], - [ - 256856, - 76576, - 518 - ], - [ - 256835, - 76510, - 753 - ], - [ - 256986, - 76820, - 4629 - ], - [ - 256816, - 76766, - 10072 - ], - [ - 257717, - 76034, - 513 - ], - [ - 257883, - 75959, - 463 - ], - [ - 256618, - 76789, - 511 - ], - [ - 257170, - 75717, - 494 - ], - [ - 257524, - 75098, - 422 - ], - [ - 257484, - 75481, - 474 - ], - [ - 256805, - 76216, - 486 - ], - [ - 256237, - 76497, - 502 - ], - [ - 255525, - 76325, - 402 - ], - [ - 257849, - 76483, - 7500 - ], - [ - 257836, - 75626, - 438 - ], - [ - 256836, - 76840, - 2427 - ], - [ - 256781, - 76988, - 5083 - ], - [ - 255944, - 76620, - 437 - ], - [ - 255571, - 76400, - 450 - ], - [ - 256274, - 76845, - 10386 - ], - [ - 256280, - 76944, - 470 - ], - [ - 256224, - 77417, - 501 - ], - [ - 256363, - 76973, - 9417 - ], - [ - 256456, - 77106, - 446 - ], - [ - 256494, - 77437, - 345 - ], - [ - 256984, - 77074, - 452 - ], - [ - 257055, - 76936, - 10281 - ], - [ - 257151, - 76869, - 5909 - ], - [ - 256933, - 76874, - 3092 - ], - [ - 256952, - 76843, - 3831 - ], - [ - 257574, - 76383, - 507 - ], - [ - 257620, - 76500, - 446 - ], - [ - 257331, - 76456, - 7888 - ], - [ - 257503, - 75915, - 7296 - ], - [ - 257435, - 76066, - 524 - ], - [ - 257374, - 75770, - 525 - ], - [ - 257302, - 76696, - 504 - ], - [ - 257298, - 76184, - 5468 - ], - [ - 257092, - 76286, - 7668 - ], - [ - 257182, - 76081, - 523 - ], - [ - 257360, - 75734, - 8460 - ], - [ - 257073, - 75787, - 529 - ], - [ - 257087, - 76861, - 5244 - ], - [ - 257654, - 75806, - 7493 - ], - [ - 257858, - 75801, - 6046 - ], - [ - 257686, - 75597, - 7218 - ], - [ - 257785, - 76337, - 492 - ], - [ - 257258, - 76377, - 475 - ], - [ - 257464, - 76235, - 6741 - ], - [ - 257259, - 76456, - 511 - ], - [ - 257201, - 76486, - 5759 - ], - [ - 257669, - 75660, - 497 - ], - [ - 257606, - 75624, - 5809 - ], - [ - 257601, - 76305, - 7298 - ], - [ - 257495, - 76009, - 5655 - ], - [ - 257579, - 76184, - 470 - ], - [ - 257260, - 76488, - 6467 - ], - [ - 256928, - 77126, - 5621 - ], - [ - 256643, - 77222, - 460 - ], - [ - 257132, - 76753, - 7565 - ], - [ - 256619, - 77364, - 6288 - ], - [ - 256272, - 77590, - 352 - ], - [ - 319504, - 44408, - 974 - ], - [ - 318764, - 44853, - 874 - ], - [ - 319117, - 44138, - 1103 - ], - [ - 317833, - 43577, - 832 - ], - [ - 319570, - 44456, - 6877 - ], - [ - 319792, - 44507, - 922 - ], - [ - 318349, - 45064, - 852 - ], - [ - 319228, - 43038, - 922 - ], - [ - 319414, - 43727, - 991 - ], - [ - 319459, - 44066, - 992 - ], - [ - 319441, - 44005, - 5918 - ], - [ - 290189, - 71039, - 831 - ], - [ - 290865, - 71171, - 412 - ], - [ - 289513, - 71907, - 392 - ], - [ - 289324, - 71513, - 433 - ], - [ - 288857, - 70586, - 6222 - ], - [ - 289345, - 70694, - 7806 - ], - [ - 289900, - 70918, - 3070 - ], - [ - 289743, - 71111, - 625 - ], - [ - 289672, - 70265, - 7285 - ], - [ - 290119, - 70660, - 575 - ], - [ - 290469, - 70563, - 586 - ], - [ - 290292, - 70586, - 8899 - ], - [ - 290316, - 70296, - 9736 - ], - [ - 290167, - 69875, - 7282 - ], - [ - 289909, - 71017, - 9104 - ], - [ - 290095, - 70767, - 5951 - ], - [ - 290069, - 70308, - 546 - ], - [ - 289362, - 70410, - 8536 - ], - [ - 289242, - 70842, - 528 - ], - [ - 290167, - 69875, - 452 - ], - [ - 288857, - 70586, - 342 - ], - [ - 351664, - 48517, - 370 - ], - [ - 351943, - 48471, - 292 - ], - [ - 350543, - 48895, - 292 - ], - [ - 351016, - 48572, - 412 - ], - [ - 351440, - 48468, - 6437 - ], - [ - 350708, - 47930, - 458 - ], - [ - 350439, - 47532, - 6244 - ], - [ - 350711, - 47722, - 4867 - ], - [ - 351266, - 48205, - 467 - ], - [ - 351392, - 48129, - 6393 - ], - [ - 350663, - 47571, - 491 - ], - [ - 351606, - 48306, - 4966 - ], - [ - 351724, - 48165, - 6849 - ], - [ - 351595, - 47745, - 5835 - ], - [ - 351288, - 47168, - 6703 - ], - [ - 350119, - 47501, - 252 - ], - [ - 351227, - 47646, - 4994 - ], - [ - 351580, - 47858, - 425 - ], - [ - 351367, - 47532, - 7134 - ], - [ - 351483, - 47167, - 350 - ], - [ - 351518, - 47075, - 5202 - ], - [ - 350748, - 48245, - 436 - ], - [ - 350743, - 48025, - 4758 - ], - [ - 350512, - 48618, - 454 - ], - [ - 350975, - 48215, - 492 - ], - [ - 351518, - 47075, - 252 - ], - [ - 444200, - 50096, - 2060 - ], - [ - 444255, - 50187, - 2012 - ], - [ - 444132, - 50068, - 2022 - ], - [ - 444166, - 49786, - 2149 - ], - [ - 444009, - 49948, - 2032 - ], - [ - 444557, - 49698, - 2113 - ], - [ - 444520, - 49369, - 2187 - ], - [ - 445112, - 49326, - 1982 - ], - [ - 444839, - 49120, - 7107 - ], - [ - 444867, - 49086, - 2012 - ], - [ - 444989, - 49206, - 2002 - ], - [ - 444745, - 48965, - 2042 - ], - [ - 444502, - 48723, - 2052 - ], - [ - 444623, - 48844, - 2042 - ], - [ - 444121, - 49260, - 6741 - ], - [ - 444040, - 48775, - 2233 - ], - [ - 444381, - 48601, - 2062 - ], - [ - 443832, - 49544, - 2175 - ], - [ - 443502, - 49337, - 2201 - ], - [ - 443793, - 49230, - 2208 - ], - [ - 443524, - 49463, - 2052 - ], - [ - 443644, - 49585, - 2052 - ], - [ - 444455, - 49499, - 6700 - ], - [ - 443887, - 49828, - 2052 - ], - [ - 444534, - 49857, - 7169 - ], - [ - 443766, - 49707, - 2052 - ], - [ - 444261, - 48479, - 2062 - ], - [ - 443404, - 49341, - 2062 - ], - [ - 357691, - 46075, - 534 - ], - [ - 358651, - 46461, - 292 - ], - [ - 357235, - 46901, - 292 - ], - [ - 357200, - 45379, - 340 - ], - [ - 357902, - 45385, - 473 - ], - [ - 357643, - 45712, - 532 - ], - [ - 358217, - 45035, - 4112 - ], - [ - 358119, - 45084, - 838 - ], - [ - 357874, - 45159, - 4752 - ], - [ - 357960, - 45723, - 679 - ], - [ - 358179, - 45729, - 485 - ], - [ - 356798, - 45467, - 252 - ], - [ - 358498, - 46091, - 386 - ], - [ - 357870, - 45720, - 3668 - ], - [ - 358154, - 45142, - 4424 - ], - [ - 358183, - 45463, - 1022 - ], - [ - 358217, - 45035, - 262 - ], - [ - 313265, - 59661, - 2739 - ], - [ - 313687, - 59589, - 501 - ], - [ - 313132, - 59823, - 604 - ], - [ - 313359, - 59004, - 472 - ], - [ - 313213, - 58862, - 5692 - ], - [ - 313421, - 58788, - 5882 - ], - [ - 313067, - 59112, - 6831 - ], - [ - 313036, - 59158, - 496 - ], - [ - 313005, - 58936, - 5692 - ], - [ - 313408, - 59353, - 497 - ], - [ - 312798, - 59010, - 5692 - ], - [ - 312597, - 59470, - 5693 - ], - [ - 312675, - 59592, - 544 - ], - [ - 312590, - 59085, - 5512 - ], - [ - 313550, - 58755, - 8333 - ], - [ - 313551, - 59044, - 7822 - ], - [ - 312694, - 59861, - 6315 - ], - [ - 312176, - 59236, - 5672 - ], - [ - 312670, - 60586, - 402 - ], - [ - 312723, - 59940, - 565 - ], - [ - 313629, - 58715, - 5962 - ], - [ - 314093, - 60074, - 382 - ], - [ - 313640, - 59244, - 472 - ], - [ - 313074, - 59683, - 5891 - ], - [ - 312383, - 59160, - 5692 - ], - [ - 313629, - 58715, - 382 - ], - [ - 312176, - 59236, - 382 - ], - [ - 236456, - 90010, - 494 - ], - [ - 236695, - 89927, - 458 - ], - [ - 237065, - 90217, - 459 - ], - [ - 236305, - 90148, - 426 - ], - [ - 236637, - 90778, - 352 - ], - [ - 235851, - 89585, - 382 - ], - [ - 236873, - 89472, - 483 - ], - [ - 236602, - 89252, - 431 - ], - [ - 236997, - 89421, - 435 - ], - [ - 236956, - 89807, - 5800 - ], - [ - 236794, - 89848, - 7361 - ], - [ - 236652, - 89611, - 450 - ], - [ - 236237, - 89756, - 8024 - ], - [ - 236249, - 89511, - 6080 - ], - [ - 236346, - 89667, - 481 - ], - [ - 237127, - 90410, - 377 - ], - [ - 237866, - 89947, - 1292 - ], - [ - 236592, - 89567, - 498 - ], - [ - 236566, - 89500, - 5958 - ], - [ - 237662, - 90023, - 403 - ], - [ - 237719, - 89769, - 6138 - ], - [ - 237727, - 90023, - 7183 - ], - [ - 236262, - 89807, - 476 - ], - [ - 236476, - 89925, - 8250 - ], - [ - 237122, - 88899, - 432 - ], - [ - 237126, - 88902, - 6557 - ], - [ - 237061, - 88797, - 392 - ], - [ - 236211, - 89449, - 438 - ], - [ - 237293, - 89542, - 428 - ], - [ - 237620, - 89699, - 438 - ], - [ - 237562, - 89731, - 4816 - ], - [ - 237369, - 89807, - 6280 - ], - [ - 237089, - 90095, - 437 - ], - [ - 237258, - 89232, - 516 - ], - [ - 236344, - 89954, - 6137 - ], - [ - 237227, - 89741, - 487 - ], - [ - 237238, - 89799, - 3047 - ], - [ - 236955, - 89846, - 490 - ], - [ - 237338, - 89877, - 414 - ], - [ - 237613, - 89728, - 5489 - ], - [ - 237605, - 90034, - 432 - ], - [ - 237374, - 89914, - 4571 - ], - [ - 237379, - 90192, - 402 - ], - [ - 237324, - 89918, - 3889 - ], - [ - 237150, - 89971, - 876 - ], - [ - 237866, - 89947, - 382 - ], - [ - 225695, - 98016, - 430 - ], - [ - 226647, - 97516, - 302 - ], - [ - 225485, - 98283, - 332 - ], - [ - 226023, - 97389, - 446 - ], - [ - 226245, - 97170, - 6824 - ], - [ - 226140, - 97489, - 7083 - ], - [ - 225868, - 96287, - 362 - ], - [ - 225579, - 96510, - 9356 - ], - [ - 224683, - 97092, - 382 - ], - [ - 225905, - 97742, - 7554 - ], - [ - 226330, - 97546, - 390 - ], - [ - 225717, - 97984, - 8901 - ], - [ - 225622, - 97952, - 8230 - ], - [ - 225709, - 97661, - 6411 - ], - [ - 225437, - 97814, - 396 - ], - [ - 225677, - 97537, - 484 - ], - [ - 225306, - 96832, - 438 - ], - [ - 225590, - 96729, - 473 - ], - [ - 225648, - 97091, - 7485 - ], - [ - 225950, - 96510, - 5366 - ], - [ - 226070, - 96664, - 442 - ], - [ - 225483, - 98158, - 381 - ], - [ - 225863, - 96981, - 5164 - ], - [ - 225777, - 96668, - 424 - ], - [ - 225737, - 96415, - 380 - ], - [ - 225906, - 96526, - 4544 - ], - [ - 226280, - 97184, - 383 - ], - [ - 225351, - 97165, - 440 - ], - [ - 225680, - 97125, - 477 - ], - [ - 225740, - 97639, - 7170 - ], - [ - 225965, - 96754, - 4757 - ], - [ - 225833, - 96720, - 443 - ], - [ - 225918, - 97702, - 411 - ], - [ - 226168, - 96977, - 422 - ], - [ - 226155, - 96825, - 5966 - ], - [ - 225997, - 97050, - 5707 - ], - [ - 225932, - 96990, - 451 - ], - [ - 225971, - 97045, - 2381 - ], - [ - 225889, - 96635, - 5767 - ], - [ - 228175, - 111005, - 485 - ], - [ - 229068, - 110607, - 422 - ], - [ - 227821, - 111425, - 412 - ], - [ - 228040, - 110228, - 3056 - ], - [ - 228040, - 110127, - 4744 - ], - [ - 228110, - 110061, - 1139 - ], - [ - 228087, - 109985, - 1182 - ], - [ - 228381, - 110198, - 575 - ], - [ - 228643, - 110160, - 641 - ], - [ - 228871, - 110312, - 1007 - ], - [ - 228688, - 110422, - 512 - ], - [ - 228444, - 110531, - 829 - ], - [ - 228566, - 110178, - 7451 - ], - [ - 228723, - 110517, - 1310 - ], - [ - 228486, - 110682, - 1132 - ], - [ - 228017, - 110007, - 6140 - ], - [ - 227974, - 109966, - 6590 - ], - [ - 228253, - 109566, - 642 - ], - [ - 228638, - 110064, - 510 - ], - [ - 228077, - 110010, - 7178 - ], - [ - 228037, - 109678, - 7046 - ], - [ - 228270, - 109388, - 372 - ], - [ - 227995, - 109682, - 487 - ], - [ - 227022, - 110204, - 362 - ], - [ - 228035, - 110069, - 5655 - ], - [ - 228469, - 110538, - 5418 - ], - [ - 227679, - 110102, - 575 - ], - [ - 227983, - 110388, - 4948 - ], - [ - 227736, - 110556, - 1180 - ], - [ - 227580, - 110466, - 713 - ], - [ - 227972, - 110267, - 1526 - ], - [ - 227874, - 109899, - 838 - ], - [ - 227717, - 110804, - 502 - ], - [ - 325225, - 55903, - 507 - ], - [ - 325584, - 55967, - 5469 - ], - [ - 325550, - 56156, - 476 - ], - [ - 325690, - 54950, - 8859 - ], - [ - 325653, - 55055, - 414 - ], - [ - 325418, - 55181, - 431 - ], - [ - 325914, - 54843, - 4902 - ], - [ - 324467, - 55302, - 342 - ], - [ - 325835, - 55895, - 4963 - ], - [ - 326102, - 55993, - 410 - ], - [ - 325753, - 55227, - 5056 - ], - [ - 325209, - 55148, - 6735 - ], - [ - 324779, - 55269, - 414 - ], - [ - 325133, - 55216, - 492 - ], - [ - 325248, - 55473, - 6669 - ], - [ - 325703, - 55404, - 461 - ], - [ - 326005, - 55307, - 334 - ], - [ - 325754, - 55772, - 506 - ], - [ - 324891, - 56638, - 332 - ], - [ - 325510, - 55839, - 505 - ], - [ - 326350, - 56217, - 322 - ], - [ - 325914, - 54843, - 302 - ], - [ - 242648, - 86558, - 2798 - ], - [ - 242386, - 86615, - 6442 - ], - [ - 242323, - 86504, - 7487 - ], - [ - 241696, - 85772, - 7795 - ], - [ - 241814, - 85858, - 461 - ], - [ - 241411, - 85851, - 372 - ], - [ - 242625, - 85015, - 402 - ], - [ - 242634, - 86079, - 504 - ], - [ - 242542, - 85773, - 4851 - ], - [ - 242646, - 85726, - 5019 - ], - [ - 241861, - 86206, - 457 - ], - [ - 242174, - 86154, - 7504 - ], - [ - 242545, - 85402, - 529 - ], - [ - 242295, - 86318, - 476 - ], - [ - 243068, - 86153, - 430 - ], - [ - 242934, - 85856, - 5019 - ], - [ - 243028, - 85833, - 476 - ], - [ - 242251, - 85953, - 549 - ], - [ - 242246, - 86539, - 5920 - ], - [ - 242396, - 86173, - 5936 - ], - [ - 242905, - 86532, - 6417 - ], - [ - 243330, - 86254, - 4912 - ], - [ - 242225, - 87001, - 332 - ], - [ - 242670, - 86387, - 423 - ], - [ - 242336, - 86662, - 398 - ], - [ - 242750, - 86367, - 2366 - ], - [ - 242996, - 86331, - 6016 - ], - [ - 243268, - 86184, - 5294 - ], - [ - 242949, - 86340, - 5288 - ], - [ - 242926, - 86369, - 4549 - ], - [ - 242936, - 86457, - 8022 - ], - [ - 243330, - 86254, - 322 - ], - [ - 273500, - 118972, - 1245 - ], - [ - 273993, - 119433, - 991 - ], - [ - 273575, - 119659, - 1027 - ], - [ - 273710, - 120657, - 1029 - ], - [ - 273477, - 120423, - 3742 - ], - [ - 273670, - 120307, - 1119 - ], - [ - 274183, - 120750, - 1170 - ], - [ - 273135, - 119225, - 1292 - ], - [ - 274041, - 119774, - 1026 - ], - [ - 273639, - 119958, - 1342 - ], - [ - 273253, - 120233, - 1062 - ], - [ - 273335, - 120912, - 942 - ], - [ - 275325, - 119264, - 1200 - ], - [ - 274313, - 118524, - 964 - ], - [ - 273088, - 118888, - 1273 - ], - [ - 273437, - 118628, - 1016 - ], - [ - 274217, - 121104, - 972 - ], - [ - 273816, - 118072, - 1078 - ], - [ - 274893, - 119967, - 1028 - ], - [ - 274850, - 119644, - 1032 - ], - [ - 272708, - 119457, - 929 - ], - [ - 275609, - 119408, - 1167 - ], - [ - 275142, - 119743, - 1246 - ], - [ - 275356, - 119593, - 1020 - ], - [ - 233905, - 107214, - 610 - ], - [ - 234087, - 106989, - 1148 - ], - [ - 234313, - 107192, - 521 - ], - [ - 233156, - 106697, - 5394 - ], - [ - 233707, - 107601, - 402 - ], - [ - 232895, - 106360, - 372 - ], - [ - 233571, - 106312, - 545 - ], - [ - 233833, - 106241, - 548 - ], - [ - 233833, - 106501, - 724 - ], - [ - 233962, - 106319, - 673 - ], - [ - 233894, - 106505, - 1427 - ], - [ - 233959, - 106462, - 2954 - ], - [ - 233876, - 106546, - 5702 - ], - [ - 233857, - 106575, - 4964 - ], - [ - 233945, - 106749, - 5589 - ], - [ - 234137, - 106464, - 695 - ], - [ - 233509, - 106004, - 409 - ], - [ - 233669, - 106192, - 7996 - ], - [ - 233611, - 105891, - 542 - ], - [ - 234079, - 105586, - 362 - ], - [ - 234060, - 105859, - 499 - ], - [ - 233745, - 105977, - 474 - ], - [ - 234012, - 106052, - 7812 - ], - [ - 233952, - 106463, - 8013 - ], - [ - 234011, - 106169, - 644 - ], - [ - 234430, - 106139, - 528 - ], - [ - 234450, - 106534, - 493 - ], - [ - 234922, - 106799, - 392 - ], - [ - 234534, - 106772, - 605 - ], - [ - 234036, - 106367, - 7538 - ], - [ - 234387, - 106601, - 5984 - ], - [ - 233826, - 106806, - 767 - ], - [ - 233232, - 106340, - 7097 - ], - [ - 233499, - 106559, - 739 - ], - [ - 233526, - 106581, - 5317 - ], - [ - 233245, - 106380, - 498 - ], - [ - 233227, - 106704, - 506 - ], - [ - 234493, - 106857, - 483 - ], - [ - 380062, - 88166, - 1276 - ], - [ - 380404, - 87761, - 1332 - ], - [ - 380066, - 88494, - 718 - ], - [ - 380610, - 87008, - 666 - ], - [ - 380669, - 87334, - 892 - ], - [ - 380358, - 87400, - 1354 - ], - [ - 380023, - 87847, - 1324 - ], - [ - 380706, - 87692, - 739 - ], - [ - 381425, - 86506, - 1201 - ], - [ - 381811, - 86065, - 776 - ], - [ - 381349, - 86159, - 779 - ], - [ - 381001, - 86596, - 1288 - ], - [ - 381041, - 86953, - 1186 - ], - [ - 381807, - 85741, - 1330 - ], - [ - 382496, - 84855, - 1118 - ], - [ - 382774, - 84772, - 738 - ], - [ - 382512, - 85183, - 746 - ], - [ - 382113, - 84937, - 1236 - ], - [ - 379700, - 88572, - 825 - ], - [ - 394438, - 73491, - 1086 - ], - [ - 393725, - 74439, - 785 - ], - [ - 397557, - 77247, - 1245 - ], - [ - 396610, - 76590, - 755 - ], - [ - 397695, - 76105, - 758 - ], - [ - 398137, - 76299, - 1222 - ], - [ - 396459, - 75282, - 1064 - ], - [ - 398563, - 76818, - 772 - ], - [ - 398547, - 76500, - 1144 - ], - [ - 395164, - 75699, - 791 - ], - [ - 395692, - 76240, - 1154 - ], - [ - 395204, - 76033, - 745 - ], - [ - 397609, - 77912, - 738 - ], - [ - 397339, - 77695, - 1036 - ], - [ - 397051, - 75682, - 737 - ], - [ - 397296, - 75548, - 735 - ], - [ - 397648, - 75763, - 729 - ], - [ - 397249, - 75205, - 718 - ], - [ - 396802, - 75479, - 750 - ], - [ - 395940, - 74730, - 888 - ], - [ - 396422, - 74963, - 1140 - ], - [ - 395906, - 74417, - 1004 - ], - [ - 396755, - 75120, - 746 - ], - [ - 396705, - 77297, - 775 - ], - [ - 397023, - 77127, - 793 - ], - [ - 397074, - 77486, - 839 - ], - [ - 397311, - 77381, - 1237 - ], - [ - 396659, - 76952, - 760 - ], - [ - 396201, - 76756, - 769 - ], - [ - 394907, - 73674, - 958 - ], - [ - 394945, - 74002, - 877 - ], - [ - 398489, - 76175, - 926 - ], - [ - 395423, - 74214, - 1142 - ], - [ - 395438, - 74534, - 762 - ], - [ - 395350, - 73883, - 740 - ], - [ - 394455, - 73794, - 764 - ], - [ - 396155, - 76409, - 783 - ], - [ - 370864, - 97644, - 3885 - ], - [ - 370590, - 97369, - 617 - ], - [ - 370682, - 98048, - 641 - ], - [ - 371063, - 97689, - 614 - ], - [ - 231576, - 94181, - 8287 - ], - [ - 232240, - 93746, - 832 - ], - [ - 231033, - 94561, - 322 - ], - [ - 231157, - 94423, - 6740 - ], - [ - 231535, - 93174, - 7241 - ], - [ - 231642, - 93118, - 9482 - ], - [ - 231732, - 93158, - 444 - ], - [ - 231828, - 93547, - 4820 - ], - [ - 231835, - 93582, - 8406 - ], - [ - 231546, - 93732, - 2335 - ], - [ - 231431, - 93771, - 6090 - ], - [ - 231484, - 93715, - 7663 - ], - [ - 231866, - 93845, - 421 - ], - [ - 231845, - 93797, - 5035 - ], - [ - 231135, - 93284, - 478 - ], - [ - 230974, - 93301, - 466 - ], - [ - 231204, - 93163, - 7388 - ], - [ - 231829, - 94004, - 349 - ], - [ - 231062, - 93981, - 407 - ], - [ - 230603, - 93485, - 427 - ], - [ - 230935, - 93735, - 469 - ], - [ - 231519, - 92884, - 7130 - ], - [ - 231464, - 92556, - 362 - ], - [ - 231700, - 93031, - 402 - ], - [ - 231225, - 93077, - 9048 - ], - [ - 231344, - 93162, - 448 - ], - [ - 231351, - 92868, - 454 - ], - [ - 231388, - 93478, - 452 - ], - [ - 231341, - 93634, - 7183 - ], - [ - 231232, - 93605, - 498 - ], - [ - 231297, - 92827, - 421 - ], - [ - 230911, - 93362, - 477 - ], - [ - 231017, - 93623, - 457 - ], - [ - 231079, - 92960, - 457 - ], - [ - 231145, - 92870, - 7348 - ], - [ - 230239, - 93341, - 352 - ], - [ - 231476, - 94162, - 387 - ], - [ - 231672, - 93537, - 7102 - ], - [ - 231503, - 93563, - 501 - ], - [ - 231744, - 93355, - 400 - ], - [ - 231575, - 93709, - 3070 - ], - [ - 231440, - 93743, - 840 - ], - [ - 231805, - 93092, - 7298 - ], - [ - 231788, - 93689, - 380 - ], - [ - 231681, - 93698, - 4594 - ], - [ - 231107, - 94324, - 387 - ], - [ - 231392, - 93887, - 3693 - ], - [ - 231277, - 93997, - 449 - ], - [ - 231794, - 93507, - 433 - ], - [ - 231209, - 94056, - 5767 - ], - [ - 231481, - 93868, - 5128 - ], - [ - 231782, - 93933, - 7812 - ], - [ - 231445, - 93841, - 565 - ], - [ - 230801, - 93579, - 8465 - ], - [ - 230800, - 93032, - 429 - ], - [ - 231416, - 93214, - 487 - ], - [ - 232240, - 93746, - 322 - ], - [ - 283009, - 126420, - 977 - ], - [ - 282753, - 126376, - 3377 - ], - [ - 282823, - 125930, - 5136 - ], - [ - 282961, - 126063, - 987 - ], - [ - 282507, - 125884, - 964 - ], - [ - 282916, - 125717, - 1000 - ], - [ - 282639, - 126848, - 993 - ], - [ - 338251, - 52214, - 414 - ], - [ - 339037, - 52418, - 282 - ], - [ - 337621, - 52826, - 272 - ], - [ - 338200, - 51864, - 6871 - ], - [ - 338261, - 51932, - 1082 - ], - [ - 337747, - 51942, - 388 - ], - [ - 337699, - 51596, - 351 - ], - [ - 338543, - 51695, - 5486 - ], - [ - 338638, - 51832, - 371 - ], - [ - 337633, - 51466, - 5759 - ], - [ - 338158, - 51528, - 383 - ], - [ - 338433, - 51287, - 4697 - ], - [ - 338592, - 51500, - 362 - ], - [ - 337577, - 51686, - 4564 - ], - [ - 337197, - 51436, - 4792 - ], - [ - 337270, - 51638, - 362 - ], - [ - 338607, - 51007, - 4242 - ], - [ - 338545, - 51149, - 343 - ], - [ - 338607, - 51007, - 262 - ], - [ - 337197, - 51436, - 352 - ], - [ - 288545, - 58816, - 582 - ], - [ - 289453, - 58746, - 332 - ], - [ - 288102, - 59478, - 362 - ], - [ - 288021, - 58231, - 512 - ], - [ - 287391, - 58140, - 382 - ], - [ - 288702, - 57428, - 392 - ], - [ - 288005, - 57900, - 875 - ], - [ - 392344, - 35797, - 531 - ], - [ - 392303, - 35443, - 617 - ], - [ - 392660, - 35311, - 555 - ], - [ - 392354, - 35175, - 565 - ], - [ - 392218, - 35423, - 2381 - ], - [ - 392252, - 35108, - 517 - ], - [ - 392616, - 34986, - 548 - ], - [ - 392290, - 34890, - 5972 - ], - [ - 392548, - 34705, - 5428 - ], - [ - 392697, - 34545, - 542 - ], - [ - 393122, - 35960, - 572 - ], - [ - 392903, - 35309, - 636 - ], - [ - 392299, - 35112, - 5752 - ], - [ - 391894, - 34857, - 456 - ], - [ - 391908, - 34803, - 4409 - ], - [ - 392074, - 34864, - 523 - ], - [ - 392669, - 34891, - 4380 - ], - [ - 392704, - 34651, - 7725 - ], - [ - 392205, - 34769, - 493 - ], - [ - 392377, - 34701, - 554 - ], - [ - 392693, - 35207, - 6545 - ], - [ - 392052, - 35293, - 539 - ], - [ - 392654, - 35016, - 584 - ], - [ - 391301, - 34964, - 332 - ], - [ - 392679, - 34560, - 551 - ], - [ - 392027, - 35723, - 593 - ], - [ - 392294, - 35807, - 998 - ], - [ - 391730, - 36393, - 462 - ], - [ - 392040, - 35919, - 528 - ], - [ - 292490, - 133321, - 1050 - ], - [ - 292699, - 132922, - 1042 - ], - [ - 292123, - 132749, - 1067 - ], - [ - 292469, - 132952, - 1436 - ], - [ - 265281, - 72011, - 475 - ], - [ - 265006, - 71739, - 5084 - ], - [ - 264955, - 71566, - 483 - ], - [ - 264365, - 72035, - 704 - ], - [ - 264678, - 71804, - 499 - ], - [ - 264894, - 72340, - 508 - ], - [ - 264304, - 71695, - 510 - ], - [ - 264679, - 71682, - 5642 - ], - [ - 265921, - 71975, - 382 - ], - [ - 264641, - 72718, - 372 - ], - [ - 263905, - 71427, - 422 - ], - [ - 264134, - 71442, - 5638 - ], - [ - 265141, - 70702, - 432 - ], - [ - 264589, - 71123, - 527 - ], - [ - 264942, - 71906, - 524 - ], - [ - 265136, - 72010, - 2138 - ], - [ - 265072, - 71974, - 1051 - ], - [ - 265158, - 71951, - 2528 - ], - [ - 251222, - 95632, - 506 - ], - [ - 252129, - 95198, - 616 - ], - [ - 251308, - 96135, - 402 - ], - [ - 251175, - 95277, - 530 - ], - [ - 251604, - 95154, - 612 - ], - [ - 251218, - 95470, - 5881 - ], - [ - 251300, - 94637, - 6610 - ], - [ - 251422, - 94657, - 620 - ], - [ - 251434, - 94673, - 5153 - ], - [ - 251696, - 94855, - 814 - ], - [ - 251982, - 94681, - 495 - ], - [ - 252191, - 94820, - 521 - ], - [ - 251369, - 95049, - 707 - ], - [ - 251406, - 95037, - 1400 - ], - [ - 251783, - 94503, - 602 - ], - [ - 251710, - 94061, - 392 - ], - [ - 251907, - 94530, - 5913 - ], - [ - 251167, - 95154, - 5776 - ], - [ - 251220, - 94612, - 6027 - ], - [ - 251474, - 94277, - 426 - ], - [ - 251416, - 94991, - 2266 - ], - [ - 251307, - 94339, - 4053 - ], - [ - 252527, - 95311, - 432 - ], - [ - 251653, - 94845, - 1865 - ], - [ - 251611, - 95018, - 6930 - ], - [ - 250479, - 94866, - 362 - ], - [ - 250763, - 94997, - 499 - ], - [ - 250824, - 94654, - 356 - ], - [ - 251084, - 95239, - 543 - ], - [ - 251154, - 94467, - 383 - ], - [ - 239753, - 102927, - 588 - ], - [ - 239400, - 102811, - 514 - ], - [ - 239717, - 102734, - 593 - ], - [ - 239112, - 103010, - 390 - ], - [ - 239596, - 103766, - 402 - ], - [ - 238778, - 102514, - 382 - ], - [ - 239531, - 102632, - 5288 - ], - [ - 239589, - 102636, - 5933 - ], - [ - 239869, - 103355, - 655 - ], - [ - 240818, - 102967, - 382 - ], - [ - 239391, - 102490, - 525 - ], - [ - 239709, - 102610, - 559 - ], - [ - 240073, - 102732, - 550 - ], - [ - 239332, - 103204, - 484 - ], - [ - 239071, - 102664, - 459 - ], - [ - 239802, - 102763, - 1186 - ], - [ - 239351, - 102452, - 502 - ], - [ - 239075, - 102582, - 478 - ], - [ - 239322, - 102309, - 4591 - ], - [ - 239472, - 102115, - 391 - ], - [ - 238873, - 102610, - 425 - ], - [ - 239030, - 102531, - 3997 - ], - [ - 239105, - 102886, - 4379 - ], - [ - 239199, - 102852, - 522 - ], - [ - 239999, - 101716, - 402 - ], - [ - 239794, - 103288, - 482 - ], - [ - 324671, - 41698, - 1344 - ], - [ - 325396, - 41173, - 6284 - ], - [ - 325424, - 41497, - 6082 - ], - [ - 324686, - 41788, - 7049 - ], - [ - 324918, - 42610, - 1262 - ], - [ - 324496, - 41121, - 1282 - ], - [ - 325523, - 41528, - 1506 - ], - [ - 325476, - 41182, - 1484 - ], - [ - 325871, - 40704, - 1481 - ], - [ - 325344, - 41925, - 4137 - ], - [ - 325154, - 41941, - 1445 - ], - [ - 325454, - 41812, - 5908 - ], - [ - 325581, - 41885, - 1665 - ], - [ - 326381, - 42114, - 1432 - ], - [ - 325123, - 42030, - 7079 - ], - [ - 325200, - 42286, - 1437 - ], - [ - 325933, - 40666, - 1412 - ], - [ - 273761, - 87688, - 801 - ], - [ - 273784, - 87082, - 622 - ], - [ - 274051, - 87469, - 5119 - ], - [ - 274561, - 88447, - 868 - ], - [ - 275093, - 88074, - 702 - ], - [ - 274284, - 89107, - 712 - ], - [ - 274109, - 87542, - 761 - ], - [ - 272990, - 88131, - 682 - ], - [ - 274173, - 87904, - 949 - ], - [ - 285686, - 72305, - 312 - ], - [ - 428971, - 39053, - 2362 - ], - [ - 427003, - 36824, - 2342 - ], - [ - 358541, - 145027, - 672 - ], - [ - 357373, - 146244, - 622 - ], - [ - 352038, - 140357, - 592 - ], - [ - 352888, - 139512, - 652 - ], - [ - 352016, - 140379, - 592 - ], - [ - 351993, - 140399, - 582 - ], - [ - 351969, - 140418, - 582 - ], - [ - 351944, - 140435, - 582 - ], - [ - 351917, - 140450, - 582 - ], - [ - 351890, - 140463, - 582 - ], - [ - 351862, - 140475, - 572 - ], - [ - 351833, - 140485, - 572 - ], - [ - 351803, - 140493, - 572 - ], - [ - 351773, - 140499, - 572 - ], - [ - 351743, - 140503, - 572 - ], - [ - 351712, - 140505, - 572 - ], - [ - 351682, - 140505, - 572 - ], - [ - 351651, - 140503, - 572 - ], - [ - 351621, - 140499, - 572 - ], - [ - 351591, - 140493, - 572 - ], - [ - 351561, - 140485, - 572 - ], - [ - 351533, - 140475, - 572 - ], - [ - 351504, - 140463, - 572 - ], - [ - 351477, - 140449, - 572 - ], - [ - 351451, - 140434, - 572 - ], - [ - 351425, - 140417, - 572 - ], - [ - 351401, - 140398, - 572 - ], - [ - 290282, - 74913, - 442 - ], - [ - 290265, - 74912, - 442 - ], - [ - 346457, - 52959, - 372 - ], - [ - 314609, - 63050, - 442 - ], - [ - 314861, - 62950, - 442 - ], - [ - 315114, - 62852, - 432 - ], - [ - 315368, - 62757, - 432 - ], - [ - 315623, - 62664, - 432 - ], - [ - 316135, - 62486, - 432 - ], - [ - 315878, - 62574, - 422 - ], - [ - 317094, - 62131, - 422 - ], - [ - 318056, - 61786, - 412 - ], - [ - 319021, - 61450, - 412 - ], - [ - 319989, - 61123, - 392 - ], - [ - 320961, - 60805, - 392 - ], - [ - 322913, - 60198, - 392 - ], - [ - 321936, - 60497, - 392 - ], - [ - 314358, - 63153, - 442 - ], - [ - 303245, - 67825, - 452 - ], - [ - 292721, - 73439, - 442 - ], - [ - 278719, - 82366, - 542 - ], - [ - 272842, - 80283, - 372 - ], - [ - 276235, - 78078, - 352 - ], - [ - 278316, - 76815, - 332 - ], - [ - 278901, - 77989, - 392 - ], - [ - 279315, - 81540, - 532 - ], - [ - 278509, - 82943, - 552 - ], - [ - 278467, - 83143, - 552 - ], - [ - 275794, - 84701, - 562 - ], - [ - 278636, - 82553, - 552 - ], - [ - 278566, - 82746, - 552 - ], - [ - 278814, - 82185, - 542 - ], - [ - 278922, - 82011, - 542 - ], - [ - 284555, - 78244, - 452 - ], - [ - 289063, - 75588, - 432 - ], - [ - 279042, - 81845, - 532 - ], - [ - 279174, - 81688, - 532 - ], - [ - 279467, - 81403, - 532 - ], - [ - 279628, - 81276, - 552 - ], - [ - 280727, - 80639, - 482 - ], - [ - 290134, - 74947, - 442 - ], - [ - 290149, - 74939, - 442 - ], - [ - 296979, - 70992, - 432 - ], - [ - 290165, - 74932, - 442 - ], - [ - 290181, - 74925, - 442 - ], - [ - 290197, - 74920, - 442 - ], - [ - 290214, - 74917, - 442 - ], - [ - 290231, - 74914, - 442 - ], - [ - 290248, - 74912, - 442 - ], - [ - 290299, - 74915, - 442 - ], - [ - 290316, - 74918, - 442 - ], - [ - 290333, - 74922, - 442 - ], - [ - 290349, - 74928, - 442 - ], - [ - 290365, - 74934, - 442 - ], - [ - 290380, - 74942, - 442 - ], - [ - 290395, - 74950, - 442 - ], - [ - 290409, - 74960, - 442 - ], - [ - 290423, - 74971, - 442 - ], - [ - 290436, - 74982, - 442 - ], - [ - 290448, - 74994, - 442 - ], - [ - 290459, - 75008, - 442 - ], - [ - 292875, - 74437, - 442 - ], - [ - 290469, - 75021, - 442 - ], - [ - 290478, - 75036, - 442 - ], - [ - 300126, - 69279, - 442 - ], - [ - 299619, - 69548, - 442 - ], - [ - 300636, - 69017, - 442 - ], - [ - 301151, - 68763, - 452 - ], - [ - 301669, - 68517, - 442 - ], - [ - 302191, - 68278, - 452 - ], - [ - 302716, - 68048, - 452 - ], - [ - 328220, - 33512, - 1192 - ], - [ - 329258, - 35019, - 1192 - ], - [ - 327735, - 33855, - 1192 - ], - [ - 325919, - 35856, - 1372 - ], - [ - 322980, - 33799, - 1192 - ], - [ - 322002, - 34091, - 1142 - ], - [ - 322529, - 33470, - 1162 - ], - [ - 325458, - 35906, - 1372 - ], - [ - 323484, - 35346, - 1342 - ], - [ - 323681, - 35468, - 1352 - ], - [ - 323886, - 35577, - 1352 - ], - [ - 324098, - 35670, - 1362 - ], - [ - 324316, - 35749, - 1372 - ], - [ - 324539, - 35812, - 1372 - ], - [ - 324766, - 35860, - 1372 - ], - [ - 324995, - 35891, - 1372 - ], - [ - 325227, - 35907, - 1372 - ], - [ - 325690, - 35889, - 1372 - ], - [ - 325701, - 118424, - 542 - ], - [ - 325020, - 119427, - 472 - ], - [ - 303462, - 103352, - 562 - ], - [ - 304202, - 102375, - 592 - ], - [ - 325003, - 119451, - 472 - ], - [ - 303156, - 103519, - 562 - ], - [ - 303186, - 103515, - 562 - ], - [ - 324939, - 119763, - 472 - ], - [ - 303127, - 103521, - 562 - ], - [ - 324945, - 119792, - 472 - ], - [ - 303097, - 103521, - 562 - ], - [ - 324953, - 119820, - 472 - ], - [ - 303067, - 103519, - 562 - ], - [ - 324962, - 119848, - 472 - ], - [ - 303037, - 103516, - 562 - ], - [ - 324974, - 119875, - 472 - ], - [ - 303008, - 103510, - 562 - ], - [ - 324987, - 119902, - 482 - ], - [ - 302979, - 103503, - 562 - ], - [ - 325002, - 119927, - 482 - ], - [ - 302951, - 103493, - 562 - ], - [ - 325018, - 119952, - 482 - ], - [ - 302924, - 103482, - 562 - ], - [ - 325037, - 119975, - 482 - ], - [ - 302897, - 103469, - 562 - ], - [ - 325056, - 119997, - 482 - ], - [ - 302871, - 103454, - 562 - ], - [ - 325078, - 120018, - 482 - ], - [ - 325100, - 120037, - 482 - ], - [ - 302846, - 103438, - 562 - ], - [ - 303215, - 103509, - 562 - ], - [ - 324935, - 119733, - 472 - ], - [ - 303244, - 103501, - 562 - ], - [ - 324933, - 119704, - 472 - ], - [ - 303272, - 103491, - 562 - ], - [ - 324934, - 119674, - 472 - ], - [ - 303299, - 103479, - 562 - ], - [ - 324936, - 119645, - 472 - ], - [ - 303326, - 103466, - 562 - ], - [ - 324940, - 119616, - 472 - ], - [ - 303351, - 103451, - 562 - ], - [ - 324946, - 119587, - 472 - ], - [ - 303376, - 103434, - 562 - ], - [ - 324953, - 119558, - 472 - ], - [ - 303399, - 103416, - 562 - ], - [ - 324963, - 119530, - 472 - ], - [ - 303422, - 103396, - 562 - ], - [ - 324975, - 119503, - 472 - ], - [ - 303443, - 103375, - 562 - ], - [ - 324988, - 119477, - 472 - ], - [ - 336023, - 132068, - 582 - ], - [ - 316392, - 118777, - 632 - ], - [ - 302573, - 108472, - 602 - ], - [ - 279566, - 91344, - 652 - ], - [ - 341494, - 138499, - 682 - ], - [ - 342280, - 136987, - 562 - ], - [ - 280037, - 90687, - 582 - ], - [ - 279973, - 90038, - 582 - ], - [ - 280055, - 90658, - 582 - ], - [ - 280071, - 90629, - 582 - ], - [ - 280055, - 90144, - 582 - ], - [ - 280085, - 90598, - 582 - ], - [ - 280097, - 90567, - 582 - ], - [ - 280107, - 90535, - 582 - ], - [ - 280120, - 90469, - 582 - ], - [ - 280114, - 90502, - 582 - ], - [ - 280123, - 90435, - 582 - ], - [ - 280123, - 90368, - 582 - ], - [ - 280124, - 90401, - 582 - ], - [ - 280120, - 90334, - 582 - ], - [ - 280115, - 90301, - 582 - ], - [ - 280085, - 90205, - 582 - ], - [ - 280107, - 90268, - 582 - ], - [ - 280097, - 90236, - 582 - ], - [ - 280071, - 90174, - 582 - ], - [ - 280037, - 90116, - 582 - ], - [ - 280018, - 90088, - 582 - ], - [ - 279996, - 90062, - 582 - ], - [ - 273781, - 85874, - 512 - ], - [ - 275180, - 86390, - 552 - ], - [ - 275387, - 86521, - 552 - ], - [ - 274966, - 86271, - 542 - ], - [ - 274522, - 86066, - 532 - ], - [ - 274747, - 86163, - 542 - ], - [ - 274292, - 85982, - 522 - ], - [ - 274058, - 85910, - 522 - ], - [ - 273821, - 85850, - 512 - ], - [ - 300711, - 107635, - 622 - ], - [ - 302308, - 108830, - 632 - ], - [ - 300971, - 107292, - 582 - ], - [ - 323571, - 124218, - 812 - ], - [ - 322551, - 123433, - 762 - ], - [ - 321529, - 122651, - 622 - ], - [ - 320506, - 121871, - 672 - ], - [ - 319480, - 121094, - 672 - ], - [ - 318453, - 120319, - 692 - ], - [ - 317423, - 119547, - 682 - ], - [ - 341543, - 140975, - 782 - ], - [ - 341607, - 140898, - 772 - ], - [ - 341797, - 141184, - 782 - ], - [ - 341862, - 141109, - 782 - ], - [ - 343910, - 143003, - 752 - ], - [ - 343975, - 142927, - 732 - ], - [ - 344225, - 143110, - 712 - ], - [ - 346260, - 145069, - 772 - ], - [ - 344158, - 143185, - 752 - ], - [ - 346327, - 144995, - 792 - ], - [ - 346486, - 145258, - 792 - ], - [ - 346557, - 145188, - 792 - ], - [ - 342294, - 137591, - 562 - ], - [ - 352832, - 149007, - 742 - ], - [ - 358175, - 152698, - 662 - ], - [ - 358133, - 152620, - 672 - ], - [ - 358088, - 152545, - 672 - ], - [ - 355678, - 152200, - 732 - ], - [ - 358040, - 152471, - 682 - ], - [ - 357989, - 152399, - 682 - ], - [ - 357935, - 152330, - 672 - ], - [ - 357878, - 152263, - 672 - ], - [ - 357818, - 152198, - 672 - ], - [ - 356028, - 151843, - 712 - ], - [ - 357303, - 151693, - 662 - ], - [ - 353645, - 148105, - 652 - ], - [ - 354393, - 150940, - 752 - ], - [ - 342314, - 137566, - 562 - ], - [ - 342348, - 137514, - 562 - ], - [ - 342332, - 137541, - 562 - ], - [ - 342362, - 137485, - 562 - ], - [ - 342399, - 137365, - 562 - ], - [ - 342393, - 137396, - 562 - ], - [ - 342375, - 137456, - 562 - ], - [ - 342385, - 137426, - 562 - ], - [ - 342403, - 137271, - 562 - ], - [ - 342404, - 137302, - 562 - ], - [ - 342403, - 137334, - 562 - ], - [ - 342367, - 137118, - 562 - ], - [ - 342388, - 137177, - 562 - ], - [ - 342400, - 137239, - 562 - ], - [ - 342395, - 137208, - 562 - ], - [ - 342378, - 137147, - 562 - ], - [ - 342338, - 137062, - 562 - ], - [ - 342353, - 137089, - 562 - ], - [ - 342320, - 137036, - 562 - ], - [ - 342301, - 137011, - 562 - ], - [ - 334795, - 132945, - 692 - ], - [ - 335928, - 132015, - 592 - ], - [ - 335993, - 132048, - 582 - ], - [ - 335961, - 132031, - 582 - ], - [ - 335538, - 132010, - 592 - ], - [ - 335715, - 131974, - 592 - ], - [ - 335894, - 132002, - 592 - ], - [ - 335824, - 131984, - 592 - ], - [ - 335859, - 131992, - 592 - ], - [ - 335788, - 131978, - 592 - ], - [ - 335752, - 131975, - 592 - ], - [ - 335679, - 131976, - 592 - ], - [ - 335607, - 131988, - 592 - ], - [ - 335643, - 131981, - 592 - ], - [ - 335572, - 131998, - 592 - ], - [ - 335412, - 132081, - 602 - ], - [ - 335473, - 132041, - 592 - ], - [ - 335505, - 132024, - 592 - ], - [ - 335442, - 132060, - 602 - ], - [ - 335384, - 132104, - 592 - ], - [ - 354743, - 150583, - 742 - ], - [ - 356800, - 151199, - 652 - ], - [ - 345740, - 92702, - 932 - ], - [ - 343514, - 93125, - 802 - ], - [ - 345687, - 92414, - 922 - ], - [ - 343436, - 92795, - 742 - ], - [ - 345640, - 92126, - 912 - ], - [ - 343368, - 92463, - 682 - ], - [ - 345601, - 91836, - 842 - ], - [ - 343309, - 92129, - 632 - ], - [ - 345569, - 91545, - 762 - ], - [ - 345545, - 91254, - 712 - ], - [ - 343259, - 91794, - 572 - ], - [ - 343219, - 91457, - 552 - ], - [ - 412228, - 30439, - 1252 - ], - [ - 412047, - 30512, - 1232 - ], - [ - 411212, - 29149, - 1182 - ], - [ - 412402, - 30353, - 1282 - ], - [ - 412571, - 30255, - 1282 - ], - [ - 412732, - 30146, - 1312 - ], - [ - 412885, - 30025, - 1342 - ], - [ - 413028, - 29894, - 1352 - ], - [ - 413163, - 29753, - 1382 - ], - [ - 413287, - 29602, - 1402 - ], - [ - 412347, - 27795, - 1562 - ], - [ - 413400, - 29444, - 1422 - ], - [ - 413501, - 29277, - 1452 - ], - [ - 413590, - 29104, - 1492 - ], - [ - 413667, - 28926, - 1522 - ], - [ - 413731, - 28742, - 1552 - ], - [ - 413782, - 28554, - 1552 - ], - [ - 413820, - 28362, - 1582 - ], - [ - 413843, - 28169, - 1602 - ], - [ - 413853, - 27975, - 1612 - ], - [ - 413850, - 27780, - 1622 - ], - [ - 413832, - 27586, - 1632 - ], - [ - 411271, - 30676, - 1172 - ], - [ - 409779, - 31130, - 1102 - ], - [ - 409363, - 29697, - 1092 - ], - [ - 212250, - 125415, - 522 - ], - [ - 216008, - 123105, - 532 - ], - [ - 215919, - 122972, - 522 - ], - [ - 208914, - 127547, - 542 - ], - [ - 225516, - 96009, - 362 - ], - [ - 207303, - 107998, - 812 - ], - [ - 213557, - 99049, - 552 - ], - [ - 194689, - 116743, - 1672 - ], - [ - 194459, - 116620, - 1672 - ], - [ - 194237, - 116482, - 1682 - ], - [ - 255079, - 71701, - 462 - ], - [ - 258704, - 74009, - 412 - ], - [ - 254948, - 76213, - 392 - ], - [ - 240277, - 81120, - 462 - ], - [ - 256013, - 69861, - 482 - ], - [ - 254478, - 70789, - 502 - ], - [ - 245773, - 77637, - 472 - ], - [ - 235157, - 84327, - 472 - ], - [ - 226693, - 90152, - 452 - ], - [ - 222647, - 92917, - 462 - ], - [ - 226655, - 90093, - 462 - ], - [ - 222400, - 93091, - 472 - ], - [ - 218644, - 95645, - 492 - ], - [ - 214423, - 98303, - 542 - ], - [ - 209722, - 101664, - 642 - ], - [ - 205079, - 104871, - 842 - ], - [ - 209643, - 101561, - 642 - ], - [ - 201657, - 107197, - 1032 - ], - [ - 200203, - 115686, - 1522 - ], - [ - 198606, - 116602, - 1542 - ], - [ - 200264, - 115178, - 1502 - ], - [ - 198740, - 116640, - 1532 - ], - [ - 200167, - 115804, - 1532 - ], - [ - 193635, - 115984, - 1702 - ], - [ - 197932, - 108709, - 1222 - ], - [ - 198210, - 116701, - 1552 - ], - [ - 199715, - 108516, - 1162 - ], - [ - 199601, - 108584, - 1162 - ], - [ - 199483, - 108645, - 1162 - ], - [ - 199361, - 108697, - 1172 - ], - [ - 199236, - 108742, - 1172 - ], - [ - 199108, - 108778, - 1182 - ], - [ - 198847, - 108824, - 1192 - ], - [ - 198978, - 108805, - 1182 - ], - [ - 198581, - 108835, - 1212 - ], - [ - 198714, - 108834, - 1212 - ], - [ - 198449, - 108827, - 1212 - ], - [ - 198317, - 108810, - 1222 - ], - [ - 198187, - 108785, - 1222 - ], - [ - 198058, - 108751, - 1222 - ], - [ - 197810, - 108658, - 1222 - ], - [ - 197690, - 108600, - 1212 - ], - [ - 197575, - 108533, - 1212 - ], - [ - 197465, - 108459, - 1202 - ], - [ - 197360, - 108378, - 1202 - ], - [ - 197028, - 108138, - 1192 - ], - [ - 190242, - 111895, - 1192 - ], - [ - 190220, - 111681, - 1192 - ], - [ - 190255, - 112109, - 1192 - ], - [ - 190258, - 112324, - 1192 - ], - [ - 190251, - 112539, - 1192 - ], - [ - 190235, - 112753, - 1192 - ], - [ - 190209, - 112966, - 1192 - ], - [ - 190173, - 113178, - 1192 - ], - [ - 193060, - 116484, - 1752 - ], - [ - 190080, - 113259, - 1192 - ], - [ - 193824, - 116163, - 1702 - ], - [ - 194025, - 116330, - 1702 - ], - [ - 197732, - 116911, - 1552 - ], - [ - 195171, - 116942, - 1672 - ], - [ - 194927, - 116851, - 1672 - ], - [ - 195934, - 117114, - 1642 - ], - [ - 195421, - 117016, - 1662 - ], - [ - 195676, - 117074, - 1652 - ], - [ - 196194, - 117137, - 1632 - ], - [ - 196715, - 117131, - 1612 - ], - [ - 196454, - 117143, - 1612 - ], - [ - 197231, - 117055, - 1582 - ], - [ - 196974, - 117102, - 1592 - ], - [ - 197484, - 116991, - 1572 - ], - [ - 197975, - 116814, - 1552 - ], - [ - 198429, - 116827, - 1552 - ], - [ - 198522, - 116952, - 1552 - ], - [ - 198336, - 117042, - 1552 - ], - [ - 198242, - 116788, - 1552 - ], - [ - 198459, - 117079, - 1552 - ], - [ - 198357, - 117098, - 1552 - ], - [ - 198469, - 116672, - 1542 - ], - [ - 198628, - 116978, - 1552 - ], - [ - 203798, - 112699, - 1222 - ], - [ - 200352, - 115606, - 1522 - ], - [ - 200461, - 115548, - 1522 - ], - [ - 198459, - 117079, - 302 - ], - [ - 198357, - 117098, - 302 - ], - [ - 198628, - 116978, - 302 - ], - [ - 365971, - 30040, - 512 - ], - [ - 396563, - 22359, - 732 - ], - [ - 406950, - 21506, - 1102 - ], - [ - 409647, - 20421, - 1492 - ], - [ - 411031, - 22219, - 1772 - ], - [ - 411728, - 21558, - 1772 - ], - [ - 412195, - 21926, - 1812 - ], - [ - 411237, - 21223, - 1722 - ], - [ - 410725, - 20920, - 1652 - ], - [ - 410194, - 20653, - 1572 - ], - [ - 406152, - 19831, - 1072 - ], - [ - 409085, - 20226, - 1422 - ], - [ - 408511, - 20070, - 1352 - ], - [ - 407929, - 19951, - 1282 - ], - [ - 407340, - 19872, - 1192 - ], - [ - 406747, - 19832, - 1122 - ], - [ - 351265, - 33468, - 902 - ], - [ - 342527, - 36201, - 1392 - ], - [ - 341927, - 36449, - 1402 - ], - [ - 342081, - 37423, - 1502 - ], - [ - 375782, - 28324, - 462 - ], - [ - 374035, - 28756, - 482 - ], - [ - 375902, - 28810, - 462 - ], - [ - 394079, - 24825, - 652 - ], - [ - 374155, - 29241, - 452 - ], - [ - 278898, - 62413, - 382 - ], - [ - 301937, - 49982, - 472 - ], - [ - 302789, - 51567, - 402 - ], - [ - 312350, - 45452, - 632 - ], - [ - 322532, - 41520, - 1142 - ], - [ - 320098, - 43188, - 992 - ], - [ - 320259, - 43662, - 1002 - ], - [ - 323181, - 43199, - 1142 - ], - [ - 321992, - 42546, - 1112 - ], - [ - 265178, - 70324, - 402 - ], - [ - 279740, - 64003, - 332 - ], - [ - 285454, - 60342, - 362 - ], - [ - 287073, - 59467, - 362 - ], - [ - 286835, - 59027, - 372 - ], - [ - 285216, - 59903, - 372 - ], - [ - 322153, - 43020, - 1082 - ], - [ - 247005, - 102678, - 452 - ], - [ - 247054, - 102644, - 452 - ], - [ - 246886, - 102505, - 442 - ], - [ - 326955, - 54973, - 262 - ], - [ - 327912, - 54682, - 242 - ], - [ - 327101, - 55451, - 282 - ], - [ - 328057, - 55160, - 262 - ], - [ - 299595, - 98925, - 622 - ], - [ - 298891, - 99901, - 522 - ], - [ - 282957, - 87976, - 562 - ], - [ - 283687, - 87015, - 672 - ], - [ - 282938, - 87999, - 562 - ], - [ - 298874, - 99929, - 522 - ], - [ - 282619, - 88154, - 562 - ], - [ - 282649, - 88151, - 562 - ], - [ - 298818, - 100245, - 532 - ], - [ - 282589, - 88155, - 562 - ], - [ - 298825, - 100277, - 532 - ], - [ - 282559, - 88153, - 562 - ], - [ - 298834, - 100308, - 532 - ], - [ - 282529, - 88150, - 562 - ], - [ - 298846, - 100339, - 532 - ], - [ - 282499, - 88145, - 572 - ], - [ - 298859, - 100369, - 542 - ], - [ - 282470, - 88138, - 572 - ], - [ - 298874, - 100397, - 542 - ], - [ - 282441, - 88129, - 572 - ], - [ - 298892, - 100425, - 532 - ], - [ - 282412, - 88118, - 572 - ], - [ - 298911, - 100452, - 532 - ], - [ - 282385, - 88105, - 572 - ], - [ - 298932, - 100477, - 542 - ], - [ - 282359, - 88090, - 572 - ], - [ - 298955, - 100500, - 542 - ], - [ - 298979, - 100522, - 542 - ], - [ - 282333, - 88074, - 572 - ], - [ - 282679, - 88146, - 562 - ], - [ - 298814, - 100212, - 532 - ], - [ - 282709, - 88140, - 562 - ], - [ - 298812, - 100180, - 532 - ], - [ - 282738, - 88131, - 562 - ], - [ - 298812, - 100147, - 532 - ], - [ - 282766, - 88121, - 562 - ], - [ - 282794, - 88108, - 562 - ], - [ - 298814, - 100114, - 522 - ], - [ - 282821, - 88094, - 562 - ], - [ - 298818, - 100082, - 522 - ], - [ - 282847, - 88079, - 562 - ], - [ - 298825, - 100050, - 532 - ], - [ - 282871, - 88061, - 562 - ], - [ - 298834, - 100018, - 532 - ], - [ - 282895, - 88042, - 562 - ], - [ - 298845, - 99988, - 532 - ], - [ - 282917, - 88021, - 562 - ], - [ - 298858, - 99958, - 522 - ], - [ - 395891, - 40226, - 612 - ], - [ - 395949, - 40449, - 602 - ], - [ - 379566, - 43291, - 332 - ], - [ - 396360, - 38553, - 622 - ], - [ - 397535, - 37371, - 642 - ], - [ - 405142, - 35236, - 812 - ], - [ - 410361, - 36326, - 1032 - ], - [ - 364770, - 47557, - 362 - ], - [ - 410949, - 37519, - 1052 - ], - [ - 406904, - 35593, - 872 - ], - [ - 421073, - 31517, - 1722 - ], - [ - 421120, - 33600, - 1812 - ], - [ - 421232, - 33562, - 1822 - ], - [ - 421347, - 33531, - 1822 - ], - [ - 421463, - 33508, - 1822 - ], - [ - 421319, - 31495, - 1742 - ], - [ - 421581, - 33494, - 1862 - ], - [ - 421648, - 31492, - 1772 - ], - [ - 421700, - 33488, - 1872 - ], - [ - 421908, - 31511, - 1802 - ], - [ - 421818, - 33490, - 1872 - ], - [ - 422165, - 31548, - 1812 - ], - [ - 421936, - 33500, - 1892 - ], - [ - 422419, - 31603, - 1842 - ], - [ - 422053, - 33519, - 1902 - ], - [ - 422545, - 31637, - 1852 - ], - [ - 422169, - 33545, - 1922 - ], - [ - 422877, - 31752, - 1882 - ], - [ - 422283, - 33580, - 1942 - ], - [ - 423352, - 31983, - 1912 - ], - [ - 422501, - 33672, - 1952 - ], - [ - 422393, - 33622, - 1952 - ], - [ - 423502, - 32075, - 1922 - ], - [ - 423039, - 31821, - 1892 - ], - [ - 423197, - 31898, - 1902 - ], - [ - 422713, - 31690, - 1862 - ], - [ - 422293, - 31573, - 1822 - ], - [ - 422037, - 31527, - 1802 - ], - [ - 421778, - 31499, - 1782 - ], - [ - 421566, - 31490, - 1762 - ], - [ - 421483, - 31490, - 1752 - ], - [ - 421401, - 31491, - 1742 - ], - [ - 421237, - 31500, - 1742 - ], - [ - 421155, - 31508, - 1722 - ], - [ - 348983, - 52182, - 362 - ], - [ - 348144, - 53446, - 442 - ], - [ - 220984, - 140590, - 492 - ], - [ - 220973, - 140621, - 492 - ], - [ - 212913, - 135136, - 492 - ], - [ - 216578, - 137773, - 552 - ], - [ - 256179, - 166943, - 682 - ], - [ - 249523, - 162070, - 682 - ], - [ - 220983, - 140295, - 492 - ], - [ - 220972, - 140264, - 492 - ], - [ - 246405, - 159812, - 642 - ], - [ - 243156, - 157445, - 632 - ], - [ - 239842, - 155080, - 612 - ], - [ - 232736, - 149658, - 572 - ], - [ - 229373, - 147250, - 552 - ], - [ - 220656, - 141135, - 632 - ], - [ - 209424, - 128500, - 542 - ], - [ - 210550, - 133409, - 482 - ], - [ - 211646, - 134210, - 482 - ], - [ - 209330, - 128369, - 542 - ], - [ - 209859, - 132903, - 482 - ], - [ - 206270, - 130279, - 552 - ], - [ - 209806, - 132976, - 482 - ], - [ - 210497, - 133481, - 482 - ], - [ - 252854, - 164461, - 672 - ], - [ - 212865, - 135200, - 492 - ], - [ - 211599, - 134274, - 492 - ], - [ - 217093, - 137638, - 512 - ], - [ - 216891, - 137779, - 542 - ], - [ - 216776, - 137918, - 562 - ], - [ - 216728, - 137883, - 572 - ], - [ - 216915, - 137753, - 542 - ], - [ - 216941, - 137729, - 532 - ], - [ - 216969, - 137706, - 532 - ], - [ - 216998, - 137686, - 532 - ], - [ - 217028, - 137668, - 532 - ], - [ - 217060, - 137652, - 512 - ], - [ - 220818, - 140051, - 502 - ], - [ - 217127, - 137627, - 502 - ], - [ - 217474, - 137650, - 502 - ], - [ - 217161, - 137618, - 502 - ], - [ - 217196, - 137611, - 502 - ], - [ - 217231, - 137607, - 502 - ], - [ - 217267, - 137606, - 502 - ], - [ - 217303, - 137607, - 502 - ], - [ - 217338, - 137611, - 502 - ], - [ - 217407, - 137626, - 502 - ], - [ - 217373, - 137617, - 502 - ], - [ - 217441, - 137637, - 502 - ], - [ - 217506, - 137666, - 502 - ], - [ - 217537, - 137684, - 502 - ], - [ - 217566, - 137704, - 502 - ], - [ - 235877, - 151953, - 602 - ], - [ - 220843, - 140073, - 502 - ], - [ - 220867, - 140096, - 502 - ], - [ - 220889, - 140121, - 502 - ], - [ - 220909, - 140147, - 502 - ], - [ - 220928, - 140175, - 492 - ], - [ - 220945, - 140203, - 492 - ], - [ - 220960, - 140233, - 492 - ], - [ - 220992, - 140327, - 492 - ], - [ - 220999, - 140360, - 492 - ], - [ - 221003, - 140393, - 492 - ], - [ - 259396, - 169320, - 722 - ], - [ - 221005, - 140426, - 492 - ], - [ - 221005, - 140459, - 492 - ], - [ - 221003, - 140492, - 492 - ], - [ - 220999, - 140525, - 492 - ], - [ - 220992, - 140558, - 492 - ], - [ - 220960, - 140652, - 492 - ], - [ - 220945, - 140682, - 492 - ], - [ - 220929, - 140710, - 492 - ], - [ - 220910, - 140738, - 502 - ], - [ - 229344, - 147290, - 552 - ], - [ - 232724, - 149674, - 572 - ], - [ - 252842, - 164477, - 672 - ], - [ - 262542, - 171646, - 732 - ], - [ - 265991, - 174194, - 752 - ], - [ - 266506, - 174628, - 752 - ], - [ - 266473, - 174598, - 752 - ], - [ - 266567, - 174694, - 752 - ], - [ - 266538, - 174660, - 752 - ], - [ - 266594, - 174730, - 752 - ], - [ - 266618, - 174767, - 752 - ], - [ - 266640, - 174806, - 752 - ], - [ - 266660, - 174847, - 752 - ], - [ - 266676, - 174889, - 752 - ], - [ - 266690, - 174931, - 752 - ], - [ - 266701, - 174975, - 752 - ], - [ - 266709, - 175019, - 752 - ], - [ - 260858, - 183141, - 922 - ], - [ - 260913, - 183097, - 922 - ], - [ - 264493, - 187881, - 1022 - ], - [ - 260801, - 183182, - 922 - ], - [ - 260740, - 183218, - 922 - ], - [ - 260678, - 183251, - 922 - ], - [ - 260613, - 183279, - 932 - ], - [ - 260371, - 179736, - 832 - ], - [ - 259460, - 182988, - 892 - ], - [ - 257961, - 182977, - 832 - ], - [ - 256522, - 186946, - 982 - ], - [ - 260199, - 183348, - 922 - ], - [ - 260269, - 183348, - 922 - ], - [ - 260129, - 183343, - 922 - ], - [ - 258929, - 183685, - 892 - ], - [ - 259990, - 183318, - 922 - ], - [ - 260059, - 183333, - 922 - ], - [ - 259922, - 183298, - 922 - ], - [ - 259856, - 183274, - 902 - ], - [ - 259792, - 183245, - 902 - ], - [ - 259730, - 183212, - 892 - ], - [ - 259670, - 183175, - 892 - ], - [ - 259613, - 183134, - 892 - ], - [ - 259558, - 183089, - 892 - ], - [ - 259507, - 183040, - 892 - ], - [ - 261334, - 180452, - 962 - ], - [ - 260547, - 183302, - 932 - ], - [ - 249385, - 196614, - 1112 - ], - [ - 250198, - 197652, - 1112 - ], - [ - 249165, - 196912, - 1112 - ], - [ - 257426, - 197444, - 1102 - ], - [ - 255043, - 200668, - 1172 - ], - [ - 254823, - 200966, - 1172 - ], - [ - 265000, - 182896, - 982 - ], - [ - 265037, - 182926, - 992 - ], - [ - 267041, - 184434, - 1112 - ], - [ - 264965, - 182864, - 982 - ], - [ - 264932, - 182829, - 982 - ], - [ - 264902, - 182792, - 972 - ], - [ - 264874, - 182753, - 972 - ], - [ - 264849, - 182712, - 972 - ], - [ - 264827, - 182670, - 972 - ], - [ - 264808, - 182626, - 972 - ], - [ - 264792, - 182581, - 972 - ], - [ - 264779, - 182536, - 962 - ], - [ - 264769, - 182489, - 962 - ], - [ - 264762, - 182442, - 962 - ], - [ - 264759, - 182394, - 952 - ], - [ - 264758, - 182346, - 952 - ], - [ - 264761, - 182299, - 952 - ], - [ - 264768, - 182251, - 952 - ], - [ - 264898, - 181947, - 952 - ], - [ - 266580, - 175527, - 762 - ], - [ - 267309, - 178734, - 882 - ], - [ - 264777, - 182205, - 942 - ], - [ - 264790, - 182158, - 942 - ], - [ - 264806, - 182113, - 942 - ], - [ - 264824, - 182070, - 952 - ], - [ - 264846, - 182027, - 942 - ], - [ - 264871, - 181986, - 942 - ], - [ - 266714, - 175063, - 762 - ], - [ - 267339, - 178697, - 882 - ], - [ - 267372, - 178661, - 892 - ], - [ - 267407, - 178629, - 892 - ], - [ - 267444, - 178598, - 892 - ], - [ - 267483, - 178570, - 892 - ], - [ - 267524, - 178545, - 892 - ], - [ - 267566, - 178523, - 892 - ], - [ - 266606, - 175490, - 762 - ], - [ - 266683, - 175329, - 762 - ], - [ - 266668, - 175371, - 762 - ], - [ - 266696, - 175286, - 762 - ], - [ - 266705, - 175242, - 762 - ], - [ - 267892, - 178455, - 892 - ], - [ - 267844, - 178455, - 892 - ], - [ - 267796, - 178458, - 892 - ], - [ - 267940, - 178458, - 892 - ], - [ - 267988, - 178464, - 892 - ], - [ - 268035, - 178474, - 892 - ], - [ - 268081, - 178487, - 892 - ], - [ - 268126, - 178503, - 892 - ], - [ - 268170, - 178522, - 892 - ], - [ - 268254, - 178569, - 892 - ], - [ - 268213, - 178544, - 892 - ], - [ - 268293, - 178597, - 892 - ], - [ - 270253, - 180087, - 832 - ], - [ - 271547, - 178335, - 762 - ], - [ - 271710, - 178182, - 732 - ], - [ - 271580, - 178359, - 772 - ], - [ - 272535, - 179066, - 772 - ], - [ - 272666, - 178889, - 762 - ], - [ - 274839, - 180771, - 742 - ], - [ - 277156, - 182212, - 712 - ], - [ - 277025, - 182388, - 712 - ], - [ - 283431, - 186868, - 742 - ], - [ - 295247, - 195643, - 742 - ], - [ - 278872, - 183756, - 792 - ], - [ - 279003, - 183579, - 732 - ], - [ - 281071, - 185383, - 742 - ], - [ - 283306, - 187036, - 742 - ], - [ - 278064, - 182884, - 762 - ], - [ - 287812, - 190371, - 802 - ], - [ - 285362, - 188558, - 752 - ], - [ - 285487, - 188389, - 752 - ], - [ - 284328, - 187532, - 752 - ], - [ - 290300, - 191913, - 752 - ], - [ - 290157, - 192106, - 762 - ], - [ - 292085, - 193231, - 752 - ], - [ - 291942, - 193424, - 762 - ], - [ - 295126, - 195805, - 832 - ], - [ - 295958, - 196427, - 832 - ], - [ - 296079, - 196265, - 732 - ], - [ - 296660, - 196952, - 892 - ], - [ - 299623, - 198624, - 732 - ], - [ - 299367, - 198969, - 732 - ], - [ - 301147, - 199759, - 732 - ], - [ - 304746, - 202976, - 962 - ], - [ - 300890, - 200104, - 832 - ], - [ - 305257, - 203357, - 1002 - ], - [ - 306981, - 202087, - 942 - ], - [ - 305449, - 203549, - 1002 - ], - [ - 316409, - 166357, - 942 - ], - [ - 254067, - 190271, - 1012 - ], - [ - 260340, - 183344, - 922 - ], - [ - 260410, - 183335, - 922 - ], - [ - 260479, - 183321, - 922 - ], - [ - 262091, - 191131, - 1042 - ], - [ - 267749, - 178465, - 892 - ], - [ - 266716, - 175153, - 762 - ], - [ - 266716, - 175108, - 752 - ], - [ - 266712, - 175198, - 762 - ], - [ - 267702, - 178475, - 892 - ], - [ - 267656, - 178488, - 892 - ], - [ - 266650, - 175412, - 762 - ], - [ - 266629, - 175452, - 762 - ], - [ - 267610, - 178504, - 892 - ], - [ - 259762, - 194284, - 1122 - ], - [ - 251800, - 193342, - 1032 - ], - [ - 299507, - 64918, - 332 - ], - [ - 223334, - 99266, - 352 - ], - [ - 223042, - 98877, - 372 - ], - [ - 224503, - 97913, - 362 - ], - [ - 224778, - 98330, - 352 - ], - [ - 366155, - 65749, - 512 - ], - [ - 359264, - 61139, - 492 - ], - [ - 365845, - 66151, - 512 - ], - [ - 367650, - 67356, - 522 - ], - [ - 252428, - 98951, - 452 - ], - [ - 252378, - 98985, - 452 - ], - [ - 252482, - 98659, - 452 - ], - [ - 255596, - 96481, - 432 - ], - [ - 263460, - 86380, - 392 - ], - [ - 257498, - 95150, - 442 - ], - [ - 270215, - 86535, - 542 - ], - [ - 267332, - 88559, - 482 - ], - [ - 270460, - 86380, - 512 - ], - [ - 270715, - 86241, - 522 - ], - [ - 270978, - 86117, - 522 - ], - [ - 271248, - 86011, - 522 - ], - [ - 271805, - 85850, - 522 - ], - [ - 271524, - 85922, - 532 - ], - [ - 272090, - 85796, - 512 - ], - [ - 272378, - 85759, - 502 - ], - [ - 272668, - 85741, - 502 - ], - [ - 272958, - 85741, - 502 - ], - [ - 273248, - 85759, - 502 - ], - [ - 273536, - 85796, - 512 - ], - [ - 219752, - 120445, - 532 - ], - [ - 151306, - 157800, - 452 - ], - [ - 151226, - 157827, - 452 - ], - [ - 150041, - 154264, - 452 - ], - [ - 195848, - 135129, - 562 - ], - [ - 200118, - 128661, - 532 - ], - [ - 206474, - 125293, - 602 - ], - [ - 171790, - 147208, - 452 - ], - [ - 167587, - 149220, - 452 - ], - [ - 169022, - 144673, - 452 - ], - [ - 151147, - 157859, - 452 - ], - [ - 151098, - 157882, - 452 - ], - [ - 193853, - 131871, - 442 - ], - [ - 198805, - 129361, - 522 - ], - [ - 151050, - 157908, - 452 - ], - [ - 151003, - 157936, - 452 - ], - [ - 192521, - 132574, - 452 - ], - [ - 180781, - 142770, - 452 - ], - [ - 175639, - 141261, - 452 - ], - [ - 180548, - 138726, - 452 - ], - [ - 184873, - 140849, - 582 - ], - [ - 181886, - 138045, - 452 - ], - [ - 186763, - 135532, - 452 - ], - [ - 150958, - 157965, - 452 - ], - [ - 150914, - 157997, - 452 - ], - [ - 154931, - 155724, - 452 - ], - [ - 154872, - 155777, - 452 - ], - [ - 152626, - 153089, - 452 - ], - [ - 163996, - 147235, - 452 - ], - [ - 154637, - 156095, - 452 - ], - [ - 151365, - 153663, - 452 - ], - [ - 151557, - 157754, - 452 - ], - [ - 143624, - 157171, - 452 - ], - [ - 144974, - 156568, - 452 - ], - [ - 145217, - 160382, - 452 - ], - [ - 150830, - 158066, - 452 - ], - [ - 144993, - 160478, - 452 - ], - [ - 163703, - 151281, - 452 - ], - [ - 162677, - 147908, - 452 - ], - [ - 150871, - 158031, - 452 - ], - [ - 170322, - 143972, - 452 - ], - [ - 174348, - 141937, - 452 - ], - [ - 183469, - 141484, - 452 - ], - [ - 188053, - 134856, - 452 - ], - [ - 192335, - 137111, - 582 - ], - [ - 151389, - 157779, - 452 - ], - [ - 151472, - 157763, - 452 - ], - [ - 151642, - 157750, - 452 - ], - [ - 151727, - 157752, - 452 - ], - [ - 151812, - 157760, - 452 - ], - [ - 151896, - 157774, - 452 - ], - [ - 154574, - 156241, - 452 - ], - [ - 151978, - 157793, - 452 - ], - [ - 154551, - 156317, - 452 - ], - [ - 152060, - 157818, - 452 - ], - [ - 154532, - 156394, - 452 - ], - [ - 152139, - 157849, - 452 - ], - [ - 154519, - 156472, - 452 - ], - [ - 152216, - 157885, - 452 - ], - [ - 154511, - 156551, - 452 - ], - [ - 152290, - 157927, - 452 - ], - [ - 154509, - 156631, - 452 - ], - [ - 152362, - 157973, - 452 - ], - [ - 154511, - 156710, - 452 - ], - [ - 152430, - 158024, - 452 - ], - [ - 154520, - 156789, - 452 - ], - [ - 152494, - 158080, - 452 - ], - [ - 154533, - 156867, - 452 - ], - [ - 152554, - 158140, - 452 - ], - [ - 154551, - 156945, - 452 - ], - [ - 152610, - 158204, - 452 - ], - [ - 154575, - 157020, - 452 - ], - [ - 152661, - 158272, - 452 - ], - [ - 154604, - 157095, - 452 - ], - [ - 152708, - 158343, - 452 - ], - [ - 154638, - 157166, - 452 - ], - [ - 154676, - 157236, - 452 - ], - [ - 156440, - 151121, - 452 - ], - [ - 155059, - 155630, - 452 - ], - [ - 154603, - 156167, - 452 - ], - [ - 161766, - 152236, - 452 - ], - [ - 157729, - 150482, - 452 - ], - [ - 154675, - 156025, - 452 - ], - [ - 154718, - 155958, - 452 - ], - [ - 154765, - 155894, - 452 - ], - [ - 154816, - 155834, - 452 - ], - [ - 154993, - 155675, - 452 - ], - [ - 167633, - 149309, - 452 - ], - [ - 183909, - 142337, - 452 - ], - [ - 185313, - 141702, - 452 - ], - [ - 184091, - 142477, - 452 - ], - [ - 185396, - 141862, - 452 - ], - [ - 259207, - 94954, - 462 - ], - [ - 259756, - 94587, - 492 - ], - [ - 316441, - 195369, - 712 - ], - [ - 319146, - 198121, - 862 - ], - [ - 318791, - 198466, - 912 - ], - [ - 318585, - 198668, - 922 - ], - [ - 315921, - 195876, - 772 - ], - [ - 309955, - 60558, - 342 - ], - [ - 310884, - 60199, - 342 - ], - [ - 310137, - 61024, - 352 - ], - [ - 311063, - 60666, - 352 - ], - [ - 423570, - 26101, - 1872 - ], - [ - 424807, - 26973, - 1892 - ], - [ - 329938, - 122108, - 542 - ], - [ - 329634, - 122505, - 532 - ], - [ - 326579, - 120163, - 532 - ], - [ - 326883, - 119766, - 582 - ], - [ - 359046, - 159364, - 782 - ], - [ - 322026, - 195323, - 842 - ], - [ - 356367, - 156500, - 622 - ], - [ - 318866, - 193009, - 672 - ], - [ - 363678, - 149155, - 632 - ], - [ - 366223, - 152404, - 832 - ], - [ - 363152, - 149652, - 652 - ], - [ - 365999, - 152622, - 842 - ], - [ - 366540, - 152098, - 802 - ], - [ - 329586, - 54172, - 242 - ], - [ - 330542, - 53880, - 242 - ], - [ - 330688, - 54359, - 262 - ], - [ - 329731, - 54650, - 262 - ], - [ - 206755, - 123828, - 512 - ], - [ - 207029, - 124246, - 552 - ], - [ - 208303, - 122815, - 472 - ], - [ - 208577, - 123233, - 502 - ], - [ - 444290, - 46040, - 1992 - ], - [ - 443536, - 45499, - 2002 - ], - [ - 449333, - 53632, - 1692 - ], - [ - 449067, - 52743, - 1702 - ], - [ - 448743, - 51874, - 1742 - ], - [ - 448363, - 51027, - 1762 - ], - [ - 447928, - 50208, - 1782 - ], - [ - 447440, - 49418, - 1792 - ], - [ - 446902, - 48663, - 1832 - ], - [ - 446315, - 47944, - 1862 - ], - [ - 445682, - 47266, - 1892 - ], - [ - 445006, - 46630, - 1962 - ], - [ - 424931, - 33035, - 1952 - ], - [ - 449540, - 54536, - 1672 - ], - [ - 449774, - 56376, - 1572 - ], - [ - 449687, - 55453, - 1612 - ], - [ - 449800, - 57304, - 1542 - ], - [ - 449669, - 59154, - 1392 - ], - [ - 449765, - 58231, - 1452 - ], - [ - 449513, - 60068, - 1412 - ], - [ - 449022, - 61857, - 1282 - ], - [ - 449297, - 60971, - 1312 - ], - [ - 448690, - 62723, - 1252 - ], - [ - 447858, - 64381, - 1212 - ], - [ - 448301, - 63566, - 1222 - ], - [ - 447363, - 65166, - 1172 - ], - [ - 446817, - 65916, - 1162 - ], - [ - 435106, - 80948, - 882 - ], - [ - 434882, - 81223, - 872 - ], - [ - 434657, - 81497, - 872 - ], - [ - 434430, - 81769, - 872 - ], - [ - 434202, - 82041, - 862 - ], - [ - 433972, - 82311, - 862 - ], - [ - 433741, - 82579, - 902 - ], - [ - 433508, - 82847, - 912 - ], - [ - 325532, - 83333, - 522 - ], - [ - 326449, - 82121, - 502 - ], - [ - 343424, - 30584, - 1152 - ], - [ - 344465, - 31412, - 1092 - ], - [ - 344179, - 31591, - 1102 - ], - [ - 339575, - 31588, - 1312 - ], - [ - 338812, - 30725, - 1302 - ], - [ - 339045, - 31105, - 1312 - ], - [ - 338893, - 30920, - 1302 - ], - [ - 339210, - 31279, - 1302 - ], - [ - 339387, - 31440, - 1312 - ], - [ - 339773, - 31723, - 1302 - ], - [ - 339980, - 31843, - 1302 - ], - [ - 340196, - 31949, - 1292 - ], - [ - 340418, - 32039, - 1292 - ], - [ - 340646, - 32112, - 1272 - ], - [ - 340878, - 32170, - 1272 - ], - [ - 341114, - 32210, - 1262 - ], - [ - 341353, - 32234, - 1262 - ], - [ - 341592, - 32241, - 1252 - ], - [ - 341930, - 32240, - 1242 - ], - [ - 342267, - 32216, - 1212 - ], - [ - 342601, - 32168, - 1192 - ], - [ - 342931, - 32098, - 1162 - ], - [ - 343255, - 32004, - 1152 - ], - [ - 343573, - 31888, - 1122 - ], - [ - 343881, - 31750, - 1112 - ], - [ - 247227, - 102525, - 452 - ], - [ - 252197, - 99110, - 452 - ], - [ - 222150, - 100066, - 372 - ], - [ - 221357, - 100589, - 382 - ], - [ - 221874, - 99649, - 392 - ], - [ - 221081, - 100172, - 412 - ], - [ - 422965, - 34043, - 1962 - ], - [ - 424313, - 32620, - 1942 - ], - [ - 422671, - 33774, - 1952 - ], - [ - 422735, - 33822, - 1962 - ], - [ - 422796, - 33873, - 1962 - ], - [ - 422855, - 33927, - 1962 - ], - [ - 422911, - 33984, - 1962 - ], - [ - 426973, - 36090, - 2142 - ], - [ - 429671, - 39176, - 2272 - ], - [ - 430643, - 86045, - 902 - ], - [ - 432818, - 83617, - 922 - ], - [ - 302436, - 101751, - 652 - ], - [ - 302853, - 102692, - 612 - ], - [ - 278498, - 83124, - 552 - ], - [ - 278426, - 83524, - 552 - ], - [ - 278440, - 83333, - 552 - ], - [ - 278424, - 83716, - 552 - ], - [ - 278434, - 83907, - 562 - ], - [ - 278457, - 84098, - 562 - ], - [ - 278493, - 84286, - 562 - ], - [ - 278540, - 84472, - 562 - ], - [ - 278600, - 84654, - 562 - ], - [ - 278671, - 84832, - 562 - ], - [ - 278754, - 85005, - 562 - ], - [ - 278848, - 85172, - 562 - ], - [ - 278952, - 85333, - 562 - ], - [ - 279067, - 85487, - 562 - ], - [ - 279192, - 85632, - 562 - ], - [ - 279325, - 85770, - 562 - ], - [ - 279468, - 85898, - 572 - ], - [ - 279618, - 86017, - 572 - ], - [ - 279776, - 86126, - 572 - ], - [ - 303154, - 102293, - 622 - ], - [ - 350856, - 138826, - 632 - ], - [ - 337791, - 129711, - 502 - ], - [ - 329659, - 123529, - 472 - ], - [ - 329634, - 123513, - 472 - ], - [ - 329686, - 123543, - 472 - ], - [ - 329713, - 123556, - 472 - ], - [ - 329799, - 123582, - 472 - ], - [ - 329741, - 123567, - 472 - ], - [ - 329769, - 123575, - 472 - ], - [ - 330166, - 123495, - 472 - ], - [ - 329828, - 123587, - 472 - ], - [ - 329858, - 123590, - 472 - ], - [ - 329888, - 123591, - 472 - ], - [ - 329918, - 123590, - 472 - ], - [ - 329948, - 123587, - 472 - ], - [ - 330006, - 123575, - 472 - ], - [ - 329977, - 123582, - 472 - ], - [ - 330035, - 123566, - 472 - ], - [ - 330063, - 123556, - 472 - ], - [ - 330090, - 123543, - 472 - ], - [ - 330116, - 123529, - 472 - ], - [ - 330142, - 123513, - 472 - ], - [ - 330249, - 123409, - 482 - ], - [ - 330189, - 123475, - 472 - ], - [ - 330210, - 123455, - 472 - ], - [ - 330230, - 123432, - 482 - ], - [ - 337704, - 129082, - 492 - ], - [ - 338422, - 128116, - 552 - ], - [ - 337687, - 129110, - 492 - ], - [ - 337671, - 129139, - 492 - ], - [ - 337658, - 129170, - 492 - ], - [ - 337767, - 129689, - 502 - ], - [ - 337647, - 129201, - 492 - ], - [ - 337631, - 129265, - 492 - ], - [ - 337638, - 129232, - 492 - ], - [ - 337626, - 129298, - 492 - ], - [ - 337624, - 129331, - 492 - ], - [ - 337626, - 129397, - 492 - ], - [ - 337624, - 129364, - 492 - ], - [ - 337631, - 129429, - 502 - ], - [ - 337637, - 129462, - 502 - ], - [ - 337646, - 129494, - 502 - ], - [ - 337658, - 129525, - 502 - ], - [ - 337686, - 129584, - 502 - ], - [ - 337671, - 129555, - 502 - ], - [ - 337723, - 129639, - 502 - ], - [ - 337704, - 129612, - 502 - ], - [ - 337744, - 129665, - 502 - ], - [ - 351794, - 138926, - 652 - ], - [ - 352862, - 137530, - 692 - ], - [ - 353702, - 138240, - 702 - ], - [ - 351485, - 139320, - 642 - ], - [ - 359376, - 149595, - 712 - ], - [ - 358884, - 149070, - 692 - ], - [ - 359486, - 149727, - 712 - ], - [ - 359605, - 149850, - 712 - ], - [ - 359732, - 149965, - 712 - ], - [ - 359867, - 150070, - 712 - ], - [ - 360334, - 150303, - 712 - ], - [ - 360010, - 150166, - 712 - ], - [ - 360159, - 150251, - 712 - ], - [ - 360313, - 150326, - 712 - ], - [ - 355848, - 140053, - 702 - ], - [ - 354030, - 138517, - 702 - ], - [ - 355919, - 139969, - 702 - ], - [ - 354101, - 138433, - 722 - ], - [ - 351165, - 138432, - 642 - ], - [ - 353773, - 138156, - 722 - ], - [ - 352933, - 137446, - 692 - ], - [ - 352541, - 137259, - 682 - ], - [ - 343425, - 129873, - 632 - ], - [ - 343001, - 129549, - 632 - ], - [ - 344126, - 130214, - 632 - ], - [ - 343521, - 129760, - 632 - ], - [ - 353399, - 119443, - 822 - ], - [ - 340791, - 127816, - 612 - ], - [ - 341194, - 128125, - 612 - ], - [ - 340868, - 127673, - 652 - ], - [ - 330990, - 122460, - 532 - ], - [ - 356717, - 146927, - 632 - ], - [ - 279941, - 86224, - 572 - ], - [ - 302165, - 102163, - 622 - ], - [ - 362793, - 149991, - 652 - ], - [ - 362670, - 150085, - 662 - ], - [ - 362541, - 150170, - 662 - ], - [ - 362406, - 150247, - 662 - ], - [ - 363603, - 154945, - 872 - ], - [ - 362267, - 150315, - 662 - ], - [ - 362124, - 150374, - 662 - ], - [ - 361978, - 150424, - 662 - ], - [ - 361828, - 150464, - 662 - ], - [ - 361677, - 150495, - 672 - ], - [ - 361523, - 150515, - 672 - ], - [ - 361369, - 150526, - 682 - ], - [ - 361214, - 150527, - 682 - ], - [ - 361059, - 150518, - 682 - ], - [ - 359738, - 150964, - 702 - ], - [ - 360906, - 150499, - 692 - ], - [ - 360754, - 150470, - 692 - ], - [ - 360604, - 150432, - 692 - ], - [ - 360457, - 150383, - 712 - ], - [ - 294055, - 68338, - 422 - ], - [ - 291697, - 69046, - 442 - ], - [ - 294293, - 68778, - 412 - ], - [ - 292209, - 69338, - 432 - ], - [ - 292447, - 69777, - 402 - ], - [ - 428669, - 88250, - 802 - ], - [ - 418059, - 103217, - 922 - ], - [ - 411165, - 103390, - 762 - ], - [ - 429116, - 87750, - 842 - ], - [ - 432632, - 90982, - 962 - ], - [ - 403849, - 116096, - 892 - ], - [ - 406737, - 107414, - 842 - ], - [ - 406656, - 113482, - 912 - ], - [ - 409480, - 110886, - 922 - ], - [ - 407983, - 106244, - 792 - ], - [ - 412322, - 108310, - 922 - ], - [ - 415182, - 105754, - 922 - ], - [ - 410521, - 103952, - 762 - ], - [ - 401060, - 118730, - 892 - ], - [ - 398290, - 121383, - 862 - ], - [ - 409881, - 104519, - 772 - ], - [ - 409245, - 105090, - 792 - ], - [ - 408612, - 105665, - 772 - ], - [ - 407358, - 106827, - 812 - ], - [ - 364250, - 148615, - 632 - ], - [ - 429819, - 86966, - 882 - ], - [ - 289151, - 75734, - 432 - ], - [ - 290221, - 75093, - 442 - ], - [ - 290331, - 75121, - 442 - ], - [ - 290241, - 75084, - 442 - ], - [ - 290328, - 75116, - 442 - ], - [ - 290321, - 75108, - 442 - ], - [ - 290325, - 75112, - 442 - ], - [ - 290309, - 75097, - 442 - ], - [ - 290317, - 75104, - 442 - ], - [ - 290313, - 75100, - 442 - ], - [ - 290300, - 75091, - 442 - ], - [ - 290304, - 75094, - 442 - ], - [ - 290290, - 75086, - 442 - ], - [ - 290295, - 75088, - 442 - ], - [ - 290268, - 75082, - 442 - ], - [ - 290279, - 75083, - 442 - ], - [ - 290285, - 75085, - 442 - ], - [ - 290274, - 75082, - 442 - ], - [ - 290257, - 75082, - 442 - ], - [ - 290263, - 75082, - 442 - ], - [ - 290252, - 75082, - 442 - ], - [ - 290246, - 75083, - 442 - ], - [ - 290226, - 75090, - 442 - ], - [ - 290236, - 75086, - 442 - ], - [ - 290231, - 75088, - 442 - ], - [ - 253950, - 93075, - 402 - ], - [ - 254871, - 92473, - 432 - ], - [ - 255144, - 92891, - 442 - ], - [ - 254223, - 93493, - 412 - ], - [ - 306706, - 61398, - 322 - ], - [ - 307005, - 61271, - 322 - ], - [ - 311692, - 59414, - 352 - ], - [ - 311210, - 59594, - 332 - ], - [ - 310728, - 59777, - 332 - ], - [ - 310246, - 59962, - 332 - ], - [ - 309287, - 60338, - 332 - ], - [ - 309766, - 60149, - 332 - ], - [ - 308507, - 60650, - 332 - ], - [ - 308206, - 60773, - 332 - ], - [ - 307905, - 60896, - 332 - ], - [ - 307605, - 61020, - 332 - ], - [ - 307305, - 61145, - 322 - ], - [ - 305934, - 61751, - 302 - ], - [ - 304396, - 62473, - 292 - ], - [ - 305164, - 62109, - 292 - ], - [ - 303632, - 62842, - 302 - ], - [ - 302869, - 63217, - 282 - ], - [ - 302110, - 63597, - 312 - ], - [ - 308808, - 60529, - 332 - ], - [ - 206172, - 130208, - 552 - ], - [ - 200466, - 133622, - 622 - ], - [ - 196296, - 135922, - 612 - ], - [ - 196357, - 135946, - 612 - ], - [ - 196321, - 135967, - 612 - ], - [ - 196375, - 135981, - 612 - ], - [ - 394186, - 25234, - 682 - ], - [ - 394336, - 25809, - 662 - ], - [ - 393853, - 25935, - 682 - ], - [ - 393700, - 25354, - 1012 - ], - [ - 394186, - 25234, - 582 - ], - [ - 394336, - 25809, - 582 - ], - [ - 393853, - 25935, - 302 - ], - [ - 393700, - 25354, - 302 - ], - [ - 292875, - 74437, - 4272 - ], - [ - 376887, - 96647, - 4082 - ], - [ - 380852, - 92275, - 2962 - ], - [ - 353399, - 119443, - 852 - ], - [ - 393947, - 89661, - 2682 - ], - [ - 393914, - 89211, - 2632 - ], - [ - 398060, - 92763, - 2772 - ], - [ - 397763, - 92930, - 2622 - ], - [ - 109839, - 170332, - 1462 - ], - [ - 84315, - 182093, - 4622 - ], - [ - 56356, - 193967, - 1462 - ], - [ - 80933, - 183588, - 4622 - ], - [ - 79290, - 184314, - 4622 - ], - [ - 90847, - 179206, - 4622 - ], - [ - 85658, - 181499, - 4622 - ], - [ - 92227, - 178597, - 4622 - ], - [ - 97198, - 176400, - 4622 - ], - [ - 98554, - 175801, - 4622 - ], - [ - 105022, - 172942, - 4622 - ], - [ - 110018, - 170734, - 4622 - ], - [ - 110124, - 170687, - 4622 - ], - [ - 103661, - 173544, - 4622 - ], - [ - 116519, - 167817, - 4622 - ], - [ - 111466, - 170084, - 4622 - ], - [ - 117862, - 167214, - 4622 - ], - [ - 118387, - 166497, - 1462 - ], - [ - 118568, - 166898, - 4622 - ], - [ - 122966, - 164908, - 4622 - ], - [ - 122940, - 164437, - 1462 - ], - [ - 123121, - 164838, - 4622 - ], - [ - 124311, - 164300, - 4622 - ], - [ - 129417, - 161992, - 4622 - ], - [ - 130773, - 161379, - 4622 - ], - [ - 136520, - 158781, - 4622 - ], - [ - 137840, - 158184, - 4622 - ], - [ - 150645, - 151912, - 1462 - ], - [ - 143023, - 155841, - 4622 - ], - [ - 149442, - 152939, - 4622 - ], - [ - 144370, - 155232, - 4622 - ], - [ - 150767, - 152340, - 4622 - ], - [ - 151603, - 151960, - 4622 - ], - [ - 151411, - 151564, - 1462 - ], - [ - 155771, - 149819, - 4622 - ], - [ - 157051, - 149162, - 4622 - ], - [ - 162012, - 146614, - 4622 - ], - [ - 170859, - 141575, - 1462 - ], - [ - 163330, - 145937, - 4622 - ], - [ - 168347, - 143360, - 4622 - ], - [ - 169661, - 142685, - 4622 - ], - [ - 171061, - 141966, - 4622 - ], - [ - 173670, - 140621, - 4622 - ], - [ - 202997, - 125016, - 1462 - ], - [ - 187383, - 133556, - 4622 - ], - [ - 174966, - 139954, - 4622 - ], - [ - 179877, - 137423, - 4622 - ], - [ - 181212, - 136736, - 4622 - ], - [ - 186088, - 134223, - 4622 - ], - [ - 199440, - 127344, - 4262 - ], - [ - 203013, - 125062, - 1462 - ], - [ - 191843, - 131258, - 4622 - ], - [ - 193182, - 130568, - 3432 - ], - [ - 198117, - 128025, - 542 - ], - [ - 203223, - 125341, - 1442 - ], - [ - 203289, - 125360, - 1442 - ], - [ - 203051, - 125040, - 1512 - ], - [ - 45057, - 199557, - 1462 - ], - [ - 41760, - 201133, - 1462 - ], - [ - 41570, - 200736, - 1462 - ], - [ - 51565, - 196585, - 1462 - ], - [ - 47449, - 197938, - 1462 - ], - [ - 45237, - 199473, - 1462 - ], - [ - 44868, - 199160, - 1462 - ], - [ - 37528, - 200891, - 1462 - ], - [ - 37801, - 201385, - 1462 - ], - [ - 37291, - 200905, - 1462 - ], - [ - 37577, - 201848, - 1462 - ], - [ - 37063, - 200919, - 1462 - ], - [ - 47633, - 198338, - 1462 - ], - [ - 50215, - 197187, - 1462 - ], - [ - 56500, - 194385, - 1462 - ], - [ - 62904, - 191555, - 1462 - ], - [ - 57874, - 193778, - 1462 - ], - [ - 64241, - 190964, - 1462 - ], - [ - 69423, - 188674, - 1462 - ], - [ - 70776, - 188076, - 1462 - ], - [ - 77937, - 184911, - 1462 - ], - [ - 199440, - 127344, - 462 - ], - [ - 203013, - 125062, - 302 - ], - [ - 202997, - 125016, - 302 - ], - [ - 170859, - 141575, - 302 - ], - [ - 151411, - 151564, - 302 - ], - [ - 150645, - 151912, - 302 - ], - [ - 122940, - 164437, - 302 - ], - [ - 118387, - 166497, - 302 - ], - [ - 109839, - 170332, - 302 - ], - [ - 56356, - 193967, - 302 - ], - [ - 47449, - 197938, - 302 - ], - [ - 44868, - 199160, - 302 - ], - [ - 41570, - 200736, - 302 - ], - [ - 37801, - 201385, - 302 - ], - [ - 37528, - 200891, - 302 - ], - [ - 37291, - 200905, - 302 - ], - [ - 37063, - 200919, - 302 - ], - [ - 324056, - 155427, - 3832 - ], - [ - 324427, - 154656, - 3582 - ], - [ - 325475, - 153356, - 3422 - ], - [ - 325861, - 152562, - 2962 - ], - [ - 326068, - 152454, - 2962 - ], - [ - 322708, - 157380, - 4352 - ], - [ - 323304, - 156296, - 3782 - ], - [ - 323191, - 156461, - 3822 - ], - [ - 322619, - 157296, - 4352 - ], - [ - 324232, - 154764, - 3702 - ], - [ - 324344, - 154599, - 3582 - ], - [ - 324314, - 154821, - 3812 - ], - [ - 321870, - 158389, - 3532 - ], - [ - 320633, - 160196, - 3812 - ], - [ - 323108, - 156404, - 3742 - ], - [ - 323221, - 156239, - 3782 - ], - [ - 321989, - 158216, - 4222 - ], - [ - 321906, - 158160, - 4222 - ], - [ - 321787, - 158333, - 3522 - ], - [ - 343001, - 129549, - 812 - ], - [ - 343521, - 129760, - 1122 - ], - [ - 343425, - 129873, - 1122 - ], - [ - 343754, - 129442, - 2822 - ], - [ - 350233, - 122953, - 2682 - ], - [ - 344126, - 130214, - 652 - ], - [ - 350436, - 122705, - 2682 - ], - [ - 350357, - 122646, - 2682 - ], - [ - 350141, - 122886, - 2682 - ], - [ - 347282, - 126370, - 2702 - ], - [ - 346993, - 126549, - 2702 - ], - [ - 347205, - 126302, - 2722 - ], - [ - 347070, - 126618, - 2722 - ], - [ - 343653, - 129587, - 2822 - ], - [ - 397364, - 24448, - 8652 - ], - [ - 394079, - 24825, - 682 - ], - [ - 398116, - 23817, - 7612 - ], - [ - 400560, - 23612, - 8912 - ], - [ - 399599, - 23429, - 7692 - ], - [ - 401643, - 23328, - 6662 - ], - [ - 410684, - 22585, - 1972 - ], - [ - 411031, - 22219, - 1902 - ], - [ - 406967, - 21935, - 1302 - ], - [ - 406950, - 21506, - 1262 - ], - [ - 392956, - 25106, - 4452 - ], - [ - 391484, - 25470, - 4102 - ], - [ - 386273, - 26759, - 7522 - ], - [ - 384791, - 27125, - 7912 - ], - [ - 373210, - 29990, - 6682 - ], - [ - 358579, - 34042, - 722 - ], - [ - 371725, - 30357, - 7242 - ], - [ - 366354, - 31686, - 6762 - ], - [ - 364842, - 32061, - 6862 - ], - [ - 358289, - 33668, - 772 - ], - [ - 359821, - 33303, - 7232 - ], - [ - 353109, - 34868, - 1332 - ], - [ - 351652, - 35205, - 1022 - ], - [ - 344304, - 36909, - 1502 - ], - [ - 342060, - 37870, - 1582 - ], - [ - 342773, - 37263, - 1542 - ], - [ - 342081, - 37423, - 1572 - ], - [ - 337158, - 38508, - 1922 - ], - [ - 336865, - 38611, - 1962 - ], - [ - 336733, - 38425, - 1962 - ], - [ - 337058, - 38087, - 1892 - ], - [ - 336606, - 38246, - 1932 - ], - [ - 341984, - 37446, - 1572 - ], - [ - 379834, - 28352, - 7602 - ], - [ - 378352, - 28719, - 7852 - ], - [ - 397364, - 24448, - 582 - ], - [ - 400560, - 23612, - 582 - ], - [ - 401643, - 23328, - 582 - ], - [ - 406967, - 21935, - 582 - ], - [ - 410684, - 22585, - 582 - ], - [ - 341984, - 37446, - 1502 - ], - [ - 337058, - 38087, - 1812 - ], - [ - 336606, - 38246, - 1852 - ], - [ - 337158, - 38508, - 302 - ], - [ - 336865, - 38611, - 302 - ], - [ - 342060, - 37870, - 302 - ], - [ - 358579, - 34042, - 302 - ], - [ - 346486, - 145258, - 1022 - ], - [ - 346327, - 144995, - 982 - ], - [ - 346557, - 145188, - 972 - ], - [ - 346260, - 145069, - 992 - ], - [ - 344158, - 143185, - 1022 - ], - [ - 343975, - 142927, - 982 - ], - [ - 344225, - 143110, - 922 - ], - [ - 343910, - 143003, - 982 - ], - [ - 341797, - 141184, - 862 - ], - [ - 341607, - 140898, - 822 - ], - [ - 341862, - 141109, - 832 - ], - [ - 341543, - 140975, - 832 - ], - [ - 252428, - 98951, - 492 - ], - [ - 252482, - 98659, - 472 - ], - [ - 252378, - 98985, - 492 - ], - [ - 252197, - 99110, - 492 - ], - [ - 247227, - 102525, - 502 - ], - [ - 246886, - 102505, - 472 - ], - [ - 247054, - 102644, - 492 - ], - [ - 247005, - 102678, - 492 - ], - [ - 278221, - 135940, - 4842 - ], - [ - 276701, - 138123, - 5122 - ], - [ - 278139, - 135883, - 4842 - ], - [ - 276619, - 138066, - 5122 - ], - [ - 318001, - 163687, - 3052 - ], - [ - 316456, - 166290, - 3052 - ], - [ - 316353, - 166036, - 3012 - ], - [ - 320453, - 160191, - 3812 - ], - [ - 320135, - 159965, - 3812 - ], - [ - 320274, - 159942, - 3812 - ], - [ - 320192, - 159884, - 3812 - ], - [ - 319993, - 160846, - 3532 - ], - [ - 319903, - 160783, - 3502 - ], - [ - 320219, - 160332, - 3812 - ], - [ - 320309, - 160395, - 3542 - ], - [ - 318328, - 163220, - 3052 - ], - [ - 318238, - 163157, - 3072 - ], - [ - 317911, - 163623, - 3012 - ], - [ - 316131, - 166161, - 3012 - ], - [ - 316263, - 165973, - 3012 - ], - [ - 316409, - 166357, - 3052 - ], - [ - 279268, - 131691, - 3432 - ], - [ - 276896, - 134990, - 2602 - ], - [ - 279186, - 131634, - 3232 - ], - [ - 276815, - 134931, - 2602 - ], - [ - 272872, - 140416, - 2542 - ], - [ - 196359, - 117543, - 1772 - ], - [ - 196064, - 117531, - 1742 - ], - [ - 196194, - 117137, - 1722 - ], - [ - 195771, - 117500, - 1852 - ], - [ - 195934, - 117114, - 1722 - ], - [ - 195480, - 117450, - 1852 - ], - [ - 195676, - 117074, - 1722 - ], - [ - 195194, - 117381, - 1882 - ], - [ - 195421, - 117016, - 1772 - ], - [ - 194912, - 117293, - 1852 - ], - [ - 195171, - 116942, - 1772 - ], - [ - 194637, - 117187, - 1912 - ], - [ - 194927, - 116851, - 1852 - ], - [ - 194369, - 117064, - 1922 - ], - [ - 194689, - 116743, - 1852 - ], - [ - 193621, - 116593, - 1922 - ], - [ - 193060, - 116484, - 2032 - ], - [ - 193635, - 115984, - 1802 - ], - [ - 194237, - 116482, - 1882 - ], - [ - 194109, - 116923, - 1952 - ], - [ - 193860, - 116766, - 1952 - ], - [ - 194025, - 116330, - 1842 - ], - [ - 193824, - 116163, - 1822 - ], - [ - 194459, - 116620, - 1852 - ], - [ - 193226, - 116664, - 2032 - ], - [ - 193366, - 116816, - 2432 - ], - [ - 196454, - 117143, - 1722 - ], - [ - 196715, - 117131, - 1722 - ], - [ - 196654, - 117536, - 1772 - ], - [ - 196974, - 117102, - 1692 - ], - [ - 196948, - 117510, - 1772 - ], - [ - 197231, - 117055, - 1692 - ], - [ - 197239, - 117465, - 1772 - ], - [ - 197484, - 116991, - 1682 - ], - [ - 197527, - 117401, - 1942 - ], - [ - 197732, - 116911, - 1682 - ], - [ - 197810, - 117318, - 1942 - ], - [ - 197975, - 116814, - 1612 - ], - [ - 198087, - 117217, - 1942 - ], - [ - 198336, - 117042, - 1622 - ], - [ - 198357, - 117098, - 1622 - ], - [ - 198242, - 116788, - 1602 - ], - [ - 198210, - 116701, - 1602 - ], - [ - 193621, - 116593, - 302 - ], - [ - 193366, - 116816, - 302 - ], - [ - 193860, - 116766, - 302 - ], - [ - 194109, - 116923, - 302 - ], - [ - 194369, - 117064, - 302 - ], - [ - 194637, - 117187, - 302 - ], - [ - 194912, - 117293, - 302 - ], - [ - 195194, - 117381, - 302 - ], - [ - 195480, - 117450, - 302 - ], - [ - 195771, - 117500, - 302 - ], - [ - 196064, - 117531, - 302 - ], - [ - 196359, - 117543, - 302 - ], - [ - 196654, - 117536, - 302 - ], - [ - 196948, - 117510, - 302 - ], - [ - 197239, - 117465, - 302 - ], - [ - 197527, - 117401, - 302 - ], - [ - 197810, - 117318, - 302 - ], - [ - 198087, - 117217, - 302 - ], - [ - 303548, - 184296, - 3732 - ], - [ - 303384, - 184165, - 3732 - ], - [ - 330564, - 147826, - 3302 - ], - [ - 330394, - 147703, - 2992 - ], - [ - 403757, - 31323, - 4542 - ], - [ - 398913, - 32727, - 5392 - ], - [ - 396028, - 33106, - 1302 - ], - [ - 411897, - 27720, - 1962 - ], - [ - 411755, - 27133, - 2082 - ], - [ - 411963, - 27081, - 2302 - ], - [ - 412347, - 27795, - 1932 - ], - [ - 412163, - 27032, - 2302 - ], - [ - 411212, - 29149, - 1332 - ], - [ - 410963, - 28775, - 1382 - ], - [ - 409363, - 29697, - 1812 - ], - [ - 405190, - 30907, - 5162 - ], - [ - 385483, - 36720, - 4082 - ], - [ - 384109, - 37139, - 4082 - ], - [ - 387110, - 35764, - 1172 - ], - [ - 351518, - 47075, - 6702 - ], - [ - 350119, - 47501, - 4952 - ], - [ - 359329, - 44237, - 5552 - ], - [ - 327384, - 53964, - 6282 - ], - [ - 327057, - 54480, - 4972 - ], - [ - 326946, - 54054, - 6522 - ], - [ - 300430, - 64460, - 7352 - ], - [ - 300277, - 64541, - 7262 - ], - [ - 300405, - 64000, - 7482 - ], - [ - 307653, - 60546, - 332 - ], - [ - 307305, - 61145, - 342 - ], - [ - 306542, - 61011, - 332 - ], - [ - 305934, - 61751, - 1762 - ], - [ - 305508, - 61485, - 1762 - ], - [ - 299507, - 64918, - 6422 - ], - [ - 295953, - 66770, - 8512 - ], - [ - 299399, - 64531, - 6632 - ], - [ - 294609, - 67470, - 7702 - ], - [ - 294269, - 67219, - 6382 - ], - [ - 303453, - 62463, - 6912 - ], - [ - 302869, - 63217, - 6962 - ], - [ - 302432, - 62966, - 7332 - ], - [ - 302110, - 63597, - 7212 - ], - [ - 301416, - 63478, - 7482 - ], - [ - 301045, - 64140, - 7352 - ], - [ - 290167, - 69875, - 9532 - ], - [ - 288857, - 70586, - 7802 - ], - [ - 285501, - 71995, - 6632 - ], - [ - 272842, - 80283, - 412 - ], - [ - 263460, - 86380, - 5572 - ], - [ - 263220, - 86012, - 6322 - ], - [ - 261355, - 87756, - 6212 - ], - [ - 256738, - 90774, - 5452 - ], - [ - 228270, - 109388, - 4532 - ], - [ - 227022, - 110204, - 1522 - ], - [ - 233370, - 105523, - 5972 - ], - [ - 209394, - 121742, - 3952 - ], - [ - 205365, - 124379, - 1312 - ], - [ - 205339, - 124120, - 1462 - ], - [ - 205225, - 123793, - 1502 - ], - [ - 205296, - 123898, - 1312 - ], - [ - 205140, - 123842, - 1522 - ], - [ - 221192, - 114020, - 522 - ], - [ - 205312, - 124246, - 1462 - ], - [ - 205282, - 124282, - 1502 - ], - [ - 210623, - 120937, - 2842 - ], - [ - 215331, - 117856, - 5172 - ], - [ - 216567, - 117047, - 5392 - ], - [ - 222415, - 113219, - 5062 - ], - [ - 250479, - 94866, - 5132 - ], - [ - 232895, - 106360, - 4572 - ], - [ - 233611, - 105891, - 5582 - ], - [ - 234079, - 105586, - 5042 - ], - [ - 238778, - 102514, - 3372 - ], - [ - 239999, - 101716, - 4512 - ], - [ - 244621, - 98695, - 4132 - ], - [ - 245849, - 97892, - 4692 - ], - [ - 251710, - 94061, - 5462 - ], - [ - 255489, - 91591, - 4242 - ], - [ - 276003, - 77699, - 492 - ], - [ - 262577, - 86958, - 6112 - ], - [ - 283548, - 73531, - 6542 - ], - [ - 283175, - 73865, - 7042 - ], - [ - 278316, - 76815, - 362 - ], - [ - 276235, - 78078, - 392 - ], - [ - 283587, - 73615, - 6542 - ], - [ - 284422, - 73030, - 6942 - ], - [ - 285686, - 72305, - 6632 - ], - [ - 291697, - 69046, - 7772 - ], - [ - 299977, - 64688, - 6632 - ], - [ - 304478, - 61969, - 1792 - ], - [ - 304396, - 62473, - 1792 - ], - [ - 305164, - 62109, - 1782 - ], - [ - 308769, - 60092, - 8472 - ], - [ - 308507, - 60650, - 352 - ], - [ - 300584, - 64380, - 7352 - ], - [ - 300737, - 64300, - 7482 - ], - [ - 300891, - 64220, - 7482 - ], - [ - 301199, - 64061, - 7482 - ], - [ - 301353, - 63982, - 7392 - ], - [ - 310728, - 59777, - 7482 - ], - [ - 309889, - 59650, - 8252 - ], - [ - 311014, - 59219, - 7652 - ], - [ - 309287, - 60338, - 7142 - ], - [ - 303632, - 62842, - 6962 - ], - [ - 312143, - 58801, - 8192 - ], - [ - 311692, - 59414, - 7582 - ], - [ - 313629, - 58715, - 7672 - ], - [ - 313277, - 58394, - 8322 - ], - [ - 314415, - 57999, - 8212 - ], - [ - 312798, - 59010, - 7822 - ], - [ - 307005, - 61271, - 342 - ], - [ - 306706, - 61398, - 352 - ], - [ - 307605, - 61020, - 342 - ], - [ - 307905, - 60896, - 342 - ], - [ - 308206, - 60773, - 342 - ], - [ - 308808, - 60529, - 352 - ], - [ - 309766, - 60149, - 7872 - ], - [ - 310246, - 59962, - 7752 - ], - [ - 311210, - 59594, - 7322 - ], - [ - 312176, - 59236, - 7582 - ], - [ - 312383, - 59160, - 7582 - ], - [ - 312590, - 59085, - 6822 - ], - [ - 313005, - 58936, - 7582 - ], - [ - 313213, - 58862, - 7822 - ], - [ - 313421, - 58788, - 7482 - ], - [ - 343910, - 49392, - 5832 - ], - [ - 326210, - 54287, - 7422 - ], - [ - 318782, - 57059, - 8292 - ], - [ - 317337, - 57516, - 6562 - ], - [ - 324467, - 55302, - 6682 - ], - [ - 325914, - 54843, - 6832 - ], - [ - 326343, - 54707, - 6742 - ], - [ - 327492, - 54391, - 4112 - ], - [ - 330904, - 53352, - 5882 - ], - [ - 332323, - 52920, - 5952 - ], - [ - 337197, - 51436, - 5762 - ], - [ - 338607, - 51007, - 6172 - ], - [ - 345323, - 48962, - 5942 - ], - [ - 371884, - 40867, - 4622 - ], - [ - 356798, - 45467, - 5332 - ], - [ - 358217, - 45035, - 4862 - ], - [ - 359458, - 44658, - 5082 - ], - [ - 363674, - 43372, - 5072 - ], - [ - 365077, - 42944, - 5072 - ], - [ - 370493, - 41292, - 6282 - ], - [ - 377187, - 39250, - 4272 - ], - [ - 378610, - 38816, - 4362 - ], - [ - 394030, - 33685, - 5042 - ], - [ - 391301, - 34964, - 4582 - ], - [ - 387237, - 36185, - 1222 - ], - [ - 395538, - 33248, - 1252 - ], - [ - 394154, - 34107, - 1152 - ], - [ - 392697, - 34545, - 4972 - ], - [ - 396151, - 33529, - 1252 - ], - [ - 397487, - 33141, - 5242 - ], - [ - 411963, - 27081, - 582 - ], - [ - 411897, - 27720, - 582 - ], - [ - 410963, - 28775, - 582 - ], - [ - 396028, - 33106, - 582 - ], - [ - 394030, - 33685, - 302 - ], - [ - 395538, - 33248, - 302 - ], - [ - 387110, - 35764, - 302 - ], - [ - 359329, - 44237, - 302 - ], - [ - 327384, - 53964, - 302 - ], - [ - 326946, - 54054, - 302 - ], - [ - 326210, - 54287, - 302 - ], - [ - 314415, - 57999, - 302 - ], - [ - 313277, - 58394, - 302 - ], - [ - 312143, - 58801, - 302 - ], - [ - 311014, - 59219, - 302 - ], - [ - 309889, - 59650, - 302 - ], - [ - 308769, - 60092, - 302 - ], - [ - 307653, - 60546, - 302 - ], - [ - 306542, - 61011, - 302 - ], - [ - 305508, - 61485, - 302 - ], - [ - 304478, - 61969, - 302 - ], - [ - 303453, - 62463, - 302 - ], - [ - 302432, - 62966, - 302 - ], - [ - 301416, - 63478, - 302 - ], - [ - 300405, - 64000, - 302 - ], - [ - 299399, - 64531, - 302 - ], - [ - 294269, - 67219, - 302 - ], - [ - 285501, - 71995, - 302 - ], - [ - 276003, - 77699, - 302 - ], - [ - 263220, - 86012, - 302 - ], - [ - 233370, - 105523, - 302 - ], - [ - 205296, - 123898, - 302 - ], - [ - 205225, - 123793, - 302 - ], - [ - 326343, - 54707, - 272 - ], - [ - 327057, - 54480, - 252 - ], - [ - 327492, - 54391, - 242 - ], - [ - 359458, - 44658, - 222 - ], - [ - 387237, - 36185, - 202 - ], - [ - 394154, - 34107, - 622 - ], - [ - 396151, - 33529, - 622 - ], - [ - 285503, - 135734, - 2002 - ], - [ - 345801, - 92988, - 962 - ], - [ - 345545, - 91254, - 952 - ], - [ - 345569, - 91545, - 952 - ], - [ - 345687, - 92414, - 952 - ], - [ - 343601, - 93452, - 952 - ], - [ - 343436, - 92795, - 972 - ], - [ - 343259, - 91794, - 962 - ], - [ - 343514, - 93125, - 962 - ], - [ - 343368, - 92463, - 972 - ], - [ - 343309, - 92129, - 972 - ], - [ - 343219, - 91457, - 962 - ], - [ - 345640, - 92126, - 952 - ], - [ - 345601, - 91836, - 952 - ], - [ - 345740, - 92702, - 952 - ], - [ - 421120, - 33600, - 2062 - ], - [ - 410976, - 36624, - 2092 - ], - [ - 410949, - 37519, - 2242 - ], - [ - 422393, - 33622, - 2772 - ], - [ - 422501, - 33672, - 2782 - ], - [ - 422230, - 34029, - 2772 - ], - [ - 421232, - 33562, - 2052 - ], - [ - 422605, - 33729, - 2782 - ], - [ - 422305, - 34065, - 2782 - ], - [ - 422671, - 33774, - 2782 - ], - [ - 422735, - 33822, - 11882 - ], - [ - 422449, - 34150, - 2782 - ], - [ - 422796, - 33873, - 11882 - ], - [ - 422516, - 34200, - 11882 - ], - [ - 422855, - 33927, - 11882 - ], - [ - 422911, - 33984, - 11882 - ], - [ - 422965, - 34043, - 11882 - ], - [ - 422639, - 34312, - 11882 - ], - [ - 422169, - 33545, - 2282 - ], - [ - 422283, - 33580, - 2772 - ], - [ - 422378, - 34105, - 2782 - ], - [ - 422579, - 34254, - 11882 - ], - [ - 422695, - 34374, - 11882 - ], - [ - 422053, - 33519, - 2142 - ], - [ - 421936, - 33500, - 2122 - ], - [ - 421818, - 33490, - 2092 - ], - [ - 421700, - 33488, - 2082 - ], - [ - 421581, - 33494, - 2082 - ], - [ - 421463, - 33508, - 2052 - ], - [ - 421347, - 33531, - 2052 - ], - [ - 410361, - 36326, - 1962 - ], - [ - 393003, - 60152, - 2692 - ], - [ - 392796, - 60099, - 1862 - ], - [ - 393084, - 60846, - 2692 - ], - [ - 392896, - 60958, - 2692 - ], - [ - 340868, - 127673, - 662 - ], - [ - 341194, - 128125, - 652 - ], - [ - 340791, - 127816, - 752 - ], - [ - 362409, - 71034, - 2532 - ], - [ - 362380, - 70939, - 2532 - ], - [ - 352933, - 137446, - 932 - ], - [ - 352541, - 137259, - 842 - ], - [ - 352862, - 137530, - 842 - ], - [ - 354030, - 138517, - 872 - ], - [ - 353702, - 138240, - 842 - ], - [ - 354101, - 138433, - 3062 - ], - [ - 395891, - 40226, - 792 - ], - [ - 395949, - 40449, - 792 - ], - [ - 219752, - 120445, - 562 - ], - [ - 215919, - 122972, - 562 - ], - [ - 216008, - 123105, - 582 - ], - [ - 395875, - 32578, - 5362 - ], - [ - 395385, - 32720, - 992 - ], - [ - 395875, - 32578, - 582 - ], - [ - 395385, - 32720, - 302 - ], - [ - 289151, - 75734, - 452 - ], - [ - 289063, - 75588, - 442 - ], - [ - 290252, - 75082, - 452 - ], - [ - 290246, - 75083, - 452 - ], - [ - 290257, - 75082, - 452 - ], - [ - 290263, - 75082, - 452 - ], - [ - 290268, - 75082, - 452 - ], - [ - 290274, - 75082, - 452 - ], - [ - 290279, - 75083, - 452 - ], - [ - 290285, - 75085, - 452 - ], - [ - 290290, - 75086, - 452 - ], - [ - 290295, - 75088, - 452 - ], - [ - 290300, - 75091, - 452 - ], - [ - 290304, - 75094, - 452 - ], - [ - 290309, - 75097, - 452 - ], - [ - 290313, - 75100, - 452 - ], - [ - 290317, - 75104, - 452 - ], - [ - 290325, - 75112, - 452 - ], - [ - 290321, - 75108, - 452 - ], - [ - 290328, - 75116, - 452 - ], - [ - 290331, - 75121, - 452 - ], - [ - 290241, - 75084, - 452 - ], - [ - 290236, - 75086, - 452 - ], - [ - 409557, - 102259, - 4242 - ], - [ - 409292, - 102133, - 4242 - ], - [ - 409354, - 102068, - 4242 - ], - [ - 409227, - 102072, - 4242 - ], - [ - 326449, - 82121, - 3372 - ], - [ - 325532, - 83333, - 1492 - ], - [ - 325515, - 83193, - 2962 - ], - [ - 320326, - 78742, - 1472 - ], - [ - 320188, - 78913, - 1472 - ], - [ - 326387, - 82038, - 3372 - ], - [ - 250654, - 81315, - 6982 - ], - [ - 249072, - 82856, - 322 - ], - [ - 243330, - 86254, - 7102 - ], - [ - 218726, - 103261, - 1482 - ], - [ - 210468, - 108685, - 9322 - ], - [ - 213929, - 105898, - 8392 - ], - [ - 253209, - 80121, - 7272 - ], - [ - 251938, - 80455, - 7022 - ], - [ - 292383, - 57648, - 1112 - ], - [ - 279969, - 64367, - 342 - ], - [ - 288102, - 59478, - 472 - ], - [ - 295216, - 56078, - 452 - ], - [ - 294017, - 56283, - 362 - ], - [ - 301340, - 52800, - 552 - ], - [ - 300012, - 53061, - 562 - ], - [ - 302349, - 52290, - 1482 - ], - [ - 301369, - 52331, - 1582 - ], - [ - 305410, - 50826, - 512 - ], - [ - 304384, - 51303, - 462 - ], - [ - 306041, - 50155, - 582 - ], - [ - 327778, - 42095, - 1482 - ], - [ - 323319, - 43606, - 1152 - ], - [ - 324918, - 42610, - 4132 - ], - [ - 332366, - 40194, - 1482 - ], - [ - 332604, - 39878, - 1482 - ], - [ - 332733, - 40065, - 1482 - ], - [ - 327833, - 41607, - 1482 - ], - [ - 332212, - 39792, - 1482 - ], - [ - 332480, - 39698, - 1482 - ], - [ - 327627, - 41692, - 1482 - ], - [ - 326381, - 42114, - 1502 - ], - [ - 313297, - 47467, - 702 - ], - [ - 318349, - 45064, - 942 - ], - [ - 308517, - 49464, - 2062 - ], - [ - 312248, - 47460, - 702 - ], - [ - 323181, - 43199, - 1172 - ], - [ - 307476, - 49907, - 602 - ], - [ - 307421, - 49556, - 2062 - ], - [ - 319792, - 44507, - 1102 - ], - [ - 306440, - 50361, - 582 - ], - [ - 313690, - 46863, - 662 - ], - [ - 303364, - 51791, - 612 - ], - [ - 302789, - 51567, - 1532 - ], - [ - 276535, - 66305, - 432 - ], - [ - 277506, - 65264, - 452 - ], - [ - 295381, - 55550, - 452 - ], - [ - 289453, - 58746, - 472 - ], - [ - 262158, - 74373, - 1232 - ], - [ - 256699, - 77840, - 8672 - ], - [ - 259721, - 75576, - 412 - ], - [ - 283665, - 61879, - 492 - ], - [ - 282286, - 62626, - 452 - ], - [ - 279740, - 64003, - 432 - ], - [ - 276236, - 65983, - 452 - ], - [ - 271725, - 68603, - 442 - ], - [ - 270328, - 69414, - 442 - ], - [ - 265921, - 71975, - 1002 - ], - [ - 253177, - 80070, - 7272 - ], - [ - 256272, - 77590, - 7882 - ], - [ - 264641, - 72718, - 1042 - ], - [ - 262387, - 74028, - 1362 - ], - [ - 261987, - 74260, - 1302 - ], - [ - 252980, - 79757, - 7362 - ], - [ - 258320, - 76390, - 8642 - ], - [ - 252943, - 79698, - 7272 - ], - [ - 237103, - 90981, - 492 - ], - [ - 227216, - 97644, - 402 - ], - [ - 232240, - 93746, - 7662 - ], - [ - 221049, - 101212, - 6412 - ], - [ - 242225, - 87001, - 7102 - ], - [ - 237866, - 89947, - 7272 - ], - [ - 236637, - 90778, - 872 - ], - [ - 231033, - 94561, - 7882 - ], - [ - 226647, - 97516, - 6212 - ], - [ - 225485, - 98283, - 462 - ], - [ - 219784, - 102047, - 482 - ], - [ - 215127, - 105110, - 7172 - ], - [ - 209550, - 108771, - 8632 - ], - [ - 208333, - 109567, - 8212 - ], - [ - 207562, - 110595, - 872 - ], - [ - 204051, - 113059, - 7092 - ], - [ - 203798, - 112699, - 6512 - ], - [ - 203383, - 112990, - 6572 - ], - [ - 202163, - 113846, - 5912 - ], - [ - 200517, - 115538, - 1652 - ], - [ - 200264, - 115178, - 1572 - ], - [ - 200461, - 115548, - 1622 - ], - [ - 200510, - 115909, - 1662 - ], - [ - 200352, - 115606, - 1622 - ], - [ - 200203, - 115686, - 1622 - ], - [ - 200167, - 115804, - 1622 - ], - [ - 198606, - 116602, - 1602 - ], - [ - 198740, - 116640, - 1602 - ], - [ - 198628, - 116978, - 1632 - ], - [ - 198522, - 116952, - 1622 - ], - [ - 198469, - 116672, - 1612 - ], - [ - 198429, - 116827, - 1622 - ], - [ - 200641, - 115834, - 2422 - ], - [ - 218726, - 103261, - 302 - ], - [ - 210468, - 108685, - 302 - ], - [ - 227216, - 97644, - 302 - ], - [ - 237103, - 90981, - 302 - ], - [ - 249072, - 82856, - 302 - ], - [ - 253209, - 80121, - 302 - ], - [ - 253177, - 80070, - 302 - ], - [ - 256699, - 77840, - 302 - ], - [ - 276535, - 66305, - 302 - ], - [ - 279969, - 64367, - 302 - ], - [ - 292383, - 57648, - 302 - ], - [ - 295216, - 56078, - 302 - ], - [ - 301340, - 52800, - 302 - ], - [ - 302349, - 52290, - 302 - ], - [ - 303364, - 51791, - 302 - ], - [ - 304384, - 51303, - 302 - ], - [ - 305410, - 50826, - 302 - ], - [ - 306440, - 50361, - 302 - ], - [ - 307476, - 49907, - 302 - ], - [ - 308517, - 49464, - 302 - ], - [ - 313297, - 47467, - 302 - ], - [ - 323319, - 43606, - 302 - ], - [ - 327778, - 42095, - 302 - ], - [ - 332366, - 40194, - 302 - ], - [ - 332733, - 40065, - 302 - ], - [ - 259721, - 75576, - 372 - ], - [ - 252943, - 79698, - 312 - ], - [ - 252980, - 79757, - 312 - ], - [ - 200510, - 115909, - 302 - ], - [ - 200641, - 115834, - 302 - ], - [ - 200517, - 115538, - 302 - ], - [ - 204051, - 113059, - 302 - ], - [ - 207562, - 110595, - 302 - ], - [ - 402437, - 32695, - 762 - ], - [ - 403162, - 31964, - 802 - ], - [ - 402297, - 32215, - 762 - ], - [ - 403301, - 32444, - 802 - ], - [ - 356881, - 156000, - 642 - ], - [ - 359586, - 158840, - 812 - ], - [ - 359397, - 159023, - 792 - ], - [ - 312514, - 39997, - 752 - ], - [ - 307052, - 42634, - 562 - ], - [ - 327452, - 40504, - 1482 - ], - [ - 332020, - 39030, - 1482 - ], - [ - 317316, - 36796, - 932 - ], - [ - 317344, - 36669, - 932 - ], - [ - 317280, - 36920, - 922 - ], - [ - 317236, - 37043, - 922 - ], - [ - 317185, - 37162, - 932 - ], - [ - 317126, - 37277, - 922 - ], - [ - 316510, - 37939, - 902 - ], - [ - 317060, - 37389, - 922 - ], - [ - 316988, - 37497, - 922 - ], - [ - 316908, - 37599, - 902 - ], - [ - 316823, - 37697, - 902 - ], - [ - 316731, - 37789, - 902 - ], - [ - 316634, - 37875, - 902 - ], - [ - 291910, - 50575, - 522 - ], - [ - 291869, - 50536, - 522 - ], - [ - 295450, - 48711, - 522 - ], - [ - 300882, - 45763, - 562 - ], - [ - 285806, - 53958, - 482 - ], - [ - 280066, - 57336, - 432 - ], - [ - 276855, - 58770, - 452 - ], - [ - 276900, - 58206, - 452 - ], - [ - 276885, - 58144, - 452 - ], - [ - 276912, - 58269, - 452 - ], - [ - 276919, - 58332, - 452 - ], - [ - 276922, - 58396, - 452 - ], - [ - 276921, - 58459, - 452 - ], - [ - 276916, - 58523, - 452 - ], - [ - 276907, - 58586, - 452 - ], - [ - 276893, - 58648, - 452 - ], - [ - 276876, - 58710, - 452 - ], - [ - 276829, - 58828, - 452 - ], - [ - 276800, - 58885, - 452 - ], - [ - 276768, - 58940, - 452 - ], - [ - 276731, - 58992, - 452 - ], - [ - 276692, - 59043, - 452 - ], - [ - 276504, - 59214, - 452 - ], - [ - 269565, - 63254, - 452 - ], - [ - 276649, - 59090, - 452 - ], - [ - 276604, - 59134, - 452 - ], - [ - 276555, - 59176, - 452 - ], - [ - 259151, - 69528, - 452 - ], - [ - 258847, - 69711, - 452 - ], - [ - 257536, - 68940, - 472 - ], - [ - 311281, - 205817, - 1042 - ], - [ - 308337, - 203259, - 952 - ], - [ - 333384, - 30892, - 1522 - ], - [ - 333347, - 32278, - 1692 - ], - [ - 332412, - 32340, - 1832 - ], - [ - 331860, - 30939, - 1732 - ], - [ - 331565, - 31147, - 1792 - ], - [ - 333333, - 32422, - 1702 - ], - [ - 333120, - 33112, - 1792 - ], - [ - 333051, - 33240, - 1802 - ], - [ - 333181, - 32981, - 1772 - ], - [ - 333232, - 32845, - 1752 - ], - [ - 333275, - 32707, - 1732 - ], - [ - 333309, - 32565, - 1712 - ], - [ - 421829, - 19506, - 1692 - ], - [ - 358400, - 153532, - 652 - ], - [ - 358236, - 152829, - 662 - ], - [ - 358288, - 152965, - 662 - ], - [ - 358331, - 153103, - 652 - ], - [ - 358364, - 153244, - 652 - ], - [ - 358387, - 153387, - 652 - ], - [ - 358403, - 153677, - 652 - ], - [ - 358396, - 153821, - 652 - ], - [ - 358379, - 153965, - 652 - ], - [ - 358352, - 154108, - 652 - ], - [ - 358315, - 154248, - 662 - ], - [ - 358269, - 154385, - 662 - ], - [ - 358213, - 154519, - 662 - ], - [ - 358148, - 154648, - 662 - ], - [ - 358074, - 154773, - 662 - ], - [ - 357992, - 154893, - 672 - ], - [ - 357902, - 155006, - 662 - ], - [ - 393098, - 34882, - 582 - ], - [ - 394683, - 34423, - 632 - ], - [ - 394822, - 34903, - 632 - ], - [ - 393237, - 35363, - 592 - ], - [ - 348341, - 48356, - 232 - ], - [ - 349824, - 47905, - 252 - ], - [ - 349969, - 48383, - 272 - ], - [ - 348486, - 48835, - 242 - ], - [ - 230260, - 108503, - 382 - ], - [ - 228838, - 109434, - 372 - ], - [ - 229112, - 109852, - 402 - ], - [ - 230534, - 108921, - 402 - ], - [ - 213933, - 97525, - 532 - ], - [ - 213804, - 97510, - 532 - ], - [ - 213888, - 97456, - 532 - ], - [ - 213577, - 97525, - 532 - ], - [ - 213744, - 97418, - 532 - ], - [ - 213086, - 97997, - 532 - ], - [ - 213015, - 97887, - 532 - ], - [ - 212935, - 98117, - 532 - ], - [ - 212925, - 98100, - 532 - ], - [ - 212911, - 98134, - 532 - ], - [ - 374942, - 40458, - 252 - ], - [ - 375088, - 40936, - 252 - ], - [ - 375803, - 40195, - 242 - ], - [ - 375948, - 40673, - 252 - ], - [ - 380002, - 21941, - 612 - ], - [ - 398932, - 17371, - 902 - ], - [ - 404592, - 15331, - 1102 - ], - [ - 421828, - 13966, - 1252 - ], - [ - 430725, - 11517, - 802 - ], - [ - 431619, - 14278, - 722 - ], - [ - 421452, - 18085, - 1562 - ], - [ - 419912, - 12177, - 1262 - ], - [ - 421440, - 17888, - 1532 - ], - [ - 421445, - 18053, - 1552 - ], - [ - 421439, - 18020, - 1542 - ], - [ - 421436, - 17987, - 1542 - ], - [ - 421436, - 17954, - 1542 - ], - [ - 421437, - 17921, - 1532 - ], - [ - 421446, - 17855, - 1522 - ], - [ - 421454, - 17823, - 1522 - ], - [ - 421464, - 17792, - 1522 - ], - [ - 421476, - 17761, - 1522 - ], - [ - 421271, - 13747, - 1262 - ], - [ - 421490, - 17731, - 1522 - ], - [ - 421290, - 13775, - 1262 - ], - [ - 421506, - 17702, - 1522 - ], - [ - 421310, - 13802, - 1262 - ], - [ - 421524, - 17674, - 1512 - ], - [ - 421333, - 13827, - 1262 - ], - [ - 421544, - 17647, - 1512 - ], - [ - 421357, - 13851, - 1262 - ], - [ - 421565, - 17622, - 1512 - ], - [ - 421382, - 13873, - 1262 - ], - [ - 421588, - 17598, - 1512 - ], - [ - 421409, - 13893, - 1262 - ], - [ - 421613, - 17576, - 1512 - ], - [ - 421438, - 13912, - 1262 - ], - [ - 421639, - 17556, - 1512 - ], - [ - 421467, - 13928, - 1262 - ], - [ - 421666, - 17537, - 1512 - ], - [ - 421498, - 13943, - 1262 - ], - [ - 421695, - 17520, - 1512 - ], - [ - 421529, - 13955, - 1262 - ], - [ - 421724, - 17505, - 1512 - ], - [ - 421561, - 13965, - 1262 - ], - [ - 421755, - 17492, - 1502 - ], - [ - 421594, - 13973, - 1262 - ], - [ - 421786, - 17481, - 1502 - ], - [ - 431652, - 14381, - 722 - ], - [ - 421795, - 13974, - 1252 - ], - [ - 421762, - 13979, - 1252 - ], - [ - 421728, - 13983, - 1252 - ], - [ - 421694, - 13984, - 1262 - ], - [ - 421661, - 13982, - 1262 - ], - [ - 421627, - 13979, - 1262 - ], - [ - 420438, - 12403, - 1262 - ], - [ - 420401, - 12351, - 1262 - ], - [ - 420420, - 12376, - 1262 - ], - [ - 420380, - 12326, - 1262 - ], - [ - 420357, - 12304, - 1262 - ], - [ - 420008, - 12166, - 1272 - ], - [ - 420282, - 12244, - 1262 - ], - [ - 420333, - 12282, - 1262 - ], - [ - 420308, - 12262, - 1262 - ], - [ - 420225, - 12213, - 1262 - ], - [ - 420254, - 12228, - 1262 - ], - [ - 420103, - 12174, - 1272 - ], - [ - 420196, - 12201, - 1262 - ], - [ - 420166, - 12190, - 1272 - ], - [ - 420135, - 12181, - 1272 - ], - [ - 420040, - 12167, - 1272 - ], - [ - 420072, - 12170, - 1272 - ], - [ - 419944, - 12171, - 1262 - ], - [ - 419976, - 12168, - 1272 - ], - [ - 392042, - 18841, - 792 - ], - [ - 360992, - 27051, - 682 - ], - [ - 389862, - 19381, - 752 - ], - [ - 384952, - 20541, - 702 - ], - [ - 389822, - 19251, - 752 - ], - [ - 354082, - 28711, - 832 - ], - [ - 349983, - 29878, - 942 - ], - [ - 336523, - 37578, - 1772 - ], - [ - 336204, - 37681, - 1802 - ], - [ - 361864, - 160305, - 1002 - ], - [ - 361436, - 160726, - 1002 - ], - [ - 451507, - 24162, - 319 - ], - [ - 451276, - 24197, - 364 - ], - [ - 451207, - 23798, - 115 - ], - [ - 450480, - 23984, - 240 - ], - [ - 445669, - 22538, - 203 - ], - [ - 446415, - 22805, - 235 - ], - [ - 446652, - 22913, - 417 - ], - [ - 446213, - 22650, - 111 - ], - [ - 448925, - 23487, - 364 - ], - [ - 449970, - 23529, - 52 - ], - [ - 453115, - 24653, - 89 - ], - [ - 448466, - 23163, - 220 - ], - [ - 451780, - 24087, - 172 - ], - [ - 450167, - 23579, - 168 - ], - [ - 452901, - 24633, - 163 - ], - [ - 451080, - 23814, - 0 - ], - [ - 430321, - 23631, - 8722 - ], - [ - 430365, - 23803, - 8722 - ], - [ - 429996, - 23895, - 9072 - ], - [ - 429943, - 23728, - 8902 - ], - [ - 430321, - 23631, - 582 - ], - [ - 430365, - 23803, - 582 - ], - [ - 429943, - 23728, - 582 - ], - [ - 429996, - 23895, - 582 - ], - [ - 428710, - 24676, - 8372 - ], - [ - 435777, - 22464, - 2202 - ], - [ - 428593, - 24242, - 8462 - ], - [ - 427104, - 25150, - 8612 - ], - [ - 425008, - 25732, - 1932 - ], - [ - 428593, - 24242, - 582 - ], - [ - 336733, - 38425, - 1082 - ], - [ - 336204, - 37681, - 1632 - ], - [ - 331565, - 31147, - 1082 - ], - [ - 332412, - 32340, - 1102 - ], - [ - 328220, - 33512, - 1002 - ], - [ - 333051, - 33240, - 1112 - ], - [ - 332020, - 39030, - 622 - ], - [ - 331300, - 30774, - 1082 - ], - [ - 331444, - 30977, - 1082 - ], - [ - 327975, - 33156, - 1002 - ], - [ - 329258, - 35019, - 972 - ], - [ - 328101, - 33339, - 1002 - ], - [ - 332480, - 39698, - 452 - ], - [ - 332604, - 39878, - 382 - ], - [ - 200470, - 115660, - 1102 - ], - [ - 200548, - 115783, - 702 - ], - [ - 205033, - 123903, - 312 - ], - [ - 189816, - 119916, - 302 - ], - [ - 184492, - 123415, - 302 - ], - [ - 189294, - 120784, - 302 - ], - [ - 130253, - 151529, - 302 - ], - [ - 154810, - 138806, - 302 - ], - [ - 189620, - 120352, - 302 - ], - [ - 189750, - 119973, - 302 - ], - [ - 47154, - 189841, - 302 - ], - [ - 189519, - 120588, - 302 - ], - [ - 189542, - 120552, - 302 - ], - [ - 37358, - 194109, - 302 - ], - [ - 189563, - 120514, - 302 - ], - [ - 189597, - 120435, - 302 - ], - [ - 117795, - 157892, - 302 - ], - [ - 189610, - 120394, - 302 - ], - [ - 189582, - 120475, - 302 - ], - [ - 189493, - 120622, - 302 - ], - [ - 189465, - 120654, - 302 - ], - [ - 180927, - 125410, - 302 - ], - [ - 189434, - 120685, - 302 - ], - [ - 189402, - 120713, - 302 - ], - [ - 189367, - 120739, - 302 - ], - [ - 189332, - 120763, - 302 - ], - [ - 110457, - 161471, - 302 - ], - [ - 61038, - 183597, - 302 - ], - [ - 178390, - 126782, - 302 - ], - [ - 178358, - 126719, - 302 - ], - [ - 102613, - 165129, - 302 - ], - [ - 35137, - 196624, - 302 - ], - [ - 35370, - 197035, - 302 - ], - [ - 35133, - 197048, - 302 - ], - [ - 34109, - 201094, - 302 - ], - [ - 34902, - 197061, - 302 - ], - [ - 31427, - 197258, - 302 - ], - [ - 5140, - 198748, - 302 - ], - [ - 16726, - 198091, - 302 - ], - [ - 7604, - 202664, - 302 - ], - [ - 3818, - 198823, - 302 - ], - [ - 5816, - 202770, - 302 - ], - [ - 454, - 199013, - 302 - ], - [ - 2339, - 202976, - 302 - ], - [ - 0, - 199039, - 302 - ], - [ - 1893, - 203016, - 302 - ], - [ - 2116, - 202996, - 302 - ], - [ - 27862, - 197460, - 302 - ], - [ - 18284, - 202031, - 302 - ], - [ - 29109, - 197389, - 302 - ], - [ - 30429, - 201312, - 302 - ], - [ - 31374, - 201256, - 302 - ], - [ - 428717, - 18508, - 582 - ], - [ - 428329, - 18606, - 582 - ], - [ - 423565, - 19536, - 582 - ], - [ - 431330, - 17560, - 582 - ], - [ - 437539, - 20918, - 582 - ], - [ - 436053, - 17404, - 582 - ], - [ - 433494, - 16900, - 582 - ], - [ - 433831, - 16797, - 582 - ], - [ - 435571, - 16266, - 582 - ], - [ - 433830, - 16797, - 582 - ], - [ - 432702, - 17142, - 582 - ], - [ - 428649, - 18241, - 582 - ], - [ - 428262, - 18340, - 582 - ], - [ - 319540, - 199944, - 1102 - ], - [ - 312772, - 206610, - 1132 - ], - [ - 312422, - 206253, - 1112 - ], - [ - 319190, - 199587, - 1022 - ], - [ - 361264, - 160068, - 992 - ], - [ - 360916, - 159709, - 972 - ], - [ - 361598, - 159048, - 982 - ], - [ - 361946, - 159407, - 992 - ], - [ - 361224, - 161579, - 972 - ], - [ - 359400, - 159725, - 802 - ], - [ - 359374, - 159052, - 792 - ], - [ - 359335, - 159113, - 792 - ], - [ - 359354, - 159082, - 792 - ], - [ - 359319, - 159145, - 792 - ], - [ - 359293, - 159213, - 792 - ], - [ - 359305, - 159179, - 792 - ], - [ - 359283, - 159248, - 792 - ], - [ - 359269, - 159393, - 792 - ], - [ - 359276, - 159284, - 792 - ], - [ - 359272, - 159320, - 792 - ], - [ - 359269, - 159356, - 792 - ], - [ - 359272, - 159429, - 792 - ], - [ - 359284, - 159501, - 792 - ], - [ - 359277, - 159465, - 792 - ], - [ - 359294, - 159536, - 792 - ], - [ - 359377, - 159697, - 802 - ], - [ - 359338, - 159636, - 792 - ], - [ - 359306, - 159570, - 792 - ], - [ - 359321, - 159603, - 792 - ], - [ - 359356, - 159667, - 792 - ], - [ - 366248, - 152385, - 822 - ], - [ - 366273, - 152369, - 822 - ], - [ - 366300, - 152354, - 822 - ], - [ - 366328, - 152341, - 822 - ], - [ - 366357, - 152330, - 822 - ], - [ - 366387, - 152321, - 822 - ], - [ - 366417, - 152314, - 822 - ], - [ - 366447, - 152310, - 812 - ], - [ - 366478, - 152307, - 812 - ], - [ - 366509, - 152307, - 812 - ], - [ - 366540, - 152309, - 812 - ], - [ - 366570, - 152313, - 812 - ], - [ - 366600, - 152320, - 812 - ], - [ - 366630, - 152328, - 812 - ], - [ - 366659, - 152339, - 812 - ], - [ - 366687, - 152351, - 812 - ], - [ - 366714, - 152366, - 812 - ], - [ - 366740, - 152382, - 812 - ], - [ - 366765, - 152400, - 812 - ], - [ - 366789, - 152420, - 812 - ], - [ - 366811, - 152442, - 812 - ], - [ - 366831, - 152465, - 812 - ], - [ - 366850, - 152489, - 822 - ], - [ - 367402, - 153019, - 892 - ], - [ - 367421, - 153042, - 892 - ], - [ - 367463, - 153084, - 892 - ], - [ - 367441, - 153064, - 892 - ], - [ - 367535, - 153136, - 892 - ], - [ - 367485, - 153103, - 892 - ], - [ - 367510, - 153121, - 892 - ], - [ - 367673, - 153188, - 892 - ], - [ - 367588, - 153163, - 892 - ], - [ - 367561, - 153150, - 892 - ], - [ - 367616, - 153173, - 892 - ], - [ - 367644, - 153182, - 892 - ], - [ - 367762, - 153196, - 892 - ], - [ - 367703, - 153193, - 892 - ], - [ - 367732, - 153196, - 892 - ], - [ - 368101, - 153037, - 892 - ], - [ - 367851, - 153187, - 892 - ], - [ - 367792, - 153195, - 892 - ], - [ - 367821, - 153192, - 892 - ], - [ - 367908, - 153171, - 892 - ], - [ - 367879, - 153180, - 892 - ], - [ - 368013, - 153117, - 892 - ], - [ - 367935, - 153160, - 892 - ], - [ - 367962, - 153147, - 892 - ], - [ - 367988, - 153133, - 892 - ], - [ - 368060, - 153080, - 892 - ], - [ - 368037, - 153099, - 892 - ], - [ - 368081, - 153059, - 892 - ], - [ - 368119, - 153014, - 892 - ], - [ - 324524, - 199652, - 1122 - ], - [ - 326002, - 198234, - 1092 - ], - [ - 362088, - 162457, - 982 - ], - [ - 362183, - 162694, - 982 - ], - [ - 362108, - 162488, - 972 - ], - [ - 362126, - 162520, - 972 - ], - [ - 362142, - 162553, - 972 - ], - [ - 362155, - 162587, - 982 - ], - [ - 362167, - 162622, - 982 - ], - [ - 362176, - 162658, - 982 - ], - [ - 362187, - 162731, - 982 - ], - [ - 362189, - 162768, - 982 - ], - [ - 362188, - 162804, - 982 - ], - [ - 362185, - 162841, - 982 - ], - [ - 362180, - 162877, - 982 - ], - [ - 362172, - 162913, - 982 - ], - [ - 362162, - 162949, - 982 - ], - [ - 362150, - 162984, - 972 - ], - [ - 362135, - 163017, - 972 - ], - [ - 362118, - 163050, - 972 - ], - [ - 362099, - 163082, - 982 - ], - [ - 362079, - 163112, - 982 - ], - [ - 362056, - 163141, - 972 - ], - [ - 362031, - 163168, - 972 - ], - [ - 322313, - 201396, - 1152 - ], - [ - 324314, - 199437, - 1052 - ], - [ - 319480, - 198502, - 902 - ], - [ - 319457, - 198478, - 892 - ], - [ - 319432, - 198456, - 892 - ], - [ - 319350, - 198400, - 892 - ], - [ - 319406, - 198435, - 892 - ], - [ - 319378, - 198417, - 892 - ], - [ - 319193, - 198347, - 892 - ], - [ - 319320, - 198385, - 892 - ], - [ - 319257, - 198362, - 892 - ], - [ - 319289, - 198372, - 892 - ], - [ - 319225, - 198353, - 892 - ], - [ - 318872, - 198407, - 902 - ], - [ - 319160, - 198343, - 892 - ], - [ - 319093, - 198342, - 892 - ], - [ - 319126, - 198341, - 892 - ], - [ - 319027, - 198350, - 892 - ], - [ - 319060, - 198345, - 892 - ], - [ - 318963, - 198366, - 882 - ], - [ - 318994, - 198357, - 882 - ], - [ - 318931, - 198378, - 892 - ], - [ - 318901, - 198392, - 892 - ], - [ - 318843, - 198425, - 912 - ], - [ - 318817, - 198445, - 912 - ], - [ - 311356, - 205881, - 1062 - ], - [ - 425415, - 27382, - 1912 - ], - [ - 426537, - 28136, - 1952 - ], - [ - 453028, - 44443, - 2022 - ], - [ - 427092, - 28509, - 1962 - ], - [ - 366936, - 154569, - 982 - ], - [ - 365942, - 154836, - 962 - ], - [ - 366290, - 155195, - 982 - ], - [ - 366588, - 154210, - 962 - ], - [ - 317114, - 210987, - 1172 - ], - [ - 316786, - 210574, - 1182 - ], - [ - 316696, - 210515, - 1182 - ], - [ - 316742, - 210543, - 1182 - ], - [ - 316829, - 210607, - 1182 - ], - [ - 316980, - 210760, - 1182 - ], - [ - 317019, - 210813, - 1182 - ], - [ - 316870, - 210642, - 1182 - ], - [ - 317183, - 211242, - 1152 - ], - [ - 316909, - 210679, - 1182 - ], - [ - 316945, - 210719, - 1182 - ], - [ - 317055, - 210869, - 1172 - ], - [ - 317086, - 210927, - 1172 - ], - [ - 317138, - 211049, - 1162 - ], - [ - 317157, - 211112, - 1162 - ], - [ - 317173, - 211177, - 1162 - ], - [ - 317190, - 211308, - 1152 - ], - [ - 423228, - 19154, - 1682 - ] - ], - "transform": { - "scale": [ - 0.001, - 0.001, - 0.001 - ], - "translate": [ - 84616.468, - 447422.999, - -0.452 - ] - }, - "extensions": -{ - "Generic": - { - "url": "https://www.cityjson.org/extensions/download/generic.ext.json", - "version": "1.0" - } -} -} \ No newline at end of file +{"CityObjects":{"b0a8da4cc-2d2a-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09d7049cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[0,1,2]],[[0,3,1]],[[4,5,6]],[[4,7,5]],[[8,3,0]],[[4,9,7]],[[7,10,11]],[[11,12,13]],[[13,14,15]],[[13,12,14]],[[11,10,12]],[[7,9,10]],[[16,4,3]],[[9,16,17]],[[9,4,16]],[[18,8,0]],[[16,3,8]],[[0,19,18]],[[0,20,19]],[[21,1,3]],[[22,1,21]],[[23,3,4]],[[21,3,23]],[[24,4,6]],[[23,4,24]],[[25,6,5]],[[24,6,25]],[[26,5,7]],[[25,5,26]],[[27,7,11]],[[26,7,27]],[[28,11,13]],[[27,11,28]],[[29,27,28]],[[30,13,15]],[[28,13,30]],[[31,10,9]],[[32,10,31]],[[33,9,17]],[[31,9,33]],[[34,17,16]],[[33,17,34]],[[35,16,8]],[[34,16,35]],[[36,8,18]],[[35,8,36]],[[37,18,19]],[[36,18,37]],[[38,36,37]],[[39,19,20]],[[37,19,39]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"b1105d28c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-52.4)","identificatiebagpnd":"503100000000035","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027121)","inonderzoek":"0","lokaalid":"G0503.032e68eff7ec49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6,"min-height-surface":-0.100000001490116,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85012.966 447473.243)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:6)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[40,41,42]],[[43,44,40]],[[45,46,47]],[[48,49,50]],[[48,51,52]],[[48,53,49]],[[45,47,54]],[[53,55,56]],[[57,53,52]],[[52,53,48]],[[58,55,59]],[[59,55,57]],[[59,57,60]],[[55,53,57]],[[46,61,62]],[[63,64,62]],[[64,65,66]],[[65,64,67]],[[68,65,67]],[[67,64,63]],[[69,67,63]],[[70,71,63]],[[63,62,61]],[[72,71,73]],[[74,72,75]],[[76,74,77]],[[77,74,75]],[[78,77,75]],[[75,72,79]],[[80,75,79]],[[81,80,79]],[[82,81,79]],[[79,72,73]],[[83,79,84]],[[84,79,85]],[[86,84,85]],[[87,86,88]],[[88,86,85]],[[85,79,89]],[[89,79,73]],[[73,71,90]],[[91,73,92]],[[92,73,90]],[[90,71,93]],[[93,71,70]],[[46,62,52]],[[43,40,54]],[[94,95,96]],[[94,70,61]],[[94,61,95]],[[70,63,61]],[[51,46,52]],[[51,47,46]],[[44,41,40]],[[45,54,40]],[[97,42,98]],[[99,42,97]],[[100,99,97]],[[100,97,101]],[[98,42,102]],[[103,98,104]],[[104,98,105]],[[106,104,105]],[[107,108,109]],[[105,107,110]],[[110,107,109]],[[109,108,111]],[[98,102,105]],[[105,112,107]],[[113,112,102]],[[112,113,114]],[[114,113,115]],[[112,105,102]],[[113,102,116]],[[42,41,102]],[[117,118,44]],[[44,118,41]],[[119,117,43]],[[43,117,44]],[[120,119,54]],[[54,119,43]],[[121,120,47]],[[47,120,54]],[[122,121,51]],[[51,121,47]],[[123,122,48]],[[48,122,51]],[[124,123,50]],[[50,123,48]],[[125,124,49]],[[49,124,50]],[[126,125,53]],[[53,125,49]],[[127,126,56]],[[56,126,53]],[[128,127,55]],[[55,127,56]],[[129,128,58]],[[58,128,55]],[[130,129,59]],[[59,129,58]],[[131,130,60]],[[60,130,59]],[[132,131,57]],[[57,131,60]],[[133,132,52]],[[52,132,57]],[[134,133,62]],[[62,133,52]],[[135,134,64]],[[64,134,62]],[[136,135,66]],[[66,135,64]],[[137,136,65]],[[65,136,66]],[[138,137,68]],[[68,137,65]],[[139,138,67]],[[67,138,68]],[[140,139,69]],[[69,139,67]],[[141,140,63]],[[63,140,69]],[[142,141,71]],[[71,141,63]],[[143,142,72]],[[72,142,71]],[[144,143,74]],[[74,143,72]],[[145,144,76]],[[76,144,74]],[[146,145,77]],[[77,145,76]],[[147,146,78]],[[78,146,77]],[[148,147,75]],[[75,147,78]],[[149,148,80]],[[80,148,75]],[[150,149,81]],[[81,149,80]],[[151,150,82]],[[82,150,81]],[[152,151,79]],[[79,151,82]],[[153,152,83]],[[83,152,79]],[[154,153,84]],[[84,153,83]],[[155,154,86]],[[86,154,84]],[[156,155,87]],[[87,155,86]],[[157,156,88]],[[88,156,87]],[[158,157,85]],[[85,157,88]],[[159,158,89]],[[89,158,85]],[[160,159,73]],[[73,159,89]],[[161,160,91]],[[91,160,73]],[[162,161,92]],[[92,161,91]],[[163,162,90]],[[90,162,92]],[[164,163,93]],[[93,163,90]],[[165,164,70]],[[70,164,93]],[[166,165,94]],[[94,165,70]],[[167,166,96]],[[96,166,94]],[[168,167,95]],[[95,167,96]],[[169,168,61]],[[61,168,95]],[[170,169,46]],[[46,169,61]],[[171,170,45]],[[45,170,46]],[[172,171,40]],[[40,171,45]],[[173,172,42]],[[42,172,40]],[[174,173,99]],[[99,173,42]],[[175,174,100]],[[100,174,99]],[[176,175,101]],[[101,175,100]],[[177,176,97]],[[97,176,101]],[[178,177,98]],[[98,177,97]],[[179,178,103]],[[103,178,98]],[[180,179,104]],[[104,179,103]],[[181,180,106]],[[106,180,104]],[[182,181,105]],[[105,181,106]],[[183,182,110]],[[110,182,105]],[[184,183,109]],[[109,183,110]],[[185,184,111]],[[111,184,109]],[[186,185,108]],[[108,185,111]],[[187,186,107]],[[107,186,108]],[[188,187,112]],[[112,187,107]],[[189,188,114]],[[114,188,112]],[[190,189,115]],[[115,189,114]],[[191,190,113]],[[113,190,115]],[[192,191,116]],[[116,191,113]],[[193,192,102]],[[102,192,116]],[[118,193,41]],[[41,193,102]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11267a1d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000004048","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027095)","inonderzoek":"0","lokaalid":"G0503.032e68f0085849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.89000010490417,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84841.951 447542.723)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:168)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[194,195,196]],[[195,197,196]],[[197,198,199]],[[197,195,198]],[[195,200,198]],[[198,200,201]],[[202,203,204]],[[204,203,205]],[[204,205,194]],[[194,205,206]],[[194,206,207]],[[194,207,195]],[[208,202,209]],[[209,202,204]],[[209,204,196]],[[196,204,194]],[[210,208,197]],[[197,208,209]],[[197,209,196]],[[211,210,199]],[[199,210,197]],[[212,211,198]],[[198,211,199]],[[213,212,201]],[[201,212,198]],[[214,213,215]],[[215,213,216]],[[216,213,200]],[[200,213,201]],[[203,214,205]],[[205,214,206]],[[206,214,215]],[[206,215,207]],[[207,215,216]],[[207,216,195]],[[195,216,200]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126a169-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000032718","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027096)","inonderzoek":"0","lokaalid":"G0503.032e68f0086549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84835.527 447547.038)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:170)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[217,207,218]],[[218,207,219]],[[217,216,207]],[[217,220,221]],[[216,217,221]],[[222,223,220]],[[221,220,223]],[[224,223,225]],[[226,222,220]],[[225,223,222]],[[227,226,220]],[[228,226,227]],[[229,228,227]],[[230,231,217]],[[217,231,232]],[[217,232,233]],[[217,233,220]],[[234,230,235]],[[235,230,218]],[[218,230,217]],[[236,234,237]],[[237,234,235]],[[237,235,219]],[[219,235,218]],[[206,236,207]],[[207,236,237]],[[207,237,219]],[[215,206,216]],[[216,206,207]],[[238,215,221]],[[221,215,216]],[[239,238,223]],[[223,238,221]],[[240,239,224]],[[224,239,223]],[[241,240,225]],[[225,240,224]],[[242,241,222]],[[222,241,225]],[[243,242,226]],[[226,242,222]],[[244,243,228]],[[228,243,226]],[[245,244,229]],[[229,244,228]],[[246,245,247]],[[247,245,248]],[[248,245,227]],[[227,245,229]],[[231,246,232]],[[232,246,247]],[[232,247,233]],[[233,247,248]],[[233,248,220]],[[220,248,227]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126c87e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026153","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027097)","inonderzoek":"0","lokaalid":"G0503.032e68f0086649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.49000000953674,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84830.424 447550.641)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:172)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[233,249,248]],[[248,249,250]],[[250,251,252]],[[250,253,251]],[[254,255,253]],[[249,254,253]],[[249,233,256]],[[250,249,253]],[[233,257,256]],[[232,258,233]],[[233,258,259]],[[233,259,260]],[[233,260,257]],[[247,232,248]],[[248,232,233]],[[261,247,250]],[[250,247,248]],[[262,261,252]],[[252,261,250]],[[263,262,251]],[[251,262,252]],[[264,263,253]],[[253,263,251]],[[265,264,255]],[[255,264,253]],[[266,265,254]],[[254,265,255]],[[267,266,249]],[[249,266,254]],[[268,267,269]],[[269,267,270]],[[270,267,256]],[[256,267,249]],[[258,268,259]],[[259,268,269]],[[259,269,260]],[[260,269,270]],[[260,270,257]],[[257,270,256]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1126c883-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000026154","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027023)","inonderzoek":"0","lokaalid":"G0503.032e68f0086749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.48000001907349,"min-height-surface":0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84843.704 447561.474)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:1)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[271,272,270]],[[271,270,260]],[[272,273,270]],[[272,274,273]],[[275,276,277]],[[277,276,278]],[[277,278,271]],[[271,278,272]],[[259,275,260]],[[260,275,277]],[[260,277,271]],[[269,259,270]],[[270,259,260]],[[279,269,273]],[[273,269,270]],[[280,279,274]],[[274,279,273]],[[276,280,278]],[[278,280,272]],[[272,280,274]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715ef-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026151","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000061493)","inonderzoek":"0","lokaalid":"G0503.032e68f0087749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.29999995231628,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84850.858 447537.122)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:164)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[281,282,283]],[[281,284,282]],[[281,285,284]],[[281,286,285]],[[281,287,288]],[[286,281,289]],[[289,281,288]],[[288,287,290]],[[291,292,281]],[[281,292,287]],[[293,291,294]],[[294,291,283]],[[283,291,281]],[[295,293,296]],[[296,293,294]],[[296,294,282]],[[282,294,283]],[[297,295,284]],[[284,295,296]],[[284,296,282]],[[298,297,285]],[[285,297,284]],[[299,298,286]],[[286,298,285]],[[300,299,301]],[[301,299,289]],[[289,299,286]],[[302,300,303]],[[303,300,301]],[[303,301,288]],[[288,301,289]],[[304,302,290]],[[290,302,303]],[[290,303,288]],[[292,304,287]],[[287,304,290]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715f4-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026152","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027094)","inonderzoek":"0","lokaalid":"G0503.032e68f0087849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.04999995231628,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84845.575 447540.308)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:166)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[301,303,305]],[[301,306,307]],[[301,305,306]],[[305,308,309]],[[305,310,308]],[[308,310,311]],[[311,310,312]],[[305,303,310]],[[300,302,301]],[[301,302,303]],[[313,300,307]],[[307,300,301]],[[209,313,196]],[[196,313,306]],[[306,313,307]],[[204,209,194]],[[194,209,196]],[[194,196,305]],[[305,196,306]],[[205,204,206]],[[206,204,207]],[[207,204,195]],[[195,204,194]],[[195,194,309]],[[309,194,305]],[[314,205,236]],[[236,205,206]],[[236,206,237]],[[237,206,219]],[[219,206,207]],[[219,207,315]],[[315,207,308]],[[308,207,195]],[[308,195,309]],[[316,314,317]],[[317,314,236]],[[317,236,237]],[[317,237,318]],[[318,237,219]],[[318,219,315]],[[318,315,311]],[[311,315,308]],[[319,316,312]],[[312,316,317]],[[312,317,318]],[[312,318,311]],[[320,319,310]],[[310,319,312]],[[302,320,303]],[[303,320,310]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112715fe-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:56.3)","identificatiebagpnd":"503100000026156","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027033)","inonderzoek":"0","lokaalid":"G0503.032e68f0087a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.0699999332428,"min-height-surface":0.439999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84883.885 447560.978)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:19A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[321,322,323]],[[323,324,325]],[[323,326,321]],[[325,327,328]],[[326,325,328]],[[323,325,326]],[[323,329,324]],[[329,330,331]],[[324,329,332]],[[332,329,331]],[[331,330,333]],[[334,331,333]],[[335,336,337]],[[337,336,338]],[[337,338,329]],[[329,338,330]],[[339,335,340]],[[340,335,341]],[[341,335,337]],[[341,337,323]],[[323,337,329]],[[342,339,343]],[[343,339,340]],[[343,340,322]],[[322,340,341]],[[322,341,323]],[[344,342,321]],[[321,342,343]],[[321,343,322]],[[345,344,326]],[[326,344,321]],[[346,345,328]],[[328,345,326]],[[347,346,327]],[[327,346,328]],[[348,347,325]],[[325,347,327]],[[349,348,324]],[[324,348,325]],[[350,349,332]],[[332,349,324]],[[351,350,331]],[[331,350,332]],[[352,351,334]],[[334,351,331]],[[353,352,333]],[[333,352,334]],[[336,353,338]],[[338,353,330]],[[330,353,333]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11271601-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000005344","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0087b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.97000002861023,"min-height-surface":0.490000009536743,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[354,355,356]],[[357,356,358]],[[357,358,359]],[[359,358,360]],[[356,361,358]],[[358,361,362]],[[356,363,361]],[[356,355,363]],[[364,365,357]],[[357,365,356]],[[366,364,359]],[[359,364,357]],[[367,366,360]],[[360,366,359]],[[368,367,358]],[[358,367,360]],[[343,368,322]],[[322,368,362]],[[362,368,358]],[[340,343,341]],[[341,343,323]],[[323,343,322]],[[323,322,361]],[[361,322,362]],[[369,340,370]],[[370,340,341]],[[370,341,363]],[[363,341,323]],[[363,323,361]],[[371,369,372]],[[372,369,370]],[[372,370,355]],[[355,370,363]],[[373,371,354]],[[354,371,372]],[[354,372,355]],[[365,373,356]],[[356,373,354]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1127160e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026155","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0087e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[374,375,376]],[[318,377,376]],[[375,378,376]],[[376,379,318]],[[318,379,315]],[[376,378,379]],[[375,380,378]],[[381,382,383]],[[383,382,384]],[[383,384,374]],[[374,384,375]],[[385,381,376]],[[376,381,383]],[[376,383,374]],[[386,385,377]],[[377,385,376]],[[317,386,318]],[[318,386,377]],[[237,317,219]],[[219,317,315]],[[315,317,318]],[[235,237,218]],[[218,237,219]],[[218,219,379]],[[379,219,315]],[[277,235,271]],[[271,235,378]],[[378,235,218]],[[378,218,379]],[[278,277,272]],[[272,277,271]],[[272,271,380]],[[380,271,378]],[[382,278,384]],[[384,278,375]],[[375,278,272]],[[375,272,380]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1127b2f3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000004630","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027131)","inonderzoek":"0","lokaalid":"G0503.032e68f0093c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.07999992370605,"min-height-surface":-0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84941.813 447486.436)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:76)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[387,388,389]],[[387,389,390]],[[390,389,391]],[[389,388,392]],[[389,393,394]],[[389,392,393]],[[388,395,392]],[[396,397,398]],[[398,397,399]],[[398,399,387]],[[387,399,388]],[[400,396,401]],[[401,396,398]],[[401,398,390]],[[390,398,387]],[[402,400,403]],[[403,400,404]],[[404,400,391]],[[391,400,401]],[[391,401,390]],[[405,402,406]],[[406,402,403]],[[406,403,407]],[[407,403,404]],[[407,404,389]],[[389,404,391]],[[408,405,409]],[[409,405,406]],[[409,406,410]],[[410,406,407]],[[410,407,394]],[[394,407,389]],[[411,408,412]],[[412,408,409]],[[412,409,413]],[[413,409,410]],[[413,410,393]],[[393,410,394]],[[414,411,392]],[[392,411,412]],[[392,412,413]],[[392,413,393]],[[415,414,416]],[[416,414,395]],[[395,414,392]],[[397,415,399]],[[399,415,416]],[[399,416,388]],[[388,416,395]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128005c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000004571","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027130)","inonderzoek":"0","lokaalid":"G0503.032e68f0094c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.97000002861023,"min-height-surface":-0.100000001490116,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84948.166 447484.337)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:74)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[417,418,398]],[[417,398,419]],[[419,398,401]],[[398,418,420]],[[398,416,399]],[[398,420,416]],[[418,421,420]],[[422,423,424]],[[424,423,425]],[[424,425,417]],[[417,425,418]],[[426,422,427]],[[427,422,424]],[[427,424,419]],[[419,424,417]],[[428,426,400]],[[400,426,401]],[[401,426,427]],[[401,427,419]],[[429,428,396]],[[396,428,400]],[[396,400,398]],[[398,400,401]],[[430,429,397]],[[397,429,396]],[[397,396,399]],[[399,396,398]],[[431,430,415]],[[415,430,397]],[[415,397,416]],[[416,397,399]],[[432,431,420]],[[420,431,415]],[[420,415,416]],[[433,432,434]],[[434,432,421]],[[421,432,420]],[[423,433,425]],[[425,433,434]],[[425,434,418]],[[418,434,421]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280066-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000027887","identificatiebagvbohoogstehuisnummer":"(1:503010000027074)","identificatiebagvbolaagstehuisnummer":"(1:503010000027073)","inonderzoek":"0","lokaalid":"G0503.032e68f0094e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84920.286 447536.887)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:24-26)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[435,436,437]],[[438,439,440]],[[438,440,441]],[[437,442,443]],[[443,438,441]],[[436,442,437]],[[443,444,445]],[[438,443,445]],[[441,437,443]],[[436,446,442]],[[447,448,449]],[[449,448,450]],[[449,450,435]],[[435,450,436]],[[451,447,452]],[[452,447,449]],[[452,449,437]],[[437,449,435]],[[453,451,454]],[[454,451,452]],[[454,452,441]],[[441,452,437]],[[455,453,456]],[[456,453,454]],[[456,454,440]],[[440,454,441]],[[457,455,458]],[[458,455,456]],[[458,456,439]],[[439,456,440]],[[459,457,438]],[[438,457,458]],[[438,458,439]],[[460,459,461]],[[461,459,445]],[[445,459,438]],[[462,460,463]],[[463,460,461]],[[463,461,444]],[[444,461,445]],[[464,462,443]],[[443,462,463]],[[443,463,444]],[[465,464,442]],[[442,464,443]],[[466,465,446]],[[446,465,442]],[[448,466,450]],[[450,466,436]],[[436,466,446]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128006b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000004642","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027075)","inonderzoek":"0","lokaalid":"G0503.032e68f0094f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84924.277 447540.160)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:28)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[467,468,469]],[[468,467,470]],[[467,439,470]],[[435,440,471]],[[439,467,471]],[[441,440,435]],[[437,441,435]],[[435,471,472]],[[436,435,472]],[[439,471,440]],[[467,473,471]],[[474,475,467]],[[467,475,473]],[[476,474,469]],[[469,474,467]],[[477,476,468]],[[468,476,469]],[[478,477,470]],[[470,477,468]],[[458,478,439]],[[439,478,470]],[[456,458,440]],[[440,458,439]],[[454,456,441]],[[441,456,440]],[[452,454,437]],[[437,454,441]],[[449,452,435]],[[435,452,437]],[[450,449,436]],[[436,449,435]],[[479,450,472]],[[472,450,436]],[[480,479,471]],[[471,479,472]],[[475,480,473]],[[473,480,471]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280070-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000026299","identificatiebagvbohoogstehuisnummer":"(1:503010000027112)","identificatiebagvbolaagstehuisnummer":"(1:503010000027111)","inonderzoek":"0","lokaalid":"G0503.032e68f0095049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84945.216 447536.460)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33-35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[481,482,483]],[[481,484,485]],[[482,481,485]],[[486,482,485]],[[485,484,487]],[[488,485,487]],[[487,484,489]],[[490,491,492]],[[492,491,493]],[[492,493,494]],[[494,493,495]],[[494,495,481]],[[481,495,484]],[[496,490,497]],[[497,490,492]],[[497,492,498]],[[498,492,494]],[[498,494,483]],[[483,494,481]],[[499,496,500]],[[500,496,497]],[[500,497,501]],[[501,497,498]],[[501,498,482]],[[482,498,483]],[[502,499,486]],[[486,499,500]],[[486,500,501]],[[486,501,482]],[[503,502,485]],[[485,502,486]],[[504,503,488]],[[488,503,485]],[[505,504,487]],[[487,504,488]],[[506,505,489]],[[489,505,487]],[[491,506,493]],[[493,506,495]],[[495,506,484]],[[484,506,489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11280075-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000026298","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060272)","inonderzoek":"0","lokaalid":"G0503.032e68f0095149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.09999990463257,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84949.097 447541.631)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[498,507,494]],[[507,498,508]],[[508,498,501]],[[507,509,494]],[[509,510,494]],[[494,510,495]],[[510,509,511]],[[509,512,511]],[[513,514,515]],[[515,514,516]],[[515,516,507]],[[507,516,509]],[[517,513,508]],[[508,513,515]],[[508,515,507]],[[500,517,501]],[[501,517,508]],[[497,500,498]],[[498,500,501]],[[492,497,494]],[[494,497,498]],[[493,492,495]],[[495,492,494]],[[518,493,510]],[[510,493,495]],[[519,518,511]],[[511,518,510]],[[520,519,512]],[[512,519,511]],[[514,520,516]],[[516,520,509]],[[509,520,512]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128007a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000004647","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003297)","inonderzoek":"0","lokaalid":"G0503.032e68f0095249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.10999989509583,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84949.891 447597.257)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[521,522,523]],[[523,524,525]],[[524,526,527]],[[524,523,528]],[[524,528,526]],[[529,530,531]],[[528,529,531]],[[523,532,528]],[[528,532,529]],[[523,522,532]],[[532,522,533]],[[534,535,536]],[[536,535,537]],[[536,537,521]],[[521,537,522]],[[538,534,523]],[[523,534,536]],[[523,536,521]],[[539,538,525]],[[525,538,523]],[[540,539,524]],[[524,539,525]],[[541,540,527]],[[527,540,524]],[[542,541,526]],[[526,541,527]],[[543,542,528]],[[528,542,526]],[[544,543,531]],[[531,543,528]],[[545,544,530]],[[530,544,531]],[[546,545,529]],[[529,545,530]],[[547,546,532]],[[532,546,529]],[[548,547,533]],[[533,547,532]],[[535,548,537]],[[537,548,522]],[[522,548,533]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128007f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37.4)","identificatiebagpnd":"503100000004637","identificatiebagvbohoogstehuisnummer":"(1:503010000027084)","identificatiebagvbolaagstehuisnummer":"(1:503010000027076)","inonderzoek":"0","lokaalid":"G0503.032e68f0095349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.1100001335144,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84940.274 447558.360)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:30-46)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[549,550,551]],[[550,552,551]],[[550,553,552]],[[552,553,554]],[[555,556,549]],[[549,556,550]],[[557,555,551]],[[551,555,549]],[[558,557,552]],[[552,557,551]],[[559,558,554]],[[554,558,552]],[[560,559,553]],[[553,559,554]],[[556,560,550]],[[550,560,553]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11282794-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004645","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003305)","inonderzoek":"0","lokaalid":"G0503.032e68f0095449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.15999984741211,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84996.140 447550.544)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[561,562,563]],[[564,565,566]],[[566,565,567]],[[564,562,561]],[[565,564,561]],[[561,568,569]],[[561,570,568]],[[570,561,571]],[[572,561,569]],[[572,565,561]],[[573,574,575]],[[575,574,576]],[[575,576,564]],[[564,576,562]],[[577,573,578]],[[578,573,566]],[[566,573,575]],[[566,575,564]],[[579,577,580]],[[580,577,578]],[[580,578,567]],[[567,578,566]],[[581,579,565]],[[565,579,580]],[[565,580,567]],[[582,581,572]],[[572,581,565]],[[583,582,569]],[[569,582,572]],[[584,583,568]],[[568,583,569]],[[585,584,570]],[[570,584,568]],[[586,585,571]],[[571,585,570]],[[587,586,561]],[[561,586,571]],[[588,587,563]],[[563,587,561]],[[574,588,576]],[[576,588,562]],[[562,588,563]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b11282799-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000025336","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003307)","inonderzoek":"0","lokaalid":"G0503.032e68f0095549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.67000007629395,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85001.101 447546.689)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:47)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[589,590,591]],[[592,591,590]],[[590,589,593]],[[593,589,594]],[[595,596,594]],[[589,595,594]],[[589,597,595]],[[589,598,597]],[[597,598,599]],[[600,601,602]],[[602,601,603]],[[602,603,604]],[[604,603,605]],[[604,605,589]],[[589,605,598]],[[606,600,607]],[[607,600,602]],[[607,602,608]],[[608,602,604]],[[608,604,591]],[[591,604,589]],[[609,606,592]],[[592,606,607]],[[592,607,608]],[[592,608,591]],[[610,609,590]],[[590,609,592]],[[575,610,564]],[[564,610,593]],[[593,610,590]],[[576,575,562]],[[562,575,564]],[[562,564,594]],[[594,564,593]],[[611,576,596]],[[596,576,562]],[[596,562,594]],[[612,611,595]],[[595,611,596]],[[613,612,597]],[[597,612,595]],[[614,613,599]],[[599,613,597]],[[601,614,603]],[[603,614,605]],[[605,614,598]],[[598,614,599]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b1128279e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000004646","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027115)","inonderzoek":"0","lokaalid":"G0503.032e68f0095649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84953.045 447544.630)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[615,616,617]],[[617,616,618]],[[616,615,515]],[[615,516,515]],[[615,619,516]],[[615,620,619]],[[621,622,623]],[[623,622,624]],[[623,624,615]],[[615,624,620]],[[625,621,617]],[[617,621,623]],[[617,623,615]],[[626,625,618]],[[618,625,617]],[[627,626,616]],[[616,626,618]],[[628,627,513]],[[513,627,515]],[[515,627,616]],[[629,628,514]],[[514,628,513]],[[514,513,516]],[[516,513,515]],[[630,629,619]],[[619,629,514]],[[619,514,516]],[[622,630,624]],[[624,630,620]],[[620,630,619]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000004644","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027117)","inonderzoek":"0","lokaalid":"G0503.032e68f0095749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.46000003814697,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84957.402 447548.205)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[631,632,633]],[[631,634,632]],[[631,635,636]],[[634,631,636]],[[636,635,637]],[[637,635,638]],[[639,637,640]],[[640,637,638]],[[641,640,642]],[[642,640,638]],[[643,644,631]],[[631,644,635]],[[645,643,633]],[[633,643,631]],[[646,645,632]],[[632,645,633]],[[647,646,634]],[[634,646,632]],[[623,647,615]],[[615,647,636]],[[636,647,634]],[[624,623,620]],[[620,623,615]],[[620,615,637]],[[637,615,636]],[[648,624,639]],[[639,624,620]],[[639,620,637]],[[649,648,640]],[[640,648,639]],[[650,649,641]],[[641,649,640]],[[651,650,642]],[[642,650,641]],[[652,651,638]],[[638,651,642]],[[644,652,635]],[[635,652,638]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004636","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003304)","inonderzoek":"0","lokaalid":"G0503.032e68f0095849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84988.378 447559.512)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:44)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[653,654,655]],[[656,657,658]],[[656,659,657]],[[659,660,661]],[[662,663,664]],[[660,662,664]],[[665,662,660]],[[659,653,660]],[[662,665,666]],[[659,656,653]],[[660,653,665]],[[656,654,653]],[[667,668,669]],[[669,668,670]],[[669,670,656]],[[656,670,654]],[[671,667,672]],[[672,667,669]],[[672,669,658]],[[658,669,656]],[[673,671,657]],[[657,671,672]],[[657,672,658]],[[674,673,659]],[[659,673,657]],[[675,674,661]],[[661,674,659]],[[676,675,660]],[[660,675,661]],[[677,676,664]],[[664,676,660]],[[678,677,663]],[[663,677,664]],[[679,678,662]],[[662,678,663]],[[680,679,666]],[[666,679,662]],[[681,680,665]],[[665,680,666]],[[682,681,653]],[[653,681,665]],[[683,682,655]],[[655,682,653]],[[668,683,670]],[[670,683,654]],[[654,683,655]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827ad-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000004640","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003305)","inonderzoek":"0","lokaalid":"G0503.032e68f0095949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.05999994277954,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84991.913 447554.453)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[684,685,686]],[[687,688,689]],[[686,690,684]],[[686,691,690]],[[690,689,692]],[[689,693,694]],[[689,688,693]],[[689,690,691]],[[695,687,689]],[[696,695,689]],[[691,696,689]],[[578,691,686]],[[578,580,691]],[[697,698,577]],[[577,698,579]],[[577,579,578]],[[578,579,580]],[[699,697,686]],[[686,697,577]],[[686,577,578]],[[700,699,685]],[[685,699,686]],[[672,700,658]],[[658,700,684]],[[684,700,685]],[[669,672,656]],[[656,672,658]],[[656,658,690]],[[690,658,684]],[[670,669,654]],[[654,669,656]],[[654,656,692]],[[692,656,690]],[[701,670,689]],[[689,670,654]],[[689,654,692]],[[702,701,694]],[[694,701,689]],[[703,702,693]],[[693,702,694]],[[704,703,688]],[[688,703,693]],[[705,704,687]],[[687,704,688]],[[706,705,695]],[[695,705,687]],[[707,706,696]],[[696,706,695]],[[708,707,691]],[[691,707,696]],[[698,708,579]],[[579,708,580]],[[580,708,691]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827b2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000028346","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003299)","inonderzoek":"0","lokaalid":"G0503.032e68f0095a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.00999999046326,"min-height-surface":0.129999995231628,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84958.769 447588.042)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[709,710,711]],[[712,713,714]],[[711,712,714]],[[712,715,713]],[[712,716,715]],[[712,717,716]],[[712,718,717]],[[712,719,718]],[[712,720,719]],[[712,721,720]],[[712,722,721]],[[712,723,722]],[[712,724,723]],[[712,725,724]],[[712,726,725]],[[712,727,726]],[[712,728,727]],[[712,729,728]],[[729,712,730]],[[730,712,731]],[[731,712,732]],[[732,712,733]],[[733,712,734]],[[734,712,735]],[[735,712,736]],[[736,712,737]],[[711,738,712]],[[739,740,738]],[[711,739,738]],[[711,710,741]],[[711,741,739]],[[710,742,741]],[[710,743,742]],[[744,745,746]],[[746,745,747]],[[746,747,709]],[[709,747,710]],[[748,744,711]],[[711,744,746]],[[711,746,709]],[[749,748,714]],[[714,748,711]],[[750,749,713]],[[713,749,714]],[[751,750,715]],[[715,750,713]],[[752,751,716]],[[716,751,715]],[[753,752,717]],[[717,752,716]],[[754,753,718]],[[718,753,717]],[[755,754,719]],[[719,754,718]],[[756,755,720]],[[720,755,719]],[[757,756,721]],[[721,756,720]],[[758,757,722]],[[722,757,721]],[[759,758,723]],[[723,758,722]],[[760,759,724]],[[724,759,723]],[[761,760,725]],[[725,760,724]],[[762,761,726]],[[726,761,725]],[[763,762,727]],[[727,762,726]],[[764,763,728]],[[728,763,727]],[[765,764,729]],[[729,764,728]],[[766,765,730]],[[730,765,729]],[[767,766,731]],[[731,766,730]],[[768,767,732]],[[732,767,731]],[[769,768,733]],[[733,768,732]],[[770,769,734]],[[734,769,733]],[[771,770,735]],[[735,770,734]],[[772,771,736]],[[736,771,735]],[[773,772,774]],[[774,772,737]],[[737,772,736]],[[775,773,776]],[[776,773,774]],[[776,774,712]],[[712,774,737]],[[777,775,778]],[[778,775,776]],[[778,776,738]],[[738,776,712]],[[779,777,740]],[[740,777,778]],[[740,778,738]],[[780,779,739]],[[739,779,740]],[[781,780,741]],[[741,780,739]],[[782,781,742]],[[742,781,741]],[[783,782,743]],[[743,782,742]],[[745,783,747]],[[747,783,710]],[[710,783,743]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b112827b7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000004643","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003298)","inonderzoek":"0","lokaalid":"G0503.032e68f0095b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.00999999046326,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84955.890 447590.722)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:38)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[712,784,737]],[[737,785,786]],[[737,787,785]],[[737,788,787]],[[737,789,788]],[[737,790,789]],[[737,791,790]],[[737,792,791]],[[737,793,792]],[[737,794,793]],[[737,784,794]],[[712,795,784]],[[712,796,795]],[[712,797,796]],[[712,798,797]],[[712,799,798]],[[712,800,799]],[[712,801,800]],[[712,802,801]],[[712,803,802]],[[712,804,803]],[[712,805,804]],[[712,806,805]],[[712,807,806]],[[712,738,807]],[[807,536,808]],[[807,809,536]],[[809,810,537]],[[536,809,537]],[[810,809,811]],[[812,738,813]],[[807,812,809]],[[807,738,812]],[[776,778,712]],[[712,778,738]],[[774,776,737]],[[737,776,712]],[[814,774,786]],[[786,774,737]],[[815,814,785]],[[785,814,786]],[[816,815,787]],[[787,815,785]],[[817,816,788]],[[788,816,787]],[[818,817,789]],[[789,817,788]],[[819,818,790]],[[790,818,789]],[[820,819,791]],[[791,819,790]],[[821,820,792]],[[792,820,791]],[[822,821,793]],[[793,821,792]],[[823,822,794]],[[794,822,793]],[[824,823,784]],[[784,823,794]],[[825,824,795]],[[795,824,784]],[[826,825,796]],[[796,825,795]],[[827,826,797]],[[797,826,796]],[[828,827,798]],[[798,827,797]],[[829,828,799]],[[799,828,798]],[[830,829,800]],[[800,829,799]],[[831,830,801]],[[801,830,800]],[[832,831,802]],[[802,831,801]],[[833,832,803]],[[803,832,802]],[[834,833,804]],[[804,833,803]],[[835,834,805]],[[805,834,804]],[[836,835,806]],[[806,835,805]],[[837,836,807]],[[807,836,806]],[[838,837,808]],[[808,837,807]],[[839,838,534]],[[534,838,536]],[[536,838,808]],[[840,839,535]],[[535,839,534]],[[535,534,537]],[[537,534,536]],[[841,840,810]],[[810,840,535]],[[810,535,537]],[[842,841,811]],[[811,841,810]],[[843,842,809]],[[809,842,811]],[[844,843,812]],[[812,843,809]],[[845,844,813]],[[813,844,812]],[[778,845,738]],[[738,845,813]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b22139d30-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[846,847,848]],[[849,850,851]],[[852,853,164]],[[164,853,854]],[[855,856,164]],[[857,858,859]],[[860,861,862]],[[857,852,863]],[[864,865,866]],[[867,868,869]],[[870,871,872]],[[870,865,873]],[[874,875,876]],[[871,875,872]],[[877,878,864]],[[879,880,881]],[[882,883,884]],[[885,886,887]],[[888,889,890]],[[891,892,893]],[[894,895,896]],[[890,889,897]],[[898,899,900]],[[901,902,899]],[[903,896,904]],[[896,901,898]],[[905,894,906]],[[848,847,907]],[[908,909,847]],[[910,911,912]],[[913,846,911]],[[911,914,912]],[[915,916,917]],[[918,915,917]],[[919,885,920]],[[921,887,886]],[[922,923,895]],[[924,902,901]],[[897,850,882]],[[916,914,925]],[[846,908,847]],[[913,909,908]],[[926,849,851]],[[884,927,928]],[[929,869,868]],[[883,930,919]],[[878,873,865]],[[931,932,873]],[[869,877,864]],[[878,865,864]],[[933,905,934]],[[906,891,893]],[[935,936,937]],[[938,846,939]],[[876,932,880]],[[876,875,871]],[[881,931,877]],[[881,932,931]],[[849,930,883]],[[885,915,920]],[[940,864,866]],[[941,942,943]],[[879,881,877]],[[880,932,881]],[[927,944,916]],[[916,925,927]],[[945,946,947]],[[929,948,949]],[[950,951,877]],[[951,880,879]],[[871,870,873]],[[872,865,870]],[[952,928,925]],[[925,914,952]],[[953,897,889]],[[850,883,882]],[[938,954,846]],[[955,884,928]],[[956,910,912]],[[954,928,952]],[[888,936,934]],[[954,911,846]],[[848,939,846]],[[895,904,896]],[[933,922,895]],[[957,958,923]],[[959,863,852]],[[856,960,858]],[[959,852,856]],[[961,864,962]],[[947,963,953]],[[851,850,897]],[[906,893,964]],[[892,889,893]],[[939,848,907]],[[939,965,938]],[[894,905,966]],[[906,964,905]],[[967,968,941]],[[969,943,942]],[[955,970,971]],[[888,964,893]],[[972,958,957]],[[973,904,958]],[[849,883,850]],[[919,918,883]],[[954,955,928]],[[883,917,944]],[[928,927,925]],[[944,917,916]],[[858,857,863]],[[859,852,857]],[[950,945,947]],[[974,877,945]],[[932,871,873]],[[932,876,871]],[[931,878,877]],[[931,873,878]],[[968,868,975]],[[862,941,976]],[[926,977,849]],[[867,978,868]],[[919,886,885]],[[862,976,921]],[[911,952,914]],[[911,954,952]],[[883,918,917]],[[920,915,918]],[[905,933,966]],[[905,964,934]],[[858,940,866]],[[962,864,940]],[[898,901,899]],[[895,894,966]],[[973,924,903]],[[924,901,903]],[[901,896,903]],[[898,894,896]],[[904,973,903]],[[979,902,924]],[[856,858,863]],[[866,859,858]],[[980,981,982]],[[165,943,969]],[[918,919,920]],[[930,886,919]],[[846,913,908]],[[956,909,913]],[[164,856,852]],[[960,962,940]],[[983,973,972]],[[979,924,973]],[[984,985,961]],[[986,867,987]],[[165,855,164]],[[988,980,942]],[[986,978,867]],[[982,165,969]],[[989,948,929]],[[978,981,975]],[[855,981,978]],[[855,165,981]],[[980,975,981]],[[868,978,975]],[[947,851,963]],[[947,926,851]],[[990,938,965]],[[922,933,934]],[[991,992,937]],[[882,884,955]],[[877,951,879]],[[950,880,951]],[[890,897,882]],[[963,851,897]],[[993,984,961]],[[987,867,961]],[[946,926,947]],[[946,977,926]],[[994,939,907]],[[983,972,935]],[[967,929,868]],[[869,864,961]],[[977,948,989]],[[945,877,869]],[[849,989,930]],[[849,977,989]],[[867,869,961]],[[949,977,945]],[[945,977,946]],[[945,869,949]],[[941,988,942]],[[968,975,988]],[[884,944,927]],[[884,883,944]],[[959,856,863]],[[985,987,961]],[[942,980,969]],[[988,975,980]],[[935,937,992]],[[888,934,964]],[[972,957,935]],[[922,934,936]],[[971,970,937]],[[935,957,936]],[[889,888,893]],[[890,936,888]],[[890,937,936]],[[991,954,938]],[[890,971,937]],[[955,954,970]],[[947,953,889]],[[963,897,953]],[[930,861,886]],[[930,967,861]],[[886,860,921]],[[861,941,862]],[[976,941,943]],[[861,967,941]],[[936,957,922]],[[935,992,990]],[[962,993,961]],[[985,855,987]],[[856,985,984]],[[856,855,985]],[[994,979,973]],[[994,902,979]],[[957,923,922]],[[958,904,923]],[[933,895,966]],[[923,904,895]],[[855,986,987]],[[855,978,986]],[[990,992,938]],[[937,970,991]],[[913,910,956]],[[913,911,910]],[[950,974,945]],[[950,877,974]],[[939,983,965]],[[973,958,972]],[[983,990,965]],[[983,935,990]],[[994,983,939]],[[994,973,983]],[[858,960,940]],[[856,984,993]],[[929,949,869]],[[948,977,949]],[[882,971,890]],[[882,955,971]],[[989,967,930]],[[989,929,967]],[[941,968,988]],[[967,868,968]],[[954,991,970]],[[938,992,991]],[[921,860,862]],[[886,861,860]],[[960,993,962]],[[960,856,993]],[[980,982,969]],[[981,165,982]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2214d56a-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[995,176,177]],[[995,177,178]],[[179,995,178]],[[179,176,995]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22183104-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef608549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[996,997,998]],[[999,1000,1001]],[[999,996,1000]],[[1000,996,1002]],[[999,997,996]],[[998,997,1003]],[[998,1004,1005]],[[998,1003,1004]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221a544c-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1006,1007,1008]],[[1009,1010,1011]],[[1012,1013,1014]],[[1015,1008,1010]],[[1016,1017,1011]],[[1016,1018,1017]],[[1016,1008,1019]],[[1018,1016,1020]],[[1013,1020,1021]],[[1022,1009,1011]],[[1014,1021,1023]],[[1012,1022,1011]],[[1017,1012,1011]],[[1017,1013,1012]],[[1015,1023,1006]],[[1014,1013,1021]],[[1020,1019,1021]],[[1020,1016,1019]],[[1019,1008,1007]],[[1015,1006,1008]],[[1024,1025,1010]],[[1023,1021,1006]],[[1009,1024,1010]],[[1009,1014,1023]],[[1024,1009,1023]],[[1025,1015,1010]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221b16fc-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef947849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1026,1027,1028]],[[1029,1030,1031]],[[1032,1027,1033]],[[1032,1028,1027]],[[1032,1034,1028]],[[1032,1035,1034]],[[1032,1036,1035]],[[1031,1037,1038]],[[1039,1040,1041]],[[1042,1043,1044]],[[1045,1042,1044]],[[1045,1046,1042]],[[1047,1045,1044]],[[1048,1049,1050]],[[1029,1031,1051]],[[1052,1053,1054]],[[1052,1038,1053]],[[1052,1031,1038]],[[1039,1041,1032]],[[1032,1041,1036]],[[1030,1029,1055]],[[1056,1030,1055]],[[1055,1029,1047]],[[1057,1055,1058]],[[1058,1055,1059]],[[1059,1055,1060]],[[1060,1055,1032]],[[1060,1033,1061]],[[1045,1029,1051]],[[1047,1048,1050]],[[1062,1055,1057]],[[1055,1047,1050]],[[1048,1047,1044]],[[1029,1045,1047]],[[1049,1039,1050]],[[1049,1040,1039]],[[1051,1052,1054]],[[1051,1031,1052]],[[1032,1055,1050]],[[1062,1056,1055]],[[1060,1032,1033]],[[1050,1039,1032]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221b8c65-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1063,1064,1065]],[[1064,1066,1065]],[[1064,1067,1066]],[[1068,1065,1066]],[[1066,1069,1070]],[[1071,1066,1072]],[[1072,1066,1073]],[[1073,1066,1074]],[[1074,1066,1075]],[[1075,1066,1076]],[[1076,1066,1077]],[[1077,1066,1078]],[[1078,1066,1079]],[[1079,1066,1080]],[[1080,1066,1081]],[[1081,1066,1082]],[[1082,1083,1084]],[[1084,1083,1085]],[[1085,1083,1086]],[[1086,1083,1087]],[[1087,1083,1088]],[[1088,1083,1089]],[[1089,1083,1090]],[[1090,1083,1091]],[[1091,1083,1092]],[[1092,1083,1093]],[[1083,1082,1066]],[[1083,1066,1070]],[[1094,1066,1071]],[[1094,1068,1066]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221d3a47-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.22217ab858564a8fa4707f2a0b468ec2","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1095,1096,1097]],[[1098,1099,1100]],[[1099,1095,1100]],[[1101,1100,1102]],[[1103,1104,1099]],[[1096,1095,1104]],[[1105,1106,1104]],[[1106,1097,1096]],[[1101,1098,1100]],[[1104,1095,1099]],[[1103,1098,1101]],[[1103,1099,1098]],[[1105,1103,1101]],[[1105,1104,1103]],[[1104,1106,1096]],[[1105,1097,1106]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221dafb6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef4b0449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1107,1108,1109]],[[1110,1111,1112]],[[1113,1114,1115]],[[1116,1117,1118]],[[1119,1120,1121]],[[1121,1122,1119]],[[1123,1120,1124]],[[1124,1120,1125]],[[1125,1120,1126]],[[1117,1127,1118]],[[1128,1126,1119]],[[1129,1130,1131]],[[1132,1133,1115]],[[1134,1135,1136]],[[1137,1107,1138]],[[1138,1139,1137]],[[1140,1109,1141]],[[1142,1143,1144]],[[1145,1146,1147]],[[1148,433,1149]],[[1147,1150,1151]],[[1152,415,432]],[[1153,412,414]],[[1154,1155,1156]],[[1157,1158,1159]],[[1160,1161,1162]],[[1163,1164,1165]],[[1166,1167,1168]],[[1169,1154,1156]],[[1170,1171,1167]],[[1172,1160,1162]],[[1162,1161,1173]],[[1174,1172,1162]],[[1175,1176,1177]],[[1175,1178,1172]],[[1179,1180,1181]],[[1182,1183,1149]],[[1184,1185,1177]],[[1186,1187,1145]],[[1145,1187,1188]],[[1189,432,1190]],[[1151,1191,1192]],[[1193,1194,1195]],[[1186,1192,1196]],[[1197,1198,1199]],[[1200,1201,1199]],[[1202,1203,1197]],[[1201,1204,1197]],[[1197,1204,1202]],[[1205,1206,1207]],[[1199,1201,1197]],[[1208,1209,1210]],[[1189,1195,432]],[[1211,1212,1213]],[[1214,1215,1207]],[[1206,1216,1211]],[[1211,1217,1218]],[[1217,1211,1216]],[[1213,1206,1211]],[[1219,1149,1220]],[[1221,1222,1223]],[[1224,1225,1226]],[[1227,1111,1115]],[[1228,1110,1225]],[[1225,1110,1229]],[[1111,1230,1112]],[[1231,1232,1163]],[[1163,1233,1158]],[[1234,1235,1236]],[[1222,1228,1223]],[[1237,1238,1134]],[[1128,1130,1129]],[[1189,1214,1201]],[[1239,433,1148]],[[1235,1240,1144]],[[1240,1241,1142]],[[1180,1242,414]],[[1243,1244,1153]],[[1245,1138,1109]],[[1245,1139,1138]],[[1137,1246,1107]],[[1141,1247,1140]],[[1131,1248,1139]],[[1249,1238,1248]],[[1165,1164,1157]],[[1165,1231,1163]],[[1220,1250,1219]],[[1251,1215,1252]],[[1253,1254,1144]],[[1221,1223,1224]],[[1255,1113,1221]],[[1132,1256,1133]],[[1195,1194,1257]],[[1258,1259,1260]],[[1157,1261,1166]],[[1262,1263,1233]],[[1168,1171,1231]],[[1171,1264,1231]],[[1164,1163,1158]],[[1233,1263,1158]],[[1174,1154,1265]],[[1266,1232,1231]],[[1267,1184,1243]],[[1268,415,1152]],[[1115,1222,1113]],[[1115,1110,1228]],[[1237,1269,1246]],[[1270,1247,1141]],[[1189,1271,1272]],[[1210,433,1273]],[[1234,1250,1274]],[[1275,1143,1142]],[[1131,1249,1248]],[[1276,1277,1249]],[[1249,1277,1238]],[[1278,1122,1133]],[[1238,1277,1279]],[[1131,1280,1129]],[[1281,1282,1283]],[[1284,412,1244]],[[1242,1285,414]],[[1286,1243,1153]],[[1193,1195,1189]],[[1194,1258,1260]],[[1147,1151,1192]],[[1185,1178,1177]],[[1132,1287,1256]],[[1127,1288,1118]],[[1289,1136,1290]],[[1237,1248,1238]],[[1185,1184,1291]],[[1242,1180,1292]],[[1248,1137,1139]],[[1248,1237,1137]],[[1186,1293,1294]],[[1186,1196,1292]],[[1242,1267,1286]],[[1282,1176,1283]],[[1221,1224,1226]],[[1223,1225,1224]],[[1149,1183,1148]],[[1271,1190,1210]],[[1295,1140,1247]],[[1295,1109,1140]],[[1264,1296,1266]],[[1296,1232,1266]],[[1296,1169,1233]],[[1169,1263,1262]],[[1289,1269,1136]],[[1108,1246,1269]],[[1170,1175,1265]],[[1172,1174,1265]],[[1236,1235,1144]],[[1297,1113,1255]],[[1288,1279,1118]],[[1279,1130,1118]],[[1287,1117,1116]],[[1279,1277,1130]],[[1255,1221,1226]],[[1113,1222,1221]],[[1240,1142,1144]],[[1250,1226,1298]],[[1276,1130,1277]],[[1129,1126,1128]],[[1149,1274,1220]],[[1149,1143,1274]],[[1253,1270,1290]],[[1141,1108,1289]],[[1285,1153,414]],[[1285,1286,1153]],[[1254,1290,1299]],[[1136,1135,1117]],[[1144,1300,1236]],[[1290,1117,1299]],[[1283,1176,1159]],[[1176,1170,1261]],[[1117,1135,1127]],[[1134,1238,1301]],[[1299,1117,1287]],[[1290,1136,1117]],[[1191,1185,1291]],[[1191,1178,1185]],[[1270,1253,1144]],[[1270,1289,1290]],[[1181,1259,1258]],[[414,415,1259]],[[1302,1258,1194]],[[1179,1181,1258]],[[1189,1190,1271]],[[432,433,1190]],[[1142,1234,1274]],[[1241,1235,1234]],[[1250,1255,1226]],[[1234,1236,1297]],[[1257,1152,432]],[[1260,1259,1152]],[[1274,1275,1142]],[[1274,1143,1275]],[[1159,1176,1303]],[[1282,1243,1177]],[[1223,1228,1225]],[[1222,1115,1228]],[[1231,1264,1266]],[[1169,1262,1233]],[[1300,1299,1114]],[[1287,1304,1256]],[[1132,1299,1287]],[[1300,1254,1299]],[[1297,1114,1113]],[[1236,1300,1114]],[[1305,1306,1252]],[[1252,1215,1272]],[[1278,1128,1122]],[[1126,1120,1119]],[[1128,1116,1118]],[[1304,1287,1116]],[[1232,1233,1163]],[[1232,1296,1233]],[[1210,1307,1271]],[[1209,1308,1307]],[[1309,1200,1199]],[[1310,1193,1200]],[[1234,1297,1255]],[[1236,1114,1297]],[[1172,1265,1175]],[[1311,1296,1264]],[[1142,1241,1234]],[[1240,1235,1241]],[[1289,1108,1269]],[[1141,1109,1108]],[[1138,1107,1109]],[[1246,1108,1107]],[[1308,1208,1148]],[[1273,433,1239]],[[1208,1210,1239]],[[1239,1210,1273]],[[1130,1128,1118]],[[1119,1122,1128]],[[1293,1312,1294]],[[1293,1186,1292]],[[1259,1268,1152]],[[1259,415,1268]],[[1131,1276,1249]],[[1131,1130,1276]],[[1302,1179,1258]],[[1312,1293,1292]],[[1179,1292,1180]],[[1179,1312,1292]],[[1184,1242,1292]],[[1286,1285,1242]],[[1184,1177,1243]],[[1178,1175,1177]],[[1146,1145,1188]],[[1147,1186,1145]],[[1200,1193,1201]],[[1294,1312,1302]],[[1257,1194,1260]],[[1302,1312,1179]],[[1247,1270,1144]],[[1141,1289,1270]],[[1274,1250,1220]],[[1234,1255,1250]],[[1307,1210,1209]],[[1190,433,1210]],[[1307,1272,1271]],[[1307,1183,1252]],[[1307,1252,1272]],[[1207,1206,1213]],[[1306,1251,1252]],[[1215,1214,1272]],[[1207,1215,1251]],[[1207,1213,1214]],[[1305,1182,1313]],[[1313,1314,1306]],[[1171,1170,1265]],[[1176,1175,1170]],[[1303,1261,1159]],[[1303,1176,1261]],[[1165,1166,1231]],[[1261,1170,1167]],[[1157,1166,1165]],[[1261,1167,1166]],[[1176,1282,1177]],[[1243,1284,1244]],[[1153,1244,412]],[[1243,1282,1281]],[[1214,1189,1272]],[[1201,1193,1189]],[[1265,1311,1171]],[[1265,1154,1311]],[[1193,1302,1194]],[[1193,1310,1302]],[[1115,1111,1110]],[[1227,1230,1111]],[[1166,1168,1231]],[[1167,1171,1168]],[[1192,1191,1291]],[[1151,1178,1191]],[[1196,1192,1291]],[[1186,1147,1192]],[[1184,1196,1291]],[[1184,1292,1196]],[[1114,1132,1115]],[[1114,1299,1132]],[[1304,1278,1133]],[[1116,1128,1278]],[[414,1181,1180]],[[414,1259,1181]],[[1306,1314,1251]],[[1205,1250,1298]],[[1205,1298,1206]],[[1226,1206,1298]],[[1313,1219,1314]],[[1314,1219,1205]],[[1296,1311,1169]],[[1174,1155,1154]],[[1315,1129,1280]],[[1315,1126,1129]],[[1313,1182,1149]],[[1313,1306,1305]],[[1183,1305,1252]],[[1183,1182,1305]],[[1261,1157,1159]],[[1164,1158,1157]],[[1183,1308,1148]],[[1183,1307,1308]],[[1148,1208,1239]],[[1308,1209,1208]],[[1294,1309,1199]],[[1294,1302,1309]],[[1309,1310,1200]],[[1309,1302,1310]],[[1286,1267,1243]],[[1242,1184,1267]],[[1135,1301,1127]],[[1238,1279,1288]],[[1288,1301,1238]],[[1288,1127,1301]],[[1135,1134,1301]],[[1136,1269,1237]],[[1137,1237,1246]],[[1134,1136,1237]],[[1195,1257,432]],[[1260,1152,1257]],[[1171,1311,1264]],[[1154,1169,1311]],[[1159,1281,1283]],[[1284,1243,1281]],[[1159,1284,1281]],[[1159,412,1284]],[[1278,1304,1116]],[[1133,1256,1304]],[[1205,1219,1250]],[[1313,1149,1219]],[[1207,1314,1205]],[[1207,1251,1314]],[[1144,1254,1300]],[[1253,1290,1254]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b221e7287-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1316,1317,1318]],[[1319,1320,1321]],[[1322,1323,1324]],[[1325,1326,1327]],[[1328,1329,1330]],[[1331,1332,1333]],[[1334,1335,1336]],[[1337,1338,1339]],[[1340,1341,1342]],[[1343,1337,1344]],[[1340,1345,1341]],[[1345,1346,1341]],[[1345,1347,1346]],[[1348,1347,1343]],[[1349,1350,1351]],[[1335,1352,1353]],[[1354,1355,1356]],[[1357,1358,1359]],[[1360,1361,1362]],[[1363,1364,1365]],[[1359,1358,1366]],[[1336,1335,1367]],[[1368,1369,1370]],[[1371,1372,1373]],[[1374,1375,1376]],[[1375,1377,1376]],[[1368,1378,1379]],[[1380,1381,1382]],[[1383,1384,1385]],[[1386,1387,1388]],[[1386,1388,1389]],[[1390,1391,1392]],[[1387,1393,1388]],[[1394,1395,1396]],[[1397,1398,1393]],[[1399,1381,1400]],[[1392,1401,1398]],[[1402,1403,1323]],[[1404,1405,1406]],[[1407,1408,1409]],[[1410,1411,1409]],[[1412,1404,1413]],[[1414,1415,1416]],[[1415,1417,1416]],[[1418,1419,1420]],[[1421,1422,1423]],[[1424,673,674]],[[1425,1426,1427]],[[1428,1318,1429]],[[1430,1431,1432]],[[1433,1434,1435]],[[1436,699,700]],[[1437,1438,1439]],[[610,575,1440]],[[1441,1438,1442]],[[1443,1375,1444]],[[1445,1446,1447]],[[1448,1449,1450]],[[1377,1324,1323]],[[1377,1451,1324]],[[1377,1375,1451]],[[1402,1452,1403]],[[1453,575,577]],[[1454,1455,1456]],[[1457,1458,1459]],[[1460,1461,1425]],[[1462,1463,1457]],[[1464,1465,1466]],[[1467,1468,1402]],[[1469,1470,1471]],[[1472,1473,1474]],[[1362,1475,1476]],[[1477,1478,1455]],[[1479,1465,1478]],[[1454,1480,1467]],[[1481,1482,1483]],[[1484,1485,1486]],[[1487,1488,1489]],[[1485,1490,1486]],[[1491,1492,1493]],[[1373,1494,1495]],[[1495,1353,1372]],[[1371,1373,1495]],[[1367,1353,1496]],[[1371,1495,1372]],[[1496,1353,1495]],[[1495,1494,1497]],[[1484,1486,1498]],[[1499,1411,1413]],[[1410,1500,1501]],[[1502,1373,1372]],[[1502,1503,1329]],[[1504,1505,1506]],[[1481,1507,607]],[[1508,1509,1510]],[[1511,1455,1512]],[[1513,1514,1515]],[[1516,1491,1488]],[[1440,1517,1518]],[[1510,1509,1519]],[[1520,1433,1521]],[[1522,1523,1400]],[[1449,1524,1471]],[[1370,1369,1525]],[[1526,1498,1486]],[[1527,1469,1370]],[[1528,1529,1463]],[[1468,1467,1530]],[[1468,1529,1438]],[[1468,1463,1529]],[[1444,1531,1532]],[[1533,1534,1535]],[[1329,1536,1330]],[[1537,1538,1539]],[[1503,1540,1325]],[[1541,1542,1320]],[[1543,1336,1329]],[[1543,1329,1328]],[[1330,1503,1485]],[[1320,1319,1544]],[[1506,1545,1509]],[[1519,1360,1362]],[[1459,1454,1504]],[[1546,1547,1456]],[[1504,1547,1505]],[[1547,1454,1456]],[[1494,1336,1548]],[[1549,1550,1334]],[[1551,1552,1518]],[[1553,1529,1528]],[[1554,1555,1436]],[[577,699,1555]],[[1556,1347,1350]],[[1556,1346,1347]],[[1557,1546,1456]],[[1456,1455,1558]],[[1559,1560,1407]],[[1561,1562,1563]],[[1446,1464,1322]],[[1512,1465,1464]],[[1564,1558,1565]],[[1511,1512,1566]],[[1567,1568,1569]],[[1570,1506,1509]],[[1358,1344,1339]],[[1358,1357,1344]],[[1329,1503,1536]],[[1571,1538,1572]],[[1447,1487,1445]],[[1512,1445,1566]],[[1573,1504,1506]],[[1459,1574,1454]],[[1548,1336,1367]],[[1494,1329,1336]],[[1373,1329,1494]],[[1373,1502,1329]],[[1575,1576,1317]],[[1577,1424,674]],[[1501,1413,1411]],[[1578,1579,1580]],[[1411,1581,1409]],[[1417,1420,1416]],[[1582,1362,1476]],[[1519,1583,1360]],[[1584,1585,1586]],[[1515,1583,1519]],[[1585,1483,1586]],[[1508,1587,1570]],[[1470,1469,1588]],[[1353,1367,1335]],[[1428,1429,1589]],[[1385,1590,1591]],[[1382,1384,1429]],[[1385,1591,1592]],[[1446,1322,1324]],[[1466,1323,1322]],[[1593,1594,1595]],[[1578,1596,1579]],[[672,1595,700]],[[672,673,1597]],[[1598,1394,1396]],[[1318,1428,1433]],[[1520,1434,1433]],[[1599,1578,1404]],[[1600,1430,1426]],[[1437,1403,1452]],[[1601,1602,1430]],[[1427,1437,1603]],[[1554,1436,700]],[[1555,699,1436]],[[1446,1445,1464]],[[1512,1464,1445]],[[1604,1350,1348]],[[1605,1349,1606]],[[1607,1608,1609]],[[1609,1608,1472]],[[1332,1610,1611]],[[1442,1438,1529]],[[1612,1613,1527]],[[1348,1344,1357]],[[1509,1515,1519]],[[1509,1545,1513]],[[1614,1615,1453]],[[1616,1617,1472]],[[1524,1448,1618]],[[1531,1619,1620]],[[1353,1352,1621]],[[1358,1622,1366]],[[1623,1345,1340]],[[1623,1624,1345]],[[1625,1626,1627]],[[1532,1628,1629]],[[1507,1544,1630]],[[1631,1326,1540]],[[1630,1544,1319]],[[1542,1541,1632]],[[1555,1554,577]],[[1431,1633,1634]],[[1635,1636,1637]],[[1584,1510,1519]],[[607,1638,1474]],[[1639,1637,1640]],[[1380,1400,1381]],[[1591,1403,1592]],[[1477,1467,1402]],[[1477,1454,1467]],[[1476,1475,1641]],[[1362,1361,1475]],[[1361,1360,1642]],[[1558,1511,1489]],[[1643,1479,1478]],[[1323,1465,1479]],[[1564,1456,1558]],[[1454,1574,1480]],[[577,1644,1614]],[[1645,1461,1617]],[[1646,1482,1647]],[[1648,1649,1482]],[[1338,1623,1650]],[[1338,1624,1623]],[[1361,1641,1475]],[[1491,1565,1488]],[[1429,1522,1382]],[[1399,1391,1381]],[[1651,1652,1653]],[[1654,1563,1655]],[[1415,1560,1559]],[[1407,1581,1417]],[[1581,1411,1499]],[[1656,1657,1658]],[[1328,1330,1485]],[[1536,1503,1330]],[[1413,1404,1578]],[[1412,1501,1656]],[[1406,1405,1659]],[[1576,1395,1317]],[[1474,1647,607]],[[1482,1649,1483]],[[1660,1592,1403]],[[1385,1384,1590]],[[1661,1662,1602]],[[1521,1589,1662]],[[1663,1442,1664]],[[1638,1472,1474]],[[1327,1476,1665]],[[1493,1564,1565]],[[1666,1447,1667]],[[1668,1669,1670]],[[1671,1572,1631]],[[1321,1630,1319]],[[1540,1671,1631]],[[1538,1502,1539]],[[1507,1672,1541]],[[1537,1539,1321]],[[1538,1537,1572]],[[1673,1674,1675]],[[1327,1326,1582]],[[1673,1676,1537]],[[1674,1673,1321]],[[1631,1572,1537]],[[1632,1674,1542]],[[1539,1630,1321]],[[1344,1337,1339]],[[1343,1347,1345]],[[1468,1677,1463]],[[1678,1574,1677]],[[1427,1602,1679]],[[1662,1385,1679]],[[1625,1666,1667]],[[1626,1444,1627]],[[1497,1496,1495]],[[1497,1548,1496]],[[1635,1680,1636]],[[1611,1664,1462]],[[1542,1674,1321]],[[1676,1326,1631]],[[1647,1481,607]],[[1647,1482,1481]],[[1681,1660,1403]],[[1681,1682,1660]],[[1509,1513,1515]],[[1545,1557,1514]],[[1407,1560,1408]],[[1651,1416,1683]],[[1684,1575,1317]],[[1404,1406,1576]],[[1468,1530,1677]],[[1467,1480,1530]],[[1581,1407,1409]],[[1581,1685,1417]],[[1490,1327,1526]],[[1326,1675,1582]],[[1486,1490,1526]],[[1485,1503,1325]],[[1582,1476,1327]],[[1641,1493,1476]],[[1667,1446,1324]],[[1667,1447,1446]],[[1686,1607,1609]],[[1440,575,1517]],[[675,1577,674]],[[1419,1687,1420]],[[1530,1678,1677]],[[1530,1480,1678]],[[1351,1355,1354]],[[1356,1688,1354]],[[1640,1474,1689]],[[1638,607,609]],[[1411,1410,1501]],[[1408,1560,1690]],[[1691,1661,1692]],[[1693,1634,1633]],[[1570,1573,1506]],[[1333,1694,1573]],[[1570,1587,1695]],[[1611,1696,1664]],[[1697,1370,1469]],[[1370,1525,1612]],[[1550,1698,1699]],[[1700,1701,1702]],[[1352,1335,1703]],[[1704,1526,1665]],[[1705,1706,1702]],[[1669,1668,1625]],[[1699,1703,1550]],[[1471,1524,1697]],[[1707,1708,1699]],[[1708,1588,1621]],[[1328,1709,1543]],[[1703,1335,1334]],[[1709,1549,1543]],[[1334,1336,1543]],[[1470,1710,1471]],[[1697,1711,1370]],[[1621,1527,1359]],[[1588,1469,1527]],[[1359,1527,1357]],[[1359,1366,1621]],[[1435,1693,1712]],[[673,1424,1577]],[[1481,1483,1507]],[[1567,1636,1568]],[[1713,1444,1626]],[[1629,1714,1524]],[[1507,1541,1544]],[[1542,1321,1320]],[[1462,1528,1463]],[[1664,1442,1553]],[[1664,1553,1528]],[[1442,1529,1553]],[[1679,1385,1592]],[[1383,1429,1384]],[[1589,1383,1385]],[[1589,1429,1383]],[[1627,1444,1715]],[[1713,1443,1444]],[[1438,1441,1439]],[[1461,1552,1425]],[[1483,1716,1507]],[[1717,1718,1582]],[[1544,1541,1320]],[[1672,1632,1541]],[[1323,1477,1402]],[[1643,1478,1477]],[[1621,1352,1708]],[[1621,1622,1353]],[[1451,1443,1713]],[[1451,1375,1443]],[[1407,1417,1559]],[[1580,1719,1720]],[[1655,1562,1690]],[[1561,1500,1721]],[[1450,1627,1448]],[[1618,1629,1524]],[[1722,1441,1442]],[[1439,1603,1437]],[[1659,1658,1657]],[[1723,1404,1656]],[[1723,1656,1658]],[[1501,1657,1656]],[[1345,1624,1343]],[[1338,1337,1624]],[[1431,1634,1724]],[[1691,1521,1662]],[[1689,1474,1473]],[[1646,1647,1474]],[[1564,1725,1726]],[[1642,1641,1361]],[[1725,1642,1360]],[[1493,1641,1642]],[[1714,1697,1524]],[[1711,1368,1370]],[[1671,1571,1572]],[[1671,1540,1571]],[[1649,1586,1483]],[[1727,1510,1584]],[[1628,1728,1714]],[[1620,1619,1369]],[[1410,1721,1500]],[[1410,1409,1408]],[[1729,1597,673]],[[1594,1693,1730]],[[1597,1593,672]],[[1594,1712,1693]],[[1435,1731,1316]],[[1432,1692,1601]],[[1577,1732,673]],[[1595,1733,700]],[[1597,1729,1712]],[[1316,1684,1317]],[[1731,1734,1316]],[[1735,1421,1423]],[[1575,1599,1404]],[[1596,1422,1421]],[[1520,1724,1634]],[[1520,1521,1691]],[[1378,1728,1379]],[[1531,1375,1619]],[[1736,1435,1712]],[[1434,1520,1634]],[[1633,1733,1730]],[[1693,1434,1634]],[[1368,1379,1369]],[[1728,1628,1379]],[[1558,1737,1511]],[[1558,1455,1737]],[[1425,1439,1738]],[[1722,1609,1472]],[[1460,1617,1461]],[[1460,1722,1617]],[[1645,1616,1518]],[[1739,610,1440]],[[1323,1643,1477]],[[1323,1479,1643]],[[1365,1604,1740]],[[1350,1347,1348]],[[1357,1740,1348]],[[1365,1364,1351]],[[1741,1740,1357]],[[1604,1348,1740]],[[1534,1364,1363]],[[1364,1356,1351]],[[1632,1675,1674]],[[1632,1672,1742]],[[1604,1351,1350]],[[1604,1365,1351]],[[1743,1744,1615]],[[1426,1425,1552]],[[1659,1723,1658]],[[1405,1404,1723]],[[1707,1745,1470]],[[1707,1701,1745]],[[1654,1655,1652]],[[1563,1562,1655]],[[1651,1654,1652]],[[1683,1563,1654]],[[1390,1392,1398]],[[1746,1401,1392]],[[1638,1739,1440]],[[609,610,1739]],[[1382,1590,1384]],[[1382,1381,1591]],[[1382,1591,1590]],[[1381,1403,1591]],[[1633,1554,700]],[[1747,1644,1554]],[[1334,1550,1703]],[[1550,1549,1748]],[[1458,1677,1574]],[[1678,1480,1574]],[[1749,1459,1504]],[[1458,1463,1677]],[[1749,1457,1459]],[[1611,1610,1750]],[[1694,1749,1504]],[[1332,1457,1749]],[[1568,1750,1695]],[[1695,1573,1570]],[[1742,1582,1675]],[[1672,1507,1716]],[[1687,1419,1751]],[[1751,1752,1577]],[[1711,1378,1368]],[[1714,1728,1378]],[[1449,1448,1524]],[[1627,1715,1618]],[[1492,1665,1476]],[[1753,1669,1450]],[[1449,1754,1755]],[[1487,1489,1445]],[[1702,1706,1704]],[[1526,1327,1665]],[[1707,1705,1701]],[[1498,1526,1706]],[[1698,1748,1705]],[[1498,1706,1705]],[[1702,1704,1756]],[[1706,1526,1704]],[[1705,1748,1498]],[[1705,1707,1698]],[[1627,1618,1448]],[[1629,1628,1714]],[[1459,1458,1574]],[[1457,1463,1458]],[[1332,1611,1457]],[[1664,1528,1462]],[[1663,1609,1442]],[[1439,1425,1603]],[[1650,1340,1342]],[[1650,1623,1340]],[[1499,1578,1685]],[[1757,1734,1596]],[[1757,1596,1578]],[[1734,1732,1596]],[[1607,1686,1696]],[[1686,1663,1696]],[[1432,1601,1430]],[[1692,1724,1691]],[[1427,1681,1437]],[[1682,1592,1660]],[[1715,1532,1618]],[[1531,1444,1375]],[[1731,1435,1736]],[[1434,1693,1435]],[[1689,1607,1639]],[[1689,1608,1607]],[[1720,1719,1418]],[[1758,1735,1423]],[[1719,1579,1418]],[[1596,1421,1579]],[[1321,1673,1537]],[[1675,1326,1676]],[[1537,1676,1631]],[[1673,1675,1676]],[[1655,1690,1652]],[[1562,1408,1690]],[[1560,1415,1690]],[[1559,1417,1415]],[[1714,1711,1697]],[[1714,1378,1711]],[[1725,1564,1493]],[[1726,1456,1564]],[[1642,1725,1493]],[[1726,1583,1456]],[[1360,1726,1725]],[[1360,1583,1726]],[[1357,1527,1613]],[[1527,1370,1612]],[[1740,1741,1363]],[[1613,1525,1741]],[[1740,1363,1365]],[[1741,1525,1363]],[[1745,1754,1470]],[[1745,1701,1754]],[[1710,1754,1449]],[[1710,1470,1754]],[[1640,1689,1639]],[[1473,1608,1689]],[[1713,1625,1667]],[[1713,1626,1625]],[[1351,1356,1355]],[[1364,1688,1356]],[[1759,1331,1573]],[[1332,1749,1694]],[[1573,1694,1504]],[[1333,1332,1694]],[[1573,1331,1333]],[[1759,1610,1760]],[[1598,1522,1429]],[[1523,1401,1399]],[[1598,1523,1522]],[[1598,1401,1523]],[[1500,1561,1563]],[[1721,1562,1561]],[[1583,1557,1456]],[[1557,1545,1505]],[[1460,1738,1722]],[[1460,1425,1738]],[[1751,1577,675]],[[1752,1422,1596]],[[1729,1732,1731]],[[1752,1596,1732]],[[1516,1756,1491]],[[1489,1566,1445]],[[1670,1761,1516]],[[1492,1476,1493]],[[1762,1743,1615]],[[1633,700,1733]],[[1615,1744,1552]],[[1743,1633,1431]],[[1747,1633,1743]],[[1747,1554,1633]],[[1406,1659,1657]],[[1405,1723,1659]],[[1470,1708,1707]],[[1352,1703,1699]],[[1739,1638,609]],[[1440,1472,1638]],[[1632,1742,1675]],[[1585,1716,1483]],[[1763,1717,1742]],[[1718,1362,1582]],[[1722,1472,1617]],[[1608,1473,1472]],[[1523,1399,1400]],[[1401,1746,1399]],[[1597,1594,1593]],[[1693,1633,1730]],[[1595,1594,1730]],[[1597,1712,1594]],[[1607,1696,1680]],[[1686,1764,1663]],[[1760,1610,1332]],[[1508,1570,1509]],[[1759,1695,1610]],[[1759,1573,1695]],[[1331,1760,1332]],[[1331,1759,1760]],[[1695,1750,1610]],[[1680,1696,1611]],[[1457,1611,1462]],[[1750,1680,1611]],[[1601,1661,1602]],[[1601,1692,1661]],[[1644,1762,1615]],[[1615,1551,1453]],[[1600,1431,1430]],[[1724,1692,1432]],[[1690,1653,1652]],[[1690,1415,1414]],[[1654,1651,1683]],[[1653,1414,1651]],[[1651,1414,1416]],[[1653,1690,1414]],[[1661,1691,1662]],[[1724,1520,1691]],[[1455,1454,1477]],[[1547,1504,1454]],[[1722,1439,1441]],[[1722,1738,1439]],[[1753,1761,1670]],[[1701,1705,1702]],[[1668,1516,1488]],[[1761,1702,1516]],[[1516,1702,1756]],[[1761,1755,1702]],[[1669,1753,1670]],[[1755,1754,1700]],[[1579,1765,1418]],[[1579,1421,1735]],[[1599,1757,1578]],[[1599,1684,1757]],[[1751,1758,1423]],[[1765,1579,1735]],[[1687,1751,675]],[[1752,1732,1577]],[[1640,1646,1474]],[[1640,1648,1646]],[[1357,1613,1741]],[[1612,1525,1613]],[[1516,1668,1670]],[[1625,1627,1669]],[[1487,1668,1488]],[[1666,1625,1668]],[[1755,1700,1702]],[[1754,1701,1700]],[[1593,1595,672]],[[1730,1733,1595]],[[1442,1609,1722]],[[1764,1686,1609]],[[575,1453,1517]],[[1615,1552,1551]],[[1614,1453,577]],[[1551,1517,1453]],[[1325,1540,1326]],[[1503,1571,1540]],[[1519,1718,1717]],[[1519,1362,1718]],[[1527,1621,1588]],[[1366,1622,1621]],[[1727,1584,1586]],[[1519,1717,1584]],[[1649,1567,1586]],[[1569,1508,1727]],[[1489,1511,1566]],[[1737,1455,1511]],[[1696,1663,1664]],[[1764,1609,1663]],[[1618,1532,1629]],[[1715,1444,1532]],[[1549,1709,1498]],[[1328,1485,1484]],[[1748,1549,1498]],[[1334,1543,1549]],[[1484,1709,1328]],[[1484,1498,1709]],[[1396,1406,1657]],[[1766,1395,1576]],[[1666,1487,1447]],[[1666,1668,1487]],[[1464,1466,1322]],[[1465,1323,1466]],[[1387,1390,1398]],[[1387,1391,1390]],[[1765,1419,1418]],[[1765,1735,1758]],[[1419,1758,1751]],[[1419,1765,1758]],[[1614,1644,1615]],[[1747,1743,1762]],[[1554,1644,577]],[[1747,1762,1644]],[[1712,1729,1736]],[[673,1732,1729]],[[1379,1620,1369]],[[1379,1628,1620]],[[1628,1531,1620]],[[1628,1532,1531]],[[1522,1380,1382]],[[1522,1400,1380]],[[1503,1538,1571]],[[1503,1502,1538]],[[1506,1505,1545]],[[1547,1546,1505]],[[1546,1557,1505]],[[1514,1513,1545]],[[1583,1514,1557]],[[1583,1515,1514]],[[1551,1518,1517]],[[1552,1461,1518]],[[1616,1645,1617]],[[1518,1461,1645]],[[1440,1616,1472]],[[1440,1518,1616]],[[1432,1431,1724]],[[1744,1743,1431]],[[1767,1755,1761]],[[1767,1449,1755]],[[1704,1492,1756]],[[1493,1565,1491]],[[1756,1492,1491]],[[1704,1665,1492]],[[1699,1708,1352]],[[1470,1588,1708]],[[1404,1412,1656]],[[1413,1501,1412]],[[1420,1720,1418]],[[1580,1579,1719]],[[1417,1720,1420]],[[1417,1685,1720]],[[1685,1580,1720]],[[1685,1578,1580]],[[1391,1746,1392]],[[1391,1399,1746]],[[1423,1752,1751]],[[1423,1422,1752]],[[1565,1489,1488]],[[1565,1558,1489]],[[1490,1325,1327]],[[1490,1485,1325]],[[1581,1499,1685]],[[1413,1578,1499]],[[1727,1567,1569]],[[1680,1750,1568]],[[1568,1587,1569]],[[1568,1695,1587]],[[1727,1508,1510]],[[1569,1587,1508]],[[1637,1636,1649]],[[1680,1568,1636]],[[1586,1567,1727]],[[1649,1636,1567]],[[1767,1450,1449]],[[1669,1627,1450]],[[1767,1753,1450]],[[1767,1761,1753]],[[1435,1316,1433]],[[1684,1599,1575]],[[1734,1684,1316]],[[1734,1757,1684]],[[1662,1589,1385]],[[1521,1433,1428]],[[1521,1428,1589]],[[1433,1316,1318]],[[1598,1318,1317]],[[1598,1429,1318]],[[1469,1471,1697]],[[1710,1449,1471]],[[1349,1605,1556]],[[1606,1346,1605]],[[1349,1556,1350]],[[1605,1346,1556]],[[1425,1427,1603]],[[1430,1602,1427]],[[1427,1679,1681]],[[1602,1662,1679]],[[1679,1682,1681]],[[1679,1592,1682]],[[1496,1548,1367]],[[1497,1494,1548]],[[1729,1731,1736]],[[1732,1734,1731]],[[1534,1533,1364]],[[1535,1364,1533]],[[1525,1534,1363]],[[1525,1535,1534]],[[1387,1397,1393]],[[1387,1398,1397]],[[1744,1600,1552]],[[1430,1427,1426]],[[1337,1343,1624]],[[1344,1348,1343]],[[1699,1698,1707]],[[1550,1748,1698]],[[1404,1576,1575]],[[1766,1396,1395]],[[1406,1766,1576]],[[1406,1396,1766]],[[1354,1349,1351]],[[1354,1606,1349]],[[1721,1408,1562]],[[1721,1410,1408]],[[1648,1637,1649]],[[1639,1607,1635]],[[1639,1635,1637]],[[1607,1680,1635]],[[1317,1394,1598]],[[1317,1395,1394]],[[1716,1585,1672]],[[1717,1582,1742]],[[1763,1585,1584]],[[1742,1672,1585]],[[1585,1763,1742]],[[1584,1717,1763]],[[1552,1600,1426]],[[1744,1431,1600]],[[1646,1648,1482]],[[1640,1637,1648]],[[1438,1437,1452]],[[1681,1403,1437]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22204791-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1768,1769,1770]],[[1771,1772,1773]],[[1774,1775,1776]],[[1777,1778,1779]],[[1780,1781,1782]],[[1783,1784,1778]],[[1785,1783,1778]],[[1786,1787,1783]],[[1788,1789,1790]],[[1791,1786,1783]],[[1792,1793,1786]],[[1794,1792,1786]],[[1795,1796,1792]],[[1794,1797,1792]],[[1795,1792,1797]],[[1798,1799,1800]],[[1791,1794,1786]],[[1801,1797,1794]],[[1802,1794,1791]],[[1785,1791,1783]],[[1803,1802,1791]],[[1804,1785,1805]],[[1798,1800,1806]],[[1807,1808,1799]],[[1799,1808,1800]],[[1809,1810,1774]],[[1811,1809,1812]],[[1813,1814,1815]],[[1812,1816,1811]],[[1812,1815,1816]],[[1812,1813,1815]],[[1813,1817,1814]],[[1818,1772,1817]],[[1771,1770,1772]],[[1771,1768,1770]],[[1768,1819,1769]],[[1820,1821,1822]],[[1820,1782,1823]],[[1821,1820,1823]],[[1823,1782,1781]],[[1788,1780,1782]],[[1788,1790,1780]],[[1824,1825,1789]],[[1826,1825,1824]],[[1827,1789,1788]],[[1776,1775,1828]],[[1810,1828,1775]],[[1776,1829,1808]],[[1776,1828,1829]],[[1812,1774,1830]],[[1830,1774,1776]],[[1820,1819,1771]],[[1819,1822,1769]],[[1827,1824,1789]],[[1827,1831,1824]],[[1807,1799,1779]],[[1800,1808,1828]],[[1832,1804,1777]],[[1785,1778,1777]],[[1798,1832,1779]],[[1805,1785,1777]],[[1773,1818,1817]],[[1773,1772,1818]],[[1809,1774,1812]],[[1810,1775,1774]],[[1777,1804,1805]],[[1806,1785,1804]],[[1830,1807,1779]],[[1808,1829,1828]],[[1830,1808,1807]],[[1830,1776,1808]],[[1771,1819,1768]],[[1820,1822,1819]],[[1773,1813,1812]],[[1773,1817,1813]],[[1831,1826,1824]],[[1831,1825,1826]],[[1832,1798,1806]],[[1779,1799,1798]],[[1804,1832,1806]],[[1777,1779,1832]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22206eb6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1833,1834,1835]],[[1836,1837,1838]],[[1839,174,1840]],[[1841,1842,172]],[[1837,172,1843]],[[1844,1845,1843]],[[1846,172,173]],[[1847,1848,1846]],[[1849,1850,1851]],[[1846,1843,172]],[[1834,173,1835]],[[1852,1853,1835]],[[1835,173,1840]],[[173,1839,1840]],[[173,174,1839]],[[1845,1837,1843]],[[1845,1838,1837]],[[1854,1853,1852]],[[1855,1856,1857]],[[1848,1858,1846]],[[1846,1858,1843]],[[1835,1853,1833]],[[1849,1851,1846]],[[1855,1857,1849]],[[1851,1847,1846]],[[1833,1846,173]],[[1849,1857,1850]],[[172,1836,1841]],[[172,1837,1836]],[[1859,1850,1857]],[[1859,1851,1850]],[[1834,1833,173]],[[1853,1846,1833]],[[1853,1849,1846]],[[1856,1860,1859]],[[1860,1854,1852]],[[1860,1853,1854]],[[1853,1855,1849]],[[1853,1860,1855]],[[1857,1856,1859]],[[1855,1860,1856]],[[1858,1844,1843]],[[1858,1845,1844]],[[1838,1841,1836]],[[1838,1842,1841]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222095f0-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1861,1862,1863]],[[1864,1865,1866]],[[1867,1868,1865]],[[1869,1870,1871]],[[1872,1873,1870]],[[1874,1875,1876]],[[1877,1869,1871]],[[1863,1873,1867]],[[1863,1878,1873]],[[1862,1879,1878]],[[1868,1875,1874]],[[1867,1873,1876]],[[1876,1869,1877]],[[1872,1870,1869]],[[1867,1864,1863]],[[1866,1863,1864]],[[1874,1876,1877]],[[1875,1867,1876]],[[1861,1863,1866]],[[1862,1878,1863]],[[1876,1872,1869]],[[1876,1873,1872]],[[1864,1867,1865]],[[1875,1868,1867]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2221a6f3-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1880,1881,1882]],[[1880,1882,1883]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2221ce24-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.35f5257403d44b2da79b759adfef6652","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1884,1885,1886]],[[1884,1886,1887]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2222df3c-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a4249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1888,1889,1890]],[[1888,1891,1892]],[[1888,1893,1891]],[[1888,1894,1893]],[[1888,1890,1894]],[[1889,1895,1890]],[[1889,1896,1895]],[[1889,1897,1896]],[[1898,1899,1889]],[[1900,1898,1889]],[[1901,1900,1889]],[[1902,1901,1889]],[[1902,1903,1901]],[[1902,1904,1903]],[[1902,1905,1904]],[[1902,1906,1905]],[[1907,1908,1902]],[[1902,1908,1909]],[[1910,1907,1911]],[[1911,1907,1912]],[[1912,1907,1902]],[[1913,1914,1912]],[[1915,1913,1912]],[[1912,1916,1917]],[[1918,1919,1912]],[[1920,1918,1912]],[[1921,1920,1912]],[[1922,1921,1917]],[[1917,1916,1923]],[[1924,1917,1923]],[[1925,1926,1917]],[[1927,1925,1917]],[[1928,1927,1917]],[[1923,122,123]],[[1916,121,122]],[[1888,1892,120]],[[121,1888,120]],[[1924,1923,123]],[[1924,1928,1917]],[[1923,1916,122]],[[1907,1929,1908]],[[1912,1914,1911]],[[1910,1929,1907]],[[1902,1889,1916]],[[1899,1897,1889]],[[1912,1902,1916]],[[1909,1906,1902]],[[1916,1888,121]],[[1916,1889,1888]],[[1930,1917,1926]],[[1930,1922,1917]],[[1921,1912,1917]],[[1919,1915,1912]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2223065e-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef501749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1931,1932,1933]],[[1934,350,351]],[[1935,347,348]],[[347,1936,346]],[[1937,1938,1939]],[[1940,1941,1942]],[[1943,1941,1940]],[[1944,1945,1946]],[[1947,1948,1949]],[[1950,1951,1952]],[[1953,1954,1955]],[[1956,1957,1958]],[[1959,1960,1961]],[[1962,1963,1959]],[[1964,1962,1959]],[[1965,1961,1966]],[[1967,1968,1969]],[[1970,1971,1972]],[[1973,1974,1975]],[[1976,292,291]],[[1959,1961,1977]],[[1978,1979,1980]],[[1981,1982,1983]],[[1984,319,320]],[[1985,304,1986]],[[1987,1988,1989]],[[1990,386,1989]],[[386,1991,385]],[[385,1991,383]],[[383,1991,1992]],[[1993,1994,1995]],[[1996,1997,1998]],[[1999,2000,2001]],[[2002,2003,2000]],[[2004,2005,2006]],[[2007,2008,2009]],[[2010,2011,2012]],[[2013,2014,2015]],[[1933,1932,2016]],[[2011,2017,2018]],[[2018,2019,2011]],[[2019,2018,2020]],[[2021,2022,2023]],[[2024,2025,2026]],[[2027,2028,352]],[[2029,2030,2031]],[[2032,2002,2033]],[[1989,386,317]],[[1980,2034,2035]],[[2035,350,1980]],[[2013,2036,2037]],[[1985,1982,304]],[[1963,2038,2039]],[[2040,2041,2042]],[[2043,2044,1983]],[[2045,2046,2047]],[[2007,2048,2008]],[[2049,2050,2051]],[[2052,2053,2054]],[[2055,2056,2057]],[[2020,2009,2058]],[[2059,2060,350]],[[2061,1974,2062]],[[2063,2064,1960]],[[2065,1975,2066]],[[2067,292,1976]],[[347,1947,2068]],[[2069,2070,2071]],[[2045,1994,1993]],[[2072,2073,1982]],[[2074,2071,2075]],[[2076,2077,2078]],[[2046,1984,320]],[[2046,2045,1984]],[[2079,2080,2081]],[[2082,2081,2083]],[[292,1986,304]],[[2084,2052,2054]],[[349,2085,2086]],[[2057,1947,347]],[[2087,2067,1976]],[[2088,2052,2067]],[[2060,2089,1978]],[[2090,2091,2092]],[[2093,2094,2001]],[[2008,2095,2096]],[[2097,2098,2099]],[[2037,2100,2101]],[[2102,2033,2103]],[[2104,2097,2001]],[[2105,2106,2107]],[[2108,2109,2110]],[[2111,2078,2112]],[[2074,1945,1943]],[[2113,2114,2075]],[[1953,1950,1954]],[[2028,2115,2116]],[[1997,2117,2118]],[[2088,2061,2062]],[[2119,2062,1974]],[[2067,2052,292]],[[2088,2120,2052]],[[2087,2061,2088]],[[2121,1961,1969]],[[293,2065,291]],[[2065,1973,1975]],[[2122,2123,1963]],[[2124,2120,2088]],[[2125,2041,2126]],[[2040,2127,2120]],[[1961,1960,1967]],[[2042,2041,2125]],[[2128,2129,352]],[[2116,2130,2080]],[[1935,2057,347]],[[1958,1936,1956]],[[2057,2056,2131]],[[2132,2127,1948]],[[2037,2110,2100]],[[2133,2093,2109]],[[2032,2033,2048]],[[2134,2015,2135]],[[2004,2136,2000]],[[2032,2048,2007]],[[2137,2138,2038]],[[2139,2140,2042]],[[1986,2054,1985]],[[2084,292,2052]],[[2141,1981,2142]],[[2143,2053,2144]],[[1979,2145,2034]],[[349,350,2146]],[[1991,2109,2093]],[[1991,386,2109]],[[2147,2137,2038]],[[2148,2138,2137]],[[2124,2149,2120]],[[2039,2122,1963]],[[2052,2120,2053]],[[2088,2062,2124]],[[2106,2150,2151]],[[2097,1999,2001]],[[2152,2153,2154]],[[2006,2136,2004]],[[320,2155,2047]],[[2156,304,1982]],[[2157,2156,2073]],[[2158,304,2156]],[[2086,2085,2057]],[[2159,2146,1937]],[[2160,2155,320]],[[2161,2158,2162]],[[2163,2164,2165]],[[2166,1941,2165]],[[2167,2168,2157]],[[2158,302,304]],[[2169,2170,2161]],[[2169,2160,2170]],[[2103,2033,2171]],[[2103,2150,2134]],[[2172,2144,2053]],[[2173,1983,1982]],[[1994,2073,2072]],[[2110,2109,1990]],[[2060,1978,350]],[[2089,1979,1978]],[[2174,2175,2051]],[[2176,2011,2019]],[[2177,2178,1952]],[[2112,1954,1950]],[[2153,2179,2154]],[[2005,2004,1999]],[[2139,2180,2069]],[[2070,1951,2071]],[[2181,1940,1942]],[[2182,1948,2127]],[[1968,2040,2120]],[[1958,1943,1940]],[[2183,2184,2154]],[[2179,2153,2098]],[[2010,2012,2016]],[[2011,2176,2185]],[[2147,1962,1964]],[[2147,2038,1963]],[[1998,2118,2020]],[[2009,2017,2007]],[[1996,2029,2031]],[[2020,2186,2009]],[[2009,2008,2058]],[[2048,2102,2008]],[[2013,2187,2014]],[[2014,2135,2015]],[[2003,2032,2007]],[[2003,2002,2032]],[[2066,1975,2061]],[[2065,2188,1973]],[[2189,1950,1952]],[[2189,2112,1950]],[[2129,2027,352]],[[2129,2115,2027]],[[1968,1967,2040]],[[1960,2123,2063]],[[2190,1995,1994]],[[319,1984,1993]],[[291,2191,1976]],[[2192,2065,2191]],[[2108,2133,2109]],[[2104,2193,2179]],[[2036,2108,2110]],[[2036,2015,2107]],[[1960,1959,2123]],[[1962,2147,1963]],[[2049,2194,2118]],[[2175,2174,2176]],[[2155,2169,2162]],[[2170,302,2158]],[[1987,1989,317]],[[1988,1990,1989]],[[2195,2118,2117]],[[2186,2017,2009]],[[320,2047,2046]],[[2155,2196,2047]],[[2026,2197,1934]],[[2198,2030,2199]],[[2200,2128,2023]],[[2117,2021,2195]],[[2199,2030,2029]],[[2083,2201,2117]],[[2028,2116,2202]],[[2203,2197,2204]],[[2119,2205,2062]],[[2119,1961,2121]],[[1964,1959,1977]],[[1963,2123,1959]],[[1999,2004,2000]],[[1999,2097,2005]],[[2086,2057,2206]],[[2085,349,2055]],[[2193,2207,2183]],[[2154,2208,2152]],[[2058,2096,2014]],[[2058,2008,2096]],[[2167,2073,1994]],[[2156,1982,2073]],[[2195,2050,2118]],[[2051,2175,2049]],[[2095,2102,2134]],[[2102,2103,2134]],[[2135,2095,2134]],[[2048,2033,2102]],[[2034,1938,2209]],[[2085,2055,2057]],[[2209,1938,1937]],[[2210,2053,1971]],[[2131,2056,1970]],[[2127,2053,2120]],[[2131,1970,2132]],[[2172,1939,1938]],[[2025,2116,2204]],[[2130,2129,2211]],[[2025,2202,2116]],[[351,2028,2202]],[[2136,2002,2000]],[[2171,2033,2002]],[[1947,2131,1948]],[[1947,2057,2131]],[[2146,2212,2213]],[[2146,2034,2212]],[[2175,2176,2194]],[[2174,2185,2176]],[[2162,2158,2156]],[[2161,2170,2158]],[[2164,2166,2165]],[[2214,1941,2166]],[[319,1987,317]],[[319,1988,1987]],[[2215,1983,2044]],[[2072,2190,1994]],[[2216,2044,2217]],[[2092,2215,2044]],[[2053,2143,2054]],[[2217,2044,2043]],[[2143,1985,2054]],[[2143,2173,1985]],[[2218,2215,2092]],[[2141,2110,1981]],[[2219,2220,2221]],[[2220,2222,2164]],[[2223,2196,2167]],[[2155,2162,2168]],[[2223,2167,1994]],[[2157,2162,2156]],[[2201,2022,2117]],[[2200,2023,2022]],[[2082,2083,2224]],[[2130,2116,2115]],[[2094,2104,2001]],[[2133,2108,2193]],[[2133,2193,2104]],[[2108,2107,2207]],[[2056,2225,1970]],[[2172,1938,2145]],[[351,2024,1934]],[[2204,2197,2026]],[[2113,2163,2165]],[[2222,2214,2166]],[[2226,2199,2029]],[[2100,2218,2091]],[[2183,2154,2179]],[[2184,2208,2154]],[[2122,2063,2123]],[[2122,2125,2126]],[[2199,2090,2089]],[[2227,2228,2145]],[[2146,2035,2034]],[[2146,350,2035]],[[2142,1981,1983]],[[1995,1988,319]],[[302,2160,320]],[[302,2170,2160]],[[2185,1931,2229]],[[2174,1932,1931]],[[2069,2074,2230]],[[1945,1941,1943]],[[2231,2068,2232]],[[1956,347,2068]],[[2233,2230,2234]],[[2068,1947,1949]],[[2232,1949,2231]],[[2230,2074,1943]],[[2235,2076,2236]],[[2237,2164,2163]],[[2159,2055,349]],[[2159,1939,2055]],[[2191,2066,1976]],[[2191,2065,2066]],[[293,2188,2065]],[[293,2119,1973]],[[2205,2121,2149]],[[2205,2119,2121]],[[2205,2124,2062]],[[2205,2149,2124]],[[2096,2095,2135]],[[2008,2102,2095]],[[2116,2203,2204]],[[2081,2082,2203]],[[2058,2014,2187]],[[2096,2135,2014]],[[2148,2139,2138]],[[2148,2180,2139]],[[291,2192,2191]],[[291,2065,2192]],[[2113,2075,2163]],[[1955,1954,2078]],[[2071,2077,2075]],[[2076,2237,2163]],[[2197,2030,2059]],[[2199,2089,2198]],[[2238,2030,2198]],[[2197,2203,2082]],[[2227,2239,2228]],[[2092,2044,2216]],[[2034,2145,1938]],[[2228,2144,2145]],[[2104,2098,2097]],[[2104,2179,2098]],[[2133,2094,2093]],[[2133,2104,2094]],[[1998,2020,2058]],[[2118,2019,2020]],[[2018,2186,2020]],[[2018,2017,2186]],[[2081,2080,2083]],[[2211,2128,2240]],[[2201,2200,2022]],[[2240,2128,2200]],[[2200,2241,2240]],[[2081,2203,2079]],[[1941,1946,2165]],[[1945,2074,1946]],[[1978,1980,350]],[[1979,2034,1980]],[[2242,2190,2072]],[[1995,319,1993]],[[1981,2072,1982]],[[1981,2110,2242]],[[1981,2242,2072]],[[2110,1988,2242]],[[2242,1995,2190]],[[2242,1988,1995]],[[2110,1990,1988]],[[2109,386,1990]],[[2036,2107,2108]],[[2015,2105,2107]],[[2080,2130,2240]],[[2129,2128,2211]],[[2080,2241,2083]],[[2080,2240,2241]],[[2149,1969,2120]],[[2149,2121,1969]],[[1969,1968,2120]],[[1969,1961,1967]],[[2056,1939,2225]],[[2056,2055,1939]],[[2162,2169,2161]],[[2155,2160,2169]],[[2030,2238,2059]],[[2198,2089,2060]],[[1934,2059,350]],[[2238,2198,2060]],[[1994,2045,2047]],[[1993,1984,2045]],[[2213,2209,1937]],[[2212,2034,2209]],[[2067,2087,2088]],[[2243,2066,2061]],[[2178,2189,1952]],[[2178,2112,2189]],[[1949,2182,2231]],[[1957,1956,2068]],[[293,1973,2188]],[[2119,1974,1973]],[[1946,2114,2165]],[[2114,2074,2075]],[[2064,2244,1960]],[[2040,2042,2127]],[[1939,2159,1937]],[[349,2146,2159]],[[2012,2229,2016]],[[2229,1931,1933]],[[2016,2229,1933]],[[2185,2174,1931]],[[2245,2111,2112]],[[2077,2076,2163]],[[2178,2245,2112]],[[2236,2076,2111]],[[2244,2040,1967]],[[2126,2063,2122]],[[2091,2218,2092]],[[2100,2110,2218]],[[2239,2090,2092]],[[2199,2226,2091]],[[2196,2168,2167]],[[2196,2155,2168]],[[2215,2142,1983]],[[2215,2218,2141]],[[2215,2141,2142]],[[2218,2110,2141]],[[2241,2201,2083]],[[2241,2200,2201]],[[2184,2107,2106]],[[2153,2099,2098]],[[2208,2106,2152]],[[2006,2099,2153]],[[2151,2153,2152]],[[2151,2006,2153]],[[2134,2105,2015]],[[2106,2151,2152]],[[2134,2150,2105]],[[2103,2151,2150]],[[2237,2221,2164]],[[2219,2177,2214]],[[2164,2221,2220]],[[2246,2235,2219]],[[2164,2222,2166]],[[2220,2214,2222]],[[2247,2230,2233]],[[2234,2231,2182]],[[1976,2243,2087]],[[1975,1974,2061]],[[2139,2042,2125]],[[2040,2064,2041]],[[2138,2125,2038]],[[2138,2139,2125]],[[1985,2173,1982]],[[2143,2144,2217]],[[2184,2106,2208]],[[2105,2150,2106]],[[2144,2172,2145]],[[2225,1939,2172]],[[352,2028,351]],[[2027,2115,2028]],[[2225,2210,1970]],[[2210,2172,2053]],[[2132,1972,2127]],[[1971,2053,1972]],[[2247,2127,2042]],[[1972,2053,2127]],[[1998,1997,2118]],[[2224,2083,2117]],[[2224,2117,1997]],[[2022,2021,2117]],[[2100,2226,2029]],[[2100,2091,2226]],[[2187,1998,2058]],[[2187,2248,1998]],[[2051,2195,2021]],[[2051,2050,2195]],[[2112,2078,1954]],[[2111,2076,2078]],[[1936,2181,1942]],[[1936,1940,2181]],[[2068,1949,2232]],[[1948,2182,1949]],[[1970,2210,1971]],[[2225,2172,2210]],[[2173,2043,1983]],[[2173,2143,2043]],[[2143,2217,2043]],[[2144,2228,2216]],[[2131,2132,1948]],[[1970,1972,2132]],[[2245,2236,2111]],[[2177,2219,2235]],[[2029,2248,2100]],[[2029,1996,2248]],[[1997,1996,2224]],[[2030,2197,2031]],[[2224,1996,2031]],[[1998,2248,1996]],[[2031,2082,2224]],[[2031,2197,2082]],[[347,1956,1936]],[[2068,2231,1957]],[[2234,1957,2231]],[[1958,1940,1936]],[[2177,2235,2236]],[[2237,2076,2235]],[[2089,2090,1979]],[[2092,2228,2239]],[[2227,2090,2239]],[[2199,2091,2090]],[[1979,2227,2145]],[[1979,2090,2227]],[[2220,2219,2214]],[[2246,2237,2235]],[[2221,2246,2219]],[[2221,2237,2246]],[[2108,2207,2193]],[[2107,2184,2207]],[[2193,2183,2179]],[[2207,2184,2183]],[[2026,2025,2204]],[[2026,1934,2024]],[[2202,2024,351]],[[2202,2025,2024]],[[2167,2157,2073]],[[2168,2162,2157]],[[2234,1958,1957]],[[2234,1943,1958]],[[2099,2005,2097]],[[2099,2006,2005]],[[2177,2245,2178]],[[2177,2236,2245]],[[1986,2084,2054]],[[1986,292,2084]],[[2136,2171,2002]],[[2136,2006,2171]],[[2148,2147,1964]],[[2148,2137,2147]],[[348,2086,2206]],[[348,349,2086]],[[2248,2101,2100]],[[2248,2187,2101]],[[2110,2037,2036]],[[2101,2187,2037]],[[2187,2013,2037]],[[2015,2036,2013]],[[2087,2243,2061]],[[1976,2066,2243]],[[2047,2223,1994]],[[2047,2196,2223]],[[1941,1944,1946]],[[1941,1945,1944]],[[2234,2230,1943]],[[2069,2071,2074]],[[2165,2114,2113]],[[1946,2074,2114]],[[2182,2233,2234]],[[2140,2139,2069]],[[2127,2247,2182]],[[2247,2140,2230]],[[2140,2069,2230]],[[2180,2070,2069]],[[2182,2247,2233]],[[2042,2140,2247]],[[2071,1953,2077]],[[2071,1951,1953]],[[2077,1953,1955]],[[1951,1950,1953]],[[2075,2077,2163]],[[1955,2078,2077]],[[2197,2059,1934]],[[2238,2060,2059]],[[1977,1965,1966]],[[1977,1961,1965]],[[2116,2079,2203]],[[2116,2080,2079]],[[2012,2185,2229]],[[2012,2011,2185]],[[2144,2216,2217]],[[2228,2092,2216]],[[2103,2006,2151]],[[2103,2171,2006]],[[2206,1935,348]],[[2206,2057,1935]],[[2125,2039,2038]],[[2125,2122,2039]],[[1960,2244,1967]],[[2064,2040,2244]],[[2194,2019,2118]],[[2194,2176,2019]],[[2064,2126,2041]],[[2064,2063,2126]],[[2129,2130,2115]],[[2211,2240,2130]],[[2148,2070,2180]],[[2148,1951,2070]],[[2194,2049,2175]],[[2118,2050,2049]],[[2146,2213,1937]],[[2212,2209,2213]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222354ba-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a0e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2249,2250,2251]],[[2249,2251,2252]],[[2252,2251,2253]],[[2251,344,345]],[[2253,2251,345]],[[2250,344,2251]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222465d8-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2254,2255,2256]],[[2257,2254,2256]],[[2258,2254,2257]],[[2258,2259,2254]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b22250278-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2260,2261,2262]],[[2263,2264,2265]],[[2266,2267,2268]],[[2269,2270,2271]],[[2272,2273,2274]],[[2272,2274,2275]],[[2276,2277,2270]],[[2277,2273,2270]],[[2278,2279,2280]],[[2281,2274,2282]],[[2283,2284,2285]],[[2286,2287,2288]],[[2289,2281,2284]],[[2290,2291,2292]],[[2293,2294,2295]],[[2296,2290,2297]],[[2298,2296,2297]],[[2299,2292,2300]],[[2301,2302,2303]],[[2304,2305,2306]],[[2307,2308,2309]],[[2310,2311,2312]],[[2313,2314,2312]],[[2315,2316,2317]],[[2318,2319,2320]],[[2321,2322,2323]],[[2318,2324,2319]],[[2319,2324,2325]],[[2326,2327,2328]],[[2328,2329,2330]],[[2331,2311,2310]],[[2314,2313,2332]],[[2333,2334,2335]],[[2336,2308,2322]],[[2337,2338,2339]],[[2340,2341,2342]],[[2343,2344,2345]],[[2346,2347,2348]],[[2349,2350,2351]],[[2352,2353,2354]],[[2353,2352,2355]],[[2356,2357,2358]],[[2359,2360,2358]],[[2361,2362,2363]],[[2360,2348,2364]],[[2365,2366,2367]],[[2365,2368,2366]],[[2365,2369,2370]],[[2345,2371,2343]],[[2345,2344,2372]],[[2373,2374,2375]],[[2363,2362,2376]],[[2377,2378,2379]],[[2380,2381,2382]],[[2375,2374,2377]],[[2377,2380,2378]],[[2341,2383,2342]],[[2384,2385,2386]],[[2385,2387,2388]],[[2384,2373,2389]],[[2390,2385,2391]],[[2383,2392,2393]],[[2394,2387,2395]],[[2396,2335,2397]],[[2398,2399,2400]],[[2401,2402,2403]],[[2401,2404,2402]],[[2405,2400,2335]],[[2406,2405,2335]],[[2407,2408,2409]],[[2410,2411,2412]],[[2412,2411,2413]],[[2339,2338,2414]],[[2411,2415,2416]],[[2417,2418,2419]],[[2420,2421,2422]],[[2423,2424,2425]],[[2423,2426,2424]],[[2427,2424,2428]],[[2429,2430,2431]],[[2432,2433,2434]],[[2435,2436,2437]],[[2306,2438,2439]],[[2440,2441,2442]],[[2443,2444,2445]],[[2443,2446,2447]],[[2448,2445,2449]],[[2450,2451,2438]],[[2452,2453,2454]],[[2455,2456,2457]],[[2458,2444,2459]],[[2460,2461,2462]],[[2463,2464,2465]],[[2466,2467,2468]],[[2452,2440,2453]],[[2469,2470,2471]],[[2472,2264,2473]],[[2266,2474,2267]],[[2475,2268,2267]],[[2475,2476,2268]],[[2475,2477,2476]],[[2466,2478,2475]],[[2475,2478,2477]],[[2466,2468,2478]],[[2466,2479,2467]],[[2480,2481,2479]],[[2479,2481,2467]],[[2480,2482,2483]],[[2481,2480,2483]],[[2484,2482,2485]],[[2486,2487,2303]],[[2488,2489,2490]],[[2491,2492,2488]],[[2493,2494,2495]],[[2496,2497,2489]],[[2498,2499,2496]],[[2500,2501,2502]],[[2503,2504,2500]],[[2505,2506,2507]],[[2419,2418,2508]],[[2469,2487,2486]],[[2509,2260,2510]],[[2511,2469,2486]],[[2510,2302,2301]],[[2302,2486,2303]],[[2261,2260,2509]],[[2260,2302,2510]],[[2509,2483,2261]],[[2483,2484,2261]],[[2483,2482,2484]],[[2512,2513,2514]],[[2465,2515,2516]],[[2517,2485,2518]],[[2516,2485,2482]],[[2516,2518,2485]],[[2519,2520,2521]],[[2522,2523,2524]],[[2455,2457,2441]],[[2525,2526,2527]],[[2528,2451,2450]],[[2450,2438,2306]],[[2529,2530,2531]],[[2532,2533,2534]],[[2535,2536,2537]],[[2538,2419,2539]],[[2540,2541,2542]],[[2534,2430,2543]],[[2544,2545,2501]],[[2546,2507,2502]],[[2547,2536,2530]],[[2548,2549,2420]],[[2415,2541,2550]],[[2551,2552,2553]],[[2287,2286,2295]],[[2295,2554,2293]],[[2293,2554,2555]],[[2282,2274,2556]],[[2294,2557,2290]],[[2555,2554,2557]],[[2300,2558,2556]],[[2282,2554,2288]],[[2352,2356,2358]],[[2348,2360,2359]],[[2528,2459,2451]],[[2459,2444,2451]],[[2559,2560,2561]],[[2501,2546,2502]],[[2561,2544,2501]],[[2562,2545,2544]],[[2563,2564,2565]],[[2566,2567,2568]],[[2569,2570,2571]],[[2436,2542,2572]],[[2264,2573,2265]],[[2501,2545,2546]],[[2574,2434,2306]],[[2420,2575,2548]],[[2417,2419,2576]],[[2493,2495,2562]],[[2577,2578,2579]],[[2580,2316,2324]],[[2333,2581,2572]],[[2582,2583,2584]],[[2402,2398,2405]],[[2399,2404,2585]],[[2586,2587,2588]],[[2589,2495,2494]],[[2590,2591,2592]],[[2588,2593,2594]],[[2553,2537,2536]],[[2595,2508,2596]],[[2535,2597,2582]],[[2338,2322,2414]],[[2598,2599,2349]],[[2599,2600,2601]],[[2602,2381,2603]],[[2602,2362,2382]],[[2474,2604,2605]],[[2474,2269,2267]],[[2471,2473,2469]],[[2264,2487,2473]],[[2606,2607,2608]],[[2609,2610,2489]],[[2611,2612,2613]],[[2614,2615,2338]],[[2616,2442,2525]],[[2617,2618,2619]],[[2620,2266,2263]],[[2268,2264,2263]],[[2557,2554,2282]],[[2288,2281,2282]],[[2357,2359,2358]],[[2357,2348,2359]],[[2356,2346,2357]],[[2367,2621,2622]],[[2598,2349,2351]],[[2601,2350,2349]],[[2305,2543,2429]],[[2623,2534,2543]],[[2557,2291,2290]],[[2557,2558,2291]],[[2381,2380,2603]],[[2382,2362,2361]],[[2624,2574,2439]],[[2304,2623,2543]],[[2379,2622,2621]],[[2361,2363,2622]],[[2625,2626,2279]],[[2626,2627,2283]],[[2628,2629,2524]],[[2630,2440,2442]],[[2294,2555,2557]],[[2294,2293,2555]],[[2398,2402,2399]],[[2392,2631,2395]],[[2632,2512,2633]],[[2634,2516,2482]],[[2521,2635,2464]],[[2617,2619,2515]],[[2290,2636,2505]],[[2299,2300,2637]],[[2507,2506,2502]],[[2607,2638,2639]],[[2471,2640,2472]],[[2640,2641,2620]],[[2642,2643,2644]],[[2500,2502,2643]],[[2515,2465,2635]],[[2521,2464,2632]],[[2561,2645,2493]],[[2594,2494,2645]],[[2444,2458,2445]],[[2456,2646,2458]],[[2379,2378,2622]],[[2377,2647,2380]],[[2648,2534,2623]],[[2533,2649,2430]],[[2650,2651,2623]],[[2596,2649,2648]],[[2369,2652,2371]],[[2371,2652,2343]],[[2344,2363,2376]],[[2344,2652,2363]],[[2635,2653,2464]],[[2654,2655,2656]],[[2464,2513,2632]],[[2512,2628,2657]],[[2434,2304,2306]],[[2433,2432,2658]],[[2433,2658,2304]],[[2432,2426,2658]],[[2428,2426,2432]],[[2423,2659,2575]],[[2610,2660,2496]],[[2499,2497,2496]],[[2416,2415,2661]],[[2411,2410,2334]],[[2319,2325,2328]],[[2662,2316,2663]],[[2603,2647,2374]],[[2603,2380,2647]],[[2664,2307,2309]],[[2307,2312,2308]],[[2647,2377,2374]],[[2377,2379,2375]],[[2498,2665,2666]],[[2498,2660,2665]],[[2667,2565,2331]],[[2564,2566,2668]],[[2493,2562,2544]],[[2669,2545,2562]],[[2655,2616,2527]],[[2657,2670,2671]],[[2340,2375,2672]],[[2340,2373,2375]],[[2290,2292,2636]],[[2673,2558,2300]],[[2445,2674,2454]],[[2445,2646,2674]],[[2263,2266,2268]],[[2263,2265,2620]],[[2392,2585,2675]],[[2390,2387,2385]],[[2676,2396,2397]],[[2677,2406,2335]],[[2678,2611,2583]],[[2591,2588,2576]],[[2586,2679,2680]],[[2418,2681,2682]],[[2645,2683,2594]],[[2660,2498,2496]],[[2684,2683,2645]],[[2587,2685,2576]],[[2684,2560,2559]],[[2684,2645,2560]],[[2380,2382,2378]],[[2381,2602,2382]],[[2437,2436,2572]],[[2334,2677,2335]],[[2552,2686,2437]],[[2435,2687,2436]],[[2651,2650,2540]],[[2548,2575,2661]],[[2542,2688,2540]],[[2569,2689,2690]],[[2687,2691,2688]],[[2623,2304,2692]],[[2540,2691,2651]],[[2686,2552,2693]],[[2572,2542,2541]],[[2436,2687,2542]],[[2694,2570,2695]],[[2571,2693,2569]],[[2354,2353,2351]],[[2352,2358,2355]],[[2677,2410,2412]],[[2677,2334,2410]],[[2594,2696,2589]],[[2414,2669,2696]],[[2697,2563,2565]],[[2698,2564,2563]],[[2699,2583,2611]],[[2613,2337,2591]],[[2415,2334,2541]],[[2415,2411,2334]],[[2294,2296,2298]],[[2294,2290,2296]],[[2593,2339,2696]],[[2593,2696,2594]],[[2696,2339,2414]],[[2588,2591,2337]],[[2504,2559,2501]],[[2606,2608,2700]],[[2323,2701,2437]],[[2702,2547,2689]],[[2628,2524,2523]],[[2525,2441,2461]],[[2557,2556,2558]],[[2274,2273,2556]],[[2400,2585,2397]],[[2404,2675,2585]],[[2635,2465,2653]],[[2516,2634,2463]],[[2666,2638,2607]],[[2665,2639,2638]],[[2541,2333,2572]],[[2541,2334,2333]],[[2703,2704,2470]],[[2705,2666,2607]],[[2639,2660,2706]],[[2639,2665,2660]],[[2540,2549,2550]],[[2707,2692,2421]],[[2520,2519,2708]],[[2632,2513,2512]],[[2709,2629,2634]],[[2657,2523,2670]],[[2710,2369,2371]],[[2370,2368,2365]],[[2648,2695,2596]],[[2648,2694,2695]],[[2415,2550,2661]],[[2541,2540,2550]],[[2582,2678,2583]],[[2597,2612,2678]],[[2539,2611,2711]],[[2678,2612,2611]],[[2333,2712,2581]],[[2407,2664,2309]],[[2572,2581,2437]],[[2321,2336,2322]],[[2581,2323,2437]],[[2321,2713,2407]],[[2279,2626,2285]],[[2279,2278,2625]],[[2514,2629,2628]],[[2514,2634,2629]],[[2714,2520,2708]],[[2714,2618,2520]],[[2715,2698,2697]],[[2715,2564,2698]],[[2460,2671,2670]],[[2716,2708,2633]],[[2460,2462,2671]],[[2714,2708,2671]],[[2716,2512,2657]],[[2628,2523,2657]],[[2470,2469,2511]],[[2473,2487,2469]],[[2623,2651,2570]],[[2691,2686,2717]],[[2571,2651,2691]],[[2571,2570,2651]],[[2571,2717,2693]],[[2571,2691,2717]],[[2718,2319,2328]],[[2718,2578,2719]],[[2669,2546,2545]],[[2669,2507,2546]],[[2706,2608,2639]],[[2720,2705,2607]],[[2639,2608,2607]],[[2700,2683,2684]],[[2437,2721,2552]],[[2701,2615,2722]],[[2721,2701,2722]],[[2323,2322,2723]],[[2537,2721,2722]],[[2437,2701,2721]],[[2724,2427,2428]],[[2725,2659,2425]],[[2331,2726,2311]],[[2317,2311,2727]],[[2728,2567,2564]],[[2568,2315,2317]],[[2564,2668,2565]],[[2726,2727,2311]],[[2430,2429,2543]],[[2528,2729,2459]],[[2554,2286,2288]],[[2554,2295,2286]],[[2521,2617,2635]],[[2619,2518,2515]],[[2644,2730,2642]],[[2620,2265,2573]],[[2502,2506,2643]],[[2507,2290,2505]],[[2731,2505,2636]],[[2732,2506,2505]],[[2674,2733,2734]],[[2456,2458,2457]],[[2695,2569,2596]],[[2695,2570,2569]],[[2691,2540,2688]],[[2650,2707,2540]],[[2542,2687,2688]],[[2686,2691,2687]],[[2703,2641,2704]],[[2573,2264,2472]],[[2471,2472,2473]],[[2471,2470,2704]],[[2471,2704,2640]],[[2735,2500,2642]],[[2643,2642,2500]],[[2730,2736,2737]],[[2650,2692,2707]],[[2658,2426,2423]],[[2633,2519,2632]],[[2520,2618,2521]],[[2428,2424,2426]],[[2427,2724,2725]],[[2648,2532,2534]],[[2648,2649,2532]],[[2660,2610,2706]],[[2489,2488,2609]],[[2738,2735,2641]],[[2642,2730,2735]],[[2566,2726,2668]],[[2566,2568,2726]],[[2285,2626,2283]],[[2625,2280,2627]],[[2283,2289,2284]],[[2283,2627,2289]],[[2623,2692,2650]],[[2421,2658,2422]],[[2739,2394,2631]],[[2739,2387,2394]],[[2623,2694,2648]],[[2623,2570,2694]],[[2559,2561,2501]],[[2560,2645,2561]],[[2397,2341,2340]],[[2397,2585,2341]],[[2600,2355,2350]],[[2358,2350,2355]],[[2386,2385,2388]],[[2384,2389,2391]],[[2329,2715,2740]],[[2728,2564,2715]],[[2439,2574,2306]],[[2434,2433,2304]],[[2564,2567,2566]],[[2327,2326,2316]],[[2349,2599,2601]],[[2353,2355,2599]],[[2400,2399,2585]],[[2402,2404,2399]],[[2584,2531,2530]],[[2690,2689,2547]],[[2690,2547,2529]],[[2551,2693,2552]],[[2584,2530,2536]],[[2529,2547,2530]],[[2392,2395,2390]],[[2631,2394,2395]],[[2401,2675,2404]],[[2401,2631,2675]],[[2550,2548,2661]],[[2550,2549,2548]],[[2741,2697,2667]],[[2698,2563,2697]],[[2557,2282,2556]],[[2288,2287,2281]],[[2635,2617,2515]],[[2521,2618,2617]],[[2680,2679,2706]],[[2682,2742,2609]],[[2561,2493,2544]],[[2645,2494,2493]],[[2743,2370,2369]],[[2710,2368,2370]],[[2630,2656,2709]],[[2630,2442,2654]],[[2606,2700,2559]],[[2700,2608,2679]],[[2559,2700,2684]],[[2608,2706,2679]],[[2491,2488,2490]],[[2609,2742,2610]],[[2537,2553,2552]],[[2536,2547,2553]],[[2721,2537,2552]],[[2722,2597,2535]],[[2624,2434,2574]],[[2624,2432,2434]],[[2580,2318,2579]],[[2320,2718,2719]],[[2273,2637,2556]],[[2292,2291,2673]],[[2636,2299,2277]],[[2300,2556,2637]],[[2277,2299,2637]],[[2636,2292,2299]],[[2685,2417,2576]],[[2685,2681,2418]],[[2335,2400,2397]],[[2405,2398,2400]],[[2445,2458,2646]],[[2455,2441,2440]],[[2700,2679,2683]],[[2586,2680,2587]],[[2588,2587,2576]],[[2588,2594,2586]],[[2273,2277,2637]],[[2636,2276,2731]],[[2306,2305,2450]],[[2304,2543,2305]],[[2277,2276,2636]],[[2732,2505,2731]],[[2422,2423,2575]],[[2424,2427,2725]],[[2659,2423,2425]],[[2422,2658,2423]],[[2514,2464,2634]],[[2464,2653,2465]],[[2634,2464,2463]],[[2514,2513,2464]],[[2534,2533,2430]],[[2532,2649,2533]],[[2744,2745,2352]],[[2746,2621,2367]],[[2357,2346,2348]],[[2745,2744,2747]],[[2366,2364,2367]],[[2348,2347,2364]],[[2747,2347,2346]],[[2744,2621,2347]],[[2652,2367,2622]],[[2364,2746,2367]],[[2363,2652,2622]],[[2344,2343,2652]],[[2307,2313,2312]],[[2332,2740,2314]],[[2748,2314,2740]],[[2565,2668,2331]],[[2314,2310,2312]],[[2314,2667,2331]],[[2314,2331,2310]],[[2668,2726,2331]],[[2336,2407,2309]],[[2332,2313,2307]],[[2332,2664,2409]],[[2332,2307,2664]],[[2465,2516,2463]],[[2515,2518,2516]],[[2672,2379,2621]],[[2672,2375,2379]],[[2459,2729,2458]],[[2431,2441,2457]],[[2338,2723,2322]],[[2701,2323,2723]],[[2722,2615,2597]],[[2701,2723,2615]],[[2726,2568,2727]],[[2315,2327,2316]],[[2749,2272,2275]],[[2749,2273,2272]],[[2347,2746,2364]],[[2347,2621,2746]],[[2292,2673,2300]],[[2291,2558,2673]],[[2732,2276,2736]],[[2750,2605,2604]],[[2640,2620,2573]],[[2737,2604,2620]],[[2447,2446,2448]],[[2443,2445,2446]],[[2652,2365,2367]],[[2652,2369,2365]],[[2498,2666,2470]],[[2665,2638,2666]],[[2590,2613,2591]],[[2612,2597,2614]],[[2613,2338,2337]],[[2615,2723,2338]],[[2613,2614,2338]],[[2597,2615,2614]],[[2611,2613,2711]],[[2612,2614,2613]],[[2594,2589,2494]],[[2495,2669,2562]],[[2611,2539,2699]],[[2751,2531,2584]],[[2583,2751,2584]],[[2419,2508,2595]],[[2678,2582,2597]],[[2584,2536,2535]],[[2722,2535,2537]],[[2582,2584,2535]],[[2407,2336,2321]],[[2309,2308,2336]],[[2408,2407,2713]],[[2409,2664,2407]],[[2581,2321,2323]],[[2581,2713,2321]],[[2738,2641,2705]],[[2735,2730,2737]],[[2735,2752,2500]],[[2720,2606,2503]],[[2568,2317,2727]],[[2316,2311,2317]],[[2304,2421,2692]],[[2304,2658,2421]],[[2753,2448,2449]],[[2446,2445,2448]],[[2683,2586,2594]],[[2683,2679,2586]],[[2686,2435,2437]],[[2686,2687,2435]],[[2284,2281,2287]],[[2289,2627,2281]],[[2409,2408,2397]],[[2712,2333,2396]],[[2676,2408,2713]],[[2676,2397,2408]],[[2713,2712,2676]],[[2333,2335,2396]],[[2754,2531,2755]],[[2699,2539,2419]],[[2595,2755,2419]],[[2531,2751,2755]],[[2601,2600,2350]],[[2599,2355,2600]],[[2714,2462,2461]],[[2714,2671,2462]],[[2342,2383,2393]],[[2341,2585,2392]],[[2391,2342,2393]],[[2389,2340,2342]],[[2305,2528,2450]],[[2729,2431,2457]],[[2429,2528,2305]],[[2429,2431,2528]],[[2745,2356,2352]],[[2745,2346,2356]],[[2353,2598,2351]],[[2353,2599,2598]],[[2741,2748,2740]],[[2697,2565,2667]],[[2748,2667,2314]],[[2748,2741,2667]],[[2750,2276,2270]],[[2604,2736,2276]],[[2337,2593,2588]],[[2337,2339,2593]],[[2666,2705,2470]],[[2752,2503,2500]],[[2752,2738,2705]],[[2752,2735,2738]],[[2720,2752,2705]],[[2720,2503,2752]],[[2705,2703,2470]],[[2705,2641,2703]],[[2504,2606,2559]],[[2720,2607,2606]],[[2715,2741,2740]],[[2715,2697,2741]],[[2734,2733,2456]],[[2674,2646,2733]],[[2500,2504,2501]],[[2503,2606,2504]],[[2576,2592,2591]],[[2576,2419,2592]],[[2590,2538,2539]],[[2592,2419,2538]],[[2644,2732,2730]],[[2731,2276,2732]],[[2452,2455,2440]],[[2455,2734,2456]],[[2452,2734,2455]],[[2733,2646,2456]],[[2424,2725,2425]],[[2724,2659,2725]],[[2506,2644,2643]],[[2506,2732,2644]],[[2274,2627,2280]],[[2274,2281,2627]],[[2626,2625,2627]],[[2278,2280,2625]],[[2756,2718,2328]],[[2756,2578,2718]],[[2529,2754,2596]],[[2529,2531,2754]],[[2569,2693,2689]],[[2553,2547,2702]],[[2689,2693,2551]],[[2717,2686,2693]],[[2702,2551,2553]],[[2702,2689,2551]],[[2676,2712,2396]],[[2713,2581,2712]],[[2632,2519,2521]],[[2633,2708,2519]],[[2590,2539,2711]],[[2419,2755,2699]],[[2751,2699,2755]],[[2751,2583,2699]],[[2696,2495,2589]],[[2696,2669,2495]],[[2472,2640,2573]],[[2704,2641,2640]],[[2737,2736,2604]],[[2730,2732,2736]],[[2276,2750,2604]],[[2270,2269,2757]],[[2620,2604,2474]],[[2750,2270,2757]],[[2605,2757,2474]],[[2605,2750,2757]],[[2620,2474,2266]],[[2757,2269,2474]],[[2707,2420,2549]],[[2422,2575,2420]],[[2420,2707,2421]],[[2549,2540,2707]],[[2587,2681,2685]],[[2706,2742,2682]],[[2508,2418,2492]],[[2417,2685,2418]],[[2492,2609,2488]],[[2492,2682,2609]],[[2671,2716,2657]],[[2514,2628,2512]],[[2708,2716,2671]],[[2633,2512,2716]],[[2418,2682,2492]],[[2681,2706,2682]],[[2523,2522,2670]],[[2654,2656,2630]],[[2522,2460,2670]],[[2522,2526,2460]],[[2524,2527,2522]],[[2442,2441,2525]],[[2526,2525,2461]],[[2527,2616,2525]],[[2460,2526,2461]],[[2522,2527,2526]],[[2524,2655,2527]],[[2524,2629,2655]],[[2709,2655,2629]],[[2709,2656,2655]],[[2616,2654,2442]],[[2616,2655,2654]],[[2641,2737,2620]],[[2641,2735,2737]],[[2489,2610,2496]],[[2742,2706,2610]],[[2613,2590,2711]],[[2592,2538,2590]],[[2378,2361,2622]],[[2378,2382,2361]],[[2663,2326,2328]],[[2663,2316,2326]],[[2728,2327,2567]],[[2329,2328,2327]],[[2567,2315,2568]],[[2567,2327,2315]],[[2325,2663,2328]],[[2662,2324,2316]],[[2325,2662,2663]],[[2325,2324,2662]],[[2447,2753,2449]],[[2447,2448,2753]],[[2454,2734,2452]],[[2454,2674,2734]],[[2329,2728,2715]],[[2329,2327,2728]],[[2754,2595,2596]],[[2754,2755,2595]],[[2391,2389,2342]],[[2373,2340,2389]],[[2392,2390,2393]],[[2385,2384,2391]],[[2393,2390,2391]],[[2395,2387,2390]],[[2458,2729,2457]],[[2528,2431,2729]],[[2745,2747,2346]],[[2744,2347,2747]],[[2579,2320,2719]],[[2319,2718,2320]],[[2579,2318,2320]],[[2580,2324,2318]],[[2710,2743,2369]],[[2710,2370,2743]],[[2596,2690,2529]],[[2596,2569,2690]],[[2341,2392,2383]],[[2675,2631,2392]],[[2719,2577,2579]],[[2719,2578,2577]],[[2360,2366,2368]],[[2360,2364,2366]],[[2681,2680,2706]],[[2681,2587,2680]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222836f6-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cff49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2758,2759,2760]],[[2761,2762,2763]],[[2764,2765,2766]],[[2767,2768,2769]],[[2766,2770,2771]],[[2772,2761,2763]],[[2773,2774,2775]],[[2776,2773,2777]],[[2775,2774,2778]],[[2770,2772,2776]],[[2779,2780,2781]],[[2779,2782,2783]],[[2774,2784,2785]],[[2786,2787,2788]],[[2789,2790,2786]],[[2776,2774,2773]],[[2791,2792,2758]],[[2791,2793,2794]],[[2795,2794,2793]],[[2784,2796,2763]],[[2774,2797,2782]],[[2796,2776,2772]],[[2762,2794,2763]],[[2758,2795,2793]],[[2798,2794,2795]],[[2767,2759,2758]],[[2798,2795,2760]],[[2799,2800,2789]],[[2780,2779,2800]],[[2759,2798,2760]],[[2760,2795,2758]],[[2762,2791,2794]],[[2758,2793,2791]],[[2774,2785,2797]],[[2797,2783,2782]],[[2801,2802,2803]],[[2802,2768,2767]],[[2800,2790,2789]],[[2800,2783,2790]],[[2771,2770,2777]],[[2801,2803,2761]],[[2796,2772,2763]],[[2801,2765,2802]],[[2803,2762,2761]],[[2803,2792,2762]],[[2762,2792,2791]],[[2803,2802,2767]],[[2792,2767,2758]],[[2792,2803,2767]],[[2769,2759,2767]],[[2769,2798,2759]],[[2784,2804,2785]],[[2783,2800,2779]],[[2804,2797,2785]],[[2805,2787,2783]],[[2765,2764,2802]],[[2764,2768,2802]],[[2772,2801,2761]],[[2772,2770,2801]],[[2770,2765,2801]],[[2770,2766,2765]],[[2805,2783,2797]],[[2787,2790,2783]],[[2799,2780,2800]],[[2799,2781,2780]],[[2789,2786,2788]],[[2790,2787,2786]],[[2787,2784,2763]],[[2787,2804,2784]],[[2770,2776,2777]],[[2796,2784,2774]],[[2778,2774,2782]],[[2776,2796,2774]],[[2804,2805,2797]],[[2804,2787,2805]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2228f9ca-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef607d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2806,242,243]],[[244,2807,2806]],[[2807,241,2806]],[[245,2808,244]],[[2809,2810,2811]],[[2812,215,238]],[[2810,2813,238]],[[2814,213,215]],[[241,2807,2809]],[[2812,2813,2815]],[[2809,2807,2813]],[[245,247,261]],[[2807,244,2808]],[[2808,245,261]],[[2811,2810,238]],[[239,240,2809]],[[2814,2812,2815]],[[238,2813,2812]],[[213,2814,2815]],[[215,2812,2814]],[[244,2806,243]],[[241,242,2806]],[[2810,2809,2813]],[[240,241,2809]],[[239,2811,238]],[[239,2809,2811]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222920fb-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.2a5997ebc5054d16864de6fe20493984","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2816,2817,2818]],[[2819,2818,2820]],[[2821,2822,2820]],[[2817,2822,2818]],[[2819,2817,2823]],[[2822,2824,2818]],[[2819,2816,2818]],[[2823,2817,2816]],[[2822,2819,2820]],[[2823,2816,2819]],[[2819,2822,2817]],[[2821,2824,2822]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222b6a92-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5d1a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2825,2826,2827]],[[2827,2828,183]],[[2829,2828,2830]],[[2829,2831,2828]],[[2832,2827,183]],[[2828,182,183]],[[2826,2830,2828]],[[2833,2829,2834]],[[2835,2832,183]],[[2835,2827,2832]],[[182,2836,2834]],[[182,2831,2836]],[[2826,2828,2827]],[[2831,182,2828]],[[2825,2835,183]],[[2825,2827,2835]],[[2836,2833,2834]],[[2836,2831,2829]],[[2834,2829,2830]],[[2833,2836,2829]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222c557f-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2837,2838,2839]],[[2840,2841,2839]],[[2838,2842,2839]],[[2839,2843,2840]],[[2843,2839,2842]],[[2844,2845,2846]],[[2844,2843,2842]],[[2844,2847,2845]],[[2844,2848,2847]],[[2849,2847,2848]],[[2850,2851,2852]],[[2852,2851,2853]],[[2850,2849,2848]],[[2851,2850,2848]],[[2851,2854,2855]],[[2851,2848,2854]],[[2854,2848,2856]],[[2844,2842,2848]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222ddc12-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2857,184,185]],[[2857,185,2858]],[[185,186,2859]],[[2859,2860,185]],[[2861,2862,2863]],[[2864,2865,2866]],[[2867,2868,191]],[[2869,2870,2871]],[[2872,2873,2874]],[[2875,2876,2877]],[[2878,2879,2880]],[[2879,2881,2882]],[[2883,2873,2884]],[[2885,2886,2887]],[[2887,2886,2888]],[[2889,2890,2891]],[[2892,2893,2894]],[[2895,192,2894]],[[2896,2897,2898]],[[192,2867,191]],[[2870,2869,2899]],[[2900,2901,2902]],[[2903,2904,2905]],[[2906,189,2907]],[[2898,186,187]],[[2908,2909,2910]],[[2858,185,2860]],[[2911,2912,2913]],[[2914,2915,2916]],[[2917,2918,188]],[[188,189,2906]],[[2919,2920,2874]],[[2921,2922,2923]],[[2924,2925,2867]],[[2926,2927,2928]],[[2929,2930,2907]],[[2931,190,2932]],[[2933,2934,2928]],[[2935,2936,2937]],[[2893,2923,2938]],[[2939,2913,2912]],[[2940,2941,2942]],[[2942,2872,2920]],[[190,2943,189]],[[2929,2907,189]],[[2944,2945,2946]],[[2908,2910,2947]],[[2920,2872,2874]],[[2942,2921,2923]],[[2938,2875,2948]],[[2876,2913,2877]],[[2880,2882,2887]],[[2884,2941,2940]],[[2862,2906,2907]],[[2949,188,2906]],[[2876,2950,2874]],[[2951,2922,2950]],[[2881,2884,2952]],[[2940,2942,2923]],[[2911,2953,2954]],[[2911,2955,2953]],[[2938,2923,2875]],[[2877,2913,2948]],[[2896,2861,2956]],[[2957,2909,2908]],[[2876,2951,2950]],[[2876,2875,2951]],[[190,2931,2943]],[[2924,2867,192]],[[2950,2919,2874]],[[2950,2921,2919]],[[2958,2944,2959]],[[2958,2945,2944]],[[2921,2942,2920]],[[2960,2872,2942]],[[186,2898,2859]],[[2917,188,2862]],[[2895,2961,2962]],[[2892,2963,2964]],[[2945,2965,2909]],[[2958,2910,2965]],[[2885,2889,2886]],[[2885,2881,2952]],[[2895,2966,192]],[[2967,2968,2969]],[[2943,2929,189]],[[2943,2930,2929]],[[2862,2949,2906]],[[2862,188,2949]],[[2944,2903,2959]],[[2970,2900,2971]],[[2972,2973,2964]],[[2871,2948,2974]],[[2882,2881,2885]],[[2883,2884,2881]],[[2941,2960,2942]],[[2873,2872,2960]],[[2933,2869,2912]],[[2925,2868,2867]],[[2969,2865,2975]],[[2948,2913,2974]],[[187,2918,2898]],[[187,188,2918]],[[2879,2883,2881]],[[2879,2873,2883]],[[2961,2895,2894]],[[2976,2966,2895]],[[2954,2933,2912]],[[2934,2955,2928]],[[2945,2909,2977]],[[2965,2910,2909]],[[2858,2860,2947]],[[2860,2900,2902]],[[2946,2945,2977]],[[2958,2965,2945]],[[2971,2978,2979]],[[2946,2903,2944]],[[2930,2932,2980]],[[2905,2959,2903]],[[2936,2905,2981]],[[2936,2959,2905]],[[2869,2939,2912]],[[2974,2913,2939]],[[2873,2941,2884]],[[2873,2960,2941]],[[2937,2982,2935]],[[2983,2915,2914]],[[2984,2916,2864]],[[2985,2981,2904]],[[2865,2864,2975]],[[2915,2983,2986]],[[2987,2932,2975]],[[190,191,2868]],[[2930,2931,2932]],[[2930,2943,2931]],[[2940,2923,2964]],[[2922,2951,2875]],[[2948,2875,2877]],[[2923,2922,2875]],[[2988,2967,2969]],[[2864,2987,2975]],[[2916,2915,2864]],[[2986,2932,2987]],[[2864,2915,2987]],[[2914,2984,2989]],[[2933,2928,2990]],[[2991,2982,2985]],[[2992,2978,2993]],[[2992,2979,2978]],[[2868,2925,2994]],[[2871,2870,2938]],[[2907,2863,2862]],[[2896,2898,2918]],[[2995,2996,2927]],[[2955,2911,2928]],[[2990,2928,2996]],[[2911,2936,2926]],[[2997,2908,2947]],[[2997,2957,2908]],[[2899,2990,2995]],[[2869,2933,2990]],[[2893,2892,2964]],[[2894,2963,2892]],[[2919,2921,2920]],[[2950,2922,2921]],[[2973,2890,2952]],[[2889,2885,2952]],[[2886,2891,2963]],[[2886,2889,2891]],[[2995,2998,2926]],[[2999,2926,2991]],[[2971,2986,2978]],[[3000,3001,2999]],[[3001,3000,2989]],[[3002,2978,2983]],[[2904,2901,2985]],[[2980,2907,2930]],[[2985,2901,2992]],[[2863,2907,2980]],[[2995,2926,3001]],[[2989,2995,3001]],[[2891,2890,2973]],[[2952,2884,2940]],[[2991,2926,2982]],[[2928,2911,2926]],[[2984,2995,2989]],[[2927,2926,2998]],[[2899,2995,2984]],[[2990,2996,2995]],[[2981,2937,2936]],[[2981,2985,2937]],[[2900,2970,2901]],[[2904,2903,2946]],[[2901,2970,2992]],[[2981,2905,2904]],[[2992,2970,2979]],[[3003,2946,2977]],[[2977,2902,3003]],[[2902,2957,2860]],[[2904,3003,2901]],[[2860,2997,2947]],[[2977,2957,2902]],[[2977,2909,2957]],[[2997,2860,2957]],[[2859,2897,2860]],[[2954,2934,2933]],[[2953,2955,2934]],[[2983,2978,2986]],[[2863,2971,2861]],[[2986,2863,2980]],[[2897,2900,2860]],[[2986,2971,2863]],[[2979,2970,2971]],[[2932,2986,2980]],[[2987,2915,2986]],[[2911,2954,2912]],[[2953,2934,2954]],[[2983,3000,3002]],[[3001,2926,2999]],[[2973,2952,2940]],[[2890,2889,2952]],[[2964,2973,2940]],[[2964,2963,2972]],[[2891,2972,2963]],[[2891,2973,2972]],[[2899,2866,2968]],[[2984,2864,2866]],[[2865,2968,2866]],[[2962,2961,2938]],[[2926,2935,2982]],[[2926,2936,2935]],[[2932,2868,2994]],[[2932,190,2868]],[[2966,2988,3004]],[[2994,2975,2932]],[[2966,3004,192]],[[2967,2976,2962]],[[3004,2988,2925]],[[2968,2865,2969]],[[2994,2988,2969]],[[2966,2976,2988]],[[2901,3003,2902]],[[2904,2946,3003]],[[2984,2914,2916]],[[2989,2983,2914]],[[3002,2993,2978]],[[2982,2937,2985]],[[2993,2985,2992]],[[2993,2991,2985]],[[3002,2991,2993]],[[3002,2999,2991]],[[2887,2882,2885]],[[2880,2879,2882]],[[2988,2994,2925]],[[2969,2975,2994]],[[3002,3000,2999]],[[2983,2989,3000]],[[2971,2956,2861]],[[2971,2900,2956]],[[2990,2899,2869]],[[2984,2866,2899]],[[2948,2871,2938]],[[2899,2968,2962]],[[2962,2938,2870]],[[2961,2893,2938]],[[2895,2962,2976]],[[2870,2899,2962]],[[2976,2967,2988]],[[2962,2968,2967]],[[2939,2871,2974]],[[2939,2869,2871]],[[2900,2897,2956]],[[2918,2861,2896]],[[2898,2897,2859]],[[2896,2956,2897]],[[2861,2917,2862]],[[2861,2918,2917]],[[3004,2924,192]],[[3004,2925,2924]],[[2923,2893,2964]],[[2961,2894,2893]],[[2995,2927,2998]],[[2996,2928,2927]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222e2a53-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3005,3006,3007]],[[3005,3007,3008]],[[3008,3009,3010]],[[3008,3011,3009]],[[3008,3007,3011]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b222ec5e4-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3012,3013,3014]],[[3013,3015,3014]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2230c204-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3016,3017,3018]],[[3016,3019,3020]],[[3020,3019,3021]],[[3021,3019,3022]],[[3022,3019,3023]],[[3016,3018,3019]],[[3017,3024,3018]],[[3025,3026,3024]],[[3024,3026,3027]],[[3028,3025,3024]],[[3017,3028,3024]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2231105d-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3029,3030,3031]],[[3030,3032,3031]],[[3031,3033,3034]],[[3031,3032,3033]],[[3033,3032,3035]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2231d343-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.21ab1c490f1540238f61717fe02159de","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3036,3037,3038]],[[3036,3038,3039]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2232218d-00b5-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef749949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3040,3041,3042]],[[3043,3044,3045]],[[3045,3046,3047]],[[2257,3043,2258]],[[2256,3048,3049]],[[3048,2256,3050]],[[3051,2256,2255]],[[3052,2256,3053]],[[3052,3050,2256]],[[3054,2256,3055]],[[2259,3056,3057]],[[3058,3059,3060]],[[3061,2256,3062]],[[3059,1788,1782]],[[3063,2256,3064]],[[3063,3062,2256]],[[3065,2256,3051]],[[3065,3064,2256]],[[3066,3051,2255]],[[3067,3066,2255]],[[3068,2255,3069]],[[3069,3070,3071]],[[3071,3072,3073]],[[3073,3072,3074]],[[3074,3075,3076]],[[3058,3060,3077]],[[3059,1782,3060]],[[3076,3078,3077]],[[3061,3079,2256]],[[2256,3079,3080]],[[3078,3058,3077]],[[3080,3055,2256]],[[3078,3076,3075]],[[3075,3074,3072]],[[3072,3071,3070]],[[3070,3069,3081]],[[3081,3069,2255]],[[2255,3082,3083]],[[3083,3081,2255]],[[2259,3084,3082]],[[2259,3085,3084]],[[2259,3086,3085]],[[2259,3087,3086]],[[2259,3088,3087]],[[2259,3089,3088]],[[2259,3057,3089]],[[3090,3056,2259]],[[3091,3090,2259]],[[3092,3091,2259]],[[3047,3093,3043]],[[2259,3094,3092]],[[2259,3095,3094]],[[2259,3096,3095]],[[2259,3097,3096]],[[2259,3098,3097]],[[2259,2258,3098]],[[3043,3093,3099]],[[3045,3047,3043]],[[3045,3042,3046]],[[3100,3101,3102]],[[3100,3041,3101]],[[3046,3103,3104]],[[3105,3106,3107]],[[3108,3103,3046]],[[3105,3109,3106]],[[3103,3110,3111]],[[3103,3112,3110]],[[3041,3100,3042]],[[3112,3113,3114]],[[3115,3116,3117]],[[3115,3118,3116]],[[3119,3120,3121]],[[3122,3123,3124]],[[3125,3126,3127]],[[3128,3129,3126]],[[3130,3131,3129]],[[3132,3133,3134]],[[3135,1830,1779]],[[3136,3137,3138]],[[3138,3139,3140]],[[3140,3141,3142]],[[3142,3143,3144]],[[3144,3145,3146]],[[3146,3122,3147]],[[3147,3122,3124]],[[3124,3123,3148]],[[3135,1779,3149]],[[3148,3150,3149]],[[3151,3152,3136]],[[3151,3132,3153]],[[3149,3150,3135]],[[3133,3131,3154]],[[3155,3156,3127]],[[3150,3148,3123]],[[3157,3156,3155]],[[3157,3119,3158]],[[3146,3145,3122]],[[3120,3118,3115]],[[3145,3144,3143]],[[3139,3141,3140]],[[3143,3142,3141]],[[3137,3139,3138]],[[3152,3137,3136]],[[3159,3160,3161]],[[3162,3163,3117]],[[3162,3160,3163]],[[3152,3151,3153]],[[3153,3132,3134]],[[3130,3154,3131]],[[3134,3133,3154]],[[3128,3130,3129]],[[3125,3128,3126]],[[3156,3125,3127]],[[3158,3156,3157]],[[3121,3158,3119]],[[3115,3121,3120]],[[3163,3115,3117]],[[3113,3164,3161]],[[3160,3159,3163]],[[3164,3113,3102]],[[3161,3164,3159]],[[3108,3165,3103]],[[3101,3041,3166]],[[3164,3101,3167]],[[3168,3169,3170]],[[3171,3172,3173]],[[3174,3175,3176]],[[3177,3178,3179]],[[3175,3180,3179]],[[3181,3182,3183]],[[3184,3185,3186]],[[3187,3188,3189]],[[3190,1771,1773]],[[3191,3192,3193]],[[3188,3194,3193]],[[3192,3195,3196]],[[3196,3171,3173]],[[3173,3172,3197]],[[3198,3199,3200]],[[3190,1773,3199]],[[3197,3201,3200]],[[3202,3203,3189]],[[3202,3183,3204]],[[3199,3198,3190]],[[3181,3185,3205]],[[3200,3201,3198]],[[3186,3178,3206]],[[3207,3208,3176]],[[3201,3197,3172]],[[3209,3210,3207]],[[3209,3211,3212]],[[3196,3195,3171]],[[3211,3169,3213]],[[3195,3192,3191]],[[3191,3193,3194]],[[3194,3188,3187]],[[3204,3203,3202]],[[3187,3189,3203]],[[3182,3204,3183]],[[3205,3182,3181]],[[3166,3214,3170]],[[3185,3184,3205]],[[3186,3206,3184]],[[3178,3177,3206]],[[3179,3180,3177]],[[3175,3174,3180]],[[3176,3208,3174]],[[3207,3210,3208]],[[3209,3212,3210]],[[3211,3213,3212]],[[3169,3168,3213]],[[3170,3214,3168]],[[3166,3041,3214]],[[3054,3053,2256]],[[2258,3099,3098]],[[3215,3216,2257]],[[2255,3068,3067]],[[2259,2255,2254]],[[2259,3082,2255]],[[3215,2257,3049]],[[3049,2257,2256]],[[3216,3043,2257]],[[3043,3099,2258]],[[3164,3102,3101]],[[3113,3112,3165]],[[3113,3165,3102]],[[3112,3103,3165]],[[3042,3100,3046]],[[3108,3046,3100]],[[3109,3217,3107]],[[3109,3110,3106]],[[3111,3109,3107]],[[3111,3110,3109]],[[3217,3105,3107]],[[3217,3109,3105]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b2c15e416-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efc86849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3218,3219,3220]],[[3221,3222,3223]],[[3224,3225,3226]],[[3227,3228,3221]],[[3229,3230,3231]],[[3232,3233,3234]],[[3235,3236,3237]],[[3238,3239,3240]],[[3241,3242,3243]],[[3243,3244,3241]],[[3241,3244,3245]],[[3246,3247,3248]],[[3249,3245,3250]],[[3251,3247,3252]],[[3253,3254,3255]],[[3256,3252,3257]],[[3256,3251,3252]],[[3245,3258,3259]],[[3260,3261,3218]],[[3262,3225,3263]],[[3264,3220,3265]],[[3266,3265,3220]],[[3267,3268,3266]],[[3269,3267,3270]],[[3271,3269,3270]],[[3272,3271,3273]],[[3274,3272,3275]],[[3276,3277,3278]],[[3279,3280,3281]],[[3282,3283,3284]],[[3285,3286,3287]],[[3288,3289,3290]],[[3291,3292,3293]],[[3294,3295,3296]],[[3297,3298,3299]],[[3297,3294,3300]],[[3297,3301,3298]],[[3297,3302,3301]],[[3296,3295,3303]],[[3297,3304,3302]],[[3297,3300,3304]],[[3294,3305,3300]],[[3306,3289,3307]],[[3295,3308,3303]],[[3308,3309,3310]],[[3291,3311,3309]],[[3293,3312,3311]],[[3313,3314,3315]],[[3306,3292,3289]],[[3289,3288,3307]],[[3316,3317,3288]],[[3318,3319,3320]],[[3321,3287,3317]],[[3319,3322,3323]],[[3324,3318,3320]],[[3325,3326,3327]],[[3319,3323,3320]],[[3328,3329,3330]],[[3322,3331,3332]],[[3329,3333,3330]],[[3334,3282,3335]],[[3336,3337,3338]],[[3284,3339,3335]],[[3340,3276,3341]],[[3330,3342,3343]],[[3278,3344,3274]],[[3345,3341,3346]],[[3278,3347,3341]],[[3274,3275,3347]],[[3272,3273,3275]],[[3271,3348,3273]],[[3271,3270,3348]],[[3267,3349,3270]],[[3267,3266,3349]],[[3268,3265,3266]],[[3350,3220,3264]],[[3218,3351,3219]],[[3352,3242,3241]],[[3352,3353,3354]],[[3355,3234,3242]],[[3356,3357,3358]],[[3359,3238,3240]],[[3227,3360,3361]],[[3244,3258,3245]],[[3333,3362,3330]],[[3363,3337,3336]],[[3343,3364,3346]],[[3365,3366,3340]],[[3346,3364,3367]],[[3368,3333,3363]],[[3282,3284,3335]],[[3369,3329,3339]],[[3335,3339,3370]],[[3284,3369,3339]],[[3327,3334,3335]],[[3283,3369,3284]],[[3343,3363,3364]],[[3333,3337,3363]],[[3371,3338,3346]],[[3366,3276,3340]],[[3372,3338,3373]],[[3371,3336,3338]],[[3287,3324,3320]],[[3324,3319,3318]],[[3316,3314,3317]],[[3315,3285,3374]],[[3337,3280,3373]],[[3337,3366,3280]],[[3313,3321,3317]],[[3374,3287,3321]],[[3367,3371,3346]],[[3367,3336,3371]],[[3375,3246,3376]],[[3359,3259,3238]],[[3328,3330,3370]],[[3343,3346,3370]],[[3364,3336,3367]],[[3364,3363,3336]],[[3253,3377,3254]],[[3375,3378,3379]],[[3365,3281,3366]],[[3280,3366,3281]],[[3380,3331,3322]],[[3322,3381,3380]],[[3382,3334,3327]],[[3381,3369,3334]],[[3345,3340,3341]],[[3383,3365,3340]],[[3384,3279,3281]],[[3373,3280,3279]],[[3372,3373,3279]],[[3338,3337,3373]],[[3253,3255,3385]],[[3248,3247,3386]],[[3253,3387,3251]],[[3386,3247,3251]],[[3376,3388,3389]],[[3376,3246,3254]],[[3389,3253,3251]],[[3254,3246,3248]],[[3290,3316,3288]],[[3290,3314,3316]],[[3286,3324,3287]],[[3286,3319,3324]],[[3390,3384,3365]],[[3346,3338,3384]],[[3314,3313,3317]],[[3314,3290,3315]],[[3362,3342,3330]],[[3362,3363,3343]],[[3389,3251,3256]],[[3387,3386,3251]],[[3362,3368,3363]],[[3362,3333,3368]],[[3389,3377,3253]],[[3388,3376,3377]],[[3255,3254,3248]],[[3377,3376,3254]],[[3334,3283,3282]],[[3334,3369,3283]],[[3390,3345,3346]],[[3383,3340,3345]],[[3323,3332,3327]],[[3332,3331,3325]],[[3330,3343,3370]],[[3342,3362,3343]],[[3390,3365,3383]],[[3384,3281,3365]],[[3361,3360,3224]],[[3361,3224,3227]],[[3391,3392,3393]],[[3394,3395,3396]],[[3397,3398,3399]],[[3228,3400,3221]],[[3382,3380,3381]],[[3326,3331,3380]],[[3227,3401,3360]],[[3401,3227,3223]],[[3384,3372,3279]],[[3384,3338,3372]],[[3250,3379,3402]],[[3224,3401,3225]],[[3354,3355,3242]],[[3354,3234,3355]],[[3250,3245,3259]],[[3378,3402,3379]],[[3244,3259,3258]],[[3375,3379,3246]],[[3403,3238,3244]],[[3243,3403,3244]],[[3352,3354,3242]],[[3353,3234,3354]],[[3345,3390,3383]],[[3346,3384,3390]],[[3313,3315,3321]],[[3290,3285,3315]],[[3404,3245,3249]],[[3404,3241,3245]],[[3315,3374,3321]],[[3285,3287,3374]],[[3385,3386,3387]],[[3255,3248,3386]],[[3224,3228,3227]],[[3405,3406,3407]],[[3393,3392,3408]],[[3399,3398,3234]],[[3231,3237,3229]],[[3393,3358,3391]],[[3222,3221,3357]],[[3223,3227,3221]],[[3351,3223,3407]],[[3223,3263,3401]],[[3409,3405,3410]],[[3411,3261,3260]],[[3350,3262,3218]],[[3218,3262,3260]],[[3400,3228,3230]],[[3412,3232,3413]],[[3233,3232,3230]],[[3234,3353,3232]],[[3253,3385,3387]],[[3255,3386,3385]],[[3350,3218,3220]],[[3261,3411,3218]],[[3230,3232,3231]],[[3353,3413,3232]],[[3263,3260,3262]],[[3223,3351,3260]],[[3351,3411,3260]],[[3351,3218,3411]],[[3391,3358,3357]],[[3414,3415,3406]],[[3416,3237,3412]],[[3231,3232,3237]],[[3357,3356,3222]],[[3417,3406,3405]],[[3410,3405,3407]],[[3223,3222,3409]],[[3406,3417,3418]],[[3419,3420,3229]],[[3236,3229,3237]],[[3236,3421,3419]],[[3358,3396,3356]],[[3422,3393,3421]],[[3327,3332,3325]],[[3323,3322,3332]],[[3382,3326,3380]],[[3325,3331,3326]],[[3356,3409,3222]],[[3395,3394,3409]],[[3244,3238,3259]],[[3240,3225,3247]],[[3416,3412,3413]],[[3237,3232,3412]],[[3415,3235,3413]],[[3415,3423,3235]],[[3419,3421,3393]],[[3423,3415,3414]],[[3418,3414,3406]],[[3421,3424,3414]],[[3405,3394,3417]],[[3405,3409,3394]],[[3420,3419,3408]],[[3229,3236,3419]],[[3416,3235,3237]],[[3424,3421,3236]],[[3394,3396,3417]],[[3358,3393,3422]],[[3356,3395,3409]],[[3356,3396,3395]],[[3398,3397,3243]],[[3243,3397,3425]],[[3221,3391,3357]],[[3221,3392,3391]],[[3233,3399,3234]],[[3233,3230,3228]],[[3228,3397,3233]],[[3426,3427,3425]],[[3276,3278,3341]],[[3277,3344,3278]],[[3326,3382,3327]],[[3381,3334,3382]],[[3413,3235,3416]],[[3423,3236,3235]],[[3291,3293,3311]],[[3292,3312,3293]],[[3312,3306,3307]],[[3312,3292,3306]],[[3419,3393,3408]],[[3421,3414,3422]],[[3396,3418,3417]],[[3396,3358,3422]],[[3418,3422,3414]],[[3418,3396,3422]],[[3339,3328,3370]],[[3339,3329,3328]],[[3308,3291,3309]],[[3295,3292,3291]],[[3223,3410,3407]],[[3223,3409,3410]],[[3278,3274,3347]],[[3344,3272,3274]],[[3239,3427,3240]],[[3226,3225,3240]],[[3246,3379,3247]],[[3427,3226,3240]],[[3233,3397,3399]],[[3425,3403,3243]],[[3426,3425,3397]],[[3427,3239,3425]],[[3376,3389,3256]],[[3388,3377,3389]],[[3305,3296,3303]],[[3305,3294,3296]],[[3426,3226,3427]],[[3428,3228,3224]],[[3428,3224,3226]],[[3360,3401,3224]],[[3429,3250,3402]],[[3429,3249,3250]],[[3397,3228,3428]],[[3230,3420,3400]],[[3303,3308,3310]],[[3295,3291,3308]],[[3423,3424,3236]],[[3423,3414,3424]],[[3401,3263,3225]],[[3223,3260,3263]],[[3428,3426,3397]],[[3428,3226,3426]],[[3403,3239,3238]],[[3403,3425,3239]],[[3392,3420,3408]],[[3230,3229,3420]],[[3392,3400,3420]],[[3392,3221,3400]],[[3379,3240,3247]],[[3379,3250,3359]],[[3379,3359,3240]],[[3250,3259,3359]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c160b4a-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf249cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3430,3431,3432]],[[3433,3434,3435]],[[3436,3437,3438]],[[3439,3440,3441]],[[3442,3443,3444]],[[3445,3446,3447]],[[3448,3449,3450]],[[3451,3452,3453]],[[3454,3455,3456]],[[3457,3456,3458]],[[3459,3458,3460]],[[3461,3462,3463]],[[3464,3465,3466]],[[3467,3468,3469]],[[3470,3471,3472]],[[3473,3474,3475]],[[3476,3477,3478]],[[3479,3437,3452]],[[3480,3481,3482]],[[3483,3484,3485]],[[3486,3487,3488]],[[3489,3490,3491]],[[3492,3493,3494]],[[3495,3496,3497]],[[3498,3499,3500]],[[3437,3501,3502]],[[3503,3504,3505]],[[3506,3507,3508]],[[3509,3510,3511]],[[3472,3471,3512]],[[3513,3431,3514]],[[3515,3512,3471]],[[3516,3517,3518]],[[3519,3520,3521]],[[3522,3520,3519]],[[3478,3440,3523]],[[3466,3524,3525]],[[3526,3478,3477]],[[3527,3519,3528]],[[3529,3530,3531]],[[3532,3469,3533]],[[3534,3476,3535]],[[3536,3517,3516]],[[3537,3538,3539]],[[3540,3541,3542]],[[3541,3543,3544]],[[3545,3546,3547]],[[3533,3548,3532]],[[3542,3541,3549]],[[3550,3544,3551]],[[3543,3552,3467]],[[3553,3525,3554]],[[3534,3522,3519]],[[3555,3517,3556]],[[3543,3557,3544]],[[3467,3469,3557]],[[3557,3543,3467]],[[3548,3468,3554]],[[3552,3543,3541]],[[3552,3558,3467]],[[3559,3560,3523]],[[3520,3478,3530]],[[3561,3562,3530]],[[3529,3520,3530]],[[3562,3521,3531]],[[3521,3520,3529]],[[3545,3547,3563]],[[3538,3478,3539]],[[3564,3526,3477]],[[3539,3478,3526]],[[3541,3544,3550]],[[3557,3469,3565]],[[3541,3550,3549]],[[3544,3557,3551]],[[3527,3546,3566]],[[3547,3567,3563]],[[3568,3549,3550]],[[3539,3542,3549]],[[3565,3537,3569]],[[3539,3549,3568]],[[3536,3525,3570]],[[3525,3553,3466]],[[3555,3571,3537]],[[3568,3550,3551]],[[3534,3535,3522]],[[3468,3553,3554]],[[3561,3572,3562]],[[3562,3531,3530]],[[3541,3540,3552]],[[3527,3468,3558]],[[3468,3467,3558]],[[3468,3533,3469]],[[3468,3548,3533]],[[3518,3517,3532]],[[3563,3567,3542]],[[3547,3558,3540]],[[3573,3574,3575]],[[3576,3577,3431]],[[3439,3560,3559]],[[3523,3530,3478]],[[3527,3534,3519]],[[3478,3520,3522]],[[3578,3466,3553]],[[3578,3464,3466]],[[3566,3476,3534]],[[3478,3522,3535]],[[3579,3580,3553]],[[3581,3582,3583]],[[3584,3582,3581]],[[3585,3586,3570]],[[3555,3537,3565]],[[3551,3557,3565]],[[3528,3587,3441]],[[3521,3529,3531]],[[3588,3577,3576]],[[3589,3431,3577]],[[3575,3590,3573]],[[3432,3574,3430]],[[3591,3592,3593]],[[3591,3594,3575]],[[3595,3596,3597]],[[3598,3590,3594]],[[3515,3471,3599]],[[3600,3601,3602]],[[3575,3594,3590]],[[3603,3434,3433]],[[3472,3604,3470]],[[3605,3513,3604]],[[3606,3596,3607]],[[3470,3608,3434]],[[3553,3464,3578]],[[3609,3584,3581]],[[3553,3609,3464]],[[3584,3610,3582]],[[3611,3610,3584]],[[3538,3583,3610]],[[3580,3611,3584]],[[3611,3538,3610]],[[3526,3563,3539]],[[3526,3564,3563]],[[3546,3612,3566]],[[3546,3564,3477]],[[3465,3581,3583]],[[3465,3609,3581]],[[3609,3580,3584]],[[3613,3579,3614]],[[3553,3580,3609]],[[3613,3611,3580]],[[3563,3542,3539]],[[3540,3558,3552]],[[3567,3540,3542]],[[3567,3547,3540]],[[3579,3613,3580]],[[3579,3615,3614]],[[3616,3617,3618]],[[3561,3530,3619]],[[3620,3621,3622]],[[3623,3624,3625]],[[3554,3518,3548]],[[3554,3516,3518]],[[3439,3559,3440]],[[3560,3618,3523]],[[3532,3565,3469]],[[3465,3464,3609]],[[3537,3571,3586]],[[3556,3536,3571]],[[3570,3586,3536]],[[3556,3517,3536]],[[3569,3551,3565]],[[3571,3536,3586]],[[3568,3537,3539]],[[3586,3538,3537]],[[3565,3532,3555]],[[3548,3518,3532]],[[3610,3583,3582]],[[3538,3586,3583]],[[3587,3562,3572]],[[3587,3521,3562]],[[3593,3515,3626]],[[3470,3599,3471]],[[3612,3546,3477]],[[3545,3563,3564]],[[3525,3516,3554]],[[3525,3536,3516]],[[3432,3591,3575]],[[3605,3512,3515]],[[3524,3570,3525]],[[3524,3585,3570]],[[3441,3468,3528]],[[3441,3553,3468]],[[3593,3592,3515]],[[3592,3605,3515]],[[3595,3513,3514]],[[3605,3591,3513]],[[3616,3627,3441]],[[3618,3560,3627]],[[3528,3521,3587]],[[3528,3519,3521]],[[3628,3465,3583]],[[3524,3466,3465]],[[3589,3629,3431]],[[3630,3431,3629]],[[3591,3432,3431]],[[3575,3574,3432]],[[3517,3555,3532]],[[3556,3571,3555]],[[3461,3463,3460]],[[3631,3632,3484]],[[3483,3633,3634]],[[3635,3485,3636]],[[3637,3480,3638]],[[3639,3579,3632]],[[3640,3600,3641]],[[3642,3434,3603]],[[3643,3501,3644]],[[3502,3434,3437]],[[3645,3646,3438]],[[3647,3648,3436]],[[3649,3650,3651]],[[3652,3653,3654]],[[3546,3527,3558]],[[3528,3468,3527]],[[3547,3546,3558]],[[3545,3564,3546]],[[3655,3656,3657]],[[3658,3637,3638]],[[3659,3660,3661]],[[3625,3629,3589]],[[3662,3663,3648]],[[3644,3437,3664]],[[3665,3666,3667]],[[3661,3660,3603]],[[3668,3669,3670]],[[3671,3606,3607]],[[3577,3588,3672]],[[3621,3660,3659]],[[3673,3446,3674]],[[3675,3444,3676]],[[3445,3677,3446]],[[3678,3679,3673]],[[3461,3460,3458]],[[3680,3484,3483]],[[3674,3681,3452]],[[3682,3683,3684]],[[3674,3449,3685]],[[3686,3681,3687]],[[3688,3453,3452]],[[3689,3690,3691]],[[3451,3683,3692]],[[3495,3688,3496]],[[3693,3645,3694]],[[3695,3497,3496]],[[3445,3450,3677]],[[3674,3446,3677]],[[3696,3448,3450]],[[3674,3677,3450]],[[3446,3697,3447]],[[3698,3699,3700]],[[3701,3448,3696]],[[3702,3703,3704]],[[3705,3706,3445]],[[3448,3701,3707]],[[3447,3697,3493]],[[3446,3673,3679]],[[3628,3585,3524]],[[3583,3586,3585]],[[3505,3708,3709]],[[3710,3504,3711]],[[3712,3713,3714]],[[3715,3716,3717]],[[3718,3719,3720]],[[3721,3722,3650]],[[3723,3724,3725]],[[3726,3727,3717]],[[3718,3503,3719]],[[3711,3728,3729]],[[3725,3724,3730]],[[3503,3731,3504]],[[3732,3733,3734]],[[3587,3572,3733]],[[3735,3736,3737]],[[3737,3510,3738]],[[3739,3740,3698]],[[3741,3446,3679]],[[3699,3704,3700]],[[3703,3697,3741]],[[3465,3628,3524]],[[3583,3585,3628]],[[3742,3449,3448]],[[3674,3450,3449]],[[3742,3743,3685]],[[3744,3496,3688]],[[3745,3690,3746]],[[3689,3747,3748]],[[3749,3750,3751]],[[3752,3753,3754]],[[3740,3442,3444]],[[3443,3755,3444]],[[3739,3756,3757]],[[3700,3679,3756]],[[3493,3492,3447]],[[3758,3696,3705]],[[3759,3760,3761]],[[3718,3720,3762]],[[3763,3704,3699]],[[3700,3756,3698]],[[3686,3764,3765]],[[3689,3748,3695]],[[3597,3596,3766]],[[3767,3768,3769]],[[3770,3771,3772]],[[3773,3774,3713]],[[3775,3776,3777]],[[3778,3779,3780]],[[3781,3514,3776]],[[3641,3600,3782]],[[3783,3784,3785]],[[3786,3752,3751]],[[3787,3784,3776]],[[3788,3775,3789]],[[3790,3791,3714]],[[3709,3708,3710]],[[3790,3792,3793]],[[3794,3795,3761]],[[3796,3431,3430]],[[3797,3798,3796]],[[3799,3573,3590]],[[3430,3574,3573]],[[3800,3707,3676]],[[3707,3800,3742]],[[3636,3801,3802]],[[3803,3456,3457]],[[3804,3635,3486]],[[3805,3801,3806]],[[3807,3483,3804]],[[3802,3801,3808]],[[3633,3807,3487]],[[3488,3804,3486]],[[3635,3802,3486]],[[3809,3810,3811]],[[3487,3457,3458]],[[3812,3802,3808]],[[3803,3813,3456]],[[3809,3811,3806]],[[3706,3696,3450]],[[3742,3800,3743]],[[3641,3814,3815]],[[3816,3817,3818]],[[3819,3820,3814]],[[3816,3818,3821]],[[3779,3822,3823]],[[3819,3814,3641]],[[3823,3824,3820]],[[3825,3814,3826]],[[3705,3696,3706]],[[3701,3676,3707]],[[3605,3604,3472]],[[3513,3827,3604]],[[3605,3472,3512]],[[3604,3827,3470]],[[3828,3829,3631]],[[3830,3831,3632]],[[3692,3683,3832]],[[3684,3497,3833]],[[3834,3835,3682]],[[3682,3832,3683]],[[3495,3451,3453]],[[3684,3683,3451]],[[3836,3835,3498]],[[3646,3436,3438]],[[3442,3739,3837]],[[3756,3679,3757]],[[3456,3838,3673]],[[3839,3811,3840]],[[3841,3842,3455]],[[3843,3844,3845]],[[3846,3489,3491]],[[3847,3842,3841]],[[3848,3845,3844]],[[3848,3849,3845]],[[3850,3841,3851]],[[3852,3845,3849]],[[3839,3850,3853]],[[3847,3854,3852]],[[3850,3855,3841]],[[3856,3490,3844]],[[3786,3789,3753]],[[3775,3857,3776]],[[3858,3816,3859]],[[3774,3792,3790]],[[3859,3816,3821]],[[3858,3817,3816]],[[3860,3629,3625]],[[3430,3573,3799]],[[3861,3862,3863]],[[3796,3576,3431]],[[3457,3812,3808]],[[3635,3636,3802]],[[3662,3644,3663]],[[3501,3437,3644]],[[3808,3805,3457]],[[3808,3801,3805]],[[3783,3864,3865]],[[3865,3866,3867]],[[3608,3771,3867]],[[3868,3514,3781]],[[3865,3864,3866]],[[3713,3716,3715]],[[3594,3593,3598]],[[3470,3434,3799]],[[3513,3597,3827]],[[3626,3515,3599]],[[3867,3866,3434]],[[3864,3869,3866]],[[3788,3789,3786]],[[3870,3778,3780]],[[3869,3871,3866]],[[3869,3857,3871]],[[3686,3765,3745]],[[3687,3681,3685]],[[3616,3618,3627]],[[3872,3523,3618]],[[3566,3534,3527]],[[3566,3612,3476]],[[3635,3483,3485]],[[3634,3873,3680]],[[3498,3874,3499]],[[3438,3479,3694]],[[3875,3876,3661]],[[3877,3621,3863]],[[3433,3875,3661]],[[3661,3876,3659]],[[3878,3879,3880]],[[3666,3876,3875]],[[3667,3666,3875]],[[3622,3630,3620]],[[3700,3741,3679]],[[3697,3446,3741]],[[3881,3763,3699]],[[3704,3741,3700]],[[3568,3569,3537]],[[3568,3551,3569]],[[3737,3654,3759]],[[3882,3883,3509]],[[3650,3649,3884]],[[3883,3735,3738]],[[3650,3884,3736]],[[3649,3736,3884]],[[3496,3744,3690]],[[3744,3681,3746]],[[3811,3853,3456]],[[3455,3838,3456]],[[3806,3811,3456]],[[3810,3840,3811]],[[3451,3495,3497]],[[3453,3688,3495]],[[3601,3826,3602]],[[3885,3886,3887]],[[3653,3888,3711]],[[3721,3650,3888]],[[3874,3693,3694]],[[3647,3646,3645]],[[3599,3470,3626]],[[3766,3608,3470]],[[3889,3890,3502]],[[3435,3434,3502]],[[3891,3892,3893]],[[3880,3666,3665]],[[3435,3665,3667]],[[3880,3894,3666]],[[3895,3673,3896]],[[3846,3896,3489]],[[3837,3897,3442]],[[3491,3755,3443]],[[3898,3782,3859]],[[3899,3774,3773]],[[3714,3900,3790]],[[3901,3885,3887]],[[3902,3759,3761]],[[3762,3720,3710]],[[3653,3711,3729]],[[3888,3903,3711]],[[3720,3719,3709]],[[3904,3710,3708]],[[3723,3710,3794]],[[3761,3723,3794]],[[3434,3773,3903]],[[3714,3791,3712]],[[3794,3710,3711]],[[3711,3903,3713]],[[3641,3782,3866]],[[3600,3885,3901]],[[3903,3773,3713]],[[3905,3906,3898]],[[3866,3773,3434]],[[3866,3782,3773]],[[3907,3899,3906]],[[3773,3782,3898]],[[3792,3899,3907]],[[3908,3905,3821]],[[3858,3901,3887]],[[3782,3600,3901]],[[3793,3792,3909]],[[3774,3899,3792]],[[3827,3766,3470]],[[3608,3867,3434]],[[3910,3615,3579]],[[3614,3611,3613]],[[3911,3481,3480]],[[3911,3615,3481]],[[3910,3482,3481]],[[3481,3615,3910]],[[3912,3913,3658]],[[3480,3482,3638]],[[3914,3912,3658]],[[3473,3637,3913]],[[3915,3914,3639]],[[3638,3482,3639]],[[3631,3830,3632]],[[3916,3473,3913]],[[3758,3675,3676]],[[3758,3705,3675]],[[3764,3800,3676]],[[3745,3691,3690]],[[3800,3917,3743]],[[3800,3764,3917]],[[3904,3504,3710]],[[3505,3719,3503]],[[3794,3711,3713]],[[3728,3731,3729]],[[3784,3783,3670]],[[3781,3918,3868]],[[3770,3772,3919]],[[3920,3606,3671]],[[3771,3918,3772]],[[3769,3768,3868]],[[3771,3921,3918]],[[3769,3608,3767]],[[3781,3669,3919]],[[3669,3922,3770]],[[3771,3770,3867]],[[3919,3669,3770]],[[3787,3869,3785]],[[3865,3668,3670]],[[3868,3768,3514]],[[3769,3921,3608]],[[3772,3918,3781]],[[3918,3921,3868]],[[3625,3589,3623]],[[3923,3623,3672]],[[3923,3588,3798]],[[3923,3672,3588]],[[3430,3799,3797]],[[3626,3470,3799]],[[3799,3624,3797]],[[3624,3623,3923]],[[3873,3924,3484]],[[3462,3461,3655]],[[3639,3658,3638]],[[3913,3637,3658]],[[3838,3896,3673]],[[3838,3848,3489]],[[3443,3925,3491]],[[3443,3897,3925]],[[3704,3703,3741]],[[3493,3697,3703]],[[3731,3654,3653]],[[3654,3722,3721]],[[3898,3859,3821]],[[3782,3858,3859]],[[3926,3734,3619]],[[3733,3572,3561]],[[3734,3561,3619]],[[3734,3733,3561]],[[3459,3460,3634]],[[3463,3924,3460]],[[3893,3892,3643]],[[3890,3927,3879]],[[3501,3889,3502]],[[3501,3892,3891]],[[3747,3764,3676]],[[3747,3691,3765]],[[3460,3873,3634]],[[3460,3924,3873]],[[3745,3765,3691]],[[3764,3747,3765]],[[3698,3740,3444]],[[3698,3756,3739]],[[3853,3851,3454]],[[3849,3838,3455]],[[3538,3637,3475]],[[3911,3480,3637]],[[3928,3736,3649]],[[3654,3737,3736]],[[3489,3848,3844]],[[3838,3849,3848]],[[3715,3717,3929]],[[3716,3713,3726]],[[3930,3759,3931]],[[3909,3737,3759]],[[3723,3760,3724]],[[3759,3724,3760]],[[3730,3724,3503]],[[3503,3654,3731]],[[3698,3881,3699]],[[3763,3702,3704]],[[3826,3814,3824]],[[3908,3909,3907]],[[3780,3823,3820]],[[3886,3817,3887]],[[3820,3824,3814]],[[3776,3909,3818]],[[3870,3932,3778]],[[3779,3932,3822]],[[3933,3750,3822]],[[3823,3780,3779]],[[3933,3932,3870]],[[3779,3778,3932]],[[3917,3686,3687]],[[3917,3764,3686]],[[3837,3739,3757]],[[3442,3740,3739]],[[3678,3837,3757]],[[3897,3443,3442]],[[3678,3897,3837]],[[3895,3896,3846]],[[3805,3803,3457]],[[3813,3806,3456]],[[3801,3809,3806]],[[3801,3810,3809]],[[3732,3616,3441]],[[3732,3734,3926]],[[3618,3617,3872]],[[3617,3732,3926]],[[3872,3619,3523]],[[3872,3926,3619]],[[3825,3826,3601]],[[3824,3776,3818]],[[3934,3647,3693]],[[3648,3663,3436]],[[3875,3433,3667]],[[3661,3603,3433]],[[3883,3935,3735]],[[3936,3650,3736]],[[3738,3735,3737]],[[3937,3507,3936]],[[3882,3508,3935]],[[3650,3722,3651]],[[3735,3936,3736]],[[3937,3935,3507]],[[3832,3835,3836]],[[3834,3498,3835]],[[3938,3682,3833]],[[3747,3834,3682]],[[3923,3798,3797]],[[3588,3576,3798]],[[3797,3796,3430]],[[3798,3576,3796]],[[3894,3876,3666]],[[3894,3630,3876]],[[3715,3939,3713]],[[3939,3929,3930]],[[3939,3795,3794]],[[3931,3759,3902]],[[3713,3939,3794]],[[3715,3929,3939]],[[3922,3668,3865]],[[3922,3669,3668]],[[3851,3853,3850]],[[3454,3456,3853]],[[3827,3597,3766]],[[3513,3595,3597]],[[3637,3473,3475]],[[3913,3831,3916]],[[3893,3643,3662]],[[3892,3501,3643]],[[3893,3662,3934]],[[3643,3644,3662]],[[3707,3742,3448]],[[3685,3449,3742]],[[3500,3479,3452]],[[3438,3437,3479]],[[3940,3498,3834]],[[3499,3479,3500]],[[3915,3639,3632]],[[3914,3658,3639]],[[3940,3874,3498]],[[3694,3479,3499]],[[3925,3846,3491]],[[3925,3897,3895]],[[3807,3804,3488]],[[3483,3635,3804]],[[3487,3807,3488]],[[3633,3483,3807]],[[3871,3788,3866]],[[3871,3857,3775]],[[3828,3631,3484]],[[3657,3474,3830]],[[3475,3461,3458]],[[3656,3474,3657]],[[3829,3941,3462]],[[3461,3475,3655]],[[3652,3721,3888]],[[3652,3654,3721]],[[3433,3435,3667]],[[3502,3879,3878]],[[3587,3732,3441]],[[3587,3733,3732]],[[3878,3880,3665]],[[3879,3927,3880]],[[3600,3640,3601]],[[3815,3814,3825]],[[3886,3602,3817]],[[3602,3824,3818]],[[3654,3928,3722]],[[3722,3928,3651]],[[3868,3921,3769]],[[3771,3608,3921]],[[3600,3886,3885]],[[3600,3602,3886]],[[3857,3869,3787]],[[3670,3669,3781]],[[3864,3785,3869]],[[3864,3783,3785]],[[3486,3812,3457]],[[3486,3802,3812]],[[3620,3861,3863]],[[3630,3629,3861]],[[3817,3858,3887]],[[3782,3901,3858]],[[3839,3855,3850]],[[3854,3843,3852]],[[3508,3650,3506]],[[3508,3888,3650]],[[3451,3692,3452]],[[3836,3498,3500]],[[3500,3692,3836]],[[3500,3452,3692]],[[3795,3902,3761]],[[3795,3931,3902]],[[3681,3744,3688]],[[3746,3690,3744]],[[3872,3617,3926]],[[3616,3732,3617]],[[3903,3882,3511]],[[3903,3508,3882]],[[3855,3847,3841]],[[3843,3845,3852]],[[3842,3847,3852]],[[3854,3856,3843]],[[3805,3813,3803]],[[3805,3806,3813]],[[3867,3922,3865]],[[3867,3770,3922]],[[3490,3489,3844]],[[3896,3838,3489]],[[3843,3856,3844]],[[3755,3491,3490]],[[3598,3593,3626]],[[3594,3591,3593]],[[3504,3728,3711]],[[3504,3731,3728]],[[3786,3780,3866]],[[3751,3750,3870]],[[3751,3870,3780]],[[3750,3933,3870]],[[3820,3819,3780]],[[3815,3825,3640]],[[3780,3641,3866]],[[3780,3819,3641]],[[3815,3640,3641]],[[3825,3601,3640]],[[3510,3509,3738]],[[3882,3935,3883]],[[3717,3727,3929]],[[3942,3759,3727]],[[3726,3712,3727]],[[3909,3759,3942]],[[3943,3944,3791]],[[3945,3727,3712]],[[3716,3726,3717]],[[3713,3712,3726]],[[3944,3712,3791]],[[3944,3945,3712]],[[3934,3648,3647]],[[3934,3662,3648]],[[3831,3915,3632]],[[3831,3913,3912]],[[3538,3911,3637]],[[3614,3615,3911]],[[3790,3943,3791]],[[3942,3944,3943]],[[3842,3849,3455]],[[3842,3852,3849]],[[3497,3938,3833]],[[3748,3682,3938]],[[3497,3695,3938]],[[3747,3682,3748]],[[3634,3680,3483]],[[3873,3484,3680]],[[3788,3786,3866]],[[3751,3780,3786]],[[3672,3589,3577]],[[3672,3623,3589]],[[3939,3930,3795]],[[3795,3930,3931]],[[3904,3505,3504]],[[3904,3708,3505]],[[3789,3777,3753]],[[3822,3824,3823]],[[3789,3775,3777]],[[3788,3871,3775]],[[3777,3754,3753]],[[3822,3750,3749]],[[3751,3754,3749]],[[3933,3822,3932]],[[3749,3754,3822]],[[3777,3776,3822]],[[3894,3893,3934]],[[3894,3891,3893]],[[3773,3906,3899]],[[3773,3898,3906]],[[3663,3664,3436]],[[3663,3644,3664]],[[3694,3645,3438]],[[3693,3647,3645]],[[3444,3946,3881]],[[3702,3493,3703]],[[3862,3877,3863]],[[3862,3624,3877]],[[3877,3947,3621]],[[3660,3642,3603]],[[3622,3621,3659]],[[3947,3660,3621]],[[3942,3945,3944]],[[3942,3727,3945]],[[3690,3689,3496]],[[3748,3938,3695]],[[3496,3689,3695]],[[3691,3747,3689]],[[3627,3439,3441]],[[3627,3560,3439]],[[3878,3435,3502]],[[3878,3665,3435]],[[3818,3908,3821]],[[3909,3792,3907]],[[3784,3781,3776]],[[3919,3772,3781]],[[3784,3670,3781]],[[3783,3865,3670]],[[3861,3860,3862]],[[3861,3629,3860]],[[3671,3595,3514]],[[3607,3596,3595]],[[3915,3912,3914]],[[3915,3831,3912]],[[3727,3930,3929]],[[3727,3759,3930]],[[3830,3916,3831]],[[3474,3473,3916]],[[3924,3828,3484]],[[3924,3463,3941]],[[3657,3829,3655]],[[3828,3924,3941]],[[3829,3462,3655]],[[3941,3463,3462]],[[3631,3829,3657]],[[3828,3941,3829]],[[3840,3856,3855]],[[3755,3490,3856]],[[3855,3854,3847]],[[3855,3856,3854]],[[3759,3503,3724]],[[3759,3654,3503]],[[3651,3928,3649]],[[3654,3736,3928]],[[3497,3684,3451]],[[3833,3682,3684]],[[3595,3671,3607]],[[3514,3768,3920]],[[3514,3920,3671]],[[3768,3606,3920]],[[3927,3891,3894]],[[3889,3501,3891]],[[3880,3927,3894]],[[3879,3502,3890]],[[3891,3890,3889]],[[3891,3927,3890]],[[3810,3636,3485]],[[3810,3801,3636]],[[3861,3620,3630]],[[3863,3621,3620]],[[3777,3822,3754]],[[3776,3824,3822]],[[3647,3436,3646]],[[3664,3437,3436]],[[3947,3642,3660]],[[3947,3877,3642]],[[3718,3730,3503]],[[3718,3762,3730]],[[3657,3830,3631]],[[3474,3916,3830]],[[3452,3681,3688]],[[3674,3685,3681]],[[3743,3687,3685]],[[3743,3917,3687]],[[3681,3745,3746]],[[3681,3686,3745]],[[3633,3459,3634]],[[3633,3458,3459]],[[3935,3508,3507]],[[3903,3888,3508]],[[3639,3910,3579]],[[3639,3482,3910]],[[3596,3608,3766]],[[3596,3606,3767]],[[3596,3767,3608]],[[3606,3768,3767]],[[3942,3793,3909]],[[3942,3943,3793]],[[3774,3790,3900]],[[3793,3943,3790]],[[3817,3602,3818]],[[3826,3824,3602]],[[3559,3523,3440]],[[3619,3530,3523]],[[3720,3709,3710]],[[3719,3505,3709]],[[3758,3701,3696]],[[3758,3676,3701]],[[3725,3762,3723]],[[3725,3730,3762]],[[3731,3653,3729]],[[3652,3888,3653]],[[3444,3881,3698]],[[3946,3675,3494]],[[3475,3656,3655]],[[3475,3474,3656]],[[3946,3702,3763]],[[3494,3493,3702]],[[3881,3946,3763]],[[3675,3705,3492]],[[3851,3455,3454]],[[3851,3841,3455]],[[3774,3714,3713]],[[3774,3900,3714]],[[3797,3624,3923]],[[3799,3434,3624]],[[3624,3642,3877]],[[3624,3434,3642]],[[3538,3614,3911]],[[3538,3611,3614]],[[3513,3591,3431]],[[3605,3592,3591]],[[3936,3506,3650]],[[3936,3507,3506]],[[3906,3905,3907]],[[3818,3909,3908]],[[3821,3905,3898]],[[3908,3907,3905]],[[3705,3445,3447]],[[3706,3450,3445]],[[3934,3940,3834]],[[3934,3693,3940]],[[3499,3874,3694]],[[3940,3693,3874]],[[3633,3487,3458]],[[3486,3457,3487]],[[3799,3598,3626]],[[3799,3590,3598]],[[3876,3622,3659]],[[3876,3630,3622]],[[3751,3752,3754]],[[3786,3753,3752]],[[3755,3840,3810]],[[3755,3856,3840]],[[3811,3839,3853]],[[3840,3855,3839]],[[3760,3723,3761]],[[3762,3710,3723]],[[3862,3625,3624]],[[3862,3860,3625]],[[3535,3476,3478]],[[3612,3477,3476]],[[3675,3492,3494]],[[3705,3447,3492]],[[3882,3509,3511]],[[3883,3738,3509]],[[3735,3937,3936]],[[3735,3935,3937]],[[3925,3895,3846]],[[3897,3673,3895]],[[3702,3946,3494]],[[3444,3675,3946]],[[3679,3678,3757]],[[3673,3897,3678]],[[3692,3832,3836]],[[3682,3835,3832]],[[3857,3787,3776]],[[3785,3784,3787]],[[3948,3458,3456]],[[3949,3948,3673]],[[3673,3948,3456]],[[3950,3949,3674]],[[3674,3949,3673]],[[3951,3950,3452]],[[3452,3950,3674]],[[3437,3951,3452]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c160b4d-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efc5ef49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[3952,3953,3954]],[[3955,3956,3957]],[[3957,3958,3955]],[[3959,3960,3954]],[[3960,3956,3954]],[[3961,3962,3963]],[[3961,3963,3964]],[[3965,3966,3967]],[[3968,3969,3970]],[[3971,3972,3973]],[[3971,3974,3972]],[[3975,3976,3977]],[[3978,3979,3974]],[[3980,3981,3982]],[[3971,3973,3983]],[[3972,3984,3973]],[[3985,3986,3987]],[[3988,3989,3990]],[[3991,3992,3993]],[[3994,3995,3996]],[[3997,3998,3999]],[[3994,4000,4001]],[[4002,4003,4004]],[[4005,4006,4007]],[[3967,3981,3965]],[[3967,4008,3990]],[[4009,3990,4008]],[[4010,4011,3982]],[[4012,3965,3981]],[[4013,4014,3981]],[[4015,4016,4010]],[[4013,3981,3980]],[[3980,3982,4017]],[[4017,3982,4018]],[[4018,3982,4011]],[[4011,4010,4016]],[[4019,4015,4010]],[[4020,4019,4010]],[[4021,4020,4010]],[[4022,4021,4010]],[[4023,4024,4025]],[[4010,4026,4022]],[[4010,4027,4026]],[[4024,4028,4029]],[[4030,4031,4032]],[[4033,4034,4035]],[[4036,4037,4038]],[[4039,4040,4041]],[[4042,4043,4044]],[[4044,4045,4046]],[[4047,4048,4049]],[[4050,4051,4052]],[[4035,4053,4054]],[[4055,4056,4057]],[[4035,4054,4058]],[[4056,4059,4024]],[[4060,4024,4029]],[[4061,4058,4027]],[[4062,4024,4023]],[[4026,4027,4058]],[[4061,4063,4064]],[[4027,4065,4061]],[[4066,4027,4010]],[[4067,4066,4010]],[[4068,4067,4010]],[[4068,4069,4067]],[[4070,4071,4072]],[[4073,4074,4075]],[[4076,4077,4074]],[[4078,4079,4080]],[[4081,4082,4083]],[[4084,3962,4085]],[[3963,3962,4084]],[[4085,3962,4086]],[[4086,3962,4087]],[[4088,4089,4078]],[[4080,4088,4078]],[[4090,4091,4079]],[[4079,4092,4080]],[[4079,4093,4092]],[[4079,4094,4093]],[[4095,4096,4097]],[[4079,4098,4094]],[[4079,4091,4098]],[[4090,4099,4091]],[[4090,4100,4099]],[[4090,4101,4100]],[[4101,4090,4102]],[[4102,4090,4103]],[[4090,4104,4103]],[[4090,4105,4104]],[[4090,4106,4105]],[[4090,4107,4106]],[[4090,4108,4107]],[[4090,4097,4096]],[[4108,4090,4109]],[[4109,4090,4110]],[[4110,4090,4111]],[[4111,4090,4096]],[[4095,4112,4096]],[[4113,4114,4112]],[[4115,4116,4114]],[[4115,4114,4117]],[[4117,4114,4118]],[[4118,4114,4113]],[[4119,4118,4120]],[[4120,4118,4121]],[[4095,4113,4112]],[[4121,4118,4113]],[[4122,4095,4097]],[[4123,4124,4097]],[[4097,4125,4122]],[[4097,4126,4125]],[[4097,4127,4126]],[[4097,4128,4127]],[[4128,4097,4129]],[[4129,4097,4130]],[[4097,4131,4130]],[[4097,4124,4131]],[[4132,4123,4097]],[[4133,4134,4097]],[[4097,4134,4132]],[[4133,4135,4136]],[[4133,4136,4134]],[[4135,4137,4136]],[[4137,4138,4136]],[[4137,3954,4138]],[[3954,3953,4138]],[[3954,3956,3952]],[[3955,3952,3956]],[[4139,4140,3958]],[[4141,4142,4143]],[[3958,4140,3955]],[[4139,4142,4141]],[[4140,4139,4144]],[[4144,4139,4141]],[[4145,4146,4147]],[[4148,4149,4150]],[[4001,4151,3994]],[[4152,4003,3995]],[[4153,3972,4154]],[[4155,4003,4002]],[[4073,4156,4071]],[[4157,4158,4159]],[[4009,4160,3988]],[[4009,4161,4160]],[[4145,4162,4163]],[[4164,4165,4166]],[[4167,4168,4169]],[[4170,4171,4172]],[[4147,4171,4164]],[[4163,4006,4005]],[[4173,4174,4175]],[[4176,4177,4178]],[[3997,4179,3998]],[[4180,4181,4182]],[[4183,4184,4185]],[[4154,4003,4186]],[[4187,4002,4000]],[[4000,4004,4001]],[[4185,4184,4188]],[[4189,4190,4191]],[[4152,3994,4151]],[[3996,4000,3994]],[[4192,4193,4194]],[[4195,4196,4197]],[[4150,4198,4199]],[[4200,4168,4201]],[[4202,4200,4201]],[[4168,4166,4169]],[[4164,4203,4165]],[[4204,3996,3989]],[[4165,4169,4166]],[[4150,3996,4148]],[[4175,4205,4173]],[[4161,4009,4173]],[[4164,4168,4200]],[[4164,4166,4168]],[[4183,4185,4206]],[[4188,4154,4185]],[[3968,3970,4186]],[[4186,4003,3968]],[[4207,4203,4171]],[[4208,4162,4161]],[[4203,4209,4165]],[[4172,4171,4147]],[[4179,4210,3969]],[[4211,4179,3969]],[[4001,4004,4151]],[[4003,3989,3995]],[[3988,4147,3989]],[[4005,4007,4147]],[[4147,4212,3989]],[[4147,4200,4212]],[[4213,4214,4215]],[[4215,4214,4149]],[[4216,4217,4218]],[[4167,4198,4202]],[[4187,4219,4002]],[[4220,4221,4211]],[[4222,4158,4071]],[[4223,4224,4077]],[[4073,4072,4225]],[[4070,4073,4071]],[[4197,4226,4074]],[[4227,4228,4229]],[[4207,4171,4170]],[[4176,4007,4006]],[[4230,4177,4176]],[[4230,4231,4177]],[[4232,4233,4170]],[[4207,4175,4174]],[[4175,4233,4205]],[[4232,4234,4231]],[[4216,4235,4236]],[[4237,4236,4212]],[[4150,4238,4198]],[[4238,4214,4237]],[[4239,4076,4074]],[[4229,4240,4227]],[[4241,3991,3999]],[[4185,4210,4242]],[[4242,3997,4206]],[[4190,4243,4181]],[[4244,4245,4220]],[[4179,4245,4244]],[[4246,3968,4155]],[[4211,3969,3968]],[[4247,4248,4249]],[[4158,4072,4071]],[[3985,4250,4182]],[[3992,3991,4241]],[[4184,4251,4188]],[[3984,3986,3985]],[[4160,4145,3988]],[[4162,4208,4163]],[[4249,4222,4193]],[[4249,4158,4222]],[[4068,4249,4248]],[[4252,4253,4254]],[[4255,4244,4220]],[[3998,4255,3999]],[[4255,3998,4244]],[[4243,4241,3999]],[[4256,4248,4247]],[[4257,4258,4259]],[[4220,4245,4221]],[[4244,3998,4179]],[[4072,4157,4225]],[[4197,4074,4225]],[[4194,4193,4260]],[[4222,4260,4193]],[[4161,4176,4208]],[[4176,4178,4007]],[[4261,4032,4262]],[[4229,4263,4264]],[[4265,4082,4081]],[[4083,4082,4266]],[[4267,4030,4032]],[[4268,4269,4270]],[[4074,4226,4239]],[[4076,4271,4224]],[[4263,4272,4273]],[[4253,4274,4082]],[[3964,4274,4253]],[[3964,3963,4269]],[[4275,4276,4082]],[[4274,3964,4269]],[[4259,4277,4257]],[[4256,4278,4248]],[[4279,4280,4249]],[[4281,4256,4247]],[[4158,4226,4159]],[[4077,4076,4223]],[[4159,4226,4196]],[[4239,4249,4076]],[[4202,4198,4282]],[[4238,4149,4214]],[[4237,4214,4213]],[[4215,4217,4236]],[[4273,4264,4263]],[[4283,4253,4276]],[[4284,4283,4276]],[[4253,4082,4276]],[[4217,4216,4236]],[[4285,4286,4287]],[[4198,4238,4237]],[[4236,3989,4212]],[[4229,4030,4240]],[[4261,4288,4289]],[[4264,4031,4229]],[[4290,4270,4077]],[[4030,4229,4031]],[[4264,4273,4270]],[[4270,4290,4262]],[[4290,4077,4271]],[[4204,4285,4291]],[[4292,4216,4293]],[[4204,4236,4285]],[[4286,4293,4294]],[[4152,3995,3994]],[[3989,3996,3995]],[[4295,3993,4189]],[[4180,4182,4250]],[[4296,3985,4182]],[[3984,4153,3987]],[[4000,4002,4004]],[[4219,4155,4002]],[[3964,4068,4010]],[[3964,4271,4068]],[[4278,4256,4277]],[[4278,4068,4248]],[[4263,4228,4297]],[[4284,4276,4275]],[[4220,4298,4000]],[[4298,4211,3968]],[[4246,4298,3968]],[[4221,4245,4211]],[[4191,4180,4250]],[[4191,4181,4180]],[[4251,4153,4154]],[[3993,4184,4183]],[[4222,4156,4260]],[[4222,4071,4156]],[[4215,4236,4213]],[[4235,4285,4236]],[[4225,4157,4159]],[[4072,4158,4157]],[[4251,4154,4188]],[[3972,4003,4154]],[[4147,4232,4172]],[[4233,4175,4170]],[[4053,4035,4034]],[[4024,4064,4025]],[[3973,3984,4296]],[[4296,3984,3985]],[[4281,4247,4249]],[[4281,4277,4256]],[[4280,4281,4249]],[[4258,4257,4281]],[[4299,4055,4045]],[[4055,4047,4049]],[[4168,4167,4201]],[[4199,4198,4167]],[[4255,4243,3999]],[[4190,4300,3992]],[[4272,4283,4301]],[[4297,4228,4254]],[[4280,4258,4281]],[[4280,4279,4259]],[[4281,4257,4277]],[[4258,4280,4259]],[[4282,4237,4212]],[[4213,4236,4237]],[[4295,4302,4153]],[[4302,3985,3987]],[[4251,3993,4295]],[[4250,3985,4303]],[[4246,4155,4219]],[[3968,4003,4155]],[[3991,4206,3997]],[[4206,4185,4242]],[[3991,3997,3999]],[[4242,4210,4179]],[[4304,4037,4050]],[[4305,4052,4306]],[[4189,4300,4190]],[[4189,4303,4295]],[[3993,3992,4300]],[[4241,4243,3992]],[[4189,3993,4300]],[[4251,4184,3993]],[[4250,4189,4191]],[[4250,4303,4189]],[[4050,4037,4051]],[[4041,4307,4033]],[[4062,4308,4024]],[[4051,4061,4052]],[[4227,4254,4228]],[[4272,4254,4283]],[[4051,4037,4309]],[[4050,4052,4310]],[[4311,4312,4046]],[[4313,4038,4304]],[[4061,4035,4058]],[[4314,4309,4315]],[[4192,4279,4249]],[[4075,4259,4279]],[[4284,4301,4283]],[[4272,4297,4254]],[[4316,4040,4317]],[[4318,4317,4319]],[[4320,4056,4049]],[[4056,4060,4057]],[[4044,4306,4045]],[[4305,4042,4310]],[[4148,4293,4218]],[[4217,4215,4149]],[[4148,4218,4149]],[[4293,4216,4218]],[[4150,4149,4238]],[[4218,4217,4149]],[[4235,4292,4285]],[[4235,4216,4292]],[[4287,4294,3996]],[[4286,4292,4293]],[[4287,4286,4294]],[[4285,4292,4286]],[[4261,4262,4288]],[[4321,4267,4261]],[[4288,4262,4322]],[[4032,4270,4262]],[[4290,4271,4322]],[[4323,4030,4267]],[[4322,4271,4288]],[[4254,4253,4283]],[[4042,4044,4046]],[[4324,4306,4044]],[[4294,4148,3996]],[[4294,4293,4148]],[[4081,4272,4301]],[[4081,4325,4272]],[[4055,4049,4056]],[[4048,4320,4049]],[[4299,4326,4055]],[[4327,4047,4055]],[[4048,4328,4320]],[[4056,4024,4060]],[[4251,4295,4153]],[[4302,3987,4153]],[[4317,4329,4319]],[[4318,4319,4041]],[[4330,4316,4318]],[[4319,4307,4041]],[[4316,4317,4318]],[[4331,4039,4035]],[[4073,4070,4072]],[[4073,4260,4156]],[[4262,4290,4322]],[[4077,4224,4271]],[[4052,4047,4306]],[[4052,4061,4047]],[[4325,4081,4268]],[[4082,4274,4266]],[[4273,4325,4270]],[[4269,3963,4270]],[[4270,4325,4268]],[[4273,4272,4325]],[[4268,4083,4266]],[[4268,4081,4083]],[[4202,4282,4212]],[[4198,4237,4282]],[[4200,4202,4212]],[[4201,4167,4202]],[[3991,4183,4206]],[[3991,3993,4183]],[[4035,4041,4033]],[[4330,4318,4041]],[[4236,4204,3989]],[[4291,4287,4204]],[[4288,4271,4289]],[[4289,4321,4332]],[[4311,4333,4312]],[[4329,4317,4333]],[[4209,4203,4207]],[[4230,4161,4173]],[[4082,4265,4275]],[[4265,4301,4284]],[[4301,4265,4081]],[[4284,4275,4265]],[[4172,4232,4170]],[[4231,4205,4233]],[[4234,4232,4147]],[[4231,4233,4232]],[[4007,4234,4147]],[[4007,4178,4234]],[[4181,4255,4220]],[[4181,4243,4255]],[[4045,4055,4057]],[[4326,4327,4055]],[[4328,4059,4334]],[[4024,4308,4028]],[[4047,4328,4048]],[[4334,4056,4320]],[[4328,4024,4059]],[[4061,4064,4024]],[[4311,4319,4329]],[[4046,4307,4319]],[[4252,4030,4323]],[[4252,4240,4030]],[[4279,4192,4075]],[[4249,4193,4192]],[[4046,4312,4042]],[[4315,4309,4037]],[[4036,4315,4037]],[[4335,4314,4315]],[[4040,4316,4041]],[[4335,4315,4036]],[[4223,4076,4224]],[[4271,3964,4321]],[[4336,4313,4042]],[[4336,4036,4038]],[[4204,4287,3996]],[[4291,4285,4287]],[[4231,4178,4177]],[[4231,4234,4178]],[[4306,4327,4045]],[[4306,4047,4327]],[[4041,4316,4330]],[[4312,4036,4336]],[[4035,4039,4041]],[[4331,4335,4312]],[[4063,4061,4065]],[[4314,4035,4061]],[[4324,4043,4306]],[[4324,4044,4043]],[[4073,4194,4260]],[[4075,4192,4194]],[[4042,4312,4336]],[[4333,4317,4312]],[[4205,4230,4173]],[[4205,4231,4230]],[[4174,4173,4150]],[[4009,3996,4173]],[[4165,4174,4169]],[[4165,4209,4174]],[[4175,4207,4170]],[[4174,4209,4207]],[[4331,4040,4039]],[[4312,4317,4040]],[[4271,4321,4289]],[[3964,4253,4321]],[[4252,4323,4253]],[[4321,4253,4323]],[[4261,4267,4032]],[[4321,4323,4267]],[[4327,4299,4045]],[[4327,4326,4299]],[[4228,4263,4229]],[[4297,4272,4263]],[[4169,4199,4167]],[[4169,4150,4199]],[[4194,4073,4075]],[[4225,4074,4073]],[[4335,4331,4035]],[[4312,4040,4331]],[[4145,4163,4146]],[[4208,4006,4163]],[[4158,4239,4226]],[[4158,4249,4239]],[[4160,4162,4145]],[[4160,4161,4162]],[[4312,4335,4036]],[[4035,4314,4335]],[[4009,3988,3990]],[[4145,4147,3988]],[[4051,4314,4061]],[[4051,4309,4314]],[[4319,4311,4046]],[[4329,4333,4311]],[[4249,4271,4076]],[[4249,4068,4271]],[[4061,4328,4047]],[[4061,4024,4328]],[[4147,4164,4200]],[[4171,4203,4164]],[[4174,4150,4169]],[[4173,3996,4150]],[[3969,4210,4186]],[[4185,4154,4210]],[[4245,4179,4211]],[[3997,4242,4179]],[[4304,4038,4037]],[[4313,4336,4038]],[[4310,4337,4050]],[[4337,4313,4304]],[[4328,4334,4320]],[[4059,4056,4334]],[[4159,4195,4225]],[[4159,4196,4195]],[[4004,4152,4151]],[[4004,4003,4152]],[[4032,4264,4270]],[[4032,4031,4264]],[[4305,4310,4052]],[[4337,4304,4050]],[[4153,3984,3972]],[[3987,3986,3984]],[[4043,4305,4306]],[[4043,4042,4305]],[[4243,4190,3992]],[[4181,4191,4190]],[[4042,4337,4310]],[[4042,4313,4337]],[[4187,4246,4219]],[[4187,4000,4298]],[[4187,4298,4246]],[[4220,4211,4298]],[[4266,4269,4268]],[[4266,4274,4269]],[[3969,4186,3970]],[[4210,4154,4186]],[[4303,4302,4295]],[[4303,3985,4302]],[[4195,4197,4225]],[[4196,4226,4197]],[[4208,4176,4006]],[[4161,4230,4176]],[[4227,4252,4254]],[[4227,4240,4252]],[[4332,4261,4289]],[[4332,4321,4261]],[[4069,4278,4277]],[[4069,4068,4278]],[[4069,4259,4075]],[[4069,4277,4259]],[[4146,4005,4147]],[[4146,4163,4005]],[[4078,4087,3962]],[[3964,4079,3962]],[[4338,4087,4078]],[[4339,3964,3962]],[[4340,3978,3983]],[[3978,3974,3971]],[[4339,3961,3964]],[[4339,3962,3961]],[[3979,3977,4341]],[[3976,3974,4341]],[[3975,3977,4340]],[[3976,4341,3977]],[[3983,3978,3971]],[[4340,3977,3979]],[[3974,3979,4341]],[[3978,4340,3979]],[[4338,4078,4089]],[[3962,4079,4078]],[[4014,4012,3981]],[[4014,3965,4012]],[[4008,3967,3966]],[[3990,3981,3967]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c1659af-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe75149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:22.000"},"geometry":[{"boundaries":[[[4342,4343,4344]],[[4345,4346,4342]],[[4345,4342,4344]],[[4344,4343,4347]],[[4347,4343,4348]],[[4349,4350,4346]],[[4346,4351,4342]],[[4346,4352,4351]],[[4346,4353,4352]],[[4346,4354,4353]],[[4346,4355,4354]],[[4346,4350,4355]],[[4349,4356,4350]],[[4357,4358,4359]],[[4349,4360,4356]],[[4361,4362,4363]],[[4364,4365,4360]],[[4366,4367,4368]],[[4369,4370,4365]],[[4371,4372,4373]],[[4374,4375,4376]],[[4376,4377,4378]],[[4379,4380,4362]],[[4381,4382,4383]],[[4384,4385,4386]],[[4387,4388,4389]],[[4390,4391,4392]],[[4393,4394,4395]],[[4396,4397,4398]],[[4396,4399,4400]],[[4401,4402,4403]],[[4400,4404,4370]],[[4368,4405,4406]],[[4399,4396,4406]],[[4407,4408,4382]],[[4409,4410,4411]],[[4412,4413,4414]],[[4369,4349,4413]],[[4415,4416,4417]],[[4367,4416,4368]],[[4415,4418,4414]],[[4416,4349,4368]],[[4419,4372,4420]],[[4421,4422,4423]],[[4424,4372,4371]],[[4425,4426,4427]],[[4428,4429,4430]],[[4431,4426,4403]],[[4432,4433,4434]],[[4426,4435,4427]],[[4374,4436,4375]],[[4436,4437,4438]],[[4427,4435,4439]],[[4435,4426,4431]],[[4414,4418,4370]],[[4415,4413,4416]],[[4440,4401,4374]],[[4437,4426,4425]],[[4377,4376,4375]],[[4375,4436,4438]],[[4397,4396,4400]],[[4373,4441,4442]],[[4418,4443,4370]],[[4398,4366,4396]],[[4349,4444,4445]],[[4430,4411,4403]],[[4438,4446,4434]],[[4435,4431,4439]],[[4447,4448,4387]],[[4449,4358,4450]],[[4451,4440,4374]],[[4375,4438,4433]],[[4433,4452,4377]],[[4375,4433,4377]],[[4442,4371,4373]],[[4420,4429,4428]],[[4453,4451,4376]],[[4454,4455,4456]],[[4428,4430,4403]],[[4457,4349,4458]],[[4459,4460,4429]],[[4461,4462,4349]],[[4463,4389,4388]],[[4464,4465,4466]],[[4368,4371,4405]],[[4371,4445,4424]],[[4409,4460,4467]],[[4468,4469,4390]],[[4406,4396,4366]],[[4405,4371,4399]],[[4374,4401,4436]],[[4403,4426,4437]],[[4357,4447,4470]],[[4471,4472,4340]],[[4401,4440,4402]],[[4473,4474,4444]],[[4372,4473,4420]],[[4372,4424,4473]],[[4376,4451,4374]],[[4402,4428,4403]],[[4455,4451,4453]],[[4428,4454,4420]],[[4404,4456,4453]],[[4404,4441,4475]],[[4445,4444,4474]],[[4349,4460,4461]],[[4359,4449,4388]],[[4476,4477,4478]],[[4479,4450,4480]],[[4481,4482,4463]],[[4438,4425,4446]],[[4438,4437,4425]],[[4366,4398,4367]],[[4443,4418,4415]],[[4483,4484,4485]],[[4486,4480,4358]],[[4388,4387,4448]],[[4389,4487,4387]],[[4486,4479,4480]],[[4488,4489,4490]],[[4491,4449,4450]],[[4479,4486,4492]],[[4357,4486,4358]],[[4493,4494,4495]],[[4496,4497,4498]],[[4499,4500,4498]],[[4417,4416,4367]],[[4413,4349,4416]],[[4442,4441,4404]],[[4373,4372,4475]],[[4370,4369,4414]],[[4414,4369,4412]],[[4501,4502,4503]],[[4504,4505,4506]],[[4448,4359,4388]],[[4480,4450,4358]],[[4507,4432,4434]],[[4508,4509,4510]],[[4463,4511,4481]],[[4472,3975,4340]],[[4512,4340,4482]],[[4513,4495,4494]],[[4481,4511,4449]],[[4463,4388,4449]],[[4491,4481,4449]],[[4511,4463,4449]],[[4437,4401,4403]],[[4437,4436,4401]],[[4427,4446,4425]],[[4431,4403,4411]],[[4479,4493,4450]],[[4514,4515,3975]],[[4450,4493,4495]],[[4516,4500,4517]],[[4489,4495,4513]],[[4493,4479,4492]],[[4368,4445,4371]],[[4474,4473,4424]],[[4368,4406,4366]],[[4405,4399,4406]],[[4463,4487,4389]],[[4340,4477,4487]],[[4512,4471,4340]],[[4518,4519,4471]],[[4518,4512,4519]],[[4482,4487,4463]],[[4471,4512,4518]],[[4482,4481,4491]],[[4442,4399,4371]],[[4442,4400,4399]],[[4451,4402,4440]],[[4451,4455,4402]],[[4454,4419,4420]],[[4520,4462,4461]],[[4424,4445,4474]],[[4368,4349,4445]],[[4413,4415,4414]],[[4417,4443,4415]],[[4449,4359,4358]],[[4448,4447,4357]],[[4446,4521,4434]],[[4522,4439,4431]],[[4523,4524,4525]],[[4526,4527,4528]],[[4443,4397,4370]],[[4442,4404,4400]],[[4370,4397,4400]],[[4443,4417,4397]],[[4529,4530,4531]],[[4496,4499,4497]],[[4532,4533,4534]],[[4535,4536,4537]],[[4538,4539,4540]],[[4541,4542,4543]],[[4544,4545,4546]],[[4547,4548,4549]],[[4550,4551,4552]],[[4553,4554,4395]],[[4555,4510,4556]],[[4557,4558,4559]],[[4560,4550,4561]],[[4408,4562,4361]],[[4523,4361,4363]],[[4563,4548,4547]],[[4509,4564,4565]],[[4392,4391,4566]],[[4567,4509,4565]],[[4411,4522,4431]],[[4568,4569,4570]],[[4468,4392,4571]],[[4363,4572,4523]],[[4523,4572,4524]],[[4573,4574,4565]],[[4575,4521,4446]],[[4556,4510,4567]],[[4576,4577,4421]],[[4510,4509,4567]],[[4508,4578,4577]],[[4421,4423,4564]],[[4579,4580,4581]],[[4582,4583,4584]],[[4585,4586,4386]],[[4531,4587,4588]],[[4386,4586,4589]],[[4590,4591,4543]],[[4534,4592,4532]],[[4593,4594,4595]],[[4596,4589,4586]],[[4564,4423,4597]],[[4566,4598,4362]],[[4580,4423,4581]],[[4599,4600,4580]],[[4380,4566,4362]],[[4391,4601,4602]],[[4574,4469,4603]],[[4565,4564,4597]],[[4604,4597,4600]],[[4521,4605,4507]],[[4605,4422,4507]],[[4601,4606,4607]],[[4429,4460,4409]],[[4522,4608,4439]],[[4598,4609,4363]],[[4610,4590,4611]],[[4609,4602,4612]],[[4613,4614,4615]],[[4525,4524,4614]],[[4616,4586,4585]],[[4608,4617,4618]],[[4363,4612,4572]],[[4612,4524,4572]],[[4619,4620,4534]],[[4541,4621,4622]],[[4623,4624,4625]],[[4362,4598,4363]],[[4626,4391,4602]],[[4627,4628,4623]],[[4629,4630,4631]],[[4632,4559,4525]],[[4523,4558,4361]],[[4621,4594,4620]],[[4536,4484,4633]],[[4634,4635,4636]],[[4385,4585,4386]],[[4637,4638,4639]],[[4385,4640,4641]],[[4362,4562,4379]],[[4642,4643,4644]],[[4601,4645,4606]],[[4469,4574,4573]],[[4377,4452,4378]],[[4646,4507,4422]],[[4612,4614,4524]],[[4584,4647,4582]],[[4648,4594,4591]],[[4649,4650,4651]],[[4652,4653,4579]],[[4654,4655,4606]],[[4656,4384,4386]],[[4628,4627,4532]],[[4640,4657,4588]],[[4386,4589,4656]],[[4658,4464,4384]],[[4659,4529,4660]],[[4466,4661,4464]],[[4637,4662,4660]],[[4663,4664,4656]],[[4665,4657,4385]],[[4648,4591,4590]],[[4594,4621,4591]],[[4609,4612,4363]],[[4648,4614,4612]],[[4666,4667,4668]],[[4669,4648,4610]],[[4670,4671,4672]],[[4548,4673,4549]],[[4674,4675,4526]],[[4676,4610,4611]],[[4540,4677,4678]],[[4679,4680,4681]],[[4682,4539,4683]],[[4684,4685,4686]],[[4667,4526,4668]],[[4528,4683,4687]],[[4688,4675,4674]],[[4526,4528,4674]],[[4561,4689,4560]],[[4668,4526,4689]],[[4690,4560,4688]],[[4688,4674,4691]],[[4527,4682,4683]],[[4538,4634,4686]],[[4686,4685,4538]],[[4687,4674,4528]],[[4539,4538,4685]],[[4635,4659,4636]],[[4527,4683,4528]],[[4539,4685,4683]],[[4529,4531,4660]],[[4692,4532,4531]],[[4693,4694,4530]],[[4624,4592,4593]],[[4693,4677,4694]],[[4695,4611,4696]],[[4538,4540,4678]],[[4697,4540,4539]],[[4574,4556,4567]],[[4698,4452,4432]],[[4699,4676,4611]],[[4668,4689,4700]],[[4701,4702,4703]],[[4537,4633,4663]],[[4651,4704,4484]],[[4705,4706,4476]],[[4650,4707,4708]],[[4709,4499,4496]],[[4704,4485,4484]],[[4702,4483,4485]],[[4710,4711,4702]],[[4663,4589,4537]],[[4514,4506,4505]],[[4712,4713,4492]],[[4657,4660,4588]],[[4660,4531,4588]],[[4384,4665,4385]],[[4588,4587,4640]],[[4552,4714,4382]],[[4552,4715,4716]],[[4656,4658,4384]],[[4478,4717,4476]],[[4656,4664,4658]],[[4710,4702,4718]],[[4665,4464,4661]],[[4658,4664,4719]],[[4720,4721,4722]],[[4702,4485,4703]],[[4723,4503,4701]],[[4724,4722,4721]],[[4387,4720,4447]],[[4701,4703,4723]],[[4357,4496,4486]],[[4704,4723,4703]],[[4704,4725,4723]],[[4726,4727,4728]],[[4725,4729,4726]],[[4728,4730,4731]],[[4516,4732,4500]],[[4731,4709,4733]],[[4734,4735,4556]],[[4644,4736,4642]],[[4603,4734,4556]],[[4735,4644,4555]],[[4556,4735,4555]],[[4546,4545,4736]],[[4731,4737,4728]],[[4627,4623,4585]],[[4728,4737,4726]],[[4470,4709,4496]],[[4707,4727,4729]],[[4727,4738,4739]],[[4729,4708,4707]],[[4596,4535,4537]],[[4658,4719,4465]],[[4705,4710,4718]],[[4740,4741,4618]],[[4581,4423,4422]],[[4741,4575,4618]],[[4521,4507,4434]],[[4740,4605,4741]],[[4581,4422,4605]],[[4740,4581,4605]],[[4579,4653,4599]],[[4742,4634,4636]],[[4538,4678,4634]],[[4678,4635,4634]],[[4678,4693,4529]],[[4510,4743,4508]],[[4393,4453,4378]],[[4378,4698,4577]],[[4432,4507,4698]],[[4618,4617,4744]],[[4604,4654,4645]],[[4745,4522,4410]],[[4655,4607,4606]],[[4740,4579,4581]],[[4740,4652,4579]],[[4590,4543,4542]],[[4591,4621,4543]],[[4635,4529,4659]],[[4635,4678,4529]],[[4685,4684,4683]],[[4691,4674,4687]],[[4746,4491,4450]],[[4519,4512,4491]],[[4618,4744,4740]],[[4744,4458,4652]],[[4592,4534,4620]],[[4694,4695,4747]],[[4529,4693,4530]],[[4678,4677,4693]],[[4434,4433,4438]],[[4432,4452,4433]],[[4394,4577,4578]],[[4646,4422,4421]],[[4689,4675,4560]],[[4689,4526,4675]],[[4655,4599,4653]],[[4580,4597,4423]],[[4748,4749,4631]],[[4750,4751,4707]],[[4623,4625,4752]],[[4536,4753,4649]],[[4641,4627,4585]],[[4592,4620,4593]],[[4743,4644,4554]],[[4570,4545,4754]],[[4735,4736,4644]],[[4735,4734,4546]],[[4545,4755,4736]],[[4756,4757,4643]],[[4756,4755,4545]],[[4642,4736,4755]],[[4570,4756,4545]],[[4642,4755,4756]],[[4735,4546,4736]],[[4571,4380,4544]],[[4599,4654,4600]],[[4604,4573,4597]],[[4599,4655,4654]],[[4573,4565,4597]],[[4503,4724,4701]],[[4758,4487,4477]],[[4759,4720,4722]],[[4760,4487,4758]],[[4701,4718,4702]],[[4701,4724,4718]],[[4720,4759,4447]],[[4733,4737,4731]],[[4739,4761,4730]],[[4762,4515,4732]],[[4542,4696,4611]],[[4694,4677,4695]],[[4763,4764,4765]],[[4766,4712,4492]],[[4517,4730,4516]],[[4761,4762,4732]],[[4662,4639,4767]],[[4768,4742,4636]],[[4470,4733,4709]],[[4731,4517,4709]],[[4749,4750,4650]],[[4650,4750,4707]],[[4456,4419,4454]],[[4475,4372,4419]],[[4402,4454,4428]],[[4402,4455,4454]],[[4483,4633,4484]],[[4483,4711,4769]],[[4658,4465,4464]],[[4466,4465,4478]],[[4770,4407,4714]],[[4568,4570,4754]],[[4771,4700,4563]],[[4557,4383,4558]],[[4679,4551,4772]],[[4552,4382,4381]],[[4715,4551,4679]],[[4772,4550,4773]],[[4694,4533,4530]],[[4694,4747,4533]],[[4530,4692,4531]],[[4530,4533,4692]],[[4531,4532,4587]],[[4692,4533,4532]],[[4690,4688,4691]],[[4560,4675,4688]],[[4549,4673,4583]],[[4548,4559,4632]],[[4774,4775,4472]],[[4519,4746,4488]],[[4556,4574,4603]],[[4567,4565,4574]],[[4652,4458,4653]],[[4653,4458,4655]],[[4770,4568,4754]],[[4714,4552,4716]],[[4776,4647,4669]],[[4583,4673,4615]],[[4719,4717,4465]],[[4719,4664,4777]],[[4719,4777,4778]],[[4769,4663,4633]],[[4385,4657,4640]],[[4661,4779,4639]],[[4575,4608,4618]],[[4575,4427,4608]],[[4716,4715,4681]],[[4552,4551,4715]],[[4569,4716,4681]],[[4568,4714,4716]],[[4478,4779,4466]],[[4660,4662,4659]],[[4768,4639,4779]],[[4662,4636,4659]],[[4657,4637,4660]],[[4638,4661,4639]],[[4661,4466,4779]],[[4465,4717,4478]],[[4381,4383,4780]],[[4408,4361,4558]],[[4563,4557,4548]],[[4383,4408,4558]],[[4781,4557,4563]],[[4780,4383,4557]],[[4768,4478,4477]],[[4768,4779,4478]],[[4629,4631,4535]],[[4749,4650,4649]],[[4680,4686,4742]],[[4782,4691,4687]],[[4676,4671,4776]],[[4783,4549,4582]],[[4468,4390,4392]],[[4469,4645,4601]],[[4762,4648,4458]],[[4762,4594,4648]],[[4607,4602,4601]],[[4648,4612,4602]],[[4762,4458,4349]],[[4648,4602,4458]],[[4740,4744,4652]],[[4617,4458,4744]],[[4617,4522,4745]],[[4460,4349,4467]],[[4385,4641,4585]],[[4640,4587,4641]],[[4491,4746,4519]],[[4450,4495,4746]],[[4508,4553,4578]],[[4554,4453,4393]],[[4444,4462,4473]],[[4444,4349,4462]],[[4420,4459,4429]],[[4520,4473,4462]],[[4420,4520,4459]],[[4420,4473,4520]],[[4515,4784,4732]],[[4498,4497,4499]],[[4492,4498,4766]],[[4486,4496,4498]],[[4698,4646,4577]],[[4698,4507,4646]],[[4464,4665,4384]],[[4661,4638,4665]],[[4472,4785,4786]],[[4787,4774,4488]],[[4788,4774,4787]],[[4746,4495,4489]],[[4620,4622,4621]],[[4696,4542,4541]],[[4490,4489,4506]],[[4488,4746,4489]],[[4789,4490,4506]],[[4789,4787,4490]],[[4781,4700,4561]],[[4563,4547,4771]],[[4666,4771,4547]],[[4668,4700,4771]],[[4608,4427,4439]],[[4575,4446,4427]],[[4456,4475,4419]],[[4441,4373,4475]],[[4768,4767,4639]],[[4768,4636,4767]],[[4724,4721,4790]],[[4720,4387,4760]],[[4645,4573,4604]],[[4645,4469,4573]],[[4722,4502,4759]],[[4503,4723,4501]],[[4748,4631,4630]],[[4749,4753,4631]],[[4506,4713,4504]],[[4492,4494,4493]],[[4468,4734,4603]],[[4571,4546,4734]],[[4615,4584,4583]],[[4648,4669,4584]],[[4376,4378,4453]],[[4452,4698,4378]],[[4394,4393,4378]],[[4395,4554,4393]],[[4791,4504,4712]],[[4513,4494,4713]],[[4390,4601,4391]],[[4390,4469,4601]],[[4684,4782,4687]],[[4680,4690,4691]],[[4765,4789,4506]],[[4788,4775,4774]],[[4514,4763,4765]],[[4764,4785,4788]],[[4786,4792,4763]],[[4786,4785,4792]],[[4509,4576,4564]],[[4577,4646,4421]],[[4561,4550,4780]],[[4560,4773,4550]],[[4550,4381,4780]],[[4550,4552,4381]],[[4519,4774,4471]],[[4519,4488,4774]],[[4599,4580,4579]],[[4600,4597,4580]],[[4514,4765,4506]],[[4763,4792,4764]],[[4726,4501,4725]],[[4737,4502,4501]],[[4723,4725,4501]],[[4708,4729,4725]],[[4727,4726,4729]],[[4737,4501,4726]],[[4502,4733,4759]],[[4502,4737,4733]],[[4382,4408,4383]],[[4382,4714,4407]],[[4747,4619,4533]],[[4619,4622,4620]],[[4776,4669,4610]],[[4647,4584,4669]],[[4484,4536,4651]],[[4753,4749,4649]],[[4554,4643,4681]],[[4643,4642,4756]],[[4716,4569,4568]],[[4757,4756,4570]],[[4506,4513,4713]],[[4506,4489,4513]],[[4757,4569,4681]],[[4757,4570,4569]],[[4762,4748,4594]],[[4750,4749,4748]],[[4762,4738,4748]],[[4751,4727,4707]],[[4759,4470,4447]],[[4759,4733,4470]],[[4448,4357,4359]],[[4470,4496,4357]],[[4793,4705,4476]],[[4790,4721,4758]],[[4718,4706,4705]],[[4721,4720,4760]],[[4616,4629,4596]],[[4631,4753,4535]],[[4636,4662,4767]],[[4637,4639,4662]],[[4576,4508,4577]],[[4510,4555,4743]],[[4673,4613,4615]],[[4525,4614,4613]],[[4763,4514,3975]],[[4515,4762,3975]],[[4621,4541,4543]],[[4622,4696,4541]],[[4577,4394,4378]],[[4578,4395,4394]],[[4794,4758,4477]],[[4706,4790,4758]],[[4721,4760,4758]],[[4387,4487,4760]],[[4722,4503,4502]],[[4722,4724,4503]],[[4719,4778,4717]],[[4711,4483,4702]],[[4613,4632,4525]],[[4548,4557,4559]],[[4673,4632,4613]],[[4673,4548,4632]],[[4667,4672,4527]],[[4540,4697,4677]],[[4526,4667,4527]],[[4666,4547,4783]],[[4533,4619,4534]],[[4747,4622,4619]],[[4566,4626,4598]],[[4566,4391,4626]],[[4453,4456,4455]],[[4404,4475,4456]],[[4512,4482,4491]],[[4340,4487,4482]],[[4680,4742,4768]],[[4686,4634,4742]],[[4747,4696,4622]],[[4747,4695,4696]],[[4793,4476,4717]],[[4706,4794,4476]],[[4611,4590,4542]],[[4610,4648,4590]],[[4784,4515,4791]],[[4712,4784,4791]],[[4568,4770,4714]],[[4380,4571,4392]],[[4417,4398,4397]],[[4417,4367,4398]],[[4505,4515,4514]],[[4505,4791,4515]],[[4766,4784,4712]],[[4766,4498,4500]],[[4583,4582,4549]],[[4647,4776,4582]],[[4498,4492,4486]],[[4713,4494,4492]],[[3975,4786,4763]],[[3975,4472,4786]],[[4695,4697,4699]],[[4682,4527,4672]],[[4670,4672,4667]],[[4795,4682,4672]],[[4704,4708,4725]],[[4651,4650,4708]],[[4784,4500,4732]],[[4784,4766,4500]],[[4748,4595,4594]],[[4625,4630,4752]],[[4748,4625,4595]],[[4748,4630,4625]],[[4727,4739,4728]],[[4761,4732,4516]],[[4499,4517,4500]],[[4730,4761,4516]],[[4709,4517,4499]],[[4731,4730,4517]],[[4683,4684,4687]],[[4782,4680,4691]],[[4686,4782,4684]],[[4686,4680,4782]],[[4361,4562,4362]],[[4408,4407,4562]],[[4778,4793,4717]],[[4778,4710,4793]],[[4715,4679,4681]],[[4773,4680,4679]],[[4379,4796,4380]],[[4754,4545,4544]],[[4571,4544,4546]],[[4796,4754,4544]],[[4549,4783,4547]],[[4783,4776,4671]],[[4667,4666,4670]],[[4668,4771,4666]],[[4793,4710,4705]],[[4778,4777,4711]],[[4778,4711,4710]],[[4777,4664,4769]],[[4682,4697,4539]],[[4682,4795,4697]],[[4490,4787,4488]],[[4788,4785,4775]],[[4789,4788,4787]],[[4789,4764,4788]],[[4679,4772,4773]],[[4551,4550,4772]],[[4485,4704,4703]],[[4651,4708,4704]],[[4559,4523,4525]],[[4559,4558,4523]],[[4738,4751,4750]],[[4738,4761,4739]],[[4753,4536,4535]],[[4649,4651,4536]],[[4645,4654,4606]],[[4604,4600,4654]],[[4564,4576,4421]],[[4509,4508,4576]],[[4566,4380,4392]],[[4796,4544,4380]],[[4508,4743,4553]],[[4555,4644,4743]],[[4578,4553,4395]],[[4743,4554,4553]],[[4699,4697,4795]],[[4695,4677,4697]],[[4734,4468,4571]],[[4603,4469,4468]],[[4728,4739,4730]],[[4727,4751,4738]],[[4648,4615,4614]],[[4648,4584,4615]],[[4672,4671,4795]],[[4670,4783,4671]],[[4781,4561,4780]],[[4700,4689,4561]],[[4774,4472,4471]],[[4775,4785,4472]],[[4349,4369,4360]],[[4413,4412,4369]],[[4718,4790,4706]],[[4718,4724,4790]],[[4741,4521,4575]],[[4741,4605,4521]],[[4557,4781,4780]],[[4563,4700,4781]],[[4586,4616,4596]],[[4752,4630,4616]],[[4596,4629,4535]],[[4616,4630,4629]],[[4712,4504,4713]],[[4791,4505,4504]],[[4624,4628,4592]],[[4532,4592,4628]],[[4587,4627,4641]],[[4587,4532,4627]],[[4616,4623,4752]],[[4616,4585,4623]],[[4626,4609,4598]],[[4626,4602,4609]],[[4409,4457,4410]],[[4617,4608,4522]],[[4797,4745,4457]],[[4409,4411,4430]],[[4773,4690,4680]],[[4773,4560,4690]],[[4695,4699,4611]],[[4795,4671,4676]],[[4797,4457,4458]],[[4467,4349,4457]],[[4476,4794,4477]],[[4706,4758,4794]],[[4748,4738,4750]],[[4762,4761,4738]],[[4407,4379,4562]],[[4407,4770,4379]],[[4458,4607,4655]],[[4458,4602,4607]],[[4369,4364,4360]],[[4369,4365,4364]],[[4596,4537,4589]],[[4536,4633,4537]],[[4625,4624,4595]],[[4623,4628,4624]],[[4745,4410,4457]],[[4522,4411,4410]],[[4429,4409,4430]],[[4467,4457,4409]],[[4459,4461,4460]],[[4459,4520,4461]],[[4681,4643,4757]],[[4554,4644,4643]],[[4624,4593,4595]],[[4620,4594,4593]],[[4617,4797,4458]],[[4617,4745,4797]],[[4610,4676,4776]],[[4699,4795,4676]],[[4483,4769,4633]],[[4656,4589,4663]],[[4777,4769,4711]],[[4664,4663,4769]],[[4657,4638,4637]],[[4657,4665,4638]],[[4765,4764,4789]],[[4792,4785,4764]],[[4776,4783,4582]],[[4670,4666,4783]],[[4796,4770,4754]],[[4796,4379,4770]],[[4798,4345,4344]],[[4347,4798,4344]],[[4799,4347,4348]],[[4800,4365,4370]],[[4404,4800,4370]],[[4801,4453,4554]],[[4681,4801,4554]],[[4802,4681,4680]],[[4768,4802,4680]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c16cf36-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:22.000"},"geometry":[{"boundaries":[[[4803,4804,4805]],[[4806,4807,4808]],[[4809,4810,4811]],[[4812,4813,4810]],[[4810,4814,4815]],[[4816,4817,4814]],[[4818,4819,4816]],[[4820,4821,4818]],[[4822,4823,4824]],[[4825,4826,4820]],[[4827,4828,4829]],[[4830,4831,4832]],[[4828,4833,4834]],[[4831,4835,4836]],[[4837,4831,4838]],[[4836,4825,4831]],[[4839,4840,4841]],[[4839,4842,4840]],[[4839,4843,4842]],[[4844,4845,4839]],[[4846,4847,4848]],[[4839,4849,4844]],[[4850,4849,4839]],[[4851,4852,4849]],[[4853,4854,4850]],[[4855,4853,4850]],[[4848,4855,4850]],[[4848,4856,4855]],[[4857,4858,4848]],[[4846,4859,4860]],[[4861,4862,4848]],[[4863,4846,4860]],[[4864,4865,4847]],[[4866,4864,4847]],[[4848,4867,4846]],[[4868,4869,4866]],[[4870,4871,4868]],[[4872,4870,4868]],[[4872,4873,4870]],[[4874,4875,4872]],[[4874,4876,4875]],[[4877,4878,4879]],[[4879,4878,4880]],[[4880,4878,4881]],[[4882,4880,4881]],[[4866,4883,4864]],[[4884,4885,4886]],[[4887,4888,4889]],[[4890,4891,4892]],[[4893,4894,4895]],[[4896,4885,4884]],[[4884,4897,4898]],[[4899,4900,4901]],[[4902,4903,4904]],[[4905,4906,4907]],[[4908,4909,4910]],[[4911,4912,4904]],[[4907,4913,4914]],[[4908,4915,4916]],[[4917,4918,4919]],[[4920,4921,4922]],[[4923,4924,4919]],[[4913,4903,4902]],[[4925,4890,4926]],[[4927,4928,4889]],[[4902,4929,4913]],[[4930,4931,4932]],[[4933,4934,4935]],[[4936,4937,4938]],[[4923,4919,4939]],[[4940,4941,4942]],[[4936,4943,4937]],[[4878,4944,4945]],[[4946,4947,4941]],[[4948,4949,4881]],[[4950,4874,4878]],[[4881,4945,4948]],[[4944,4874,4872]],[[4868,4951,4872]],[[4952,4944,4951]],[[4953,4951,4954]],[[4868,4871,4869]],[[4846,4863,4847]],[[4862,4857,4848]],[[4847,4861,4848]],[[4955,4956,4957]],[[4958,4959,4841]],[[4960,4961,4962]],[[4963,4964,4965]],[[4966,4967,4968]],[[4820,4969,4827]],[[4970,4971,4972]],[[4973,4974,4975]],[[4820,4976,4821]],[[4977,4837,4978]],[[4979,4980,4981]],[[4982,4983,4984]],[[4985,4986,4827]],[[4987,4988,4989]],[[4990,4991,4830]],[[4992,4838,4833]],[[4993,4994,4995]],[[4994,4996,4997]],[[4998,4999,5000]],[[4836,5001,4825]],[[4824,5002,5003]],[[4822,4824,5003]],[[5004,4979,5005]],[[5005,5006,5004]],[[5007,5008,4972]],[[4969,5009,4827]],[[5010,5011,5012]],[[5013,5014,4980]],[[5005,5015,5006]],[[4824,5016,5017]],[[5018,5019,5020]],[[5021,5022,5023]],[[5024,5025,5026]],[[4831,4830,4835]],[[5027,5010,5028]],[[5029,5030,5031]],[[4830,5032,5033]],[[4838,4978,4837]],[[5034,5016,4824]],[[5035,5016,5034]],[[5036,5037,5029]],[[5038,4978,5039]],[[5000,4972,5030]],[[5040,4983,4989]],[[5041,4837,4977]],[[5030,5037,4998]],[[4998,5000,5030]],[[5042,4984,5031]],[[5038,5041,4977]],[[4984,4983,5029]],[[4988,4957,4990]],[[5043,5044,5045]],[[5046,5008,5026]],[[5047,5048,5049]],[[5050,5051,5052]],[[4999,5053,5054]],[[5055,5035,5056]],[[4823,5034,4824]],[[5054,5053,5035]],[[5015,5057,5058]],[[5046,5059,5008]],[[5041,4832,4837]],[[4830,4991,5060]],[[5061,5008,5007]],[[5006,5062,5063]],[[4823,4822,5000]],[[4972,5008,5030]],[[4970,4822,5064]],[[5065,5048,5019]],[[5066,4822,5003]],[[4970,5000,4822]],[[5067,5068,4983]],[[4998,5037,5068]],[[5069,5070,5071]],[[5052,5072,4804]],[[5073,5074,5075]],[[5076,5077,5078]],[[5052,5051,5072]],[[5079,5080,5081]],[[5082,5083,5072]],[[5084,5069,5077]],[[5049,4994,5047]],[[5072,5051,5082]],[[5085,5086,5087]],[[4810,4815,4811]],[[5085,5087,4969]],[[5088,4996,5089]],[[4803,5075,4804]],[[4803,5073,5075]],[[4984,5029,5031]],[[4983,5036,5029]],[[4994,4993,5090]],[[5078,5077,5091]],[[5020,5092,5090]],[[5019,5048,5092]],[[5090,5047,4994]],[[5092,5048,5047]],[[5093,5094,5095]],[[4811,4804,5072]],[[5096,4929,5097]],[[5098,4919,4918]],[[5066,5064,4822]],[[5099,4970,5064]],[[5100,5028,5101]],[[5053,4998,5068]],[[5102,5027,5028]],[[5017,5002,4824]],[[5103,4820,4826]],[[4986,4833,4828]],[[5104,5090,4993]],[[5092,5047,5090]],[[5105,5106,5107]],[[5108,4904,5109]],[[5110,5111,5112]],[[5113,5114,5115]],[[5116,5117,5118]],[[5119,5120,5121]],[[4838,4992,5122]],[[4833,4986,4992]],[[5123,5124,5125]],[[5126,4894,5127]],[[4995,5128,4993]],[[5129,5130,5131]],[[4813,4812,5128]],[[5076,5072,5083]],[[5049,4996,4994]],[[4813,5132,4810]],[[5098,5133,4943]],[[5134,5096,4886]],[[5032,4974,5135]],[[5136,4956,4974]],[[5064,4806,5099]],[[5137,5138,5139]],[[4807,5137,5139]],[[5019,5092,5020]],[[5139,5138,5140]],[[5137,5003,5138]],[[4820,4818,4969]],[[4819,4817,4816]],[[5041,4989,4990]],[[4988,4955,4957]],[[4956,5060,4991]],[[4956,5136,5060]],[[5059,5042,5031]],[[4982,4989,4983]],[[5141,5134,5142]],[[4895,4896,5143]],[[5068,5036,4983]],[[5068,5037,5036]],[[5031,5030,5008]],[[5029,5037,5030]],[[4911,4904,4903]],[[5144,4899,5145]],[[4901,4900,4912]],[[4898,5146,5147]],[[5148,5149,5145]],[[5109,4904,4900]],[[5099,4971,4970]],[[5099,5150,4971]],[[4829,4820,4827]],[[5103,4976,4820]],[[5151,5152,5049]],[[5153,5027,5102]],[[5154,5049,5048]],[[5101,5155,5156]],[[5157,5100,5158]],[[5154,5016,5158]],[[5156,5089,5101]],[[4997,5132,4813]],[[4929,4914,4913]],[[5117,5159,5118]],[[5160,5161,5119]],[[5162,4939,4919]],[[5163,5164,5165]],[[5165,5164,5166]],[[5141,5167,5134]],[[5160,4929,5167]],[[5168,5169,5170]],[[5171,5045,5172]],[[5026,5170,5173]],[[5169,5174,5024]],[[5080,5079,5018]],[[5019,5138,5003]],[[5091,5080,5175]],[[5020,5090,5131]],[[5018,5140,5019]],[[5176,5177,5139]],[[5138,5019,5140]],[[5003,5002,5065]],[[5090,5104,5129]],[[4993,5128,4812]],[[4993,5094,5104]],[[5178,4809,5095]],[[4886,5097,5179]],[[4886,5180,5142]],[[5143,4893,4895]],[[5112,5117,5180]],[[4990,4989,4988]],[[5040,5067,4983]],[[5181,5182,5183]],[[5184,5142,5185]],[[5131,5175,5080]],[[5177,4808,5139]],[[5078,5091,5175]],[[5081,4805,5079]],[[5186,5187,4893]],[[5159,5188,5189]],[[4896,4895,4885]],[[4894,5126,5190]],[[5080,5018,5020]],[[5139,4808,4807]],[[5045,5044,5172]],[[4987,4989,4982]],[[5097,4929,4902]],[[4914,5191,4907]],[[5077,5081,5091]],[[5077,5069,5081]],[[5192,5193,5120]],[[5192,5194,5193]],[[5195,5196,5197]],[[5198,5164,5163]],[[5078,5093,5076]],[[4809,4811,5072]],[[5173,5169,5024]],[[5199,5062,5200]],[[4806,4808,5099]],[[5201,4964,4963]],[[5099,4808,5150]],[[5202,4964,5203]],[[5079,5177,5176]],[[5079,4805,5177]],[[5023,5022,5204]],[[5168,5061,5205]],[[5026,5173,5024]],[[5170,5169,5173]],[[5200,5062,5206]],[[5170,5026,5061]],[[5017,5154,5048]],[[5100,5157,5102]],[[5155,5101,5028]],[[5089,5152,5151]],[[5207,5208,5192]],[[5207,5167,5141]],[[5123,5209,5124]],[[5125,5210,5211]],[[5212,5213,5214]],[[5214,5184,5185]],[[5215,5216,5217]],[[5218,5219,5220]],[[5075,5052,4804]],[[5075,5074,5050]],[[5075,5050,5052]],[[5074,5070,5082]],[[5097,4886,5096]],[[5112,5111,5159]],[[5085,4816,5086]],[[4819,4821,5221]],[[4901,4912,5222]],[[4900,4904,4912]],[[5223,5222,5224]],[[5223,4901,5222]],[[4995,4813,5128]],[[5086,4816,4810]],[[4809,4812,4810]],[[5094,4993,4812]],[[4994,4997,4995]],[[5049,5152,4996]],[[5112,5159,5117]],[[5213,5212,5225]],[[5042,5059,5171]],[[5031,5008,5059]],[[5149,5179,5108]],[[5097,4902,5108]],[[5145,5109,5144]],[[5108,4902,4904]],[[5032,5136,4974]],[[5032,5060,5136]],[[5226,5124,5209]],[[5220,5227,5228]],[[5229,5106,5230]],[[5105,5124,5226]],[[5225,5231,5232]],[[5233,5234,5232]],[[5235,5236,5230]],[[5114,4947,4946]],[[5237,5238,5239]],[[5240,5241,5209]],[[5239,5242,5237]],[[5241,5230,5226]],[[5237,5243,5238]],[[5244,5236,5235]],[[5245,5246,5217]],[[4942,5247,5238]],[[5248,5245,5217]],[[5249,5115,4946]],[[5250,5107,5106]],[[5251,5252,5210]],[[5253,5254,5255]],[[5207,5160,5167]],[[5194,5256,5193]],[[5257,5253,5258]],[[5254,5253,5257]],[[5259,5260,4920]],[[5184,5261,5207]],[[5183,5182,5194]],[[5261,5262,5208]],[[5183,5194,5263]],[[5081,5069,5264]],[[5077,5083,5084]],[[5082,5070,5083]],[[5070,5069,5084]],[[5083,5070,5084]],[[5074,5071,5070]],[[5154,5151,5049]],[[5089,5265,5088]],[[5089,4996,5152]],[[5088,5132,4997]],[[5149,4886,5179]],[[4885,5110,5112]],[[5140,5176,5139]],[[4805,4808,5177]],[[5266,4940,5243]],[[5267,5248,5268]],[[5122,5269,4978]],[[5056,5068,5067]],[[5038,5067,5040]],[[5039,5055,5056]],[[5041,5040,4989]],[[5041,5038,5040]],[[5046,5026,5025]],[[5008,5061,5026]],[[4942,5244,5247]],[[5270,5271,5272]],[[5111,5188,5159]],[[5211,5210,5252]],[[5118,5273,5212]],[[5231,5233,5232]],[[5118,5212,5116]],[[5214,5234,5261]],[[5273,5225,5212]],[[5232,5234,5213]],[[4970,4972,5000]],[[4971,5007,4972]],[[5274,5275,5276]],[[5160,5119,4914]],[[5142,5134,4886]],[[5167,5096,5134]],[[5124,5105,5210]],[[5277,5278,5252]],[[5187,5216,5218]],[[5219,5240,5220]],[[5279,5242,5239]],[[5242,5216,5243]],[[5147,5143,4884]],[[5280,5281,5282]],[[5283,4916,5284]],[[5285,5224,5286]],[[5287,5283,5284]],[[5288,5289,5253]],[[5282,5187,5186]],[[5127,4894,4893]],[[5290,5145,4899]],[[5290,5146,5291]],[[5034,5054,5035]],[[5034,4823,4999]],[[5190,5228,5188]],[[5227,5125,5211]],[[4915,4908,5292]],[[4916,5283,5293]],[[4916,4909,4908]],[[5294,5191,5295]],[[5296,5297,5197]],[[5298,5256,5194]],[[5299,5300,5301]],[[5298,5254,5256]],[[4887,5302,5301]],[[5255,5288,5253]],[[5303,5165,5166]],[[5304,4935,4934]],[[5305,5306,5307]],[[5308,5304,4934]],[[5307,5233,5231]],[[5278,5231,5225]],[[5309,5277,5251]],[[5233,5306,5182]],[[5181,5233,5182]],[[5306,5298,5182]],[[5263,5194,5310]],[[5182,5298,5194]],[[5255,5311,5288]],[[5312,4934,5313]],[[5250,5307,5314]],[[5250,5229,5113]],[[5305,5315,5311]],[[4934,5312,5308]],[[5255,5298,5306]],[[5255,5254,5298]],[[5311,5289,5288]],[[5316,5317,5318]],[[5258,5121,5193]],[[5295,5191,5119]],[[5319,4931,4907]],[[5312,5289,5311]],[[5094,5178,5095]],[[5094,4812,5178]],[[5110,5188,5111]],[[5110,5190,5188]],[[4886,5112,5180]],[[4886,4885,5112]],[[4978,5038,4977]],[[5039,5067,5038]],[[5041,4990,4832]],[[4830,5060,5032]],[[4957,4991,4990]],[[4957,4956,4991]],[[5181,5262,5261]],[[5208,5263,5310]],[[5320,4931,5319]],[[4903,4913,4907]],[[5131,5080,5020]],[[5091,5081,5080]],[[4920,5319,5295]],[[4907,5191,5294]],[[5292,4943,5321]],[[4933,5162,5322]],[[5095,4809,5072]],[[5178,4812,4809]],[[5018,5176,5140]],[[5018,5079,5176]],[[5133,5323,5321]],[[5284,4916,4915]],[[4887,4889,5302]],[[5255,5306,5311]],[[5305,5311,5306]],[[5308,5324,5304]],[[5325,4926,4890]],[[5326,5327,5328]],[[5024,5046,5025]],[[5024,5174,5046]],[[5109,5145,5149]],[[5329,5146,4897]],[[4886,5149,4884]],[[5329,5330,5291]],[[5189,5211,5118]],[[5278,5314,5231]],[[5331,5332,5224]],[[5286,4912,4911]],[[5113,5307,5250]],[[5306,5233,5307]],[[5088,4810,5132]],[[4816,4814,4810]],[[5010,4985,5009]],[[5087,5086,5265]],[[5153,5011,5027]],[[4992,4986,4985]],[[4985,5010,4992]],[[5155,5028,5010]],[[5016,5055,5102]],[[5011,5010,5027]],[[4838,5122,4978]],[[5012,5011,5153]],[[4992,5012,5122]],[[4992,5010,5012]],[[5172,5333,4987]],[[4982,4984,5042]],[[5292,4937,4943]],[[5334,5335,5317]],[[5336,5334,5317]],[[4910,4930,5337]],[[5338,5318,5335]],[[4910,4909,5339]],[[5063,5340,5004]],[[4808,4805,5341]],[[5086,5088,5265]],[[5086,4810,5088]],[[5342,5331,5274]],[[5133,5321,4943]],[[5098,4918,5287]],[[4918,4917,5343]],[[5210,5105,5309]],[[5250,5314,5309]],[[5309,5314,5277]],[[5307,5231,5314]],[[5252,5278,5273]],[[5277,5314,5278]],[[4942,4941,5244]],[[5344,5271,4941]],[[5117,5116,5185]],[[5184,5141,5142]],[[5234,5181,5261]],[[5183,5263,5262]],[[5233,5181,5234]],[[5183,5262,5181]],[[5259,5289,5260]],[[5311,5315,5312]],[[5289,5345,4921]],[[5345,5313,5338]],[[4920,4922,5346]],[[4922,5347,5348]],[[5294,5295,5319]],[[5348,5347,5338]],[[4922,4921,5347]],[[5260,5289,4921]],[[5056,5053,5068]],[[5054,5034,4999]],[[5294,5319,4907]],[[5339,5349,4910]],[[5350,5316,5318]],[[5351,4921,5345]],[[5352,5353,5354]],[[5355,5196,5163]],[[5123,5125,5227]],[[5124,5210,5125]],[[5035,5055,5016]],[[5153,5122,5012]],[[5344,5267,5268]],[[5248,5271,5268]],[[5042,5172,4982]],[[4955,4988,4987]],[[4890,5305,4891]],[[5324,4935,5304]],[[5350,4938,5316]],[[4937,5292,5336]],[[5196,5165,5354]],[[5356,4939,5162]],[[5246,5357,5217]],[[5246,5245,5266]],[[5357,5215,5217]],[[5243,4942,5238]],[[4834,4838,4831]],[[5001,4826,4825]],[[5326,5163,5195]],[[5296,5196,5358]],[[4971,5150,5007]],[[4808,5341,5061]],[[4995,4997,4813]],[[4996,5088,4997]],[[5118,5211,5273]],[[5359,5228,5211]],[[5209,5241,5226]],[[5230,5106,5226]],[[5346,4932,5319]],[[5348,5338,5337]],[[5247,5360,5241]],[[5236,5229,5230]],[[5163,5165,5355]],[[5303,5356,5353]],[[5258,5361,5121]],[[5260,4921,4920]],[[5319,4920,5346]],[[5361,5259,4920]],[[5361,5295,5121]],[[5361,4920,5295]],[[5126,5218,5220]],[[5219,5238,5241]],[[5239,5219,5218]],[[5239,5238,5219]],[[4937,5316,4938]],[[5312,5345,5289]],[[4937,5317,5316]],[[5335,5337,5338]],[[5214,5116,5212]],[[5185,5180,5117]],[[5362,5323,5098]],[[4917,4924,5275]],[[5287,5362,5098]],[[5323,4915,5321]],[[5098,5323,5133]],[[5362,4915,5323]],[[4884,5143,4896]],[[5363,5281,5280]],[[5064,5066,4806]],[[5003,5137,4807]],[[5184,5207,5141]],[[5208,5310,5192]],[[5213,5225,5232]],[[5273,5278,5225]],[[5322,5350,5313]],[[5317,5335,5318]],[[4907,4931,4905]],[[4906,4903,4907]],[[4930,5364,4931]],[[4911,4906,5364]],[[5364,4906,4905]],[[4911,4903,4906]],[[5234,5214,5213]],[[5261,5184,5214]],[[4900,5144,5109]],[[4900,4899,5144]],[[5218,5216,5242]],[[5215,5243,5216]],[[5333,4975,4987]],[[4974,4956,4975]],[[5357,5243,5215]],[[5357,5246,5266]],[[5016,5157,5158]],[[5102,5028,5100]],[[5365,5282,5281]],[[5366,5216,5282]],[[4893,5187,5127]],[[5282,5216,5187]],[[5149,5108,5109]],[[5179,5097,5108]],[[4933,5322,4934]],[[5162,4936,5322]],[[5338,5313,5318]],[[5322,4938,5350]],[[4915,5292,5321]],[[4908,4910,5336]],[[4937,5336,5317]],[[5292,4908,5336]],[[5187,5218,5127]],[[5279,5239,5218]],[[4807,5066,5003]],[[4807,4806,5066]],[[4932,5348,5337]],[[5347,5351,5338]],[[5346,5348,4932]],[[5346,4922,5348]],[[5154,5017,5016]],[[5048,5065,5017]],[[5359,5188,5228]],[[5189,5118,5159]],[[5333,4973,4975]],[[5135,4974,4973]],[[5217,5366,5281]],[[5217,5216,5366]],[[5366,5365,5281]],[[5366,5282,5365]],[[5073,5071,5074]],[[5264,5069,5071]],[[4805,5073,4803]],[[4805,5071,5073]],[[5211,5252,5273]],[[5251,5277,5252]],[[4932,5320,5319]],[[4932,5337,4930]],[[5106,5229,5250]],[[5236,5244,5114]],[[5236,5114,5113]],[[5244,4941,4947]],[[5207,5161,5160]],[[5119,5121,5295]],[[5207,5192,5367]],[[5193,5121,5120]],[[5367,5192,5120]],[[5310,5194,5192]],[[5210,5309,5251]],[[5107,5250,5309]],[[5368,5342,5276]],[[5293,4909,4916]],[[5274,5283,5287]],[[5369,5368,5224]],[[5119,5367,5120]],[[5161,5207,5367]],[[5085,4818,4816]],[[5085,4969,4818]],[[4895,5190,4885]],[[5190,5126,5220]],[[5322,5313,4934]],[[5350,5318,5313]],[[5257,5258,5193]],[[5253,5259,5258]],[[5357,5266,5243]],[[5245,5248,5267]],[[4914,5119,5191]],[[5161,5367,5119]],[[5150,5061,5007]],[[5150,4808,5061]],[[5244,4947,5114]],[[4941,5271,5270]],[[5261,5208,5207]],[[5262,5263,5208]],[[5218,5126,5127]],[[5220,5228,5190]],[[5305,5308,5315]],[[5305,5324,5308]],[[5342,5274,5276]],[[5287,4918,5274]],[[5325,5327,5370]],[[5326,5328,5371]],[[5370,5195,5197]],[[5355,5165,5196]],[[5106,5105,5226]],[[5107,5309,5105]],[[5322,4936,4938]],[[5162,4919,4936]],[[5372,5058,5057]],[[5373,5374,5206]],[[5169,5168,5204]],[[4980,5341,5013]],[[5000,4999,4823]],[[4998,5053,4999]],[[4905,4931,5364]],[[5320,4932,4931]],[[4890,5324,5305]],[[4890,4925,5324]],[[5274,5343,5275]],[[5274,4918,5343]],[[5375,5372,5057]],[[5058,5376,5373]],[[5274,5293,5283]],[[5349,4911,5364]],[[5050,5082,5051]],[[5050,5074,5082]],[[5214,5185,5116]],[[5142,5180,5185]],[[5147,5363,5143]],[[5147,5281,5363]],[[5016,5102,5157]],[[5055,5269,5153]],[[5130,5078,5175]],[[5076,5083,5077]],[[5256,5257,5193]],[[5256,5254,5257]],[[4832,4831,4837]],[[4834,4833,4838]],[[5090,5129,5131]],[[5104,5094,5129]],[[5299,5327,5300]],[[5299,5328,5327]],[[5151,5100,5101]],[[5154,5158,5100]],[[5006,5063,5004]],[[5021,5205,5063]],[[5205,5021,5023]],[[5063,5062,5021]],[[5204,5022,5169]],[[5021,5062,5022]],[[5327,5195,5370]],[[5377,5358,5378]],[[5039,5269,5055]],[[5039,4978,5269]],[[5342,5332,5331]],[[5368,5223,5224]],[[5293,5379,4909]],[[5286,5222,4912]],[[5331,5224,5285]],[[5332,5369,5224]],[[5380,5372,5375]],[[5135,5376,5372]],[[5003,5065,5019]],[[5002,5017,5065]],[[5378,4925,4926]],[[5354,5165,5352]],[[5271,5344,5268]],[[5266,5245,5267]],[[4975,4955,4987]],[[4975,4956,4955]],[[5372,5376,5058]],[[5381,5382,5333]],[[5241,5360,5235]],[[5247,5244,5360]],[[5143,5186,4893]],[[5280,5282,5186]],[[5379,5331,5285]],[[5293,5274,5331]],[[4954,5383,4860]],[[4954,4951,5383]],[[5148,5384,4897]],[[5330,5145,5290]],[[5174,5199,5043]],[[5043,5381,5044]],[[5204,5168,5023]],[[5061,5341,5205]],[[5023,5168,5205]],[[5170,5061,5168]],[[5006,5015,5062]],[[5333,5382,4973]],[[5062,5015,5206]],[[5005,5057,5015]],[[5022,5062,5199]],[[5382,5376,5135]],[[5385,5303,5166]],[[5385,4939,5356]],[[4878,4874,4944]],[[4950,4876,4874]],[[5143,5280,5186]],[[5143,5363,5280]],[[5199,5381,5043]],[[5382,5374,5376]],[[5338,5351,5345]],[[5347,4921,5351]],[[5148,5145,5329]],[[5330,5290,5291]],[[4982,5172,4987]],[[5044,5381,5333]],[[5386,5387,5201]],[[4961,5388,4867]],[[4817,4819,5221]],[[4818,4821,4819]],[[4909,5379,5285]],[[5293,5331,5379]],[[5258,5259,5361]],[[5253,5289,5259]],[[5046,5171,5059]],[[5046,5045,5171]],[[5378,4933,4925]],[[4935,5324,4925]],[[5228,5227,5211]],[[5220,5240,5123]],[[5220,5123,5227]],[[5240,5209,5123]],[[5146,5329,5291]],[[5329,5145,5330]],[[5384,5329,4897]],[[5384,5148,5329]],[[4943,4919,5098]],[[4943,4936,4919]],[[5343,4917,5275]],[[4919,4924,4917]],[[4884,4898,5147]],[[4897,5146,4898]],[[5378,5354,4933]],[[5353,5162,5354]],[[5389,5149,5148]],[[5389,4884,5149]],[[4897,5389,5148]],[[4897,4884,5389]],[[5055,5153,5102]],[[5269,5122,5153]],[[5131,5130,5175]],[[5093,5095,5076]],[[5241,5235,5230]],[[5360,5244,5235]],[[5100,5151,5154]],[[5101,5089,5151]],[[5045,5174,5043]],[[5200,5206,5374]],[[5339,5286,4911]],[[5224,5222,5286]],[[4891,5249,5272]],[[4946,4941,5270]],[[4885,5190,5110]],[[4895,4894,5190]],[[4944,4872,4951]],[[4875,4873,4872]],[[5290,4901,5223]],[[5290,4899,4901]],[[5010,5156,5155]],[[5265,5089,5156]],[[5305,5115,4891]],[[5305,5307,5115]],[[5236,5113,5229]],[[5115,5307,5113]],[[5087,5009,4969]],[[4986,4828,4827]],[[5285,5339,4909]],[[5285,5286,5339]],[[5335,4910,5337]],[[5349,5364,4930]],[[5284,5362,5287]],[[5284,4915,5362]],[[4963,5390,5391]],[[4841,5392,4839]],[[5393,5394,5395]],[[5396,5397,5388]],[[5398,5399,5386]],[[5400,4840,5401]],[[4850,4851,4849]],[[4854,4852,4851]],[[5167,4929,5096]],[[5160,4914,4929]],[[5199,5374,5381]],[[5206,5015,5373]],[[5058,5373,5015]],[[5376,5374,5373]],[[4825,4829,4828]],[[4825,4820,4829]],[[5342,5369,5332]],[[5342,5368,5369]],[[4973,5382,5135]],[[5381,5374,5382]],[[5303,5352,5165]],[[5303,5353,5352]],[[4863,4866,4847]],[[4869,4883,4866]],[[5396,5388,5394]],[[5402,4867,5388]],[[5249,4946,5270]],[[5115,5114,4946]],[[5205,5340,5063]],[[5403,5341,4979]],[[5009,4985,4827]],[[5009,5156,5010]],[[5404,5405,4967]],[[5406,5380,5014]],[[5265,5009,5087]],[[5265,5156,5009]],[[5359,5189,5188]],[[5359,5211,5189]],[[5340,4979,5004]],[[5340,5205,5403]],[[4892,5300,4890]],[[5300,5327,5325]],[[4850,4839,4962]],[[4843,5407,4842]],[[5408,5201,5387]],[[4958,4841,5400]],[[5386,5409,5387]],[[5410,5411,5412]],[[5039,5056,5067]],[[5035,5053,5056]],[[4910,5349,4930]],[[5339,4911,5349]],[[5413,4980,5014]],[[5414,5415,5416]],[[5417,5401,5418]],[[5013,5341,5419]],[[5334,4910,5335]],[[5334,5336,4910]],[[4881,4878,4945]],[[4877,4950,4878]],[[5325,5377,4926]],[[5196,5354,5420]],[[5397,5402,5388]],[[5397,4867,5402]],[[5421,4959,4958]],[[5422,5394,5388]],[[5392,4959,5423]],[[5395,5394,5424]],[[5425,5421,4958]],[[5423,5424,5426]],[[5400,4841,4840]],[[5426,5424,5422]],[[5427,5391,5421]],[[5391,5423,5421]],[[4839,5392,4962]],[[5424,5394,5422]],[[4960,5392,5426]],[[4841,4959,5392]],[[4863,5428,4866]],[[5383,4951,4868]],[[5022,5199,5169]],[[5200,5374,5199]],[[5046,5174,5045]],[[5169,5199,5174]],[[5404,5013,5419]],[[5404,5406,5013]],[[4890,5300,5325]],[[4892,4927,4888]],[[5409,5410,5387]],[[5202,5429,5430]],[[5386,5201,5398]],[[5203,4964,5201]],[[4851,4850,4854]],[[4962,4867,4850]],[[5421,5423,4959]],[[5390,5395,5423]],[[4960,5426,5422]],[[5392,5423,5426]],[[5431,5432,5415]],[[5202,5203,5408]],[[5387,5410,5408]],[[5416,5432,5430]],[[5171,5172,5042]],[[5044,5333,5172]],[[5433,4847,4865]],[[5433,4861,4847]],[[5404,4966,5406]],[[5380,5135,5372]],[[5406,4966,5434]],[[5404,5419,5405]],[[5418,4967,5415]],[[4966,5404,4967]],[[4968,5418,5401]],[[4968,4967,5418]],[[5393,4963,4965]],[[5393,5395,5390]],[[5340,5403,4979]],[[5205,5341,5403]],[[5413,4981,4980]],[[4979,5341,4980]],[[5005,4981,5375]],[[5005,4979,4981]],[[4805,5264,5071]],[[4805,5081,5264]],[[4856,4848,4858]],[[4850,4867,4848]],[[5392,4960,4962]],[[5422,5388,4961]],[[5408,5203,5201]],[[5408,5435,5202]],[[5380,5406,5434]],[[5014,5013,5406]],[[5353,5356,5162]],[[5303,5385,5356]],[[5408,5410,5435]],[[5436,5401,5417]],[[5418,5412,5417]],[[5410,5409,5436]],[[5415,5412,5418]],[[5436,5409,5401]],[[5380,5375,5014]],[[5375,4981,5413]],[[4966,4968,5434]],[[5401,5135,4968]],[[5430,5419,5341]],[[5430,5432,5405]],[[5130,5093,5078]],[[5095,5072,5076]],[[5326,5195,5327]],[[5163,5196,5195]],[[5383,5428,4860]],[[5428,4868,4866]],[[4925,4933,4935]],[[5354,5162,4933]],[[5425,5386,5399]],[[4958,5409,5386]],[[5129,5093,5130]],[[5129,5094,5093]],[[4860,5428,4863]],[[5383,4868,5428]],[[5377,5296,5358]],[[5197,5196,5296]],[[5410,5429,5435]],[[5415,5432,5416]],[[5429,5414,5430]],[[5414,5412,5415]],[[4963,5398,5201]],[[5427,5421,5399]],[[5219,5241,5240]],[[5238,5247,5241]],[[4892,4888,5300]],[[4927,4889,4888]],[[5423,5395,5424]],[[5390,4963,5393]],[[4805,5430,5341]],[[4805,4964,5430]],[[4968,5380,5434]],[[4968,5135,5380]],[[4882,4881,4949]],[[4945,5272,4948]],[[5378,5420,5354]],[[5358,5196,5420]],[[5377,5378,4926]],[[5358,5420,5378]],[[4963,5391,5427]],[[5390,5423,5391]],[[5396,5393,4965]],[[5396,5394,5393]],[[5272,5249,5270]],[[4891,5115,5249]],[[5271,4948,5272]],[[5271,4949,4948]],[[5243,4940,4942]],[[5266,5267,4940]],[[5005,5375,5057]],[[5413,5014,5375]],[[5421,5425,5399]],[[4958,5386,5425]],[[5431,5405,5432]],[[5419,5430,5405]],[[5409,5400,5401]],[[5409,4958,5400]],[[4940,5344,4941]],[[4940,5267,5344]],[[5429,5202,5435]],[[5430,4964,5202]],[[4835,4830,5033]],[[4832,4990,4830]],[[4828,4831,4825]],[[4828,4834,4831]],[[5297,5377,5325]],[[5297,5296,5377]],[[5370,5297,5325]],[[5370,5197,5297]],[[5410,5412,5414]],[[5411,5417,5412]],[[5430,5414,5416]],[[5429,5410,5414]],[[5398,5427,5399]],[[5398,4963,5427]],[[4967,5431,5415]],[[4967,5405,5431]],[[5198,5326,5371]],[[5198,5163,5326]],[[4962,4961,4867]],[[4960,5422,4961]],[[4845,4843,4839]],[[4845,5407,4843]],[[5308,5312,5315]],[[5313,5345,5312]],[[5237,5242,5243]],[[5279,5218,5242]],[[5411,5436,5417]],[[5411,5410,5436]],[[5300,4887,5301]],[[5300,4888,4887]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c1743cc-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efcc0b49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:56:35.000"},"geometry":[{"boundaries":[[[4879,4880,5437]],[[5438,5439,5385]],[[5440,5441,5442]],[[5440,5443,5444]],[[5445,5446,5447]],[[5448,5449,5446]],[[5450,5451,5452]],[[5450,5453,5454]],[[5455,5456,5457]],[[5455,5457,5458]],[[5459,5460,5461]],[[5460,5462,5461]],[[5463,5464,5465]],[[5466,5467,5468]],[[5467,5469,5468]],[[5470,5471,5472]],[[5473,5474,5475]],[[5476,5459,5461]],[[5466,5468,5465]],[[5469,4343,5468]],[[5461,5463,5465]],[[5477,5478,5479]],[[5464,5466,5465]],[[5480,5481,5482]],[[5462,5463,5461]],[[5483,5482,5484]],[[5485,5486,5487]],[[5459,5458,5460]],[[5455,5454,5456]],[[5450,5452,5453]],[[5488,5475,5489]],[[5446,5490,5448]],[[5490,5446,5491]],[[5491,5446,5445]],[[5447,5440,5492]],[[5440,5442,5443]],[[5488,5493,5441]],[[5493,5488,5494]],[[5488,5489,5495]],[[5475,5496,5489]],[[5497,5498,5499]],[[5496,5475,5500]],[[5500,5475,5474]],[[5475,5501,5473]],[[5475,5502,5501]],[[5503,5504,5505]],[[5506,5503,5505]],[[5507,5506,5505]],[[5508,5507,5505]],[[5509,5508,5505]],[[5510,5511,5512]],[[5513,5505,5514]],[[5514,5505,5515]],[[5515,5505,5516]],[[5517,5515,5516]],[[5518,5517,5516]],[[5519,5518,5516]],[[5517,5518,5520]],[[5520,5518,5521]],[[5521,5518,5522]],[[5522,5518,5523]],[[5518,5487,5524]],[[5525,5523,5518]],[[5526,5525,5518]],[[5527,5526,5518]],[[5528,5529,5483]],[[5530,5531,5532]],[[5485,5533,5486]],[[4927,5486,5534]],[[5535,5536,5537]],[[5538,5539,5540]],[[5541,5485,5487]],[[5542,5543,5544]],[[5302,5533,5545]],[[5546,5547,5548]],[[5549,5550,5551]],[[5299,5519,5552]],[[5553,5554,5555]],[[5556,5557,5542]],[[5552,5558,5299]],[[4855,5559,4853]],[[4842,5560,5561]],[[5562,5563,4869]],[[5558,5371,5328]],[[5556,5198,5564]],[[5565,5566,5567]],[[5166,5438,5385]],[[5565,5567,5568]],[[5569,4939,5570]],[[5571,5572,5573]],[[5570,4939,5385]],[[5574,5575,5576]],[[5577,5223,5368]],[[5578,5579,5580]],[[5581,5582,5583]],[[5584,5585,5586]],[[5587,5588,5551]],[[5589,5590,5591]],[[5592,5593,5594]],[[5581,5583,5595]],[[5563,4949,5596]],[[5563,4882,4949]],[[5563,5437,4882]],[[5437,4880,4882]],[[4879,5437,4877]],[[5437,4876,4950]],[[4873,4875,5562]],[[4873,5562,4870]],[[4870,5562,4871]],[[4871,5562,4869]],[[4864,4883,5597]],[[5597,4883,4869]],[[5563,5598,5597]],[[5597,4865,4864]],[[5599,5600,5576]],[[5601,5539,5602]],[[5603,4861,5433]],[[5604,5605,5606]],[[5598,5607,4858]],[[5608,5609,5610]],[[5559,5598,5611]],[[5607,5559,4855]],[[5612,5611,5613]],[[5614,5615,5616]],[[4853,5559,4854]],[[5617,5618,5619]],[[4852,4854,5620]],[[4852,5620,4849]],[[5621,5622,5623]],[[4844,4849,5620]],[[5620,5611,5624]],[[4845,4844,5624]],[[5561,5407,4845]],[[5625,5626,5627]],[[5539,5601,5540]],[[5539,5538,5608]],[[4836,5628,5001]],[[5629,5033,5032]],[[5629,5630,5033]],[[5617,5631,5618]],[[5033,5630,4835]],[[5632,5633,4814]],[[5634,5628,5635]],[[5628,4826,5001]],[[5628,4836,4835]],[[5636,5637,4804]],[[5638,5639,5622]],[[5640,4976,5103]],[[5639,5641,5622]],[[4976,5632,4821]],[[4821,5632,5221]],[[5221,5632,4817]],[[4817,5632,4814]],[[4814,5633,4815]],[[4815,5633,4811]],[[5642,5643,5623]],[[5623,5643,5621]],[[5510,5644,5645]],[[5646,5505,5513]],[[5646,5509,5505]],[[5511,5510,5647]],[[5504,5502,5505]],[[5494,5488,5495]],[[5648,5516,5505]],[[5492,5440,5444]],[[5505,5502,5475]],[[5451,5450,5449]],[[5488,5441,5440]],[[5440,5447,5446]],[[5455,5450,5454]],[[5446,5449,5450]],[[5649,5459,5476]],[[5650,5651,5645]],[[5458,5459,5455]],[[5649,5651,5652]],[[5459,5649,5652]],[[5651,5653,5652]],[[5651,5650,5653]],[[5645,5644,5650]],[[5510,5645,5654]],[[5645,5655,5654]],[[5655,5656,5654]],[[5657,5629,5658]],[[5659,5660,5661]],[[5662,5661,5660]],[[5663,5135,5616]],[[5606,5659,5661]],[[5659,5664,5660]],[[5665,5666,5617]],[[5665,4811,5631]],[[5667,5668,5669]],[[5606,5629,5032]],[[5616,5662,5664]],[[5614,5670,5615]],[[5615,5671,5605]],[[5657,5635,5629]],[[5616,5664,5663]],[[5662,5660,5664]],[[5608,5672,5616]],[[5673,5668,5614]],[[5638,5674,5675]],[[5676,5677,5678]],[[5679,5680,5628]],[[5628,4835,5630]],[[5681,5682,5683]],[[5634,5679,5628]],[[5631,5617,5666]],[[5684,5677,5685]],[[5673,5614,5616]],[[5686,5687,5688]],[[4811,5665,5636]],[[4811,5633,5631]],[[5539,5608,5616]],[[5672,5673,5616]],[[5604,5606,5661]],[[5032,5135,5663]],[[5032,5689,5606]],[[5032,5659,5689]],[[5627,5677,5690]],[[5691,5641,5639]],[[5627,5692,5685]],[[5627,5685,5677]],[[5693,5694,5609]],[[5671,5695,5605]],[[5668,5696,5614]],[[5687,5694,5688]],[[5696,5697,5670]],[[5668,5667,5698]],[[5610,5669,5672]],[[5610,5667,5669]],[[5632,5640,5693]],[[5640,5103,4826]],[[5681,5683,5657]],[[5699,5679,5634]],[[5693,5682,5694]],[[5695,5657,5658]],[[5691,5639,5700]],[[5691,5678,5641]],[[4811,5636,4804]],[[5636,5619,5678]],[[5636,5684,5637]],[[5636,5678,5684]],[[5637,5685,5692]],[[5637,5684,5685]],[[5625,5701,5626]],[[4804,5637,5692]],[[5675,5701,5702]],[[5626,5703,5627]],[[5625,5702,5701]],[[5703,4804,5692]],[[5704,5702,5705]],[[5700,5675,5702]],[[5690,5705,5627]],[[5690,5704,5705]],[[5638,5675,5700]],[[5638,5621,5674]],[[5694,5682,5688]],[[5683,5634,5657]],[[5706,5707,5536]],[[5708,5590,5709]],[[5710,5711,5712]],[[5713,5714,5715]],[[5586,5716,5717]],[[5712,5711,5718]],[[5662,5604,5661]],[[5658,5629,5605]],[[5616,5615,5604]],[[5670,5697,5687]],[[5670,5687,5615]],[[5686,5681,5695]],[[5615,5687,5671]],[[5697,5694,5687]],[[5705,5625,5627]],[[5705,5702,5625]],[[5693,5640,5679]],[[5632,4976,5640]],[[5719,5710,5720]],[[5547,5546,5721]],[[5617,5636,5665]],[[5617,5619,5636]],[[5684,5678,5677]],[[5619,5641,5678]],[[5675,5674,5701]],[[5621,4804,5674]],[[5702,5704,5700]],[[5690,5676,5704]],[[5722,5600,5723]],[[5722,5574,5576]],[[5724,5725,5726]],[[5727,5588,5728]],[[5554,5723,5729]],[[5730,5731,5732]],[[5708,5733,5555]],[[5734,5735,5714]],[[5736,5580,5728]],[[5550,5549,5737]],[[5736,5728,5738]],[[5739,5740,5583]],[[5551,5741,5587]],[[5742,5743,5248]],[[5744,5667,5609]],[[5698,5744,5696]],[[5744,5698,5667]],[[5744,5697,5696]],[[5745,5746,5747]],[[5748,5531,5749]],[[5693,5683,5682]],[[5693,5679,5699]],[[5683,5699,5634]],[[5683,5693,5699]],[[5750,5716,5751]],[[5728,5588,5587]],[[5752,5751,5732]],[[5584,5717,5753]],[[5731,5752,5732]],[[5753,5754,5755]],[[5751,5716,5756]],[[5720,5757,5719]],[[5758,5717,5716]],[[5759,5147,5760]],[[5761,5578,5580]],[[5579,5595,5762]],[[5758,5763,5717]],[[5754,5281,5755]],[[5587,5738,5728]],[[5732,5736,5738]],[[5669,5673,5672]],[[5669,5668,5673]],[[5640,5680,5679]],[[5640,4826,5628]],[[5764,5765,5567]],[[5766,5571,5767]],[[5768,5769,5770]],[[5498,5771,5499]],[[5674,5626,5701]],[[5674,4804,5626]],[[5627,5703,5692]],[[5626,4804,5703]],[[5608,5610,5672]],[[5609,5667,5610]],[[5772,5709,5773]],[[5774,5588,5727]],[[5761,5580,5736]],[[5736,5751,5756]],[[5749,5721,5775]],[[5290,5223,5775]],[[5710,5548,5711]],[[5546,5776,5290]],[[5695,5681,5657]],[[5688,5682,5681]],[[5777,5778,5779]],[[5747,5746,5780]],[[5738,5730,5732]],[[5781,5248,5217]],[[5773,5739,5583]],[[5782,5783,5727]],[[5135,5539,5616]],[[5538,5609,5608]],[[5547,5721,5749]],[[5721,5290,5775]],[[5547,5749,5531]],[[5775,5223,5577]],[[5532,5784,5530]],[[5749,5775,5577]],[[5767,5785,5766]],[[5786,5787,5788]],[[5572,5766,5789]],[[5790,5748,5791]],[[5605,5695,5658]],[[5671,5687,5686]],[[5681,5686,5688]],[[5695,5671,5686]],[[5694,5744,5609]],[[5694,5697,5744]],[[5792,5793,5794]],[[5766,5785,5795]],[[5536,5707,5796]],[[5706,5797,5707]],[[5787,5795,5532]],[[5748,5749,5791]],[[5766,5795,5787]],[[5798,5799,5800]],[[5659,5663,5664]],[[5659,5032,5663]],[[5732,5751,5736]],[[5752,5750,5751]],[[5801,5802,5750]],[[5752,5731,5750]],[[5725,5803,5804]],[[5805,5750,5804]],[[5806,5763,5803]],[[5758,5750,5805]],[[5757,5720,5807]],[[5581,5595,5579]],[[5712,5720,5710]],[[5712,5718,5808]],[[5809,5810,5742]],[[5743,5271,5248]],[[5742,5724,5809]],[[5801,5750,5731]],[[5811,5566,5812]],[[5813,5814,5707]],[[5815,5765,5764]],[[4924,4923,5569]],[[5166,5816,5817]],[[5818,5569,5570]],[[5819,5815,5764]],[[5814,5536,5796]],[[5820,5818,5570]],[[5821,5822,5820]],[[5707,5770,5813]],[[5484,5482,5821]],[[5439,5570,5385]],[[5569,5765,4924]],[[5724,5823,5725]],[[5803,5805,5804]],[[5802,5801,5809]],[[5802,5804,5750]],[[5809,5730,5592]],[[5801,5731,5730]],[[5792,5794,5824]],[[5793,5825,5794]],[[5788,5787,5532]],[[5720,5808,5826]],[[5827,5788,5790]],[[5532,5531,5828]],[[5635,5628,5630]],[[5680,5640,5628]],[[5629,5635,5630]],[[5657,5634,5635]],[[5829,5729,5590]],[[5729,5591,5590]],[[5704,5691,5700]],[[5704,5678,5691]],[[5592,5830,5809]],[[4949,5271,5830]],[[5730,5809,5801]],[[5830,5810,5809]],[[5603,4857,4862]],[[5596,5723,5613]],[[5743,5742,5810]],[[5831,5823,5724]],[[5832,5811,5812]],[[5764,5567,5566]],[[5833,5812,5834]],[[5835,5735,5832]],[[5715,5836,5713]],[[5819,5275,5815]],[[5835,5832,5812]],[[5735,5837,5811]],[[5614,5696,5670]],[[5668,5698,5696]],[[5542,5544,5838]],[[5834,5839,5537]],[[5519,5516,5470]],[[5817,5528,5438]],[[5518,5840,5527]],[[5516,5841,5511]],[[5572,5571,5766]],[[5767,5799,5785]],[[5842,5544,5843]],[[5438,5844,5439]],[[5845,5846,5842]],[[5847,5779,5848]],[[5849,5756,5716]],[[5761,5736,5756]],[[5281,5850,5217]],[[5763,5758,5803]],[[5795,5784,5532]],[[5795,5785,5851]],[[5543,5542,5845]],[[5852,5853,5558]],[[5659,5606,5689]],[[5605,5629,5606]],[[5850,5806,5781]],[[5831,5742,5248]],[[5248,5781,5823]],[[5806,5803,5725]],[[5854,5806,5855]],[[5856,5754,5763]],[[5855,5725,5823]],[[5726,5809,5724]],[[5580,5857,5858]],[[5580,5579,5857]],[[5812,5833,5835]],[[5834,5814,5833]],[[5594,5593,5859]],[[5730,5738,5593]],[[5576,5600,5722]],[[5601,5611,5612]],[[5860,5816,5838]],[[5557,5861,5542]],[[5555,5780,5746]],[[5555,5573,5780]],[[5551,5862,5741]],[[5863,5830,5592]],[[5864,5865,5866]],[[5867,5868,5869]],[[5755,5864,5584]],[[5760,5870,5719]],[[5800,5871,5733]],[[5772,5773,5583]],[[5872,5873,5772]],[[5873,5708,5709]],[[5874,5771,5827]],[[5875,5794,5825]],[[5830,5863,4949]],[[5741,5859,5587]],[[5864,5866,5585]],[[5876,5877,5866]],[[5704,5676,5678]],[[5690,5677,5676]],[[5726,5725,5804]],[[5855,5806,5725]],[[5537,5839,5565]],[[5878,5779,5778]],[[5879,5565,5568]],[[5567,5765,5568]],[[5553,5722,5554]],[[5553,5574,5722]],[[5597,5433,4865]],[[5596,5729,5723]],[[5880,5439,5844]],[[5880,5820,5439]],[[5853,5861,5564]],[[5881,5542,5861]],[[5557,5564,5861]],[[5198,5371,5853]],[[5558,5882,5852]],[[5552,5542,5881]],[[5861,5852,5881]],[[5853,5371,5558]],[[5480,5883,5481]],[[5848,5779,5878]],[[5833,5715,5835]],[[5833,5814,5836]],[[5884,5885,5886]],[[5516,5648,5841]],[[5875,5825,5787]],[[5793,5789,5825]],[[5861,5853,5852]],[[5564,5198,5853]],[[5551,5550,5862]],[[5551,5774,5549]],[[5470,5478,5878]],[[5552,5846,5845]],[[5843,5543,5845]],[[5843,5544,5543]],[[5778,5886,5887]],[[5884,5822,5885]],[[5888,5578,5877]],[[5581,5579,5578]],[[5739,5589,5889]],[[5862,5596,5741]],[[5890,5576,5575]],[[5890,5612,5613]],[[5589,5709,5590]],[[5873,5733,5708]],[[5870,5891,5719]],[[5892,5548,5710]],[[5871,5800,5799]],[[5798,5808,5893]],[[5871,5799,5767]],[[5808,5894,5826]],[[5795,5851,5784]],[[5785,5799,5851]],[[5865,5757,5868]],[[5869,5826,5872]],[[5535,5745,5824]],[[5895,5896,5553]],[[5707,5814,5796]],[[5834,5537,5814]],[[5824,5745,5897]],[[5535,5895,5745]],[[5711,5548,5547]],[[5892,5898,5776]],[[5755,5759,5760]],[[5281,5147,5759]],[[5888,5581,5578]],[[5867,5582,5581]],[[5899,5714,5713]],[[5715,5833,5836]],[[5875,5768,5770]],[[5836,5814,5813]],[[5299,5558,5328]],[[5299,5301,5519]],[[5549,5774,5889]],[[5740,5595,5583]],[[5580,5858,5728]],[[5774,5551,5588]],[[5858,5782,5727]],[[5739,5889,5783]],[[5665,5631,5666]],[[5633,5618,5631]],[[5849,5877,5761]],[[5876,5888,5877]],[[5789,5792,5897]],[[5706,5536,5535]],[[5529,5528,5817]],[[5880,5844,5528]],[[5838,5544,5900]],[[5544,5842,5900]],[[5860,5480,5901]],[[5860,5900,5480]],[[4924,5815,5275]],[[4924,5765,5815]],[[5735,5734,5902]],[[5903,5275,5904]],[[5275,5819,5904]],[[5764,5566,5837]],[[5905,5837,5735]],[[5905,5819,5837]],[[5900,5860,5838]],[[5556,5164,5198]],[[5786,5768,5787]],[[5797,5706,5794]],[[5745,5789,5897]],[[5766,5825,5789]],[[5639,5638,5700]],[[5622,5621,5638]],[[5794,5706,5824]],[[5794,5875,5797]],[[5593,5592,5730]],[[5594,5863,5592]],[[5763,5754,5753]],[[5856,5281,5754]],[[5586,5849,5716]],[[5866,5877,5849]],[[5164,5816,5166]],[[5901,5480,5529]],[[5799,5798,5851]],[[5800,5733,5798]],[[5728,5858,5727]],[[5762,5595,5740]],[[5783,5782,5739]],[[5858,5857,5740]],[[5887,5885,5778]],[[5887,5886,5885]],[[5735,5811,5832]],[[5837,5566,5811]],[[5573,5767,5571]],[[5573,5871,5767]],[[5753,5755,5584]],[[5281,5759,5755]],[[5791,5874,5827]],[[5734,5498,5906]],[[5749,5577,5791]],[[5907,5499,5874]],[[5497,5907,5368]],[[5874,5791,5907]],[[5907,5577,5368]],[[5907,5791,5577]],[[5497,5499,5907]],[[5771,5874,5499]],[[5531,5718,5711]],[[5893,5851,5798]],[[5770,5797,5875]],[[5770,5707,5797]],[[5828,5788,5532]],[[5825,5766,5787]],[[5616,5604,5662]],[[5615,5605,5604]],[[5908,5708,5555]],[[5554,5829,5708]],[[5746,5553,5555]],[[5722,5723,5554]],[[5817,5438,5166]],[[5528,5844,5438]],[[5146,5870,5147]],[[5146,5891,5870]],[[5876,5868,5867]],[[5826,5894,5872]],[[5582,5869,5872]],[[5807,5720,5826]],[[5868,5826,5869]],[[5720,5712,5808]],[[5729,5737,5591]],[[5729,5596,5862]],[[5737,5862,5550]],[[5737,5729,5862]],[[5857,5762,5740]],[[5857,5579,5762]],[[5530,5893,5808]],[[5909,5894,5808]],[[5739,5773,5589]],[[5583,5910,5772]],[[5549,5589,5591]],[[5773,5709,5589]],[[5789,5747,5572]],[[5789,5745,5747]],[[5780,5572,5747]],[[5780,5573,5572]],[[5897,5792,5824]],[[5789,5793,5792]],[[5589,5549,5889]],[[5591,5737,5549]],[[5830,5911,5810]],[[5830,5271,5743]],[[5868,5807,5826]],[[5868,5876,5865]],[[5868,5757,5807]],[[5898,5891,5776]],[[5554,5908,5555]],[[5554,5708,5908]],[[5835,5714,5735]],[[5835,5715,5714]],[[5583,5582,5910]],[[5867,5869,5582]],[[5902,5903,5904]],[[5276,5275,5903]],[[5790,5788,5828]],[[5827,5786,5788]],[[5718,5530,5808]],[[5784,5851,5893]],[[5771,5786,5827]],[[5899,5713,5769]],[[5901,5529,5817]],[[5480,5483,5529]],[[5146,5776,5891]],[[5146,5290,5776]],[[5719,5898,5710]],[[5776,5548,5892]],[[5863,5741,5596]],[[5594,5859,5741]],[[5582,5872,5910]],[[5894,5909,5733]],[[4857,5603,4858]],[[5613,5576,5890]],[[4844,5620,5624]],[[5601,5612,5912]],[[5559,5611,5620]],[[5598,5613,5611]],[[5866,5865,5876]],[[5760,5147,5870]],[[5837,5819,5764]],[[5905,5904,5819]],[[5750,5758,5716]],[[5805,5803,5758]],[[5845,5842,5843]],[[5846,5900,5842]],[[5867,5888,5876]],[[5867,5581,5888]],[[5827,5790,5791]],[[5828,5748,5790]],[[5812,5839,5834]],[[5812,5566,5565]],[[5555,5871,5573]],[[5733,5872,5894]],[[5555,5733,5871]],[[5873,5872,5733]],[[5776,5546,5548]],[[5290,5721,5546]],[[5823,5831,5248]],[[5724,5742,5831]],[[5906,5498,5368]],[[5498,5714,5771]],[[5368,5498,5497]],[[5276,5903,5902]],[[5902,5734,5276]],[[5714,5498,5734]],[[5276,5906,5368]],[[5276,5734,5906]],[[5813,5769,5836]],[[5899,5786,5771]],[[5836,5769,5713]],[[5813,5770,5769]],[[5854,5781,5806]],[[5217,5850,5781]],[[4856,5607,4855]],[[4856,4858,5607]],[[5528,5483,5880]],[[5480,5482,5483]],[[5740,5782,5858]],[[5740,5739,5782]],[[5872,5772,5910]],[[5873,5709,5772]],[[5798,5909,5808]],[[5798,5733,5909]],[[5865,5719,5757]],[[5865,5864,5760]],[[5710,5898,5892]],[[5719,5891,5898]],[[5865,5760,5719]],[[5864,5755,5760]],[[5547,5531,5711]],[[5748,5828,5531]],[[5407,5560,4842]],[[5561,4845,5624]],[[5613,5599,5576]],[[5723,5600,5599]],[[5900,5883,5480]],[[5481,5913,5482]],[[5726,5802,5809]],[[5726,5804,5802]],[[4858,5603,5598]],[[4862,4861,5603]],[[5901,5816,5860]],[[5901,5817,5816]],[[5557,5556,5564]],[[5816,5164,5556]],[[5823,5854,5855]],[[5823,5781,5854]],[[5765,5569,5568]],[[4923,4939,5569]],[[5849,5761,5756]],[[5877,5578,5761]],[[5864,5585,5584]],[[5866,5849,5585]],[[5584,5586,5717]],[[5585,5849,5586]],[[5905,5902,5904]],[[5905,5735,5902]],[[5556,5838,5816]],[[5556,5542,5838]],[[5900,5481,5883]],[[5885,5913,5481]],[[5531,5530,5718]],[[5784,5893,5530]],[[5850,5856,5806]],[[5753,5717,5763]],[[5806,5856,5763]],[[5850,5281,5856]],[[5783,5774,5727]],[[5783,5889,5774]],[[5569,5818,5568]],[[5839,5812,5565]],[[5478,5477,5878]],[[5647,5516,5511]],[[5647,5510,5914]],[[5512,5644,5510]],[[5654,5647,5914]],[[5470,5516,5647]],[[5563,5613,5598]],[[5723,5599,5613]],[[5777,5779,5535]],[[5536,5814,5537]],[[5778,5777,5884]],[[5777,5565,5879]],[[5439,5820,5570]],[[5879,5568,5818]],[[5741,5863,5594]],[[5596,4949,5863]],[[5603,5433,5597]],[[4875,4876,5437]],[[5593,5587,5859]],[[5593,5738,5587]],[[5545,5533,5485]],[[5533,5534,5486]],[[4889,5533,5302]],[[4889,5534,5533]],[[5510,5654,5914]],[[5656,5471,5470]],[[5786,5899,5769]],[[5771,5714,5899]],[[5537,5565,5777]],[[5847,5896,5779]],[[5895,5535,5779]],[[5824,5706,5535]],[[5787,5768,5875]],[[5786,5769,5768]],[[5484,5820,5880]],[[5879,5818,5820]],[[5483,5484,5880]],[[5482,5913,5821]],[[5484,5821,5820]],[[5913,5885,5822]],[[5911,5743,5810]],[[5911,5830,5743]],[[4840,5915,5401]],[[5561,5560,5407]],[[5848,5878,5479]],[[5656,5470,5654]],[[5885,5519,5778]],[[5885,5846,5519]],[[5552,5519,5846]],[[5301,5302,5518]],[[5542,5552,5845]],[[5882,5558,5552]],[[5881,5882,5552]],[[5881,5852,5882]],[[5301,5518,5519]],[[5524,5840,5518]],[[5518,5545,5487]],[[5518,5302,5545]],[[5601,5624,5611]],[[5915,4840,5561]],[[5915,5561,5624]],[[4840,4842,5561]],[[5537,5777,5535]],[[5879,5884,5777]],[[5778,5884,5886]],[[5822,5821,5913]],[[5879,5822,5884]],[[5879,5820,5822]],[[5745,5553,5746]],[[5896,5574,5553]],[[5540,5601,5912]],[[5915,5624,5601]],[[5896,5895,5779]],[[5553,5745,5895]],[[4854,5559,5620]],[[5607,5598,5559]],[[5603,5597,5598]],[[5437,4950,4877]],[[5613,5563,5596]],[[5597,4869,5563]],[[5562,5437,5563]],[[5562,4875,5437]],[[5472,5478,5470]],[[5472,5479,5478]],[[5885,5900,5846]],[[5885,5481,5900]],[[5915,5602,5401]],[[5915,5601,5602]],[[5479,5878,5477]],[[5470,5647,5654]],[[5401,5539,5135]],[[5401,5602,5539]],[[5708,5829,5590]],[[5554,5729,5829]],[[5545,5541,5487]],[[5545,5485,5541]],[[5778,5470,5878]],[[5778,5519,5470]],[[4348,4343,5469]],[[5467,4799,4348]],[[5467,4348,5469]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c176ae8-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.407ee0b5c4684c8baa3e2a326ead6088","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5916,5917,5918]],[[5919,5920,5921]],[[5922,5919,5921]],[[5923,5922,5924]],[[5925,5926,5927]],[[5928,5927,5926]],[[5929,5928,5926]],[[5930,5931,5926]],[[5932,5933,5934]],[[5935,5933,5932]],[[5936,5932,5937]],[[5938,5939,5940]],[[5941,5942,5927]],[[5943,5944,5945]],[[5946,5947,5948]],[[5948,5943,5949]],[[5949,5950,5951]],[[5951,5950,5952]],[[5949,5943,5950]],[[5950,5943,5945]],[[5947,5953,5943]],[[5954,5955,5956]],[[5948,5947,5943]],[[5957,5958,5959]],[[5960,5947,5946]],[[5961,5962,5963]],[[5964,5965,5966]],[[5931,5929,5926]],[[5967,5968,5969]],[[5970,5971,5972]],[[5973,5974,5975]],[[5971,5970,5976]],[[5977,5978,5979]],[[5980,5981,5982]],[[5983,5976,5984]],[[5985,5986,5987]],[[5963,5988,5989]],[[5990,5955,5991]],[[5992,5993,5956]],[[5935,5994,5933]],[[5995,5996,5997]],[[5942,5996,5925]],[[5927,5942,5925]],[[5941,5924,5942]],[[5941,5923,5924]],[[5922,5921,5924]],[[5920,5918,5917]],[[5920,5917,5921]],[[5916,5994,5935]],[[5998,5999,5917]],[[6000,6001,6002]],[[6003,6004,6005]],[[6006,5971,5976]],[[5986,5974,5987]],[[5983,6007,6006]],[[5970,6008,6009]],[[6010,6011,6012]],[[6013,6014,6010]],[[5987,5974,6004]],[[5970,5972,6008]],[[6015,6016,6017]],[[6010,6014,6018]],[[6019,6020,6021]],[[6022,5926,5947]],[[5972,6012,6008]],[[5984,6023,6024]],[[6010,5971,6013]],[[6006,6007,6025]],[[6026,6027,6028]],[[6022,6029,6030]],[[5983,5984,6031]],[[6032,5981,6033]],[[6034,5978,6035]],[[6036,6037,6038]],[[6039,6040,6034]],[[6005,6004,5974]],[[6036,6041,6042]],[[6043,6044,6045]],[[6046,6047,6048]],[[6049,6050,6051]],[[6012,6011,6052]],[[6053,6054,6055]],[[6056,6057,6058]],[[6059,6030,6060]],[[6052,6061,6012]],[[6017,6016,6029]],[[6062,6063,6064]],[[6065,6066,6067]],[[6068,6069,6070]],[[6071,6072,6073]],[[6074,6058,6070]],[[6075,6021,6076]],[[6068,6070,6057]],[[6063,6077,6064]],[[6062,6078,6063]],[[6079,6080,6081]],[[6069,6082,6083]],[[6084,6085,6063]],[[6086,6087,6082]],[[6088,6063,6085]],[[6089,6074,6090]],[[6091,6063,6088]],[[6092,6074,6093]],[[6069,6068,6086]],[[6077,6091,6094]],[[6071,6073,6095]],[[6040,6037,5979]],[[5976,5970,6009]],[[6096,6097,6040]],[[6098,6099,6100]],[[6088,6072,6101]],[[6102,6094,6101]],[[6103,6104,6060]],[[6072,6088,6083]],[[6105,6106,6107]],[[6108,6109,5997]],[[6000,6002,6110]],[[6054,6111,6112]],[[6113,5961,6114]],[[6015,6115,6116]],[[6117,6118,6119]],[[6093,6069,6083]],[[6103,6120,6121]],[[6121,6083,6087]],[[6069,6086,6082]],[[6122,6030,6086]],[[6082,6087,6083]],[[6048,6059,6060]],[[6083,6121,6073]],[[6047,6086,6030]],[[6123,6124,6125]],[[6126,6127,6128]],[[6035,6126,6129]],[[6124,6130,5981]],[[6013,6025,6014]],[[6131,5975,6029]],[[6041,6132,6133]],[[6099,6024,6134]],[[6119,6089,6085]],[[6070,6069,6093]],[[5987,6017,6022]],[[6081,6110,6051]],[[6083,6073,6072]],[[6067,6135,6136]],[[6137,6039,6034]],[[6037,5977,5979]],[[6138,6018,6014]],[[6139,6140,6141]],[[6142,6143,6144]],[[5958,5998,5959]],[[6144,6145,6142]],[[6146,6106,6105]],[[6106,6147,6143]],[[6148,6109,6149]],[[6108,6150,6149]],[[6151,6147,6146]],[[6152,6058,6089]],[[6080,6079,6111]],[[6051,6153,6154]],[[6155,6002,6054]],[[6051,6154,6049]],[[6156,6155,6157]],[[6081,6080,6001]],[[6158,6119,6085]],[[6159,6118,6160]],[[6074,6070,6093]],[[6158,6117,6119]],[[6058,6057,6070]],[[6092,6090,6074]],[[6119,6152,6089]],[[6118,6056,6152]],[[6118,6159,6056]],[[6161,6162,6163]],[[5980,6124,5981]],[[6163,6125,6164]],[[6164,5982,6032]],[[6165,6166,6031]],[[6038,6041,6036]],[[6035,5978,6126]],[[5978,5977,6126]],[[6098,6167,6096]],[[6007,6161,6025]],[[6144,6168,6145]],[[6107,6106,6143]],[[6169,6170,6171]],[[6172,6173,6174]],[[6142,6171,6105]],[[6175,6176,5925]],[[6177,6178,6021]],[[6076,6021,6020]],[[6110,6002,6155]],[[6179,6180,6178]],[[6181,6182,6183]],[[6184,6163,6164]],[[6185,6182,6181]],[[6186,6187,6188]],[[6182,6185,6189]],[[6141,6190,6191]],[[6192,6189,5968]],[[6188,6190,5975]],[[6193,6194,6195]],[[6196,6197,6198]],[[6199,6182,6192]],[[6181,6200,6139]],[[6140,6190,6141]],[[6032,5982,5981]],[[6201,6183,6202]],[[5968,6193,5969]],[[6112,6203,6055]],[[6078,6204,6158]],[[6010,6018,6011]],[[6014,6025,6138]],[[5977,6127,6126]],[[6041,6133,6205]],[[6124,6035,6130]],[[6206,6044,6042]],[[6130,6035,6129]],[[6124,6123,6034]],[[5981,6130,6033]],[[6128,6127,6207]],[[6208,6129,6128]],[[6209,6208,6128]],[[6206,6042,6205]],[[6133,6003,6205]],[[6127,6036,6043]],[[6210,6005,5974]],[[6127,6043,6207]],[[6211,5974,5973]],[[6212,6045,6206]],[[6042,6041,6205]],[[6043,6042,6044]],[[6127,5977,6036]],[[6094,6076,6213]],[[6214,6215,6203]],[[6216,6217,6020]],[[6213,6064,6094]],[[6121,6218,6103]],[[6121,6087,6218]],[[5936,5959,5932]],[[6219,5964,5966]],[[6151,6220,6173]],[[5937,6176,6173]],[[6150,6174,6148]],[[6221,6222,6223]],[[6150,6147,6174]],[[6147,6106,6146]],[[6034,6123,6137]],[[6034,6035,6124]],[[6224,6007,5983]],[[6006,5976,5983]],[[6137,6161,6039]],[[6163,6184,6025]],[[6166,5983,6031]],[[6166,6098,6096]],[[6225,6226,6227]],[[6227,5931,5930]],[[6157,6065,6228]],[[6177,6179,6178]],[[6190,6164,6229]],[[6230,6043,6045]],[[6231,6208,5973]],[[6208,6130,6129]],[[6232,6027,6026]],[[5967,6199,6192]],[[5984,6024,6031]],[[5984,5976,6023]],[[6061,6052,6115]],[[6061,6008,6012]],[[6026,6115,6052]],[[6195,6194,6197]],[[6233,6208,6209]],[[6129,6126,6128]],[[6234,6235,6168]],[[6169,6171,6145]],[[6044,6206,6045]],[[6206,6205,6236]],[[6206,6236,6212]],[[6205,6003,6005]],[[6210,6045,6212]],[[6237,5974,6211]],[[6209,6207,5973]],[[6209,6128,6207]],[[6237,6210,5974]],[[6236,6205,6005]],[[6184,6138,6025]],[[6184,6200,6138]],[[6081,6001,6110]],[[6001,6111,6002]],[[6202,6183,6182]],[[6200,6184,6139]],[[6185,6181,6141]],[[6238,6018,6200]],[[6027,6232,6239]],[[6011,6018,6201]],[[6183,6238,6181]],[[6018,6138,6200]],[[6181,6238,6200]],[[6183,6201,6238]],[[5936,5964,6240]],[[5938,6241,6108]],[[6242,5965,5964]],[[6143,6150,6108]],[[5938,6108,5939]],[[6149,6109,6108]],[[6107,6142,6105]],[[6243,6244,6245]],[[6246,6244,6243]],[[6247,6245,6171]],[[6150,6148,6149]],[[6174,6248,6221]],[[5939,6108,5997]],[[6109,6221,6223]],[[5939,5997,5996]],[[6223,6176,6175]],[[6197,6194,6249]],[[5968,6189,6187]],[[6185,6191,6189]],[[6188,5975,6250]],[[5968,6187,6193]],[[6191,6190,6188]],[[6251,6250,5975]],[[6186,6193,6187]],[[6252,6197,6249]],[[6194,6193,6186]],[[6198,6253,6196]],[[6028,6115,6026]],[[6254,6015,6116]],[[6254,5969,6255]],[[6207,6256,6257]],[[6207,6043,6256]],[[6210,6230,6045]],[[6256,6043,6230]],[[6207,6257,5973]],[[6256,6230,6257]],[[6120,6095,6073]],[[6021,6258,6259]],[[6019,6021,6178]],[[6075,6102,6260]],[[6261,6021,6259]],[[6020,6062,6213]],[[6072,6102,6101]],[[6102,6071,6260]],[[6102,6076,6094]],[[6075,6258,6021]],[[6020,6213,6076]],[[6062,6064,6213]],[[6102,6075,6076]],[[6102,6072,6071]],[[6104,6046,6048]],[[6030,6029,6060]],[[6103,6218,6046]],[[6087,6086,6218]],[[6056,6159,6081]],[[6110,6153,6051]],[[6262,6263,6049]],[[6225,6227,6050]],[[6156,6157,6228]],[[6065,6226,6228]],[[6189,6191,6187]],[[6185,6141,6191]],[[5993,5954,5956]],[[6264,6265,6266]],[[6262,6156,6228]],[[6267,6268,6157]],[[6153,6156,6154]],[[6155,6267,6157]],[[5930,6050,6227]],[[6263,6225,6050]],[[6043,6036,6042]],[[5977,6037,6036]],[[6229,5973,5975]],[[6233,6209,5973]],[[6033,6231,6229]],[[6033,6130,6231]],[[5973,6208,6233]],[[6231,6130,6208]],[[6257,6269,6211]],[[6257,6230,6269]],[[6232,6202,6239]],[[6182,6189,6192]],[[6199,6202,6182]],[[6232,6201,6202]],[[5968,5967,6192]],[[6239,6202,6199]],[[6125,5980,5982]],[[6125,6124,5980]],[[6061,6015,6017]],[[6061,6115,6015]],[[6122,6086,6068]],[[6068,6057,6056]],[[6203,6112,6078]],[[6062,6020,6214]],[[6083,6092,6093]],[[6089,6058,6074]],[[6088,6092,6083]],[[6090,6085,6089]],[[6022,6081,6051]],[[6159,6160,6081]],[[5966,5940,5957]],[[5939,5958,5957]],[[6219,5966,5959]],[[5965,6242,5938]],[[6047,6030,6059]],[[6122,6022,6030]],[[6270,6137,6123]],[[6270,6162,6137]],[[6168,6235,6271]],[[6272,6246,6169]],[[5936,6234,5964]],[[6273,6274,6275]],[[6234,6168,5964]],[[6144,6108,6241]],[[6242,6241,5938]],[[6242,6168,6144]],[[5966,5938,5940]],[[5966,5965,5938]],[[6249,6186,6250]],[[6249,6194,6186]],[[6088,6090,6092]],[[6088,6085,6090]],[[6041,6038,6132]],[[6166,6165,6098]],[[6097,6167,6132]],[[6132,6003,6133]],[[6103,6071,6095]],[[6258,6136,6259]],[[6140,6164,6190]],[[6140,6139,6164]],[[5955,6276,6277]],[[5962,5961,6278]],[[6279,6280,6281]],[[6100,6004,6003]],[[5956,5963,6282]],[[5956,5955,5990]],[[6109,6223,5997]],[[5925,5996,5995]],[[5995,6223,6283]],[[6221,6148,6174]],[[6279,6277,6280]],[[6266,5985,5987]],[[6284,6276,5993]],[[6276,6280,6277]],[[5962,6266,5947]],[[6099,6098,6024]],[[6061,6009,6008]],[[6023,5976,6009]],[[6278,6285,5962]],[[6266,6265,5985]],[[6278,5961,6113]],[[6281,6280,6286]],[[5972,6010,6012]],[[5972,5971,6010]],[[6100,5987,6004]],[[6266,6287,6264]],[[6214,6203,6078]],[[6079,6081,6160]],[[6063,6078,6084]],[[6160,6118,6117]],[[6155,6053,6180]],[[6215,6214,6217]],[[6053,6216,6019]],[[6217,6214,6020]],[[6174,6147,6172]],[[6150,6143,6147]],[[6260,6258,6075]],[[6060,6136,6258]],[[6103,6260,6071]],[[6060,6258,6260]],[[6100,6099,6134]],[[6100,6003,6098]],[[6262,6225,6263]],[[6228,6226,6225]],[[6121,6120,6073]],[[6046,6104,6103]],[[6288,6253,6198]],[[6289,6015,6196]],[[6250,6252,6249]],[[6253,6290,6291]],[[6251,6292,6252]],[[6198,6197,6292]],[[6288,6198,6251]],[[6292,6197,6252]],[[6254,6027,5967]],[[6027,6239,5967]],[[6193,6195,5969]],[[6293,6015,6254]],[[6015,6293,6196]],[[6255,5969,6293]],[[5966,5957,5959]],[[6294,5939,5957]],[[6230,6237,6269]],[[6212,6236,6210]],[[5960,6282,5962]],[[5962,6282,5963]],[[6283,6175,5925]],[[6283,6223,6175]],[[6055,6203,6215]],[[6112,6295,6204]],[[6170,6246,6243]],[[6151,6173,6172]],[[6218,6047,6046]],[[6218,6086,6047]],[[6271,6169,6145]],[[6271,6235,6273]],[[6271,6273,6169]],[[6275,6244,6246]],[[6273,6275,6272]],[[6275,6246,6272]],[[5983,6096,6040]],[[5983,6166,6096]],[[6079,6112,6111]],[[6079,6295,6112]],[[6278,6113,6285]],[[5989,5988,6281]],[[6289,6196,6291]],[[6293,6197,6196]],[[6011,6201,6232]],[[6018,6238,6201]],[[6061,6100,6134]],[[6017,5987,6100]],[[6264,6287,6280]],[[6285,6113,6286]],[[6114,5989,6281]],[[6279,5988,5990]],[[6155,6180,6267]],[[6053,6178,6180]],[[6143,6142,6107]],[[6145,6171,6142]],[[6190,6229,5975]],[[6231,5973,6229]],[[6011,6026,6052]],[[6011,6232,6026]],[[6027,6254,6116]],[[6255,6293,6254]],[[6100,6061,6017]],[[6023,6009,6061]],[[6097,6038,6037]],[[6167,6098,6132]],[[6097,6132,6038]],[[6098,6003,6132]],[[6173,6248,6174]],[[6222,6176,6223]],[[6222,6221,6248]],[[6109,6148,6221]],[[6137,6162,6161]],[[6270,6125,6163]],[[6016,6290,6029]],[[6289,6291,6290]],[[6110,6001,6000]],[[6080,6111,6001]],[[6053,6019,6178]],[[6216,6020,6019]],[[6116,6028,6027]],[[6116,6115,6028]],[[6153,6155,6156]],[[6153,6110,6155]],[[6181,6139,6141]],[[6184,6164,6139]],[[6136,6135,6259]],[[6136,6226,6067]],[[6254,5967,5969]],[[6239,6199,5967]],[[6040,6097,6037]],[[6096,6167,6097]],[[6016,6289,6290]],[[6016,6015,6289]],[[6293,6195,6197]],[[6293,5969,6195]],[[6290,6288,6131]],[[6198,6292,6251]],[[6235,6296,6273]],[[6274,6244,6275]],[[6157,6268,6065]],[[6267,6180,6179]],[[6161,6163,6025]],[[6162,6270,6163]],[[6257,6211,5973]],[[6269,6237,6211]],[[6286,6114,6281]],[[5961,5963,5989]],[[5947,6266,5987]],[[6287,6286,6280]],[[5937,6245,6244]],[[5937,6173,6245]],[[6196,6253,6291]],[[6288,6290,6253]],[[6290,6131,6029]],[[6251,5975,6131]],[[6229,6032,6033]],[[6229,6164,6032]],[[5940,6294,5957]],[[5940,5939,6294]],[[6134,6023,6061]],[[6134,6024,6023]],[[6135,6261,6259]],[[6177,6021,6261]],[[6135,6179,6261]],[[6261,6179,6177]],[[6223,5995,5997]],[[6283,5925,5995]],[[6007,6224,6161]],[[6224,6040,6039]],[[6040,6224,5983]],[[6039,6161,6224]],[[6171,6170,6247]],[[6169,6246,6170]],[[6053,6217,6216]],[[6053,6215,6217]],[[6156,6262,6049]],[[6228,6225,6262]],[[6024,6165,6031]],[[6024,6098,6165]],[[6120,6103,6095]],[[6060,6260,6103]],[[6155,6054,6053]],[[6002,6111,6054]],[[6234,6296,6235]],[[5937,6244,6274]],[[5964,6168,6242]],[[6271,6145,6168]],[[6108,6144,6143]],[[6241,6242,6144]],[[6173,6222,6248]],[[6173,6176,6222]],[[5936,6296,6234]],[[5937,6274,6273]],[[6169,6273,6272]],[[6296,5937,6273]],[[6171,6220,6105]],[[6171,6245,6220]],[[6105,6220,6146]],[[6245,6173,6220]],[[6147,6151,6172]],[[6146,6220,6151]],[[6247,6243,6245]],[[6247,6170,6243]],[[6091,6077,6063]],[[6094,6064,6077]],[[6101,6091,6088]],[[6101,6094,6091]],[[6288,6251,6131]],[[6252,6250,6251]],[[5960,5962,5947]],[[6285,6266,5962]],[[6118,6152,6119]],[[6056,6058,6152]],[[6214,6078,6062]],[[6204,6117,6158]],[[6112,6204,6078]],[[6295,6160,6204]],[[6296,5936,5937]],[[6240,5959,5936]],[[6268,6066,6065]],[[6268,6267,6179]],[[6067,6179,6135]],[[6066,6268,6179]],[[6006,6013,5971]],[[6006,6025,6013]],[[6230,6210,6237]],[[6236,6005,6210]],[[5988,5963,5990]],[[5955,5954,6276]],[[5955,6277,5991]],[[5954,5993,6276]],[[6136,6227,6226]],[[6136,5931,6227]],[[6084,6158,6085]],[[6084,6078,6158]],[[6053,6055,6215]],[[6054,6112,6055]],[[6297,6298,5935]],[[6299,5917,5916]],[[6285,6287,6266]],[[6285,6286,6287]],[[5994,5916,5918]],[[6298,6299,5916]],[[6240,6219,5959]],[[6240,5964,6219]],[[5988,6279,6281]],[[5991,6277,6279]],[[6164,6125,5982]],[[6270,6123,6125]],[[6300,6299,6298]],[[5998,5917,6299]],[[6065,6067,6226]],[[6066,6179,6067]],[[6186,6188,6250]],[[6187,6191,6188]],[[6297,5935,5932]],[[6298,5916,5935]],[[6113,6114,6286]],[[5961,5989,6114]],[[5998,6297,5932]],[[6300,6298,6297]],[[6204,6160,6117]],[[6295,6079,6160]],[[6104,6048,6060]],[[6047,6059,6048]],[[5992,6284,5993]],[[6284,6280,6276]],[[6156,6049,6154]],[[6263,6050,6049]],[[6264,6284,5992]],[[6264,6280,6284]],[[6279,5990,5991]],[[5963,5956,5990]],[[5959,5998,5932]],[[5958,5999,5998]],[[5998,6300,6297]],[[5998,6299,6300]],[[5979,6034,6040]],[[5979,5978,6034]],[[6022,6051,5926]],[[6022,6056,6081]],[[6051,5930,5926]],[[6051,6050,5930]],[[5987,6022,5947]],[[6017,6029,6022]],[[6022,6068,6056]],[[6022,6122,6068]],[[6301,5931,6136]],[[6060,6301,6136]],[[6302,6029,5975]],[[5974,6302,5975]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b2c179213-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[6303,6304,6305]],[[6306,6307,6308]],[[6309,6310,6311]],[[6312,6313,6314]],[[6315,6316,6317]],[[6318,6315,6319]],[[5926,6315,6317]],[[6320,6321,6322]],[[6307,6323,6324]],[[6325,6315,6318]],[[6308,6326,6327]],[[6328,6329,6330]],[[6331,6332,6323]],[[6308,6327,6306]],[[6333,6334,6335]],[[6336,6337,6338]],[[6339,6340,6326]],[[6341,6342,6343]],[[5926,6317,6344]],[[6345,6346,6317]],[[6347,6325,6318]],[[6348,6349,6350]],[[6325,6340,6315]],[[6316,6315,6340]],[[6351,6352,6345]],[[6334,6353,6335]],[[6354,6308,6324]],[[6306,6326,6355]],[[6333,6347,6318]],[[6326,6340,6325]],[[6356,6357,6329]],[[6358,5953,6359]],[[6360,6361,6321]],[[6362,6363,6364]],[[6334,6360,6365]],[[6366,6367,6314]],[[6328,6330,6368]],[[6316,6339,6308]],[[6324,6308,6307]],[[6354,6316,6308]],[[6365,6353,6334]],[[6369,6370,6371]],[[6372,6373,6362]],[[6321,6365,6360]],[[6353,6365,6321]],[[6319,6315,6374]],[[6353,6320,6373]],[[6312,5926,6304]],[[6375,6310,6376]],[[6377,6378,6359]],[[6311,6379,6309]],[[6380,6381,6382]],[[6335,6355,6333]],[[6383,6307,6306]],[[6326,6347,6355]],[[6318,6360,6333]],[[6384,6385,6386]],[[6387,6388,6389]],[[6390,6391,6392]],[[6311,6375,6393]],[[6351,6345,6330]],[[6353,6373,6335]],[[6369,6394,6395]],[[6396,6397,6358]],[[6333,6360,6334]],[[6318,6319,6360]],[[6398,6399,6400]],[[6401,6402,6399]],[[6320,6374,6403]],[[6322,6361,6374]],[[6326,6306,6327]],[[6355,6383,6306]],[[6404,6405,6406]],[[6407,6408,6409]],[[6361,6319,6374]],[[6361,6360,6319]],[[6320,6403,6373]],[[6320,6322,6374]],[[6307,6383,6323]],[[6355,6335,6383]],[[6316,6345,6317]],[[6332,6354,6324]],[[6308,6339,6326]],[[6316,6340,6339]],[[6322,6321,6361]],[[6320,6353,6321]],[[6359,6378,6410]],[[6400,6411,6397]],[[6355,6347,6333]],[[6326,6325,6347]],[[6397,6411,6394]],[[6412,6399,6413]],[[6414,6415,6416]],[[5947,6377,6415]],[[6378,6377,5947]],[[6410,6417,6418]],[[6419,6420,6421]],[[6422,6176,6423]],[[6424,6342,6425]],[[6426,6315,6427]],[[6428,6429,6430]],[[6431,6432,6433]],[[5947,6399,6378]],[[6434,6344,6435]],[[6404,6436,6437]],[[6431,6433,6438]],[[6437,6432,6370]],[[6407,6439,6440]],[[6367,6441,5926]],[[6442,6443,6444]],[[6445,6359,5953]],[[6415,6377,6359]],[[6430,6446,6447]],[[6448,6449,6349]],[[6431,6438,6371]],[[6450,6451,6452]],[[6453,6449,6454]],[[6448,6454,6449]],[[6455,6382,6456]],[[6457,6458,6459]],[[6455,6460,6461]],[[6462,6449,6438]],[[6370,6431,6371]],[[6370,6432,6431]],[[6408,6407,6440]],[[6463,6464,6376]],[[6465,6466,6467]],[[6390,6468,6469]],[[6387,6440,6470]],[[6471,6472,6408]],[[6389,6408,6440]],[[6466,6465,6456]],[[6473,6399,5947]],[[6429,6453,6474]],[[6381,6466,6456]],[[6470,6475,6344]],[[6476,6477,6478]],[[6479,6477,6480]],[[6382,6381,6456]],[[6447,6481,6482]],[[6476,6480,6477]],[[6483,6459,6484]],[[6485,6389,6388]],[[6465,6455,6456]],[[6486,6335,6357]],[[6487,6488,6489]],[[6490,6491,6492]],[[6490,6423,5953]],[[6493,6433,6348]],[[6494,6495,6496]],[[6479,6497,6466]],[[6479,6466,6381]],[[6432,6436,6496]],[[6474,6473,6429]],[[6429,6479,6381]],[[6484,6375,6464]],[[6494,6433,6495]],[[6432,6437,6436]],[[6411,6413,6394]],[[6496,6399,6473]],[[6498,6458,6488]],[[6499,6385,6500]],[[6491,6501,6386]],[[6492,6502,6337]],[[6503,6504,6505]],[[6506,6507,6508]],[[6509,6508,6510]],[[6463,6511,6512]],[[6513,6514,6515]],[[6384,6317,6500]],[[6516,6517,6513]],[[6507,6513,6515]],[[6317,6384,6501]],[[6336,6338,6518]],[[6503,6505,6519]],[[6508,6507,6490]],[[6490,6510,6508]],[[6507,6491,6490]],[[6520,6521,6519]],[[6521,6517,6516]],[[6497,6467,6466]],[[6461,6476,6471]],[[6522,6523,6524]],[[6520,6519,6505]],[[6525,6526,6527]],[[6315,5926,6427]],[[6397,6396,6400]],[[6402,6378,6399]],[[6398,6528,6401]],[[6398,6529,6528]],[[6529,6396,6358]],[[6398,6400,6396]],[[6529,6417,6528]],[[6418,6358,6410]],[[6429,6428,6453]],[[6449,6350,6349]],[[6448,6474,6454]],[[6428,6482,6530]],[[5926,6344,5947]],[[6375,6531,6393]],[[6440,6387,6389]],[[6344,6532,6387]],[[6440,6439,6470]],[[6407,6409,6533]],[[6498,6534,6435]],[[6535,6536,6450]],[[6479,6537,6477]],[[6538,6439,6533]],[[6539,6517,6520]],[[6514,6501,6515]],[[6481,6382,6530]],[[6408,6489,6471]],[[6474,6453,6454]],[[6530,6449,6453]],[[6540,6343,6541]],[[6363,6403,6374]],[[6542,6543,6427]],[[6544,6363,6374]],[[6545,6341,6543]],[[6546,6363,6544]],[[6315,6547,6374]],[[6548,6549,6550]],[[6438,6449,6371]],[[6530,6482,6481]],[[6551,6445,5953]],[[6415,6359,6445]],[[6338,6346,6518]],[[6346,6345,6352]],[[6518,6352,6351]],[[6518,6346,6352]],[[6552,6351,6553]],[[6552,6518,6351]],[[6309,6376,6310]],[[6464,6375,6376]],[[6426,6547,6315]],[[6554,6372,6546]],[[6555,6512,6556]],[[6557,6489,6558]],[[6386,6385,6491]],[[6336,6552,6357]],[[6337,6502,6559]],[[6500,6317,6560]],[[6515,6501,6491]],[[6501,6384,6386]],[[6393,6561,6562]],[[6563,6564,6565]],[[6566,6542,6427]],[[6545,6543,6542]],[[6553,6329,6357]],[[6323,6332,6324]],[[6553,6330,6329]],[[6332,6316,6354]],[[6486,6567,6568]],[[6330,6345,6368]],[[6331,6568,6332]],[[6569,6356,6328]],[[6570,6332,6568]],[[6570,6316,6332]],[[6492,6337,6336]],[[6518,6552,6336]],[[6571,6441,6572]],[[6573,5926,6441]],[[6574,6419,6421]],[[6421,6176,6574]],[[6344,6479,5947]],[[6575,6537,6479]],[[6407,6533,6439]],[[6469,6576,6390]],[[6387,6470,6344]],[[6577,6578,6579]],[[6538,6475,6470]],[[6580,6409,6581]],[[6580,6581,6475]],[[6472,6471,6582]],[[6538,6580,6475]],[[6533,6409,6580]],[[6482,6428,6430]],[[6530,6453,6428]],[[6369,6404,6437]],[[6405,6395,6406]],[[6560,6502,6499]],[[6559,6583,6337]],[[6362,6364,6372]],[[6550,6584,6585]],[[6541,6342,6424]],[[6586,6587,6426]],[[6526,6425,6588]],[[6546,6364,6363]],[[6372,6589,6590]],[[6590,6548,6550]],[[6425,6372,6585]],[[6335,6373,6372]],[[6591,6526,6592]],[[6592,6526,6593]],[[6444,6443,6594]],[[6341,6425,6342]],[[6595,6425,6526]],[[6588,6341,6545]],[[6566,6592,6593]],[[6566,6596,6592]],[[6587,6554,6547]],[[6372,6364,6546]],[[6591,6527,6526]],[[6597,6598,6525]],[[6599,6525,6527]],[[6598,6526,6525]],[[6600,6443,6442]],[[6594,6601,6602]],[[6571,6442,6444]],[[6603,6600,6442]],[[6604,6603,6572]],[[6605,6600,6603]],[[6590,6589,6586]],[[6372,6554,6589]],[[6537,6478,6477]],[[6576,6469,6472]],[[6391,6582,6478]],[[6478,6471,6476]],[[6497,6606,6607]],[[6606,6479,6480]],[[6582,6576,6472]],[[6390,6392,6468]],[[6608,6609,6472]],[[6609,6409,6408]],[[6473,6448,6349]],[[6473,6474,6448]],[[6366,6604,6367]],[[6603,6442,6571]],[[6558,6610,6484]],[[6531,6317,6539]],[[6335,6492,6357]],[[6492,6425,6490]],[[6510,6490,6503]],[[6507,6515,6491]],[[6393,6531,6561]],[[6539,6520,6505]],[[6504,6611,6539]],[[6612,6539,6611]],[[6371,6382,5953]],[[6336,6357,6492]],[[6463,6512,6555]],[[6489,6557,6512]],[[6523,6522,6379]],[[6379,6522,6613]],[[6613,6309,6379]],[[6613,6376,6309]],[[6613,6463,6376]],[[6613,6511,6463]],[[6489,6488,6458]],[[6487,6408,6485]],[[6614,6498,6488]],[[6615,6459,6458]],[[6312,6304,6616]],[[5926,5925,6305]],[[6493,6462,6438]],[[6350,6449,6462]],[[6499,6500,6560]],[[6385,6384,6500]],[[6344,6375,6435]],[[6506,6513,6507]],[[6317,6517,6539]],[[6514,6513,6517]],[[6509,6516,6508]],[[6509,6521,6516]],[[6594,6573,6444]],[[6602,6617,6573]],[[6602,6573,6594]],[[6618,6571,6444]],[[6536,6532,6344]],[[6388,6387,6532]],[[6451,6619,6452]],[[6388,6532,6535]],[[6434,6536,6344]],[[6535,6532,6536]],[[6534,6614,6434]],[[6614,6488,6487]],[[6434,6451,6450]],[[6452,6388,6535]],[[6516,6506,6508]],[[6516,6513,6506]],[[6552,6553,6357]],[[6351,6330,6553]],[[6560,6559,6502]],[[6560,6317,6583]],[[6542,6566,6593]],[[6427,6596,6566]],[[6524,6393,6562]],[[6620,6621,6563]],[[6622,6623,6531]],[[6564,6612,6611]],[[6512,6511,6489]],[[6565,6504,6503]],[[6385,6499,6491]],[[6623,6624,6561]],[[6617,6602,6601]],[[6599,6597,6525]],[[6464,6555,6556]],[[6464,6463,6555]],[[6576,6391,6390]],[[6609,6608,6581]],[[6537,6575,6392]],[[6392,6575,6468]],[[6446,6429,6381]],[[6494,6348,6433]],[[6598,6595,6526]],[[6425,6585,6424]],[[6584,6625,6424]],[[6626,6627,6343]],[[6584,6424,6585]],[[6625,6549,6427]],[[6590,6586,6548]],[[6589,6587,6586]],[[6503,6522,6624]],[[6624,6562,6561]],[[6503,6563,6565]],[[6425,6423,6490]],[[6628,6629,6630]],[[6305,5925,6420]],[[6422,6631,6632]],[[6633,6303,6634]],[[6422,6632,6176]],[[6634,6303,6305]],[[6635,6628,6422]],[[6633,6631,6422]],[[6422,6636,6633]],[[6304,5926,6305]],[[6632,6574,6176]],[[6637,6305,6420]],[[6632,6637,6574]],[[6637,6420,6419]],[[6497,6460,6467]],[[6461,6471,6455]],[[6423,6635,6422]],[[6638,6304,6629]],[[6639,6640,6635]],[[6640,6304,6638]],[[6422,6628,6630]],[[6628,6635,6629]],[[6537,6391,6478]],[[6537,6392,6391]],[[6434,6614,6451]],[[6451,6487,6619]],[[6450,6452,6535]],[[6619,6485,6452]],[[6313,6312,6616]],[[6314,5926,6312]],[[6462,6493,6350]],[[6438,6433,6493]],[[6423,6366,6314]],[[6366,6605,6604]],[[6547,6426,6587]],[[6549,6584,6550]],[[6626,6625,6427]],[[6548,6586,6426]],[[6543,6626,6427]],[[6627,6341,6343]],[[6549,6426,6427]],[[6549,6548,6426]],[[6540,6625,6626]],[[6584,6549,6625]],[[6600,6595,6443]],[[6595,6601,6594]],[[6441,6367,6572]],[[6366,6423,6605]],[[6636,6630,6303]],[[6634,6305,6637]],[[6383,6486,6323]],[[6383,6335,6486]],[[6570,6567,6641]],[[6486,6357,6567]],[[6486,6331,6323]],[[6486,6568,6331]],[[6574,6637,6419]],[[6632,6631,6634]],[[6519,6521,6509]],[[6520,6517,6521]],[[6398,6401,6399]],[[6528,6417,6402]],[[6598,6597,6601]],[[6642,6427,6617]],[[6591,6642,6527]],[[6617,6601,6597]],[[6310,6375,6311]],[[6464,6556,6484]],[[6414,6416,5953]],[[6415,6445,6416]],[[6641,6356,6569]],[[6345,6316,6368]],[[6641,6643,6570]],[[6368,6316,6570]],[[6395,6413,6406]],[[6411,6400,6412]],[[6404,6369,6405]],[[6394,6413,6395]],[[6493,6348,6350]],[[6433,6432,6495]],[[6607,6606,6480]],[[6497,6479,6606]],[[6610,6457,6483]],[[6459,6615,6484]],[[6457,6459,6483]],[[6458,6498,6615]],[[6484,6610,6483]],[[6489,6458,6457]],[[6489,6610,6558]],[[6489,6457,6610]],[[6556,6557,6558]],[[6556,6512,6557]],[[6314,6367,5926]],[[6604,6572,6367]],[[6635,6638,6629]],[[6640,6639,6644]],[[6625,6540,6424]],[[6343,6342,6541]],[[6343,6540,6626]],[[6541,6424,6540]],[[6567,6356,6641]],[[6567,6357,6356]],[[6643,6328,6368]],[[6356,6329,6328]],[[6643,6569,6328]],[[6643,6641,6569]],[[6529,6358,6418]],[[6397,6371,6358]],[[6359,6410,6358]],[[6378,6402,6410]],[[6593,6545,6542]],[[6588,6425,6341]],[[6604,6605,6603]],[[6443,6595,6594]],[[6423,6600,6605]],[[6423,6595,6600]],[[6560,6583,6559]],[[6317,6346,6583]],[[6581,6608,6475]],[[6468,6575,6577]],[[6531,6375,6317]],[[6344,6317,6375]],[[6489,6490,5953]],[[6624,6522,6562]],[[6489,6503,6490]],[[6522,6511,6613]],[[6596,6591,6592]],[[6596,6642,6591]],[[6528,6402,6401]],[[6417,6410,6402]],[[6547,6544,6374]],[[6547,6546,6544]],[[6382,6471,6489]],[[6382,6455,6471]],[[6468,6579,6469]],[[6609,6408,6472]],[[6469,6579,6472]],[[6468,6577,6579]],[[6460,6607,6461]],[[6480,6476,6461]],[[6465,6460,6455]],[[6607,6480,6461]],[[6358,6371,5953]],[[6449,6530,6382]],[[6437,6370,6369]],[[6371,6397,6369]],[[6492,6499,6502]],[[6492,6491,6499]],[[6583,6338,6337]],[[6583,6346,6338]],[[6531,6623,6561]],[[6620,6624,6623]],[[6435,6615,6498]],[[6435,6484,6615]],[[6558,6484,6556]],[[6435,6375,6484]],[[6411,6412,6413]],[[6400,6399,6412]],[[6489,6522,6503]],[[6489,6511,6522]],[[6311,6524,6379]],[[6524,6562,6522]],[[6379,6524,6523]],[[6311,6393,6524]],[[6417,6529,6418]],[[6398,6396,6529]],[[6389,6485,6408]],[[6388,6452,6485]],[[6543,6627,6626]],[[6543,6341,6627]],[[5925,6421,6420]],[[5925,6176,6421]],[[6642,6599,6527]],[[6617,6597,6599]],[[6441,6571,6618]],[[6572,6603,6571]],[[6344,6575,6479]],[[6577,6475,6578]],[[6344,6577,6575]],[[6344,6475,6577]],[[6629,6303,6630]],[[6629,6304,6303]],[[6633,6636,6303]],[[6422,6630,6636]],[[6632,6634,6637]],[[6631,6633,6634]],[[6467,6460,6465]],[[6497,6607,6460]],[[6335,6425,6492]],[[6335,6372,6425]],[[6601,6595,6598]],[[6423,6425,6595]],[[6635,6640,6638]],[[6635,6423,6639]],[[6585,6590,6550]],[[6585,6372,6590]],[[6479,6473,5947]],[[6479,6429,6473]],[[6349,6348,6494]],[[6406,6413,6399]],[[6349,6494,6473]],[[6495,6432,6496]],[[6436,6404,6645]],[[6645,6404,6406]],[[6564,6621,6612]],[[6620,6623,6622]],[[6565,6564,6611]],[[6563,6621,6564]],[[6547,6554,6546]],[[6587,6589,6554]],[[6439,6538,6470]],[[6533,6580,6538]],[[6612,6531,6539]],[[6622,6621,6620]],[[6612,6622,6531]],[[6612,6621,6622]],[[5947,6414,5953]],[[5947,6415,6414]],[[6317,6514,6517]],[[6317,6501,6514]],[[6478,6582,6471]],[[6391,6576,6582]],[[6593,6588,6545]],[[6593,6526,6588]],[[6403,6362,6373]],[[6403,6363,6362]],[[6380,6446,6381]],[[6430,6429,6446]],[[6416,6551,5953]],[[6416,6445,6551]],[[6563,6624,6620]],[[6563,6503,6624]],[[6519,6510,6503]],[[6519,6509,6510]],[[6408,6487,6489]],[[6485,6619,6487]],[[6451,6614,6487]],[[6534,6498,6614]],[[6567,6570,6568]],[[6643,6368,6570]],[[6314,6313,6423]],[[6644,6304,6640]],[[6313,6639,6423]],[[6313,6616,6639]],[[6616,6644,6639]],[[6616,6304,6644]],[[6436,6645,6496]],[[6406,6399,6645]],[[6494,6496,6473]],[[6645,6399,6496]],[[6505,6504,6539]],[[6565,6611,6504]],[[5953,6382,6489]],[[6371,6449,6382]],[[6430,6447,6482]],[[6380,6382,6481]],[[6380,6447,6446]],[[6380,6481,6447]],[[6394,6369,6397]],[[6395,6405,6369]],[[6534,6434,6435]],[[6450,6536,6434]],[[6573,6617,5926]],[[6427,5926,6617]],[[6427,6642,6596]],[[6617,6599,6642]],[[6618,6573,6441]],[[6618,6444,6573]],[[6579,6608,6472]],[[6581,6409,6609]],[[6578,6608,6579]],[[6578,6475,6608]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b31bb8aab-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022858","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027108)","inonderzoek":"0","lokaalid":"G0503.032e68f0452049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.57000017166138,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84931.822 447528.541)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:23)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6646,6647,6648]],[[6649,6650,6648]],[[6647,6651,6648]],[[6648,6652,6649]],[[6649,6652,6653]],[[6648,6651,6652]],[[6654,6655,6656]],[[6656,6655,6657]],[[6656,6657,6646]],[[6646,6657,6647]],[[6658,6654,6648]],[[6648,6654,6656]],[[6648,6656,6646]],[[6659,6658,6650]],[[6650,6658,6648]],[[6660,6659,6649]],[[6649,6659,6650]],[[6661,6660,6653]],[[6653,6660,6649]],[[6662,6661,6652]],[[6652,6661,6653]],[[6663,6662,6651]],[[6651,6662,6652]],[[6655,6663,6657]],[[6657,6663,6647]],[[6647,6663,6651]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bb8ab0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022856","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027109)","inonderzoek":"0","lokaalid":"G0503.032e68f0452149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.17000007629395,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84936.025 447531.543)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:27)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6664,6665,6666]],[[6664,6656,6667]],[[6667,6668,6669]],[[6667,6656,6668]],[[6666,6657,6656]],[[6664,6666,6656]],[[6665,6670,6666]],[[6671,6672,6673]],[[6673,6672,6674]],[[6673,6674,6664]],[[6664,6674,6665]],[[6675,6671,6667]],[[6667,6671,6673]],[[6667,6673,6664]],[[6676,6675,6669]],[[6669,6675,6667]],[[6677,6676,6668]],[[6668,6676,6669]],[[6654,6677,6656]],[[6656,6677,6668]],[[6655,6654,6657]],[[6657,6654,6656]],[[6678,6655,6666]],[[6666,6655,6657]],[[6679,6678,6670]],[[6670,6678,6666]],[[6672,6679,6674]],[[6674,6679,6665]],[[6665,6679,6670]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bb8ab5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022786","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027110)","inonderzoek":"0","lokaalid":"G0503.032e68f0452249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84939.413 447534.185)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[488,487,6674]],[[488,6680,6681]],[[6681,6680,6682]],[[6680,488,6674]],[[6680,6674,6673]],[[504,505,488]],[[488,505,487]],[[6683,504,6681]],[[6681,504,488]],[[6684,6683,6682]],[[6682,6683,6681]],[[6685,6684,6680]],[[6680,6684,6682]],[[6686,6685,6671]],[[6671,6685,6673]],[[6673,6685,6680]],[[6687,6686,6672]],[[6672,6686,6671]],[[6672,6671,6674]],[[6674,6671,6673]],[[505,6687,487]],[[487,6687,6672]],[[487,6672,6674]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbb1ca-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000017304","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027132)","inonderzoek":"0","lokaalid":"G0503.032e68f0452349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.88000011444092,"min-height-surface":-0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84935.378 447488.560)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:78)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[407,410,6688]],[[407,6688,404]],[[404,6688,6689]],[[6688,410,6690]],[[6688,6691,6692]],[[6688,6690,6691]],[[6690,410,413]],[[406,409,407]],[[407,409,410]],[[403,406,404]],[[404,406,407]],[[6693,403,6694]],[[6694,403,6689]],[[6689,403,404]],[[6695,6693,6696]],[[6696,6693,6694]],[[6696,6694,6688]],[[6688,6694,6689]],[[6697,6695,6698]],[[6698,6695,6696]],[[6698,6696,6692]],[[6692,6696,6688]],[[6699,6697,1158]],[[1158,6697,6698]],[[1158,6698,6691]],[[6691,6698,6692]],[[1159,6699,6690]],[[6690,6699,1158]],[[6690,1158,6691]],[[412,1159,413]],[[413,1159,6690]],[[409,412,410]],[[410,412,413]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd90d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026158","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0452e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.25999999046326,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6700,6701,6702]],[[6701,6703,6702]],[[6704,6702,6703]],[[6704,6703,6705]],[[6706,1964,6707]],[[6707,1964,6708]],[[6707,6708,6700]],[[6700,6708,6701]],[[6709,6706,6702]],[[6702,6706,6707]],[[6702,6707,6700]],[[6710,6709,6704]],[[6704,6709,6702]],[[6711,6710,6705]],[[6705,6710,6704]],[[1977,6711,6703]],[[6703,6711,6705]],[[1964,1977,6708]],[[6708,1977,6701]],[[6701,1977,6703]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd912-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000032719","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003246)","inonderzoek":"0","lokaalid":"G0503.032e68f0452f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.26999998092651,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84855.056 447534.320)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:160)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6712,6713,6714]],[[6712,294,296]],[[6714,6715,6716]],[[294,6714,6716]],[[6712,6714,294]],[[6711,1977,6705]],[[6705,1977,6703]],[[6705,6703,6712]],[[6712,6703,6713]],[[6717,6711,295]],[[295,6711,296]],[[296,6711,6705]],[[296,6705,6712]],[[6718,6717,293]],[[293,6717,295]],[[293,295,294]],[[294,295,296]],[[2119,6718,6716]],[[6716,6718,293]],[[6716,293,294]],[[1961,2119,6715]],[[6715,2119,6716]],[[1966,1961,6714]],[[6714,1961,6715]],[[1977,1966,6703]],[[6703,1966,6713]],[[6713,1966,6714]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd917-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017309","identificatiebagvbohoogstehuisnummer":"(1:503010000027072)","identificatiebagvbolaagstehuisnummer":"(1:503010000027071)","inonderzoek":"0","lokaalid":"G0503.032e68f0453049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.129999995231628,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84916.182 447533.963)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:20-22)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[461,463,6719]],[[6719,6720,6721]],[[6719,6722,6720]],[[6722,6723,6724]],[[461,6719,6721]],[[6719,6723,6722]],[[6725,6726,460]],[[460,6726,462]],[[460,462,461]],[[461,462,463]],[[6727,6725,6728]],[[6728,6725,6721]],[[6721,6725,460]],[[6721,460,461]],[[6729,6727,6730]],[[6730,6727,6728]],[[6730,6728,6720]],[[6720,6728,6721]],[[6731,6729,6722]],[[6722,6729,6730]],[[6722,6730,6720]],[[6732,6731,6724]],[[6724,6731,6722]],[[6733,6732,6723]],[[6723,6732,6724]],[[6734,6733,6719]],[[6719,6733,6723]],[[6726,6734,462]],[[462,6734,463]],[[463,6734,6719]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd91c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000017315","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060239)","inonderzoek":"0","lokaalid":"G0503.032e68f0453149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.90000009536743,"min-height-surface":0.0799999982118607,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84923.713 447522.485)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:15)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6735,6736,6737]],[[6736,6738,6737]],[[6739,6740,6741]],[[6739,6742,6740]],[[6743,6744,6742]],[[6742,6744,6745]],[[6739,6743,6742]],[[6738,6736,6746]],[[6739,6738,6743]],[[6739,6737,6738]],[[6736,6747,6746]],[[6748,6749,6735]],[[6735,6749,6736]],[[6750,6748,6737]],[[6737,6748,6735]],[[6751,6750,6739]],[[6739,6750,6737]],[[6752,6751,6741]],[[6741,6751,6739]],[[6753,6752,6740]],[[6740,6752,6741]],[[6754,6753,6742]],[[6742,6753,6740]],[[6755,6754,6745]],[[6745,6754,6742]],[[6756,6755,6744]],[[6744,6755,6745]],[[6757,6756,6743]],[[6743,6756,6744]],[[6758,6757,6738]],[[6738,6757,6743]],[[6759,6758,6746]],[[6746,6758,6738]],[[6760,6759,6747]],[[6747,6759,6746]],[[6749,6760,6736]],[[6736,6760,6747]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd921-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026312","identificatiebagvbohoogstehuisnummer":"(1:503010000003235)","identificatiebagvbolaagstehuisnummer":"(1:503010000003234)","inonderzoek":"0","lokaalid":"G0503.032e68f0453249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84882.592 447515.552)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:146-146A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6761,6762,6763]],[[6764,6765,6766]],[[6767,6768,6769]],[[6767,6770,6768]],[[6763,6771,6769]],[[6769,6766,6767]],[[6765,6772,6766]],[[6769,6764,6766]],[[6773,6764,6769]],[[6771,6774,6775]],[[6776,6777,6773]],[[6769,6775,6773]],[[6778,6779,6776]],[[6773,6778,6776]],[[6779,6778,6780]],[[6778,6773,6775]],[[6778,6775,6781]],[[6769,6771,6775]],[[6762,6782,6763]],[[6763,6782,6771]],[[6762,6783,6782]],[[6784,6785,6786]],[[6786,6785,6787]],[[6786,6787,6761]],[[6761,6787,6762]],[[6788,6784,6789]],[[6789,6784,6786]],[[6789,6786,6763]],[[6763,6786,6761]],[[6790,6788,6791]],[[6791,6788,6789]],[[6791,6789,6769]],[[6769,6789,6763]],[[6792,6790,2849]],[[2849,6790,6791]],[[2849,6791,6768]],[[6768,6791,6769]],[[2847,6792,6770]],[[6770,6792,2849]],[[6770,2849,6768]],[[2845,2847,6767]],[[6767,2847,6770]],[[2846,2845,6766]],[[6766,2845,6767]],[[2844,2846,6772]],[[6772,2846,6766]],[[2843,2844,6765]],[[6765,2844,6772]],[[2840,2843,6764]],[[6764,2843,6765]],[[2841,2840,6773]],[[6773,2840,6764]],[[2839,2841,6777]],[[6777,2841,6773]],[[2837,2839,6776]],[[6776,2839,6777]],[[2838,2837,6779]],[[6779,2837,6776]],[[3009,2838,6780]],[[6780,2838,6779]],[[3010,3009,6778]],[[6778,3009,6780]],[[3008,3010,6793]],[[6793,3010,6781]],[[6781,3010,6778]],[[6794,3008,6795]],[[6795,3008,6793]],[[6795,6793,6775]],[[6775,6793,6781]],[[6796,6794,6774]],[[6774,6794,6795]],[[6774,6795,6775]],[[6797,6796,6771]],[[6771,6796,6774]],[[6798,6797,6799]],[[6799,6797,6800]],[[6800,6797,6782]],[[6782,6797,6771]],[[6801,6798,6802]],[[6802,6798,6799]],[[6802,6799,6803]],[[6803,6799,6800]],[[6803,6800,6783]],[[6783,6800,6782]],[[6785,6801,6787]],[[6787,6801,6762]],[[6762,6801,6802]],[[6762,6802,6803]],[[6762,6803,6783]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd926-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026311","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003236)","inonderzoek":"0","lokaalid":"G0503.032e68f0453349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.55999994277954,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84879.113 447518.066)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:148)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6804,6793,6805]],[[6806,6807,6808]],[[6793,6804,6808]],[[6807,6806,6809]],[[6806,6808,6810]],[[6806,6810,6811]],[[6810,6808,6804]],[[6810,6804,6812]],[[6812,6804,6813]],[[6805,6795,6814]],[[6804,6805,6815]],[[6793,6795,6805]],[[6816,6817,3008]],[[3008,6817,6794]],[[3008,6794,6793]],[[6793,6794,6795]],[[3005,6816,6808]],[[6808,6816,3008]],[[6808,3008,6793]],[[3006,3005,6807]],[[6807,3005,6808]],[[6818,3006,6809]],[[6809,3006,6807]],[[6819,6818,6806]],[[6806,6818,6809]],[[6820,6819,6821]],[[6821,6819,6811]],[[6811,6819,6806]],[[6822,6820,6823]],[[6823,6820,6821]],[[6823,6821,6810]],[[6810,6821,6811]],[[6824,6822,6825]],[[6825,6822,6823]],[[6825,6823,6812]],[[6812,6823,6810]],[[6826,6824,6827]],[[6827,6824,6825]],[[6827,6825,6813]],[[6813,6825,6812]],[[6828,6826,6829]],[[6829,6826,6827]],[[6829,6827,6804]],[[6804,6827,6813]],[[6830,6828,6831]],[[6831,6828,6829]],[[6831,6829,6815]],[[6815,6829,6804]],[[6832,6830,6805]],[[6805,6830,6831]],[[6805,6831,6815]],[[6833,6832,6814]],[[6814,6832,6805]],[[6817,6833,6794]],[[6794,6833,6795]],[[6795,6833,6814]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbd92b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022857","identificatiebagvbohoogstehuisnummer":"(1:503010000027107)","identificatiebagvbolaagstehuisnummer":"(1:503010000027106)","inonderzoek":"0","lokaalid":"G0503.032e68f0453449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.19000005722046,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84928.642 447523.921)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:17-19)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6834,6835,6836]],[[6837,6838,6836]],[[6835,6839,6836]],[[6836,6839,6837]],[[6662,6663,6652]],[[6652,6663,6651]],[[6652,6651,6834]],[[6834,6651,6835]],[[6840,6662,6836]],[[6836,6662,6652]],[[6836,6652,6834]],[[6841,6840,6838]],[[6838,6840,6836]],[[6842,6841,6748]],[[6748,6841,6735]],[[6735,6841,6837]],[[6837,6841,6838]],[[6843,6842,6749]],[[6749,6842,6748]],[[6749,6748,6736]],[[6736,6748,6735]],[[6736,6735,6839]],[[6839,6735,6837]],[[6663,6843,6651]],[[6651,6843,6835]],[[6835,6843,6749]],[[6835,6749,6736]],[[6835,6736,6839]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff40-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000017219","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003238)","inonderzoek":"0","lokaalid":"G0503.032e68f0453549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.54999995231628,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84875.569 447520.559)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:150)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6829,6831,6827]],[[6844,6845,6846]],[[6821,6823,6825]],[[6847,6821,6825]],[[6827,6848,6825]],[[6848,6849,6847]],[[6825,6848,6847]],[[6827,6846,6848]],[[6827,6844,6846]],[[6844,6850,6845]],[[6831,6844,6827]],[[6851,6852,6828]],[[6828,6852,6830]],[[6828,6830,6829]],[[6829,6830,6831]],[[6853,6851,6826]],[[6826,6851,6828]],[[6826,6828,6827]],[[6827,6828,6829]],[[6854,6853,6824]],[[6824,6853,6826]],[[6824,6826,6825]],[[6825,6826,6827]],[[6855,6854,6822]],[[6822,6854,6824]],[[6822,6824,6823]],[[6823,6824,6825]],[[6856,6855,6820]],[[6820,6855,6822]],[[6820,6822,6821]],[[6821,6822,6823]],[[6857,6856,6847]],[[6847,6856,6820]],[[6847,6820,6821]],[[6858,6857,6849]],[[6849,6857,6847]],[[6859,6858,6848]],[[6848,6858,6849]],[[6860,6859,6846]],[[6846,6859,6848]],[[6861,6860,6845]],[[6845,6860,6846]],[[6862,6861,6850]],[[6850,6861,6845]],[[6863,6862,6844]],[[6844,6862,6850]],[[6852,6863,6830]],[[6830,6863,6831]],[[6831,6863,6844]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff45-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000026313","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027061)","inonderzoek":"0","lokaalid":"G0503.032e68f0453649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.45000004768372,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84898.718 447521.039)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:2)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6864,6865,6866]],[[6864,6867,6868]],[[6869,6870,6871]],[[6872,6865,6864]],[[6873,6865,6872]],[[6874,6873,6872]],[[6875,6876,6864]],[[6872,6864,6876]],[[6877,6876,6878]],[[6878,6876,6879]],[[6879,6876,6875]],[[6868,6867,6871]],[[6875,6868,6880]],[[6875,6864,6868]],[[6881,6871,6882]],[[6882,6871,6883]],[[6883,6871,6870]],[[6867,6869,6871]],[[6884,6870,6869]],[[6885,6886,6864]],[[6864,6886,6867]],[[6887,6885,6866]],[[6866,6885,6864]],[[6888,6887,6865]],[[6865,6887,6866]],[[6889,6888,6873]],[[6873,6888,6865]],[[6890,6889,6874]],[[6874,6889,6873]],[[6891,6890,6872]],[[6872,6890,6874]],[[6892,6891,6876]],[[6876,6891,6872]],[[6893,6892,6877]],[[6877,6892,6876]],[[6894,6893,6878]],[[6878,6893,6877]],[[6895,6894,6879]],[[6879,6894,6878]],[[6896,6895,6897]],[[6897,6895,6898]],[[6898,6895,6875]],[[6875,6895,6879]],[[6899,6896,6900]],[[6900,6896,6897]],[[6900,6897,6901]],[[6901,6897,6898]],[[6901,6898,6880]],[[6880,6898,6875]],[[6902,6899,6868]],[[6868,6899,6900]],[[6868,6900,6901]],[[6868,6901,6880]],[[6903,6902,6871]],[[6871,6902,6868]],[[6904,6903,6905]],[[6905,6903,6906]],[[6906,6903,6881]],[[6881,6903,6871]],[[6907,6904,6908]],[[6908,6904,6905]],[[6908,6905,6909]],[[6909,6905,6906]],[[6909,6906,6882]],[[6882,6906,6881]],[[6910,6907,6883]],[[6883,6907,6908]],[[6883,6908,6909]],[[6883,6909,6882]],[[6911,6910,6870]],[[6870,6910,6883]],[[6912,6911,6884]],[[6884,6911,6870]],[[6913,6912,6869]],[[6869,6912,6884]],[[6886,6913,6867]],[[6867,6913,6869]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff4a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000032725","identificatiebagvbohoogstehuisnummer":"(1:503010000027063)","identificatiebagvbolaagstehuisnummer":"(1:503010000027062)","inonderzoek":"0","lokaalid":"G0503.032e68f0453749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.88000011444092,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84901.595 447523.022)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:4-6)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6914,6915,6916]],[[6914,6917,6918]],[[6917,6914,6916]],[[6916,6919,6920]],[[6916,6921,6919]],[[6917,6916,6920]],[[6922,6923,6924]],[[6924,6923,6925]],[[6924,6925,6926]],[[6926,6925,6927]],[[6926,6927,6914]],[[6914,6927,6915]],[[6928,6922,6918]],[[6918,6922,6924]],[[6918,6924,6926]],[[6918,6926,6914]],[[6929,6928,6917]],[[6917,6928,6918]],[[6930,6929,6885]],[[6885,6929,6864]],[[6864,6929,6920]],[[6920,6929,6917]],[[6931,6930,6886]],[[6886,6930,6885]],[[6886,6885,6867]],[[6867,6885,6864]],[[6867,6864,6919]],[[6919,6864,6920]],[[6932,6931,6921]],[[6921,6931,6886]],[[6921,6886,6867]],[[6921,6867,6919]],[[6933,6932,6916]],[[6916,6932,6921]],[[6923,6933,6925]],[[6925,6933,6927]],[[6927,6933,6915]],[[6915,6933,6916]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff4f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026157","identificatiebagvbohoogstehuisnummer":"(1:503010000003244)","identificatiebagvbolaagstehuisnummer":"(1:503010000003241)","inonderzoek":"0","lokaalid":"G0503.032e68f0453849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.24000000953674,"min-height-surface":-0.0399999991059303,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84867.943 447525.170)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:154-154C)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6934,6935,6936]],[[6935,6937,6936]],[[6935,6938,6937]],[[6935,6939,6938]],[[6935,6940,6939]],[[6939,6940,6941]],[[6940,6935,6942]],[[6943,6944,6945]],[[6943,6940,6942]],[[6943,6942,6944]],[[6944,6946,6947]],[[6947,6946,6948]],[[6948,6946,6949]],[[6944,6942,6946]],[[6950,2177,6934]],[[6934,2177,6935]],[[6951,6950,6936]],[[6936,6950,6934]],[[6952,6951,6937]],[[6937,6951,6936]],[[6953,6952,6938]],[[6938,6952,6937]],[[6954,6953,6939]],[[6939,6953,6938]],[[6955,6954,6941]],[[6941,6954,6939]],[[6956,6955,6940]],[[6940,6955,6941]],[[6957,6956,6943]],[[6943,6956,6940]],[[6958,6957,6945]],[[6945,6957,6943]],[[6959,6958,6944]],[[6944,6958,6945]],[[6960,6959,6947]],[[6947,6959,6944]],[[6961,6960,6948]],[[6948,6960,6947]],[[6962,6961,6949]],[[6949,6961,6948]],[[6963,6962,6964]],[[6964,6962,6946]],[[6946,6962,6949]],[[6965,6963,1952]],[[1952,6963,6964]],[[1952,6964,6942]],[[6942,6964,6946]],[[2177,6965,6935]],[[6935,6965,1952]],[[6935,1952,6942]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff54-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017307","identificatiebagvbohoogstehuisnummer":"(1:503010000027065)","identificatiebagvbolaagstehuisnummer":"(1:503010000027064)","inonderzoek":"0","lokaalid":"G0503.032e68f0453949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84904.818 447525.439)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:8-10)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6966,6967,6968]],[[6969,6966,6970]],[[6970,6966,6926]],[[6926,6966,6927]],[[6969,6967,6966]],[[6971,6972,6969]],[[6969,6972,6967]],[[6973,6971,6970]],[[6970,6971,6969]],[[6924,6973,6926]],[[6926,6973,6970]],[[6925,6924,6927]],[[6927,6924,6926]],[[6974,6925,6966]],[[6966,6925,6927]],[[6975,6974,6968]],[[6968,6974,6966]],[[6972,6975,6967]],[[6967,6975,6968]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff59-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017215","identificatiebagvbohoogstehuisnummer":"(1:503010000027067)","identificatiebagvbolaagstehuisnummer":"(1:503010000027066)","inonderzoek":"0","lokaalid":"G0503.032e68f0453a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84908.607 447528.139)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:12-14)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6976,6977,6978]],[[6978,6967,6969]],[[6978,6979,6967]],[[6976,6978,6969]],[[6980,6981,6982]],[[6982,6981,6983]],[[6982,6983,6976]],[[6976,6983,6977]],[[6984,6980,6971]],[[6971,6980,6969]],[[6969,6980,6982]],[[6969,6982,6976]],[[6985,6984,6972]],[[6972,6984,6971]],[[6972,6971,6967]],[[6967,6971,6969]],[[6986,6985,6979]],[[6979,6985,6972]],[[6979,6972,6967]],[[6987,6986,6978]],[[6978,6986,6979]],[[6981,6987,6983]],[[6983,6987,6977]],[[6977,6987,6978]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff5e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000026218","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027089)","inonderzoek":"0","lokaalid":"G0503.032e68f0453b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.07999992370605,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84861.651 447529.723)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:156)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6988,6989,6708]],[[6707,6990,6991]],[[6988,6708,6991]],[[6991,6708,6707]],[[6989,6992,6708]],[[6989,6993,6992]],[[6964,1952,6946]],[[6946,1952,6942]],[[6946,6942,6988]],[[6988,6942,6989]],[[6994,6964,6991]],[[6991,6964,6946]],[[6991,6946,6988]],[[6995,6994,6990]],[[6990,6994,6991]],[[6706,6995,6707]],[[6707,6995,6990]],[[1964,6706,6708]],[[6708,6706,6707]],[[2148,1964,6992]],[[6992,1964,6708]],[[1951,2148,6993]],[[6993,2148,6992]],[[1952,1951,6942]],[[6942,1951,6989]],[[6989,1951,6993]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff63-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.6)","identificatiebagpnd":"503100000017218","identificatiebagvbohoogstehuisnummer":"(1:503010000027070)","identificatiebagvbolaagstehuisnummer":"(1:503010000027069)","inonderzoek":"0","lokaalid":"G0503.032e68f0453c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.69000005722046,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.809 447531.432)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:16-18)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6996,6997,6998]],[[6728,6999,6982]],[[6982,6999,6983]],[[6728,6730,6999]],[[6999,6730,6997]],[[6997,6730,6998]],[[7000,7001,6727]],[[6727,7001,6729]],[[6727,6729,6728]],[[6728,6729,6730]],[[7002,7000,6980]],[[6980,7000,6982]],[[6982,7000,6727]],[[6982,6727,6728]],[[7003,7002,6981]],[[6981,7002,6980]],[[6981,6980,6983]],[[6983,6980,6982]],[[7004,7003,6999]],[[6999,7003,6981]],[[6999,6981,6983]],[[7005,7004,6997]],[[6997,7004,6999]],[[7006,7005,6996]],[[6996,7005,6997]],[[7007,7006,6998]],[[6998,7006,6996]],[[7001,7007,6729]],[[6729,7007,6730]],[[6730,7007,6998]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bbff68-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:32.7)","identificatiebagpnd":"503100000017221","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003233)","inonderzoek":"0","lokaalid":"G0503.032e68f0453e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.09999990463257,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.280 447513.169)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:144)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7008,7009,7010]],[[7011,7012,7013]],[[7014,7015,7013]],[[7012,7014,7013]],[[7010,7009,7016]],[[7011,7017,7012]],[[7018,7011,7013]],[[7010,7019,7018]],[[7020,7021,7022]],[[7023,7024,7020]],[[7022,7025,7020]],[[7011,7026,7022]],[[7020,7025,7023]],[[7025,7022,7026]],[[7025,7026,7027]],[[7026,7011,7028]],[[7029,7030,7031]],[[7029,7028,7030]],[[7029,7026,7028]],[[7011,7018,7028]],[[7010,7018,7013]],[[7032,7028,7018]],[[7010,7016,7019]],[[7033,7034,7008]],[[7008,7034,7009]],[[7035,7033,7010]],[[7010,7033,7008]],[[7036,7035,7013]],[[7013,7035,7010]],[[7037,7036,7015]],[[7015,7036,7013]],[[1064,7037,7014]],[[7014,7037,7015]],[[1067,1064,7012]],[[7012,1064,7014]],[[1066,1067,7017]],[[7017,1067,7012]],[[1069,1066,7011]],[[7011,1066,7017]],[[1070,1069,7022]],[[7022,1069,7011]],[[1083,1070,7021]],[[7021,1070,7022]],[[1093,1083,7020]],[[7020,1083,7021]],[[1092,1093,7024]],[[7024,1093,7020]],[[2854,1092,7023]],[[7023,1092,7024]],[[2855,2854,7025]],[[7025,2854,7023]],[[2851,2855,7027]],[[7027,2855,7025]],[[2853,2851,7026]],[[7026,2851,7027]],[[2852,2853,7029]],[[7029,2853,7026]],[[2850,2852,7031]],[[7031,2852,7029]],[[2849,2850,6768]],[[6768,2850,7030]],[[7030,2850,7031]],[[6791,2849,6769]],[[6769,2849,6768]],[[6769,6768,7028]],[[7028,6768,7030]],[[6789,6791,6763]],[[6763,6791,6769]],[[6763,6769,7032]],[[7032,6769,7028]],[[6786,6789,6761]],[[6761,6789,6763]],[[6761,6763,7018]],[[7018,6763,7032]],[[6787,6786,6762]],[[6762,6786,6761]],[[6762,6761,7019]],[[7019,6761,7018]],[[7038,6787,7016]],[[7016,6787,6762]],[[7016,6762,7019]],[[7034,7038,7009]],[[7009,7038,7016]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc267b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027889","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0453f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[6901,6906,6800]],[[6901,6803,6898]],[[6901,6800,6803]],[[6906,7039,6800]],[[6906,7040,7039]],[[6906,6909,7040]],[[7040,6909,7041]],[[6900,6905,6901]],[[6901,6905,6906]],[[6897,6900,6898]],[[6898,6900,6901]],[[6802,6897,6803]],[[6803,6897,6898]],[[6799,6802,6800]],[[6800,6802,6803]],[[7042,6799,7039]],[[7039,6799,6800]],[[7043,7042,7040]],[[7040,7042,7039]],[[7044,7043,7041]],[[7041,7043,7040]],[[6908,7044,6909]],[[6909,7044,7041]],[[6905,6908,6906]],[[6906,6908,6909]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2680-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:29.9)","identificatiebagpnd":"503100000017308","identificatiebagvbohoogstehuisnummer":"(1:503010000027144)","identificatiebagvbolaagstehuisnummer":"(1:503010000027143)","inonderzoek":"0","lokaalid":"G0503.032e68f0454049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.11999988555908,"min-height-surface":-0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84901.723 447506.067)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:140-142)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7045,7046,7047]],[[7048,7049,7050]],[[7051,7046,7045]],[[7052,7046,7053]],[[7053,7046,7051]],[[7050,7054,7051]],[[7055,7045,7056]],[[7057,7054,7049]],[[7058,7057,7049]],[[7048,7059,7049]],[[7060,7059,7061]],[[7060,7062,7059]],[[7063,7059,7062]],[[7064,7062,7065]],[[7062,7060,7065]],[[7049,7054,7050]],[[7048,7061,7059]],[[7066,7061,7067]],[[7048,7067,7061]],[[7068,7066,7067]],[[7067,7048,7069]],[[7051,7045,7050]],[[7055,7050,7045]],[[7070,7050,7071]],[[7072,7055,7056]],[[7071,7050,7055]],[[7073,7074,7045]],[[7045,7074,7075]],[[7045,7075,7076]],[[7045,7076,7056]],[[7077,7073,7047]],[[7047,7073,7045]],[[7078,7077,7046]],[[7046,7077,7047]],[[7079,7078,7052]],[[7052,7078,7046]],[[7080,7079,7053]],[[7053,7079,7052]],[[7081,7080,7051]],[[7051,7080,7053]],[[7082,7081,7054]],[[7054,7081,7051]],[[7083,7082,7057]],[[7057,7082,7054]],[[7084,7083,7058]],[[7058,7083,7057]],[[7085,7084,7049]],[[7049,7084,7058]],[[7086,7085,7059]],[[7059,7085,7049]],[[7087,7086,7063]],[[7063,7086,7059]],[[7088,7087,7062]],[[7062,7087,7063]],[[7089,7088,7064]],[[7064,7088,7062]],[[7090,7089,7065]],[[7065,7089,7064]],[[7091,7090,7060]],[[7060,7090,7065]],[[7092,7091,7061]],[[7061,7091,7060]],[[7093,7092,7066]],[[7066,7092,7061]],[[7094,7093,7068]],[[7068,7093,7066]],[[7095,7094,7067]],[[7067,7094,7068]],[[7096,7095,7069]],[[7069,7095,7067]],[[7097,7096,7048]],[[7048,7096,7069]],[[7098,7097,7050]],[[7050,7097,7048]],[[7099,7098,7070]],[[7070,7098,7050]],[[7100,7099,7071]],[[7071,7099,7070]],[[7101,7100,7055]],[[7055,7100,7071]],[[7102,7101,7103]],[[7103,7101,7104]],[[7104,7101,7072]],[[7072,7101,7055]],[[7074,7102,7075]],[[7075,7102,7103]],[[7075,7103,7076]],[[7076,7103,7104]],[[7076,7104,7056]],[[7056,7104,7072]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2685-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:29.9)","identificatiebagpnd":"503100000017313","identificatiebagvbohoogstehuisnummer":"(1:503010000027141)","identificatiebagvbolaagstehuisnummer":"(1:503010000027140)","inonderzoek":"0","lokaalid":"G0503.032e68f0454149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":7.11999988555908,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84907.181 447503.812)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:136-138)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7105,7106,7056]],[[7107,7108,7109]],[[7105,7056,7109]],[[7109,7110,7107]],[[7109,7056,7110]],[[7110,7056,7045]],[[7106,7111,7056]],[[7112,7113,7114]],[[7114,7113,1874]],[[7114,1874,7115]],[[7115,1874,7116]],[[7115,7116,7105]],[[7105,7116,7106]],[[7117,7112,7109]],[[7109,7112,7114]],[[7109,7114,7115]],[[7109,7115,7105]],[[7118,7117,7108]],[[7108,7117,7109]],[[7119,7118,7107]],[[7107,7118,7108]],[[7120,7119,7110]],[[7110,7119,7107]],[[7121,7120,7073]],[[7073,7120,7045]],[[7045,7120,7110]],[[7122,7121,7074]],[[7074,7121,7073]],[[7074,7073,7075]],[[7075,7073,7076]],[[7076,7073,7056]],[[7056,7073,7045]],[[7123,7122,1877]],[[1877,7122,7074]],[[1877,7074,7075]],[[1877,7075,7124]],[[7124,7075,7076]],[[7124,7076,7111]],[[7111,7076,7056]],[[7113,7123,1874]],[[1874,7123,7116]],[[7116,7123,7106]],[[7106,7123,1877]],[[7106,1877,7124]],[[7106,7124,7111]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc268a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000017314","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027099)","inonderzoek":"0","lokaalid":"G0503.032e68f0454249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.32999992370605,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84911.581 447513.461)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:3)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7125,7126,7127]],[[7125,7127,7128]],[[7129,7076,7124]],[[7130,7127,7126]],[[7129,7104,7076]],[[7129,7131,7104]],[[7104,7131,7132]],[[7129,7127,7131]],[[7133,7134,7127]],[[7131,7127,7134]],[[7134,7135,7136]],[[7135,7134,7133]],[[7137,7130,7126]],[[7133,7127,7130]],[[1878,7138,7139]],[[7139,7138,7140]],[[7139,7140,7125]],[[7125,7140,7126]],[[1873,1878,7128]],[[7128,1878,7139]],[[7128,7139,7125]],[[1870,1873,7127]],[[7127,1873,7128]],[[1871,1870,7129]],[[7129,1870,7127]],[[1877,1871,7124]],[[7124,1871,7129]],[[7075,1877,7076]],[[7076,1877,7124]],[[7103,7075,7104]],[[7104,7075,7076]],[[7141,7103,7132]],[[7132,7103,7104]],[[7142,7141,7131]],[[7131,7141,7132]],[[7143,7142,7134]],[[7134,7142,7131]],[[7144,7143,7136]],[[7136,7143,7134]],[[7145,7144,7135]],[[7135,7144,7136]],[[7146,7145,7133]],[[7133,7145,7135]],[[7147,7146,7130]],[[7130,7146,7133]],[[7148,7147,7137]],[[7137,7147,7130]],[[7138,7148,7140]],[[7140,7148,7126]],[[7126,7148,7137]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc2699-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37.6)","identificatiebagpnd":"503100000032234","identificatiebagvbohoogstehuisnummer":"(1:503010000027139)","identificatiebagvbolaagstehuisnummer":"(1:503010000027137)","inonderzoek":"0","lokaalid":"G0503.032e68f0454549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.16000008583069,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84911.526 447499.820)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:134-134A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7149,7150,7151]],[[7152,7153,7154]],[[7150,7149,7154]],[[7154,7155,7152]],[[7152,7155,7156]],[[7155,7154,7157]],[[7157,7115,7158]],[[7157,7154,7116]],[[7158,7115,7159]],[[7157,7116,7115]],[[7154,7149,7116]],[[7150,7160,7151]],[[7151,7160,7161]],[[7151,7161,7162]],[[7163,7160,7164]],[[7161,7165,7166]],[[7161,7163,7165]],[[7161,7160,7163]],[[7167,7168,7150]],[[7150,7168,7160]],[[7169,7167,7154]],[[7154,7167,7150]],[[7170,7169,7153]],[[7153,7169,7154]],[[7171,7170,7152]],[[7152,7170,7153]],[[7172,7171,7156]],[[7156,7171,7152]],[[7173,7172,7155]],[[7155,7172,7156]],[[7174,7173,7157]],[[7157,7173,7155]],[[7175,7174,7158]],[[7158,7174,7157]],[[7176,7175,7159]],[[7159,7175,7158]],[[7114,7176,7115]],[[7115,7176,7159]],[[1874,7114,7116]],[[7116,7114,7115]],[[1868,1874,7149]],[[7149,1874,7116]],[[1865,1868,7151]],[[7151,1868,7149]],[[1866,1865,7162]],[[7162,1865,7151]],[[1861,1866,7161]],[[7161,1866,7162]],[[7177,1861,1862]],[[1862,1861,7178]],[[7178,1861,7166]],[[7166,1861,7161]],[[7179,7177,7180]],[[7180,7177,1862]],[[7180,1862,7181]],[[7181,1862,7178]],[[7181,7178,7165]],[[7165,7178,7166]],[[7182,7179,7163]],[[7163,7179,7180]],[[7163,7180,7181]],[[7163,7181,7165]],[[7183,7182,7164]],[[7164,7182,7163]],[[7168,7183,7160]],[[7160,7183,7164]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc269e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:30.9)","identificatiebagpnd":"503100000017310","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027136)","inonderzoek":"0","lokaalid":"G0503.032e68f0454649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.1800000667572,"min-height-surface":-0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.622 447497.659)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:132)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7184,7185,7186]],[[7186,7185,7187]],[[7185,7184,7188]],[[7185,7189,7190]],[[7185,7188,7189]],[[7188,7191,7192]],[[7189,7188,7192]],[[7184,7193,7188]],[[7194,7195,7196]],[[7196,7195,7197]],[[7196,7197,7184]],[[7184,7197,7193]],[[7198,7194,7186]],[[7186,7194,7196]],[[7186,7196,7184]],[[7199,7198,7187]],[[7187,7198,7186]],[[7200,7199,7185]],[[7185,7199,7187]],[[7167,7200,7150]],[[7150,7200,7190]],[[7190,7200,7185]],[[7168,7167,7160]],[[7160,7167,7150]],[[7160,7150,7189]],[[7189,7150,7190]],[[7201,7168,7192]],[[7192,7168,7160]],[[7192,7160,7189]],[[7202,7201,7191]],[[7191,7201,7192]],[[7203,7202,7188]],[[7188,7202,7191]],[[7195,7203,7197]],[[7197,7203,7193]],[[7193,7203,7188]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc26a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022787","identificatiebagvbohoogstehuisnummer":"(1:503010000027101)","identificatiebagvbolaagstehuisnummer":"(1:503010000027100)","inonderzoek":"0","lokaalid":"G0503.032e68f0454749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.0599999986588955,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84913.581 447515.061)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:5-7)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7181,7204,7205]],[[7178,7181,7205]],[[7206,7207,7205]],[[7205,7207,7178]],[[7206,7139,7207]],[[7206,7140,7139]],[[7208,7206,7209]],[[7210,7206,7211]],[[7140,7208,7212]],[[7140,7206,7208]],[[7209,7206,7210]],[[7213,7209,7210]],[[7214,7215,7206]],[[7206,7215,7216]],[[7206,7216,7211]],[[7217,7214,7205]],[[7205,7214,7206]],[[7218,7217,7204]],[[7204,7217,7205]],[[7180,7218,7181]],[[7181,7218,7204]],[[1862,7180,7178]],[[7178,7180,7181]],[[1879,1862,7207]],[[7207,1862,7178]],[[7219,1879,1878]],[[1878,1879,7139]],[[7139,1879,7207]],[[7220,7219,7138]],[[7138,7219,1878]],[[7138,1878,7140]],[[7140,1878,7139]],[[7221,7220,7212]],[[7212,7220,7138]],[[7212,7138,7140]],[[7222,7221,7208]],[[7208,7221,7212]],[[7223,7222,7209]],[[7209,7222,7208]],[[7224,7223,7213]],[[7213,7223,7209]],[[7225,7224,7226]],[[7226,7224,7210]],[[7210,7224,7213]],[[7215,7225,7216]],[[7216,7225,7226]],[[7216,7226,7211]],[[7211,7226,7210]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc26a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:30.9)","identificatiebagpnd":"503100000017303","identificatiebagvbohoogstehuisnummer":"(1:503010000027135)","identificatiebagvbolaagstehuisnummer":"(1:503010000027134)","inonderzoek":"0","lokaalid":"G0503.032e68f0454849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84918.038 447495.615)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:130-130A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7227,7228,7229]],[[7228,7230,7231]],[[7228,7227,7197]],[[7232,7233,7234]],[[7235,7232,7230]],[[7232,7235,7233]],[[7233,7235,7236]],[[7236,7235,7237]],[[7232,7231,7230]],[[7230,7228,7238]],[[7238,7228,7197]],[[7239,7238,7196]],[[7240,7239,7196]],[[7238,7197,7196]],[[7227,7241,7197]],[[7227,7242,7241]],[[7243,7244,7227]],[[7227,7244,7242]],[[7245,7243,7229]],[[7229,7243,7227]],[[7246,7245,7228]],[[7228,7245,7229]],[[7247,7246,7231]],[[7231,7246,7228]],[[7248,7247,7232]],[[7232,7247,7231]],[[7249,7248,7234]],[[7234,7248,7232]],[[1005,7249,7233]],[[7233,7249,7234]],[[998,1005,7236]],[[7236,1005,7233]],[[996,998,7237]],[[7237,998,7236]],[[1002,996,7235]],[[7235,996,7237]],[[1000,1002,7230]],[[7230,1002,7235]],[[1001,1000,7238]],[[7238,1000,7230]],[[999,1001,7239]],[[7239,1001,7238]],[[997,999,7240]],[[7240,999,7239]],[[7250,997,7194]],[[7194,997,7196]],[[7196,997,7240]],[[7251,7250,7195]],[[7195,7250,7194]],[[7195,7194,7197]],[[7197,7194,7196]],[[7252,7251,7241]],[[7241,7251,7195]],[[7241,7195,7197]],[[7244,7252,7242]],[[7242,7252,7241]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dbd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.8)","identificatiebagpnd":"503100000022788","identificatiebagvbohoogstehuisnummer":"(1:503010000027103)","identificatiebagvbolaagstehuisnummer":"(1:503010000027102)","inonderzoek":"0","lokaalid":"G0503.032e68f0454949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.8600001335144,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84917.758 447517.943)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:9-11)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7253,7254,7255]],[[7256,7257,7258]],[[7258,7257,7259]],[[7256,7254,7253]],[[7257,7256,7253]],[[7253,7255,7260]],[[7254,7261,7255]],[[7262,7263,6753]],[[6753,7263,6754]],[[6753,6754,6740]],[[6740,6754,6742]],[[6740,6742,7256]],[[7256,6742,7254]],[[7264,7262,7258]],[[7258,7262,6753]],[[7258,6753,6740]],[[7258,6740,7256]],[[7265,7264,7259]],[[7259,7264,7258]],[[7266,7265,7257]],[[7257,7265,7259]],[[7267,7266,7253]],[[7253,7266,7257]],[[7268,7267,7260]],[[7260,7267,7253]],[[7216,7268,7211]],[[7211,7268,7255]],[[7255,7268,7260]],[[7226,7216,7210]],[[7210,7216,7211]],[[7210,7211,7261]],[[7261,7211,7255]],[[7263,7226,6754]],[[6754,7226,6742]],[[6742,7226,7254]],[[7254,7226,7210]],[[7254,7210,7261]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dc2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:22.9)","identificatiebagpnd":"503100000017311","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027133)","inonderzoek":"0","lokaalid":"G0503.032e68f0454a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.1399998664856,"min-height-surface":-0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84928.992 447490.710)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:80)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7269,7270,7271]],[[7270,7272,7271]],[[7271,7272,7273]],[[7273,7272,7274]],[[7275,7274,7272]],[[7272,7270,7276]],[[6696,6698,6688]],[[6688,6698,6692]],[[6688,6692,7269]],[[7269,6692,7270]],[[6694,6696,6689]],[[6689,6696,6688]],[[6689,6688,7271]],[[7271,6688,7269]],[[7277,6694,7273]],[[7273,6694,6689]],[[7273,6689,7271]],[[7278,7277,7274]],[[7274,7277,7273]],[[7279,7278,7275]],[[7275,7278,7274]],[[1263,7279,7272]],[[7272,7279,7275]],[[1158,1263,6691]],[[6691,1263,7276]],[[7276,1263,7272]],[[6698,1158,6692]],[[6692,1158,6691]],[[6692,6691,7270]],[[7270,6691,7276]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dc7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026304","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003296)","inonderzoek":"0","lokaalid":"G0503.032e68f0454b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.05999994277954,"min-height-surface":0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84947.427 447599.451)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:36)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7280,7281,7282]],[[7283,7280,7282]],[[7284,7280,7283]],[[7284,7285,7280]],[[7284,7286,7285]],[[7285,7286,7287]],[[7288,7289,543]],[[543,7289,544]],[[543,544,528]],[[528,544,531]],[[528,531,7284]],[[7284,531,7286]],[[7290,7288,7291]],[[7291,7288,7292]],[[7292,7288,7283]],[[7283,7288,543]],[[7283,543,528]],[[7283,528,7284]],[[7293,7290,7294]],[[7294,7290,7291]],[[7294,7291,7295]],[[7295,7291,7292]],[[7295,7292,7282]],[[7282,7292,7283]],[[7296,7293,7281]],[[7281,7293,7294]],[[7281,7294,7295]],[[7281,7295,7282]],[[7297,7296,7280]],[[7280,7296,7281]],[[7298,7297,7285]],[[7285,7297,7280]],[[7299,7298,7287]],[[7287,7298,7285]],[[7289,7299,544]],[[544,7299,531]],[[531,7299,7286]],[[7286,7299,7287]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc4dcc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026305","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003295)","inonderzoek":"0","lokaalid":"G0503.032e68f0454c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.51000022888184,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84941.552 447605.645)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7292,7300,7301]],[[7300,7292,7302]],[[7303,7300,7302]],[[7304,7292,7295]],[[7305,7302,7306]],[[7305,7306,7307]],[[7302,7292,7304]],[[7308,7304,7295]],[[7306,7302,7304]],[[7308,7295,7309]],[[7291,7294,7292]],[[7292,7294,7295]],[[7310,7291,7301]],[[7301,7291,7292]],[[7311,7310,7300]],[[7300,7310,7301]],[[7312,7311,7303]],[[7303,7311,7300]],[[7313,7312,7314]],[[7314,7312,7315]],[[7315,7312,7302]],[[7302,7312,7303]],[[7316,7313,7317]],[[7317,7313,7314]],[[7317,7314,7318]],[[7318,7314,7315]],[[7318,7315,7305]],[[7305,7315,7302]],[[7319,7316,7307]],[[7307,7316,7317]],[[7307,7317,7318]],[[7307,7318,7305]],[[7320,7319,7306]],[[7306,7319,7307]],[[7321,7320,7304]],[[7304,7320,7306]],[[7322,7321,7308]],[[7308,7321,7304]],[[7323,7322,7309]],[[7309,7322,7308]],[[7294,7323,7295]],[[7295,7323,7309]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc751d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026236","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027040)","inonderzoek":"0","lokaalid":"G0503.032e68f0455949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.03999996185303,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84899.425 447577.136)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:35)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7324,7325,7326]],[[7324,7327,7328]],[[7324,7326,7327]],[[7325,7329,7326]],[[7326,7329,7330]],[[7331,7332,7333]],[[7333,7332,2312]],[[7333,2312,7324]],[[7324,2312,7325]],[[7334,7331,2284]],[[2284,7331,7333]],[[2284,7333,7328]],[[7328,7333,7324]],[[7335,7334,2285]],[[2285,7334,7336]],[[7336,7334,7327]],[[7327,7334,2284]],[[7327,2284,7328]],[[7337,7335,7338]],[[7338,7335,2285]],[[7338,2285,7339]],[[7339,2285,7336]],[[7339,7336,7326]],[[7326,7336,7327]],[[7340,7337,7341]],[[7341,7337,7338]],[[7341,7338,7342]],[[7342,7338,7339]],[[7342,7339,7330]],[[7330,7339,7326]],[[2311,7340,7329]],[[7329,7340,7341]],[[7329,7341,7342]],[[7329,7342,7330]],[[7332,2311,2312]],[[2312,2311,7325]],[[7325,2311,7329]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc7522-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026232","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027041)","inonderzoek":"0","lokaalid":"G0503.032e68f0455a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.419999986886978,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.334 447579.308)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:37)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7343,7344,7345]],[[7346,7347,7348]],[[7346,7345,7344]],[[7346,7344,7347]],[[7343,7349,7344]],[[7343,7350,7351]],[[7349,7343,7351]],[[2298,7352,7343]],[[7343,7352,2297]],[[7343,2297,7353]],[[7343,7353,7350]],[[2294,2298,7345]],[[7345,2298,7343]],[[2295,2294,7346]],[[7346,2294,7345]],[[2287,2295,7348]],[[7348,2295,7346]],[[2284,2287,7328]],[[7328,2287,7347]],[[7347,2287,7348]],[[7333,2284,7324]],[[7324,2284,7328]],[[7324,7328,7344]],[[7344,7328,7347]],[[2312,7333,7325]],[[7325,7333,7324]],[[7325,7324,7349]],[[7349,7324,7344]],[[7354,2312,2308]],[[2308,2312,7355]],[[7355,2312,7351]],[[7351,2312,7325]],[[7351,7325,7349]],[[7352,7354,2297]],[[2297,7354,2308]],[[2297,2308,7353]],[[7353,2308,7355]],[[7353,7355,7350]],[[7350,7355,7351]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c37-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026230","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027051)","inonderzoek":"0","lokaalid":"G0503.032e68f0455b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.9300000667572,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.625 447604.950)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:57)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7356,7357,7358]],[[7356,7358,7359]],[[7358,7357,7360]],[[7358,7360,7361]],[[2624,7362,7356]],[[7356,7362,7357]],[[2432,2624,7359]],[[7359,2624,7356]],[[2428,2432,7358]],[[7358,2432,7359]],[[2724,2428,7361]],[[7361,2428,7358]],[[7363,2724,7360]],[[7360,2724,7361]],[[7362,7363,7357]],[[7357,7363,7360]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c3c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026224","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027042)","inonderzoek":"0","lokaalid":"G0503.032e68f0455c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.479999989271164,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84905.401 447581.619)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:39)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7364,7355,7365]],[[7355,7353,7365]],[[7353,7366,7367]],[[7368,7353,7367]],[[7365,7353,7368]],[[2322,2308,7364]],[[7364,2308,7355]],[[2414,2322,7365]],[[7365,2322,7364]],[[2669,2414,7368]],[[7368,2414,7365]],[[2507,2669,7367]],[[7367,2669,7368]],[[2290,2507,7366]],[[7366,2507,7367]],[[2297,2290,7353]],[[7353,2290,7366]],[[2308,2297,7355]],[[7355,2297,7353]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c41-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000032721","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027052)","inonderzoek":"0","lokaalid":"G0503.032e68f0455d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84905.591 447607.059)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:59)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7369,7370,7371]],[[7372,7373,7374]],[[7371,7375,7374]],[[7370,7376,7371]],[[7374,7375,7372]],[[7372,7377,7378]],[[7372,7375,7377]],[[7371,7376,7375]],[[7379,7380,2449]],[[2449,7380,7381]],[[2449,7381,7369]],[[7369,7381,7370]],[[2447,7379,7371]],[[7371,7379,2449]],[[7371,2449,7369]],[[2443,2447,7374]],[[7374,2447,7371]],[[2444,2443,7373]],[[7373,2443,7374]],[[2451,2444,7372]],[[7372,2444,7373]],[[2438,2451,7378]],[[7378,2451,7372]],[[2439,2438,7377]],[[7377,2438,7378]],[[2624,2439,7356]],[[7356,2439,7375]],[[7375,2439,7377]],[[7362,2624,7357]],[[7357,2624,7356]],[[7357,7356,7376]],[[7376,7356,7375]],[[7380,7362,7381]],[[7381,7362,7370]],[[7370,7362,7357]],[[7370,7357,7376]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c46-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026228","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027053)","inonderzoek":"0","lokaalid":"G0503.032e68f0455e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.310000002384186,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84908.575 447609.097)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:61)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7382,7383,7384]],[[7382,7384,7385]],[[7383,7386,7384]],[[7387,7388,2454]],[[2454,7388,7389]],[[2454,7389,7382]],[[7382,7389,7383]],[[2445,7387,7385]],[[7385,7387,2454]],[[7385,2454,7382]],[[2449,2445,7369]],[[7369,2445,7384]],[[7384,2445,7385]],[[7381,2449,7370]],[[7370,2449,7369]],[[7370,7369,7386]],[[7386,7369,7384]],[[7388,7381,7389]],[[7389,7381,7383]],[[7383,7381,7370]],[[7383,7370,7386]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c4b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026229","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027054)","inonderzoek":"0","lokaalid":"G0503.032e68f0455f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.319999992847443,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84912.042 447611.640)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:63)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7390,7391,7392]],[[7393,7390,7392]],[[7391,7390,7394]],[[7390,7393,7395]],[[7393,7396,7395]],[[7393,7397,7398]],[[7396,7393,7398]],[[7399,7400,7393]],[[7393,7400,7397]],[[7401,7399,7392]],[[7392,7399,7393]],[[2630,7401,7391]],[[7391,7401,7392]],[[2440,2630,7394]],[[7394,2630,7391]],[[2453,2440,7390]],[[7390,2440,7394]],[[2454,2453,7382]],[[7382,2453,7395]],[[7395,2453,7390]],[[7389,2454,7383]],[[7383,2454,7382]],[[7383,7382,7396]],[[7396,7382,7395]],[[7402,7389,7398]],[[7398,7389,7383]],[[7398,7383,7396]],[[7400,7402,7397]],[[7397,7402,7398]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c50-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000026227","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027055)","inonderzoek":"0","lokaalid":"G0503.032e68f0456049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.46000000834465,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84920.220 447592.293)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:67)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7403,7404,7405]],[[7403,7406,7407]],[[7404,7403,7408]],[[7408,7403,7407]],[[7407,7406,7409]],[[2491,2714,7410]],[[7410,2714,7411]],[[7410,7411,7403]],[[7403,7411,7406]],[[2492,2491,7405]],[[7405,2491,7410]],[[7405,7410,7403]],[[2508,2492,7404]],[[7404,2492,7405]],[[2596,2508,7408]],[[7408,2508,7404]],[[2649,2596,7412]],[[7412,2596,7407]],[[7407,2596,7408]],[[2461,2649,7413]],[[7413,2649,7412]],[[7413,7412,7409]],[[7409,7412,7407]],[[2714,2461,7411]],[[7411,2461,7406]],[[7406,2461,7413]],[[7406,7413,7409]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c53-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026226","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0456149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.08999991416931,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7412,7413,7414]],[[7412,7414,7415]],[[7413,7416,7414]],[[7417,7418,2649]],[[2649,7418,2461]],[[2649,2461,7412]],[[7412,2461,7413]],[[2430,7417,7415]],[[7415,7417,2649]],[[7415,2649,7412]],[[2431,2430,7414]],[[7414,2430,7415]],[[2441,2431,7416]],[[7416,2431,7414]],[[7418,2441,2461]],[[2461,2441,7413]],[[7413,2441,7416]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c58-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000017319","identificatiebagvbohoogstehuisnummer":"(1:503010000003291)","identificatiebagvbolaagstehuisnummer":"(1:503010000003290)","inonderzoek":"0","lokaalid":"G0503.032e68f0456249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":0.310000002384186,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84925.993 447620.937)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:30-31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7419,7420,7421]],[[7422,7423,7424]],[[7423,7425,7426]],[[7424,7423,7426]],[[7427,7422,7424]],[[7428,7429,7430]],[[7427,7431,7422]],[[7432,7431,7433]],[[7432,7434,7435]],[[7432,7433,7434]],[[7434,7433,7436]],[[7431,7437,7433]],[[7431,7427,7428]],[[7437,7431,7428]],[[7430,7437,7428]],[[7421,7438,7427]],[[7419,7421,7439]],[[7428,7427,7440]],[[7441,7440,7438]],[[7441,7438,7442]],[[7440,7427,7438]],[[7438,7421,7443]],[[7443,7444,7445]],[[7443,7420,7444]],[[7443,7421,7420]],[[7446,7419,7439]],[[7447,7419,7446]],[[7448,7449,7421]],[[7421,7449,7439]],[[7450,7448,7427]],[[7427,7448,7421]],[[7451,7450,7424]],[[7424,7450,7427]],[[7452,7451,7426]],[[7426,7451,7424]],[[7453,7452,7425]],[[7425,7452,7426]],[[7454,7453,7423]],[[7423,7453,7425]],[[7455,7454,7422]],[[7422,7454,7423]],[[7456,7455,7431]],[[7431,7455,7422]],[[7457,7456,7432]],[[7432,7456,7431]],[[7458,7457,7435]],[[7435,7457,7432]],[[7459,7458,7434]],[[7434,7458,7435]],[[7460,7459,7436]],[[7436,7459,7434]],[[7461,7460,7433]],[[7433,7460,7436]],[[7462,7461,7437]],[[7437,7461,7433]],[[7463,7462,7430]],[[7430,7462,7437]],[[7464,7463,7429]],[[7429,7463,7430]],[[7465,7464,7428]],[[7428,7464,7429]],[[7466,7465,7440]],[[7440,7465,7428]],[[7467,7466,7441]],[[7441,7466,7440]],[[7468,7467,7442]],[[7442,7467,7441]],[[7469,7468,7438]],[[7438,7468,7442]],[[7470,7469,7443]],[[7443,7469,7438]],[[7471,7470,7445]],[[7445,7470,7443]],[[7472,7471,7444]],[[7444,7471,7445]],[[7473,7472,7420]],[[7420,7472,7444]],[[7474,7473,7419]],[[7419,7473,7420]],[[7475,7474,7447]],[[7447,7474,7419]],[[7476,7475,7446]],[[7446,7475,7447]],[[7449,7476,7439]],[[7439,7476,7446]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c5d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000026225","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027057)","inonderzoek":"0","lokaalid":"G0503.032e68f0456349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.19000005722046,"min-height-surface":0.46000000834465,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84922.501 447589.020)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:69)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7477,7478,7479]],[[7477,7479,7480]],[[7479,7478,7411]],[[7479,7411,7410]],[[7481,7482,2497]],[[2497,7482,2618]],[[2497,2618,7483]],[[7483,2618,7484]],[[7483,7484,7477]],[[7477,7484,7478]],[[2489,7481,7480]],[[7480,7481,2497]],[[7480,2497,7483]],[[7480,7483,7477]],[[2490,2489,7479]],[[7479,2489,7480]],[[2491,2490,7410]],[[7410,2490,7479]],[[2714,2491,7411]],[[7411,2491,7410]],[[7482,2714,2618]],[[2618,2714,7484]],[[7484,2714,7478]],[[7478,2714,7411]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bc9c62-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.2)","identificatiebagpnd":"503100000032720","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027059)","inonderzoek":"0","lokaalid":"G0503.032e68f0456449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3,"min-height-surface":0.490000009536743,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84924.685 447585.981)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:71)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7485,7486,7487]],[[7485,7487,7488]],[[7486,7489,7487]],[[7487,7490,7491]],[[7490,7483,7492]],[[7493,7490,7489]],[[7492,7494,7495]],[[7492,7483,7494]],[[7490,7484,7483]],[[7490,7493,7484]],[[7490,7487,7489]],[[2262,2517,7496]],[[7496,2517,7497]],[[7496,7497,7485]],[[7485,7497,7486]],[[2260,2262,7488]],[[7488,2262,7496]],[[7488,7496,7485]],[[2302,2260,7487]],[[7487,2260,7488]],[[2486,2302,7491]],[[7491,2302,7487]],[[2511,2486,7490]],[[7490,2486,7491]],[[2470,2511,7492]],[[7492,2511,7490]],[[2498,2470,7495]],[[7495,2470,7492]],[[2499,2498,7494]],[[7494,2498,7495]],[[2497,2499,7483]],[[7483,2499,7494]],[[2618,2497,7484]],[[7484,2497,7483]],[[2619,2618,7493]],[[7493,2618,7484]],[[2518,2619,7489]],[[7489,2619,7493]],[[2517,2518,7497]],[[7497,2518,7486]],[[7486,2518,7489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc275-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026308","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0456549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.05999994277954,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7498,7499,7500]],[[7498,7500,7501]],[[7501,7500,7502]],[[7503,7504,7505]],[[7505,7504,7506]],[[7505,7506,7498]],[[7498,7506,7499]],[[7507,7503,7448]],[[7448,7503,7421]],[[7421,7503,7501]],[[7501,7503,7505]],[[7501,7505,7498]],[[7508,7507,7449]],[[7449,7507,7448]],[[7449,7448,7439]],[[7439,7448,7421]],[[7439,7421,7502]],[[7502,7421,7501]],[[7509,7508,7500]],[[7500,7508,7449]],[[7500,7449,7439]],[[7500,7439,7502]],[[7504,7509,7506]],[[7506,7509,7499]],[[7499,7509,7500]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc27a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026307","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060887)","inonderzoek":"0","lokaalid":"G0503.032e68f0456649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.96000003814697,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84933.650 447613.578)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7510,7511,7506]],[[7510,7505,7512]],[[7512,7505,7513]],[[7510,7506,7505]],[[7514,7515,7510]],[[7510,7515,7511]],[[7516,7514,7512]],[[7512,7514,7510]],[[7517,7516,7513]],[[7513,7516,7512]],[[7518,7517,7503]],[[7503,7517,7505]],[[7505,7517,7513]],[[7519,7518,7504]],[[7504,7518,7503]],[[7504,7503,7506]],[[7506,7503,7505]],[[7515,7519,7511]],[[7511,7519,7504]],[[7511,7504,7506]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc27f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026306","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003294)","inonderzoek":"0","lokaalid":"G0503.032e68f0456749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.99000000953674,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84939.538 447607.795)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:34)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7315,7318,7520]],[[7315,7521,7522]],[[7521,7523,7524]],[[7525,7526,7523]],[[7521,7525,7523]],[[7526,7525,7527]],[[7521,7520,7525]],[[7521,7315,7520]],[[7520,7318,7528]],[[7314,7317,7315]],[[7315,7317,7318]],[[7529,7314,7522]],[[7522,7314,7315]],[[7530,7529,7521]],[[7521,7529,7522]],[[7531,7530,7514]],[[7514,7530,7510]],[[7510,7530,7524]],[[7524,7530,7521]],[[7532,7531,7515]],[[7515,7531,7514]],[[7515,7514,7511]],[[7511,7514,7510]],[[7511,7510,7523]],[[7523,7510,7524]],[[7533,7532,7526]],[[7526,7532,7515]],[[7526,7515,7511]],[[7526,7511,7523]],[[7534,7533,7527]],[[7527,7533,7526]],[[7535,7534,7525]],[[7525,7534,7527]],[[7536,7535,7520]],[[7520,7535,7525]],[[7537,7536,7528]],[[7528,7536,7520]],[[7317,7537,7318]],[[7318,7537,7528]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc293-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026220","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027028)","inonderzoek":"0","lokaalid":"G0503.032e68f0456b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.55000019073486,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84865.905 447577.729)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:11)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7538,7539,7540]],[[7538,7540,7541]],[[7539,7542,7540]],[[7543,7544,2051]],[[2051,7544,7545]],[[2051,7545,7546]],[[7546,7545,7547]],[[7546,7547,7538]],[[7538,7547,7539]],[[2174,7543,7541]],[[7541,7543,2051]],[[7541,2051,7546]],[[7541,7546,7538]],[[1932,2174,7548]],[[7548,2174,7540]],[[7540,2174,7541]],[[7549,1932,7550]],[[7550,1932,7548]],[[7550,7548,7542]],[[7542,7548,7540]],[[7544,7549,7545]],[[7545,7549,7547]],[[7547,7549,7539]],[[7539,7549,7550]],[[7539,7550,7542]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bcc29d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026221","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027029)","inonderzoek":"0","lokaalid":"G0503.032e68f0456d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.6100001335144,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84870.014 447581.083)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:13)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7551,7552,7553]],[[7551,7554,7547]],[[7552,7551,7546]],[[7555,7552,7546]],[[7546,7551,7547]],[[7556,7557,7558]],[[7558,7557,7559]],[[7559,7557,7560]],[[7559,7560,7551]],[[7551,7560,7554]],[[7561,7556,7562]],[[7562,7556,7558]],[[7562,7558,7563]],[[7563,7558,7559]],[[7563,7559,7553]],[[7553,7559,7551]],[[7564,7561,2023]],[[2023,7561,7562]],[[2023,7562,7565]],[[7565,7562,7563]],[[7565,7563,7552]],[[7552,7563,7553]],[[2021,7564,7555]],[[7555,7564,2023]],[[7555,2023,7565]],[[7555,7565,7552]],[[2051,2021,7546]],[[7546,2021,7555]],[[7545,2051,7547]],[[7547,2051,7546]],[[7557,7545,7560]],[[7560,7545,7554]],[[7554,7545,7547]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9b7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017403","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027030)","inonderzoek":"0","lokaalid":"G0503.032e68f0456f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84873.014 447583.083)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:15)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7566,7559,7567]],[[7566,7568,7559]],[[7559,7568,7560]],[[7560,7568,7569]],[[7570,7571,7566]],[[7566,7571,7568]],[[7572,7570,7573]],[[7573,7570,7567]],[[7567,7570,7566]],[[7556,7572,7558]],[[7558,7572,7573]],[[7558,7573,7559]],[[7559,7573,7567]],[[7557,7556,7560]],[[7560,7556,7558]],[[7560,7558,7559]],[[7574,7557,7569]],[[7569,7557,7560]],[[7571,7574,7568]],[[7568,7574,7569]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9c1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017318","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027043)","inonderzoek":"0","lokaalid":"G0503.032e68f0457149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84877.536 447586.302)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:41)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7575,7576,7577]],[[7575,7577,7578]],[[7577,7576,7579]],[[7580,7577,7579]],[[7580,7579,7581]],[[7582,7583,2360]],[[2360,7583,7584]],[[2360,7584,7575]],[[7575,7584,7576]],[[2358,7582,7578]],[[7578,7582,2360]],[[7578,2360,7575]],[[2350,2358,7577]],[[7577,2358,7578]],[[2351,2350,7580]],[[7580,2350,7577]],[[2354,2351,7581]],[[7581,2351,7580]],[[7585,2354,7579]],[[7579,2354,7581]],[[7583,7585,7584]],[[7584,7585,7576]],[[7576,7585,7579]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9c6-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:52.7)","identificatiebagpnd":"503100000017422","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027031)","inonderzoek":"0","lokaalid":"G0503.032e68f0457249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84879.588 447573.483)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:17)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7563,7586,7559]],[[7587,7563,7588]],[[7588,7589,7590]],[[7588,7563,7589]],[[7589,7563,7565]],[[7587,7586,7563]],[[7586,7591,7559]],[[7559,7591,7567]],[[7592,7593,7587]],[[7587,7593,7586]],[[7594,7592,7588]],[[7588,7592,7587]],[[7595,7594,7596]],[[7596,7594,7590]],[[7590,7594,7588]],[[7597,7595,2128]],[[2128,7595,7596]],[[2128,7596,7589]],[[7589,7596,7590]],[[2023,7597,7565]],[[7565,7597,2128]],[[7565,2128,7589]],[[7562,2023,7563]],[[7563,2023,7565]],[[7558,7562,7559]],[[7559,7562,7563]],[[7573,7558,7567]],[[7567,7558,7559]],[[7598,7573,7591]],[[7591,7573,7567]],[[7593,7598,7586]],[[7586,7598,7591]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9cb-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017409","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027044)","inonderzoek":"0","lokaalid":"G0503.032e68f0457349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.9300000667572,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84880.543 447588.458)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:43)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7599,7600,7601]],[[7602,7603,7601]],[[7600,7604,7601]],[[7601,7604,7602]],[[7605,7606,2371]],[[2371,7606,7607]],[[2371,7607,7608]],[[7608,7607,7609]],[[7608,7609,7599]],[[7599,7609,7600]],[[2710,7605,7601]],[[7601,7605,2371]],[[7601,2371,7608]],[[7601,7608,7599]],[[2368,2710,7603]],[[7603,2710,7601]],[[2360,2368,7575]],[[7575,2368,7602]],[[7602,2368,7603]],[[7584,2360,7576]],[[7576,2360,7575]],[[7576,7575,7604]],[[7604,7575,7602]],[[7606,7584,7607]],[[7607,7584,7609]],[[7609,7584,7600]],[[7600,7584,7576]],[[7600,7576,7604]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9d5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000026231","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027045)","inonderzoek":"0","lokaalid":"G0503.032e68f0457549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.92000007629395,"min-height-surface":0.259999990463257,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84884.043 447591.158)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:45)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7610,7611,7612]],[[7610,7612,7613]],[[7612,7611,7609]],[[7612,7614,7615]],[[7614,7612,7609]],[[7614,7609,7616]],[[7616,7609,7608]],[[7617,7618,2602]],[[2602,7618,7619]],[[2602,7619,7620]],[[7620,7619,7621]],[[7620,7621,7610]],[[7610,7621,7611]],[[2362,7617,7613]],[[7613,7617,2602]],[[7613,2602,7620]],[[7613,7620,7610]],[[2376,2362,7612]],[[7612,2362,7613]],[[2344,2376,7615]],[[7615,2376,7612]],[[2372,2344,7614]],[[7614,2344,7615]],[[2345,2372,7616]],[[7616,2372,7614]],[[2371,2345,7608]],[[7608,2345,7616]],[[7607,2371,7609]],[[7609,2371,7608]],[[7618,7607,7619]],[[7619,7607,7621]],[[7621,7607,7611]],[[7611,7607,7609]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bce9df-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000029881","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027046)","inonderzoek":"0","lokaalid":"G0503.032e68f0457749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.85999989509583,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.747 447592.960)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:47)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7620,7622,7623]],[[7624,7620,7623]],[[7622,7625,7626]],[[7622,7620,7625]],[[7624,7621,7620]],[[7624,7627,7628]],[[7621,7624,7628]],[[2386,2388,7624]],[[7624,2388,7629]],[[7624,7629,7627]],[[2384,2386,7623]],[[7623,2386,7624]],[[2373,2384,7622]],[[7622,2384,7623]],[[2374,2373,7626]],[[7626,2373,7622]],[[2603,2374,7625]],[[7625,2374,7626]],[[2602,2603,7620]],[[7620,2603,7625]],[[7619,2602,7621]],[[7621,2602,7620]],[[7630,7619,7631]],[[7631,7619,7628]],[[7628,7619,7621]],[[2388,7630,7629]],[[7629,7630,7631]],[[7629,7631,7627]],[[7627,7631,7628]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd10f5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000029882","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0457949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7632,7633,7634]],[[7632,7634,7635]],[[7634,7633,7629]],[[7634,7629,7636]],[[7633,7631,7629]],[[2401,7637,7632]],[[7632,7637,7633]],[[2631,2401,7635]],[[7635,2401,7632]],[[2739,2631,7634]],[[7634,2631,7635]],[[2387,2739,7636]],[[7636,2739,7634]],[[2388,2387,7629]],[[7629,2387,7636]],[[7630,2388,7631]],[[7631,2388,7629]],[[7637,7630,7633]],[[7633,7630,7631]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd10ff-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017424","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000054296)","inonderzoek":"0","lokaalid":"G0503.032e68f0457b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84892.280 447597.016)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:51)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7638,7639,7640]],[[7639,7633,7640]],[[7640,7641,7642]],[[7641,7640,7633]],[[7641,7633,7632]],[[2406,7643,7638]],[[7638,7643,7639]],[[2405,2406,7640]],[[7640,2406,7638]],[[2402,2405,7642]],[[7642,2405,7640]],[[2403,2402,7641]],[[7641,2402,7642]],[[2401,2403,7632]],[[7632,2403,7641]],[[7637,2401,7633]],[[7633,2401,7632]],[[7643,7637,7639]],[[7639,7637,7633]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd110e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-37)","identificatiebagpnd":"503100000017410","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000061316)","inonderzoek":"0","lokaalid":"G0503.032e68f0457e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.270000010728836,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84896.941 447600.562)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:53)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7644,7645,7646]],[[7644,7646,7647]],[[7645,7648,7646]],[[7649,7650,7651]],[[7649,7646,7648]],[[7649,7648,7650]],[[7652,7653,2416]],[[2416,7653,7654]],[[2416,7654,7644]],[[7644,7654,7645]],[[2411,7652,7647]],[[7647,7652,2416]],[[7647,2416,7644]],[[2413,2411,7646]],[[7646,2411,7647]],[[2412,2413,7649]],[[7649,2413,7646]],[[2677,2412,7651]],[[7651,2412,7649]],[[7655,2677,2406]],[[2406,2677,7638]],[[7638,2677,7650]],[[7650,2677,7651]],[[7656,7655,7643]],[[7643,7655,2406]],[[7643,2406,7639]],[[7639,2406,7638]],[[7639,7638,7648]],[[7648,7638,7650]],[[7653,7656,7654]],[[7654,7656,7645]],[[7645,7656,7643]],[[7645,7643,7639]],[[7645,7639,7648]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd1111-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017407","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0457f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.11999988555908,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7657,7658,7659]],[[7660,7661,7659]],[[7658,7662,7659]],[[7661,7660,7663]],[[7659,7662,7660]],[[7664,7665,2724]],[[2724,7665,7363]],[[2724,7363,7361]],[[7361,7363,7360]],[[7361,7360,7657]],[[7657,7360,7658]],[[2659,7664,7659]],[[7659,7664,2724]],[[7659,2724,7361]],[[7659,7361,7657]],[[2575,2659,7661]],[[7661,2659,7659]],[[2661,2575,7663]],[[7663,2575,7661]],[[2416,2661,7644]],[[7644,2661,7660]],[[7660,2661,7663]],[[7654,2416,7645]],[[7645,2416,7644]],[[7645,7644,7662]],[[7662,7644,7660]],[[7665,7654,7363]],[[7363,7654,7360]],[[7360,7654,7658]],[[7658,7654,7645]],[[7658,7645,7662]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd1116-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017412","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027024)","inonderzoek":"0","lokaalid":"G0503.032e68f0458049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.0900000035762787,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84852.482 447568.060)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:3)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7666,7667,7668]],[[7666,7669,7670]],[[7667,7666,7670]],[[7670,7669,375]],[[374,7670,375]],[[375,7669,7671]],[[7672,7673,2001]],[[2001,7673,7674]],[[2001,7674,7666]],[[7666,7674,7669]],[[2093,7672,7668]],[[7668,7672,2001]],[[7668,2001,7666]],[[1991,2093,7667]],[[7667,2093,7668]],[[1992,1991,7670]],[[7670,1991,7667]],[[383,1992,374]],[[374,1992,7670]],[[384,383,375]],[[375,383,374]],[[7675,384,7671]],[[7671,384,375]],[[7673,7675,7674]],[[7674,7675,7669]],[[7669,7675,7671]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd111b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000017420","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000054295)","inonderzoek":"0","lokaalid":"G0503.032e68f0458149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.01999998092651,"min-height-surface":0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84855.482 447570.260)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:5)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7676,7677,7669]],[[7676,7669,7666]],[[7678,7679,2000]],[[2000,7679,7680]],[[2000,7680,7676]],[[7676,7680,7677]],[[2001,7678,7666]],[[7666,7678,2000]],[[7666,2000,7676]],[[7674,2001,7669]],[[7669,2001,7666]],[[7679,7674,7680]],[[7680,7674,7677]],[[7677,7674,7669]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd382e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017408","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0458249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.02999997138977,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7681,7682,7683]],[[7681,7684,7685]],[[7681,7683,7684]],[[7686,7687,2003]],[[2003,7687,7688]],[[2003,7688,7681]],[[7681,7688,7682]],[[2000,7686,7676]],[[7676,7686,7685]],[[7685,7686,2003]],[[7685,2003,7681]],[[7680,2000,7677]],[[7677,2000,7676]],[[7677,7676,7684]],[[7684,7676,7685]],[[7689,7680,7683]],[[7683,7680,7677]],[[7683,7677,7684]],[[7687,7689,7688]],[[7688,7689,7682]],[[7682,7689,7683]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3833-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36.3)","identificatiebagpnd":"503100000026219","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027027)","inonderzoek":"0","lokaalid":"G0503.032e68f0458349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.03999996185303,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84862.159 447575.143)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:9)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7548,7550,7690]],[[7550,7691,7690]],[[7692,7693,7694]],[[7695,7692,7694]],[[7690,7696,7694]],[[7694,7696,7695]],[[7690,7691,7696]],[[7697,7698,1932]],[[1932,7698,7549]],[[1932,7549,7548]],[[7548,7549,7550]],[[2016,7697,7690]],[[7690,7697,1932]],[[7690,1932,7548]],[[2010,2016,7694]],[[7694,2016,7690]],[[2011,2010,7693]],[[7693,2010,7694]],[[2017,2011,7692]],[[7692,2011,7693]],[[2007,2017,7695]],[[7695,2017,7692]],[[2003,2007,7681]],[[7681,2007,7696]],[[7696,2007,7695]],[[7688,2003,7682]],[[7682,2003,7681]],[[7682,7681,7691]],[[7691,7681,7696]],[[7698,7688,7549]],[[7549,7688,7550]],[[7550,7688,7682]],[[7550,7682,7691]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd384d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000017317","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027034)","inonderzoek":"0","lokaalid":"G0503.032e68f0458949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.99000000953674,"min-height-surface":0.610000014305115,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84886.782 447557.084)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:21)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7699,7700,7701]],[[7701,7700,7702]],[[7699,7703,7700]],[[7699,7704,7705]],[[7703,7699,7705]],[[7706,7705,7707]],[[7705,7708,7707]],[[7705,7704,7708]],[[7709,7710,7699]],[[7699,7710,7704]],[[7711,7709,7701]],[[7701,7709,7699]],[[372,7711,355]],[[355,7711,7702]],[[7702,7711,7701]],[[370,372,363]],[[363,372,355]],[[363,355,7700]],[[7700,355,7702]],[[341,370,323]],[[323,370,361]],[[361,370,363]],[[361,363,7703]],[[7703,363,7700]],[[337,341,329]],[[329,341,323]],[[329,323,7705]],[[7705,323,361]],[[7705,361,7703]],[[338,337,330]],[[330,337,329]],[[330,329,7706]],[[7706,329,7705]],[[7712,338,7707]],[[7707,338,330]],[[7707,330,7706]],[[7713,7712,7708]],[[7708,7712,7707]],[[7710,7713,7704]],[[7704,7713,7708]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3852-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000026237","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027035)","inonderzoek":"0","lokaalid":"G0503.032e68f0458a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.13000011444092,"min-height-surface":0.5,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84902.062 447561.843)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:25)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7714,7715,7716]],[[7716,7717,7718]],[[7719,7720,7721]],[[7717,7716,7715]],[[7715,7714,7722]],[[7714,7719,7722]],[[7714,7720,7719]],[[7723,7721,7724]],[[7721,7725,7724]],[[7721,7720,7725]],[[7726,7727,7714]],[[7714,7727,7720]],[[7728,7726,7716]],[[7716,7726,7714]],[[7729,7728,7718]],[[7718,7728,7716]],[[7730,7729,7717]],[[7717,7729,7718]],[[7731,7730,7732]],[[7732,7730,7733]],[[7733,7730,7715]],[[7715,7730,7717]],[[7734,7731,2279]],[[2279,7731,7732]],[[2279,7732,7735]],[[7735,7732,7733]],[[7735,7733,7722]],[[7722,7733,7715]],[[2280,7734,7719]],[[7719,7734,2279]],[[7719,2279,7735]],[[7719,7735,7722]],[[2274,2280,7721]],[[7721,2280,7719]],[[2275,2274,7723]],[[7723,2274,7721]],[[7736,2275,7724]],[[7724,2275,7723]],[[7737,7736,7725]],[[7725,7736,7724]],[[7727,7737,7720]],[[7720,7737,7725]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd3857-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026234","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027037)","inonderzoek":"0","lokaalid":"G0503.032e68f0458b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.3199999332428,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84889.601 447570.319)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:29)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7738,7739,7740]],[[7739,7741,7740]],[[7740,7741,7742]],[[7742,7741,7743]],[[7744,7745,7746]],[[7746,7745,2580]],[[7746,2580,7747]],[[7747,2580,7748]],[[7748,2580,7749]],[[7749,2580,7750]],[[7749,7750,7738]],[[7738,7750,7739]],[[7751,7744,7752]],[[7752,7744,7746]],[[7752,7746,7747]],[[7752,7747,7753]],[[7753,7747,7748]],[[7753,7748,7740]],[[7740,7748,7749]],[[7740,7749,7738]],[[7754,7751,7742]],[[7742,7751,7752]],[[7742,7752,7753]],[[7742,7753,7740]],[[7755,7754,7743]],[[7743,7754,7742]],[[2579,7755,7741]],[[7741,7755,7743]],[[7745,2579,2580]],[[2580,2579,7750]],[[7750,2579,7739]],[[7739,2579,7741]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f6c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.1)","identificatiebagpnd":"503100000033625","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027036)","inonderzoek":"0","lokaalid":"G0503.032e68f0458c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.569999992847443,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84899.662 447565.129)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:27)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7733,7735,7756]],[[7748,7757,7758]],[[7748,7753,7757]],[[7733,7756,7758]],[[7758,7756,7748]],[[7756,7735,7342]],[[7735,7336,7342]],[[7342,7336,7339]],[[7732,2279,7733]],[[7733,2279,7735]],[[7759,7732,7758]],[[7758,7732,7733]],[[7760,7759,7757]],[[7757,7759,7758]],[[7752,7760,7753]],[[7753,7760,7757]],[[7747,7752,7748]],[[7748,7752,7753]],[[7761,7747,7756]],[[7756,7747,7748]],[[7341,7761,7342]],[[7342,7761,7756]],[[7338,7341,7339]],[[7339,7341,7342]],[[2285,7338,7336]],[[7336,7338,7339]],[[2279,2285,7735]],[[7735,2285,7336]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f71-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:52.7)","identificatiebagpnd":"503100000026222","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027032)","inonderzoek":"0","lokaalid":"G0503.032e68f0458d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":4.15000009536743,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84883.868 447567.309)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:19)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7762,7763,7764]],[[7762,7765,7763]],[[7766,7764,7767]],[[7768,7766,7767]],[[7767,7764,7763]],[[7769,7596,7762]],[[7762,7596,7590]],[[7762,7590,7765]],[[7770,7769,7764]],[[7764,7769,7762]],[[7771,7770,7766]],[[7766,7770,7764]],[[7772,7771,353]],[[353,7771,333]],[[333,7771,7768]],[[7768,7771,7766]],[[7773,7772,352]],[[352,7772,353]],[[352,353,334]],[[334,353,333]],[[334,333,7767]],[[7767,333,7768]],[[2128,7773,7589]],[[7589,7773,7763]],[[7763,7773,352]],[[7763,352,334]],[[7763,334,7767]],[[7596,2128,7590]],[[7590,2128,7589]],[[7590,7589,7765]],[[7765,7589,7763]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f76-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026233","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027038)","inonderzoek":"0","lokaalid":"G0503.032e68f0458e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.21000003814697,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84893.214 447572.683)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:31)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7774,7775,7750]],[[7774,7750,7749]],[[7776,2316,7761]],[[7761,2316,7756]],[[7756,2316,7774]],[[7774,2316,7775]],[[7746,7776,7747]],[[7747,7776,7761]],[[7747,7761,7748]],[[7748,7761,7756]],[[7748,7756,7749]],[[7749,7756,7774]],[[2580,7746,7750]],[[7750,7746,7747]],[[7750,7747,7748]],[[7750,7748,7749]],[[2316,2580,7775]],[[7775,2580,7750]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bd5f7b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-36)","identificatiebagpnd":"503100000026235","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027039)","inonderzoek":"0","lokaalid":"G0503.032e68f0458f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.24000000953674,"min-height-surface":0.389999985694885,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84895.825 447574.836)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:33)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7777,7778,7779]],[[7777,7779,7780]],[[7781,7777,7780]],[[7782,7778,7777]],[[7783,7781,7780]],[[7783,7784,7781]],[[7783,7778,7782]],[[7784,7783,7782]],[[7785,7786,7340]],[[7340,7786,2311]],[[7340,2311,7341]],[[7341,2311,7342]],[[7342,2311,7330]],[[7330,2311,7329]],[[7330,7329,7783]],[[7783,7329,7778]],[[7787,7785,7776]],[[7776,7785,7761]],[[7761,7785,7340]],[[7761,7340,7341]],[[7761,7341,7756]],[[7756,7341,7342]],[[7756,7342,7774]],[[7774,7342,7780]],[[7780,7342,7330]],[[7780,7330,7783]],[[7788,7787,2316]],[[2316,7787,7776]],[[2316,7776,7775]],[[7775,7776,7761]],[[7775,7761,7756]],[[7775,7756,7774]],[[7775,7774,7779]],[[7779,7774,7780]],[[7786,7788,2311]],[[2311,7788,7329]],[[7329,7788,7778]],[[7778,7788,2316]],[[7778,2316,7775]],[[7778,7775,7779]],[[7789,7790,7781]],[[7781,7790,7777]],[[7791,7789,7784]],[[7784,7789,7781]],[[7792,7791,7782]],[[7782,7791,7784]],[[7790,7792,7777]],[[7777,7792,7782]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd428-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000026302","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003316)","inonderzoek":"0","lokaalid":"G0503.032e68f046ba49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":8.56999969482422,"min-height-surface":0.280000001192093,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85021.496 447524.002)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:57)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7793,7794,7795]],[[7795,7796,7797]],[[7797,7796,7798]],[[7798,7799,7800]],[[7798,7801,7799]],[[7798,7796,7801]],[[7795,7802,7796]],[[7793,7795,7797]],[[1783,1787,7793]],[[7793,1787,7794]],[[1784,1783,7797]],[[7797,1783,7793]],[[1778,1784,7798]],[[7798,1784,7797]],[[7803,1778,7800]],[[7800,1778,7798]],[[1354,7803,7799]],[[7799,7803,7800]],[[7804,1354,1606]],[[1606,1354,7805]],[[7805,1354,7801]],[[7801,1354,7799]],[[7806,7804,7807]],[[7807,7804,1606]],[[7807,1606,7808]],[[7808,1606,7805]],[[7808,7805,7796]],[[7796,7805,7801]],[[7809,7806,7802]],[[7802,7806,7807]],[[7802,7807,7808]],[[7802,7808,7796]],[[7810,7809,7795]],[[7795,7809,7802]],[[1787,7810,7794]],[[7794,7810,7795]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd42d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000018587","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005337)","inonderzoek":"0","lokaalid":"G0503.032e68f046bb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.69000005722046,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85027.406 447519.861)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:77)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7811,7812,7813]],[[7814,7815,7816]],[[7813,7814,7816]],[[7817,7818,7814]],[[7813,7817,7814]],[[7812,7817,7813]],[[7812,7819,7817]],[[7820,7821,7811]],[[7811,7821,7812]],[[1806,7820,7813]],[[7813,7820,7811]],[[1785,1806,7816]],[[7816,1806,7813]],[[1791,1785,7815]],[[7815,1785,7816]],[[1803,1791,7814]],[[7814,1791,7815]],[[1802,1803,7818]],[[7818,1803,7814]],[[7822,1802,7817]],[[7817,1802,7818]],[[7823,7822,7819]],[[7819,7822,7817]],[[7821,7823,7812]],[[7812,7823,7819]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd432-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018602","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005338)","inonderzoek":"0","lokaalid":"G0503.032e68f046bc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.67000007629395,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85036.711 447505.477)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:72)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7824,7825,7826]],[[7824,7826,7827]],[[7825,7828,7826]],[[7825,7829,7828]],[[7825,7830,7829]],[[1835,1840,7824]],[[7824,1840,7825]],[[1816,1835,7827]],[[7827,1835,7824]],[[1811,1816,7826]],[[7826,1816,7827]],[[7831,1811,7828]],[[7828,1811,7826]],[[7832,7831,7829]],[[7829,7831,7828]],[[7833,7832,7830]],[[7830,7832,7829]],[[1840,7833,7825]],[[7825,7833,7830]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd437-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018593","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005332)","inonderzoek":"0","lokaalid":"G0503.032e68f046bd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85019.386 447493.264)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:67)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7834,7835,7836]],[[7834,7836,7837]],[[1851,1772,7834]],[[7834,1772,7835]],[[1847,1851,7838]],[[7838,1851,7837]],[[7837,1851,7834]],[[1770,1847,7839]],[[7839,1847,7838]],[[7839,7838,7836]],[[7836,7838,7837]],[[1772,1770,7835]],[[7835,1770,7839]],[[7835,7839,7836]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd43a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018608","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046be49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.88000011444092,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7840,7841,7842]],[[7840,7842,7843]],[[1859,1817,7844]],[[7844,1817,7845]],[[7844,7845,7840]],[[7840,7845,7841]],[[1851,1859,7834]],[[7834,1859,7843]],[[7843,1859,7844]],[[7843,7844,7840]],[[1772,1851,7835]],[[7835,1851,7834]],[[7835,7834,7842]],[[7842,7834,7843]],[[1817,1772,7845]],[[7845,1772,7841]],[[7841,1772,7835]],[[7841,7835,7842]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd43f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018611","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005333)","inonderzoek":"0","lokaalid":"G0503.032e68f046bf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.77999997138977,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85025.433 447497.508)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:69)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7846,7847,7845]],[[7846,7845,7844]],[[1860,1814,7848]],[[7848,1814,7849]],[[7848,7849,7846]],[[7846,7849,7847]],[[7850,1860,1859]],[[1859,1860,7844]],[[7844,1860,7848]],[[7844,7848,7846]],[[7851,7850,1817]],[[1817,7850,1859]],[[1817,1859,7845]],[[7845,1859,7844]],[[1814,7851,7849]],[[7849,7851,7847]],[[7847,7851,1817]],[[7847,1817,7845]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd442-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018590","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7852,7853,7854]],[[7852,7854,7855]],[[1800,7856,7852]],[[7852,7856,7853]],[[7857,1800,1806]],[[1806,1800,7813]],[[7813,1800,7855]],[[7855,1800,7852]],[[7858,7857,7820]],[[7820,7857,1806]],[[7820,1806,7811]],[[7811,1806,7813]],[[7811,7813,7854]],[[7854,7813,7855]],[[7856,7858,7853]],[[7853,7858,7820]],[[7853,7820,7811]],[[7853,7811,7854]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd447-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000027999","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005334)","inonderzoek":"0","lokaalid":"G0503.032e68f046c149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.76999998092651,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85031.345 447501.656)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:71)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7859,7860,7849]],[[7859,7849,7848]],[[1852,1815,7861]],[[7861,1815,7862]],[[7861,7862,7859]],[[7859,7862,7860]],[[1860,1852,7848]],[[7848,1852,7861]],[[7848,7861,7859]],[[1814,1860,7849]],[[7849,1860,7848]],[[1815,1814,7862]],[[7862,1814,7860]],[[7860,1814,7849]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd44c-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000027996","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005336)","inonderzoek":"0","lokaalid":"G0503.032e68f046c249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.8199999332428,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85031.465 447515.641)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:75)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7863,7864,7865]],[[7863,7865,7866]],[[1828,7867,7863]],[[7863,7867,7864]],[[1800,1828,7852]],[[7852,1828,7866]],[[7866,1828,7863]],[[7856,1800,7853]],[[7853,1800,7852]],[[7853,7852,7865]],[[7865,7852,7866]],[[7867,7856,7864]],[[7864,7856,7853]],[[7864,7853,7865]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdd44f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018605","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.6800000667572,"min-height-surface":0.180000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7868,7869,7862]],[[7868,7862,7861]],[[7870,7871,1835]],[[1835,7871,1816]],[[1835,1816,7824]],[[7824,1816,7827]],[[7824,7827,7868]],[[7868,7827,7869]],[[1852,7870,7861]],[[7861,7870,1835]],[[7861,1835,7824]],[[7861,7824,7868]],[[1815,1852,7862]],[[7862,1852,7861]],[[7871,1815,1816]],[[1816,1815,7827]],[[7827,1815,7869]],[[7869,1815,7862]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb64-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018600","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005329)","inonderzoek":"0","lokaalid":"G0503.032e68f046c449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84999.155 447498.983)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:61)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7872,7873,7874]],[[7872,7875,7876]],[[7872,7874,7875]],[[7873,7877,7874]],[[7877,7873,7878]],[[7879,1789,1790]],[[1790,1789,7872]],[[7872,1789,7880]],[[7872,7880,7873]],[[7881,7879,914]],[[914,7879,1790]],[[914,1790,7876]],[[7876,1790,7872]],[[912,7881,7875]],[[7875,7881,914]],[[7875,914,7876]],[[956,912,7874]],[[7874,912,7875]],[[909,956,7877]],[[7877,956,7874]],[[847,909,7882]],[[7882,909,7878]],[[7878,909,7877]],[[1789,847,7880]],[[7880,847,7882]],[[7880,7882,7873]],[[7873,7882,7878]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb67-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018607","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.82999992370605,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7883,7884,7885]],[[7883,7885,7886]],[[7884,7887,7885]],[[1780,1790,7888]],[[7888,1790,7883]],[[7883,1790,7872]],[[7883,7872,7884]],[[915,1780,7889]],[[7889,1780,7888]],[[7889,7888,7886]],[[7886,7888,7883]],[[916,915,7885]],[[7885,915,7889]],[[7885,7889,7886]],[[914,916,7876]],[[7876,916,7887]],[[7887,916,7885]],[[1790,914,7872]],[[7872,914,7876]],[[7872,7876,7884]],[[7884,7876,7887]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb6a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018610","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.80999994277954,"min-height-surface":0.230000004172325,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7890,7888,7889]],[[7890,7889,7891]],[[1781,7892,7893]],[[7893,7892,7890]],[[7890,7892,1780]],[[7890,1780,7888]],[[885,1781,7894]],[[7894,1781,7893]],[[7894,7893,7891]],[[7891,7893,7890]],[[7895,885,915]],[[915,885,7889]],[[7889,885,7894]],[[7889,7894,7891]],[[7892,7895,1780]],[[1780,7895,915]],[[1780,915,7888]],[[7888,915,7889]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb6f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018598","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005330)","inonderzoek":"0","lokaalid":"G0503.032e68f046c749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.75999999046326,"min-height-surface":0.219999998807907,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85003.595 447492.683)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:62)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7896,7893,7897]],[[7896,7897,7898]],[[7893,7894,7897]],[[1823,7899,7896]],[[7896,7899,1781]],[[7896,1781,7893]],[[921,1823,7898]],[[7898,1823,7896]],[[887,921,7897]],[[7897,921,7898]],[[7900,887,885]],[[885,887,7894]],[[7894,887,7897]],[[7899,7900,1781]],[[1781,7900,885]],[[1781,885,7893]],[[7893,885,7894]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb74-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.1)","identificatiebagpnd":"503100000018601","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000060856)","inonderzoek":"0","lokaalid":"G0503.032e68f046c849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85013.307 447488.999)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:65)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7901,7902,7903]],[[7901,7903,7904]],[[1848,1769,7905]],[[7905,1769,7906]],[[7905,7906,7901]],[[7901,7906,7902]],[[7907,1848,1858]],[[1858,1848,7908]],[[7908,1848,7904]],[[7904,1848,7905]],[[7904,7905,7901]],[[7909,7907,1822]],[[1822,7907,1858]],[[1822,1858,7910]],[[7910,1858,7908]],[[7910,7908,7903]],[[7903,7908,7904]],[[1769,7909,7906]],[[7906,7909,7902]],[[7902,7909,1822]],[[7902,1822,7910]],[[7902,7910,7903]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb77-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018589","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046c949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7838,7839,7906]],[[7838,7906,7905]],[[1847,1770,7838]],[[7838,1770,7839]],[[1848,1847,7905]],[[7905,1847,7838]],[[1769,1848,7906]],[[7906,1848,7905]],[[1770,1769,7839]],[[7839,1769,7906]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb7a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000032235","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046ca49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.49000000953674,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7908,7910,7911]],[[7908,7912,7913]],[[7908,7911,7912]],[[7912,7911,7914]],[[1858,1822,7908]],[[7908,1822,7910]],[[1845,1858,7913]],[[7913,1858,7908]],[[7915,1845,7912]],[[7912,1845,7913]],[[7916,7915,7914]],[[7914,7915,7912]],[[1821,7916,7911]],[[7911,7916,7914]],[[1822,1821,7910]],[[7910,1821,7911]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb7f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000022860","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027125)","inonderzoek":"0","lokaalid":"G0503.032e68f046cb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.73000001907349,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84969.447 447476.735)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:62)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7917,7918,7919]],[[7920,7921,7922]],[[7920,7923,7921]],[[7920,7924,7923]],[[7920,7918,7924]],[[7924,7918,7917]],[[7917,7919,7925]],[[7926,7927,7928]],[[7928,7927,7929]],[[7928,7929,7920]],[[7920,7929,7918]],[[7930,7926,7922]],[[7922,7926,7928]],[[7922,7928,7920]],[[7931,7930,7921]],[[7921,7930,7922]],[[7932,7931,7923]],[[7923,7931,7921]],[[7933,7932,7924]],[[7924,7932,7923]],[[7934,7933,7917]],[[7917,7933,7924]],[[7935,7934,7925]],[[7925,7934,7917]],[[7936,7935,7919]],[[7919,7935,7925]],[[7927,7936,7929]],[[7929,7936,7918]],[[7918,7936,7919]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb84-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000026301","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027124)","inonderzoek":"0","lokaalid":"G0503.032e68f046cc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.72000002861023,"min-height-surface":-0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84974.937 447475.330)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:60)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7937,7938,7939]],[[7940,7941,7942]],[[7929,7940,7942]],[[7937,7939,7942]],[[7940,7929,7928]],[[7942,7939,7929]],[[7938,7943,7939]],[[880,7944,7937]],[[7937,7944,950]],[[7937,950,7945]],[[7937,7945,7938]],[[876,880,7942]],[[7942,880,7937]],[[874,876,7941]],[[7941,876,7942]],[[7946,874,7940]],[[7940,874,7941]],[[7947,7946,7926]],[[7926,7946,7928]],[[7928,7946,7940]],[[7948,7947,7927]],[[7927,7947,7926]],[[7927,7926,7929]],[[7929,7926,7928]],[[7949,7948,7950]],[[7950,7948,7951]],[[7951,7948,7939]],[[7939,7948,7927]],[[7939,7927,7929]],[[7952,7949,7953]],[[7953,7949,7950]],[[7953,7950,7954]],[[7954,7950,7951]],[[7954,7951,7943]],[[7943,7951,7939]],[[7944,7952,950]],[[950,7952,7953]],[[950,7953,7945]],[[7945,7953,7954]],[[7945,7954,7938]],[[7938,7954,7943]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31bdfb89-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35)","identificatiebagpnd":"503100000018596","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027127)","inonderzoek":"0","lokaalid":"G0503.032e68f046cd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.45000004768372,"min-height-surface":0,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84974.524 447485.045)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:68)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7955,7956,7957]],[[7958,7959,7957]],[[7958,7960,7959]],[[7958,7961,7962]],[[7960,7958,7963]],[[7963,7958,7962]],[[7964,7965,7957]],[[7957,7966,7958]],[[7957,7965,7966]],[[7956,7964,7957]],[[7967,7968,7955]],[[7955,7968,7956]],[[7969,7967,7957]],[[7957,7967,7955]],[[7970,7969,7959]],[[7959,7969,7957]],[[7971,7970,7960]],[[7960,7970,7959]],[[7972,7971,7963]],[[7963,7971,7960]],[[1295,7972,7962]],[[7962,7972,7963]],[[1109,1295,7961]],[[7961,1295,7962]],[[1245,1109,7958]],[[7958,1109,7961]],[[1139,1245,7966]],[[7966,1245,7958]],[[1131,1139,7965]],[[7965,1139,7966]],[[1280,1131,7964]],[[7964,1131,7965]],[[7968,1280,7956]],[[7956,1280,7964]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be229e-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:16.7)","identificatiebagpnd":"503100000026300","identificatiebagvbohoogstehuisnummer":"(1:503010000027123)","identificatiebagvbolaagstehuisnummer":"(1:503010000027122)","inonderzoek":"0","lokaalid":"G0503.032e68f046ce49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.73000001907349,"min-height-surface":-0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84979.787 447473.527)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:58-58A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7973,7974,7975]],[[7976,7977,7975]],[[7974,7978,7975]],[[7977,7976,7979]],[[7976,7975,7978]],[[7974,7980,7978]],[[7974,7981,7980]],[[7980,7981,7982]],[[875,874,7973]],[[7973,874,7941]],[[7973,7941,7974]],[[872,875,7975]],[[7975,875,7973]],[[865,872,7977]],[[7977,872,7975]],[[866,865,7979]],[[7979,865,7977]],[[859,866,7976]],[[7976,866,7979]],[[852,859,7978]],[[7978,859,7976]],[[853,852,7980]],[[7980,852,7978]],[[854,853,7982]],[[7982,853,7980]],[[7946,854,7940]],[[7940,854,7981]],[[7981,854,7982]],[[874,7946,7941]],[[7941,7946,7940]],[[7941,7940,7974]],[[7974,7940,7981]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22a3-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000022863","identificatiebagvbohoogstehuisnummer":"(1:503010000003314)","identificatiebagvbolaagstehuisnummer":"(1:503010000003313)","inonderzoek":"0","lokaalid":"G0503.032e68f046cf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.92000007629395,"min-height-surface":0.300000011920929,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85018.008 447530.384)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:54-55)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7805,7808,7983]],[[7805,7984,7985]],[[7805,7983,7984]],[[7986,7983,7808]],[[7987,7988,7989]],[[7989,7990,7991]],[[7989,7988,7992]],[[7991,7990,7993]],[[7993,7990,7994]],[[7989,7992,7990]],[[7988,7995,7992]],[[7992,7995,7996]],[[7995,7997,7998]],[[7998,7999,8000]],[[8000,7999,8001]],[[7995,7988,7997]],[[7998,7997,7999]],[[7988,7983,7997]],[[8002,7986,7808]],[[7997,7983,7986]],[[8002,8003,7986]],[[8003,8002,8004]],[[1606,7807,7805]],[[7805,7807,7808]],[[1346,1606,7985]],[[7985,1606,7805]],[[1341,1346,7984]],[[7984,1346,7985]],[[1342,1341,7983]],[[7983,1341,7984]],[[1650,1342,7988]],[[7988,1342,7983]],[[1338,1650,7987]],[[7987,1650,7988]],[[1339,1338,7989]],[[7989,1338,7987]],[[1358,1339,7991]],[[7991,1339,7989]],[[1622,1358,7993]],[[7993,1358,7991]],[[1353,1622,7994]],[[7994,1622,7993]],[[1372,1353,7990]],[[7990,1353,7994]],[[8005,1372,7992]],[[7992,1372,7990]],[[3033,8005,7996]],[[7996,8005,7992]],[[3034,3033,7995]],[[7995,3033,7996]],[[3031,3034,7998]],[[7998,3034,7995]],[[3029,3031,8000]],[[8000,3031,7998]],[[8006,3029,8001]],[[8001,3029,8000]],[[8007,8006,7999]],[[7999,8006,8001]],[[8008,8007,7997]],[[7997,8007,7999]],[[8009,8008,7986]],[[7986,8008,7997]],[[8010,8009,8003]],[[8003,8009,7986]],[[8011,8010,8004]],[[8004,8010,8003]],[[8012,8011,8002]],[[8002,8011,8004]],[[7807,8012,7808]],[[7808,8012,8002]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22a8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000029913","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003308)","inonderzoek":"0","lokaalid":"G0503.032e68f046d049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":6.53000020980835,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85006.313 447542.303)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:49)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8013,608,8014]],[[8013,8015,8016]],[[608,8013,604]],[[605,604,8017]],[[605,8017,8018]],[[8019,604,8020]],[[604,8019,8017]],[[8021,8019,8022]],[[8019,8020,8022]],[[8016,8015,8023]],[[604,8016,8020]],[[604,8013,8016]],[[8023,8015,8024]],[[1630,8025,8026]],[[8026,8025,8027]],[[8026,8027,8013]],[[8013,8027,8015]],[[1507,1630,8014]],[[8014,1630,8026]],[[8014,8026,8013]],[[607,1507,608]],[[608,1507,8014]],[[602,607,604]],[[604,607,608]],[[603,602,605]],[[605,602,604]],[[8028,603,8018]],[[8018,603,605]],[[8029,8028,8017]],[[8017,8028,8018]],[[8030,8029,8019]],[[8019,8029,8017]],[[8031,8030,8021]],[[8021,8030,8019]],[[8032,8031,8022]],[[8022,8031,8021]],[[8033,8032,8020]],[[8020,8032,8022]],[[8034,8033,8016]],[[8016,8033,8020]],[[8035,8034,8023]],[[8023,8034,8016]],[[8036,8035,8024]],[[8024,8035,8023]],[[8025,8036,8027]],[[8027,8036,8015]],[[8015,8036,8024]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22ad-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000029914","identificatiebagvbohoogstehuisnummer":"(1:503010000003310)","identificatiebagvbolaagstehuisnummer":"(1:503010000003309)","inonderzoek":"0","lokaalid":"G0503.032e68f046d149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.65999984741211,"min-height-surface":-0.140000000596046,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85009.378 447538.258)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:50-51)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8037,8038,8027]],[[8026,8039,8027]],[[8040,8037,8027]],[[8041,8040,8027]],[[8039,8041,8027]],[[8042,8039,8026]],[[8042,8043,8044]],[[8039,8042,8044]],[[1539,3018,8045]],[[8045,3018,8046]],[[8045,8046,8042]],[[8042,8046,8043]],[[8047,1539,1630]],[[1630,1539,8026]],[[8026,1539,8045]],[[8026,8045,8042]],[[8048,8047,8025]],[[8025,8047,1630]],[[8025,1630,8027]],[[8027,1630,8026]],[[3017,8048,8038]],[[8038,8048,8025]],[[8038,8025,8027]],[[3028,3017,8037]],[[8037,3017,8038]],[[3025,3028,8040]],[[8040,3028,8037]],[[3026,3025,8041]],[[8041,3025,8040]],[[3027,3026,8039]],[[8039,3026,8041]],[[3024,3027,8044]],[[8044,3027,8039]],[[3018,3024,8046]],[[8046,3024,8043]],[[8043,3024,8044]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027998","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046d249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.84999990463257,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8049,8050,8051]],[[8049,8051,8052]],[[8053,8054,1810]],[[1810,8054,8055]],[[1810,8055,8056]],[[8056,8055,8057]],[[8056,8057,8049]],[[8049,8057,8050]],[[1828,8053,7863]],[[7863,8053,8052]],[[8052,8053,1810]],[[8052,1810,8056]],[[8052,8056,8049]],[[7867,1828,7864]],[[7864,1828,7863]],[[7864,7863,8051]],[[8051,7863,8052]],[[8054,7867,8055]],[[8055,7867,8057]],[[8057,7867,8050]],[[8050,7867,7864]],[[8050,7864,8051]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:46.1)","identificatiebagpnd":"503100000018594","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000005335)","inonderzoek":"0","lokaalid":"G0503.032e68f046d349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.8199999332428,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85035.520 447511.425)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:73)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8058,8059,8057]],[[8058,8057,8056]],[[1809,8060,8058]],[[8058,8060,8059]],[[1810,1809,8056]],[[8056,1809,8058]],[[8055,1810,8057]],[[8057,1810,8056]],[[8060,8055,8059]],[[8059,8055,8057]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22b8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027997","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f046d449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.88000011444092,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8061,8062,8063]],[[8061,8063,8064]],[[1811,7831,7826]],[[7826,7831,7828]],[[7826,7828,8061]],[[8061,7828,8062]],[[1809,1811,8058]],[[8058,1811,8064]],[[8064,1811,7826]],[[8064,7826,8061]],[[8060,1809,8059]],[[8059,1809,8058]],[[8059,8058,8063]],[[8063,8058,8064]],[[7831,8060,7828]],[[7828,8060,8062]],[[8062,8060,8059]],[[8062,8059,8063]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22bd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-48.6)","identificatiebagpnd":"503100000022859","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003317)","inonderzoek":"0","lokaalid":"G0503.032e68f046d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.83999991416931,"min-height-surface":0.28999999165535,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85042.649 447462.716)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:79)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8065,8066,8067]],[[8068,8069,8070]],[[8068,8071,8069]],[[8072,8073,8074]],[[8070,8074,8068]],[[8075,8076,8074]],[[8075,8077,8076]],[[8078,8079,8080]],[[8074,8073,8075]],[[8081,8072,8074]],[[8082,8083,8084]],[[8072,8082,8084]],[[8073,8072,8084]],[[8085,8086,8087]],[[8072,8088,8089]],[[8080,8090,8091]],[[8078,8080,8091]],[[8089,8092,8091]],[[8093,8094,8070]],[[8091,8095,8078]],[[8092,8095,8091]],[[8088,8092,8089]],[[8096,8097,8098]],[[8099,8100,8088]],[[8072,8081,8088]],[[8088,8081,8099]],[[8094,8074,8070]],[[8096,8101,8102]],[[8096,8081,8097]],[[8103,8101,8104]],[[8105,8106,8107]],[[8105,8107,8108]],[[8106,8103,8107]],[[8108,8109,8110]],[[8108,8107,8109]],[[8103,8104,8107]],[[8101,8096,8098]],[[8101,8098,8104]],[[8104,8098,8111]],[[8111,8098,8112]],[[8081,8074,8094]],[[8094,8087,8086]],[[8113,8098,8097]],[[8097,8081,8094]],[[8086,8097,8094]],[[8114,8093,8070]],[[8115,8094,8093]],[[8114,8116,8093]],[[8114,8067,8116]],[[8114,8065,8067]],[[8117,8118,8065]],[[8065,8118,8066]],[[8119,8117,8114]],[[8114,8117,8065]],[[8120,8119,8070]],[[8070,8119,8114]],[[8121,8120,8069]],[[8069,8120,8070]],[[8122,8121,8071]],[[8071,8121,8069]],[[8123,8122,8068]],[[8068,8122,8071]],[[8124,8123,8074]],[[8074,8123,8068]],[[8125,8124,8076]],[[8076,8124,8074]],[[8126,8125,8077]],[[8077,8125,8076]],[[8127,8126,8075]],[[8075,8126,8077]],[[8128,8127,8073]],[[8073,8127,8075]],[[8129,8128,8084]],[[8084,8128,8073]],[[8130,8129,8083]],[[8083,8129,8084]],[[8131,8130,8082]],[[8082,8130,8083]],[[8132,8131,8072]],[[8072,8131,8082]],[[8133,8132,8089]],[[8089,8132,8072]],[[8134,8133,8091]],[[8091,8133,8089]],[[8135,8134,8090]],[[8090,8134,8091]],[[8136,8135,8080]],[[8080,8135,8090]],[[8137,8136,8079]],[[8079,8136,8080]],[[8138,8137,8078]],[[8078,8137,8079]],[[8139,8138,8095]],[[8095,8138,8078]],[[8140,8139,8092]],[[8092,8139,8095]],[[8141,8140,8088]],[[8088,8140,8092]],[[8142,8141,8100]],[[8100,8141,8088]],[[8143,8142,8099]],[[8099,8142,8100]],[[8144,8143,8081]],[[8081,8143,8099]],[[8145,8144,8096]],[[8096,8144,8081]],[[8146,8145,8102]],[[8102,8145,8096]],[[8147,8146,8101]],[[8101,8146,8102]],[[8148,8147,8103]],[[8103,8147,8101]],[[8149,8148,8106]],[[8106,8148,8103]],[[8150,8149,8105]],[[8105,8149,8106]],[[8151,8150,8108]],[[8108,8150,8105]],[[8152,8151,8110]],[[8110,8151,8108]],[[8153,8152,8109]],[[8109,8152,8110]],[[8154,8153,8107]],[[8107,8153,8109]],[[8155,8154,8104]],[[8104,8154,8107]],[[8156,8155,8111]],[[8111,8155,8104]],[[8157,8156,8112]],[[8112,8156,8111]],[[8158,8157,8098]],[[8098,8157,8112]],[[2887,8158,8113]],[[8113,8158,8098]],[[2880,2887,8097]],[[8097,2887,8113]],[[2878,2880,8086]],[[8086,2880,8097]],[[2879,2878,8085]],[[8085,2878,8086]],[[2873,2879,8087]],[[8087,2879,8085]],[[2874,2873,8094]],[[8094,2873,8087]],[[2876,2874,8115]],[[8115,2874,8094]],[[2913,2876,8093]],[[8093,2876,8115]],[[2911,2913,8116]],[[8116,2913,8093]],[[8159,2911,8067]],[[8067,2911,8116]],[[8118,8159,8066]],[[8066,8159,8067]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22c2-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.8)","identificatiebagpnd":"503100000018519","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000002511)","inonderzoek":"0","lokaalid":"G0503.032e68f046d649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.73000001907349,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84995.031 447504.834)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:58)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[7880,8160,8161]],[[7880,8161,7882]],[[8162,8163,8161]],[[8160,8162,8161]],[[8164,8165,8162]],[[8165,8164,8166]],[[8166,8164,8167]],[[8160,8164,8162]],[[8168,1825,1789]],[[1789,1825,7880]],[[7880,1825,8160]],[[8169,8168,847]],[[847,8168,1789]],[[847,1789,7882]],[[7882,1789,7880]],[[907,8169,8161]],[[8161,8169,847]],[[8161,847,7882]],[[8170,907,8163]],[[8163,907,8161]],[[8171,8170,8162]],[[8162,8170,8163]],[[8172,8171,8165]],[[8165,8171,8162]],[[8173,8172,8166]],[[8166,8172,8165]],[[8174,8173,8167]],[[8167,8173,8166]],[[8175,8174,8164]],[[8164,8174,8167]],[[1825,8175,8160]],[[8160,8175,8164]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22c7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-34)","identificatiebagpnd":"503100000032723","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027126)","inonderzoek":"0","lokaalid":"G0503.032e68f046d749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.65000009536743,"min-height-surface":0.0700000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84988.193 447489.302)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:66)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8176,8177,8178]],[[8176,7945,8177]],[[8179,8180,8181]],[[7945,8176,7954]],[[7951,7954,8182]],[[7954,8183,8182]],[[7954,8176,8183]],[[8176,8179,8183]],[[8176,8180,8179]],[[8181,8180,8184]],[[8184,8180,8185]],[[892,891,8176]],[[8176,891,8180]],[[889,892,8178]],[[8178,892,8176]],[[947,889,8177]],[[8177,889,8178]],[[950,947,7945]],[[7945,947,8177]],[[7953,950,7954]],[[7954,950,7945]],[[7950,7953,7951]],[[7951,7953,7954]],[[8186,7950,8182]],[[8182,7950,7951]],[[899,8186,8183]],[[8183,8186,8182]],[[900,899,8179]],[[8179,899,8183]],[[898,900,8181]],[[8181,900,8179]],[[894,898,8184]],[[8184,898,8181]],[[906,894,8185]],[[8185,894,8184]],[[891,906,8180]],[[8180,906,8185]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be22cc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000022862","identificatiebagvbohoogstehuisnummer":"(1:503010000003312)","identificatiebagvbolaagstehuisnummer":"(1:503010000003311)","inonderzoek":"0","lokaalid":"G0503.032e68f046d849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.28000020980835,"min-height-surface":-0.340000003576279,"namespace":"NL.IMGeo","plaatsingspunt":"(1:85011.805 447532.804)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:52-53)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8187,8188,8189]],[[8187,8190,8188]],[[8188,8046,8045]],[[8188,8191,8046]],[[8188,8190,8191]],[[8187,8192,8193]],[[8194,8190,8195]],[[8196,8194,8195]],[[8197,8196,8195]],[[8197,8195,8198]],[[8198,8195,8199]],[[8195,8200,8201]],[[8195,8193,8200]],[[8190,8193,8195]],[[8190,8187,8193]],[[8202,8203,8005]],[[8005,8203,3033]],[[8005,3033,7992]],[[7992,3033,7996]],[[7992,7996,8187]],[[8187,7996,8192]],[[8204,8202,1372]],[[1372,8202,8005]],[[1372,8005,7990]],[[7990,8005,7992]],[[7990,7992,8189]],[[8189,7992,8187]],[[1502,8204,8188]],[[8188,8204,1372]],[[8188,1372,7990]],[[8188,7990,8189]],[[8205,1502,1539]],[[1539,1502,8045]],[[8045,1502,8188]],[[8206,8205,3018]],[[3018,8205,1539]],[[3018,1539,8046]],[[8046,1539,8045]],[[3019,8206,8191]],[[8191,8206,3018]],[[8191,3018,8046]],[[3023,3019,8190]],[[8190,3019,8191]],[[3022,3023,8194]],[[8194,3023,8190]],[[3021,3022,8196]],[[8196,3022,8194]],[[3020,3021,8197]],[[8197,3021,8196]],[[3016,3020,8198]],[[8198,3020,8197]],[[8207,3016,8199]],[[8199,3016,8198]],[[8208,8207,8195]],[[8195,8207,8199]],[[3030,8208,8201]],[[8201,8208,8195]],[[3032,3030,8200]],[[8200,3030,8201]],[[3035,3032,8193]],[[8193,3032,8200]],[[8203,3035,3033]],[[3033,3035,7996]],[[7996,3035,8192]],[[8192,3035,8193]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49e1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000018595","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027128)","inonderzoek":"0","lokaalid":"G0503.032e68f046d949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.98000001907349,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84961.012 447480.098)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:70)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8209,8210,8211]],[[8209,8212,8213]],[[8210,8209,8214]],[[8215,8214,8216]],[[8216,8214,8217]],[[8214,8213,8217]],[[8214,8209,8213]],[[8218,8219,8209]],[[8209,8219,8212]],[[8220,8218,8211]],[[8211,8218,8209]],[[8221,8220,8222]],[[8222,8220,8210]],[[8210,8220,8211]],[[8223,8221,8224]],[[8224,8221,8222]],[[8224,8222,8214]],[[8214,8222,8210]],[[8225,8223,8226]],[[8226,8223,8224]],[[8226,8224,8215]],[[8215,8224,8214]],[[1143,8225,8227]],[[8227,8225,8226]],[[8227,8226,8216]],[[8216,8226,8215]],[[1144,1143,8217]],[[8217,1143,8227]],[[8217,8227,8216]],[[1247,1144,8213]],[[8213,1144,8217]],[[8219,1247,8212]],[[8212,1247,8213]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49e6-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:17.1)","identificatiebagpnd":"503100000018591","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000027129)","inonderzoek":"0","lokaalid":"G0503.032e68f046da49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.95000004768372,"min-height-surface":-0.109999999403954,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84954.601 447482.214)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:72)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8224,8226,424]],[[8224,424,8222]],[[8222,424,427]],[[424,8226,8228]],[[424,434,425]],[[424,8228,434]],[[8226,8227,8228]],[[8223,8225,8224]],[[8224,8225,8226]],[[8221,8223,8222]],[[8222,8223,8224]],[[8229,8221,426]],[[426,8221,427]],[[427,8221,8222]],[[8230,8229,422]],[[422,8229,426]],[[422,426,424]],[[424,426,427]],[[8231,8230,423]],[[423,8230,422]],[[423,422,425]],[[425,422,424]],[[8232,8231,433]],[[433,8231,423]],[[433,423,434]],[[434,423,425]],[[1149,8232,8228]],[[8228,8232,433]],[[8228,433,434]],[[1143,1149,8227]],[[8227,1149,8228]],[[8225,1143,8226]],[[8226,1143,8227]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49eb-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000028000","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003303)","inonderzoek":"0","lokaalid":"G0503.032e68f046e249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.82999992370605,"min-height-surface":0.159999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84984.506 447563.460)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:43)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8233,8234,8235]],[[8233,8236,8234]],[[8234,8236,8237]],[[8237,8236,8238]],[[8236,8239,8240]],[[8241,8233,8242]],[[8240,8239,8243]],[[8236,8233,8239]],[[8244,8241,8242]],[[8239,8233,8241]],[[676,677,660]],[[660,677,664]],[[660,664,8233]],[[8233,664,8242]],[[675,676,661]],[[661,676,660]],[[661,660,8235]],[[8235,660,8233]],[[1687,675,8234]],[[8234,675,661]],[[8234,661,8235]],[[1420,1687,8237]],[[8237,1687,8234]],[[1416,1420,8245]],[[8245,1420,8238]],[[8238,1420,8237]],[[8246,1416,8247]],[[8247,1416,8245]],[[8247,8245,8236]],[[8236,8245,8238]],[[8248,8246,8249]],[[8249,8246,8247]],[[8249,8247,8240]],[[8240,8247,8236]],[[8250,8248,8243]],[[8243,8248,8249]],[[8243,8249,8240]],[[8251,8250,8239]],[[8239,8250,8243]],[[8252,8251,8241]],[[8241,8251,8239]],[[8253,8252,8244]],[[8244,8252,8241]],[[677,8253,664]],[[664,8253,8242]],[[8242,8253,8244]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49f0-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.9)","identificatiebagpnd":"503100000017045","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003302)","inonderzoek":"0","lokaalid":"G0503.032e68f046e349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":5.76999998092651,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84980.310 447567.401)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:42)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8247,8254,8245]],[[8245,8254,8255]],[[8256,8247,8249]],[[8257,8254,8258]],[[8257,8258,8259]],[[8258,8254,8260]],[[8258,8261,8262]],[[8258,8263,8261]],[[8261,8263,8264]],[[8254,8247,8260]],[[8265,8260,8256]],[[8263,8258,8260]],[[8266,8256,8249]],[[8260,8247,8256]],[[8267,8268,8246]],[[8246,8268,8248]],[[8246,8248,8247]],[[8247,8248,8249]],[[8269,8267,1416]],[[1416,8267,8246]],[[1416,8246,8245]],[[8245,8246,8247]],[[1683,8269,8255]],[[8255,8269,1416]],[[8255,1416,8245]],[[8270,1683,8254]],[[8254,1683,8255]],[[8271,8270,8257]],[[8257,8270,8254]],[[8272,8271,8259]],[[8259,8271,8257]],[[8273,8272,8258]],[[8258,8272,8259]],[[8274,8273,8262]],[[8262,8273,8258]],[[8275,8274,8261]],[[8261,8274,8262]],[[8276,8275,8264]],[[8264,8275,8261]],[[8277,8276,8263]],[[8263,8276,8264]],[[8278,8277,8260]],[[8260,8277,8263]],[[8279,8278,8265]],[[8265,8278,8260]],[[8280,8279,8256]],[[8256,8279,8265]],[[8281,8280,8266]],[[8266,8280,8256]],[[8268,8281,8248]],[[8248,8281,8249]],[[8249,8281,8266]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49f5-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026309","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003301)","inonderzoek":"0","lokaalid":"G0503.032e68f046e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.76999998092651,"min-height-surface":0.170000001788139,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84967.823 447579.382)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:41)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8282,8283,8284]],[[8285,8286,8287]],[[8286,8288,8287]],[[8289,8290,8287]],[[8288,8289,8287]],[[8291,8285,8287]],[[8292,8293,8285]],[[8294,8295,8285]],[[8296,8297,8295]],[[8298,8299,8300]],[[8299,8301,8300]],[[8302,8303,8304]],[[8300,8301,8304]],[[8302,8305,8303]],[[8302,8306,8305]],[[8301,8302,8304]],[[8296,8298,8300]],[[8295,8294,8296]],[[8291,8284,8307]],[[8296,8308,8298]],[[8296,8294,8308]],[[8294,8285,8293]],[[8284,8309,8307]],[[8291,8307,8285]],[[8310,8293,8292]],[[8285,8307,8292]],[[8284,8283,8309]],[[8311,8312,8282]],[[8282,8312,8283]],[[8313,8311,8284]],[[8284,8311,8282]],[[8314,8313,8291]],[[8291,8313,8284]],[[8315,8314,8287]],[[8287,8314,8291]],[[8316,8315,8290]],[[8290,8315,8287]],[[8317,8316,8289]],[[8289,8316,8290]],[[8318,8317,8288]],[[8288,8317,8289]],[[2798,8318,8286]],[[8286,8318,8288]],[[2794,2798,8285]],[[8285,2798,8286]],[[2763,2794,8295]],[[8295,2794,8285]],[[2787,2763,8297]],[[8297,2763,8295]],[[2788,2787,8296]],[[8296,2787,8297]],[[2789,2788,8300]],[[8300,2788,8296]],[[2799,2789,8304]],[[8304,2789,8300]],[[8319,2799,8303]],[[8303,2799,8304]],[[8320,8319,8305]],[[8305,8319,8303]],[[8321,8320,8306]],[[8306,8320,8305]],[[8322,8321,8302]],[[8302,8321,8306]],[[8323,8322,8301]],[[8301,8322,8302]],[[8324,8323,8325]],[[8325,8323,8326]],[[8326,8323,8299]],[[8299,8323,8301]],[[8327,8324,8328]],[[8328,8324,8325]],[[8328,8325,8329]],[[8329,8325,8326]],[[8329,8326,8298]],[[8298,8326,8299]],[[8330,8327,8308]],[[8308,8327,8328]],[[8308,8328,8329]],[[8308,8329,8298]],[[8331,8330,8294]],[[8294,8330,8308]],[[8332,8331,8293]],[[8293,8331,8294]],[[8333,8332,8310]],[[8310,8332,8293]],[[8334,8333,8292]],[[8292,8333,8310]],[[8335,8334,8307]],[[8307,8334,8292]],[[8336,8335,8309]],[[8309,8335,8307]],[[8312,8336,8283]],[[8283,8336,8309]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31be49fa-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:43.8)","identificatiebagpnd":"503100000026310","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000003300)","inonderzoek":"0","lokaalid":"G0503.032e68f046e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":3.04999995231628,"min-height-surface":0.150000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84965.207 447582.006)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:40)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8337,8338,8339]],[[8337,8339,8340]],[[8339,8341,8342]],[[8343,8344,8341]],[[8339,8343,8341]],[[8344,8343,8345]],[[8339,8346,8343]],[[8339,8338,8346]],[[8346,8338,8347]],[[8348,8349,8331]],[[8331,8349,8332]],[[8331,8332,8294]],[[8294,8332,8293]],[[8294,8293,8337]],[[8337,8293,8338]],[[8350,8348,8340]],[[8340,8348,8331]],[[8340,8331,8294]],[[8340,8294,8337]],[[8351,8350,8339]],[[8339,8350,8340]],[[8352,8351,8342]],[[8342,8351,8339]],[[746,8352,709]],[[709,8352,8341]],[[8341,8352,8342]],[[747,746,710]],[[710,746,709]],[[710,709,8344]],[[8344,709,8341]],[[8353,747,8345]],[[8345,747,710]],[[8345,710,8344]],[[8354,8353,8343]],[[8343,8353,8345]],[[8355,8354,8346]],[[8346,8354,8343]],[[8356,8355,8347]],[[8347,8355,8346]],[[8349,8356,8332]],[[8332,8356,8293]],[[8293,8356,8338]],[[8338,8356,8347]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cd7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000022785","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0562849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.4300000667572,"min-height-surface":0.259999990463257,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8357,8358,8359]],[[8357,8359,8360]],[[8358,8361,8359]],[[1396,1657,8362]],[[8362,1657,8357]],[[8357,1657,8363]],[[8357,8363,8358]],[[1398,1396,8364]],[[8364,1396,8362]],[[8364,8362,8360]],[[8360,8362,8357]],[[1393,1398,8359]],[[8359,1398,8364]],[[8359,8364,8360]],[[1388,1393,8365]],[[8365,1393,8361]],[[8361,1393,8359]],[[1657,1388,8363]],[[8363,1388,8365]],[[8363,8365,8358]],[[8358,8365,8361]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cdc-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-40.2)","identificatiebagpnd":"503100000022784","identificatiebagvbohoogstehuisnummer":"(1:503010000027120)","identificatiebagvbolaagstehuisnummer":"(1:503010000027118)","inonderzoek":"0","lokaalid":"G0503.032e68f0562949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.42000007629395,"min-height-surface":0.119999997317791,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84963.917 447554.114)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:51-55)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8366,8367,8368]],[[8369,8370,8371]],[[8365,8369,8371]],[[8363,8369,8365]],[[8372,8363,8373]],[[8363,8374,8369]],[[8363,8372,8374]],[[8374,8375,8376]],[[8374,8372,8375]],[[8363,8367,8366]],[[8368,8367,8377]],[[8373,8378,8379]],[[8373,8366,8378]],[[8373,8363,8366]],[[8368,8377,8380]],[[8381,8368,8380]],[[1501,1500,8367]],[[8367,1500,8377]],[[8382,1501,1657]],[[1657,1501,8363]],[[8363,1501,8367]],[[8383,8382,1388]],[[1388,8382,1657]],[[1388,1657,8365]],[[8365,1657,8363]],[[1389,8383,8371]],[[8371,8383,1388]],[[8371,1388,8365]],[[8384,1389,8370]],[[8370,1389,8371]],[[8385,8384,8369]],[[8369,8384,8370]],[[8386,8385,8374]],[[8374,8385,8369]],[[8387,8386,8376]],[[8376,8386,8374]],[[8388,8387,8375]],[[8375,8387,8376]],[[8389,8388,8372]],[[8372,8388,8375]],[[8390,8389,8373]],[[8373,8389,8372]],[[8391,8390,8379]],[[8379,8390,8373]],[[8392,8391,8378]],[[8378,8391,8379]],[[8393,8392,8366]],[[8366,8392,8378]],[[8394,8393,8368]],[[8368,8393,8366]],[[8395,8394,8381]],[[8381,8394,8368]],[[8396,8395,8380]],[[8380,8395,8381]],[[1500,8396,8377]],[[8377,8396,8380]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31c59cdf-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026303","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0562a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.75999999046326,"min-height-surface":0.330000013113022,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8326,8329,8397]],[[8329,8398,8397]],[[8398,8329,8399]],[[8398,8399,8400]],[[8329,8401,8399]],[[8325,8328,8326]],[[8326,8328,8329]],[[8402,8325,8397]],[[8397,8325,8326]],[[1097,8402,8398]],[[8398,8402,8397]],[[1095,1097,8400]],[[8400,1097,8398]],[[8403,1095,8399]],[[8399,1095,8400]],[[8404,8403,8401]],[[8401,8403,8399]],[[8328,8404,8329]],[[8329,8404,8401]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18906-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017316","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":0.75,"min-height-surface":0.0199999995529652,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8405,8406,8407]],[[8405,8407,8408]],[[8408,8407,8409]],[[8406,8410,8407]],[[8406,8411,8410]],[[1151,1150,8405]],[[8405,1150,8406]],[[1178,1151,8408]],[[8408,1151,8405]],[[1172,1178,8409]],[[8409,1178,8408]],[[1160,1172,8407]],[[8407,1172,8409]],[[1161,1160,8410]],[[8410,1160,8407]],[[8412,1161,8411]],[[8411,1161,8410]],[[1150,8412,8406]],[[8406,8412,8411]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1890f-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017220","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.40000009536743,"min-height-surface":0.209999993443489,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8413,8414,8415]],[[8413,8415,8416]],[[8417,1942,8413]],[[8413,1942,8414]],[[2214,8417,8416]],[[8416,8417,8413]],[[1941,2214,8415]],[[8415,2214,8416]],[[1942,1941,8414]],[[8414,1941,8415]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18912-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017502","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.94000005722046,"min-height-surface":0.340000003576279,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8418,8419,8420]],[[8419,8421,8420]],[[8419,8422,8421]],[[8421,8422,8423]],[[8424,8425,8418]],[[8418,8425,8419]],[[8426,8424,8420]],[[8420,8424,8418]],[[8427,8426,8421]],[[8421,8426,8420]],[[8428,8427,8423]],[[8423,8427,8421]],[[8429,8428,8422]],[[8422,8428,8423]],[[8425,8429,8419]],[[8419,8429,8422]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18915-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000026315","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.83999991416931,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8430,8431,8432]],[[8430,8432,8433]],[[8434,8435,8430]],[[8430,8435,8431]],[[8436,8434,8433]],[[8433,8434,8430]],[[8437,8436,8432]],[[8432,8436,8433]],[[8435,8437,8431]],[[8431,8437,8432]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e18918-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017416","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0751d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8438,8439,8440]],[[8438,8440,8441]],[[8442,8443,8438]],[[8438,8443,8439]],[[8444,8442,8441]],[[8441,8442,8438]],[[8445,8444,8440]],[[8440,8444,8441]],[[8443,8445,8439]],[[8439,8445,8440]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b041-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000027890","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050769)","inonderzoek":"0","lokaalid":"G0503.032e68f0752449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.409999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84922.364 447574.977)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48B)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8446,8447,8448]],[[8447,8449,8448]],[[2477,2303,8446]],[[8446,2303,8447]],[[8450,2477,2476]],[[2476,2477,8448]],[[8448,2477,8446]],[[8451,8450,2487]],[[2487,8450,2476]],[[2487,2476,8449]],[[8449,2476,8448]],[[2303,8451,8447]],[[8447,8451,2487]],[[8447,2487,8449]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b046-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000027892","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050770)","inonderzoek":"0","lokaalid":"G0503.032e68f0752649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.409999996423721,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84923.983 447577.736)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48C)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8452,8453,8454]],[[8453,8455,8454]],[[2478,2301,8452]],[[8452,2301,8453]],[[2477,2478,8446]],[[8446,2478,8454]],[[8454,2478,8452]],[[2303,2477,8447]],[[8447,2477,8446]],[[8447,8446,8455]],[[8455,8446,8454]],[[2301,2303,8453]],[[8453,2303,8447]],[[8453,8447,8455]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b04b-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017418","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050771)","inonderzoek":"0","lokaalid":"G0503.032e68f0752749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.86999988555908,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84927.347 447578.414)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48D)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8456,8457,8452]],[[8457,8453,8452]],[[2468,2510,8458]],[[8458,2510,8459]],[[8458,8459,8456]],[[8456,8459,8457]],[[8460,2468,2478]],[[2478,2468,8452]],[[8452,2468,8458]],[[8452,8458,8456]],[[8461,8460,2301]],[[2301,8460,2478]],[[2301,2478,8453]],[[8453,2478,8452]],[[2510,8461,8459]],[[8459,8461,8457]],[[8457,8461,2301]],[[8457,2301,8453]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b050-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:54.4)","identificatiebagpnd":"503100000017415","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050774)","inonderzoek":"0","lokaalid":"G0503.032e68f0752849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.90000009536743,"min-height-surface":0.449999988079071,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84931.244 447585.027)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48G)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8462,8463,8464]],[[8463,7497,8464]],[[8464,7497,7496]],[[2484,2485,8462]],[[8462,2485,8463]],[[2261,2484,8464]],[[8464,2484,8462]],[[8465,2261,2262]],[[2262,2261,7496]],[[7496,2261,8464]],[[8466,8465,2517]],[[2517,8465,2262]],[[2517,2262,7497]],[[7497,2262,7496]],[[2485,8466,8463]],[[8463,8466,2517]],[[8463,2517,7497]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b055-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017501","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050772)","inonderzoek":"0","lokaalid":"G0503.032e68f0752949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.389999985694885,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84929.127 447581.439)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48E)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8467,8468,8458]],[[8468,8459,8458]],[[8469,8470,2467]],[[2467,8470,2509]],[[2467,2509,8471]],[[8471,2509,8472]],[[8471,8472,8467]],[[8467,8472,8468]],[[8473,8469,2468]],[[2468,8469,8458]],[[8458,8469,2467]],[[8458,2467,8471]],[[8458,8471,8467]],[[8474,8473,2510]],[[2510,8473,2468]],[[2510,2468,8459]],[[8459,2468,8458]],[[8470,8474,2509]],[[2509,8474,8472]],[[8472,8474,8468]],[[8468,8474,2510]],[[8468,2510,8459]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b05a-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017320","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050773)","inonderzoek":"0","lokaalid":"G0503.032e68f0752a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.82999992370605,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84932.514 447581.966)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48F)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8475,8472,8471]],[[8475,8471,8476]],[[2483,2509,8475]],[[8475,2509,8472]],[[2481,2483,8476]],[[8476,2483,8475]],[[2467,2481,8471]],[[8471,2481,8476]],[[2509,2467,8472]],[[8472,2467,8471]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1b05d-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017405","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.60000002384186,"min-height-surface":0.400000005960464,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8477,8478,8479]],[[8478,8480,8479]],[[8481,8482,8477]],[[8477,8482,8478]],[[8483,8481,8479]],[[8479,8481,8477]],[[8484,8483,8480]],[[8480,8483,8479]],[[8482,8484,8478]],[[8478,8484,8480]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d770-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000017417","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.02999997138977,"min-height-surface":0.270000010728836,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8485,8486,8487]],[[8485,8487,8488]],[[8486,8489,8487]],[[8490,8491,8485]],[[8485,8491,8486]],[[8492,8490,8488]],[[8488,8490,8485]],[[8493,8492,8487]],[[8487,8492,8488]],[[8494,8493,8489]],[[8489,8493,8487]],[[8491,8494,8486]],[[8486,8494,8489]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d773-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000027891","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f0752d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.49000000953674,"min-height-surface":0.430000007152557,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8495,8496,8497]],[[8495,8497,8498]],[[8497,8496,8499]],[[8497,8499,8500]],[[2273,2749,8495]],[[8495,2749,8496]],[[2270,2273,8498]],[[8498,2273,8495]],[[2271,2270,8497]],[[8497,2270,8498]],[[2269,2271,8500]],[[8500,2271,8497]],[[2267,2269,8499]],[[8499,2269,8500]],[[2749,2267,8496]],[[8496,2267,8499]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d778-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"(1:-35.6)","identificatiebagpnd":"503100000017414","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"(1:503010000050768)","inonderzoek":"0","lokaalid":"G0503.032e68f0752e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.84999990463257,"min-height-surface":0.419999986886978,"namespace":"NL.IMGeo","plaatsingspunt":"(1:84919.038 447574.260)","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"(1:48A)","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8448,8449,8501]],[[8449,8502,8501]],[[2476,2487,8448]],[[8448,2487,8449]],[[2268,2476,8501]],[[8501,2476,8448]],[[2264,2268,8502]],[[8502,2268,8501]],[[2487,2264,8449]],[[8449,2264,8502]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1d795-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000022861","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.40000009536743,"min-height-surface":0.239999994635582,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8503,8504,8364]],[[8504,8362,8364]],[[1401,1598,8503]],[[8503,1598,8504]],[[8505,1401,1398]],[[1398,1401,8364]],[[8364,1401,8503]],[[8506,8505,1396]],[[1396,8505,1398]],[[1396,1398,8362]],[[8362,1398,8364]],[[1598,8506,8504]],[[8504,8506,1396]],[[8504,1396,8362]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1fea8-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018599","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.41000008583069,"min-height-surface":0.189999997615814,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8507,8508,8509]],[[8508,8510,8509]],[[1478,1465,8507]],[[8507,1465,8508]],[[1455,1478,8509]],[[8509,1478,8507]],[[1512,1455,8510]],[[8510,1455,8509]],[[1465,1512,8508]],[[8508,1512,8510]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feab-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018606","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.30999994277954,"min-height-surface":0.200000002980232,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8511,8512,8513]],[[8512,8514,8513]],[[1451,1713,8511]],[[8511,1713,8512]],[[1324,1451,8513]],[[8513,1451,8511]],[[1667,1324,8514]],[[8514,1324,8513]],[[1713,1667,8512]],[[8512,1667,8514]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feae-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018588","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.78999996185303,"min-height-surface":0.349999994039536,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8515,8516,8517]],[[8516,8518,8517]],[[1438,1452,8515]],[[8515,1452,8516]],[[1468,1438,8517]],[[8517,1438,8515]],[[1402,1468,8518]],[[8518,1468,8517]],[[1452,1402,8516]],[[8516,1402,8518]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb1-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018603","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.78999996185303,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8519,8520,8521]],[[8519,8521,8522]],[[8522,8521,8523]],[[8520,8524,8521]],[[8520,8525,8524]],[[1225,1229,8519]],[[8519,1229,8520]],[[1226,1225,8522]],[[8522,1225,8519]],[[1206,1226,8523]],[[8523,1226,8522]],[[1216,1206,8521]],[[8521,1206,8523]],[[1217,1216,8524]],[[8524,1216,8521]],[[8526,1217,8525]],[[8525,1217,8524]],[[1229,8526,8520]],[[8520,8526,8525]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb4-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018604","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075e949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":1.21000003814697,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8527,8528,8529]],[[8527,8529,8530]],[[8530,8529,8531]],[[8528,8532,8529]],[[8528,8533,8532]],[[1122,1121,8527]],[[8527,1121,8528]],[[1133,1122,8530]],[[8530,1122,8527]],[[1115,1133,8531]],[[8531,1133,8530]],[[1227,1115,8529]],[[8529,1115,8531]],[[1230,1227,8532]],[[8532,1227,8529]],[[8534,1230,8533]],[[8533,1230,8532]],[[1121,8534,8528]],[[8528,8534,8533]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feb7-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018597","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075ea49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.35999989509583,"min-height-surface":0.0299999993294477,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8535,8536,8537]],[[8536,8538,8537]],[[8537,8538,8539]],[[8536,8540,8538]],[[8538,8540,8541]],[[8536,8542,8540]],[[8543,8544,8535]],[[8535,8544,8536]],[[1315,8543,8537]],[[8537,8543,8535]],[[1126,1315,8539]],[[8539,1315,8537]],[[1125,1126,8538]],[[8538,1126,8539]],[[1124,1125,8541]],[[8541,1125,8538]],[[8545,1124,8540]],[[8540,1124,8541]],[[8546,8545,8542]],[[8542,8545,8540]],[[8544,8546,8536]],[[8536,8546,8542]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1feba-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018517","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075eb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":0.75,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8547,8548,8549]],[[8547,8549,8550]],[[8550,8549,8551]],[[8548,8552,8549]],[[8548,8553,8552]],[[1213,1212,8547]],[[8547,1212,8548]],[[1214,1213,8550]],[[8550,1213,8547]],[[1201,1214,8551]],[[8551,1214,8550]],[[1204,1201,8549]],[[8549,1201,8551]],[[1202,1204,8552]],[[8552,1204,8549]],[[8554,1202,8553]],[[8553,1202,8552]],[[1212,8554,8548]],[[8548,8554,8553]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b31e1febd-00ba-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","hoek":"","identificatiebagpnd":"503100000018609","identificatiebagvbohoogstehuisnummer":"","identificatiebagvbolaagstehuisnummer":"","inonderzoek":"0","lokaalid":"G0503.032e68f075ec49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","measuredHeight":2.34999990463257,"min-height-surface":0.00999999977648258,"namespace":"NL.IMGeo","plaatsingspunt":"","plus_status":"geenWaarde","relatievehoogteligging":"0","tekst":"","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[[8555,8556,8557]],[[8555,8557,8558]],[[8558,8557,8559]],[[8556,8560,8557]],[[8556,8561,8560]],[[1199,1198,8555]],[[8555,1198,8556]],[[1294,1199,8558]],[[8558,1199,8555]],[[1186,1294,8559]],[[8559,1294,8558]],[[1187,1186,8557]],[[8557,1186,8559]],[[1188,1187,8560]],[[8560,1187,8557]],[[8562,1188,8561]],[[8561,1188,8560]],[[1198,8562,8556]],[[8556,8562,8561]]]],"lod":"1","type":"Solid"}],"type":"Building"},"b41373904-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8563,1898,1900]],[[2886,8564,8565]],[[8566,8567,8568]],[[8567,8569,8570]],[[8571,8572,8153]],[[8572,8573,8574]],[[8575,8571,8576]],[[8577,8578,8579]],[[8580,8581,8565]],[[8570,1915,8582]],[[8583,8579,8584]],[[8574,8573,8578]],[[8585,8586,8587]],[[8588,8589,8590]],[[8591,8592,8586]],[[1924,123,8593]],[[1928,1924,8590]],[[1927,1928,8590]],[[1925,8590,1926]],[[1926,8590,1930]],[[1930,8582,1922]],[[8594,8569,8567]],[[1922,8582,1921]],[[8570,8155,8567]],[[1920,1921,8582]],[[1918,1920,8582]],[[1919,1918,8582]],[[1915,1919,8582]],[[1929,8570,1908]],[[8582,8590,8595]],[[1915,8570,1913]],[[8570,1911,1914]],[[1929,1910,8570]],[[8570,8582,8596]],[[1909,1908,8570]],[[1906,1909,8570]],[[8570,8597,8154]],[[1904,1905,8570]],[[1903,1904,8570]],[[1901,1903,8570]],[[1900,1901,8598]],[[8563,1900,8598]],[[8563,1899,1898]],[[8563,1897,1899]],[[8563,1896,1897]],[[8563,1895,1896]],[[1894,1890,8563]],[[1893,1894,8563]],[[1891,1893,8563]],[[8599,8600,8598]],[[8601,8567,8566]],[[8602,8600,120]],[[120,8600,119]],[[8599,8569,119]],[[8598,1901,8570]],[[8601,8594,8567]],[[8603,8566,8565]],[[8604,8605,2894]],[[8606,8607,8608]],[[8580,8565,8564]],[[8564,8609,8580]],[[8564,2886,2963]],[[8610,8611,8612]],[[8607,2894,8605]],[[193,8613,192]],[[192,8613,8610]],[[8614,118,8580]],[[193,8615,8613]],[[8609,8564,8616]],[[8154,8571,8153]],[[8597,8617,8573]],[[8615,8614,8606]],[[193,118,8614]],[[8618,8619,8581]],[[8618,8566,8603]],[[8578,8620,8584]],[[8621,8622,8583]],[[1925,1927,8590]],[[8623,8622,8621]],[[8586,8592,123]],[[8624,8623,8621]],[[8613,8615,8606]],[[193,8614,8615]],[[8610,8625,192]],[[8604,2894,192]],[[1930,8590,8582]],[[8595,8626,8627]],[[8154,8576,8571]],[[8617,8596,8628]],[[8614,8580,8606]],[[8581,8619,8565]],[[1924,8593,8590]],[[123,8592,8593]],[[8629,8630,8583]],[[8585,8591,8586]],[[8631,8583,8584]],[[8622,8579,8583]],[[8618,8601,8566]],[[117,8594,8601]],[[8620,8617,8584]],[[8632,8630,8629]],[[8579,8578,8584]],[[1911,8570,1910]],[[8633,8577,8579]],[[8572,8576,8573]],[[8634,8605,8604]],[[8608,8607,8605]],[[8625,8604,192]],[[8635,8611,8634]],[[8593,8588,8590]],[[8593,8592,8588]],[[124,8586,123]],[[8587,8623,8624]],[[8636,8596,8582]],[[8582,8595,8627]],[[8637,8621,8583]],[[8637,8624,8621]],[[8573,8617,8620]],[[8576,8154,8597]],[[8590,8589,8595]],[[8588,8592,8638]],[[8578,8573,8620]],[[8576,8597,8573]],[[8635,8634,8604]],[[8611,8606,8608]],[[117,8618,118]],[[117,8601,8618]],[[1914,1913,8570]],[[8596,8617,8597]],[[8577,8574,8578]],[[8639,8572,8574]],[[8585,8624,8637]],[[8587,124,8623]],[[118,8581,8580]],[[118,8618,8581]],[[8600,8599,119]],[[8598,8569,8599]],[[8155,8570,8154]],[[8582,8627,8636]],[[8598,8570,8569]],[[1905,1906,8570]],[[8570,8596,8597]],[[8640,8626,8629]],[[8617,8631,8584]],[[8629,8583,8631]],[[8640,8628,8636]],[[8631,8617,8628]],[[1892,8602,120]],[[1892,8600,8602]],[[8625,8612,8604]],[[8625,8610,8612]],[[8583,8630,8637]],[[8638,8589,8588]],[[8632,8638,8591]],[[8595,8589,8638]],[[8632,8591,8630]],[[8638,8592,8591]],[[8596,8636,8628]],[[8627,8626,8636]],[[8626,8640,8636]],[[8631,8628,8640]],[[8640,8629,8631]],[[8626,8632,8629]],[[8585,8587,8624]],[[8586,124,8587]],[[8612,8635,8604]],[[8612,8611,8635]],[[8641,8616,8564]],[[8609,8606,8580]],[[8641,8609,8616]],[[8607,8606,8609]],[[8607,8641,8564]],[[8607,8609,8641]],[[1891,8563,8598]],[[1890,1895,8563]],[[8572,8575,8576]],[[8572,8571,8575]],[[8619,8603,8565]],[[8619,8618,8603]],[[8634,8608,8605]],[[8634,8611,8608]],[[8639,8577,8633]],[[8639,8574,8577]],[[8630,8585,8637]],[[8630,8591,8585]],[[8595,8632,8626]],[[8595,8638,8632]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4137fbfc-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.a7f64e78a3f34c07a6005756fd037ca1","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8642,8643,8644]],[[8642,8644,8645]],[[8644,8643,8646]],[[8646,8647,8648]],[[8646,8643,8649]],[[8646,8649,8647]],[[8647,8649,8650]],[[8649,8643,8651]],[[8651,8652,8653]],[[8651,8643,8654]],[[8651,8654,8652]],[[8643,8655,8654]],[[8655,8656,8657]],[[8655,8643,8658]],[[8657,8656,8659]],[[8656,8655,8658]],[[8660,8661,8662]],[[8661,8663,8662]],[[8661,8664,8665]],[[8661,8665,8663]],[[8665,8664,8658]],[[8665,8658,8666]],[[8664,8656,8658]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4138231e-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef704049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8667,8668,8669]],[[8670,7728,7729]],[[8671,8672,8673]],[[8674,8675,2249]],[[8676,8677,8678]],[[8679,6972,6986]],[[8680,8681,6975]],[[8682,8683,6908]],[[8684,6910,8685]],[[7043,7044,8683]],[[8683,7044,6908]],[[8686,7042,2214]],[[8687,6861,8688]],[[8689,6860,8690]],[[8690,6860,8691]],[[8692,8690,8691]],[[8693,8694,8691]],[[8695,6860,8687]],[[8696,8697,8694]],[[8698,8694,8697]],[[8699,8697,8696]],[[6950,8696,8700]],[[8701,8687,2214]],[[8702,6908,6910]],[[2214,8703,8417]],[[8702,6910,8684]],[[8703,8682,8702]],[[8704,8705,8702]],[[8706,8707,8708]],[[8681,8680,8709]],[[8710,8707,8711]],[[8712,8707,2252]],[[8712,2252,2253]],[[8713,8680,6975]],[[2250,2249,8714]],[[8714,2249,8715]],[[8674,2249,2252]],[[8716,8717,8715]],[[8671,6732,6733]],[[8718,6733,465]],[[7729,8719,8670]],[[8668,8667,8720]],[[8721,8493,8494]],[[8722,8720,8721]],[[8723,8724,8725]],[[8726,8727,8728]],[[7727,8728,7737]],[[7737,8728,7736]],[[7736,8728,2275]],[[2275,8728,2749]],[[8443,8729,8445]],[[8730,2480,8731]],[[8731,2480,2479]],[[2634,2482,8732]],[[8733,2634,8734]],[[2634,8732,8734]],[[2482,2480,8732]],[[8735,8731,2479]],[[8730,8732,2480]],[[8736,8730,8737]],[[8738,8739,1101]],[[8740,560,556]],[[8741,1105,8742]],[[8743,8744,8745]],[[1101,8746,1105]],[[1101,8739,8747]],[[8742,8746,560]],[[8748,2475,2267]],[[1101,8747,8746]],[[8739,8736,8737]],[[8737,8730,8731]],[[8735,2466,2475]],[[2466,8735,2479]],[[8747,8739,8737]],[[2824,2749,8728]],[[2821,8491,8437]],[[8749,8494,8491]],[[8728,8727,2818]],[[2749,2824,8750]],[[8443,8737,8729]],[[2818,8724,8723]],[[8727,8724,2818]],[[8443,8747,8737]],[[2818,2824,8728]],[[8751,2821,8437]],[[8749,2820,8494]],[[8752,8723,8725]],[[8729,8435,8445]],[[8729,2821,8435]],[[2818,8753,2820]],[[2749,8750,2267]],[[8753,2818,8723]],[[8750,8735,2475]],[[8719,8752,8725]],[[8754,366,8675]],[[465,8669,8718]],[[8752,8755,8756]],[[2252,8707,8674]],[[8709,8757,8681]],[[8758,8759,8680]],[[8760,8709,8761]],[[8762,8715,8675]],[[8715,2249,8675]],[[8763,8764,8760]],[[8719,8765,8766]],[[8678,8675,8761]],[[8756,8755,8677]],[[8767,8768,8754]],[[8768,8769,8770]],[[8675,8678,8754]],[[8771,6986,8772]],[[8755,8773,8767]],[[8770,8774,8768]],[[8775,8670,8719]],[[8775,8776,8670]],[[6972,8713,6975]],[[6972,8777,8758]],[[8685,8778,8709]],[[8778,8681,8757]],[[8779,8780,8709]],[[8780,8684,8685]],[[2820,8722,8494]],[[8720,8493,8721]],[[8772,8676,8771]],[[8680,8761,8709]],[[6732,8772,6986]],[[6732,8673,8772]],[[6986,8771,8679]],[[8678,8761,8759]],[[8679,8777,6972]],[[8679,8759,8777]],[[8755,8767,8754]],[[8766,8752,8719]],[[8695,8687,8701]],[[6860,6861,8687]],[[8687,8688,2214]],[[6861,7042,8686]],[[8669,8668,8718]],[[8781,6733,8718]],[[8720,8667,466]],[[2820,8753,8668]],[[8782,8680,8713]],[[8759,8761,8680]],[[8755,8766,8773]],[[8783,8774,8770]],[[8783,8766,8765]],[[8755,8752,8766]],[[8754,8768,366]],[[8784,8769,8768]],[[8704,8702,8780]],[[8702,8682,6908]],[[8781,8672,8671]],[[8672,8676,8673]],[[2177,8701,2214]],[[2177,8695,8701]],[[8756,8672,8718]],[[8672,8677,8676]],[[8785,8783,8769]],[[8774,366,8768]],[[366,8786,8762]],[[8717,8714,8715]],[[367,8786,366]],[[367,8717,8716]],[[8725,8775,8719]],[[8776,7728,8670]],[[8783,8773,8766]],[[8769,8784,8773]],[[8773,8785,8769]],[[8765,8719,8783]],[[7042,8683,2214]],[[7042,7043,8683]],[[8779,8787,8708]],[[6910,8778,8685]],[[8787,8788,8708]],[[8789,8674,8707]],[[8779,8790,8787]],[[8760,8764,8790]],[[8790,8764,8788]],[[8760,8674,8789]],[[8718,8672,8781]],[[8756,8677,8672]],[[6732,8671,8673]],[[6733,8781,8671]],[[8725,8776,8775]],[[8725,7728,8776]],[[6972,8758,8713]],[[8777,8759,8758]],[[8709,8780,8685]],[[8708,8791,8780]],[[8791,8704,8780]],[[8792,8705,8704]],[[8750,8793,2267]],[[8793,2475,8748]],[[8759,8676,8678]],[[8772,8673,8676]],[[8709,8778,8757]],[[6910,8681,8778]],[[8759,8771,8676]],[[8759,8679,8771]],[[8756,8668,8753]],[[8756,8718,8668]],[[466,8669,465]],[[466,8667,8669]],[[8769,8783,8770]],[[8719,366,8774]],[[8794,8726,8728]],[[8794,8727,8726]],[[8706,8763,8789]],[[8763,8760,8789]],[[8707,8706,8789]],[[8788,8764,8763]],[[8743,8745,8740]],[[8741,560,8745]],[[2214,8682,8703]],[[2214,8683,8682]],[[366,8762,8675]],[[8786,8716,8762]],[[8494,8722,8721]],[[2820,8668,8720]],[[8493,8720,466]],[[8722,2820,8720]],[[8787,8795,8788]],[[8790,8788,8795]],[[8780,8779,8708]],[[8790,8795,8787]],[[8760,8779,8709]],[[8760,8790,8779]],[[8741,8742,560]],[[1105,8746,8742]],[[8762,8716,8715]],[[8786,367,8716]],[[8700,8696,8694]],[[6950,8699,8696]],[[8792,8791,8708]],[[8792,8704,8791]],[[6950,8695,2177]],[[8691,6860,8695]],[[8773,8783,8785]],[[8719,8774,8783]],[[8767,8784,8768]],[[8767,8773,8784]],[[8688,8686,2214]],[[8688,6861,8686]],[[8743,8740,556]],[[8745,560,8740]],[[8788,8706,8708]],[[8788,8763,8706]],[[8780,8702,8684]],[[8705,8703,8702]],[[8744,8741,8745]],[[8744,1105,8741]],[[8435,8751,8437]],[[8435,2821,8751]],[[2821,8749,8491]],[[2821,2820,8749]],[[8711,8712,2253]],[[8711,8707,8712]],[[2267,8793,8748]],[[8750,2475,8793]],[[8700,8693,8691]],[[8700,8694,8693]],[[8695,8700,8691]],[[8695,6950,8700]],[[8758,8782,8713]],[[8758,8680,8782]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4138bef7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-04-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.967be64250624d208a88a6471c2bd3aa","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8738,8736,8739]],[[8738,1101,8658]],[[8658,8736,8738]],[[8796,8797,8798]],[[8799,8797,8730]],[[8800,8732,8801]],[[8733,8734,8802]],[[8803,8733,8802]],[[8804,8805,8806]],[[8807,8734,8800]],[[8808,8802,8809]],[[8802,8807,8809]],[[8802,8734,8807]],[[8734,8732,8800]],[[8810,8800,8801]],[[8810,8801,8811]],[[8812,8730,8736]],[[8801,8797,8796]],[[8813,8796,8798]],[[8732,8797,8801]],[[8732,8730,8797]],[[8799,8814,8797]],[[1102,8666,1101]],[[8658,1101,8666]],[[8799,8643,8814]],[[542,8815,8481]],[[8665,8666,8663]],[[8816,8817,8818]],[[8819,838,8820]],[[8662,8821,8660]],[[8822,8823,8824]],[[8825,8483,8484]],[[8826,8482,8827]],[[8828,8829,8830]],[[8831,8832,8833]],[[8834,8835,8836]],[[8837,8838,8839]],[[8840,8841,8837]],[[8842,8843,8844]],[[8844,8845,8842]],[[8846,8847,8845]],[[8844,8848,8849]],[[8850,8851,8852]],[[8849,8853,8845]],[[8854,7451,7452]],[[8855,8852,8851]],[[8856,8857,8858]],[[8844,8838,8859]],[[8860,8841,8861]],[[8862,7514,8863]],[[8864,541,542]],[[8865,8866,8867]],[[8868,7529,8869]],[[8870,8871,7312]],[[8815,8872,8831]],[[8864,8481,8483]],[[7291,7310,8873]],[[8874,542,543]],[[8875,8876,8877]],[[8878,8879,8880]],[[8881,541,8882]],[[8883,8884,8885]],[[8820,539,8819]],[[829,8886,828]],[[8887,8888,837]],[[837,8888,8889]],[[836,837,8889]],[[817,8890,816]],[[8889,8880,8891]],[[8892,8662,8663]],[[8893,834,835]],[[8893,833,834]],[[8893,832,833]],[[8891,8894,8895]],[[8893,831,832]],[[830,8893,829]],[[827,828,8886]],[[8886,829,8893]],[[8894,8822,8895]],[[8896,8897,8898]],[[8886,826,827]],[[8886,8899,823]],[[8824,8895,8822]],[[8886,823,824]],[[821,822,8899]],[[820,821,8900]],[[8890,8901,8902]],[[8903,8904,8905]],[[817,818,8900]],[[8892,8906,8821]],[[1102,8907,8666]],[[774,814,8908]],[[772,774,8908]],[[8909,8902,8901]],[[770,771,8908]],[[769,770,8910]],[[768,769,8910]],[[8902,8908,814]],[[8902,8911,8908]],[[8912,766,767]],[[8890,8902,815]],[[766,8912,765]],[[762,763,8913]],[[761,762,8913]],[[760,761,8913]],[[8914,759,760]],[[8915,8916,8917]],[[8918,758,759]],[[8914,8915,8918]],[[8918,8915,757]],[[8915,755,756]],[[8917,754,755]],[[8919,753,754]],[[751,752,8919]],[[8920,751,8919]],[[8920,750,751]],[[8921,749,8920]],[[8920,749,750]],[[8919,752,753]],[[8922,8352,8923]],[[8924,8925,8403]],[[8898,8350,8896]],[[8926,8927,8928]],[[8330,8929,8328]],[[8898,8897,8930]],[[8907,1102,8931]],[[8931,1102,8925]],[[1100,8925,1102]],[[8932,8933,7451]],[[8854,7452,8934]],[[8935,8873,8867]],[[8867,8876,8865]],[[8877,8876,8936]],[[8833,8832,8482]],[[8850,8937,8938]],[[8939,8940,8933]],[[8941,8942,8943]],[[8351,8944,8350]],[[8945,8946,8879]],[[8822,8816,8947]],[[8903,8823,8948]],[[8821,8662,8892]],[[7530,8949,8950]],[[8951,7516,8952]],[[767,8910,8912]],[[767,768,8910]],[[8953,8954,8884]],[[540,541,8954]],[[8906,8904,8955]],[[8948,8947,8955]],[[8890,817,8900]],[[8948,8955,8904]],[[8956,8901,8905]],[[8908,8911,8910]],[[8957,8958,8959]],[[8960,8961,8962]],[[8963,8819,8964]],[[8965,541,8881]],[[8966,8881,8882]],[[8885,8954,8965]],[[819,8900,818]],[[819,820,8900]],[[8481,8864,542]],[[8882,541,8864]],[[8848,8967,8849]],[[8968,8969,8937]],[[8970,8971,8972]],[[8972,543,7291]],[[7311,8973,7310]],[[8974,8975,8976]],[[8937,8969,8977]],[[8934,8978,8979]],[[8914,8918,759]],[[757,758,8918]],[[8970,8972,8980]],[[8936,8876,8873]],[[8844,8849,8845]],[[8981,8982,8850]],[[8983,8984,8855]],[[8853,8985,8986]],[[8926,8928,8987]],[[8987,8350,8898]],[[764,8913,763]],[[764,765,8913]],[[8913,8912,8910]],[[8913,765,8912]],[[8952,8830,8951]],[[8863,8951,8830]],[[8988,8989,8990]],[[8834,7529,8950]],[[8991,8992,8938]],[[8993,8939,8932]],[[8851,8850,8979]],[[8856,8849,8967]],[[8981,8994,8982]],[[8977,8991,8938]],[[8846,8845,8978]],[[8847,8842,8845]],[[8946,8995,8816]],[[8816,8818,8947]],[[8861,8996,8838]],[[8844,8843,8838]],[[8978,8851,8979]],[[8983,8845,8984]],[[8997,8959,8998]],[[8867,8873,8876]],[[8999,8971,8970]],[[9000,8804,8827]],[[9001,8949,8862]],[[8949,7514,8862]],[[8890,8895,8901]],[[8900,821,8899]],[[8905,8895,8824]],[[8886,824,825]],[[8917,8919,754]],[[8917,9002,8920]],[[8932,8939,8933]],[[8940,7451,8933]],[[8926,8898,9003]],[[8926,8987,8898]],[[7503,8848,7517]],[[9004,8967,8848]],[[9005,8968,8937]],[[9006,9007,8977]],[[8834,8869,7529]],[[8836,7314,8869]],[[770,8908,8910]],[[771,772,8908]],[[8875,8865,8876]],[[9008,8806,9009]],[[8960,8962,8997]],[[9008,8865,9010]],[[8988,8840,8839]],[[9011,8828,7516]],[[8990,8841,8840]],[[8835,9012,8836]],[[9013,9014,8961]],[[8980,8935,8867]],[[9015,8871,8975]],[[8974,8804,8806]],[[7310,8936,8873]],[[7310,8877,8936]],[[816,8890,815]],[[8900,8899,8890]],[[8830,8829,8863]],[[7529,7530,8950]],[[9016,8829,8828]],[[8834,9001,8829]],[[8938,8932,8934]],[[9017,8993,8932]],[[8932,8854,8934]],[[8932,7451,8854]],[[7314,8868,8869]],[[7314,7529,8868]],[[534,8820,838]],[[8884,8954,8885]],[[539,8953,8964]],[[8953,540,8954]],[[8964,8953,8884]],[[539,540,8953]],[[8975,8871,8839]],[[7311,7312,8871]],[[8985,9018,8994]],[[8858,7448,9019]],[[8963,8964,8884]],[[8819,539,8964]],[[8930,9020,9021]],[[9022,9023,8897]],[[8483,8882,8864]],[[8483,8966,8882]],[[8885,8965,8881]],[[8954,541,8965]],[[8658,8812,8736]],[[8658,8643,8812]],[[542,8957,8815]],[[8959,8997,8832]],[[7450,9007,7448]],[[8993,8992,9007]],[[8966,8825,8946]],[[8484,8817,9024]],[[7448,8967,7503]],[[7448,8857,8967]],[[8404,9021,8403]],[[9020,8925,8924]],[[8938,8934,8979]],[[7452,8978,8934]],[[7514,8951,8863]],[[7514,7516,8951]],[[9025,9026,8922]],[[9027,9002,8917]],[[8850,8938,8979]],[[8992,9017,8938]],[[8863,9001,8862]],[[7530,7514,8949]],[[9025,8943,9028]],[[9025,9028,9023]],[[8903,8948,8904]],[[8821,8818,8660]],[[8823,8947,8948]],[[8823,8822,8947]],[[9029,8958,8970]],[[9030,543,8971]],[[8959,8958,9029]],[[8872,8815,8957]],[[8874,8957,542]],[[8874,8999,8958]],[[8957,8874,8958]],[[9030,8971,8999]],[[8963,8884,8883]],[[8879,8816,8894]],[[8895,8886,8891]],[[8880,8879,8894]],[[8815,8831,8481]],[[8832,8827,8482]],[[8828,8952,7516]],[[8828,8830,8952]],[[8328,8929,8404]],[[8927,8331,8928]],[[8403,9021,8924]],[[9003,8898,8930]],[[8982,8937,8850]],[[9005,8982,9019]],[[8832,8997,8827]],[[9031,8805,9000]],[[7517,8844,8859]],[[7517,8848,8844]],[[7517,9032,7516]],[[7517,8859,9032]],[[543,8972,8971]],[[7291,8873,8935]],[[9019,8968,9005]],[[7448,9007,9006]],[[835,836,8893]],[[838,8819,8888]],[[8894,8891,8880]],[[830,831,8893]],[[7450,8940,8939]],[[7450,7451,8940]],[[8997,9031,9000]],[[8805,8804,9000]],[[9009,8806,9031]],[[8806,9008,8974]],[[8988,8990,8840]],[[8989,8841,8990]],[[9033,9034,8663]],[[8901,8895,8905]],[[9024,9035,8484]],[[8966,8945,9036]],[[9035,8946,8825]],[[8816,8822,8894]],[[9032,8996,9011]],[[8841,8989,9016]],[[8865,8875,9010]],[[9015,7311,8871]],[[8875,9037,9010]],[[9038,8973,9039]],[[9040,9015,8975]],[[9039,7311,9015]],[[8899,8886,8895]],[[8893,8889,8891]],[[8982,9005,8937]],[[8982,9018,9019]],[[8871,8988,8839]],[[8871,8989,8988]],[[8983,8855,8851]],[[8984,8986,8855]],[[8978,8983,8851]],[[8978,8845,8983]],[[746,9041,8923]],[[746,748,9041]],[[8957,8959,8872]],[[8998,8960,8997]],[[9031,8997,9009]],[[9000,8827,8997]],[[9031,8806,8805]],[[9009,8962,9008]],[[9030,8874,543]],[[9030,8999,8874]],[[8872,8832,8831]],[[8872,8959,8832]],[[8481,8833,8482]],[[8481,8831,8833]],[[8973,8877,7310]],[[8973,8875,8877]],[[8828,8861,8841]],[[8996,8859,8838]],[[8841,8860,8837]],[[8861,8838,9042]],[[8351,9043,8944]],[[8944,8897,8896]],[[8871,9012,8989]],[[8836,8869,8834]],[[8829,9001,8863]],[[8950,8949,9001]],[[9021,9020,8924]],[[8930,8897,9023]],[[8972,8935,8980]],[[8972,7291,8935]],[[7503,9004,8848]],[[7503,8967,9004]],[[9037,8975,9010]],[[8839,8804,8976]],[[838,8887,837]],[[838,8888,8887]],[[8888,8963,8878]],[[9044,8881,9036]],[[9045,9036,8879]],[[9045,8885,9044]],[[8916,9027,8917]],[[8352,746,8923]],[[8812,8799,8730]],[[8812,8643,8799]],[[9001,8834,8950]],[[8829,9016,9046]],[[8929,8927,8404]],[[8929,8330,8927]],[[8404,8927,8926]],[[8330,8331,8927]],[[8982,8994,9018]],[[8853,8984,8845]],[[8852,8986,8994]],[[8852,8855,8986]],[[8985,8853,8849]],[[8986,8984,8853]],[[9020,8930,8931]],[[8942,8913,8911]],[[9026,9025,9023]],[[8907,9033,8663]],[[8404,9003,9047]],[[9048,9028,9049]],[[8666,8907,8663]],[[9049,8909,8956]],[[9020,8931,8925]],[[9048,9023,9028]],[[9048,8907,8931]],[[9048,9049,8907]],[[9034,8956,8905]],[[9033,8907,9049]],[[8881,8966,9036]],[[8483,8825,8966]],[[9036,8945,8879]],[[8966,8946,8945]],[[8976,8975,8839]],[[9037,9040,8975]],[[8937,8977,8938]],[[8969,9006,8977]],[[9007,8991,8977]],[[9050,8992,8991]],[[9007,9050,8991]],[[9007,8992,9050]],[[8875,9040,9037]],[[9038,9039,9015]],[[9014,9029,8980]],[[8958,8999,8970]],[[8824,8903,8905]],[[8824,8823,8903]],[[8852,8981,8850]],[[8852,8994,8981]],[[8968,9006,8969]],[[8968,9019,9006]],[[748,8921,9041]],[[748,749,8921]],[[8878,8963,9045]],[[8888,8819,8963]],[[8860,9042,8837]],[[8860,8861,9042]],[[8840,8837,8839]],[[9042,8838,8837]],[[8892,9034,8905]],[[9033,8956,9034]],[[8944,9043,9026]],[[8351,8352,9043]],[[8352,8922,9043]],[[9002,9041,8920]],[[9027,8916,8941]],[[8917,755,8915]],[[8913,8914,760]],[[8913,8942,8941]],[[8331,8987,8928]],[[8331,8350,8987]],[[9047,9003,8930]],[[8404,8926,9003]],[[8871,8870,9012]],[[7312,7314,8870]],[[8947,8821,8955]],[[8947,8818,8821]],[[8484,9035,8825]],[[9024,8817,8995]],[[9035,8995,8946]],[[9035,9024,8995]],[[8946,8816,8879]],[[8995,8817,8816]],[[8890,8899,8895]],[[822,823,8899]],[[826,8886,825]],[[8893,8891,8886]],[[9034,8892,8663]],[[8905,8904,8906]],[[8821,8906,8955]],[[8892,8905,8906]],[[8938,9017,8932]],[[8992,8993,9017]],[[9040,9038,9015]],[[8973,7311,9039]],[[8875,9038,9040]],[[8875,8973,9038]],[[8930,9051,8931]],[[8930,9023,9051]],[[9051,9048,8931]],[[9051,9023,9048]],[[538,8820,534]],[[538,539,8820]],[[7450,8993,9007]],[[7450,8939,8993]],[[7448,8858,8857]],[[8985,8849,8856]],[[8857,8856,8967]],[[8858,8985,8856]],[[8841,9016,8828]],[[8989,9012,9016]],[[8829,9046,8834]],[[9016,9012,9046]],[[757,8915,756]],[[8914,8916,8915]],[[9045,8883,8885]],[[9045,8963,8883]],[[9021,9047,8930]],[[9021,8404,9047]],[[8870,8836,9012]],[[8870,7314,8836]],[[8959,9029,8998]],[[9014,8867,8961]],[[8980,9029,8970]],[[9013,8998,9029]],[[9029,9014,9013]],[[8980,8867,9014]],[[8997,8962,9009]],[[8866,8865,9008]],[[8961,8866,8962]],[[8974,8976,8804]],[[9010,8974,9008]],[[9010,8975,8974]],[[9022,9026,9023]],[[8922,8923,9002]],[[9025,9027,8943]],[[9025,8922,9002]],[[9025,9002,9027]],[[8923,9041,9002]],[[8944,9026,9022]],[[9043,8922,9026]],[[8917,8920,8919]],[[9041,8921,8920]],[[9046,8835,8834]],[[9046,9012,8835]],[[9033,9049,8956]],[[8909,8901,8956]],[[9028,8911,9049]],[[8911,8913,8910]],[[815,8902,814]],[[8909,8911,8902]],[[9049,8911,8909]],[[9028,8943,8942]],[[9028,8942,8911]],[[8943,9027,8941]],[[8914,8941,8916]],[[8914,8913,8941]],[[9011,8996,8861]],[[9032,8859,8996]],[[8828,9011,8861]],[[7516,9032,9011]],[[8985,9019,9018]],[[7448,9006,9019]],[[8879,8878,9045]],[[8880,8888,8878]],[[8897,8944,9022]],[[8896,8350,8944]],[[836,8889,8893]],[[8888,8880,8889]],[[9019,8985,8858]],[[8994,8986,8985]],[[9045,9044,9036]],[[8885,8881,9044]],[[8962,8866,9008]],[[8961,8867,8866]],[[9013,8960,8998]],[[9013,8961,8960]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413d2c2d-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9052,7400,9053]],[[9054,9055,2630]],[[9055,7401,2630]],[[9053,7399,7401]],[[2709,9054,2630]],[[9052,7401,9055]],[[9052,9053,7401]],[[7400,7399,9053]],[[9052,9054,2709]],[[9052,9055,9054]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413e64b2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9056,465,9057]],[[9058,9059,6734]],[[9059,9057,9060]],[[464,9061,462]],[[9060,9062,9059]],[[462,9058,6734]],[[462,9061,9058]],[[9063,9064,9061]],[[464,465,9061]],[[6734,9059,6733]],[[9063,9061,9056]],[[465,9060,9057]],[[9062,6733,9059]],[[9059,9063,9057]],[[9061,465,9056]],[[465,9062,9060]],[[465,6733,9062]],[[9057,9063,9056]],[[9064,9058,9061]],[[9059,9064,9063]],[[9059,9058,9064]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413eb30b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9065,9066,9067]],[[9068,9069,9070]],[[9071,9072,9073]],[[9074,9075,9076]],[[9074,9067,9075]],[[9067,9077,9075]],[[9078,9065,9071]],[[9071,9065,9072]],[[9078,9066,9065]],[[9066,9077,9067]],[[9069,9074,9076]],[[9069,9068,9074]],[[9073,9068,9070]],[[9071,9073,9070]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b413feb75-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9079,8148,9080]],[[9081,9082,8144]],[[9083,9084,9085]],[[9086,8143,8144]],[[9082,9087,8144]],[[9088,9089,9090]],[[9091,8143,9086]],[[9090,9092,9093]],[[8140,9094,9095]],[[9095,9094,9096]],[[9096,9094,9097]],[[9097,9094,9098]],[[9098,9094,9099]],[[9099,9094,9100]],[[9100,9094,9101]],[[9101,9094,9102]],[[9102,9094,9103]],[[9104,9102,9103]],[[9105,9104,9103]],[[9106,9105,9103]],[[9103,9094,9089]],[[9107,9108,9103]],[[9109,9107,9103]],[[9110,9103,9089]],[[9110,9111,9109]],[[9110,9112,9111]],[[9110,9113,9112]],[[9114,8142,8143]],[[9115,9116,9117]],[[8145,9081,8144]],[[8145,8146,9118]],[[8142,9092,8141]],[[8142,9093,9092]],[[9117,9119,9120]],[[9114,8143,9091]],[[9079,9121,9122]],[[8147,8148,9121]],[[9123,9124,9125]],[[9126,9090,9093]],[[9117,9120,9127]],[[9128,9129,9121]],[[9130,9131,9114]],[[9093,8142,9131]],[[9089,9094,8140]],[[9110,9132,9133]],[[8141,9090,8140]],[[8141,9092,9090]],[[9130,9114,9091]],[[9131,8142,9114]],[[9118,9081,8145]],[[9117,9116,9134]],[[9135,9085,9084]],[[9087,9136,9086]],[[8147,9129,9137]],[[8147,9121,9129]],[[9132,9138,9084]],[[9139,9123,9131]],[[9079,9122,8148]],[[9121,8148,9122]],[[9140,9115,9079]],[[9115,9128,9079]],[[9125,9124,9138]],[[9123,9126,9093]],[[9134,9116,9082]],[[9141,9124,9139]],[[9142,9082,9081]],[[9116,9136,9087]],[[9090,9089,8140]],[[9089,9088,9110]],[[9143,9110,9133]],[[9143,9113,9110]],[[8144,9087,9086]],[[9082,9116,9087]],[[9138,9135,9084]],[[9138,9116,9115]],[[9123,9125,9126]],[[9132,9110,9088]],[[9086,9136,9091]],[[9136,9141,9130]],[[9091,9136,9130]],[[9116,9141,9136]],[[9138,9141,9116]],[[9138,9124,9141]],[[9118,9137,9119]],[[9118,8146,9137]],[[9115,9127,9128]],[[9119,9081,9118]],[[8147,9137,8146]],[[9129,9120,9137]],[[9120,9119,9137]],[[9117,9142,9119]],[[9119,9142,9081]],[[9134,9082,9142]],[[9129,9128,9120]],[[9115,9135,9138]],[[9079,9128,9121]],[[9127,9120,9128]],[[9126,9125,9138]],[[9126,9088,9090]],[[9132,9126,9138]],[[9132,9088,9126]],[[9115,9117,9127]],[[9134,9142,9117]],[[9130,9139,9131]],[[9130,9141,9139]],[[9131,9123,9093]],[[9139,9124,9123]],[[9080,9140,9079]],[[9083,9135,9115]],[[9084,9083,9080]],[[9083,9115,9140]],[[9109,9103,9110]],[[9108,9106,9103]],[[9080,9083,9140]],[[9085,9135,9083]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b41414b16-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef949249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9144,117,119]],[[9144,119,8569]],[[8594,9144,8569]],[[8594,117,9144]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414283a4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6895,6897,6787]],[[6895,6787,7038]],[[6897,6802,6787]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4142aad2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9145,9146,9147]],[[9146,9148,9147]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414394d7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cba49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7792,7790,7791]],[[7790,7789,7791]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b414394ec-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9149,9150,365]],[[9151,9152,9153]],[[9154,9155,9152]],[[9156,9157,9158]],[[9159,9151,9160]],[[9157,9152,9161]],[[9162,9153,7713]],[[9163,7711,9160]],[[7710,9162,7713]],[[9149,9156,9158]],[[9149,365,364]],[[373,9157,372]],[[373,9158,9157]],[[373,9150,9158]],[[373,365,9150]],[[7709,9162,7710]],[[9160,9153,9162]],[[9164,9161,9159]],[[372,9157,9161]],[[9164,9159,7711]],[[9161,9152,9151]],[[9157,9156,9152]],[[9158,9150,9149]],[[9163,9160,9162]],[[7711,9159,9160]],[[9160,9151,9153]],[[9159,9161,9151]],[[9155,9165,364]],[[9155,9156,9165]],[[9165,9149,364]],[[9165,9156,9149]],[[372,9164,7711]],[[372,9161,9164]],[[7709,9163,9162]],[[7709,7711,9163]],[[9156,9154,9152]],[[9156,9155,9154]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b46c34501-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.29a2059927f84b779ccc323a4d72025a","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5999,5958,5921]],[[5999,5921,5917]],[[5958,5924,5921]],[[9166,5939,5996]],[[9166,9167,5939]],[[5942,9166,5996]],[[9168,9167,9166]],[[9168,5939,9167]],[[5958,9168,9166]],[[5958,5939,9168]],[[5924,9166,5942]],[[5924,5958,9166]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c36c2c-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efcc0d49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[9169,9170,9171]],[[9172,9173,9174]],[[9175,9176,9177]],[[9178,9170,9169]],[[9179,9180,3737]],[[9181,9182,9183]],[[9184,9185,9186]],[[9181,9187,9182]],[[9188,9187,9181]],[[9188,9189,9187]],[[9190,9191,3909]],[[9192,9190,3909]],[[9193,9192,3909]],[[9194,9195,9196]],[[9193,9197,9198]],[[9199,9200,9201]],[[9202,9185,9184]],[[9203,9204,9205]],[[9206,9207,9208]],[[9209,9210,3747]],[[9211,9212,9210]],[[9213,9214,9215]],[[9216,9211,9217]],[[9218,9219,3485]],[[9220,3755,9221]],[[9222,9218,3484]],[[9222,9223,9218]],[[9224,9225,9226]],[[9227,9228,9229]],[[9230,9231,9232]],[[9233,9234,9235]],[[9236,9237,9238]],[[9239,9240,9241]],[[9242,9243,9244]],[[9238,9245,9246]],[[9247,9243,9248]],[[9247,9248,9249]],[[9221,3810,9219]],[[9249,9248,9250]],[[9251,9252,9253]],[[9254,9255,9256]],[[9256,9255,9257]],[[9257,9255,9258]],[[9255,9254,9250]],[[9259,9260,9252]],[[9261,9255,9262]],[[9262,9255,9263]],[[9263,9255,9264]],[[9264,9255,9265]],[[9266,9267,9268]],[[9265,9255,9269]],[[9269,9255,9270]],[[9271,9269,9270]],[[9272,9271,9270]],[[9273,9272,9270]],[[9274,9273,9270]],[[9275,9276,9277]],[[9278,9274,9270]],[[9279,9280,9281]],[[9282,9278,9270]],[[9283,9226,9284]],[[9285,9286,9287]],[[9288,9225,9289]],[[9290,9291,3579]],[[9292,3441,9293]],[[9294,9295,9296]],[[9297,3834,9298]],[[9297,9299,3894]],[[9300,9301,9175]],[[9302,9303,9304]],[[3632,9222,3484]],[[3484,9218,3485]],[[3485,9219,3810]],[[3810,9221,3755]],[[9305,9220,9306]],[[9210,9212,9298]],[[9307,9217,9211]],[[3747,9298,3834]],[[3834,9297,3934]],[[3934,9297,3894]],[[3894,9299,9308]],[[9309,9310,9311]],[[9312,9313,9314]],[[9181,9183,3737]],[[9315,9316,9317]],[[9183,9179,3737]],[[9180,9178,3737]],[[9180,9170,9178]],[[9318,9178,9169]],[[9319,9320,9321]],[[9322,9323,9324]],[[9325,9326,9327]],[[9301,9328,9329]],[[9330,9327,9331]],[[9329,9332,9319]],[[9333,9334,9335]],[[9336,9337,9338]],[[9339,9340,9341]],[[9236,9238,9246]],[[9342,9343,9344]],[[9345,9346,9347]],[[9348,9349,9350]],[[9321,9351,9352]],[[9353,9354,9355]],[[9356,9357,9327]],[[9215,9207,9358]],[[9359,9360,9361]],[[9176,9175,9352]],[[9362,9363,9327]],[[9364,9365,9366]],[[9327,9357,9353]],[[9175,9319,9352]],[[9328,9367,9329]],[[9368,9369,9327]],[[9363,9366,9368]],[[9370,9302,9371]],[[9372,9373,9374]],[[9375,9174,9173]],[[9302,9304,9371]],[[9376,9352,9351]],[[9377,9332,9364]],[[9296,9362,9330]],[[9377,9320,9332]],[[9327,9353,9325]],[[9378,9379,9295]],[[9380,9350,9381]],[[9380,9357,9356]],[[9382,9383,9384]],[[9326,9331,9327]],[[9260,9362,9295]],[[9363,9385,9386]],[[9326,9296,9331]],[[9362,9327,9330]],[[9384,9383,9325]],[[9378,9295,9294]],[[9387,9388,9389]],[[9372,9390,9391]],[[9392,9393,9382]],[[9394,9379,9378]],[[9230,9232,9395]],[[9231,9396,9232]],[[9340,9397,9341]],[[9245,9239,9398]],[[9399,9400,9401]],[[9397,9340,9241]],[[9402,9403,9404]],[[9405,9406,9322]],[[9177,9176,9407]],[[9406,9405,9408]],[[9409,9410,9411]],[[9371,9304,9344]],[[9172,9408,9412]],[[9389,9413,9414]],[[9392,9382,9415]],[[9416,9417,9394]],[[9418,9376,9351]],[[9176,9352,9376]],[[9419,9420,9421]],[[9371,9344,9422]],[[9423,9344,9304]],[[9424,9425,9426]],[[9427,9206,9208]],[[9428,9429,3431]],[[9335,9430,9391]],[[9391,3553,3441]],[[9381,9431,9432]],[[9433,9434,9435]],[[9339,9341,9244]],[[9397,9240,9400]],[[9436,9437,9438]],[[9439,9440,9395]],[[9293,9280,9276]],[[9441,3440,9442]],[[9438,9443,9444]],[[9440,9443,9445]],[[9438,9446,9443]],[[9395,9447,9230]],[[9446,9228,9445]],[[9448,9232,9396]],[[9224,9449,9450]],[[9436,9444,9451]],[[9258,9255,9261]],[[9452,9243,9453]],[[9329,9350,9332]],[[9349,9431,9381]],[[9341,9399,9244]],[[9341,9397,9399]],[[9388,9387,9259]],[[9454,9173,9172]],[[9259,9454,9455]],[[9375,9173,9454]],[[9456,9457,9424]],[[9422,9344,9343]],[[9319,9332,9320]],[[9350,9365,9332]],[[9458,9421,9459]],[[9460,9371,9422]],[[9461,9427,9462]],[[9461,9206,9427]],[[9454,9259,9375]],[[9463,9464,9465]],[[9466,9467,9468]],[[9467,9469,9470]],[[9471,9393,9392]],[[9472,9382,9393]],[[9473,9353,9381]],[[9335,9334,9430]],[[9435,9474,9433]],[[9355,9415,9325]],[[9417,9393,9471]],[[9475,9392,9355]],[[9471,9434,9391]],[[9476,9434,9473]],[[9477,9404,9478]],[[9479,9480,9481]],[[9482,9337,9336]],[[9426,9483,9456]],[[9484,9485,9486]],[[9487,9409,9411]],[[9334,9402,9430]],[[9478,9488,9489]],[[9430,9402,9490]],[[9334,9328,9403]],[[9478,9489,9491]],[[9492,9493,9175]],[[9494,9493,9492]],[[9176,9376,9407]],[[9174,9495,9172]],[[9496,9324,9497]],[[9379,9292,9284]],[[9293,9275,9498]],[[9378,9326,9325]],[[9294,9296,9326]],[[9499,9500,9501]],[[9502,9503,9270]],[[9504,9505,9448]],[[9501,9447,9395]],[[9334,9333,9328]],[[9348,9350,9367]],[[9175,9301,9319]],[[9367,9350,9329]],[[9328,9333,9367]],[[9335,9391,9267]],[[9401,9240,9506]],[[9340,9339,9398]],[[9239,9506,9240]],[[9240,9397,9241]],[[9401,9400,9240]],[[9399,9397,9400]],[[9244,9401,9242]],[[9244,9399,9401]],[[9242,9506,9507]],[[9242,9401,9506]],[[9508,9509,9510]],[[9511,9500,9512]],[[9398,9246,9245]],[[9287,9286,9243]],[[9513,9235,9514]],[[9515,9231,9230]],[[9459,9516,9517]],[[9421,9420,9516]],[[9242,9453,9243]],[[9507,9245,9518]],[[9285,9519,9248]],[[9452,9507,9518]],[[9451,9520,9436]],[[9439,9521,9520]],[[9448,9505,9395]],[[9520,9451,9440]],[[9395,9505,9439]],[[9225,9288,9521]],[[9505,9504,9396]],[[9505,9521,9439]],[[9321,9377,9385]],[[9369,9365,9380]],[[9351,9385,9362]],[[9385,9377,9386]],[[9319,9321,9352]],[[9320,9377,9321]],[[9285,9248,9286]],[[9248,9243,9286]],[[9507,9452,9453]],[[9518,9285,9452]],[[9522,9523,9252]],[[9455,9260,9259]],[[9524,9343,9342]],[[9525,9457,9464]],[[9345,9526,9495]],[[9426,9456,9424]],[[9420,9527,9460]],[[9343,9524,9422]],[[9528,9338,9337]],[[9346,9495,9529]],[[9426,9411,9483]],[[9530,9528,9531]],[[9347,9532,9345]],[[9495,9481,9172]],[[9422,9524,9425]],[[9533,9534,9535]],[[9536,9533,9535]],[[9535,9530,9532]],[[9533,9537,9538]],[[9539,9426,9524]],[[9530,9531,9526]],[[9540,9541,9482]],[[9174,9529,9495]],[[9542,9387,9389]],[[9174,9542,9529]],[[9542,9389,9410]],[[9543,9446,9279]],[[9445,9443,9446]],[[9543,9228,9446]],[[9227,9440,9445]],[[9543,9279,9544]],[[9436,9438,9444]],[[9326,9378,9294]],[[9394,9417,9379]],[[9495,9346,9345]],[[9529,9409,9346]],[[9545,9282,9270]],[[9250,9254,9249]],[[9546,9547,9548]],[[9503,9545,9270]],[[9548,9549,9550]],[[9551,9552,9502]],[[9487,9347,9346]],[[9532,9526,9345]],[[9553,9538,9537]],[[9554,9524,9342]],[[9555,9556,9342]],[[9534,9557,9535]],[[9558,9554,9556]],[[9559,9538,9554]],[[9471,9475,9435]],[[9471,9392,9475]],[[9446,9280,9279]],[[3441,3440,9560]],[[9279,9281,9441]],[[9561,3441,9560]],[[9410,9389,9414]],[[9562,9252,9251]],[[9529,9542,9409]],[[9174,9375,9387]],[[9388,9563,9389]],[[9564,9522,9517]],[[9389,9563,9413]],[[9465,9259,9252]],[[9565,9566,9567]],[[9568,9313,9569]],[[9308,9570,9571]],[[9572,9573,9574]],[[9567,9566,9203]],[[9575,9576,9577]],[[9578,9579,9580]],[[9581,9577,9582]],[[9583,9566,9584]],[[9585,9586,9566]],[[3894,9308,3630]],[[9299,9462,9308]],[[9333,9348,9367]],[[9333,9335,9267]],[[9587,9588,9589]],[[9527,9420,9419]],[[9460,9424,9457]],[[9422,9425,9424]],[[9420,9460,9516]],[[9422,9424,9460]],[[9525,9464,9463]],[[9523,9465,9252]],[[9495,9479,9481]],[[9324,9590,9497]],[[9531,9591,9495]],[[9592,9541,9593]],[[9405,9496,9594]],[[9323,9595,9324]],[[9486,9485,9596]],[[9489,9488,9485]],[[9494,9488,9404]],[[9494,9492,9596]],[[9283,9293,9226]],[[9280,9446,9276]],[[9407,9597,9177]],[[9494,9300,9493]],[[9477,9478,9373]],[[9489,9485,9593]],[[9373,9491,9374]],[[9598,9478,9491]],[[9564,9463,9523]],[[9464,9563,9465]],[[9414,9464,9457]],[[9413,9563,9464]],[[9599,9600,9601]],[[9428,3431,3630]],[[9565,9584,9566]],[[9602,9603,9586]],[[9604,9605,9513]],[[9234,9509,9514]],[[9386,9364,9363]],[[9364,9332,9365]],[[9363,9364,9366]],[[9386,9377,9364]],[[9308,9576,9570]],[[9214,9582,9606]],[[9607,9577,9576]],[[9207,9215,9208]],[[9292,9293,9283]],[[3441,9561,9293]],[[9608,9501,9395]],[[9511,9609,9610]],[[9460,9525,9516]],[[9522,9252,9459]],[[9611,9412,9408]],[[9408,9172,9481]],[[9612,9613,9303]],[[9614,9344,9423]],[[9303,9613,9555]],[[9342,9344,9614]],[[9615,9283,9284]],[[9615,9292,9283]],[[9314,9313,9616]],[[9617,9618,9429]],[[9619,9620,9621]],[[9619,9361,9622]],[[9623,9309,9624]],[[9573,9571,9570]],[[9601,9600,9580]],[[9625,9571,9573]],[[9626,9578,9580]],[[9600,9599,9580]],[[9311,9627,9309]],[[9579,9601,9580]],[[9205,9628,9359]],[[9625,9629,9571]],[[9630,9625,9572]],[[9570,9576,9575]],[[9357,9381,9353]],[[9431,9266,9476]],[[9381,9432,9473]],[[9431,9349,9266]],[[9516,9525,9517]],[[9525,9463,9564]],[[9404,9300,9494]],[[9403,9328,9301]],[[9319,9301,9329]],[[9300,9404,9403]],[[9300,9403,9301]],[[9402,9334,9403]],[[9347,9536,9532]],[[9538,9559,9533]],[[9524,9553,9539]],[[9553,9554,9538]],[[9631,9632,9565]],[[9632,9311,9579]],[[9628,9360,9359]],[[9313,9568,9616]],[[9267,9391,9268]],[[9349,9267,9266]],[[9380,9381,9357]],[[9350,9349,9381]],[[9580,9633,9602]],[[9628,9204,9634]],[[9481,9480,9323]],[[9418,9407,9376]],[[9323,9480,9595]],[[9541,9531,9528]],[[9322,9324,9496]],[[9635,9480,9636]],[[9558,9637,9638]],[[9534,9533,9559]],[[9558,9638,9559]],[[9637,9534,9638]],[[9516,9459,9421]],[[9517,9522,9459]],[[9370,9303,9302]],[[9423,9304,9303]],[[9595,9590,9324]],[[9639,9597,9640]],[[9595,9635,9590]],[[9596,9492,9641]],[[9225,9505,9396]],[[9225,9521,9505]],[[9475,9474,9435]],[[9392,9415,9355]],[[9174,9387,9542]],[[9375,9259,9387]],[[9642,9643,9628]],[[9574,9573,9581]],[[9606,9582,9577]],[[9215,9427,9208]],[[9353,9355,9325]],[[9474,9475,9355]],[[9644,9601,9579]],[[9645,9599,9601]],[[9546,9285,9518]],[[9250,9270,9255]],[[9546,9550,9646]],[[9647,9270,9250]],[[9519,9250,9248]],[[9647,9646,9551]],[[9648,9547,9510]],[[9647,9502,9270]],[[9548,9552,9549]],[[9552,9503,9502]],[[9646,9550,9551]],[[9549,9552,9551]],[[9548,9610,9552]],[[9442,9503,9552]],[[9519,9646,9250]],[[9550,9549,9551]],[[9285,9646,9519]],[[9546,9510,9547]],[[9508,9510,9546]],[[9509,9648,9510]],[[9514,9508,9518]],[[9514,9509,9508]],[[9308,9649,3630]],[[9649,9571,9650]],[[9379,9417,9651]],[[9472,9393,9417]],[[9492,9175,9177]],[[9493,9300,9175]],[[9564,9523,9522]],[[9563,9388,9465]],[[9594,9611,9405]],[[9412,9454,9172]],[[9481,9406,9408]],[[9481,9323,9322]],[[9405,9611,9408]],[[9455,9454,9412]],[[9641,9492,9177]],[[9596,9488,9494]],[[9597,9641,9177]],[[9597,9486,9596]],[[9363,9368,9327]],[[9366,9365,9368]],[[9233,9235,9605]],[[9605,9515,9230]],[[9233,9648,9509]],[[9234,9514,9235]],[[9544,9441,9442]],[[9560,3440,9441]],[[9652,9543,9442]],[[9279,9441,9544]],[[9291,9612,9370]],[[9371,9460,9527]],[[9539,9553,9537]],[[9524,9554,9553]],[[9224,9498,9289]],[[9275,9289,9498]],[[9293,9450,9449]],[[9293,9498,9450]],[[9470,9653,9467]],[[9654,9655,9656]],[[9643,9466,9314]],[[9467,9653,9468]],[[9656,9657,9658]],[[9659,9660,9661]],[[9569,9662,9663]],[[9622,9568,9663]],[[9524,9426,9425]],[[9539,9411,9426]],[[9552,9610,9442]],[[9512,9229,9543]],[[9608,9499,9501]],[[9608,9440,9229]],[[9648,9664,9547]],[[9609,9442,9610]],[[9405,9322,9496]],[[9406,9481,9322]],[[9635,9636,9639]],[[9480,9592,9636]],[[9590,9635,9639]],[[9595,9480,9635]],[[9470,9468,9653]],[[9655,9665,9656]],[[9504,9448,9396]],[[9395,9232,9448]],[[9284,9292,9615]],[[9379,3441,9292]],[[9410,9414,9483]],[[9413,9464,9414]],[[9645,9644,9623]],[[9666,9627,9667]],[[9293,9276,9275]],[[9446,9438,9276]],[[9579,9668,9644]],[[9310,9623,9644]],[[9626,9632,9578]],[[9584,9565,9632]],[[9566,9583,9585]],[[9626,9580,9602]],[[9584,9626,9583]],[[9584,9632,9626]],[[9574,9581,9634]],[[9575,9577,9581]],[[9325,9383,9394]],[[9382,9416,9394]],[[9415,9384,9325]],[[9415,9382,9384]],[[9669,9613,9612]],[[9303,9555,9423]],[[9555,9613,9556]],[[9612,9291,9669]],[[9670,9336,9338]],[[9390,3553,9391]],[[9491,9671,9374]],[[9491,9489,9672]],[[9490,9373,9372]],[[9390,9336,9670]],[[9390,9482,9336]],[[9482,9671,9540]],[[9557,9390,9670]],[[9374,9671,9482]],[[9338,9557,9670]],[[9535,9532,9536]],[[9338,9535,9557]],[[9338,9528,9530]],[[9526,9531,9495]],[[9528,9337,9541]],[[9673,9643,9642]],[[9673,9466,9643]],[[3553,9534,9637]],[[3553,9557,9534]],[[9674,9658,9468]],[[9675,3431,9676]],[[9521,9288,9520]],[[9277,9276,9437]],[[9289,9277,9288]],[[9276,9438,9437]],[[9677,9678,9679]],[[9562,9680,9252]],[[9548,9681,9610]],[[9500,9499,9512]],[[9447,9682,9233]],[[9235,9513,9605]],[[9476,9473,9432]],[[9354,9353,9473]],[[9290,9669,9683]],[[9612,9303,9370]],[[3579,9291,3632]],[[9683,9669,9291]],[[9288,9277,9437]],[[9289,9275,9277]],[[9684,9685,9686]],[[9674,9468,9470]],[[9679,9687,9688]],[[9689,9291,9370]],[[9589,9690,9691]],[[9691,9692,9527]],[[9290,9558,9669]],[[9556,9613,9669]],[[9693,9660,9659]],[[9694,9675,9695]],[[9569,9655,9662]],[[9569,9663,9568]],[[9325,9394,9378]],[[9383,9382,9394]],[[9414,9456,9483]],[[9414,9457,9456]],[[9696,9697,9428]],[[9666,9624,9627]],[[9660,9698,9661]],[[9661,3431,9694]],[[9293,9699,9226]],[[9224,9289,9225]],[[9293,9449,9699]],[[9450,9498,9224]],[[9518,9238,9514]],[[9237,9604,9513]],[[9604,9237,9236]],[[9513,9514,9238]],[[9281,9561,9441]],[[9561,9280,9293]],[[9700,9358,9207]],[[9358,9213,9215]],[[9701,9700,9634]],[[9701,9582,9213]],[[9581,9701,9634]],[[9581,9582,9701]],[[9643,9314,9360]],[[9466,9468,9702]],[[9651,9391,3441]],[[9430,9372,9391]],[[9517,9525,9564]],[[9460,9457,9525]],[[9242,9507,9453]],[[9506,9239,9507]],[[9309,9627,9624]],[[9703,9704,9663]],[[9666,9667,9429]],[[9705,9703,9663]],[[9627,9620,9617]],[[9621,9311,9631]],[[9431,9476,9432]],[[9268,9434,9476]],[[9599,9650,9633]],[[9649,9308,9571]],[[9574,9706,9572]],[[9633,9580,9599]],[[9583,9602,9585]],[[9630,9572,9706]],[[9214,9707,9462]],[[9214,9427,9215]],[[9614,9555,9342]],[[9614,9423,9555]],[[9571,9629,9650]],[[9630,9706,9603]],[[9369,9380,9356]],[[9365,9350,9380]],[[9327,9369,9356]],[[9368,9365,9369]],[[9627,9617,9667]],[[9620,9676,9618]],[[9688,9588,9587]],[[9692,9689,9370]],[[9253,9688,9687]],[[9688,3632,9689]],[[9677,9679,9587]],[[9678,9687,9679]],[[9662,9695,9663]],[[9708,9620,9619]],[[9708,9704,9703]],[[9704,9622,9663]],[[9705,9708,9703]],[[9619,9622,9704]],[[9443,9451,9444]],[[9443,9440,9451]],[[9640,9597,9407]],[[9639,9486,9597]],[[9461,9467,9466]],[[9461,9469,9467]],[[9398,9239,9241]],[[9245,9507,9239]],[[9308,9607,9576]],[[9308,9462,9707]],[[9607,9606,9577]],[[9606,9308,9707]],[[9222,9688,9253]],[[3632,9291,9689]],[[9361,9568,9622]],[[9616,9360,9314]],[[9709,9710,9317]],[[9711,9712,9713]],[[9395,9440,9608]],[[9439,9520,9440]],[[9411,9410,9483]],[[9409,9542,9410]],[[9572,9625,9573]],[[9630,9629,9625]],[[9203,9205,9359]],[[9204,9574,9634]],[[9205,9204,9628]],[[9706,9574,9204]],[[9361,9203,9359]],[[9203,9586,9204]],[[9513,9238,9237]],[[9518,9245,9238]],[[9711,9714,9715]],[[9716,9712,9715]],[[9541,9672,9593]],[[9671,9491,9672]],[[9479,9592,9480]],[[9593,9485,9484]],[[9214,9606,9707]],[[9607,9308,9606]],[[9490,9372,9430]],[[9374,9482,9372]],[[9409,9487,9346]],[[9411,9539,9347]],[[9629,9633,9650]],[[9603,9706,9586]],[[9717,9251,9253]],[[9718,9678,9719]],[[9719,9680,9562]],[[9680,9459,9252]],[[9472,9416,9382]],[[9472,9417,9416]],[[9626,9602,9583]],[[9633,9629,9603]],[[9311,9310,9668]],[[9623,9720,9645]],[[9668,9310,9644]],[[9309,9623,9310]],[[9665,9655,9569]],[[9695,9708,9705]],[[9354,9433,9474]],[[9473,9434,9433]],[[9721,9659,9654]],[[9659,9661,9694]],[[9502,9647,9551]],[[9250,9646,9647]],[[9251,9719,9562]],[[9719,9458,9680]],[[9194,9317,9195]],[[9317,9710,9315]],[[9234,9233,9509]],[[9681,9511,9610]],[[9233,9664,9648]],[[9722,9511,9681]],[[9230,9233,9605]],[[9230,9447,9233]],[[9194,9723,9724]],[[9317,9316,9195]],[[9725,9726,9201]],[[9727,9712,9728]],[[9532,9530,9526]],[[9535,9338,9530]],[[9314,9702,9312]],[[9314,9466,9702]],[[9479,9591,9592]],[[9479,9495,9591]],[[9720,9429,9428]],[[9667,9617,9429]],[[9720,9666,9429]],[[9623,9624,9666]],[[9402,9477,9490]],[[9598,9491,9373]],[[9490,9477,9373]],[[9402,9404,9477]],[[9373,9478,9598]],[[9404,9488,9478]],[[9285,9546,9646]],[[9518,9508,9546]],[[9193,9723,9729]],[[9195,9316,9730]],[[9649,9645,3630]],[[9601,9644,9645]],[[9348,9267,9349]],[[9348,9333,9267]],[[9433,9354,9473]],[[9474,9355,9354]],[[9656,9658,9693]],[[9658,9698,9660]],[[9663,9695,9705]],[[9676,9620,9708]],[[9695,9675,9708]],[[9618,9617,9620]],[[9194,9709,9317]],[[9724,9731,9709]],[[9723,9732,9724]],[[9733,9726,9728]],[[9734,9735,9307]],[[3444,3755,9736]],[[9728,9712,9737]],[[9714,9738,9729]],[[9594,9497,9739]],[[9590,9639,9497]],[[9411,9347,9487]],[[9539,9537,9536]],[[9539,9536,9347]],[[9537,9533,9536]],[[3776,9723,9193]],[[3776,9201,9723]],[[9186,9713,9712]],[[9713,9186,9740]],[[9316,9716,9730]],[[9738,9740,9729]],[[9730,9715,9714]],[[9316,9315,9737]],[[9729,9730,9714]],[[9196,9195,9730]],[[9716,9737,9712]],[[9728,9726,9727]],[[9730,9716,9715]],[[9316,9737,9716]],[[9723,9731,9732]],[[9201,9726,9733]],[[9710,9733,9315]],[[9710,9731,9201]],[[9731,9710,9709]],[[9731,9723,9201]],[[9578,9632,9579]],[[9565,9567,9631]],[[9619,9631,9567]],[[9621,9627,9311]],[[9729,9723,9194]],[[9732,9731,9724]],[[9210,9734,9307]],[[9741,9742,3444]],[[9458,9677,9419]],[[9458,9719,9677]],[[9611,9594,9260]],[[9496,9497,9594]],[[9738,9711,9743]],[[9715,9712,9711]],[[9730,9729,9196]],[[9197,9193,9729]],[[9711,9713,9743]],[[9186,9197,9740]],[[9307,9735,9217]],[[3755,9220,9305]],[[9371,9527,9692]],[[9744,9688,9689]],[[9691,9690,9692]],[[9589,9744,9692]],[[9587,9589,9691]],[[9744,9689,9692]],[[9588,9744,9589]],[[9588,9688,9744]],[[9736,9216,9217]],[[9306,9212,9211]],[[9233,9682,9722]],[[9447,9501,9682]],[[9233,9722,9664]],[[9682,9501,9500]],[[9722,9500,9511]],[[9722,9682,9500]],[[9260,9351,9362]],[[9739,9497,9640]],[[9260,9739,9351]],[[9640,9407,9418]],[[9664,9681,9547]],[[9664,9722,9681]],[[9558,9556,9669]],[[9554,9342,9556]],[[9725,9727,9726]],[[9725,9712,9727]],[[9315,9728,9737]],[[9315,9733,9728]],[[3676,9209,3747]],[[9735,9741,9736]],[[9515,9604,9236]],[[9515,9605,9604]],[[9658,9661,9698]],[[3514,3431,9661]],[[9645,9696,3630]],[[9645,9697,9696]],[[9331,9296,9330]],[[9295,9362,9296]],[[9645,9720,9697]],[[9623,9666,9720]],[[9700,9628,9634]],[[9643,9360,9628]],[[9700,9207,9628]],[[9206,9461,9673]],[[9206,9673,9207]],[[9461,9466,9673]],[[9739,9640,9418]],[[9497,9639,9640]],[[9419,9691,9527]],[[9419,9587,9691]],[[9702,9665,9312]],[[9654,9695,9655]],[[9657,9665,9702]],[[9656,9721,9654]],[[9371,9692,9370]],[[9690,9589,9692]],[[9452,9287,9243]],[[9452,9285,9287]],[[9200,9725,9201]],[[9186,9712,9725]],[[9579,9311,9668]],[[9632,9631,9311]],[[9687,9717,9253]],[[9687,9678,9718]],[[9717,9718,9251]],[[9717,9687,9718]],[[9636,9486,9639]],[[9636,9592,9484]],[[9210,9209,9745]],[[3676,3444,9209]],[[9654,9659,9694]],[[9721,9693,9659]],[[3755,9305,9736]],[[9305,9211,9216]],[[9693,9658,9660]],[[3514,9661,9658]],[[9708,9619,9704]],[[9567,9361,9619]],[[9721,9656,9693]],[[9665,9657,9656]],[[9680,9458,9459]],[[9419,9421,9458]],[[9699,9224,9226]],[[9699,9449,9224]],[[9211,9305,9306]],[[9216,9736,9305]],[[9711,9738,9714]],[[9740,9197,9729]],[[9602,9586,9585]],[[9706,9204,9586]],[[9211,9210,9307]],[[9745,9742,9734]],[[9468,9657,9702]],[[9468,9658,9657]],[[9217,9735,9736]],[[9742,9209,3444]],[[9362,9385,9363]],[[9351,9321,9385]],[[9340,9398,9241]],[[9339,9246,9398]],[[9361,9616,9568]],[[9361,9360,9616]],[[9655,9695,9662]],[[9654,9694,9695]],[[9417,9471,9651]],[[9435,9434,9471]],[[9546,9548,9550]],[[9547,9681,9548]],[[3431,9618,9676]],[[3431,9429,9618]],[[9736,9741,3444]],[[9735,9734,9741]],[[9708,9675,9676]],[[9694,3431,9675]],[[9696,9428,3630]],[[9697,9720,9428]],[[3553,9558,3579]],[[3553,9637,9558]],[[9291,9290,9683]],[[3579,9558,9290]],[[9729,9194,9196]],[[9724,9709,9194]],[[9636,9484,9486]],[[9592,9593,9484]],[[9351,9739,9418]],[[9260,9594,9739]],[[9455,9611,9260]],[[9455,9412,9611]],[[9710,9201,9733]],[[9184,9200,9746]],[[9619,9621,9631]],[[9620,9627,9621]],[[9543,9229,9228]],[[9499,9608,9229]],[[9440,9227,9229]],[[9445,9228,9227]],[[9591,9541,9592]],[[9672,9489,9593]],[[9442,9543,9544]],[[9512,9499,9229]],[[9652,9512,9543]],[[9609,9511,9512]],[[9718,9719,9251]],[[9678,9677,9719]],[[9288,9436,9520]],[[9288,9437,9436]],[[9677,9587,9419]],[[9679,9688,9587]],[[9567,9203,9361]],[[9566,9586,9203]],[[9734,9210,9745]],[[9298,3747,9210]],[[9633,9603,9602]],[[9629,9630,9603]],[[9531,9541,9591]],[[9337,9482,9541]],[[9266,9268,9476]],[[9391,9434,9268]],[[9379,9651,3441]],[[9471,9391,9651]],[[9463,9465,9523]],[[9388,9259,9465]],[[9312,9569,9313]],[[9312,9665,9569]],[[9573,9575,9581]],[[9573,9570,9575]],[[9747,9748,9749]],[[9750,9202,9184]],[[9743,9740,9738]],[[9743,9713,9740]],[[9725,9184,9186]],[[9674,3514,9658]],[[9441,9561,9560]],[[9281,9280,9561]],[[9748,9751,9752]],[[9753,3776,3514]],[[9751,9754,9755]],[[9756,3776,9753]],[[9686,9752,3514]],[[9757,9758,9756]],[[9759,9684,9686]],[[9674,9185,9760]],[[9482,9390,9372]],[[9557,3553,9390]],[[9672,9540,9671]],[[9672,9541,9540]],[[9200,9761,9762]],[[9762,9763,9746]],[[9207,9642,9628]],[[9207,9673,9642]],[[9764,9765,9766]],[[9758,9757,9760]],[[9469,9674,9470]],[[9749,9686,9685]],[[9597,9596,9641]],[[9485,9488,9596]],[[9767,9202,9766]],[[9760,9185,9202]],[[9674,9760,9749]],[[9760,9757,9768]],[[9185,9674,9469]],[[9749,9685,9674]],[[9750,9764,9766]],[[9763,3776,9756]],[[9758,9760,9202]],[[9754,9747,9760]],[[9765,9756,9767]],[[9767,9756,9758]],[[9202,9750,9766]],[[9746,9200,9762]],[[9746,9750,9184]],[[9746,9764,9750]],[[9763,9764,9746]],[[9763,9765,9764]],[[9700,9213,9358]],[[9700,9701,9213]],[[9427,9214,9462]],[[9213,9582,9214]],[[9748,9747,9751]],[[9768,9757,9753]],[[9752,9753,3514]],[[9752,9751,9753]],[[9757,9756,9753]],[[9765,9763,9756]],[[9202,9767,9758]],[[9766,9765,9767]],[[9751,9755,9753]],[[9754,9760,9768]],[[9755,9768,9753]],[[9755,9754,9768]],[[3776,9199,9201]],[[9769,9761,9199]],[[3776,9769,9199]],[[3776,9763,9769]],[[9599,9649,9650]],[[9599,9645,9649]],[[9769,9762,9761]],[[9769,9763,9762]],[[9652,9609,9512]],[[9652,9442,9609]],[[9192,9193,9198]],[[3909,3776,9193]],[[9734,9742,9741]],[[9745,9209,9742]],[[9760,9747,9749]],[[9754,9751,9747]],[[9686,9748,9752]],[[9686,9749,9748]],[[9725,9200,9184]],[[9199,9761,9200]],[[3514,9759,9686]],[[3514,9674,9759]],[[9674,9684,9759]],[[9674,9685,9684]],[[9688,9222,3632]],[[9253,9223,9222]],[[9558,9559,9554]],[[9638,9534,9559]],[[3909,9181,3737]],[[9188,9191,9189]],[[3909,9188,9181]],[[3909,9191,9188]],[[9770,9503,9442]],[[3440,9770,9442]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c407db-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe75349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5644,5512,5841]],[[5644,5440,5650]],[[5650,5446,5653]],[[5653,5455,5652]],[[5652,5455,5459]],[[5653,5450,5455]],[[5653,5446,5450]],[[5650,5440,5446]],[[5644,5488,5440]],[[5644,5648,5488]],[[5488,5505,5475]],[[5488,5648,5505]],[[5644,5841,5648]],[[5512,5511,5841]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b46c42f03-2d29-11e6-9a38-393caa90be70":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28e49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[9771,9772,9773]],[[9771,9774,9775]],[[9771,9776,9774]],[[9774,9776,9777]],[[9771,9773,9776]],[[9776,9773,9778]],[[9772,9779,9773]],[[9773,9779,9780]],[[9772,9781,9779]],[[9779,9781,9782]],[[9782,9783,9784]],[[9784,9785,9786]],[[9784,9783,9785]],[[9782,9781,9783]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b491588b8-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9787,9788,9789]],[[9790,8186,7932]],[[9791,7934,7935]],[[9791,7933,7934]],[[7933,9791,9792]],[[9793,9794,9790]],[[9795,9788,9794]],[[9796,7950,8186]],[[9797,9793,7935]],[[7936,9794,9793]],[[9791,9790,9792]],[[7932,7933,9792]],[[7936,9797,7935]],[[7936,9793,9797]],[[7927,9795,7936]],[[7927,9788,9795]],[[9795,9794,7936]],[[9787,9789,9798]],[[7927,9789,9788]],[[7927,7950,9789]],[[9794,9799,8186]],[[9799,7950,9796]],[[9794,9787,9799]],[[9794,9788,9787]],[[9792,9800,7932]],[[9794,8186,9790]],[[9793,9801,7935]],[[9801,9790,9791]],[[8186,9799,9796]],[[9798,7950,9799]],[[9787,9798,9799]],[[9789,7950,9798]],[[9800,9790,7932]],[[9800,9792,9790]],[[7935,9801,9791]],[[9793,9790,9801]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4915aff8-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9802,9803,7754]],[[9804,9805,9806]],[[9802,9807,9808]],[[9802,7754,9809]],[[9808,9807,9810]],[[9802,9809,9807]],[[9811,9804,7755]],[[9812,9813,9814]],[[9815,7771,9816]],[[9816,7771,353]],[[9817,9809,9818]],[[9819,2579,2578]],[[9819,7755,2579]],[[9819,7770,7755]],[[7596,7769,2578]],[[7594,7596,2578]],[[7592,7594,2744]],[[2330,2672,2621]],[[9820,2409,2397]],[[9820,9821,2409]],[[2672,9822,2340]],[[2340,2740,2332]],[[9822,2329,2740]],[[2328,2330,2621]],[[2329,9822,2330]],[[9823,2756,2328]],[[2621,9823,2328]],[[2744,7594,2756]],[[2756,7594,2578]],[[9806,9805,9811]],[[9806,9817,9804]],[[9814,9813,353]],[[338,7712,9812]],[[2340,9822,2740]],[[2672,2330,9822]],[[9815,9817,7771]],[[9809,7754,9818]],[[9813,9816,353]],[[9813,9812,9816]],[[9809,9815,9816]],[[9809,9817,9815]],[[9818,9804,9817]],[[9811,7770,7771]],[[7771,9806,9811]],[[7771,9817,9806]],[[7755,9818,7754]],[[7755,9804,9818]],[[2340,9820,2397]],[[9821,2332,2409]],[[2340,9821,9820]],[[2340,2332,9821]],[[7769,9819,2578]],[[7769,7770,9819]],[[2744,9823,2621]],[[2744,2756,9823]],[[9809,9812,7712]],[[9809,9816,9812]],[[338,9814,353]],[[338,9812,9814]],[[7755,9824,9811]],[[7755,7770,9824]],[[7770,9811,9824]],[[9805,9804,9811]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4916e86b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.71178dd3a331470b86cb2586a764831b","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2821,8729,9825]],[[9825,8735,8750]],[[2824,9825,8750]],[[2821,9825,2824]],[[8729,8735,9825]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b491736be-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[586,703,579]],[[586,579,585]],[[585,579,584]],[[583,584,579]],[[583,579,582]],[[582,579,581]],[[706,707,579]],[[579,707,708]],[[704,705,579]],[[579,705,706]],[[703,704,579]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4918966b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9826,9827,9828]],[[9829,6796,6797]],[[9830,6796,9831]],[[9830,9827,9832]],[[9833,7042,6861]],[[9834,6830,6832]],[[6862,9835,9836]],[[9837,9838,9839]],[[9836,7042,9840]],[[9835,9841,9842]],[[9828,9830,9831]],[[9843,9838,9834]],[[9843,9844,9839]],[[9845,9846,9847]],[[9847,6796,9829]],[[6863,9848,9841]],[[6863,6830,9837]],[[6796,9830,6794]],[[6796,9847,9831]],[[9826,6833,9827]],[[9832,6794,9830]],[[6833,9843,6832]],[[9849,6830,9834]],[[6797,9845,9829]],[[9846,9831,9847]],[[9850,9840,7042]],[[6862,9836,9840]],[[6833,9832,9827]],[[6833,6794,9832]],[[9850,9833,6861]],[[9850,7042,9833]],[[6832,9843,9834]],[[9839,9851,9835]],[[9841,9835,6862]],[[9851,9852,9836]],[[6862,9850,6861]],[[6862,9840,9850]],[[9829,9845,9847]],[[9852,7042,9836]],[[9838,9853,9849]],[[9838,9837,9853]],[[6863,9841,6862]],[[9842,9837,9839]],[[6799,9845,6797]],[[6799,9854,9845]],[[9836,9835,9851]],[[9841,9848,9842]],[[9854,9831,9846]],[[9828,7042,9852]],[[6833,9844,9843]],[[9828,9827,9830]],[[9845,9854,9846]],[[6799,9831,9854]],[[9839,9826,9851]],[[9826,9828,9852]],[[9851,9826,9852]],[[9844,6833,9826]],[[9843,9839,9838]],[[9844,9826,9839]],[[9835,9842,9839]],[[9848,6863,9842]],[[6863,9837,9842]],[[6830,9853,9837]],[[6799,9828,9831]],[[6799,7042,9828]],[[9838,9849,9834]],[[9853,6830,9849]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4918e3d0-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5c1f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9855,279,266]],[[9856,266,267]],[[269,9857,267]],[[269,279,9858]],[[9859,9858,9860]],[[9858,279,9860]],[[9857,9858,267]],[[9860,266,9856]],[[9856,9859,9860]],[[9857,269,9858]],[[9860,9855,266]],[[9860,279,9855]],[[267,9859,9856]],[[267,9858,9859]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4919a79b-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cfc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[139,9861,138]],[[135,136,134]],[[136,131,134]],[[131,132,133]],[[134,131,133]],[[136,137,131]],[[138,129,130]],[[128,129,9862]],[[9862,129,9861]],[[9861,129,138]],[[130,137,138]],[[130,131,137]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b491d7828-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef814849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9863,8611,8610]],[[9863,8610,8613]],[[8606,9863,8613]],[[8606,8611,9863]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4920103c-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef749a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9864,9865,9866]],[[9867,9864,9866]],[[9868,9866,9869]],[[9865,9870,9871]],[[9872,9873,9874]],[[9872,9866,9868]],[[9873,9872,9868]],[[9875,9876,9867]],[[9877,9878,9875]],[[9875,9879,9876]],[[9875,9878,9879]],[[9871,9872,9874]],[[9876,9880,9867]],[[9870,9865,9881]],[[9882,9878,9877]],[[9875,9883,9877]],[[9871,9874,9869]],[[9866,9865,9869]],[[9880,9864,9867]],[[9880,9882,9864]],[[9864,9882,9877]],[[9880,9878,9882]],[[9877,9883,9881]],[[9875,9872,9883]],[[9883,9870,9881]],[[9883,9871,9870]],[[9865,9871,9869]],[[9883,9872,9871]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492196f9-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[559,476,558]],[[559,474,476]],[[559,475,474]],[[9884,9885,9886]],[[9887,9888,9889]],[[9890,479,480]],[[9891,475,559]],[[450,479,9892]],[[9893,479,9890]],[[9894,8492,8493]],[[8427,8428,8746]],[[9895,8490,8436]],[[9895,8436,8437]],[[9896,9897,9889]],[[9898,9899,9900]],[[8435,8434,9901]],[[8435,9901,8445]],[[9902,9886,9903]],[[9904,9905,8746]],[[9906,9907,9908]],[[8426,8442,8424]],[[9909,8426,8427]],[[9910,8443,8442]],[[9911,9912,8442]],[[9911,9913,9912]],[[9902,9914,9915]],[[8428,560,8746]],[[9912,9913,8429]],[[9903,560,8429]],[[8429,560,8428]],[[8492,9916,8490]],[[8492,9893,9917]],[[8436,9918,9919]],[[8436,8490,9900]],[[466,9892,9920]],[[466,450,9892]],[[9921,9897,9896]],[[9889,9888,559]],[[9922,9899,9898]],[[9903,559,560]],[[9919,8434,8436]],[[9923,8490,9924]],[[9922,9898,9885]],[[9889,559,9925]],[[8747,9904,8746]],[[9904,9926,9905]],[[475,9891,480]],[[8492,9894,9893]],[[9893,9927,479]],[[9928,479,9927]],[[9916,9921,8490]],[[9929,9897,9921]],[[9930,9931,9884]],[[9896,9924,9921]],[[9914,9901,9915]],[[9932,9898,9925]],[[9903,9925,559]],[[9932,9885,9898]],[[9886,9933,9903]],[[9886,9885,9934]],[[8746,9905,9909]],[[9935,8747,9936]],[[9905,9926,8426]],[[8747,8443,9936]],[[9906,9926,9937]],[[9904,8747,9935]],[[9919,9915,8434]],[[8444,8445,9901]],[[9913,9903,8429]],[[9933,9925,9903]],[[9938,9889,9925]],[[9897,9929,9889]],[[9893,9891,9917]],[[9890,480,9891]],[[9884,9931,9885]],[[9899,8436,9900]],[[8425,9912,8429]],[[8444,9901,9914]],[[9920,9928,9927]],[[9892,479,9928]],[[9939,9893,9894]],[[9920,9927,9893]],[[9900,8490,9923]],[[8490,9921,9924]],[[8746,9909,8427]],[[9905,8426,9909]],[[9915,9919,9918]],[[9918,9899,9931]],[[8424,9912,8425]],[[8424,8442,9912]],[[9940,9915,9918]],[[9915,9901,8434]],[[9902,9903,9914]],[[9940,9941,9902]],[[9898,9923,9938]],[[9898,9900,9923]],[[9923,9896,9938]],[[9923,9924,9896]],[[9898,9938,9925]],[[9896,9889,9938]],[[9891,9893,9890]],[[9939,8493,9920]],[[9926,9906,8426]],[[9942,8443,9907]],[[8444,9911,8442]],[[8444,9913,9911]],[[9937,9935,9936]],[[9926,9904,9935]],[[466,9920,8493]],[[9892,9928,9920]],[[8426,9910,8442]],[[9908,8443,9910]],[[9933,9934,9925]],[[9933,9886,9934]],[[9934,9932,9925]],[[9934,9885,9932]],[[9906,9937,9936]],[[9926,9935,9937]],[[9916,9929,9921]],[[9916,9917,9887]],[[9913,9914,9903]],[[9913,8444,9914]],[[9941,9940,9918]],[[9930,9884,9886]],[[9931,9899,9922]],[[9918,8436,9899]],[[9885,9931,9922]],[[9941,9918,9931]],[[9941,9930,9902]],[[9941,9931,9930]],[[9940,9902,9915]],[[9930,9886,9902]],[[9888,9917,9891]],[[9916,8492,9917]],[[9929,9887,9889]],[[9929,9916,9887]],[[8491,9895,8437]],[[8491,8490,9895]],[[8426,9906,9908]],[[9942,9936,8443]],[[9906,9942,9907]],[[9906,9936,9942]],[[8426,9908,9910]],[[9907,8443,9908]],[[559,9888,9891]],[[9887,9917,9888]],[[9893,9939,9920]],[[9894,8493,9939]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49220b8c-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5caa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9943,6905,6900]],[[9944,9945,6902]],[[6903,9944,6902]],[[6903,6905,9946]],[[6902,9943,6900]],[[9945,9946,9943]],[[6902,9945,9943]],[[9946,6905,9943]],[[9947,9946,9945]],[[9947,6903,9946]],[[9944,9947,9945]],[[9944,6903,9947]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4922cf69-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9948,9949,9950]],[[9951,9952,168]],[[9953,168,9954]],[[9955,170,9956]],[[9952,9957,9958]],[[9952,9959,7916]],[[9960,167,9961]],[[9961,167,9958]],[[9958,167,9952]],[[9957,921,9962]],[[7915,7916,9963]],[[1821,1823,7916]],[[171,9949,170]],[[171,9950,9949]],[[9954,9955,9956]],[[169,170,9955]],[[168,9952,167]],[[9964,9965,9949]],[[9966,9956,170]],[[9966,9965,9956]],[[9967,9960,976]],[[166,167,9960]],[[9963,9959,9948]],[[168,9953,9965]],[[169,9954,168]],[[169,9955,9954]],[[9962,9961,9958]],[[976,9960,9961]],[[7916,9957,9952]],[[9957,9962,9958]],[[9956,9953,9954]],[[9956,9965,9953]],[[166,9967,976]],[[166,9960,9967]],[[9949,9966,170]],[[9949,9965,9966]],[[1823,9957,7916]],[[1823,921,9957]],[[976,9962,921]],[[976,9961,9962]],[[9949,9959,9964]],[[9963,7916,9959]],[[9965,9964,168]],[[9959,9952,9951]],[[9964,9951,168]],[[9964,9959,9951]],[[9963,9948,9950]],[[9959,9949,9948]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4924564a-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef663949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9968,9969,9970]],[[9968,9970,9971]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492762e2-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cf549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9972,8006,8007]],[[8007,8008,8009]],[[8010,8007,8009]],[[9972,8007,8010]],[[8011,9972,8010]],[[8011,8006,9972]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492910e5-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef501549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9973,235,9974]],[[9975,259,232]],[[9976,277,259]],[[9977,9978,259]],[[9979,277,9976]],[[9975,9980,259]],[[259,9981,9976]],[[9978,9981,259]],[[9982,9983,9976]],[[9976,9981,9982]],[[9984,277,9979]],[[9983,9985,9979]],[[9984,9974,9986]],[[9987,9988,232]],[[9989,9978,9980]],[[9980,9978,9977]],[[9981,9990,9982]],[[9984,9986,277]],[[235,277,9986]],[[9983,9984,9985]],[[9974,235,9986]],[[9983,9973,9984]],[[9983,9982,9990]],[[9983,9979,9976]],[[9985,9984,9979]],[[9991,9990,9978]],[[9990,9973,9983]],[[9984,9973,9974]],[[230,235,9973]],[[9987,9991,9988]],[[230,9973,9991]],[[9978,9990,9981]],[[9991,9973,9990]],[[9988,9975,232]],[[9989,9991,9978]],[[259,9980,9977]],[[9975,9988,9989]],[[9975,9989,9980]],[[9988,9991,9989]],[[230,9987,232]],[[230,9991,9987]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4929fae4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef8a1049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9074,9068,9067]],[[9068,9065,9067]],[[9068,9072,9065]],[[9068,9073,9072]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492abedc-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef928049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[9992,9993,9994]],[[9995,9996,9997]],[[9995,9998,9999]],[[1376,10000,1374]],[[10001,10002,10003]],[[1376,10001,10000]],[[10001,10003,10004]],[[10005,10006,10001]],[[10005,8172,8173]],[[10004,10005,10001]],[[1010,1008,994]],[[10007,10008,10009]],[[994,10010,902]],[[994,1008,10010]],[[10011,7247,10012]],[[10013,7246,10014]],[[10015,10016,10017]],[[10018,7243,7245]],[[10019,7244,7243]],[[10020,10021,10022]],[[10023,10024,10017]],[[10025,10026,10027]],[[10016,10028,10027]],[[10029,10030,10031]],[[10032,10007,10033]],[[10034,10035,10036]],[[10037,646,10038]],[[645,646,10039]],[[10040,645,10039]],[[10041,9994,9993]],[[644,10041,10042]],[[10043,10033,10044]],[[10045,9993,9992]],[[10045,9992,10046]],[[9992,10040,10047]],[[10047,10040,10039]],[[10043,10044,10048]],[[10049,10050,10025]],[[10051,10049,10025]],[[10052,10051,10025]],[[10053,10052,10025]],[[10054,10053,10025]],[[10055,10054,10025]],[[10056,10055,10025]],[[10057,10056,10025]],[[10058,10057,10025]],[[10025,10059,10060]],[[10060,10058,10025]],[[10025,10029,10059]],[[10061,10059,10029]],[[10031,10061,10029]],[[10030,10029,10062]],[[10062,10029,10063]],[[10063,10029,10064]],[[10064,10029,10065]],[[10029,10066,10067]],[[10029,10068,10066]],[[10029,10069,10068]],[[10029,10070,10069]],[[10029,10071,10070]],[[10029,10072,10071]],[[10029,10073,10072]],[[10029,10074,10073]],[[10029,10075,10074]],[[10029,10076,10075]],[[10029,10077,10076]],[[10029,10078,10077]],[[10029,10079,10078]],[[10029,10080,10081]],[[10079,10029,10082]],[[10083,10084,10085]],[[10086,10029,10087]],[[10087,10088,10089]],[[10089,10090,10091]],[[10092,10093,10094]],[[10095,10091,10096]],[[10097,10098,10095]],[[10099,10100,10098]],[[10101,10102,10100]],[[10103,10104,10105]],[[10106,10103,10102]],[[10105,10107,10108]],[[10108,10109,10110]],[[10110,10111,10112]],[[10112,10113,10114]],[[10114,10115,10116]],[[10116,10117,10118]],[[10118,10119,10120]],[[10120,10083,10085]],[[10121,10122,10123]],[[10124,10125,10126]],[[10127,10128,10129]],[[10130,10131,10132]],[[10132,10133,10134]],[[10135,10136,10137]],[[10138,10139,10140]],[[10141,10142,10143]],[[10144,10145,10146]],[[10050,10147,10025]],[[10148,10149,10150]],[[10151,10152,10153]],[[10153,10152,10154]],[[10154,10152,10155]],[[10156,10154,10155]],[[10157,10156,10155]],[[10158,10026,10159]],[[10159,10026,10160]],[[10160,10026,10161]],[[10161,10026,10162]],[[10162,10026,10163]],[[10163,10026,10164]],[[10164,10026,10165]],[[10165,10026,10166]],[[10166,10026,10167]],[[10167,10026,10025]],[[10168,10167,10025]],[[10169,10168,10025]],[[10170,10169,10025]],[[10171,10170,10025]],[[10172,10171,10025]],[[10147,10172,10025]],[[10173,10174,10175]],[[10176,10177,10178]],[[10179,10180,10181]],[[10179,10182,10180]],[[10179,10183,10182]],[[10179,10184,10183]],[[10179,10185,10184]],[[10179,10186,10185]],[[10179,10187,10186]],[[10179,10188,10187]],[[10179,10189,10188]],[[10179,10190,10189]],[[10179,10191,10190]],[[10179,10192,10191]],[[10179,10193,10192]],[[10179,10194,10193]],[[10179,10195,10194]],[[10179,10196,10195]],[[10179,10197,10196]],[[10179,10198,10197]],[[10179,10199,10198]],[[10179,10200,10199]],[[10179,10201,10200]],[[10179,10202,10201]],[[10148,10203,10132]],[[10179,10204,10202]],[[10179,10205,10206]],[[10204,10179,10207]],[[10207,10179,10206]],[[10206,10205,10208]],[[10208,10205,10209]],[[10209,10205,10210]],[[10210,10205,10211]],[[10211,10205,10212]],[[10212,10205,10213]],[[10093,10205,10214]],[[10093,10213,10205]],[[10215,10216,1016]],[[10093,10217,10218]],[[10093,10219,10217]],[[10220,10221,10144]],[[10222,10223,10224]],[[10144,10225,10226]],[[10144,10226,10227]],[[10228,10229,10230]],[[10226,10231,10227]],[[10232,10233,10234]],[[10235,10230,10236]],[[10233,10237,10234]],[[10238,10239,10240]],[[10238,10240,10241]],[[10238,10241,10242]],[[10243,10244,10245]],[[10152,10246,10247]],[[10139,10248,10249]],[[10250,10135,10251]],[[10252,10253,10254]],[[10255,10227,10256]],[[10256,10227,10257]],[[10258,10259,10260]],[[10261,10262,10259]],[[10263,10264,10262]],[[10265,10266,10264]],[[10267,10268,10266]],[[10269,10270,10268]],[[10271,10085,10084]],[[10119,10083,10120]],[[10117,10119,10118]],[[10115,10117,10116]],[[10082,10029,10086]],[[10114,10113,10115]],[[10272,10179,10181]],[[10112,10111,10113]],[[10028,10179,10273]],[[10270,10274,10275]],[[10111,10110,10109]],[[10276,10277,10275]],[[10109,10108,10107]],[[10173,10277,10278]],[[10107,10105,10104]],[[10175,10279,10280]],[[10104,10103,10106]],[[10138,10140,10280]],[[10106,10102,10101]],[[10249,10248,10281]],[[10101,10100,10099]],[[10250,10251,10281]],[[10099,10098,10097]],[[10137,10251,10135]],[[10097,10095,10096]],[[10137,10136,10282]],[[10096,10091,10090]],[[10252,10254,10282]],[[10090,10089,10088]],[[10283,10284,10179]],[[10088,10087,10285]],[[10286,10287,10288]],[[10285,10087,10029]],[[10176,10287,10289]],[[10081,10285,10029]],[[10178,10290,10291]],[[10080,10029,10292]],[[10293,10294,10291]],[[10292,10028,10295]],[[10296,10294,10297]],[[10295,10028,10273]],[[10298,10299,10300]],[[10273,10179,10301]],[[10302,10299,10303]],[[10301,10179,10304]],[[10302,10305,10181]],[[10304,10179,10306]],[[10296,10307,10300]],[[10306,10179,10284]],[[10308,10309,10288]],[[10308,10254,10253]],[[10179,10310,10283]],[[10249,10140,10139]],[[10310,10179,10311]],[[10311,10179,10312]],[[10312,10179,10313]],[[10313,10179,10272]],[[10272,10181,10305]],[[10305,10302,10303]],[[10303,10299,10298]],[[10298,10300,10307]],[[10307,10296,10297]],[[10297,10294,10293]],[[10293,10291,10290]],[[10290,10178,10177]],[[10177,10176,10289]],[[10289,10287,10286]],[[10286,10288,10309]],[[10309,10308,10253]],[[10136,10252,10282]],[[10255,10314,10227]],[[10314,10144,10227]],[[10248,10250,10281]],[[10315,10144,10314]],[[10316,10317,10144]],[[10279,10138,10280]],[[10174,10279,10175]],[[10278,10174,10173]],[[10276,10278,10277]],[[10274,10276,10275]],[[10269,10274,10270]],[[10267,10269,10268]],[[10265,10267,10266]],[[10263,10265,10264]],[[10262,10261,10263]],[[10259,10258,10261]],[[10260,10257,10227]],[[10258,10260,10227]],[[10132,10318,10319]],[[10320,10258,10227]],[[10132,10203,10321]],[[10322,10227,10323]],[[10132,10324,10325]],[[10323,10227,10326]],[[10327,10324,10132]],[[10155,10141,10328]],[[10329,10152,10330]],[[10132,10152,10329]],[[10331,10132,10319]],[[10332,10132,10131]],[[10333,10334,10148]],[[10335,10336,10148]],[[10132,10331,10130]],[[10148,10337,10149]],[[10148,10338,10337]],[[10148,10339,10338]],[[10331,10129,10128]],[[10148,10132,10339]],[[10339,10132,10134]],[[10129,10340,10127]],[[10132,10332,10133]],[[10126,10125,10340]],[[10128,10130,10331]],[[10341,10124,10126]],[[10125,10127,10340]],[[10123,10122,10341]],[[10122,10124,10341]],[[10271,10121,10123]],[[10084,10121,10271]],[[10010,1008,10205]],[[10342,907,10343]],[[10343,1010,10342]],[[10344,1011,1010]],[[8171,10345,10346]],[[1008,1016,10205]],[[10035,10034,10347]],[[10348,10349,10350]],[[10351,10004,10003]],[[9995,9999,10352]],[[10353,10354,10355]],[[10356,10357,10358]],[[10359,10360,10347]],[[10361,10362,10363]],[[10357,10364,10358]],[[10365,10366,10357]],[[10367,10368,10369]],[[10370,10371,10372]],[[9996,9995,10373]],[[10374,10375,10376]],[[10377,9997,9996]],[[10361,10378,10362]],[[10379,10380,10381]],[[10382,10383,10384]],[[10148,10334,10385]],[[10382,10386,10383]],[[10330,10152,10387]],[[9996,10388,10389]],[[10390,10391,10152]],[[10392,10389,10393]],[[10390,10152,10394]],[[10393,10389,10395]],[[10152,10151,10394]],[[10389,10396,10397]],[[10155,10158,10157]],[[10398,10333,10148]],[[10396,10389,10388]],[[10398,10148,10399]],[[10388,10026,10379]],[[10148,10336,10399]],[[10400,10401,10402]],[[10150,10335,10148]],[[10381,10388,10379]],[[10403,10388,10381]],[[10132,10329,10327]],[[10404,10148,10385]],[[10380,10379,10405]],[[10406,10407,10144]],[[10328,10143,10408]],[[10404,10409,10148]],[[10326,10148,10409]],[[10315,10316,10144]],[[10152,10247,10155]],[[10407,10410,10144]],[[10132,10321,10152]],[[10410,10411,10144]],[[10411,10145,10144]],[[10326,10227,10148]],[[10412,10413,10414]],[[10415,10238,10416]],[[10417,10415,10416]],[[10418,10417,10416]],[[10414,10418,10416]],[[10414,10416,10243]],[[10414,10413,10419]],[[10148,10227,10232]],[[10146,10420,10144]],[[10420,10421,10230]],[[10420,10230,10144]],[[10422,10230,10421]],[[10236,10230,10422]],[[10423,10230,10235]],[[10424,10228,10230]],[[10229,10224,10223]],[[10229,10223,10230]],[[10219,10093,10222]],[[10220,10144,10230]],[[10425,10220,10230]],[[10230,10423,10424]],[[10230,10426,10427]],[[10093,10092,10428]],[[10230,10223,10426]],[[10429,10430,10214]],[[10431,10426,10223]],[[10093,10218,10094]],[[10432,10433,10093]],[[10093,10223,10222]],[[10429,10434,10435]],[[10216,10436,10214]],[[10214,10205,10216]],[[10214,10437,10438]],[[10214,10436,10437]],[[10439,10440,10216]],[[10441,10439,10216]],[[10442,10443,10215]],[[10215,10443,10444]],[[10445,10446,10442]],[[10447,10448,10449]],[[10450,10451,10445]],[[10452,10453,10451]],[[10452,10454,10453]],[[10455,10447,10449]],[[10456,10454,10455]],[[10447,10457,10448]],[[10457,10458,10459]],[[10460,10461,10462]],[[10461,10463,10462]],[[10461,10464,10463]],[[10035,10346,10345]],[[10465,10466,10464]],[[10464,1011,10465]],[[9867,10467,10365]],[[10465,10468,10469]],[[10470,10471,10472]],[[10470,10360,10473]],[[10473,10474,10475]],[[10476,10477,10474]],[[10477,10359,10478]],[[10479,10480,10481]],[[10479,10366,10480]],[[10482,10483,10484]],[[10485,10467,10486]],[[10485,10486,10487]],[[10467,10488,10489]],[[10488,10490,10491]],[[10374,9866,9997]],[[10491,10492,10493]],[[10494,9866,10495]],[[10492,10490,10496]],[[10496,9867,10494]],[[10497,10496,10494]],[[10498,10494,10499]],[[10499,10494,10495]],[[10495,9866,10500]],[[10501,10495,10500]],[[10500,9866,10502]],[[10502,9866,10503]],[[10504,10502,10503]],[[10503,9866,10374]],[[10377,10505,10374]],[[10377,10506,10505]],[[10507,10508,10377]],[[10509,10510,10508]],[[10511,10418,10414]],[[10512,10244,10243]],[[10471,10470,10475]],[[10347,10364,10357]],[[10406,10144,10317]],[[10221,10225,10144]],[[1016,10216,10205]],[[10440,10436,10216]],[[10320,10227,10322]],[[10231,10237,10233]],[[10513,10214,10438]],[[10513,10429,10214]],[[10507,10377,9996]],[[10508,10506,10377]],[[10478,10359,10481]],[[10347,10357,10359]],[[10514,10230,10427]],[[10514,10425,10230]],[[10470,10465,1011]],[[10469,10466,10465]],[[10387,10152,10391]],[[10321,10246,10152]],[[10377,10374,9997]],[[10505,10375,10374]],[[10468,10470,10472]],[[1011,10344,10346]],[[10515,10223,10093]],[[10433,10431,10223]],[[10376,10503,10374]],[[10516,10504,10503]],[[10517,10328,10408]],[[10026,10155,10328]],[[10450,10452,10451]],[[1016,10454,10452]],[[10412,10243,10245]],[[10416,10512,10243]],[[10483,10365,10487]],[[10489,10518,10486]],[[10460,10519,10461]],[[1011,10464,10461]],[[10366,10365,10482]],[[10357,9867,10365]],[[10450,10442,1016]],[[10446,10443,10442]],[[10518,10488,10493]],[[9867,10496,10490]],[[10442,10450,10445]],[[1016,10452,10450]],[[1011,10447,1016]],[[1011,10519,10447]],[[10328,10379,10026]],[[10328,10517,10405]],[[10520,10392,10393]],[[9996,10389,10392]],[[10158,10155,10026]],[[10521,10142,10522]],[[10442,10215,1016]],[[10444,10439,10441]],[[10523,10496,10497]],[[10523,10492,10496]],[[10524,10495,10525]],[[10524,10499,10495]],[[10526,10502,10504]],[[10527,10528,10500]],[[10361,10363,10507]],[[10362,10510,10363]],[[10529,10464,10466]],[[10529,10463,10464]],[[10361,10507,9996]],[[10509,10508,10507]],[[10395,10389,10397]],[[9996,10026,10388]],[[10457,10519,10458]],[[1011,10461,10519]],[[10497,10494,10498]],[[9867,9866,10494]],[[10402,10388,10403]],[[10530,10396,10388]],[[10392,10361,9996]],[[10384,10378,10361]],[[9867,10488,10467]],[[9867,10490,10488]],[[10148,10232,10415]],[[10234,10239,10232]],[[10527,10500,10502]],[[10501,10525,10495]],[[10453,10454,10456]],[[1016,10447,10454]],[[10232,10238,10415]],[[10232,10239,10238]],[[10242,10512,10416]],[[10241,10244,10512]],[[10359,10479,10481]],[[10359,10366,10479]],[[10470,10473,10475]],[[10360,10476,10473]],[[10473,10476,10474]],[[10477,10478,10474]],[[10531,10532,10019]],[[10023,10017,7244]],[[10533,10534,10351]],[[10002,10349,10003]],[[10141,10522,10142]],[[10521,10247,10142]],[[10412,10414,10243]],[[10419,10511,10414]],[[10531,10021,10532]],[[10021,10028,10016]],[[10535,10517,10408]],[[10405,10379,10328]],[[10238,10242,10416]],[[10241,10512,10242]],[[10470,1011,10035]],[[8171,8172,10036]],[[10042,10041,9993]],[[10040,643,645]],[[10047,10039,10037]],[[10047,10043,9992]],[[10360,10477,10476]],[[10360,10359,10477]],[[10488,10491,10493]],[[10490,10492,10491]],[[10386,10520,10393]],[[10386,10392,10520]],[[10013,10014,10012]],[[7246,7247,10014]],[[10536,10537,10370]],[[10538,10349,10539]],[[10355,10540,10356]],[[10541,10542,10369]],[[10543,10544,10371]],[[10545,10546,10547]],[[10548,10549,10550]],[[10551,10552,10537]],[[10553,9998,10554]],[[10372,10555,10556]],[[10549,10554,10550]],[[10546,10545,10543]],[[10557,10558,10373]],[[10038,9996,10373]],[[10545,10555,10372]],[[10551,10537,10536]],[[10467,10489,10486]],[[10488,10518,10489]],[[10559,10531,7245]],[[7245,10531,10018]],[[10392,10382,10361]],[[10383,10378,10384]],[[10480,10366,10484]],[[10359,10357,10366]],[[8170,10343,907]],[[8170,10560,10561]],[[10356,10562,10353]],[[10356,10358,10563]],[[10328,10141,10143]],[[10155,10522,10141]],[[10365,10485,10487]],[[10365,10467,10485]],[[10458,10460,10462]],[[10458,10519,10460]],[[10564,10527,10502]],[[10564,10528,10527]],[[10565,10132,10325]],[[10565,10318,10132]],[[10366,10482,10484]],[[10365,10483,10482]],[[644,9994,10041]],[[644,643,9994]],[[10561,10560,10344]],[[10346,10035,1011]],[[994,10342,1010]],[[994,907,10342]],[[10564,10526,10504]],[[10564,10502,10526]],[[10363,10509,10507]],[[10363,10510,10509]],[[10538,10548,10349]],[[10540,10537,10552]],[[10373,9995,10539]],[[10548,10543,10349]],[[10550,10566,10548]],[[10550,10554,10566]],[[10000,10001,10006]],[[1376,10002,10001]],[[10543,10370,10355]],[[10370,10537,10540]],[[10470,10035,10347]],[[10004,10567,10005]],[[10345,10036,10035]],[[10345,8171,10036]],[[10347,10034,10568]],[[10036,8172,10567]],[[10569,10347,10568]],[[10567,8172,10005]],[[10348,10351,10003]],[[10568,10034,10567]],[[10533,10570,10569]],[[10360,10470,10347]],[[10361,10382,10384]],[[10392,10386,10382]],[[10429,10435,10430]],[[10434,10432,10435]],[[10213,10093,10428]],[[10430,10432,10093]],[[10214,10430,10093]],[[10435,10432,10430]],[[10552,10547,10356]],[[9998,10356,10554]],[[10544,10543,10545]],[[10571,10554,10546]],[[10370,10372,10556]],[[10546,10554,10547]],[[9994,10040,9992]],[[9994,643,10040]],[[10013,10559,7245]],[[10012,10531,10559]],[[10448,10457,10459]],[[10447,10519,10457]],[[10020,10023,7244]],[[10022,10021,10023]],[[10528,10501,10500]],[[10528,10525,10501]],[[10551,10556,10547]],[[10547,10556,10555]],[[10568,10567,10004]],[[10034,10036,10567]],[[10020,10572,10021]],[[10573,10016,10015]],[[10574,10548,10538]],[[10566,10575,10571]],[[10576,10352,10538]],[[9999,9998,10577]],[[10530,10401,10400]],[[10530,10388,10401]],[[10516,10376,10375]],[[10516,10503,10376]],[[10369,10542,10578]],[[10368,10367,10348]],[[10563,10358,10369]],[[10579,10563,10578]],[[10369,10368,10541]],[[10367,10351,10348]],[[10563,10369,10578]],[[10358,10367,10369]],[[10580,10541,10368]],[[10354,10542,10541]],[[10356,10353,10355]],[[10354,10541,10580]],[[10562,10581,10353]],[[10578,10542,10354]],[[10562,10563,10581]],[[10562,10356,10563]],[[10349,10543,10355]],[[10548,10566,10543]],[[10556,10536,10370]],[[10556,10551,10536]],[[10561,10344,1010]],[[10560,8170,10346]],[[10560,10346,10344]],[[8170,8171,10346]],[[10024,10573,10017]],[[10024,10021,10573]],[[10155,10521,10522]],[[10155,10247,10521]],[[10533,10351,10367]],[[10534,10004,10351]],[[10014,10011,10012]],[[10014,7247,10011]],[[10032,10047,10038]],[[10033,10043,10047]],[[10544,10372,10371]],[[10544,10545,10372]],[[10352,10574,10538]],[[10352,9999,10574]],[[10540,10552,10356]],[[10547,10554,10356]],[[10018,10531,7243]],[[10012,10021,10531]],[[10029,10025,10027]],[[10029,10067,10065]],[[10534,10568,10004]],[[10534,10569,10568]],[[10047,10032,10033]],[[10038,10008,10032]],[[10033,10007,10009]],[[10557,10373,10539]],[[10008,10558,10009]],[[10008,10373,10558]],[[10009,10557,10539]],[[10009,10558,10557]],[[10032,10008,10007]],[[10038,10373,10008]],[[10456,10455,10449]],[[10454,10447,10455]],[[10227,10233,10232]],[[10227,10231,10233]],[[10364,10570,10533]],[[10364,10347,10570]],[[10350,10580,10368]],[[10579,10581,10563]],[[10350,10354,10580]],[[10353,10581,10354]],[[10355,10350,10349]],[[10355,10354,10350]],[[10349,10348,10003]],[[10350,10368,10348]],[[10354,10579,10578]],[[10354,10581,10579]],[[10047,10037,10038]],[[10039,646,10037]],[[10023,10021,10024]],[[10012,10028,10021]],[[10532,10572,7244]],[[10532,10021,10572]],[[10352,10576,9995]],[[10538,10539,9995]],[[9998,9995,9997]],[[10576,10538,9995]],[[10017,10573,10015]],[[10021,10016,10573]],[[10433,10515,10093]],[[10433,10223,10515]],[[10572,10020,7244]],[[10022,10023,10020]],[[10535,10405,10517]],[[10535,10380,10405]],[[10574,10577,10553]],[[10574,9999,10577]],[[10549,10553,10554]],[[10577,9998,10553]],[[10574,10549,10548]],[[10574,10553,10549]],[[10469,10468,10472]],[[10465,10470,10468]],[[10215,10441,10216]],[[10215,10444,10441]],[[10543,10566,10571]],[[10566,10554,10575]],[[10543,10571,10546]],[[10575,10554,10571]],[[10551,10547,10552]],[[10555,10545,10547]],[[10343,10561,1010]],[[10343,8170,10561]],[[10400,10402,10403]],[[10401,10388,10402]],[[10028,10029,10027]],[[10028,10292,10029]],[[10355,10370,10540]],[[10543,10371,10370]],[[10559,10013,10012]],[[7245,7246,10013]],[[10531,10019,7243]],[[10532,7244,10019]],[[10533,10569,10534]],[[10570,10347,10569]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492c6bd0-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef790749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8402,1097,1105]],[[8402,1105,8744]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492d56e7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3100,3102,3165]],[[3100,3165,3108]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492e19ca-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cab49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10582,10583,10584]],[[10585,10586,10587]],[[10588,6932,6933]],[[10589,10590,10588]],[[6932,10590,10591]],[[6886,10592,6913]],[[10593,10594,6974]],[[10587,10586,10595]],[[10596,8681,6910]],[[10597,10594,10598]],[[6974,6975,10593]],[[10599,10600,10601]],[[10591,6912,10592]],[[10596,10602,10603]],[[10592,6912,6913]],[[10604,10584,6975]],[[10583,10595,10593]],[[10582,10587,10595]],[[10600,10599,6911]],[[10593,10586,10594]],[[10587,10605,10585]],[[10601,10606,6910]],[[10602,10587,10603]],[[6911,10599,6910]],[[10607,10605,10587]],[[10588,10590,6932]],[[10591,10608,6912]],[[10589,10585,10609]],[[10607,10602,10610]],[[10604,10603,10582]],[[10595,10586,10593]],[[10607,10610,10600]],[[10606,10596,6910]],[[10599,10601,6910]],[[10610,10602,10606]],[[8681,10604,6975]],[[8681,10603,10604]],[[10610,10606,10601]],[[10602,10596,10606]],[[6925,10588,6933]],[[6925,10589,10588]],[[10601,10600,10610]],[[6911,6912,10600]],[[10608,10607,10600]],[[10587,10602,10607]],[[10584,10593,6975]],[[10584,10583,10593]],[[6932,10591,6886]],[[10608,10605,10607]],[[6886,10591,10592]],[[10609,10585,10605]],[[6912,10608,10600]],[[10591,10590,10608]],[[10596,10603,8681]],[[10595,10583,10582]],[[10604,10582,10584]],[[10603,10587,10582]],[[10611,10589,6925]],[[10609,10605,10608]],[[10611,10597,10589]],[[10594,10586,10598]],[[6974,10611,6925]],[[6974,10594,10597]],[[10589,10597,10598]],[[10611,6974,10597]],[[10598,10585,10589]],[[10598,10586,10585]],[[10590,10609,10608]],[[10590,10589,10609]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492e6811-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef608949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6710,6706,6709]],[[10612,6711,10613]],[[6706,6710,10613]],[[10614,6706,10613]],[[10613,6711,10615]],[[10615,295,297]],[[10615,6711,295]],[[10612,10616,6711]],[[6710,6711,10616]],[[6710,10612,10613]],[[6710,10616,10612]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b492f03ba-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5cb949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10617,10618,7732]],[[10619,9807,10620]],[[7730,10621,10622]],[[10622,10621,10618]],[[9810,10623,9808]],[[10624,7732,7759]],[[9803,10623,7760]],[[9803,7760,10625]],[[10625,7760,7752]],[[10626,7732,10624]],[[9810,9807,10619]],[[10617,7732,10626]],[[10627,10628,10629]],[[10630,10626,10624]],[[7754,10625,7752]],[[7754,9803,10625]],[[7730,10618,10621]],[[7730,7732,10618]],[[10623,10631,10632]],[[10633,10634,10635]],[[10627,10636,10628]],[[7760,10632,10636]],[[10633,10622,10618]],[[10635,10637,10622]],[[7759,10627,10629]],[[10636,10632,10628]],[[10629,10624,7759]],[[10629,10630,10624]],[[10638,10637,10639]],[[10637,7730,10622]],[[10623,10640,10634]],[[10623,9810,10640]],[[10631,10633,10617]],[[10633,10618,10617]],[[10626,10631,10617]],[[10638,10639,10640]],[[10631,10634,10633]],[[10640,10639,10635]],[[10633,10635,10622]],[[10634,10640,10635]],[[10639,10637,10635]],[[10620,7730,10637]],[[10632,10631,10626]],[[10623,10634,10631]],[[10628,10632,10626]],[[7760,10623,10632]],[[9810,10619,10640]],[[10619,10637,10638]],[[10637,10619,10620]],[[10638,10640,10619]],[[7760,10627,7759]],[[7760,10636,10627]],[[10628,10630,10629]],[[10628,10626,10630]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49310031-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef790849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10641,10642,10643]],[[10644,10641,10643]],[[10645,10646,10643]],[[10643,10042,10644]],[[10643,10646,10042]],[[10647,10648,10646]],[[10649,644,10042]],[[652,10650,10651]],[[10647,10646,10652]],[[10653,10648,10650]],[[10646,10645,10652]],[[652,10653,10650]],[[652,644,10653]],[[10653,10654,10649]],[[10653,644,10654]],[[10653,10646,10648]],[[10653,10649,10646]],[[10646,10649,10042]],[[10654,644,10649]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4931275f-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"onverhard","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef949349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10655,2887,2888]],[[8158,2887,10655]],[[8156,8567,8155]],[[8156,8157,8568]],[[8156,8568,8567]],[[8568,10656,8566]],[[10657,2886,8565]],[[10657,2888,2886]],[[10655,8157,8158]],[[10656,10657,8565]],[[8568,8157,10655]],[[10657,10655,2888]],[[10657,10656,10655]],[[8566,10656,8565]],[[8568,10655,10656]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4931c302-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef505349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10658,10659,10660]],[[10661,10662,10663]],[[10027,10664,10016]],[[10665,10666,10667]],[[10668,10664,10669]],[[10661,10670,10662]],[[10661,10671,10670]],[[10668,10672,10673]],[[10017,10674,10675]],[[10675,10676,10671]],[[10677,10678,10672]],[[10679,6662,6840]],[[10680,7265,10681]],[[10682,7195,7252]],[[10682,10683,7195]],[[10683,10684,10685]],[[10686,10687,10688]],[[10685,10684,7203]],[[10688,10687,10689]],[[10690,10687,10691]],[[10692,10693,10694]],[[10695,10696,10697]],[[7182,10696,7180]],[[10693,7168,7201]],[[10698,10699,7214]],[[10681,7183,10680]],[[10700,7216,7214]],[[10697,7268,7216]],[[10695,7180,10696]],[[7267,7265,7266]],[[10701,7168,10693]],[[10702,7202,10703]],[[10704,10705,10706]],[[10707,10694,10704]],[[10708,10709,10710]],[[10711,10712,10713]],[[10714,10715,10716]],[[10717,6752,10718]],[[10719,6751,10720]],[[10721,10722,10723]],[[10724,10717,10725]],[[10726,6841,10727]],[[10728,10729,10730]],[[10731,10728,10730]],[[10732,10733,10734]],[[10735,10736,10737]],[[10738,6677,6654]],[[10739,6660,6661]],[[10730,10740,10731]],[[10741,10742,10743]],[[10744,10745,10746]],[[10747,10748,10745]],[[6671,10749,6685]],[[10746,10730,10750]],[[10751,6683,6684]],[[10752,10753,10754]],[[10753,502,10754]],[[10752,504,6683]],[[500,502,517]],[[10755,10756,10757]],[[10758,10759,10760]],[[10761,517,10753]],[[10762,10755,10763]],[[10764,647,10765]],[[10766,625,10767]],[[10768,646,647]],[[10769,10712,10770]],[[10771,10678,10677]],[[10772,10773,10774]],[[10775,10776,10777]],[[10778,10779,10780]],[[10708,10781,10782]],[[10783,10729,10728]],[[10750,10784,10744]],[[10782,10709,10708]],[[10772,10678,10771]],[[10785,10702,10703]],[[7202,7203,10684]],[[10664,10786,10669]],[[10786,10787,10771]],[[10788,10714,10738]],[[10731,10789,10728]],[[10786,10771,10677]],[[10773,10772,10771]],[[10790,10791,10792]],[[10793,10753,10794]],[[10795,10796,10781]],[[10797,10798,10799]],[[10800,10696,7182]],[[10800,7268,10697]],[[10801,626,10762]],[[10791,513,10792]],[[7183,10800,7182]],[[7183,10802,10800]],[[10803,10739,10804]],[[10727,6748,6750]],[[10805,10806,10807]],[[10808,10798,10809]],[[10810,10809,10811]],[[10691,10772,10779]],[[10806,10805,10733]],[[10812,10807,10780]],[[10680,10813,10814]],[[10813,7168,10815]],[[6685,10749,10747]],[[10748,6675,10745]],[[10726,10727,10711]],[[6841,6748,10727]],[[10816,10804,10679]],[[10817,6662,10818]],[[10693,10692,10701]],[[7201,10702,10693]],[[10819,10778,10780]],[[10820,6753,10707]],[[10821,10778,10822]],[[10820,10718,6753]],[[10819,10810,10778]],[[10823,10824,10825]],[[10775,10826,10827]],[[10737,6684,10776]],[[10828,10829,10830]],[[10793,10831,10753]],[[10832,10732,10734]],[[10819,10833,10834]],[[10835,10836,10837]],[[10838,10839,10840]],[[6677,10730,10746]],[[6677,10740,10730]],[[10800,10697,10696]],[[7218,7180,10695]],[[10841,10660,10842]],[[10841,10843,10660]],[[10828,10842,10844]],[[10844,10829,10828]],[[10845,10841,10842]],[[10843,10846,10658]],[[10847,10828,10830]],[[10845,10842,10828]],[[10799,10848,10797]],[[10849,6752,10717]],[[10850,10810,10811]],[[10770,10712,10711]],[[10851,10787,10786]],[[10851,10773,10852]],[[10669,10786,10677]],[[10853,10854,10710]],[[10855,10856,10786]],[[10786,10856,10851]],[[10852,10773,10771]],[[10774,10709,10772]],[[10857,10776,6684]],[[10784,10729,10858]],[[10675,10674,10676]],[[10027,10855,10664]],[[10747,10857,6684]],[[10745,6676,10746]],[[10768,10764,10760]],[[10859,10860,10861]],[[10713,10862,10711]],[[10726,10711,10816]],[[10788,10738,6654]],[[10740,6677,10738]],[[10863,10864,10815]],[[7183,7168,10813]],[[10767,10801,10743]],[[10865,10843,10866]],[[10038,10759,10758]],[[625,626,10767]],[[10867,10868,10834]],[[10869,10770,10870]],[[10830,10871,10872]],[[10873,10659,10793]],[[10839,10734,10840]],[[10874,10666,10665]],[[10847,10866,10828]],[[10846,10865,10875]],[[10876,10865,10866]],[[10875,10877,10878]],[[10717,10718,10811]],[[6752,6753,10718]],[[10789,10832,10734]],[[10879,10713,10733]],[[10701,10863,7168]],[[10815,7168,10863]],[[10880,10881,10882]],[[10883,517,10761]],[[10823,10884,10850]],[[10821,10779,10778]],[[10700,10697,7216]],[[10885,10695,10697]],[[10886,10887,10888]],[[10756,10755,10889]],[[503,10754,502]],[[10890,504,10752]],[[10875,10742,10877]],[[10741,10891,10742]],[[10892,10893,10742]],[[10893,10894,10743]],[[10790,10792,517]],[[513,517,10792]],[[10895,10896,10897]],[[10887,10756,10898]],[[10715,10899,10716]],[[6659,6660,10899]],[[10900,10666,10901]],[[10900,10667,10666]],[[10747,10745,10857]],[[6675,6676,10745]],[[10785,10694,10693]],[[7201,7202,10702]],[[10846,10896,10880]],[[10790,10902,10791]],[[10880,10883,10881]],[[10880,10658,10846]],[[10857,10745,10744]],[[10730,10729,10750]],[[10744,10746,10750]],[[6676,6677,10746]],[[10844,10660,10873]],[[10903,10882,10831]],[[10829,10793,10794]],[[10831,10881,10761]],[[10859,10904,10860]],[[10860,625,10861]],[[10664,10855,10786]],[[10027,10856,10855]],[[10833,10807,10869]],[[10840,10734,10805]],[[10809,10717,10811]],[[10725,10797,10848]],[[6658,10905,6654]],[[10906,6659,10715]],[[10738,10714,10740]],[[10715,6659,10899]],[[10907,10700,7214]],[[10908,10885,10700]],[[10830,10872,10909]],[[10871,6683,10872]],[[10827,10737,10776]],[[10909,10872,10735]],[[10737,10910,6684]],[[10751,10735,6683]],[[10859,10760,10764]],[[10038,646,10768]],[[10911,10912,10835]],[[10913,10912,10854]],[[10794,10753,10752]],[[517,502,10753]],[[10763,10801,10762]],[[626,627,10762]],[[10914,10801,10915]],[[10762,627,10889]],[[10880,10896,10895]],[[10888,10887,10791]],[[10902,10888,10791]],[[10889,10755,10762]],[[10790,10916,10897]],[[10896,10886,10902]],[[10758,10766,10767]],[[10917,625,10766]],[[10918,10906,10715]],[[6658,6659,10906]],[[6841,10679,6840]],[[10818,6662,10679]],[[10919,10854,10853]],[[10710,10709,10920]],[[10911,10710,10854]],[[10837,10795,10781]],[[10774,10920,10709]],[[10851,10919,10853]],[[10731,10716,10832]],[[10899,6660,10716]],[[6660,10739,10716]],[[10803,10804,10862]],[[10716,10739,10732]],[[10817,10818,10921]],[[10723,10719,10848]],[[6751,6752,10720]],[[10905,10715,10714]],[[10918,6658,10906]],[[10724,10725,10848]],[[10725,10798,10797]],[[10787,10852,10771]],[[10787,10851,10852]],[[10660,10843,10658]],[[10846,10875,10878]],[[10714,10731,10740]],[[10714,10716,10731]],[[7217,10698,7214]],[[10908,10700,10699]],[[623,10765,647]],[[623,10904,10859]],[[10679,10726,10816]],[[10679,6841,10726]],[[10878,10922,10896]],[[10922,10915,10755]],[[10836,10795,10837]],[[10836,10796,10795]],[[10923,10924,10708]],[[10837,10781,10708]],[[10794,10752,6683]],[[10754,10890,10752]],[[10925,10858,10901]],[[10911,10854,10912]],[[10919,10913,10854]],[[10835,10926,10836]],[[10777,10925,10901]],[[10750,10729,10784]],[[10681,10802,7183]],[[7268,10800,10802]],[[10743,10801,10914]],[[10767,626,10801]],[[10735,10827,10909]],[[10927,10775,10874]],[[10660,10844,10842]],[[10660,10659,10873]],[[10694,10928,10704]],[[10929,10690,10825]],[[10706,10707,10704]],[[10686,10683,10687]],[[10692,10694,7264]],[[10693,10702,10785]],[[10930,10661,10663]],[[10675,10671,10661]],[[10812,10796,10807]],[[10805,10734,10733]],[[10812,10780,10779]],[[10807,10833,10780]],[[10796,10805,10807]],[[10796,10836,10838]],[[10796,10840,10805]],[[10839,10926,10858]],[[10700,10885,10697]],[[7218,10695,10885]],[[6671,10748,10749]],[[6671,6675,10748]],[[10871,10794,6683]],[[10871,10830,10794]],[[10866,10845,10828]],[[10866,10843,10845]],[[10905,10788,6654]],[[10905,10714,10788]],[[10931,10812,10709]],[[10691,10678,10772]],[[10778,10810,10850]],[[10868,10809,10810]],[[10851,10774,10773]],[[10920,10853,10710]],[[10851,10920,10774]],[[10851,10853,10920]],[[10867,10834,10833]],[[10868,10810,10834]],[[10833,10819,10780]],[[10834,10810,10819]],[[10734,10783,10789]],[[10783,10839,10858]],[[10808,10770,10798]],[[10869,10806,10770]],[[10814,10864,10701]],[[10813,10815,10864]],[[10692,10814,10701]],[[10864,10863,10701]],[[10932,10933,10901]],[[10934,10935,10936]],[[10856,10937,10919]],[[10912,10938,10835]],[[10851,10856,10919]],[[10938,10932,10835]],[[10684,10785,10703]],[[10928,10694,10785]],[[10821,10884,10939]],[[10705,10704,10940]],[[9996,10893,10026]],[[10893,10743,10742]],[[503,10890,10754]],[[503,504,10890]],[[10905,10918,10715]],[[10905,6658,10918]],[[10941,10942,10943]],[[10942,10866,10847]],[[10943,10942,10944]],[[10941,10866,10942]],[[10874,10934,10927]],[[10775,10827,10776]],[[7218,10908,7217]],[[7218,10885,10908]],[[10659,10831,10793]],[[10881,10883,10761]],[[10753,10831,10761]],[[10882,10658,10880]],[[10737,10736,10910]],[[10737,10827,10735]],[[10921,10804,10739]],[[10921,10679,10804]],[[10796,10812,10781]],[[10812,10772,10709]],[[10772,10812,10779]],[[10931,10781,10812]],[[10901,10933,10900]],[[10027,10026,10667]],[[10902,10790,10897]],[[10883,10880,10895]],[[10916,10895,10897]],[[10916,10883,10895]],[[10666,10874,10901]],[[10925,10784,10858]],[[10776,10925,10777]],[[10744,10784,10925]],[[10769,10806,10733]],[[10869,10807,10806]],[[10699,10907,7214]],[[10699,10700,10907]],[[10829,10873,10793]],[[10829,10844,10873]],[[10672,10669,10677]],[[10668,10676,10664]],[[10847,10830,10909]],[[10829,10794,10830]],[[10731,10832,10789]],[[10716,10732,10832]],[[10757,10922,10755]],[[10891,10741,10914]],[[10869,10867,10833]],[[10869,10868,10867]],[[10720,10849,10724]],[[10720,6752,10849]],[[10910,10751,6684]],[[10910,10736,10751]],[[10675,10930,10663]],[[10675,10661,10930]],[[10846,10878,10896]],[[10877,10891,10945]],[[10845,10843,10841]],[[10865,10846,10843]],[[10659,10903,10831]],[[10659,10658,10903]],[[10831,10882,10881]],[[10903,10658,10882]],[[10824,10823,10811]],[[10822,10778,10850]],[[10939,10823,10825]],[[10850,10811,10823]],[[10939,10884,10823]],[[10822,10850,10884]],[[10826,10847,10909]],[[10944,10942,10847]],[[10933,10856,10027]],[[10946,10938,10913]],[[10667,10933,10027]],[[10667,10900,10933]],[[10768,10759,10038]],[[10760,10766,10758]],[[10711,10722,10798]],[[10719,6750,6751]],[[10947,10927,10936]],[[10927,10934,10936]],[[10760,10859,10861]],[[10765,623,10859]],[[10932,10858,10926]],[[10932,10901,10858]],[[10729,10783,10858]],[[10728,10789,10783]],[[10824,10929,10825]],[[10691,10779,10821]],[[10884,10821,10822]],[[10939,10691,10821]],[[10939,10690,10691]],[[10939,10825,10690]],[[10929,10948,10690]],[[10687,10690,10948]],[[10940,10689,10705]],[[10687,10948,10689]],[[10948,10929,10689]],[[10707,6753,7264]],[[10928,10940,10704]],[[10928,10686,10688]],[[10940,10688,10689]],[[10940,10928,10688]],[[10689,10706,10705]],[[10824,10811,10820]],[[10891,10914,10915]],[[10741,10743,10914]],[[10776,10744,10925]],[[10776,10857,10744]],[[10861,10917,10766]],[[10861,625,10917]],[[10711,10862,10816]],[[10804,10816,10862]],[[10732,10879,10733]],[[10732,10739,10803]],[[10879,10803,10862]],[[10879,10732,10803]],[[10876,10892,10865]],[[10876,10893,10892]],[[10949,10893,10876]],[[10894,10758,10767]],[[10886,10757,10887]],[[10886,10922,10757]],[[10809,10725,10717]],[[10809,10798,10725]],[[10913,10938,10912]],[[10932,10926,10835]],[[10927,10943,10944]],[[10949,10876,10941]],[[10026,10941,10943]],[[10876,10866,10941]],[[10016,10674,10017]],[[10016,10664,10676]],[[10743,10894,10767]],[[10950,10038,10758]],[[10894,10951,10758]],[[9996,10038,10950]],[[9996,10894,10893]],[[10951,10950,10758]],[[9996,10951,10894]],[[9996,10950,10951]],[[10931,10782,10781]],[[10931,10709,10782]],[[10785,10684,10686]],[[10703,7202,10684]],[[7195,10685,7203]],[[7195,10683,10685]],[[10680,10814,7265]],[[10813,10864,10814]],[[7267,10681,7265]],[[7183,10813,10680]],[[10924,10837,10708]],[[10911,10835,10837]],[[10883,10790,517]],[[10883,10916,10790]],[[10694,10707,7264]],[[10706,10824,10820]],[[10706,10820,10707]],[[10811,10718,10820]],[[623,10860,10904]],[[623,625,10860]],[[10817,10921,10739]],[[10818,10679,10921]],[[6661,10817,10739]],[[6661,6662,10817]],[[10896,10922,10886]],[[10945,10891,10915]],[[10769,10713,10712]],[[10879,10862,10713]],[[10827,10826,10909]],[[10944,10847,10826]],[[10796,10838,10840]],[[10836,10926,10839]],[[10719,10724,10848]],[[10849,10717,10724]],[[10706,10929,10824]],[[10706,10689,10929]],[[10868,10870,10809]],[[10868,10869,10870]],[[10870,10808,10809]],[[10870,10770,10808]],[[10785,10686,10928]],[[10684,10683,10686]],[[10908,10698,7217]],[[10908,10699,10698]],[[7268,10681,7267]],[[7268,10802,10681]],[[10026,10949,10941]],[[10026,10893,10949]],[[10026,10947,10936]],[[10944,10826,10927]],[[10901,10874,10777]],[[10927,10826,10775]],[[10859,10764,10765]],[[10768,647,10764]],[[10892,10875,10865]],[[10892,10742,10875]],[[10934,10952,10935]],[[10935,10026,10936]],[[10777,10874,10775]],[[10952,10934,10874]],[[10667,10935,10665]],[[10667,10026,10935]],[[10665,10952,10874]],[[10665,10935,10952]],[[513,10889,627]],[[10756,10887,10757]],[[10898,10756,10889]],[[10898,10791,10887]],[[513,10898,10889]],[[513,10791,10898]],[[10896,10902,10897]],[[10886,10888,10902]],[[6685,10747,6684]],[[10749,10748,10747]],[[10671,10676,10673]],[[10674,10016,10676]],[[10943,10947,10026]],[[10943,10927,10947]],[[10722,10711,10727]],[[10798,10770,10711]],[[10919,10937,10913]],[[10933,10932,10938]],[[10937,10946,10913]],[[10937,10953,10946]],[[10672,10668,10669]],[[10673,10676,10668]],[[10933,10937,10856]],[[10953,10938,10946]],[[10710,10923,10708]],[[10911,10837,10924]],[[10911,10923,10710]],[[10911,10924,10923]],[[10933,10953,10937]],[[10933,10938,10953]],[[10806,10769,10770]],[[10733,10713,10769]],[[10922,10945,10915]],[[10877,10742,10891]],[[10878,10945,10922]],[[10878,10877,10945]],[[6683,10735,10872]],[[10751,10736,10735]],[[10915,10763,10755]],[[10915,10801,10763]],[[6750,10723,10727]],[[10721,10798,10722]],[[10799,10723,10848]],[[10722,10727,10723]],[[10724,10719,10720]],[[10723,6750,10719]],[[10799,10721,10723]],[[10799,10798,10721]],[[10766,10760,10861]],[[10759,10768,10760]],[[7265,10954,7264]],[[7265,10814,10954]],[[10954,10692,7264]],[[10954,10814,10692]],[[10734,10839,10783]],[[10838,10836,10839]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b493349d4-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2015-01-14","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.9958a905655d4ef0bdce4cc3ddf59082","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10955,8735,8729]],[[3038,8729,8737]],[[8731,8735,1885]],[[1887,1886,3037]],[[1885,8735,1886]],[[8731,1887,3036]],[[8731,1884,1887]],[[8731,1885,1884]],[[1886,8735,10955]],[[3039,3038,8737]],[[3037,10955,3038]],[[3036,3039,8737]],[[8731,3036,8737]],[[1887,3037,3036]],[[3038,10955,8729]],[[3037,1886,10955]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49340dd5-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef660349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10956,10957,10958]],[[10956,10958,10959]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4935bab7-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5ca649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6732,6729,6731]],[[10960,7005,7006]],[[10961,7004,7005]],[[10962,6981,7004]],[[10962,10963,10964]],[[10965,6986,6987]],[[7007,6729,6732]],[[10966,7007,6732]],[[10965,10966,10967]],[[10968,10969,10963]],[[6986,10966,6732]],[[6986,10967,10966]],[[7007,10969,7006]],[[10970,10966,10969]],[[10968,10971,10960]],[[10971,7004,10961]],[[7007,10970,10969]],[[7007,10966,10970]],[[10972,10964,10965]],[[10963,10969,10966]],[[10965,10963,10966]],[[10971,10961,10960]],[[10962,10971,10963]],[[7006,10969,10968]],[[6981,10964,10972]],[[6981,10962,10964]],[[10968,10960,7006]],[[10961,7005,10960]],[[6981,10972,6987]],[[10964,10963,10965]],[[10963,10971,10968]],[[10962,7004,10971]],[[10972,10965,6987]],[[10967,6986,10965]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b49387a1d-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"open verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef812549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10973,10974,10975]],[[10974,10976,10975]],[[10975,10977,10978]],[[10978,10977,10979]],[[10975,10980,10977]],[[10975,10981,10980]],[[10980,10982,10983]],[[10980,10981,10982]],[[10975,10984,10981]],[[10981,10985,10986]],[[10981,10984,10985]],[[10975,10987,10984]],[[10984,10988,10989]],[[10989,10990,10991]],[[10989,10988,10990]],[[10990,10988,10992]],[[10984,10993,10988]],[[10988,10993,10994]],[[10994,10993,10995]],[[10984,10987,10993]],[[10975,10976,10987]],[[10987,10976,10996]],[[10974,10997,10976]],[[10976,10997,10998]],[[10998,10999,11000]],[[11000,11001,11002]],[[11000,10999,11001]],[[11001,10999,11003]],[[10998,11004,10999]],[[10999,11005,11006]],[[10999,11007,11005]],[[10999,11008,11007]],[[10999,11004,11008]],[[11008,11004,11009]],[[11009,11010,11011]],[[11011,11010,11012]],[[11009,11004,11010]],[[10998,10997,11004]],[[11004,11013,11014]],[[11004,11015,11013]],[[11004,10997,11015]],[[11015,11016,11017]],[[11015,11018,11016]],[[11016,11018,11019]],[[11015,11020,11018]],[[11018,11020,11021]],[[11015,11022,11020]],[[11020,11022,11023]],[[11023,11022,11024]],[[11024,11022,11025]],[[11015,11026,11022]],[[11022,11026,11027]],[[11027,11026,11028]],[[11015,10997,11026]],[[11026,11029,11030]],[[11030,11031,11032]],[[11030,11029,11031]],[[11026,11033,11029]],[[11029,11033,11034]],[[11026,11035,11033]],[[11033,11036,11037]],[[11037,11036,11038]],[[11033,11039,11036]],[[11036,11039,11040]],[[11033,11035,11039]],[[11039,11041,11042]],[[11039,11043,11041]],[[11039,11044,11043]],[[11039,11035,11044]],[[11044,11035,11045]],[[11045,11046,11047]],[[11045,11035,11046]],[[11026,11048,11035]],[[11035,11049,11050]],[[11050,11049,11051]],[[11035,11052,11049]],[[11035,11048,11052]],[[11052,11053,11054]],[[11052,11048,11053]],[[11053,11055,11056]],[[11053,11048,11055]],[[11055,11057,11058]],[[11058,11059,11060]],[[11058,11057,11059]],[[11055,11048,11057]],[[11057,11048,11061]],[[11061,11062,11063]],[[11061,11048,11062]],[[11062,11048,11064]],[[11026,10997,11048]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b4939b281-00b4-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_fysiekvoorkomen":"erf","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef5f4049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11065,299,11066]],[[11065,11066,11067]],[[11068,11069,11065]],[[298,299,11065]],[[11068,11065,11067]],[[11069,298,11065]],[[298,11068,11067]],[[298,11069,11068]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b69a8d7bc-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"P0028","class":"waterloop","creationdate":"2014-07-10","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.3600507750384e9faeac329b0fffe720","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:57:13.000"},"geometry":[{"boundaries":[[[11070,11071,11072]],[[11073,11070,11074]],[[11075,11076,11074]],[[11077,11075,11074]],[[11078,11077,11074]],[[11079,11078,11074]],[[11080,11079,11074]],[[11081,11082,11083]],[[11084,11085,11086]],[[11087,11088,11089]],[[11090,11091,11086]],[[11086,11092,11093]],[[11094,11090,11086]],[[11095,11096,11097]],[[11098,11095,11097]],[[11098,11099,11095]],[[11098,11100,11099]],[[11097,11101,11102]],[[11102,11101,11103]],[[11104,11105,11106]],[[11104,11107,11108]],[[11104,11109,11110]],[[11104,11108,11109]],[[11111,11104,11110]],[[11104,11112,11107]],[[11113,11114,11088]],[[11104,11115,11098]],[[11091,11084,11086]],[[11116,11117,11118]],[[11119,11118,11081]],[[11085,11120,11086]],[[11121,11081,11083]],[[11120,11122,11086]],[[11082,11080,11123]],[[11098,11102,11104]],[[11124,11086,11122]],[[11125,11086,11124]],[[11126,11086,11125]],[[11127,11086,11126]],[[11128,11086,11127]],[[11129,11130,11088]],[[11131,11123,11074]],[[11070,11072,11074]],[[11132,11133,11072]],[[11134,11135,11072]],[[11134,11072,11136]],[[11136,11072,11137]],[[11137,11072,11138]],[[11138,11072,11139]],[[11140,11138,11139]],[[11141,11140,11139]],[[11142,11141,11139]],[[11143,11142,11139]],[[11144,11143,11139]],[[11145,11144,11139]],[[11146,11145,11139]],[[11147,11146,11139]],[[11148,11147,11139]],[[11149,11148,11139]],[[11139,11072,11150]],[[11150,11072,11151]],[[11152,11150,11153]],[[11154,11152,11153]],[[11155,11156,11157]],[[11153,11150,11158]],[[11159,11160,11150]],[[11158,11150,11161]],[[11162,11163,11150]],[[11161,11150,11164]],[[11165,11166,11150]],[[11164,11150,11166]],[[11123,11080,11074]],[[11121,11083,11167]],[[11150,11163,11165]],[[11123,11083,11082]],[[11168,11169,11167]],[[11170,11171,11172]],[[11150,11160,11162]],[[11168,11171,11173]],[[11174,11175,11176]],[[11177,11156,11178]],[[11151,11179,11150]],[[11159,11150,11179]],[[11151,11072,11133]],[[11180,11132,11072]],[[11181,11180,11072]],[[11072,11182,11181]],[[11072,11183,11182]],[[11072,11184,11183]],[[11072,11185,11184]],[[11072,11071,11185]],[[11076,11073,11074]],[[11186,11187,11188]],[[11189,11190,11117]],[[11191,11192,11190]],[[11193,11194,11192]],[[11195,11196,11194]],[[11197,11198,11196]],[[11199,11200,11198]],[[11201,11202,11200]],[[11203,11204,11202]],[[11205,11089,11204]],[[11104,11111,11115]],[[11094,11086,11093]],[[11102,11098,11097]],[[11088,11130,11113]],[[11086,11103,11206]],[[11207,11129,11088]],[[11207,11208,11129]],[[11087,11207,11088]],[[11087,11209,11207]],[[11210,11211,11209]],[[11210,11212,11211]],[[11210,11213,11212]],[[11214,11213,11215]],[[11216,11214,11217]],[[11218,11216,11217]],[[11219,11218,11220]],[[11221,11219,11222]],[[11223,11221,11224]],[[11225,11223,11226]],[[11227,11225,11228]],[[11229,11227,11230]],[[11230,11227,11231]],[[11231,11227,11232]],[[11232,11227,11228]],[[11228,11225,11233]],[[11233,11225,11226]],[[11226,11223,11234]],[[11234,11223,11235]],[[11235,11223,11224]],[[11224,11221,11222]],[[11222,11219,11220]],[[11220,11218,11217]],[[11236,11220,11217]],[[11237,11236,11217]],[[11238,11237,11217]],[[11239,11238,11217]],[[11240,11239,11217]],[[11241,11240,11217]],[[11242,11241,11217]],[[11243,11242,11244]],[[11245,11243,11244]],[[11246,11245,11244]],[[11247,11246,11244]],[[11248,11247,11244]],[[11188,11248,11186]],[[11244,11186,11248]],[[11249,11250,11251]],[[11251,11186,11244]],[[11249,11251,11244]],[[11244,11242,11217]],[[11252,11253,11177]],[[11217,11214,11215]],[[11174,11254,11172]],[[11215,11213,11210]],[[11209,11087,11210]],[[11175,11253,11255]],[[11205,11256,11089]],[[11087,11089,11256]],[[11257,11258,11157]],[[11204,11259,11205]],[[11260,11261,11262]],[[11204,11263,11259]],[[11257,11261,11264]],[[11263,11204,11203]],[[11203,11202,11265]],[[11265,11202,11201]],[[11201,11200,11266]],[[11266,11200,11199]],[[11199,11198,11267]],[[11267,11198,11268]],[[11268,11198,11197]],[[11197,11196,11269]],[[11269,11196,11195]],[[11195,11194,11270]],[[11270,11194,11271]],[[11271,11194,11193]],[[11193,11192,11272]],[[11272,11192,11273]],[[11273,11192,11191]],[[11189,11274,11190]],[[11191,11190,11274]],[[11275,11189,11117]],[[11276,11275,11117]],[[11116,11276,11117]],[[11277,11278,11262]],[[11118,11279,11116]],[[11118,11280,11279]],[[11281,11282,11283]],[[11118,11119,11280]],[[11277,11282,11284]],[[11119,11081,11285]],[[11285,11081,11121]],[[11286,11287,11167]],[[11121,11167,11287]],[[11169,11286,11167]],[[11288,11289,11283]],[[11168,11290,11169]],[[11168,11291,11290]],[[11292,11293,11294]],[[11168,11173,11291]],[[11288,11293,11295]],[[11173,11171,11296]],[[11170,11297,11171]],[[11296,11171,11297]],[[11298,11170,11172]],[[11299,11300,11294]],[[11172,11301,11298]],[[11302,11303,11304]],[[11172,11254,11301]],[[11299,11303,11305]],[[11254,11174,11306]],[[11176,11307,11174]],[[11306,11174,11307]],[[11308,11176,11175]],[[11309,11302,11304]],[[11302,11310,11311]],[[11175,11312,11308]],[[11309,11310,11302]],[[11313,11255,11253]],[[11312,11175,11255]],[[11314,11313,11253]],[[11315,11316,11311]],[[11317,11318,11319]],[[11253,11252,11314]],[[11315,11318,11316]],[[11252,11177,11320]],[[11320,11177,11321]],[[11321,11177,11322]],[[11322,11177,11178]],[[11178,11156,11323]],[[11323,11156,11324]],[[11324,11156,11155]],[[11155,11157,11325]],[[11325,11157,11326]],[[11326,11157,11327]],[[11327,11157,11258]],[[11258,11257,11328]],[[11328,11257,11329]],[[11329,11257,11330]],[[11330,11257,11331]],[[11331,11257,11264]],[[11264,11261,11332]],[[11332,11261,11333]],[[11333,11261,11334]],[[11334,11261,11335]],[[11335,11261,11260]],[[11260,11262,11278]],[[11278,11277,11284]],[[11284,11282,11336]],[[11336,11282,11281]],[[11281,11283,11337]],[[11338,11339,11283]],[[11337,11283,11339]],[[11340,11338,11283]],[[11341,11340,11283]],[[11289,11341,11283]],[[11342,11289,11288]],[[11343,11342,11288]],[[11344,11343,11288]],[[11345,11344,11288]],[[11295,11345,11288]],[[11346,11295,11293]],[[11347,11346,11293]],[[11348,11347,11293]],[[11349,11348,11293]],[[11292,11349,11293]],[[11350,11292,11294]],[[11351,11350,11294]],[[11352,11351,11294]],[[11300,11352,11294]],[[11353,11300,11299]],[[11354,11353,11299]],[[11355,11354,11299]],[[11305,11355,11299]],[[11356,11305,11303]],[[11357,11356,11303]],[[11302,11357,11303]],[[11316,11302,11311]],[[11106,11105,11319]],[[11318,11358,11316]],[[11318,11359,11358]],[[11318,11360,11359]],[[11318,11361,11360]],[[11318,11362,11361]],[[11106,11112,11104]],[[11362,11318,11363]],[[11363,11318,11364]],[[11364,11318,11365]],[[11365,11318,11366]],[[11366,11318,11367]],[[11367,11318,11368]],[[11368,11318,11369]],[[11369,11318,11370]],[[11370,11318,11371]],[[11371,11318,11372]],[[11372,11318,11317]],[[11317,11319,11373]],[[11373,11319,11105]],[[11092,11086,11206]],[[11102,11103,11086]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"b80066d8d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11374,11375,11376]],[[11374,11376,11377]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b8009a157-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0bbe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11378,11379,11380]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b82575848-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2014-07-10","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.a6c08b19180041c1972275ff0fc7c5ce","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[4137,4135,11381]],[[4135,4133,11382]],[[4346,11383,4349]],[[11384,4097,11385]],[[11385,4090,11386]],[[11386,4090,4079]],[[11387,11388,3990]],[[11389,3976,11390]],[[11391,11392,11393]],[[11394,11395,11396]],[[11397,4003,11398]],[[11399,11364,11400]],[[11399,11401,11364]],[[11402,11403,11363]],[[11402,11404,11403]],[[11405,11406,11404]],[[11407,11408,11406]],[[3972,11358,11408]],[[11409,4349,11410]],[[11411,11409,11412]],[[11413,11409,11414]],[[11415,11412,11409]],[[11416,11409,11417]],[[11418,11414,11409]],[[11416,11418,11409]],[[11409,11419,11420]],[[11409,11421,11419]],[[11409,11422,11421]],[[11409,11423,11422]],[[11409,11410,11423]],[[4349,11424,11410]],[[4349,11425,11424]],[[4349,11426,11425]],[[4349,11427,11426]],[[4349,11428,11427]],[[4349,11429,11428]],[[4349,11430,11429]],[[4349,11431,11430]],[[4349,11432,11431]],[[4349,11433,11432]],[[4349,11434,11433]],[[4349,11435,11434]],[[4349,11436,11435]],[[4349,11437,11436]],[[4349,11438,11437]],[[4349,11439,11438]],[[11440,4097,11384]],[[4346,11441,11383]],[[11442,11316,11358]],[[4798,11441,4345]],[[11443,4762,11409]],[[4345,11441,4346]],[[11417,11409,11420]],[[11383,11439,4349]],[[11390,11444,11389]],[[11445,11446,11447]],[[4762,11302,11448]],[[11398,4003,11449]],[[11444,4762,11448]],[[11450,3989,11392]],[[11450,11451,3989]],[[3974,11358,3972]],[[11452,11402,11363]],[[11453,3989,11454]],[[11392,11391,11455]],[[11456,3990,11388]],[[11457,3982,3981]],[[11458,11457,3981]],[[11459,11460,3964]],[[11461,4010,3982]],[[11462,11463,4010]],[[11464,11465,11466]],[[11467,4010,11468]],[[11468,4010,11469]],[[11385,4097,4090]],[[4133,4097,11440]],[[11382,4133,11440]],[[11381,4135,11382]],[[11470,3954,11381]],[[11381,3954,4137]],[[11470,11471,3959]],[[3954,11470,3959]],[[11472,11454,3989]],[[11388,11447,11456]],[[11393,11395,11394]],[[4003,11397,11395]],[[11402,11452,11404]],[[11473,11407,11405]],[[11474,11475,4010]],[[11467,11476,11477]],[[11478,11479,4010]],[[11480,11481,11479]],[[11482,11483,11461]],[[11480,11479,11483]],[[11405,11407,11406]],[[11484,11408,11407]],[[11479,11481,4010]],[[11462,11485,11463]],[[11460,11486,11487]],[[11487,4079,11460]],[[11480,11463,11485]],[[11480,11488,11463]],[[11451,11388,11454]],[[11451,11447,11388]],[[11302,11443,11411]],[[11489,4762,11443]],[[11490,11491,3981]],[[11492,11490,3990]],[[11473,11484,11407]],[[3972,11408,11484]],[[11493,11477,11488]],[[11465,11494,3964]],[[11446,11456,11447]],[[11446,3990,11456]],[[11455,11450,11392]],[[11455,11451,11450]],[[3975,4762,11390]],[[11302,11316,11448]],[[11451,11472,3989]],[[11451,11454,11472]],[[11476,11495,11488]],[[11463,11488,11495]],[[11482,11457,11317]],[[11496,3982,11457]],[[11401,11452,11363]],[[11452,11405,11404]],[[11302,11489,11443]],[[11302,4762,11489]],[[11398,11449,11400]],[[4003,11401,11449]],[[11494,11459,3964]],[[11386,11486,11459]],[[11480,11475,11474]],[[11480,11485,11475]],[[11497,11493,11498]],[[11466,4010,11467]],[[11499,11461,3982]],[[11478,4010,11461]],[[11396,11397,11398]],[[11396,11395,11397]],[[3975,11390,3976]],[[11500,11316,3974]],[[11480,11482,11317]],[[11480,11483,11482]],[[11388,11501,11454]],[[11502,3989,11503]],[[3981,11491,11317]],[[11492,3990,11446]],[[11445,11504,11490]],[[11504,11491,11505]],[[11317,11504,11447]],[[11317,11491,11504]],[[11463,11469,4010]],[[11463,11495,11469]],[[11504,11445,11447]],[[11504,11505,11490]],[[11482,11496,11457]],[[11482,11499,11496]],[[11413,11414,11418]],[[11413,11415,11409]],[[3964,11460,4079]],[[11459,11486,11460]],[[11364,11401,11363]],[[4003,3972,11452]],[[4003,11452,11401]],[[3972,11473,11452]],[[11483,11478,11461]],[[11483,11479,11478]],[[11491,11490,11505]],[[3981,3990,11490]],[[11386,11494,11493]],[[11386,11459,11494]],[[11449,11399,11400]],[[11449,11401,11399]],[[11443,11409,11411]],[[4762,4349,11409]],[[11506,11453,11454]],[[11503,3989,11453]],[[11493,11507,11477]],[[11498,11508,11466]],[[11481,11474,4010]],[[11481,11480,11474]],[[11387,11501,11388]],[[11503,11506,11501]],[[11493,11509,11508]],[[11493,11494,11509]],[[11509,11464,11466]],[[11509,11494,11464]],[[11466,11465,3964]],[[11464,11494,11465]],[[4762,11444,11390]],[[11448,11316,11500]],[[11444,11500,11389]],[[11444,11448,11500]],[[3974,11389,11500]],[[3974,3976,11389]],[[11501,11506,11454]],[[11503,11453,11506]],[[11317,11458,3981]],[[11317,11457,11458]],[[11496,11499,3982]],[[11482,11461,11499]],[[11502,11387,3990]],[[11502,11501,11387]],[[11495,11468,11469]],[[11477,11507,11467]],[[11476,11467,11468]],[[11508,11509,11466]],[[11495,11476,11468]],[[11488,11477,11476]],[[11497,11466,11467]],[[3964,4010,11466]],[[11497,11498,11466]],[[11493,11508,11498]],[[11507,11497,11467]],[[11507,11493,11497]],[[11386,11487,11486]],[[11386,4079,11487]],[[4003,11392,3989]],[[4003,11395,11392]],[[11391,11393,11394]],[[11392,11395,11393]],[[11445,11492,11446]],[[11445,11490,11492]],[[11452,11473,11405]],[[3972,11484,11473]],[[3974,11442,11358]],[[3974,11316,11442]],[[3989,11502,3990]],[[11503,11501,11502]],[[11475,11462,4010]],[[11475,11485,11462]],[[11102,11086,11386]],[[11386,11086,11385]],[[11104,11102,11493]],[[11493,11102,11386]],[[11105,11104,11488]],[[11488,11104,11493]],[[11373,11105,11480]],[[11480,11105,11488]],[[11317,11373,11480]],[[11372,11317,11447]],[[11371,11372,11451]],[[11451,11372,11447]],[[11370,11371,11455]],[[11455,11371,11451]],[[11369,11370,11391]],[[11391,11370,11455]],[[11368,11369,11394]],[[11394,11369,11391]],[[11367,11368,11396]],[[11396,11368,11394]],[[11366,11367,11398]],[[11398,11367,11396]],[[11365,11366,11400]],[[11400,11366,11398]],[[11364,11365,11400]],[[11362,11363,11403]],[[11361,11362,11404]],[[11404,11362,11403]],[[11360,11361,11406]],[[11406,11361,11404]],[[11359,11360,11408]],[[11408,11360,11406]],[[11358,11359,11408]],[[11357,11302,11411]],[[11356,11357,11412]],[[11412,11357,11411]],[[11305,11356,11415]],[[11415,11356,11412]],[[11355,11305,11413]],[[11413,11305,11415]],[[11354,11355,11418]],[[11418,11355,11413]],[[11353,11354,11416]],[[11416,11354,11418]],[[11300,11353,11417]],[[11417,11353,11416]],[[11352,11300,11420]],[[11420,11300,11417]],[[11351,11352,11419]],[[11419,11352,11420]],[[11350,11351,11421]],[[11421,11351,11419]],[[11292,11350,11422]],[[11422,11350,11421]],[[11349,11292,11423]],[[11423,11292,11422]],[[11348,11349,11410]],[[11410,11349,11423]],[[11347,11348,11424]],[[11424,11348,11410]],[[11346,11347,11425]],[[11425,11347,11424]],[[11295,11346,11426]],[[11426,11346,11425]],[[11345,11295,11427]],[[11427,11295,11426]],[[11344,11345,11428]],[[11428,11345,11427]],[[11343,11344,11429]],[[11429,11344,11428]],[[11342,11343,11430]],[[11430,11343,11429]],[[11289,11342,11431]],[[11431,11342,11430]],[[11341,11289,11432]],[[11432,11289,11431]],[[11340,11341,11433]],[[11433,11341,11432]],[[11338,11340,11434]],[[11434,11340,11433]],[[11339,11338,11435]],[[11435,11338,11434]],[[11337,11339,11436]],[[11436,11339,11435]],[[11281,11337,11437]],[[11437,11337,11436]],[[11336,11281,11438]],[[11438,11281,11437]],[[11284,11336,11439]],[[11439,11336,11438]],[[11278,11284,11383]],[[11383,11284,11439]],[[11260,11278,11441]],[[11441,11278,11383]],[[4798,11260,11441]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b8257ccdc-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.5b05c66e86d84678906e0e603c4ba008","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11510,11511,11512]],[[11513,11514,11510]],[[11515,11513,11510]],[[11515,11516,11517]],[[11515,11517,11518]],[[11513,11519,11514]],[[11518,11513,11515]],[[11519,11511,11514]],[[11518,11519,11513]],[[11518,11511,11519]],[[11520,11515,11512]],[[11514,11511,11510]],[[11512,11515,11510]],[[11520,11516,11515]],[[11521,11522,11511]],[[11511,11522,11512]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b82590617-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.2b508589ce3a4bf5a6633db491f5383d","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11523,11524,11217]],[[11210,11087,5526]],[[5524,11210,5840]],[[5840,11210,5527]],[[5527,11210,5526]],[[5526,11087,5525]],[[11205,11259,5646]],[[11203,11265,5508]],[[11266,11199,5507]],[[11267,11268,5507]],[[11197,11269,5506]],[[11195,11270,5503]],[[11270,11271,5503]],[[11271,11193,5504]],[[11273,11191,5501]],[[11191,11274,5501]],[[11274,11189,5473]],[[11275,11276,5474]],[[11116,11279,5496]],[[11279,11280,5496]],[[11119,11285,5495]],[[11285,11121,5495]],[[11287,11286,5493]],[[11169,11290,5441]],[[11290,11291,5442]],[[11173,11296,5443]],[[11297,11170,5492]],[[11301,11254,5445]],[[11254,11306,5445]],[[11307,11176,5490]],[[11308,11312,5448]],[[11312,11255,5448]],[[11313,11314,5449]],[[11314,11252,5451]],[[11320,11321,5452]],[[11321,11322,5452]],[[11178,11323,5453]],[[11323,11324,5453]],[[11324,11155,5453]],[[11155,11325,5454]],[[11325,11326,5454]],[[11326,11327,5454]],[[5449,11314,5451]],[[11264,11332,5458]],[[11333,11334,5460]],[[11334,11335,5460]],[[5454,11327,5456]],[[5456,11328,5457]],[[5457,11331,5458]],[[5458,11333,5460]],[[11335,11260,5464]],[[5462,11335,5463]],[[5463,11335,5464]],[[5464,11260,5466]],[[11260,4347,4799]],[[5467,11260,4799]],[[11260,4798,4347]],[[5466,11260,5467]],[[5460,11335,5462]],[[5453,11155,5454]],[[11332,11333,5458]],[[5452,11322,5453]],[[11331,11264,5458]],[[11330,11331,5457]],[[11329,11330,5457]],[[11328,11329,5457]],[[11258,11328,5456]],[[11327,11258,5456]],[[5451,11252,5452]],[[5448,11255,5449]],[[5490,11308,5448]],[[5491,11307,5490]],[[5445,11306,5491]],[[5447,11301,5445]],[[11322,11178,5453]],[[5492,11298,5447]],[[5444,11297,5492]],[[11252,11320,5452]],[[5443,11296,5444]],[[5442,11291,5443]],[[11255,11313,5449]],[[5441,11290,5442]],[[5493,11169,5441]],[[11176,11308,5490]],[[5494,11287,5493]],[[11306,11307,5491]],[[5495,11121,5494]],[[5489,11119,5495]],[[11298,11301,5447]],[[11170,11298,5492]],[[5496,11280,5489]],[[11296,11297,5444]],[[5500,11116,5496]],[[11291,11173,5443]],[[5474,11276,5500]],[[5473,11189,5474]],[[11286,11169,5493]],[[5501,11274,5473]],[[11121,11287,5494]],[[5502,11273,5501]],[[5504,11272,5502]],[[11280,11119,5489]],[[5503,11271,5504]],[[5506,11195,5503]],[[11276,11116,5500]],[[5507,11268,5506]],[[11189,11275,5474]],[[5508,11266,5507]],[[5509,11203,5508]],[[5646,11259,5509]],[[11272,11273,5502]],[[11193,11272,5504]],[[5513,11256,5646]],[[5514,11256,5513]],[[5515,11256,5514]],[[11269,11195,5506]],[[5517,11087,5515]],[[11268,11197,5506]],[[5520,11087,5517]],[[11199,11267,5507]],[[5521,11087,5520]],[[11201,11266,5508]],[[11265,11201,5508]],[[5522,11087,5521]],[[11263,11203,5509]],[[11259,11263,5509]],[[5523,11087,5522]],[[11256,11205,5646]],[[11087,11256,5515]],[[5525,11087,5523]],[[5487,11210,5524]],[[11210,5487,11215]],[[11215,11523,11217]],[[5487,11523,11215]],[[11525,5486,11217]],[[5487,11524,11523]],[[5487,5486,11524]],[[11524,11525,11217]],[[11524,5486,11525]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b825a1738-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.53dd2a24d1a34833a084928458e10f8f","lv_publicatiedatum":"2016-06-07T16:00:23.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:55:21.000"},"geometry":[{"boundaries":[[[11526,11527,5272]],[[11528,11529,11244]],[[11528,11527,11529]],[[4891,5272,11528]],[[5272,11527,11528]],[[4891,11528,11244]],[[11530,11527,11526]],[[4945,11526,5272]],[[4945,11530,11526]],[[11249,11244,11529]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"b86c25248-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11531,11532,11533]],[[11531,11534,11532]],[[11531,2857,2858]],[[11531,2858,2947]],[[11535,11536,11537]],[[11536,11535,2947]],[[11538,11537,11536]],[[11539,11540,11541]],[[11541,11538,11536]],[[11542,11540,11539]],[[11543,11542,11539]],[[11544,11545,11546]],[[11545,11547,11546]],[[11548,11544,11546]],[[11549,11550,11551]],[[11539,11547,11543]],[[11552,11550,11553]],[[11553,11550,11554]],[[11531,2825,2857]],[[11554,11549,11555]],[[11556,11555,11557]],[[11558,11556,11557]],[[11535,11534,2947]],[[11531,2947,11534]],[[11559,11560,11561]],[[11562,11559,11561]],[[11546,11547,11539]],[[11541,11536,11539]],[[11563,11564,11565]],[[11566,11563,11565]],[[11551,11548,11546]],[[11567,11568,11569]],[[11551,11546,11549]],[[11569,11568,11570]],[[8159,11570,2911]],[[11554,11550,11549]],[[11549,11557,11555]],[[11549,11560,11557]],[[11549,11561,11560]],[[11549,2911,11561]],[[11561,2911,11564]],[[11564,2911,11565]],[[11565,2911,11568]],[[11568,2911,11570]],[[183,2857,2825]],[[184,2857,183]],[[11571,2825,11531]],[[11572,11571,11533]],[[11533,11571,11531]],[[11573,11572,11532]],[[11532,11572,11533]],[[11574,11573,11534]],[[11534,11573,11532]],[[11575,11574,11535]],[[11535,11574,11534]],[[11576,11575,11537]],[[11537,11575,11535]],[[11577,11576,11538]],[[11538,11576,11537]],[[11578,11577,11541]],[[11541,11577,11538]],[[11579,11578,11540]],[[11540,11578,11541]],[[11580,11579,11542]],[[11542,11579,11540]],[[11581,11580,11543]],[[11543,11580,11542]],[[11582,11581,11547]],[[11547,11581,11543]],[[11583,11582,11545]],[[11545,11582,11547]],[[11584,11583,11544]],[[11544,11583,11545]],[[11585,11584,11548]],[[11548,11584,11544]],[[11586,11585,11551]],[[11551,11585,11548]],[[11587,11586,11550]],[[11550,11586,11551]],[[11588,11587,11552]],[[11552,11587,11550]],[[11589,11588,11553]],[[11553,11588,11552]],[[11590,11589,11554]],[[11554,11589,11553]],[[11591,11590,11555]],[[11555,11590,11554]],[[11592,11591,11556]],[[11556,11591,11555]],[[11593,11592,11558]],[[11558,11592,11556]],[[11594,11593,11557]],[[11557,11593,11558]],[[11595,11594,11560]],[[11560,11594,11557]],[[11596,11595,11559]],[[11559,11595,11560]],[[11597,11596,11562]],[[11562,11596,11559]],[[11598,11597,11561]],[[11561,11597,11562]],[[11599,11598,11564]],[[11564,11598,11561]],[[11600,11599,11563]],[[11563,11599,11564]],[[11601,11600,11566]],[[11566,11600,11563]],[[11602,11601,11565]],[[11565,11601,11566]],[[11603,11602,11568]],[[11568,11602,11565]],[[11604,11603,11567]],[[11567,11603,11568]],[[11605,11604,11569]],[[11569,11604,11567]],[[11606,11605,11570]],[[11570,11605,11569]],[[8159,11606,11570]],[[2936,2911,11549]],[[2959,2936,11546]],[[11546,2936,11549]],[[2958,2959,11539]],[[11539,2959,11546]],[[2910,2958,11536]],[[11536,2958,11539]],[[2947,2910,11536]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c2a086-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7968,8543,1280]],[[8543,1315,1280]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c538a4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11607,11608,11609]],[[11607,7803,1354]],[[11608,11607,1354]],[[11610,7803,11607]],[[1354,1688,11608]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5adfd-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0875b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11611,11612,11613]],[[11611,11614,11612]],[[11611,212,2815]],[[11614,11611,11615]],[[11615,11611,2815]],[[2815,212,213]],[[11616,212,11611]],[[11617,11616,11613]],[[11613,11616,11611]],[[11618,11617,11612]],[[11612,11617,11613]],[[11619,11618,11614]],[[11614,11618,11612]],[[11620,11619,11615]],[[11615,11619,11614]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5ae06-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08da749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11067,297,298]],[[11067,10615,297]],[[11067,11066,11621]],[[10615,11067,11621]],[[11622,10615,11621]],[[11066,11622,11621]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c5d51d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[477,557,476]],[[557,558,476]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b86c89463-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10683,10682,10662]],[[10683,10662,11623]],[[11623,11624,11625]],[[11625,11624,10678]],[[11624,11626,11627]],[[11627,11626,11628]],[[11624,11623,11626]],[[10662,10682,7252]],[[10662,11626,11623]],[[10675,10663,10017]],[[10663,7244,10017]],[[10663,10662,7252]],[[10663,7252,7244]],[[10687,10683,11623]],[[10691,10687,11625]],[[11625,10687,11623]],[[10678,10691,11625]],[[10672,10678,11624]],[[10673,10672,11627]],[[11627,10672,11624]],[[10671,10673,11628]],[[11628,10673,11627]],[[10670,10671,11626]],[[11626,10671,11628]],[[10662,10670,11626]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"b8e220996-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11629,11630,11631]],[[11632,1831,1827]],[[8174,1831,11633]],[[11634,8174,8175]],[[1825,11634,8175]],[[11635,11633,11636]],[[8174,11635,8173]],[[11636,10005,8173]],[[11636,11637,10005]],[[11638,11639,11637]],[[8174,11633,11635]],[[11640,11637,11636]],[[11635,11636,8173]],[[11640,1831,11638]],[[11633,11640,11636]],[[11633,1831,11640]],[[11640,11638,11637]],[[11639,10005,11637]],[[11632,11641,11642]],[[11643,10005,1831]],[[1831,11634,1825]],[[1831,8174,11634]],[[11644,11630,11629]],[[11641,10005,11630]],[[11643,11631,10005]],[[11630,10005,11631]],[[11644,11642,11641]],[[11632,11645,11641]],[[11646,11644,11629]],[[11632,11642,11644]],[[1831,11639,11638]],[[1831,10005,11639]],[[11632,11643,1831]],[[11646,11631,11643]],[[11644,11641,11630]],[[11645,10005,11641]],[[11646,11632,11644]],[[1827,11645,11632]],[[11631,11646,11629]],[[11643,11632,11646]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e220999-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11647,11648,11649]],[[11650,11651,11652]],[[11653,3117,11651]],[[11651,11654,11655]],[[11656,11652,11655]],[[11653,3162,3117]],[[11647,11649,11657]],[[11656,11650,11652]],[[11653,3160,3162]],[[11650,11658,11651]],[[11659,11660,11661]],[[11656,11655,11654]],[[11652,11662,11655]],[[11656,11647,11657]],[[11656,11661,11647]],[[3161,11656,11657]],[[3161,11650,11656]],[[11648,11661,11660]],[[11651,11662,11652]],[[3161,11663,11650]],[[11664,3160,11653]],[[11663,11658,11650]],[[3117,11660,11659]],[[11663,11665,11658]],[[11664,3161,3160]],[[11656,11654,11661]],[[11651,3117,11659]],[[11661,11654,11659]],[[11655,11662,11651]],[[11653,11651,11658]],[[11659,11654,11651]],[[11649,11648,11660]],[[11647,11661,11648]],[[11665,11653,11658]],[[11665,11664,11653]],[[11663,11664,11665]],[[11663,3161,11664]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2209a5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11666,11667,11668]],[[11669,11667,11666]],[[11670,11669,11666]],[[11671,11670,11666]],[[11672,11671,11666]],[[11673,11672,11666]],[[11674,11673,11666]],[[11675,11674,11666]],[[11676,11675,11666]],[[11677,11676,11666]],[[11678,11677,11666]],[[11679,11678,11666]],[[11680,11679,11666]],[[11681,11666,11682]],[[11682,11666,11683]],[[11683,11666,11684]],[[11684,11666,11685]],[[11685,11666,11686]],[[11686,11666,11687]],[[11687,11666,11688]],[[11688,11666,11689]],[[11689,11666,11690]],[[11690,11666,11691]],[[11691,11666,11692]],[[11692,11666,11693]],[[11693,11666,11694]],[[11694,11666,11695]],[[11695,11666,11696]],[[11696,11666,11697]],[[11697,11666,11698]],[[11698,11666,11699]],[[11699,11666,11700]],[[11700,11666,11701]],[[11701,11666,11702]],[[11702,11666,11703]],[[11703,11666,11704]],[[11704,11666,11705]],[[11705,11666,11706]],[[11706,11666,11707]],[[11707,11666,11708]],[[11708,11666,11709]],[[11709,11666,11710]],[[11710,11666,11711]],[[11711,11666,11712]],[[11712,11666,11713]],[[11713,11666,11714]],[[11666,11715,11716]],[[11666,11717,11715]],[[11666,11718,11717]],[[11666,11719,11718]],[[11666,11720,11719]],[[11666,11721,11720]],[[11666,11722,11721]],[[11666,11723,11722]],[[11666,11724,11723]],[[11666,11725,11724]],[[11666,11726,11725]],[[11666,11727,11726]],[[11666,11728,11727]],[[11666,11729,11728]],[[11666,11730,11729]],[[11666,11731,11730]],[[11666,11732,11731]],[[11666,11733,11732]],[[11666,11734,11733]],[[11666,11735,11734]],[[11666,11736,11735]],[[11666,11737,11736]],[[11666,11738,11737]],[[11666,11739,11738]],[[11666,11740,11739]],[[11666,11741,11740]],[[11666,11742,11741]],[[11666,11743,11742]],[[11666,11744,11743]],[[11666,11745,11744]],[[11666,11746,11745]],[[11666,11747,11746]],[[11666,11748,11747]],[[11666,11749,11748]],[[11666,11750,11749]],[[11666,11751,11750]],[[11666,11752,11751]],[[11666,11753,11752]],[[11666,11754,11753]],[[11666,11755,11754]],[[11666,11756,11755]],[[11666,11757,11756]],[[11666,11758,11757]],[[11666,11668,11758]],[[11714,11666,11716]],[[11681,11680,11666]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e22f3bc-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11759,11760,11761]],[[11762,11763,11764]],[[11764,11763,11759]],[[11762,11760,11759]],[[11765,11762,11766]],[[11765,11760,11762]],[[11764,11759,11761]],[[11763,11762,11759]],[[11766,11764,11761]],[[11766,11762,11764]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e23693d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11767,11768,11769]],[[11770,11771,11772]],[[11773,11774,11775]],[[11776,11777,11767]],[[11778,11773,11779]],[[11774,11780,11781]],[[11782,11783,11774]],[[11784,11769,11785]],[[11774,11783,11780]],[[11786,11782,11787]],[[11788,11789,11780]],[[11788,11783,11786]],[[11771,11781,11790]],[[11784,11791,11769]],[[11779,11792,11772]],[[11775,11781,11770]],[[11777,11768,11767]],[[11793,11769,11768]],[[11794,11767,11791]],[[11790,11789,11776]],[[11784,11790,11794]],[[11767,11769,11791]],[[11780,11790,11781]],[[11780,11789,11790]],[[11790,11776,11767]],[[11789,11788,11786]],[[11789,11777,11776]],[[11786,11768,11777]],[[11780,11783,11788]],[[11787,11773,11778]],[[11771,11790,11784]],[[11790,11767,11794]],[[11793,11778,11779]],[[11782,11786,11783]],[[11773,11787,11774]],[[11787,11793,11786]],[[11774,11787,11782]],[[11778,11793,11787]],[[11779,11775,11792]],[[11774,11781,11775]],[[11792,11770,11772]],[[11792,11775,11770]],[[11793,11779,11772]],[[11773,11775,11779]],[[11771,11784,11785]],[[11794,11791,11784]],[[11789,11786,11777]],[[11793,11768,11786]],[[11772,11771,11785]],[[11770,11781,11771]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e23ddc7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ad49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11795,11796,11797]],[[11798,11799,11800]],[[11801,11802,11798]],[[11800,11801,11798]],[[11803,11795,11804]],[[11796,11805,11797]],[[11804,11797,11801]],[[11805,11802,11801]],[[11804,11801,11800]],[[11797,11805,11801]],[[11803,11804,11800]],[[11795,11797,11804]],[[11803,11796,11795]],[[11806,11805,11796]],[[11806,11803,11800]],[[11806,11796,11803]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e24c8ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ab49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11807,11808,11809]],[[11810,11811,11812]],[[11810,11813,11811]],[[11814,11808,11815]],[[11816,11807,11809]],[[11815,11808,11807]],[[11812,11811,11807]],[[11817,11807,11811]],[[11809,11818,11819]],[[11820,11814,11817]],[[11816,11812,11807]],[[11821,11822,11810]],[[11811,11813,11817]],[[11823,11814,11820]],[[11824,11823,11825]],[[11813,11820,11817]],[[11821,11825,11822]],[[11818,11826,11823]],[[11822,11813,11810]],[[11823,11820,11813]],[[11822,11823,11813]],[[11826,11814,11823]],[[11824,11827,11823]],[[11824,11819,11827]],[[11812,11821,11810]],[[11825,11823,11822]],[[11826,11818,11809]],[[11821,11812,11816]],[[11824,11825,11816]],[[11816,11825,11821]],[[11819,11816,11809]],[[11819,11824,11816]],[[11817,11815,11807]],[[11817,11814,11815]],[[11827,11818,11823]],[[11827,11819,11818]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e253d86-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11828,11829,11830]],[[11831,11832,11833]],[[11834,11835,11831]],[[11836,11837,11838]],[[11839,11840,11841]],[[11839,11842,11831]],[[11831,11842,11832]],[[11843,11844,11845]],[[11846,11847,11848]],[[11842,11839,11841]],[[11828,11849,11850]],[[11839,11831,11840]],[[11832,11851,11849]],[[11842,11841,11851]],[[11828,11850,11852]],[[11853,11841,11848]],[[11849,11853,11850]],[[11851,11841,11853]],[[11833,11834,11831]],[[11845,11854,11855]],[[11847,11853,11848]],[[11856,11831,11835]],[[11828,11857,11858]],[[11859,11860,11861]],[[11862,11836,11838]],[[11847,11850,11853]],[[11863,11852,11864]],[[11848,11841,11846]],[[11860,11864,11847]],[[11857,11828,11852]],[[11833,11865,11834]],[[11840,11866,11841]],[[11834,11865,11835]],[[11866,11867,11841]],[[11856,11865,11868]],[[11865,11855,11869]],[[11841,11867,11846]],[[11866,11870,11854]],[[11871,11859,11872]],[[11843,11855,11829]],[[11873,11870,11866]],[[11870,11855,11854]],[[11863,11859,11871]],[[11872,11837,11871]],[[11836,11871,11837]],[[11836,11852,11863]],[[11873,11868,11870]],[[11869,11855,11870]],[[11867,11860,11846]],[[11867,11861,11860]],[[11858,11862,11829]],[[11858,11836,11862]],[[11865,11856,11835]],[[11840,11831,11856]],[[11847,11864,11852]],[[11860,11859,11864]],[[11859,11863,11864]],[[11871,11836,11863]],[[11833,11832,11830]],[[11842,11851,11832]],[[11861,11854,11845]],[[11861,11866,11854]],[[11872,11844,11837]],[[11874,11845,11844]],[[11862,11838,11843]],[[11837,11844,11843]],[[11849,11828,11830]],[[11858,11829,11828]],[[11832,11849,11830]],[[11851,11853,11849]],[[11856,11868,11840]],[[11869,11870,11868]],[[11840,11873,11866]],[[11840,11868,11873]],[[11872,11874,11844]],[[11872,11859,11861]],[[11872,11861,11874]],[[11867,11866,11861]],[[11843,11845,11855]],[[11874,11861,11845]],[[11868,11865,11869]],[[11833,11855,11865]],[[11862,11843,11829]],[[11838,11837,11843]],[[11860,11847,11846]],[[11852,11850,11847]],[[11836,11857,11852]],[[11836,11858,11857]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e26eb7a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11875,11876,11877]],[[11878,11877,11879]],[[11880,11881,11882]],[[11881,11876,11883]],[[11879,11884,11885]],[[11886,11876,11881]],[[11878,11883,11877]],[[11882,11881,11883]],[[11887,11884,11879]],[[11887,11886,11885]],[[11880,11885,11881]],[[11884,11887,11885]],[[11878,11880,11882]],[[11879,11885,11880]],[[11885,11886,11881]],[[11887,11876,11886]],[[11880,11878,11879]],[[11882,11883,11878]],[[11883,11875,11877]],[[11883,11876,11875]],[[11888,11876,11887]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2823ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11889,11890,11891]],[[11892,11890,11889]],[[11892,11893,11894]],[[11895,11896,11897]],[[11898,11892,11889]],[[11899,11900,11901]],[[11891,11890,11902]],[[11892,11894,11890]],[[11894,11902,11890]],[[11895,11903,11896]],[[11894,11895,11902]],[[11893,11892,11898]],[[11893,11903,11895]],[[11897,11904,11905]],[[11906,11889,11907]],[[11906,11898,11889]],[[11908,11896,11903]],[[11909,11900,11910]],[[11908,11898,11906]],[[11908,11903,11898]],[[11889,11891,11905]],[[11902,11895,11897]],[[11902,11897,11891]],[[11910,11900,11899]],[[11889,11905,11907]],[[11911,11897,11905]],[[11896,11909,11897]],[[11896,11908,11909]],[[11894,11893,11895]],[[11898,11903,11893]],[[11897,11909,11904]],[[11908,11900,11909]],[[11891,11911,11905]],[[11891,11897,11911]],[[11907,11899,11901]],[[11905,11904,11910]],[[11905,11910,11899]],[[11904,11909,11910]],[[11906,11907,11901]],[[11905,11899,11907]],[[11912,11900,11908]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e28998c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11913,11914,11915]],[[11916,11917,11918]],[[11919,11920,11921]],[[11922,11923,11924]],[[11925,11926,11927]],[[11924,11914,11927]],[[11928,11929,11930]],[[11931,11915,11932]],[[11933,11934,11935]],[[11926,11922,11936]],[[11935,11934,11937]],[[11938,11939,11940]],[[11918,11917,11927]],[[11916,11937,11941]],[[11936,11922,11924]],[[11923,11926,11942]],[[11928,11930,11939]],[[11915,11914,11932]],[[11921,11920,11943]],[[11933,11914,11944]],[[11920,11919,11945]],[[11945,11946,11920]],[[11919,11947,11945]],[[11913,11944,11914]],[[11948,11949,11946]],[[11949,11944,11950]],[[11927,11926,11936]],[[11951,11941,11929]],[[11952,11953,11915]],[[11913,11950,11944]],[[11931,11952,11915]],[[11943,11920,11950]],[[11922,11926,11923]],[[11926,11925,11942]],[[11946,11950,11920]],[[11949,11933,11944]],[[11946,11949,11950]],[[11954,11934,11933]],[[11936,11924,11927]],[[11932,11914,11924]],[[11917,11925,11927]],[[11941,11937,11929]],[[11934,11919,11955]],[[11938,11940,11932]],[[11955,11919,11939]],[[11952,11931,11940]],[[11923,11928,11938]],[[11929,11937,11934]],[[11923,11929,11928]],[[11951,11925,11941]],[[11953,11913,11915]],[[11953,11921,11913]],[[11913,11943,11950]],[[11913,11921,11943]],[[11924,11923,11932]],[[11942,11951,11923]],[[11946,11947,11948]],[[11946,11945,11947]],[[11934,11948,11947]],[[11954,11949,11948]],[[11940,11931,11932]],[[11940,11939,11952]],[[11952,11919,11921]],[[11956,11930,11929]],[[11919,11952,11939]],[[11921,11953,11952]],[[11923,11938,11932]],[[11928,11939,11938]],[[11929,11934,11956]],[[11956,11934,11955]],[[11923,11951,11929]],[[11942,11925,11951]],[[11919,11934,11947]],[[11937,11916,11935]],[[11918,11935,11916]],[[11918,11933,11935]],[[11934,11954,11948]],[[11933,11949,11954]],[[11917,11941,11925]],[[11917,11916,11941]],[[11939,11956,11955]],[[11939,11930,11956]],[[11957,11918,11927]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e290e1c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3056,11645,1788]],[[3056,3089,3057]],[[3056,3088,3089]],[[3056,1788,3088]],[[3088,3085,3087]],[[3087,3085,3086]],[[3088,3070,3085]],[[3085,3070,3084]],[[3084,3083,3082]],[[3084,3070,3083]],[[3083,3070,3081]],[[3088,1788,3070]],[[3070,3075,3072]],[[3070,3078,3075]],[[3070,1788,3078]],[[3078,1788,3058]],[[3058,1788,3059]],[[11645,1827,1788]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e29d205-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11958,11959,11960]],[[11961,11962,11963]],[[11964,11965,11966]],[[11967,11968,11969]],[[11969,11970,11971]],[[11972,11973,11959]],[[11969,11968,11974]],[[11975,11959,11976]],[[11972,11977,11978]],[[11967,11963,11962]],[[11979,11971,11958]],[[11970,11980,11981]],[[11970,11965,11964]],[[11981,11982,11975]],[[11983,11984,11985]],[[11984,11967,11969]],[[11970,11969,11974]],[[11967,11962,11968]],[[11970,11974,11980]],[[11968,11962,11974]],[[11964,11966,11958]],[[11976,11959,11958]],[[11973,11961,11963]],[[11973,11978,11961]],[[11985,11984,11969]],[[11983,11967,11984]],[[11965,11981,11966]],[[11981,11980,11982]],[[11979,11958,11960]],[[11966,11976,11958]],[[11985,11979,11960]],[[11971,11964,11958]],[[11977,11962,11978]],[[11962,11961,11978]],[[11969,11971,11979]],[[11970,11964,11971]],[[11977,11972,11982]],[[11978,11973,11972]],[[11966,11981,11976]],[[11965,11970,11981]],[[11979,11985,11969]],[[11960,11983,11985]],[[11975,11972,11959]],[[11982,11980,11977]],[[11981,11975,11976]],[[11982,11972,11975]],[[11974,11977,11980]],[[11974,11962,11977]],[[11986,11959,11973]],[[11987,11988,11960]],[[11960,11988,11983]],[[11959,11987,11960]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2a94ee-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11989,10140,10249]],[[10280,10140,11989]],[[10175,10280,11989]],[[10173,10175,11989]],[[10277,10173,11989]],[[11990,10277,11989]],[[11990,10275,10277]],[[11990,10270,10275]],[[11990,10268,10270]],[[11990,10266,10268]],[[11990,10264,10266]],[[11990,10262,10264]],[[10260,10259,11990]],[[11990,11991,11992]],[[10256,10257,11990]],[[10255,10256,11990]],[[10314,10255,11990]],[[10315,10314,11990]],[[10316,10315,11990]],[[10317,10316,11990]],[[10406,10317,11990]],[[10407,10406,11990]],[[10410,10407,11992]],[[10411,10410,11992]],[[10145,10411,11992]],[[10146,10145,11992]],[[10420,10146,11992]],[[11992,11991,11993]],[[10422,11992,10236]],[[10236,11992,10235]],[[10235,11992,10423]],[[10423,11992,10424]],[[10424,11992,10228]],[[10228,11992,10229]],[[10229,11992,10224]],[[10224,11992,10222]],[[10222,11992,10219]],[[10219,11992,10217]],[[10217,11992,10218]],[[10218,11992,10094]],[[10094,11992,10092]],[[10092,11992,11993]],[[10428,10092,11993]],[[10213,10428,11993]],[[10212,10213,11993]],[[10211,10212,11993]],[[10210,10211,11993]],[[10209,10210,11993]],[[10208,10209,11993]],[[11993,11991,11994]],[[10207,10206,11993]],[[10204,10207,11993]],[[10202,10204,11993]],[[10201,10202,11993]],[[10200,10201,11993]],[[10199,10200,11993]],[[10198,11993,10197]],[[10197,11994,10196]],[[10196,11994,10195]],[[10195,11994,10194]],[[11994,10192,10193]],[[11994,10191,10192]],[[11994,10190,10191]],[[11994,10189,10190]],[[11994,10188,10189]],[[11994,11995,10188]],[[10188,11995,10187]],[[10187,11995,10186]],[[10186,11995,10185]],[[10185,11995,10184]],[[10184,11995,10183]],[[11995,10180,10182]],[[11995,11989,10299]],[[10180,11995,10181]],[[10181,11995,10302]],[[10302,11995,10299]],[[10299,11989,10300]],[[10300,11989,10296]],[[10296,11989,10294]],[[10294,11989,10291]],[[10291,11989,10178]],[[10178,11989,10176]],[[10176,11989,10287]],[[11989,10308,10288]],[[11989,10254,10308]],[[11989,10282,10254]],[[11989,10137,10282]],[[11989,10251,10137]],[[11989,10281,10251]],[[11989,10249,10281]],[[10198,10199,11993]],[[11990,10259,10262]],[[10194,11994,10193]],[[11991,11989,11994]],[[10421,11992,10422]],[[10421,10420,11992]],[[10287,11989,10288]],[[11991,11990,11989]],[[10197,11993,11994]],[[10206,10208,11993]],[[10183,11995,10182]],[[11994,11989,11995]],[[10407,11990,11992]],[[10257,10260,11990]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2dc9d5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11996,11997,11998]],[[11999,12000,12001]],[[12002,12003,12004]],[[12002,12000,12003]],[[12005,12006,12000]],[[12007,12006,12005]],[[12005,12000,12008]],[[12006,12009,12010]],[[12011,12012,12006]],[[12001,12000,12004]],[[12000,12010,12003]],[[12004,12000,12002]],[[12013,12014,12015]],[[11999,12016,12000]],[[12017,11997,12015]],[[12008,12013,12015]],[[12016,12017,12014]],[[11996,12008,12015]],[[12013,12016,12014]],[[12000,12013,12008]],[[12000,12016,12013]],[[11996,12015,11997]],[[12014,12017,12015]],[[12007,12005,11996]],[[12006,12012,12009]],[[12018,12007,11998]],[[12019,12011,12007]],[[12000,12006,12010]],[[12007,12011,12006]],[[12018,12019,12007]],[[12018,12011,12019]],[[12007,11996,11998]],[[12005,12008,11996]],[[11999,12017,12016]],[[11999,11997,12017]],[[12020,11997,11999]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2e8cb2-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12021,12022,12023]],[[12024,12025,12026]],[[12027,12028,12029]],[[12030,12022,12031]],[[12026,12025,12030]],[[12032,12030,12025]],[[12033,12034,12035]],[[12036,12037,12038]],[[12039,12040,12041]],[[12035,12042,12043]],[[12039,12041,12044]],[[12033,12035,12038]],[[12045,12035,12034]],[[12045,12042,12035]],[[12040,12039,12037]],[[12046,12042,12030]],[[12047,12048,12049]],[[12038,12035,12043]],[[12025,12027,12029]],[[12043,12042,12046]],[[12046,12030,12032]],[[12042,12022,12030]],[[12045,12041,12023]],[[12045,12034,12041]],[[12050,12051,12049]],[[12052,12041,12040]],[[12041,12051,12023]],[[12053,12022,12054]],[[12051,12050,12054]],[[12055,12056,12027]],[[12057,12053,12054]],[[12057,12058,12059]],[[12027,12047,12028]],[[12056,12055,12048]],[[12024,12027,12025]],[[12056,12047,12027]],[[12047,12060,12028]],[[12049,12048,12061]],[[12029,12046,12032]],[[12028,12043,12046]],[[12059,12061,12048]],[[12049,12062,12050]],[[12057,12063,12024]],[[12055,12027,12063]],[[12038,12039,12044]],[[12037,12060,12052]],[[12047,12049,12052]],[[12052,12051,12041]],[[12064,12050,12062]],[[12054,12021,12051]],[[12060,12036,12065]],[[12038,12044,12033]],[[12056,12048,12047]],[[12059,12063,12057]],[[12055,12059,12048]],[[12064,12062,12061]],[[12060,12047,12052]],[[12061,12062,12049]],[[12061,12058,12064]],[[12057,12054,12050]],[[12041,12033,12044]],[[12041,12034,12033]],[[12057,12024,12066]],[[12063,12027,12024]],[[12058,12050,12064]],[[12058,12057,12050]],[[12037,12052,12040]],[[12049,12051,12052]],[[12067,12031,12022]],[[12067,12066,12031]],[[12053,12067,12022]],[[12066,12024,12031]],[[12025,12029,12032]],[[12028,12046,12029]],[[12065,12036,12038]],[[12037,12039,12038]],[[12043,12065,12038]],[[12060,12037,12036]],[[12028,12065,12043]],[[12028,12060,12065]],[[12053,12066,12067]],[[12053,12057,12066]],[[12061,12059,12058]],[[12055,12063,12059]],[[12031,12026,12030]],[[12031,12024,12026]],[[12051,12021,12023]],[[12054,12022,12021]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e2f4faa-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12068,12069,12070]],[[12071,12072,12073]],[[12074,12075,12076]],[[12077,12078,12068]],[[12079,12080,12081]],[[12082,12083,12084]],[[12085,12086,12087]],[[12078,12088,12089]],[[12081,12090,12091]],[[12086,12091,12092]],[[12077,12093,12087]],[[12087,12092,12088]],[[12094,12085,12095]],[[12096,12086,12085]],[[12097,12073,12098]],[[12076,12075,12099]],[[12100,12071,12097]],[[12101,12074,12076]],[[12086,12079,12091]],[[12102,12103,12104]],[[12105,12076,12103]],[[12101,12106,12107]],[[12100,12098,12070]],[[12073,12108,12094]],[[12109,12071,12100]],[[12071,12073,12097]],[[12098,12068,12070]],[[12094,12095,12093]],[[12088,12077,12087]],[[12093,12095,12087]],[[12084,12091,12090]],[[12090,12110,12084]],[[12085,12087,12095]],[[12086,12092,12087]],[[12111,12099,12112]],[[12104,12112,12113]],[[12104,12111,12112]],[[12075,12112,12099]],[[12079,12105,12080]],[[12076,12099,12111]],[[12081,12102,12090]],[[12113,12083,12082]],[[12110,12104,12113]],[[12102,12080,12103]],[[12114,12078,12069]],[[12088,12092,12089]],[[12077,12088,12078]],[[12092,12091,12089]],[[12083,12112,12107]],[[12112,12075,12074]],[[12109,12106,12071]],[[12107,12074,12101]],[[12115,12109,12070]],[[12115,12106,12109]],[[12107,12115,12070]],[[12107,12106,12115]],[[12094,12108,12085]],[[12108,12072,12116]],[[12116,12072,12101]],[[12071,12106,12072]],[[12105,12101,12076]],[[12072,12106,12101]],[[12079,12081,12091]],[[12080,12102,12081]],[[12068,12114,12069]],[[12068,12078,12114]],[[12098,12094,12068]],[[12098,12073,12094]],[[12089,12084,12083]],[[12089,12091,12084]],[[12069,12089,12083]],[[12069,12078,12089]],[[12110,12102,12104]],[[12110,12090,12102]],[[12109,12100,12070]],[[12097,12098,12100]],[[12096,12079,12086]],[[12096,12116,12079]],[[12079,12116,12105]],[[12108,12073,12072]],[[12080,12105,12103]],[[12116,12101,12105]],[[12103,12111,12104]],[[12103,12076,12111]],[[12107,12112,12074]],[[12083,12113,12112]],[[12068,12093,12077]],[[12068,12094,12093]],[[12110,12082,12084]],[[12110,12113,12082]],[[12096,12108,12116]],[[12096,12085,12108]],[[12083,12117,12069]],[[12118,12107,12070]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3061e0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10364,10533,10358]],[[10533,10367,10358]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3061ec-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12119,12120,12121]],[[12119,12121,12122]],[[12122,12121,12123]],[[12123,12121,12124]],[[12124,12121,12125]],[[12125,12121,12126]],[[12126,12121,12127]],[[12127,12121,12128]],[[12128,12121,12129]],[[12129,12121,12130]],[[12130,12121,12131]],[[12131,12121,12132]],[[12132,12121,12133]],[[12133,12121,12134]],[[12134,12121,12135]],[[12135,12121,12136]],[[12136,12121,12137]],[[12137,12121,12138]],[[12138,12121,12139]],[[12139,12121,12140]],[[12140,12121,12141]],[[12141,12121,12142]],[[12120,12143,12121]],[[12144,12142,12121]],[[12145,12121,12146]],[[12146,12121,12147]],[[12147,12121,12148]],[[12148,12121,12149]],[[12149,12121,12150]],[[12150,12121,12151]],[[12151,12121,12152]],[[12152,12121,12153]],[[12145,12144,12121]],[[12154,12121,12155]],[[12155,12121,12156]],[[12156,12121,12157]],[[12157,12121,12158]],[[12158,12121,12159]],[[12159,12121,12160]],[[12160,12121,12161]],[[12161,12121,12162]],[[12162,12121,12163]],[[12163,12121,12164]],[[12121,12143,12165]],[[12166,12121,12167]],[[12167,12121,12168]],[[12168,12121,12169]],[[12169,12121,12170]],[[12170,12121,12171]],[[12171,12121,12172]],[[12172,12121,12173]],[[12173,12121,12174]],[[12174,12121,12175]],[[12175,12121,12176]],[[12176,12121,12177]],[[12177,12121,12178]],[[12178,12121,12179]],[[12179,12121,12180]],[[12180,12121,12181]],[[12181,12121,12182]],[[12182,12121,12183]],[[12184,12182,12183]],[[12185,12184,12183]],[[12186,12185,12183]],[[12187,12186,12183]],[[12188,12187,12183]],[[12189,12188,12183]],[[12190,12189,12183]],[[12191,12190,12183]],[[12192,12191,12183]],[[12193,12192,12183]],[[12194,12193,12183]],[[12183,12121,12195]],[[12196,12183,12197]],[[12197,12183,12198]],[[12198,12183,12199]],[[12199,12183,12200]],[[12200,12183,12201]],[[12201,12183,12202]],[[12202,12183,12203]],[[12203,12183,12204]],[[12204,12183,12205]],[[12205,12183,12206]],[[12206,12183,12195]],[[12195,12121,12207]],[[12207,12121,12208]],[[12208,12121,12209]],[[12209,12121,12165]],[[12164,12121,12166]],[[12154,12153,12121]],[[12210,12183,12196]],[[12210,12194,12183]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e319a5c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12211,1025,12212]],[[12213,1024,1023]],[[12214,12211,1023]],[[12212,1024,12213]],[[1023,12211,12215]],[[1025,1024,12212]],[[12215,12213,1023]],[[12215,12212,12213]],[[1015,12214,1023]],[[1015,1025,12211]],[[12215,12211,12212]],[[12214,1015,12211]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e328488-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12216,12217,3166]],[[12218,12219,12220]],[[12216,12221,12217]],[[12222,12223,12224]],[[12225,12226,12227]],[[12227,3115,3163]],[[12228,12229,12226]],[[12230,12231,12232]],[[12216,12233,12221]],[[12234,12235,12236]],[[12237,12231,12230]],[[12238,3115,12231]],[[12239,12223,12240]],[[12232,3115,12241]],[[12242,12221,12233]],[[12218,12217,12221]],[[12243,12230,12232]],[[12244,12245,12238]],[[12246,12247,12248]],[[12249,12250,12251]],[[12252,12233,12246]],[[12246,12233,12253]],[[12254,12255,12216]],[[12256,12257,12258]],[[12259,12255,12254]],[[12260,3166,12261]],[[12240,12262,3159]],[[12263,12229,12222]],[[12250,12249,12264]],[[12265,12238,12245]],[[12266,12243,12232]],[[12231,3115,12232]],[[12262,12228,3159]],[[12262,12222,12228]],[[12267,12268,12250]],[[12244,12238,12269]],[[12270,12271,12272]],[[12273,3169,12258]],[[12274,12275,12276]],[[12277,12278,12241]],[[12243,12279,12280]],[[12280,12230,12243]],[[12254,12216,3166]],[[12281,12233,12216]],[[3159,12225,3163]],[[12222,12262,12223]],[[12235,12216,12282]],[[12258,12283,12284]],[[12285,12286,12287]],[[12288,12267,12264]],[[12216,12235,12281]],[[12216,12255,12289]],[[12262,12240,12223]],[[12217,12279,12275]],[[12217,12290,12279]],[[12291,12237,12230]],[[12237,12292,12269]],[[12238,12231,12269]],[[12217,12240,3159]],[[12217,12275,12240]],[[12290,12292,12237]],[[12217,12245,12292]],[[12285,12265,12245]],[[12217,12293,12245]],[[12241,12276,12266]],[[12275,12279,12243]],[[3170,12261,3166]],[[3170,3169,12261]],[[12294,12247,12295]],[[12296,12238,12295]],[[12297,12298,12296]],[[12297,12296,12247]],[[12298,12299,12296]],[[12256,3169,12296]],[[12289,12256,12282]],[[12236,12235,12282]],[[12283,12259,12254]],[[12257,12255,12259]],[[12300,12221,12294]],[[12301,12252,12246]],[[12267,12288,12268]],[[12264,12249,12295]],[[12302,12295,12238]],[[12247,12296,12295]],[[12288,12264,12295]],[[12267,12250,12264]],[[12249,12300,12294]],[[12294,12301,12248]],[[12253,12297,12247]],[[3169,12238,12296]],[[3115,12224,12277]],[[12278,12303,12274]],[[12289,12257,12256]],[[12299,12281,12234]],[[12233,12297,12253]],[[12281,12299,12298]],[[12281,12297,12233]],[[12281,12298,12297]],[[12251,12218,12221]],[[12268,12219,12218]],[[12274,12276,12241]],[[12275,12243,12266]],[[12294,12304,12301]],[[12304,12242,12301]],[[12301,12246,12248]],[[12253,12247,12246]],[[12236,12282,12256]],[[12258,3169,12256]],[[12216,12289,12282]],[[12255,12257,12289]],[[12299,12256,12296]],[[12299,12236,12256]],[[12259,12258,12257]],[[12284,12305,12258]],[[12219,12268,12302]],[[12302,12268,12288]],[[12241,12266,12232]],[[12276,12275,12266]],[[12219,12302,12220]],[[12302,12238,12265]],[[12293,12285,12245]],[[12287,12220,12265]],[[12280,12291,12230]],[[12290,12217,12292]],[[12280,12290,12291]],[[12280,12279,12290]],[[12270,12254,3166]],[[12272,12284,12283]],[[12272,12283,12254]],[[12258,12259,12283]],[[12292,12244,12269]],[[12292,12245,12244]],[[12228,12225,3159]],[[12228,12226,12225]],[[3169,12306,12261]],[[12270,3166,12260]],[[12261,12306,12260]],[[12272,12254,12270]],[[12307,12306,12273]],[[12307,12260,12306]],[[12305,12273,12258]],[[12306,3169,12273]],[[12270,12307,12305]],[[12270,12260,12307]],[[12271,12305,12284]],[[12307,12273,12305]],[[12272,12271,12284]],[[12270,12305,12271]],[[12221,12304,12294]],[[12221,12242,12304]],[[12227,12263,3115]],[[12278,12274,12241]],[[12263,12222,12224]],[[12229,12228,12222]],[[3115,12277,12241]],[[12239,12240,12277]],[[12224,12239,12277]],[[12224,12223,12239]],[[12225,12227,3163]],[[12263,12224,3115]],[[12220,12302,12265]],[[12288,12295,12302]],[[12300,12249,12251]],[[12268,12218,12250]],[[12218,12286,12217]],[[12218,12220,12287]],[[12285,12287,12265]],[[12286,12218,12287]],[[12252,12242,12233]],[[12252,12301,12242]],[[12299,12234,12236]],[[12281,12235,12234]],[[12300,12251,12221]],[[12250,12218,12251]],[[12286,12293,12217]],[[12286,12285,12293]],[[12247,12294,12248]],[[12295,12249,12294]],[[12226,12263,12227]],[[12226,12229,12263]],[[12231,12237,12269]],[[12291,12290,12237]],[[12308,12278,12277]],[[12308,12303,12278]],[[12240,12308,12277]],[[12303,12275,12274]],[[12240,12303,12308]],[[12240,12275,12303]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e33202e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12309,12310,12311]],[[12312,12313,12314]],[[12315,7831,12316]],[[12317,12318,12319]],[[12320,12317,12321]],[[12322,12320,12321]],[[12321,12317,12323]],[[12324,12318,12317]],[[12316,7831,7832]],[[12325,12326,12327]],[[12328,12329,12330]],[[12327,12316,7832]],[[12331,12332,12333]],[[12334,12335,12336]],[[12337,12338,8060]],[[12339,7856,7867]],[[12340,7820,7856]],[[12341,7821,7820]],[[8055,12342,7867]],[[12343,12344,12345]],[[12346,12347,12348]],[[12349,12350,7856]],[[12351,12352,8060]],[[12338,8055,8060]],[[12353,12327,7832]],[[12324,12354,12355]],[[12350,12340,7856]],[[12356,7820,12340]],[[7831,12314,12357]],[[12333,8060,7831]],[[12358,12359,12341]],[[12359,7821,12341]],[[12360,12361,7856]],[[12349,12361,12362]],[[12338,12344,8055]],[[12309,12342,8055]],[[12363,12364,12365]],[[12366,12365,12367]],[[12363,12368,12369]],[[12370,12371,12372]],[[12361,12349,7856]],[[12362,12373,12374]],[[12375,12356,12340]],[[12356,12376,12358]],[[12377,12343,12378]],[[12338,12368,12379]],[[12332,12380,12333]],[[12352,12369,8060]],[[12381,12382,12383]],[[12384,12385,12364]],[[12386,12332,12331]],[[12387,12382,12381]],[[12388,12374,12340]],[[12389,12356,12375]],[[12353,12390,12391]],[[12392,12393,12317]],[[12354,12329,12394]],[[12354,12324,12317]],[[12326,12395,12396]],[[12317,12319,12323]],[[12327,12326,12396]],[[12325,12330,12397]],[[12338,12345,12344]],[[12338,12398,12345]],[[12336,8055,12399]],[[12374,12400,12340]],[[12357,12401,12331]],[[12381,12402,12403]],[[12339,12360,7856]],[[12339,12370,12360]],[[12350,12362,12340]],[[12362,12361,12373]],[[12404,12389,12400]],[[12376,12359,12358]],[[12405,12390,7832]],[[12391,12330,12325]],[[12401,12386,12331]],[[12401,12313,12387]],[[7820,12358,12341]],[[12406,7821,12359]],[[12365,12407,12367]],[[12408,12409,12347]],[[12337,12368,12338]],[[12369,12352,12384]],[[12351,12384,12352]],[[12380,12332,12381]],[[12410,12312,12320]],[[12313,12382,12387]],[[12331,12333,7831]],[[12351,8060,12333]],[[12400,12375,12340]],[[12400,12389,12375]],[[12356,12358,7820]],[[12356,12389,12376]],[[12395,12411,12396]],[[12412,12317,12320]],[[12413,12414,12415]],[[12315,12416,12314]],[[12396,12316,12327]],[[12396,12411,12316]],[[12417,12310,12418]],[[12361,12360,12370]],[[12313,12419,12382]],[[12420,12403,12421]],[[12344,12399,8055]],[[12422,12367,12407]],[[12423,12339,7867]],[[12424,12407,12425]],[[12426,12311,12417]],[[12409,12309,12311]],[[12309,12336,12310]],[[12309,8055,12336]],[[7831,12357,12331]],[[12416,12315,12316]],[[12326,12325,12397]],[[12394,12427,12354]],[[12428,12403,12429]],[[12335,12310,12336]],[[12430,12431,12432]],[[12372,12361,12370]],[[12346,12371,12423]],[[12370,12339,12371]],[[12347,12409,12426]],[[12342,12309,12409]],[[12342,12408,7867]],[[12342,12409,12408]],[[12380,12385,12384]],[[12425,12407,12365]],[[12351,12380,12384]],[[12351,12333,12380]],[[12412,12414,12317]],[[12414,12392,12317]],[[12432,12377,12378]],[[12422,12424,12428]],[[12420,12433,12425]],[[12421,12428,12433]],[[12431,12428,12429]],[[12418,12434,12417]],[[12410,12435,12312]],[[12435,12436,12419]],[[12431,12418,12437]],[[12438,12439,12348]],[[7832,12390,12353]],[[12328,12394,12329]],[[12440,12441,12404]],[[12376,12389,12404]],[[12348,12347,12438]],[[12442,12434,12443]],[[12408,12444,7867]],[[12408,12347,12444]],[[12384,12364,12369]],[[12425,12433,12424]],[[12337,12369,12368]],[[12337,8060,12369]],[[12385,12425,12364]],[[12385,12420,12425]],[[12426,12417,12442]],[[12440,12404,12400]],[[12439,12441,12373]],[[12406,12404,12441]],[[12445,12398,12338]],[[12445,12338,12379]],[[12383,12402,12381]],[[12446,12403,12402]],[[12380,12381,12385]],[[12387,12386,12401]],[[12332,12387,12381]],[[12332,12386,12387]],[[12431,12434,12418]],[[12406,12441,12434]],[[12442,12438,12347]],[[12443,12439,12438]],[[12442,12417,12434]],[[12311,12310,12417]],[[12378,12343,12398]],[[12445,12379,12366]],[[12377,12432,12431]],[[12430,12367,12431]],[[12430,12447,12366]],[[12379,12368,12366]],[[12367,12430,12366]],[[12447,12398,12445]],[[12366,12447,12445]],[[12378,12398,12447]],[[12431,12422,12428]],[[12431,12367,12422]],[[12357,12314,12401]],[[12312,12419,12313]],[[12401,12314,12313]],[[7831,12315,12314]],[[12429,12410,12322]],[[12312,12415,12412]],[[12419,12436,12382]],[[12382,12446,12383]],[[12436,12446,12382]],[[12436,12435,12446]],[[12327,12391,12325]],[[12390,12405,12328]],[[12353,12391,12327]],[[12390,12330,12391]],[[12322,12410,12320]],[[12429,12446,12435]],[[12347,12426,12442]],[[12409,12311,12426]],[[12444,12423,7867]],[[12371,12339,12423]],[[12420,12421,12433]],[[12403,12428,12421]],[[12335,12448,12437]],[[12399,12344,12343]],[[12398,12343,12345]],[[12377,12449,12343]],[[12310,12335,12418]],[[12399,12343,12449]],[[12449,12448,12334]],[[12437,12377,12431]],[[12334,12448,12335]],[[12449,12377,12448]],[[12395,12414,12411]],[[12395,12397,12392]],[[12326,12397,12395]],[[12330,12329,12393]],[[12378,12430,12432]],[[12378,12447,12430]],[[12428,12424,12433]],[[12422,12407,12424]],[[12335,12437,12418]],[[12448,12377,12437]],[[12390,12328,12330]],[[12405,12394,12328]],[[12406,12376,12404]],[[12406,12359,12376]],[[12381,12420,12385]],[[12381,12403,12420]],[[12314,12415,12312]],[[12413,12411,12414]],[[12411,12413,12316]],[[12415,12314,12416]],[[12416,12413,12415]],[[12416,12316,12413]],[[12312,12412,12320]],[[12415,12414,12412]],[[12395,12392,12414]],[[12397,12330,12393]],[[12355,12354,12427]],[[12393,12329,12354]],[[12317,12393,12354]],[[12392,12397,12393]],[[12371,12348,12372]],[[12346,12444,12347]],[[12406,12431,12429]],[[12406,12434,12431]],[[12348,12439,12372]],[[12434,12441,12439]],[[12372,12373,12361]],[[12372,12439,12373]],[[12340,12362,12388]],[[12350,12349,12362]],[[12362,12374,12388]],[[12373,12441,12440]],[[12374,12440,12400]],[[12374,12373,12440]],[[12368,12363,12366]],[[12364,12425,12365]],[[12364,12363,12369]],[[12365,12366,12363]],[[12312,12435,12419]],[[12410,12429,12435]],[[12442,12443,12438]],[[12434,12439,12443]],[[12383,12446,12402]],[[12429,12403,12446]],[[12399,12334,12336]],[[12399,12449,12334]],[[12444,12346,12423]],[[12348,12371,12346]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e336e96-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12450,12451,12452]],[[12453,12452,12454]],[[12455,12456,12457]],[[12456,12451,12458]],[[12458,12459,12457]],[[12458,12451,12460]],[[12459,12455,12457]],[[12461,12451,12456]],[[12462,12463,12453]],[[12462,12456,12455]],[[12461,12462,12454]],[[12461,12456,12462]],[[12453,12464,12452]],[[12463,12455,12464]],[[12465,12455,12459]],[[12463,12462,12455]],[[12462,12453,12454]],[[12463,12464,12453]],[[12464,12465,12450]],[[12464,12455,12465]],[[12450,12460,12451]],[[12465,12459,12460]],[[12459,12458,12460]],[[12457,12456,12458]],[[12464,12450,12452]],[[12465,12460,12450]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e33bd04-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12466,12467,12468]],[[11826,12469,12470]],[[11814,12471,11808]],[[12469,11809,12472]],[[12473,12474,12475]],[[12476,11826,12470]],[[12476,11814,11826]],[[12471,12477,11808]],[[12478,12479,12475]],[[12480,12481,12482]],[[12483,12472,12468]],[[12467,12477,12468]],[[12479,12473,12475]],[[12484,12485,12481]],[[12470,12469,12468]],[[12472,12466,12468]],[[12484,12480,12467]],[[12482,12477,12467]],[[12469,12472,12483]],[[11809,12486,12472]],[[12473,12485,12474]],[[12481,12480,12484]],[[12472,12486,12466]],[[11809,12473,12479]],[[12468,12469,12483]],[[11826,11809,12469]],[[12478,12467,12466]],[[12475,12474,12484]],[[12475,12484,12467]],[[12474,12485,12484]],[[12481,12473,11809]],[[12481,12485,12473]],[[12467,12478,12475]],[[12466,12486,12478]],[[12480,12482,12467]],[[11808,12477,12482]],[[11808,12481,11809]],[[11808,12482,12481]],[[12476,12471,11814]],[[12476,12477,12471]],[[12486,12479,12478]],[[12486,11809,12479]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e34317c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1aa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12487,12488,12489]],[[12490,12491,12492]],[[12488,12491,12489]],[[12493,12489,12491]],[[12494,12495,12496]],[[12497,12493,12491]],[[12490,12498,12491]],[[12499,12500,12501]],[[12490,12499,12498]],[[12502,12493,12497]],[[12500,12503,12504]],[[12500,12499,12503]],[[12498,12497,12491]],[[12498,12499,12501]],[[12505,12506,12495]],[[12502,12501,12507]],[[12504,12492,12488]],[[12504,12503,12490]],[[12487,12508,12509]],[[12492,12491,12488]],[[12504,12490,12492]],[[12503,12499,12490]],[[12501,12496,12510]],[[12507,12493,12502]],[[12511,12512,12513]],[[12508,12514,12515]],[[12494,12505,12495]],[[12515,12506,12505]],[[12511,12504,12512]],[[12514,12506,12515]],[[12498,12502,12497]],[[12510,12496,12516]],[[12515,12494,12496]],[[12515,12505,12494]],[[12506,12516,12495]],[[12516,12493,12507]],[[12498,12501,12502]],[[12500,12496,12501]],[[12501,12510,12507]],[[12496,12495,12516]],[[12510,12516,12507]],[[12506,12493,12516]],[[12496,12500,12511]],[[12504,12488,12512]],[[12496,12511,12515]],[[12512,12488,12487]],[[12513,12509,12515]],[[12513,12512,12509]],[[12509,12508,12515]],[[12509,12512,12487]],[[12515,12511,12513]],[[12500,12504,12511]],[[12514,12487,12489]],[[12514,12508,12487]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e347fd5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12517,12518,12519]],[[12520,12521,12522]],[[12523,12524,12525]],[[12520,12526,12527]],[[12519,12518,12524]],[[12517,12528,12527]],[[12523,12520,12522]],[[12524,12518,12525]],[[12520,12525,12526]],[[12520,12523,12525]],[[12517,12526,12518]],[[12525,12518,12526]],[[12519,12523,12522]],[[12519,12524,12523]],[[12521,12527,12528]],[[12521,12520,12527]],[[12526,12517,12527]],[[12519,12528,12517]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e34ce31-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12529,12530,12531]],[[12529,12531,12532]],[[12533,12534,12535]],[[12530,12536,12531]],[[12535,12529,12532]],[[12534,12537,12530]],[[12538,12533,12532]],[[12534,12529,12535]],[[12533,12537,12534]],[[12538,12536,12537]],[[12532,12533,12535]],[[12538,12537,12533]],[[12534,12530,12529]],[[12537,12536,12530]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e362de1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12539,3111,12540]],[[12541,3046,3104]],[[12542,12543,12541]],[[3046,12544,3047]],[[12545,12546,12547]],[[12548,12549,12550]],[[12551,12552,12553]],[[12554,12555,12556]],[[12557,12558,12559]],[[12560,12561,12562]],[[12563,12564,3099]],[[12565,12470,12566]],[[12567,12550,12568]],[[12569,12476,12570]],[[12571,12547,12546]],[[12572,12476,12470]],[[12573,12468,12574]],[[12550,12549,12568]],[[12575,12576,12564]],[[12577,12578,12579]],[[12578,12580,12581]],[[12567,12549,12580]],[[12563,12567,12580]],[[12563,12577,12579]],[[12564,12553,3099]],[[12581,12576,12578]],[[12582,12583,12559]],[[12552,12559,12558]],[[12576,12575,12584]],[[12579,12584,12575]],[[12585,12586,12587]],[[12578,12576,12584]],[[12587,12559,12588]],[[12588,12589,12585]],[[12588,12559,12589]],[[12576,12582,12564]],[[12589,12590,12551]],[[12551,12590,12552]],[[12589,12559,12552]],[[12556,12555,12591]],[[12556,12592,12561]],[[12567,12554,12550]],[[12567,12591,12554]],[[12553,12552,12558]],[[12590,12589,12552]],[[12592,12556,12591]],[[12556,12561,12554]],[[12567,12563,3099]],[[12579,12575,12563]],[[12591,12567,3099]],[[12568,12549,12567]],[[12585,12593,12586]],[[12585,12564,12593]],[[12564,12582,12593]],[[12582,12559,12586]],[[12594,12582,12576]],[[12586,12593,12582]],[[12595,12591,3099]],[[12555,12554,12591]],[[12579,12578,12584]],[[12580,12549,12581]],[[12580,12577,12563]],[[12580,12578,12577]],[[12585,12587,12588]],[[12586,12559,12587]],[[12575,12564,12563]],[[12585,12551,12564]],[[12564,12551,12553]],[[12585,12589,12551]],[[12596,12597,12571]],[[12598,3111,12539]],[[12565,12599,12470]],[[12600,12601,12602]],[[12603,12604,12539]],[[12603,12605,12604]],[[12606,12594,12468]],[[12581,12549,12607]],[[12541,12543,12608]],[[12609,12610,12611]],[[12612,12613,12596]],[[12597,12614,12571]],[[3103,12612,3104]],[[12612,12476,12569]],[[12615,12606,12468]],[[12604,12477,12616]],[[12558,12557,3111]],[[12615,12468,12617]],[[12559,12583,12557]],[[12468,12477,12604]],[[12546,12545,12539]],[[12547,12598,12545]],[[12477,12546,12616]],[[12477,12571,12546]],[[12557,12583,12618]],[[12582,12594,12583]],[[12619,12620,12565]],[[12570,12543,12569]],[[3093,12544,12610]],[[3093,3047,12544]],[[12621,12622,12623]],[[12624,12625,12544]],[[12626,12627,12628]],[[12629,3093,12609]],[[12630,12631,12632]],[[12599,12633,12634]],[[12546,12539,12616]],[[12545,12598,12539]],[[12619,12635,12620]],[[12626,12636,12637]],[[12562,12592,12630]],[[12621,12627,12638]],[[12639,12632,12640]],[[12641,12637,12642]],[[12574,12594,12581]],[[12606,12583,12594]],[[12599,12634,12636]],[[12636,12643,12637]],[[12574,12581,12644]],[[12594,12576,12581]],[[12607,12602,12644]],[[12600,12468,12573]],[[12644,12602,12601]],[[12566,12562,12645]],[[12646,12561,12560]],[[12646,12554,12561]],[[12600,12647,12648]],[[12646,12550,12554]],[[12648,12646,12560]],[[12647,12548,12646]],[[12571,12614,12547]],[[12614,3111,12598]],[[12468,12600,12470]],[[12602,12607,12548]],[[12648,12647,12646]],[[12600,12602,12548]],[[12595,12631,12630]],[[12632,12639,12630]],[[12573,12574,12644]],[[12468,12594,12574]],[[12618,12615,12617]],[[12583,12606,12615]],[[12649,12650,12651]],[[12541,3104,12542]],[[12611,12610,12572]],[[12652,12608,12543]],[[12611,12622,12609]],[[12609,3093,12610]],[[12621,12628,12627]],[[12623,12622,12611]],[[12477,12596,12571]],[[12613,12614,12597]],[[12646,12548,12550]],[[12647,12600,12548]],[[12557,12605,12540]],[[12617,12468,12604]],[[12539,12604,12616]],[[12605,12617,12604]],[[12562,12566,12560]],[[12470,12600,12648]],[[12638,12609,12622]],[[12638,12627,12629]],[[12645,12619,12565]],[[12562,12635,12619]],[[12561,12592,12562]],[[12591,12595,12592]],[[12581,12607,12644]],[[12549,12548,12607]],[[3104,12612,12569]],[[3103,12613,12612]],[[12601,12573,12644]],[[12601,12600,12573]],[[12544,12651,12610]],[[12544,12608,12624]],[[12625,12624,12476]],[[12625,12651,12544]],[[12650,12649,12476]],[[12650,12610,12651]],[[12624,12652,12476]],[[12624,12608,12652]],[[12640,12643,12634]],[[12653,3093,12643]],[[12626,12641,12627]],[[12642,3093,12629]],[[12470,12599,12626]],[[12599,12620,12633]],[[12638,12629,12609]],[[12627,12641,12642]],[[12639,12633,12620]],[[12634,12643,12636]],[[12572,12623,12611]],[[12470,12626,12628]],[[12470,12623,12572]],[[12470,12628,12623]],[[12622,12621,12638]],[[12623,12628,12621]],[[12572,12650,12476]],[[12572,12610,12650]],[[12569,12542,3104]],[[12569,12543,12542]],[[12631,12595,12653]],[[12653,12643,12640]],[[12566,12645,12565]],[[12562,12619,12645]],[[12652,12570,12476]],[[12652,12543,12570]],[[12639,12640,12633]],[[12633,12640,12634]],[[12626,12599,12636]],[[12565,12620,12599]],[[12540,12603,12539]],[[12540,12605,12603]],[[12547,12614,12598]],[[12613,3111,12614]],[[12635,12639,12620]],[[12635,12630,12639]],[[12605,12557,12617]],[[12540,3111,12557]],[[12544,12541,12608]],[[12544,3046,12541]],[[12596,12613,12597]],[[3103,3111,12613]],[[12476,12596,12477]],[[12476,12612,12596]],[[12557,12618,12617]],[[12583,12615,12618]],[[12649,12625,12476]],[[12649,12651,12625]],[[12631,12653,12632]],[[12595,3099,12653]],[[12632,12653,12640]],[[3099,3093,12653]],[[12562,12630,12635]],[[12592,12595,12630]],[[12626,12637,12641]],[[12643,3093,12637]],[[12627,12642,12629]],[[12637,3093,12642]],[[12566,12648,12560]],[[12566,12470,12648]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e36a37d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10052,12654,10051]],[[12654,10049,10051]],[[12654,10050,10049]],[[12654,10147,10050]],[[12654,10172,10147]],[[12654,10171,10172]],[[12654,10170,10171]],[[12655,10169,10170]],[[12655,10168,10169]],[[12655,10167,10168]],[[12655,10166,10167]],[[12655,10165,10166]],[[10163,10164,12655]],[[12655,12656,12657]],[[10161,12655,10160]],[[10160,12655,10159]],[[10159,12655,10158]],[[10387,12655,12657]],[[10157,10158,12655]],[[10156,10157,12655]],[[10154,10156,12655]],[[10153,10154,12655]],[[10151,10153,12655]],[[10394,10151,12655]],[[10390,10394,12655]],[[10391,10390,12655]],[[10387,10391,12655]],[[10330,10387,12657]],[[10329,10330,12657]],[[10327,10329,12657]],[[10324,10327,12657]],[[12657,12656,12658]],[[10565,12657,10318]],[[10318,12657,10319]],[[10319,12657,10331]],[[10331,12657,10129]],[[10129,12657,12659]],[[10340,10129,12659]],[[10126,10340,12659]],[[12659,12657,12658]],[[10123,10341,12659]],[[10271,10123,12659]],[[10085,10271,12659]],[[10120,10085,12659]],[[10118,10120,12659]],[[10116,10118,12659]],[[12658,12656,12660]],[[10112,12658,10110]],[[10110,12658,10108]],[[10102,12658,12660]],[[10105,10108,12658]],[[10103,12658,10102]],[[10102,12660,10100]],[[10100,12660,10098]],[[10098,12660,10095]],[[10095,12660,10091]],[[10091,12660,10089]],[[10089,12660,10087]],[[12660,10082,10086]],[[12660,10079,10082]],[[12660,10078,10079]],[[12660,10077,10078]],[[12660,12661,10077]],[[10077,12661,10076]],[[10076,12661,10075]],[[10075,12661,10074]],[[10074,12661,10073]],[[12661,12654,10064]],[[10072,12661,10071]],[[10071,12661,10070]],[[10070,12661,10069]],[[10069,12661,10068]],[[10068,12661,10066]],[[10066,12661,10067]],[[10067,12661,10065]],[[10065,12661,10064]],[[10064,12654,10063]],[[10063,12654,10062]],[[10062,12654,10030]],[[10030,12654,10031]],[[10031,12654,10061]],[[10061,12654,10059]],[[10059,12654,10060]],[[12654,12655,10170]],[[10058,12654,10057]],[[10057,12654,10056]],[[10056,12654,10055]],[[10055,12654,10054]],[[10054,12654,10053]],[[10053,12654,10052]],[[10103,10105,12658]],[[12655,10164,10165]],[[10325,12657,10565]],[[10325,10324,12657]],[[10087,12660,10086]],[[12656,12654,12661]],[[10162,12655,10161]],[[10162,10163,12655]],[[10114,12658,10112]],[[10114,10116,12658]],[[10060,12654,10058]],[[12656,12655,12654]],[[10116,12659,12658]],[[10341,10126,12659]],[[10073,12661,10072]],[[12660,12656,12661]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3717f5-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12662,12663,3214]],[[12664,12665,12666]],[[12667,12668,12669]],[[3044,12670,3042]],[[3044,3042,3045]],[[12671,12672,3040]],[[12673,12674,12675]],[[12676,12677,12662]],[[12678,12679,12680]],[[12681,3216,12682]],[[12683,12684,12685]],[[12686,12687,12670]],[[12688,12686,12672]],[[12684,12689,12690]],[[12691,12692,12693]],[[12694,12695,12663]],[[12696,3216,12681]],[[3216,3215,12682]],[[12691,12697,12698]],[[12680,12699,12700]],[[12691,12698,12701]],[[12701,12699,12680]],[[12685,12701,12702]],[[12691,12701,12703]],[[12702,12698,12697]],[[12701,12679,12678]],[[12704,12705,12706]],[[12706,3215,12707]],[[12708,12695,12709]],[[12665,12664,12699]],[[12678,12680,12710]],[[12708,12666,12695]],[[12711,12691,12693]],[[12711,12697,12691]],[[12710,12680,12676]],[[12679,12701,12680]],[[12704,12707,12712]],[[12713,3215,12663]],[[12711,12702,12697]],[[12714,12685,12702]],[[12713,12707,3215]],[[12706,12682,3215]],[[12715,12662,12700]],[[12713,12716,12665]],[[12663,12715,12709]],[[12664,12666,12708]],[[12702,12701,12698]],[[12685,12699,12701]],[[12665,12699,12717]],[[12706,12681,12682]],[[12704,12706,12707]],[[12718,12719,12704]],[[12709,12664,12708]],[[12715,12699,12664]],[[12709,12715,12664]],[[12676,12680,12700]],[[12713,12704,12712]],[[12720,12696,12718]],[[12706,12705,12681]],[[12717,12721,12665]],[[12693,12710,12676]],[[12693,12692,12710]],[[12704,12719,12705]],[[12669,12722,12723]],[[12715,12700,12699]],[[12677,12676,12700]],[[12714,12711,12693]],[[12714,12702,12711]],[[12716,12713,12663]],[[12712,12707,12713]],[[12692,12703,12710]],[[12703,12701,12678]],[[12710,12703,12678]],[[12692,12691,12703]],[[12662,12715,12663]],[[12662,12677,12700]],[[12714,12662,3214]],[[12693,12676,12662]],[[12709,12694,12663]],[[12709,12695,12694]],[[12695,12716,12663]],[[12695,12666,12716]],[[12685,12714,3214]],[[12693,12662,12714]],[[3042,12670,3040]],[[12670,12724,12675]],[[12685,12684,12686]],[[12685,3214,12725]],[[12696,12726,12727]],[[12728,12729,3043]],[[12730,12731,12732]],[[12728,3216,12727]],[[3040,12670,12687]],[[12675,12674,12686]],[[12724,12733,12675]],[[12734,12735,12729]],[[12736,12673,12675]],[[12737,12738,12673]],[[12683,12689,12684]],[[12739,12683,12740]],[[12704,12713,12665]],[[12718,12704,12665]],[[12741,12671,3040]],[[12672,3041,3040]],[[12727,12726,12668]],[[12742,12721,12717]],[[12705,12696,12681]],[[12705,12719,12696]],[[12743,12744,12733]],[[12734,12729,12728]],[[12736,12737,12673]],[[12745,12743,12746]],[[12728,12727,12747]],[[3216,12696,12727]],[[12667,12669,12674]],[[12668,12726,12720]],[[12668,12720,12669]],[[12696,12719,12718]],[[12748,12718,12665]],[[12720,12726,12696]],[[12746,12743,12724]],[[12745,12749,12750]],[[12748,12665,12721]],[[12716,12666,12665]],[[12744,12750,12751]],[[12731,3043,12729]],[[12670,12675,12686]],[[12733,12744,12736]],[[12668,12667,12727]],[[12674,12673,12752]],[[12667,12753,12747]],[[12752,12738,12732]],[[12753,12667,12674]],[[12747,12727,12667]],[[12751,12750,12749]],[[12744,12743,12750]],[[12741,12688,12671]],[[12686,3041,12672]],[[3216,12728,3043]],[[12747,12753,12734]],[[12751,12754,12737]],[[12737,12730,12738]],[[12725,12683,12685]],[[12690,12686,12684]],[[12687,12755,3040]],[[12756,12686,12688]],[[12755,12756,12741]],[[12687,12686,12756]],[[12723,12717,12699]],[[12669,12757,12722]],[[12723,12722,12742]],[[12757,12718,12722]],[[12742,12748,12721]],[[12722,12718,12748]],[[12743,12745,12750]],[[3044,12749,12745]],[[12746,12724,12670]],[[12743,12733,12724]],[[12673,12738,12752]],[[12752,12731,12735]],[[12747,12734,12728]],[[12753,12735,12734]],[[3041,12758,3214]],[[3041,12686,12759]],[[12723,12742,12717]],[[12722,12748,12742]],[[3044,12746,12670]],[[3044,12745,12746]],[[12674,12723,12699]],[[12674,12669,12723]],[[12744,12751,12737]],[[12749,12754,12751]],[[12758,12725,3214]],[[12758,12740,12725]],[[12754,12730,12737]],[[3044,3043,12730]],[[3044,12754,12749]],[[3044,12730,12754]],[[12735,12731,12729]],[[12730,3043,12731]],[[12739,12690,12689]],[[12759,12686,12690]],[[12683,12739,12689]],[[12740,12758,12759]],[[12739,12759,12690]],[[12758,3041,12759]],[[12733,12736,12675]],[[12744,12737,12736]],[[12739,12740,12759]],[[12683,12725,12740]],[[12671,12688,12672]],[[12741,12756,12688]],[[12757,12720,12718]],[[12757,12669,12720]],[[12752,12732,12731]],[[12738,12730,12732]],[[12753,12752,12735]],[[12753,12674,12752]],[[3040,12755,12741]],[[12687,12756,12755]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e37180a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12760,12761,12762]],[[12763,12764,12765]],[[12764,3099,12766]],[[3097,12767,3096]],[[3096,12767,3095]],[[3095,12767,3094]],[[3094,12767,3092]],[[3092,12767,3091]],[[3091,12767,3090]],[[12768,12769,12770]],[[12771,12772,12766]],[[12773,12766,12774]],[[12775,12553,12776]],[[12767,3098,12764]],[[12764,3098,3099]],[[12762,12774,12766]],[[12766,3099,12762]],[[12770,12777,12778]],[[12779,12780,12781]],[[12782,12783,12780]],[[3056,3090,12767]],[[12784,12785,12762]],[[12784,12783,12785]],[[12778,12783,12784]],[[12764,12786,12767]],[[12774,12762,12785]],[[3099,12553,12762]],[[12785,12782,12774]],[[12785,12783,12782]],[[12782,12780,12774]],[[12766,12772,12765]],[[12779,12773,12774]],[[12787,12781,12772]],[[12762,12761,12784]],[[12762,12553,12760]],[[11645,12775,12776]],[[12761,12770,12778]],[[12774,12780,12779]],[[12788,3056,12786]],[[12787,12772,12771]],[[12783,3056,12772]],[[12773,12771,12766]],[[12773,12779,12781]],[[12775,12760,12553]],[[12775,11645,12768]],[[12775,12768,12760]],[[12769,12777,12770]],[[3056,12777,11645]],[[3056,12783,12777]],[[12760,12770,12761]],[[12760,12768,12770]],[[12761,12778,12784]],[[12777,12783,12778]],[[12772,12789,12765]],[[12788,12786,12790]],[[12789,12763,12765]],[[12763,12788,12790]],[[12765,12764,12766]],[[12790,12786,12764]],[[11645,12769,12768]],[[11645,12777,12769]],[[12763,12790,12764]],[[12763,12789,12788]],[[12772,12788,12789]],[[12772,3056,12788]],[[3056,12767,12786]],[[3097,3098,12767]],[[12783,12781,12780]],[[12783,12772,12781]],[[12773,12787,12771]],[[12773,12781,12787]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e39d73d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12791,12792,12793]],[[12794,12792,12795]],[[12792,12794,12796]],[[12797,12798,12799]],[[12793,12792,12796]],[[12800,12801,12797]],[[12802,12803,12804]],[[12805,12793,12806]],[[12806,12793,12796]],[[12807,12808,12809]],[[12806,12810,12805]],[[12801,12798,12797]],[[12796,12811,12807]],[[12811,12794,12795]],[[12812,12813,12814]],[[12795,12792,12791]],[[12813,12797,12799]],[[12804,12815,12816]],[[12813,12812,12797]],[[12817,12797,12812]],[[12814,12813,12799]],[[12814,12803,12812]],[[12818,12795,12808]],[[12811,12796,12794]],[[12818,12811,12795]],[[12807,12799,12796]],[[12807,12814,12799]],[[12803,12809,12804]],[[12807,12809,12814]],[[12809,12815,12804]],[[12819,12820,12821]],[[12822,12821,12810]],[[12817,12823,12824]],[[12822,12825,12826]],[[12818,12807,12811]],[[12818,12808,12807]],[[12815,12805,12810]],[[12810,12798,12801]],[[12814,12809,12803]],[[12808,12815,12809]],[[12802,12817,12812]],[[12823,12820,12819]],[[12808,12805,12815]],[[12808,12795,12791]],[[12800,12827,12828]],[[12820,12804,12816]],[[12822,12826,12828]],[[12826,12810,12801]],[[12823,12802,12804]],[[12812,12803,12802]],[[12826,12801,12828]],[[12826,12825,12810]],[[12827,12800,12797]],[[12828,12801,12800]],[[12827,12823,12819]],[[12816,12815,12810]],[[12822,12810,12825]],[[12806,12798,12810]],[[12821,12816,12810]],[[12821,12820,12816]],[[12824,12823,12827]],[[12817,12802,12823]],[[12797,12824,12827]],[[12797,12817,12824]],[[12822,12819,12821]],[[12823,12804,12820]],[[12828,12819,12822]],[[12828,12827,12819]],[[12805,12791,12793]],[[12805,12808,12791]],[[12806,12829,12798]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3a4cc7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12830,12831,12832]],[[12833,12834,12835]],[[12836,12837,12838]],[[12839,12831,12840]],[[12841,12836,12842]],[[12835,12831,12843]],[[12844,12845,12830]],[[12838,12837,12846]],[[12840,12846,12839]],[[12837,12839,12846]],[[12836,12839,12837]],[[12841,12831,12839]],[[12830,12843,12831]],[[12845,12844,12833]],[[12845,12835,12843]],[[12834,12840,12835]],[[12842,12844,12832]],[[12847,12838,12846]],[[12833,12848,12847]],[[12847,12846,12834]],[[12835,12840,12831]],[[12834,12846,12840]],[[12842,12836,12838]],[[12841,12839,12836]],[[12833,12847,12834]],[[12848,12838,12847]],[[12844,12830,12832]],[[12845,12843,12830]],[[12842,12848,12844]],[[12842,12838,12848]],[[12845,12833,12835]],[[12844,12848,12833]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3ae885-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12849,12850,12851]],[[12852,12850,12849]],[[12853,12852,12849]],[[12854,12853,12849]],[[12855,12854,12849]],[[12856,12855,12849]],[[12857,12856,12849]],[[12858,12857,12849]],[[12859,12858,12849]],[[12849,12860,12861]],[[12862,12863,12849]],[[12864,12862,12849]],[[12865,12864,12849]],[[12866,12865,12849]],[[12867,12866,12849]],[[12868,12867,12849]],[[12869,12868,12849]],[[12870,12869,12849]],[[12871,12870,12849]],[[12872,12871,12849]],[[12873,12872,12849]],[[12874,12873,12849]],[[12849,12851,12875]],[[12876,12877,12849]],[[12878,12876,12861]],[[12879,12878,12861]],[[12880,12879,12861]],[[12881,12860,12882]],[[12883,12861,12884]],[[12884,12861,12885]],[[12885,12861,12886]],[[12886,12861,12887]],[[12849,12877,12874]],[[12888,12861,12889]],[[12889,12861,12890]],[[12890,12861,12881]],[[12891,12890,12881]],[[12892,12891,12881]],[[12893,12892,12881]],[[12894,12893,12881]],[[12895,12894,12881]],[[12896,12895,12881]],[[12897,12881,12898]],[[12898,12881,12899]],[[12900,12881,12882]],[[12901,12899,12881]],[[12902,12901,12881]],[[12900,12902,12881]],[[12903,12849,12875]],[[12904,12905,12882]],[[12906,12904,12882]],[[12907,12906,12882]],[[12908,12907,12882]],[[12909,12908,12882]],[[12910,12909,12882]],[[12882,12860,12911]],[[12912,12882,12913]],[[12913,12882,12914]],[[12914,12882,12915]],[[12915,12882,12916]],[[12917,12915,12916]],[[12918,12917,12916]],[[12919,12918,12916]],[[12916,12882,12911]],[[12920,12921,12916]],[[12922,12920,12916]],[[12923,12922,12916]],[[12924,12923,12916]],[[12925,12926,12916]],[[12916,12926,12924]],[[12925,12927,12926]],[[12925,12928,12927]],[[12925,12929,12928]],[[12925,12930,12929]],[[12911,12860,12849]],[[12931,12925,12932]],[[12932,12925,12933]],[[12933,12925,12934]],[[12934,12925,12935]],[[12935,12911,12936]],[[12936,12911,12937]],[[12937,12911,12938]],[[12938,12911,12939]],[[12939,12911,12940]],[[12940,12911,12941]],[[12941,12911,12942]],[[12942,12911,12903]],[[12903,12911,12849]],[[12905,12900,12882]],[[12888,12887,12861]],[[12943,12861,12883]],[[12943,12880,12861]],[[12944,12882,12912]],[[12944,12910,12882]],[[12945,12925,12931]],[[12925,12946,12930]],[[12935,12925,12911]],[[12945,12946,12925]],[[12876,12849,12861]],[[12863,12859,12849]],[[12925,12916,12911]],[[12921,12919,12916]],[[12896,12881,12897]],[[12861,12860,12881]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3bd29c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12947,12948,12949]],[[12950,12951,12952]],[[12953,12954,12955]],[[12954,12956,12957]],[[12958,12957,12956]],[[12949,12959,12960]],[[12951,12961,12955]],[[12962,12963,12950]],[[12961,12951,12963]],[[12952,12947,12964]],[[12952,12964,12965]],[[12947,12949,12964]],[[12959,12966,12960]],[[12948,12957,12966]],[[12967,12962,12950]],[[12965,12963,12962]],[[12968,12967,12952]],[[12969,12951,12950]],[[12961,12953,12955]],[[12954,12957,12955]],[[12961,12970,12953]],[[12961,12971,12956]],[[12948,12972,12949]],[[12948,12966,12972]],[[12972,12959,12949]],[[12972,12966,12959]],[[12949,12960,12971]],[[12966,12957,12960]],[[12960,12973,12974]],[[12960,12957,12973]],[[12965,12968,12952]],[[12965,12962,12968]],[[12975,12954,12953]],[[12956,12971,12958]],[[12952,12967,12950]],[[12968,12962,12967]],[[12975,12956,12954]],[[12975,12961,12956]],[[12963,12969,12950]],[[12963,12951,12969]],[[12974,12958,12971]],[[12973,12957,12958]],[[12970,12975,12953]],[[12970,12961,12975]],[[12960,12974,12971]],[[12973,12958,12974]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3c6f5d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12976,9866,9872]],[[12977,9867,10357]],[[10356,9875,12978]],[[12979,12980,12981]],[[12982,12980,9875]],[[12976,9997,9866]],[[12983,12982,12984]],[[12985,12981,12986]],[[12983,12984,12987]],[[12988,12989,12990]],[[12991,12992,12983]],[[12993,12994,12995]],[[12991,12983,12996]],[[12995,12994,9872]],[[12997,12980,12998]],[[12999,13000,13001]],[[12982,12983,12992]],[[13002,12988,12990]],[[13003,13002,12992]],[[13004,13005,13006]],[[13003,12991,12996]],[[13003,12992,12991]],[[12989,12996,13007]],[[12987,13008,12996]],[[10356,13009,9875]],[[13010,13008,13011]],[[13012,13013,13010]],[[13013,10356,13010]],[[13014,12978,13015]],[[9875,9867,12978]],[[12996,12983,12987]],[[13016,9875,13010]],[[13017,13018,13016]],[[13017,13008,13018]],[[13019,13020,13005]],[[12989,13021,12996]],[[10356,12996,13008]],[[13005,9998,12985]],[[13022,12979,12985]],[[13004,12997,13005]],[[12993,12995,9872]],[[12994,12985,9998]],[[13011,13017,13016]],[[13011,13008,13017]],[[9998,13023,9872]],[[13023,9997,12976]],[[13000,13007,13020]],[[13005,13007,9998]],[[13024,13025,12990]],[[13024,13007,13025]],[[10356,13014,10357]],[[13015,9867,12977]],[[13025,12999,12990]],[[13025,13007,13000]],[[12988,13002,13021]],[[13021,13002,13003]],[[12988,13021,12989]],[[13003,12996,13021]],[[12985,12979,12981]],[[12986,13026,13006]],[[12990,12982,12992]],[[13026,13004,13006]],[[12997,12998,13005]],[[12998,13027,13019]],[[12999,13001,12980]],[[13027,13001,13020]],[[13028,12982,13018]],[[13018,12982,13016]],[[13016,12982,9875]],[[12992,13002,12990]],[[13008,12984,13028]],[[13008,12987,12984]],[[13022,13029,12993]],[[9872,9875,12993]],[[13016,13010,13011]],[[10356,13008,13010]],[[9875,13012,13010]],[[13009,10356,13013]],[[12993,13029,12994]],[[12993,13030,13022]],[[13026,12980,12997]],[[12980,12982,12990]],[[13009,13012,9875]],[[13009,13013,13012]],[[13008,13028,13018]],[[12984,12982,13028]],[[12985,12986,13006]],[[13026,12997,13004]],[[12981,13026,12986]],[[12981,12980,13026]],[[9872,12994,9998]],[[13029,12985,12994]],[[10357,13015,12977]],[[12978,9867,13015]],[[10357,13014,13015]],[[10356,12978,13014]],[[13006,13005,12985]],[[13007,10356,9998]],[[12998,13019,13005]],[[12998,12980,13027]],[[13020,13007,13005]],[[12996,10356,13007]],[[13024,12989,13007]],[[13024,12990,12989]],[[13001,13000,13020]],[[12999,13025,13000]],[[9872,13023,12976]],[[9998,9997,13023]],[[12979,13022,13030]],[[12985,13029,13022]],[[12999,12980,12990]],[[12993,9875,12980]],[[12993,12979,13030]],[[12993,12980,12979]],[[13019,13027,13020]],[[12980,13001,13027]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3c6f63-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8da49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13031,13032,13033]],[[13034,13035,13036]],[[13037,13038,13039]],[[13040,13041,13042]],[[13037,13043,13038]],[[13044,13041,13040]],[[13045,13046,13047]],[[13048,13049,13050]],[[13051,13043,13052]],[[13051,13038,13043]],[[13053,13052,13037]],[[13043,13037,13052]],[[13044,13048,13041]],[[13044,13049,13048]],[[13054,13055,13053]],[[13050,13037,13041]],[[13049,13056,13050]],[[13053,13037,13050]],[[13057,13058,13049]],[[13059,13060,13061]],[[13034,13062,13035]],[[13051,13052,13055]],[[13056,13049,13054]],[[13035,13046,13031]],[[13040,13063,13064]],[[13065,13033,13066]],[[13067,13068,13069]],[[13067,13032,13070]],[[13071,13067,13069]],[[13072,13046,13068]],[[13071,13073,13066]],[[13074,13066,13073]],[[13067,13071,13032]],[[13075,13074,13039]],[[13076,13036,13033]],[[13046,13072,13031]],[[13032,13066,13033]],[[13075,13038,13051]],[[13073,13039,13074]],[[13077,13037,13039]],[[13064,13057,13044]],[[13078,13058,13057]],[[13079,13080,13062]],[[13081,13045,13047]],[[13032,13071,13066]],[[13077,13039,13073]],[[13069,13063,13040]],[[13064,13044,13040]],[[13042,13069,13040]],[[13068,13046,13045]],[[13063,13045,13064]],[[13063,13068,13045]],[[13035,13047,13046]],[[13075,13061,13076]],[[13071,13069,13042]],[[13068,13063,13069]],[[13054,13053,13056]],[[13055,13052,13053]],[[13057,13049,13044]],[[13058,13080,13079]],[[13058,13079,13049]],[[13079,13055,13054]],[[13078,13080,13058]],[[13064,13045,13080]],[[13038,13075,13039]],[[13065,13066,13074]],[[13055,13059,13061]],[[13076,13074,13075]],[[13067,13070,13072]],[[13032,13031,13072]],[[13076,13065,13074]],[[13076,13033,13065]],[[13061,13034,13076]],[[13060,13082,13034]],[[13061,13060,13034]],[[13081,13080,13045]],[[13067,13072,13068]],[[13070,13032,13072]],[[13059,13082,13060]],[[13079,13054,13049]],[[13059,13079,13082]],[[13059,13055,13079]],[[13036,13035,13031]],[[13034,13082,13062]],[[13051,13061,13075]],[[13051,13055,13061]],[[13033,13036,13031]],[[13076,13034,13036]],[[13048,13050,13041]],[[13056,13053,13050]],[[13035,13062,13047]],[[13062,13080,13081]],[[13064,13078,13057]],[[13064,13080,13078]],[[13047,13062,13081]],[[13082,13079,13062]],[[13077,13071,13042]],[[13077,13073,13071]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d0b1b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ac49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11806,13083,11805]],[[13084,13085,13086]],[[11805,13087,13088]],[[13089,13090,13091]],[[13092,13090,13093]],[[13089,11802,13093]],[[13085,11798,13091]],[[11800,11799,13084]],[[11798,13085,11799]],[[13094,11806,11800]],[[13095,11806,13096]],[[13097,13083,11806]],[[13086,13098,13094]],[[13086,13097,13095]],[[13099,13087,11805]],[[13083,13090,13088]],[[13089,13093,13090]],[[11802,13092,13093]],[[13100,13092,11802]],[[13100,13088,13092]],[[11798,13089,13091]],[[11798,11802,13089]],[[13086,13094,11800]],[[13096,11806,13094]],[[13086,13095,13098]],[[13097,11806,13095]],[[13098,13096,13094]],[[13098,13095,13096]],[[11805,13100,11802]],[[13088,13090,13092]],[[11805,13088,13100]],[[13087,13101,13088]],[[13083,13101,11805]],[[13101,13087,13099]],[[11805,13101,13099]],[[13083,13088,13101]],[[11800,13084,13086]],[[11799,13085,13084]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d3258-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[12964,12949,12965]],[[13102,12963,12965]],[[12949,12971,12965]],[[13102,12971,12961]],[[12961,13103,13102]],[[12961,12963,13103]],[[13102,13104,12963]],[[13103,12963,13104]],[[12971,13102,12965]],[[13103,13104,13102]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3d5974-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13105,1021,1019]],[[13106,1019,1007]],[[1006,13107,1007]],[[13107,13108,13106]],[[1007,13107,13106]],[[1006,1021,13107]],[[13106,13108,1019]],[[13107,1021,13108]],[[13108,13105,1019]],[[13108,1021,13105]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e3f2ebd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13109,13110,13111]],[[13112,13113,13114]],[[13112,13115,13113]],[[13116,13117,13118]],[[13116,13119,13120]],[[13110,13121,13122]],[[13123,13116,13120]],[[13124,13125,13111]],[[13126,13123,13127]],[[13110,13122,13128]],[[13119,13121,13120]],[[13129,13130,13131]],[[13132,13118,13117]],[[13133,13119,13134]],[[13113,13115,13126]],[[13116,13118,13134]],[[13119,13124,13121]],[[13119,13133,13135]],[[13110,13114,13113]],[[13110,13127,13121]],[[13136,13137,13131]],[[13115,13117,13126]],[[13136,13115,13137]],[[13132,13117,13115]],[[13110,13128,13111]],[[13122,13121,13124]],[[13136,13132,13115]],[[13118,13138,13134]],[[13136,13138,13132]],[[13133,13139,13135]],[[13137,13140,13131]],[[13137,13115,13112]],[[13140,13141,13129]],[[13140,13137,13112]],[[13127,13123,13120]],[[13126,13117,13123]],[[13121,13127,13120]],[[13113,13126,13127]],[[13141,13112,13114]],[[13141,13140,13112]],[[13109,13111,13125]],[[13128,13124,13111]],[[13119,13116,13134]],[[13123,13117,13116]],[[13122,13124,13128]],[[13135,13125,13124]],[[13132,13138,13118]],[[13136,13139,13138]],[[13140,13129,13131]],[[13141,13114,13130]],[[13131,13130,13125]],[[13129,13141,13130]],[[13114,13110,13109]],[[13113,13127,13110]],[[13130,13109,13125]],[[13130,13114,13109]],[[13138,13133,13134]],[[13138,13139,13133]],[[13119,13135,13124]],[[13139,13125,13135]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e404005-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13142,13143,13144]],[[13145,12489,13146]],[[13147,13148,13149]],[[12514,13150,13151]],[[13152,13153,13143]],[[13151,12506,12514]],[[13154,13153,12506]],[[12506,13153,12493]],[[13155,13156,13157]],[[13158,13159,13160]],[[13156,13161,13162]],[[13147,13149,13163]],[[13159,13158,13161]],[[13164,13153,13152]],[[13165,13158,13152]],[[13165,13161,13158]],[[13166,13157,13143]],[[13149,13148,13152]],[[13157,13152,13143]],[[13163,13149,13152]],[[13166,13155,13157]],[[13147,13161,13148]],[[13157,13163,13152]],[[13157,13162,13167]],[[12493,13159,13161]],[[12493,13153,13168]],[[13158,13160,13152]],[[13159,12493,13168]],[[13160,13168,13164]],[[13160,13159,13168]],[[13160,13164,13152]],[[13168,13153,13164]],[[13169,13156,13155]],[[13156,12493,13161]],[[13170,13169,13155]],[[12489,13156,13169]],[[13157,13156,13162]],[[12489,12493,13156]],[[13157,13167,13163]],[[13162,13161,13167]],[[13171,13170,13155]],[[12489,13169,13170]],[[13165,13148,13161]],[[13165,13152,13148]],[[13150,13154,13172]],[[13173,12506,13172]],[[13174,12514,13175]],[[13146,13143,13176]],[[13174,13177,13178]],[[13172,12506,13151]],[[13178,13177,13150]],[[13144,13154,13150]],[[13151,13150,13172]],[[13177,13144,13150]],[[13179,13145,13176]],[[13180,13166,13146]],[[13177,13174,13144]],[[13175,13181,13142]],[[13174,13142,13144]],[[13176,13143,13142]],[[13180,13171,13166]],[[12489,13170,13171]],[[13146,13166,13143]],[[13171,13155,13166]],[[13181,13179,13176]],[[12514,12489,13179]],[[13174,13175,13142]],[[12514,13179,13175]],[[12514,13178,13150]],[[12514,13174,13178]],[[12489,13180,13146]],[[12489,13171,13180]],[[13167,13147,13163]],[[13167,13161,13147]],[[13154,13173,13172]],[[13154,12506,13173]],[[13176,13145,13146]],[[13179,12489,13145]],[[13142,13181,13176]],[[13175,13179,13181]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e404008-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13182,13183,13184]],[[13185,13186,13187]],[[13182,13184,13185]],[[13182,13185,13187]],[[13184,13186,13185]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e415141-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13188,13189,13190]],[[13191,13190,13192]],[[13193,13194,13192]],[[13195,13189,13188]],[[13191,13196,13197]],[[13195,13198,13189]],[[13194,13191,13192]],[[13194,13196,13191]],[[13197,13196,13199]],[[13200,13201,13198]],[[13197,13199,13188]],[[13198,13202,13189]],[[13196,13198,13199]],[[13196,13200,13198]],[[13199,13195,13188]],[[13199,13198,13195]],[[13190,13197,13188]],[[13190,13191,13197]],[[13194,13200,13196]],[[13194,13193,13200]],[[13193,13201,13200]],[[13202,13198,13201]],[[13202,13193,13192]],[[13202,13201,13193]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e41ee11-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13203,13204,13205]],[[13203,13205,13206]],[[13207,13203,13206]],[[13207,13204,13203]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4289b7-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13208,13209,13210]],[[13211,13212,13210]],[[13213,13214,13211]],[[13215,13213,13216]],[[13217,13211,13210]],[[13218,13215,13216]],[[13212,13219,13208]],[[13212,13214,13215]],[[13212,13215,13219]],[[13214,13213,13215]],[[13212,13208,13210]],[[13209,13220,13210]],[[13221,13213,13217]],[[13214,13212,13211]],[[13219,13209,13208]],[[13219,13215,13218]],[[13217,13213,13211]],[[13218,13220,13209]],[[13221,13216,13213]],[[13221,13220,13216]],[[13220,13218,13216]],[[13209,13219,13218]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e43e94c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[11699,13222,13223]],[[11704,13224,13225]],[[11707,13226,13227]],[[11709,13228,13229]],[[11711,13230,13231]],[[11713,13232,13233]],[[11716,13234,13235]],[[11717,13236,13237]],[[11719,13238,13239]],[[13240,11745,11746]],[[11747,11748,13241]],[[13242,13243,13244]],[[13245,13242,13244]],[[13246,13245,13244]],[[13247,13246,13244]],[[13248,13247,13244]],[[13249,13248,13250]],[[13251,13249,13250]],[[13248,13244,13250]],[[13243,13252,13253]],[[13243,13254,13244]],[[13243,13255,13254]],[[13243,13253,13255]],[[13252,13256,13253]],[[13252,13257,13256]],[[13252,13240,13257]],[[13257,13240,13258]],[[13252,11737,13240]],[[13240,11740,11741]],[[11668,11667,13259]],[[13260,13240,13261]],[[13261,13240,13262]],[[13262,13240,13263]],[[13263,13240,13241]],[[13241,11748,13264]],[[13264,11750,13265]],[[13265,11752,13266]],[[13266,11753,13267]],[[13267,11755,13268]],[[13268,11757,13269]],[[13269,11668,13259]],[[11751,11752,13265]],[[11758,11668,13269]],[[11728,13270,13271]],[[11757,11758,13269]],[[11729,13272,13273]],[[11756,11757,13268]],[[11754,11755,13267]],[[13274,13240,13260]],[[11731,13275,13276]],[[13268,11755,11756]],[[13252,13275,11732]],[[13277,11731,13276]],[[13277,13272,11730]],[[13278,11729,13273]],[[11754,13267,11753]],[[13266,11752,11753]],[[13278,13270,11728]],[[13279,11727,13271]],[[11726,13280,13281]],[[13265,11750,11751]],[[13279,13280,11726]],[[11748,11749,13264]],[[11750,13264,11749]],[[13282,11725,13281]],[[13282,13283,11724]],[[13284,11724,13283]],[[11722,13285,13286]],[[13241,13240,11747]],[[13284,13285,11723]],[[13287,11722,13286]],[[11746,11747,13240]],[[13288,11721,13287]],[[11720,13289,13238]],[[11745,13240,11744]],[[13288,13289,11720]],[[13240,11742,11743]],[[11743,11744,13240]],[[13290,11719,13239]],[[11718,13291,13236]],[[11742,13240,11741]],[[13290,13291,11718]],[[11738,11739,13240]],[[11740,13240,11739]],[[13292,11717,13237]],[[11715,13293,13234]],[[13240,11737,11738]],[[13292,13293,11715]],[[11735,11736,13252]],[[11737,13252,11736]],[[13294,11716,13235]],[[11714,13295,13232]],[[13252,11734,11735]],[[13294,13295,11714]],[[11732,11733,13252]],[[11734,13252,11733]],[[13296,11713,13233]],[[13296,13297,11712]],[[13275,11731,11732]],[[13297,13230,11712]],[[11729,11730,13272]],[[11731,13277,11730]],[[13298,11711,13231]],[[13298,13299,11710]],[[13278,11728,11729]],[[13299,13228,11710]],[[11726,11727,13279]],[[11728,13271,11727]],[[13300,11708,13229]],[[13300,13301,11708]],[[13281,11725,11726]],[[13301,13226,11707]],[[11723,11724,13284]],[[11725,13282,11724]],[[13302,11706,13227]],[[13302,13303,11705]],[[13285,11722,11723]],[[13303,13224,11705]],[[11720,11721,13288]],[[11722,13287,11721]],[[13304,11703,13225]],[[11702,13305,13306]],[[13238,11719,11720]],[[13304,13305,11703]],[[11717,11718,13236]],[[11719,13290,11718]],[[13307,11701,13306]],[[13307,13308,11700]],[[13292,11715,11717]],[[13308,13222,11700]],[[11714,11716,13294]],[[11715,13234,11716]],[[13309,11698,13223]],[[13232,11713,11714]],[[11696,13310,13311]],[[13296,11712,11713]],[[13309,13310,11697]],[[11710,11711,13298]],[[11712,13230,11711]],[[13312,11694,13311]],[[11691,13313,13314]],[[13228,11709,11710]],[[13312,13313,11693]],[[11709,13229,11708]],[[11706,11707,13227]],[[11708,13301,11707]],[[13315,11690,13314]],[[13302,11705,11706]],[[11687,13316,13317]],[[13224,11704,11705]],[[13315,13316,11688]],[[11702,11703,13305]],[[11704,13225,11703]],[[11701,11702,13306]],[[13318,11685,13317]],[[13307,11700,11701]],[[13222,11699,11700]],[[13318,13319,11683]],[[13223,11698,11699]],[[13309,11697,11698]],[[13310,11696,11697]],[[13311,11695,11696]],[[13319,13320,11681]],[[13311,11694,11695]],[[13312,11693,11694]],[[13313,11692,11693]],[[13313,11691,11692]],[[13320,13321,11679]],[[13314,11690,11691]],[[13315,11689,11690]],[[13315,11688,11689]],[[13316,11687,11688]],[[13317,11686,11687]],[[13321,13322,11677]],[[13317,11685,11686]],[[13318,11684,11685]],[[13318,11683,11684]],[[13319,11682,11683]],[[13322,13323,11675]],[[13319,11681,11682]],[[13320,11680,11681]],[[13320,11679,11680]],[[13321,11678,11679]],[[13323,13324,11673]],[[13321,11677,11678]],[[13322,11676,11677]],[[13322,11675,11676]],[[13323,11674,11675]],[[13324,13325,11671]],[[13323,11673,11674]],[[13324,11672,11673]],[[13324,11671,11672]],[[13325,11670,11671]],[[13325,13259,11669]],[[13325,11669,11670]],[[13259,11667,11669]],[[13326,13240,13274]],[[13326,13258,13240]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e44d366-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1a849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[3117,1779,11660]],[[13327,13328,13329]],[[13330,13331,13332]],[[13331,13333,13332]],[[13334,13335,13336]],[[13337,1369,1619]],[[13338,13339,13340]],[[13341,13342,13343]],[[13344,13345,13346]],[[13347,1778,7803]],[[13348,13349,13350]],[[13351,13350,13352]],[[13353,7803,11610]],[[3148,3149,1779]],[[3157,3148,1779]],[[3147,3124,3148]],[[3151,3147,3148]],[[3144,3146,3147]],[[3142,3144,3147]],[[3136,3142,3147]],[[3138,3140,3142]],[[3136,3138,3142]],[[3151,3136,3147]],[[3131,3151,3148]],[[3131,3132,3151]],[[3131,3133,3132]],[[3157,3131,3148]],[[3157,3129,3131]],[[3157,3126,3129]],[[3157,3127,3126]],[[3157,3155,3127]],[[3116,3157,1779]],[[3116,3119,3157]],[[3116,3120,3119]],[[3116,3118,3120]],[[3117,3116,1779]],[[1778,11660,1779]],[[13354,13355,13356]],[[13357,13358,13359]],[[13360,13361,11660]],[[13362,13356,7803]],[[13363,13364,13365]],[[13366,13367,13368]],[[13369,13370,13371]],[[13372,13373,13374]],[[13347,13359,1778]],[[13375,13376,13377]],[[13378,13379,13380]],[[13381,13359,13347]],[[13382,13347,7803]],[[13383,13384,13385]],[[13386,13387,13388]],[[13389,13390,13382]],[[13391,13392,13393]],[[13394,13395,13396]],[[13397,13398,13399]],[[13400,13359,13381]],[[13401,13402,13379]],[[13385,13392,13403]],[[13404,13379,13378]],[[13402,13380,13379]],[[13405,13378,13380]],[[13406,13407,13408]],[[13392,13391,13409]],[[13410,13411,13412]],[[13413,13414,13415]],[[13416,13372,13374]],[[13417,13386,13388]],[[13418,13419,13420]],[[13421,13422,13423]],[[13394,13424,13375]],[[13425,13383,13426]],[[13427,13428,13429]],[[13388,13387,13380]],[[13430,13431,13432]],[[13433,13434,13435]],[[13436,13437,13438]],[[13439,13440,13441]],[[13442,13404,13378]],[[13383,13403,13426]],[[13388,13380,13443]],[[13374,13431,13405]],[[13444,13445,13401]],[[13426,13403,13423]],[[13383,13385,13403]],[[13446,13384,13425]],[[13412,13446,13425]],[[13402,13443,13380]],[[13447,13424,13448]],[[13449,13333,13331]],[[13450,13451,13452]],[[13453,13454,13455]],[[13456,13445,13444]],[[13457,13458,13459]],[[13460,13461,13462]],[[13463,13457,13459]],[[13385,13393,13392]],[[13464,13465,13466]],[[13417,13388,13443]],[[13467,13468,13469]],[[13374,13405,13416]],[[13470,13471,13391]],[[13391,13393,13470]],[[13425,13384,13383]],[[13472,13473,13474]],[[13475,13476,13477]],[[13333,13478,13332]],[[13479,13480,13481]],[[13409,13423,13403]],[[13387,13386,13481]],[[13387,13405,13380]],[[13463,13408,13457]],[[13409,13395,13423]],[[13446,13482,13384]],[[13389,13473,13429]],[[13390,13389,13428]],[[13390,13397,13382]],[[13483,13468,13467]],[[13484,13485,13486]],[[13458,13487,13459]],[[13407,13471,13470]],[[13450,13452,13488]],[[13489,13490,13478]],[[13411,13398,13412]],[[13421,13423,13395]],[[13397,13446,13398]],[[13482,13428,13427]],[[13491,13449,13331]],[[13491,12553,13490]],[[13449,13489,13333]],[[13490,12553,13478]],[[13345,13492,13493]],[[13494,13495,13496]],[[13347,13399,13381]],[[13347,13397,13399]],[[13417,13497,13498]],[[13480,13463,13387]],[[13457,13408,13407]],[[13480,13499,13408]],[[13407,13406,13471]],[[13406,13396,13395]],[[13500,13330,13478]],[[10000,12553,13491]],[[13482,13390,13428]],[[13397,13347,13382]],[[13391,13406,13501]],[[13408,13396,13406]],[[13502,13503,13440]],[[13504,13505,13394]],[[13446,13412,13398]],[[13419,13506,13507]],[[13508,13509,13510]],[[13511,13512,13513]],[[13508,13514,13509]],[[13515,13516,13517]],[[13345,13518,13492]],[[13510,13509,13519]],[[13415,13520,13521]],[[13522,13523,13524]],[[13525,13521,13520]],[[13353,13526,13527]],[[13415,13521,13528]],[[13513,13512,13515]],[[13489,13478,13333]],[[13529,13530,13531]],[[13479,13417,13498]],[[13504,13394,13396]],[[13374,13373,13431]],[[13469,13454,13373]],[[13532,13523,13522]],[[13355,13354,13533]],[[13399,13411,13534]],[[13535,13357,13359]],[[13536,13537,13538]],[[13539,13461,13540]],[[13400,13535,13359]],[[13541,13542,13360]],[[13543,13454,13469]],[[13455,13369,13453]],[[13544,13545,13455]],[[13545,13370,13369]],[[13397,13482,13446]],[[13397,13390,13482]],[[13479,13499,13480]],[[13396,13408,13499]],[[13417,13479,13481]],[[13497,13503,13546]],[[13547,13495,13548]],[[13549,13512,13511]],[[13550,13346,13348]],[[13494,13551,13548]],[[13552,13440,13553]],[[13554,13555,13556]],[[13474,13465,13472]],[[13557,13354,13362]],[[7803,13355,13473]],[[7803,13356,13355]],[[13472,13429,13473]],[[13428,13389,13429]],[[13385,13427,13558]],[[13384,13482,13427]],[[13427,13472,13558]],[[13427,13429,13472]],[[13559,13539,13437]],[[13353,13527,7803]],[[13414,13560,13415]],[[13523,13561,13513]],[[13515,13562,13523]],[[13563,13371,13370]],[[13536,13538,13353]],[[13438,13564,13527]],[[13536,13353,11610]],[[13538,13537,13565]],[[13350,13349,11610]],[[13348,13566,13567]],[[13406,13395,13501]],[[13568,13424,11660]],[[13392,13409,13403]],[[13501,13395,13409]],[[13569,13570,13571]],[[13572,13363,13548]],[[13573,13574,13570]],[[13435,13553,13433]],[[13518,13569,13551]],[[13571,13364,13363]],[[13575,13510,13549]],[[13519,13439,13516]],[[13511,13576,13577]],[[13510,13575,13578]],[[13579,13496,13495]],[[13551,13572,13548]],[[13535,13534,13580]],[[13399,13398,13411]],[[13387,13463,13416]],[[13480,13408,13463]],[[13480,13387,13481]],[[13416,13405,13387]],[[13581,13582,1375]],[[13583,13584,13582]],[[13563,13524,13562]],[[13561,13521,13576]],[[13522,13524,13462]],[[13523,13562,13524]],[[13460,13545,13544]],[[13462,13370,13545]],[[13459,13372,13416]],[[13469,13373,13372]],[[13549,13519,13512]],[[13516,13441,13517]],[[13577,13575,13549]],[[13434,13585,13435]],[[13522,13462,13461]],[[13524,13370,13462]],[[13362,13354,13356]],[[13485,13469,13468]],[[13586,13533,13486]],[[13465,13587,13533]],[[13365,13588,13435]],[[13553,13440,13514]],[[13589,13590,13552]],[[13585,13365,13435]],[[13578,13434,13433]],[[13514,13440,13509]],[[13435,13588,13553]],[[13590,13502,13552]],[[13571,13591,13364]],[[13592,13502,13590]],[[13537,13593,13414]],[[13594,13496,13579]],[[13595,13564,13438]],[[13543,13544,13455]],[[13540,13595,13437]],[[13460,13462,13545]],[[13596,13597,13598]],[[1369,13599,13597]],[[13518,13551,13492]],[[13492,13600,13493]],[[13594,13566,13600]],[[13600,13492,13494]],[[13525,13601,13576]],[[13520,13560,13567]],[[13434,13548,13585]],[[13572,13571,13363]],[[13602,13603,13604]],[[13346,13566,13348]],[[13329,13328,13605]],[[13491,13331,13330]],[[13606,13599,1369]],[[13607,13606,13608]],[[13609,13574,13573]],[[13574,13610,13570]],[[13611,13609,13573]],[[13610,13502,13592]],[[13432,13456,13442]],[[13401,13379,13404]],[[13405,13430,13378]],[[13444,13401,13404]],[[13378,13430,13442]],[[13405,13431,13430]],[[13369,13371,13456]],[[13371,13563,13556]],[[13442,13456,13444]],[[13371,13556,13456]],[[13351,13550,13350]],[[13346,13493,13566]],[[11657,13502,3106]],[[13503,13401,13440]],[[13351,13344,13550]],[[13345,13493,13346]],[[13606,13607,13599]],[[13612,13613,12558]],[[13614,13615,13584]],[[13584,1375,13582]],[[13450,13477,13616]],[[13477,13491,13330]],[[13617,13609,13618]],[[13573,13570,13619]],[[13507,13506,13360]],[[13620,13410,13412]],[[13565,13537,13414]],[[13349,13348,13567]],[[13600,13494,13496]],[[13492,13551,13494]],[[13355,13587,13473]],[[13587,13465,13474]],[[13449,13490,13489]],[[13449,13491,13490]],[[13583,13614,13584]],[[13615,13621,13622]],[[13334,12558,13335]],[[13623,13624,13337]],[[13575,13625,13578]],[[13548,13363,13585]],[[13402,13503,13443]],[[13402,13401,13503]],[[13626,13468,13483]],[[13627,13393,13558]],[[13610,13592,13591]],[[13610,13628,13502]],[[13629,13500,13451]],[[13476,13475,13328]],[[13468,13626,13586]],[[13465,13533,13466]],[[13473,13587,13474]],[[13355,13533,13587]],[[13463,13459,13416]],[[13464,13558,13472]],[[13372,13467,13469]],[[13626,13464,13466]],[[13459,13467,13372]],[[13459,13487,13483]],[[13630,13564,13595]],[[13455,13454,13543]],[[13469,13485,13543]],[[13533,13354,13486]],[[13484,13631,13630]],[[13632,13564,13630]],[[13485,13484,13543]],[[13633,13595,13461]],[[13436,13438,13526]],[[13437,13595,13438]],[[1778,13360,11660]],[[13361,13634,13635]],[[13636,13419,13418]],[[13448,13394,11657]],[[10000,13637,1374]],[[13476,13491,13477]],[[13638,13619,13603]],[[13604,13569,13518]],[[13576,13511,13561]],[[13576,13639,13577]],[[13640,13628,13610]],[[3106,13502,13628]],[[13538,13436,13353]],[[13436,13559,13437]],[[13641,13642,13643]],[[13608,13612,13598]],[[13644,13641,13623]],[[13608,13613,13612]],[[13554,13556,13562]],[[13445,13456,13556]],[[13436,13565,13559]],[[13413,13528,13532]],[[3106,13645,3107]],[[13645,13574,13609]],[[13508,13433,13646]],[[13508,13510,13578]],[[13596,13598,13612]],[[13598,13599,13607]],[[13647,13648,13649]],[[13650,13651,13343]],[[13596,13652,13648]],[[13651,13653,12558]],[[13654,13655,13656]],[[13657,13658,13659]],[[13539,13540,13437]],[[13461,13595,13540]],[[13401,13441,13440]],[[13555,13445,13556]],[[13515,13517,13562]],[[13517,13555,13554]],[[13660,13335,13661]],[[13624,13660,13661]],[[13422,13426,13423]],[[13421,13395,13377]],[[13506,13634,13361]],[[13506,13419,13634]],[[13478,13330,13332]],[[13616,13477,13330]],[[13647,13656,13352]],[[13654,13649,13662]],[[13656,13338,13663]],[[13656,13655,13339]],[[13664,13581,13665]],[[13666,1374,13637]],[[13593,13560,13414]],[[13593,13567,13560]],[[13406,13391,13471]],[[13501,13409,13391]],[[13521,13525,13576]],[[13520,13601,13525]],[[11657,13503,13502]],[[11657,13505,13503]],[[13569,13571,13572]],[[13570,13591,13571]],[[13427,13385,13384]],[[13558,13393,13385]],[[13667,13596,13612]],[[13597,13599,13598]],[[13569,13619,13570]],[[13611,13573,13619]],[[13523,13513,13515]],[[13523,13532,13561]],[[13645,13640,13574]],[[3106,13628,13640]],[[13361,13635,13376]],[[13635,13419,13636]],[[13668,13669,13352]],[[13367,3107,13368]],[[13656,13663,13668]],[[13670,3107,13367]],[[13484,13630,13544]],[[13631,13632,13630]],[[13671,13335,13660]],[[12558,13661,13335]],[[13512,13516,13515]],[[13439,13441,13516]],[[13630,13633,13544]],[[13630,13595,13633]],[[13633,13460,13544]],[[13633,13461,13460]],[[13341,13672,13342]],[[13648,13650,13343]],[[13625,13547,13434]],[[13495,13494,13548]],[[13360,13542,13507]],[[13542,13420,13507]],[[13580,13542,13541]],[[13580,13420,13542]],[[13357,13541,13358]],[[13357,13535,13541]],[[13345,13344,13604]],[[13604,13344,13602]],[[13673,13360,1778]],[[13506,13361,13360]],[[13363,13365,13585]],[[13589,13591,13590]],[[13373,13453,13431]],[[13455,13545,13369]],[[13431,13453,13369]],[[13373,13454,13453]],[[13407,13458,13457]],[[13407,13487,13458]],[[13450,13622,13477]],[[13488,13674,13615]],[[13615,13622,13488]],[[13622,13621,13477]],[[13669,13367,13366]],[[13638,13611,13619]],[[13570,13610,13591]],[[13574,13640,13610]],[[13649,13342,13672]],[[13648,13343,13342]],[[13459,13483,13467]],[[13487,13407,13470]],[[13627,13464,13626]],[[13466,13586,13626]],[[13594,13600,13496]],[[13566,13493,13600]],[[13601,13639,13576]],[[13601,13594,13579]],[[13401,13555,13441]],[[13401,13445,13555]],[[13538,13565,13436]],[[13414,13413,13559]],[[13618,13609,13611]],[[13617,13645,13609]],[[13586,13486,13485]],[[13354,13557,13486]],[[13359,13358,1778]],[[13541,13360,13673]],[[1619,13584,13674]],[[1619,1375,13584]],[[13656,13668,13352]],[[13663,13669,13668]],[[13337,13675,1369]],[[13613,13661,12558]],[[13473,13382,7803]],[[13473,13389,13382]],[[13584,13615,13674]],[[13621,13475,13477]],[[13556,13563,13562]],[[13370,13524,13563]],[[13676,13660,13624]],[[13676,13671,13660]],[[13512,13519,13516]],[[13509,13440,13439]],[[13510,13519,13549]],[[13509,13439,13519]],[[13622,13450,13488]],[[13616,13629,13450]],[[3107,13645,13617]],[[3106,13640,13645]],[[13539,13522,13461]],[[13539,13413,13522]],[[13646,13514,13508]],[[13553,13588,13552]],[[13646,13553,13514]],[[13646,13433,13553]],[[13677,13530,13678]],[[13334,13679,12558]],[[13537,13349,13593]],[[13350,13550,13348]],[[13452,13451,13500]],[[13629,13330,13500]],[[13674,13452,1619]],[[13674,13488,13452]],[[13543,13484,13544]],[[13486,13631,13484]],[[13413,13415,13528]],[[13560,13520,13415]],[[13670,13338,13340]],[[13338,13656,13339]],[[13468,13586,13485]],[[13466,13533,13586]],[[13511,13577,13549]],[[13639,13680,13577]],[[13656,13647,13654]],[[13648,13342,13649]],[[13365,13589,13552]],[[13591,13592,13590]],[[13364,13589,13365]],[[13364,13591,13589]],[[13666,13637,13476]],[[10000,13491,13476]],[[3107,13681,13368]],[[3107,13617,13618]],[[13643,13682,13336]],[[13678,13679,13334]],[[13669,13366,13352]],[[13368,13681,13351]],[[13366,13351,13352]],[[13366,13368,13351]],[[13550,13344,13346]],[[13602,13683,13684]],[[13672,13662,13649]],[[13339,13655,13685]],[[13678,13530,13679]],[[13686,13478,13679]],[[13687,13688,13529]],[[13689,13679,13529]],[[13687,13531,13690]],[[13687,13529,13531]],[[12553,13679,13478]],[[12553,12558,13679]],[[13534,13535,13400]],[[13580,13541,13535]],[[13581,13583,13582]],[[13475,13614,13583]],[[13691,13581,1375]],[[13664,13475,13583]],[[13436,13526,13353]],[[13527,13362,7803]],[[13438,13527,13526]],[[13564,13632,13527]],[[13623,13676,13624]],[[13671,13692,13335]],[[13623,13671,13676]],[[13692,13336,13335]],[[13661,13693,13624]],[[13644,13694,13642]],[[13361,13568,11660]],[[13361,13376,13568]],[[11657,13447,13448]],[[13568,13376,13375]],[[13568,13375,13424]],[[13394,13505,11657]],[[13377,13394,13375]],[[13377,13395,13394]],[[11649,13447,11657]],[[13424,13394,13448]],[[13662,13685,13654]],[[13695,13659,13658]],[[13614,13621,13615]],[[13614,13475,13621]],[[13520,13567,13594]],[[13593,13349,13567]],[[13520,13594,13601]],[[13567,13566,13594]],[[13376,13635,13377]],[[13634,13419,13635]],[[13531,13677,13690]],[[13682,13642,13694]],[[13677,13682,13694]],[[13334,13336,13682]],[[13596,13647,13352]],[[13596,13648,13647]],[[1369,13596,13352]],[[1369,13597,13596]],[[13653,13667,13612]],[[13652,13596,13667]],[[12558,13653,13612]],[[12558,13343,13651]],[[13653,13652,13667]],[[13650,13648,13652]],[[13649,13654,13647]],[[13685,13655,13654]],[[13365,13552,13588]],[[13502,13440,13552]],[[13327,13666,13328]],[[13637,10000,13476]],[[13328,13666,13476]],[[13327,1374,13666]],[[13557,13632,13631]],[[13362,13527,13632]],[[13681,13618,13351]],[[13681,3107,13618]],[[13663,13367,13669]],[[13670,3111,3107]],[[13663,13670,13367]],[[13663,13338,13670]],[[13670,13657,3111]],[[13339,13685,13658]],[[13695,13658,13685]],[[13340,13339,13658]],[[13687,13696,13688]],[[1619,13500,13686]],[[13690,13644,1619]],[[13644,13623,13337]],[[13337,13693,13613]],[[13337,13624,13693]],[[1619,13644,13337]],[[13690,13694,13644]],[[13465,13464,13472]],[[13626,13483,13627]],[[1374,13329,1375]],[[13328,13475,13665]],[[13381,13534,13400]],[[13381,13399,13534]],[[13464,13627,13558]],[[13483,13487,13470]],[[13627,13470,13393]],[[13627,13483,13470]],[[13652,13651,13650]],[[13652,13653,13651]],[[1619,13687,13690]],[[1619,13696,13687]],[[13577,13680,13575]],[[13579,13495,13547]],[[13562,13517,13554]],[[13441,13555,13517]],[[13632,13557,13362]],[[13631,13486,13557]],[[13684,13618,13638]],[[13618,13611,13638]],[[13683,13602,13344]],[[13638,13603,13602]],[[13351,13683,13344]],[[13351,13618,13684]],[[3111,13659,12558]],[[3111,13657,13659]],[[13659,13697,12558]],[[13659,13695,13697]],[[12558,13341,13343]],[[13697,13662,13672]],[[13697,13341,12558]],[[13697,13672,13341]],[[13662,13695,13685]],[[13662,13697,13695]],[[13639,13579,13680]],[[13639,13601,13579]],[[13696,13689,13688]],[[13696,1619,13686]],[[13605,13691,1375]],[[13605,13665,13691]],[[13507,13420,13419]],[[13580,13534,13410]],[[13623,13641,13671]],[[13641,13643,13692]],[[13671,13641,13692]],[[13644,13642,13641]],[[13369,13432,13431]],[[13369,13456,13432]],[[13414,13559,13565]],[[13413,13539,13559]],[[13432,13442,13430]],[[13444,13404,13442]],[[13386,13417,13481]],[[13443,13503,13497]],[[13580,13410,13420]],[[13620,13425,13422]],[[13420,13410,13418]],[[13534,13411,13410]],[[13499,13498,13396]],[[13503,13505,13504]],[[13690,13677,13694]],[[13531,13530,13677]],[[13508,13578,13433]],[[13575,13680,13625]],[[13689,13529,13688]],[[13679,13530,13529]],[[13686,13500,13478]],[[1619,13452,13500]],[[13682,13678,13334]],[[13682,13677,13678]],[[13551,13569,13572]],[[13603,13619,13569]],[[13578,13625,13434]],[[13680,13579,13547]],[[13434,13547,13548]],[[13625,13680,13547]],[[13569,13604,13603]],[[13518,13345,13604]],[[13602,13684,13638]],[[13683,13351,13684]],[[13536,13349,13537]],[[13536,11610,13349]],[[13657,13340,13658]],[[13657,13670,13340]],[[11660,13447,11649]],[[11660,13424,13447]],[[13413,13532,13522]],[[13528,13521,13561]],[[13513,13561,13511]],[[13532,13528,13561]],[[13689,13686,13679]],[[13689,13696,13686]],[[1375,13329,13605]],[[1374,13327,13329]],[[13418,13698,13636]],[[13418,13410,13620]],[[13620,13422,13698]],[[13425,13426,13422]],[[13422,13636,13698]],[[13421,13635,13636]],[[13418,13620,13698]],[[13412,13425,13620]],[[13635,13421,13377]],[[13636,13422,13421]],[[13546,13504,13396]],[[13546,13503,13504]],[[13691,13665,13581]],[[13605,13328,13665]],[[13581,13664,13583]],[[13665,13475,13664]],[[13358,13673,1778]],[[13358,13541,13673]],[[13498,13497,13546]],[[13417,13443,13497]],[[13396,13498,13546]],[[13499,13479,13498]],[[13692,13643,13336]],[[13642,13682,13643]],[[13450,13629,13451]],[[13616,13330,13629]],[[13675,13606,1369]],[[13613,13693,13661]],[[13607,13608,13598]],[[13606,13675,13613]],[[13606,13613,13608]],[[13675,13337,13613]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e44faa0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1af49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13699,13700,13701]],[[13699,13701,13702]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4548ff-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13703,9877,9881]],[[9864,13704,13705]],[[13705,13704,13703]],[[9864,9877,13704]],[[9865,13705,9881]],[[9865,9864,13705]],[[13705,13703,9881]],[[13704,9877,13703]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e45490b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13706,13707,13708]],[[13709,13710,13711]],[[13712,13710,13713]],[[13714,13715,13716]],[[13717,13718,13719]],[[13720,13709,13711]],[[13721,13722,13723]],[[13724,13725,13726]],[[13715,13727,13728]],[[13729,13730,13713]],[[13731,13732,13729]],[[13733,13734,13706]],[[13735,13732,13723]],[[13732,13724,13736]],[[13737,13731,13738]],[[13739,13733,13706]],[[13708,13740,13741]],[[13723,13732,13731]],[[13731,13729,13709]],[[13736,13727,13713]],[[13709,13729,13713]],[[13729,13732,13730]],[[13714,13716,13734]],[[13725,13707,13716]],[[13709,13713,13710]],[[13734,13707,13706]],[[13724,13726,13727]],[[13726,13716,13728]],[[13742,13743,13744]],[[13713,13727,13715]],[[13732,13736,13730]],[[13732,13745,13724]],[[13736,13724,13727]],[[13746,13725,13724]],[[13717,13719,13747]],[[13711,13710,13719]],[[13741,13748,13749]],[[13738,13709,13720]],[[13716,13715,13728]],[[13743,13713,13715]],[[13712,13742,13744]],[[13713,13743,13742]],[[13731,13750,13721]],[[13745,13732,13735]],[[13731,13748,13750]],[[13751,13746,13745]],[[13708,13741,13752]],[[13749,13753,13754]],[[13740,13722,13721]],[[13722,13735,13723]],[[13748,13741,13740]],[[13745,13735,13722]],[[13712,13713,13742]],[[13730,13736,13713]],[[13719,13720,13711]],[[13738,13731,13709]],[[13710,13747,13719]],[[13744,13743,13755]],[[13747,13734,13733]],[[13716,13707,13734]],[[13727,13726,13728]],[[13725,13716,13726]],[[13734,13747,13744]],[[13733,13717,13747]],[[13747,13712,13744]],[[13747,13710,13712]],[[13731,13721,13723]],[[13750,13748,13740]],[[13750,13740,13721]],[[13708,13746,13751]],[[13741,13754,13752]],[[13718,13720,13719]],[[13741,13749,13754]],[[13748,13731,13749]],[[13754,13739,13752]],[[13756,13753,13757]],[[13739,13717,13733]],[[13739,13758,13717]],[[13758,13718,13717]],[[13756,13738,13720]],[[13751,13745,13722]],[[13746,13724,13745]],[[13744,13755,13734]],[[13743,13715,13755]],[[13754,13758,13739]],[[13754,13753,13758]],[[13752,13706,13708]],[[13752,13739,13706]],[[13740,13751,13722]],[[13740,13708,13751]],[[13718,13756,13720]],[[13737,13757,13731]],[[13758,13756,13718]],[[13758,13753,13756]],[[13755,13714,13734]],[[13755,13715,13714]],[[13756,13737,13738]],[[13757,13749,13731]],[[13756,13757,13737]],[[13753,13749,13757]],[[13759,13746,13708]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e46330a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9c0f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13760,13761,13762]],[[13763,13764,13765]],[[13766,13767,13768]],[[13768,13769,13770]],[[13771,13772,13766]],[[13773,13774,13775]],[[13776,13777,13778]],[[13762,13778,13760]],[[13779,13780,13781]],[[13782,13783,13761]],[[13784,13785,13781]],[[13786,13787,13788]],[[13789,13790,13791]],[[13792,13793,13794]],[[13769,13788,13777]],[[13795,13796,13797]],[[13783,13770,13769]],[[13798,13797,13799]],[[13786,13788,13769]],[[13787,13800,13777]],[[13782,13801,13802]],[[13771,13768,13770]],[[13803,13804,13805]],[[13772,13771,13806]],[[13807,13789,13791]],[[13805,13794,13793]],[[13808,13809,13810]],[[13798,13799,13811]],[[13810,13809,13774]],[[13811,13792,13812]],[[13780,13813,13765]],[[13814,13815,13805]],[[13791,13816,13807]],[[13791,13790,13816]],[[13817,13807,13765]],[[13816,13790,13763]],[[13779,13815,13813]],[[13779,13767,13766]],[[13784,13780,13765]],[[13784,13781,13780]],[[13789,13817,13818]],[[13818,13817,13813]],[[13789,13818,13814]],[[13813,13780,13779]],[[13794,13805,13772]],[[13779,13781,13786]],[[13819,13815,13779]],[[13818,13813,13815]],[[13808,13804,13809]],[[13805,13819,13772]],[[13813,13817,13765]],[[13789,13807,13817]],[[13800,13796,13777]],[[13800,13797,13796]],[[13776,13778,13762]],[[13777,13796,13778]],[[13775,13774,13809]],[[13820,13803,13811]],[[13810,13774,13773]],[[13809,13820,13775]],[[13821,13799,13797]],[[13821,13820,13799]],[[13797,13798,13795]],[[13799,13820,13811]],[[13822,13795,13801]],[[13782,13812,13770]],[[13802,13801,13795]],[[13760,13778,13822]],[[13823,13822,13778]],[[13823,13795,13822]],[[13822,13801,13760]],[[13795,13798,13802]],[[13764,13821,13797]],[[13764,13773,13821]],[[13821,13775,13820]],[[13821,13773,13775]],[[13803,13805,13793]],[[13804,13814,13805]],[[13802,13811,13812]],[[13820,13809,13803]],[[13783,13776,13762]],[[13769,13777,13776]],[[13785,13786,13781]],[[13785,13824,13786]],[[13762,13761,13783]],[[13760,13801,13761]],[[13811,13802,13798]],[[13812,13782,13802]],[[13812,13792,13794]],[[13811,13803,13792]],[[13800,13784,13765]],[[13800,13785,13784]],[[13806,13771,13770]],[[13768,13767,13769]],[[13764,13808,13773]],[[13808,13763,13790]],[[13773,13808,13810]],[[13764,13763,13808]],[[13807,13763,13765]],[[13807,13816,13763]],[[13786,13824,13787]],[[13785,13800,13824]],[[13812,13806,13770]],[[13772,13825,13766]],[[13794,13806,13812]],[[13794,13772,13806]],[[13788,13787,13777]],[[13824,13800,13787]],[[13783,13782,13770]],[[13761,13801,13782]],[[13789,13814,13790]],[[13818,13815,13814]],[[13783,13769,13776]],[[13767,13786,13769]],[[13796,13823,13778]],[[13796,13795,13823]],[[13771,13766,13768]],[[13825,13779,13766]],[[13792,13803,13793]],[[13804,13790,13814]],[[13809,13804,13803]],[[13808,13790,13804]],[[13772,13819,13825]],[[13805,13815,13819]],[[13767,13779,13786]],[[13825,13819,13779]],[[13800,13826,13797]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e47e113-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9c0e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13827,13828,13829]],[[13830,13831,13832]],[[13833,13834,13835]],[[13836,13837,13838]],[[13839,13840,13841]],[[13834,13842,13843]],[[13844,13845,13846]],[[13833,13847,13834]],[[13848,13847,13849]],[[13842,13834,13847]],[[13850,13844,13851]],[[13845,13852,13846]],[[13853,13854,13831]],[[13846,13855,13839]],[[13856,13857,13858]],[[13859,13860,13857]],[[13856,13859,13857]],[[13861,13839,13841]],[[13852,13855,13846]],[[13849,13847,13833]],[[13862,13863,13829]],[[13864,13865,13855]],[[13857,13854,13853]],[[13860,13859,13856]],[[13866,13841,13867]],[[13855,13865,13868]],[[13853,13869,13827]],[[13860,13854,13857]],[[13870,13867,13840]],[[13830,13871,13831]],[[13871,13872,13873]],[[13873,13869,13831]],[[13874,13875,13876]],[[13877,13869,13873]],[[13840,13878,13879]],[[13880,13881,13848]],[[13835,13843,13882]],[[13883,13867,13870]],[[13882,13876,13884]],[[13885,13872,13886]],[[13887,13852,13845]],[[13863,13864,13852]],[[13882,13884,13849]],[[13848,13862,13842]],[[13879,13870,13840]],[[13885,13875,13874]],[[13888,13837,13872]],[[13889,13828,13877]],[[13874,13890,13872]],[[13872,13877,13873]],[[13880,13868,13881]],[[13855,13852,13864]],[[13891,13864,13863]],[[13865,13881,13868]],[[13871,13886,13872]],[[13836,13889,13877]],[[13892,13837,13888]],[[13836,13877,13872]],[[13870,13886,13883]],[[13870,13879,13893]],[[13830,13832,13866]],[[13831,13854,13832]],[[13839,13878,13840]],[[13893,13886,13870]],[[13843,13894,13882]],[[13895,13896,13889]],[[13837,13836,13872]],[[13828,13896,13829]],[[13884,13876,13875]],[[13892,13888,13897]],[[13833,13882,13849]],[[13875,13898,13884]],[[13834,13843,13835]],[[13842,13894,13843]],[[13853,13827,13829]],[[13869,13877,13827]],[[13882,13892,13876]],[[13837,13895,13838]],[[13880,13899,13868]],[[13900,13901,13878]],[[13868,13878,13855]],[[13878,13901,13879]],[[13855,13878,13839]],[[13901,13884,13898]],[[13868,13900,13878]],[[13868,13899,13900]],[[13879,13901,13898]],[[13900,13884,13901]],[[13876,13897,13890]],[[13876,13892,13897]],[[13858,13853,13829]],[[13831,13869,13853]],[[13884,13899,13849]],[[13884,13900,13899]],[[13863,13887,13829]],[[13863,13852,13887]],[[13835,13882,13833]],[[13894,13892,13882]],[[13856,13851,13860]],[[13846,13839,13861]],[[13887,13850,13829]],[[13887,13845,13844]],[[13862,13891,13863]],[[13891,13902,13865]],[[13891,13865,13864]],[[13891,13862,13902]],[[13867,13841,13840]],[[13866,13854,13861]],[[13849,13880,13848]],[[13849,13899,13880]],[[13866,13861,13841]],[[13851,13846,13861]],[[13842,13895,13894]],[[13842,13896,13895]],[[13894,13837,13892]],[[13894,13895,13837]],[[13838,13889,13836]],[[13838,13895,13889]],[[13903,13858,13829]],[[13857,13853,13858]],[[13890,13874,13876]],[[13885,13904,13875]],[[13848,13902,13862]],[[13881,13865,13902]],[[13831,13871,13873]],[[13883,13886,13871]],[[13898,13893,13879]],[[13898,13875,13904]],[[13861,13860,13851]],[[13861,13854,13860]],[[13883,13830,13867]],[[13883,13871,13830]],[[13851,13844,13846]],[[13850,13887,13844]],[[13830,13866,13867]],[[13832,13854,13866]],[[13847,13848,13842]],[[13881,13902,13848]],[[13888,13890,13897]],[[13888,13872,13890]],[[13903,13856,13858]],[[13850,13851,13856]],[[13877,13828,13827]],[[13889,13896,13828]],[[13893,13904,13886]],[[13893,13898,13904]],[[13872,13885,13874]],[[13886,13904,13885]],[[13850,13903,13829]],[[13850,13856,13903]],[[13842,13905,13896]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4aa043-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff17049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13906,13907,13908]],[[13909,8727,8794]],[[13910,7726,7728]],[[13911,13912,13913]],[[13914,13913,13915]],[[13916,13917,13918]],[[13910,13916,7726]],[[13919,7726,13920]],[[13914,13915,13921]],[[13919,13920,13922]],[[13923,13914,13921]],[[13918,13920,13916]],[[13924,13923,13921]],[[13912,7726,13921]],[[13925,13926,13927]],[[13914,13923,13928]],[[13913,13912,13915]],[[13926,7726,13912]],[[13929,13930,13931]],[[13932,7727,13926]],[[13924,13921,13919]],[[13915,13912,13921]],[[13918,13933,13922]],[[13921,7726,13919]],[[8725,13934,7728]],[[13934,13917,13916]],[[7726,13916,13920]],[[13910,13934,13916]],[[13922,13924,13919]],[[13933,13935,13923]],[[13936,13937,13938]],[[13923,13935,13939]],[[7728,13934,13910]],[[13940,13941,13935]],[[13942,13929,13943]],[[13944,13945,13946]],[[13947,13948,13925]],[[13949,13950,13932]],[[13951,13925,13931]],[[13950,13943,13952]],[[13942,13943,13949]],[[13953,13952,13954]],[[13955,13956,13954]],[[13943,13950,13949]],[[13933,13923,13924]],[[13955,13957,13958]],[[13931,13942,13926]],[[13908,7727,13932]],[[13959,13960,13908]],[[13961,8728,7727]],[[13962,13926,13912]],[[7727,7726,13926]],[[13942,13949,13932]],[[13950,13952,13953]],[[13930,13942,13931]],[[13930,13929,13942]],[[13960,13906,13908]],[[13907,13945,13963]],[[13908,13907,7727]],[[13906,13960,13945]],[[13914,13928,13913]],[[13964,13912,13911]],[[13928,13965,13947]],[[13966,13912,13964]],[[13925,13951,13926]],[[13931,13926,13951]],[[13907,13963,7727]],[[13967,13968,13960]],[[13933,13918,13917]],[[13922,13920,13918]],[[13966,13962,13912]],[[13927,13926,13962]],[[13969,13970,13971]],[[13972,8728,13973]],[[13953,13954,13960]],[[13907,13906,13945]],[[13947,13966,13964]],[[13927,13962,13966]],[[13956,13955,13974]],[[13975,8727,13976]],[[13944,13973,13961]],[[13977,13972,13973]],[[13973,13946,13977]],[[13973,13944,13946]],[[8724,13938,8725]],[[8724,13958,13978]],[[13957,13978,13958]],[[8724,13975,13979]],[[13980,13944,13961]],[[13963,13945,13944]],[[13971,13972,13977]],[[13971,8728,13972]],[[13946,13968,13969]],[[8794,8728,13971]],[[8724,13979,13958]],[[13954,8794,13967]],[[13965,13939,13981]],[[13938,8724,13978]],[[13966,13947,13927]],[[13964,13911,13928]],[[13934,13940,13917]],[[13982,13937,13983]],[[13948,13943,13929]],[[13953,13960,13959]],[[13948,13955,13952]],[[13974,13975,13976]],[[13946,13969,13977]],[[13970,8794,13971]],[[13936,13938,13978]],[[13937,8725,13938]],[[13957,13947,13965]],[[13984,8725,13982]],[[13942,13932,13926]],[[13959,13908,13932]],[[13940,13935,13917]],[[13985,13984,13986]],[[13922,13933,13924]],[[13917,13935,13933]],[[13980,13961,7727]],[[13973,8728,13961]],[[13979,13955,13958]],[[13985,13935,13941]],[[8725,13940,13934]],[[8725,13941,13940]],[[13945,13968,13946]],[[13945,13960,13968]],[[13977,13969,13971]],[[13968,13967,13969]],[[13957,13981,13978]],[[13983,13937,13936]],[[13979,13975,13974]],[[8724,8727,13975]],[[13986,13984,13983]],[[8725,13937,13982]],[[13983,13984,13982]],[[13941,8725,13984]],[[13931,13925,13929]],[[13947,13957,13948]],[[13947,13925,13927]],[[13948,13929,13925]],[[13970,13967,8794]],[[13970,13969,13967]],[[13957,13955,13948]],[[13979,13974,13955]],[[13957,13965,13981]],[[13947,13964,13928]],[[13913,13928,13911]],[[13987,13939,13965]],[[13981,13939,13986]],[[13965,13928,13987]],[[13936,13981,13983]],[[13985,13941,13984]],[[13983,13981,13986]],[[13936,13978,13981]],[[13939,13985,13986]],[[13939,13935,13985]],[[13948,13952,13943]],[[13954,13967,13960]],[[13932,13953,13959]],[[13932,13950,13953]],[[13955,13954,13952]],[[13956,8794,13954]],[[13963,13980,7727]],[[13963,13944,13980]],[[13923,13987,13928]],[[13923,13939,13987]],[[13956,13976,13909]],[[13956,13974,13976]],[[13956,13909,8794]],[[13976,8727,13909]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4b15d3-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13988,13989,13990]],[[13991,13992,13993]],[[13994,13995,13996]],[[13990,13997,13998]],[[13992,13999,14000]],[[14001,14002,14003]],[[14001,13993,14000]],[[14004,14005,14006]],[[14002,14000,14007]],[[14003,14008,14009]],[[13996,14010,14011]],[[14012,14013,14014]],[[14015,13992,14016]],[[14017,14013,14018]],[[14019,14020,14015]],[[14019,14021,14020]],[[14022,14017,13989]],[[14019,14015,14016]],[[14016,14023,14019]],[[14023,13991,13994]],[[14024,14018,14012]],[[14005,14008,14007]],[[14025,14005,14004]],[[14014,14008,14005]],[[14015,13989,13992]],[[14026,13998,14014]],[[14014,14013,14026]],[[14012,14025,14024]],[[14017,14022,14013]],[[14027,13988,14026]],[[14011,14028,14029]],[[14030,14009,14028]],[[14029,13994,14011]],[[14023,14016,13991]],[[14026,14022,14027]],[[14026,14013,14022]],[[13995,14001,13996]],[[13993,13992,14000]],[[14031,14024,14004]],[[14014,14005,14025]],[[14026,13988,13998]],[[14027,13989,13988]],[[14006,14031,14004]],[[13992,13989,14018]],[[14007,14031,14006]],[[13999,14018,14024]],[[14004,14024,14025]],[[13999,13992,14018]],[[14031,14007,14000]],[[14006,14005,14007]],[[14002,14032,14003]],[[14009,13997,14028]],[[14000,14002,14001]],[[14007,14008,14002]],[[14003,14032,14008]],[[14002,14008,14032]],[[13995,13993,14001]],[[13995,13994,13991]],[[14010,14009,14030]],[[14008,13997,14009]],[[13994,14021,14023]],[[14029,14028,14033]],[[14011,14010,14030]],[[13996,14003,14010]],[[14022,13989,14027]],[[14017,14018,13989]],[[14010,14003,14009]],[[13996,14001,14003]],[[14021,14019,14023]],[[14020,13990,14015]],[[13995,13991,13993]],[[14016,13992,13991]],[[13994,14029,14021]],[[14028,13997,14033]],[[13990,14033,13997]],[[14021,14029,14033]],[[14028,14011,14030]],[[13994,13996,14011]],[[14025,14012,14014]],[[14018,14013,14012]],[[14031,13999,14024]],[[14031,14000,13999]],[[13989,14015,13990]],[[14021,14033,14020]],[[13988,13990,13998]],[[14020,14033,13990]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4bd8b0-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1771,3212,3213]],[[1820,14034,1782]],[[1782,3050,3060]],[[3060,3076,3077]],[[3060,3050,3076]],[[3076,3071,3074]],[[3074,3071,3073]],[[3076,3050,3071]],[[3071,3068,3069]],[[3071,3067,3068]],[[3071,3066,3067]],[[3071,3055,3066]],[[3066,3079,3051]],[[3051,3064,3065]],[[3051,3062,3064]],[[3064,3062,3063]],[[3051,3079,3062]],[[3062,3079,3061]],[[3066,3055,3079]],[[3079,3055,3080]],[[3071,3050,3055]],[[3055,3050,3054]],[[3054,3052,3053]],[[3054,3050,3052]],[[1782,3048,3050]],[[1782,14034,3048]],[[14035,1771,3213]],[[14036,14034,14037]],[[1771,3201,3212]],[[3212,3201,3210]],[[3210,3201,3208]],[[3208,3180,3174]],[[3208,3206,3180]],[[3180,3206,3177]],[[3208,3204,3206]],[[3206,3204,3184]],[[3184,3182,3205]],[[3184,3204,3182]],[[3208,3203,3204]],[[3208,3171,3203]],[[3203,3194,3187]],[[3203,3191,3194]],[[3203,3195,3191]],[[3203,3171,3195]],[[3208,3201,3171]],[[3171,3201,3172]],[[1771,3190,3201]],[[3201,3190,3198]],[[1820,14037,14034]],[[1820,1771,14036]],[[14034,14036,3213]],[[14036,1771,14035]],[[1820,14036,14037]],[[14035,3213,14036]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4ee645-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14038,14039,14040]],[[14041,14042,14043]],[[14040,14043,14044]],[[14042,14039,14038]],[[14044,14038,14040]],[[14042,14041,14039]],[[14045,14043,14040]],[[14046,14038,14044]],[[14046,14042,14038]],[[14043,14045,14041]],[[14046,14043,14042]],[[14046,14044,14043]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e4fa919-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efebf349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14047,14048,14049]],[[14050,14051,8743]],[[14052,8402,8744]],[[14052,14053,14048]],[[14054,14050,8743]],[[14055,14056,14057]],[[14058,14051,14059]],[[14050,14054,14060]],[[14050,14059,14051]],[[14061,14062,14063]],[[14064,14065,14066]],[[14067,14051,14058]],[[14068,14069,14070]],[[14059,14050,14071]],[[14059,14072,14073]],[[14074,14064,14075]],[[14061,14073,14062]],[[14076,14077,14078]],[[14079,14061,14069]],[[14080,14073,14061]],[[14072,14063,14073]],[[14063,8322,14081]],[[14057,14056,8323]],[[8323,8325,14082]],[[14061,14063,14069]],[[14081,8322,8323]],[[14068,14070,14083]],[[14068,14084,14085]],[[14083,14070,14081]],[[14062,14073,14063]],[[14060,14054,8743]],[[14071,14086,14072]],[[14052,14048,14087]],[[8325,8402,14087]],[[8743,14084,8744]],[[14065,14088,14066]],[[14089,14074,14075]],[[14075,14090,14056]],[[14056,14090,8323]],[[14070,14069,14063]],[[14082,14057,8323]],[[14077,14076,14091]],[[14065,14064,14074]],[[14066,14092,14064]],[[14078,14089,14075]],[[14065,14074,14089]],[[14065,14084,14088]],[[8743,14051,14080]],[[14072,14086,14063]],[[14072,14059,14071]],[[14060,14071,14050]],[[8322,14086,14071]],[[14073,14058,14059]],[[14067,14080,14051]],[[14073,14067,14058]],[[14073,14080,14067]],[[14093,14083,14081]],[[14066,14088,14068]],[[8744,14065,14094]],[[14079,14095,14061]],[[14085,14079,14069]],[[14095,14080,14061]],[[8744,14084,14065]],[[8743,14079,14084]],[[8325,14096,14082]],[[8325,14087,14096]],[[14093,14081,8323]],[[14093,14097,14092]],[[14068,14085,14069]],[[14084,14079,14085]],[[8743,14095,14079]],[[8743,14080,14095]],[[14094,14053,8744]],[[14048,14096,14087]],[[14094,14048,14053]],[[14094,14098,14049]],[[14070,14063,14081]],[[14086,8322,14063]],[[8402,14052,14087]],[[8744,14053,14052]],[[14091,14099,14077]],[[14065,14089,14099]],[[14082,14076,14057]],[[14099,14089,14078]],[[14055,14076,14078]],[[14098,14094,14091]],[[14076,14055,14057]],[[14078,14056,14055]],[[14075,14097,14090]],[[14092,14083,14093]],[[14082,14049,14076]],[[14049,14048,14094]],[[14066,14068,14083]],[[14088,14084,14068]],[[14076,14049,14098]],[[14047,14096,14048]],[[14078,14077,14099]],[[14076,14098,14091]],[[14064,14092,14097]],[[14066,14083,14092]],[[14082,14047,14049]],[[14082,14096,14047]],[[14065,14091,14094]],[[14065,14099,14091]],[[14078,14075,14056]],[[14064,14097,14075]],[[8322,14060,8743]],[[8322,14071,14060]],[[14090,14093,8323]],[[14090,14097,14093]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e506d0e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14100,14101,14102]],[[14103,14104,14105]],[[14106,14107,14104]],[[14108,14102,14101]],[[14109,14110,14106]],[[14110,14107,14111]],[[14112,14109,14103]],[[14104,14108,14105]],[[14103,14106,14104]],[[14111,14107,14106]],[[14113,14109,14112]],[[14110,14111,14106]],[[14101,14105,14108]],[[14104,14107,14114]],[[14115,14103,14105]],[[14109,14106,14103]],[[14116,14117,14118]],[[14119,14120,14112]],[[14100,14115,14101]],[[14121,14119,14103]],[[14115,14121,14103]],[[14103,14119,14112]],[[14122,14110,14123]],[[14110,14109,14113]],[[14116,14119,14124]],[[14120,14113,14112]],[[14117,14116,14121]],[[14121,14116,14124]],[[14123,14120,14119]],[[14123,14113,14120]],[[14118,14100,14102]],[[14115,14105,14101]],[[14114,14108,14104]],[[14122,14102,14108]],[[14123,14116,14118]],[[14123,14119,14116]],[[14122,14114,14107]],[[14122,14108,14114]],[[14117,14100,14118]],[[14117,14121,14100]],[[14123,14110,14113]],[[14122,14107,14110]],[[14119,14121,14124]],[[14115,14100,14121]],[[14125,14102,14122]],[[14118,14126,14123]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e51a58d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1773,3169,3199]],[[3199,3169,3200]],[[3200,3169,3197]],[[3197,3169,3173]],[[3173,3169,3196]],[[3196,3169,3192]],[[3192,3169,3193]],[[3193,3169,3188]],[[3188,3169,3189]],[[3189,3169,3202]],[[3202,3169,3183]],[[3183,3169,3181]],[[3181,3169,3185]],[[3185,3169,3186]],[[3186,3169,3178]],[[3178,3169,3179]],[[3179,3169,3175]],[[3175,3169,3176]],[[3176,3169,3207]],[[3207,3169,3209]],[[3209,3169,3211]],[[14127,12238,14128]],[[1812,1830,12238]],[[3115,12238,1830]],[[14129,3169,1773]],[[1830,3121,3115]],[[1830,3135,3121]],[[3121,3156,3158]],[[3121,3135,3156]],[[3156,3134,3125]],[[3125,3130,3128]],[[3125,3134,3130]],[[3130,3134,3154]],[[3156,3137,3134]],[[3134,3137,3153]],[[3153,3137,3152]],[[3156,3135,3137]],[[3137,3141,3139]],[[3137,3145,3141]],[[3141,3145,3143]],[[3137,3135,3145]],[[3145,3150,3122]],[[3122,3150,3123]],[[3145,3135,3150]],[[1812,14128,14129]],[[12238,3169,14130]],[[1812,14129,1773]],[[14130,3169,14129]],[[1812,14127,14128]],[[1812,12238,14127]],[[14128,14130,14129]],[[14128,12238,14130]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e528fa4-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14131,14132,14133]],[[14134,14132,14131]],[[14132,14135,14136]],[[14132,14137,14135]],[[14138,14139,14132]],[[14140,14138,14132]],[[14141,14140,14132]],[[14142,14143,14144]],[[14145,14132,14146]],[[14146,14132,14147]],[[14147,14132,14148]],[[14148,14142,14149]],[[14149,14142,14150]],[[14150,14142,14151]],[[14151,14142,14152]],[[14152,14142,14144]],[[14153,14154,14155]],[[14143,14142,14154]],[[14156,14143,14154]],[[14132,14142,14148]],[[14157,14158,14154]],[[14153,14157,14154]],[[14132,14154,14142]],[[14159,14155,14154]],[[14160,14159,14154]],[[14161,14160,14154]],[[14162,14161,14154]],[[14163,14162,14164]],[[14165,14163,14164]],[[14166,14165,14164]],[[14167,14166,14164]],[[14168,14167,14164]],[[14169,14168,14164]],[[14170,14169,14164]],[[14171,14170,14164]],[[14172,14171,14164]],[[14173,14172,14164]],[[14174,14173,14164]],[[14175,14174,14164]],[[14176,14175,14164]],[[14177,14132,14145]],[[14178,14164,14179]],[[14179,14164,14180]],[[14180,14164,14132]],[[14181,14180,14132]],[[14182,14181,14132]],[[14183,14182,14132]],[[14184,14183,14132]],[[14185,14184,14132]],[[14186,14185,14132]],[[14186,14187,14185]],[[14186,14188,14187]],[[14186,14189,14188]],[[14186,14190,14189]],[[14186,14191,14190]],[[14186,14192,14191]],[[14186,14193,14192]],[[14186,14194,14193]],[[14195,14196,14186]],[[14197,14195,14186]],[[14198,14197,14186]],[[14199,14198,14186]],[[14200,14199,14186]],[[14201,14200,14186]],[[14202,14201,14203]],[[14204,14202,14203]],[[14205,14204,14203]],[[14206,14205,14203]],[[14132,14164,14154]],[[14207,14203,14208]],[[14208,14203,14209]],[[14209,14203,14210]],[[14210,14203,14211]],[[14211,14203,14212]],[[14212,14203,14213]],[[14213,14203,14214]],[[14214,14203,14215]],[[14215,14203,14216]],[[14216,14203,14217]],[[14217,14203,14218]],[[14218,14203,14219]],[[14219,14203,14220]],[[14220,14203,14221]],[[14221,14203,14132]],[[14222,14221,14132]],[[14223,14222,14132]],[[14224,14223,14132]],[[14225,14224,14132]],[[14226,14225,14132]],[[14134,14226,14132]],[[14177,14141,14132]],[[14133,14132,14136]],[[14227,14164,14178]],[[14227,14176,14164]],[[14162,14154,14164]],[[14158,14156,14154]],[[14228,14203,14207]],[[14228,14206,14203]],[[14137,14132,14139]],[[14203,14186,14132]],[[14201,14186,14203]],[[14196,14194,14186]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e530428-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14229,14230,14231]],[[14232,14233,14231]],[[14234,14232,14235]],[[14236,14229,14237]],[[14234,14238,14232]],[[14230,14229,14236]],[[14238,14239,14233]],[[14236,14237,14240]],[[14241,14235,14230]],[[14235,14232,14231]],[[14230,14235,14231]],[[14242,14234,14235]],[[14232,14238,14233]],[[14234,14239,14238]],[[14234,14243,14239]],[[14234,14237,14243]],[[14244,14236,14240]],[[14229,14233,14239]],[[14244,14241,14236]],[[14242,14235,14241]],[[14241,14230,14236]],[[14231,14233,14229]],[[14243,14229,14239]],[[14243,14237,14229]],[[14242,14244,14240]],[[14242,14241,14244]],[[14240,14245,14242]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e54165e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14246,14247,14248]],[[14249,14250,14251]],[[14247,14252,14248]],[[14253,14254,14255]],[[14256,14257,14258]],[[14258,14249,14251]],[[14246,14258,14247]],[[14251,14252,14247]],[[14259,14260,14261]],[[14258,14251,14247]],[[14262,14260,14259]],[[14261,14258,14246]],[[14263,14261,14260]],[[14264,14258,14261]],[[14265,14266,14267]],[[14268,14256,14264]],[[14264,14256,14258]],[[14250,14269,14270]],[[14263,14268,14261]],[[14268,14266,14256]],[[14270,14248,14252]],[[14269,14254,14248]],[[14271,14272,14256]],[[14257,14269,14249]],[[14258,14257,14249]],[[14272,14269,14257]],[[14251,14250,14252]],[[14249,14269,14250]],[[14253,14246,14248]],[[14255,14261,14246]],[[14266,14271,14256]],[[14265,14272,14271]],[[14259,14255,14254]],[[14259,14261,14255]],[[14262,14266,14263]],[[14265,14271,14266]],[[14261,14268,14264]],[[14263,14266,14268]],[[14256,14272,14257]],[[14265,14269,14272]],[[14250,14270,14252]],[[14269,14248,14270]],[[14266,14262,14267]],[[14263,14260,14262]],[[14246,14253,14255]],[[14248,14254,14253]],[[14267,14259,14254]],[[14267,14262,14259]],[[14273,14254,14269]],[[14267,14274,14265]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5527a9-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14275,14276,14277]],[[14278,14279,14280]],[[14281,14282,14283]],[[14280,14284,14285]],[[14286,14287,14282]],[[14288,14289,14290]],[[14291,14292,14285]],[[14284,14290,14285]],[[14292,14283,14293]],[[14293,14282,14294]],[[14295,14286,14296]],[[14277,14297,14275]],[[14298,14295,14299]],[[14286,14282,14281]],[[14277,14287,14297]],[[14288,14290,14284]],[[14300,14287,14286]],[[14297,14301,14275]],[[14302,14283,14291]],[[14303,14304,14279]],[[14278,14280,14285]],[[14279,14284,14280]],[[14298,14302,14305]],[[14292,14306,14307]],[[14299,14295,14302]],[[14282,14276,14294]],[[14292,14293,14306]],[[14283,14282,14293]],[[14304,14307,14294]],[[14308,14275,14301]],[[14300,14297,14287]],[[14300,14289,14297]],[[14308,14294,14275]],[[14294,14276,14275]],[[14288,14294,14308]],[[14306,14293,14294]],[[14288,14308,14289]],[[14301,14289,14308]],[[14292,14307,14303]],[[14306,14294,14307]],[[14278,14303,14279]],[[14278,14292,14303]],[[14297,14289,14301]],[[14300,14290,14289]],[[14302,14281,14283]],[[14296,14286,14281]],[[14279,14304,14284]],[[14303,14307,14304]],[[14305,14291,14285]],[[14305,14302,14291]],[[14298,14299,14302]],[[14295,14281,14302]],[[14300,14298,14305]],[[14295,14296,14281]],[[14282,14277,14276]],[[14282,14287,14277]],[[14285,14292,14278]],[[14291,14283,14292]],[[14300,14295,14298]],[[14300,14286,14295]],[[14304,14288,14284]],[[14304,14294,14288]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e55c364-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14309,9869,9874]],[[14310,9874,9873]],[[9868,14311,14312]],[[14311,9869,14309]],[[14310,14309,9874]],[[14311,9868,9869]],[[14312,14310,9873]],[[14313,14309,14310]],[[14313,14311,14309]],[[14312,9873,9868]],[[14313,14312,14311]],[[14313,14310,14312]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e55ea86-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14314,1013,1017]],[[1020,14315,1018]],[[14316,14314,1017]],[[14315,14317,14314]],[[14316,14315,14314]],[[14317,1013,14314]],[[1018,14316,1017]],[[1018,14315,14316]],[[1020,14317,14315]],[[1020,1013,14317]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e566010-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14318,14319,14320]],[[14321,14319,14322]],[[14320,14323,14321]],[[14324,14325,14326]],[[14320,14319,14323]],[[14327,14325,14324]],[[14322,14328,14326]],[[14328,14319,14318]],[[14324,14328,14329]],[[14322,14319,14328]],[[14328,14318,14329]],[[14320,14325,14318]],[[14328,14324,14326]],[[14329,14327,14324]],[[14318,14327,14329]],[[14318,14325,14327]],[[14320,14321,14322]],[[14323,14319,14321]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e580e0a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff16b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14330,14331,14332]],[[14333,14334,8708]],[[14335,14336,14333]],[[14337,14338,14336]],[[14332,14339,14340]],[[14341,14342,14334]],[[14343,14332,14340]],[[14344,14345,14346]],[[14347,14348,14349]],[[14350,14338,14337]],[[14350,14331,14330]],[[14340,14351,14344]],[[14336,14338,14334]],[[14352,14353,14346]],[[14332,14354,14339]],[[14355,8707,14356]],[[14348,14347,14354]],[[14339,14351,14340]],[[14343,14340,14357]],[[14358,14357,14344]],[[14338,14359,14334]],[[14338,14330,14359]],[[14357,14358,14359]],[[14360,14341,14353]],[[14361,14362,14363]],[[14364,14342,14365]],[[14359,14330,14343]],[[14338,14350,14330]],[[14350,14348,14331]],[[14331,14348,14354]],[[14341,14365,14342]],[[14353,14358,14346]],[[14349,14335,14366]],[[14336,14334,14333]],[[14359,14341,14334]],[[14359,14358,14341]],[[14341,14367,14365]],[[14360,14353,14352]],[[14345,14352,14346]],[[14341,14358,14353]],[[14368,14369,14352]],[[14370,14371,14372]],[[14337,14348,14350]],[[14347,8708,14373]],[[14343,14357,14359]],[[14340,14344,14357]],[[14374,14375,14376]],[[14377,14378,14342]],[[14377,14379,14378]],[[14377,14342,14375]],[[14330,14332,14343]],[[14331,14354,14332]],[[14339,14354,14380]],[[14381,14362,14361]],[[14382,14383,14362]],[[14362,14380,8708]],[[14383,14369,14362]],[[14384,14385,14386]],[[14356,14378,14379]],[[8707,14342,14378]],[[14358,14344,14346]],[[14351,14387,14388]],[[14389,14374,14376]],[[14372,14390,14384]],[[14389,14384,14374]],[[14385,14355,14379]],[[14374,14386,14375]],[[14374,14384,14386]],[[14383,14365,14391]],[[14388,14344,14351]],[[14392,14393,14391]],[[14392,14365,14394]],[[14365,14392,14391]],[[14365,14367,14394]],[[14395,14371,14382]],[[14393,14396,14397]],[[14386,14385,14379]],[[14385,14395,14355]],[[14390,14385,14384]],[[14390,14395,14385]],[[14386,14377,14375]],[[14386,14379,14377]],[[14396,14398,14397]],[[14367,14399,14398]],[[14392,14394,14393]],[[14367,14398,14394]],[[14370,14389,14364]],[[14372,14384,14389]],[[14368,14352,14345]],[[14399,14367,14360]],[[14399,14360,14352]],[[14367,14341,14360]],[[14355,14356,14379]],[[8707,14378,14356]],[[14382,14370,14365]],[[14372,14389,14370]],[[14382,14371,14370]],[[14390,14372,14371]],[[14337,14349,14348]],[[14366,14333,8708]],[[14366,14347,14349]],[[14373,14354,14347]],[[8707,14362,8708]],[[14397,14391,14393]],[[14339,14387,14351]],[[14339,14380,14381]],[[14373,14380,14354]],[[14373,8708,14380]],[[14389,14376,14364]],[[14375,14342,14376]],[[8707,14382,14362]],[[14395,14390,14371]],[[8707,14395,14382]],[[8707,14355,14395]],[[14363,14368,14345]],[[14362,14369,14368]],[[14337,14335,14349]],[[14337,14336,14335]],[[14347,14366,8708]],[[14335,14333,14366]],[[14394,14396,14393]],[[14394,14398,14396]],[[14369,14399,14352]],[[14369,14398,14399]],[[14369,14397,14398]],[[14383,14391,14397]],[[14369,14383,14397]],[[14382,14365,14383]],[[14344,14388,14345]],[[14362,14368,14363]],[[14370,14364,14365]],[[14376,14342,14364]],[[14345,14388,14363]],[[14381,14380,14362]],[[14361,14388,14387]],[[14361,14363,14388]],[[14387,14381,14361]],[[14387,14339,14381]],[[8707,8710,14342]],[[8792,8708,14334]],[[14342,8792,14334]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e580e10-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14400,10084,10083]],[[10121,14400,10122]],[[10122,14400,10124]],[[10124,14400,10125]],[[10125,14400,10127]],[[10127,14400,10128]],[[10128,14400,10130]],[[10130,14400,10131]],[[10131,14400,10332]],[[10332,14400,10133]],[[10133,14400,10134]],[[10134,14400,10339]],[[10339,14400,14401]],[[10338,10339,14401]],[[10337,10338,14401]],[[10149,10337,14401]],[[14401,14402,14403]],[[10335,14401,10336]],[[10336,14401,10399]],[[10334,14401,14403]],[[10398,10399,14401]],[[10333,10398,14401]],[[10334,10333,14401]],[[10276,14404,10278]],[[10404,10385,14403]],[[10409,10404,14403]],[[10326,10409,14403]],[[14403,14402,14404]],[[10322,14403,10320]],[[10320,14403,10258]],[[10258,14403,10261]],[[10261,14403,10263]],[[10263,14403,10265]],[[10269,14403,14404]],[[10267,10265,14403]],[[10269,10267,14403]],[[10274,10269,14404]],[[10276,10274,14404]],[[10250,14404,10135]],[[10174,10278,14404]],[[10279,10174,14404]],[[10138,10279,14404]],[[10139,10138,14404]],[[10248,10139,14404]],[[10250,10248,14404]],[[10117,14400,10119]],[[10136,10135,14404]],[[10252,10136,14404]],[[14404,14402,14400]],[[10309,14404,10286]],[[10286,14404,10289]],[[10289,14404,10177]],[[10177,14404,10290]],[[10290,14404,10293]],[[10293,14404,10297]],[[10297,14404,10307]],[[10307,14404,10298]],[[10298,14404,10303]],[[10303,14404,10305]],[[10305,14404,10272]],[[10272,14404,10313]],[[10313,14404,10312]],[[10312,14404,10311]],[[10311,14404,10310]],[[10310,14404,10283]],[[10283,14404,10284]],[[10284,14404,10306]],[[10306,14404,10304]],[[10304,14404,10301]],[[10273,14404,14400]],[[10273,10301,14404]],[[10295,10273,14400]],[[10292,10295,14400]],[[10080,10292,14400]],[[10081,10080,14400]],[[10285,10081,14400]],[[10088,10285,14400]],[[10090,10088,14400]],[[10096,10090,14400]],[[10097,10096,14400]],[[10099,10097,14400]],[[10101,10099,14400]],[[10106,10101,14400]],[[10104,10106,14400]],[[10107,10104,14400]],[[10109,10107,14400]],[[10111,10109,14400]],[[10113,10111,14400]],[[10115,10113,14400]],[[10117,10115,14400]],[[10385,10334,14403]],[[14400,10083,10119]],[[14401,14400,14402]],[[10121,10084,14400]],[[10253,14404,10309]],[[10253,10252,14404]],[[10323,14403,10322]],[[10323,10326,14403]],[[10150,14401,10335]],[[10150,10149,14401]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e58829a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14405,14406,14407]],[[14408,14409,14410]],[[14409,14411,14405]],[[14412,14406,14405]],[[14413,14414,14410]],[[14410,14414,14408]],[[14408,14414,14411]],[[14413,14406,14412]],[[14409,14405,14407]],[[14412,14414,14413]],[[14411,14415,14405]],[[14411,14414,14415]],[[14416,14412,14405]],[[14416,14414,14412]],[[14410,14409,14407]],[[14408,14411,14409]],[[14415,14416,14405]],[[14415,14414,14416]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e58d102-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14417,14418,14419]],[[14420,14419,14421]],[[14422,14423,14424]],[[14425,14418,14417]],[[14426,14427,14424]],[[14426,14428,14429]],[[14430,14431,14417]],[[14425,14432,14418]],[[14429,14432,14425]],[[14433,14418,14432]],[[14434,14425,14431]],[[14427,14426,14425]],[[14430,14434,14431]],[[14427,14425,14434]],[[14420,14435,14430]],[[14424,14434,14435]],[[14424,14423,14426]],[[14433,14432,14436]],[[14423,14428,14426]],[[14436,14432,14428]],[[14422,14424,14437]],[[14427,14434,14424]],[[14433,14422,14421]],[[14424,14435,14437]],[[14438,14422,14437]],[[14423,14436,14428]],[[14426,14429,14425]],[[14428,14432,14429]],[[14438,14435,14420]],[[14435,14434,14430]],[[14438,14420,14421]],[[14430,14419,14420]],[[14422,14438,14421]],[[14437,14435,14438]],[[14433,14423,14422]],[[14433,14436,14423]],[[14430,14417,14419]],[[14431,14425,14417]],[[14419,14439,14421]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5993eb-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14440,14441,14442]],[[14443,14444,14445]],[[14443,14446,14444]],[[14447,14448,14444]],[[14449,14450,14443]],[[14446,14447,14444]],[[14451,14449,14445]],[[14452,14448,14441]],[[14440,14453,14454]],[[14455,14456,14457]],[[14454,14457,14443]],[[14458,14459,14457]],[[14458,14456,14453]],[[14458,14457,14456]],[[14447,14458,14460]],[[14459,14446,14443]],[[14449,14443,14445]],[[14457,14459,14443]],[[14444,14452,14445]],[[14444,14448,14452]],[[14450,14454,14443]],[[14453,14456,14455]],[[14447,14461,14459]],[[14447,14446,14461]],[[14454,14453,14455]],[[14460,14458,14453]],[[14452,14451,14445]],[[14462,14450,14449]],[[14440,14450,14462]],[[14454,14455,14457]],[[14440,14454,14450]],[[14440,14460,14453]],[[14463,14451,14452]],[[14462,14449,14451]],[[14441,14440,14462]],[[14442,14460,14440]],[[14447,14459,14458]],[[14461,14446,14459]],[[14451,14463,14462]],[[14448,14442,14441]],[[14441,14463,14452]],[[14441,14462,14463]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5aa630-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14464,12663,3215]],[[14465,14466,14467]],[[14468,14465,14467]],[[14469,3213,3168]],[[14470,14471,14472]],[[14473,3214,12663]],[[14474,14475,3048]],[[14476,12663,14477]],[[14478,14479,14480]],[[14481,14482,14483]],[[14484,14485,14486]],[[14487,14488,14489]],[[14485,14487,14490]],[[14491,14492,14493]],[[14488,14487,14494]],[[14495,14472,14496]],[[14482,14472,14495]],[[14491,14479,14034]],[[14497,14498,14483]],[[14499,3214,14473]],[[14493,14492,14500]],[[14494,14487,3214]],[[14481,14483,14499]],[[14499,14483,14498]],[[14471,14501,14496]],[[14482,14481,14472]],[[3049,14468,3215]],[[3049,3048,14468]],[[14502,14503,14504]],[[14505,14479,14478]],[[14491,14482,14501]],[[14506,14488,14494]],[[14482,14497,14483]],[[14484,14486,14469]],[[14491,14501,14492]],[[14501,14495,14496]],[[14500,14470,14493]],[[14507,14479,14508]],[[14476,14504,12663]],[[14503,14478,14504]],[[14509,14476,14477]],[[14502,14504,14476]],[[14510,14507,14473]],[[14499,14498,14494]],[[14472,14481,14499]],[[14498,14497,14506]],[[14511,14500,14492]],[[14511,14471,14500]],[[14512,14513,14491]],[[14470,14514,14512]],[[3214,14484,3168]],[[14486,14515,14469]],[[14489,14490,14487]],[[14515,14486,14490]],[[14486,14485,14490]],[[3214,14487,14485]],[[14471,14511,14501]],[[14492,14501,14511]],[[14472,14499,14470]],[[14494,3214,14499]],[[14478,14480,12663]],[[14507,14508,14473]],[[14474,14502,14476]],[[14516,14503,14502]],[[14517,14466,14475]],[[14509,14518,14476]],[[14464,14519,14477]],[[14518,14474,14476]],[[14480,14507,14510]],[[14520,14470,14473]],[[14493,14512,14491]],[[14508,14479,14513]],[[3048,14465,14468]],[[3048,14466,14465]],[[14034,14474,3048]],[[14034,14516,14474]],[[14519,14475,14477]],[[14521,14522,14517]],[[14477,14475,14509]],[[14475,14474,14518]],[[14504,14478,12663]],[[14503,14516,14505]],[[14503,14505,14478]],[[14034,14479,14505]],[[3213,14497,14482]],[[14515,14489,14497]],[[14498,14506,14494]],[[14497,14488,14506]],[[14497,14489,14488]],[[14515,14490,14489]],[[12663,14480,14510]],[[14479,14507,14480]],[[14508,14514,14520]],[[14508,14513,14514]],[[14474,14516,14502]],[[14034,14505,14516]],[[14468,14467,3215]],[[14517,14475,14521]],[[3213,14482,14491]],[[14482,14495,14501]],[[14472,14471,14496]],[[14470,14500,14471]],[[14479,14491,14513]],[[14034,3213,14491]],[[3168,14484,14469]],[[3214,14485,14484]],[[14509,14475,14518]],[[14466,3048,14475]],[[12663,14464,14477]],[[3215,14467,14522]],[[14519,14521,14475]],[[14519,14464,14521]],[[14522,14464,3215]],[[14522,14521,14464]],[[3213,14515,14497]],[[3213,14469,14515]],[[14467,14517,14522]],[[14467,14466,14517]],[[14510,14473,12663]],[[14470,14499,14473]],[[14508,14520,14473]],[[14514,14470,14520]],[[14470,14512,14493]],[[14514,14513,14512]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5b9032-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14523,14524,14525]],[[14526,14527,14528]],[[14529,14530,14523]],[[14531,14532,14533]],[[14534,14535,14536]],[[14537,14538,14539]],[[14540,14530,14529]],[[14533,14532,14527]],[[14526,14529,14523]],[[14523,14525,14526]],[[14536,14540,14528]],[[14535,14530,14540]],[[14530,14524,14523]],[[14530,14535,14537]],[[14541,14542,14539]],[[14543,14532,14539]],[[14544,14537,14535]],[[14545,14538,14537]],[[14542,14537,14539]],[[14538,14543,14539]],[[14531,14546,14547]],[[14539,14532,14541]],[[14525,14533,14527]],[[14547,14542,14541]],[[14526,14525,14527]],[[14524,14546,14525]],[[14534,14544,14535]],[[14543,14545,14544]],[[14530,14542,14524]],[[14530,14537,14542]],[[14525,14546,14533]],[[14547,14541,14532]],[[14534,14536,14528]],[[14535,14540,14536]],[[14533,14546,14531]],[[14524,14542,14546]],[[14531,14547,14532]],[[14546,14542,14547]],[[14543,14534,14528]],[[14543,14544,14534]],[[14544,14545,14537]],[[14543,14538,14545]],[[14540,14526,14528]],[[14540,14529,14526]],[[14548,14532,14543]],[[14527,14549,14528]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5bb778-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1012,1014,14550]],[[14551,1009,1022]],[[14551,14550,1009]],[[1014,1009,14550]],[[1012,14551,1022]],[[1012,14550,14551]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5cc8bd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14552,14553,14554]],[[14555,14556,14557]],[[14558,14559,14555]],[[14560,14561,14562]],[[14563,14557,14564]],[[14556,14565,14557]],[[14566,14567,14568]],[[14566,14569,14570]],[[14562,14571,14560]],[[14563,14564,14560]],[[14572,14573,14574]],[[14575,14576,14559]],[[14566,14568,14554]],[[14568,14577,14578]],[[14579,14552,14554]],[[14579,14578,14552]],[[14554,14568,14578]],[[14580,14558,14557]],[[14576,14577,14559]],[[14568,14567,14581]],[[14568,14581,14577]],[[14570,14569,14565]],[[14582,14578,14577]],[[14579,14554,14578]],[[14583,14584,14585]],[[14586,14578,14587]],[[14553,14584,14563]],[[14588,14580,14563]],[[14587,14589,14575]],[[14589,14578,14582]],[[14558,14575,14559]],[[14582,14577,14576]],[[14571,14553,14563]],[[14590,14583,14591]],[[14585,14586,14583]],[[14552,14578,14586]],[[14580,14572,14574]],[[14592,14584,14573]],[[14580,14588,14572]],[[14588,14584,14592]],[[14558,14580,14591]],[[14557,14563,14580]],[[14583,14590,14584]],[[14572,14592,14573]],[[14584,14588,14563]],[[14592,14572,14588]],[[14575,14589,14582]],[[14587,14578,14589]],[[14577,14581,14559]],[[14567,14566,14581]],[[14581,14555,14559]],[[14570,14556,14555]],[[14557,14558,14555]],[[14591,14575,14558]],[[14587,14583,14586]],[[14587,14591,14583]],[[14554,14553,14562]],[[14585,14584,14553]],[[14552,14585,14553]],[[14552,14586,14585]],[[14576,14575,14582]],[[14591,14587,14575]],[[14581,14570,14555]],[[14581,14566,14570]],[[14565,14564,14557]],[[14569,14561,14564]],[[14563,14560,14571]],[[14564,14561,14560]],[[14580,14574,14591]],[[14573,14584,14574]],[[14570,14565,14556]],[[14569,14564,14565]],[[14554,14562,14561]],[[14553,14571,14562]],[[14574,14590,14591]],[[14574,14584,14590]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b8e5e0130-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1ae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14593,13701,14594]],[[14595,13700,14596]],[[14596,14597,14595]],[[14598,14599,14600]],[[14601,13700,14602]],[[14600,13702,13701]],[[14603,14604,14605]],[[14606,14607,14608]],[[13701,14593,14609]],[[14610,14611,14612]],[[14613,14605,14614]],[[14615,14604,14616]],[[14617,14618,14607]],[[14619,14604,14603]],[[14600,14599,13702]],[[14617,14607,14620]],[[14609,14600,13701]],[[14609,14598,14600]],[[14614,14605,14604]],[[14621,14603,14605]],[[14595,14612,13700]],[[14611,14594,13700]],[[14622,14602,14615]],[[13700,13699,14613]],[[14623,14614,14604]],[[14602,13700,14613]],[[14606,14608,14619]],[[14608,14624,14619]],[[14597,14625,14616]],[[14602,14614,14623]],[[14609,14610,14616]],[[14609,14593,14610]],[[14612,14611,13700]],[[14594,13701,13700]],[[14625,14615,14616]],[[14622,14601,14602]],[[14595,14597,14616]],[[14596,14625,14597]],[[14602,14613,14614]],[[14621,14605,14613]],[[14610,14594,14611]],[[14610,14593,14594]],[[14610,14595,14616]],[[14610,14612,14595]],[[13702,14620,13699]],[[13702,14599,14618]],[[14625,14622,14615]],[[14625,14596,14622]],[[14598,14618,14599]],[[14598,14624,14618]],[[13702,14617,14620]],[[13702,14618,14617]],[[13699,14621,14613]],[[13699,14603,14621]],[[14615,14623,14604]],[[14615,14602,14623]],[[14618,14624,14607]],[[14598,14604,14624]],[[13699,14606,14603]],[[14607,14624,14608]],[[14620,14606,13699]],[[14620,14607,14606]],[[14596,14601,14622]],[[14596,13700,14601]],[[14606,14619,14603]],[[14624,14604,14619]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c79603-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14626,14627,14628]],[[14629,14630,14631]],[[14629,14632,14630]],[[14633,14630,14634]],[[14632,14635,14636]],[[14637,14638,14639]],[[14640,14641,14642]],[[14643,14644,14645]],[[14646,14647,14626]],[[14648,14649,14633]],[[14650,14649,14651]],[[14651,14630,14650]],[[14652,14653,14654]],[[14655,14636,14656]],[[14657,14658,14659]],[[14660,14644,14643]],[[14661,14658,14662]],[[14663,14635,14664]],[[14661,14659,14658]],[[14656,14635,14663]],[[14665,14641,14666]],[[14640,14662,14667]],[[14668,14638,14669]],[[14659,14670,14660]],[[14671,14642,14672]],[[14642,14641,14673]],[[14674,14647,14646]],[[14675,14676,14653]],[[14634,14648,14633]],[[14634,14632,14636]],[[14626,14663,14627]],[[14655,14652,14677]],[[14640,14678,14666]],[[14654,14657,14677]],[[14675,14653,14656]],[[14667,14658,14657]],[[14679,14680,14681]],[[14638,14672,14673]],[[14679,14681,14674]],[[14682,14683,14669]],[[14648,14655,14649]],[[14657,14659,14651]],[[14651,14649,14657]],[[14677,14657,14649]],[[14649,14655,14677]],[[14636,14635,14656]],[[14647,14684,14685]],[[14686,14687,14688]],[[14689,14685,14687]],[[14666,14689,14690]],[[14691,14647,14685]],[[14692,14682,14673]],[[14638,14673,14682]],[[14672,14642,14673]],[[14693,14646,14694]],[[14627,14663,14664]],[[14629,14695,14664]],[[14696,14626,14628]],[[14679,14674,14693]],[[14695,14628,14664]],[[14697,14694,14631]],[[14697,14693,14694]],[[14698,14679,14697]],[[14699,14688,14684]],[[14659,14660,14643]],[[14671,14672,14700]],[[14670,14661,14701]],[[14662,14658,14667]],[[14626,14675,14663]],[[14676,14689,14653]],[[14691,14676,14675]],[[14689,14678,14654]],[[14686,14688,14683]],[[14681,14680,14688]],[[14666,14690,14665]],[[14688,14668,14683]],[[14678,14689,14666]],[[14687,14684,14688]],[[14632,14664,14635]],[[14628,14627,14664]],[[14645,14659,14643]],[[14645,14651,14659]],[[14641,14640,14666]],[[14642,14662,14640]],[[14688,14702,14668]],[[14637,14703,14638]],[[14704,14629,14631]],[[14705,14646,14696]],[[14705,14696,14628]],[[14646,14626,14696]],[[14694,14705,14704]],[[14694,14646,14705]],[[14694,14704,14631]],[[14705,14628,14695]],[[14706,14702,14680]],[[14668,14639,14638]],[[14680,14702,14688]],[[14706,14639,14702]],[[14678,14667,14654]],[[14678,14640,14667]],[[14631,14680,14679]],[[14706,14707,14639]],[[14647,14691,14675]],[[14685,14676,14691]],[[14692,14665,14690]],[[14692,14641,14665]],[[14642,14701,14662]],[[14662,14701,14661]],[[14633,14650,14630]],[[14633,14649,14650]],[[14685,14684,14708]],[[14647,14699,14684]],[[14685,14689,14676]],[[14685,14708,14687]],[[14638,14703,14672]],[[14703,14644,14709]],[[14671,14701,14642]],[[14670,14659,14661]],[[14703,14671,14700]],[[14709,14701,14671]],[[14672,14703,14700]],[[14707,14644,14703]],[[14703,14709,14671]],[[14644,14660,14709]],[[14709,14670,14701]],[[14709,14660,14670]],[[14648,14636,14655]],[[14648,14634,14636]],[[14683,14668,14669]],[[14702,14639,14668]],[[14679,14693,14697]],[[14674,14646,14693]],[[14626,14647,14675]],[[14699,14681,14688]],[[14674,14699,14647]],[[14674,14681,14699]],[[14631,14698,14697]],[[14631,14679,14698]],[[14686,14682,14690]],[[14673,14641,14692]],[[14675,14656,14663]],[[14653,14655,14656]],[[14689,14654,14653]],[[14667,14657,14654]],[[14677,14652,14654]],[[14655,14653,14652]],[[14689,14687,14686]],[[14708,14684,14687]],[[14682,14686,14683]],[[14690,14689,14686]],[[14631,14706,14680]],[[14631,14707,14706]],[[14704,14695,14629]],[[14704,14705,14695]],[[14630,14632,14634]],[[14629,14664,14632]],[[14644,14651,14645]],[[14644,14630,14651]],[[14707,14637,14639]],[[14707,14703,14637]],[[14638,14682,14669]],[[14692,14690,14682]],[[14710,14711,14707]],[[14707,14711,14644]],[[14631,14710,14707]],[[14712,14631,14630]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c8a81e-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14713,14714,14715]],[[14716,14715,14717]],[[14716,14718,14715]],[[14716,14717,14719]],[[14720,14715,14718]],[[14714,14717,14715]],[[14720,14713,14715]],[[14721,14714,14713]],[[14721,14722,14719]],[[14721,14713,14722]],[[14722,14716,14719]],[[14722,14718,14716]],[[14722,14720,14718]],[[14722,14713,14720]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95c9e082-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb7549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14723,14724,14725]],[[14726,14725,14727]],[[14726,14723,14725]],[[14728,14724,14723]],[[14728,14726,14727]],[[14728,14723,14726]],[[14729,14724,14728]],[[14727,14729,14728]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cb8e76-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14730,14731,14732]],[[14733,14732,14734]],[[14733,14730,14732]],[[14735,14731,14730]],[[14735,14733,14734]],[[14735,14730,14733]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc2a0d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14736,14737,14738]],[[14739,14738,14740]],[[14737,14741,14742]],[[14743,14738,14739]],[[14740,14744,14739]],[[14745,14746,14737]],[[14747,14744,14740]],[[14742,14741,14744]],[[14744,14743,14739]],[[14744,14741,14736]],[[14743,14736,14738]],[[14743,14744,14736]],[[14738,14737,14746]],[[14736,14741,14737]],[[14747,14742,14744]],[[14747,14745,14742]],[[14742,14745,14737]],[[14747,14746,14745]],[[14738,14748,14740]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc786f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14749,14750,14751]],[[14752,14753,14754]],[[14755,14756,14757]],[[14758,14759,14760]],[[14761,14762,14763]],[[14752,14764,14753]],[[14756,14765,14766]],[[14767,14768,14769]],[[14766,14765,14770]],[[14771,14751,14772]],[[14773,14757,14774]],[[14775,14750,14749]],[[14776,14777,14752]],[[14772,14764,14778]],[[14762,14752,14754]],[[14770,14760,14779]],[[14768,14780,14763]],[[14763,14754,14753]],[[14766,14775,14756]],[[14766,14750,14775]],[[14775,14757,14756]],[[14762,14754,14763]],[[14749,14781,14782]],[[14783,14784,14785]],[[14786,14776,14762]],[[14749,14751,14781]],[[14780,14787,14788]],[[14789,14790,14783]],[[14757,14788,14755]],[[14757,14773,14788]],[[14781,14784,14782]],[[14780,14768,14791]],[[14790,14786,14761]],[[14781,14751,14785]],[[14758,14768,14767]],[[14769,14753,14792]],[[14761,14786,14762]],[[14789,14793,14790]],[[14793,14789,14786]],[[14794,14752,14777]],[[14776,14786,14777]],[[14761,14795,14796]],[[14773,14782,14797]],[[14774,14749,14782]],[[14775,14774,14757]],[[14775,14749,14774]],[[14798,14794,14771]],[[14778,14752,14794]],[[14763,14769,14768]],[[14763,14753,14769]],[[14761,14796,14790]],[[14795,14788,14773]],[[14796,14797,14790]],[[14796,14773,14797]],[[14783,14799,14789]],[[14793,14786,14790]],[[14797,14783,14790]],[[14789,14777,14786]],[[14784,14783,14797]],[[14789,14771,14794]],[[14785,14799,14783]],[[14771,14772,14798]],[[14764,14792,14753]],[[14770,14779,14750]],[[14756,14787,14770]],[[14756,14755,14787]],[[14776,14752,14762]],[[14778,14764,14752]],[[14795,14800,14788]],[[14787,14758,14770]],[[14785,14771,14799]],[[14785,14751,14771]],[[14792,14760,14759]],[[14770,14750,14766]],[[14764,14779,14760]],[[14764,14750,14779]],[[14767,14792,14759]],[[14764,14760,14792]],[[14778,14798,14772]],[[14778,14794,14798]],[[14788,14787,14755]],[[14791,14758,14787]],[[14782,14784,14797]],[[14781,14785,14784]],[[14800,14780,14788]],[[14761,14763,14780]],[[14758,14767,14759]],[[14769,14792,14767]],[[14771,14789,14799]],[[14794,14777,14789]],[[14756,14770,14765]],[[14758,14760,14770]],[[14782,14773,14774]],[[14796,14795,14773]],[[14780,14791,14787]],[[14768,14758,14791]],[[14761,14800,14795]],[[14761,14780,14800]],[[14764,14801,14750]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cc9f9d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14802,3101,3166]],[[14803,3167,3101]],[[14804,14805,14806]],[[14807,14808,14609]],[[14809,14810,14811]],[[14812,14813,14814]],[[14815,13091,14816]],[[14817,14818,14819]],[[14820,13097,13086]],[[14819,14821,13085]],[[14822,14823,14824]],[[14825,14826,14604]],[[14827,14828,14829]],[[14830,14831,14616]],[[14808,14832,14609]],[[14825,13090,14826]],[[14833,14834,14835]],[[14805,14811,14810]],[[14805,14810,3166]],[[14836,14837,14838]],[[12217,14839,3166]],[[14836,14826,13090]],[[14806,14837,14840]],[[14826,14841,14604]],[[14841,14826,14837]],[[14842,14843,14844]],[[14836,14838,14826]],[[14837,14826,14838]],[[3166,14841,14806]],[[14842,14844,14604]],[[13083,14809,14804]],[[14840,14837,14836]],[[14845,14846,14847]],[[14848,14849,14828]],[[14850,14849,14848]],[[12217,3159,14829]],[[14851,14852,14827]],[[14852,14853,14839]],[[14806,13083,14804]],[[14809,13083,14854]],[[14829,14855,14830]],[[14827,14848,14828]],[[14616,14851,14827]],[[14856,14846,14853]],[[14604,14844,14857]],[[14851,14616,14847]],[[14839,14846,14857]],[[14604,14857,14616]],[[14841,14857,14843]],[[14846,14856,14851]],[[14858,14855,14829]],[[14828,14849,14829]],[[13090,14840,14836]],[[13090,14806,14840]],[[14857,14846,14845]],[[14853,14852,14856]],[[14839,14853,14846]],[[14839,14827,14852]],[[13090,13083,14806]],[[14811,14805,14804]],[[14839,14848,14827]],[[12217,14850,14848]],[[3166,14839,14841]],[[12217,14848,14839]],[[14616,14845,14847]],[[14616,14857,14845]],[[14809,14859,14810]],[[3166,14810,14859]],[[14841,14842,14604]],[[14841,14843,14842]],[[14846,14851,14847]],[[14856,14852,14851]],[[14829,14850,12217]],[[14829,14849,14850]],[[14804,14809,14811]],[[13083,14860,14854]],[[14843,14857,14844]],[[14841,14839,14857]],[[3166,14806,14805]],[[14841,14837,14806]],[[14861,14862,14823]],[[14863,13097,14822]],[[14864,14831,14865]],[[14830,14616,14827]],[[14866,14867,14868]],[[14866,13090,14869]],[[14870,14813,14871]],[[14872,14609,14864]],[[14873,14817,13085]],[[14818,14803,14874]],[[14822,14824,14863]],[[13097,14874,14803]],[[14870,14871,14875]],[[14875,14876,14598]],[[14877,14878,14879]],[[14880,13091,14881]],[[14882,14883,14884]],[[14881,13091,14885]],[[14812,14886,14598]],[[14884,14883,14887]],[[14886,14888,14889]],[[14890,14879,14878]],[[14858,14891,14855]],[[14858,14829,3159]],[[14872,14870,14892]],[[14814,14813,14870]],[[14865,14831,14893]],[[14864,14616,14831]],[[14598,14835,14604]],[[14598,14833,14835]],[[14867,14869,14825]],[[14894,14835,14834]],[[14895,14815,14833]],[[14895,13091,14815]],[[14867,14825,14604]],[[14869,13090,14825]],[[3167,14818,14817]],[[14873,14896,14897]],[[14877,14897,14878]],[[14873,13085,14896]],[[14820,14874,13097]],[[14818,3167,14803]],[[13085,14821,13086]],[[14819,14874,14821]],[[14898,14868,14867]],[[14894,14834,14816]],[[14899,14900,14876]],[[14812,14598,14900]],[[14812,14899,14813]],[[14900,14598,14876]],[[14854,14861,14802]],[[14901,13097,14902]],[[14862,14903,14823]],[[14862,13083,14903]],[[14833,14815,14834]],[[14833,14598,14904]],[[14886,14904,14598]],[[14885,13091,14895]],[[14885,14886,14889]],[[14883,14905,14879]],[[14904,14886,14885]],[[14812,14814,14886]],[[14877,14879,3164]],[[14906,13085,13091]],[[14889,14905,14881]],[[14888,14886,14814]],[[14879,14887,14883]],[[14906,13091,14880]],[[14859,14809,14854]],[[13083,14862,14860]],[[14802,14861,14823]],[[14860,14862,14861]],[[14813,14899,14876]],[[14812,14900,14899]],[[14907,14908,14891]],[[14907,14865,14893]],[[14855,14908,14830]],[[14855,14891,14908]],[[14829,14830,14827]],[[14893,14831,14830]],[[14859,14854,3166]],[[14860,14861,14854]],[[14909,14858,14910]],[[3159,14872,14864]],[[14911,14822,14901]],[[14822,13097,14901]],[[14911,14912,14822]],[[14912,14823,14822]],[[14913,14858,3159]],[[14910,14865,14909]],[[14813,14875,14871]],[[14832,14598,14609]],[[3167,14914,3164]],[[14873,14897,14914]],[[14823,14903,14824]],[[13083,13097,14903]],[[14912,14803,3101]],[[14902,13097,14803]],[[14909,14865,14907]],[[14910,14913,14864]],[[3164,14814,3159]],[[3164,14879,14905]],[[14819,14818,14874]],[[14819,13085,14817]],[[14872,14807,14609]],[[14915,14832,14808]],[[14803,14912,14902]],[[3101,14802,14912]],[[14902,14911,14901]],[[14902,14912,14911]],[[14904,14895,14833]],[[14904,14885,14895]],[[14891,14909,14907]],[[14891,14858,14909]],[[14807,14892,14808]],[[14875,14598,14832]],[[14870,14875,14832]],[[14813,14876,14875]],[[14892,14915,14808]],[[14870,14832,14915]],[[14903,14863,14824]],[[14903,13097,14863]],[[14879,14890,14887]],[[14878,14897,14896]],[[14890,14896,14906]],[[14890,14878,14896]],[[14914,14817,14873]],[[14914,3167,14817]],[[14815,14816,14834]],[[13091,13090,14816]],[[14868,14898,14816]],[[14816,14898,14894]],[[14866,14868,14816]],[[14867,14604,14898]],[[14835,14898,14604]],[[14835,14894,14898]],[[14885,14889,14881]],[[14888,14905,14889]],[[14814,14905,14888]],[[14814,3164,14905]],[[14867,14866,14869]],[[14816,13090,14866]],[[14821,14820,13086]],[[14821,14874,14820]],[[14854,14802,3166]],[[14823,14912,14802]],[[14910,14864,14865]],[[14609,14616,14864]],[[14914,14877,3164]],[[14914,14897,14877]],[[14864,14913,3159]],[[14910,14858,14913]],[[14872,14892,14807]],[[14870,14915,14892]],[[14882,14880,14881]],[[14887,14890,14906]],[[14906,14884,14887]],[[14880,14882,14884]],[[14908,14893,14830]],[[14908,14907,14893]],[[14884,14906,14880]],[[14896,13085,14906]],[[14814,14872,3159]],[[14814,14870,14872]],[[14905,14882,14881]],[[14905,14883,14882]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ce263c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14916,14917,14918]],[[14919,14920,14921]],[[14921,14922,14923]],[[14924,14925,14918]],[[14926,14927,14928]],[[14922,14929,14923]],[[14930,14931,14932]],[[14933,14917,14916]],[[14934,14935,14936]],[[14937,14938,14922]],[[14939,14935,14940]],[[14941,14942,14943]],[[14930,14944,14945]],[[14946,14935,14947]],[[14920,14917,14948]],[[14949,14950,14944]],[[14936,14951,14952]],[[14943,14922,14938]],[[14953,14944,14930]],[[14933,14954,14917]],[[14952,14947,14936]],[[14955,14942,14941]],[[14946,14956,14940]],[[14956,14957,14958]],[[14959,14960,14956]],[[14952,14946,14947]],[[14955,14961,14962]],[[14963,14959,14956]],[[14962,14964,14951]],[[14964,14956,14946]],[[14961,14963,14956]],[[14954,14933,14931]],[[14965,14954,14931]],[[14933,14932,14931]],[[14966,14967,14931]],[[14948,14917,14954]],[[14926,14928,14957]],[[14927,14945,14928]],[[14960,14957,14956]],[[14958,14950,14968]],[[14919,14918,14920]],[[14925,14916,14918]],[[14921,14920,14948]],[[14918,14917,14920]],[[14921,14937,14922]],[[14969,14967,14960]],[[14967,14945,14927]],[[14945,14950,14928]],[[14960,14926,14957]],[[14960,14967,14926]],[[14970,14940,14968]],[[14970,14939,14940]],[[14935,14946,14940]],[[14964,14962,14956]],[[14956,14958,14940]],[[14958,14928,14950]],[[14952,14964,14946]],[[14952,14951,14964]],[[14942,14929,14922]],[[14971,14925,14924]],[[14933,14916,14932]],[[14953,14949,14944]],[[14972,14930,14932]],[[14944,14950,14945]],[[14937,14973,14938]],[[14937,14965,14969]],[[14971,14919,14923]],[[14948,14937,14921]],[[14940,14958,14968]],[[14957,14928,14958]],[[14947,14934,14936]],[[14947,14935,14934]],[[14929,14971,14923]],[[14929,14942,14971]],[[14923,14919,14921]],[[14924,14918,14919]],[[14974,14972,14925]],[[14974,14953,14972]],[[14972,14953,14930]],[[14949,14970,14950]],[[14972,14916,14925]],[[14972,14932,14916]],[[14936,14939,14974]],[[14936,14935,14939]],[[14963,14955,14941]],[[14955,14936,14942]],[[14938,14963,14941]],[[14951,14936,14955]],[[14955,14962,14951]],[[14961,14956,14962]],[[14919,14971,14924]],[[14942,14925,14971]],[[14926,14967,14927]],[[14966,14930,14945]],[[14969,14965,14967]],[[14965,14931,14967]],[[14948,14965,14937]],[[14948,14954,14965]],[[14959,14969,14960]],[[14973,14937,14969]],[[14959,14963,14938]],[[14961,14955,14963]],[[14950,14970,14968]],[[14974,14939,14970]],[[14974,14949,14953]],[[14974,14970,14949]],[[14959,14973,14969]],[[14959,14938,14973]],[[14930,14966,14931]],[[14945,14967,14966]],[[14941,14943,14938]],[[14942,14922,14943]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95cfd40c-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efd28449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"gras- en kruidachtigen","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[14975,14976,14977]],[[12951,14978,14979]],[[14980,14981,14982]],[[12955,14983,3110]],[[14984,11657,3106]],[[14985,14986,14987]],[[14988,14989,13144]],[[14990,14991,14992]],[[14993,13154,14994]],[[14995,14994,13154]],[[14996,14997,14998]],[[14999,15000,15001]],[[15002,15003,15004]],[[15005,12955,12957]],[[15006,12955,3110]],[[15007,15008,15009]],[[15010,15006,15011]],[[15012,14979,15013]],[[15014,3114,3113]],[[14984,15015,15016]],[[15017,13153,15018]],[[15019,15020,15021]],[[15022,15023,15021]],[[15024,15025,15023]],[[13143,13153,15021]],[[14996,15026,15027]],[[15028,15015,15029]],[[15030,15031,15027]],[[15032,14998,14997]],[[15027,14997,14996]],[[15033,15030,15016]],[[15031,15034,14997]],[[14998,13153,14996]],[[15002,15035,15036]],[[15037,15038,15025]],[[15039,14984,3106]],[[15016,15026,14984]],[[15016,15030,15026]],[[15016,15028,15033]],[[15040,15041,3106]],[[15042,15020,15038]],[[14997,15034,15032]],[[15021,13153,15043]],[[15043,14998,15032]],[[15043,13153,14998]],[[15032,15034,15044]],[[15031,15030,15033]],[[15045,15020,15042]],[[13143,15021,15020]],[[15025,15038,15019]],[[15039,15046,15042]],[[15047,15040,15048]],[[14983,12955,15005]],[[15023,15029,15024]],[[15015,15024,15029]],[[15049,15033,15050]],[[15033,15028,15050]],[[15025,15019,15021]],[[15038,15020,15019]],[[15051,15040,3106]],[[15052,15053,15054]],[[15055,15056,15053]],[[15057,15051,3106]],[[15058,15054,15059]],[[15056,15060,15057]],[[15058,15047,15054]],[[15052,15055,15053]],[[15055,15060,15056]],[[15061,15040,15051]],[[15039,15042,15038]],[[15045,13143,15020]],[[14984,14996,11657]],[[14984,15026,14996]],[[15053,15062,15054]],[[15047,15048,15052]],[[15063,15064,15065]],[[15047,15052,15054]],[[15066,15036,15067]],[[15046,15039,15004]],[[15068,15067,15063]],[[15036,15035,15069]],[[15065,15070,15058]],[[15071,15064,15072]],[[15046,15045,15042]],[[15073,15003,15002]],[[15069,15035,15004]],[[15002,15036,15066]],[[15039,15069,15004]],[[15071,15070,15064]],[[15065,15064,15070]],[[15067,15036,15072]],[[15059,15065,15058]],[[15074,15063,15065]],[[15050,15028,15029]],[[15016,15015,15028]],[[15039,15037,14984]],[[15039,15038,15037]],[[15075,15076,15068]],[[15002,15004,15035]],[[15030,15027,15026]],[[15031,14997,15027]],[[15070,15047,15058]],[[15070,15077,15047]],[[14984,15024,15015]],[[14984,15037,15024]],[[15078,15057,3106]],[[15061,15048,15040]],[[15079,15080,15005]],[[15079,15056,15080]],[[15072,15041,15071]],[[15081,15047,15077]],[[15043,15022,15021]],[[15022,15029,15023]],[[13143,15073,15066]],[[15003,15045,15046]],[[15023,15025,15021]],[[15024,15037,15025]],[[15074,15059,15079]],[[15053,15056,15079]],[[15066,15073,15002]],[[13143,15045,15073]],[[15082,15011,3110]],[[15083,15084,15085]],[[12947,14999,12948]],[[14994,3161,14993]],[[15082,15086,15011]],[[15085,12951,12955]],[[15083,15087,15084]],[[15086,15082,15087]],[[15088,14990,14992]],[[15089,14980,14999]],[[15075,12957,15090]],[[15090,12948,15091]],[[14978,15092,15093]],[[14979,3114,15013]],[[15094,15095,15096]],[[13144,12948,15095]],[[15097,15098,12947]],[[15012,12951,14979]],[[15076,15090,15091]],[[12957,12948,15090]],[[15099,15008,15100]],[[15009,15098,15013]],[[12948,14999,14980]],[[14992,3113,3161]],[[15101,15022,15043]],[[15050,15029,15022]],[[15079,15005,12957]],[[15080,15056,15057]],[[15080,15057,15102]],[[15060,15051,15057]],[[15103,14985,15104]],[[13143,15066,15068]],[[15075,15063,12957]],[[15065,15059,15074]],[[3112,15082,3110]],[[14978,15093,14979]],[[15067,15072,15064]],[[15036,15069,15072]],[[15105,15000,14999]],[[15100,3113,15001]],[[14999,15001,15089]],[[15000,15100,15001]],[[3113,14981,15001]],[[14981,14980,15089]],[[14991,15106,15107]],[[14982,15108,14980]],[[14995,15109,15110]],[[14992,14981,3113]],[[15111,15112,15110]],[[15113,14990,15088]],[[15095,15114,15096]],[[15089,15001,14981]],[[15096,15114,14981]],[[15108,12948,14980]],[[15113,15106,14990]],[[15107,15115,15116]],[[15117,15118,14979]],[[3112,3114,15118]],[[15099,15100,15000]],[[15008,15007,15100]],[[15017,15018,11657]],[[13153,13154,14976]],[[15088,14992,14994]],[[15110,15088,14994]],[[3106,15041,15039]],[[15081,15077,15071]],[[15081,15071,15041]],[[15077,15070,15071]],[[15097,15119,15012]],[[12952,12951,15012]],[[15083,15085,12955]],[[15120,14978,15085]],[[15084,15120,15085]],[[15092,3112,15117]],[[15082,15121,15087]],[[15121,15092,15084]],[[15084,15092,15120]],[[15082,3112,15092]],[[15085,14978,12951]],[[15120,15092,14978]],[[14993,15122,13154]],[[15018,13153,14976]],[[15011,15006,3110]],[[15011,15086,15010]],[[15087,15083,15086]],[[15123,15006,15010]],[[15123,15083,12955]],[[15010,15086,15083]],[[15117,14979,15093]],[[15118,3114,14979]],[[15105,15099,15000]],[[15124,15008,15099]],[[15114,15108,14982]],[[15114,12948,15108]],[[14989,14987,15125]],[[15125,12948,14989]],[[15097,15012,15098]],[[15119,12952,15012]],[[15092,15117,15093]],[[3112,15118,15117]],[[15014,15013,3114]],[[15098,15012,15013]],[[15101,15049,15050]],[[15049,15031,15033]],[[15034,15049,15044]],[[15034,15031,15049]],[[15022,15101,15050]],[[15043,15032,15044]],[[15087,15121,15084]],[[15082,15092,15121]],[[15126,15127,14993]],[[15122,14976,13154]],[[11657,15122,15127]],[[14977,14976,15122]],[[3113,15007,15014]],[[3113,15100,15007]],[[13143,15068,15076]],[[15066,15067,15068]],[[15078,15102,15057]],[[15005,15080,15102]],[[15040,15081,15041]],[[15040,15047,15081]],[[15076,15075,15090]],[[15068,15063,15075]],[[12957,15063,15074]],[[15067,15064,15063]],[[15109,14995,13154]],[[15110,14994,14995]],[[15102,15078,15005]],[[3106,3110,14983]],[[13143,14988,13144]],[[15104,15076,15103]],[[15106,15113,15111]],[[15106,14991,14990]],[[15044,15101,15043]],[[15044,15049,15101]],[[14981,15114,14982]],[[15095,12948,15114]],[[14977,15128,14975]],[[11657,15018,15128]],[[15124,15009,15008]],[[12947,15098,15009]],[[12952,15097,12947]],[[12952,15119,15097]],[[13144,14989,12948]],[[14988,15104,14989]],[[13144,15094,15115]],[[13144,15095,15094]],[[15126,14993,3161]],[[15127,15122,14993]],[[14986,15125,14987]],[[14986,12948,15125]],[[14989,14985,14987]],[[15091,12948,14986]],[[15104,14985,14989]],[[15076,15091,15103]],[[14986,15103,15091]],[[14986,14985,15103]],[[15105,15124,15099]],[[12947,15009,15124]],[[14996,15017,11657]],[[14996,13153,15017]],[[15009,15014,15007]],[[15009,15013,15014]],[[11657,14977,15122]],[[11657,15128,14977]],[[15074,15079,12957]],[[15062,15053,15079]],[[15059,15062,15079]],[[15059,15054,15062]],[[11657,15126,3161]],[[11657,15127,15126]],[[12947,15105,14999]],[[12947,15124,15105]],[[14991,15116,14992]],[[15096,14981,14992]],[[15055,15048,15061]],[[15055,15052,15048]],[[15060,15061,15051]],[[15060,15055,15061]],[[15115,15096,15116]],[[15115,15094,15096]],[[13143,15104,14988]],[[13143,15076,15104]],[[13144,15106,13154]],[[15113,15112,15111]],[[13154,15106,15111]],[[15107,15116,14991]],[[13144,15107,15106]],[[13144,15115,15107]],[[15078,15129,15005]],[[15078,3106,14983]],[[15129,14983,15005]],[[15129,15078,14983]],[[15004,15003,15046]],[[15073,15045,15003]],[[14994,14992,3161]],[[15116,15096,14992]],[[15112,15088,15110]],[[15112,15113,15088]],[[15111,15109,13154]],[[15111,15110,15109]],[[15018,14975,15128]],[[15018,14976,14975]],[[15006,15123,12955]],[[15010,15083,15123]],[[15041,15069,15039]],[[15041,15072,15069]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d13392-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15130,15131,15132]],[[15133,15134,15135]],[[15130,15136,15131]],[[15137,15131,15136]],[[15138,15139,15140]],[[15141,15142,15143]],[[15144,15145,15142]],[[15137,15146,15147]],[[15148,15142,15145]],[[15149,15150,15151]],[[15133,15135,15151]],[[15152,15153,15154]],[[15155,15137,15136]],[[15156,15150,15131]],[[15157,15158,15148]],[[15153,15159,15160]],[[15159,15161,15162]],[[15161,15153,15148]],[[15160,15159,15163]],[[15161,15148,15164]],[[15162,15164,15165]],[[15162,15161,15164]],[[15163,15165,15166]],[[15164,15148,15165]],[[15167,15168,15169]],[[15170,15157,15171]],[[15170,15139,15157]],[[15157,15148,15145]],[[15172,15173,15174]],[[15175,15176,15177]],[[15178,15174,15173]],[[15179,15180,15181]],[[15182,15177,15149]],[[15154,15150,15183]],[[15169,15178,15130]],[[15184,15168,15144]],[[15147,15185,15186]],[[15151,15150,15187]],[[15188,15173,15172]],[[15176,15181,15177]],[[15189,15190,15174]],[[15189,15191,15192]],[[15156,15193,15187]],[[15185,15134,15194]],[[15130,15155,15136]],[[15190,15195,15172]],[[15130,15173,15155]],[[15130,15178,15173]],[[15196,15146,15197]],[[15188,15155,15173]],[[15185,15146,15175]],[[15146,15188,15197]],[[15178,15198,15174]],[[15181,15183,15149]],[[15192,15141,15189]],[[15141,15143,15180]],[[15179,15189,15180]],[[15174,15191,15189]],[[15197,15190,15176]],[[15197,15195,15190]],[[15199,15167,15130]],[[15200,15165,15158]],[[15174,15198,15191]],[[15192,15201,15141]],[[15194,15133,15151]],[[15149,15183,15150]],[[15144,15171,15145]],[[15168,15140,15170]],[[15141,15201,15142]],[[15144,15168,15171]],[[15186,15185,15193]],[[15134,15177,15135]],[[15163,15159,15162]],[[15154,15183,15152]],[[15175,15134,15185]],[[15175,15177,15134]],[[15187,15194,15151]],[[15194,15134,15133]],[[15190,15172,15174]],[[15195,15188,15172]],[[15167,15140,15168]],[[15167,15138,15140]],[[15199,15138,15167]],[[15165,15148,15158]],[[15202,15199,15130]],[[15202,15200,15199]],[[15132,15166,15202]],[[15132,15163,15166]],[[15132,15202,15130]],[[15166,15165,15202]],[[15199,15200,15138]],[[15202,15165,15200]],[[15177,15182,15135]],[[15177,15181,15149]],[[15197,15188,15195]],[[15137,15155,15188]],[[15178,15169,15201]],[[15201,15169,15184]],[[15165,15163,15162]],[[15160,15154,15153]],[[15188,15146,15137]],[[15197,15176,15196]],[[15190,15179,15176]],[[15180,15152,15181]],[[15137,15147,15131]],[[15146,15185,15147]],[[15175,15196,15176]],[[15175,15146,15196]],[[15176,15179,15181]],[[15190,15189,15179]],[[15138,15158,15139]],[[15138,15200,15158]],[[15171,15157,15145]],[[15139,15158,15157]],[[15193,15194,15187]],[[15193,15185,15194]],[[15167,15169,15130]],[[15168,15184,15169]],[[15147,15186,15131]],[[15187,15150,15156]],[[15186,15156,15131]],[[15186,15193,15156]],[[15180,15143,15152]],[[15142,15148,15143]],[[15168,15170,15171]],[[15140,15139,15170]],[[15135,15149,15151]],[[15135,15182,15149]],[[15189,15141,15180]],[[15192,15178,15201]],[[15198,15192,15191]],[[15198,15178,15192]],[[15181,15152,15183]],[[15143,15148,15153]],[[15143,15153,15152]],[[15161,15159,15153]],[[15201,15144,15142]],[[15201,15184,15144]],[[15132,15160,15163]],[[15132,15154,15160]],[[15203,15154,15132]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d15abd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15204,15205,15206]],[[15206,15205,15207]],[[15205,15208,15209]],[[15209,15210,15205]],[[15211,15212,15206]],[[15213,15209,15208]],[[15204,15206,15213]],[[15212,15209,15214]],[[15204,15213,15208]],[[15214,15209,15213]],[[15211,15206,15207]],[[15214,15213,15206]],[[15206,15212,15214]],[[15211,15209,15212]],[[15207,15205,15210]],[[15204,15208,15205]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d3cb76-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15215,15216,15217]],[[15218,15217,15219]],[[15220,15221,15222]],[[15215,15217,15222]],[[15221,15223,15224]],[[15225,15216,15215]],[[15215,15226,15225]],[[15227,15228,15225]],[[15218,15222,15217]],[[15229,15215,15222]],[[15230,15224,15226]],[[15231,15226,15224]],[[15221,15215,15229]],[[15230,15226,15215]],[[15231,15227,15226]],[[15228,15216,15225]],[[15226,15227,15225]],[[15231,15228,15227]],[[15232,15220,15219]],[[15220,15223,15221]],[[15220,15233,15219]],[[15220,15222,15233]],[[15222,15221,15229]],[[15220,15232,15223]],[[15221,15230,15215]],[[15221,15224,15230]],[[15228,15232,15219]],[[15223,15231,15224]],[[15233,15218,15219]],[[15233,15222,15218]],[[15228,15223,15232]],[[15228,15231,15223]],[[15234,15216,15228]],[[15217,15235,15219]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d48e56-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15236,15237,15238]],[[15239,15240,15236]],[[15241,15242,15243]],[[15244,15245,15240]],[[15242,15246,15243]],[[15247,15237,15236]],[[15245,15248,15247]],[[15249,15237,15248]],[[15250,15242,15251]],[[15239,15244,15240]],[[15250,15246,15242]],[[15252,15253,15245]],[[15252,15254,15249]],[[15249,15248,15253]],[[15250,15254,15252]],[[15255,15249,15254]],[[15250,15255,15254]],[[15256,15249,15255]],[[15252,15245,15244]],[[15253,15248,15245]],[[15251,15242,15241]],[[15246,15250,15252]],[[15257,15241,15258]],[[15243,15246,15252]],[[15259,15241,15257]],[[15241,15252,15258]],[[15252,15249,15253]],[[15256,15237,15249]],[[15259,15257,15239]],[[15260,15244,15239]],[[15259,15239,15238]],[[15257,15260,15239]],[[15245,15247,15240]],[[15248,15237,15247]],[[15256,15250,15251]],[[15256,15255,15250]],[[15239,15236,15238]],[[15240,15247,15236]],[[15260,15252,15244]],[[15241,15243,15252]],[[15258,15260,15257]],[[15258,15252,15260]],[[15251,15259,15238]],[[15251,15241,15259]],[[15261,15237,15256]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d5a08f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbc0149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15262,15263,15264]],[[15265,15264,15266]],[[15267,15268,15269]],[[15270,15271,15272]],[[15268,15273,15270]],[[15274,15275,15276]],[[15277,15274,15276]],[[15278,15274,15277]],[[15279,15276,15265]],[[15280,15281,15282]],[[15282,15279,15283]],[[15265,15284,15267]],[[15285,15279,15265]],[[15265,15276,15284]],[[15269,15286,15267]],[[15269,15263,15286]],[[15269,15268,15272]],[[15273,15271,15270]],[[15282,15281,15279]],[[15275,15273,15268]],[[15262,15265,15286]],[[15268,15270,15272]],[[15284,15268,15267]],[[15276,15275,15268]],[[15286,15265,15267]],[[15276,15268,15284]],[[15277,15281,15280]],[[15277,15276,15281]],[[15285,15265,15266]],[[15285,15287,15279]],[[15283,15279,15287]],[[15281,15276,15279]],[[15265,15262,15264]],[[15286,15263,15262]],[[15288,15277,15289]],[[15288,15278,15277]],[[15289,15280,15282]],[[15289,15277,15280]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d5c6c6-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15290,15291,15292]],[[15293,15294,15295]],[[15296,15297,15298]],[[15299,15300,15290]],[[15296,15298,15301]],[[15302,15296,15291]],[[15295,15294,15303]],[[15298,15297,15304]],[[15295,15303,15290]],[[15294,15298,15304]],[[15294,15299,15303]],[[15300,15302,15290]],[[15301,15295,15290]],[[15293,15298,15294]],[[15301,15290,15292]],[[15303,15299,15290]],[[15294,15304,15305]],[[15297,15296,15304]],[[15294,15305,15299]],[[15304,15296,15305]],[[15301,15293,15295]],[[15301,15298,15293]],[[15290,15302,15291]],[[15305,15296,15302]],[[15305,15300,15299]],[[15305,15302,15300]],[[15306,15291,15296]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95d97113-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15307,15308,15309]],[[15310,15311,15312]],[[15313,15314,15315]],[[15313,15316,15314]],[[15315,15314,15317]],[[15317,15314,15318]],[[15318,15314,15319]],[[15318,15320,15317]],[[15321,15322,15312]],[[15318,15323,15324]],[[15322,15316,15310]],[[15309,15325,15326]],[[15312,15322,15310]],[[15327,15328,15329]],[[15314,15316,15330]],[[15308,15328,15309]],[[15322,15329,15316]],[[15322,15327,15329]],[[15319,15314,15330]],[[15315,15311,15313]],[[15310,15313,15311]],[[15310,15316,15313]],[[15331,15318,15324]],[[15323,15325,15324]],[[15330,15323,15319]],[[15326,15325,15323]],[[15330,15326,15323]],[[15330,15309,15326]],[[15316,15307,15330]],[[15328,15325,15309]],[[15323,15318,15319]],[[15331,15320,15318]],[[15327,15321,15312]],[[15327,15322,15321]],[[15330,15307,15309]],[[15316,15329,15308]],[[15316,15308,15307]],[[15329,15328,15308]],[[15332,15328,15327]],[[15325,15333,15324]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da0cd1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15334,15335,15336]],[[15337,15338,15339]],[[15340,15341,15342]],[[15343,15344,15345]],[[15346,15347,15348]],[[15349,15350,15338]],[[15351,15348,15352]],[[15353,15354,15355]],[[15356,15348,15357]],[[15357,15335,15334]],[[15358,15359,15342]],[[15360,15350,15359]],[[15352,15347,15361]],[[15362,15363,15364]],[[15349,15355,15350]],[[15364,15365,15362]],[[15335,15344,15366]],[[15367,15342,15359]],[[15341,15358,15342]],[[15360,15359,15358]],[[15360,15341,15361]],[[15345,15340,15343]],[[15345,15357,15348]],[[15357,15334,15368]],[[15347,15346,15339]],[[15356,15357,15368]],[[15356,15368,15337]],[[15334,15338,15337]],[[15346,15356,15339]],[[15346,15348,15356]],[[15366,15336,15335]],[[15369,15343,15342]],[[15367,15362,15342]],[[15369,15370,15343]],[[15370,15371,15343]],[[15366,15344,15371]],[[15362,15369,15342]],[[15371,15344,15343]],[[15365,15369,15362]],[[15365,15372,15370]],[[15350,15354,15359]],[[15350,15355,15354]],[[15354,15363,15367]],[[15354,15353,15373]],[[15354,15373,15363]],[[15373,15374,15364]],[[15361,15341,15352]],[[15360,15358,15341]],[[15335,15357,15345]],[[15348,15347,15352]],[[15335,15345,15344]],[[15340,15342,15343]],[[15354,15367,15359]],[[15363,15362,15367]],[[15364,15375,15365]],[[15336,15338,15334]],[[15365,15375,15372]],[[15374,15355,15376]],[[15365,15370,15369]],[[15372,15377,15370]],[[15345,15351,15352]],[[15345,15348,15351]],[[15370,15377,15378]],[[15374,15353,15355]],[[15336,15376,15349]],[[15336,15366,15376]],[[15375,15377,15372]],[[15375,15376,15377]],[[15356,15337,15339]],[[15368,15334,15337]],[[15373,15364,15363]],[[15373,15353,15374]],[[15339,15361,15347]],[[15339,15360,15361]],[[15336,15349,15338]],[[15376,15355,15349]],[[15370,15378,15371]],[[15377,15376,15378]],[[15352,15340,15345]],[[15352,15341,15340]],[[15375,15374,15376]],[[15375,15364,15374]],[[15378,15366,15371]],[[15378,15376,15366]],[[15360,15379,15350]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da0cdd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15380,15381,15382]],[[15383,15384,15385]],[[15386,15387,15388]],[[15389,15390,15391]],[[15392,15391,15380]],[[15393,15394,15395]],[[15396,15397,15398]],[[15399,15386,15400]],[[15401,15380,15382]],[[15391,15381,15380]],[[15401,15392,15380]],[[15402,15398,15397]],[[15403,15404,15405]],[[15390,15381,15391]],[[15392,15393,15391]],[[15384,15406,15385]],[[15388,15394,15401]],[[15407,15396,15398]],[[15395,15407,15408]],[[15407,15388,15396]],[[15409,15395,15383]],[[15410,15402,15411]],[[15389,15409,15412]],[[15394,15407,15395]],[[15393,15389,15391]],[[15412,15385,15390]],[[15413,15414,15406]],[[15414,15381,15406]],[[15409,15383,15412]],[[15406,15381,15390]],[[15384,15413,15406]],[[15400,15381,15414]],[[15383,15415,15384]],[[15415,15416,15413]],[[15412,15383,15385]],[[15415,15413,15384]],[[15408,15417,15383]],[[15408,15398,15402]],[[15413,15416,15414]],[[15417,15408,15402]],[[15408,15407,15398]],[[15394,15388,15407]],[[15383,15395,15408]],[[15409,15393,15395]],[[15416,15402,15410]],[[15386,15381,15400]],[[15399,15405,15386]],[[15387,15386,15404]],[[15410,15411,15418]],[[15403,15387,15404]],[[15418,15399,15400]],[[15405,15404,15386]],[[15411,15402,15397]],[[15416,15415,15417]],[[15387,15403,15397]],[[15418,15400,15410]],[[15412,15390,15389]],[[15385,15406,15390]],[[15416,15417,15402]],[[15415,15383,15417]],[[15414,15410,15400]],[[15414,15416,15410]],[[15411,15403,15418]],[[15411,15397,15403]],[[15388,15401,15382]],[[15394,15392,15401]],[[15387,15396,15388]],[[15387,15397,15396]],[[15418,15405,15399]],[[15418,15403,15405]],[[15389,15393,15409]],[[15392,15394,15393]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95da8252-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8d649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15419,15420,15421]],[[15422,15423,15424]],[[15424,15425,15426]],[[15427,15428,15429]],[[15430,15426,15431]],[[15432,15420,15433]],[[15434,15435,15425]],[[15425,15436,15437]],[[15438,15434,15425]],[[15425,15437,15426]],[[15435,15439,15425]],[[15440,15436,15439]],[[15440,15441,15442]],[[15440,15439,15441]],[[15423,15443,15424]],[[15438,15425,15424]],[[15430,15444,15433]],[[15430,15431,15444]],[[15445,15443,15423]],[[15438,15424,15443]],[[15419,15430,15433]],[[15446,15426,15430]],[[15431,15429,15444]],[[15431,15427,15429]],[[15426,15437,15431]],[[15428,15420,15432]],[[15447,15448,15449]],[[15446,15447,15449]],[[15419,15446,15430]],[[15449,15422,15446]],[[15441,15450,15442]],[[15435,15443,15445]],[[15450,15435,15445]],[[15441,15439,15435]],[[15419,15433,15420]],[[15444,15429,15432]],[[15451,15447,15446]],[[15448,15445,15449]],[[15426,15422,15424]],[[15449,15445,15423]],[[15442,15450,15445]],[[15441,15435,15450]],[[15446,15422,15426]],[[15449,15423,15422]],[[15444,15432,15433]],[[15429,15428,15432]],[[15437,15428,15427]],[[15440,15420,15428]],[[15439,15436,15425]],[[15440,15437,15436]],[[15442,15451,15421]],[[15442,15448,15451]],[[15443,15434,15438]],[[15443,15435,15434]],[[15451,15419,15421]],[[15451,15446,15419]],[[15451,15448,15447]],[[15442,15445,15448]],[[15431,15437,15427]],[[15440,15428,15437]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95dca4f1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15452,15453,15454]],[[15455,15456,15457]],[[15458,15455,15459]],[[15460,15461,15454]],[[15462,15456,15455]],[[15455,15458,15462]],[[15462,15457,15456]],[[15459,15455,15463]],[[15464,15465,15466]],[[15464,15463,15465]],[[15459,15464,15452]],[[15465,15463,15466]],[[15467,15462,15468]],[[15457,15463,15455]],[[15467,15457,15462]],[[15466,15463,15457]],[[15469,15467,15468]],[[15466,15457,15467]],[[15459,15452,15470]],[[15471,15467,15469]],[[15454,15453,15460]],[[15452,15466,15471]],[[15452,15471,15453]],[[15466,15467,15471]],[[15458,15468,15462]],[[15458,15472,15468]],[[15471,15469,15453]],[[15461,15472,15454]],[[15469,15460,15453]],[[15469,15468,15461]],[[15470,15454,15472]],[[15470,15452,15454]],[[15469,15461,15460]],[[15468,15472,15461]],[[15452,15464,15466]],[[15459,15463,15464]],[[15473,15472,15458]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95de048f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15474,15475,15476]],[[15477,15478,15479]],[[15480,15477,15479]],[[15481,15482,15483]],[[15484,15478,15485]],[[15477,15480,15486]],[[15484,15485,15487]],[[15488,15489,15490]],[[15478,15491,15485]],[[15486,15480,15490]],[[15492,15487,15476]],[[15485,15491,15493]],[[15492,15476,15475]],[[15494,15495,15496]],[[15487,15497,15476]],[[15481,15491,15482]],[[15487,15493,15497]],[[15487,15485,15493]],[[15498,15475,15474]],[[15481,15493,15491]],[[15484,15492,15496]],[[15494,15474,15499]],[[15492,15475,15498]],[[15476,15497,15474]],[[15499,15474,15497]],[[15496,15498,15474]],[[15483,15482,15486]],[[15491,15478,15486]],[[15500,15488,15501]],[[15488,15502,15481]],[[15490,15489,15483]],[[15502,15500,15503]],[[15488,15481,15489]],[[15497,15493,15481]],[[15495,15490,15480]],[[15501,15488,15490]],[[15474,15494,15496]],[[15504,15495,15494]],[[15479,15484,15496]],[[15479,15478,15484]],[[15496,15492,15498]],[[15484,15487,15492]],[[15491,15486,15482]],[[15478,15477,15486]],[[15495,15501,15490]],[[15495,15500,15501]],[[15504,15500,15495]],[[15499,15497,15481]],[[15504,15503,15500]],[[15504,15494,15499]],[[15504,15499,15503]],[[15488,15500,15502]],[[15490,15483,15486]],[[15489,15481,15483]],[[15502,15499,15481]],[[15502,15503,15499]],[[15480,15505,15495]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95df8b58-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15506,15507,15508]],[[15509,15510,15511]],[[15512,15509,15511]],[[15508,15513,15506]],[[15514,15511,15515]],[[15510,15516,15511]],[[15517,15516,15510]],[[15518,15519,8761]],[[8674,15517,8675]],[[8674,15516,15517]],[[15506,15520,15521]],[[8674,8760,15520]],[[8675,15522,8761]],[[15523,15521,8760]],[[15524,15514,15525]],[[15508,15516,15526]],[[15514,15515,15508]],[[15511,15516,15515]],[[15514,15508,15507]],[[15515,15516,15508]],[[8674,15526,15516]],[[8674,15520,15526]],[[15527,15518,8761]],[[15525,15507,15519]],[[8761,15524,15528]],[[15512,15511,15514]],[[8761,15519,8760]],[[15519,15507,15506]],[[15526,15513,15508]],[[15526,15520,15513]],[[8760,15521,15520]],[[15521,15519,15506]],[[15520,15506,15513]],[[15521,15523,15519]],[[8760,15519,15523]],[[15518,15525,15519]],[[15528,15529,8761]],[[15528,15518,15529]],[[15528,15525,15518]],[[15528,15524,15525]],[[15522,15512,15524]],[[15522,15517,15509]],[[15522,15509,15512]],[[15517,15510,15509]],[[8761,15522,15524]],[[8675,15517,15522]],[[15525,15514,15507]],[[15524,15512,15514]],[[15529,15527,8761]],[[15529,15518,15527]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e04e3b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9bf749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15530,15531,15532]],[[15533,15534,15535]],[[15536,15537,15538]],[[15537,15539,15538]],[[15540,15541,15542]],[[15543,15538,15542]],[[15544,15541,15545]],[[15546,15547,15536]],[[15548,15549,15550]],[[15551,15552,15537]],[[15539,15553,15538]],[[15547,15551,15537]],[[15554,15552,15555]],[[15537,15552,15554]],[[15556,15557,15558]],[[15539,15559,15541]],[[15550,15552,15551]],[[15539,15554,15559]],[[15539,15537,15554]],[[15544,15545,15560]],[[15559,15554,15555]],[[15561,15544,15531]],[[15545,15559,15555]],[[15546,15536,15562]],[[15544,15542,15541]],[[15563,15536,15564]],[[15547,15537,15536]],[[15535,15562,15565]],[[15546,15548,15551]],[[15535,15565,15533]],[[15562,15536,15565]],[[15539,15541,15553]],[[15559,15545,15541]],[[15566,15564,15561]],[[15540,15553,15541]],[[15533,15566,15534]],[[15533,15565,15566]],[[15565,15563,15566]],[[15536,15538,15564]],[[15566,15563,15564]],[[15565,15536,15563]],[[15538,15540,15542]],[[15538,15553,15540]],[[15545,15556,15560]],[[15555,15557,15556]],[[15555,15550,15549]],[[15555,15552,15550]],[[15566,15561,15530]],[[15564,15538,15543]],[[15531,15544,15560]],[[15561,15543,15544]],[[15546,15551,15547]],[[15548,15550,15551]],[[15558,15567,15560]],[[15530,15561,15531]],[[15556,15558,15560]],[[15567,15531,15560]],[[15535,15546,15562]],[[15535,15548,15546]],[[15544,15543,15542]],[[15561,15564,15543]],[[15557,15567,15558]],[[15532,15534,15530]],[[15567,15532,15531]],[[15534,15566,15530]],[[15545,15555,15556]],[[15549,15557,15555]],[[15557,15532,15567]],[[15557,15534,15532]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e1395b-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efe6f949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15568,15569,15570]],[[15571,15572,15573]],[[15571,10005,11645]],[[15574,15569,15568]],[[15575,15576,15577]],[[15569,15573,15575]],[[15578,15579,15571]],[[15573,15574,15571]],[[15570,15569,15575]],[[15571,15579,15580]],[[11645,15578,15571]],[[15578,15581,15577]],[[15573,15572,15575]],[[15579,15578,15576]],[[15582,15583,15584]],[[15575,15577,12553]],[[15585,15581,15578]],[[15584,12553,15577]],[[15579,15576,15580]],[[15575,12553,10000]],[[15578,15577,15576]],[[15581,15584,15577]],[[11645,15585,15578]],[[11645,12776,15582]],[[15585,15584,15581]],[[15583,12776,12553]],[[10006,15570,10000]],[[15586,10005,15574]],[[15586,15568,15570]],[[15574,15573,15569]],[[15585,15582,15584]],[[15585,11645,15582]],[[15570,15575,10000]],[[15580,15576,15575]],[[15586,15574,15568]],[[10005,15571,15574]],[[15572,15580,15575]],[[15572,15571,15580]],[[15584,15583,12553]],[[15582,12776,15583]],[[10006,15586,15570]],[[10006,10005,15586]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e24a9a-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff1b449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"heesters","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15587,15588,12699]],[[15588,14325,12674]],[[14320,15589,15590]],[[15591,15592,14322]],[[15593,14322,14326]],[[15594,14320,14322]],[[15595,15594,14322]],[[15596,15597,15598]],[[15599,15600,14320]],[[15596,15598,14325]],[[15601,15602,15603]],[[15595,14322,15592]],[[15604,15602,15605]],[[15603,15592,15591]],[[15606,15607,15593]],[[15608,15604,15609]],[[14320,15590,14325]],[[15610,12686,12674]],[[15589,15611,15590]],[[15598,12674,14325]],[[15612,15613,15600]],[[15589,14320,15600]],[[15590,15614,15615]],[[15613,15589,15600]],[[15616,15617,14326]],[[15588,12674,12699]],[[15618,15595,15592]],[[15594,12686,14320]],[[15619,15608,15620]],[[15609,15604,15605]],[[15615,15610,15598]],[[15597,15615,15598]],[[15614,15611,15610]],[[15612,15611,15613]],[[15601,15605,15602]],[[15593,15607,15609]],[[12685,15594,15595]],[[12685,12686,15594]],[[15617,15621,15619]],[[15620,15617,15619]],[[15620,15606,15593]],[[15619,15621,15608]],[[15616,15622,15587]],[[14326,14325,15622]],[[15590,15611,15614]],[[15589,15613,15611]],[[15590,15596,14325]],[[15623,15597,15596]],[[12686,15599,14320]],[[12686,15600,15599]],[[15598,15610,12674]],[[15600,12686,15610]],[[15623,15615,15597]],[[15614,15610,15615]],[[15590,15623,15596]],[[15590,15615,15623]],[[15606,15620,15608]],[[12699,12685,15604]],[[15606,15608,15607]],[[15618,12685,15595]],[[15621,15604,15608]],[[15621,12699,15604]],[[15604,15603,15602]],[[15604,12685,15618]],[[15593,15609,15605]],[[15607,15608,15609]],[[15610,15612,15600]],[[15610,15611,15612]],[[15622,15616,14326]],[[15587,12699,15616]],[[15621,15616,12699]],[[15621,15617,15616]],[[15593,15601,14322]],[[15593,15605,15601]],[[15601,15591,14322]],[[15601,15603,15591]],[[14326,15620,15593]],[[14326,15617,15620]],[[15622,15588,15587]],[[15622,14325,15588]],[[15603,15618,15592]],[[15603,15604,15618]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e5572f-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb6e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15624,15625,9879]],[[15626,15627,9878]],[[9880,15625,15626]],[[15625,9876,9879]],[[15626,15625,15624]],[[9880,9876,15625]],[[9880,15626,9878]],[[15627,9879,9878]],[[15624,15627,15626]],[[15624,9879,15627]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e5ccd1-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efb8e549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15628,15629,15630]],[[15631,15628,15630]],[[15632,15633,15634]],[[15635,15629,15636]],[[15637,15638,15639]],[[15640,15641,15629]],[[15642,15643,15644]],[[15645,15629,15628]],[[15646,15647,15648]],[[15649,15650,15651]],[[15644,15652,15653]],[[15653,15654,15649]],[[15655,15656,15657]],[[15658,15650,15654]],[[15659,15643,15660]],[[15661,15662,15652]],[[15663,15647,15630]],[[15660,15643,15642]],[[15631,15664,15628]],[[15665,15666,15667]],[[15668,15639,15666]],[[15669,15656,15639]],[[15655,15667,15666]],[[15635,15670,15629]],[[15635,15667,15670]],[[15634,15670,15667]],[[15641,15671,15636]],[[15672,15668,15665]],[[15673,15631,15630]],[[15673,15664,15631]],[[15651,15670,15634]],[[15650,15629,15670]],[[15632,15649,15633]],[[15650,15670,15651]],[[15632,15634,15667]],[[15633,15651,15634]],[[15638,15669,15639]],[[15656,15666,15639]],[[15638,15656,15669]],[[15655,15657,15642]],[[15674,15657,15656]],[[15674,15675,15657]],[[15671,15665,15636]],[[15665,15667,15676]],[[15635,15665,15676]],[[15668,15637,15639]],[[15664,15675,15674]],[[15664,15673,15677]],[[15678,15679,15628]],[[15679,15640,15645]],[[15628,15679,15645]],[[15680,15638,15637]],[[15648,15647,15681]],[[15663,15682,15647]],[[15633,15649,15651]],[[15654,15650,15649]],[[15632,15653,15649]],[[15652,15644,15661]],[[15652,15662,15654]],[[15682,15650,15662]],[[15659,15682,15643]],[[15643,15682,15661]],[[15638,15674,15656]],[[15660,15681,15659]],[[15647,15646,15630]],[[15664,15674,15678]],[[15646,15677,15673]],[[15646,15657,15675]],[[15679,15637,15672]],[[15679,15678,15637]],[[15645,15640,15629]],[[15679,15672,15641]],[[15629,15641,15636]],[[15640,15679,15641]],[[15677,15675,15664]],[[15677,15646,15675]],[[15632,15655,15683]],[[15666,15656,15655]],[[15664,15678,15628]],[[15680,15637,15678]],[[15655,15642,15683]],[[15652,15654,15653]],[[15683,15642,15653]],[[15643,15661,15644]],[[15653,15642,15644]],[[15657,15660,15642]],[[15661,15682,15662]],[[15663,15650,15682]],[[15671,15672,15665]],[[15671,15641,15672]],[[15680,15674,15638]],[[15680,15678,15674]],[[15646,15660,15657]],[[15648,15681,15660]],[[15655,15632,15667]],[[15683,15653,15632]],[[15662,15658,15654]],[[15662,15650,15658]],[[15630,15646,15673]],[[15648,15660,15646]],[[15647,15659,15681]],[[15647,15682,15659]],[[15665,15635,15636]],[[15676,15667,15635]],[[15665,15668,15666]],[[15672,15637,15668]],[[15650,15684,15629]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e6b6dc-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef9af849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15685,8677,8755]],[[15686,15687,15688]],[[15686,15689,15687]],[[15690,8677,15688]],[[15691,15689,15686]],[[15687,15690,15688]],[[8678,15689,8754]],[[8678,15690,15689]],[[15689,15690,15687]],[[8678,8677,15690]],[[8677,15685,15688]],[[15691,8754,15689]],[[15691,15685,8755]],[[15686,15688,15685]],[[15685,15691,15686]],[[8755,8754,15691]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95e88c0d-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15692,15693,15694]],[[15692,15695,15696]],[[15697,15698,15695]],[[15699,15700,15696]],[[15701,15702,15698]],[[15703,15704,15702]],[[15697,15695,15692]],[[15695,15702,15699]],[[15701,15698,15705]],[[15702,15695,15698]],[[15706,15707,15694]],[[15707,15701,15705]],[[15707,15705,15697]],[[15707,15706,15701]],[[15707,15697,15694]],[[15705,15698,15697]],[[15695,15699,15696]],[[15700,15693,15692]],[[15702,15704,15699]],[[15708,15693,15704]],[[15704,15700,15699]],[[15704,15693,15700]],[[15708,15701,15706]],[[15708,15709,15703]],[[15701,15708,15703]],[[15708,15704,15709]],[[15701,15703,15702]],[[15709,15704,15703]],[[15697,15692,15694]],[[15696,15700,15692]],[[15710,15693,15708]],[[15694,15711,15706]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ea39ef-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15712,15713,15714]],[[15715,15714,15716]],[[15717,15718,15716]],[[15717,15713,15712]],[[15718,15715,15716]],[[15718,15717,15715]],[[15715,15712,15714]],[[15715,15717,15712]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ea6026-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efbb5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15719,15720,15721]],[[15722,15723,15724]],[[15725,15726,15727]],[[15728,15729,15730]],[[15731,15724,15726]],[[15730,15729,15721]],[[15732,15733,15734]],[[15735,15736,15730]],[[15734,15726,15724]],[[15737,15738,15726]],[[15719,15721,15729]],[[15739,15730,15721]],[[15740,15732,15734]],[[15726,15725,15731]],[[15741,15722,15725]],[[15739,15721,15722]],[[15741,15735,15730]],[[15736,15728,15730]],[[15728,15733,15742]],[[15737,15726,15734]],[[15740,15734,15724]],[[15727,15743,15736]],[[15723,15740,15724]],[[15742,15733,15732]],[[15742,15740,15744]],[[15724,15731,15722]],[[15725,15722,15731]],[[15721,15720,15722]],[[15745,15744,15723]],[[15723,15722,15720]],[[15744,15740,15723]],[[15742,15732,15740]],[[15739,15741,15730]],[[15727,15726,15738]],[[15722,15741,15739]],[[15725,15735,15741]],[[15720,15745,15723]],[[15746,15742,15744]],[[15733,15737,15734]],[[15733,15728,15738]],[[15743,15738,15728]],[[15737,15733,15738]],[[15735,15727,15736]],[[15735,15725,15727]],[[15746,15745,15719]],[[15747,15744,15745]],[[15746,15719,15729]],[[15745,15720,15719]],[[15736,15743,15728]],[[15727,15738,15743]],[[15746,15747,15745]],[[15746,15744,15747]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95eafcdb-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15748,15749,8753]],[[15748,8723,8752]],[[15750,15751,15748]],[[15748,8753,8723]],[[15750,15749,15751]],[[8756,8753,15749]],[[15750,15748,8752]],[[15751,15749,15748]],[[8756,15750,8752]],[[8756,15749,15750]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ec5c64-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba6749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15752,15753,15754]],[[15755,15756,15757]],[[15758,15759,15756]],[[15757,15760,15761]],[[15762,15763,15758]],[[15759,15754,15753]],[[15764,15765,15762]],[[15765,15754,15759]],[[15755,15758,15756]],[[15763,15765,15758]],[[15758,15765,15759]],[[15764,15760,15754]],[[15759,15753,15756]],[[15754,15760,15752]],[[15756,15766,15757]],[[15756,15753,15766]],[[15762,15765,15763]],[[15764,15754,15765]],[[15767,15768,15769]],[[15768,15753,15769]],[[15757,15752,15760]],[[15769,15753,15752]],[[15755,15757,15761]],[[15767,15769,15752]],[[15766,15768,15757]],[[15766,15753,15768]],[[15757,15767,15752]],[[15757,15768,15767]],[[15762,15755,15761]],[[15762,15758,15755]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ecd1fd-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15770,15771,15772]],[[15773,15774,15775]],[[15776,15777,15778]],[[15779,15780,15781]],[[15770,15774,15771]],[[15771,15779,15781]],[[15770,15775,15774]],[[15782,15783,15774]],[[15773,15782,15774]],[[15784,15785,15786]],[[15787,15788,15782]],[[15789,15785,15784]],[[15790,15776,15778]],[[15776,15791,15777]],[[15780,15786,15781]],[[15771,15792,15772]],[[15790,15793,15794]],[[15793,15784,15779]],[[15793,15778,15784]],[[15777,15784,15778]],[[15771,15794,15779]],[[15779,15784,15780]],[[15795,15770,15772]],[[15795,15796,15770]],[[15780,15784,15786]],[[15777,15791,15789]],[[15773,15787,15782]],[[15787,15797,15788]],[[15770,15796,15798]],[[15798,15787,15773]],[[15788,15791,15776]],[[15795,15785,15791]],[[15788,15799,15791]],[[15797,15791,15799]],[[15782,15788,15776]],[[15787,15796,15797]],[[15777,15789,15784]],[[15791,15785,15789]],[[15798,15796,15787]],[[15795,15797,15796]],[[15788,15797,15799]],[[15795,15791,15797]],[[15775,15798,15773]],[[15775,15770,15798]],[[15785,15781,15786]],[[15785,15792,15781]],[[15774,15783,15794]],[[15782,15776,15790]],[[15783,15790,15794]],[[15783,15782,15790]],[[15794,15793,15779]],[[15790,15778,15793]],[[15794,15771,15774]],[[15781,15792,15771]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ecf925-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15800,15801,15802]],[[15803,15804,15805]],[[15806,15807,15801]],[[15808,15809,15804]],[[15810,15811,15807]],[[15812,15809,15808]],[[15802,15801,15807]],[[15813,15804,15803]],[[15814,15810,15801]],[[15802,15811,15815]],[[15816,15810,15817]],[[15818,15819,15810]],[[15819,15818,15805]],[[15819,15811,15810]],[[15820,15821,15814]],[[15805,15818,15821]],[[15820,15814,15822]],[[15817,15810,15814]],[[15814,15823,15822]],[[15814,15801,15823]],[[15821,15817,15814]],[[15821,15818,15816]],[[15824,15819,15805]],[[15824,15811,15819]],[[15821,15816,15817]],[[15818,15810,15816]],[[15810,15806,15801]],[[15810,15807,15806]],[[15803,15820,15822]],[[15805,15821,15820]],[[15823,15813,15803]],[[15823,15801,15813]],[[15800,15815,15812]],[[15811,15824,15812]],[[15811,15802,15807]],[[15815,15800,15802]],[[15820,15803,15805]],[[15822,15823,15803]],[[15825,15800,15808]],[[15813,15801,15800]],[[15811,15812,15815]],[[15824,15809,15812]],[[15813,15825,15804]],[[15800,15812,15808]],[[15804,15825,15808]],[[15813,15800,15825]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ed1f59-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15826,15827,15828]],[[15829,15830,15831]],[[15826,15829,15831]],[[15832,15833,15834]],[[15834,15827,15831]],[[15835,15836,15837]],[[15831,15827,15826]],[[15835,15837,15838]],[[15834,15833,15827]],[[15834,15839,15832]],[[15829,15840,15830]],[[15829,15826,15836]],[[15829,15836,15840]],[[15827,15833,15828]],[[15837,15828,15832]],[[15836,15826,15828]],[[15838,15832,15839]],[[15828,15833,15832]],[[15838,15837,15832]],[[15836,15828,15837]],[[15830,15841,15839]],[[15841,15840,15835]],[[15841,15835,15838]],[[15840,15836,15835]],[[15842,15834,15831]],[[15842,15839,15834]],[[15839,15841,15838]],[[15830,15840,15841]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b95ed4687-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"begroeidterreindeeloptalud":"0","bgt_status":"bestaand","bronhouder":"G0503","class":"groenvoorziening","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68efba5849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[15843,15844,15845]],[[15846,15847,15848]],[[15843,15845,15849]],[[15844,15847,15845]],[[15850,15843,15851]],[[15845,15847,15849]],[[15851,15843,15849]],[[15850,15844,15843]],[[15850,15851,15848]],[[15849,15847,15851]],[[15851,15846,15848]],[[15851,15847,15846]]],"lod":"1","type":"MultiSurface"}],"type":"PlantCover"},"b981072fa-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15217,11959,15852]],[[15217,15852,15235]],[[11959,11986,15852]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9813a745-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1ad049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15853,8126,8128]],[[15853,8128,15854]],[[15854,8128,8130]],[[8130,8128,8129]],[[8126,8127,8128]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9813ce67-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15855,15856,15857]],[[15855,15857,15858]],[[15856,15859,15857]],[[15856,15860,15859]],[[15860,15856,15861]],[[15861,15856,15862]],[[15862,15856,15863]],[[15863,15856,15864]],[[15864,15856,15865]],[[15865,15856,15866]],[[15866,15856,15867]],[[15867,15856,15868]],[[15868,15856,15869]],[[15869,15856,15870]],[[15870,15856,15871]],[[15871,15856,15872]],[[15872,15856,15873]],[[15873,15856,15874]],[[15874,15856,15875]],[[15875,15856,15876]],[[15876,15856,15877]],[[15877,15856,15878]],[[15878,15856,15879]],[[15879,15856,15880]],[[15880,15856,15881]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9816dbab-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15882,15883,15217]],[[14527,14532,15884]],[[15885,15328,15886]],[[15886,15328,15887]],[[15887,15328,15888]],[[15888,15328,15889]],[[15328,15890,15891]],[[15889,15328,15891]],[[15890,15328,15892]],[[15892,14118,15893]],[[15893,14118,15894]],[[15894,14102,15895]],[[15895,14102,15896]],[[11876,15884,15897]],[[15898,14102,15897]],[[15896,14102,15898]],[[15899,15328,15885]],[[15884,15693,14527]],[[15899,15900,15325]],[[15693,15884,15694]],[[15694,15884,11876]],[[11876,15897,11877]],[[11877,15897,15472]],[[15472,15897,15470]],[[15470,15897,14102]],[[14102,15894,14118]],[[14118,15892,15328]],[[15328,15899,15325]],[[15325,15900,11997]],[[15901,15216,14267]],[[15902,15903,15904]],[[15904,15905,15906]],[[15907,15904,15906]],[[15908,15909,15910]],[[15910,15903,15911]],[[15912,15908,15910]],[[15911,15912,15910]],[[15902,15911,15903]],[[15913,15902,15904]],[[15914,15913,15904]],[[11987,15915,15906]],[[15916,11959,15217]],[[15904,15917,15914]],[[11987,11959,15915]],[[15917,15904,15918]],[[15919,15907,15906]],[[15918,15904,15907]],[[15920,15919,15906]],[[15216,15901,15217]],[[15920,15906,15921]],[[15921,15906,15915]],[[15915,11959,15916]],[[15217,15922,15916]],[[15217,15923,15922]],[[14267,14254,15924]],[[15923,15217,15925]],[[15925,15217,15926]],[[15926,15217,15927]],[[15927,15217,15928]],[[15928,15217,15929]],[[15929,15217,15930]],[[15930,15217,15883]],[[15931,15882,15217]],[[15932,15931,15217]],[[15933,15932,15217]],[[15901,15933,15217]],[[15901,15934,15933]],[[15901,15935,15934]],[[15901,15936,15935]],[[15901,15937,15936]],[[15937,15901,15938]],[[15938,15901,15939]],[[15939,15901,15940]],[[15940,15901,15941]],[[15941,15901,15942]],[[15942,15943,15944]],[[15944,15943,15945]],[[7171,15945,7170]],[[7170,15945,15943]],[[15943,15942,15901]],[[7199,15943,15901]],[[15924,15901,14267]],[[7198,7199,15901]],[[14254,11998,15946]],[[14254,15947,15924]],[[14254,15946,15947]],[[11998,15948,15946]],[[11998,15949,15948]],[[11998,15950,15949]],[[11998,15951,15950]],[[11998,11997,15952]],[[11998,15952,15951]],[[11997,15900,15952]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9817c598-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15953,15954,15955]],[[15954,15956,15955]],[[15957,15958,15959]],[[15957,15955,15960]],[[15957,15961,15958]],[[15957,15962,15961]],[[15957,15963,15962]],[[15957,15964,15963]],[[15957,15965,15964]],[[15957,15966,15965]],[[15957,15967,15966]],[[15957,15968,15967]],[[15957,15969,15968]],[[15957,15960,15969]],[[15955,15970,15960]],[[15955,15956,15970]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981a0ff9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33bf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15971,15972,15973]],[[15971,15973,15974]],[[15972,15975,15973]],[[15976,15977,15978]],[[15979,15976,15980]],[[15981,15979,15982]],[[15983,15981,15984]],[[15985,15983,15986]],[[15987,15985,15988]],[[15989,15987,15990]],[[15991,15989,15992]],[[15993,15991,15994]],[[15995,15993,15996]],[[15997,15995,15998]],[[15997,15999,16000]],[[15997,15998,15999]],[[15995,15996,15998]],[[15977,16001,16002]],[[15993,15994,15996]],[[15991,15992,15994]],[[16001,16003,16004]],[[15989,15990,15992]],[[15987,15988,15990]],[[16003,16005,16006]],[[15985,15986,15988]],[[15983,15984,15986]],[[16005,16007,16008]],[[15981,15982,15984]],[[15979,15980,15982]],[[16007,16009,16010]],[[15976,15978,15980]],[[15977,16002,15978]],[[16009,16011,16012]],[[16001,16004,16002]],[[16003,16006,16004]],[[16011,16013,16014]],[[16005,16008,16006]],[[16007,16010,16008]],[[16013,16015,16016]],[[16009,16012,16010]],[[16011,16014,16012]],[[16015,16017,16018]],[[16013,16016,16014]],[[16015,16018,16016]],[[16017,16019,16020]],[[16017,16020,16018]],[[16019,15975,16020]],[[16019,15973,15975]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981aabab-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee28149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8743,8321,8322]],[[8743,556,16021]],[[16022,458,16023]],[[1882,10957,15847]],[[16024,7034,7033]],[[16025,8321,16026]],[[16027,16024,16028]],[[16029,16027,16030]],[[16030,16027,16031]],[[16032,16030,16033]],[[16033,16030,16034]],[[16034,16030,16035]],[[16036,16034,16035]],[[16035,16030,16037]],[[16037,16030,16038]],[[16039,16037,16038]],[[16038,16030,16031]],[[16040,16038,16041]],[[16041,16038,16042]],[[16043,16041,16042]],[[16044,16043,16042]],[[16042,16038,16031]],[[16045,16042,16031]],[[16031,16027,16028]],[[16046,16031,16047]],[[16047,16031,16028]],[[16048,16047,16028]],[[1880,7037,1881]],[[1073,1074,16049]],[[15844,16050,15847]],[[15847,16050,16051]],[[15844,16052,16050]],[[16053,16054,15844]],[[16055,15844,16056]],[[16056,16049,16057]],[[16055,16053,15844]],[[6727,16058,16059]],[[1072,1073,16049]],[[1071,1072,16049]],[[1094,1071,16049]],[[1068,1094,16049]],[[16049,1065,1068]],[[16049,1063,1065]],[[16049,15844,1063]],[[6893,6894,16024]],[[7037,16024,7033]],[[7037,7035,7036]],[[7037,7033,7035]],[[6889,6890,16024]],[[6894,7034,16024]],[[7034,6894,7038]],[[7038,6894,6895]],[[6924,6928,6889]],[[16023,460,16059]],[[6893,16024,6890]],[[6892,6893,6890]],[[6892,6890,6891]],[[16024,16060,6924]],[[6924,6889,16024]],[[6889,6887,6888]],[[6887,6889,6928]],[[6887,6929,6885]],[[16058,6980,16060]],[[6929,6887,6928]],[[6924,16060,6973]],[[6973,16060,6971]],[[6971,16060,6980]],[[6980,16058,6727]],[[6727,16059,460]],[[460,16023,459]],[[16023,458,459]],[[16022,478,458]],[[477,478,557]],[[478,555,557]],[[478,16022,555]],[[556,555,16061]],[[16061,555,16062]],[[16062,555,16063]],[[16063,555,16064]],[[16064,555,16065]],[[16065,555,16066]],[[16066,555,16067]],[[16067,555,16022]],[[8320,8321,16025]],[[8319,8320,16068]],[[8320,16069,16068]],[[8320,16025,16069]],[[16070,16071,16072]],[[16071,16073,16072]],[[16071,16069,16025]],[[16071,16025,16073]],[[16074,16075,16076]],[[16074,16077,16075]],[[16074,16073,16025]],[[16074,16025,16077]],[[16078,16079,8317]],[[16078,8317,8318]],[[16025,16026,16080]],[[16081,14727,8316]],[[8314,8311,8313]],[[8311,16082,8312]],[[8311,16083,16082]],[[8311,16084,16083]],[[8311,16085,16084]],[[16084,16085,16086]],[[16086,16085,16087]],[[16087,16085,16088]],[[16088,16085,16089]],[[16089,16085,16090]],[[16090,16091,16092]],[[14729,16081,16093]],[[14724,16094,14725]],[[14727,8315,8316]],[[16080,16026,16095]],[[8321,8743,16026]],[[16025,16079,16077]],[[16025,16081,16079]],[[16079,16081,8317]],[[8317,16081,8316]],[[16095,16096,16097]],[[16095,16098,16096]],[[16095,16099,16098]],[[16098,16100,16101]],[[16101,16100,16102]],[[16098,16099,16100]],[[16095,16103,16099]],[[16099,16104,16105]],[[16099,16103,16104]],[[16095,16106,16103]],[[16103,16107,16108]],[[16108,16107,16109]],[[16103,16106,16107]],[[16107,16106,16110]],[[16095,16111,16106]],[[16106,16111,16112]],[[16095,16113,16111]],[[16095,16026,16113]],[[16113,16026,16114]],[[8743,16021,16026]],[[16021,556,16115]],[[16021,16116,16117]],[[16117,16116,16118]],[[16021,16119,16116]],[[16116,16120,16121]],[[16121,16122,16123]],[[16121,16120,16122]],[[16122,16120,16124]],[[16124,16120,16125]],[[16116,16119,16120]],[[16120,16119,16126]],[[16126,16127,16128]],[[16126,16119,16127]],[[16127,16119,16129]],[[16021,16130,16119]],[[16119,16131,16132]],[[16119,16130,16131]],[[16131,16130,16133]],[[16021,16134,16130]],[[16021,16115,16134]],[[556,16061,16115]],[[14724,16135,16094]],[[16136,16091,16135]],[[16092,16091,16136]],[[16085,8314,16094]],[[16090,16085,16091]],[[8311,8314,16085]],[[16136,14724,16093]],[[16136,16135,14724]],[[8314,14725,16094]],[[8314,8315,14727]],[[14729,14727,16081]],[[14725,8314,14727]],[[14724,14729,16093]],[[10958,10957,1881]],[[1882,15847,16028]],[[16024,1882,16028]],[[1881,10957,1882]],[[16024,1883,1882]],[[16024,7037,1883]],[[1883,7037,1880]],[[7037,10958,1881]],[[16052,15844,16054]],[[1064,10958,7037]],[[1064,10959,10958]],[[15844,16049,16056]],[[15847,10957,10956]],[[15850,1063,15844]],[[15848,15847,10956]],[[16051,16028,15847]],[[10959,15848,10956]],[[10959,1064,15850]],[[10959,15850,15848]],[[1064,1063,15850]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981af9f2-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16137,13251,13250]],[[16137,16138,16139]],[[16139,16140,16141]],[[16141,16142,16143]],[[16143,16144,16145]],[[10245,10244,16146]],[[16145,16147,16146]],[[10245,16146,16148]],[[16148,16146,16147]],[[16147,16145,16144]],[[16144,16143,16142]],[[16142,16141,16140]],[[16140,16139,16138]],[[16138,16137,13250]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981ecb10-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12452,15809,12454]],[[15809,15824,12454]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b981f8dcc-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16149,16150,16151]],[[16149,16151,16152]],[[16152,16151,16153]],[[16153,16151,16154]],[[16154,16151,16155]],[[16155,16151,16156]],[[16156,16151,16157]],[[16157,16151,16158]],[[16158,16159,16160]],[[16160,16159,16161]],[[16161,16159,16162]],[[16162,16159,16163]],[[16163,16159,16164]],[[16164,16159,16165]],[[16165,16159,16166]],[[16166,16159,16167]],[[16167,16159,16168]],[[16168,16159,16169]],[[16169,16159,16170]],[[16158,16151,16159]],[[16171,16172,16173]],[[16151,16171,16173]],[[16150,16171,16151]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9821d845-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee48d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[261,262,16174]],[[261,16174,2808]],[[2808,16175,2807]],[[16175,2808,16174]],[[16175,16174,16176]],[[262,16177,16174]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98229afb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16178,16179,16180]],[[16181,16182,16183]],[[16184,16185,16186]],[[16178,16187,16186]],[[16185,16184,16188]],[[16189,16188,16184]],[[16190,16186,16187]],[[16190,16184,16186]],[[16187,16178,16191]],[[16178,16192,16191]],[[16192,16178,16193]],[[16192,16193,16194]],[[16178,16195,16193]],[[16195,16178,16196]],[[16196,16178,16197]],[[16178,16180,16197]],[[16179,16198,16180]],[[16198,16179,16199]],[[16198,16199,16200]],[[16199,16179,16201]],[[16202,16203,16204]],[[16205,16203,16206]],[[16207,16208,16209]],[[16210,16201,12083]],[[16211,12107,16212]],[[16212,12107,16213]],[[16213,12107,16214]],[[16214,12107,16215]],[[12107,16216,16217]],[[16218,16219,12107]],[[16220,16218,12107]],[[16221,16220,12107]],[[16222,16221,12107]],[[16223,16222,16204]],[[16208,16223,16209]],[[16224,16208,16207]],[[16225,16224,16207]],[[16226,16225,16207]],[[16227,16226,16207]],[[16228,16227,16207]],[[16229,16228,16207]],[[16229,16230,16231]],[[16229,16207,16230]],[[16232,16230,16207]],[[16233,16232,16207]],[[16234,16233,16207]],[[16235,16234,16207]],[[16236,16235,16207]],[[16237,16236,16207]],[[16237,16238,16239]],[[16237,16207,16238]],[[16201,16179,12083]],[[16207,16183,16240]],[[16240,16183,16241]],[[16207,16242,16183]],[[16243,16181,16183]],[[16243,16244,16181]],[[16242,16243,16183]],[[16245,16246,16243]],[[16245,16247,16246]],[[16242,16245,16243]],[[16242,16248,16245]],[[16249,16250,16248]],[[16242,16249,16248]],[[16251,16252,16249]],[[16242,16251,16249]],[[16242,16253,16251]],[[16254,16242,16207]],[[16209,16254,16207]],[[16204,16209,16223]],[[16255,16256,16257]],[[16255,16257,16258]],[[16259,16260,16257]],[[16256,16259,16257]],[[16209,16261,16258]],[[16262,16259,16256]],[[12083,16211,16210]],[[16255,16258,16261]],[[16261,16209,16203]],[[16203,16209,16204]],[[16203,16202,16206]],[[12107,16217,16215]],[[16263,12083,14772]],[[12107,16219,16216]],[[16264,16204,16265]],[[16264,16202,16204]],[[16204,12107,12118]],[[16204,16222,12107]],[[16211,12083,12107]],[[16179,14772,12083]],[[12117,12083,16263]],[[16263,14772,14751]],[[16266,16267,16259]],[[16259,16267,16260]],[[16268,16266,16262]],[[16262,16266,16259]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9824be2e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13800,16269,16270]],[[16271,16272,16273]],[[16273,16274,16275]],[[16273,16276,16274]],[[16273,16277,16276]],[[16273,16278,16277]],[[16271,14711,16279]],[[16278,16273,16272]],[[16272,16271,16280]],[[16280,16271,16281]],[[16281,16271,16282]],[[16282,16271,16283]],[[16283,16271,16284]],[[16284,16271,16279]],[[16270,14631,14712]],[[14569,14566,16285]],[[12519,16286,16285]],[[12522,16287,16286]],[[16288,16287,12521]],[[12519,12522,16286]],[[12521,16287,12522]],[[14566,12519,16285]],[[12528,12519,14554]],[[16269,11833,16285]],[[14554,12519,14566]],[[11833,14569,16285]],[[14561,14569,11833]],[[11855,11833,16269]],[[11830,14561,11833]],[[14936,11855,16269]],[[11829,11855,14936]],[[14942,14936,16269]],[[14974,11829,14936]],[[14925,14942,16269]],[[14925,16269,12023]],[[12042,12045,16269]],[[12023,16269,12045]],[[13800,12042,16269]],[[16289,16290,12042]],[[13764,16291,16289]],[[13842,13800,16270]],[[13765,12042,13800]],[[13826,13800,13829]],[[13842,13862,13800]],[[13829,13800,13862]],[[11918,13842,16270]],[[13905,13842,11957]],[[11933,11918,16270]],[[11957,13842,11918]],[[16292,11933,16270]],[[11914,11933,16292]],[[16292,16270,14712]],[[16279,14710,16270]],[[16270,14710,14631]],[[16279,14711,14710]],[[12022,16291,13764]],[[16289,12042,13765]],[[12022,16293,16291]],[[12022,12042,16293]],[[16293,12042,16290]],[[13764,16289,13765]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98250c84-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef1df449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16028,16021,16117]],[[16028,16060,16048]],[[16047,16048,16060]],[[16046,16047,16060]],[[16031,16046,16060]],[[16045,16031,16060]],[[16042,16045,16060]],[[16044,16042,16060]],[[16043,16044,16060]],[[16041,16043,16060]],[[16040,16041,16060]],[[16038,16040,16060]],[[16039,16038,16060]],[[16037,16039,16060]],[[16035,16037,16060]],[[16036,16035,16060]],[[16034,16036,16060]],[[16033,16034,16060]],[[16032,16033,16060]],[[16030,16032,16060]],[[16029,16030,16060]],[[16027,16029,16060]],[[16027,16060,16024]],[[16028,16023,16060]],[[16028,16117,16023]],[[16022,16023,16117]],[[16066,16067,16117]],[[16065,16066,16117]],[[16064,16065,16117]],[[16062,16063,16118]],[[16061,16134,16115]],[[16061,16130,16134]],[[16061,16133,16130]],[[16061,16131,16133]],[[16061,16132,16131]],[[16061,16119,16132]],[[16061,16129,16119]],[[16061,16127,16129]],[[16061,16128,16127]],[[16061,16126,16128]],[[16061,16120,16126]],[[16061,16125,16120]],[[16061,16124,16125]],[[16061,16122,16124]],[[16061,16123,16122]],[[16061,16121,16123]],[[16061,16116,16121]],[[16061,16062,16118]],[[16061,16118,16116]],[[16063,16064,16117]],[[16063,16117,16118]],[[16067,16022,16117]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98272edb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13205,15713,13206]],[[16294,16295,13206]],[[13217,13204,13207]],[[13217,13210,13204]],[[13206,16295,13207]],[[13207,16295,13217]],[[16296,13220,13221]],[[14410,14407,16296]],[[13221,16295,16296]],[[13217,16295,13221]],[[16295,16297,14413]],[[13186,14406,14413]],[[13187,13186,14413]],[[14410,16295,14413]],[[14413,16297,13187]],[[15207,13183,13182]],[[15207,15210,13183]],[[16297,16298,15207]],[[13182,16297,15207]],[[16299,16300,15211]],[[15831,15830,16301]],[[16302,16298,16301]],[[13202,16303,16294]],[[16298,15831,16301]],[[15207,16298,15211]],[[13187,16297,13182]],[[16296,16295,14410]],[[15717,16294,13206]],[[15761,9066,9078]],[[15762,9071,16303]],[[15761,9078,15762]],[[15764,15762,16303]],[[9078,9071,15762]],[[15760,15764,16303]],[[13190,15760,16303]],[[13202,13192,16303]],[[13190,16303,13192]],[[11766,13202,16294]],[[11766,13189,13202]],[[11765,11766,16294]],[[11761,13189,11766]],[[16304,11765,16294]],[[16304,11760,11765]],[[14045,14040,16304]],[[16294,14045,16304]],[[15716,14041,16294]],[[14045,16294,14041]],[[16305,16306,15714]],[[16307,15716,15714]],[[15717,15716,16294]],[[15713,15717,13206]],[[14041,16308,14039]],[[14041,15716,16308]],[[16306,16307,15714]],[[16308,15716,16307]],[[14039,16305,15714]],[[16308,16305,14039]],[[16298,16299,15211]],[[16309,16302,16301]],[[16299,16298,16302]],[[15209,16309,16301]],[[15209,16300,16309]],[[15209,15211,16300]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9827560c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4ae49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[21,16170,16159]],[[21,16159,22]],[[1,3,22]],[[22,3,21]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98295220-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1ad149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2963,2894,8564]],[[2894,8607,8564]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9829794e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6995,6964,6994]],[[6995,6962,6964]],[[6995,6706,10614]],[[6962,6995,16310]],[[6961,16311,6960]],[[6961,6962,16310]],[[16311,6961,16310]],[[16310,6995,16312]],[[16312,6995,10614]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b982f6cae-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16313,16314,16315]],[[16314,16316,16315]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98322b9f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33ca49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15772,12451,15795]],[[12451,12461,15795]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98349d40-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef135b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"sierbestrating","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[300,11066,299]],[[300,313,11066]],[[11066,313,11617]],[[11622,11066,11617]],[[11618,11622,11617]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9837d0a9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16317,16318,16319]],[[16317,16319,16320]],[[16318,16321,16319]],[[16321,16318,16322]],[[16323,16324,16325]],[[16326,16323,16327]],[[16328,16326,16329]],[[16330,16328,16331]],[[16332,16330,16333]],[[16334,16332,16335]],[[16336,16334,16337]],[[16338,16336,16339]],[[16340,16338,16341]],[[16342,16340,16343]],[[16342,16344,16345]],[[16342,16343,16344]],[[16324,16346,16347]],[[16340,16341,16343]],[[16346,16348,16349]],[[16338,16339,16341]],[[16336,16337,16339]],[[16348,16350,16351]],[[16334,16335,16337]],[[16332,16333,16335]],[[16350,16352,16351]],[[16330,16331,16333]],[[16328,16329,16331]],[[16352,16353,16354]],[[16326,16327,16329]],[[16323,16325,16327]],[[16353,16355,16356]],[[16324,16347,16325]],[[16346,16349,16347]],[[16355,16357,16358]],[[16348,16351,16349]],[[16352,16354,16351]],[[16357,16359,16360]],[[16353,16356,16354]],[[16355,16358,16356]],[[16359,16361,16362]],[[16357,16360,16358]],[[16359,16362,16360]],[[16361,16363,16364]],[[16361,16364,16362]],[[16363,16322,16364]],[[16363,16321,16322]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983909fb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[127,128,9862]],[[16365,16366,127]],[[16366,126,127]],[[16366,125,126]],[[162,163,16367]],[[16368,16365,127]],[[16369,8639,8633]],[[16365,16368,8633]],[[16370,8152,8639]],[[9861,16367,9862]],[[16371,8150,8151]],[[163,16372,16367]],[[16371,16373,8150]],[[8152,16374,8151]],[[16375,16376,16371]],[[8151,16374,16371]],[[16376,16375,16377]],[[16377,16375,16378]],[[16378,16375,16379]],[[16379,16380,16381]],[[16381,16382,16383]],[[16383,16384,16385]],[[16385,16386,16387]],[[16387,16388,16389]],[[16389,16390,16391]],[[16391,16392,16393]],[[16394,16395,16396]],[[16397,11379,16395]],[[16393,16398,16396]],[[11379,16397,11380]],[[16395,16394,16397]],[[16396,16399,16394]],[[16396,16398,16399]],[[16393,16392,16398]],[[16391,16400,16392]],[[16391,16390,16400]],[[16389,16388,16390]],[[16387,16401,16388]],[[16387,16386,16401]],[[16385,16402,16386]],[[16385,16384,16402]],[[16383,16403,16384]],[[16383,16382,16403]],[[16381,16404,16382]],[[16381,16405,16404]],[[16381,16406,16405]],[[16381,16380,16406]],[[16379,16407,16380]],[[16379,16408,16407]],[[16379,16375,16408]],[[16371,16374,16375]],[[8152,16370,16374]],[[8639,16369,16370]],[[16369,8633,16368]],[[7946,16409,16372]],[[16367,16368,9862]],[[9862,16368,127]],[[16410,15884,16409]],[[8220,15884,16410]],[[16410,16409,7930]],[[7930,16409,7926]],[[7926,16409,7946]],[[7946,16372,854]],[[16372,164,854]],[[16372,163,164]],[[140,9861,139]],[[161,162,16367]],[[160,161,16367]],[[159,160,16367]],[[158,159,16367]],[[157,158,16367]],[[156,157,16367]],[[155,156,16367]],[[154,155,16367]],[[140,142,143]],[[154,16367,153]],[[153,16367,152]],[[152,16367,151]],[[151,16367,150]],[[150,16367,149]],[[149,16367,148]],[[148,16367,147]],[[147,16367,146]],[[146,16367,145]],[[145,16367,140]],[[144,145,140]],[[143,144,140]],[[142,140,141]],[[16367,9861,140]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983a1b0d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetgangersgebied","inonderzoek":"0","lokaalid":"G0503.032e68eee28449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16411,280,16412]],[[16413,264,16414]],[[16415,7574,7585]],[[7557,16416,7545]],[[16417,16418,280]],[[16419,7549,7545]],[[16420,7688,7549]],[[16421,7689,7688]],[[16422,7675,7674]],[[16421,7680,7689]],[[16423,278,7675]],[[384,7675,278]],[[280,278,16424]],[[262,263,16425]],[[16426,263,16427]],[[16428,262,16425]],[[16425,263,16429]],[[16425,16429,16430]],[[16429,263,16426]],[[16429,16426,16431]],[[16431,16426,16432]],[[263,264,16427]],[[16433,7557,7574]],[[16427,16434,16435]],[[16427,16413,16434]],[[16427,264,16413]],[[16414,264,16436]],[[16437,16438,16439]],[[16414,16437,16439]],[[16414,16440,16437]],[[16414,16441,16440]],[[16414,16442,16441]],[[16414,16443,16442]],[[16414,16444,16443]],[[16414,16445,16444]],[[16414,16436,16445]],[[16446,265,280]],[[264,16447,16436]],[[264,265,16448]],[[16447,264,16449]],[[16449,264,16450]],[[16450,264,16451]],[[16451,264,16452]],[[16452,264,16453]],[[16453,264,16454]],[[16455,16456,264]],[[16454,264,16456]],[[16457,16455,264]],[[16448,16457,264]],[[16458,16448,265]],[[16459,16458,265]],[[16460,16459,265]],[[16446,16460,265]],[[7674,7680,16461]],[[16446,280,16462]],[[16462,280,16463]],[[16463,280,16464]],[[16464,280,16465]],[[16465,280,16466]],[[16466,280,16467]],[[16467,280,16468]],[[16468,280,16418]],[[16469,16417,280]],[[16470,16469,280]],[[7584,16415,7585]],[[280,16471,16470]],[[7584,7607,16472]],[[16471,280,16473]],[[16473,280,16474]],[[16474,280,16475]],[[16475,280,16476]],[[16476,280,16477]],[[16477,280,16411]],[[16412,280,16478]],[[16478,280,16479]],[[16479,280,16480]],[[16480,280,16481]],[[16481,280,16424]],[[278,16482,16424]],[[16422,16423,7675]],[[16482,278,16423]],[[16461,16422,7674]],[[16483,16423,16422]],[[16461,7680,16421]],[[7688,16420,16421]],[[7549,16419,16420]],[[7545,16416,16419]],[[7557,16433,16416]],[[16433,7574,16415]],[[16484,16433,16415]],[[16415,7584,16472]],[[16472,7607,16485]],[[16485,7607,7619]],[[16486,16485,7619]],[[16487,16488,7630]],[[16489,16490,7630]],[[16491,16489,7630]],[[16492,16491,7630]],[[16493,16492,7630]],[[16494,16493,7630]],[[16495,16494,7630]],[[16496,16495,7630]],[[12902,16496,7630]],[[12902,16497,16496]],[[12900,16498,16497]],[[16499,16500,16501]],[[16502,16499,16501]],[[16503,16502,16501]],[[16504,16503,16501]],[[16505,16504,16501]],[[12151,16505,16501]],[[16506,16507,16508]],[[12178,12179,16509]],[[12181,12182,16509]],[[16510,16511,12156]],[[16512,16510,16513]],[[16514,16515,16513]],[[16516,16514,16513]],[[16517,16516,16513]],[[16518,16517,16513]],[[16519,16518,16513]],[[16520,16519,16513]],[[16521,16520,16513]],[[16522,16521,16513]],[[16513,16507,16523]],[[16524,16507,16506]],[[16523,16522,16513]],[[16507,16513,16508]],[[16515,16512,16513]],[[12151,16525,16505]],[[16526,16527,16528]],[[10981,10986,16529]],[[16527,16530,16531]],[[16527,10997,16530]],[[14175,12128,12129]],[[16501,16500,16532]],[[16501,16533,16534]],[[16501,16532,16533]],[[16500,16535,16532]],[[16500,16536,16535]],[[16500,16537,16536]],[[16500,16538,16537]],[[16500,16539,16538]],[[16500,16540,16539]],[[16500,16541,16540]],[[16500,16542,16541]],[[16500,16543,16542]],[[16500,16544,16543]],[[16500,16545,16544]],[[16500,16546,16545]],[[16500,16547,16546]],[[16500,16548,16547]],[[16500,16549,16548]],[[16550,16551,16552]],[[16500,16553,16549]],[[16500,16551,16550]],[[16553,16500,16554]],[[16554,16500,16555]],[[16555,16500,16556]],[[16556,16500,16557]],[[16557,16500,16558]],[[16558,16500,16550]],[[12905,16559,16498]],[[16552,16551,16560]],[[16560,16551,16561]],[[16561,16551,16562]],[[16562,16551,16563]],[[16563,16551,16564]],[[16564,16551,16565]],[[16565,16551,12924]],[[16566,16565,12926]],[[12915,16551,16567]],[[16568,12944,16569]],[[12909,16570,16571]],[[12931,12932,16572]],[[16573,16574,12945]],[[16572,16573,12931]],[[16575,16572,12932]],[[16576,16575,12933]],[[16577,16576,12934]],[[16578,16577,12935]],[[16579,16578,12936]],[[16580,16579,12937]],[[16581,16582,12939]],[[16583,16581,12940]],[[12855,16584,16583]],[[16585,16586,16587]],[[16588,16589,16590]],[[16590,16589,7643]],[[16590,16591,16592]],[[7363,7362,16593]],[[7643,16591,16590]],[[7454,16594,7402]],[[16595,16596,16597]],[[16597,16593,16598]],[[16599,7654,16596]],[[16596,7363,16597]],[[7381,7389,16600]],[[16601,16602,16600]],[[7362,16602,16603]],[[16600,16604,16605]],[[7381,16600,16602]],[[16606,16604,7389]],[[16607,16606,16594]],[[16607,16594,16608]],[[16594,16606,7402]],[[16609,16610,16611]],[[16610,7455,16611]],[[16610,16594,7454]],[[16611,16612,16613]],[[16612,16611,7455]],[[16614,16615,16616]],[[16614,16612,7455]],[[16615,16614,7456]],[[16617,16618,16619]],[[16617,16615,16618]],[[16615,7456,16618]],[[16618,7458,7459]],[[7458,16618,7456]],[[7458,7456,7457]],[[16614,7455,7456]],[[16610,7454,7455]],[[7654,16599,16591]],[[16593,7362,16603]],[[8847,8846,9052]],[[8842,8847,9052]],[[8843,8842,2709]],[[16586,7637,16589]],[[16620,8804,8803]],[[8804,8839,2634]],[[8827,8804,16620]],[[8827,16620,8826]],[[8839,8838,2709]],[[8803,8804,8733]],[[8733,8804,2634]],[[8839,2709,2634]],[[8838,8843,2709]],[[8842,9052,2709]],[[8846,7453,7400]],[[8846,7400,9052]],[[7389,16604,16600]],[[7453,7402,7400]],[[7453,7454,7402]],[[7402,16606,7389]],[[16597,7363,16593]],[[7381,16602,7362]],[[7654,7363,16596]],[[7643,7654,16591]],[[16589,7637,7643]],[[16490,16487,7630]],[[16488,16486,7619]],[[7630,16488,7619]],[[14190,12195,12207]],[[14194,12203,12204]],[[16621,12202,12203]],[[16621,12201,12202]],[[12170,16509,16513]],[[16621,12200,12201]],[[16621,16509,12210]],[[12200,16621,12199]],[[12199,16621,12198]],[[12198,16621,12197]],[[12197,16621,12196]],[[12196,16621,12210]],[[12210,16509,12194]],[[12194,16509,12193]],[[12193,16509,12192]],[[12192,16509,12191]],[[12191,16509,12190]],[[12190,16509,12189]],[[12189,16509,12188]],[[12188,16509,12187]],[[12185,12186,16509]],[[12187,16509,12186]],[[12184,12185,16509]],[[12182,12184,16509]],[[12154,16622,16623]],[[16510,12157,16513]],[[16511,16622,12155]],[[12180,12181,16509]],[[12179,12180,16509]],[[16624,12153,16623]],[[12177,12178,16509]],[[12176,12177,16509]],[[12175,12176,16509]],[[12174,12175,16509]],[[12173,12174,16509]],[[12172,12173,16509]],[[12171,12172,16509]],[[12170,12171,16509]],[[12169,12170,16513]],[[16525,12152,16624]],[[12169,16513,12168]],[[12168,16513,12167]],[[12164,12166,16513]],[[12167,16513,12166]],[[12163,12164,16513]],[[12162,12163,16513]],[[12161,12162,16513]],[[12160,12161,16513]],[[12159,12160,16513]],[[12158,12159,16513]],[[12157,12158,16513]],[[12156,12157,16510]],[[12155,12156,16511]],[[16625,12142,16501]],[[16622,12154,12155]],[[16623,12153,12154]],[[16624,12152,12153]],[[16525,12151,12152]],[[16501,12150,12151]],[[16501,12149,12150]],[[16501,12148,12149]],[[16501,12147,12148]],[[16501,12146,12147]],[[16501,12145,12146]],[[16501,12144,12145]],[[16501,12142,12144]],[[16625,12141,12142]],[[16625,12140,12141]],[[16625,12139,12140]],[[16625,12138,12139]],[[16625,12137,12138]],[[16625,12136,12137]],[[16625,12135,12136]],[[16625,12134,12135]],[[16625,12133,12134]],[[16625,12132,12133]],[[16625,12131,12132]],[[16625,12130,12131]],[[16625,12129,12130]],[[16625,14174,12129]],[[14176,12127,12128]],[[16582,16580,12938]],[[16583,12851,12850]],[[16583,12875,12851]],[[16583,12903,12875]],[[16574,16626,12946]],[[16583,12942,12903]],[[12906,16627,16628]],[[16583,12941,12942]],[[16629,12908,16571]],[[16583,12940,12941]],[[16626,16630,12930]],[[16581,12939,12940]],[[16568,16570,12910]],[[16582,12938,12939]],[[16630,16631,12929]],[[16580,12937,12938]],[[12912,16632,16569]],[[16579,12936,12937]],[[16633,12914,16567]],[[16578,12935,12936]],[[16631,16634,12928]],[[16577,12934,12935]],[[16634,16566,12927]],[[16576,12933,12934]],[[16633,16632,12913]],[[16575,12932,12933]],[[16629,16627,12907]],[[12945,12931,16573]],[[12946,12945,16574]],[[12930,12946,16626]],[[12929,12930,16630]],[[12928,12929,16631]],[[16559,12904,16628]],[[12928,16634,12927]],[[12927,16566,12926]],[[12926,16565,12924]],[[12924,16551,12923]],[[12923,16551,12922]],[[12922,16551,12920]],[[12920,16551,12921]],[[12921,16551,12919]],[[12917,12918,16551]],[[12919,16551,12918]],[[12915,12917,16551]],[[12914,12915,16567]],[[12913,12914,16633]],[[12912,12913,16632]],[[12944,12912,16569]],[[12910,12944,16568]],[[12909,12910,16570]],[[12908,12909,16571]],[[12907,12908,16629]],[[12906,12907,16627]],[[7637,12889,7630]],[[16628,12904,12906]],[[16559,12905,12904]],[[16498,12900,12905]],[[16497,12902,12900]],[[7630,12901,12902]],[[7630,12899,12901]],[[7630,12898,12899]],[[7630,12897,12898]],[[7630,12896,12897]],[[7630,12895,12896]],[[7630,12894,12895]],[[7630,12893,12894]],[[12877,16586,16585]],[[7630,12892,12893]],[[7637,16586,12884]],[[12890,12891,7630]],[[12892,7630,12891]],[[12889,12890,7630]],[[12888,12889,7637]],[[12887,12888,7637]],[[12886,12887,7637]],[[12885,12886,7637]],[[12884,12885,7637]],[[12883,12884,16586]],[[12943,12883,16586]],[[12880,12943,16586]],[[12879,12880,16586]],[[12878,12879,16586]],[[12876,12878,16586]],[[12877,12876,16586]],[[12874,12877,16585]],[[12873,12874,16585]],[[16584,12862,16585]],[[12873,16585,12872]],[[12872,16585,12871]],[[12871,16585,12870]],[[12870,16585,12869]],[[12869,16585,12868]],[[12868,16585,12867]],[[12867,16585,12866]],[[12866,16585,12865]],[[12865,16585,12864]],[[12864,16585,12862]],[[12862,16584,12863]],[[16584,12859,12863]],[[16584,12858,12859]],[[16584,12857,12858]],[[16584,12856,12857]],[[16584,12855,12856]],[[16583,12854,12855]],[[16583,12853,12854]],[[16583,12852,12853]],[[16583,12850,12852]],[[16529,14131,16635]],[[16635,14133,14136]],[[16635,14131,14133]],[[16529,14134,14131]],[[16529,14226,14134]],[[16529,14225,14226]],[[16529,14224,14225]],[[16529,14223,14224]],[[16529,14222,14223]],[[16529,14221,14222]],[[14194,16621,12203]],[[16529,10987,14221]],[[12125,12126,14178]],[[10996,14219,14220]],[[12125,14179,12124]],[[10976,14218,14219]],[[14180,12123,12124]],[[12122,14182,12119]],[[14183,12120,12119]],[[12143,12120,14184]],[[12143,14185,12165]],[[14187,12209,12165]],[[12208,14189,12207]],[[14191,12206,12195]],[[12205,12206,14192]],[[12205,14193,12204]],[[14210,11007,14209]],[[11012,14206,14228]],[[12208,12209,14188]],[[16621,14205,14206]],[[12122,12123,14181]],[[16621,14204,14205]],[[16621,14202,14204]],[[12126,12127,14227]],[[14202,16621,14201]],[[14201,16621,14200]],[[14200,16621,14199]],[[14199,16621,14198]],[[14198,16621,14197]],[[14197,16621,14195]],[[14195,16621,14196]],[[14196,16621,14194]],[[14194,12204,14193]],[[14193,12205,14192]],[[14192,12206,14191]],[[14191,12195,14190]],[[14190,12207,14189]],[[14189,12208,14188]],[[14185,14187,12165]],[[14188,12209,14187]],[[14184,14185,12143]],[[14183,14184,12120]],[[14182,14183,12119]],[[14181,14182,12122]],[[14180,14181,12123]],[[14179,14180,12124]],[[14178,14179,12125]],[[14227,14178,12126]],[[14176,14227,12127]],[[14175,14176,12128]],[[14174,14175,12129]],[[14173,14174,16625]],[[14172,14173,16625]],[[14171,14172,16625]],[[14170,14171,16625]],[[14169,14170,16625]],[[14168,14169,16625]],[[14167,14168,16625]],[[14166,14167,16625]],[[16635,14159,16625]],[[16625,14165,14166]],[[16625,14163,14165]],[[16625,14162,14163]],[[16625,14161,14162]],[[16625,14160,14161]],[[16625,14159,14160]],[[16635,14155,14159]],[[16635,14153,14155]],[[16635,14157,14153]],[[16635,14158,14157]],[[16635,14156,14158]],[[16635,14143,14156]],[[16635,14144,14143]],[[16635,14152,14144]],[[16635,14151,14152]],[[16635,14150,14151]],[[16635,14149,14150]],[[16635,14148,14149]],[[16635,14147,14148]],[[16635,14146,14147]],[[16635,14145,14146]],[[16635,14177,14145]],[[16635,14141,14177]],[[16635,14140,14141]],[[16635,14138,14140]],[[16635,14139,14138]],[[16635,14137,14139]],[[16635,14135,14137]],[[16635,14136,14135]],[[16526,11052,16527]],[[16530,10997,10974]],[[16527,11048,10997]],[[16527,11064,11048]],[[16527,11062,11064]],[[16527,11063,11062]],[[16527,11061,11063]],[[16527,11057,11061]],[[16527,11059,11057]],[[16527,11060,11059]],[[16527,11058,11060]],[[16527,11055,11058]],[[16527,11056,11055]],[[16527,11053,11056]],[[16527,11054,11053]],[[11020,16636,16621]],[[16527,11052,11054]],[[16526,16636,11047]],[[11052,16526,11049]],[[11049,16526,11051]],[[11051,16526,11050]],[[11050,16526,11035]],[[11035,16526,11046]],[[11046,16526,11047]],[[11047,16636,11045]],[[11045,16636,11044]],[[11044,16636,11043]],[[11043,16636,11041]],[[11041,16636,11042]],[[11040,11039,16636]],[[11042,16636,11039]],[[11036,11040,16636]],[[11038,11036,16636]],[[11037,11038,16636]],[[11033,11037,16636]],[[11034,11033,16636]],[[11029,11034,16636]],[[11031,11029,16636]],[[11032,11031,16636]],[[14216,11002,14215]],[[11030,11032,16636]],[[11001,14214,14215]],[[11026,11030,16636]],[[14213,10999,14212]],[[11028,11026,16636]],[[11006,14211,14212]],[[11027,11028,16636]],[[14210,14211,11005]],[[11022,11027,16636]],[[14209,11008,14208]],[[14206,11012,16621]],[[11009,14207,14208]],[[16636,11025,11022]],[[14228,14207,11011]],[[16636,11024,11025]],[[14213,14214,11003]],[[16636,11023,11024]],[[16636,11020,11023]],[[14216,14217,11000]],[[16621,11021,11020]],[[16621,11018,11021]],[[16621,11019,11018]],[[14217,14218,10998]],[[11019,16621,11016]],[[11016,16621,11017]],[[11017,16621,11015]],[[11015,16621,11013]],[[11013,16621,11014]],[[11014,16621,11004]],[[11004,16621,11010]],[[16621,11012,11010]],[[10977,16529,16530]],[[14228,11011,11012]],[[14220,14221,10987]],[[11011,14207,11009]],[[11009,14208,11008]],[[11008,14209,11007]],[[11007,14210,11005]],[[11005,14211,11006]],[[11006,14212,10999]],[[10999,14213,11003]],[[11003,14214,11001]],[[11001,14215,11002]],[[11002,14216,11000]],[[11000,14217,10998]],[[10998,14218,10976]],[[10976,14219,10996]],[[10996,14220,10987]],[[10987,16529,10993]],[[10993,16529,10995]],[[10995,16529,10994]],[[10994,16529,10988]],[[10988,16529,10992]],[[10992,16529,10990]],[[10990,16529,10991]],[[10991,16529,10989]],[[10989,16529,10984]],[[10984,16529,10985]],[[10985,16529,10986]],[[10982,10981,16529]],[[10983,10982,16529]],[[10980,10983,16529]],[[10977,10980,16529]],[[10979,10977,16530]],[[10978,10979,16530]],[[10975,10978,16530]],[[10973,10975,16530]],[[10974,10973,16530]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983e1262-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33cc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11998,14254,16637]],[[11998,16637,12018]],[[14254,14273,16637]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983ed62d-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32dc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16638,16639,16640]],[[16638,16640,16641]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b983f98fe-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef160449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"onverhard","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7971,8219,16410]],[[7970,16642,8543]],[[8220,16410,8218]],[[8218,16410,8219]],[[8219,7971,7972]],[[16643,7971,16410]],[[16643,16642,7970]],[[7970,7971,16643]],[[7969,7970,7967]],[[7967,7970,8543]],[[7968,7967,8543]],[[8544,16644,16645]],[[8543,16644,8544]],[[8543,16642,16644]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984083fa-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16646,6952,6953]],[[16646,6953,16647]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984231bb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef136949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"sierbestrating","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2352,7592,2744]],[[2352,2354,7573]],[[7592,2352,7593]],[[7593,2352,7598]],[[7598,2352,7573]],[[7573,2354,7570]],[[7570,2354,7571]],[[7571,2354,7585]],[[7574,7571,7585]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984231ca-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1d149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16648,15792,16649]],[[14285,16649,15792]],[[14418,14433,16650]],[[16651,16649,14285]],[[16652,16653,16650]],[[16654,16652,15903]],[[16655,16654,15903]],[[16656,16655,15903]],[[16657,16656,15903]],[[16658,16659,15903]],[[16660,16658,15903]],[[16661,16660,15903]],[[16662,16661,15903]],[[16663,16662,15903]],[[16664,16663,15903]],[[16665,16664,15910]],[[16057,16665,15910]],[[16664,15903,15910]],[[16659,16657,15903]],[[15903,16652,16650]],[[16650,16653,14418]],[[16651,14419,16653]],[[16653,14419,14418]],[[16651,14290,14419]],[[16312,12451,16648]],[[16312,10614,15809]],[[14290,16651,14285]],[[15792,16648,15772]],[[15772,16648,12451]],[[12451,16312,12452]],[[12452,16312,15809]],[[15809,10614,10613]],[[15804,15809,10613]],[[11769,15421,11618]],[[11785,11769,11618]],[[11619,11785,11618]],[[13131,13125,16666]],[[13041,13131,16176]],[[16667,16668,16669]],[[16670,16671,16177]],[[1027,16672,1033]],[[1033,16672,16177]],[[16673,16674,16675]],[[16676,16677,16669]],[[16678,16679,16670]],[[16671,16670,16679]],[[16680,16681,16669]],[[16678,16670,16682]],[[16683,16684,16685]],[[16686,16687,16688]],[[16689,16690,16669]],[[16691,16692,16693]],[[16674,16694,16675]],[[16695,16696,16693]],[[16697,16669,16696]],[[16698,16699,16700]],[[16699,16669,16701]],[[16702,16698,16700]],[[16700,16699,16701]],[[16694,16703,16704]],[[16701,16669,16705]],[[16706,16673,16675]],[[16705,16669,16690]],[[16707,16673,16706]],[[16707,16684,16683]],[[16687,16708,16685]],[[16689,16669,16681]],[[16709,16682,16710]],[[16680,16669,16677]],[[16671,1033,16177]],[[16676,16669,16668]],[[16667,16669,16711]],[[16711,16669,16712]],[[16712,16669,16697]],[[16697,16696,16713]],[[16713,16696,16714]],[[16714,16696,16715]],[[16715,16696,16716]],[[16716,16696,16717]],[[16718,16716,16719]],[[16720,16718,16721]],[[16722,16720,16723]],[[16724,16722,16725]],[[16726,16724,16727]],[[16728,16726,16729]],[[16730,16728,16731]],[[16732,16730,16733]],[[16734,16732,16735]],[[16736,16734,16737]],[[16738,16736,16739]],[[16740,16738,16741]],[[16739,16741,16738]],[[16742,16740,16741]],[[16737,16739,16736]],[[16735,16737,16734]],[[16733,16735,16732]],[[16731,16733,16730]],[[16729,16731,16728]],[[16727,16729,16726]],[[16725,16727,16724]],[[16723,16725,16722]],[[16721,16723,16720]],[[16719,16721,16718]],[[16717,16719,16716]],[[16743,16744,16693]],[[16696,16745,16717]],[[16696,16695,16745]],[[16746,16747,16704]],[[16693,16748,16695]],[[16743,16747,16746]],[[16748,16693,16749]],[[16749,16693,16750]],[[16750,16693,16751]],[[16751,16693,16692]],[[16752,16691,16693]],[[16744,16752,16693]],[[16746,16744,16743]],[[16704,16703,16746]],[[16694,16674,16703]],[[16672,13042,16177]],[[16673,16753,16674]],[[16673,16707,16683]],[[16683,16685,16708]],[[16708,16687,16686]],[[16754,16708,16686]],[[16754,16755,16756]],[[16709,16710,16688]],[[16757,16756,16755]],[[16710,16686,16688]],[[16755,16754,16686]],[[13042,13041,16174]],[[16710,16682,16670]],[[13042,16174,16177]],[[13041,16176,16174]],[[13131,16666,16176]],[[15421,15420,11622]],[[13125,11619,16666]],[[16666,11619,11620]],[[13125,11785,11619]],[[15420,15534,10615]],[[15421,11622,11618]],[[15534,15557,10615]],[[15420,10615,11622]],[[15557,10613,10615]],[[15557,15804,10613]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9845daba-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6857,6858,16758]],[[6857,16758,6820]],[[6820,6818,6819]],[[6820,16759,6818]],[[6820,16758,16759]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98462904-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb0349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16760,16761,16762]],[[16762,16763,16764]],[[16760,16762,16764]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9847615f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16765,16766,16767]],[[16766,16768,16767]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98484b4f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15470,14102,14125]],[[15470,14125,15459]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98490f1a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15906,15905,11987]],[[15905,11988,11987]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984abcea-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12536,16367,12531]],[[14448,11901,16370]],[[12536,16368,16367]],[[16169,16170,24]],[[16375,25,16408]],[[16408,25,16407]],[[16407,25,16380]],[[16380,25,16406]],[[16769,16404,16405]],[[16769,16382,16404]],[[16406,16769,16405]],[[16770,16382,16769]],[[16769,16406,25]],[[25,16375,24]],[[24,16375,16162]],[[16168,16169,24]],[[16167,16168,24]],[[16166,16167,24]],[[16165,16166,24]],[[16164,16165,24]],[[16163,16164,24]],[[16162,16163,24]],[[16161,16162,16375]],[[16160,16161,16375]],[[16158,16160,16375]],[[16157,16158,16375]],[[16156,16157,16375]],[[16374,16150,16375]],[[16375,16155,16156]],[[16375,16154,16155]],[[14448,16370,16369]],[[16375,16153,16154]],[[16374,16370,11900]],[[16153,16375,16152]],[[16152,16375,16149]],[[16149,16375,16150]],[[16150,16374,16171]],[[16374,16172,16171]],[[16374,11900,16172]],[[16368,15729,16369]],[[16370,11901,11900]],[[16367,16372,14738]],[[16409,15292,16372]],[[16369,14442,14448]],[[16369,15729,14442]],[[16409,15884,14532]],[[15729,16368,15746]],[[15746,16368,12536]],[[12531,16367,14731]],[[14731,16367,14732]],[[14732,16367,14746]],[[14746,16367,14738]],[[14738,16372,14237]],[[14237,16372,14240]],[[14240,16372,15291]],[[15291,16372,15292]],[[15292,16409,15237]],[[15237,16409,15238]],[[15238,16409,14532]],[[6,5,24]],[[24,5,25]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b984eb436-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16771,16772,16773]],[[16771,16773,16774]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98525e11-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15694,11876,15711]],[[11876,11888,15711]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98554433-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fe49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16775,16776,16777]],[[16776,16778,16777]],[[16776,16761,16778]],[[16778,16761,16760]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b98556b73-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16779,16780,16781]],[[16781,16780,16782]],[[16779,16783,16780]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9856f206-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16784,16785,16786]],[[16784,16786,16787]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b985fcb64-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0ac049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[211,313,210]],[[210,313,209]],[[211,11617,313]],[[211,212,11616]],[[11617,211,11616]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f4dc812-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[1026,1035,1036]],[[16788,1026,1036]],[[1048,16788,1049]],[[1049,16788,1040]],[[1040,16788,1041]],[[1041,16788,1036]],[[1026,1034,1035]],[[1026,1028,1034]],[[16788,16789,1026]],[[1026,16789,1027]],[[13077,16790,1048]],[[16791,13042,16672]],[[1048,16790,16788]],[[13077,13042,16791]],[[16789,16791,16672]],[[16790,13077,16791]],[[1027,16789,16672]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f4f9d10-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14527,15693,15710]],[[14527,15710,14549]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f5123ac-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe3e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16792,16793,3225]],[[3277,16794,3344]],[[3344,16795,3272]],[[3272,16796,3271]],[[3271,16797,3269]],[[3269,16798,3267]],[[3267,16799,3268]],[[3268,16800,3265]],[[3265,16801,3264]],[[3264,16802,3350]],[[3350,16803,3262]],[[16793,16804,3247]],[[3225,16793,3247]],[[3247,16804,3252]],[[3262,16792,3225]],[[3276,16805,3277]],[[16806,3366,3337]],[[3262,16803,16792]],[[3276,3366,16807]],[[16801,16802,3264]],[[16803,3350,16802]],[[3333,16808,3337]],[[16809,3329,3369]],[[3265,16800,16801]],[[3333,3329,16810]],[[16798,16799,3267]],[[16800,3268,16799]],[[3381,16811,3369]],[[16812,3322,3319]],[[3269,16797,16798]],[[3381,3322,16813]],[[16795,16796,3272]],[[16797,3271,16796]],[[3286,16814,3319]],[[16815,3285,3290]],[[3344,16794,16795]],[[3286,3285,16816]],[[16807,16805,3276]],[[16794,3277,16805]],[[3289,16817,3290]],[[3366,16806,16807]],[[3337,16808,16806]],[[3333,16810,16808]],[[16818,3292,16819]],[[3329,16809,16810]],[[3289,3292,16818]],[[16809,3369,16811]],[[16811,3381,16813]],[[16813,3322,16812]],[[16812,3319,16814]],[[16814,3286,16816]],[[16816,3285,16815]],[[16815,3290,16817]],[[16817,3289,16818]],[[16819,3292,3295]],[[16820,16819,3295]],[[16821,16820,3295]],[[16822,16821,3295]],[[16823,16822,3295]],[[16824,16823,3295]],[[16825,16824,3295]],[[16825,3294,16826]],[[16825,3295,3294]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f531ed5-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef16be49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[10028,10012,7279]],[[10028,7279,16827]],[[7278,7279,10012]],[[16828,10179,16827]],[[16827,10179,10028]],[[16828,1173,10179]],[[10205,10179,8554]],[[1161,10179,1173]],[[10205,1124,8545]],[[8534,1123,10205]],[[1124,10205,1123]],[[8534,10205,1230]],[[1230,10205,1112]],[[1217,8526,10205]],[[1112,10205,8526]],[[1218,1217,10205]],[[1203,8554,10179]],[[1218,10205,8554]],[[8562,1203,10179]],[[1202,8554,1203]],[[1188,8562,10179]],[[1146,1188,10179]],[[1161,8412,10179]],[[1146,10179,8412]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f5409d1-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7194,7198,15924]],[[7198,15901,15924]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f556936-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16829,16830,16831]],[[16829,16832,16833]],[[16833,16834,16835]],[[16833,16836,16834]],[[16833,16837,16836]],[[16833,16832,16837]],[[16829,16838,16832]],[[16829,16839,16838]],[[16829,16840,16839]],[[16829,16841,16840]],[[16829,16842,16841]],[[16829,16843,16842]],[[16829,16844,16843]],[[16829,16845,16844]],[[16829,16846,16845]],[[16829,16847,16846]],[[16829,16848,16847]],[[16829,16849,16848]],[[16829,16850,16849]],[[16829,16851,16850]],[[16829,16852,16851]],[[16829,16853,16852]],[[16829,16831,16853]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f565329-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[6958,6955,6957]],[[6957,6955,6956]],[[6958,6959,16854]],[[6955,16855,6954]],[[6955,6958,16855]],[[16855,6958,16854]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f56c89e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14126,14118,15328]],[[14126,15328,15332]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f56efd5-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32dd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16856,16857,16858]],[[16857,16859,16858]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f576553-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15804,15557,15805]],[[15557,15549,15805]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f615017-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eef5fa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8136,8137,16860]],[[16861,8136,11378]],[[8134,8135,8133]],[[11379,11378,8136]],[[16862,11379,8136]],[[16863,16862,8136]],[[16864,16863,8136]],[[16865,16864,8136]],[[16866,16865,8136]],[[16860,16866,8136]],[[16804,8135,16861]],[[16861,8135,8136]],[[16867,16793,16868]],[[8135,16804,16867]],[[8135,16867,8133]],[[16804,16793,16867]],[[8122,16868,8121]],[[8125,16868,8122]],[[8124,8125,8122]],[[8124,8122,8123]],[[16868,16793,8121]],[[8117,16793,8118]],[[8120,8121,8117]],[[8120,8117,8119]],[[8121,16793,8117]],[[11605,16793,11604]],[[8159,8118,11606]],[[8118,11605,11606]],[[8118,16793,11605]],[[11601,16793,11600]],[[11603,11604,11602]],[[11604,11601,11602]],[[11604,16793,11601]],[[11600,16793,15289]],[[11599,11600,11597]],[[11598,11599,11597]],[[11600,15289,11597]],[[15288,16793,16792]],[[11595,11596,11593]],[[15266,15264,11593]],[[11594,11595,11593]],[[15264,15263,11593]],[[11591,11592,11590]],[[11590,11592,11589]],[[16795,11588,11589]],[[11587,11588,11586]],[[11586,11588,11585]],[[16808,11584,11585]],[[11585,11588,16807]],[[11581,11583,11584]],[[16813,11581,11584]],[[11582,11583,11581]],[[16814,11580,11581]],[[11579,11580,11577]],[[16815,11577,11580]],[[11578,11579,11577]],[[16818,11576,11577]],[[11575,11576,11573]],[[16818,11573,11576]],[[11574,11575,11573]],[[16818,11572,11573]],[[11571,11572,2825]],[[2825,11572,16818]],[[2826,2825,16818]],[[16819,2834,2830]],[[2830,2826,16819]],[[16819,181,182]],[[182,2834,16819]],[[180,181,179]],[[179,181,176]],[[176,181,16869]],[[175,176,16869]],[[16869,181,16870]],[[16870,181,16826]],[[16826,181,16825]],[[16825,181,16824]],[[16824,181,16823]],[[16823,181,16822]],[[16822,181,16821]],[[16821,181,16820]],[[16820,181,16819]],[[16819,2826,16818]],[[16818,11577,16817]],[[16817,11577,16815]],[[16815,11580,16816]],[[16816,11580,16814]],[[16814,11581,16812]],[[16812,11581,16813]],[[16813,11584,16811]],[[16811,11584,16809]],[[16809,11584,16810]],[[16810,11584,16808]],[[16808,11585,16806]],[[16806,11585,16807]],[[16807,11588,16805]],[[16805,11588,16794]],[[16794,11588,16795]],[[16795,11589,15263]],[[15263,11589,11592]],[[15263,16797,16796]],[[15263,16798,16797]],[[15269,16799,16798]],[[15289,11596,11597]],[[15288,15289,16793]],[[16803,15288,16792]],[[16801,16800,15269]],[[15269,16800,16799]],[[16802,15288,16803]],[[16802,16801,15275]],[[15288,16802,15278]],[[15278,16802,15274]],[[15274,16802,15275]],[[15275,16801,15273]],[[15273,16801,15271]],[[15271,16801,15272]],[[16801,15269,15272]],[[16796,16795,15263]],[[16798,15263,15269]],[[11592,11593,15263]],[[11596,15287,11593]],[[15285,15266,11593]],[[15287,15285,11593]],[[15283,15287,11596]],[[15282,15283,11596]],[[15289,15282,11596]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f68f153-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee28049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12832,7096,7099]],[[6655,6678,6679]],[[16871,16317,6755]],[[16872,15991,15993]],[[6749,6663,6760]],[[6758,6759,6756]],[[16872,15976,15979]],[[6757,6758,6756]],[[6754,6755,16317]],[[16872,16017,16015]],[[7223,7224,7221]],[[7222,7223,7221]],[[6754,16317,7226]],[[7226,16317,7224]],[[7147,7148,7146]],[[7146,7148,7145]],[[16317,7138,7221]],[[7143,7144,7141]],[[7142,7143,7141]],[[7148,7138,16317]],[[7101,7103,7100]],[[16320,12842,7100]],[[7098,7099,7096]],[[7097,7098,7096]],[[12842,7099,7100]],[[12832,7094,7096]],[[7095,7096,7094]],[[16873,7093,7094]],[[7092,7093,7091]],[[7091,7093,7090]],[[7090,7093,16873]],[[7089,7090,16873]],[[16873,7094,16874]],[[15909,16873,16875]],[[16875,16873,16874]],[[16874,7094,16876]],[[16876,7094,16877]],[[16877,7094,16878]],[[16878,7094,16879]],[[16879,7094,16880]],[[16880,7094,16881]],[[16881,7094,16882]],[[16882,7094,16883]],[[16883,7094,16884]],[[16884,7094,16885]],[[16885,7094,16886]],[[16886,7094,16887]],[[16887,7094,16888]],[[16888,7094,16889]],[[16889,7094,12832]],[[16890,16889,12832]],[[505,15971,6672]],[[16891,16890,12832]],[[12841,12842,16320]],[[16342,16345,12841]],[[16892,16871,6756]],[[16340,16342,12841]],[[16340,12841,16338]],[[7224,16317,7221]],[[16336,16338,12841]],[[16336,12841,16334]],[[7148,16317,7145]],[[16334,12841,16332]],[[16354,16356,16351]],[[16330,16332,12841]],[[16356,16358,16351]],[[16328,16330,12841]],[[16326,16328,12841]],[[16358,16322,16341]],[[16323,16326,12841]],[[16324,16323,12841]],[[16360,16322,16358]],[[16346,16324,12841]],[[16348,16346,12841]],[[16362,16322,16360]],[[16350,16348,12841]],[[16352,16350,12841]],[[16364,16322,16362]],[[16353,16352,12841]],[[16355,16353,12841]],[[16322,16318,16344]],[[16357,16355,12841]],[[16359,16357,12841]],[[16318,16317,16344]],[[16361,16359,12841]],[[16363,16361,12841]],[[16321,16363,12841]],[[7103,16320,7100]],[[16319,16321,12841]],[[16872,15995,15997]],[[16317,7144,7145]],[[16317,16320,7144]],[[7144,16320,7141]],[[7141,16320,7103]],[[16351,16358,16349]],[[16349,16358,16341]],[[16347,16349,16341]],[[16325,16347,16327]],[[16327,16347,16329]],[[16329,16347,16335]],[[16331,16329,16335]],[[16333,16331,16335]],[[16335,16347,16341]],[[16337,16335,16339]],[[16339,16335,16341]],[[16341,16322,16344]],[[16343,16341,16344]],[[15974,16892,6756]],[[15997,16000,16872]],[[15995,16872,15993]],[[15971,6679,6672]],[[16872,15989,15991]],[[6655,6679,15971]],[[16008,16010,16006]],[[15989,16872,15987]],[[16010,16012,16004]],[[15987,16872,15985]],[[15985,16872,15983]],[[16012,16018,15996]],[[15983,16872,15981]],[[15981,16872,15979]],[[16014,16018,16012]],[[16872,15977,15976]],[[16872,16001,15977]],[[16016,16018,16014]],[[16872,16003,16001]],[[16872,16005,16003]],[[16018,15972,15999]],[[16872,16007,16005]],[[16872,16009,16007]],[[16020,15975,16018]],[[16872,16011,16009]],[[16872,16013,16011]],[[16872,16015,16013]],[[16018,15975,15972]],[[16872,16019,16017]],[[16872,16892,15973]],[[16774,15972,15971]],[[6759,15974,6756]],[[6759,6760,15974]],[[8391,8392,16893]],[[15971,15974,6655]],[[6655,15974,6663]],[[6663,15974,6760]],[[16006,16010,16004]],[[16004,16012,15996]],[[16002,16004,15980]],[[15978,16002,15980]],[[15980,16004,15984]],[[15982,15980,15984]],[[15984,16004,15996]],[[15986,15984,15990]],[[15988,15986,15990]],[[15990,15984,15996]],[[15992,15990,15994]],[[15994,15990,15996]],[[15996,16018,15999]],[[15998,15996,15999]],[[16894,16893,15881]],[[16773,15999,15972]],[[16895,16896,16897]],[[16897,16896,16898]],[[16898,16896,16899]],[[16900,16898,16899]],[[16901,16900,16899]],[[16899,16896,16902]],[[16903,16899,16904]],[[16904,16899,16905]],[[16905,16899,16902]],[[16906,16905,16907]],[[16907,16905,16908]],[[16909,16907,16908]],[[16908,16905,16902]],[[16910,16908,16911]],[[16911,16908,16912]],[[16912,16908,16902]],[[16913,16912,16902]],[[16914,16913,16902]],[[16902,16896,16915]],[[16916,16902,16917]],[[16917,16902,16915]],[[16918,16917,16915]],[[16915,16896,16772]],[[8388,8391,16893]],[[16894,16919,16920]],[[16921,16919,16894]],[[16922,16921,16923]],[[16923,16921,16924]],[[16925,16923,16926]],[[16927,16925,16926]],[[16926,16923,16924]],[[16928,16926,16929]],[[16929,16926,16930]],[[16931,16929,16930]],[[16930,16926,16924]],[[16932,16930,16933]],[[16933,16930,16924]],[[16934,16933,16935]],[[16935,16933,16936]],[[16937,16935,16936]],[[16936,16933,16938]],[[16939,16936,16938]],[[16938,16933,16924]],[[16940,16938,16924]],[[16924,16921,16894]],[[16941,16942,15858]],[[16943,15858,16942]],[[15880,15881,15878]],[[15879,15880,15878]],[[15878,15881,15876]],[[15877,15878,15876]],[[15876,15881,15874]],[[15875,15876,15874]],[[15874,15881,15860]],[[15873,15874,15872]],[[15872,15874,15871]],[[15871,15874,15870]],[[15870,15874,15869]],[[15869,15874,15860]],[[15868,15869,15865]],[[15867,15868,15865]],[[15866,15867,15865]],[[15865,15869,15864]],[[15864,15869,15860]],[[15863,15864,15860]],[[15862,15863,15860]],[[15861,15862,15860]],[[15860,15881,15857]],[[15859,15860,15857]],[[15881,16944,15857]],[[16944,15881,16893]],[[8272,15855,15858]],[[14714,15856,15855]],[[14721,15856,14714]],[[14717,15855,8273]],[[16945,16946,14719]],[[16947,16945,14717]],[[16948,16947,14717]],[[16949,16948,8274]],[[16950,16949,16951]],[[16952,16950,16951]],[[16953,16952,16951]],[[16954,16953,16951]],[[16951,16949,8274]],[[8275,16951,8274]],[[8274,14717,8273]],[[8273,15855,8272]],[[8272,15858,16955]],[[8271,8272,16955]],[[16956,15858,16943]],[[16957,16955,16958]],[[16955,16956,16958]],[[16955,15858,16956]],[[16959,8392,8395]],[[16960,16943,16961]],[[16943,16942,16961]],[[8387,8388,16893]],[[16944,15858,15857]],[[16959,8396,16962]],[[16959,8395,8396]],[[8394,8395,8393]],[[8395,8392,8393]],[[1389,8384,16894]],[[8390,8391,8389]],[[8391,8388,8389]],[[16893,16894,8387]],[[8384,8385,8386]],[[8386,8387,8384]],[[16894,8384,8387]],[[16963,16894,16964]],[[16965,16963,16966]],[[16894,1386,1389]],[[1391,1387,16967]],[[1386,16965,1387]],[[16968,16969,16920]],[[16963,16965,1386]],[[16965,16967,1387]],[[1386,16894,16963]],[[16969,16964,16894]],[[16969,10652,16964]],[[16920,16969,16894]],[[10647,10652,16969]],[[650,651,16970]],[[16968,650,16970]],[[16920,648,16968]],[[648,649,650]],[[16920,624,648]],[[16968,648,650]],[[16920,16971,630]],[[16771,16915,16772]],[[624,16920,630]],[[520,16971,519]],[[630,520,514]],[[630,16971,520]],[[506,518,519]],[[15971,506,16774]],[[493,518,506]],[[505,506,15971]],[[16942,16941,16962]],[[16893,8392,16959]],[[16959,16962,16941]],[[16941,15858,16944]],[[14717,14714,15855]],[[16948,14717,8274]],[[16945,14719,14717]],[[16946,16972,14719]],[[16972,14721,14719]],[[16972,15856,14721]],[[16973,12831,16345]],[[16973,16891,12832]],[[12831,16973,12832]],[[16319,12841,16320]],[[12832,7099,12842]],[[12831,12841,16345]],[[16344,16974,16000]],[[16344,16317,16871]],[[6756,16871,6755]],[[16974,16344,16871]],[[15973,16892,15974]],[[15973,16019,16872]],[[16974,16872,16000]],[[16896,15999,16773]],[[16774,16773,15972]],[[16772,16896,16773]],[[519,16774,506]],[[519,16771,16774]],[[16971,16771,519]],[[16971,16915,16771]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6bb041-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad op trap","inonderzoek":"0","lokaalid":"G0503.032e68ef1acf49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8131,8132,8133]],[[16867,8131,8133]],[[15854,8130,8131]],[[16867,15854,8131]],[[16868,15853,16867]],[[15853,8125,8126]],[[16867,15853,15854]],[[16868,8125,15853]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6bb053-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16781,16782,16975]],[[16782,16976,16975]],[[16976,16782,16977]],[[16977,16782,16978]],[[16978,16782,16979]],[[16980,16978,16979]],[[16981,16980,16979]],[[16982,16981,16979]],[[16983,16982,16979]],[[16984,16983,16979]],[[16985,16984,16979]],[[16986,16985,16979]],[[16987,16986,16979]],[[16988,16987,16989]],[[16990,16988,16989]],[[16991,16990,16989]],[[16992,16991,16989]],[[16993,16992,16989]],[[16993,16989,16954]],[[16987,16979,16989]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6c25cb-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16994,16995,14274]],[[3012,15234,16995]],[[14267,16994,14274]],[[14267,16996,16994]],[[3014,15216,15234]],[[16997,16998,3015]],[[16996,14267,3015]],[[16994,16997,16995]],[[16997,3013,16995]],[[16997,3015,3013]],[[16996,3015,16998]],[[14267,15216,3015]],[[3012,3014,15234]],[[3015,15216,3014]],[[3013,3012,16995]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6cc165-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16920,16919,16971]],[[16919,16915,16971]],[[16919,16918,16915]],[[16918,16919,16917]],[[16906,16907,16932]],[[16905,16906,16933]],[[16904,16905,16934]],[[16903,16904,16935]],[[16899,16903,16937]],[[16901,16899,16936]],[[16900,16901,16939]],[[16898,16900,16938]],[[16897,16898,16940]],[[16895,16897,16924]],[[16895,16894,16896]],[[16895,16924,16894]],[[16907,16909,16930]],[[16897,16940,16924]],[[16898,16938,16940]],[[16909,16908,16931]],[[16900,16939,16938]],[[16901,16936,16939]],[[16908,16910,16929]],[[16899,16937,16936]],[[16903,16935,16937]],[[16910,16911,16928]],[[16904,16934,16935]],[[16905,16933,16934]],[[16911,16912,16926]],[[16906,16932,16933]],[[16907,16930,16932]],[[16912,16913,16927]],[[16909,16931,16930]],[[16908,16929,16931]],[[16913,16914,16925]],[[16910,16928,16929]],[[16911,16926,16928]],[[16914,16902,16923]],[[16912,16927,16926]],[[16913,16925,16927]],[[16902,16916,16922]],[[16914,16923,16925]],[[16902,16922,16923]],[[16916,16917,16921]],[[16916,16921,16922]],[[16917,16919,16921]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6e9666-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33cb49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14419,14290,14439]],[[14290,14300,14439]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6e966f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16305,16308,16307]],[[16305,16307,16306]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f6fcec4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16999,17000,17001]],[[16999,17002,17003]],[[17004,17005,17006]],[[17006,17005,17007]],[[17007,17008,17009]],[[17001,17000,17010]],[[16999,17003,17000]],[[17009,17011,17010]],[[17012,17005,17004]],[[17012,17013,17005]],[[17001,17010,17011]],[[17011,17009,17014]],[[17014,17009,17015]],[[17015,17009,17016]],[[17016,17009,17008]],[[17008,17007,17017]],[[17017,17007,17005]],[[17005,17013,17018]],[[17018,17013,16783]],[[16779,17018,16783]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f70e0dc-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16789,16788,16790]],[[16789,16790,16791]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f71cae4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4b449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[588,17005,17018]],[[7807,17017,17005]],[[7807,17008,17017]],[[175,16869,17019]],[[12405,17019,17002]],[[12406,16999,17001]],[[17011,17014,7809]],[[17019,12405,7833]],[[17014,17015,7809]],[[17015,17016,7809]],[[12394,17002,16999]],[[17011,1796,17001]],[[174,175,7833]],[[174,7833,1840]],[[175,17019,7833]],[[12394,12405,17002]],[[7832,7833,12405]],[[12394,16999,12427]],[[12427,16999,12355]],[[12355,16999,12324]],[[12324,16999,12318]],[[12318,16999,12319]],[[12319,16999,12323]],[[12323,16999,12321]],[[12321,16999,12322]],[[12406,12429,16999]],[[12322,16999,12429]],[[17016,17008,7807]],[[12406,17001,7823]],[[7821,12406,7823]],[[7823,17001,1795]],[[1795,17001,1796]],[[7807,7809,17016]],[[1796,17011,7809]],[[8012,7807,17005]],[[8011,8012,17005]],[[8006,8011,17005]],[[3029,8006,17005]],[[8207,3029,17005]],[[8207,3030,3029]],[[3016,8207,17005]],[[8208,3030,8207]],[[3017,3016,17005]],[[3017,17005,8036]],[[8035,8036,17005]],[[8025,3017,8036]],[[8032,8035,17005]],[[8034,8035,8032]],[[8031,8032,17005]],[[8033,8034,8032]],[[8028,8031,17005]],[[8030,8031,8028]],[[603,8028,17005]],[[8029,8030,8028]],[[611,603,17005]],[[611,614,603]],[[613,614,612]],[[576,611,17005]],[[612,614,611]],[[586,588,17018]],[[576,17005,588]],[[587,588,586]],[[586,17018,703]],[[703,17018,702]],[[702,17018,678]],[[701,702,670]],[[670,702,683]],[[8250,17018,8248]],[[682,683,681]],[[683,680,681]],[[683,702,680]],[[680,678,679]],[[680,702,678]],[[678,17018,677]],[[677,17018,8253]],[[8252,8253,8251]],[[8253,8250,8251]],[[8253,17018,8250]],[[8248,17018,8281]],[[8281,17018,8279]],[[8280,8281,8279]],[[8276,17018,8275]],[[8278,8279,8277]],[[8279,8276,8277]],[[8279,17018,8276]],[[16951,8275,16988]],[[16954,16951,16993]],[[16993,16951,16992]],[[16992,16951,16991]],[[16991,16951,16990]],[[16990,16951,16988]],[[16988,8275,16987]],[[16987,8275,16986]],[[16986,8275,16985]],[[16985,8275,16984]],[[16984,8275,16983]],[[16983,8275,16982]],[[16982,8275,16981]],[[16981,8275,16980]],[[16980,8275,16978]],[[16978,8275,16977]],[[16977,8275,16976]],[[16976,8275,16975]],[[16975,8275,16781]],[[8275,16779,16781]],[[8275,17018,16779]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f724050-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7088,7089,7087]],[[16873,15902,7089]],[[7085,7086,7087]],[[7089,15921,7087]],[[7087,7084,7085]],[[7084,7087,15921]],[[7083,7080,7082]],[[7082,7080,7081]],[[7083,7084,15915]],[[7080,7083,15915]],[[7079,7077,7078]],[[7077,7120,7073]],[[7077,7079,15915]],[[7077,7119,7120]],[[7119,7077,15915]],[[7118,7114,7117]],[[7118,7176,7114]],[[7118,7119,15916]],[[7118,17020,7176]],[[7175,7173,7174]],[[7175,7172,7173]],[[7175,7176,17020]],[[7175,17021,7172]],[[7079,7080,15915]],[[7172,17021,17022]],[[17022,17023,17024]],[[17024,17025,17026]],[[17024,17027,17025]],[[17025,17027,17028]],[[17028,17027,17029]],[[17024,17023,17027]],[[17027,17030,17031]],[[17027,17023,17030]],[[17030,17032,17033]],[[17030,17034,17032]],[[17032,17035,17036]],[[17032,17037,17035]],[[17032,17034,17037]],[[17030,17023,17034]],[[17034,17038,17039]],[[17034,17040,17038]],[[17034,17023,17040]],[[17040,17023,17041]],[[17022,17042,17023]],[[17023,17042,17043]],[[17043,17042,17044]],[[17022,17021,17042]],[[7175,17020,17021]],[[17020,7118,15916]],[[7119,15915,15916]],[[7084,15921,15915]],[[7089,15920,15921]],[[7089,15919,15920]],[[7089,15907,15919]],[[15907,7089,15918]],[[15918,7089,15917]],[[15917,7089,15914]],[[15914,7089,15913]],[[15913,7089,15902]],[[16873,15911,15902]],[[16873,15912,15911]],[[16873,15908,15912]],[[15909,15908,16873]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f72b4d4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17045,17046,17047]],[[17045,17047,17048]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f732a64-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17049,17050,9145]],[[15325,17051,15333]],[[15325,16768,17051]],[[17051,16768,17052]],[[17052,16766,17053]],[[16765,17054,16766]],[[17055,17056,16765]],[[9148,17055,16765]],[[9145,17057,9146]],[[9145,17058,17057]],[[9145,17059,17058]],[[9145,17060,17059]],[[9145,17061,17060]],[[17049,9145,17062]],[[11997,17063,17064]],[[11997,17065,17063]],[[11997,17066,17065]],[[11997,17067,17066]],[[11997,12020,17067]],[[17053,16766,17054]],[[17052,16768,16766]],[[9148,17068,17055]],[[9145,11997,17064]],[[9145,17050,17061]],[[16768,15325,9147]],[[9147,16765,16767]],[[17056,17054,16765]],[[17057,17068,9146]],[[9147,9148,16765]],[[9146,17068,9148]],[[16768,9147,16767]],[[15325,11997,9145]],[[17062,9145,17064]],[[9147,15325,9145]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"b9f76379f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0ad049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17069,16177,16430]],[[16430,16428,16425]],[[16430,16177,16428]],[[16428,16177,262]],[[17069,17070,16177]],[[16177,17070,16670]],[[17071,16670,17072]],[[17073,17071,17072]],[[17073,17072,17074]],[[16670,17070,17072]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"ba2bf3d0a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17075,17076,17077]],[[17075,17077,17078]],[[17079,17080,17075]],[[17075,17080,17076]],[[17081,17082,17077]],[[17077,17082,17078]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c139a9-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7823,1795,1801]],[[7823,1802,7822]],[[1801,1794,1802]],[[7823,1801,1802]],[[1795,1797,1801]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c139ab-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[7169,7170,17083]],[[17083,7199,7167]],[[7167,7199,7200]],[[7169,17083,7167]],[[15943,7199,17083]],[[7170,15943,17083]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c1d52d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0876949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[266,279,265]],[[279,280,265]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c22373-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10539,17084,1403]],[[17085,1377,17084]],[[1381,10539,1403]],[[1376,1377,17085]],[[10002,1376,17085]],[[10539,1381,10009]],[[10539,17085,17084]],[[10009,1381,10044]],[[10033,10009,10044]],[[1381,17086,10044]],[[1381,1391,17086]],[[1323,1403,17084]],[[1377,1323,17084]],[[10349,10002,17085]],[[10539,10349,17085]],[[1391,16967,17086]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c2bff4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17087,1525,1369]],[[17088,17087,1369]],[[17089,11609,17088]],[[11608,17090,17087]],[[11609,11608,17087]],[[17088,11609,17087]],[[17089,11607,11609]],[[13350,11610,17089]],[[17089,11610,11607]],[[13352,13350,17088]],[[17088,13350,17089]],[[1369,13352,17088]],[[1535,1525,17087]],[[1364,1535,17090]],[[17090,1535,17087]],[[1688,1364,11608]],[[11608,1364,17090]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c46d5d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f097f149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17091,17092,17093]],[[17094,17095,17093]],[[17096,17097,17091]],[[17091,17098,17096]],[[17091,17099,17098]],[[17091,17097,17092]],[[17099,17091,17100]],[[17101,17091,17102]],[[17102,17091,17103]],[[17093,17092,17094]],[[17100,17091,17104]],[[17091,17101,17104]],[[17105,17106,17091]],[[17107,17108,17109]],[[17108,17107,17105]],[[17110,17109,17108]],[[17111,17112,17110]],[[17113,17112,17111]],[[17111,17114,17113]],[[17115,17114,17111]],[[17116,17115,17111]],[[17117,17116,17118]],[[17118,17119,17117]],[[17120,17121,17118]],[[17120,17118,17122]],[[17122,17118,17123]],[[17123,17124,17125]],[[17125,17124,17126]],[[17126,17124,17127]],[[17127,17128,17129]],[[17129,17128,17130]],[[17130,17128,17131]],[[17131,17128,17132]],[[17132,17128,17133]],[[17128,17134,17135]],[[17136,17128,17137]],[[17137,17128,17138]],[[17138,17128,17139]],[[17139,17128,17135]],[[17140,17134,17141]],[[17142,17135,17134]],[[17134,17143,17142]],[[17144,17134,17140]],[[17140,17145,17146]],[[17140,17141,17145]],[[17145,17141,17147]],[[17144,17143,17134]],[[17133,17128,17136]],[[17118,17116,17111]],[[17127,17124,17128]],[[17121,17119,17118]],[[17124,17123,17118]],[[17106,17103,17091]],[[17111,17110,17108]],[[17108,17105,17091]],[[17148,17149,17150]],[[17093,17151,17152]],[[17152,17153,17154]],[[17155,17156,17157]],[[17157,17156,17158]],[[17157,17158,17159]],[[17156,17150,17149]],[[17156,17149,17158]],[[17150,17154,17148]],[[17153,17148,17154]],[[17160,17153,17152]],[[17161,17160,17152]],[[17151,17161,17152]],[[17162,17151,17093]],[[17163,17164,17093]],[[17093,17164,17162]],[[17165,17163,17093]],[[17166,17165,17093]],[[17167,17166,17093]],[[17168,17167,17093]],[[17095,17168,17093]],[[1038,17169,17146]],[[17146,17169,17140]],[[1053,1038,17145]],[[17145,1038,17146]],[[1054,1053,17147]],[[17147,1053,17145]],[[17170,1054,17141]],[[17141,1054,17147]],[[17171,17170,17134]],[[17134,17170,17141]],[[17172,17171,17128]],[[17128,17171,17134]],[[17173,17172,17124]],[[17124,17172,17128]],[[17174,17173,17118]],[[17118,17173,17124]],[[17175,17174,17111]],[[17111,17174,17118]],[[17176,17175,17108]],[[17108,17175,17111]],[[17177,17176,17091]],[[17091,17176,17108]],[[17178,17177,17093]],[[17093,17177,17091]],[[17179,17178,17152]],[[17152,17178,17093]],[[17180,17179,17154]],[[17154,17179,17152]],[[17181,17180,17150]],[[17150,17180,17154]],[[17182,17181,17156]],[[17156,17181,17150]],[[17183,17182,17155]],[[17155,17182,17156]],[[17184,17183,17157]],[[17157,17183,17155]],[[17185,17184,17159]],[[17159,17184,17157]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c5a65f-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17186,17187,17188]],[[17189,8656,8664]],[[17190,17189,8664]],[[17188,17189,17190]],[[17191,17192,17186]],[[17193,17191,17194]],[[17187,17189,17188]],[[17187,17195,17196]],[[17187,17197,17195]],[[17187,17186,17197]],[[17198,8484,17199]],[[17192,17197,17186]],[[17192,17200,17201]],[[17192,17193,17200]],[[17192,17191,17193]],[[17191,8484,17198]],[[17194,17191,17202]],[[17202,17198,17203]],[[17203,17198,17204]],[[17202,17191,17198]],[[8817,8484,17191]],[[8818,8817,17186]],[[17186,8817,17191]],[[8660,8818,17188]],[[17188,8818,17186]],[[8661,8660,17190]],[[17190,8660,17188]],[[8664,8661,17190]],[[8659,8656,17189]],[[8657,8659,17187]],[[17187,8659,17189]],[[8655,8657,17196]],[[17196,8657,17187]],[[8654,8655,17195]],[[17195,8655,17196]],[[8652,8654,17197]],[[17197,8654,17195]],[[8653,8652,17192]],[[17192,8652,17197]],[[8651,8653,17201]],[[17201,8653,17192]],[[8649,8651,17200]],[[17200,8651,17201]],[[8650,8649,17193]],[[17193,8649,17200]],[[8647,8650,17194]],[[17194,8650,17193]],[[8648,8647,17202]],[[17202,8647,17194]],[[8646,8648,17203]],[[17203,8648,17202]],[[8644,8646,17204]],[[17204,8646,17203]],[[8645,8644,17198]],[[17198,8644,17204]],[[8642,8645,17199]],[[17199,8645,17198]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c8da19-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcc49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17205,10652,17206]],[[17205,17206,17207]],[[17208,10652,10645]],[[17209,17086,17210]],[[17211,10044,17086]],[[17209,17212,17211]],[[17209,17213,17212]],[[17214,17209,17210]],[[17211,17086,17209]],[[17215,17216,17214]],[[17217,17215,17214]],[[17210,17217,17214]],[[17210,10641,17217]],[[17206,10641,17210]],[[17206,17218,10641]],[[17206,10652,17218]],[[17218,10652,17208]],[[16964,10652,17205]],[[16963,16964,17207]],[[17207,16964,17205]],[[16966,16963,17206]],[[17206,16963,17207]],[[16965,16966,17210]],[[17210,16966,17206]],[[16967,16965,17086]],[[17086,16965,17210]],[[10048,10044,17211]],[[10043,10048,17212]],[[17212,10048,17211]],[[9992,10043,17213]],[[17213,10043,17212]],[[10046,9992,17209]],[[17209,9992,17213]],[[10045,10046,17214]],[[17214,10046,17209]],[[9993,10045,17216]],[[17216,10045,17214]],[[10042,9993,17215]],[[17215,9993,17216]],[[10644,10042,17217]],[[17217,10042,17215]],[[10641,10644,17217]],[[10642,10641,17218]],[[10643,10642,17208]],[[17208,10642,17218]],[[10645,10643,17208]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2c92854-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.7fa0197b61b6438794ab14242e673e48","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17219,17075,17220]],[[17219,17221,17222]],[[17222,17223,17224]],[[17225,37,39]],[[17225,38,37]],[[17225,17226,38]],[[17225,17227,17228]],[[17225,17228,17226]],[[17227,17224,17228]],[[17224,17223,17228]],[[17222,17221,17223]],[[17219,17220,17221]],[[17220,17075,17078]],[[17229,17220,17078]],[[17230,17229,17078]],[[17231,17230,17078]],[[17231,17078,17232]],[[17233,17234,17235]],[[17235,17234,17236]],[[17237,17236,17234]],[[17238,17239,17234]],[[17240,17238,17234]],[[17241,17240,17234]],[[17242,17241,17243]],[[17244,17242,17243]],[[17245,17244,17243]],[[17246,17247,17248]],[[17249,17248,17250]],[[17249,17246,17248]],[[17251,17245,17243]],[[17251,17246,17249]],[[17251,17243,17246]],[[17241,17234,17243]],[[17239,17237,17234]],[[17232,17078,17252]],[[17078,17253,17252]],[[17078,17234,17253]],[[17253,17234,17233]],[[17254,17079,17219]],[[17219,17079,17075]],[[17255,17254,17222]],[[17222,17254,17219]],[[17256,17255,17224]],[[17224,17255,17222]],[[17257,17256,17227]],[[17227,17256,17224]],[[17258,17257,17225]],[[17225,17257,17227]],[[20,17258,39]],[[39,17258,17225]],[[19,20,37]],[[37,20,39]],[[18,19,36]],[[36,19,38]],[[38,19,37]],[[16273,36,17226]],[[17226,36,38]],[[16271,16273,17228]],[[17228,16273,17226]],[[14711,16271,14644]],[[14644,16271,17223]],[[17223,16271,17228]],[[14630,14644,17221]],[[17221,14644,17223]],[[16292,14712,17220]],[[17220,14712,14630]],[[17220,14630,17221]],[[11914,16292,17229]],[[17229,16292,17220]],[[11927,11914,17230]],[[17230,11914,17229]],[[13905,11957,13896]],[[13896,11957,17231]],[[17231,11957,11927]],[[17231,11927,17230]],[[13829,13896,17232]],[[17232,13896,17231]],[[13826,13829,13797]],[[13797,13829,17252]],[[17252,13829,17232]],[[13764,13797,17253]],[[17253,13797,17252]],[[12022,13764,17233]],[[17233,13764,17253]],[[12023,12022,17235]],[[17235,12022,17233]],[[14925,12023,17236]],[[17236,12023,17235]],[[14974,14925,17237]],[[17237,14925,17236]],[[11829,14974,17239]],[[17239,14974,17237]],[[11830,11829,17238]],[[17238,11829,17239]],[[14561,11830,17240]],[[17240,11830,17238]],[[14554,14561,17241]],[[17241,14561,17240]],[[12528,14554,17242]],[[17242,14554,17241]],[[12521,12528,17244]],[[17244,12528,17242]],[[16288,12521,17245]],[[17245,12521,17244]],[[17259,16288,17251]],[[17251,16288,17245]],[[17260,17259,17249]],[[17249,17259,17251]],[[17261,17260,17250]],[[17250,17260,17249]],[[17262,17263,17246]],[[17246,17263,17247]],[[17264,17262,17243]],[[17243,17262,17246]],[[17265,17264,17234]],[[17234,17264,17243]],[[17082,17265,17078]],[[17078,17265,17234]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ca6162-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17266,17267,17268]],[[17266,17269,17267]],[[17270,17271,17272]],[[17270,17273,17271]],[[2766,17269,17266]],[[2781,17274,2778]],[[17274,17275,17276]],[[17274,17277,17275]],[[2778,17273,2775]],[[17277,17274,2781]],[[8319,17277,2781]],[[8319,2781,2799]],[[2781,2778,2779]],[[2779,2778,2782]],[[17274,17273,2778]],[[17273,17270,2771]],[[2775,17273,2771]],[[2775,2777,2773]],[[2775,2771,2777]],[[17270,17269,2771]],[[2769,2766,17266]],[[2766,2771,17269]],[[2766,2769,2764]],[[2764,2769,2768]],[[17266,8318,2769]],[[2798,2769,8318]],[[16078,8318,17266]],[[16079,16078,17268]],[[17268,16078,17266]],[[16077,16079,17267]],[[17267,16079,17268]],[[16075,16077,17269]],[[17269,16077,17267]],[[16076,16075,17270]],[[17270,16075,17269]],[[16074,16076,17272]],[[17272,16076,17270]],[[16073,16074,17271]],[[17271,16074,17272]],[[16072,16073,17273]],[[17273,16073,17271]],[[16070,16072,17274]],[[17274,16072,17273]],[[16071,16070,17276]],[[17276,16070,17274]],[[16069,16071,17275]],[[17275,16071,17276]],[[16068,16069,17277]],[[17277,16069,17275]],[[8319,16068,17277]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cbe7b0-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1112,8526,1229]],[[1112,1229,1110]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cc0ecf-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[6951,6952,17278]],[[17279,6951,17278]],[[17280,17279,17278]],[[17280,17281,17279]],[[6960,17282,6959]],[[6954,17281,6953]],[[17283,17284,17285]],[[17281,17280,6953]],[[6960,17284,17282]],[[17283,17282,17284]],[[17283,17279,17281]],[[17282,17283,17281]],[[16647,6953,17280]],[[16646,16647,17278]],[[17278,16647,17280]],[[6952,16646,17278]],[[16648,6951,17279]],[[16312,16648,17283]],[[17283,16648,17279]],[[16310,16312,17285]],[[17285,16312,17283]],[[16311,16310,17284]],[[17284,16310,17285]],[[6960,16311,17284]],[[16854,6959,17282]],[[16855,16854,17281]],[[17281,16854,17282]],[[6954,16855,17281]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cd20b1-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17286,17287,17288]],[[17287,17289,17288]],[[10623,9803,17286]],[[17286,9803,17287]],[[9808,10623,17288]],[[17288,10623,17286]],[[9802,9808,17289]],[[17289,9808,17288]],[[9803,9802,17287]],[[17287,9802,17289]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cd9515-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2250,8714,343]],[[2250,343,344]],[[8714,367,343]],[[343,367,368]],[[8714,8717,367]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2cef542-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8219,7972,1247]],[[7972,1295,1247]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d1b3a6-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17290,17291,17292]],[[17293,17294,17295]],[[8484,17293,17199]],[[17199,17293,17295]],[[17295,17294,17296]],[[17297,17298,17299]],[[8484,17300,17293]],[[8484,17297,17300]],[[17300,17297,17299]],[[8482,17297,8484]],[[8482,17291,17290]],[[17301,17297,8482]],[[17302,17301,17303]],[[17301,17290,17303]],[[17301,8482,17290]],[[17292,17291,17304]],[[17305,17292,17304]],[[17291,17306,17304]],[[8482,8826,17291]],[[8643,8642,17295]],[[17295,8642,17199]],[[8814,8643,17296]],[[17296,8643,17295]],[[8797,8814,17294]],[[17294,8814,17296]],[[8798,8797,17293]],[[17293,8797,17294]],[[8813,8798,17300]],[[17300,8798,17293]],[[8796,8813,17299]],[[17299,8813,17300]],[[8801,8796,17298]],[[17298,8796,17299]],[[8811,8801,17297]],[[17297,8801,17298]],[[8810,8811,17301]],[[17301,8811,17297]],[[8800,8810,17302]],[[17302,8810,17301]],[[8807,8800,17303]],[[17303,8800,17302]],[[8809,8807,17290]],[[17290,8807,17303]],[[8808,8809,17292]],[[17292,8809,17290]],[[8802,8808,17305]],[[17305,8808,17292]],[[8803,8802,17304]],[[17304,8802,17305]],[[16620,8803,17306]],[[17306,8803,17304]],[[8826,16620,17291]],[[17291,16620,17306]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d44bdf-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17307,17308,17309]],[[17308,17310,17309]],[[17308,17311,17310]],[[17311,7712,7713]],[[17311,9809,7712]],[[17311,17308,9809]],[[10620,9807,17307]],[[17307,9807,17308]],[[9152,9155,17310]],[[17310,9155,17309]],[[9153,9152,17311]],[[17311,9152,17310]],[[7713,9153,17311]],[[9807,9809,17308]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d5fa48-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a4049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17312,17313,17314]],[[17313,17315,17316]],[[17315,17317,17318]],[[17317,17319,17320]],[[17319,17321,17322]],[[17321,17323,17324]],[[17323,17325,17326]],[[17327,17328,17329]],[[17318,17317,17320]],[[17320,17319,17322]],[[17330,17331,17332]],[[17324,17322,17321]],[[17333,17332,17327]],[[17327,17334,17333]],[[17327,17329,17334]],[[17330,17335,17331]],[[17327,17336,17328]],[[17316,17315,17318]],[[17330,17332,17333]],[[17337,17336,17327]],[[17326,17325,17335]],[[17326,17324,17323]],[[17325,17331,17335]],[[17314,17313,17316]],[[17338,17312,17314]],[[17339,17340,17338]],[[17341,17342,17339]],[[17343,17344,17341]],[[17345,17346,17343]],[[17347,17348,17345]],[[17349,17350,17347]],[[17338,17340,17312]],[[17340,17339,17342]],[[17342,17341,17344]],[[17344,17343,17346]],[[17346,17345,17348]],[[17348,17347,17350]],[[17350,17349,17351]],[[17350,17351,17352]],[[17349,17353,17351]],[[17349,17354,17353]],[[16254,16209,17349]],[[17349,16209,17354]],[[16242,16254,17347]],[[17347,16254,17349]],[[16253,16242,17345]],[[17345,16242,17347]],[[16251,16253,17343]],[[17343,16253,17345]],[[16252,16251,17341]],[[17341,16251,17343]],[[16249,16252,17339]],[[17339,16252,17341]],[[16250,16249,17338]],[[17338,16249,17339]],[[16248,16250,17314]],[[17314,16250,17338]],[[16245,16248,17316]],[[17316,16248,17314]],[[16247,16245,17318]],[[17318,16245,17316]],[[16246,16247,17320]],[[17320,16247,17318]],[[16243,16246,17322]],[[17322,16246,17320]],[[16244,16243,17324]],[[17324,16243,17322]],[[16181,16244,17326]],[[17326,16244,17324]],[[16182,16181,17335]],[[17335,16181,17326]],[[16183,16182,17330]],[[17330,16182,17335]],[[16241,16183,17333]],[[17333,16183,17330]],[[16240,16241,17334]],[[17334,16241,17333]],[[16207,16240,17329]],[[17329,16240,17334]],[[16238,16207,17328]],[[17328,16207,17329]],[[17355,17356,17327]],[[17327,17356,17337]],[[17357,17355,17332]],[[17332,17355,17327]],[[17358,17357,17331]],[[17331,17357,17332]],[[17359,17358,17325]],[[17325,17358,17331]],[[17360,17359,17323]],[[17323,17359,17325]],[[17361,17360,17321]],[[17321,17360,17323]],[[17362,17361,17319]],[[17319,17361,17321]],[[17363,17362,17317]],[[17317,17362,17319]],[[17364,17363,17315]],[[17315,17363,17317]],[[17365,17364,17313]],[[17313,17364,17315]],[[17366,17365,17312]],[[17312,17365,17313]],[[17367,17366,17340]],[[17340,17366,17312]],[[17368,17367,17342]],[[17342,17367,17340]],[[17369,17368,17344]],[[17344,17368,17342]],[[17370,17369,17346]],[[17346,17369,17344]],[[17371,17370,17348]],[[17348,17370,17346]],[[17372,17371,17350]],[[17350,17371,17348]],[[16267,17372,16260]],[[16260,17372,17352]],[[17352,17372,17350]],[[16257,16260,17351]],[[17351,16260,17352]],[[16258,16257,17353]],[[17353,16257,17351]],[[16209,16258,17354]],[[17354,16258,17353]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d7ced0-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17373,7452,7453]],[[17373,7453,17374]],[[8978,7452,17373]],[[8846,8978,17374]],[[17374,8978,17373]],[[7453,8846,17374]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2d8b896-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17375,17376,8403]],[[17376,1095,8403]],[[8925,1100,17375]],[[17375,1100,17376]],[[8403,8925,17375]],[[1100,1095,17376]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2dc146d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.10994c13ed9746c2b01feaa5f372aece","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17377,17378,17379]],[[17380,17381,17382]],[[17383,17380,17384]],[[17384,17380,17382]],[[17385,17380,17383]],[[17385,17386,17380]],[[17387,17386,17385]],[[17379,17386,17377]],[[17377,17386,17388]],[[17388,17386,17387]],[[17389,17390,17391]],[[17392,17393,17394]],[[17395,17396,17397]],[[17398,17399,17400]],[[17401,17402,17403]],[[17403,17404,17405]],[[17406,17407,17408]],[[17407,17409,17410]],[[17411,17412,17413]],[[17413,17414,17415]],[[17415,17416,17400]],[[17417,17418,17419]],[[17420,17421,17422]],[[17423,17424,17422]],[[17425,17426,17427]],[[17428,17429,17430]],[[17431,17432,17433]],[[17432,17430,17433]],[[17432,17427,17434]],[[17430,17432,17428]],[[17435,17430,17429]],[[17435,17429,17436]],[[17437,17428,17432]],[[17438,17437,17432]],[[17439,17438,17432]],[[17434,17439,17432]],[[17440,17434,17427]],[[17426,17440,17427]],[[17422,17441,17427]],[[17442,17425,17427]],[[17443,17442,17427]],[[17444,17443,17427]],[[17445,17444,17427]],[[17446,17445,17427]],[[17447,17446,17427]],[[17448,17447,17427]],[[17441,17448,17427]],[[17449,17441,17422]],[[17450,17449,17422]],[[17424,17450,17422]],[[17451,17420,17422]],[[17452,17423,17422]],[[17421,17452,17422]],[[17453,17454,17455]],[[17456,17420,17451]],[[17455,17456,17451]],[[17453,17455,17451]],[[17457,17454,17453]],[[17419,17453,17451]],[[17419,17458,17453]],[[17410,17417,17419]],[[17419,17459,17458]],[[17419,17418,17459]],[[17410,17408,17407]],[[17460,17417,17410]],[[17409,17460,17410]],[[17400,17461,17408]],[[17462,17463,17411]],[[17405,17464,17462]],[[17406,17408,17461]],[[17461,17400,17399]],[[17465,17466,17401]],[[17400,17467,17398]],[[17400,17468,17467]],[[17400,17469,17468]],[[17400,17416,17469]],[[17415,17470,17416]],[[17415,17471,17470]],[[17472,17473,17474]],[[17415,17414,17471]],[[17465,17473,17475]],[[17414,17413,17412]],[[17463,17476,17411]],[[17412,17411,17476]],[[17464,17463,17462]],[[17477,17478,17474]],[[17479,17480,17481]],[[17405,17404,17464]],[[17477,17480,17482]],[[17483,17484,17403]],[[17404,17403,17484]],[[17402,17483,17403]],[[17485,17402,17401]],[[17486,17485,17401]],[[17487,17486,17401]],[[17466,17487,17401]],[[17488,17466,17465]],[[17475,17488,17465]],[[17489,17475,17473]],[[17490,17489,17473]],[[17472,17490,17473]],[[17491,17472,17474]],[[17478,17491,17474]],[[17492,17478,17477]],[[17493,17492,17477]],[[17494,17493,17477]],[[17482,17494,17477]],[[17495,17482,17480]],[[17496,17495,17480]],[[17497,17496,17480]],[[17479,17497,17480]],[[17498,17395,17394]],[[17499,17500,17481]],[[17499,17397,17396]],[[17479,17481,17501]],[[17501,17481,17500]],[[17500,17499,17502]],[[17502,17499,17503]],[[17503,17499,17504]],[[17505,17396,17395]],[[17504,17499,17396]],[[17506,17505,17395]],[[17507,17506,17395]],[[17508,17507,17395]],[[17509,17508,17395]],[[17498,17509,17395]],[[17510,17498,17394]],[[17393,17510,17394]],[[17391,17511,17394]],[[17512,17392,17394]],[[17513,17512,17394]],[[17514,17513,17394]],[[17515,17514,17394]],[[17516,17515,17394]],[[17517,17516,17394]],[[17511,17517,17394]],[[17518,17511,17391]],[[17519,17518,17391]],[[17390,17519,17391]],[[17520,17521,17391]],[[17522,17389,17391]],[[17521,17522,17391]],[[17523,17524,17520]],[[17520,17525,17521]],[[17520,17524,17525]],[[17523,17379,17526]],[[17524,17523,17526]],[[17379,17527,17526]],[[17379,17378,17527]],[[11906,14447,17377]],[[17377,14447,17378]],[[11908,11906,17388]],[[17388,11906,17377]],[[16173,11912,17387]],[[17387,11912,11908]],[[17387,11908,17388]],[[16151,16173,17385]],[[17385,16173,17387]],[[16159,16151,17383]],[[17383,16151,17385]],[[22,16159,17384]],[[17384,16159,17383]],[[17528,1,17382]],[[17382,1,22]],[[17382,22,17384]],[[2,17528,17381]],[[17381,17528,17382]],[[17529,2,17380]],[[17380,2,17381]],[[17530,17529,17386]],[[17386,17529,17380]],[[17531,17530,17379]],[[17379,17530,17386]],[[17532,17533,17520]],[[17520,17533,17523]],[[17534,17532,17391]],[[17391,17532,17520]],[[17535,17534,17394]],[[17394,17534,17391]],[[17536,17535,17395]],[[17395,17535,17394]],[[17537,17536,17397]],[[17397,17536,17395]],[[17538,17537,17499]],[[17499,17537,17397]],[[17539,17538,17481]],[[17481,17538,17499]],[[17540,17539,17480]],[[17480,17539,17481]],[[17541,17540,17477]],[[17477,17540,17480]],[[17542,17541,17474]],[[17474,17541,17477]],[[17543,17542,17473]],[[17473,17542,17474]],[[17544,17543,17465]],[[17465,17543,17473]],[[17545,17544,17401]],[[17401,17544,17465]],[[17546,17545,17403]],[[17403,17545,17401]],[[17547,17546,17405]],[[17405,17546,17403]],[[17548,17547,17462]],[[17462,17547,17405]],[[17549,17548,17411]],[[17411,17548,17462]],[[17550,17549,17413]],[[17413,17549,17411]],[[17551,17550,17415]],[[17415,17550,17413]],[[17552,17551,17400]],[[17400,17551,17415]],[[17553,17552,17408]],[[17408,17552,17400]],[[17554,17553,17410]],[[17410,17553,17408]],[[17555,17554,17419]],[[17419,17554,17410]],[[17556,17555,17451]],[[17451,17555,17419]],[[17557,17556,17422]],[[17422,17556,17451]],[[17558,17557,17427]],[[17427,17557,17422]],[[17559,17558,17432]],[[17432,17558,17427]],[[17560,17559,17431]],[[17431,17559,17432]],[[1046,17560,17433]],[[17433,17560,17431]],[[1042,1046,17430]],[[17430,1046,17433]],[[1043,1042,17435]],[[17435,1042,17430]],[[1044,1043,17436]],[[17436,1043,17435]],[[1048,1044,17429]],[[17429,1044,17436]],[[13077,1048,17428]],[[17428,1048,17429]],[[13037,13077,17437]],[[17437,13077,17428]],[[13136,13037,17438]],[[17438,13037,17437]],[[13139,13136,17439]],[[17439,13136,17438]],[[11772,13139,17434]],[[17434,13139,17439]],[[11793,11772,17440]],[[17440,11772,17434]],[[15442,11793,17426]],[[17426,11793,17440]],[[15440,15442,17425]],[[17425,15442,17426]],[[15535,15440,17442]],[[17442,15440,17425]],[[15548,15535,17443]],[[17443,15535,17442]],[[15549,15548,17444]],[[17444,15548,17443]],[[15805,15549,17445]],[[17445,15549,17444]],[[15824,15805,17446]],[[17446,15805,17445]],[[12454,15824,17447]],[[17447,15824,17446]],[[12461,12454,17448]],[[17448,12454,17447]],[[15795,12461,17441]],[[17441,12461,17448]],[[15785,15795,17449]],[[17449,15795,17441]],[[14305,15785,17450]],[[17450,15785,17449]],[[14300,14305,17424]],[[17424,14305,17450]],[[14439,14300,14421]],[[14421,14300,17423]],[[17423,14300,17424]],[[14433,14421,17452]],[[17452,14421,17423]],[[16650,14433,17421]],[[17421,14433,17452]],[[15903,16650,17420]],[[17420,16650,17421]],[[15904,15903,17456]],[[17456,15903,17420]],[[15905,15904,17455]],[[17455,15904,17456]],[[11988,15905,11983]],[[11983,15905,17454]],[[17454,15905,17455]],[[11967,11983,17457]],[[17457,11983,17454]],[[11963,11967,17453]],[[17453,11967,17457]],[[11973,11963,17458]],[[17458,11963,17453]],[[15852,11986,17459]],[[17459,11986,11973]],[[17459,11973,17458]],[[15235,15852,15219]],[[15219,15852,17418]],[[17418,15852,17459]],[[15228,15219,17417]],[[17417,15219,17418]],[[16995,15234,17460]],[[17460,15234,15228]],[[17460,15228,17417]],[[14274,16995,14265]],[[14265,16995,17409]],[[17409,16995,17460]],[[14269,14265,17407]],[[17407,14265,17409]],[[16637,14273,17406]],[[17406,14273,14269]],[[17406,14269,17407]],[[12018,16637,17461]],[[17461,16637,17406]],[[12011,12018,17399]],[[17399,12018,17461]],[[12012,12011,17398]],[[17398,12011,17399]],[[12009,12012,17467]],[[17467,12012,17398]],[[12010,12009,17468]],[[17468,12009,17467]],[[12003,12010,17469]],[[17469,12010,17468]],[[12004,12003,17416]],[[17416,12003,17469]],[[12001,12004,17470]],[[17470,12004,17416]],[[11999,12001,17471]],[[17471,12001,17470]],[[17067,12020,17414]],[[17414,12020,11999]],[[17414,11999,17471]],[[17066,17067,17412]],[[17412,17067,17414]],[[17065,17066,17476]],[[17476,17066,17412]],[[17063,17065,17463]],[[17463,17065,17476]],[[17064,17063,17464]],[[17464,17063,17463]],[[17062,17064,17404]],[[17404,17064,17464]],[[17049,17062,17484]],[[17484,17062,17404]],[[17050,17049,17483]],[[17483,17049,17484]],[[17061,17050,17402]],[[17402,17050,17483]],[[17060,17061,17485]],[[17485,17061,17402]],[[17059,17060,17486]],[[17486,17060,17485]],[[17058,17059,17487]],[[17487,17059,17486]],[[17057,17058,17466]],[[17466,17058,17487]],[[17068,17057,17488]],[[17488,17057,17466]],[[17055,17068,17475]],[[17475,17068,17488]],[[17056,17055,17489]],[[17489,17055,17475]],[[17054,17056,17490]],[[17490,17056,17489]],[[17053,17054,17472]],[[17472,17054,17490]],[[17052,17053,17491]],[[17491,17053,17472]],[[17051,17052,17478]],[[17478,17052,17491]],[[15333,17051,15324]],[[15324,17051,17492]],[[17492,17051,17478]],[[15331,15324,17493]],[[17493,15324,17492]],[[15320,15331,17494]],[[17494,15331,17493]],[[15317,15320,17482]],[[17482,15320,17494]],[[15315,15317,17495]],[[17495,15317,17482]],[[15311,15315,17496]],[[17496,15315,17495]],[[15312,15311,17497]],[[17497,15311,17496]],[[15327,15312,17479]],[[17479,15312,17497]],[[14126,15332,14123]],[[14123,15332,17501]],[[17501,15332,15327]],[[17501,15327,17479]],[[14122,14123,17500]],[[17500,14123,17501]],[[15459,14125,17502]],[[17502,14125,14122]],[[17502,14122,17500]],[[15458,15459,17503]],[[17503,15459,17502]],[[17561,15473,17504]],[[17504,15473,15458]],[[17504,15458,17503]],[[17562,17561,17396]],[[17396,17561,17504]],[[17563,17562,17505]],[[17505,17562,17396]],[[11879,17563,17506]],[[17506,17563,17505]],[[11887,11879,17507]],[[17507,11879,17506]],[[15711,11888,15706]],[[15706,11888,17508]],[[17508,11888,11887]],[[17508,11887,17507]],[[15708,15706,17509]],[[17509,15706,17508]],[[14549,15710,14528]],[[14528,15710,17498]],[[17498,15710,15708]],[[17498,15708,17509]],[[14543,14528,17510]],[[17510,14528,17498]],[[15251,14548,17393]],[[17393,14548,14543]],[[17393,14543,17510]],[[15256,15251,17392]],[[17392,15251,17393]],[[15301,15261,17512]],[[17512,15261,15256]],[[17512,15256,17392]],[[15296,15301,17513]],[[17513,15301,17512]],[[17564,15306,17514]],[[17514,15306,15296]],[[17514,15296,17513]],[[14245,17564,14242]],[[14242,17564,17515]],[[17515,17564,17514]],[[14234,14242,17516]],[[17516,14242,17515]],[[14748,14234,14740]],[[14740,14234,17517]],[[17517,14234,17516]],[[14747,14740,17511]],[[17511,14740,17517]],[[14734,14747,17518]],[[17518,14747,17511]],[[14735,14734,17519]],[[17519,14734,17518]],[[12532,14735,17390]],[[17390,14735,17519]],[[12538,12532,17389]],[[17389,12532,17390]],[[17565,12538,17522]],[[17522,12538,17389]],[[15742,17565,17521]],[[17521,17565,17522]],[[15728,15742,17525]],[[17525,15742,17521]],[[17566,15728,17524]],[[17524,15728,17525]],[[17567,17566,17526]],[[17526,17566,17524]],[[14460,17567,17527]],[[17527,17567,17526]],[[14447,14460,17378]],[[17378,14460,17527]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2de5e68-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0885149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17568,7729,17307]],[[17568,17307,366]],[[366,17309,364]],[[366,17307,17309]],[[7729,7730,17307]],[[8719,7729,17568]],[[366,8719,17568]],[[9155,364,17309]],[[7730,10620,17307]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2defaf4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1218,8554,1212]],[[1218,1212,1211]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2dfe4b4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[13242,13275,13252]],[[13247,13276,13275]],[[17569,13277,13276]],[[17570,10244,13270]],[[13273,17571,13278]],[[13286,13285,10225]],[[10427,10426,13239]],[[10426,10431,13290]],[[10431,10433,13291]],[[10433,10432,13236]],[[10432,10434,13237]],[[10434,10429,13292]],[[10429,10513,13293]],[[10513,10438,13234]],[[10438,10437,13235]],[[10437,10436,13294]],[[10436,10440,13295]],[[10440,10439,13232]],[[10439,10444,13233]],[[10444,10443,13296]],[[10443,10446,13297]],[[10446,10445,13230]],[[10445,10451,13231]],[[10451,10453,13298]],[[10453,10456,13299]],[[10456,10449,13228]],[[10449,10448,13229]],[[10448,10459,13300]],[[10459,10458,13301]],[[10458,10462,13301]],[[10462,10463,13226]],[[10463,10529,13227]],[[10529,10466,13302]],[[10466,10469,13303]],[[10469,10472,13224]],[[10472,10471,13225]],[[10471,10475,13304]],[[10475,10474,13305]],[[10474,10478,13306]],[[10478,10481,13307]],[[10481,10480,13308]],[[10480,10484,13222]],[[10484,10483,13223]],[[10483,10487,13309]],[[10487,10486,13310]],[[10486,10518,13311]],[[10518,10493,13312]],[[10493,10492,13313]],[[10492,10523,13314]],[[10523,10497,13315]],[[10497,10498,13316]],[[10498,10499,13317]],[[10499,10524,13318]],[[10524,10525,13319]],[[10525,10528,13320]],[[10528,10564,13321]],[[10564,10504,13322]],[[10504,10516,13323]],[[10516,10375,13324]],[[10375,10505,13325]],[[10505,10506,13259]],[[10506,10508,13269]],[[10508,10510,13267]],[[10510,10362,13266]],[[10362,10378,13265]],[[10378,10383,13264]],[[10383,10386,13241]],[[10386,10393,13263]],[[10393,10395,13262]],[[10395,10397,13261]],[[10397,10396,13260]],[[10396,10530,13274]],[[10530,10400,13326]],[[10400,10403,13258]],[[10403,10381,13257]],[[10381,10380,13256]],[[10380,10535,13253]],[[13258,10403,13257]],[[10535,10408,13255]],[[10408,10143,13254]],[[17572,13272,13277]],[[10143,10142,13244]],[[10142,10247,17573]],[[10247,10246,17574]],[[10246,10321,17575]],[[17573,10247,17576]],[[10244,10241,13271]],[[10321,10203,10245]],[[17574,10246,17577]],[[10203,10148,10418]],[[17578,10246,17575]],[[17575,10321,17579]],[[10240,10239,13280]],[[17579,10321,10245]],[[10240,13280,13279]],[[10245,10203,10412]],[[10412,10203,10413]],[[10413,10203,10419]],[[10226,10225,13285]],[[10419,10203,10511]],[[10231,13284,13283]],[[10511,10203,10418]],[[10148,10415,10417]],[[13286,10221,13287]],[[10418,10148,10417]],[[10514,10427,13238]],[[17577,10246,17578]],[[17576,10247,17574]],[[13244,10142,17573]],[[13254,10143,13244]],[[13255,10408,13254]],[[13253,10535,13255]],[[13256,10380,13253]],[[13257,10381,13256]],[[13326,10400,13258]],[[13274,10530,13326]],[[13260,10396,13274]],[[13261,10397,13260]],[[13262,10395,13261]],[[13263,10393,13262]],[[13241,10386,13263]],[[13264,10383,13241]],[[13265,10378,13264]],[[13266,10362,13265]],[[13267,10510,13266]],[[13268,10508,13267]],[[13269,10508,13268]],[[13259,10506,13269]],[[13325,10505,13259]],[[13324,10375,13325]],[[13323,10516,13324]],[[13322,10504,13323]],[[13321,10564,13322]],[[13320,10528,13321]],[[13319,10525,13320]],[[13318,10524,13319]],[[13317,10499,13318]],[[13316,10498,13317]],[[13315,10497,13316]],[[13314,10523,13315]],[[13313,10492,13314]],[[13312,10493,13313]],[[13311,10518,13312]],[[13310,10486,13311]],[[13309,10487,13310]],[[13223,10483,13309]],[[13222,10484,13223]],[[13308,10480,13222]],[[13307,10481,13308]],[[13306,10478,13307]],[[13305,10474,13306]],[[13304,10475,13305]],[[13225,10471,13304]],[[13224,10472,13225]],[[13303,10469,13224]],[[13302,10466,13303]],[[13227,10529,13302]],[[13226,10463,13227]],[[13301,10462,13226]],[[13300,10459,13301]],[[13229,10448,13300]],[[13228,10449,13229]],[[13299,10456,13228]],[[13298,10453,13299]],[[13231,10451,13298]],[[13230,10445,13231]],[[13297,10446,13230]],[[13296,10443,13297]],[[13233,10444,13296]],[[13232,10439,13233]],[[13295,10440,13232]],[[13294,10436,13295]],[[13235,10437,13294]],[[13234,10438,13235]],[[13293,10513,13234]],[[13292,10429,13293]],[[13237,10434,13292]],[[13236,10432,13237]],[[13291,10433,13236]],[[13290,10431,13291]],[[13239,10426,13290]],[[13238,10427,13239]],[[13289,10514,13238]],[[13288,10425,13289]],[[13287,10220,13288]],[[10425,10514,13289]],[[10220,10425,13288]],[[13287,10221,10220]],[[13285,13284,10226]],[[10221,13286,10225]],[[13282,10237,13283]],[[13284,10231,10226]],[[13283,10237,10231]],[[13282,13281,10234]],[[13282,10234,10237]],[[13281,13280,10239]],[[10234,13281,10239]],[[13271,10241,13279]],[[13279,10241,10240]],[[13271,13270,10244]],[[13278,17570,13270]],[[17571,17570,13278]],[[13272,17580,13273]],[[17571,13273,17581]],[[17581,13273,17580]],[[17580,13272,17572]],[[17572,13277,17582]],[[17582,13277,17569]],[[17569,13276,13249]],[[13249,13276,13248]],[[13248,13276,13247]],[[13247,13275,13246]],[[13246,13275,13245]],[[13245,13275,13242]],[[13242,13252,13243]],[[13250,13244,17573]],[[16138,13250,17576]],[[17576,13250,17573]],[[16140,16138,17574]],[[17574,16138,17576]],[[16142,16140,17577]],[[17577,16140,17574]],[[16144,16142,17578]],[[17578,16142,17577]],[[16147,16144,17575]],[[17575,16144,17578]],[[16148,16147,17579]],[[17579,16147,17575]],[[10245,16148,17579]],[[16146,10244,17570]],[[16145,16146,17571]],[[17571,16146,17570]],[[16143,16145,17581]],[[17581,16145,17571]],[[16141,16143,17580]],[[17580,16143,17581]],[[16139,16141,17572]],[[17572,16141,17580]],[[16137,16139,17582]],[[17582,16139,17572]],[[13251,16137,17569]],[[17569,16137,17582]],[[13249,13251,17569]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e00bdc-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17583,9132,17584]],[[17585,8148,8149]],[[17586,17587,17588]],[[9132,17583,9133]],[[9133,17589,9143]],[[17587,17590,17591]],[[17592,17593,17594]],[[17593,17595,17596]],[[17595,17597,17596]],[[17598,17599,17600]],[[17599,8137,8139]],[[8137,8138,8139]],[[9106,17601,9105]],[[9105,17602,9104]],[[17599,8139,17600]],[[17588,17587,17591]],[[17591,17590,17603]],[[17603,17592,17594]],[[17594,17593,17596]],[[17596,17597,17604]],[[8139,17605,17600]],[[8139,8140,17605]],[[17604,17598,17600]],[[9104,17586,17588]],[[9108,17606,9106]],[[9107,17607,9108]],[[17597,17598,17604]],[[9109,17608,9107]],[[9111,17609,9109]],[[9112,17610,9111]],[[17590,17592,17603]],[[9113,17611,9112]],[[9143,17612,9113]],[[17602,17586,9104]],[[17601,17602,9105]],[[17606,17601,9106]],[[17607,17606,9108]],[[17608,17607,9107]],[[17609,17608,9109]],[[17610,17609,9111]],[[17611,17610,9112]],[[17612,17611,9113]],[[17589,17612,9143]],[[17613,17583,17584]],[[17589,9133,17583]],[[17585,17613,17584]],[[9080,17585,17584]],[[9080,8148,17585]],[[17585,8149,8150]],[[9084,9080,17584]],[[9132,9084,17584]],[[9102,9104,17588]],[[9101,9102,17591]],[[17591,9102,17588]],[[9100,9101,17603]],[[17603,9101,17591]],[[9099,9100,17594]],[[17594,9100,17603]],[[9098,9099,17596]],[[17596,9099,17594]],[[9097,9098,17604]],[[17604,9098,17596]],[[9096,9097,17600]],[[17600,9097,17604]],[[9095,9096,17605]],[[17605,9096,17600]],[[8140,9095,17605]],[[16860,8137,17599]],[[16866,16860,17598]],[[17598,16860,17599]],[[16865,16866,17597]],[[17597,16866,17598]],[[16864,16865,17595]],[[17595,16865,17597]],[[16863,16864,17593]],[[17593,16864,17595]],[[16862,16863,17592]],[[17592,16863,17593]],[[11379,16862,17590]],[[17590,16862,17592]],[[16395,11379,17587]],[[17587,11379,17590]],[[16396,16395,17586]],[[17586,16395,17587]],[[16393,16396,17602]],[[17602,16396,17586]],[[16391,16393,17601]],[[17601,16393,17602]],[[16389,16391,17606]],[[17606,16391,17601]],[[16387,16389,17607]],[[17607,16389,17606]],[[16385,16387,17608]],[[17608,16387,17607]],[[16383,16385,17609]],[[17609,16385,17608]],[[16381,16383,17610]],[[17610,16383,17609]],[[16379,16381,17611]],[[17611,16381,17610]],[[16378,16379,17612]],[[17612,16379,17611]],[[16377,16378,17589]],[[17589,16378,17612]],[[16376,16377,17583]],[[17583,16377,17589]],[[16371,16376,17613]],[[17613,16376,17583]],[[16373,16371,17585]],[[17585,16371,17613]],[[8150,16373,17585]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e1e06f-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8600,1892,8598]],[[1892,1891,8598]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e4514a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f08dcd49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1146,8412,1150]],[[1146,1150,1147]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e4c69a-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[171,172,17614]],[[17615,171,17614]],[[17616,17615,17614]],[[17616,17617,17615]],[[17616,1845,7915]],[[17617,17616,7915]],[[1838,1845,17616]],[[1842,1838,17614]],[[17614,1838,17616]],[[172,1842,17614]],[[9950,171,17615]],[[9963,9950,17617]],[[17617,9950,17615]],[[7915,9963,17617]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e5d871-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[10648,10647,10650]],[[10647,10651,10650]],[[10651,17618,652]],[[10651,10647,17618]],[[652,17618,651]],[[17618,10647,17619]],[[17618,17619,17620]],[[16970,651,17618]],[[16968,16970,17620]],[[17620,16970,17618]],[[16969,16968,17619]],[[17619,16968,17620]],[[10647,16969,17619]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e674f4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949749cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17621,8534,17622]],[[8534,1121,17622]],[[1123,8534,17621]],[[1120,1123,17622]],[[17622,1123,17621]],[[1121,1120,17622]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e7acf3-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17623,1563,16960]],[[1563,17623,17624]],[[17624,17623,17625]],[[1563,1683,16960]],[[16960,17626,17627]],[[16960,17628,17626]],[[16960,1683,17628]],[[16957,17628,1683]],[[16955,16957,8271]],[[16957,8270,8271]],[[16957,1683,8270]],[[16942,16962,17625]],[[17625,16962,17624]],[[16961,16942,17623]],[[17623,16942,17625]],[[16960,16961,17623]],[[16943,16960,17627]],[[16956,16943,17626]],[[17626,16943,17627]],[[16958,16956,17628]],[[17628,16956,17626]],[[16957,16958,17628]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2e8e5f6-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1203,8562,1197]],[[8562,1198,1197]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea451d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8623,124,8622]],[[8633,8579,8622]],[[17629,8633,8622]],[[124,17630,8622]],[[8622,17630,17629]],[[124,125,17630]],[[16365,8633,17629]],[[16366,16365,17630]],[[17630,16365,17629]],[[125,16366,17630]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea9355-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0875c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[2813,11615,2815]],[[2813,2807,17631]],[[11615,2813,17631]],[[17631,2807,17632]],[[17632,2807,17633]],[[16666,11620,17631]],[[17631,11620,11615]],[[16176,16666,17632]],[[17632,16666,17631]],[[16175,16176,17633]],[[17633,16176,17632]],[[2807,16175,17633]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ea9356-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17634,17379,17635]],[[17379,17523,17635]],[[17636,17531,17634]],[[17634,17531,17379]],[[17533,17637,17523]],[[17523,17637,17635]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ed2b76-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8792,8417,8705]],[[8792,14342,1942]],[[2253,346,8711]],[[8703,8705,8417]],[[8417,8792,1942]],[[1942,14342,1936]],[[2253,345,346]],[[1936,8711,346]],[[1936,14342,8711]],[[8710,8711,14342]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ed529d-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17638,17639,15922]],[[17638,15922,17021]],[[17042,17021,15922]],[[17044,17042,15923]],[[17640,17641,15928]],[[17642,17640,15929]],[[17643,17642,15930]],[[17644,17643,15883]],[[17645,17644,15882]],[[17646,17645,15931]],[[17647,17646,15932]],[[17648,17647,15933]],[[17649,17648,15934]],[[17650,17649,15935]],[[17651,17650,15936]],[[17652,17651,15937]],[[17653,17652,15938]],[[17654,17653,15939]],[[17655,17656,15941]],[[17657,17655,15942]],[[17658,7171,7172]],[[17658,17657,15944]],[[17658,15945,7171]],[[17656,17654,15940]],[[17658,15944,15945]],[[17641,17659,15927]],[[17657,15942,15944]],[[17659,17660,15926]],[[17655,15941,15942]],[[17660,17044,15925]],[[17656,15940,15941]],[[17654,15939,15940]],[[17653,15938,15939]],[[17652,15937,15938]],[[17651,15936,15937]],[[17650,15935,15936]],[[17649,15934,15935]],[[17648,15933,15934]],[[17647,15932,15933]],[[17646,15931,15932]],[[17645,15882,15931]],[[17644,15883,15882]],[[17643,15930,15883]],[[17642,15929,15930]],[[17640,15928,15929]],[[17641,15927,15928]],[[17659,15926,15927]],[[17660,15925,15926]],[[17044,15923,15925]],[[17042,15922,15923]],[[17020,15916,17638]],[[17638,15916,17639]],[[17021,17020,17638]],[[17043,17044,17660]],[[17023,17043,17659]],[[17659,17043,17660]],[[17041,17023,17641]],[[17641,17023,17659]],[[17040,17041,17640]],[[17640,17041,17641]],[[17038,17040,17642]],[[17642,17040,17640]],[[17039,17038,17643]],[[17643,17038,17642]],[[17034,17039,17644]],[[17644,17039,17643]],[[17037,17034,17645]],[[17645,17034,17644]],[[17035,17037,17646]],[[17646,17037,17645]],[[17036,17035,17647]],[[17647,17035,17646]],[[17032,17036,17648]],[[17648,17036,17647]],[[17033,17032,17649]],[[17649,17032,17648]],[[17030,17033,17650]],[[17650,17033,17649]],[[17031,17030,17651]],[[17651,17030,17650]],[[17027,17031,17652]],[[17652,17031,17651]],[[17029,17027,17653]],[[17653,17027,17652]],[[17028,17029,17654]],[[17654,17029,17653]],[[17025,17028,17656]],[[17656,17028,17654]],[[17026,17025,17655]],[[17655,17025,17656]],[[17024,17026,17657]],[[17657,17026,17655]],[[17022,17024,17658]],[[17658,17024,17657]],[[7172,17022,17658]],[[15916,15922,17639]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2ee8aa2-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[8572,8639,8152]],[[8572,8152,8153]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2eed8e4-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0949a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1500,1563,8396]],[[1563,17624,8396]],[[16962,8396,17624]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f011e8-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[166,976,943]],[[166,943,165]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f0601b-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0948849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17661,7809,17662]],[[17661,17662,17663]],[[17662,7809,1787]],[[17662,1787,17664]],[[7809,7810,1787]],[[1796,7809,17661]],[[1792,1796,17663]],[[17663,1796,17661]],[[1793,1792,17662]],[[17662,1792,17663]],[[1786,1793,17664]],[[17664,1793,17662]],[[1787,1786,17664]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f149e9-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"muur","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0884c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[1162,1173,17665]],[[17665,17666,17667]],[[17668,17669,1263]],[[17669,7279,1263]],[[17669,17667,17666]],[[17669,17666,7279]],[[17667,17670,17665]],[[1162,17665,17670]],[[1174,1162,17670]],[[1155,1174,17667]],[[17667,1174,17670]],[[1156,1155,17669]],[[17669,1155,17667]],[[1169,1156,17668]],[[17668,1156,17669]],[[1263,1169,17668]],[[16827,7279,17666]],[[16828,16827,17665]],[[17665,16827,17666]],[[1173,16828,17665]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"ba2f1bf47-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f097f249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17671,17672,17673]],[[17674,17675,17676]],[[17672,17671,17677]],[[17678,17677,17671]],[[17679,17680,17681]],[[17682,17679,17683]],[[17684,17682,17685]],[[17686,17684,17687]],[[17688,17689,17690]],[[17691,17692,17693]],[[17694,17695,17696]],[[17694,17691,17697]],[[17694,17698,17695]],[[17695,17698,17699]],[[17694,17697,17698]],[[17700,17691,17701]],[[17691,17700,17697]],[[17692,17702,17703]],[[17702,17704,17705]],[[17701,17691,17693]],[[17692,17706,17693]],[[17704,17707,17708]],[[17692,17709,17706]],[[17707,17710,17708]],[[17692,17703,17709]],[[17702,17711,17703]],[[17710,17688,17690]],[[17702,13184,17711]],[[17689,17712,17713]],[[17702,17705,13184]],[[17704,17708,17705]],[[17712,17686,17713]],[[17708,17710,17690]],[[17689,17713,17690]],[[17686,17687,17713]],[[17684,17685,17687]],[[17680,17714,17715]],[[17685,17682,17716]],[[17716,17682,17683]],[[17679,17717,17683]],[[17718,17719,17720]],[[17679,17681,17717]],[[17680,17721,17681]],[[17680,17722,17721]],[[17680,17723,17722]],[[17680,17715,17723]],[[17714,17724,17715]],[[17714,17725,17724]],[[17714,17726,17725]],[[17714,17727,17726]],[[17719,17728,17729]],[[17718,17730,17727]],[[17718,17731,17730]],[[17714,17718,17727]],[[17714,17719,17718]],[[17718,17720,17732]],[[17733,17728,17678]],[[17719,17734,17720]],[[17719,17729,17734]],[[17728,17733,17729]],[[17729,17733,17735]],[[17728,17677,17678]],[[17672,17736,17673]],[[17737,17738,17736]],[[17737,17674,17739]],[[17736,17740,17673]],[[17740,17736,17741]],[[17736,17742,17741]],[[17742,17736,17738]],[[17737,17743,17738]],[[17743,17737,17744]],[[17744,17737,17745]],[[17745,17737,17739]],[[17739,17674,17746]],[[17746,17674,17747]],[[17747,17674,17676]],[[17676,17675,17748]],[[17748,17675,17749]],[[17750,17751,17752]],[[17752,17751,17753]],[[17753,17751,17754]],[[17754,17755,17756]],[[17757,17758,17759]],[[17759,17758,17760]],[[17675,17750,17749]],[[17761,17760,17758]],[[17762,17763,17764]],[[17762,17765,17766]],[[17763,17761,17758]],[[17766,17765,17767]],[[17762,17764,17765]],[[17763,17758,17764]],[[17757,17768,17758]],[[17757,17755,17768]],[[17757,17756,17755]],[[17749,17750,17752]],[[17751,17755,17754]],[[17769,17770,17674]],[[17674,17770,17675]],[[17771,17769,17737]],[[17737,17769,17674]],[[17772,17771,17736]],[[17736,17771,17737]],[[17773,17772,17672]],[[17672,17772,17736]],[[17774,17773,17677]],[[17677,17773,17672]],[[17775,17774,17728]],[[17728,17774,17677]],[[17776,17775,17719]],[[17719,17775,17728]],[[17777,17776,17714]],[[17714,17776,17719]],[[17778,17777,17680]],[[17680,17777,17714]],[[17779,17778,17679]],[[17679,17778,17680]],[[17780,17779,17682]],[[17682,17779,17679]],[[17781,17780,17684]],[[17684,17780,17682]],[[17782,17781,17686]],[[17686,17781,17684]],[[17783,17782,17712]],[[17712,17782,17686]],[[17784,17783,17689]],[[17689,17783,17712]],[[17785,17784,17688]],[[17688,17784,17689]],[[17786,17785,17710]],[[17710,17785,17688]],[[17787,17786,17707]],[[17707,17786,17710]],[[17788,17787,17704]],[[17704,17787,17707]],[[17789,17788,17702]],[[17702,17788,17704]],[[17790,17789,17692]],[[17692,17789,17702]],[[17791,17790,17691]],[[17691,17790,17692]],[[17792,17791,17694]],[[17694,17791,17691]],[[17793,17792,17696]],[[17696,17792,17694]],[[15839,17700,17701]],[[15830,15839,17693]],[[17693,15839,17701]],[[16301,15830,17706]],[[17706,15830,17693]],[[15209,16301,17709]],[[17709,16301,17706]],[[15210,15209,17703]],[[17703,15209,17709]],[[13183,15210,17711]],[[17711,15210,17703]],[[13184,13183,17711]],[[13186,13184,17705]],[[14406,13186,17708]],[[17708,13186,17705]],[[14407,14406,17690]],[[17690,14406,17708]],[[16296,14407,17713]],[[17713,14407,17690]],[[13220,16296,17687]],[[17687,16296,17713]],[[13210,13220,17685]],[[17685,13220,17687]],[[13204,13210,17716]],[[17716,13210,17685]],[[13205,13204,17683]],[[17683,13204,17716]],[[15713,13205,17717]],[[17717,13205,17683]],[[15714,15713,17681]],[[17681,15713,17717]],[[14039,15714,17721]],[[17721,15714,17681]],[[14040,14039,17722]],[[17722,14039,17721]],[[16304,14040,17723]],[[17723,14040,17722]],[[11760,16304,17715]],[[17715,16304,17723]],[[11761,11760,17724]],[[17724,11760,17715]],[[13189,11761,17725]],[[17725,11761,17724]],[[13190,13189,17726]],[[17726,13189,17725]],[[15760,13190,17727]],[[17727,13190,17726]],[[15761,15760,17730]],[[17730,15760,17727]],[[9066,15761,17731]],[[17731,15761,17730]],[[9077,9066,17718]],[[17718,9066,17731]],[[9075,9077,17732]],[[17732,9077,17718]],[[17794,9075,17720]],[[17720,9075,17732]],[[15131,17794,17734]],[[17734,17794,17720]],[[15132,15131,17729]],[[17729,15131,17734]],[[17795,15203,17735]],[[17735,15203,15132]],[[17735,15132,17729]],[[17796,17795,17733]],[[17733,17795,17735]],[[13707,17796,17678]],[[17678,17796,17733]],[[13708,13707,17671]],[[17671,13707,17678]],[[15505,13759,15495]],[[15495,13759,17673]],[[17673,13759,13708]],[[17673,13708,17671]],[[15496,15495,17740]],[[17740,15495,17673]],[[15379,15496,15350]],[[15350,15496,17741]],[[17741,15496,17740]],[[15338,15350,17742]],[[17742,15350,17741]],[[15684,15338,15629]],[[15629,15338,17738]],[[17738,15338,17742]],[[15630,15629,17743]],[[17743,15629,17738]],[[15381,15630,17744]],[[17744,15630,17743]],[[15382,15381,17745]],[[17745,15381,17744]],[[13997,15382,17739]],[[17739,15382,17745]],[[13998,13997,17746]],[[17746,13997,17739]],[[12829,13998,12798]],[[12798,13998,17747]],[[17747,13998,17746]],[[12799,12798,17676]],[[17676,12798,17747]],[[14801,12799,14750]],[[14750,12799,17748]],[[17748,12799,17676]],[[14751,14750,17749]],[[17749,14750,17748]],[[16263,14751,17752]],[[17752,14751,17749]],[[12117,16263,12069]],[[12069,16263,17753]],[[17753,16263,17752]],[[12070,12069,17754]],[[17754,12069,17753]],[[16204,12118,17756]],[[17756,12118,12070]],[[17756,12070,17754]],[[16265,16204,17757]],[[17757,16204,17756]],[[16264,16265,17759]],[[17759,16265,17757]],[[16202,16264,17760]],[[17760,16264,17759]],[[16206,16202,17761]],[[17761,16202,17760]],[[16205,16206,17763]],[[17763,16206,17761]],[[16203,16205,17762]],[[17762,16205,17763]],[[16261,16203,17766]],[[17766,16203,17762]],[[16255,16261,17767]],[[17767,16261,17766]],[[16256,16255,17765]],[[17765,16255,17767]],[[16262,16256,17764]],[[17764,16256,17765]],[[17797,16268,17758]],[[17758,16268,16262]],[[17758,16262,17764]],[[17798,17797,17768]],[[17768,17797,17758]],[[17799,17798,17755]],[[17755,17798,17768]],[[17800,17799,17751]],[[17751,17799,17755]],[[17801,17800,17750]],[[17750,17800,17751]],[[17770,17801,17675]],[[17675,17801,17750]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"baeb0d610-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[12531,14731,12532]],[[14731,14735,12532]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb14b79-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16997,16994,16998]],[[16994,16996,16998]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb4316e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17802,11901,14448]],[[11906,17803,17804]],[[11906,11901,17805]],[[17802,17805,11901]],[[17803,11906,17805]],[[14447,17802,14448]],[[14447,17804,17802]],[[14447,11906,17804]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb71848-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee49149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[1033,16671,1061]],[[1059,1060,1061]],[[16671,17169,1061]],[[1061,1058,1059]],[[1061,1057,1058]],[[1061,1062,1057]],[[1061,1038,1062]],[[1062,1038,1056]],[[1056,1038,1030]],[[1030,1037,1031]],[[1030,1038,1037]],[[1061,17169,1038]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeb96194-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17806,17807,17808]],[[17808,16775,16777]],[[17806,17808,16777]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebac1f9-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4af49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8221,15884,8220]],[[8221,426,15884]],[[7277,15900,15899]],[[7247,7248,15952]],[[15884,426,15897]],[[400,15897,426]],[[403,15898,15897]],[[403,15896,15898]],[[403,15895,15896]],[[15893,15894,403]],[[15892,15893,6694]],[[15891,15890,6694]],[[15889,15891,6694]],[[15888,15889,6694]],[[15887,15888,6694]],[[15886,15887,6694]],[[15885,15886,6694]],[[7247,15952,15900]],[[7249,15951,15952]],[[7249,15950,15951]],[[7249,15949,15950]],[[1004,15948,15949]],[[1004,15946,15948]],[[1004,1003,15946]],[[1003,15924,15947]],[[7249,15952,7248]],[[1003,15947,15946]],[[7194,1003,997]],[[7194,15924,1003]],[[7249,1004,15949]],[[15890,15892,6694]],[[15899,6694,7277]],[[1005,1004,7249]],[[7247,15900,10012]],[[15900,7278,10012]],[[15885,6694,15899]],[[7278,15900,7277]],[[15894,15895,403]],[[400,403,15897]],[[6694,15893,403]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebae90f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17809,16297,17810]],[[15956,15954,17811]],[[15964,15831,16298]],[[15954,17812,17811]],[[17811,15839,15842]],[[17811,17700,15839]],[[17811,17697,17700]],[[15831,15967,15842]],[[15842,15956,17811]],[[17813,17814,15961]],[[15970,15956,15842]],[[15960,15970,15842]],[[15969,15960,15842]],[[16303,9071,9070]],[[15842,15968,15969]],[[15968,15842,15967]],[[15967,15831,15966]],[[15966,15831,15965]],[[15965,15831,15964]],[[15964,16298,15963]],[[15963,16298,15962]],[[15962,16298,15961]],[[15961,16298,17815]],[[15961,17814,15958]],[[17815,17813,15961]],[[17816,17815,16298]],[[17817,17816,16298]],[[17818,17817,16298]],[[16297,17819,16298]],[[16298,17820,17818]],[[16298,17821,17820]],[[16298,17822,17821]],[[16298,17823,17822]],[[16298,17824,17823]],[[17819,16297,17809]],[[16298,17825,17824]],[[16297,16295,17810]],[[17825,16298,17819]],[[17826,17827,17828]],[[16295,17829,17810]],[[17829,16295,17828]],[[17828,16295,17826]],[[16294,17830,16295]],[[16295,17830,17826]],[[16294,17831,17830]],[[16294,17832,17831]],[[17831,17833,17834]],[[17831,17835,17833]],[[17831,17836,17835]],[[17831,17837,17836]],[[17831,17838,17837]],[[17831,17839,17838]],[[17831,17840,17839]],[[17831,17841,17840]],[[17831,17842,17841]],[[17831,17832,17842]],[[16294,17843,17832]],[[16294,17844,17843]],[[16294,17845,17844]],[[16294,17846,17845]],[[16294,17847,17846]],[[17848,16294,17849]],[[16294,17850,17847]],[[16294,16303,17849]],[[17850,16294,17851]],[[17851,16294,17852]],[[17852,16294,17848]],[[16303,17853,17849]],[[17854,16188,17855]],[[17854,16185,16188]],[[17854,9069,16185]],[[17854,17853,9070]],[[17854,9070,9069]],[[17853,16303,9070]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebae918-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefaa49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16944,16893,16941]],[[16893,16959,16941]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebc6f96-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca4b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16763,17856,16764]],[[17856,17857,16764]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baebf073e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17858,17859,17860]],[[17858,17860,17861]],[[17861,17860,17862]],[[17859,17863,17860]],[[17860,17864,17865]],[[17860,17866,17864]],[[17860,17867,17866]],[[17860,17868,17867]],[[17860,17869,17868]],[[17860,17863,17869]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec01841-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16060,16023,16059]],[[16060,16059,16058]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec0184a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef1df549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15338,15684,15650]],[[16178,15479,15339]],[[15479,15496,15379]],[[15360,15479,15379]],[[15339,15479,15360]],[[16186,16185,15150]],[[13759,15505,15480]],[[13746,13759,15480]],[[15479,16178,15480]],[[16185,9069,9076]],[[17795,13707,13725]],[[17795,17796,13707]],[[16186,15203,17795]],[[13725,16186,17795]],[[13746,16186,13725]],[[15203,16186,15154]],[[16185,17794,15150]],[[15150,17794,15131]],[[9076,9075,17794]],[[12796,14801,14764]],[[15154,16186,15150]],[[17794,16185,9076]],[[15480,16186,13746]],[[16178,16186,15480]],[[15650,16178,15339]],[[14764,14772,16179]],[[16178,12806,16179]],[[12796,12799,14801]],[[16179,12796,14764]],[[16179,12806,12796]],[[14014,13998,12806]],[[13998,12829,12806]],[[16178,14014,12806]],[[16178,14008,14014]],[[16638,16641,15382]],[[16640,15388,15382]],[[16178,15388,14008]],[[16178,15386,15388]],[[15663,15630,15386]],[[16178,15663,15386]],[[15386,15630,15381]],[[15650,15663,16178]],[[15338,15650,15339]],[[16856,16858,16639]],[[14008,15388,16639]],[[16641,16640,15382]],[[16639,15388,16640]],[[13997,16638,15382]],[[16856,16638,13997]],[[14008,16859,13997]],[[16856,16639,16638]],[[13997,16859,16857]],[[14008,16639,16858]],[[16859,14008,16858]],[[16857,16856,13997]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec2b0ec-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14245,14240,17564]],[[14240,15291,17564]],[[17564,15291,15306]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec2ff3f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16173,16172,11900]],[[16173,11900,11912]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec32664-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1f949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[23,24,16170]],[[23,16170,21]],[[4,6,23]],[[23,6,24]],[[3,4,21]],[[21,4,23]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec76b97-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16275,35,16273]],[[35,36,16273]],[[8,18,35]],[[35,18,36]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec8f206-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17804,17803,17802]],[[17803,17805,17802]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baec91931-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16289,16291,16293]],[[16289,16293,16290]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecc264e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8049cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[34,35,33]],[[17870,31,33]],[[35,16275,33]],[[33,16275,17870]],[[16,8,34]],[[34,8,35]],[[17,16,33]],[[33,16,34]],[[9,17,31]],[[31,17,33]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecdd400-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16989,16979,17871]],[[16989,17872,16082]],[[16989,17873,17872]],[[17873,16989,17874]],[[17874,16989,17875]],[[17875,16989,17876]],[[17876,16989,17871]],[[17871,16979,17877]],[[17877,16979,17878]],[[17878,16979,17879]],[[17879,16979,17880]],[[17880,16979,17881]],[[17881,16979,17882]],[[17882,16979,17883]],[[17883,16979,17884]],[[17884,16979,17807]],[[17885,17884,17807]],[[17886,17885,17807]],[[17887,17886,17807]],[[17887,17807,17806]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baece497b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0b4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[8699,8698,8697]],[[8698,8692,8694]],[[8698,8699,8692]],[[8694,8692,8691]],[[8692,8699,8689]],[[8692,8689,8690]],[[8699,6950,16648]],[[8689,16649,6860]],[[8689,8699,16649]],[[16649,8699,16648]],[[16648,6950,6951]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baecfa8c8-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17888,17889,17890]],[[17888,17890,17891]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed01e43-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16989,16953,16954]],[[16989,16952,16953]],[[16952,16989,16950]],[[16950,16989,16949]],[[16949,16989,16948]],[[16948,16989,16947]],[[16947,16989,16092]],[[16947,16092,16945]],[[16989,16090,16092]],[[16989,16089,16090]],[[16989,16088,16089]],[[16989,16087,16088]],[[16989,16086,16087]],[[16989,16084,16086]],[[16989,16083,16084]],[[16989,16082,16083]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed35282-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17892,17893,17894]],[[17892,17894,17895]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed6123a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15238,17894,15251]],[[15251,17894,17893]],[[15238,14532,11376]],[[11376,17895,15238]],[[17894,15238,17895]],[[15251,17892,11375]],[[15251,17893,17892]],[[15251,11375,14548]],[[17892,17895,11375]],[[11377,11376,14532]],[[11375,17895,11376]],[[14548,11377,14532]],[[14548,11374,11377]],[[14548,11375,11374]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed74a77-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16589,16588,16587]],[[16589,16587,16586]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed8a9c4-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef170a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[7931,16410,7930]],[[7931,7932,16643]],[[16410,7931,16643]],[[8186,16642,16643]],[[16643,7932,8186]],[[8186,16645,16642]],[[16644,16642,16645]],[[10010,8546,8544]],[[8544,16645,10010]],[[8545,8546,10205]],[[10205,8546,10010]],[[10010,16645,899]],[[902,10010,899]],[[899,16645,8186]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baed8f811-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee48c49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17896,15440,15535]],[[17896,17897,15440]],[[17898,15440,17897]],[[15534,17899,15535]],[[17898,15420,15440]],[[15535,17899,17896]],[[15534,15420,17899]],[[17899,15420,17898]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baedc2c50-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeec549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17898,17897,17896]],[[17898,17896,17899]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baedd648a-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeeed149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17900,16197,17901]],[[17900,17901,17902]],[[17901,17903,17904]],[[17901,16197,17905]],[[17901,17905,17903]],[[17903,17905,17906]],[[17905,16197,16180]],[[17905,17907,17908]],[[17907,17905,16180]],[[17907,16180,17909]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee30a16-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9969,14460,9970]],[[9971,17890,17889]],[[17891,15729,15728]],[[9968,9971,17889]],[[17890,15729,17891]],[[17566,9968,17889]],[[14442,15729,17890]],[[17888,17891,15728]],[[14460,14442,9970]],[[17566,17888,15728]],[[14460,9969,17567]],[[17889,17888,17566]],[[14442,17890,9971]],[[9970,14442,9971]],[[17567,9968,17566]],[[9969,9968,17567]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee50621-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa149cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17910,17911,14746]],[[17912,17910,14734]],[[14732,17912,14734]],[[17910,14746,14747]],[[14732,17913,17912]],[[14732,14746,17911]],[[17913,14732,17911]],[[14734,17910,14747]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee6656b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17698,17812,17699]],[[17698,17697,17811]],[[17812,17698,17811]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee70214-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15292,15237,15301]],[[15237,15261,15301]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baee86179-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d549cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[13131,13041,13037]],[[13131,13037,13136]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baeeea27e-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16945,16092,16136]],[[16945,16136,16946]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef24c20-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[11785,13125,13139]],[[11785,13139,11772]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef3f9c3-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1f849cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17914,16270,16269]],[[17915,17916,16279]],[[17917,17918,17919]],[[17920,17870,16275]],[[16279,17916,16284]],[[16284,17916,16283]],[[16283,17916,16282]],[[16282,17916,16281]],[[16281,17916,16280]],[[16280,17916,16272]],[[16272,17921,16278]],[[16278,17921,16277]],[[16277,17921,16276]],[[17922,16275,16274]],[[16276,17921,16274]],[[17923,17920,16275]],[[17924,17923,16275]],[[17925,17924,16275]],[[17926,17925,16275]],[[17927,17926,16275]],[[17922,17927,16275]],[[17928,17922,16274]],[[17921,17928,16274]],[[17921,17929,17928]],[[17921,17930,17929]],[[17921,17931,17930]],[[17932,17933,17931]],[[17934,17935,17933]],[[17936,17937,17935]],[[17938,17939,17937]],[[17940,17941,17939]],[[17942,17943,17941]],[[17944,17945,17943]],[[17946,17947,17945]],[[17948,17949,17947]],[[17950,17951,17949]],[[17952,17953,17951]],[[17954,17955,17953]],[[17956,17957,17955]],[[17919,17958,17957]],[[17917,17919,17957]],[[16270,17915,16279]],[[17959,17917,17957]],[[17960,17959,17957]],[[17961,17960,17957]],[[17962,17961,17957]],[[17963,17962,17957]],[[17964,17963,17957]],[[17956,17964,17957]],[[17954,17956,17955]],[[17952,17954,17953]],[[17950,17952,17951]],[[17948,17950,17949]],[[17946,17948,17947]],[[17944,17946,17945]],[[17942,17944,17943]],[[17940,17942,17941]],[[17938,17940,17939]],[[17936,17938,17937]],[[17934,17936,17935]],[[17932,17934,17933]],[[17921,17932,17931]],[[17921,17965,17932]],[[17966,17967,17965]],[[17968,17966,17965]],[[17969,17968,17965]],[[17970,17969,17965]],[[17971,17972,17969]],[[17971,17973,17972]],[[17974,17971,17969]],[[17974,17975,17971]],[[17976,17974,17969]],[[17976,17977,17974]],[[17976,17978,17977]],[[17976,17979,17978]],[[17970,17976,17969]],[[17980,17981,17976]],[[17970,17980,17976]],[[17921,17970,17965]],[[17982,17983,17970]],[[17921,17982,17970]],[[17916,17921,16272]],[[16270,17984,17915]],[[16285,17985,16269]],[[16285,16286,16830]],[[16270,17986,17984]],[[17986,16270,17987]],[[17986,17987,17988]],[[16270,17914,17987]],[[16269,17985,17914]],[[16286,16287,16846]],[[17985,16285,17989]],[[17989,16285,17990]],[[17990,16285,16830]],[[16830,16286,16831]],[[16831,16286,16853]],[[16853,16286,16852]],[[16852,16286,16851]],[[16851,16286,16850]],[[16850,16286,16849]],[[16849,16286,16848]],[[16848,16286,16847]],[[16847,16286,16846]],[[16846,16287,16845]],[[16845,16287,16844]],[[16844,16287,16843]],[[16843,16287,16842]],[[16842,16287,16841]],[[16841,16287,16840]],[[16839,16840,17991]],[[16838,16839,17991]],[[16832,16838,17991]],[[16837,16832,17991]],[[16836,16837,17991]],[[17869,16835,16834]],[[16834,16836,17868]],[[16833,16835,17859]],[[17858,16833,17859]],[[17859,16835,17863]],[[17863,16835,17869]],[[17869,16834,17868]],[[17868,16836,17867]],[[17867,16836,17991]],[[17866,17867,17991]],[[17864,17866,17991]],[[17865,17864,17991]],[[17865,17991,17992]],[[16840,16287,17991]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baef46f44-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa449cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17260,16287,17259]],[[17259,16287,16288]],[[17260,17991,16287]],[[17260,17261,17991]],[[17991,17261,17992]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baefcac78-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17046,17045,14305]],[[14285,17047,14305]],[[17048,15792,15785]],[[14305,17047,17046]],[[14285,15792,17048]],[[17045,17048,15785]],[[17047,14285,17048]],[[14305,17045,15785]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baefd21e7-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef345349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16026,16093,16114]],[[16093,16113,16114]],[[16113,16093,16111]],[[16111,16093,16112]],[[16112,16093,16106]],[[16106,16093,16110]],[[16110,16093,16107]],[[16107,16093,16109]],[[16109,16093,16108]],[[16108,16093,16103]],[[16103,16093,16104]],[[16104,16093,16105]],[[16105,16093,16099]],[[16099,16093,16100]],[[16100,16093,16102]],[[16102,16093,16101]],[[16101,16093,16098]],[[16098,16093,16096]],[[16096,16093,16097]],[[16097,16093,16095]],[[16095,16093,16080]],[[16080,16093,16025]],[[16093,16081,16025]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf005617-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef4e49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16787,11877,16316]],[[16313,16315,17561]],[[17561,16315,15473]],[[11879,16785,16784]],[[16315,15472,15473]],[[11877,15472,16316]],[[17563,16314,16313]],[[16316,15472,16315]],[[17562,16313,17561]],[[17562,17563,16313]],[[11879,11877,16786]],[[16787,16786,11877]],[[16785,11879,16786]],[[16314,16787,16316]],[[16314,17563,16784]],[[16314,16784,16787]],[[17563,11879,16784]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf00f2b1-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15746,12536,17565]],[[15746,17565,15742]],[[12536,12538,17565]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf01b573-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef33c249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16300,16299,16302]],[[16300,16302,16309]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf03b16f-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef5b49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16872,16974,16892]],[[16974,16871,16892]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf03b17b-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17910,17912,17913]],[[17910,17913,17911]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf053805-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eebe0649cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16000,15999,16021]],[[16000,16028,16344]],[[16056,16057,15910]],[[16973,16028,16891]],[[16890,16891,16028]],[[16889,16890,16028]],[[16888,16889,16051]],[[16887,16888,16051]],[[16886,16887,16051]],[[16885,16886,16051]],[[16884,16885,16051]],[[16883,16884,16051]],[[16882,16883,15910]],[[16881,16882,15910]],[[16880,16881,15910]],[[16879,16880,15910]],[[16878,16879,15910]],[[16877,16878,15910]],[[16876,16877,15910]],[[16875,15910,15909]],[[16874,15910,16875]],[[16874,16876,15910]],[[15910,16883,16051]],[[16345,16028,16973]],[[15910,16055,16056]],[[15910,16053,16055]],[[15910,16054,16053]],[[15910,16052,16054]],[[16051,16889,16028]],[[15910,16050,16052]],[[16345,16344,16028]],[[16050,15910,16051]],[[16028,16000,16021]],[[16026,16021,16894]],[[16093,16026,15881]],[[16136,16093,16972]],[[16946,16136,16972]],[[16972,16093,15881]],[[15856,16972,15881]],[[16026,16894,15881]],[[16021,16896,16894]],[[16021,15999,16896]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf05864c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[2838,3009,3011]],[[16661,16662,1074]],[[2842,16653,2848]],[[16653,2854,2856]],[[16653,1092,2854]],[[16662,16663,1074]],[[16664,16049,1074]],[[1091,16652,1090]],[[1090,16652,1089]],[[1089,16652,1088]],[[1088,16652,1087]],[[1087,16652,1086]],[[1086,16652,1085]],[[1085,16654,1084]],[[1084,16654,1082]],[[1082,16654,1081]],[[1081,16655,1080]],[[1080,16655,1079]],[[1079,16655,1078]],[[1078,16655,1077]],[[16655,1075,1076]],[[16655,1074,1075]],[[1077,16655,1076]],[[16665,16057,16049]],[[16664,16665,16049]],[[16663,16664,1074]],[[1092,16652,1091]],[[2848,16653,2856]],[[2838,3011,2842]],[[1074,16660,16661]],[[1074,16658,16660]],[[1074,16659,16658]],[[1074,16657,16659]],[[1074,16656,16657]],[[1074,16655,16656]],[[1081,16654,16655]],[[1085,16652,16654]],[[1092,16653,16652]],[[6859,6860,16649]],[[16651,6859,16649]],[[16758,6858,16651]],[[16651,6858,6859]],[[16759,16758,16651]],[[3007,3006,16759]],[[3006,6818,16759]],[[16651,3007,16759]],[[16653,3007,16651]],[[16653,3011,3007]],[[16653,2842,3011]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf067030-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef344d49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[14738,14237,14748]],[[14237,14234,14748]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf06be8c-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef32d349cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[15421,11769,15442]],[[11769,11793,15442]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf084513-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa949cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16085,16094,16091]],[[16094,16135,16091]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf0b7934-00c9-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eee4b249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16777,8312,17806]],[[17806,8312,17887]],[[8356,16777,8353]],[[17886,17887,8312]],[[17885,17886,8312]],[[17884,17885,8312]],[[17883,17884,8312]],[[17882,17883,8312]],[[17881,17882,8312]],[[17880,17881,8312]],[[17879,17880,8312]],[[17878,17879,8312]],[[17877,17878,8312]],[[17871,17877,8312]],[[17876,17871,8312]],[[17875,17876,8312]],[[17874,17875,8312]],[[17873,17874,8312]],[[17872,17873,8312]],[[16082,17872,8312]],[[8312,16777,8336]],[[8336,16777,8333]],[[8335,8336,8334]],[[8336,8333,8334]],[[8353,16777,783]],[[8333,16777,8332]],[[8332,16777,8356]],[[8355,8356,8354]],[[8356,8353,8354]],[[783,16777,782]],[[8353,783,747]],[[16777,16778,841]],[[842,16777,841]],[[781,782,779]],[[781,779,780]],[[782,16777,779]],[[779,16777,778]],[[778,16777,845]],[[844,845,843]],[[845,842,843]],[[845,16777,842]],[[841,16778,548]],[[535,841,548]],[[7323,16778,7322]],[[547,548,546]],[[548,545,546]],[[548,16778,545]],[[545,16778,544]],[[544,16778,7299]],[[7298,7299,7296]],[[7298,7296,7297]],[[7299,16778,7296]],[[7296,7323,7294]],[[7296,16778,7323]],[[7534,16778,7533]],[[7321,7322,7320]],[[7322,7319,7320]],[[7322,16778,7319]],[[7319,16778,7317]],[[7317,16778,7537]],[[7536,7537,7534]],[[7536,7534,7535]],[[7537,16778,7534]],[[7533,16778,7504]],[[7515,7533,7504]],[[7504,16778,7509]],[[7449,7509,16760]],[[16764,7475,7476]],[[7476,7449,16760]],[[7474,7475,7473]],[[7473,7475,7472]],[[16764,7471,7472]],[[7472,7475,16764]],[[7470,7471,7469]],[[16764,7468,7471]],[[7469,7471,7468]],[[16764,7467,7468]],[[7466,7467,7464]],[[17857,7464,7467]],[[7465,7466,7464]],[[17857,7463,7464]],[[7462,7463,7461]],[[17857,7460,7463]],[[7461,7463,7460]],[[17857,7459,7460]],[[16618,7459,17857]],[[17857,7467,16764]],[[7476,16760,16764]],[[7509,16778,16760]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"baf3f295d-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef68e749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[3243,3242,3234]],[[3243,3234,3398]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"baf3f2966-2d29-11e6-9a38-393caa90be70":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68ef663a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[5950,5945,17993]],[[5945,17994,17993]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"bbdc52a89-00b3-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bgt_type":"stuw","bronhouder":"W0372","creationdate":"","inonderzoek":"","lokaalid":"G0503.032e68f09ead49cce0532ee22091b28c","lv_publicatiedatum":"","namespace":"NL.IMGeo","plus_status":"","plus_type":"waardeOnbekend","relatievehoogteligging":"","tijdstipregistratie":""},"geometry":[{"boundaries":[[[17076,17634,17077]],[[17634,17635,17077]],[[17080,17636,17076]],[[17076,17636,17634]],[[17637,17081,17635]],[[17635,17081,17077]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"bdce6a385-fd58-11e5-8acc-1fc21a78c5fd":{"attributes":{"bgt_fysiekvoorkomen":"gesloten verharding","bgt_status":"bestaand","bronhouder":"P0028","creationdate":"2013-08-07","eindregistratie":"","inonderzoek":"0","lokaalid":"P0028.97986f98d554454a8a839c15b513a8e4","lv_publicatiedatum":"2015-11-30T11:11:19.000","namespace":"NL.IMGeo","onbegroeidterreindeeloptalud":"0","plus_fysiekvoorkomen":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2015-11-27T10:24:41.000"},"geometry":[{"boundaries":[[[17995,17996,17997]],[[17998,5486,4891]],[[17999,18000,4891]],[[17996,5486,17998]],[[18000,18001,4891]],[[17997,11244,11217]],[[11244,17999,4891]],[[11244,18002,17999]],[[18003,18004,17998]],[[11217,5486,18005]],[[18001,17998,4891]],[[18001,18002,18006]],[[18000,18002,18001]],[[18000,17999,18002]],[[18001,18003,17998]],[[18006,11244,18004]],[[18007,17995,17997]],[[18008,18004,17997]],[[18009,17995,18007]],[[17996,18010,17997]],[[18005,18007,11217]],[[18005,18009,18007]],[[18010,17996,17998]],[[18009,5486,17996]],[[17995,18009,17996]],[[18005,5486,18009]],[[17998,18008,18010]],[[18004,11244,17997]],[[17998,18004,18008]],[[18003,18001,18006]],[[18003,18006,18004]],[[18002,11244,18006]],[[18007,17997,11217]],[[18010,18008,17997]]],"lod":"1","type":"MultiSurface"}],"type":"LandUse"},"be252b118-2d37-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f09a6949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000"},"geometry":[{"boundaries":[[[18011,18012,18013]],[[18011,18013,18014]],[[18015,18016,18011]],[[18011,18016,18012]],[[18017,18015,18014]],[[18014,18015,18011]],[[18018,18017,18013]],[[18013,18017,18014]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"be2539be1-2d37-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bgt_type":"kademuur","bronhouder":"W0372","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68f0986649cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-06-06T07:57:13.000"},"geometry":[{"boundaries":[[[4964,18019,18012]],[[4964,18020,11518]],[[4964,18012,18020]],[[18019,18013,18012]],[[18019,18021,18013]],[[18019,18022,18021]],[[18021,18022,30]],[[28,30,5621]],[[28,18023,29]],[[18023,28,5621]],[[30,18022,5621]],[[4965,4964,11518]],[[11511,11518,18020]],[[18016,11521,18012]],[[18012,11521,11511]],[[18012,11511,18020]],[[18024,18018,18021]],[[18021,18018,18013]],[[15,18024,30]],[[30,18024,18021]],[[13,15,28]],[[28,15,30]],[[11,13,27]],[[27,13,29]],[[29,13,28]],[[5643,27,18023]],[[18023,27,29]],[[5621,5643,18023]],[[4804,5621,18022]],[[4805,4804,18019]],[[18019,4804,18022]]],"lod":"1","type":"MultiSurface"}],"type":"+GenericCityObject"},"bea630875-00b8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09d6f49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[18025,17793,17261]],[[18025,17263,17793]],[[17793,18026,17261]],[[18027,18028,18029]],[[18030,18026,18031]],[[18032,18033,18034]],[[18028,18030,18035]],[[18033,18027,18036]],[[18034,18033,18036]],[[18036,18027,18029]],[[18029,18028,18035]],[[18035,18030,18031]],[[18031,18026,18037]],[[18037,18026,18038]],[[18038,18026,17793]],[[17248,17263,18025]],[[17247,17263,17248]],[[17250,18025,17261]],[[17248,18025,17250]],[[17992,17261,18026]],[[17865,18026,18030]],[[17992,18026,17865]],[[17860,18030,18028]],[[17865,18030,17860]],[[17862,18028,18027]],[[17860,18028,17862]],[[15954,18029,18035]],[[15953,18029,15954]],[[17812,18035,18031]],[[15954,18035,17812]],[[17699,18031,18037]],[[17812,18031,17699]],[[17695,18037,18038]],[[17699,18037,17695]],[[17696,18038,17793]],[[17695,18038,17696]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"bea632f90-00b8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","class":"dek","creationdate":"2014-07-09","eindregistratie":"","hoortbijtypeoverbrugging":"waardeOnbekend","inonderzoek":"0","lokaalid":"G0503.032e68f09df249cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","overbruggingisbeweegbaar":"0","plus_status":"geenWaarde","relatievehoogteligging":"1","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[17797,18039,18040]],[[17797,16206,18039]],[[18039,16202,16264]],[[16268,18041,1051]],[[16202,18039,16206]],[[16206,17797,16205]],[[16205,17797,16268]],[[16203,16205,16268]],[[16261,16203,16256]],[[16255,16261,16256]],[[16203,16268,16256]],[[17797,18041,16268]],[[16262,16256,16268]],[[1045,1051,18041]]],"lod":"1","type":"MultiSurface"}],"type":"Bridge"},"bedab6302-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"W0372","class":"waterloop","creationdate":"2014-07-09","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.032e68eff33a49cce0532ee22091b28c","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-03-15T12:02:49.000"},"geometry":[{"boundaries":[[[18042,17361,17362]],[[18043,18044,17171]],[[16268,1045,17171]],[[1054,17170,17171]],[[1045,1051,17171]],[[17171,1051,1054]],[[17797,1046,1045]],[[17801,17559,17560]],[[1046,17798,17560]],[[17558,17559,17770]],[[17774,17557,17773]],[[17556,17557,17776]],[[17778,17554,17555]],[[17555,17556,17777]],[[17780,17552,17553]],[[17553,17554,17779]],[[17780,17551,17552]],[[17780,17550,17551]],[[17781,17549,17550]],[[17781,17548,17549]],[[17781,17547,17548]],[[17781,17546,17547]],[[17783,17545,17546]],[[17784,17544,17545]],[[17785,17543,17544]],[[17786,17542,17543]],[[17787,17541,17542]],[[17788,17540,17541]],[[17788,17539,17540]],[[17789,17538,17539]],[[17790,17537,17538]],[[17536,17537,17790]],[[17265,17534,17535]],[[17535,17536,17264]],[[17081,17532,17534]],[[17533,17532,17637]],[[17637,17532,17081]],[[17081,17534,17082]],[[17082,17534,17265]],[[17265,17535,17264]],[[17264,17536,17263]],[[17262,17264,17263]],[[17263,17536,17793]],[[17793,17536,17792]],[[17792,17536,17791]],[[17791,17536,17790]],[[17790,17538,17789]],[[17789,17539,17788]],[[17788,17541,17787]],[[17787,17542,17786]],[[17786,17543,17785]],[[17785,17544,17784]],[[17784,17545,17783]],[[17783,17546,17782]],[[17782,17546,17781]],[[17781,17550,17780]],[[17780,17553,17779]],[[17779,17554,17778]],[[17778,17555,17777]],[[18045,18046,17174]],[[17777,17556,17776]],[[17776,17557,17774]],[[17776,17774,17775]],[[17557,17558,17772]],[[17773,17557,17772]],[[17772,17558,17771]],[[17771,17558,17769]],[[17769,17558,17770]],[[17371,17372,17171]],[[17770,17559,17801]],[[17801,17560,17800]],[[17800,17560,17798]],[[18047,18048,18042]],[[17799,17800,17798]],[[1046,17797,17798]],[[1045,16268,17797]],[[18049,17178,17179]],[[16268,17171,16266]],[[16266,17171,17372]],[[16267,16266,17372]],[[17370,17371,17171]],[[17369,17370,17171]],[[17368,17369,17171]],[[17171,17367,17368]],[[17171,17366,17367]],[[17171,17365,17366]],[[17171,18050,17365]],[[17365,18051,17364]],[[18052,17180,17181]],[[17363,17364,18053]],[[17362,17363,18054]],[[18042,17360,17361]],[[18042,17359,17360]],[[17356,17358,17359]],[[17356,17357,17358]],[[18055,17175,17176]],[[17355,17357,17356]],[[17174,17175,18045]],[[17356,17359,18042]],[[17174,18046,17173]],[[18042,17362,18054]],[[18056,18047,18042]],[[18054,18056,18042]],[[18057,18054,17363]],[[18053,18057,17363]],[[18051,18053,17364]],[[18050,18051,17365]],[[18058,18050,17171]],[[18059,18058,17171]],[[17172,18060,17171]],[[17171,18061,18059]],[[17171,18062,18061]],[[17171,18063,18062]],[[17171,18064,18063]],[[17171,18044,18064]],[[17172,17173,18046]],[[17177,18065,17176]],[[17171,18060,18043]],[[17177,17178,18066]],[[18055,18045,17175]],[[18060,18067,18068]],[[18060,17172,18067]],[[17179,17180,18049]],[[18046,18067,17172]],[[18065,18055,17176]],[[18069,18065,17177]],[[18069,17177,18066]],[[18066,17178,18049]],[[18049,17180,18052]],[[17183,17181,17182]],[[18070,18052,18071]],[[18072,18071,18073]],[[18074,18072,18073]],[[18075,18074,18073]],[[18076,18077,18078]],[[18079,18076,18080]],[[18081,18079,18082]],[[18083,18081,18084]],[[18081,18085,18084]],[[18081,18082,18085]],[[18079,18080,18082]],[[18077,18086,18087]],[[18076,18078,18080]],[[18077,18087,18078]],[[18086,18088,18089]],[[18086,18089,18087]],[[18088,18075,18089]],[[18075,18090,18089]],[[18075,18073,18090]],[[18071,17185,18073]],[[18071,17184,17185]],[[18071,18052,17183]],[[18071,17183,17184]],[[18052,17181,17183]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"bedabd859-00c8-11e6-b420-2bdcc4ab5d7f":{"attributes":{"bgt_status":"bestaand","bronhouder":"W0372","class":"waterloop","creationdate":"2015-04-22","eindregistratie":"","inonderzoek":"0","lokaalid":"G0503.016d65723c70442d8abf815e2dc165cd","lv_publicatiedatum":"2016-04-12T11:54:23.000","namespace":"NL.IMGeo","plus_status":"geenWaarde","plus_type":"waardeOnbekend","relatievehoogteligging":"0","terminationdate":"","tijdstipregistratie":"2016-04-10T04:15:11.000"},"geometry":[{"boundaries":[[[17636,17080,17254]],[[17636,17256,17531]],[[19,18,1]],[[17530,2,17529]],[[17528,2,20]],[[17528,19,1]],[[6,4,5]],[[5,4,7]],[[11,7,10]],[[18091,18017,18092]],[[13,11,18093]],[[15,13,14]],[[18024,18017,18018]],[[14,18024,15]],[[18092,18017,18024]],[[18016,18015,11521]],[[11521,18015,18094]],[[11521,18095,11522]],[[11521,18096,18095]],[[11521,18097,18096]],[[18096,18098,18099]],[[18098,18096,18097]],[[18098,18097,18100]],[[18092,18024,14]],[[11521,18101,18097]],[[11521,18094,18101]],[[18015,18091,18094]],[[18094,18091,18102]],[[18015,18017,18091]],[[4,9,7]],[[16,3,8]],[[18092,14,18103]],[[3,1,8]],[[13,18093,14]],[[11,10,18093]],[[7,9,10]],[[16,17,9]],[[4,16,9]],[[4,3,16]],[[17258,20,17257]],[[1,18,8]],[[2,17530,17257]],[[20,19,17528]],[[17531,17256,17530]],[[2,17257,20]],[[17530,17256,17257]],[[17636,17255,17256]],[[17636,17254,17255]],[[17254,17080,17079]]],"lod":"1","type":"MultiSurface"}],"type":"WaterBody"},"bfce80032-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef6449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18104,18105,18106]],[[18104,18106,18107]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce91150-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[5643,5642,27]],[[5642,26,27]],[[5642,16769,26]],[[7,11,26]],[[26,11,27]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce93872-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18108,18109,18110]],[[18108,18110,18111]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfce95fa3-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9780,5952,18110]],[[9780,16979,9773]],[[18110,18109,17807]],[[17994,18112,18113]],[[17807,18113,17808]],[[17808,18113,18114]],[[18114,18115,18116]],[[18114,18117,18115]],[[18114,18113,18117]],[[18117,18118,18119]],[[18117,18120,18118]],[[18117,18121,18120]],[[18120,18121,18122]],[[18122,18121,18123]],[[18123,18121,18124]],[[18117,18113,18121]],[[18121,18113,18125]],[[18125,18126,18127]],[[18125,18128,18126]],[[18125,18129,18128]],[[18128,18130,18131]],[[18131,18130,18132]],[[18128,18129,18130]],[[18130,18129,18133]],[[18125,18113,18129]],[[17994,5945,5944]],[[17994,5944,18112]],[[18108,17993,17994]],[[17993,18111,5950]],[[18113,18109,17994]],[[17807,18109,18113]],[[17807,16979,18110]],[[9780,18110,16979]],[[18111,17993,18108]],[[5952,18111,18110]],[[5952,5950,18111]],[[18109,18108,17994]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea2371-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9282,9545,3440]],[[9545,9503,3440]],[[3950,17007,3949]],[[3949,17009,3948]],[[3948,17010,3458]],[[17003,3440,3478]],[[17000,3478,3538]],[[3478,17000,17003]],[[9503,9770,3440]],[[3903,16783,17013]],[[3458,17000,3475]],[[3951,17006,3950]],[[9278,9282,3440]],[[9274,9278,3440]],[[9273,9274,3440]],[[17003,9273,3440]],[[17003,9272,9273]],[[17003,9271,9272]],[[17003,9269,9271]],[[3437,17004,3951]],[[9269,17003,9265]],[[9264,9265,17003]],[[9263,9264,17003]],[[9262,9263,17003]],[[9261,9262,17003]],[[9258,9261,17003]],[[9257,9258,17003]],[[9256,9257,17003]],[[9254,17003,9249]],[[9249,17003,9247]],[[3475,17000,3538]],[[9254,9256,17003]],[[3437,3434,17012]],[[17000,3458,17010]],[[17010,3948,17009]],[[17009,3949,17007]],[[17007,3950,17006]],[[17006,3951,17004]],[[17004,3437,17012]],[[17012,3434,17013]],[[18134,16780,16783]],[[18135,18134,16783]],[[18136,18135,16783]],[[18137,18136,16783]],[[18138,18137,16783]],[[18139,18138,16783]],[[18140,18139,16783]],[[18141,18140,16783]],[[18142,18141,16783]],[[18143,18142,16783]],[[18144,18143,16783]],[[18145,18144,16783]],[[18146,18145,16783]],[[18147,18146,16783]],[[18148,18147,16783]],[[18149,18148,16783]],[[18150,18149,16783]],[[18151,18150,16783]],[[18152,18151,16783]],[[18153,18152,16783]],[[18154,18153,16783]],[[3903,18154,16783]],[[3903,18155,18154]],[[3903,18156,18155]],[[3903,18157,18156]],[[3903,18158,18157]],[[18159,18160,18158]],[[18161,18159,18158]],[[18161,18162,18159]],[[18161,18163,18162]],[[18164,18161,18158]],[[18165,18166,18161]],[[18167,18165,18161]],[[18164,18167,18161]],[[18164,18168,18167]],[[18169,18164,18158]],[[18169,18170,18164]],[[18169,18171,18170]],[[18172,18169,18158]],[[18173,18174,18169]],[[18173,18175,18174]],[[18176,18173,18169]],[[18176,18177,18173]],[[18178,18176,18169]],[[18178,18179,18176]],[[18178,18180,18179]],[[18178,18181,18180]],[[18172,18178,18169]],[[18182,18183,18178]],[[18178,18172,18182]],[[18184,18182,18172]],[[18172,18158,3903]],[[3434,3903,17013]],[[18185,18172,3903]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea4a8a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[17019,9243,9247]],[[9247,17003,17002]],[[17019,9247,17002]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea70b2-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-11-03","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.c76f5d580cb14842ba0da04e1433d2ef","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18186,18187,6423]],[[18188,5944,5943]],[[18188,18112,5944]],[[5953,18189,5943]],[[18190,18188,5943]],[[18191,18190,5943]],[[18192,18191,5943]],[[18193,18192,5943]],[[18194,18193,5943]],[[18195,18194,5943]],[[18189,18195,5943]],[[18196,18189,5953]],[[18197,18196,5953]],[[18198,18197,5953]],[[18199,18198,5953]],[[18200,18199,5953]],[[18201,18200,5953]],[[18202,18201,5953]],[[18203,18202,5953]],[[18204,18203,5953]],[[18205,18204,5953]],[[18206,18205,5953]],[[18207,18206,5953]],[[18208,18207,5953]],[[18209,18208,5953]],[[6423,18209,5953]],[[6423,18187,18209]],[[6176,18186,6423]],[[18210,18211,18186]],[[6176,18210,18186]],[[18212,5937,18107]],[[5937,18210,6176]],[[18104,5932,18105]],[[18212,18210,5937]],[[18213,18212,18214]],[[18214,18212,18215]],[[18216,18214,18215]],[[18217,18216,18215]],[[18215,18212,18218]],[[18219,18215,18220]],[[18221,18219,18220]],[[18220,18215,18218]],[[18222,18220,18218]],[[18218,18212,18223]],[[18224,18218,18225]],[[18226,18224,18225]],[[18225,18218,18227]],[[18228,18225,18227]],[[18227,18218,18229]],[[18230,18227,18229]],[[18229,18218,18223]],[[18231,18229,18223]],[[18232,18231,18223]],[[18223,18212,16762]],[[18233,18223,16762]],[[18234,18233,16762]],[[16762,18212,18107]],[[18106,18105,5932]],[[18106,5932,18235]],[[17856,18106,18235]],[[18104,5937,5932]],[[16763,18106,17856]],[[16763,18107,18106]],[[16763,16762,18107]],[[18107,5937,18104]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea97e3-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8149cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16769,25,26]],[[5,7,25]],[[25,7,26]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcea97e9-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8249cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16400,16390,18236]],[[16392,16400,18236]],[[16398,16392,18236]],[[18237,16394,18236]],[[18236,16399,16398]],[[18236,16394,16399]],[[18237,16397,16394]],[[18237,11378,11380]],[[16397,18237,11380]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceae630-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef0c3449cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"tegels","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18238,3349,3266]],[[18238,3220,3219]],[[18238,3266,3220]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceb347d-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eed11849cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18236,16390,16770]],[[16403,16382,16770]],[[16384,16403,16770]],[[16402,16384,16770]],[[16386,16402,16770]],[[16401,16386,16770]],[[16388,16401,16770]],[[16390,16388,16770]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcebaa0a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef172349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9284,9226,4220]],[[9253,9252,4009]],[[9221,9219,3966]],[[4022,4026,9198]],[[9298,4013,3980]],[[4034,4033,9189]],[[9339,3298,3301]],[[9246,3301,3973]],[[3301,3302,3973]],[[4016,4015,9461]],[[9225,9396,4181]],[[4015,4019,9469]],[[9339,9244,3298]],[[4182,9515,4296]],[[9461,4015,9469]],[[3973,4296,9236]],[[9253,4009,4008]],[[3307,4453,4801]],[[3320,4360,4365]],[[4355,4350,3335]],[[4354,4355,3335]],[[3327,4350,4356]],[[5461,5465,3275]],[[5476,5461,3348]],[[3406,5471,5656]],[[3352,5896,5847]],[[5912,5612,3402]],[[5540,5912,3402]],[[5538,5540,3378]],[[5609,5538,3378]],[[5693,5609,3375]],[[5632,5693,3376]],[[5633,5632,3256]],[[5618,5633,3257]],[[5619,5618,18239]],[[5619,18239,18237]],[[5618,3257,18239]],[[5633,3256,3257]],[[3249,5890,5575]],[[5632,3376,3256]],[[5612,5890,3429]],[[5574,3404,5575]],[[3376,5693,3375]],[[5609,3378,3375]],[[5574,5896,3241]],[[3429,3402,5612]],[[3378,5540,3402]],[[5848,3353,5847]],[[3351,5655,5645]],[[5890,3249,3429]],[[3413,5479,5472]],[[5575,3404,3249]],[[5848,5479,3353]],[[5471,3415,5472]],[[3404,5574,3241]],[[5896,3352,3241]],[[5656,5655,3407]],[[3413,3353,5479]],[[3352,5847,3353]],[[3415,3413,5472]],[[5651,3219,5645]],[[5471,3406,3415]],[[5656,3407,3406]],[[5651,5649,3349]],[[5655,3351,3407]],[[5649,5476,3270]],[[5645,3219,3351]],[[5651,18238,3219]],[[3348,3270,5476]],[[5651,3349,18238]],[[3341,5468,4343]],[[5649,3270,3349]],[[5465,5468,3347]],[[4342,3341,4343]],[[3346,4351,4352]],[[5461,3273,3348]],[[4342,4351,3346]],[[4353,3370,4352]],[[3273,5461,3275]],[[5465,3347,3275]],[[4353,4354,3335]],[[3287,4800,4404]],[[3347,5468,3341]],[[4342,3346,3341]],[[4356,4360,3323]],[[4800,3320,4365]],[[3346,4352,3370]],[[4453,3317,4404]],[[3370,4353,3335]],[[3323,3327,4356]],[[3335,4350,3327]],[[4681,3307,4801]],[[3312,4802,4768]],[[4360,3320,3323]],[[4681,4802,3312]],[[3320,4800,3287]],[[4404,3317,3287]],[[4453,3288,3317]],[[4453,3307,3288]],[[4768,4477,3309]],[[4681,3312,3307]],[[4477,4340,3309]],[[4768,3311,3312]],[[4340,3983,3303]],[[4768,3309,3311]],[[4340,3310,3309]],[[4340,3303,3310]],[[3983,3973,3302]],[[3303,3983,3305]],[[3305,3983,3300]],[[3300,3983,3304]],[[3304,3983,3302]],[[3966,3965,9221]],[[9244,3299,3298]],[[9246,9339,3301]],[[4181,9231,4182]],[[3973,9236,9246]],[[9284,4220,4000]],[[4296,9515,9236]],[[4181,4220,9225]],[[9396,9231,4181]],[[9515,4182,9231]],[[3996,9379,4000]],[[9226,9225,4220]],[[4009,9260,3996]],[[9379,9284,4000]],[[9295,9379,3996]],[[9260,9295,3996]],[[3966,9219,4008]],[[4009,9252,9260]],[[3965,4014,9220]],[[4013,9306,4014]],[[4008,9223,9253]],[[9299,4017,4018]],[[4008,9218,9223]],[[3980,4017,9297]],[[9218,4008,9219]],[[9306,9220,4014]],[[9221,3965,9220]],[[9212,9306,4013]],[[4011,9462,4018]],[[4013,9298,9212]],[[3980,9297,9298]],[[4011,4016,9461]],[[9297,4017,9299]],[[9299,4018,9462]],[[9462,4011,9461]],[[9469,4019,9185]],[[9185,4019,4020]],[[9186,9185,4020]],[[9197,9186,4021]],[[4026,9192,9198]],[[9198,9197,4022]],[[4058,9190,9192]],[[4307,4046,9183]],[[9190,4053,9191]],[[4053,9189,9191]],[[4060,9170,9180]],[[4046,9179,9183]],[[4029,9171,9170]],[[9169,9171,9774]],[[9318,9169,9777]],[[9778,9318,9776]],[[9776,9318,9777]],[[9777,9169,9774]],[[9774,9171,4029]],[[9775,9774,4028]],[[9771,9775,4028]],[[9772,9771,4028]],[[9772,4028,4308]],[[9180,9179,4045]],[[4033,9187,9189]],[[4028,9774,4029]],[[9182,4307,9183]],[[4029,9170,4060]],[[9180,4057,4060]],[[9182,9187,4307]],[[4057,9180,4045]],[[4045,9179,4046]],[[4033,4307,9187]],[[4053,4034,9189]],[[4054,4053,9190]],[[4058,4054,9190]],[[4026,4058,9192]],[[4022,9197,4021]],[[4021,9186,4020]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcec6cc0-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[9318,18240,9178]],[[18241,9778,9773]],[[18240,9318,18242]],[[3510,3737,18240]],[[3511,3510,18180]],[[3903,3511,18185]],[[18185,3511,18172]],[[18172,3511,18184]],[[18184,3511,18182]],[[18182,3511,18183]],[[18183,3511,18178]],[[18178,3511,18181]],[[18181,3511,18180]],[[18180,3510,18179]],[[18179,3510,18176]],[[18176,3510,18177]],[[18177,3510,18173]],[[18173,3510,18175]],[[18175,3510,18174]],[[18174,3510,18240]],[[18169,18174,18240]],[[18171,18169,18240]],[[18170,18171,18240]],[[18164,18170,18240]],[[18168,18164,18240]],[[18165,18167,18240]],[[18166,18165,18243]],[[18161,18166,18243]],[[18163,18161,18243]],[[18162,18163,18243]],[[18159,18162,18243]],[[18160,18159,18243]],[[18158,18160,18243]],[[18157,18158,18243]],[[18156,18157,18243]],[[18155,18156,18154]],[[18154,18156,18153]],[[18153,18156,18151]],[[18152,18153,18151]],[[18151,18156,18137]],[[18150,18151,18148]],[[18149,18150,18148]],[[18148,18151,18146]],[[18147,18148,18146]],[[18146,18151,18137]],[[18145,18146,18142]],[[18144,18145,18143]],[[18143,18145,18142]],[[18142,18146,18140]],[[18141,18142,18140]],[[18140,18146,18137]],[[18139,18140,18137]],[[18138,18139,18137]],[[18137,18156,16780]],[[18136,18137,16780]],[[18135,18136,16780]],[[18134,18135,16780]],[[16780,18156,16782]],[[18242,9318,9778]],[[16979,18241,9773]],[[16782,18241,16979]],[[16782,18156,18243]],[[16782,18243,18241]],[[18167,18168,18240]],[[18165,18240,18243]],[[3737,9178,18240]],[[18241,18242,9778]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcece247-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eedb4a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[3252,16804,3257]],[[16804,16861,3257]],[[3257,16861,18239]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcedf371-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef173a49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[4089,5923,4338]],[[4087,4338,5941]],[[6301,6060,4270]],[[5931,3963,4084]],[[6029,6302,4074]],[[6060,4077,4270]],[[9783,4062,9785]],[[5986,5985,4067]],[[9786,4023,5948]],[[9781,9772,4308]],[[5951,5952,9779]],[[4023,4025,5948]],[[4062,4023,9785]],[[4062,9781,4308]],[[4085,4086,5927]],[[9783,9781,4062]],[[5985,6265,4066]],[[5974,4069,4075]],[[6301,4270,3963]],[[9785,4023,9786]],[[4086,4087,5927]],[[9784,9786,5949]],[[9782,9784,5949]],[[9779,9782,5951]],[[9779,5952,9780]],[[5949,5951,9782]],[[4064,5960,4025]],[[5992,4063,4065]],[[9786,5948,5949]],[[4064,4063,5956]],[[5960,5946,4025]],[[5948,4025,5946]],[[4027,5992,4065]],[[4064,6282,5960]],[[5985,4066,4067]],[[4064,5956,6282]],[[4027,4066,6265]],[[5956,4063,5992]],[[5992,4027,6264]],[[4027,6265,6264]],[[4067,4069,5986]],[[4074,6302,4075]],[[4077,6029,4074]],[[5986,4069,5974]],[[5974,4075,6302]],[[6060,6029,4077]],[[4085,5929,4084]],[[5931,6301,3963]],[[4084,5929,5931]],[[4085,5928,5929]],[[4085,5927,5928]],[[4087,5941,5927]],[[4338,5923,5941]],[[5923,4089,5922]],[[5922,4089,5919]],[[5919,4089,18244]],[[5920,5919,18245]],[[5918,5920,18246]],[[5918,18246,5994]],[[5920,18247,18246]],[[5920,18245,18247]],[[5919,18248,18245]],[[18249,5919,18250]],[[5919,18251,18248]],[[4089,4088,18252]],[[18251,5919,18253]],[[18253,5919,18254]],[[18254,5919,18249]],[[18250,5919,18255]],[[18255,5919,18256]],[[18256,5919,18244]],[[18244,4089,18257]],[[18257,4089,18258]],[[18258,4089,18259]],[[18259,4089,18252]],[[18252,4088,18260]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcee1a90-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeef9749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18261,32,31]],[[18261,31,17870]],[[10,9,32]],[[32,9,31]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceeb72a-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eeca8349cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18239,16861,18237]],[[16861,11378,18237]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceeb730-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eed11b49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"verkeersdrempel","plus_fysiekvoorkomenwegdeel":"waardeOnbekend","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[16826,3294,16870]],[[3294,3297,16870]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfceede58-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"parkeervlak","inonderzoek":"0","lokaalid":"G0503.032e68ef229c49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18187,18186,18211]],[[18187,16775,18209]],[[18209,18207,18208]],[[18209,18192,18207]],[[18207,18204,18206]],[[18206,18204,18205]],[[18207,18201,18204]],[[18204,18202,18203]],[[18204,18201,18202]],[[18207,18195,18201]],[[18201,18198,18200]],[[18200,18198,18199]],[[18201,18195,18198]],[[18198,18195,18197]],[[18197,18189,18196]],[[18197,18195,18189]],[[18207,18194,18195]],[[18207,18192,18194]],[[18194,18192,18193]],[[18209,18188,18192]],[[18192,18190,18191]],[[18192,18188,18190]],[[18209,18112,18188]],[[18209,18113,18112]],[[18113,18209,16775]],[[18129,18113,16775]],[[18133,18129,16775]],[[18130,18133,16775]],[[18132,18130,16775]],[[18131,18132,16775]],[[18128,18131,16775]],[[18126,18128,16775]],[[18127,18126,16775]],[[18125,18127,16775]],[[18121,18125,16775]],[[18124,18121,16775]],[[18123,18124,16775]],[[18122,18123,16775]],[[18120,18122,16775]],[[18118,18120,16775]],[[18119,18118,16775]],[[18117,18119,16775]],[[18115,18117,16775]],[[18116,18115,16775]],[[18114,18116,16775]],[[18114,16775,17808]],[[18187,16776,16775]],[[18218,18224,16761]],[[18234,16762,16761]],[[18233,18234,16761]],[[18223,18233,16761]],[[18232,18223,16761]],[[18231,18232,16761]],[[18229,18231,16761]],[[18230,18229,16761]],[[18227,18230,16761]],[[18228,18227,16761]],[[18225,18228,16761]],[[18226,18225,16761]],[[18224,18226,16761]],[[16776,18213,16761]],[[18222,18218,16761]],[[18211,18212,16776]],[[16761,18220,18222]],[[16761,18221,18220]],[[16761,18219,18221]],[[16761,18215,18219]],[[16761,18217,18215]],[[16761,18216,18217]],[[16761,18214,18216]],[[16761,18213,18214]],[[16776,18212,18213]],[[18211,18210,18212]],[[18187,18211,16776]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcef52cd-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"rijbaan lokale weg","inonderzoek":"0","lokaalid":"G0503.032e68eec1fb49cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"betonstraatstenen","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[3297,3299,16870]],[[3299,16869,16870]],[[3299,9244,16869]],[[16869,9243,17019]],[[9243,16869,9244]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcf03dd2-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68ef173949cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"asfalt","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"gesloten verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[5641,5619,18237]],[[5641,18236,5622]],[[5622,16770,5623]],[[5623,16770,5642]],[[5642,16770,16769]],[[5622,18236,16770]],[[5641,18237,18236]]],"lod":"1","type":"MultiSurface"}],"type":"Road"},"bfcf03dd8-2d38-11e6-9a38-393caa90be70":{"attributes":{"bgt_status":"bestaand","bronhouder":"G0503","creationdate":"2014-07-09","eindregistratie":"","function":"voetpad","inonderzoek":"0","lokaalid":"G0503.032e68eeefa749cce0532ee22091b28c","lv_publicatiedatum":"2016-06-07T16:22:15.000","namespace":"NL.IMGeo","plus_functiewegdeel":"waardeOnbekend","plus_fysiekvoorkomenwegdeel":"gebakken klinkers","plus_status":"geenWaarde","relatievehoogteligging":"0","surfacematerial":"open verharding","terminationdate":"","tijdstipregistratie":"2016-05-17T13:43:18.000","wegdeeloptalud":"0"},"geometry":[{"boundaries":[[[18242,18241,18243]],[[18242,18243,18240]]],"lod":"1","type":"MultiSurface"}],"type":"Road"}},"metadata":{"geographicalExtent":[84616.468,447422.999,-0.452,85140.83899999999,447750.636,16.846],"referenceSystem":"https://www.opengis.net/def/crs/EPSG/0/7415"},"type":"CityJSON","version":"1.1","vertices":[[411283,25181,572],[412163,27032,582],[411755,27133,582],[413571,26683,582],[418114,25557,582],[418511,26894,582],[418448,26903,582],[423464,25667,582],[412434,22752,582],[421953,19972,582],[423347,19595,582],[424894,25312,582],[423565,19536,572],[425113,25258,582],[423782,19478,582],[425331,25204,582],[417108,21489,582],[417055,21296,582],[411229,23077,582],[411030,23131,582],[410823,23187,582],[413571,26683,1562],[412163,27032,1562],[418114,25557,1632],[418448,26903,1812],[418511,26894,1812],[423464,25667,1892],[424894,25312,1902],[425113,25258,1982],[424894,25312,1962],[425331,25204,1962],[421953,19972,1712],[423347,19595,1702],[417055,21296,1842],[417108,21489,1852],[412434,22752,1872],[411229,23077,1882],[411030,23131,2422],[411229,23077,2292],[410823,23187,2422],[393347,59669,6452],[416101,61295,6452],[424165,81601,6452],[404992,53462,6452],[405974,54155,6452],[393184,59554,6452],[389219,56732,6452],[399010,49244,6452],[397907,47100,6452],[396015,40703,6452],[396198,40656,6452],[398196,48188,6452],[386610,44619,6452],[389578,42358,6452],[399888,49863,6452],[386278,42772,6452],[389466,41932,6452],[386243,43226,6452],[385960,42856,6452],[386011,43050,6452],[386069,43272,6452],[387926,58500,6452],[383712,45382,6452],[380026,44875,6452],[383345,43990,6452],[383461,43722,6452],[383519,43944,6452],[383101,43610,6452],[383410,43528,6452],[379913,44450,6452],[385366,61644,6452],[373646,46546,6452],[373636,46516,6452],[373220,46223,6452],[373624,46486,6452],[373556,46379,6452],[373610,46458,6452],[373594,46430,6452],[373576,46404,6452],[373461,46295,6452],[373534,46356,6452],[373511,46334,6452],[373487,46314,6452],[373433,46279,6452],[373405,46265,6452],[373283,46228,6452],[373376,46252,6452],[373345,46242,6452],[373315,46234,6452],[373252,46225,6452],[373125,46233,6452],[373188,46224,6452],[373156,46228,6452],[366829,47900,6452],[385535,61769,6452],[389122,59387,6452],[386731,62656,6452],[427205,83282,6452],[428972,80753,6452],[426922,83461,6452],[427742,84047,6452],[427925,83785,6452],[423945,66825,6452],[429692,81256,6452],[429875,80994,6452],[433996,76230,6452],[430424,81368,6452],[438993,67054,6452],[439132,66863,6452],[440005,67586,6452],[439885,67759,6452],[440045,67529,6452],[433002,62836,6452],[431881,62005,6452],[433290,62427,6452],[432149,61624,6452],[428849,59870,6452],[405974,54155,352],[416101,61295,352],[404992,53462,352],[399888,49863,352],[399010,49244,352],[398196,48188,352],[397907,47100,352],[396198,40656,352],[396015,40703,352],[389578,42358,352],[389466,41932,352],[386278,42772,352],[385960,42856,352],[386011,43050,352],[386069,43272,352],[386243,43226,352],[386610,44619,352],[383712,45382,352],[383345,43990,352],[383519,43944,352],[383461,43722,352],[383410,43528,352],[383101,43610,352],[379913,44450,352],[380026,44875,352],[373646,46546,352],[373636,46516,352],[373624,46486,352],[373610,46458,352],[373594,46430,352],[373576,46404,352],[373556,46379,352],[373534,46356,352],[373511,46334,352],[373487,46314,352],[373461,46295,352],[373433,46279,352],[373405,46265,352],[373376,46252,352],[373345,46242,352],[373315,46234,352],[373283,46228,352],[373252,46225,352],[373220,46223,352],[373188,46224,352],[373156,46228,352],[373125,46233,352],[366829,47900,352],[385366,61644,352],[385535,61769,352],[386731,62656,352],[389122,59387,352],[387926,58500,352],[389219,56732,352],[393184,59554,352],[393347,59669,352],[424165,81601,352],[426922,83461,352],[427742,84047,352],[427925,83785,352],[427205,83282,352],[428972,80753,352],[429692,81256,352],[429875,80994,352],[430424,81368,352],[433996,76230,352],[439885,67759,352],[440005,67586,352],[440045,67529,352],[439132,66863,352],[438993,67054,352],[433002,62836,352],[433290,62427,352],[432149,61624,352],[431881,62005,352],[428849,59870,352],[423945,66825,352],[239127,126716,3342],[236526,130339,3342],[226148,117412,3342],[225229,117961,3342],[222235,119812,3342],[225196,117911,3342],[222043,119937,3342],[222075,119915,3342],[239127,126716,432],[236526,130339,432],[239127,126716,442],[236526,130339,442],[236526,130339,452],[236526,130339,3322],[226148,117412,432],[226148,117412,442],[225229,117961,432],[225196,117911,432],[222235,119812,432],[222075,119915,432],[222043,119937,432],[222043,119937,452],[222043,119937,3322],[227727,127337,3322],[236681,133773,3322],[238272,131560,3322],[225757,130078,3322],[220489,120985,3322],[217534,122981,3322],[217751,122834,3322],[217723,122793,3322],[217511,122947,3322],[216716,123533,3322],[216499,123680,3322],[216693,123500,3322],[216477,123647,3322],[227727,127337,452],[225757,130078,452],[225757,130078,482],[225757,130078,2942],[236681,133773,452],[236681,133773,532],[238272,131560,452],[238272,131560,532],[220489,120985,452],[217751,122834,452],[217723,122793,452],[217511,122947,452],[217534,122981,452],[216716,123533,452],[216693,123500,452],[216477,123647,452],[216499,123680,452],[216499,123680,482],[216499,123680,2942],[224136,131931,2942],[216459,123706,2942],[209579,128491,2942],[209404,128301,2942],[216677,133640,2942],[220906,136370,2942],[220783,136540,2942],[227506,134382,2942],[228961,132382,2942],[228961,132382,482],[228961,132382,512],[228961,132382,2932],[216459,123706,482],[209404,128301,482],[209579,128491,482],[216677,133640,482],[220783,136540,482],[220906,136370,482],[224136,131931,482],[227506,134382,482],[227506,134382,512],[227506,134382,2932],[234710,136515,2932],[229924,143320,2932],[224254,138853,2932],[224130,139023,2932],[234710,136515,512],[229924,143320,512],[234710,136515,532],[229924,143320,532],[224254,138853,512],[224130,139023,512],[243507,120624,3752],[235960,110991,3752],[245458,117882,3752],[235767,111116,3752],[235667,111182,3752],[230733,114421,3752],[250725,125757,3752],[244733,124162,3752],[230711,114435,3752],[249506,127469,3752],[243507,120624,442],[250725,125757,442],[245458,117882,442],[245458,117882,3722],[235960,110991,442],[235960,110991,3722],[235767,111116,442],[235667,111182,442],[230733,114421,442],[230711,114435,442],[230711,114435,3502],[244733,124162,442],[244733,124162,3502],[249506,127469,442],[239127,126716,3502],[226148,117412,3502],[226126,117378,3502],[238272,131560,3502],[236526,130339,3502],[241718,128399,3502],[241296,133674,3502],[244031,130002,3502],[226126,117378,442],[238272,131560,442],[238272,131560,3472],[241296,133674,442],[241296,133674,532],[241296,133674,3472],[244031,130002,442],[241718,128399,442],[269724,125155,3522],[270795,125813,3522],[267552,130267,3522],[261643,128933,3522],[263699,126130,3522],[267997,124111,3522],[262301,125150,3522],[264561,122034,3522],[264198,134874,3522],[269483,138574,3522],[265579,138864,3522],[258205,133620,3522],[268771,139552,3522],[268012,140591,3522],[264198,134874,892],[269483,138574,892],[264198,134874,1062],[269483,138574,1062],[267552,130267,892],[267552,130267,942],[267552,130267,1062],[270795,125813,892],[270795,125813,942],[269724,125155,892],[267997,124111,892],[264561,122034,892],[262301,125150,892],[263699,126130,892],[261643,128933,892],[258205,133620,892],[265579,138864,892],[268012,140591,892],[268771,139552,892],[275036,133500,4422],[274068,134829,4422],[273822,132617,4422],[276094,129496,4422],[270902,125879,4422],[276223,129318,4422],[270969,125770,4422],[267552,130267,4422],[270795,125813,4422],[272838,133968,4422],[276094,129496,942],[273822,132617,942],[276223,129318,942],[270969,125770,942],[270902,125879,942],[272838,133968,942],[272838,133968,1062],[274068,134829,942],[274068,134829,1062],[275036,133500,942],[239663,138633,3472],[234006,146275,3472],[239243,138352,3472],[242030,134187,3472],[234710,136515,3472],[236681,133773,3472],[229924,143320,3472],[239663,138633,532],[234006,146275,532],[239663,138633,542],[234006,146275,542],[239243,138352,532],[242030,134187,532],[336628,67047,3532],[335233,68866,3532],[330422,68973,3532],[327637,59791,3532],[321413,61704,3532],[331944,73148,3532],[329127,70864,3532],[329010,70770,3532],[335350,68960,3532],[336628,67047,372],[335233,68866,372],[336628,67047,3422],[335233,68866,3422],[327637,59791,372],[327637,59791,3422],[321413,61704,372],[321413,61704,392],[321413,61704,3332],[330422,68973,372],[330422,68973,392],[330422,68973,3332],[329010,70770,372],[329010,70770,392],[329010,70770,3332],[329127,70864,372],[329127,70864,392],[329127,70864,3332],[331944,73148,372],[335350,68960,372],[335350,68960,3422],[342837,65118,3422],[341467,66952,3422],[333863,57877,3422],[338190,71237,3422],[341584,67046,3422],[342837,65118,352],[341467,66952,352],[342837,65118,3402],[341467,66952,3402],[333863,57877,352],[333863,57877,3402],[327637,59791,352],[336628,67047,352],[335233,68866,352],[335350,68960,352],[338190,71237,352],[341584,67046,352],[341584,67046,3402],[300751,123562,3242],[298348,126781,3242],[300619,123464,3242],[307689,114842,3242],[307743,114881,3242],[302333,122177,3242],[301963,121903,3242],[295840,125794,3242],[299917,120333,3242],[298495,119282,3242],[303927,112023,3242],[297958,127303,3242],[300751,123562,592],[298348,126781,592],[300751,123562,602],[298348,126781,602],[300619,123464,592],[300619,123464,602],[301963,121903,592],[301963,121903,602],[302333,122177,592],[302333,122177,602],[307743,114881,592],[307743,114881,602],[307689,114842,592],[303927,112023,592],[303927,112023,3212],[298495,119282,592],[298495,119282,3212],[299917,120333,592],[295840,125794,592],[297958,127303,592],[310952,117539,3242],[311149,117439,3242],[311033,117598,3242],[311186,117388,3242],[303888,123272,3242],[300222,128181,3242],[305973,124814,3242],[310952,117539,602],[305973,124814,602],[311033,117598,602],[311149,117439,602],[311186,117388,602],[300222,128181,602],[303888,123272,602],[333629,110741,3612],[334337,109627,3612],[334429,109693,3612],[328224,117845,3612],[332862,110155,3612],[333645,109130,3612],[324201,114896,3612],[329609,107676,3612],[328185,117897,3612],[333629,110741,472],[328224,117845,472],[333629,110741,532],[328224,117845,532],[333629,110741,3552],[328224,117845,3552],[334429,109693,472],[334429,109693,532],[334429,109693,3552],[334337,109627,472],[334337,109627,532],[334337,109627,3552],[333645,109130,472],[332862,110155,472],[329609,107676,472],[324201,114896,472],[328185,117897,472],[339502,112081,3552],[335044,108676,3552],[332700,121225,3552],[330739,119790,3552],[330692,119855,3552],[332653,121289,3552],[339502,112081,532],[332700,121225,532],[339502,112081,3402],[332700,121225,3402],[335044,108676,532],[330739,119790,532],[330692,119855,532],[332653,121289,532],[330278,165190,3562],[337488,172404,3562],[329617,165846,3562],[327202,166245,3562],[328100,165355,3562],[322013,165861,3562],[324437,163457,3562],[325634,169480,3562],[333046,176505,3562],[333151,176613,3562],[332956,176802,3562],[333737,175835,3562],[333841,175943,3562],[330278,165190,612],[337488,172404,612],[330278,165190,3462],[337488,172404,3462],[329617,165846,612],[328100,165355,612],[327202,166245,612],[324437,163457,612],[322013,165861,612],[325634,169480,612],[332956,176802,612],[333151,176613,612],[333046,176505,612],[333737,175835,612],[333841,175943,612],[311662,117706,6562],[334866,135470,6562],[311601,117785,6562],[311473,117952,6562],[329358,142664,6562],[306154,124900,6562],[311662,117706,652],[334866,135470,652],[311601,117785,652],[311473,117952,652],[306154,124900,652],[329358,142664,652],[383533,127735,6612],[383844,127529,6612],[383582,127785,6612],[375381,119436,6612],[379831,129659,6612],[370898,123632,6612],[378379,131056,6612],[380351,130200,6612],[380185,130027,6612],[380504,130358,6612],[380650,130510,6612],[380026,129861,6612],[375381,119436,662],[383844,127529,662],[375381,119436,672],[383844,127529,672],[370898,123632,662],[370898,123632,6512],[378379,131056,662],[378379,131056,6512],[379831,129659,662],[380026,129861,662],[380185,130027,662],[380351,130200,662],[380504,130358,662],[380650,130510,662],[383533,127735,662],[383582,127785,662],[383532,119200,7122],[379084,115970,7122],[378597,114168,7122],[377999,114811,7122],[375381,119436,7122],[383844,127529,7122],[386585,124680,7122],[386669,124766,7122],[387457,123827,7122],[387979,123489,7122],[387541,123913,7122],[383532,119200,672],[387979,123489,672],[383532,119200,692],[387979,123489,692],[383532,119200,6982],[387979,123489,6982],[378597,114168,672],[378597,114168,692],[378597,114168,6982],[377999,114811,672],[379084,115970,672],[386669,124766,672],[386585,124680,672],[387457,123827,672],[387541,123913,672],[341965,117106,3402],[341985,113977,3402],[345747,112222,3402],[344220,111091,3402],[336346,124117,3402],[336460,124214,3402],[341965,117106,522],[336460,124214,522],[341965,117106,532],[336460,124214,532],[345747,112222,522],[344220,111091,522],[341985,113977,522],[339502,112081,522],[332700,121225,522],[336346,124117,522],[345842,120332,3912],[345998,120187,3912],[345877,120344,3912],[345831,120060,3912],[343263,123652,3912],[341965,117106,3912],[336460,124214,3912],[340546,127151,3912],[340089,127302,3912],[340215,127239,3912],[340389,127353,3912],[340410,127326,3912],[345842,120332,532],[343263,123652,532],[345877,120344,532],[345998,120187,532],[345831,120060,532],[340089,127302,532],[340215,127239,532],[340389,127353,532],[340410,127326,532],[340546,127151,532],[374145,136526,3402],[374765,136104,3402],[374236,136620,3402],[366730,127732,3402],[363790,127886,3402],[365367,126410,3402],[365182,129373,3402],[364046,132734,3402],[362744,131655,3402],[371114,139667,3402],[371183,139739,3402],[370970,139949,3402],[373174,137474,3402],[373265,137567,3402],[366730,127732,612],[374765,136104,612],[366730,127732,622],[374765,136104,622],[365367,126410,612],[365367,126410,622],[363790,127886,612],[365182,129373,612],[362744,131655,612],[364046,132734,612],[370970,139949,612],[371183,139739,612],[371114,139667,612],[373265,137567,612],[373174,137474,612],[374145,136526,612],[374236,136620,612],[365367,126410,6512],[366081,125741,6512],[367279,127020,6512],[377511,132933,6512],[377664,133091,6512],[374855,136016,6512],[366730,127732,6512],[376991,132392,6512],[374765,136104,6512],[377809,133242,6512],[374890,136052,6512],[377345,132760,6512],[377185,132594,6512],[370898,123632,622],[378379,131056,622],[367279,127020,622],[366081,125741,622],[374855,136016,622],[374890,136052,622],[377809,133242,622],[377664,133091,622],[377511,132933,622],[377345,132760,622],[377185,132594,622],[376991,132392,622],[339535,156468,3462],[346572,163545,3462],[337013,158896,3462],[332416,158272,3462],[335552,157450,3462],[335673,157548,3462],[335425,157360,3462],[335293,157278,3462],[335155,157206,3462],[335013,157142,3462],[334867,157088,3462],[334717,157044,3462],[334565,157010,3462],[334412,156986,3462],[334257,156972,3462],[334101,156968,3462],[333945,156974,3462],[333791,156991,3462],[333637,157018,3462],[333486,157055,3462],[333338,157102,3462],[333192,157158,3462],[333051,157224,3462],[332915,157299,3462],[332784,157383,3462],[332658,157475,3462],[332539,157575,3462],[332427,157683,3462],[332133,157988,3462],[342098,168006,3462],[342243,167740,3462],[342306,167805,3462],[342940,167068,3462],[343003,167132,3462],[346643,163616,3462],[339535,156468,582],[346572,163545,582],[339535,156468,602],[346572,163545,602],[337013,158896,582],[335673,157548,582],[335552,157450,582],[335425,157360,582],[335293,157278,582],[335155,157206,582],[335013,157142,582],[334867,157088,582],[334717,157044,582],[334565,157010,582],[334412,156986,582],[334257,156972,582],[334101,156968,582],[333945,156974,582],[333791,156991,582],[333637,157018,582],[333486,157055,582],[333338,157102,582],[333192,157158,582],[333051,157224,582],[332915,157299,582],[332784,157383,582],[332658,157475,582],[332539,157575,582],[332427,157683,582],[332133,157988,582],[332133,157988,592],[332416,158272,582],[332416,158272,592],[342098,168006,582],[342098,168006,592],[342306,167805,582],[342243,167740,582],[342940,167068,582],[343003,167132,582],[346643,163616,582],[330728,158839,3462],[330955,157510,3462],[331304,157155,3462],[330891,157648,3462],[330837,157790,3462],[330792,157935,3462],[330757,158083,3462],[330731,158233,3462],[330716,158384,3462],[330710,158536,3462],[330714,158688,3462],[330752,158989,3462],[330786,159137,3462],[330829,159283,3462],[330882,159425,3462],[330944,159564,3462],[331015,159698,3462],[331095,159828,3462],[331183,159952,3462],[331279,160070,3462],[331382,160181,3462],[331493,160285,3462],[331610,160382,3462],[331731,160469,3462],[328600,163511,3462],[341152,168809,3462],[337516,172432,3462],[341207,168866,3462],[341848,168136,3462],[341904,168194,3462],[331304,157155,592],[330955,157510,592],[330891,157648,592],[330837,157790,592],[330792,157935,592],[330757,158083,592],[330731,158233,592],[330716,158384,592],[330710,158536,592],[330714,158688,592],[330728,158839,592],[330752,158989,592],[330786,159137,592],[330829,159283,592],[330882,159425,592],[330944,159564,592],[331015,159698,592],[331095,159828,592],[331183,159952,592],[331279,160070,592],[331382,160181,592],[331493,160285,592],[331610,160382,592],[331731,160469,592],[328600,163511,592],[330278,165190,592],[337488,172404,592],[337516,172432,592],[341207,168866,592],[341152,168809,592],[341848,168136,592],[341904,168194,592],[378317,75059,1124],[378738,76596,682],[377529,76956,857],[378953,67998,918],[378587,68443,1159],[377742,67890,918],[373456,54525,332],[365076,48582,332],[365016,48381,332],[380668,58689,515],[376187,56381,463],[372503,56010,577],[374585,57769,608],[371945,56696,332],[384526,65287,864],[382738,64682,838],[384706,64101,977],[373775,55133,639],[375964,60288,883],[374095,60410,332],[375135,58915,332],[380442,60171,875],[381590,62000,962],[378229,62590,794],[373009,59762,719],[370804,59271,762],[369207,57009,332],[372690,60488,787],[367241,55868,332],[369100,57162,332],[365988,57669,332],[373463,63139,818],[373677,61374,741],[372314,62577,749],[372515,62210,332],[372561,62211,757],[378031,69930,1171],[379546,68901,917],[379880,71279,1195],[384732,68178,682],[384261,67604,953],[384784,68103,672],[374756,69498,802],[376554,68936,522],[376888,69842,857],[373034,69360,522],[374379,67423,522],[374694,69165,568],[372674,70180,522],[372813,71421,1023],[371411,70507,935],[377902,68940,1200],[370850,68928,522],[371160,68032,522],[371346,68158,522],[370300,69525,717],[369193,70925,552],[370939,70838,821],[371618,71860,1328],[373350,70343,921],[373163,69450,522],[378153,77385,572],[378752,75318,1265],[378838,76596,682],[379439,74847,1207],[379390,74488,1186],[380006,74941,682],[379096,75255,1270],[380722,73916,692],[382727,71047,692],[382497,71375,692],[381895,70985,1141],[382655,70055,924],[383280,68727,940],[383344,69097,1141],[386736,65309,672],[373539,71705,1033],[372569,72449,1123],[370119,70913,889],[380526,72860,1410],[377697,67564,879],[380459,72529,1088],[380042,72602,999],[379665,63651,784],[381947,64688,972],[372863,61819,752],[372229,61924,757],[373381,70669,741],[374031,70620,827],[374716,72589,872],[375039,71535,1003],[376119,72727,859],[377192,74286,1068],[377100,76671,815],[375437,58990,622],[383944,63083,890],[384149,62559,640],[384456,62888,932],[381038,71337,1288],[375225,65972,841],[377272,67293,892],[377489,67592,522],[378927,64188,994],[378422,63976,930],[371615,63504,522],[372030,62939,741],[380141,73278,1134],[377013,68392,571],[378551,73986,922],[379016,71794,944],[379970,74992,682],[374312,72657,990],[372633,73112,804],[373721,54764,549],[376516,58775,629],[377832,59562,857],[376570,59102,782],[377357,67968,832],[374320,69549,954],[375564,75542,941],[373046,70730,589],[381667,62641,854],[382381,61992,839],[384741,61873,652],[377629,72800,1039],[377680,70340,962],[373873,74378,785],[370241,71886,809],[373686,64820,828],[382726,61501,608],[384626,63012,952],[378501,64625,828],[381331,60249,576],[369192,71195,726],[383784,62028,621],[383653,61029,640],[383963,61222,523],[374217,74702,854],[377692,58532,804],[378539,58331,537],[380326,59470,540],[379919,59280,536],[383536,62220,799],[381021,64561,823],[375038,74944,1024],[377379,73518,945],[376217,73384,1024],[376871,58713,787],[369022,71216,552],[429299,81775,985],[301265,70135,422],[300020,70398,422],[301115,69841,422],[300485,71174,422],[301740,70990,422],[300849,71465,422],[301318,70108,422],[299899,70202,502],[301109,69587,502],[301213,69791,422],[368423,74284,532],[367730,73718,552],[367581,72284,492],[369135,81747,562],[374018,77507,572],[368699,83874,532],[367859,81872,552],[365005,78391,512],[368444,81194,562],[371843,77063,562],[362319,78609,522],[364451,79065,512],[363752,78488,512],[367153,74399,552],[364339,77831,512],[367862,74980,542],[368562,82424,552],[371266,77751,552],[371965,78332,562],[372533,77636,572],[206259,124886,592],[206430,125176,602],[206072,124984,592],[203991,124758,1646],[203422,125508,532],[203362,125366,532],[205424,125285,1024],[203563,126816,612],[205961,124910,602],[205853,124832,602],[205748,124750,572],[203339,125375,532],[203289,125360,522],[205503,124574,873],[205549,124572,562],[205647,124663,562],[205339,124120,492],[205312,124246,512],[205282,124282,512],[205033,123903,302],[205140,123842,302],[204655,124504,1522],[205365,124379,542],[205455,124477,542],[204997,125089,1134],[203174,124969,302],[203199,125198,642],[203223,125341,522],[203051,125040,302],[204439,125348,1130],[203472,125654,532],[203545,125954,552],[203568,126107,572],[203581,126261,572],[203584,126415,602],[203392,126503,572],[203513,125803,552],[271430,87656,642],[271448,87794,462],[271373,87623,642],[271245,87911,462],[271358,87914,462],[271313,87594,642],[271242,88061,462],[270314,88038,462],[271191,87545,632],[271128,87525,632],[271064,87509,632],[270999,87496,632],[270983,87493,632],[270966,87490,632],[270950,87488,632],[270933,87486,632],[270917,87484,632],[270901,87482,632],[270884,87481,632],[270807,87477,632],[270317,87888,462],[270730,87478,632],[270653,87484,632],[270576,87494,632],[270500,87509,622],[270426,87529,622],[270352,87553,622],[270281,87582,612],[270211,87615,612],[270126,87752,462],[270215,87885,462],[271253,87568,632],[332686,144539,782],[332436,144378,1084],[332970,144157,782],[331628,145191,965],[332108,145087,1116],[330394,147703,972],[329197,147149,852],[330231,147828,972],[331587,144834,1055],[332066,144765,1120],[332003,143482,802],[332334,143714,901],[355778,62380,722],[355283,62068,515],[355806,61882,452],[353558,73686,512],[354587,73277,577],[353588,73781,512],[350601,70925,487],[351559,68783,522],[352683,71618,462],[354711,68167,629],[354570,67168,504],[357415,66125,526],[360442,69813,618],[362380,70939,482],[357326,72485,462],[357289,72370,462],[362409,71034,482],[363541,70673,482],[363485,70491,482],[361480,68902,482],[356820,65747,538],[359510,69501,491],[361196,66437,619],[359466,65749,548],[359610,64760,452],[353573,69607,517],[354113,69804,462],[356415,64736,802],[355739,65426,699],[355152,64737,520],[356434,62705,741],[356398,62390,811],[356518,62628,452],[355627,61329,566],[355243,61714,616],[348398,65619,530],[347783,65119,342],[350608,67366,342],[335823,79075,586],[334918,79541,482],[334888,79445,482],[342148,67543,739],[344407,69328,342],[332506,80192,472],[332474,80086,472],[336544,69975,523],[329903,71497,584],[321939,79954,650],[325515,83193,522],[320188,78913,572],[325162,74628,575],[322904,72789,422],[325717,75056,392],[329843,80899,472],[329898,81081,472],[328741,81365,502],[322157,74066,835],[322930,72940,908],[322985,73307,1000],[324112,75162,689],[324137,75468,468],[323863,75486,672],[320326,78742,552],[325912,76898,601],[323650,75899,481],[327823,79309,472],[328768,81461,502],[326387,82038,512],[326962,77770,624],[326182,75513,482],[328549,76731,598],[329303,77535,472],[333507,74016,518],[332213,73299,657],[332162,72976,546],[344102,69970,570],[343211,69105,591],[331349,76013,488],[329392,77546,640],[334015,77396,462],[335996,79005,462],[336052,79187,462],[338769,71734,474],[338650,70769,588],[332145,79642,618],[332533,78132,465],[336842,75079,597],[336432,72057,496],[338150,71514,587],[332167,77538,640],[341119,77518,592],[338658,78281,462],[338623,78167,462],[337992,77333,596],[340263,75472,462],[342290,77249,462],[341149,77613,592],[342235,77067,462],[345970,71512,505],[346441,73557,462],[344367,72000,486],[342027,68264,646],[341295,68376,514],[341205,67697,524],[347323,75602,472],[344903,76352,462],[344871,76247,462],[341696,73660,462],[343229,71857,492],[348445,75162,462],[348501,75344,462],[347353,75697,602],[345112,70569,564],[345529,68126,616],[349848,71664,746],[350826,72613,514],[350291,72993,898],[349779,73029,829],[351070,74331,462],[347875,71756,462],[354673,73230,462],[350926,73296,641],[351105,74446,462],[354730,73411,462],[323242,75306,858],[321805,75142,539],[321302,75234,509],[349335,67899,516],[350482,67516,357],[351062,68492,683],[355947,63707,637],[357499,64472,885],[341929,67602,518],[349761,66900,721],[349563,67607,682],[331336,73565,585],[329766,73964,498],[329005,71372,525],[356619,62423,452],[355872,63062,783],[355550,61263,342],[356717,62771,785],[358866,64446,820],[347299,70446,629],[343528,71462,642],[343135,71156,497],[351290,66745,532],[351844,67359,497],[349738,70950,518],[353808,69585,644],[337622,70891,519],[335669,71845,487],[334853,69577,528],[336354,71389,644],[325248,75278,559],[319133,77746,635],[318955,77641,422],[323313,75974,606],[325597,77962,476],[322850,75669,706],[330662,73775,650],[335312,69132,535],[355039,63760,736],[352023,65647,550],[338911,70728,673],[340876,71874,608],[341564,67329,524],[346006,67381,574],[347892,65267,537],[359346,64748,705],[358995,65461,752],[354977,70196,595],[357668,65827,770],[359688,64644,452],[326509,74408,522],[326552,74740,523],[326105,74838,656],[327962,72354,539],[330866,72300,621],[330626,73462,740],[353971,68561,676],[357068,65464,745],[354581,64066,524],[352852,66274,605],[331587,77698,691],[332701,74589,671],[334691,76200,674],[335454,75588,462],[355988,61617,452],[322402,76063,525],[350719,69223,498],[346855,72098,590],[352337,68006,575],[351875,67682,329],[356779,65415,579],[335836,75270,511],[325687,75233,569],[354098,69571,602],[343737,70382,656],[343484,71118,673],[340187,70239,512],[342500,68512,511],[336256,76212,578],[336547,75870,472],[322969,76673,502],[334995,75474,646],[344663,70607,676],[344749,71281,634],[362870,67179,482],[358091,124745,760],[357082,124503,637],[358992,121239,760],[383663,110215,395],[383647,109884,773],[384940,109919,344],[377880,96460,982],[376887,96647,922],[378571,95238,652],[385950,104720,708],[386001,105063,781],[384527,103426,751],[387330,102868,119],[388311,103919,109],[387463,103868,117],[375672,106488,1118],[374824,106542,924],[375618,106134,1023],[388050,101536,892],[389892,100515,1009],[390013,101920,94],[394879,100780,1049],[395332,100813,752],[394810,101263,752],[396849,100122,1029],[397380,99175,752],[397818,99643,752],[395512,99049,1022],[393511,100035,1110],[396519,99923,1036],[397311,99102,752],[396083,98744,1132],[394904,97571,987],[397570,97315,736],[395879,97399,753],[398064,94345,772],[389077,99560,1056],[390141,100179,752],[400383,95053,732],[398481,93870,964],[397900,93012,946],[392065,98383,1054],[391890,98542,752],[391713,98567,974],[379721,103700,818],[380678,103927,467],[380791,104565,860],[393299,95469,758],[397763,92930,782],[394756,96588,740],[390654,99509,1046],[390395,101006,970],[388947,93483,840],[390218,93477,892],[389219,95503,908],[392536,102458,79],[392851,102605,752],[391868,103146,58],[380649,89881,772],[382080,91357,832],[379810,90680,872],[381405,92312,842],[387898,93008,824],[387544,92485,814],[356120,119089,765],[354205,118750,852],[356622,118731,775],[358280,119246,1091],[357733,118614,1169],[358961,117792,1113],[344262,130349,632],[349681,124087,842],[348499,126936,712],[345057,130934,572],[352328,121998,863],[353479,119519,852],[353159,121253,872],[348667,126740,712],[355624,123539,690],[354959,124928,1051],[354349,124634,712],[349785,125125,842],[352016,122762,712],[353960,120558,868],[355559,119465,995],[353700,120762,692],[369243,105289,802],[358012,114963,922],[355295,127644,722],[353009,127073,999],[353270,126360,978],[356100,133705,740],[354421,135197,716],[355610,133073,751],[355202,132736,791],[355590,132702,1160],[355112,132056,795],[355481,132049,850],[357290,136026,843],[357245,135710,808],[358808,135339,612],[356974,133670,794],[359996,132459,644],[361812,131907,740],[358911,135242,612],[360602,130291,945],[360924,129929,710],[361314,130248,837],[364043,128448,411],[369723,115255,932],[367227,118237,975],[365368,113580,1003],[359352,120845,940],[357884,119992,728],[365566,118999,845],[366428,121659,897],[364458,119313,889],[360195,121798,779],[362454,123320,1042],[362203,124721,774],[367103,126721,1003],[365609,108825,923],[368879,109251,802],[367455,111211,984],[375222,118925,874],[369060,110184,1004],[371824,109786,1096],[381766,92620,834],[383247,93693,870],[378980,98010,970],[379235,96257,915],[379778,96870,932],[385180,95850,977],[384908,96627,1106],[384391,96874,970],[381492,92353,652],[367078,107418,802],[372313,121795,930],[374299,102491,1063],[376448,100665,642],[376593,103042,951],[373873,106509,1155],[372668,105762,1399],[374097,106162,1003],[370502,114922,1109],[371301,116360,1112],[372931,108148,678],[372384,107788,464],[378015,97470,1011],[377518,97182,642],[377503,96837,925],[370755,104692,1354],[371045,107122,802],[389000,96368,1218],[387995,97985,1155],[386598,96793,1155],[375109,113912,870],[376460,112555,925],[377542,113161,1041],[381077,103841,782],[382029,103278,815],[373700,100836,887],[375228,99410,642],[376947,97597,936],[372115,105069,1694],[380799,111783,928],[379100,111675,876],[380538,109780,983],[386922,102673,120],[386580,103476,120],[386489,102797,105],[381277,97567,878],[382151,98447,1038],[379628,99251,868],[385789,103359,968],[382497,101123,925],[382665,102471,776],[380000,102296,451],[390518,102402,104],[392104,101965,131],[390835,100857,1081],[391324,101343,990],[386410,101785,876],[356287,131956,900],[352028,136394,572],[355390,132400,572],[388358,106810,112],[387554,104538,169],[376006,105108,1261],[376750,104404,632],[376536,105410,1281],[382717,109743,692],[377923,107351,1266],[378128,106306,1374],[378506,106951,1301],[378628,98740,890],[378859,98320,642],[377971,105285,1070],[377916,104976,886],[378302,105611,910],[383001,98584,876],[373977,119543,1034],[372037,117450,953],[379156,106223,801],[361859,122015,958],[360644,121026,1222],[356251,120096,739],[354901,121506,870],[385668,96048,1152],[390460,93686,892],[385452,102802,1072],[389860,96978,963],[372436,108143,529],[371596,108093,1042],[371660,105077,1352],[383800,90394,918],[385337,93709,872],[395358,91206,925],[395086,91374,806],[393947,89661,852],[387927,104033,507],[386604,106947,295],[387830,106540,323],[388179,106978,312],[386881,105459,668],[383938,109093,709],[384350,109045,364],[388090,102200,209],[383305,109924,880],[377228,105045,737],[376717,104033,865],[376317,104100,650],[390455,101693,528],[387629,101665,707],[387953,100861,790],[372176,120775,889],[370843,117612,915],[372122,108773,999],[367823,125689,810],[367542,126686,1008],[396562,98105,746],[377147,104365,862],[378083,101205,959],[356581,134362,555],[356199,134405,815],[353345,135989,741],[354200,136210,708],[352754,137007,932],[379027,101777,851],[379858,100962,911],[379068,98659,996],[378040,108395,964],[376914,108457,937],[377644,108060,988],[377146,107089,1220],[387426,106383,288],[386992,106509,264],[376145,106122,1324],[372641,105411,1656],[356040,126555,906],[354993,125257,923],[363665,129089,605],[357754,129545,708],[359875,131393,929],[359071,132202,653],[356033,132994,1109],[381672,106114,716],[378479,104214,957],[380253,107760,736],[381706,108535,891],[380007,109181,869],[377172,107415,972],[389152,97690,900],[359224,119824,1035],[357601,117615,1182],[357495,116957,912],[359188,116765,754],[365111,126414,847],[364787,126013,871],[365342,126054,839],[359658,129742,943],[364569,126697,618],[355811,122897,692],[356951,127197,924],[367068,119924,864],[364138,119002,911],[362650,117605,951],[366397,111830,1179],[395228,97054,745],[397257,98160,860],[397473,98888,752],[375784,110854,1071],[375303,112922,1028],[374168,110846,1016],[375760,107166,1093],[375432,108177,1109],[390570,95612,1075],[391309,95551,915],[370785,123341,856],[370153,122317,983],[372279,116468,939],[371810,115741,928],[385142,95493,1109],[384778,88569,842],[385587,89393,733],[389710,99200,905],[390214,100111,752],[395782,101077,1033],[395309,100604,1027],[381696,95072,940],[382841,93761,940],[383433,95010,1045],[386438,92618,835],[385780,93576,1037],[383888,110994,692],[386580,106591,638],[384327,108698,693],[367177,123978,912],[363369,122996,1027],[376718,110513,1216],[377015,109123,1125],[377187,110456,1076],[377748,114838,832],[376810,111159,1307],[378194,112076,1259],[381014,103528,479],[380135,103319,444],[375621,98689,902],[369857,123684,917],[371909,116408,1079],[378615,112743,985],[379030,113372,965],[378818,111697,1084],[378915,110322,791],[395909,101430,752],[355614,138145,771],[355534,137475,878],[356100,136798,710],[354789,137880,876],[354339,137246,738],[353081,130503,852],[350845,128796,712],[351485,128617,893],[351854,128241,785],[359629,115379,726],[363223,118558,1156],[362277,118268,1183],[373688,110177,1034],[373040,108812,975],[384036,102855,810],[380733,96320,953],[379888,96571,652],[382440,97684,881],[383342,97493,1021],[383375,97818,882],[386974,106168,635],[382414,109054,897],[386237,107077,343],[384763,108569,366],[384741,108239,688],[386213,106717,675],[372198,105746,1619],[372142,105411,1444],[362131,117241,1041],[376078,109506,1208],[360171,115352,909],[360206,115677,792],[354999,138904,602],[357838,125493,646],[357196,131970,723],[374680,110521,1115],[362567,131821,612],[397821,92862,782],[376429,112212,1125],[355688,136456,709],[362545,120302,1164],[363914,119242,1145],[363571,124692,731],[375593,105810,1264],[376736,107101,955],[375226,109539,1015],[387972,95518,1181],[387477,100332,1068],[388541,99880,1070],[385118,98324,899],[386056,99110,891],[384345,98958,873],[388835,100069,842],[383916,101836,996],[386232,100433,905],[385271,101457,1029],[386954,99463,1185],[388619,98383,948],[387270,102180,560],[386629,97108,1010],[388332,93893,1152],[363220,125713,618],[382808,93685,652],[387423,93643,1220],[384322,94400,808],[381791,109251,767],[381394,106190,863],[380916,105578,736],[359498,132128,834],[358779,132597,637],[353708,135233,852],[370450,114615,956],[352763,128134,788],[363138,121316,910],[379615,103059,521],[379245,103449,818],[378625,107949,1110],[387605,92849,1005],[362463,126763,625],[365297,125739,787],[360060,126280,795],[361318,128230,627],[365586,125731,960],[359188,126368,631],[360694,130998,924],[361919,125774,838],[377299,100269,935],[370145,114888,1084],[378181,115143,833],[394383,97076,975],[392921,95655,980],[381859,107493,777],[367707,121982,778],[367629,121262,1011],[386499,98947,1128],[353592,120559,856],[368515,123974,937],[387122,100824,1011],[374424,106181,1166],[375884,108163,989],[361856,130522,639],[361455,129181,778],[384135,97262,1082],[386366,97947,1123],[384827,98101,1031],[382883,101060,828],[357793,127518,912],[361104,131288,714],[376207,106784,955],[375701,106811,937],[384265,98281,1010],[369042,123333,833],[381193,107600,868],[374117,110538,878],[360764,131675,663],[354546,124958,925],[384473,97525,916],[398659,70497,848],[398468,69586,642],[401530,71735,642],[401529,74294,672],[404590,73882,642],[402798,75182,672],[415594,87649,660],[414786,89231,922],[414442,89280,654],[407835,95496,722],[404087,98098,732],[410628,91292,642],[386659,73820,692],[388676,70959,682],[390250,72398,692],[405917,99519,732],[405800,99642,732],[407754,97287,652],[409227,102072,822],[408923,102395,732],[387469,76341,692],[382678,79467,682],[384643,76680,692],[407871,97410,652],[409354,102068,822],[409292,102133,822],[410714,100492,852],[410921,100809,852],[409557,102259,822],[410718,100618,852],[410857,93451,817],[411902,91866,817],[412302,92558,642],[410779,100553,852],[411000,100173,652],[407900,97382,652],[408498,95615,675],[408171,95743,497],[410291,94649,652],[411842,91508,634],[413475,90202,647],[418337,86285,652],[416325,88376,652],[419920,84639,652],[416739,84934,662],[410070,78074,768],[410714,78179,632],[413774,80327,632],[416639,82337,652],[407652,76031,642],[404249,74622,806],[397666,70097,681],[393081,68385,682],[392563,65443,652],[395406,67438,652],[390692,68098,672],[378297,85752,768],[377821,86359,572],[378429,86762,743],[381985,84115,682],[414314,90467,642],[413884,90103,464],[411698,90178,642],[379545,87574,722],[410179,93922,653],[419551,78678,686],[420093,79206,873],[418954,79038,652],[393530,60049,915],[394071,60583,963],[393084,60846,912],[426537,83794,1051],[426367,84251,652],[393124,60182,1023],[393003,60152,912],[394884,60963,765],[395276,62210,822],[394680,61968,652],[403515,67078,718],[403855,68420,642],[400796,66269,642],[408803,71414,648],[409261,72038,636],[406914,70571,642],[416091,77025,632],[416343,76666,543],[414453,75790,797],[411256,73394,796],[410736,73137,896],[409732,72332,938],[397736,64117,652],[409973,72722,642],[413033,74874,632],[300675,84679,432],[300666,84691,512],[298390,83428,612],[298345,83067,648],[298591,82844,432],[298442,83049,432],[297867,82526,645],[296317,81184,432],[295019,85972,808],[295979,86971,522],[293444,85121,522],[295837,86073,676],[297830,84435,522],[296144,81421,432],[296477,81975,764],[295606,84358,632],[293456,85105,522],[299707,85805,522],[299803,85875,512],[277832,92320,702],[277375,91971,712],[277572,91719,712],[278027,92077,702],[316987,155026,852],[315700,154190,852],[316604,152974,892],[317981,153915,872],[400004,48830,826],[400391,48400,824],[400586,48742,682],[400469,49026,822],[400366,49185,1012],[400515,48934,682],[400554,48839,682],[400612,48643,682],[400631,48542,672],[400643,48441,672],[400646,48236,672],[400648,48338,672],[400637,48134,672],[400621,48033,672],[400300,47719,818],[400598,47933,672],[400568,47835,672],[400531,47739,682],[400488,47646,682],[400251,47357,809],[400384,47470,682],[400439,47556,672],[400256,47310,682],[400184,47236,682],[399781,47145,809],[400027,47106,682],[400108,47168,682],[399942,47049,682],[399460,48285,829],[399282,46948,813],[399760,46953,682],[399853,46998,682],[399665,46915,682],[399568,46883,692],[399469,46858,692],[398378,47203,836],[398858,46855,692],[399163,46825,692],[399266,46829,692],[399061,46828,692],[398959,46838,692],[400323,47387,682],[399368,46840,682],[251393,147531,823],[250776,148722,632],[250751,148704,758],[260770,135935,1287],[262714,126434,1077],[264380,121924,962],[260026,130547,1046],[258515,130040,1265],[258725,129583,1088],[265414,119058,1035],[265175,115372,662],[267674,117148,662],[263267,115704,870],[264027,114769,989],[263774,114973,1033],[263968,114436,804],[261165,125030,1208],[259905,123471,843],[261308,121749,923],[258128,110370,696],[258922,111265,422],[256694,109681,422],[259224,110909,675],[259708,109971,762],[259745,110303,661],[263733,121617,872],[262889,120999,1051],[263553,120251,935],[252326,116263,444],[252226,117788,439],[250284,117662,422],[253039,114816,477],[252853,115950,682],[250615,112571,422],[248601,115907,527],[248099,116108,422],[252036,118982,573],[251722,119469,738],[251304,119374,477],[259036,126291,1169],[258309,126541,1017],[257869,125333,1117],[247136,119394,496],[248160,120261,756],[246654,121563,598],[247329,123337,872],[248667,115309,422],[258050,133758,1215],[257254,133402,1087],[257967,133071,1356],[250292,132857,671],[249225,128022,971],[251339,131641,934],[243373,129537,833],[249911,127542,851],[250076,126686,816],[243548,130901,699],[243915,131022,716],[241819,133786,743],[242304,134250,744],[241698,137373,542],[240434,139151,542],[244088,129795,699],[245226,128468,585],[244512,129918,665],[256617,141113,849],[255624,142768,811],[255251,142595,956],[245753,141964,924],[246198,142342,572],[243206,140143,562],[248699,144174,779],[249189,144540,602],[246170,142070,829],[246114,141770,629],[246977,141289,809],[249854,143589,602],[250694,142072,1377],[251831,143960,1203],[250531,145447,602],[251072,145832,602],[250859,146749,834],[251342,138021,1072],[251666,140372,1163],[249207,140053,1303],[249067,147507,602],[251722,144918,602],[252303,145122,1103],[252646,145597,1049],[252766,144380,1153],[258146,145761,642],[258403,145383,840],[261957,148485,732],[264826,138747,1113],[262697,138355,1061],[261279,136795,1088],[267584,141055,1154],[265936,140365,1153],[254578,137493,1181],[258848,137392,1042],[258815,139520,1070],[249681,143815,825],[249116,142706,771],[257924,132721,1415],[258272,132957,1326],[249252,137500,977],[251585,137826,891],[254021,116139,944],[253700,116630,787],[253270,118994,756],[253831,117652,687],[256063,119290,732],[251937,130537,914],[252492,131384,692],[243678,129332,611],[243327,129199,842],[243591,128673,626],[249560,142799,1057],[253828,147715,763],[255974,148014,841],[255553,149470,642],[250857,125720,798],[253729,126342,1054],[251048,127047,954],[261050,128707,1094],[259660,127833,1059],[261995,126778,1038],[251799,141398,1087],[260311,135740,1162],[258452,134320,1275],[247144,122010,782],[248957,120479,830],[253025,117285,566],[252847,118142,714],[244415,119476,754],[245390,121763,600],[250515,125599,839],[262078,121717,1078],[257232,116004,895],[256438,114924,731],[259044,111404,766],[246412,129178,887],[246272,128140,887],[262513,115082,958],[262812,112352,838],[262928,108923,618],[261959,111076,778],[260005,109468,615],[260988,140820,1048],[261164,142228,867],[260566,140602,1111],[259865,140203,977],[259560,142813,770],[250597,126252,748],[261668,128779,1175],[262811,127076,1210],[247653,123088,738],[249581,122973,886],[257350,134045,1218],[254289,132936,714],[253323,134207,666],[253861,132439,683],[244041,139015,542],[244649,139001,765],[250641,141749,1248],[251473,141220,1374],[245639,141320,563],[245975,140753,604],[246489,141219,613],[252702,136328,661],[252954,137971,1097],[249458,142102,945],[247770,141522,777],[245367,139265,652],[248494,140496,1245],[247651,140508,1010],[247979,138730,998],[247822,137731,691],[242536,135925,818],[249249,134916,679],[259427,107939,677],[258342,108896,561],[263433,112643,658],[263271,113493,898],[265721,141930,1164],[262594,140213,986],[257533,145002,817],[253899,145119,793],[248559,120087,422],[250657,121102,845],[249667,119519,469],[253339,116835,858],[252642,116770,442],[249818,120551,625],[254154,117152,876],[253419,117490,732],[257326,123802,863],[263454,146531,742],[265903,143296,1130],[263289,142760,1033],[260919,125171,1032],[258792,124632,895],[244924,138440,787],[249345,141069,1317],[250558,141025,1454],[246686,142527,881],[254395,115678,891],[254917,116229,847],[256059,116797,856],[256813,117600,938],[251183,132906,675],[250853,132418,854],[251723,128875,1072],[253951,130219,1093],[255681,131112,1133],[259391,131808,1254],[253461,114973,569],[255514,116056,422],[250057,119984,441],[248008,141001,872],[247348,141047,962],[247299,140720,894],[246937,140945,909],[246843,140259,890],[244484,126333,757],[247357,126581,939],[246118,127164,580],[246870,126145,673],[260792,129889,1125],[244298,125010,639],[246494,126035,630],[246312,126591,606],[263290,111606,624],[266640,111289,641],[265015,113080,649],[267384,112198,827],[245542,127908,570],[245453,127231,620],[245179,125192,624],[245146,124869,774],[247157,142652,751],[257811,129598,1209],[251364,129404,911],[252027,146963,632],[253206,147793,875],[252472,146484,893],[260846,103843,412],[257474,108830,673],[246371,140158,957],[256181,115372,737],[265861,119140,1020],[259990,121003,792],[246807,139931,1003],[247209,140070,880],[251773,146985,753],[252256,144776,1101],[252085,139301,1214],[245452,118302,665],[257184,109696,666],[245366,129452,673],[244232,121051,721],[243705,120623,661],[246660,138904,890],[252971,146099,788],[257713,146368,760],[245102,127437,812],[260891,136958,1044],[257539,135425,1279],[255899,135706,1019],[260708,144476,737],[260007,143739,756],[264869,139070,1114],[260895,140172,978],[262381,138512,1206],[249455,120095,689],[262771,126754,1263],[247065,139044,805],[247271,140379,1158],[259295,131130,1209],[258365,126891,1146],[263091,143971,862],[259354,131453,1402],[259671,131016,1128],[269204,109701,662],[251715,132135,671],[253739,131425,895],[252832,130483,839],[252434,134277,791],[266148,107606,683],[268597,109581,798],[266584,108723,633],[267646,111652,684],[245140,127814,623],[257945,142031,767],[258831,127776,1046],[255052,136131,1093],[255048,132113,856],[254670,131582,847],[250895,147102,688],[260238,118324,873],[261620,121233,989],[261653,121578,805],[259862,119957,969],[261439,119874,1026],[263793,107282,604],[261174,105353,595],[265196,108267,780],[258934,135580,1147],[254539,132437,886],[261847,144087,960],[260318,143597,899],[245820,129917,665],[247272,122986,741],[252380,118772,733],[258574,108030,544],[265570,108044,627],[258896,119271,848],[253424,138102,1035],[270039,124633,942],[269817,125001,1052],[268746,124547,1046],[268312,123589,912],[268090,123957,1022],[389728,74285,702],[389671,74245,702],[390071,73647,702],[390603,74003,732],[389896,75081,722],[389416,74774,702],[313059,159741,942],[313958,160511,902],[313000,159823,942],[302733,149624,1180],[301480,151393,872],[301220,151186,1181],[301840,147807,1106],[298873,145451,882],[303344,148791,872],[298796,145557,882],[297335,147417,882],[298723,145503,882],[296143,143670,1035],[295706,146236,882],[292843,144470,952],[294409,142215,952],[297265,149061,916],[295541,148384,919],[289615,143603,1291],[289536,143700,1022],[290251,142670,952],[291240,146148,1033],[292015,146536,963],[290102,145539,1083],[290394,145896,872],[288786,144779,1022],[291350,146835,1259],[291247,146489,872],[291660,146678,1146],[290441,145769,1043],[292285,149829,932],[293174,148666,1131],[294278,149067,756],[291075,147638,1296],[291397,147971,872],[290602,147418,872],[289799,150389,1067],[290368,152572,932],[288907,151557,872],[294804,148870,725],[294186,148414,697],[309000,156786,862],[308988,156802,942],[306517,155006,862],[291736,171269,1041],[294013,172428,1081],[292923,173676,1086],[284457,159929,966],[285895,158972,932],[285401,160228,1164],[280271,156152,972],[279627,154543,852],[282802,156786,872],[282303,157603,1008],[280691,157370,781],[276686,154450,1103],[276392,152258,902],[277865,154433,1034],[271759,151018,1062],[271853,151705,1067],[270595,151374,916],[287845,162406,934],[289172,161287,932],[289086,162898,1178],[273367,151222,1251],[273445,151973,943],[274968,153261,1009],[275804,154139,923],[273549,155237,892],[274856,155789,902],[274678,156031,902],[279372,156110,892],[280528,159843,862],[286177,166094,988],[284613,168202,950],[284732,166333,1079],[287250,161170,913],[292501,161034,1256],[291972,161362,1022],[292272,159340,1244],[277456,159206,892],[279661,161448,1022],[278386,161498,998],[270440,159555,962],[270638,159611,712],[270451,159599,712],[268012,153435,761],[269708,154119,969],[267499,155201,998],[262898,157965,973],[263965,158748,672],[262287,157536,672],[265123,153662,862],[262753,156922,903],[262204,157476,672],[265392,156580,874],[265296,153691,997],[266600,155221,1080],[266311,155371,672],[266640,155545,1038],[267792,156450,682],[272904,159555,992],[272689,159744,712],[272567,159763,961],[270337,155576,975],[269509,157643,828],[269145,157163,812],[271328,156844,864],[269351,157584,682],[269692,158976,878],[269239,157849,834],[270365,159537,712],[270580,159692,712],[276535,160850,732],[274992,159626,732],[275319,159292,1002],[272044,160688,712],[274891,159561,980],[273182,159685,976],[274618,157485,1077],[273879,160253,1029],[273929,160618,1040],[272950,159894,997],[279235,161707,883],[275055,162889,732],[275392,163330,879],[273287,165325,732],[276699,164113,732],[274887,166422,732],[276718,160960,864],[277045,163359,911],[277459,162243,825],[279052,163314,891],[277735,162319,955],[278103,165086,883],[277451,164173,876],[285145,165050,949],[283895,163834,922],[281611,166054,1084],[281247,165235,996],[282084,165389,923],[280410,165385,732],[281185,165834,732],[281125,165914,732],[280969,165083,1030],[282042,166469,732],[283719,167628,732],[285676,162304,1099],[285474,163469,940],[284683,162764,922],[284240,168367,923],[284645,169673,722],[283584,168997,722],[284627,169698,722],[291133,158482,932],[286685,169864,978],[286221,170789,742],[295174,160804,1101],[295528,160723,973],[294480,161783,937],[288545,170784,937],[290393,170670,993],[288592,171137,935],[288301,172624,780],[288486,173984,792],[287241,174040,898],[289279,173044,991],[287797,175244,928],[287795,175352,752],[295007,171637,1227],[295170,170939,902],[295659,171292,902],[289759,172580,752],[290421,172883,1109],[291631,173824,1065],[289810,166180,1263],[288934,165857,1353],[289657,165191,998],[293419,173784,752],[293142,174176,752],[301641,176246,772],[301616,175592,902],[303388,176920,1062],[294849,175425,752],[295145,175007,752],[296375,176466,762],[294951,176800,884],[292613,178581,752],[295136,178188,884],[294120,179648,762],[293813,173210,1183],[293735,174008,752],[299939,178118,954],[299768,178870,772],[299743,178853,772],[299618,175678,1016],[297593,176228,912],[298044,174982,997],[297450,175191,855],[294997,174216,997],[305432,172718,935],[303966,172337,912],[305016,171774,1072],[314099,166440,944],[312645,168154,1141],[313325,166953,981],[313434,155911,872],[315918,157799,852],[313382,155983,852],[304173,154844,1072],[301498,155806,942],[302272,153742,954],[302196,153064,1134],[303228,153356,1190],[299955,147650,1100],[306015,150582,882],[305957,150663,872],[308391,152407,862],[310874,154186,862],[315967,157731,872],[318508,159557,882],[318415,159588,852],[314805,165058,972],[316538,162192,852],[316456,162306,902],[314585,164902,902],[306492,155000,942],[304084,153261,872],[298413,160696,1052],[298500,160292,912],[299236,160814,912],[297606,163114,912],[297055,162724,912],[294135,155805,1217],[293764,156264,1251],[293257,155731,1129],[298734,159952,1163],[299111,159430,942],[298942,159308,942],[299036,159377,942],[296639,153373,970],[295591,154645,947],[295740,152829,1304],[297279,155315,990],[296919,155395,1100],[295536,151505,938],[295638,152167,1118],[295561,152147,932],[297010,162788,912],[314038,160399,852],[311507,158584,852],[304385,157918,942],[309372,171676,1036],[310352,170286,929],[310442,170982,908],[311390,166042,961],[314390,165294,1045],[311127,162417,942],[310952,162660,942],[308672,169088,898],[308007,168944,1015],[310034,167880,948],[305577,173746,1066],[307081,173902,1215],[306040,174674,982],[303969,174614,1052],[304613,174105,936],[304702,174770,938],[294903,173569,903],[293799,165276,994],[293405,165027,1308],[293985,164116,1043],[295177,170144,1003],[295225,170456,1087],[294863,170579,1208],[292352,164053,1296],[292676,164591,1422],[291725,164732,1111],[294027,161541,1008],[293714,162037,1125],[289241,168297,1071],[287570,167078,991],[288493,167205,974],[294600,171080,1298],[294102,155426,1449],[294374,154626,1458],[294640,153854,1364],[293101,165506,1288],[287526,170311,925],[288867,169923,1103],[287059,169751,953],[292236,165629,1060],[291348,165229,1045],[292205,165241,1331],[291394,147157,1279],[291482,147810,1274],[294106,147676,937],[292267,148230,1294],[293830,148144,713],[296178,156273,998],[295582,156407,1215],[295252,156174,1116],[293631,155232,1313],[278225,157161,946],[277710,156342,1268],[278588,156920,865],[277557,155339,1035],[276779,155128,1135],[277466,154656,1039],[293074,167704,1164],[292615,168329,1288],[291626,167301,1049],[288613,165616,1343],[301267,151532,1192],[292552,174201,1037],[288447,171017,742],[294771,160599,1138],[267958,150510,913],[267699,150806,772],[269953,147709,852],[273239,150030,902],[287681,164211,1210],[292812,163467,1082],[293158,163387,946],[293211,163679,1124],[281663,164568,809],[294945,159116,1065],[295030,159796,965],[293072,159774,1111],[293348,156416,1112],[293675,161681,1240],[293223,160777,1335],[293996,161186,1247],[292658,159580,1065],[294660,157085,884],[294796,164181,897],[294771,165948,912],[292219,163000,1381],[262841,157620,829],[264108,157897,817],[264153,158211,866],[263775,158354,992],[274059,160802,732],[274359,160424,732],[298357,149814,1134],[298482,148411,1072],[297419,156343,1031],[298406,157569,1032],[297240,157768,1170],[297962,160453,964],[297918,160096,1008],[293023,162312,1057],[292631,162119,1056],[292932,161619,1081],[292062,162029,1024],[290579,162635,1068],[304248,176688,1092],[310686,166545,1097],[308584,165940,942],[308744,165718,942],[300405,151085,1027],[273082,156027,912],[272390,158401,1060],[292434,169840,1425],[292764,174709,752],[289828,143492,1092],[289960,144514,1030],[291021,144469,1113],[307600,174461,1204],[307307,175667,1100],[303258,177423,772],[278937,164294,732],[309842,169716,933],[308771,169762,1030],[315294,165406,962],[311539,167046,1178],[294964,149856,1093],[294679,147821,923],[299434,158012,982],[298509,158224,1245],[300728,153472,1084],[299539,153767,1106],[296969,152897,1157],[296149,152771,1217],[296883,152238,1179],[294991,156597,1165],[297241,176306,1037],[274548,160120,994],[293544,168976,993],[297419,167823,912],[290616,169503,1009],[290948,168650,1221],[270796,159018,909],[312954,167372,1211],[303870,177198,927],[304579,176621,942],[303964,177857,1009],[307358,172779,938],[289792,172432,1010],[286184,174211,742],[298641,159270,1138],[286858,169891,742],[273874,152048,916],[274443,152864,878],[284384,161397,1072],[299241,158742,1201],[299745,157975,972],[279190,158070,816],[278100,156081,1220],[293402,155236,932],[306581,173064,964],[307184,171391,1079],[276117,158208,942],[293874,148483,699],[296926,176796,996],[279651,164784,892],[285283,164214,1069],[284266,168007,722],[292735,162778,1264],[296146,158721,1091],[296189,159102,977],[296074,160154,1101],[297141,160335,977],[295378,157228,914],[295663,157086,1089],[295483,160384,970],[290202,166390,1062],[289906,166861,1319],[289161,167573,1305],[292615,166161,1039],[293846,165625,993],[290764,167257,1258],[290672,169829,1163],[291950,166445,1037],[292938,168575,1036],[293112,168081,999],[292666,156692,1216],[278311,157828,890],[277835,157368,1089],[293748,162384,958],[296359,157652,961],[290249,163531,1056],[292568,165807,1045],[299966,154353,1099],[300763,153808,965],[298983,154604,999],[296586,159349,973],[289730,169920,1016],[308087,169668,806],[305200,178903,902],[268788,158399,682],[293355,161811,1249],[286041,165038,1073],[286696,164119,950],[306304,169098,912],[277458,157621,1040],[308278,171036,921],[291592,166946,1224],[269881,152202,968],[268238,150349,936],[297736,155556,1158],[290812,164374,1072],[291227,164167,1337],[289653,162270,1118],[287725,175302,752],[287332,174706,914],[277954,155089,1057],[277917,154730,1217],[275724,156076,1100],[297716,174770,884],[297275,152171,1031],[295861,150776,932],[296326,150966,1080],[297279,176673,897],[299110,178281,911],[297409,153205,982],[297909,151018,970],[298532,151162,1095],[298325,154065,1119],[278215,165241,732],[279839,159359,862],[278359,158184,889],[297557,160180,1093],[269011,158371,843],[266763,151520,742],[266647,152337,945],[271583,155601,815],[267568,152626,869],[279288,158704,986],[297170,144217,882],[297863,148542,894],[293569,163593,930],[298040,154826,1016],[294070,179426,876],[294395,164293,1024],[294342,163963,909],[267580,150967,772],[298706,147633,863],[347383,147813,853],[347782,147102,941],[348296,147724,897],[343134,146181,857],[345265,147813,889],[342906,146074,622],[346136,145226,1042],[345191,145392,1089],[346200,145149,1022],[346384,146545,1083],[346366,145419,1042],[346430,145342,1042],[344443,143812,897],[344098,143264,1022],[343089,145833,864],[343784,143158,1022],[342738,143106,1043],[343848,143081,982],[343281,143714,903],[344034,143341,1042],[341734,141262,882],[341416,141128,862],[340212,140287,800],[341480,141051,832],[341671,141339,882],[340477,142309,752],[341385,144530,892],[340962,143590,962],[338667,143866,739],[339590,143054,622],[338204,144300,622],[337018,143282,622],[339424,142967,773],[346177,148012,973],[346121,147667,836],[347439,148143,1018],[346432,149661,622],[347914,148123,894],[342095,145005,967],[340864,142889,901],[348542,147614,622],[340086,139894,622],[339591,140838,784],[344710,145842,854],[345866,145608,1101],[345172,147165,796],[340617,143358,757],[340579,143010,860],[217223,123174,611],[216050,123077,582],[216396,123609,572],[217727,122637,628],[219410,121493,700],[218170,122513,622],[220572,120844,669],[219876,120535,562],[221972,119836,679],[221705,119320,602],[296155,135648,975],[296803,135833,978],[293358,137759,1012],[296667,134835,944],[297800,131706,832],[305571,137698,822],[301594,138337,992],[296437,135596,745],[301360,143916,882],[441922,69187,1192],[439056,73379,1122],[439159,68910,1297],[434976,74885,1114],[435893,77290,1077],[438077,74795,1092],[434399,75878,1115],[439884,68052,1223],[435942,77607,1191],[436003,77746,1062],[440341,68249,1181],[434490,76553,1140],[265914,91095,452],[265675,90738,452],[266006,91033,452],[266754,90749,452],[266106,91183,452],[265702,90599,522],[266653,90599,452],[266828,90482,452],[267576,90197,452],[266928,90632,452],[267476,90048,452],[267770,89212,522],[267530,90011,462],[267658,89925,462],[268306,89491,462],[267770,90091,462],[268418,89657,462],[268158,89072,462],[268398,89429,462],[268019,89045,522],[441873,68896,1192],[442840,67546,1692],[439155,65468,1787],[441616,64306,1783],[436319,64024,1678],[434656,63573,1940],[435526,61466,1909],[433269,56803,1984],[431569,57264,1690],[432228,56264,1890],[430417,60266,1808],[430709,60119,1673],[431053,50004,1924],[428630,52973,1857],[428535,52316,1751],[423388,50635,1894],[422432,51415,742],[424720,49416,742],[425939,51388,1684],[426131,51031,742],[426749,51134,1791],[421861,50501,742],[421732,50614,742],[421365,49971,742],[421297,51434,1750],[421033,51529,1753],[421941,51275,1752],[422320,51537,1722],[420736,52000,1782],[419348,52842,812],[419208,52341,742],[419018,52598,792],[420903,53316,1683],[421590,53769,1507],[421631,54103,1468],[424031,55678,1535],[424978,56140,1510],[424790,56868,992],[428047,58090,1688],[437401,63958,1720],[438634,64592,1887],[437355,65433,1755],[432381,54761,1802],[438760,62452,1801],[440651,60872,1961],[441046,61439,2146],[444267,59967,2190],[442484,59462,2007],[444078,58600,2039],[433760,62709,1933],[434126,61717,1849],[442732,64633,1870],[443519,63700,2218],[444667,64973,1292],[433141,45698,742],[430820,48006,2338],[427142,50939,742],[434768,55713,1873],[434441,56247,1906],[434382,55903,1716],[435908,64458,1755],[436947,65226,1799],[424907,49985,2159],[424644,50391,2162],[424973,50611,1924],[425578,51144,1937],[425401,51860,1649],[430105,60086,1734],[430332,59594,1867],[438335,52479,1996],[436890,51148,2132],[434729,48097,2218],[432961,61978,1657],[432920,61665,1666],[432542,61455,1675],[432366,60107,1706],[431776,47528,2052],[433216,46817,2106],[441109,55336,2093],[443116,56845,1832],[442584,56637,2031],[427788,52881,1654],[428277,50286,1876],[423546,51989,1585],[422625,51447,1706],[423466,51298,1759],[432588,61797,1701],[444751,61206,2221],[443886,62889,2224],[443221,61362,2320],[443109,67208,1692],[427161,51333,1762],[433798,63023,1873],[425488,50465,1930],[425910,51043,1927],[421868,53382,1655],[432749,46284,2151],[431992,47043,2058],[433610,46668,2290],[438059,62698,1879],[442246,64092,1987],[445179,62071,1432],[444693,59148,1662],[422967,51032,1711],[425406,56428,1638],[428557,55460,1654],[423411,55848,962],[423988,55335,1571],[443976,63567,2237],[429052,59187,1704],[429540,57863,1664],[431056,56764,1695],[430772,57932,1630],[439393,60575,1984],[436414,61192,1741],[422329,54337,1514],[422236,53626,1518],[427948,50751,1819],[432100,58076,1700],[428460,57949,1699],[442984,63169,2218],[438568,57671,1806],[438833,59705,1808],[434071,61376,1710],[441910,58239,2077],[440765,55459,2083],[437216,56276,1840],[434309,55218,1942],[440631,58386,1909],[435004,60623,1743],[433382,57793,1745],[429595,58210,1792],[435993,54996,1836],[434501,49912,2169],[439988,55803,1949],[439217,59221,1997],[439422,57734,1991],[430910,58952,1680],[435650,52320,1938],[435573,49828,2024],[442274,64411,1784],[436936,51495,2146],[437761,54734,1948],[437452,55503,2011],[437326,54508,2072],[438409,56338,2032],[442309,61269,2113],[429776,59564,1816],[262755,92937,432],[262643,92771,432],[262671,92632,502],[263442,92476,452],[263358,92292,452],[263469,92458,452],[263219,92264,502],[291499,69222,442],[291719,69139,442],[292057,70296,432],[292300,70158,412],[398136,113578,112],[395202,116431,312],[395979,114144,312],[396090,114036,112],[397969,113406,112],[397816,113248,112],[397669,113097,112],[397371,112791,112],[395753,114364,312],[394882,116102,312],[394735,115951,312],[394437,115644,312],[395035,116259,312],[402128,109631,752],[401352,110382,112],[401940,109437,752],[401164,110188,112],[401074,109690,752],[401648,109135,752],[400872,109886,112],[320256,152713,852],[317815,151178,892],[319575,149449,842],[321457,150841,832],[397229,78997,812],[398387,79795,792],[396423,80166,822],[390320,75248,732],[394476,78252,812],[394212,78616,812],[396077,80668,822],[393831,79143,832],[390431,72923,692],[390750,73165,712],[390341,72877,692],[390196,72644,692],[390322,72863,692],[390304,72848,692],[390288,72831,692],[390272,72814,692],[388214,76066,702],[388165,76056,702],[387532,76265,692],[387499,76302,692],[390238,72418,692],[390233,72755,692],[390223,72734,692],[390214,72712,692],[390206,72690,692],[390200,72668,692],[390193,72621,692],[390192,72598,692],[390192,72574,692],[390194,72551,692],[387687,76142,692],[390198,72528,692],[387645,76168,692],[390203,72505,692],[390209,72482,692],[387605,76198,692],[390217,72460,692],[390227,72439,692],[387568,76230,692],[390245,72776,692],[390258,72795,692],[387731,76118,692],[387823,76081,692],[387776,76098,692],[387870,76067,692],[387919,76056,692],[387968,76049,692],[388017,76046,692],[388067,76046,692],[388116,76049,702],[388250,76076,702],[388285,76088,702],[388320,76102,702],[393404,79735,832],[388354,76118,712],[388387,76136,712],[388419,76155,712],[388450,76176,712],[388567,76260,732],[388892,76494,742],[397637,81136,822],[398903,80151,802],[397991,81381,822],[396439,82704,802],[395242,81878,832],[396140,89738,838],[397078,88587,832],[395990,90181,1682],[397392,81490,822],[395128,89546,781],[394360,86732,872],[392777,87989,892],[396951,83057,822],[398983,82636,822],[398132,83871,832],[410986,90197,642],[410567,90687,642],[410453,90608,642],[410590,90706,642],[410631,90748,642],[410611,90726,642],[411053,90243,642],[411578,90262,642],[411610,90244,642],[410678,91219,642],[411152,90290,642],[410693,90848,642],[410680,90822,642],[411187,90301,642],[410704,90876,642],[411222,90310,642],[410713,90904,642],[410725,90962,642],[410720,90933,642],[411295,90320,642],[411670,90202,642],[410729,91021,642],[411405,90317,642],[410728,91050,642],[411441,90311,642],[410725,91080,642],[411476,90302,642],[410719,91109,642],[411511,90291,642],[410712,91137,642],[411545,90278,642],[410703,91165,642],[410691,91193,642],[410663,91245,642],[410646,91269,642],[411641,90224,642],[410728,90991,642],[411368,90320,642],[411332,90322,642],[411259,90317,642],[410665,90796,642],[411118,90277,642],[410649,90772,642],[411085,90261,642],[410321,89736,712],[410121,90376,672],[409788,90145,692],[410204,90434,662],[410654,89966,682],[399335,82126,822],[397746,81735,822],[401697,75998,762],[400119,80990,812],[401390,75296,742],[402144,75334,682],[401920,75666,742],[401638,74415,672],[401619,74388,672],[402676,75128,672],[401686,74824,682],[402262,75206,672],[402236,75227,672],[401703,74761,682],[402318,75170,672],[402289,75187,672],[401695,74793,682],[402411,75131,672],[401710,74630,672],[402443,75122,672],[401710,74696,672],[402379,75142,672],[402348,75155,672],[401691,74534,672],[402543,75111,682],[402510,75112,682],[401554,74315,672],[401669,74473,672],[402610,75115,682],[402577,75112,682],[401681,74503,672],[401654,74443,672],[402643,75121,672],[402707,75139,672],[401577,74338,672],[402769,75165,672],[402739,75151,672],[401599,74362,672],[402476,75116,672],[401700,74566,672],[401706,74598,672],[401711,74663,672],[401708,74728,672],[402211,75250,682],[401674,74855,682],[402188,75274,682],[401661,74884,682],[402167,75300,682],[401645,74913,682],[401612,74963,702],[401168,75629,762],[391077,73396,752],[391444,73655,772],[395773,89881,820],[450321,40934,2114],[451872,42489,2062],[450753,43151,2102],[447691,38046,2166],[447994,38083,2930],[448195,38286,2162],[445139,40116,2315],[446842,41731,2102],[444035,39590,2283],[445903,40337,2226],[446622,37734,2300],[446945,36786,2648],[446738,36906,2173],[446751,36643,2825],[446683,36366,2183],[444168,36206,2236],[444245,35528,2262],[447317,36439,2182],[447287,36640,2575],[446965,36399,2565],[438771,35841,2412],[441524,37755,2313],[436935,35096,2151],[442391,32077,2132],[443894,35234,2272],[443576,35608,2282],[439752,33758,2326],[439769,33335,2307],[429878,29604,2090],[429000,29787,2002],[429614,29631,9978],[439653,30911,2112],[437372,31989,2277],[429052,29294,2067],[427719,28928,1962],[429369,29195,2033],[429664,29368,2071],[429420,29566,2081],[428829,28820,2012],[427490,28775,1962],[439652,33651,4025],[439600,33645,2320],[450008,40639,2134],[450264,40760,2721],[447860,42464,2102],[447117,41570,2215],[449736,44128,2072],[450585,45051,2032],[452077,45389,2032],[452085,47060,1932],[451369,46030,1962],[452730,48136,1872],[454642,47484,1942],[453300,49253,1812],[453793,50407,1802],[455327,49354,1882],[454647,51252,1922],[455558,50344,1852],[454788,54030,1722],[454538,52801,1742],[454826,52636,1923],[455305,55766,7851],[455075,55969,10202],[455203,55645,1763],[455312,60423,11508],[455046,60433,1680],[455391,60169,13085],[452566,66330,1422],[453174,65186,1362],[453179,65841,1442],[451630,68395,1352],[451118,68475,1302],[451880,67428,1372],[445882,75456,1233],[447384,73248,1082],[446962,74064,1268],[437098,86286,952],[437567,85797,902],[437877,85923,1060],[436424,86990,972],[436055,88299,1042],[435604,87845,982],[437463,87999,1052],[436434,88488,1052],[436861,88468,1062],[439461,85157,1072],[437191,88327,1052],[438551,86416,1052],[448381,72323,1321],[451048,69232,1322],[439678,83526,1100],[445098,77204,1182],[441046,82895,1092],[446690,74950,1202],[448163,73031,1222],[452354,67143,1419],[452071,67399,10105],[452310,66825,1380],[451950,67580,1452],[452288,67316,1412],[453938,64281,10467],[453701,64003,1402],[454150,64072,1502],[452457,66954,9749],[454143,62785,1452],[454571,63165,1512],[453617,64776,1541],[454508,62572,1772],[454444,62223,1496],[454936,62237,1522],[455299,59083,1750],[454940,59031,1562],[455503,57991,1714],[454183,62719,8436],[454532,62876,1549],[455030,57780,1602],[455087,60773,1619],[455523,60312,1592],[455336,56639,1840],[455034,56525,1692],[455516,56278,1756],[455413,60036,1618],[455540,54566,1809],[455854,53333,1802],[455550,57759,7679],[455688,57628,1728],[454206,51591,1772],[455825,54564,1751],[455872,56821,1722],[455691,51343,1832],[455025,48400,1912],[453183,44735,2012],[448826,43264,2072],[450385,39975,2112],[444076,33139,2162],[445602,34222,2172],[444202,35343,2276],[444196,35383,4128],[448017,37637,2845],[447743,37713,3056],[447778,37584,2550],[437256,34764,2333],[445939,40474,4747],[445860,40363,2271],[455271,57743,15812],[455278,57049,11095],[455379,56995,1791],[455387,55265,1786],[454953,55273,1752],[455490,56645,14791],[455112,57689,1649],[454766,60273,1562],[455795,58339,1682],[455555,56591,1738],[455475,55947,1787],[455245,55964,1788],[452627,66362,1423],[431955,29081,2082],[429830,28873,2052],[429684,28946,2042],[433804,29385,2092],[436098,34352,2246],[454400,61909,1461],[454498,61540,1492],[454792,61824,1683],[455775,54967,11035],[455665,55576,1759],[429364,29563,2092],[429101,29684,2005],[429170,29347,9733],[429803,28876,7555],[429073,28854,2024],[455775,55262,10483],[447527,37633,2868],[447185,37488,2167],[447558,37384,2530],[448286,37586,2594],[448140,37674,2514],[448045,37396,2517],[443848,36484,2269],[443944,35917,2272],[444159,36196,2433],[446939,37528,2261],[446080,40620,2279],[435632,29812,2102],[440903,36769,2187],[441110,31507,2122],[448601,37862,2119],[448571,37130,2142],[449151,37935,2142],[447239,37338,2921],[448177,37999,2444],[448517,38021,2274],[450277,40600,2104],[446998,36177,2164],[447249,35643,2162],[447827,36870,2180],[447940,36363,2152],[447035,36178,2452],[448321,37346,2175],[448071,37298,2236],[447268,37107,2575],[447200,37230,2851],[447574,36918,2565],[447800,37120,2494],[447607,36663,2171],[447544,36744,2477],[441542,37295,2312],[442414,38147,2305],[442046,38171,2177],[444156,39373,2285],[438323,30484,2112],[397382,125632,1949],[397862,125775,1062],[397429,125990,1930],[400161,122409,1942],[399835,122365,942],[400428,122021,978],[403191,119506,1863],[402674,119631,942],[403776,118959,1007],[431607,94664,1057],[431495,94360,992],[432178,95139,1082],[411789,112514,2063],[412194,112141,1045],[411116,113370,1082],[409106,114009,1222],[409047,113680,1003],[409526,113815,2087],[408760,114780,1083],[408258,114574,1007],[408779,114384,2089],[405789,117150,2026],[405535,116920,1982],[405682,116899,995],[413859,109362,1017],[413336,109831,1018],[414248,108927,1862],[415377,108037,1040],[417195,106309,962],[417387,106258,1041],[418456,105635,1416],[419199,104752,1007],[419313,105054,2056],[418900,105201,2095],[424273,101541,7542],[424190,101245,2088],[424990,100924,9726],[427318,99129,12875],[427284,99208,1050],[426902,99227,13255],[395143,127370,978],[395553,127169,7188],[395604,127418,1934],[420545,103618,1008],[420419,104036,2064],[420163,103716,952],[429063,96984,7695],[428511,97112,13983],[429107,96460,962],[404483,117995,988],[421945,102736,2055],[422302,102612,1321],[422394,102919,2060],[417587,107241,2008],[419072,106067,1092],[417046,107853,1102],[416580,107107,2093],[416781,106746,1038],[416828,107079,1080],[412541,110976,2099],[412964,111238,2064],[412627,111648,2054],[409758,114110,1049],[409712,113755,1057],[410040,114018,1363],[406099,116718,2035],[406631,116487,2023],[406436,116950,2071],[405095,118467,2009],[404595,118285,2026],[405005,117789,2003],[402470,120208,1997],[401226,121359,986],[375184,147659,1913],[374052,147629,1755],[374797,147336,1459],[369491,152176,1145],[369119,152529,933],[368838,152527,906],[368369,153151,950],[368612,153514,942],[368245,153109,902],[395895,127305,1030],[394932,128567,990],[394196,129441,1032],[395903,126888,1923],[425616,100327,10953],[425746,99978,1390],[426051,100185,11623],[429880,96537,1049],[429881,96133,15308],[430333,96398,2061],[429545,96539,9747],[431031,94880,1050],[424631,100711,1117],[425271,100454,14636],[428308,97229,1020],[429698,97183,10723],[430177,96788,11728],[430225,96103,1065],[430234,95761,1840],[430299,96074,14815],[426324,99434,10684],[426945,99335,1043],[429443,96907,7605],[429420,96653,1140],[425317,100098,1324],[426342,98713,12310],[422938,101427,962],[427529,97749,12469],[427801,98371,1461],[427478,98432,1324],[427633,98041,13403],[427568,98743,2017],[427254,98514,1946],[428482,97802,12281],[428751,97758,11269],[428399,97873,1092],[426577,99754,1068],[427147,98188,1030],[427239,98495,12950],[426916,98641,1941],[427752,98710,13827],[425287,100874,1952],[425485,100691,13330],[426096,99150,7961],[425254,99786,1024],[427272,98807,12846],[427819,98711,1070],[431272,94763,1059],[431302,94827,9116],[430612,95673,2041],[430486,96057,10668],[428078,97595,1962],[428421,97458,12049],[426728,98948,11282],[429343,97250,15751],[428152,97891,12000],[427128,98194,11939],[426585,98649,9795],[424920,100227,1236],[425202,99788,10990],[430601,96045,1178],[396937,125921,1046],[397169,126082,9224],[396983,126252,1075],[398127,125311,1028],[398170,125284,8048],[425003,100931,1078],[423192,102578,1092],[423572,102175,7109],[423868,101365,2066],[423598,101433,8899],[423759,101079,1046],[423537,101831,7268],[424643,100356,1956],[424862,99916,982],[430637,96364,1091],[398141,124928,1932],[398895,124611,1029],[396587,126068,1074],[396452,126871,1914],[396229,127038,1890],[396408,126528,1929],[396632,126428,1032],[394533,128793,1018],[394116,128539,1953],[394488,128446,1024],[396350,126183,1765],[395520,127124,1294],[384774,137556,1997],[385226,137482,2022],[385271,137824,2009],[399827,122644,994],[395280,127945,1847],[395971,127326,7314],[393742,129059,1920],[394159,128855,1962],[392760,129655,982],[424171,101631,1090],[423467,101512,1318],[423517,101867,1372],[429255,97276,9868],[423537,102194,1026],[422710,102162,1353],[422798,102456,2059],[431694,95341,1027],[431428,95446,1993],[431323,95121,1113],[430865,95263,2005],[399679,123804,1053],[399688,123376,1976],[399965,123658,1036],[398469,124452,1064],[398439,124120,1256],[398867,124231,1334],[396141,126390,1867],[431719,95010,1993],[424139,100909,1989],[399178,124440,1020],[399724,123969,1092],[420678,104630,996],[421120,104309,1072],[417176,106658,2072],[417761,106158,2034],[416983,107713,2085],[416647,108163,1042],[421530,102894,1007],[421926,103126,1050],[421966,103442,1016],[385511,136759,1952],[385703,136450,1006],[399541,122798,984],[402832,120421,2003],[402731,120147,1094],[403882,119230,2010],[403516,119399,1994],[403602,120051,1988],[403290,120169,2021],[370808,151477,945],[369956,151718,1810],[371238,150978,1925],[372005,149948,1912],[372542,149282,1926],[372097,150632,1923],[419721,104588,2081],[420087,104158,2006],[420507,104708,2054],[421644,103199,2064],[400254,123079,2006],[399936,122930,1976],[400153,122802,1101],[402990,120353,1234],[402991,119946,1988],[402888,119694,1008],[400889,122211,1026],[400993,122480,1984],[400531,122263,1976],[391632,131226,1946],[391982,131131,1053],[391673,131570,1879],[394145,129276,982],[398529,124800,1243],[411322,111568,1812],[408418,114232,2002],[409798,114427,1027],[409191,115108,1082],[408666,114112,1011],[411200,111928,2050],[410430,112517,1020],[418586,106287,2034],[407025,115664,990],[406166,117771,1022],[405777,117568,1078],[406186,117390,2019],[407937,114990,2083],[407559,115789,2067],[407514,115475,2021],[406279,116340,991],[406835,116771,1061],[406787,116431,1027],[407223,116592,2043],[405460,117668,2017],[404297,119418,2028],[404205,118742,2008],[406678,116832,2042],[409247,114609,2092],[409481,113499,2047],[410904,113028,2051],[410518,113162,1053],[410544,112795,2108],[409224,115005,1020],[410258,113623,1069],[410000,113328,2096],[410210,113265,1045],[409507,114235,1030],[409138,114355,1024],[408868,115058,2084],[374721,147059,908],[375051,147072,1149],[374993,146768,878],[373545,148078,901],[379645,142514,1949],[379214,142636,911],[380812,141131,1901],[378754,143175,1869],[378941,142977,906],[379044,143177,1960],[375610,146835,914],[375139,147321,1906],[375298,146837,891],[371767,149956,1840],[371519,150307,1931],[376212,145793,1834],[376311,146489,1924],[375926,146409,1920],[379322,142879,1962],[379735,143202,1934],[373647,148286,1912],[373220,148614,1933],[375967,146731,1914],[373691,148605,1930],[431161,95855,1072],[430956,95935,2050],[430847,95620,1072],[369025,153417,1863],[370513,152045,1905],[368863,153791,1002],[368746,153420,1889],[411226,112654,1049],[411270,112993,1048],[409953,112970,2088],[408371,114859,2063],[407980,115320,2074],[406520,116213,977],[407136,115944,2027],[406807,116044,2028],[407277,116858,1092],[406875,117108,1009],[388298,134407,1958],[387783,134648,961],[388252,134077,1931],[388659,133968,1956],[389044,133893,1958],[388685,134337,1627],[413068,111505,1092],[410795,112763,1030],[410815,112355,2064],[409618,114521,2072],[377023,145965,915],[376683,146164,1918],[376594,145480,1936],[375585,146474,1214],[410591,113499,1455],[408002,116058,1002],[407605,116147,2048],[394488,128019,1820],[393095,129455,1921],[393454,129595,1936],[393080,129857,963],[391993,130729,1956],[392319,130221,1935],[392589,130515,977],[381864,140104,914],[381590,140374,1949],[389296,133453,1947],[389955,133431,1022],[389288,133877,1026],[387109,135384,1990],[387104,135812,1114],[386765,135457,1978],[392630,130830,976],[383069,138965,935],[390963,132188,1936],[390523,132744,991],[390145,132780,1928],[388615,133653,1937],[390131,133192,969],[389250,133110,1925],[388995,133540,1925],[381680,141024,2006],[380861,141461,1976],[382366,140646,1995],[382004,141127,981],[377270,144591,892],[377375,144803,1942],[397757,125441,1923],[397334,125289,1913],[397675,125143,1335],[396892,125604,1007],[408461,115537,2057],[416013,108598,2066],[416390,108173,2066],[414945,108470,1022],[416936,107354,2090],[415491,108351,2083],[415099,109080,2089],[417157,107055,1059],[415905,108307,1068],[415141,109425,2023],[415045,109666,1102],[414744,109520,2077],[415926,107925,2074],[415056,108746,2087],[386137,136624,1976],[385744,136767,1010],[383540,139261,1027],[384037,139067,1983],[383585,139598,1035],[386094,136305,1968],[386414,136293,1041],[383217,139509,1995],[388288,134849,974],[386852,136103,2000],[386459,136646,1008],[385561,137110,2008],[385606,137466,1976],[394842,127887,984],[419337,105792,1005],[419808,105265,2046],[420701,104235,2064],[421004,104134,2073],[405842,117889,1409],[406479,117282,2066],[405373,118619,1102],[405543,118314,1990],[405502,117985,2024],[411248,112267,2096],[412762,110270,1012],[414387,109935,2081],[414727,109927,1063],[413634,110098,1044],[413448,110110,2084],[413248,110846,2076],[412923,110922,2064],[413138,110559,1060],[412166,111393,2045],[413749,110393,2105],[412875,110566,2055],[413157,110171,2057],[414019,109991,2098],[413654,109695,2079],[413424,110481,1051],[413970,109632,2072],[413533,110767,2069],[414057,110309,2038],[413226,111238,1037],[389818,133255,1938],[383549,138810,1991],[383171,139178,1960],[399147,124089,1224],[399464,123882,1932],[398862,123869,1938],[399420,123532,1961],[389723,132553,1908],[390872,131519,1903],[389409,132798,936],[391886,130462,945],[393125,130191,963],[389716,132999,979],[387450,134931,1988],[389512,133038,1939],[431094,95207,1337],[418547,105968,2078],[404683,118961,2027],[400520,122664,1069],[400563,123012,1025],[399376,123201,1949],[400901,121804,1948],[401336,121651,1979],[401376,121967,1961],[410882,113418,1030],[368603,152868,913],[368696,153060,1848],[370464,151675,1898],[384291,138103,1086],[384819,137890,2008],[383996,138743,1996],[371908,149749,936],[401703,121169,1976],[401746,121499,1972],[402192,121382,1916],[402869,120745,1920],[403028,120708,1094],[401596,122175,1092],[411658,111536,2036],[412058,111121,1036],[411705,111864,2086],[382813,139239,1923],[382322,140314,1997],[381249,140733,1958],[383946,138389,1968],[377037,145500,1954],[368136,152989,892],[374471,147284,1855],[382906,139917,1966],[382276,139969,1984],[382652,140269,1997],[383206,139961,1005],[382551,140731,1072],[422774,102820,1024],[422235,102278,1001],[421309,103674,2046],[420912,103463,2030],[421684,103518,2022],[421284,104052,987],[420658,103920,2040],[407957,115694,1050],[392907,130248,1948],[392409,130876,1962],[393786,129377,1943],[392861,129917,1923],[391584,130888,1890],[398045,124657,1095],[418985,105851,2067],[412216,111745,2094],[431183,95509,2032],[401729,121884,1010],[371606,150968,1937],[378846,143848,1914],[378281,144506,1951],[377420,145144,1947],[387499,135292,2015],[387857,134915,1515],[403479,120392,1092],[368935,152769,1784],[369572,152399,1873],[369207,152758,1717],[406725,117189,2032],[377769,144160,1922],[405080,118871,1035],[419359,105396,2067],[380432,142604,962],[380902,141786,1946],[380028,142511,1965],[380070,142852,1923],[410301,113963,1031],[399605,123108,1320],[414248,108927,982],[411322,111568,952],[408418,114232,1002],[405535,116920,932],[210602,319433,1062],[211419,318556,1062],[214793,319857,832],[208877,320868,1062],[211070,325923,832],[210218,325787,832],[207846,325349,832],[212854,327427,832],[211248,326057,832],[335118,198071,876],[333494,199934,813],[334518,196473,962],[336397,197315,832],[419248,114877,832],[420635,113524,832],[421626,113801,853],[436212,96346,911],[436634,96196,878],[436593,96307,12502],[438747,89436,1185],[440095,92440,722],[437873,90413,1072],[441204,91074,712],[445663,85012,712],[445651,85029,712],[444145,84104,1020],[439076,88953,1067],[442779,87036,907],[411461,122262,862],[417612,118356,722],[407393,128667,722],[438278,89477,1082],[439538,92624,778],[438411,92753,892],[438493,92925,8867],[438452,93067,890],[428468,106175,836],[433609,100429,842],[424764,110579,752],[437190,94534,949],[437143,94169,967],[437474,94009,922],[434532,98280,920],[434253,99103,870],[432905,99526,922],[437129,95022,10123],[436466,94846,986],[436857,94656,961],[434692,97225,932],[434783,98118,904],[435518,97038,929],[436293,97123,872],[435032,97998,889],[429245,105119,9336],[428982,105017,855],[429313,104922,824],[423405,110698,812],[427421,106058,872],[404185,131903,732],[403389,128842,922],[417605,117981,849],[414543,119658,822],[416938,117296,832],[399819,132350,912],[401257,130875,922],[406460,126326,892],[404893,127557,942],[398473,133840,902],[395364,137452,862],[393008,140033,822],[390592,142594,822],[367036,162765,1012],[373525,157278,944],[366264,164327,992],[388503,144618,842],[363379,169772,882],[369096,158919,972],[370139,157275,952],[339854,193579,858],[339680,193499,11170],[339808,193229,881],[380395,150013,912],[382368,148955,872],[377282,154434,877],[376331,154665,930],[376249,154952,7679],[376132,154823,6289],[377253,153918,6554],[377195,153771,875],[377481,152779,901],[375712,154577,927],[374857,154203,893],[374817,153877,927],[372803,154631,902],[375174,153053,912],[373769,156281,893],[373517,156396,7039],[373387,156264,890],[376118,155310,892],[376310,155259,7953],[375543,155922,928],[384417,147729,872],[385692,146896,872],[373254,155252,896],[373096,156579,903],[371923,155297,912],[386775,146067,862],[373524,157270,5542],[370790,156394,942],[375177,156599,940],[367831,161248,1012],[364702,167983,922],[365364,166516,962],[364329,168598,892],[360072,173425,872],[356544,177264,842],[352392,181857,799],[354092,179794,832],[349405,184198,11356],[349493,184488,822],[349108,184528,873],[349446,184133,827],[346794,186536,842],[350304,183346,812],[345077,188892,825],[342351,190432,882],[320547,211858,1006],[313361,219411,832],[316369,214780,1012],[338614,194159,871],[338405,194569,10453],[338139,194186,885],[330899,199154,1012],[328606,201149,1022],[327141,202666,1012],[324601,205572,1062],[318746,212291,1062],[319577,211421,1062],[286012,245644,832],[302359,225558,1062],[314000,217159,1002],[312651,218460,1062],[311112,219741,1062],[242536,283852,1062],[268373,259616,1062],[231298,298380,832],[309463,220901,1062],[300653,226658,1062],[297218,229216,1062],[292918,232334,1062],[289684,234794,1062],[287638,236691,1062],[284091,241114,1062],[281943,244084,1062],[278205,249448,1062],[276631,251666,1062],[274926,253541,1062],[272334,256108,1062],[271457,256890,1062],[269652,258500,1062],[265231,261970,1062],[245067,280767,1062],[262061,263975,1062],[256862,267538,1062],[259607,265438,1062],[254672,269515,1062],[252458,271715,1062],[250534,273565,1062],[249268,274992,1062],[247235,277665,1062],[240065,286724,1062],[227570,297540,1062],[228211,296316,1062],[238343,288386,1062],[236027,290279,1062],[233932,291726,1062],[231275,293609,1062],[229744,294730,1062],[228881,295447,1062],[228711,295667,1062],[226505,299403,1062],[219985,310200,832],[221584,305692,1062],[218292,312438,832],[217434,310893,1062],[216483,315620,832],[213275,316227,1062],[205414,323264,832],[207209,321619,1062],[205003,321964,1062],[204150,322181,832],[204136,322052,1062],[205822,321866,1062],[429041,105448,10435],[429118,105331,15783],[429964,104432,836],[431964,100755,11847],[431839,101153,9304],[431164,101672,9748],[434681,98236,14736],[434573,98610,889],[438575,94076,753],[438157,94697,792],[435849,96869,900],[349781,184058,818],[348945,184846,10253],[349441,184562,11181],[348764,184987,835],[428735,105760,823],[428512,104909,12989],[428743,105216,10609],[429008,105134,10553],[430753,103266,831],[430243,103012,889],[430811,102928,15768],[431310,102280,10694],[431097,102832,827],[430980,101949,13452],[429918,104073,852],[430333,103714,847],[429956,104233,11317],[428896,104340,892],[429497,103686,10733],[429493,103841,886],[428962,104802,10533],[429022,104683,15640],[429254,104741,10185],[436942,95338,910],[437349,93019,996],[436992,93380,992],[437340,92350,1022],[437561,94682,895],[437864,94532,873],[437906,94868,846],[436675,96515,855],[435476,96719,944],[438100,94660,13683],[437430,93666,940],[437056,93494,983],[437345,93200,10660],[350242,183585,812],[350084,183906,10287],[350015,183629,813],[348603,185039,11552],[348245,185417,11779],[348111,185489,9761],[431583,101885,9623],[431136,102027,8672],[431492,102540,12807],[431415,102390,857],[431535,102270,8200],[430288,103350,894],[433193,100475,866],[429231,104275,890],[437575,94827,10887],[429877,103756,875],[428734,105139,15738],[430190,103105,12217],[437025,96014,820],[436131,95700,969],[431714,102321,836],[432043,101764,11076],[431901,101574,878],[432022,101401,11459],[432299,101043,11652],[432102,101144,899],[432058,100808,904],[435601,96777,11284],[435843,95466,962],[436018,95529,10849],[350062,183977,815],[342832,190880,840],[342496,191349,805],[348766,184771,14346],[347950,185882,829],[339602,193987,818],[339356,193993,867],[339558,193646,856],[428934,104490,10704],[429283,104364,11326],[429613,104299,11221],[429534,104157,887],[429578,104511,847],[432439,101075,877],[432479,101388,847],[431947,101935,844],[431632,101671,901],[347587,186341,843],[339727,193844,11183],[436936,94465,14708],[437270,95184,885],[436816,94325,979],[436103,95161,12741],[436087,95364,951],[435616,96714,7553],[351710,182478,8734],[351958,182251,807],[350446,183728,10817],[437697,93209,954],[438116,94358,836],[339837,193845,7901],[338511,195170,10824],[339455,194149,6807],[436418,94489,982],[351500,182290,817],[351171,182693,809],[351040,182939,8962],[350489,183173,824],[349844,183901,12448],[340168,193197,867],[340888,192682,840],[339312,193662,862],[339268,193306,903],[338659,194517,858],[337728,194627,912],[340016,193538,7465],[338172,194043,8198],[336799,195117,927],[338870,193276,892],[342144,191752,824],[339024,194071,881],[338798,193643,11120],[338277,195254,842],[338698,194769,7637],[338702,194853,823],[351374,182359,9788],[352342,181477,807],[350537,183531,807],[350837,183156,803],[351544,182621,811],[431674,102004,863],[339104,194455,7207],[338831,194627,9743],[432791,100616,892],[432424,100643,10104],[432752,100301,916],[340649,193018,7917],[340558,193134,828],[341276,192280,849],[432943,100514,9089],[432396,100995,9049],[432128,100746,9757],[432353,100398,906],[437990,93369,898],[437561,91369,1052],[339300,193977,10839],[435762,96190,936],[373206,154891,874],[437359,93895,9549],[339071,194457,839],[438192,93211,898],[437848,93255,7668],[376070,154949,892],[375411,154880,998],[374399,154541,901],[377745,151518,902],[368509,159999,992],[376373,154994,910],[375552,154968,2796],[376104,152953,911],[376286,154329,924],[376030,154620,940],[376737,154946,6019],[376462,154865,6465],[377150,153420,899],[376724,153028,900],[377101,153058,884],[376677,152682,883],[373433,156599,898],[340211,193556,811],[340974,192647,7563],[339959,193754,9790],[374798,153962,7456],[338568,193796,897],[373330,155020,6955],[373584,154872,904],[373856,156934,910],[376485,152896,6262],[377188,153174,7015],[377240,154111,889],[340342,193367,8083],[376419,152978,906],[373478,156950,895],[376647,154724,890],[376063,154573,5786],[375756,154931,893],[322234,208338,1082],[335169,198375,1021],[443903,81566,1152],[444257,86883,594],[457400,55040,1522],[457359,53203,1522],[462761,54675,1102],[462283,55742,892],[461801,56820,892],[462865,54417,672],[462925,54267,1102],[457380,67875,732],[456573,61990,1522],[457365,57052,1522],[457314,58070,1522],[457230,59058,1522],[457089,60054,1522],[456863,61023,1522],[456264,62958,1512],[446661,80868,2267],[446208,81296,1099],[446246,80982,2193],[455888,63885,1502],[452239,73714,930],[452651,73277,906],[452856,73678,3059],[455593,64769,1460],[455450,64810,1502],[455444,66553,2229],[455580,66347,15749],[455458,67211,1244],[455665,65145,1795],[454994,65722,7632],[455167,67303,2413],[454807,67706,2469],[454549,67384,13398],[453911,68982,9768],[453822,69206,13102],[453362,69277,11751],[453417,69338,2139],[453155,69786,2616],[452150,73039,925],[452561,72600,876],[451170,73441,3132],[451376,73263,910],[451582,73669,3062],[447785,77982,1339],[448303,77930,3002],[448209,78208,1189],[446176,80339,2381],[446155,80655,1500],[445690,80676,8064],[453374,72390,933],[453409,72722,820],[453014,72499,921],[452692,69811,1303],[452780,70190,1853],[452376,70319,2447],[455174,66703,9430],[455072,66329,14322],[455318,66470,6047],[455102,66962,2137],[454597,66662,1429],[454154,69108,1229],[454198,68815,2372],[454477,69047,1088],[454004,67443,1412],[455334,67068,16640],[455365,66825,6058],[451739,73166,1014],[451822,73500,1555],[455421,69323,2312],[455459,69639,2263],[455014,69378,2340],[455606,65724,6017],[455747,65816,1729],[455555,65734,16508],[455354,65873,7632],[455757,66117,1326],[455417,66217,7895],[455294,65837,1433],[454360,68060,1241],[454896,68404,2450],[453629,70705,2635],[453798,70586,928],[453975,70980,2695],[455208,67617,2432],[454206,69516,8607],[454303,69519,2556],[454346,69833,2591],[454616,68735,8360],[455270,68937,902],[455162,69094,10572],[454627,69433,2484],[453718,69893,1055],[453801,69636,2694],[453934,69900,13403],[454392,69551,15497],[453902,69168,1075],[454158,69201,8503],[453948,69499,1112],[454552,69715,926],[453978,68916,2599],[454344,67427,2161],[454637,66981,1394],[455147,66093,15803],[455627,67902,2362],[455492,67523,1159],[454110,69880,2691],[446545,80511,1276],[446280,80568,10029],[445727,81098,1297],[445852,82009,7881],[453888,68666,10013],[453506,69703,2732],[452934,69170,1342],[454407,68381,1320],[453895,68539,2113],[454028,68096,1300],[455827,69588,2115],[455540,70614,1634],[455334,68648,2319],[455639,68836,837],[455600,68514,876],[455572,68168,1114],[445671,80755,1129],[447442,77736,1281],[447233,77896,2353],[447095,77528,1105],[455795,69252,2260],[453031,72186,1748],[453469,72141,2741],[446895,80720,1085],[444586,82508,1035],[445159,83722,916],[455251,67974,2381],[455441,67774,11216],[454411,67781,2450],[446314,78822,1130],[445812,78876,1162],[446813,77617,1153],[446303,81650,1766],[446289,81531,8380],[445305,81249,1642],[444862,81369,1052],[447601,79076,1073],[447936,79320,1018],[447658,79409,1251],[446656,81492,1050],[445586,80108,1138],[445525,82579,2278],[445921,82455,1541],[446037,82794,2539],[445308,81604,1031],[446712,81829,1213],[446264,81854,7444],[446300,81978,1137],[445928,82143,2220],[447026,81088,2267],[447079,81270,7418],[446973,81414,912],[447267,81274,859],[447347,81641,1311],[447540,80248,2358],[447205,80296,1763],[447195,79976,2208],[447173,82412,1911],[447225,82753,1998],[446482,82688,2382],[453874,70303,2500],[452943,70901,2853],[453349,71119,2927],[452994,71242,2950],[445648,80989,6894],[444538,82150,1019],[446437,82333,2410],[446938,83212,1858],[447691,82222,885],[447904,81431,1024],[447561,81189,950],[444656,82380,7296],[444987,82377,959],[455222,68250,1472],[454158,70236,2723],[455044,69712,2146],[452329,74050,1579],[452767,74277,705],[452469,74445,2838],[450277,74609,1125],[450325,74971,1138],[450094,74769,3043],[449022,76413,2824],[449349,76599,1090],[449119,77059,3007],[449579,77289,3065],[449854,76828,1569],[449989,77216,2748],[448906,79173,2722],[448442,79262,2510],[448410,78911,2702],[449221,75569,1174],[449651,75470,1186],[449709,75806,1395],[450823,76901,1107],[450759,76560,832],[451217,76843,2477],[452081,72395,1130],[451742,72211,2794],[452154,72091,2709],[451180,74701,958],[451689,74636,2801],[451595,74923,965],[450818,73491,2992],[450652,73109,1373],[451129,73110,3161],[452417,70661,2411],[451781,70784,2042],[452545,71327,2984],[452900,71516,1111],[451615,73995,2925],[451833,73843,1094],[451983,74226,2494],[450352,74018,3248],[450877,73838,3185],[452189,73356,886],[451288,74430,2969],[453684,71027,2818],[453588,71316,931],[453198,72889,2796],[453245,71405,920],[451403,72630,2453],[450889,72349,1181],[451314,72257,1881],[452520,72260,926],[452893,73987,3011],[453760,71694,2666],[453289,71747,926],[454395,70169,2659],[453314,70798,3008],[453240,70431,2645],[452772,70478,1202],[454505,71155,2421],[454273,71248,2499],[454105,70848,877],[451646,75264,1045],[451986,75154,845],[452023,75499,727],[448788,78191,2856],[448699,78470,1102],[449022,77369,1070],[448658,77162,2909],[448398,78601,3117],[451409,76371,1133],[451410,76715,519],[450023,77527,2663],[450449,77802,2481],[450778,77675,2572],[450448,78101,1925],[448881,78837,2979],[453875,71229,838],[453111,73177,1055],[454542,71507,2298],[454182,71520,732],[453837,72386,2492],[453905,73030,2274],[453079,71897,2942],[454055,71627,2626],[454192,70554,2635],[454129,72298,2448],[454165,72635,2345],[454601,70077,958],[453222,73559,1924],[451460,76086,2367],[450705,76216,699],[453294,73893,2329],[452379,74735,1040],[452797,74593,561],[452407,75062,832],[449322,78756,2746],[455151,70399,2400],[454776,70461,2697],[450284,77080,1483],[450431,77451,2866],[450985,77252,2735],[450582,76960,1110],[449671,78271,2549],[450086,78165,2367],[450124,78521,2248],[453495,73080,1379],[449191,77725,2793],[449660,77959,2973],[449281,79050,1634],[449637,78936,842],[449273,79369,936],[452049,74561,2814],[448025,79020,2798],[448933,75732,2828],[448853,76050,1123],[448394,76126,1105],[448152,76918,2733],[447795,77330,2665],[447330,77047,971],[448579,77484,1225],[448753,77865,2970],[451668,71550,2947],[451580,71188,2373],[452083,71426,2918],[453802,72049,2617],[453591,70376,2695],[451768,75636,2088],[451742,76271,559],[448498,79608,2669],[448427,79915,1114],[448113,79666,2855],[454835,71093,2384],[454752,71392,684],[454339,71882,2270],[454596,71850,2430],[447947,78330,2961],[448200,77279,2750],[447603,78126,2821],[448565,76487,2852],[448501,76810,1361],[447512,77451,2790],[448023,76551,1605],[447996,78688,2994],[447537,78438,1341],[447850,77656,2833],[450854,74811,1099],[450552,74872,1008],[450666,74601,3092],[451723,75961,863],[450883,75122,934],[450938,75457,1097],[450619,75203,1335],[451952,74827,960],[450057,74457,3095],[450249,74296,1300],[450960,75767,843],[449726,76140,1025],[449400,75948,2998],[450386,72893,2290],[449352,74003,1762],[450580,72414,1252],[450391,75297,1467],[449609,75155,1177],[449239,74930,2591],[449311,75269,2996],[448844,75060,2809],[449704,74873,3036],[450017,74101,3189],[450484,74228,1224],[449951,73773,2861],[449602,74170,2896],[449398,76912,1201],[449443,76288,2976],[449914,76519,2974],[450159,76391,986],[450557,76637,1363],[450073,75739,973],[453546,70056,2644],[450679,75867,967],[450905,74165,2986],[447077,79640,1162],[447441,79229,2829],[447480,79558,2772],[447796,79775,2517],[446710,79083,1475],[446431,79172,2139],[448457,80227,969],[448065,79983,1596],[447336,80980,2360],[447090,78970,2568],[447367,78880,2440],[447091,82068,1372],[446828,82183,2206],[451346,72910,1129],[450702,72831,2580],[450933,72708,1142],[446901,78266,1216],[446824,79415,2475],[447302,78233,2699],[446496,80151,1239],[446530,79854,2269],[446919,80072,2616],[447401,79870,1106],[446871,79754,2520],[447742,80089,1186],[447785,80430,1168],[448215,80669,2454],[447926,80808,2458],[448068,80317,1033],[447952,81117,2259],[447514,80872,857],[447927,81742,774],[447214,80607,1320],[452548,71959,1871],[452441,71586,1053],[451998,71698,1236],[447582,80560,2388],[448552,80904,1077],[448227,81005,2015],[454670,70719,758],[454301,70425,890],[448313,75481,1157],[452504,71010,2979],[455092,70704,1030],[455496,69962,2211],[445412,82255,1295],[450219,76743,1189],[449397,79728,2027],[448985,79845,2599],[448924,80182,1136],[448533,80565,1420],[449717,78625,2550],[448866,79485,1588],[451660,72490,1125],[451581,71846,1194],[451337,71966,2725],[450935,72074,2315],[445994,79619,1144],[446856,80403,1111],[446047,79979,1226],[448268,81360,1945],[448322,81399,732],[446500,83637,884],[446075,83461,1847],[446537,83326,1975],[447099,81759,2059],[447994,76223,1804],[448162,75600,1202],[447572,78762,1228],[451705,72808,1178],[450967,74512,3221],[450437,73237,2375],[450227,73337,2747],[445073,83049,929],[445186,83397,1873],[451309,75715,921],[447340,78550,2662],[447030,78631,2351],[447151,77202,2470],[451220,73762,3243],[451240,74083,2928],[449206,74615,2713],[451232,75048,1057],[447378,81980,1113],[445565,83594,984],[446082,84124,743],[445559,82931,2107],[445586,83248,1913],[446066,83107,2385],[446492,79496,2394],[447420,82312,1111],[446097,83772,1594],[446657,78722,1395],[445906,78943,1147],[450630,75549,871],[452133,72720,1262],[455511,70291,1813],[462761,54675,252],[462925,54267,252],[454994,65722,1502],[451781,70784,1292],[449352,74003,1222],[427492,25064,10375],[427104,25150,1842],[428710,24676,1902],[429886,24540,1752],[429729,24684,8371],[429748,24454,9076],[428957,26113,1946],[429466,26142,1956],[429117,26482,1982],[429218,25946,1960],[429521,25914,2008],[429424,26598,1992],[429268,26545,1982],[429770,26351,1924],[429582,26640,2002],[429888,26447,7781],[429783,26645,1986],[430138,26534,1920],[429906,26691,2012],[430153,24797,10198],[430334,24918,1863],[430079,25183,1811],[430477,26540,1959],[430398,26686,2022],[430216,26230,8965],[430345,26280,9199],[430325,26334,7197],[430896,26218,1888],[430665,26291,1937],[430815,26040,1989],[430335,26012,13788],[430474,26031,1927],[430878,26581,2032],[430720,26627,2022],[430684,25959,13551],[430495,26013,2024],[437843,23600,2654],[437560,23896,1692],[437360,23602,1802],[437690,23903,1722],[437826,23850,1982],[438079,23870,1802],[437950,23889,1732],[438832,22582,2902],[439112,22827,2597],[438747,23330,2566],[438206,23842,1872],[438298,23481,2673],[438325,23781,2499],[438331,23805,1972],[438573,23707,1982],[438454,23760,2152],[438688,23647,2152],[438799,23578,2162],[439006,23420,2192],[438905,23503,2192],[438794,22489,3142],[438887,22452,3142],[439190,23236,1922],[439101,23331,2152],[439082,22519,2742],[439416,22918,1912],[439348,23029,1912],[439437,22735,2533],[438322,22788,2812],[439673,22501,1708],[439626,22735,1912],[439859,22581,1912],[439740,22654,1922],[439954,22405,1635],[439982,22516,1912],[440223,22254,1448],[440109,22459,1752],[440240,22411,1702],[440510,22340,1482],[440507,22155,1383],[440647,22318,1452],[440786,22305,1422],[440895,22037,1348],[440926,22301,1412],[439518,22823,1872],[446790,24428,1178],[446863,24311,8988],[447150,24332,1080],[453776,25552,666],[454214,25199,598],[454315,25460,572],[450930,24112,3932],[445177,22501,1062],[454691,25162,492],[446421,24084,7373],[446491,24045,2362],[446580,24150,8369],[446726,24356,6976],[446945,24957,8958],[446730,24923,8894],[447377,25161,8555],[447485,25215,1133],[447463,25355,3627],[447713,24666,8424],[447881,24825,1029],[447754,25016,8353],[448132,24850,1057],[448070,24866,3624],[448088,24606,4347],[448844,25496,1107],[448645,25261,4604],[448687,25224,3911],[447918,25094,4486],[447632,25271,1080],[447845,24589,1063],[447945,24392,7120],[448864,25528,4610],[448776,25579,4871],[449042,26179,1179],[448903,26026,1140],[449233,25980,1164],[448446,24227,4396],[448657,24272,883],[448645,24416,917],[449533,26463,1272],[449300,26407,1312],[450751,24151,419],[451053,24252,442],[454690,25163,492],[454691,25163,472],[447755,24376,4468],[448448,24988,3843],[448337,24798,3605],[448577,24744,3601],[450370,24731,931],[449915,24143,575],[450221,24031,446],[449533,25395,1036],[449207,25293,1018],[449387,25254,3602],[449768,26509,1242],[445942,23482,4111],[445875,23236,1013],[446088,23456,5299],[449258,25657,1077],[440168,22162,2642],[440713,21774,1542],[445900,22896,825],[446058,23109,2394],[444815,22757,999],[441065,22306,1412],[440374,22371,1632],[439841,22174,2802],[440100,22069,2802],[439804,22081,2892],[439711,22119,2892],[431443,25729,1795],[431514,25985,14508],[431321,25807,8651],[436940,23738,1589],[436960,23473,2332],[437711,23131,2541],[437766,22959,2763],[437815,23292,2850],[436109,22869,2122],[435845,22911,2212],[435845,22910,1762],[433744,24150,1834],[434272,23941,2142],[433786,24485,1799],[430018,26356,14289],[430282,24665,1767],[430358,24544,1730],[430555,24716,1939],[431757,25608,1891],[431763,25916,1815],[431645,25677,3824],[430070,26701,2012],[430675,25704,2156],[430431,25706,1936],[432695,23871,1850],[433007,24050,2023],[432941,24162,1779],[431165,25290,7407],[430824,25435,2246],[431105,25240,2181],[430179,26056,3373],[430260,26060,2273],[431342,25517,2785],[431334,25781,2180],[430820,25575,2012],[431102,25933,1787],[431264,25988,7517],[430304,25979,5291],[429328,25756,9602],[429506,25646,10636],[429433,25814,9278],[429687,25883,8741],[429590,25920,8923],[430540,25178,1879],[430412,25142,2702],[430360,24893,14124],[430560,26662,2022],[429964,25222,13570],[429867,24943,1795],[432618,24138,2884],[432718,24207,2083],[432561,24189,13835],[430576,24298,1881],[430875,24705,1924],[430007,26101,9559],[430127,25805,7962],[430187,25773,3586],[430291,25829,1947],[433511,23602,2251],[433337,24254,1732],[432598,24478,3564],[430122,25483,10945],[429913,25333,8117],[429255,24839,1805],[429565,25108,1861],[429233,25236,1889],[432114,24104,4174],[432084,24150,2126],[432029,24038,3043],[431224,24339,10008],[431113,24339,1732],[431027,24285,7327],[430185,25770,6993],[430033,25737,9382],[430855,25138,1957],[430723,24998,1857],[431012,25011,11395],[431182,26459,2012],[431032,26525,2012],[430232,25258,11652],[430313,25370,1894],[430692,25250,2194],[430632,25157,11423],[430544,25614,6512],[430420,25651,6162],[430784,25570,7010],[430714,25683,13272],[431239,25086,2121],[431793,24938,1984],[431746,25050,2778],[431477,24752,1893],[431162,24531,1757],[429542,25472,1980],[429841,25354,1925],[429679,25640,1951],[427716,25371,1884],[428033,25602,10665],[427458,25291,9468],[430362,25279,7383],[430288,25286,11198],[430267,25579,5852],[430443,25463,2549],[432919,24556,1876],[432867,24696,3271],[431132,24870,2017],[431353,26101,1859],[430892,24203,1984],[432314,24277,3073],[432402,24058,1830],[430102,24725,1757],[429911,25229,9931],[429899,24816,1739],[430513,25522,2064],[430544,25299,9913],[428366,25037,2364],[428195,25167,2664],[428135,24945,2008],[428216,25743,1887],[427809,24991,8621],[427894,25147,1962],[427507,25124,1844],[428555,25575,1917],[428426,25159,11043],[428636,25472,2179],[428882,24758,8117],[428925,24955,1902],[428624,25053,9009],[428119,25414,1943],[428173,25385,1952],[428284,25175,8982],[429887,26315,14073],[429797,26145,2101],[429928,26161,13524],[429748,26026,2229],[429896,25798,8090],[429373,25454,1923],[428666,25121,1947],[429470,25314,10732],[428910,25747,1948],[429070,25859,8729],[428883,25825,1988],[447527,24382,988],[447539,24576,1040],[449084,25788,3825],[430124,24467,10392],[430036,25633,6022],[429968,25717,3190],[430132,25635,4531],[430234,26699,2012],[429210,25659,1969],[446606,23299,4798],[446548,23239,6513],[446646,23233,4181],[447405,24819,8323],[447395,24988,3332],[446860,24058,7281],[446987,23954,5202],[447124,24160,6387],[446382,23008,665],[446146,23066,965],[445933,22717,405],[447220,23884,6479],[447161,23934,7321],[447022,23760,4766],[448046,24164,2946],[448048,24073,861],[448174,24048,860],[430344,25774,6221],[446579,23602,5055],[446596,23521,963],[446710,23546,2885],[446506,23962,6046],[446373,23987,8247],[429424,25820,1962],[429171,25604,1935],[428924,25519,2584],[429095,25389,9977],[429547,25945,6646],[449063,25723,1124],[447485,24201,971],[432758,25315,1852],[431422,26178,1826],[429616,24698,9930],[429587,24706,1774],[429519,24571,1681],[429494,24760,8075],[447580,23987,5930],[447371,24101,3799],[446551,24379,8709],[447393,25129,8409],[447132,25239,4522],[446794,25053,8322],[446452,24717,7482],[447010,25027,4120],[447192,24856,6317],[430281,24342,7987],[429918,25700,3976],[429821,25752,1983],[430228,25704,6390],[429977,25543,6981],[430019,25781,2355],[429964,25820,5642],[430081,25613,5329],[430057,25555,1911],[447025,23928,1026],[447866,24220,948],[447952,24135,3292],[450033,25468,980],[451211,25794,981],[451201,26587,1102],[450937,25767,1011],[450722,26599,1182],[447570,24185,7285],[431833,24047,1936],[431617,24323,2295],[431516,24196,7704],[431244,24816,2693],[431453,25094,2043],[431491,24220,2022],[431627,24605,1913],[428903,25425,1934],[429264,24737,1711],[429182,24589,8002],[428991,25986,7376],[447324,24752,8130],[447229,24094,1037],[447650,23646,4965],[447913,23468,658],[447801,23642,6459],[447545,23955,949],[447273,24006,5513],[446275,24179,7597],[446259,24052,6262],[446883,23885,3444],[446924,23793,2813],[446711,24020,6252],[448155,24424,955],[447970,23900,3974],[448100,23855,5892],[447931,23741,5154],[451678,25485,991],[451227,25329,918],[451702,25091,829],[451677,26536,1052],[432018,24645,2842],[432335,24510,3097],[436057,23432,1752],[435325,23045,2200],[435729,23222,1923],[431936,24074,1719],[432161,23943,1693],[432382,24508,1855],[447716,23933,3665],[447768,23851,5598],[446528,23533,5956],[446770,23481,5624],[446824,23665,4592],[447251,23744,897],[447300,23695,5254],[447444,23764,2761],[446003,23765,2901],[446059,23798,5546],[445854,23969,5292],[446295,23845,5786],[446375,23653,4571],[446604,23758,8216],[429743,26671,2002],[447670,25437,8445],[447553,25637,4962],[447937,25481,5004],[447143,23496,2876],[446492,23360,2799],[446652,23692,7134],[446745,23806,5838],[446526,23161,2360],[446401,23307,4376],[447277,23431,659],[447324,23504,5049],[447599,23318,464],[447567,23608,806],[446306,23292,1748],[446347,23230,1084],[446188,23604,3500],[446182,23510,7501],[446239,23656,2625],[446443,23627,7326],[446312,23418,5784],[446168,23752,6866],[446043,23611,2328],[446117,23232,4953],[445805,23680,7992],[445857,23697,1019],[446124,23421,1091],[445602,23562,4192],[445635,22722,670],[446622,23194,738],[446839,23387,817],[446948,23455,2621],[448421,23796,752],[448301,23652,5187],[448447,23476,530],[448199,23640,727],[448208,23774,3650],[448239,23904,3745],[448530,24112,3039],[448554,24138,4363],[447611,23767,5543],[447744,23696,3343],[447887,23808,5863],[428403,24893,1881],[429919,26041,8543],[445860,23660,5356],[445661,23557,4385],[445584,23476,1015],[430319,25666,4984],[445599,22922,1121],[445383,23135,1122],[445161,22587,1062],[447050,23534,868],[448605,26045,4765],[448841,26268,3662],[448395,26092,4332],[446939,23327,5305],[447044,23374,4634],[446197,23749,7491],[446189,24348,7244],[446138,24355,6092],[446133,24141,8312],[448672,25681,3222],[448857,25684,1112],[448342,25488,5314],[447888,25338,4835],[448840,25857,4812],[448690,23696,635],[448667,24035,793],[447161,25360,7862],[446831,25072,7118],[449107,25397,3696],[448625,25646,4676],[448183,24450,4315],[448315,24239,4315],[451174,24967,832],[451348,24591,658],[448179,23611,4962],[453061,26157,812],[453378,24841,217],[453497,25959,722],[453916,25726,652],[450510,25770,1009],[450140,24015,5121],[449369,23680,375],[447959,23340,4842],[447303,23151,402],[449622,23844,542],[446739,23272,2568],[447890,23809,817],[448957,23597,438],[449144,24085,838],[449295,24731,949],[447078,23284,565],[449400,23796,562],[449272,25170,1036],[449137,25099,3375],[449155,24921,973],[448375,24609,1003],[448390,24716,1028],[449109,25547,4882],[449552,24999,968],[449041,25711,3639],[450232,23962,384],[451300,24302,435],[451736,25620,886],[451957,25208,706],[452610,26320,922],[446872,25062,6415],[446855,25075,7483],[448275,25738,4915],[448174,25799,3594],[431702,25246,1789],[448883,25089,4569],[448865,25035,1051],[449081,25313,1075],[448623,24825,1020],[448885,24663,952],[448430,25197,4170],[432432,23944,2203],[433340,23546,1946],[448281,25980,6022],[448836,26215,4557],[445787,23377,2396],[448906,24263,859],[448596,24497,4307],[448683,24383,4542],[448706,24641,909],[448409,25093,4431],[449416,24989,3281],[448725,24337,3860],[450658,25681,998],[450554,25568,1990],[450678,25240,952],[451113,25753,3527],[450358,25704,1185],[445907,23715,4542],[450971,24986,1093],[446817,23780,939],[446264,23315,2439],[448397,24178,900],[448968,25727,2732],[446399,24640,8478],[448167,24881,4312],[446039,24155,5668],[445946,24088,7252],[447996,24081,3845],[447965,25882,4602],[448130,25822,4335],[451746,25085,1981],[452148,26447,982],[433089,24729,1917],[432532,24626,2352],[432336,24765,2631],[433033,24369,1799],[432783,24834,1852],[451273,24582,706],[450698,24839,868],[448394,25560,4374],[433387,24599,1799],[432100,24903,2501],[432315,25025,1863],[439647,22179,1919],[446963,25016,4899],[450243,26573,1202],[436086,23747,1595],[435746,23526,1611],[437732,22636,2869],[447058,24914,8528],[436554,22950,2597],[436535,23086,2541],[437374,23361,2445],[436566,22748,2284],[437431,22582,2265],[436898,22830,2640],[438142,22342,3462],[438142,22343,2622],[436097,23431,1956],[436302,23596,2061],[437386,23923,1578],[434872,24403,1722],[438187,22472,2976],[432669,23840,2058],[433706,23839,2292],[434100,23403,2074],[433503,24224,1961],[437820,23900,1722],[435676,23337,2073],[435786,23879,1517],[435357,23636,1549],[435140,23960,1822],[434961,23778,1733],[433107,24246,1943],[434929,23470,1843],[434541,23595,1793],[434636,23296,2083],[434995,24120,1585],[434616,24259,1635],[433729,23453,2177],[450835,25039,913],[436575,23529,1836],[437410,22980,2356],[436913,23122,2323],[437054,22975,2724],[436310,23630,1839],[437350,23048,2674],[436290,23344,2074],[439385,22396,2423],[435150,23343,2046],[434897,23150,1992],[434293,23521,2069],[434536,23300,2272],[439272,23135,1872],[433699,24432,2017],[435337,23350,1796],[435410,23992,1655],[440265,22590,1416],[450594,26838,1327],[450297,27002,1385],[461878,37046,1712],[465239,35098,1102],[465382,35631,1102],[465511,36168,1102],[465627,36707,1102],[465894,38340,1102],[462103,39179,1712],[465819,37793,1102],[466039,39988,1102],[466060,40539,1102],[461702,40794,1712],[466067,41091,1102],[466065,41413,1102],[465945,42550,1102],[465796,43683,1102],[460194,42014,1712],[465618,44813,1102],[465412,45937,1102],[465178,47056,1102],[458792,42521,1712],[464915,48169,1102],[456779,49051,1952],[464625,49275,1102],[464307,50373,1102],[463961,51463,1102],[457150,51032,1522],[463588,52543,1102],[463188,53614,1102],[457356,53049,1522],[462925,54267,1952],[450583,33661,1994],[449488,35894,2112],[448834,35155,2122],[463834,31497,1102],[464040,31890,1102],[460695,34639,1712],[456115,47149,1952],[448856,34176,2186],[448868,34272,2068],[447940,34309,2122],[450776,27561,1478],[450814,27889,1414],[450425,27810,3564],[450535,27439,1923],[450348,27603,1511],[455300,25392,309],[454691,25162,472],[456956,25796,372],[461458,35643,1712],[464579,33107,1102],[466004,39438,1102],[465956,38888,1102],[465730,37249,1102],[465083,34569,1102],[464914,34044,1102],[464732,33523,1102],[464413,32695,1102],[447887,26089,4358],[448002,26108,4789],[447670,26221,4960],[464233,32290,1102],[463615,31112,1102],[463384,30733,1102],[462886,29999,1102],[463141,30362,1102],[459524,34165,1712],[462619,29645,1102],[462340,29300,1102],[462050,28964,1102],[461750,28638,1102],[453097,35621,1848],[455909,35805,1672],[455741,36444,1722],[461164,28073,1102],[460881,27833,1102],[460589,27603,1102],[455633,33111,1495],[460290,27383,1102],[455667,27768,868],[454365,29176,1259],[459984,27174,1102],[459670,26976,1102],[459350,26788,1102],[459024,26611,1102],[457312,25902,1102],[458691,26446,1102],[458354,26292,1102],[458011,26150,1102],[450565,27122,1635],[450831,27159,2031],[446550,25978,8167],[446983,25931,9112],[446810,26369,4468],[455018,25460,570],[454691,25163,492],[447319,28268,1607],[447647,27811,1724],[448327,28009,1495],[433693,27875,2032],[433474,25304,1727],[434687,28062,2022],[455657,25623,531],[451842,27067,1114],[451747,27394,1167],[451516,27406,1204],[455532,25871,626],[447039,25403,8522],[447001,25465,9136],[446885,25396,7303],[444765,25502,4458],[444591,25364,3384],[444648,25253,1422],[452292,27180,1059],[445044,28664,1916],[444654,26805,1634],[445402,26952,1573],[451623,26752,1094],[451868,27023,3541],[452309,26765,1030],[438799,23960,2154],[437714,23912,1976],[437836,24138,1588],[439988,22725,1537],[440029,23066,1482],[451811,26658,3405],[448727,27148,1337],[448682,26823,1288],[448937,26918,4682],[449053,27088,1312],[449445,26920,1516],[449858,26950,1263],[445982,26935,4531],[445907,27101,3187],[445841,26823,7955],[442355,30434,2092],[441432,30019,2092],[441754,28292,1947],[447636,25895,5087],[445590,25167,8891],[445355,25243,8386],[445277,25017,8781],[445540,25269,6577],[445564,25562,6379],[445328,25536,8669],[445931,24682,7926],[445889,24714,7790],[445781,24582,6090],[444772,24879,4749],[444872,24986,8004],[444913,25717,6014],[444756,26118,4209],[444627,25615,1545],[444688,24408,1295],[444846,24634,3683],[444525,24691,3679],[445282,25309,4858],[444127,25163,1449],[439759,23183,1665],[439205,24083,1584],[441915,28062,2185],[442105,28038,4188],[436721,26007,1900],[435039,24445,1611],[439164,23454,2165],[431901,26675,1942],[431431,26791,8364],[431398,26546,1966],[438781,23659,2435],[432861,27326,2010],[432720,27698,2042],[432643,27432,2028],[438336,24342,1628],[438123,28888,2072],[441665,27627,1913],[432372,27234,2020],[431947,27003,1991],[432592,27074,1977],[428313,26439,1967],[427756,26940,1962],[427455,26830,1952],[438343,24075,2209],[425403,25652,1932],[425836,26335,1912],[425040,26196,1902],[437985,24283,1740],[426660,25586,1831],[426725,25372,10061],[426951,25535,1804],[430777,26911,2018],[431190,26716,14481],[431056,26744,1973],[428589,26888,2005],[429713,27380,1992],[428723,27191,1982],[431037,27142,2020],[430994,26917,1973],[427695,25799,1949],[427489,25614,9315],[426222,25934,1854],[426594,26083,1877],[430621,27196,2036],[426816,26597,1932],[423882,26035,1882],[425008,25732,1902],[456002,37710,1782],[451723,39243,2082],[461439,28322,1102],[453053,35299,1822],[457518,34419,1632],[455197,45364,1982],[456562,39201,1802],[454244,43583,2002],[458075,42049,1712],[457516,41161,1802],[452861,35651,1863],[450660,37531,2102],[450148,36748,2112],[431157,27053,10581],[431377,26988,2012],[431499,26323,9888],[431793,26314,14426],[431739,26345,1920],[431998,26478,1968],[432170,25807,1821],[432018,26093,1889],[428608,26467,1987],[428526,26486,12030],[432415,27559,2030],[432345,27423,11883],[432537,27392,2067],[431992,27195,10733],[431679,27163,11146],[432613,27225,11039],[432468,27271,8878],[426171,25565,1820],[426330,25733,1863],[427002,25892,1852],[427120,25838,9796],[427193,26114,1924],[430762,27230,9416],[430653,27188,8020],[431356,27426,2043],[431228,27468,9196],[431071,27251,8077],[427430,25716,1848],[427214,25684,1871],[431601,27197,7730],[431696,27198,2043],[431544,27472,2012],[431399,26428,1900],[426912,25874,1889],[426637,26033,1910],[427061,25494,9608],[431087,27503,2022],[431656,27539,11269],[431495,27104,2002],[431995,27348,2029],[431954,27381,2064],[432289,27523,9841],[431038,27244,2001],[426528,25943,10711],[426453,25556,10361],[426545,25728,1852],[426936,25440,1796],[426749,25942,9316],[426753,25677,9887],[447233,27588,1647],[447698,27463,1655],[445071,26580,3041],[445086,26082,4160],[446543,25407,9104],[446568,25719,8890],[446489,25609,1347],[447888,26827,3874],[448014,26673,3908],[448040,26983,3714],[445601,24560,8715],[445814,24509,1210],[446552,25843,7743],[446460,25117,9752],[446283,25510,8765],[447100,25468,3663],[442241,28031,1944],[442161,27883,1917],[445380,23828,4195],[445486,24087,2259],[445271,24055,1135],[444921,25077,2149],[444963,24998,1500],[444554,26100,1510],[445010,24234,1202],[445156,24448,2793],[445131,24520,7628],[445672,26272,6599],[448314,26343,4361],[448394,26725,4792],[445218,24659,1611],[444578,25585,2373],[444988,24638,1310],[444986,25413,4989],[445192,25280,6370],[444349,24959,1436],[445290,23662,1071],[445311,23198,1029],[432241,27606,2062],[446311,27776,1527],[445856,27549,1640],[445946,27429,3116],[447077,25963,8971],[447160,25826,3826],[445319,24389,4856],[445281,24525,5389],[445249,24446,1237],[445928,24415,8364],[446005,24343,6107],[446108,24526,8467],[445510,24816,6094],[446109,25287,7978],[445575,24375,5295],[446322,24593,8704],[446291,24894,9020],[445468,24889,6755],[445231,25208,5770],[445811,24280,5785],[448799,26641,4975],[449005,26733,1284],[446272,26841,8074],[446014,26694,5425],[447258,26802,3437],[447616,26820,3456],[447532,27102,1391],[447616,26405,3857],[445259,25786,7117],[445130,25775,7077],[444836,25220,3460],[447361,25595,8549],[446785,25110,7863],[448637,28261,1521],[450623,29674,1603],[446009,30429,2061],[445638,27059,4691],[445834,23971,5585],[445016,25198,4627],[444932,25265,5991],[446608,26322,8363],[446315,26681,3571],[447314,26630,4538],[446811,26639,3987],[447190,26400,5326],[446404,27368,3585],[447227,26214,4831],[447317,26206,3310],[446805,27432,2457],[446862,27301,1566],[446935,27375,4400],[446587,26556,7632],[447745,27499,5835],[447279,27364,2694],[446114,26303,7537],[446044,26488,8257],[446001,26417,5742],[445047,24179,4799],[445088,24133,4116],[445541,24274,1213],[445350,24151,4473],[445525,24320,6171],[445736,24049,2815],[446098,25510,8756],[446270,26033,8649],[445030,23834,1129],[445156,23577,4273],[448566,26795,3179],[448427,27041,4683],[447667,27054,3389],[447961,27432,1773],[448954,26384,1196],[451147,27035,1230],[450873,27093,1373],[449456,27039,1341],[448801,26430,3670],[449910,27302,1341],[450252,27793,1608],[450009,28004,1454],[445566,23890,1042],[446775,27677,1574],[446902,27038,4550],[446033,25658,7574],[447350,26399,5466],[447078,26238,8475],[444741,26123,4102],[444730,23537,1160],[445419,23761,3577],[448442,26864,1316],[448114,27070,3788],[448235,27295,1512],[448177,26934,1351],[447878,27012,1373],[448593,26619,4590],[451338,27200,1417],[448490,27210,1359],[457663,26020,1102],[456382,35155,1632],[451579,27604,1268],[451711,27449,3881],[450419,27012,4174],[451823,27452,1193],[451570,27783,1282],[445396,32229,2102],[446606,33115,2112],[445606,24858,8257],[445862,24032,8142],[446376,26486,4798],[452072,26951,1087],[451862,26643,1063],[445641,23958,4464],[445599,23984,5144],[445905,24195,7883],[445204,25154,7500],[445058,25138,3971],[444670,24795,1370],[451144,27166,1379],[451926,26996,1053],[444460,25427,1420],[444369,24562,1367],[446042,24926,9318],[446047,25142,8706],[445813,24959,8909],[445641,25319,7932],[445887,25402,7396],[445805,25578,8632],[446531,24807,8751],[445825,26626,7603],[445663,26001,6969],[445287,26117,6913],[447536,26249,5165],[447187,26960,2134],[445764,25103,6000],[445667,24997,7721],[449117,33832,2019],[449385,28244,1671],[450308,27281,1539],[452095,26981,3434],[452207,26969,1005],[450827,27877,1624],[449650,28442,1517],[450952,28909,1496],[450578,29347,1569],[450651,29440,3585],[445651,25181,8288],[444858,25504,6863],[439976,29464,2082],[446652,25049,10141],[446708,25275,9055],[446483,26261,8622],[446058,25964,8367],[445833,30081,1909],[443624,31102,2102],[446438,27696,3451],[446567,25182,9868],[447650,26735,3748],[451229,27850,1327],[451021,27151,3298],[448349,26355,4643],[448539,26202,3885],[448530,26368,5827],[448542,26487,3408],[448307,26065,4764],[447653,25975,3381],[444987,26722,1604],[446110,26048,7946],[445465,25617,6303],[445049,23406,1092],[436307,28419,2032],[450384,27933,1428],[453051,35603,2034],[436980,24057,1561],[314430,207249,1230],[316355,206791,1242],[314669,208453,1202],[318361,208953,1172],[316687,208899,1192],[317776,207285,1242],[319271,208784,1152],[320047,208371,1142],[319771,206542,1242],[323142,202960,1232],[327150,199075,1202],[325911,201792,1132],[327721,199830,1122],[328956,198774,1112],[333112,193411,1136],[330830,197303,1092],[312886,207209,1162],[313587,207937,1202],[312712,207384,1162],[313778,207489,1198],[319147,201156,1215],[320122,199958,1102],[319727,202427,1245],[319867,203514,1242],[319468,203160,7771],[320609,207872,1142],[321523,205143,1232],[363109,162872,1052],[361573,161240,1002],[361761,161057,1012],[364263,163928,1032],[363554,163787,1052],[364176,162373,1052],[364017,161209,1052],[362192,160639,1022],[363749,160169,1042],[363387,159480,1012],[362908,163067,1052],[362755,167217,8025],[362740,166993,1190],[363460,167065,992],[319004,203336,1240],[317349,204086,1252],[318390,202041,1213],[364237,164921,1022],[362338,165975,1056],[362458,164939,1056],[362638,166297,1058],[319238,201842,1206],[319510,202253,9956],[319333,202553,1225],[346165,182707,1105],[346507,182992,1070],[345923,183129,1115],[346931,180864,15344],[347250,181268,14727],[346905,181042,1156],[349509,181935,941],[351591,180056,892],[347816,183572,9642],[347267,180561,1172],[348781,181202,14764],[348703,181387,1054],[348630,181341,12375],[348357,182038,7234],[348401,182176,988],[348275,182166,12316],[347764,180836,1125],[347342,180529,12886],[357201,174332,942],[354706,177010,922],[352732,174699,1131],[362586,166308,7340],[362355,166095,4514],[362686,166667,1042],[362534,166786,2282],[363036,167838,992],[362775,167364,992],[313895,208084,1202],[321947,203319,1273],[321612,204086,1232],[321461,202706,1253],[314335,206482,1320],[316083,205747,1262],[335581,191314,9861],[335697,191227,6975],[335614,191344,1186],[348948,180230,1110],[348762,178829,1121],[349609,180456,1027],[347358,181270,1116],[347589,181282,10287],[346832,180804,14063],[346855,180668,1154],[346952,181401,1140],[346325,181582,1130],[346591,181158,1160],[347297,181312,10805],[347038,181655,11031],[345129,182313,1144],[343219,184235,1114],[342057,184895,1121],[346997,181745,1131],[336667,192051,10285],[336864,191883,1067],[336989,192075,14690],[339073,187565,1119],[347224,180230,1173],[347678,180163,1170],[347406,181655,1067],[346029,181660,1127],[346120,182362,1113],[345789,182093,1149],[343494,187404,982],[339758,190031,1023],[347720,180492,1149],[348444,182504,982],[348833,182403,979],[348353,181540,8116],[348745,181731,979],[349039,180939,1065],[348656,181009,1088],[348610,180651,1109],[348032,181289,4071],[348267,181107,1085],[348991,180577,1079],[349307,180854,10589],[349418,181222,994],[349374,180868,1031],[349661,180913,9921],[339190,190788,1009],[339440,190373,1027],[339488,190758,981],[334433,192736,1183],[334519,193426,1108],[333550,192918,1273],[346279,181220,1147],[336300,191898,9689],[335882,191383,9267],[336224,191419,5321],[336634,190105,1162],[337462,189421,13922],[337133,190013,1173],[339630,190263,8131],[339490,190844,992],[346544,180804,1168],[336942,191422,9695],[337272,191077,1146],[337318,191392,1188],[335614,192896,12391],[335958,192848,12277],[336138,193030,9785],[337925,188830,1141],[338108,190208,1145],[337543,189560,1157],[338294,191678,1011],[338132,191276,12766],[338246,191292,1057],[337636,190265,1141],[337528,191954,10153],[337363,191790,1081],[337424,191320,9883],[336787,191058,8205],[336251,190843,1191],[336119,190767,13686],[336209,190505,1231],[338213,190281,15733],[338155,190574,1117],[337163,190858,13787],[337230,190707,1242],[338524,190197,1094],[338533,190336,13562],[337732,191006,1116],[337184,190388,1200],[337683,190627,1136],[337541,191298,11557],[337703,190600,8021],[337891,190244,11310],[337388,191420,15867],[338427,191499,9914],[348226,180772,1130],[348482,180704,4908],[348176,180397,1138],[347627,179797,1155],[348038,179348,1161],[337774,191349,1059],[337820,191698,1057],[338989,191169,982],[339401,190852,12193],[320703,201104,12170],[320762,201386,12471],[320602,201128,1348],[320393,202284,1233],[321435,202522,10045],[335308,191431,1195],[335821,191275,13264],[336299,191219,1172],[362047,165655,1056],[362093,165996,1063],[345713,181839,10289],[345500,182185,1112],[336737,190734,1421],[336682,190451,1185],[337023,190431,12635],[338657,191248,997],[338566,190530,1066],[338627,188339,1164],[348208,181655,5847],[348431,181965,14870],[348199,181933,11682],[348951,181363,10274],[349083,181286,1035],[349129,181652,991],[348992,181711,10211],[348789,182072,994],[345151,185929,963],[348635,180553,7333],[349036,180418,13240],[347570,179834,6789],[336245,193003,11320],[335978,193505,9682],[348142,181627,11463],[347320,181731,10336],[347478,182337,6776],[347539,182686,1034],[347416,182701,14384],[320492,201080,9396],[320645,201483,1297],[320022,201383,7068],[320301,201011,11480],[320929,201064,10592],[320976,201416,1257],[321370,202021,1246],[321178,202080,12139],[321021,201759,1240],[321143,201171,8524],[336976,190153,5819],[335075,191677,12072],[334382,192365,1160],[335404,192169,1181],[335118,192530,1189],[335421,192759,9946],[336966,190748,4574],[336304,190418,8277],[336622,190774,6450],[347867,181500,1337],[347991,181769,9088],[347726,181802,11245],[347800,182521,10944],[347824,180368,9359],[347918,180488,10447],[348319,180604,9380],[319913,201268,1270],[320224,200755,1677],[320346,200659,3484],[320562,200771,1447],[321272,201277,1253],[321344,201252,11072],[321320,201639,1258],[322360,202869,1270],[322490,202316,1242],[336730,192274,10753],[336690,192227,14470],[336088,192708,9687],[336049,192316,9860],[347084,182426,1100],[346767,182538,1080],[346738,182340,9853],[347488,182029,12137],[347130,182789,1067],[346654,183656,10445],[346898,183219,10466],[347167,183329,9706],[346702,182880,12580],[347583,183043,981],[347136,182908,10057],[346487,182775,9745],[346552,183341,1037],[346277,183635,9379],[345970,183510,1066],[344926,184177,1067],[346017,183871,1044],[345820,184656,995],[346465,182663,1091],[347181,182110,12188],[346723,182185,1119],[346458,182385,10065],[336350,191356,7180],[336694,190963,7095],[349332,180538,1059],[349429,180818,12371],[349464,181579,969],[349174,182041,922],[349366,181684,9874],[349879,180751,970],[349973,181485,933],[349655,180820,988],[337253,191560,13731],[336538,191598,9347],[336347,191582,1165],[336626,191973,14059],[336596,191846,9693],[338903,190476,1053],[318815,201911,1237],[320960,200956,6462],[321757,201899,1252],[322263,202149,1261],[321856,202637,1265],[347806,181170,1109],[334864,193363,1090],[335886,193495,1013],[333818,195062,1053],[335166,192917,1131],[348117,183262,14002],[349700,181167,972],[349118,182214,11024],[346418,182285,1127],[349438,181918,10446],[319542,201023,1245],[319730,200938,9429],[349607,180616,9716],[350220,181074,944],[347039,182080,1107],[346181,182387,10362],[319025,201451,10759],[319927,202208,9828],[319680,202075,1241],[320481,200567,5458],[320502,200452,1201],[320596,200493,7142],[320275,200533,7437],[320469,200611,9907],[321834,201837,7769],[346696,184026,10344],[346949,183961,988],[346148,184913,942],[346392,184500,947],[344972,184533,1055],[345594,182882,1126],[345667,183168,7134],[349652,181464,8763],[349743,181505,948],[337580,192268,10299],[336957,192597,1031],[337861,192041,1002],[336833,192357,12018],[334817,192999,1117],[334588,193379,8165],[362287,168704,982],[359584,171751,932],[358875,168599,1102],[335753,192411,1153],[335772,192666,10019],[349994,181426,8759],[348067,181808,16009],[319868,200936,1267],[320158,200516,1211],[319818,200562,1248],[320113,200185,1202],[320184,200412,6437],[362528,167295,1276],[362235,166994,1204],[362247,165281,1065],[362428,166670,1045],[361864,167043,1085],[362385,166325,1064],[364015,165772,1022],[322330,202948,7072],[362561,167692,1005],[362054,165422,6710],[361726,165994,1102],[360906,166704,1101],[345495,185146,987],[344484,184288,1090],[344526,184621,1073],[344844,184272,6198],[346071,184632,10082],[345642,183265,1087],[319431,203295,1218],[336554,190895,10856],[319519,200884,6700],[313729,207097,1242],[314145,207108,2118],[314382,206850,1292],[314063,206972,1281],[335978,193505,1012],[347816,183572,972],[324535,201237,2066],[326025,200001,2111],[323719,202321,1983],[336133,189602,7396],[336282,189421,9795],[336350,189622,10357],[345881,180097,1966],[346071,180294,8519],[345927,180436,1987],[326850,199020,2128],[326305,198932,1504],[326800,198650,2116],[335812,190597,1144],[336456,189959,15407],[341359,185211,2045],[335767,190204,1233],[335534,190600,1463],[335049,190631,8697],[335203,190419,6250],[335213,190725,1191],[336496,189030,1238],[336541,189403,1158],[336097,190071,10222],[336083,189800,14975],[336148,189639,1985],[338570,187460,2008],[338522,187110,1985],[338727,187243,1108],[336992,188950,1181],[337074,189141,1963],[335703,190030,9266],[335391,190011,9615],[335462,189794,1941],[339240,186130,1049],[339673,185875,1964],[339722,186202,2037],[336348,189974,13894],[336169,190081,1466],[331054,194259,2086],[331288,193986,1098],[331380,194134,2091],[350019,176825,1116],[339426,187008,2017],[339739,186662,1431],[335995,190015,8920],[358525,168102,2075],[358161,168642,1141],[358154,168129,2005],[339021,186707,1989],[339337,186819,1119],[334991,190312,8477],[336626,189602,1979],[335751,189732,1885],[338153,187412,1073],[338436,186961,1057],[362065,163931,1027],[362372,163737,2060],[335506,190171,1860],[335392,190573,8587],[334564,190789,1670],[334588,191220,1208],[334276,191129,1958],[335181,190306,1512],[326716,198529,1196],[327236,198531,2121],[338788,187535,1433],[359482,166612,2112],[359038,167037,2105],[358683,167202,1006],[333822,191448,1077],[334837,190462,1092],[335294,190909,1976],[346225,180391,1948],[346182,180042,1985],[363051,164037,2151],[362765,164422,2126],[345594,180192,1963],[355642,170240,2099],[355734,170942,2079],[355285,170503,1013],[336098,189308,1913],[341312,184859,2039],[340762,184818,1047],[341265,184516,2025],[349669,176328,2070],[349378,176420,2020],[349578,176191,1054],[352421,173849,2071],[352639,173493,2066],[352656,173941,1481],[345405,180988,2014],[360379,165897,6536],[360056,166458,1054],[360719,165335,1025],[360422,165564,2111],[361238,165145,2094],[361332,165829,2139],[360781,165659,1288],[361648,165296,1296],[362251,164744,2107],[334922,190621,1977],[359479,167155,1082],[359736,166807,1059],[359832,166976,2079],[350265,175690,1155],[349877,175807,1030],[350586,175288,1044],[362163,164082,2110],[360465,165896,2094],[360867,165883,2063],[360510,166231,2109],[363242,163486,1058],[363007,163712,2133],[362956,163391,2014],[361963,164450,2095],[361862,164253,1050],[323252,202068,1968],[323300,202410,2011],[322791,202357,1260],[324405,200731,1211],[326396,198523,1102],[331869,193590,1965],[330961,194112,1079],[334005,192292,2054],[330795,195420,2114],[356334,169760,2118],[356721,170086,2077],[356380,170136,2067],[358783,167370,2091],[359028,167537,1052],[358824,167727,2009],[349007,177597,1995],[348711,177961,2018],[359350,167340,2127],[359254,167152,1149],[358382,167589,1015],[350356,175895,2040],[349971,175958,2060],[327856,198265,2161],[327760,197568,2113],[327973,197347,1147],[328062,197482,2117],[362571,163560,1037],[356128,170552,1932],[355851,170221,2104],[357805,168907,2011],[357709,168188,2018],[349204,177275,1256],[348962,177215,2074],[349194,176780,2048],[356929,168973,2090],[357251,168782,1021],[354941,170925,1018],[355036,171063,2091],[347439,178397,1127],[347851,177986,1075],[347910,178292,1343],[354233,172014,1321],[353379,172524,1074],[358065,167965,1062],[346134,179695,1972],[346484,179922,1977],[354603,171639,1136],[355034,171577,1101],[354689,171847,1947],[352464,174175,2076],[352153,173872,2047],[350399,176216,2043],[352779,172950,1014],[351813,174117,1069],[357855,169235,2106],[357348,168922,2095],[351540,175146,1366],[353052,172895,1046],[353147,173053,2078],[352872,173108,2024],[353954,173007,2068],[353473,172695,2072],[355755,170085,1025],[356041,169826,2056],[347527,178570,2041],[347572,178936,1984],[349101,176625,1039],[336977,188459,1891],[348534,177147,1056],[348190,177524,1053],[346654,178869,1694],[341866,183508,1040],[341175,184360,1052],[339588,185731,1048],[358483,167776,2090],[358873,168071,2053],[359090,167816,1393],[359394,167682,2110],[354271,172394,1148],[348282,177717,1995],[340365,185165,1343],[340854,184991,2019],[341621,184609,1116],[339966,185608,1112],[343011,182404,1618],[343472,182585,2025],[343071,182663,1973],[342286,183579,1997],[341951,183650,1963],[342203,183438,1077],[342535,183215,1978],[342444,183030,1052],[346044,179500,1056],[346350,179402,1066],[342336,183949,2003],[342050,184367,2016],[342003,184013,2018],[342579,183536,2000],[342796,183614,1153],[339331,186308,1989],[342698,182937,1037],[343076,183183,1079],[342748,183263,1127],[344896,180596,1053],[345271,180467,1088],[345359,180643,2004],[329030,196206,1099],[329457,195740,1088],[329545,195845,2094],[361592,164989,1085],[361546,164640,1086],[356237,169623,1009],[345074,181449,1978],[349719,176696,2076],[350642,175606,1233],[348668,177628,2045],[349393,176880,1378],[349467,177082,2046],[352970,173815,2080],[350726,175792,2074],[343518,182927,2020],[331616,194021,2106],[331534,193855,1281],[330747,195057,2118],[331061,194824,1150],[334669,191395,2002],[330700,194717,2085],[334288,191660,1159],[334370,191827,1986],[333103,192852,2049],[332670,193483,1272],[332661,192974,2081],[362860,163195,1048],[338933,186541,1069],[338679,186901,1087],[333880,191756,1313],[346439,179599,1942],[346729,179602,1372],[346710,179144,1956],[347122,179035,1994],[340055,185795,2011],[340437,185361,1985],[344988,181258,1125],[344953,180863,1352],[343780,181813,1639],[343843,182111,1983],[343415,182275,1808],[330329,195213,2097],[337356,188196,1088],[337404,188548,1108],[338234,187558,1950],[337911,188279,1980],[327806,197912,2127],[327508,198032,2124],[328445,197657,2139],[323175,201923,1191],[352727,174155,2081],[352325,173666,1055],[352245,174563,2064],[351947,174608,2031],[351903,174264,2060],[351138,175396,2079],[351091,175060,2054],[352546,173360,1020],[340104,186145,2037],[332258,193437,2095],[332168,193296,1108],[333533,192379,2025],[333925,192145,1220],[330614,194610,1089],[333491,192043,2055],[333054,192477,2044],[329993,195711,2139],[329947,195379,2108],[330244,195076,1159],[328350,196958,2102],[328259,196834,1092],[330355,195686,1581],[329123,196341,2137],[328663,196508,2044],[329596,196208,2137],[327672,197470,1095],[328712,196820,2144],[328757,197169,2137],[327422,197901,1185],[327191,198207,2096],[327100,198057,1110],[353904,172639,2055],[353859,172318,2027],[351527,174664,2087],[351001,174917,1051],[347072,178696,1918],[343887,182436,1990],[344207,182174,1138],[345800,179925,1157],[348595,177403,1427],[348328,178035,2037],[326382,199158,2144],[329640,196555,2104],[328085,197951,1581],[348878,177011,1259],[344114,181520,1054],[344169,181798,1310],[344603,181719,1122],[344569,181309,1411],[344507,181031,1055],[332302,193792,2048],[331660,194354,2097],[331424,194464,2112],[324774,200449,1879],[325176,200456,1510],[324829,200725,2126],[323904,201322,1202],[323622,201578,1996],[324230,201009,2017],[323982,201487,1963],[325114,200141,1235],[324486,200853,2090],[323651,202049,1546],[325632,200133,2127],[325921,199384,1813],[325574,199844,1867],[337867,187951,1972],[330037,196067,2096],[338276,187919,1859],[325976,199655,2081],[359539,167415,1433],[321565,101452,7022],[316136,108781,7022],[318329,98955,7022],[318266,97697,7022],[318913,98197,7022],[312086,105772,7022],[317461,98548,7022],[318173,97626,7022],[321565,101452,482],[316136,108781,482],[321565,101452,3622],[316136,108781,3622],[318329,98955,482],[318913,98197,482],[318266,97697,482],[318173,97626,482],[317461,98548,482],[312086,105772,482],[326728,103507,3622],[320407,112038,3622],[320158,111769,3622],[324474,101768,3622],[324026,98263,3622],[324885,98926,3622],[320119,111821,3622],[326728,103507,482],[320407,112038,482],[326728,103507,3612],[320407,112038,3612],[324474,101768,482],[324885,98926,482],[324026,98263,482],[320158,111769,482],[320119,111821,482],[326772,103541,3612],[332412,103931,3612],[328622,101071,3612],[332412,103931,472],[328622,101071,472],[326772,103541,472],[326728,103507,472],[320407,112038,472],[324212,70905,3332],[315416,63807,3332],[325717,75056,3332],[322904,72789,3332],[322787,72695,3332],[315416,63807,392],[315416,63807,422],[324212,70905,392],[324212,70905,422],[322787,72695,392],[322787,72695,422],[322904,72789,392],[242641,106650,3712],[250615,112571,3712],[242651,106667,3712],[248667,115309,3712],[242584,106710,3712],[239452,108734,3712],[242641,106650,422],[242641,106650,3532],[250615,112571,3532],[242651,106667,422],[242584,106710,422],[239452,108734,422],[239452,108734,3722],[248667,115309,3722],[248099,116108,3722],[250284,117662,3722],[248559,120087,3722],[235960,110991,422],[245458,117882,422],[296708,117959,3212],[292089,119783,3212],[300072,109133,3212],[292365,119989,3212],[292588,123477,3212],[290772,122121,3212],[303927,112023,582],[298495,119282,582],[300072,109133,582],[300072,109133,3142],[292089,119783,582],[292089,119783,3142],[292365,119989,582],[290772,122121,582],[292588,123477,582],[296708,117959,582],[314171,94666,4352],[308080,102796,4352],[314101,94612,4352],[305788,100976,4352],[311270,92427,4352],[311966,89166,4352],[313107,90047,4352],[304038,99752,4352],[304323,99873,4352],[304239,99985,4352],[303999,99804,4352],[305704,101088,4352],[308041,102848,4352],[314171,94666,532],[308080,102796,532],[314101,94612,532],[311270,92427,532],[313107,90047,532],[311966,89166,532],[304038,99752,532],[303999,99804,532],[304239,99985,532],[304323,99873,532],[305788,100976,532],[305704,101088,532],[308041,102848,532],[275487,95750,4292],[277386,97204,4292],[275086,96274,4292],[266754,90749,4292],[266653,90599,4292],[266928,90632,4292],[267576,90197,4292],[267530,90011,4292],[268184,90988,4292],[267476,90048,4292],[273922,98160,4292],[266828,90482,4292],[266106,91183,4292],[272802,99660,4292],[272509,99441,4292],[265914,91095,4292],[266006,91033,4292],[263469,92458,4292],[265675,90738,4292],[263358,92292,4292],[263442,92476,4292],[275565,99388,4292],[275687,99479,4292],[275487,95750,452],[277386,97204,452],[275487,95750,462],[277386,97204,462],[275086,96274,452],[275086,96274,462],[268184,90988,452],[268184,90988,462],[267530,90011,452],[263442,92476,4012],[272509,99441,452],[272509,99441,4012],[272802,99660,452],[273922,98160,452],[275565,99388,452],[275565,99388,662],[275565,99388,2862],[275687,99479,452],[275687,99479,662],[275687,99479,2862],[261311,95816,4012],[268781,99073,4012],[260000,94772,4012],[262643,92771,4012],[262755,92937,4012],[259894,94614,4012],[260810,95435,4012],[259967,94794,4012],[260592,95722,4012],[261093,96103,4012],[271351,100992,4012],[267628,100616,4012],[263442,92476,432],[272509,99441,432],[259894,94614,432],[260000,94772,432],[259967,94794,432],[259967,94794,4002],[260810,95435,432],[260810,95435,4002],[260592,95722,432],[260592,95722,4002],[261093,96103,432],[261093,96103,4002],[261311,95816,432],[261311,95816,4002],[267628,100616,432],[267628,100616,4002],[268781,99073,432],[271351,100992,432],[317461,98548,7642],[312086,105772,7642],[314380,96170,7642],[314171,94666,7642],[315030,95329,7642],[308080,102796,7642],[314380,96170,482],[315030,95329,482],[314171,94666,482],[308080,102796,482],[266612,101977,4002],[267927,105623,4002],[256054,97221,4002],[259286,95251,4002],[257982,95896,4002],[259180,95093,4002],[269207,103914,4002],[261311,95816,422],[267628,100616,422],[261093,96103,422],[260592,95722,422],[260810,95435,422],[259967,94794,422],[259286,95251,422],[259180,95093,422],[257982,95896,422],[256054,97221,422],[267927,105623,422],[269207,103914,422],[266612,101977,422],[284629,97909,2902],[284611,97797,2902],[284676,97845,2902],[278575,106760,2902],[277332,103623,2902],[277273,108504,2902],[276816,109378,2902],[275127,106624,2902],[284489,97659,2902],[284664,97725,2902],[284518,97618,2902],[277167,100588,2902],[283785,97147,2902],[283815,97106,2902],[281203,95205,2902],[281077,95373,2902],[275762,102462,2902],[273524,105447,2902],[271299,108414,2902],[275386,111292,2902],[277399,108598,2902],[284629,97909,622],[278575,106760,622],[284676,97845,622],[284611,97797,622],[284664,97725,622],[284518,97618,622],[284489,97659,622],[283785,97147,622],[283815,97106,622],[281203,95205,622],[281077,95373,622],[277167,100588,622],[277167,100588,662],[277167,100588,2862],[275762,102462,622],[275762,102462,662],[275762,102462,2862],[277332,103623,622],[275127,106624,622],[273524,105447,622],[273524,105447,662],[273524,105447,2862],[271299,108414,622],[271299,108414,662],[271299,108414,2862],[275386,111292,622],[276816,109378,622],[277399,108598,622],[277273,108504,622],[288352,100511,3332],[282894,107738,3332],[281183,106472,3332],[285324,98415,3332],[285371,98351,3332],[278575,106760,3332],[284629,97909,3332],[280111,107907,3332],[288352,100511,592],[282894,107738,592],[288352,100511,642],[282894,107738,642],[288352,100511,3312],[282894,107738,3312],[285371,98351,592],[285324,98415,592],[284629,97909,592],[278575,106760,592],[280111,107907,592],[281183,106472,592],[253797,98830,2692],[260846,103843,2692],[252978,99386,2692],[252813,99500,2692],[252756,99539,2692],[252584,99659,2692],[251832,100239,2692],[251803,100198,2692],[256694,109681,2692],[251635,100376,2692],[247639,103079,2692],[251606,100335,2692],[247339,103347,2692],[247459,103204,2692],[247418,103232,2692],[247311,103306,2692],[253797,98830,412],[252978,99386,412],[252813,99500,412],[252756,99539,412],[252584,99659,412],[251803,100198,412],[251832,100239,412],[251635,100376,412],[251606,100335,412],[247639,103079,412],[247459,103204,412],[247418,103232,412],[247311,103306,412],[247339,103347,412],[247339,103347,422],[256694,109681,412],[284886,109212,3312],[282523,116259,3312],[280662,114869,3312],[292252,103337,3312],[292241,103329,3312],[292252,103337,642],[282523,116259,642],[292241,103329,642],[284886,109212,642],[280662,114869,642],[296202,106265,3312],[290725,113533,3312],[289095,112327,3312],[284857,118002,3312],[296202,106265,602],[290725,113533,602],[296202,106265,3142],[290725,113533,3142],[292252,103337,602],[282523,116259,602],[284857,118002,602],[289095,112327,602],[247339,103347,3532],[256694,109681,3532],[247190,103432,3532],[247202,103448,3532],[255514,116056,3532],[258922,111265,3532],[247202,103448,422],[247190,103432,422],[291454,116686,3142],[291668,116846,3142],[290197,118370,3142],[292926,115161,3142],[300072,109133,572],[292089,119783,572],[296202,106265,572],[290725,113533,572],[292926,115161,572],[291668,116846,572],[291454,116686,572],[290197,118370,572],[278796,93349,4552],[279734,94059,4552],[278748,93413,4552],[271242,88061,4552],[271358,87914,4552],[278151,92962,4552],[271448,87794,4552],[278200,92899,4552],[279609,94227,4552],[271245,87911,4552],[275487,95750,4552],[277386,97204,4552],[270215,87885,4552],[270317,87888,4552],[270314,88038,4552],[268158,89072,4552],[270126,87752,4552],[268398,89429,4552],[268418,89657,4552],[268306,89491,4552],[268184,90988,4552],[267770,90091,4552],[267530,90011,4552],[267658,89925,4552],[275086,96274,4552],[278796,93349,462],[279734,94059,462],[278748,93413,462],[278151,92962,462],[278200,92899,462],[279609,94227,462],[269878,107003,2862],[271217,108003,2862],[271044,108235,2862],[269878,107003,662],[271217,108003,662],[271044,108235,662],[285255,79041,7572],[285101,79074,7572],[285230,78998,7572],[282017,83298,7572],[283768,79886,7572],[284660,85282,7572],[284805,79257,7572],[285061,79004,7572],[284763,79189,7572],[284029,79736,7572],[284946,85484,7572],[293415,85075,7572],[283987,79668,7572],[283731,79826,7572],[281832,81082,7572],[281565,81549,7572],[281696,82796,7572],[281489,81212,7572],[281796,81022,7572],[281449,81216,7572],[281485,81557,7572],[281616,82804,7572],[281703,83150,7572],[281653,83155,7572],[281975,83354,7572],[284618,85338,7572],[284898,85548,7572],[290183,89408,7572],[285255,79041,442],[293415,85075,442],[293415,85075,522],[293415,85075,3782],[285230,78998,442],[285101,79074,442],[285061,79004,442],[284763,79189,442],[284805,79257,442],[284029,79736,442],[283987,79668,442],[283731,79826,442],[283768,79886,442],[281832,81082,442],[281796,81022,442],[281489,81212,442],[281449,81216,442],[281485,81557,442],[281565,81549,442],[281696,82796,442],[281616,82804,442],[281653,83155,442],[281703,83150,442],[281975,83354,442],[282017,83298,442],[284660,85282,442],[284618,85338,442],[284898,85548,442],[284946,85484,442],[290183,89408,442],[290183,89408,522],[290183,89408,3782],[289448,76581,7572],[296144,81421,7572],[286005,78543,7572],[288665,76982,7572],[288691,77026,7572],[286030,78586,7572],[293456,85105,7572],[289448,76581,422],[296144,81421,422],[289448,76581,432],[289448,76581,3612],[296144,81421,3612],[288691,77026,422],[288665,76982,422],[286005,78543,422],[286030,78586,422],[285255,79041,422],[293415,85075,422],[293456,85105,422],[293456,85105,3782],[299707,85805,3782],[294575,92699,3782],[295979,86971,3782],[297830,84435,3782],[293444,85121,3782],[294375,92474,3782],[291143,90052,3782],[291107,90100,3782],[293647,91929,3782],[292519,91084,3782],[293611,91977,3782],[292483,91132,3782],[294339,92522,3782],[294575,92699,522],[299707,85805,3482],[294575,92699,3482],[291107,90100,522],[291143,90052,522],[292519,91084,522],[292483,91132,522],[293611,91977,522],[293647,91929,522],[294375,92474,522],[294339,92522,522],[296317,81184,3612],[293011,74542,3612],[298591,82844,3612],[290849,75673,3612],[290977,75595,3612],[291060,75731,3612],[290745,75829,3612],[290704,75761,3612],[289995,76287,3612],[289953,76218,3612],[289423,76538,3612],[307471,85698,3612],[300675,84679,3612],[298442,83049,3612],[303152,86371,3612],[305534,88209,3612],[303094,86446,3612],[300666,84691,3612],[293011,74542,432],[307471,85698,432],[291060,75731,432],[290977,75595,432],[290849,75673,432],[290704,75761,432],[290745,75829,432],[289995,76287,432],[289953,76218,432],[289423,76538,432],[300666,84691,432],[300666,84691,3482],[303094,86446,432],[303094,86446,512],[303094,86446,3482],[303152,86371,432],[305534,88209,432],[297421,71719,3632],[293167,74447,3632],[293211,74232,3632],[293083,74310,3632],[308700,83175,3632],[307471,85698,3632],[293011,74542,3632],[309150,83523,3632],[307585,85551,3632],[310121,81333,3632],[297421,71719,432],[310121,81333,432],[297421,71719,3212],[310121,81333,3212],[293211,74232,432],[293083,74310,432],[293167,74447,432],[307585,85551,432],[309150,83523,432],[308700,83175,432],[301931,87954,3482],[301057,87279,3482],[299350,89491,3482],[299803,85875,3482],[294815,92804,3482],[295527,93338,3482],[298894,95920,3482],[301998,91535,3482],[294779,92852,3482],[295491,93386,3482],[299350,89491,512],[301998,91535,512],[301998,91535,522],[301057,87279,512],[301931,87954,512],[299707,85805,512],[294575,92699,512],[294779,92852,512],[294815,92804,512],[295527,93338,512],[295491,93386,512],[298894,95920,512],[298894,95920,522],[309662,74799,3212],[305046,72056,3212],[306096,72012,3212],[301740,70990,3212],[303297,70652,3212],[302106,69696,3212],[301213,69791,3212],[301961,69411,3212],[301318,70108,3212],[301115,69841,3212],[301265,70135,3212],[300849,71465,3212],[300485,71174,3212],[300020,70398,3212],[312896,77738,3212],[313106,77491,3212],[309662,74799,422],[313106,77491,422],[306096,72012,422],[305046,72056,422],[303297,70652,422],[302106,69696,422],[301961,69411,422],[297421,71719,422],[310121,81333,422],[312896,77738,422],[308637,91517,6312],[304038,99752,6312],[301998,91535,6312],[311966,89166,6312],[309245,90729,6312],[310164,87775,6312],[308392,90071,6312],[304485,88313,6312],[298894,95920,6312],[311966,89166,522],[304038,99752,522],[310164,87775,522],[308392,90071,522],[309245,90729,522],[308637,91517,522],[304485,88313,522],[324212,70905,6592],[322787,72695,6592],[315416,63807,6592],[318955,77641,6592],[309811,66170,6592],[307588,68879,6592],[318753,77889,6592],[322904,72789,6592],[309811,66170,422],[307588,68879,422],[318753,77889,422],[331953,177538,6512],[332072,177660,6512],[328396,181227,6512],[321097,173980,6512],[325634,169480,6512],[332644,176868,6512],[332956,176802,6512],[332762,176990,6512],[325634,169480,592],[332956,176802,592],[321097,173980,592],[321097,173980,602],[321097,173980,4962],[328396,181227,592],[328396,181227,602],[328396,181227,4962],[332072,177660,592],[331953,177538,592],[332644,176868,592],[332762,176990,592],[316455,176669,4962],[320140,173015,4962],[317163,177483,4962],[316405,176719,4962],[325542,183891,4962],[324657,184882,4962],[324774,184631,4962],[324843,184703,4962],[325611,183963,4962],[328424,181255,4962],[320140,173015,602],[316455,176669,602],[316405,176719,602],[317163,177483,602],[317163,177483,612],[317163,177483,3442],[324657,184882,602],[324657,184882,612],[324657,184882,3442],[324843,184703,602],[324774,184631,602],[325542,183891,602],[325611,183963,602],[328424,181255,602],[288911,148046,3492],[282802,156786,3492],[287275,146884,3492],[288786,144779,3492],[290394,145896,3492],[279627,154543,3492],[285741,145795,3492],[288911,148046,852],[282802,156786,852],[288911,148046,872],[290394,145896,852],[288786,144779,852],[288786,144779,3392],[287275,146884,852],[287275,146884,1022],[287275,146884,3392],[285741,145795,852],[285741,145795,1022],[285741,145795,3392],[288907,151557,3692],[288911,148046,3692],[291397,147971,3692],[290602,147418,3692],[290394,145896,3692],[291247,146489,3692],[282802,156786,3692],[290368,152572,3692],[285895,158972,3692],[290368,152572,872],[290368,152572,3482],[285895,158972,872],[285895,158972,3482],[292764,174709,3382],[286234,183959,3382],[287795,175352,3382],[289759,172580,3382],[283137,181760,3382],[287725,175302,3382],[286234,183959,752],[283137,181760,752],[289172,161287,3482],[291133,158482,3482],[292285,149829,3482],[295561,152147,3482],[293402,155236,3482],[294120,179648,3392],[289449,186241,3392],[292613,178581,3392],[293735,174008,3392],[295145,175007,3392],[294849,175425,3392],[292764,174709,3392],[286234,183959,3392],[293142,174176,3392],[293419,173784,3392],[294120,179648,752],[289449,186241,752],[289449,186241,762],[299743,178853,3472],[292838,188647,3472],[294120,179648,3472],[296375,176466,3472],[289449,186241,3472],[299743,178853,762],[292838,188647,762],[292838,188647,772],[299768,178870,3482],[303258,177423,3482],[301283,180136,3482],[299036,183223,3482],[301641,176246,3482],[299743,178853,3482],[292838,188647,3482],[300669,184528,3482],[295734,190703,3482],[299036,183223,772],[300669,184528,772],[301283,180136,772],[295734,190703,772],[297606,163114,3692],[297010,162788,3692],[297055,162724,3692],[306304,169098,3692],[297419,167823,3692],[294771,165948,3692],[303966,172337,3692],[297606,163114,3642],[306304,169098,3642],[297419,167823,3542],[303966,172337,3542],[295659,171292,3542],[295170,170939,3542],[301616,175592,3542],[297419,167823,902],[303966,172337,902],[313672,195421,3402],[312750,196309,3402],[307093,187853,3402],[300705,194189,3402],[297256,191823,3402],[300572,192262,3402],[298508,190251,3402],[298658,190397,3402],[301782,193120,3402],[309869,199084,3402],[309946,199163,3402],[309485,199607,3402],[307403,200439,3402],[307829,200837,3402],[308461,200517,3402],[308041,201075,3402],[307816,200852,3402],[308537,200596,3402],[309408,199528,3402],[311310,197697,3402],[314159,194917,3402],[310813,198175,3402],[310889,198254,3402],[311386,197776,3402],[312246,196795,3402],[312826,196388,3402],[312322,196874,3402],[314253,195014,3402],[313748,195500,3402],[307093,187853,762],[314159,194917,762],[301782,193120,762],[300572,192262,762],[298658,190397,762],[298508,190251,762],[297256,191823,762],[300705,194189,762],[307403,200439,762],[307829,200837,762],[307816,200852,762],[308041,201075,762],[308537,200596,762],[308461,200517,762],[309408,199528,762],[309485,199607,762],[309946,199163,762],[309869,199084,762],[310813,198175,762],[310889,198254,762],[311386,197776,762],[311310,197697,762],[312246,196795,762],[312322,196874,762],[312826,196388,762],[312750,196309,762],[313672,195421,762],[313748,195500,762],[314253,195014,762],[299111,159430,3642],[308584,165940,3642],[299236,160814,3642],[298500,160292,3642],[299111,159430,912],[308584,165940,912],[299111,159430,3452],[308584,165940,3452],[313000,159823,3452],[311127,162417,3452],[308988,156802,3452],[313059,159741,3452],[310952,162660,3452],[304385,157918,3452],[306492,155000,3452],[301498,155806,3452],[308744,165718,3452],[299036,159377,3452],[298942,159308,3452],[313000,159823,3352],[311127,162417,3352],[310485,184487,4512],[317462,191694,4512],[317294,191858,4512],[307093,187853,4512],[314159,194917,4512],[310485,184487,662],[317462,191694,662],[310485,184487,3412],[317462,191694,3412],[307093,187853,662],[314159,194917,662],[317294,191858,662],[314327,182023,3412],[320784,188453,3412],[312691,180394,3412],[309519,183489,3412],[314327,182023,642],[320784,188453,642],[312691,180394,642],[309519,183489,642],[310485,184487,642],[317462,191694,642],[324384,184979,3442],[316408,179960,3442],[315544,179089,3442],[320784,188453,3442],[314327,182023,3442],[323662,185680,3442],[320878,188549,3442],[323746,185766,3442],[324468,185065,3442],[315544,179089,612],[316408,179960,612],[314327,182023,612],[320784,188453,612],[320878,188549,612],[323746,185766,612],[323662,185680,612],[324384,184979,612],[324468,185065,612],[255553,149470,6002],[249682,157867,6002],[250776,148722,6002],[252027,146963,6002],[246297,155387,6002],[255553,149470,632],[249682,157867,632],[249682,157867,642],[255553,149470,5062],[249682,157867,5062],[250776,148722,3492],[246297,155387,632],[246297,155387,3492],[259601,152388,5062],[261957,148485,5062],[262285,148725,5062],[253525,160683,5062],[258146,145761,5062],[259601,152388,642],[253525,160683,642],[259601,152388,732],[259601,152388,3212],[253525,160683,3212],[262285,148725,642],[262285,148725,732],[262285,148725,3212],[261957,148485,642],[261957,148485,3212],[261558,155572,3212],[262506,154431,3212],[259635,157930,3212],[256062,162600,3212],[261558,155572,642],[259635,157930,642],[262506,154431,642],[262506,154431,732],[256062,162600,642],[267792,156450,3202],[260949,166074,3202],[263965,158748,3202],[266311,155371,3202],[257683,163769,3202],[262287,157536,3202],[262204,157476,3202],[267792,156450,672],[260949,166074,672],[260949,166074,682],[257683,163769,672],[263821,152709,3212],[265460,150560,3212],[265672,150282,3212],[263454,146531,3212],[266773,148837,3212],[262531,154401,3212],[265460,150560,732],[263821,152709,732],[265672,150282,732],[266773,148837,732],[266773,148837,742],[263454,146531,732],[262531,154401,732],[270365,159537,3382],[264082,168286,3382],[268788,158399,3382],[267792,156450,3382],[269351,157584,3382],[260949,166074,3382],[270365,159537,682],[264082,168286,682],[264082,168286,712],[270365,159537,3372],[264082,168286,3372],[274059,160802,3372],[267277,170541,3372],[272044,160688,3372],[272689,159744,3372],[270580,159692,3372],[270638,159611,3372],[270451,159599,3372],[274059,160802,712],[267277,170541,712],[267277,170541,732],[274059,160802,3312],[267277,170541,3312],[276535,160850,3312],[275055,162889,3312],[273287,165325,3312],[274359,160424,3312],[274992,159626,3312],[274887,166422,3312],[270371,172725,3312],[274887,166422,3302],[270371,172725,732],[270371,172725,3302],[280410,165385,3302],[273617,175016,3302],[278215,165241,3302],[278937,164294,3302],[276699,164113,3302],[273617,175016,732],[283719,167628,3302],[276879,177318,3302],[282042,166469,3302],[281125,165914,3302],[281185,165834,3302],[276879,177318,732],[286221,170789,3482],[279959,179504,3482],[284627,169698,3482],[284645,169673,3482],[276879,177318,3482],[283584,168997,3482],[283719,167628,3482],[284266,168007,3482],[286221,170789,722],[279959,179504,722],[279959,179504,742],[283719,167628,722],[276879,177318,722],[287725,175302,3572],[283137,181760,3572],[286184,174211,3572],[286221,170789,3572],[288447,171017,3572],[279959,179504,3572],[286858,169891,3572],[287725,175302,742],[283137,181760,742],[243206,140143,3472],[241698,137373,3472],[244041,139015,3472],[237003,148528,3472],[240434,139151,3472],[233982,146308,3472],[243206,140143,542],[237003,148528,542],[237003,148528,562],[233982,146308,542],[246198,142342,3472],[240105,150808,3472],[246198,142342,562],[240105,150808,562],[240105,150808,572],[249189,144540,3482],[243208,153088,3482],[243152,153047,3482],[240105,150808,3482],[246198,142342,3482],[249189,144540,572],[243208,153088,572],[243208,153088,602],[243152,153047,572],[249067,147507,3492],[243208,153088,3492],[251722,144918,3492],[251072,145832,3492],[250531,145447,3492],[249854,143589,3492],[249189,144540,3492],[250776,148722,602],[246297,155387,602],[271791,135405,4442],[272838,133968,4442],[273004,136289,4442],[274068,134829,4442],[267552,130267,4442],[269871,138042,4442],[264198,134874,4442],[269483,138574,4442],[269777,138171,4442],[269836,138090,4442],[271791,135405,1062],[269871,138042,1062],[273004,136289,1062],[269777,138171,1062],[269836,138090,1062],[288327,137900,3582],[283106,139141,3582],[288245,137842,3582],[285377,135915,3582],[285423,135849,3582],[290251,142670,3582],[293331,141434,3582],[292843,144470,3582],[289536,143700,3582],[294409,142215,3582],[293424,141500,3582],[293343,141443,3582],[288327,137900,952],[293331,141434,952],[288245,137842,952],[285423,135849,952],[285377,135915,952],[283106,139141,952],[283106,139141,1022],[283106,139141,3392],[289536,143700,952],[289536,143700,3392],[293424,141500,952],[293343,141443,952],[279265,141197,3772],[273239,150030,3772],[278332,140535,3772],[269953,147709,3772],[276086,138940,3772],[269921,147686,3772],[279265,141197,852],[273239,150030,852],[279265,141197,902],[279265,141197,1022],[279265,141197,3392],[279265,141197,3662],[273239,150030,3662],[278332,140535,852],[278332,140535,1022],[278332,140535,3392],[276086,138940,852],[269921,147686,852],[282413,143432,3392],[278842,139800,3392],[281394,141573,3392],[281394,141573,1022],[278842,139800,1022],[282413,143432,1022],[266866,148715,4602],[263454,146531,4602],[267637,147718,4602],[266773,148837,4602],[271984,141966,4602],[268012,140591,4602],[268771,139552,4602],[266866,148715,742],[267637,147718,742],[271984,141966,742],[268771,139552,742],[268012,140591,742],[282413,143432,3662],[276392,152258,3662],[282413,143432,902],[282429,146923,3692],[279627,154543,3692],[276392,152258,3692],[282413,143432,3692],[283157,145876,3692],[283168,147437,3692],[285741,145795,3692],[283896,146390,3692],[285741,145795,842],[279627,154543,842],[282413,143432,842],[276392,152258,842],[283157,145876,842],[282429,146923,842],[283896,146390,842],[283168,147437,842],[405917,99519,9022],[408923,102395,9022],[408845,102478,9022],[405841,106035,9022],[405800,99642,9022],[404087,98098,9022],[400383,95053,9022],[400456,94957,9022],[397473,98888,9022],[409113,102730,9022],[400456,94957,732],[397473,98888,732],[397473,98888,3372],[405841,106035,732],[405841,106035,752],[405841,106035,3372],[409113,102730,732],[408845,102478,732],[413870,97872,4142],[413559,98178,4142],[410291,94649,4142],[407900,97382,4142],[407871,97410,4142],[407754,97287,4142],[411088,100076,4142],[411000,100173,4142],[411371,100331,4142],[413870,97872,652],[413559,98178,652],[411088,100076,652],[411371,100331,652],[418954,79038,4122],[426367,84251,4122],[419920,84639,4122],[416639,82337,4122],[424238,87669,4122],[426552,85392,4122],[427122,84831,4122],[424238,87669,652],[426552,85392,652],[427122,84831,652],[406914,70571,4302],[404590,73882,4302],[401530,71735,4302],[403855,68420,4302],[403855,68420,4292],[401530,71735,4292],[409973,72722,4332],[407652,76031,4332],[404590,73882,4332],[406914,70571,4332],[409973,72722,4232],[407652,76031,4232],[413033,74874,4232],[410714,78179,4232],[413033,74874,4222],[410714,78179,4222],[409973,72722,632],[407652,76031,632],[412302,92558,4262],[415940,95834,4262],[413870,97872,4262],[410291,94649,4262],[415940,95834,642],[410291,94649,642],[413870,97872,642],[416091,77025,4222],[413774,80327,4222],[416091,77025,4132],[413774,80327,4132],[414314,90467,4272],[418011,93796,4272],[415940,95834,4272],[412302,92558,4272],[418011,93796,642],[418954,79038,4132],[416639,82337,4132],[418954,79038,632],[416639,82337,632],[384643,76680,4262],[382678,79467,4262],[379970,74992,4262],[380006,74941,4262],[380722,73916,4262],[378838,76596,4262],[378738,76596,4262],[384643,76680,682],[382678,79467,4182],[380722,73916,682],[378738,76596,4182],[386659,73820,4282],[384643,76680,4282],[382497,71375,4282],[382727,71047,4282],[380722,73916,4282],[386659,73820,4262],[382727,71047,4262],[388676,70959,4262],[384732,68178,4262],[386659,73820,682],[388676,70959,4212],[384732,68178,4212],[382727,71047,682],[390692,68098,4212],[384784,68103,4212],[386736,65309,4212],[388676,70959,672],[384732,68178,672],[400796,66269,4302],[398468,69586,4302],[395406,67438,4302],[397736,64117,4302],[400796,66269,4292],[398468,69586,4292],[397736,64117,642],[397736,64117,3942],[395406,67438,642],[395406,67438,3942],[392563,65443,3942],[394565,62132,3942],[394680,61968,3942],[392348,65292,3942],[394565,62132,652],[392348,65292,652],[362805,59688,3182],[365314,59725,3182],[364394,61047,3182],[354119,51666,3182],[349519,53341,3182],[349436,53073,3182],[359019,59913,3182],[360434,58039,3182],[362686,59859,3182],[354119,51666,342],[365314,59725,342],[354119,51666,3172],[365314,59725,3172],[349436,53073,342],[349519,53341,342],[359019,59913,342],[360434,58039,342],[362805,59688,342],[362686,59859,342],[364394,61047,342],[372515,62210,3172],[371615,63504,3172],[369304,62501,3172],[359675,49981,3172],[367241,55868,3172],[365988,57669,3172],[371331,63912,3172],[371615,63504,332],[371615,63504,3102],[359675,49981,332],[354119,51666,332],[365314,59725,332],[369304,62501,332],[369304,62501,522],[369304,62501,3102],[371331,63912,332],[371331,63912,522],[371331,63912,3102],[359792,64490,2902],[359744,64561,2902],[359559,64329,2902],[356619,62423,2902],[360748,62613,2902],[357075,60038,2902],[355806,61882,2902],[355988,61617,2902],[356045,61535,2902],[359688,64644,2902],[359610,64760,2902],[356518,62628,2902],[359792,64490,452],[359744,64561,452],[359559,64329,452],[360748,62613,452],[357075,60038,452],[356045,61535,452],[369100,57162,3182],[367241,55868,3182],[369207,57009,3182],[371945,56696,3182],[374095,60410,3182],[373456,54525,3182],[375135,58915,3182],[365076,48582,3182],[359675,49981,3182],[365016,48381,3182],[397818,99643,3372],[397380,99175,3372],[397311,99102,3372],[405045,105946,3372],[395332,100813,3372],[395909,101430,3372],[394810,101263,3372],[392851,102605,3372],[391890,98542,3372],[393822,103259,3372],[390214,100111,3372],[390141,100179,3372],[401648,109135,3372],[401074,109690,3372],[404305,106662,3372],[401940,109437,3372],[404583,106949,3372],[402128,109631,3372],[404736,107108,3372],[405764,106113,3372],[405323,106234,3372],[405476,106392,3372],[393822,103259,752],[404736,107108,752],[404583,106949,752],[404305,106662,752],[405045,105946,752],[405323,106234,752],[405476,106392,752],[405764,106113,752],[383888,110994,6982],[382717,109743,6982],[392269,119285,6982],[391801,119611,6982],[388341,122997,6982],[388411,123069,6982],[389224,122147,6982],[390918,120460,6982],[389293,122219,6982],[391015,120561,6982],[391898,119711,6982],[392303,119321,6982],[392269,119285,692],[383888,110994,6112],[392269,119285,6112],[388411,123069,692],[388341,122997,692],[389224,122147,692],[389293,122219,692],[391015,120561,692],[390918,120460,692],[391801,119611,692],[391898,119711,692],[392303,119321,692],[395035,116259,6112],[395202,116431,6112],[394437,115644,6112],[394882,116102,6112],[394735,115951,6112],[388179,106978,6112],[395979,114144,6112],[395753,114364,6112],[388179,106978,5732],[395979,114144,5732],[383888,110994,312],[392269,119285,312],[416325,88376,4302],[420082,91759,4302],[418011,93796,4302],[414314,90467,4302],[416325,88376,642],[420082,91759,642],[420082,91759,652],[416325,88376,4272],[420082,91759,4272],[418337,86285,4272],[422153,89721,4272],[422153,89721,652],[419920,84639,4332],[424238,87669,4332],[422153,89721,4332],[418337,86285,4332],[432960,45174,4292],[433299,45560,4292],[433224,45625,4292],[431114,42618,4292],[431596,42966,4292],[431177,43337,4292],[431211,42531,4292],[426108,36938,4292],[426615,37167,4292],[428745,39942,4292],[428609,39425,4292],[429015,39704,4292],[428699,39346,4292],[423096,34193,4292],[423016,34104,4292],[423443,33725,4292],[418073,38651,4292],[426370,36707,4292],[426679,37057,4292],[426590,37136,4292],[421732,50614,4292],[421861,50501,4292],[422432,51415,4292],[420131,36824,4292],[426066,36891,4292],[423820,34152,4292],[423723,34238,4292],[422782,34472,4292],[427142,50939,4292],[424720,49416,4292],[422929,34341,4292],[414465,41853,4292],[421365,49971,4292],[415139,49105,4292],[417993,38561,4292],[420052,36734,4292],[413959,42142,4292],[414385,41763,4292],[410458,38548,4292],[413284,48515,4292],[410165,38247,4292],[410332,38419,4292],[403840,38847,4292],[408747,36792,4292],[403722,38422,4292],[403661,38201,4292],[414011,49259,4292],[415014,49223,4292],[419208,52341,4292],[432863,45259,4292],[426131,51031,4292],[433141,45698,4292],[432960,45174,742],[433299,45560,742],[432863,45259,742],[431177,43337,742],[431596,42966,742],[431211,42531,742],[431114,42618,742],[428745,39942,742],[429015,39704,742],[428699,39346,742],[428609,39425,742],[426615,37167,742],[426590,37136,742],[426679,37057,742],[426370,36707,742],[426108,36938,742],[426066,36891,742],[423723,34238,742],[423820,34152,742],[423443,33725,742],[423016,34104,742],[423096,34193,742],[422929,34341,742],[422782,34472,742],[420131,36824,742],[420052,36734,742],[417993,38561,742],[418073,38651,742],[414465,41853,742],[414385,41763,742],[413959,42142,742],[410458,38548,742],[410332,38419,742],[410165,38247,742],[408747,36792,742],[403661,38201,742],[403722,38422,742],[403840,38847,742],[413284,48515,742],[414011,49259,742],[415014,49223,742],[415139,49105,742],[433224,45625,742],[377821,86359,4182],[378153,77385,4182],[374242,83471,4182],[373810,83134,4182],[377706,86522,4182],[377802,87185,4182],[377918,87064,4182],[378076,86899,4182],[382678,79467,572],[378738,76596,572],[373810,83134,572],[374242,83471,572],[377802,87185,572],[377918,87064,572],[378076,86899,572],[377706,86522,572],[374379,67423,3102],[377489,67592,3102],[376554,68936,3102],[371346,68158,3102],[373034,69360,3102],[370850,68928,3102],[367278,65413,3102],[371160,68032,3102],[372674,70180,3102],[373163,69450,3102],[367278,65413,522],[393822,103259,5732],[388358,106810,5732],[392851,102605,5732],[397371,112791,5732],[396090,114036,5732],[401074,109690,5732],[400872,109886,5732],[397669,113097,5732],[401107,110618,5732],[397816,113248,5732],[397969,113406,5732],[398136,113578,5732],[401142,110654,5732],[401164,110188,5732],[401352,110382,5732],[393822,103259,112],[401074,109690,112],[392851,102605,112],[388179,106978,112],[395979,114144,112],[401142,110654,112],[401107,110618,112],[346747,54021,3432],[340090,55962,3432],[346717,53925,3432],[355613,61186,3432],[355550,61263,3432],[349045,63188,3432],[347666,65026,3432],[347783,65119,3432],[350608,67366,3432],[346747,54021,342],[355613,61186,342],[346717,53925,342],[340090,55962,342],[340090,55962,3402],[349045,63188,342],[349045,63188,3402],[347666,65026,342],[347666,65026,3402],[347783,65119,3402],[344407,69328,3402],[333863,57877,342],[342837,65118,342],[341467,66952,342],[341584,67046,342],[364046,132734,6282],[362567,131821,6282],[362744,131655,6282],[360261,136588,6282],[358911,135242,6282],[358808,135339,6282],[369753,140964,6282],[367121,143737,6282],[370664,140067,6282],[370970,139949,6282],[369844,141057,6282],[370756,140160,6282],[358808,135339,6222],[360261,136588,612],[360261,136588,6222],[367121,143737,612],[367121,143737,6222],[369844,141057,612],[369753,140964,612],[370664,140067,612],[370756,140160,612],[356244,139956,6222],[354999,138904,6222],[366632,144077,6222],[356001,140183,6222],[362645,147421,6222],[355935,140244,6222],[364411,146078,6222],[362891,147702,6222],[362623,147441,6222],[363442,147024,6222],[363525,147110,6222],[364495,146164,6222],[366702,144149,6222],[360261,136588,602],[367121,143737,602],[358808,135339,602],[356244,139956,602],[356001,140183,602],[355935,140244,602],[362645,147421,602],[362623,147441,602],[362891,147702,602],[363525,147110,602],[363442,147024,602],[364411,146078,602],[364495,146164,602],[366632,144077,602],[366702,144149,602],[355523,154395,3222],[355770,154650,3222],[355502,154416,3222],[346432,149661,3222],[348542,147614,3222],[349018,147818,3222],[348614,147544,3222],[348735,147426,3222],[349085,147744,3222],[353510,152431,3222],[351253,158864,3222],[351158,159081,3222],[340115,148068,3222],[342906,146074,3222],[338204,144300,3222],[339590,143054,3222],[336948,145258,3222],[334052,142688,3222],[337018,143282,3222],[334785,141677,3222],[337657,137679,3222],[340153,139820,3222],[340086,139894,3222],[340220,139746,3222],[337689,137635,3222],[352030,158119,3222],[337044,145343,3222],[352092,158184,3222],[351315,158929,3222],[355523,154395,622],[355770,154650,622],[355502,154416,622],[353510,152431,622],[349018,147818,622],[349085,147744,622],[348735,147426,622],[348614,147544,622],[340153,139820,622],[340220,139746,622],[337689,137635,622],[337657,137679,622],[334785,141677,622],[334052,142688,622],[334052,142688,782],[334052,142688,3212],[336948,145258,622],[336948,145258,782],[336948,145258,3212],[337044,145343,622],[340115,148068,622],[351158,159081,622],[351315,158929,622],[351253,158864,622],[352030,158119,622],[352092,158184,622],[340115,148068,3502],[351158,159081,3502],[339585,153166,3502],[337466,150650,3502],[339535,156468,3502],[337907,154831,3502],[350169,159917,3502],[346572,163545,3502],[350231,159982,3502],[350865,159240,3502],[350927,159304,3502],[340115,148068,602],[351158,159081,602],[337466,150650,602],[339585,153166,602],[337907,154831,602],[350231,159982,602],[350169,159917,602],[350865,159240,602],[350927,159304,602],[354349,124634,2882],[350845,128796,2882],[348667,126740,2882],[352016,122762,2882],[348499,126936,2882],[354349,124634,2852],[350845,128796,2872],[352016,122762,2852],[348499,126936,2872],[349839,134818,2872],[355390,132400,2872],[351481,136206,2872],[345569,131211,2872],[345492,131302,2872],[345057,130934,2872],[347708,133018,2872],[349350,134405,2872],[347211,132598,2872],[347630,133109,2872],[347134,132690,2872],[352028,136394,2872],[349761,134910,2872],[349272,134497,2872],[351816,136646,2872],[351403,136297,2872],[350845,128796,572],[348499,126936,572],[345492,131302,572],[345569,131211,572],[347211,132598,572],[347134,132690,572],[347630,133109,572],[347708,133018,572],[349350,134405,572],[349272,134497,572],[349761,134910,572],[349839,134818,572],[351481,136206,572],[351403,136297,572],[351816,136646,572],[333642,143254,3212],[332970,144157,3212],[332842,144682,3212],[332686,144539,3212],[335419,147065,3212],[333642,143254,782],[332842,144682,782],[335419,147065,782],[332474,80086,1202],[332506,80192,1202],[329843,80899,1202],[329303,77535,1202],[327823,79309,1202],[329898,81081,1202],[332534,80287,1202],[332534,80287,472],[271703,111477,2852],[267674,117148,2852],[265175,115372,2852],[269204,109701,2852],[271703,111477,662],[321668,143068,3392],[324014,140186,3392],[322956,144116,3392],[325333,141195,3392],[324110,140068,3392],[325397,141116,3392],[321668,143068,792],[324014,140186,792],[322956,144116,792],[325333,141195,792],[325397,141116,792],[324110,140068,792],[315042,138254,3292],[312962,140962,3292],[307736,136947,3292],[309817,134239,3292],[315042,138254,802],[312962,140962,802],[309817,134239,802],[307736,136947,802],[321641,143318,2862],[319557,146030,2862],[314308,141997,2862],[316391,139285,2862],[321641,143318,802],[319557,146030,802],[316391,139285,802],[314308,141997,802],[308391,152407,3302],[306517,155006,3302],[305957,150663,3302],[304084,153261,3302],[305957,150663,862],[304084,153261,862],[310874,154186,3322],[309000,156786,3322],[308391,152407,3322],[306517,155006,3322],[313382,155983,3322],[311507,158584,3322],[313382,155983,3302],[311507,158584,3302],[310874,154186,852],[309000,156786,852],[316456,162306,3352],[314585,164902,3352],[313958,160511,3352],[313000,159823,902],[311127,162417,902],[315918,157799,3302],[314038,160399,3302],[315918,157799,842],[314038,160399,842],[315918,157799,3282],[314038,160399,3282],[313382,155983,842],[311507,158584,842],[316538,162192,3282],[318415,159588,3282],[321270,165056,2052],[319012,162680,2052],[323406,163057,2052],[320712,160257,2052],[321270,165056,852],[319012,162680,852],[323406,163057,852],[320712,160257,852],[308468,133209,1482],[306390,135913,1482],[302361,130439,1482],[303290,129230,1482],[301212,131934,1482],[308468,133209,722],[306390,135913,722],[303290,129230,722],[302361,130439,722],[301212,131934,722],[295706,146236,2942],[297170,144217,2942],[298723,145503,2942],[297335,147417,2942],[298873,145451,2942],[298796,145557,2942],[303344,148791,3302],[301480,151393,3302],[353700,120762,2852],[355811,122897,2852],[352016,122762,692],[354349,124634,692],[375228,99410,2862],[377518,97182,2862],[376448,100665,2862],[378859,98320,2862],[381492,92353,2762],[382808,93685,2762],[378571,95238,2762],[379888,96571,2762],[368879,109251,3242],[367078,107418,3242],[371045,107122,3242],[369243,105289,3242],[351070,74331,2242],[351105,74446,2242],[348445,75162,2242],[347875,71756,2242],[346441,73557,2242],[348501,75344,2242],[351134,74542,2242],[351134,74542,462],[357289,72370,1662],[357326,72485,1662],[354673,73230,1662],[354113,69804,1662],[352683,71618,1662],[354730,73411,1662],[357356,72580,1662],[357356,72580,462],[362932,67101,2812],[366113,69659,2812],[362870,67179,2812],[363485,70491,2812],[361480,68902,2812],[365943,69940,2812],[363541,70673,2812],[366177,69869,2812],[362932,67101,482],[366113,69659,482],[365943,69940,482],[366177,69869,482],[344871,76247,1202],[344903,76352,1202],[342235,77067,1202],[341696,73660,1202],[340263,75472,1202],[342290,77249,1202],[344932,76448,1202],[344932,76448,462],[338623,78167,2802],[338658,78281,2802],[335996,79005,2802],[335454,75588,2802],[334015,77396,2802],[336052,79187,2802],[338688,78377,2802],[338688,78377,462],[400851,48956,795],[422845,56627,812],[417141,55824,732],[413765,53326,722],[411122,50812,712],[414032,52965,722],[406173,51786,682],[403136,44100,606],[403246,38774,341],[402442,38756,852],[402058,39567,844],[401837,38858,858],[402874,38877,508],[402718,39204,840],[401331,38833,820],[401437,39163,493],[401271,39062,882],[416744,60964,765],[415438,60041,773],[399700,43288,638],[397819,39967,507],[401010,39250,445],[396619,41430,767],[396555,41708,1005],[396271,40843,590],[397407,43231,664],[397780,42766,701],[398814,43511,647],[397448,41724,1002],[396736,42153,1076],[397906,46967,717],[407166,52470,702],[398564,42256,1188],[400943,41094,671],[402014,40512,848],[402523,50433,692],[405077,52427,668],[402401,50610,702],[408219,54243,759],[400937,49612,779],[414474,57888,750],[426446,58174,1078],[425051,57097,739],[423400,61943,852],[424212,57641,872],[425155,57810,886],[423410,57818,880],[428437,59953,942],[425971,58252,942],[426855,58739,906],[425880,63651,912],[420952,64059,865],[423835,66079,851],[423351,57461,721],[401521,40111,712],[410084,56299,776],[414577,58603,882],[401549,39804,496],[396461,40370,513],[396238,40374,792],[396304,40629,792],[396508,40720,530],[427312,59000,1073],[399000,41325,674],[399407,41995,858],[400576,40905,751],[398876,40521,658],[397603,41419,718],[399830,40197,413],[398398,41619,938],[401213,38839,942],[425890,57994,1109],[426206,58241,1112],[400106,41330,669],[396715,40608,505],[397755,42455,928],[402384,38534,862],[400026,40774,688],[423756,57393,959],[320633,160196,1052],[320274,159942,902],[321787,158333,1072],[321870,158389,1082],[321906,158160,1192],[322619,157296,942],[321989,158216,1082],[323108,156404,902],[323191,156461,902],[323221,156239,902],[324314,154821,932],[323304,156296,932],[324232,154764,932],[324344,154599,932],[325778,152506,922],[324427,154656,932],[326849,150652,872],[325861,152562,862],[325475,153356,862],[326068,152454,862],[326018,153699,902],[327292,152115,902],[325897,152333,872],[326606,151620,872],[327116,150840,892],[298144,128200,861],[296646,129588,746],[297195,127057,810],[287618,137284,1314],[291864,124088,789],[290068,125689,697],[290398,122401,791],[271691,120646,922],[274099,122334,942],[286388,122155,741],[284632,126039,912],[282190,124364,862],[284086,117734,907],[279862,116417,757],[278758,113666,782],[271295,109058,807],[270784,108282,832],[274815,111492,846],[276181,112283,852],[269422,106851,782],[267137,105353,664],[268091,105896,676],[255711,97465,452],[255769,97546,452],[255776,97677,452],[255712,97587,452],[254514,98639,580],[254312,98708,482],[259918,102701,542],[253988,98760,569],[254205,98662,482],[254254,98627,482],[254147,98580,472],[254885,98835,469],[262030,104423,640],[273649,110907,710],[271811,111321,712],[272091,111865,622],[271900,111383,712],[269650,117340,874],[266817,121386,882],[272668,112910,862],[277289,113920,734],[265583,120534,982],[264654,121880,1002],[266759,122957,897],[280631,115511,987],[270911,125654,1182],[271219,125476,983],[271263,125801,989],[271006,125711,1182],[295445,125706,807],[285503,135734,1082],[299309,128864,892],[301754,130500,998],[300917,130434,833],[292618,134918,1002],[291979,137348,1052],[289671,135698,1022],[292983,139190,1075],[293216,138266,1022],[294185,140231,972],[317092,146582,832],[321558,157176,862],[319205,157746,862],[317548,163169,922],[315992,166063,942],[317784,163337,922],[312560,152955,872],[321792,157344,872],[323411,151454,832],[326329,150897,862],[326084,150723,862],[334684,135723,775],[329776,142382,778],[329435,142789,799],[336901,137082,772],[332750,142506,812],[334314,136477,798],[328578,143680,812],[324113,149493,842],[302079,147382,1038],[304104,134615,845],[300865,144522,892],[309573,138665,909],[290252,133223,982],[294161,132763,952],[280691,126549,942],[283133,128224,942],[291794,131069,932],[278224,113490,1073],[281976,116500,788],[282691,119743,637],[273682,117804,862],[276090,119492,882],[271972,125683,959],[270409,116811,811],[271009,116364,804],[284454,134676,1288],[284303,133698,1031],[281083,130803,1009],[278089,129933,1170],[280959,131913,1346],[277334,130001,1183],[284594,118247,751],[287381,120295,884],[282066,132595,1092],[277012,129856,1114],[287978,136822,1053],[288453,137347,1138],[282617,116945,935],[277120,112560,929],[272415,114207,729],[273477,112470,699],[292741,124246,811],[280717,116193,930],[282589,133466,1230],[280897,131566,1137],[282114,132928,1127],[271701,126221,1125],[271987,114093,969],[270660,115902,1032],[269790,118320,977],[271197,115774,779],[272191,112510,788],[271434,112058,1092],[302027,147063,910],[292831,139126,1252],[270920,115686,830],[320219,160332,912],[320135,159965,902],[320453,160191,1032],[320553,159271,1055],[318238,163157,922],[319903,160783,912],[316263,165973,952],[316131,166161,942],[315761,168808,942],[316919,168580,887],[317415,169133,1166],[317911,163623,922],[316353,166036,952],[318001,163687,942],[318328,163220,932],[319993,160846,912],[321380,158295,1088],[320309,160395,942],[320192,159884,902],[321459,166112,1057],[324930,158180,929],[322708,157380,1052],[324056,155427,932],[328235,163846,815],[329397,165678,722],[326101,154928,923],[326091,157427,956],[326302,156259,1272],[327288,156643,934],[321182,160501,1038],[316456,166290,942],[317203,166854,942],[312706,178940,798],[313434,179142,635],[313264,180198,1000],[320970,165561,1031],[320528,165735,864],[320925,165224,1015],[314446,178845,861],[314337,178169,606],[315642,178238,710],[310014,176506,1083],[307491,179396,932],[312693,172965,912],[311092,175785,1091],[311675,177139,645],[305242,181844,912],[306383,180602,902],[309161,183065,855],[304791,184134,906],[303384,184165,872],[304641,182595,902],[309308,184125,934],[306519,185808,853],[304317,187075,1092],[303803,185737,1296],[304654,186221,1457],[305461,185663,1376],[299151,190582,1065],[304547,185537,1239],[307326,186925,1085],[307136,187731,1122],[306711,187188,984],[310369,181870,962],[310459,177479,850],[311080,179073,913],[314775,181263,972],[313637,180420,1083],[323295,164439,1008],[318674,171300,1191],[319011,170509,1085],[320206,171227,825],[315738,178887,833],[315693,178540,851],[315928,177088,741],[315284,175411,916],[321052,166275,849],[320610,172147,992],[323455,167972,1087],[318359,172872,904],[319704,172440,1145],[319312,172985,737],[327580,161903,792],[325398,161598,1144],[327864,161127,684],[324652,163237,1070],[323831,163492,978],[325983,163202,676],[326123,164260,658],[325594,163342,647],[329947,159200,695],[328635,163403,757],[328587,163028,773],[329238,160774,674],[330798,157562,976],[328668,160179,744],[326549,154005,1017],[329671,160326,798],[327788,160397,964],[329364,157887,1027],[337118,150896,837],[336722,150981,879],[337467,150482,879],[329825,158117,991],[330519,157959,1006],[330622,156194,1060],[331301,156732,991],[327211,155955,1125],[326740,155390,1121],[328042,155365,920],[326635,154707,913],[330661,151964,909],[332257,157282,1016],[331115,155361,928],[332756,157188,1030],[332529,155472,1052],[333214,157135,928],[333641,156704,962],[334398,156603,931],[334677,156916,755],[334880,156198,739],[335278,156508,721],[334442,156942,918],[335373,157150,863],[335754,157105,694],[336273,158057,707],[337074,153722,695],[337662,155023,751],[332567,145408,1001],[330564,147826,952],[338440,148503,789],[338748,147680,922],[338888,148725,939],[336831,145721,832],[334851,150253,824],[331762,149686,1083],[301347,191806,1037],[300988,192141,1275],[299676,189329,1117],[320890,171694,796],[320109,172708,1041],[304416,187749,1234],[301745,188778,1054],[301489,192795,1169],[301025,192544,1064],[334307,155879,1010],[333461,155360,941],[334425,154833,1087],[337247,151934,707],[324940,161750,963],[322999,159873,972],[325466,155859,930],[326437,155479,1112],[315193,181137,838],[315355,179296,890],[313313,180528,1060],[312898,180308,939],[326695,165107,987],[325262,164127,1055],[326371,155194,721],[329968,153854,920],[321996,166666,1000],[321382,168640,1076],[320401,167894,1000],[319653,169280,995],[319435,170376,1189],[318443,169635,1059],[327176,163169,693],[326634,164802,687],[324694,163566,1033],[323406,162949,985],[308372,186570,975],[304871,187997,1200],[304498,188494,1010],[321951,169966,798],[322453,170132,967],[322039,170633,797],[318923,173479,664],[316521,170496,934],[316496,172998,888],[315078,170476,1066],[304166,188551,1141],[303548,184296,922],[301253,187789,1273],[321597,170420,786],[304738,186926,1331],[304786,187263,1363],[304048,184929,1307],[305000,185404,1455],[306326,186898,1138],[305082,186152,1213],[338927,149088,812],[312209,175098,953],[313110,176711,607],[311902,175936,746],[303708,190149,1012],[303286,191337,1142],[302607,192188,1033],[305181,186858,1298],[323212,158669,1226],[310599,181057,843],[319146,168381,848],[319936,169167,842],[322782,168976,909],[317263,168151,863],[314230,180297,862],[336345,155258,749],[335353,147719,906],[309782,184681,938],[304821,187669,1115],[304959,188765,1008],[305094,189767,1042],[318007,170053,1167],[317874,169064,1148],[317330,171676,900],[311725,180678,888],[314244,177483,565],[319993,169506,1007],[320125,170500,1022],[317063,174654,830],[313018,178539,637],[302563,191857,1034],[305217,187242,1096],[305257,187592,1003],[333126,147068,839],[334458,147196,991],[336346,151788,730],[335041,151602,954],[322538,158599,1204],[336173,153861,930],[336524,153132,729],[335495,155010,970],[333739,154265,939],[320572,169274,845],[323894,168875,1158],[317325,168476,1119],[311399,181504,871],[329888,153174,1062],[329574,153603,910],[322572,158945,1036],[325032,162441,965],[316831,172950,746],[317349,174223,837],[317386,174605,664],[316882,173256,886],[337443,156468,748],[309446,177494,889],[337434,153300,774],[325078,162758,1021],[325948,162855,826],[313990,178618,627],[334872,147459,845],[332399,150940,1048],[330938,153977,1030],[304068,190385,1190],[334163,150744,840],[303122,181483,862],[299407,183252,894],[304139,179284,808],[302819,178512,968],[296436,124758,842],[295015,124758,984],[296935,119069,909],[293839,123318,937],[294713,124840,912],[299298,121107,849],[293517,124095,798],[295798,123188,771],[295762,122819,940],[262874,72930,412],[262387,74028,352],[262102,74096,352],[261471,72385,402],[261079,72615,402],[261592,71841,382],[261971,72092,382],[261779,72205,382],[261648,72118,392],[260876,73284,402],[261987,74260,352],[260599,73340,402],[262158,74373,342],[263151,72873,412],[411720,38460,1792],[411464,37614,2252],[415386,40998,1974],[416921,39386,1856],[412314,37126,1986],[410976,36624,1072],[412338,36701,1920],[417939,38711,2215],[417249,39134,2111],[421139,34340,1916],[421959,35045,1943],[421711,35297,1943],[417966,38387,2021],[420098,36705,2092],[419763,36447,2035],[422261,34369,1976],[422695,34374,1962],[422639,34312,1962],[422579,34254,1962],[422516,34200,1962],[422449,34150,1952],[422378,34105,1952],[422305,34065,1952],[422230,34029,1942],[421998,34133,1955],[422152,33999,2282],[422073,33974,2172],[421992,33954,2172],[421827,33930,2172],[421910,33939,2172],[421743,33927,2142],[421470,34128,1894],[421660,33929,2142],[421577,33936,2142],[421495,33949,2092],[418244,38285,1997],[413025,38300,1805],[415524,38476,1749],[414402,39242,1802],[414758,41270,1963],[414806,40405,1822],[413597,39873,1769],[411283,39275,1900],[410967,38987,1885],[419438,36212,1885],[418378,35608,1751],[418957,35147,1978],[419421,34763,1838],[413520,39210,1923],[413204,39666,1779],[412709,40624,1896],[417992,38033,1851],[419748,36946,1928],[421255,34020,2062],[421333,33991,2092],[415473,39083,1933],[412765,36286,1890],[417648,38085,1971],[413903,40802,1962],[413512,36003,1864],[418353,35969,1881],[412214,37913,1811],[416743,37211,1882],[415433,40140,1825],[421413,33967,2092],[406718,52822,708],[309240,61679,372],[308821,60565,332],[309534,61549,362],[309130,60459,332],[275503,130529,1171],[274129,132827,1278],[274271,138393,1154],[276815,134931,1082],[272872,140416,962],[278039,132857,1087],[279186,131634,1312],[277374,132544,1131],[275083,133695,1263],[275042,133376,1289],[273397,136096,1254],[272784,136949,1221],[274085,135072,1267],[270272,137886,1327],[271789,136403,1286],[273627,135560,1264],[276216,129750,1099],[319963,204206,1244],[319496,203624,7337],[319475,203629,1224],[368520,155696,1002],[369459,155484,992],[369005,155749,992],[427949,102137,1047],[427893,102343,15039],[427343,102324,1078],[429020,100059,10771],[429159,100300,17232],[429017,100150,1066],[369103,154055,1002],[372235,153193,942],[370916,154179,952],[377847,145283,942],[376838,150276,962],[374552,151709,942],[391445,133479,960],[395688,134796,962],[393164,137588,952],[379030,149061,962],[379537,145007,1061],[382108,147380,952],[384666,145799,942],[383412,146601,942],[386241,144564,922],[386491,139741,1172],[389527,138015,1071],[389826,137931,1061],[389862,138264,5360],[390322,140700,922],[388317,142722,922],[390272,134227,1015],[391085,133618,991],[389984,135012,999],[392204,132829,998],[399520,127385,10424],[400015,127416,11647],[399633,127592,11648],[400632,128695,1048],[400289,128448,9219],[400705,128623,14778],[411238,116098,1033],[411545,118449,968],[412816,116853,997],[413506,118551,892],[400928,127894,6701],[401603,127588,1038],[400869,128229,1050],[412946,116337,3815],[412557,116696,5051],[421727,110285,882],[420306,111723,882],[416992,115098,862],[418412,113610,862],[422502,107464,1054],[422707,109211,892],[434599,94621,1039],[434944,94079,1052],[434351,95088,1022],[434229,92940,12169],[434059,93022,15684],[434265,92844,7362],[435248,92173,1143],[435745,92280,1102],[435529,92338,14509],[434824,91666,1101],[434779,91322,1121],[435058,91437,9486],[435692,90860,1102],[435261,90947,8665],[435067,90819,1103],[434601,90006,1052],[434557,89669,1056],[434618,89697,14372],[434000,89673,15052],[433339,90209,1042],[434586,88908,992],[434643,90322,1063],[435267,89969,1062],[432823,90748,962],[433161,90714,1061],[432801,90782,962],[433207,91033,1115],[425962,105435,6231],[426321,105031,932],[424379,107333,892],[432782,90818,962],[432773,91008,12688],[432765,90855,962],[432750,90893,962],[432739,90931,962],[428034,102822,977],[429130,101681,992],[432729,90971,962],[432723,91011,962],[432719,91051,952],[432718,91092,952],[432719,91132,952],[429192,98318,11568],[428847,98416,11407],[429126,97972,11287],[432724,91173,952],[433149,91226,12156],[432731,91213,952],[432740,91252,952],[432753,91291,952],[432767,91328,952],[434281,94276,10394],[434268,94095,1094],[434513,93946,1076],[432785,91365,952],[433514,93176,13703],[433109,93536,1091],[433135,93291,13571],[432805,91401,952],[433818,95724,1015],[433806,95916,1012],[433526,90570,1054],[433421,90433,11425],[433479,90237,1024],[434782,93837,1080],[434823,94094,13013],[423588,102546,1087],[423633,102890,1091],[433414,95877,1040],[434059,94608,1068],[431767,98100,14054],[431950,98288,1012],[431756,98465,999],[405782,124896,992],[411618,120187,902],[404358,126027,1002],[428625,99569,1118],[428726,99416,12704],[424614,103496,8721],[424499,103146,13029],[424680,103403,15141],[413184,116412,982],[414802,117311,892],[412261,116625,1016],[401061,126733,1099],[399362,125785,1094],[399464,125826,6796],[399407,126127,1098],[398141,128161,7908],[398484,127999,1036],[398666,128930,8223],[390189,137680,6670],[390088,137860,1060],[389836,137865,5748],[367365,155690,992],[429345,99583,16315],[429809,99661,1035],[429851,99977,1029],[428299,101607,11091],[428174,101387,1083],[428513,101345,1086],[431109,97613,1072],[431468,98195,1048],[430943,98720,1039],[428887,99136,1119],[429313,99373,1085],[431512,98556,1003],[431525,98444,15321],[429802,99493,13495],[428840,98778,1130],[428533,98869,1132],[428632,98727,17298],[426227,100544,1088],[426715,100644,13984],[426249,100796,13294],[435179,89796,1052],[434946,89544,15505],[434751,89227,13319],[424898,102734,1110],[425175,102881,13107],[424938,103053,1088],[426783,101653,13046],[426844,101751,1110],[426406,101858,1155],[428897,98749,11490],[429187,98400,1123],[429725,99009,1056],[429937,100649,990],[429634,100192,14348],[430105,98222,1086],[430062,97888,1115],[430407,97454,1141],[430148,98562,1063],[430114,98418,14329],[400854,128108,9586],[399627,127598,5800],[399291,128064,12313],[399205,127399,12344],[431492,98805,14162],[430662,99446,1008],[430204,99411,13728],[429967,99073,16634],[430234,99233,1027],[428955,99068,11707],[430282,99140,8775],[430192,98891,1076],[424435,103630,1086],[424730,103514,1088],[426917,99567,12820],[427773,99402,7704],[426987,99649,1064],[427721,102549,989],[429445,100404,1030],[430167,99750,12563],[431672,97816,1032],[433212,96731,1002],[430052,98778,12748],[429636,98309,1111],[431026,96969,1101],[431247,97228,8236],[431069,97301,1089],[430323,99907,1014],[430280,99594,1011],[427389,102682,1065],[427361,103175,12311],[427023,103128,1046],[426187,100159,7348],[428565,98146,7873],[430359,97096,1117],[430680,96698,1093],[431342,97237,1069],[435187,92835,12778],[435519,92954,1082],[434884,89477,1026],[434934,89835,1055],[434524,89327,1231],[434492,89379,13176],[434204,89474,1019],[428375,99156,12799],[428583,99228,1155],[428291,99633,1141],[428552,101663,1038],[428214,101702,1055],[429060,100479,1053],[428301,101950,10464],[426934,102426,1110],[426800,102668,11354],[426451,102215,1126],[428258,102062,1012],[426913,103314,11744],[426572,103217,951],[430928,97297,14669],[430984,96653,1101],[431209,96198,1105],[429469,100608,11200],[425157,104728,1036],[425372,104182,13463],[425441,104254,1050],[425268,102927,1087],[424683,103154,1096],[425997,103285,10802],[425660,102800,1113],[426081,102655,1113],[400909,128553,1019],[399224,124753,1073],[398607,125493,1061],[428096,98570,13931],[429519,98226,11846],[429592,97973,1114],[429675,97528,9739],[429656,97521,15122],[429976,97235,1112],[434677,93675,7750],[434520,93807,9219],[434473,93633,1095],[435047,93275,13796],[434611,93033,8012],[433126,92966,14066],[433810,92324,7362],[434430,93300,1114],[434524,93559,15238],[434394,93239,13979],[433881,93239,1098],[434912,92343,1096],[435335,92848,1122],[434354,94777,1050],[434315,94608,10257],[434602,93462,11039],[433736,90083,1030],[433796,90004,11517],[427993,102484,1009],[428177,102633,12477],[426357,103169,10351],[426168,103339,1069],[425487,104612,1028],[426075,104628,9374],[425793,103832,1066],[400226,129786,982],[402623,127530,1002],[426663,103886,985],[426574,103758,12337],[427104,103778,981],[398667,129386,1026],[398281,129895,1023],[397861,129758,1000],[398349,131742,952],[397906,130089,1014],[430315,96776,1097],[430810,96646,14210],[429713,97865,9647],[430103,97468,9381],[430155,97114,10790],[429433,97915,11204],[427910,99361,1145],[427797,99717,7452],[427561,101108,12614],[427814,101110,1047],[428068,101659,12769],[426623,100082,1107],[426526,102729,13586],[428044,100663,9210],[428093,100271,10658],[428129,100646,6453],[426505,102127,8180],[428071,99952,10941],[427997,100033,1105],[427863,99029,1091],[427641,99778,1105],[428675,100127,10626],[428668,99899,1107],[428523,99815,13678],[427217,101360,1092],[428544,101496,10777],[428839,101227,1045],[434310,94434,1061],[434372,92594,1603],[434409,92389,6319],[434748,92683,10631],[433252,91391,1098],[432851,91467,952],[435447,93016,12080],[435376,93174,1084],[434248,89794,1050],[433982,89927,1047],[434428,91137,1097],[434710,91319,12650],[434413,91164,12682],[434220,92193,7952],[434213,92533,7199],[435110,91151,1103],[434804,91215,10353],[435783,91422,1102],[425801,104006,11574],[426300,104369,998],[434381,90795,1081],[433494,90780,11820],[434738,93491,1093],[435044,93352,1078],[426557,104447,10788],[426708,104221,985],[425615,102454,1124],[426254,104015,1010],[426742,101322,13095],[425069,104053,1054],[426717,100786,1106],[427162,102251,11234],[426589,101020,11470],[426967,100911,10991],[426362,101540,1119],[425530,101805,1137],[425300,101108,9913],[426193,101168,11796],[425944,101905,12639],[425610,102020,12610],[425279,101863,12081],[426020,102213,13144],[427246,100198,9816],[426985,100581,11854],[427251,102555,11929],[433855,92714,13337],[433425,92715,1059],[432827,91435,952],[434121,90962,1095],[434209,91606,1140],[433893,91669,9746],[433721,91734,13281],[433659,91554,1113],[433507,91445,10733],[433707,91913,1115],[425573,102122,1142],[425136,101911,1121],[424641,102835,1104],[424598,102505,1125],[425814,100638,1114],[423888,102045,1077],[425093,101580,1121],[432322,93778,1031],[432693,93653,1069],[425963,105159,974],[427065,103460,1022],[426444,104177,9703],[399391,126807,9700],[399529,126983,11319],[399211,126963,1099],[398597,127853,9256],[398096,127834,7882],[400867,126931,11952],[400690,126848,1105],[400491,127222,10190],[400735,127190,1099],[400460,127357,1106],[400841,127248,6658],[401101,127053,1065],[401123,127225,10663],[399821,126504,10600],[399728,126308,1121],[400039,126483,1132],[400827,127356,10598],[401144,127385,1049],[399826,126898,9925],[399494,126787,1086],[399826,126976,1249],[399872,127063,5922],[424905,104866,1039],[424289,104675,7116],[424524,104304,1066],[428486,101190,10538],[427137,100943,6853],[427775,100748,10290],[427737,100407,10396],[428883,101571,1022],[428190,101303,10095],[428352,100212,10475],[428821,100482,7117],[427766,99704,12158],[400325,126336,1122],[400149,126277,11312],[399994,126151,1122],[400084,126829,1127],[400147,126907,5926],[435522,91001,1101],[435157,91493,1128],[401534,127250,6758],[401129,127040,6895],[434652,92820,1129],[434058,92294,10950],[434003,92079,1102],[428593,101997,1001],[424348,102952,1113],[424525,102835,8715],[424793,103056,12123],[433743,95798,12035],[399052,127987,9083],[398650,125809,1070],[398220,125989,1072],[398906,127034,8803],[398694,126144,1059],[399171,126291,7544],[398723,127254,12164],[399313,125423,1081],[399295,125736,10343],[400509,127044,6703],[399773,126657,1106],[399078,125964,1076],[400008,127824,10776],[400430,126898,9929],[400415,127012,1116],[399325,126480,9375],[399453,126464,1109],[400372,126681,1138],[400521,127549,9995],[428129,101051,1071],[428106,100966,9516],[425059,101236,10110],[425049,101264,1114],[428465,100988,1072],[429103,100802,1059],[428711,100212,1126],[400043,128411,5830],[399720,128499,1079],[399679,125948,1100],[399548,124954,1106],[433569,90882,1084],[433296,91134,8304],[434579,91693,10059],[400646,126514,1109],[400508,126669,7382],[431409,95795,1065],[433887,92382,14424],[398002,129979,8456],[397162,127610,1063],[397594,127711,1052],[397206,127957,1026],[397773,129078,1020],[395641,128169,1055],[396768,127452,1029],[396484,127596,1029],[396441,127282,989],[398012,127551,7236],[398402,127345,1094],[434518,91813,1113],[397640,128115,6833],[399033,125627,1073],[398663,125787,7707],[399637,125977,8970],[423981,102718,1119],[426125,100479,12127],[427010,99905,13511],[427446,100181,6643],[400035,128675,1035],[394753,130461,986],[397792,126188,1042],[398103,126193,5398],[425202,105075,1012],[425135,105374,7793],[424947,105177,1048],[425908,105099,6102],[434255,91924,1184],[434664,92234,6433],[423734,102782,8284],[394252,129929,1270],[394302,130264,1350],[393523,130270,1645],[424988,105515,1001],[424245,104744,1053],[424157,104067,1082],[424580,104197,6918],[424818,104194,1065],[424479,103971,1072],[396814,127788,1060],[396723,127109,1047],[397929,127203,1065],[399505,124619,1124],[399378,124779,7537],[396369,127441,7500],[434356,94915,10260],[400822,127870,1064],[400806,127805,9467],[398152,128900,1047],[398358,127027,1086],[398591,127074,10628],[398335,127015,7138],[400144,127067,9758],[401561,127266,1052],[398309,126670,1053],[389482,137683,1059],[389996,137173,1050],[390810,138290,1009],[390722,137602,1039],[391285,138485,989],[390436,138417,1007],[390400,138088,5053],[390393,138081,1019],[425328,106063,944],[425284,105730,958],[425544,105243,5585],[399272,125108,1088],[397019,127652,8469],[434585,92144,1447],[388698,137894,1077],[389103,137797,1069],[390629,136921,1022],[390257,137049,1047],[390488,137028,4327],[390255,137130,4803],[389914,138615,1015],[390128,138182,1023],[389054,137436,1042],[388978,137765,5295],[390016,137163,5199],[411712,116353,992],[412373,116144,3482],[412723,116148,999],[390347,137728,1034],[390856,138636,996],[429188,101479,996],[390609,139759,949],[412170,115948,991],[411672,116035,1010],[391124,138545,4961],[424241,104339,7053],[411492,116247,4314],[391428,133124,1384],[393590,130982,1259],[393547,130633,1311],[393907,130813,963],[391797,132985,960],[393236,130836,1331],[393214,130467,1709],[392895,130683,979],[393281,131184,1315],[392966,131007,1372],[391663,131969,980],[392400,131324,997],[392071,131842,977],[394192,129620,1001],[393311,131573,1004],[390679,133708,1369],[390638,133385,1403],[390610,132992,1746],[391378,132767,1347],[391354,132386,1731],[391776,132611,1377],[391733,132262,1425],[392676,131168,991],[390180,133550,988],[433810,92324,1112],[367650,158541,1032],[367458,158917,1032],[365788,157197,1012],[367797,157613,1022],[367809,158208,1022],[367091,156892,1012],[367484,157103,1022],[366280,156728,1002],[364746,159143,1032],[364397,158523,1012],[366801,160205,1032],[365191,160302,1052],[366614,160567,1032],[365453,160670,1052],[366246,160828,1042],[365762,160903,1052],[366743,61321,521],[366715,61012,684],[367178,61033,596],[360146,60654,505],[362406,60014,526],[359783,59648,530],[363327,60736,584],[365060,61939,567],[364548,60883,525],[367939,63755,694],[363950,60818,564],[368579,62108,676],[367883,63414,545],[359872,60335,520],[362444,60353,425],[276619,138066,992],[276701,138123,992],[271333,143816,911],[271299,143461,1107],[271806,142333,958],[276896,134990,1082],[278139,135883,1042],[272893,140558,1052],[278179,135825,1042],[270504,144491,899],[270075,138451,1171],[269966,140380,1118],[269404,139274,1136],[272067,141754,946],[270667,140950,1073],[272888,141296,943],[275114,140275,984],[267332,148338,856],[282476,162547,1026],[281520,161268,823],[276496,156973,1079],[270105,153871,944],[268391,147198,881],[310521,145779,966],[271102,101478,740],[271485,100944,790],[273542,102071,795],[273800,98326,838],[272670,99741,811],[274593,100515,832],[272398,99596,790],[268053,105577,738],[268697,99199,785],[268903,103113,585],[269329,103908,755],[267460,101187,741],[268235,100677,820],[269338,102006,728],[269056,104145,768],[268589,103360,723],[267071,101755,681],[271017,100834,758],[271058,101149,752],[274364,98824,818],[274455,99497,825],[272911,99562,829],[266693,101993,791],[268141,100004,785],[268434,104954,764],[270059,102895,860],[270467,102969,713],[267844,100581,789],[275350,99475,826],[221743,136457,648],[222631,134036,634],[226841,134405,743],[226406,134591,593],[223827,133315,672],[222347,134950,680],[383073,43503,592],[386250,42666,592],[425929,58322,1045],[366134,100539,622],[365082,101593,632],[360010,105604,642],[370368,95603,592],[360779,105741,642],[361857,104697,642],[365561,103453,694],[364971,104124,696],[361901,107539,792],[361822,106815,712],[362898,105757,692],[372246,97494,752],[370467,96364,612],[367196,101608,642],[370457,98470,652],[371488,97446,682],[369383,97413,612],[366131,102645,662],[368972,98867,738],[365618,103790,860],[312807,134360,1079],[312314,133791,850],[313654,133483,1029],[305367,129285,1010],[305314,128950,879],[307665,130718,801],[301981,125849,804],[305269,125776,794],[299515,128094,984],[302336,128572,726],[302726,129122,879],[307563,134619,833],[308681,131876,990],[307764,131358,1001],[310868,133110,822],[311054,134487,877],[310190,133672,812],[315174,138287,973],[313445,135650,1082],[314504,133229,951],[325938,146423,1041],[325457,145886,815],[322418,146540,798],[321522,146095,918],[321427,145443,809],[324922,141775,945],[321254,144066,921],[317572,139980,910],[319015,140631,747],[316962,138758,971],[316125,138311,861],[313567,136635,975],[304621,130196,1104],[304850,128758,893],[312647,136123,1176],[313627,136981,1169],[300730,129077,731],[307946,132747,974],[311400,134366,1045],[309152,132477,820],[308768,132532,997],[312426,131698,694],[324281,146988,804],[300236,128203,805],[300272,128531,716],[306753,130995,921],[312894,135072,977],[311836,134979,1080],[312178,132782,816],[312988,132258,982],[312579,132700,972],[324053,148484,964],[322563,147522,996],[323521,147616,811],[309061,131794,807],[302426,129247,742],[313031,136042,1099],[312546,135462,987],[321960,146649,819],[275475,103353,863],[275368,106193,947],[275223,105228,751],[274344,105579,870],[274790,105715,736],[391587,60427,897],[391318,58414,860],[392796,60099,832],[388995,59933,810],[387242,62076,857],[388863,58919,828],[388439,58768,843],[388355,58122,848],[389204,58045,849],[387338,65627,827],[386935,62591,826],[391031,60743,751],[386142,62332,822],[386572,62787,799],[386500,65020,835],[392896,60958,882],[389424,59737,808],[389380,59399,810],[390026,57684,830],[385688,62180,817],[395439,33798,622],[396591,33463,632],[396716,33896,642],[395564,34230,632],[405450,106376,940],[235199,132876,712],[235342,133869,806],[226281,130328,733],[229817,132981,986],[228914,132270,999],[229234,131801,726],[232296,134563,1017],[228138,131533,966],[230175,132189,852],[230277,132832,1043],[231230,133254,703],[233239,134229,723],[232244,134205,984],[235735,134406,789],[226188,129680,681],[226235,129991,758],[228073,131188,725],[230634,132024,700],[227946,128058,645],[350141,122886,742],[347205,126302,752],[344822,121668,715],[360369,110915,652],[354926,108852,642],[359563,106065,642],[361890,108444,732],[361606,109866,632],[379954,89164,712],[379632,90679,730],[379572,90939,922],[379383,91080,677],[377012,90096,622],[379386,88579,722],[379670,88872,722],[353638,118214,719],[354684,116451,682],[353909,118490,852],[368462,70410,542],[303617,70561,560],[306618,69288,522],[305887,71683,562],[304437,71387,621],[317569,80196,623],[320909,82425,562],[316531,79673,872],[309289,74476,607],[311243,75969,641],[314293,78125,624],[315972,78655,607],[315642,78751,620],[316061,79305,643],[316637,79434,746],[336807,95173,673],[338208,96250,552],[320553,82941,572],[325695,84711,522],[334893,93514,549],[336440,93341,552],[336474,93380,552],[352789,118551,697],[353153,119210,842],[375222,87220,607],[373735,84574,602],[375340,85504,781],[346341,119762,670],[350182,114993,652],[346028,120160,731],[345800,120530,702],[343678,123486,746],[346993,126549,752],[350357,122646,752],[353309,119358,842],[347282,126370,762],[350233,122953,822],[349294,119682,659],[350436,122705,822],[337030,93622,552],[337082,93620,552],[336978,93620,552],[336926,93615,552],[336875,93606,552],[336825,93594,552],[336775,93578,552],[336727,93559,552],[336680,93537,552],[336635,93511,552],[336550,93451,552],[336591,93483,552],[336511,93417,552],[336408,93300,552],[336380,93256,552],[336354,93211,552],[336332,93164,552],[336297,93066,552],[336313,93116,552],[336285,93016,552],[336276,92965,552],[336271,92913,552],[336269,92861,552],[336271,92809,552],[336276,92757,552],[336285,92706,552],[336297,92656,562],[336313,92606,562],[336332,92558,562],[336354,92511,562],[336380,92466,562],[337178,87197,542],[337194,87247,542],[336408,92422,562],[337855,87748,542],[337907,87750,542],[337235,92128,552],[336440,92381,562],[336474,92342,562],[337235,87341,542],[336511,92305,562],[337260,87386,542],[336550,92271,562],[338945,80700,532],[351242,80381,544],[338993,80719,532],[336591,92239,562],[337289,87430,542],[337320,87471,542],[336635,92211,562],[337354,87510,542],[336680,92185,552],[337390,87546,542],[336727,92163,562],[336775,92144,562],[337470,87611,542],[336825,92128,562],[337429,87580,542],[337514,87640,542],[336875,92116,562],[337559,87665,542],[336926,92107,562],[337605,87687,542],[336978,92102,562],[337653,87706,542],[337030,92100,552],[337703,87722,542],[337082,92102,552],[337753,87734,542],[337134,92107,552],[337804,87743,542],[337185,92116,552],[337959,87748,542],[338010,87743,542],[337333,92163,552],[338061,87734,542],[338111,87722,542],[337425,92211,552],[338161,87706,542],[338209,87688,542],[337510,92271,552],[338255,87665,542],[338300,87640,542],[342488,90818,546],[338385,87580,542],[338424,87546,542],[337959,86238,532],[337907,86236,532],[338492,82129,522],[338161,86280,532],[338111,86264,532],[338694,82157,532],[343414,94496,559],[343556,94047,952],[343855,94856,952],[346944,84398,533],[339442,81356,542],[339437,81305,542],[337134,93615,552],[342940,89804,552],[338554,87386,542],[338579,87341,532],[337789,92913,562],[342670,92193,548],[337784,92965,562],[337775,93016,562],[342937,94199,545],[337763,93066,562],[337747,93116,562],[337728,93164,562],[337706,93211,562],[337680,93256,562],[337652,93300,562],[337620,93341,562],[337586,93380,562],[337549,93417,552],[337510,93451,562],[337469,93483,562],[337425,93511,552],[337380,93537,552],[337333,93559,552],[337285,93578,552],[337235,93594,552],[337185,93606,552],[338847,82141,542],[338255,86321,532],[338796,82150,542],[338221,81989,522],[337605,86299,532],[338182,81955,522],[327152,82909,492],[337972,81609,512],[337987,81658,512],[337960,81560,512],[337951,81509,512],[337946,81458,512],[337944,81407,512],[337946,81356,512],[337951,81305,512],[337960,81254,502],[337972,81205,502],[337987,81156,502],[338006,81108,502],[338028,81062,502],[338053,81017,502],[338081,80974,502],[338112,80934,502],[338146,80895,502],[338182,80859,502],[338221,80825,512],[338261,80794,512],[338304,80766,512],[338349,80741,512],[338395,80719,512],[342944,90666,732],[338443,80700,502],[366246,70840,482],[338541,80673,512],[338492,80685,502],[338592,80664,512],[338643,80659,512],[338694,80657,512],[338745,80659,522],[338796,80664,522],[338847,80673,522],[354860,79368,513],[359198,79639,520],[357071,79250,524],[339084,80766,532],[339039,80741,532],[339127,80794,532],[347798,83892,962],[347355,84507,962],[339167,80825,532],[350781,80763,542],[339206,80859,532],[346957,85151,952],[346604,85822,962],[345875,86545,536],[339276,80934,532],[339242,80895,532],[348533,82562,544],[346299,86515,962],[345422,88361,555],[345924,86889,586],[345836,87957,942],[339360,81062,532],[339382,81108,532],[346042,87228,952],[345271,89390,559],[345680,88698,942],[345577,89449,932],[345526,90204,952],[345169,90443,551],[343427,91086,569],[345527,90962,952],[343188,91120,962],[343132,92378,972],[343315,93220,942],[338061,86252,532],[338643,82155,532],[338010,86243,532],[338541,82141,522],[337855,86238,532],[337804,86243,532],[338395,82095,522],[339334,81796,542],[339306,81839,542],[339275,81880,542],[338579,86645,532],[339206,81955,542],[339242,81919,542],[338554,86600,532],[339167,81988,542],[338525,86556,532],[339126,82019,542],[338494,86515,532],[339083,82047,542],[338460,86476,532],[339039,82073,542],[338424,86440,532],[338993,82095,542],[337285,92144,552],[337289,86556,532],[337152,87045,532],[338385,86406,532],[338945,82113,542],[338344,86375,532],[338896,82129,542],[338300,86346,532],[338209,86299,532],[338745,82155,532],[338592,82150,522],[338443,82114,522],[337178,86789,532],[337166,86839,532],[337213,87295,542],[337703,86264,532],[338261,82020,522],[338304,82048,522],[337653,86280,522],[337559,86321,532],[338146,81919,522],[337166,87147,542],[337514,86346,532],[338112,81880,522],[337157,87096,532],[338081,81840,512],[337470,86375,532],[337390,86440,532],[338028,81752,512],[338053,81797,512],[337150,86993,532],[338006,81706,512],[337354,86476,532],[337152,86941,532],[337320,86515,532],[337157,86890,532],[337429,86406,532],[338349,82073,522],[337753,86252,532],[337194,86739,532],[337213,86691,532],[337235,86645,532],[337260,86600,532],[339360,81752,542],[339382,81706,542],[339400,81658,532],[339416,81609,542],[337620,92381,562],[337586,92342,562],[338601,86691,532],[343008,91525,962],[338620,86739,532],[338636,86789,532],[337706,92511,562],[337680,92466,562],[338648,86839,532],[337728,92558,562],[343549,95515,555],[337747,92606,562],[337763,92656,562],[337549,92305,562],[338344,87612,542],[338657,87096,532],[338662,87045,532],[338602,87295,532],[338620,87247,532],[338526,87430,542],[338494,87471,542],[338460,87510,542],[337469,92239,552],[337380,92185,552],[376640,76733,737],[376820,78088,754],[372943,82294,573],[374054,83893,778],[373612,83577,721],[372669,90403,589],[377365,92773,614],[380852,92275,822],[378086,94716,754],[376427,91506,750],[361712,110534,893],[374122,98431,783],[376719,95882,909],[373803,98802,931],[373170,97523,722],[370830,95170,592],[374727,94299,612],[367640,91095,547],[367718,89456,533],[352854,102675,611],[353621,102409,992],[353677,102614,624],[373699,93197,622],[367234,93082,572],[367408,91735,559],[375825,93298,612],[377215,94808,663],[375932,95276,629],[369513,102895,898],[368925,103178,694],[368533,102804,821],[357121,114258,690],[357313,102636,626],[357879,102206,1032],[358415,102200,669],[356066,102787,612],[352772,102264,982],[344661,97071,564],[345078,97129,952],[345587,97824,972],[351496,102078,679],[351934,102059,982],[352342,102331,636],[338664,86993,532],[351113,101797,982],[337775,92706,562],[346332,99203,576],[349177,101201,605],[337789,92809,562],[337784,92757,562],[350599,102076,589],[350313,101478,982],[337791,92861,562],[349536,101104,982],[348071,100199,972],[348788,100677,982],[338648,87147,532],[338636,87197,532],[346746,99098,952],[346573,99153,652],[346296,98891,641],[346145,98481,952],[338662,86941,532],[344621,96737,622],[339428,81560,542],[339437,81509,542],[344209,95641,982],[338657,86890,532],[339442,81458,542],[339444,81407,542],[343175,90933,962],[343165,90746,952],[343378,90730,558],[343158,89811,552],[344247,90608,539],[343153,89998,552],[343152,90185,562],[343158,90559,952],[339428,81254,542],[339416,81205,542],[339401,81156,532],[339335,81017,532],[339307,80974,532],[348282,83309,962],[349959,81780,952],[349365,82251,952],[338896,80685,522],[353335,80103,942],[351855,80363,563],[350584,81352,962],[351916,80632,952],[351237,80969,952],[352616,80343,952],[352216,80345,831],[356322,79655,952],[355566,79689,942],[354813,79775,942],[357834,79746,952],[357080,79674,952],[358037,79575,592],[359910,79971,536],[359254,80038,962],[358549,79868,962],[360623,80514,952],[359946,80253,952],[363565,81970,527],[363669,82451,952],[363114,81985,952],[360937,80295,528],[361281,80819,952],[361901,80920,540],[361917,81167,952],[362626,81241,539],[362908,81591,569],[362529,81556,952],[364459,82968,553],[364682,83489,942],[364193,82953,942],[365017,83629,561],[365614,84313,541],[365134,84056,942],[365548,84651,952],[366211,85333,546],[366702,86377,541],[366254,85917,932],[366950,94430,570],[366744,86692,560],[366542,86583,962],[367154,87407,522],[366984,87963,952],[366786,87266,952],[367377,89092,552],[367240,89390,962],[367136,88672,962],[367423,89440,558],[367466,89770,546],[367297,90113,962],[367367,91403,593],[367267,91562,952],[367306,90838,962],[367192,92743,604],[367046,92995,962],[367180,92282,962],[366905,94071,589],[366557,94636,972],[366830,93824,972],[366571,95395,577],[366530,95079,598],[365895,96761,565],[365853,96414,628],[365405,96929,972],[365842,96192,972],[364254,98741,587],[362230,100487,608],[365036,97744,592],[364379,98300,972],[363797,98928,972],[363171,99514,972],[360922,101422,605],[361197,101111,620],[359622,102141,609],[358785,102210,619],[359517,101709,1012],[357037,102367,1042],[356186,102468,1032],[354518,102928,609],[355331,102509,992],[354483,102589,739],[354474,102489,992],[343153,90372,732],[345217,90801,563],[354068,79913,942],[348805,82761,952],[351034,80731,556],[358707,101987,1022],[344053,95796,582],[366227,95427,972],[364971,83295,536],[350561,101742,653],[343309,93487,965],[343371,94162,589],[364916,97633,972],[362506,100054,992],[361805,100546,972],[359586,101792,749],[360493,101456,627],[361070,100987,972],[365922,85273,932],[347389,99672,972],[309197,73799,577],[311928,76441,654],[374822,92177,702],[374991,90957,848],[344617,96400,952],[370322,101696,825],[370707,101388,996],[360875,111554,726],[357729,114680,912],[372688,99752,773],[376672,95563,843],[376344,95610,816],[368662,103819,748],[368565,103147,623],[368171,103476,947],[367269,104143,775],[368444,102156,761],[364608,107864,922],[364138,108221,792],[364516,107187,881],[369653,101596,945],[371306,99388,869],[363317,108567,900],[363491,106897,881],[368488,102487,767],[369427,102246,887],[356842,115310,757],[355146,116432,829],[306365,71921,588],[373481,82576,738],[373732,81547,605],[373981,97455,620],[374855,96731,642],[360307,101376,982],[337652,92422,562],[365671,106457,915],[377152,87666,725],[375181,89576,631],[374586,90966,706],[373734,92023,753],[366073,105455,902],[313227,77388,636],[317047,79645,725],[362092,110186,774],[365875,105798,759],[360837,111202,820],[362260,109148,660],[376027,95977,665],[376076,96310,736],[377265,95155,719],[374962,97378,935],[279881,113604,776],[281222,113252,757],[280922,114088,989],[280828,110254,884],[281617,111662,764],[279582,111252,1013],[280457,107579,742],[282181,109610,820],[280090,108003,820],[278725,108031,657],[278312,107810,782],[281822,113009,1091],[282519,111962,1102],[281091,112286,756],[278446,113384,1065],[283464,109843,716],[282273,110313,778],[275951,110587,843],[277760,110174,834],[276091,111579,923],[278138,112845,1090],[279092,113528,900],[280489,114495,927],[279476,110607,758],[277071,112249,833],[278722,110849,784],[278874,109027,860],[280314,109718,725],[277418,112100,826],[283830,109333,813],[241584,106947,530],[242064,105938,462],[242111,105909,462],[235216,110269,492],[241408,107311,769],[282378,137833,1066],[284722,136719,1192],[279527,133298,1093],[279268,131691,1312],[284905,135919,1204],[284238,135510,1076],[278221,135940,1042],[282083,140355,1181],[276684,139317,1111],[281591,138471,1200],[280022,140598,1157],[280440,140065,1100],[281257,140405,1247],[281205,140082,1120],[281667,137322,1077],[280934,138032,1191],[282531,135985,1202],[281593,134527,1114],[281873,134064,1119],[279462,140092,1223],[280867,133022,1316],[280652,133521,1280],[280916,133383,1325],[280684,133853,1104],[344179,129988,742],[343653,129587,642],[343754,129442,642],[347070,126618,752],[343332,129120,812],[343243,128745,637],[341400,127793,662],[341525,127704,672],[344268,124457,729],[341102,127374,672],[341003,127501,672],[343250,129214,812],[342422,124742,725],[343346,123899,737],[418037,53089,761],[417462,53645,746],[418089,53413,905],[337384,106413,971],[336527,105599,930],[337526,103999,927],[314133,80318,925],[310494,81479,752],[313160,77834,612],[320209,83061,857],[334642,93936,588],[333652,93190,778],[333605,92875,708],[317593,83688,853],[317828,85388,975],[314509,83953,942],[314930,83395,922],[314696,84168,932],[315082,83489,922],[316685,79792,746],[316382,79886,872],[317863,82235,948],[318928,86817,844],[319232,87223,1392],[314560,96306,673],[305979,88408,569],[304977,88662,645],[310252,81432,752],[310173,81543,752],[309923,82377,701],[309884,82046,755],[312205,83057,965],[312834,83183,892],[312637,83958,894],[313367,84719,637],[315199,84877,779],[319078,87389,912],[309377,87454,530],[308254,86090,770],[310759,85601,558],[302738,87101,822],[304037,87165,831],[303735,88258,742],[300989,87549,657],[299617,89354,691],[301024,90669,719],[307854,86526,569],[308711,84202,892],[309245,83624,937],[312117,85223,559],[313095,85198,754],[313171,85873,573],[312046,88063,659],[321656,88650,1015],[320910,88121,1274],[321891,88239,708],[315859,93414,745],[316707,93165,777],[317313,94370,918],[322292,98856,677],[319132,98281,679],[319813,97044,691],[314099,90111,866],[313086,89801,815],[314070,92618,670],[312024,91525,719],[314810,92683,935],[314861,93007,1054],[314458,92816,893],[314219,91127,680],[314626,91361,828],[315147,95358,694],[314350,94623,858],[321916,95860,977],[324532,95355,1054],[324329,97780,889],[321696,96943,865],[318728,95257,649],[317965,93448,1059],[319870,93874,893],[332402,103225,623],[330977,101837,538],[331473,100699,568],[323562,98581,837],[318017,96592,767],[322944,98396,953],[344551,106324,593],[343799,105390,838],[345392,105863,580],[328175,97171,769],[325044,99393,712],[324958,98714,763],[327194,102487,679],[325446,102431,682],[326903,102892,805],[326052,96499,777],[330679,102600,613],[330358,106812,650],[333899,108059,686],[331925,108889,690],[342904,110602,561],[341003,111900,612],[341591,110769,606],[349651,111739,628],[349642,114785,795],[348142,114393,686],[335609,107963,701],[343701,110817,775],[343611,110162,739],[345379,119539,610],[344813,119239,725],[346298,112607,738],[346163,111562,786],[345983,119822,737],[317579,93214,906],[316585,92125,998],[319418,86740,835],[319530,87396,1186],[319940,86954,926],[320803,87436,1046],[332379,96637,689],[330202,98876,857],[330829,95674,881],[317895,88862,839],[318734,88625,1238],[318839,89626,849],[321031,89122,1103],[320982,88793,1036],[322050,94093,1079],[326611,96047,934],[310250,84732,890],[319791,85934,722],[319866,86284,1123],[321754,100737,696],[321162,96030,1158],[337901,110484,611],[340023,110726,528],[337954,110811,750],[336164,105383,616],[333401,104368,594],[321458,89720,926],[320430,90646,929],[314725,92007,1002],[315230,92214,1128],[314770,92323,1044],[304478,87395,808],[344372,109763,719],[304931,88311,658],[317829,95239,646],[316660,95969,645],[319617,91842,1124],[318311,91904,1012],[318944,90330,1020],[316461,91164,1038],[315962,90611,826],[317089,89535,860],[314817,89192,955],[319755,89092,1182],[305899,87738,696],[307111,88141,534],[306907,86476,763],[316132,95444,794],[317744,97722,724],[317377,98214,793],[318022,89871,761],[312890,88437,585],[317760,87842,844],[317531,88307,1020],[316462,87950,919],[314997,87029,549],[316220,86274,636],[335453,99996,675],[332398,100107,652],[336865,102724,595],[336328,104278,602],[334551,103059,591],[336298,106402,591],[320232,96548,995],[318067,90187,803],[317750,89987,981],[323742,89627,678],[321885,90334,1096],[322038,89238,903],[321298,91154,1081],[322101,92032,963],[320521,91323,929],[337940,103556,929],[337456,103648,598],[338801,104055,760],[337047,104078,604],[337876,103218,662],[339879,105569,758],[336227,101140,572],[314356,92144,709],[313166,90472,707],[316953,88503,875],[320719,86763,1137],[319890,86612,844],[322081,87498,714],[322467,87412,807],[320553,82974,783],[322620,85032,708],[328281,100926,731],[324757,93597,855],[344412,118640,606],[343100,115697,690],[345503,113391,781],[316963,95161,662],[307373,86344,533],[306948,86797,733],[341592,104235,906],[338179,102464,620],[317796,90304,1051],[317242,90534,1149],[317664,91092,1223],[316866,90988,946],[333324,103693,773],[332851,103461,761],[336419,104954,622],[333920,95220,756],[342339,106228,798],[341486,99853,714],[342395,106584,918],[341940,106921,769],[317802,94922,860],[337510,107426,849],[337085,107568,591],[337008,106853,847],[337585,108138,579],[317239,88086,841],[301999,87962,684],[340415,109592,787],[340884,110894,823],[340219,109964,575],[341572,113563,645],[331083,108716,652],[343518,107441,670],[343074,104083,694],[346913,103602,557],[350760,110231,758],[338591,108603,621],[338995,108495,817],[338681,109307,576],[340496,111994,702],[318801,98072,704],[332192,92147,596],[331413,92723,632],[339505,109446,567],[336595,106285,603],[342407,116826,763],[320258,100396,686],[318843,98398,678],[299661,89671,708],[301667,88012,673],[334340,101369,786],[330595,101923,702],[322634,88764,637],[323561,88298,614],[323973,87845,594],[344064,107421,753],[343380,108461,656],[338139,108713,723],[345842,112651,780],[318694,99155,674],[322843,86674,773],[321161,87359,1142],[317322,97870,659],[341670,108326,865],[321946,88562,875],[321985,88891,798],[329795,95881,729],[323445,91075,1016],[336245,98016,675],[311616,84687,901],[314868,86023,601],[314840,79023,895],[320635,88859,1013],[325553,90056,809],[326951,88075,563],[335423,95098,563],[335799,94658,695],[335889,95334,692],[324796,87084,708],[325568,88300,719],[318049,87069,945],[312402,84751,600],[340443,99256,573],[337727,99080,584],[337949,97677,691],[336347,98715,811],[342478,107235,865],[324835,87440,584],[337814,96669,689],[314712,84671,936],[340902,99218,574],[351950,112169,779],[351585,111534,630],[335083,94861,700],[325177,87345,586],[309803,88014,623],[315229,149210,949],[274474,89653,712],[275080,90106,712],[274901,90328,712],[274302,89873,712],[291704,116483,806],[292036,116072,857],[290621,114646,1021],[290250,114705,819],[290216,114378,937],[287064,115093,803],[289870,118348,976],[286746,115584,816],[291288,116586,828],[290664,117744,933],[290182,118251,980],[291154,115593,808],[288769,113071,785],[253466,195340,1082],[253422,195341,1082],[253511,195335,1082],[254072,194691,1062],[253640,195304,1082],[253554,195328,1082],[253598,195317,1082],[253681,195288,1082],[253797,195222,1072],[253760,195247,1072],[253721,195269,1072],[253897,195135,1072],[253866,195166,1072],[253833,195196,1072],[254066,194780,1062],[254019,194950,1072],[253927,195102,1072],[253978,195029,1072],[253953,195066,1072],[254000,194990,1072],[254059,194823,1072],[254035,194909,1072],[254048,194867,1072],[254071,194735,1062],[253378,195339,1082],[254070,194647,1062],[254018,194432,1062],[254066,194602,1062],[254048,194516,1062],[254058,194559,1062],[254034,194473,1062],[253760,194136,1052],[253977,194353,1062],[253999,194392,1062],[253953,194316,1062],[253926,194281,1062],[253897,194247,1062],[253797,194160,1052],[253866,194216,1062],[253832,194187,1062],[253681,194095,1052],[253721,194114,1052],[253640,194079,1052],[253554,194055,1042],[253597,194065,1052],[253466,194043,1042],[253511,194047,1042],[253378,194043,1042],[253422,194041,1042],[253204,194079,1032],[253333,194047,1042],[253290,194055,1042],[253247,194065,1032],[253084,194136,1032],[253163,194095,1032],[253123,194114,1032],[252947,194247,1042],[253047,194160,1032],[252978,194216,1032],[253012,194187,1032],[252891,194316,1042],[252918,194281,1042],[252796,194866,1052],[252826,194432,1042],[252867,194353,1042],[252845,194392,1042],[252796,194516,1042],[252810,194473,1042],[252778,194602,1052],[252786,194559,1042],[252774,194647,1042],[252772,194691,1042],[252774,194735,1042],[252786,194823,1052],[252778,194780,1052],[253333,195335,1082],[252845,194990,1062],[252810,194909,1052],[252826,194950,1052],[252867,195029,1062],[252918,195101,1062],[252891,195066,1062],[252978,195166,1072],[252947,195135,1072],[253123,195268,1072],[253012,195195,1072],[253084,195246,1072],[253047,195222,1072],[253163,195287,1072],[253247,195317,1072],[253204,195303,1072],[253290,195327,1082],[234223,111538,476],[230290,113731,592],[235230,110511,502],[235043,110913,464],[234819,111231,641],[472036,6052,32],[472073,5790,32],[521245,8267,32],[471981,6311,32],[511547,29311,32],[471816,6815,32],[471907,6566,32],[471708,7057,32],[471583,7290,32],[471442,7514,32],[471285,7728,32],[470929,8120,32],[471114,7931,32],[509635,33904,32],[269998,298272,32],[268785,299473,32],[239297,291307,32],[459783,26663,32],[462934,8074,32],[468286,9168,32],[272430,295877,32],[271213,297073,32],[276094,292300,32],[274871,293490,32],[273650,294682,32],[345366,228398,32],[344812,228926,32],[334996,235648,32],[354456,217238,32],[348226,225589,32],[348688,225129,32],[327540,242921,32],[286335,245958,32],[278547,289925,32],[375001,160796,32],[383532,152521,32],[400790,171272,32],[397001,178401,32],[387037,188308,32],[386741,188445,32],[384655,189411,32],[380229,191675,32],[397109,178201,32],[456905,10065,32],[457014,9820,32],[367413,204506,32],[464686,32274,32],[470522,8459,32],[470731,8297,32],[465043,33092,32],[267574,300676,32],[465298,33736,32],[266365,301881,32],[510603,31683,32],[265158,303088,32],[263953,304297,32],[262750,305508,32],[261550,306722,32],[259693,308621,32],[456590,10497,32],[456763,10292,32],[511560,29458,32],[471815,3972,32],[471707,3730,32],[521510,8125,32],[521293,8289,32],[521721,7955,32],[521928,7779,32],[522129,7597,32],[523558,5333,32],[522325,7409,32],[522515,7215,32],[522699,7016,32],[522877,6812,32],[523050,6602,32],[523215,6387,32],[523375,6168,32],[523528,5943,32],[523674,5715,32],[523813,5482,32],[524371,3938,32],[471582,3496,32],[463099,0,32],[469332,1758,32],[469074,1696,32],[466368,43344,32],[500429,53663,32],[499352,55832,32],[469584,1838,32],[471284,3058,32],[471113,2856,32],[469831,1936,32],[470928,2666,32],[470730,2490,32],[470069,2050,32],[470520,2328,32],[470300,2181,32],[508656,36119,32],[507666,38330,32],[465687,34855,32],[466287,37148,32],[506665,40535,32],[505653,42736,32],[466017,35994,32],[504630,44932,32],[503596,47123,32],[466621,39311,32],[501496,51488,32],[466542,42349,32],[471440,3272,32],[471906,4220,32],[471980,4475,32],[472035,4734,32],[472073,4996,32],[472091,5261,32],[472091,5526,32],[438754,16498,32],[438239,15329,32],[438239,15328,32],[464297,31472,32],[470301,8606,32],[464020,30946,32],[470071,8737,32],[463578,30171,32],[469832,8852,32],[463176,29527,32],[469586,8949,32],[462986,29257,32],[469333,9029,32],[462677,28871,32],[469076,9091,32],[462456,28626,32],[468815,9135,32],[462224,28392,32],[468551,9161,32],[461854,28064,32],[277320,291111,32],[456493,10590,32],[456576,10510,32],[456405,10664,32],[457104,25370,32],[456390,10676,32],[456167,10825,32],[455926,10941,32],[455670,11022,32],[456228,25069,32],[455406,11066,32],[454812,24729,32],[455138,11073,32],[454872,11041,32],[453048,11160,32],[454741,11012,32],[453213,11106,32],[454612,10973,32],[453254,11092,32],[454365,10869,32],[453448,10997,32],[454135,10732,32],[453628,10875,32],[453927,10563,32],[453788,10729,32],[453780,10736,32],[453721,10790,32],[453540,10939,32],[453411,11015,32],[453323,11058,32],[452870,11192,32],[452835,11198,32],[452782,11200,32],[452642,11206,32],[452618,11207,32],[452510,11200,32],[452421,11188,32],[452402,11185,32],[445258,22056,32],[452332,11168,32],[452192,11134,32],[452121,11106,32],[451990,11054,32],[440846,21249,32],[440283,19971,32],[440283,19970,32],[466657,41136,32],[502551,49308,32],[466497,38315,32],[466670,40223,32],[461726,27960,32],[498264,57996,32],[466038,44917,32],[461980,28170,32],[463086,54722,32],[497165,60155,32],[488136,77001,32],[462103,28280,32],[465560,46867,32],[462341,28508,32],[462568,28747,32],[462783,28997,32],[462886,29126,32],[463082,29391,32],[463266,29665,32],[463424,29917,32],[463729,30427,32],[463876,30686,32],[464160,31208,32],[464430,31738,32],[464560,32005,32],[486655,79502,32],[460461,61701,32],[464809,32545,32],[464928,32818,32],[457614,68589,32],[485127,81976,32],[483553,84420,32],[457824,68110,32],[465155,33367,32],[465564,34480,32],[465434,34107,32],[481935,86835,32],[456906,69987,32],[465804,35233,32],[465914,35613,32],[454930,72988,32],[480271,89219,32],[478564,91572,32],[456229,71105,32],[466114,36377,32],[466204,36762,32],[466363,37536,32],[476813,93893,32],[453729,74620,32],[466433,37925,32],[448732,81686,32],[475019,96181,32],[473183,98435,32],[452482,76216,32],[466553,38706,32],[466590,39008,32],[466644,39615,32],[471305,100655,32],[469386,102839,32],[467427,104987,32],[466660,39919,32],[466672,40528,32],[466668,40832,32],[465429,107098,32],[441602,91378,32],[417974,118701,32],[463391,109172,32],[414047,158268,32],[466638,41440,32],[466613,41744,32],[466581,42047,32],[466497,42650,32],[466444,42950,32],[466290,43738,32],[466209,44132,32],[466125,44525,32],[465948,45308,32],[465855,45699,32],[465760,46089,32],[465661,46478,32],[465456,47255,32],[465348,47642,32],[465238,48028,32],[465125,48413,32],[457721,68350,32],[457504,68826,32],[457275,69295,32],[457391,69061,32],[457155,69527,32],[457032,69758,32],[456777,70214,32],[456644,70440,32],[456509,70663,32],[456371,70885,32],[456085,71323,32],[455801,71742,32],[455514,72160,32],[455223,72575,32],[454634,73399,32],[454336,73808,32],[454034,74215,32],[453422,75022,32],[453112,75422,32],[452798,75820,32],[452164,76610,32],[451842,77001,32],[441072,92059,32],[440541,92738,32],[440007,93416,32],[439471,94092,32],[438932,94766,32],[438392,95438,32],[437849,96109,32],[437304,96778,32],[436757,97445,32],[436208,98110,32],[435657,98774,32],[435103,99435,32],[434548,100095,32],[433990,100753,32],[425137,110912,32],[404623,132355,32],[346380,48953,232],[347288,48677,232],[347434,49155,242],[346525,49432,242],[423682,32197,1922],[422605,33729,1952],[423647,32174,1922],[216745,315746,762],[218534,312598,762],[460461,61701,692],[231625,298703,762],[239297,291307,762],[286335,245958,762],[428276,106956,580],[425311,110712,210],[444037,87707,260],[446542,84311,243],[435103,99435,812],[434654,99311,746],[435124,98993,345],[435657,98774,822],[435646,98380,252],[436208,98110,852],[436327,97369,618],[436757,97445,822],[437396,96540,145],[437304,96778,632],[437956,95577,240],[438956,94624,159],[438932,94766,572],[439471,94092,722],[439631,93664,166],[440007,93416,702],[440040,93164,188],[440541,92738,572],[453264,74498,788],[455514,72160,692],[451842,77001,552],[452164,76610,552],[452798,75820,722],[452932,75631,557],[452482,76216,722],[453422,75022,702],[453729,74620,692],[453112,75422,782],[454336,73808,692],[454034,74215,782],[454634,73399,692],[454930,72988,692],[455223,72575,692],[455801,71742,692],[456085,71323,692],[456229,71105,692],[456371,70885,692],[456509,70663,692],[456644,70440,692],[456777,70214,692],[456906,69987,692],[457032,69758,692],[457155,69527,692],[457275,69295,692],[457391,69061,692],[457504,68826,692],[457614,68589,692],[457721,68350,692],[457824,68110,692],[220224,310364,762],[463086,54722,692],[441370,91281,253],[450979,78223,871],[447481,83293,172],[422871,113340,395],[424691,111309,272],[425137,110912,642],[448277,82302,356],[437073,96695,226],[433952,100245,510],[433990,100753,812],[438941,94286,581],[432535,102080,346],[433282,101530,141],[434548,100095,812],[424998,110832,323],[413962,122503,584],[416435,119951,569],[330858,203191,393],[319873,213555,667],[406530,130040,622],[402046,134540,412],[397414,139241,146],[356336,178551,771],[353319,181395,632],[369945,165171,830],[379691,155933,625],[391007,145020,673],[394352,141909,565],[215069,319948,762],[213100,327637,762],[433606,101038,204],[440025,92843,574],[404299,132337,468],[404013,132854,164],[382347,153563,413],[380287,155624,405],[404721,131730,639],[404736,132121,139],[404623,132355,682],[404492,132247,234],[408122,128764,171],[405377,131531,131],[440444,92745,182],[400920,135857,140],[318444,215098,311],[315129,217971,728],[383532,152521,712],[450113,79500,297],[422841,112964,670],[419826,116466,485],[423169,112881,344],[375001,160796,762],[345933,188714,468],[387943,148266,256],[407867,128514,700],[375160,160395,765],[372327,163163,612],[407611,128942,564],[443036,89378,209],[428794,106430,395],[429385,105605,563],[430835,103943,711],[421912,114401,137],[421682,114534,243],[431771,103011,363],[376016,159750,498],[370463,164902,798],[365007,170394,520],[436461,22314,352],[435777,22464,1332],[437964,21922,1702],[436139,22586,1837],[436073,22446,139],[437176,22242,1709],[438089,22218,1792],[438142,22342,2622],[435845,22910,2212],[435811,22495,450],[437964,21923,1702],[435777,22464,582],[437964,21922,582],[455572,25215,92],[455303,25294,247],[454793,25027,195],[440852,21711,1340],[441052,21532,1342],[445151,22054,280],[440846,21249,1052],[440712,21774,1372],[443011,67668,1232],[443359,67391,1392],[443089,67731,1232],[443281,67328,1392],[444746,65227,4212],[444667,64973,4212],[444839,65263,4212],[445006,64828,4212],[445179,62071,4282],[445357,62274,4282],[444912,64793,4212],[445457,62272,4282],[445447,61798,4302],[444999,59173,4132],[444920,59235,4222],[444693,59148,4262],[445347,61800,4282],[444718,58813,4132],[443116,56845,4522],[443200,56771,4512],[444635,58869,4132],[443282,56715,4512],[442976,56372,4612],[442901,56439,4532],[441208,54548,4792],[441283,54481,4792],[440902,54205,4792],[440976,54138,4772],[439283,52247,4692],[439209,52314,4682],[438896,51964,4682],[438970,51897,4682],[437284,50013,12682],[437210,50080,12422],[436903,49737,12422],[436978,49670,12772],[435298,47794,14282],[435224,47860,14212],[434985,47444,15092],[434910,47510,14472],[443011,67668,1202],[443089,67731,1192],[443359,67391,1202],[443281,67328,1212],[444746,65227,1262],[444839,65263,1262],[445006,64828,1282],[444912,64793,1292],[445357,62274,1422],[445457,62272,1422],[445447,61798,1452],[445347,61800,1462],[444920,59235,1612],[444999,59173,1612],[444718,58813,1662],[444635,58869,1662],[443200,56771,1822],[443282,56715,1812],[442976,56372,1852],[442901,56439,1872],[441208,54548,2002],[441283,54481,2002],[440976,54138,2012],[440902,54205,2002],[439209,52314,2072],[439283,52247,2072],[438970,51897,2082],[438896,51964,2082],[437210,50080,2192],[437284,50013,2192],[436978,49670,2212],[436903,49737,2212],[435224,47860,2242],[435298,47794,2242],[434985,47444,2252],[434910,47510,2252],[397989,92847,2772],[397821,92862,2652],[397899,92770,2622],[397989,92847,1002],[221793,119101,642],[225523,116542,512],[225624,116703,542],[221531,119040,572],[221633,119204,602],[221793,119101,482],[225624,116703,482],[225523,116542,472],[221531,119040,482],[221633,119204,492],[230175,113556,542],[230175,113556,472],[312834,83183,4512],[314696,84168,3022],[319078,87389,1412],[314509,83953,3412],[315082,83489,3022],[314930,83395,3012],[380581,86368,1448],[380965,86254,1424],[380569,86679,718],[381624,84713,685],[378528,87461,846],[377963,86496,1180],[378162,87187,2680],[378697,87794,2603],[379122,88095,2543],[379278,87979,755],[379342,88317,1016],[378944,87721,739],[381304,85829,763],[381257,85507,702],[379888,87169,690],[380922,85925,1420],[382344,84388,762],[380251,86728,1101],[406073,94308,1426],[406497,94521,803],[406117,94548,772],[408107,92254,1447],[407877,93033,1417],[408044,92342,5044],[410159,90800,642],[407334,93545,1403],[407530,92817,1435],[407248,92869,1446],[405777,94324,802],[409457,91318,1403],[407081,93985,816],[406457,94772,692],[406870,94079,1446],[407834,92693,1445],[409417,91001,1432],[409734,90549,675],[409782,90882,745],[357141,94149,1865],[356587,96824,1592],[356446,96819,1592],[356728,96819,1592],[356869,96805,1592],[357009,96781,1602],[357146,96747,1592],[357281,96704,1602],[357412,96652,1602],[357540,96592,1602],[357663,96522,1602],[357782,96445,1612],[357894,96359,1612],[358001,96266,1612],[358101,96166,1622],[358194,96059,1642],[358280,95947,1652],[358357,95828,1642],[358427,95705,1652],[358487,95577,1652],[358539,95446,1682],[358582,95311,1682],[358616,95174,1682],[358640,95034,1692],[358654,94893,1722],[358659,94752,1722],[358654,94611,1732],[358640,94470,1732],[358616,94330,1732],[358582,94193,1732],[358539,94058,1742],[358487,93927,1742],[358427,93799,1742],[358357,93675,1752],[358280,93557,1752],[358194,93444,1772],[358101,93338,1772],[358001,93238,1772],[357895,93145,1782],[357782,93059,1782],[357664,92982,1772],[357540,92912,1782],[357412,92852,1782],[357281,92800,1782],[357146,92757,1782],[357009,92723,1782],[356869,92699,1782],[356728,92685,1782],[356587,92680,1782],[356305,92699,1782],[356446,92685,1782],[356165,92723,1782],[356028,92757,1782],[355893,92800,1782],[355762,92852,1782],[355634,92912,1782],[355510,92982,1782],[355392,93059,1792],[355279,93145,1772],[355173,93238,1772],[355073,93338,1772],[354980,93444,1762],[354894,93557,1752],[354817,93675,1742],[354747,93799,1742],[354687,93927,1732],[354635,94058,1722],[354592,94193,1712],[354558,94330,1712],[354534,94470,1702],[354520,94611,1692],[354515,94752,1692],[354520,94893,1682],[354534,95034,1682],[354558,95174,1672],[354592,95311,1672],[354635,95446,1662],[354687,95577,1662],[354747,95705,1662],[354817,95829,1662],[354894,95947,1652],[354980,96060,1652],[355073,96166,1642],[355173,96266,1642],[355279,96359,1642],[355392,96445,1622],[355510,96522,1622],[355634,96592,1622],[355762,96652,1602],[355893,96704,1602],[356028,96747,1602],[356165,96781,1602],[356305,96805,1592],[276578,65311,484],[277506,65264,352],[276236,65983,332],[276535,64978,500],[276520,65098,5037],[276181,65126,465],[276732,63964,372],[275479,64710,372],[222828,114271,642],[223074,114299,5308],[223200,114419,412],[221600,114351,506],[221899,114944,549],[221192,114020,362],[222117,113525,7388],[222164,113773,523],[221716,113951,524],[222697,114161,5184],[222707,114122,612],[222251,113384,438],[221398,113928,432],[222237,114179,7785],[222011,114169,626],[222282,113709,5066],[222394,113935,1438],[222288,114870,568],[221989,115237,402],[222653,113792,481],[222287,113653,508],[222481,114002,7262],[222511,114034,588],[222331,114407,704],[222466,114715,5706],[221521,113988,5575],[222415,113219,362],[222427,114639,564],[401966,79855,1304],[401882,79501,789],[402238,79381,1254],[403351,82639,802],[401687,81443,792],[402358,80509,772],[403220,80109,772],[404547,80975,802],[401739,79957,1155],[402290,80047,765],[401868,79050,802],[401343,79780,812],[393061,83483,1307],[393484,83814,892],[389725,81166,822],[392893,82477,817],[392986,83156,869],[392503,82974,820],[393323,82595,857],[394078,82973,852],[393458,83626,838],[391575,82348,979],[393404,82962,1315],[391438,81367,871],[391085,81885,842],[393687,82784,1303],[391986,82494,828],[392373,81982,823],[391888,81515,1259],[391553,82018,1275],[391945,82180,828],[390319,80324,802],[391477,81695,799],[358916,33479,684],[359821,33303,592],[358289,33668,652],[358322,32795,740],[358363,33117,729],[357944,32179,692],[358195,32436,7567],[358275,32449,728],[359345,33148,723],[359511,32841,7920],[359566,32878,7146],[358349,32822,8992],[358494,32470,7265],[358668,32855,779],[358354,32922,779],[359652,32801,651],[359469,32642,3818],[359334,32224,766],[358839,32836,787],[358913,32960,1170],[358771,32873,7977],[358642,33325,780],[358877,33150,734],[358421,33097,7811],[359164,33088,7642],[358722,33011,8560],[359209,32105,732],[359400,31843,642],[358381,32477,750],[359285,33167,743],[359479,33250,8061],[359253,32742,6689],[358952,32719,811],[359254,32454,726],[359667,33148,735],[359201,32857,7315],[359153,32824,2797],[358229,32121,679],[358785,32461,732],[358858,32555,7040],[358636,32199,5536],[358576,32071,6456],[358738,32111,728],[359300,32797,749],[359310,32699,755],[358696,32372,761],[359413,32604,4624],[331793,54550,405],[332738,54284,272],[331318,54711,282],[331256,53602,360],[330904,53352,232],[331657,53530,399],[332050,53453,406],[331657,53768,5723],[331713,53883,540],[332017,53052,6396],[332004,53106,396],[332395,53374,365],[332323,52920,4672],[332323,52920,252],[404406,31622,921],[404620,31530,5163],[404725,31724,2401],[404591,31412,937],[404683,31190,914],[404699,31360,6593],[404842,31229,950],[405089,31112,1623],[404821,31660,961],[404427,31165,920],[405070,32441,968],[405601,32325,862],[404168,32743,812],[404732,31554,909],[404959,31073,5037],[405313,31882,1608],[404774,31880,907],[403757,31323,832],[404362,32528,956],[405190,30907,1652],[405363,31844,1659],[405302,32161,924],[404773,31727,1667],[405190,30907,872],[392622,24984,746],[392956,25106,662],[392538,25049,5101],[391361,24344,5696],[391415,24657,817],[391148,23986,682],[392290,24648,834],[392580,24650,778],[392475,24885,6148],[391727,25243,751],[391779,24997,3579],[391952,25297,800],[391447,24794,4111],[391634,25180,5586],[391484,25470,1192],[391976,24804,802],[391811,24734,3300],[392035,24775,4504],[392332,25085,3732],[392014,25262,4454],[392604,23657,712],[392072,24437,767],[391440,24192,780],[391592,25349,6084],[391685,24519,791],[392160,25103,770],[392142,24805,1073],[392269,25090,812],[391636,24554,765],[391663,24941,804],[392628,24755,3990],[392891,24906,4330],[392563,24617,5052],[392556,24541,816],[392401,24472,3157],[392533,24290,767],[392687,24125,3572],[392840,24856,782],[391685,24910,784],[392377,24954,3165],[392535,24992,782],[392580,24047,825],[392134,24686,3106],[392086,24739,3778],[391484,25470,652],[284462,74566,2446],[285172,74327,382],[283876,75077,1622],[284014,73348,3061],[284030,73401,8379],[283548,73531,3052],[284408,74241,2304],[284445,74233,7263],[284596,74375,657],[283587,73615,2392],[283998,73682,7425],[283681,74122,2389],[284268,74163,10202],[284259,74445,4379],[284532,73440,1454],[284422,73030,2732],[284035,73687,2738],[284802,73994,637],[284837,74307,551],[284308,73562,2181],[284309,73259,2738],[284137,74685,2329],[284338,73872,2029],[284575,74067,911],[284544,73745,1076],[283175,73865,5242],[283242,73888,2088],[283763,74774,2323],[284422,73030,352],[283876,75077,392],[283175,73865,342],[338571,81703,563],[339054,81664,540],[338745,81449,3472],[339012,81332,556],[338480,81023,553],[338241,81170,3434],[338069,81435,526],[301147,65257,953],[302005,65296,382],[300673,65955,372],[301353,63982,5852],[301161,64503,8408],[301199,64061,5912],[300972,64197,485],[300891,64220,6292],[301045,64140,5912],[301010,64970,5551],[300634,64518,7270],[300639,64963,577],[301115,64943,1076],[300584,64380,6292],[300737,64300,6292],[300277,64541,6282],[300430,64460,6292],[301216,64863,8516],[301523,64962,6535],[301515,65120,584],[301472,64775,615],[301843,65026,559],[299977,64688,342],[300144,64686,399],[301353,63982,382],[371964,30297,406],[373210,29990,452],[371725,30357,432],[372777,29639,3540],[372974,29413,537],[372997,29537,564],[372658,29465,5292],[372746,29184,577],[372885,29230,6325],[373059,29357,7447],[373015,29735,512],[373001,29276,8298],[371903,28994,6599],[371794,28944,8136],[371794,28934,536],[372349,29055,6137],[372294,29090,6877],[372344,28947,596],[372154,29106,6222],[372204,29181,535],[371759,29136,561],[372869,28520,492],[372578,28828,593],[372058,29032,575],[371423,28881,482],[372927,29052,545],[372601,29427,6108],[372557,29602,6599],[372439,29540,4547],[372424,29777,2032],[372292,29862,503],[372319,29401,595],[372821,29866,6750],[372254,30146,6652],[372627,29587,5742],[372630,29467,546],[372670,29784,525],[372560,29736,2747],[372612,29688,2062],[372554,29287,589],[372522,29646,775],[372471,29701,1436],[372721,29648,585],[372505,29711,7227],[372585,29126,552],[372871,29794,6113],[372978,29795,4636],[203238,113068,1401],[203383,112990,4932],[202163,113846,4622],[202311,113227,5919],[202126,113106,5576],[202433,113162,1457],[201865,112353,1345],[202063,112269,5242],[202163,112575,1414],[203096,113052,5231],[203233,112831,1351],[202676,112721,5436],[202534,112533,1419],[202663,112546,1346],[202563,111863,1294],[202521,111762,1232],[202864,112331,4982],[202732,113063,6849],[202826,112753,6810],[202974,112783,5308],[203119,112749,5191],[202949,112424,1279],[202759,112472,5254],[202820,112511,1468],[203002,112751,1381],[203048,113091,1356],[202760,113217,1399],[202883,113120,1417],[202586,112979,6400],[202375,113329,1404],[202532,113376,6216],[202184,112270,1377],[202318,113503,1432],[202047,112861,1582],[202526,112293,1376],[202351,112478,5371],[202433,112224,5260],[202280,112655,1409],[201968,113236,1453],[201302,112618,1332],[202505,113069,3899],[202002,113408,5648],[202614,112201,1333],[202266,112301,1908],[202214,112062,1298],[202469,112024,5108],[203316,112992,1277],[201935,113387,1423],[202546,112937,4626],[203383,112990,1272],[202163,113846,1412],[258306,188700,1002],[258262,188701,1002],[258391,188133,1163],[258351,188695,1012],[258394,188688,1012],[258438,188677,1012],[258480,188664,1012],[258521,188648,1002],[258561,188629,1002],[258600,188607,1002],[258637,188582,1002],[258673,188556,1012],[258706,188526,1012],[258737,188495,1012],[258767,188462,1002],[258793,188426,1012],[258818,188389,1002],[258840,188350,1002],[258859,188310,1002],[258875,188269,1002],[258888,188227,1002],[258899,188183,1002],[258906,188140,1002],[258911,188095,1002],[258216,188699,1002],[258912,188051,1002],[258910,188005,1002],[258906,187960,1002],[258898,187915,1002],[258886,187871,1002],[258872,187827,1002],[258855,187785,1002],[258835,187744,1002],[258812,187704,1002],[258786,187666,1002],[258758,187631,992],[258727,187597,992],[258694,187565,992],[258659,187536,992],[258622,187509,982],[258583,187486,982],[258542,187464,982],[258500,187446,982],[258457,187431,982],[258413,187419,972],[258368,187410,972],[258171,188695,1002],[258323,187404,972],[258277,187401,972],[258232,187402,972],[258186,187405,972],[258141,187412,972],[258096,187422,972],[258052,187436,972],[258010,187452,972],[257968,187471,972],[257928,187493,972],[257890,187518,972],[257853,187546,972],[257819,187576,972],[257787,187608,972],[257757,187642,982],[257729,187679,982],[257704,187717,982],[257811,188239,1158],[257682,187757,982],[257663,187799,982],[257647,187841,982],[257633,187885,982],[257623,187930,982],[257616,187975,982],[257613,188021,982],[257612,188066,982],[257615,188112,982],[257621,188157,982],[257630,188202,982],[257996,188644,1012],[257657,188289,1002],[257675,188331,1002],[257697,188372,1002],[257720,188411,1002],[257747,188448,1002],[257776,188483,1002],[257808,188516,1002],[257842,188547,1002],[257877,188575,1002],[257915,188601,1012],[257955,188624,1012],[258038,188661,1012],[258082,188675,1012],[258126,188687,1012],[257642,188246,982],[372016,77661,3246],[372173,78021,4751],[371902,78252,579],[371770,77244,585],[371862,78102,6654],[406323,79159,764],[414749,85128,772],[412640,83511,1377],[412589,83152,1330],[413062,83393,1426],[410196,81840,798],[411217,89217,1416],[411175,88886,1430],[411541,89165,772],[410693,89660,1404],[410949,89624,1411],[410944,89954,716],[410905,89306,1385],[410970,89340,5938],[414698,86145,710],[414732,86275,5718],[414414,86555,688],[409250,81165,5860],[407381,79674,1335],[406809,79421,935],[407339,79345,1367],[414953,85698,709],[415973,85008,662],[411541,88833,1394],[411500,88516,1407],[413823,87026,721],[409870,81554,1268],[414093,86266,1382],[415289,85305,748],[415286,84953,1360],[409537,80939,1390],[409498,80630,1403],[409745,80865,791],[411050,82063,1323],[411088,82395,1228],[410609,82107,831],[409579,81298,1307],[409251,81049,1314],[404985,78171,758],[405662,78578,5731],[406232,78486,741],[405914,78281,1303],[405524,78009,798],[405609,78384,1306],[402259,76252,1249],[402222,75915,1364],[411100,88946,4808],[411226,89560,908],[411492,82310,1273],[414435,84147,716],[414094,86608,742],[411849,82694,5607],[412064,82910,1329],[415327,85623,688],[403260,76968,809],[403797,77191,1326],[404721,77958,1218],[403164,76288,719],[413548,87092,1386],[413769,86335,1253],[413824,86678,1394],[411931,88774,1202],[412296,88332,1366],[414226,85953,3859],[414374,85909,1327],[407977,80234,1267],[406318,78837,1297],[405292,78135,1348],[404684,77632,1326],[414527,84470,1412],[414193,84533,1324],[414159,84220,1431],[412020,82552,1380],[405959,78603,1338],[414659,85473,1414],[414663,85783,883],[414963,85388,1428],[414539,84795,964],[410531,81459,933],[411403,81948,709],[409118,80337,762],[408879,80764,1348],[408840,80429,1427],[407850,79572,722],[410603,81800,1322],[409829,81230,1299],[412502,82801,746],[412251,87972,1394],[410166,81488,1032],[403753,76849,1344],[402731,76105,1366],[403254,76646,1335],[411892,88435,1273],[418886,92999,1034],[420200,92831,1055],[419169,93205,1028],[425511,88240,1521],[424658,88474,1503],[424550,87779,1277],[424524,87465,1505],[424903,87017,1235],[426073,87698,1505],[426679,87865,932],[426607,88009,922],[425833,88144,1203],[426437,88281,922],[426339,88409,922],[426526,88148,922],[426741,87717,932],[426156,85954,1412],[425616,86455,1293],[426305,85638,4122],[426898,86466,1169],[426625,86902,1392],[426523,86230,1204],[423917,88045,4116],[423077,88962,1136],[422826,89071,1190],[420463,92023,1145],[420516,92357,1279],[420062,91805,1025],[422109,89778,4125],[421175,90758,1025],[416811,94978,4117],[415019,96748,4117],[413770,97981,4100],[418769,93090,4124],[420821,91564,1079],[420584,91355,4132],[420773,91206,1077],[417866,94683,1044],[418692,94122,1068],[417924,95020,1226],[416013,95878,1042],[415894,95903,4108],[422735,89183,4110],[422250,89666,1061],[426445,85557,1360],[426663,87260,1250],[426795,87565,932],[414207,97590,4121],[424146,87930,1341],[414054,97959,1249],[414087,98322,1041],[416482,95402,4123],[416312,95769,1020],[415729,96286,1027],[422337,90310,1093],[422669,90216,1204],[422410,90653,1476],[422045,90799,1268],[422506,91326,1582],[421939,90124,1032],[422293,89982,1072],[416642,95347,1034],[417009,94929,1046],[417543,95489,1118],[415538,97348,1060],[415188,97068,1223],[414645,97187,4114],[414538,97910,1233],[421382,92102,1436],[421783,91586,1589],[421639,90628,1332],[422868,89427,1125],[423965,89743,1582],[424752,89121,1622],[424784,89456,1446],[422572,89539,1082],[423240,89972,1549],[423770,88367,1415],[423800,88709,1199],[415135,96745,1067],[414491,97599,1148],[426823,85819,1336],[426483,85886,1276],[425977,87022,1410],[426280,86966,1257],[426974,86864,972],[425659,86795,1275],[425472,86584,4125],[425936,86702,1429],[421226,91070,1157],[420426,91701,1226],[414863,97158,1123],[424190,88261,1334],[424398,89921,1161],[424033,90393,1328],[414957,97827,1186],[427020,85840,1002],[414435,98555,932],[422790,90865,1699],[418601,93447,1041],[418934,93357,1045],[425887,88478,1347],[425322,86914,1330],[425816,87823,1567],[425362,87272,1232],[425699,87122,1210],[425423,87590,1494],[424943,87347,1183],[419574,93755,1278],[421013,92883,1326],[425130,88698,1296],[423598,90164,1373],[423652,90522,1457],[423104,91094,1335],[417777,94036,991],[423080,90774,1597],[423029,90439,1504],[419216,93549,1055],[426838,87410,932],[423338,90986,1017],[426166,88669,922],[422145,91477,1417],[421841,92269,1113],[421810,91946,1274],[423310,90648,1263],[419603,94100,1041],[425536,88598,1212],[425168,89041,1187],[420973,92550,1384],[419083,94312,1360],[417969,95363,1223],[415222,97388,1097],[415277,97743,1208],[419290,93908,1433],[419309,94227,1106],[418228,93883,1023],[421688,90941,1436],[425196,89372,958],[421723,91273,1314],[420914,92237,1134],[420869,91905,1126],[245768,99484,471],[246666,99141,392],[245447,99958,412],[245131,98838,497],[244621,98695,362],[245763,98820,747],[246160,98696,603],[246154,98819,7036],[246328,99088,462],[246036,98955,598],[246069,99274,471],[245849,97892,352],[245493,98628,534],[245530,98743,4575],[245469,99090,597],[245768,99173,1050],[389900,81946,1235],[392120,83508,818],[388959,81299,822],[389391,81115,840],[390186,79558,802],[394297,83156,981],[389434,81446,834],[391143,82231,1010],[391208,82569,1289],[390792,82401,888],[394844,82840,822],[393617,84581,862],[390215,82097,954],[390743,82059,841],[392077,83176,824],[392030,82828,818],[393083,83810,1011],[389051,81287,1179],[391653,83024,814],[391609,82689,824],[389825,81603,816],[403124,88900,759],[403090,90362,815],[401859,89775,812],[403751,90915,5816],[403644,91026,7373],[403588,90562,4176],[404718,91806,782],[405450,89958,767],[405527,90290,1245],[405040,90404,793],[404228,91358,783],[404180,91102,6717],[404187,91021,824],[404155,90705,974],[404647,90869,785],[404719,91229,1118],[404015,90794,4971],[403681,90469,909],[405903,89821,1222],[406137,89809,792],[405154,91074,1144],[403881,88678,908],[403912,89000,732],[405112,90746,1178],[404050,90002,807],[403582,89793,768],[404012,89673,883],[403278,87778,822],[405404,89615,764],[405537,90609,779],[344126,36413,1504],[343680,36349,1506],[344054,36035,1342],[343277,36537,1522],[342773,37263,1502],[342597,36361,1402],[343161,36243,1426],[343491,36283,4942],[343439,36471,3874],[343676,36491,1475],[344100,36831,1549],[344304,36909,1362],[384794,37380,362],[384972,37459,511],[384540,38549,292],[384109,37139,252],[385000,37093,375],[384899,37227,2120],[384712,37213,366],[385912,38128,322],[385131,37203,375],[385483,36720,262],[393207,84820,856],[391746,83725,822],[394708,81825,841],[395118,82028,828],[394783,82152,1286],[394064,81467,831],[394011,85457,868],[393624,84621,1318],[394321,85303,1355],[388417,79509,788],[387532,79522,791],[387925,79038,849],[383284,84555,766],[384083,84302,784],[382998,84850,782],[388279,78477,780],[388518,78269,4539],[388623,78285,759],[391268,83259,848],[390920,90681,862],[384474,83840,815],[389153,79097,1248],[389077,78768,785],[389459,78594,1258],[386255,80580,818],[384701,82693,758],[390019,78872,790],[389516,79260,812],[387877,78680,836],[387838,79014,6070],[395195,82368,1282],[394799,82503,859],[394507,84842,798],[392268,80958,1249],[388595,80838,815],[388673,81189,1280],[386034,81083,816],[386085,81410,914],[386287,80829,4858],[386292,80899,769],[386078,80999,5900],[386526,80438,766],[387712,80876,796],[385139,82852,758],[389523,82126,824],[386082,81304,5380],[384320,83381,5838],[384700,83267,5075],[384535,83545,2229],[384364,83710,5843],[384041,83967,801],[383893,84148,4693],[388580,77953,768],[389377,78225,792],[384743,83011,768],[388684,81516,822],[389537,77070,774],[394708,83991,944],[394787,84667,792],[394057,85801,874],[390647,78556,866],[388850,79953,835],[388551,80509,814],[388541,80203,1237],[392169,83852,851],[392669,83987,1249],[391698,83367,820],[389104,81644,1267],[388054,80028,811],[394469,81994,1281],[392584,80120,840],[392719,81132,847],[392197,80631,855],[395620,82559,794],[395058,84503,796],[394567,85178,1011],[389508,81772,1257],[393196,84489,1328],[390869,82764,1287],[389938,82263,1175],[389971,78514,779],[390251,78369,780],[391707,80159,1234],[392182,80309,1249],[391718,80472,807],[394177,82148,1157],[393844,81968,833],[391540,79145,781],[392092,79632,1249],[391251,79987,811],[392538,79775,838],[389666,78033,799],[389842,77551,770],[390195,77702,1233],[390598,78193,849],[391061,78331,1228],[389964,78209,1253],[391495,78802,782],[391997,78951,1164],[392107,79979,813],[390215,78053,856],[390579,77862,1213],[392020,79280,897],[392493,79443,831],[391483,78482,1223],[388178,80714,1272],[389758,78713,829],[388757,79273,786],[388834,79620,1235],[389174,79423,933],[393520,81769,830],[393189,81595,830],[393798,81611,837],[394478,82325,809],[389797,77193,786],[336935,93050,726],[337321,92968,663],[337085,92697,3503],[337270,92609,617],[337033,92381,3362],[337227,92291,605],[336632,92478,3248],[336487,92812,582],[395527,71699,725],[393356,70164,882],[394143,71445,753],[393497,72730,763],[393277,71053,786],[392586,74716,822],[392571,74394,1213],[393079,74050,783],[396377,78079,789],[397525,79046,1152],[397790,79262,782],[393391,76415,773],[393313,74978,782],[394354,76300,764],[396033,72240,734],[395871,72203,4654],[396708,72984,938],[396512,73121,5873],[396491,73114,773],[391691,73411,790],[391612,73446,6032],[399565,77247,1028],[399030,76719,1220],[399205,76440,782],[397919,78250,772],[396873,78293,1281],[397701,78588,780],[399040,77022,777],[398662,77493,909],[397294,73082,753],[396940,72843,767],[396820,72637,6335],[393419,70515,3783],[393321,70772,6031],[392119,73535,784],[397377,73395,5861],[397336,73399,738],[394599,73168,762],[395616,72375,725],[396741,73335,745],[397744,73606,723],[396777,72943,5153],[392029,72862,771],[391935,73214,4601],[391888,72857,4615],[391891,72566,5207],[393637,70955,6011],[393640,70911,761],[396724,72696,1702],[397703,73278,756],[391980,72501,754],[392227,72030,751],[400110,74900,834],[395037,71517,734],[392723,71370,764],[393979,73276,1132],[392992,73403,766],[392074,73177,813],[392774,73880,842],[393573,73104,1135],[393324,73608,804],[394000,73618,793],[394928,77182,1098],[399999,77094,782],[392493,74038,775],[392253,74532,813],[391481,75276,770],[391598,75937,1187],[392894,77062,777],[392114,76431,1111],[392538,76566,1034],[394431,76658,1188],[391978,75421,1080],[392005,75769,816],[393720,76604,795],[393437,76755,776],[392855,76744,828],[399083,77354,778],[399596,77558,873],[397475,78725,1036],[393589,73404,789],[394450,77003,808],[393792,76953,1157],[393856,77620,818],[394954,77535,814],[392323,74879,1155],[393304,73264,1161],[393558,77448,1204],[393814,77289,834],[393484,77091,824],[392484,76241,870],[392342,75212,802],[393248,77273,1188],[397229,78484,1170],[397411,78389,755],[393067,73751,1177],[399647,77890,974],[399130,77699,796],[383557,83744,724],[385701,80568,1352],[385938,80379,753],[388102,77151,752],[388444,76926,767],[387737,77681,728],[387636,77981,5151],[388375,76260,1036],[383542,83419,1114],[383499,83076,1146],[384285,82184,1230],[387348,78170,720],[387305,77512,1358],[386995,78726,909],[386694,79224,748],[382760,84433,1159],[382671,84619,782],[384204,81810,798],[384564,81378,1281],[386694,78899,1350],[386366,79092,1045],[386651,78570,1362],[386436,79446,1373],[385610,79870,1365],[385661,80230,1415],[386204,79920,1331],[388053,76488,1313],[386986,78406,1383],[387682,77044,1142],[387732,77361,1256],[388093,76822,1246],[213699,104548,650],[213478,104504,622],[213858,104221,8065],[213395,104563,9221],[213521,104820,601],[213164,104677,562],[214577,105436,9640],[215127,105110,3122],[213929,105898,532],[214663,105296,5684],[214863,105188,4691],[214329,105355,2479],[214076,105339,8476],[214326,105263,9349],[213855,104584,786],[214356,103886,532],[213568,105150,612],[213633,104937,644],[214005,105220,641],[214792,104887,636],[213322,104752,8707],[214337,105473,627],[214107,105652,8524],[214031,105563,630],[214260,105010,681],[214337,105027,739],[214464,105375,3836],[213527,104890,9001],[214486,105186,7260],[214444,105174,7769],[214432,105082,8309],[214641,105087,3574],[214481,105340,4653],[214530,105332,5412],[214699,105082,753],[214716,105103,4242],[214553,105301,6208],[214647,105253,898],[215127,105110,492],[282059,85531,922],[281109,86780,602],[282073,85467,752],[282162,86241,1026],[281929,86339,980],[281908,86261,5187],[282278,87215,828],[282143,86971,7080],[282243,86890,948],[282009,87015,846],[281854,86569,3910],[282436,87760,622],[283370,86470,762],[281876,86016,859],[282107,85891,916],[281981,85964,6716],[281974,86674,991],[282244,86586,1503],[282493,86434,1033],[269192,177392,894],[268952,177841,892],[268906,177839,892],[268996,177840,892],[269041,177835,892],[269084,177828,892],[269128,177817,892],[269170,177804,882],[269211,177788,882],[269251,177769,882],[269290,177747,872],[268988,177071,3897],[269146,177049,908],[269363,177696,862],[269327,177722,872],[269396,177666,872],[269427,177635,872],[269457,177602,872],[269483,177566,862],[269508,177529,852],[269530,177490,862],[269549,177450,862],[269565,177409,852],[269578,177367,852],[269589,177323,852],[269596,177280,852],[268861,177835,892],[269602,177191,842],[269601,177235,852],[269600,177145,852],[269596,177100,852],[269588,177055,852],[269097,176699,879],[268741,176882,901],[269562,176967,852],[269545,176925,852],[269525,176884,852],[269502,176844,802],[269476,176806,802],[269448,176771,802],[269417,176737,802],[269384,176705,802],[269349,176676,812],[269312,176649,812],[269273,176626,812],[269232,176604,802],[269190,176586,802],[269147,176571,802],[269103,176559,792],[269058,176550,802],[269013,176544,802],[268876,176545,832],[268967,176541,812],[268922,176542,832],[268816,177827,892],[268786,176562,822],[268831,176552,822],[268742,176576,812],[268700,176592,812],[268658,176611,822],[268618,176633,822],[268580,176658,832],[268646,177302,3266],[268509,176716,832],[268477,176748,822],[268447,176782,832],[268419,176819,832],[268436,177056,873],[268394,176857,842],[268372,176897,842],[268353,176939,842],[268323,177025,842],[268337,176981,842],[268313,177070,842],[268306,177115,852],[268303,177161,872],[268483,177374,941],[268302,177206,872],[268305,177252,872],[268311,177297,872],[268320,177342,872],[268332,177386,892],[268387,177512,892],[268410,177551,892],[268437,177588,892],[268466,177623,892],[268498,177656,892],[268532,177687,892],[268567,177715,892],[268605,177741,892],[268645,177764,892],[268686,177784,892],[268728,177801,892],[268772,177815,892],[269576,177011,852],[268543,176686,832],[268365,177471,892],[268347,177429,892],[399065,84478,832],[401982,86427,822],[401064,86596,772],[398128,85214,1304],[397490,84708,842],[398428,85375,832],[397119,86969,1229],[399014,88338,1107],[396245,86461,842],[399295,88189,750],[400042,89159,812],[400119,88573,753],[401287,86846,736],[400930,87639,870],[397151,86307,842],[397854,85695,1311],[397644,85614,842],[399229,85369,802],[398582,86281,792],[401371,87166,1327],[398140,85539,860],[398177,85853,809],[397730,85012,838],[397579,87145,811],[399888,88253,772],[401700,86667,1283],[400540,88139,1171],[400077,88250,767],[398453,87885,899],[360745,106830,914],[370767,95342,798],[371960,97073,1014],[363397,106192,861],[365848,103777,839],[363828,105856,826],[369468,100279,780],[369515,100607,838],[369785,100262,1126],[363140,107192,953],[364301,105518,965],[369810,100627,837],[368385,101448,1250],[368397,101815,731],[367956,101806,1033],[369272,100886,1227],[368963,100842,1096],[362309,107151,966],[362394,107827,909],[362064,107469,1026],[369558,100927,853],[365678,104122,1086],[365896,104137,845],[367104,102805,936],[367136,103147,762],[366441,103491,1056],[368665,101151,787],[368992,101210,822],[365460,104784,1039],[365936,104480,779],[365111,105141,775],[368032,102461,887],[370167,100310,1196],[372713,97751,1067],[372137,98429,988],[371699,98731,805],[372438,97741,989],[372469,98063,812],[371910,96731,951],[371384,96371,768],[371209,98714,768],[370868,99366,809],[370496,99703,1134],[366190,104131,972],[366470,103829,831],[368719,101459,967],[363092,106874,874],[360786,107151,883],[367974,102130,691],[367541,102455,1112],[364685,105128,841],[366143,103773,988],[370110,99998,982],[362853,107189,818],[363058,106532,1025],[210199,122073,5755],[210118,122142,5683],[210094,122011,822],[210302,121824,1252],[210332,121958,4626],[210264,121948,3955],[210623,120937,402],[210101,121391,6934],[209869,121533,645],[210451,122563,864],[211422,122158,452],[210200,122974,492],[210462,121183,6373],[211296,122109,512],[210402,122205,6114],[210310,122150,1215],[210415,121984,5234],[211335,122111,5339],[210851,121699,4802],[210888,121358,525],[210204,121436,694],[210491,121233,648],[210665,121314,678],[210652,121633,3022],[210465,121569,5654],[210810,121379,4854],[210937,122029,5369],[210855,121922,831],[210475,121629,906],[210354,121764,2871],[210250,121727,2204],[210470,121913,5060],[210360,122468,6224],[210628,122192,6723],[210073,121884,2627],[209951,121902,5490],[210145,122341,696],[210171,122352,5775],[210196,122686,588],[210145,122180,3352],[209478,121842,597],[210194,122174,4050],[209811,121802,707],[210043,121822,5259],[210142,121731,786],[210142,121891,3367],[209394,121742,452],[210779,122044,3566],[210614,121652,2251],[210558,122008,6599],[210469,121982,5943],[210414,121768,3541],[401742,78282,792],[401565,80726,903],[400919,81569,812],[401590,80635,802],[402662,79286,1265],[403695,80027,1229],[404765,81454,787],[405315,80849,792],[403477,83407,832],[404708,80784,1237],[405122,80984,1233],[401791,80294,1264],[401178,80160,819],[401468,80045,795],[400575,79906,812],[401551,80415,1292],[402159,79039,796],[404211,80559,856],[402118,78722,805],[398222,86213,771],[397484,86169,1292],[397859,86004,807],[367571,74496,596],[367724,73938,3732],[367952,74137,564],[367742,74244,3412],[216549,118545,502],[216624,118345,551],[217042,118167,630],[216112,118437,530],[216271,118087,8264],[216244,118431,562],[215895,118165,561],[216332,117629,614],[216089,117800,6307],[216006,117511,5712],[216475,117515,7306],[216466,117858,681],[216517,117875,7196],[216701,117910,606],[216340,117878,4694],[216881,117646,516],[217370,118275,422],[216259,118063,627],[216348,117990,2963],[216824,118004,5344],[216159,118799,495],[216486,118597,848],[216126,119072,442],[215934,117820,567],[216456,117195,537],[216411,117534,538],[216808,117462,538],[215331,117856,382],[215817,118419,6261],[215975,117450,532],[216567,117047,372],[215931,118546,551],[216099,118552,5013],[402764,87662,1245],[401092,89905,832],[403148,87011,822],[402020,89363,767],[401676,89522,1230],[403316,91148,6179],[403695,91365,7450],[403469,91460,7767],[404247,87846,787],[405784,89149,789],[403652,91695,6238],[404848,92573,772],[406904,89679,782],[402437,90688,4175],[402846,90486,784],[402628,90912,1211],[403879,91581,6368],[404285,91671,998],[404196,91772,5694],[403864,91225,6816],[402972,90588,6693],[403087,91226,7133],[404263,92125,5980],[403805,91477,770],[401271,89998,1262],[403142,90823,4325],[404344,92030,1155],[402512,90261,786],[402159,90360,855],[401753,90166,1106],[406235,89384,1245],[406499,89602,801],[402984,87584,1241],[402992,87898,780],[402568,88131,1252],[403253,87095,1167],[403274,87452,798],[402581,88487,764],[401685,89837,760],[402799,88007,1094],[313061,45423,662],[313690,46863,632],[313067,47103,722],[311994,46696,706],[312248,47460,582],[311687,46024,612],[271247,68827,1167],[271725,68603,322],[270328,69414,312],[270242,68456,453],[269612,68124,382],[270159,67810,512],[270269,68180,1319],[271537,68627,372],[270732,68305,595],[270811,68951,487],[271096,68100,436],[271203,68505,1143],[270679,67958,520],[270628,67611,450],[270962,67321,372],[293999,55898,480],[295381,55550,342],[294017,56283,332],[293305,54920,392],[294624,54209,422],[300527,52414,554],[300866,52327,550],[300012,53061,442],[299761,51879,560],[300144,52142,612],[300390,51371,579],[300123,52001,5213],[300485,52058,619],[300845,51718,1346],[299312,51705,462],[300829,51998,642],[300489,52253,5062],[301369,52331,422],[300590,51024,492],[367050,91544,962],[366965,92249,962],[366339,86663,962],[366578,87332,952],[364959,84186,942],[365365,84770,952],[362979,82156,952],[363524,82614,952],[360538,80715,952],[361183,81014,952],[357804,79962,952],[358505,80082,962],[354839,79992,942],[355578,79907,952],[351997,80834,962],[352684,80550,952],[349495,82426,952],[350078,81963,952],[348849,98514,994],[351234,101610,982],[346028,93837,952],[346072,93977,952],[343852,94242,952],[345986,93697,962],[345946,93556,952],[345907,93415,962],[345870,93273,962],[345835,93131,962],[343601,93452,872],[345801,92988,932],[346284,93925,962],[344919,96485,952],[344156,95014,962],[344512,95763,952],[345374,97178,952],[345876,97839,952],[346421,98463,962],[357004,102151,1042],[348295,100094,982],[348989,100547,982],[349713,100953,982],[350462,101307,982],[352025,101859,992],[352831,102054,992],[353649,102193,992],[354487,102271,1002],[355328,102291,1032],[356168,102251,1052],[345746,90981,952],[345743,90238,952],[345881,92259,962],[345820,91835,962],[347634,99593,972],[346160,93515,962],[346051,93100,962],[345958,92681,962],[345775,91409,952],[345791,89496,952],[345891,88759,952],[346042,88031,962],[346243,87315,962],[346493,86615,962],[346792,85934,962],[347137,85276,962],[347527,84643,962],[347960,84038,962],[348434,83466,962],[348946,82927,952],[350691,81543,962],[351331,81166,962],[353389,80314,942],[354108,80128,942],[356321,79874,952],[357064,79892,952],[359196,80248,962],[359874,80459,962],[361806,81355,962],[362406,81736,962],[364036,83106,942],[364516,83631,952],[365731,85379,932],[366056,86011,962],[366772,88016,952],[366921,88711,962],[367024,89415,962],[367079,90123,962],[367088,90834,962],[366833,92948,962],[366621,93762,982],[366353,94560,982],[366029,95336,982],[365651,96088,992],[365221,96811,992],[364741,97502,982],[364214,98158,982],[363642,98775,992],[363028,99350,992],[362374,99880,992],[361686,100363,992],[360964,100797,982],[360214,101178,1012],[359440,101506,1022],[358643,101778,1042],[357830,101994,1042],[347008,99049,962],[380704,89760,1836],[380973,89692,770],[381034,90037,989],[383485,88050,841],[382694,86537,788],[383002,86453,802],[383004,86233,5753],[387775,89848,829],[388171,90319,835],[387853,90164,1336],[388771,92152,836],[393310,89028,873],[392922,89232,1415],[392852,88913,1034],[391537,90288,887],[391930,90452,1883],[391579,90625,848],[396959,91642,2711],[397445,91799,2873],[397815,92343,1001],[402725,96911,8852],[398305,92520,1002],[398443,92855,2321],[398060,92763,1242],[395722,90724,2670],[393914,89211,2102],[399088,93743,3686],[400650,94844,7398],[400800,95158,8916],[400506,94938,9801],[403847,97515,1795],[404104,97727,1382],[403685,97596,8911],[404554,97197,653],[405311,95926,680],[400322,94622,7809],[398563,90707,1959],[398453,90390,985],[398937,90243,3330],[394715,89823,2657],[394664,89482,2584],[395629,90077,2551],[401759,93099,9080],[401306,92896,9385],[401595,92797,7327],[402181,93969,6697],[402087,93642,5967],[402340,93523,3124],[405272,95215,1459],[405355,95549,2012],[404765,95402,777],[403000,92988,7860],[403157,92830,785],[403210,93185,877],[403063,97075,1086],[402179,96393,8847],[403222,95613,818],[402890,95807,6628],[402839,95471,6536],[403250,93505,836],[403002,93659,6634],[403243,93235,5571],[402107,96059,8458],[402384,96300,5188],[403131,95004,5931],[403182,95293,840],[402919,95123,8318],[405178,94890,741],[403711,95063,790],[403803,93944,912],[402592,96560,994],[403259,96342,5238],[403028,96760,1170],[403487,97311,1400],[402428,92166,6903],[403378,92888,8147],[403210,95327,6445],[402848,92687,6261],[402676,93381,2523],[403427,94831,866],[403094,94619,865],[403340,94158,903],[403471,95188,826],[403661,96509,1043],[403368,96617,1016],[403323,96285,999],[399689,92796,6030],[399148,92915,1319],[399384,92485,2315],[402722,93824,7969],[403491,93383,830],[403886,96419,756],[404424,96179,716],[404160,96642,916],[404020,95632,830],[403559,95863,822],[403515,95528,801],[405706,95098,1419],[403269,95945,877],[403336,95648,7624],[402277,95663,4878],[402130,96028,2120],[402082,95728,8724],[402622,93135,7839],[402281,93309,9325],[402202,92962,8868],[399464,90692,3049],[399213,90804,3029],[399194,90471,3377],[399402,93566,3698],[399791,93439,6269],[399841,93780,6347],[400562,91272,1943],[400515,90924,1943],[401110,91457,2999],[402530,92827,7116],[403444,93035,806],[402405,92481,5981],[401994,92311,7150],[402927,96066,1036],[406072,94659,761],[405664,94761,1450],[382572,86358,5060],[383829,88606,875],[384191,88449,853],[384235,88791,847],[401792,93425,8936],[401631,93763,6050],[401409,93555,9602],[402150,92627,8759],[403050,94257,921],[402982,94366,5008],[402713,94164,7205],[400857,93369,7651],[400179,93230,3777],[400911,93049,8995],[403047,94011,6614],[401983,95094,8513],[401425,95224,6704],[401533,94892,8851],[402359,94263,8647],[401856,94411,7990],[401913,94085,9415],[402888,94788,8501],[403096,94683,6029],[402031,95420,8573],[401663,95861,8863],[401475,95553,6809],[382705,89636,797],[380539,89085,768],[383317,88797,870],[383256,86343,809],[403550,93744,986],[403321,93903,5445],[403275,93549,5440],[402551,96239,1031],[402425,94611,8916],[400959,94055,7803],[401322,94250,7084],[401012,94380,7941],[402880,94456,9022],[383870,88920,867],[382954,86095,790],[382867,85445,783],[382309,86648,797],[398014,91653,5090],[397769,92001,997],[398316,91507,3047],[398754,91402,3341],[398625,91738,890],[403718,93268,968],[403758,93600,918],[403609,93799,5360],[384633,88332,976],[403424,94916,4995],[397967,89175,2488],[403660,92932,791],[404538,93696,768],[405050,93905,786],[404984,96354,2100],[404512,96853,703],[399829,90888,3224],[400075,91077,940],[399716,91256,955],[399882,91899,2084],[400170,91773,975],[400350,92082,2920],[400043,90746,1100],[400706,91942,2724],[400704,91597,3333],[401259,91792,4459],[397823,91312,3030],[400130,91417,1072],[399300,92251,4704],[399547,92333,1167],[400157,92871,4130],[400392,92411,2905],[400845,92698,8731],[399356,92146,2546],[399527,93898,4858],[399814,94109,5359],[399706,92683,2746],[386400,89117,820],[386844,89260,1226],[386520,89789,1266],[400032,92561,2962],[401203,95004,9461],[403409,96958,970],[403730,97191,742],[398575,93205,3526],[398825,93065,1243],[398864,93407,1150],[399863,93015,4328],[400015,93334,5883],[404021,97406,817],[404265,96962,1791],[401381,93881,8604],[400977,93715,8681],[401176,93226,6935],[404084,93476,970],[399064,91224,3300],[398720,91061,3500],[399915,91561,3185],[397987,92690,2777],[398130,91196,1004],[398880,89913,3147],[399406,90336,2898],[401369,92117,5403],[401892,91971,6334],[401623,92440,8402],[400609,94510,7447],[402401,95295,7303],[399569,93131,3709],[399171,92579,2278],[399916,92209,1986],[401118,92273,7885],[401167,92581,8012],[400044,93979,5083],[399337,93241,3385],[398256,92190,931],[398811,92382,2319],[405702,95448,689],[397743,90667,3111],[397710,90338,3267],[398195,90521,3197],[398255,90858,3401],[397088,90138,946],[397188,89809,2969],[399564,91339,3253],[399504,92018,1147],[399542,91654,2346],[399503,91009,3005],[399073,91583,2759],[403972,97064,758],[382384,90440,689],[382943,90313,2913],[382797,89994,1426],[383182,90205,809],[399071,90553,4653],[401402,94582,7580],[401197,95353,8733],[399133,90149,3116],[398559,90031,3159],[398464,89716,2413],[398094,89849,3013],[397946,89490,1597],[398912,92719,3116],[398766,92052,2295],[400099,93643,6491],[391627,91824,2709],[390375,93260,2726],[390611,92385,2445],[390315,92929,2487],[398321,91844,2497],[399163,91919,3397],[396880,90943,2891],[397325,90792,3063],[397372,91130,3091],[381469,90278,1012],[389716,92466,986],[390156,92593,862],[390111,92259,853],[396727,89937,2627],[397595,89646,2935],[396777,90271,2707],[390814,91843,849],[389196,91962,983],[383163,89887,1121],[383689,89380,1246],[383608,88371,1980],[396186,90080,849],[396342,90415,2409],[397212,90459,2088],[403598,96180,775],[383400,89472,792],[383614,89021,860],[387690,91004,1619],[388435,91670,2040],[399254,91118,3014],[401907,94762,8059],[402430,94930,8405],[397498,88974,2819],[383781,88246,872],[400469,93879,6653],[400594,94178,7845],[400212,94305,6842],[400404,93549,6361],[404940,96036,2078],[404824,95718,1032],[404050,95944,658],[380187,89173,1167],[396811,90611,2534],[399303,91786,2455],[397054,89110,2385],[387590,90665,826],[387284,90491,873],[387570,90307,1222],[387404,90821,1947],[396560,89622,862],[399622,90549,957],[392764,90426,2630],[392022,90786,2550],[392310,90309,2343],[391623,90959,847],[391407,91177,822],[391573,91487,2576],[391120,91344,857],[392711,90067,2558],[392934,89557,976],[393481,89388,2605],[392793,88555,860],[392487,89075,1249],[392068,89288,849],[388261,90998,841],[388685,91482,880],[392190,89966,1292],[393740,88854,842],[382346,90098,794],[381886,90211,789],[380587,89429,799],[391273,91652,2445],[393911,89188,2635],[394340,89322,2643],[393222,88354,891],[387912,90839,911],[391844,90138,1264],[404292,97628,951],[384058,89268,2857],[389233,92282,904],[388026,91193,1847],[386949,89969,1384],[387173,89469,1217],[386352,88758,819],[399317,91475,3251],[395937,90226,2481],[387531,89991,1265],[396441,91113,2501],[396399,90755,2575],[392590,89748,1455],[385097,88543,804],[386079,89584,1427],[385994,89267,812],[385950,88934,814],[386620,90109,2080],[381988,90864,1018],[387872,90522,937],[388765,91799,1409],[386976,90298,1139],[392141,89609,1274],[385574,89063,1160],[391794,89805,1172],[403851,96084,877],[406723,82661,792],[409308,84519,802],[408170,86102,792],[405585,84244,792],[366230,102122,634],[366199,101802,798],[365854,101782,620],[251774,80564,339],[251938,80455,352],[250654,81315,962],[251042,80377,509],[251173,80430,9281],[251135,80468,499],[251350,80299,5637],[251105,80129,5358],[251572,79994,6791],[251391,80016,439],[251531,79909,7665],[251396,80652,462],[251137,80652,5249],[251205,80558,7612],[251057,80630,4619],[250466,80638,5055],[250349,80479,6184],[250617,80520,8823],[251036,79763,452],[251102,79304,382],[251341,79653,425],[251070,79886,8845],[251423,79841,473],[250976,80299,8961],[251087,80124,472],[250649,80571,490],[250780,80245,485],[251531,80413,6041],[251730,80203,381],[250469,80358,463],[251027,79962,493],[251004,80686,3048],[251011,80664,2869],[251481,80695,421],[250558,81038,421],[250651,81063,473],[251359,80205,7289],[251374,80115,8909],[251399,80250,451],[250309,80309,507],[249917,80063,422],[251435,80337,438],[250596,80913,8845],[250866,80898,442],[250514,80705,430],[250024,80196,459],[250717,81263,8888],[250998,80833,576],[250949,80971,5665],[251590,80066,5858],[251045,80672,3784],[250988,80719,2292],[251179,80803,481],[250654,81315,382],[379540,27979,8235],[379502,27935,5560],[379549,27856,552],[378235,28031,569],[378352,28719,482],[378034,27287,512],[379078,27697,5089],[379232,27653,569],[379218,27671,9783],[379399,27636,612],[379334,27872,7995],[379167,27725,7756],[379062,27772,599],[378575,28612,6888],[378700,28487,582],[378970,28487,6044],[379545,27750,5087],[379566,27560,8174],[379666,27913,576],[378916,27444,569],[378693,27142,6277],[378874,27122,588],[379336,27894,5245],[379480,27880,9168],[378774,27096,541],[379228,27030,7398],[379187,27311,574],[379461,27172,590],[379507,27533,560],[378318,27575,6666],[378492,27801,607],[378275,27758,7144],[379025,28043,915],[378967,27992,1773],[379076,27922,8895],[379590,28190,514],[379814,28285,7473],[379834,28352,2572],[379319,28338,524],[379160,28424,7345],[379471,26881,502],[379455,28085,6124],[379376,28103,583],[378910,28004,2579],[378725,27986,603],[378964,27811,558],[379136,27803,4190],[378220,27718,6216],[378470,28239,598],[378723,28321,548],[378622,28502,6301],[379054,28212,1088],[379272,27973,547],[378588,27280,583],[378631,27607,572],[378749,27511,610],[378259,27795,583],[378258,27518,612],[378610,27468,7211],[379022,27709,5878],[379011,28303,5605],[379050,28496,504],[379655,28074,6547],[379711,28085,5724],[379421,27153,638],[379035,27707,6137],[379834,28352,452],[385920,26843,7195],[385970,26831,6463],[384791,27125,442],[385547,26596,6670],[385505,26841,521],[385453,26767,7912],[385685,25806,7627],[385787,25628,9994],[385809,25730,604],[385972,26554,568],[386037,26307,5877],[386102,26518,9085],[385239,26393,589],[385385,26478,9099],[385382,26549,6148],[385896,25286,522],[385885,25699,4801],[384883,26698,5478],[384897,26478,9501],[384993,26534,566],[385761,25606,563],[385571,25428,545],[385547,25849,593],[384838,26797,6043],[385027,26680,533],[384943,26357,8932],[385352,26958,6279],[385308,26843,9945],[384981,26332,548],[385083,26888,6520],[385217,26863,563],[385068,27012,489],[385139,26840,9447],[385126,26757,5988],[385168,26617,5492],[384451,25666,482],[384650,26374,9066],[384706,26208,583],[384936,25990,543],[385436,26606,5324],[385493,26555,890],[385259,25951,609],[385809,26821,8817],[385489,26471,7593],[385626,26578,7928],[385879,26379,6692],[385764,26671,583],[385741,26297,4087],[385663,26291,7600],[385785,26206,599],[385897,26656,527],[385314,26345,5220],[385477,26427,1188],[385368,25825,485],[385173,25838,5982],[385809,25972,559],[385576,26571,8653],[385571,26098,6687],[385692,26311,4789],[385634,26361,2651],[384666,26421,5344],[385855,26322,551],[386107,26564,4671],[385794,26301,3325],[384586,26062,6751],[385866,26228,4696],[385583,26342,3404],[385996,26040,600],[386184,26486,510],[386273,26759,3322],[385818,26289,5349],[385523,26308,610],[385501,25903,4900],[385433,26204,703],[385470,26245,5106],[384730,25719,580],[384969,27040,546],[385640,26316,5534],[386273,26759,462],[292494,140704,1213],[292674,140826,3396],[292291,140586,3789],[292941,138870,1084],[288368,137846,4447],[289690,138741,3584],[289988,139061,7001],[289498,138623,1236],[289400,138432,4403],[289421,138581,7710],[288561,137975,1442],[288840,137866,1171],[288790,138047,4393],[289115,138363,8209],[288743,138117,9015],[289170,138402,1384],[288886,138186,1222],[289469,138251,1516],[289080,138297,3629],[290671,139206,1306],[290352,139323,6511],[290296,139009,1184],[289860,138436,1523],[291084,139392,1298],[290956,139581,4443],[290732,139497,1606],[291831,140363,3851],[289122,138069,1345],[288499,137663,1164],[289364,137590,1285],[290779,137009,1465],[290743,136661,1624],[291168,136919,1133],[289766,137764,1473],[289020,137374,1218],[289332,137207,1558],[291125,139744,1218],[291556,139571,1580],[293490,140769,1142],[292876,140617,1415],[293446,140394,1222],[290275,138650,1544],[291051,139038,1470],[291302,139872,3351],[291578,139945,1211],[290591,139404,4431],[291963,139495,1354],[292047,140156,1293],[292330,139321,1484],[292192,138323,1410],[292594,138586,1253],[291318,137913,1356],[291753,137762,1634],[292104,140470,1486],[292453,140384,1223],[293526,141103,1019],[290199,139173,4744],[292905,140975,1160],[289888,138834,1187],[290217,138306,1380],[290053,138996,3120],[293081,139827,1255],[293142,140163,1473],[293412,140063,1359],[293358,139740,1219],[293691,139963,1737],[294082,140220,1641],[293789,140605,1911],[292582,138221,1759],[292867,138133,1400],[292904,138492,1248],[293753,140255,2058],[291221,137240,1262],[292139,137998,1279],[293260,141228,1136],[290401,137164,1336],[290320,136471,1503],[290354,136831,1312],[289988,136635,1330],[289673,137118,1388],[290045,136968,1483],[289809,138132,1395],[219974,101587,478],[219928,101253,489],[220257,101418,491],[220068,100867,4868],[219885,100936,496],[220093,100741,508],[220303,100924,6888],[220163,100742,491],[220218,100692,9675],[221049,101212,372],[219784,102047,402],[219713,100862,508],[219837,100600,470],[220093,100685,8205],[220113,100386,474],[220321,100531,6849],[219408,100633,447],[219348,100626,6629],[219491,100598,8902],[219750,100479,503],[220216,100032,432],[220441,100626,502],[220412,100665,5775],[220453,100809,3921],[219383,101025,477],[219597,101283,6911],[219015,100832,432],[220053,101118,532],[220060,101062,8380],[219723,101283,511],[219639,101117,473],[220205,101096,2803],[220315,101303,774],[220257,101088,3589],[219756,101375,7392],[220211,101086,492],[219584,100892,5235],[219316,100653,458],[219687,101468,465],[219857,101415,8002],[220519,100833,466],[220428,100996,495],[220488,100783,4772],[219593,100786,469],[220179,100354,8002],[220567,101193,443],[393162,69052,682],[400939,74218,573],[396713,71167,679],[393815,69067,565],[282914,61868,475],[283665,61879,402],[282286,62626,312],[282881,60563,402],[282824,61190,468],[282220,61365,476],[282656,61973,769],[281583,61285,362],[282760,61772,2512],[334028,142058,4546],[333630,142133,4412],[333987,141688,4653],[336824,137479,11285],[336668,137678,846],[333083,142544,976],[333032,142190,918],[336947,137282,784],[334776,141189,4973],[335188,140773,5049],[334789,141556,4468],[336791,137971,5721],[337035,137952,9190],[337390,137527,818],[336353,138592,7469],[336637,138627,6491],[336740,138890,3286],[335047,140187,4156],[334772,139872,884],[335318,139618,2401],[336722,138029,946],[335798,139382,3806],[335940,138928,994],[336038,139567,1189],[337386,137758,6045],[337220,138012,7950],[336784,138344,1232],[334888,140146,8482],[335125,140475,4721],[334341,141227,5003],[334257,140966,4319],[334649,141006,3541],[335723,138682,4059],[336183,138165,949],[336197,139675,3229],[334418,141927,4772],[335857,139665,4108],[335357,139107,3906],[335752,139020,3831],[337445,137845,1003],[333697,142861,3987],[335257,139398,8571],[334580,140258,3960],[335545,140448,4036],[333854,141080,3938],[335428,139850,3512],[335854,140123,3218],[333541,141481,4377],[336051,138291,3763],[334043,142428,4065],[335511,140111,4187],[333915,141386,4223],[334203,140663,4131],[317929,58519,484],[318539,58038,523],[319191,58428,362],[318119,57787,540],[318490,57689,495],[318515,57866,5871],[318354,57478,8301],[318563,57398,11348],[319004,57978,502],[317921,57420,6694],[318422,57189,5830],[318442,57351,441],[317789,57491,429],[317589,57456,6656],[318786,57396,5124],[318161,58107,525],[317577,58233,429],[317651,58411,5749],[317776,58913,362],[317531,57911,382],[317481,57547,358],[317882,58156,502],[318782,57059,5822],[317337,57516,1652],[317571,58021,5363],[318782,57059,332],[317337,57516,362],[411354,81604,665],[409407,80259,825],[406135,77833,598],[408266,79469,684],[258235,193341,1092],[258421,192757,1153],[258280,193345,1092],[258192,193333,1092],[258368,193346,1092],[258324,193347,1092],[258413,193341,1092],[258500,193323,1102],[258456,193334,1102],[258542,193310,1102],[258583,193294,1102],[258847,193019,2205],[258921,192956,1092],[258902,192996,1092],[258662,193253,1092],[258699,193228,1092],[258735,193202,1092],[258768,193172,1092],[258799,193141,1092],[258829,193108,1092],[258855,193072,1092],[258880,193035,1092],[258968,192786,1092],[258782,192737,1841],[258973,192741,1092],[258937,192915,1092],[258961,192829,1092],[258950,192873,1092],[258974,192697,1092],[258972,192653,1092],[258968,192608,1092],[258960,192565,1092],[258950,192522,1092],[258699,192562,1035],[258936,192479,1092],[258920,192438,1092],[258901,192398,1092],[258879,192359,1092],[258855,192322,1092],[258828,192287,1092],[258799,192253,1092],[258768,192222,1092],[258734,192193,1092],[258699,192166,1092],[258662,192142,1092],[258623,192120,1092],[258623,193275,1092],[258542,192085,1092],[258499,192071,1092],[258456,192061,1092],[258413,192053,1092],[258368,192049,1092],[258324,192047,1092],[258280,192049,1092],[258235,192053,1092],[257922,192329,1049],[258192,192061,1092],[258149,192071,1092],[258106,192085,1092],[258065,192101,1092],[258025,192120,1092],[257986,192142,1092],[257949,192166,1092],[257914,192193,1092],[257849,192253,1092],[257880,192222,1092],[257820,192287,1092],[257793,192322,1092],[257769,192359,1092],[257747,192398,1092],[257728,192438,1092],[257712,192479,1092],[257987,192644,1348],[257698,192522,1092],[257688,192565,1092],[257680,192608,1092],[257674,192697,1092],[257676,192741,1092],[257680,192786,1092],[257688,192829,1092],[257698,192872,1092],[257712,192915,1092],[257728,192956,1092],[257747,192996,1092],[257769,193035,1092],[257793,193072,1092],[257820,193107,1092],[257849,193141,1092],[257880,193172,1092],[257914,193201,1092],[257949,193228,1092],[257986,193252,1092],[258025,193274,1092],[258065,193293,1092],[258106,193309,1092],[258149,193323,1092],[258583,192101,1092],[257676,192653,1092],[364887,43722,486],[364521,43802,1745],[364626,43389,3965],[364733,43237,5728],[364837,43369,423],[365077,42944,252],[364361,43333,384],[364457,44002,487],[365501,44336,282],[365058,43077,4046],[365203,43528,5240],[364097,44761,292],[363915,43641,375],[363674,43372,1742],[365268,43678,365],[364003,44322,354],[363674,43372,242],[295902,67709,5024],[295893,67663,561],[296271,67519,450],[295485,67085,545],[295800,66979,530],[295847,67315,563],[295961,67239,11227],[296320,67861,489],[296636,68026,382],[295989,68034,1208],[295206,67582,522],[295351,67128,7734],[295724,67654,7323],[295663,68448,523],[295482,68409,7215],[295628,67809,1161],[295332,68550,507],[295293,68236,536],[295291,67684,5956],[294609,67470,5142],[294885,67672,545],[295325,68735,392],[295249,67902,537],[295953,66770,6532],[296061,67224,8003],[294816,67401,8535],[295047,67254,7709],[295953,66770,362],[294609,67470,432],[256722,91600,5482],[256652,91557,1206],[256652,91509,1981],[256359,92319,872],[256543,92482,6225],[256496,92563,608],[256345,91334,1024],[256499,91488,7458],[256285,91700,1203],[256986,92272,580],[256302,92834,442],[256446,91133,7383],[256534,91097,566],[256981,91947,1116],[257208,91605,702],[257554,92024,402],[255851,91909,1239],[256176,92078,1956],[256385,91769,5377],[256646,91755,705],[256198,91251,516],[256330,91207,844],[256829,91315,714],[255867,91423,491],[255913,91412,1267],[256738,90774,362],[256964,91499,5506],[256008,91609,6320],[256480,92209,1054],[256713,92078,1031],[255489,91591,442],[256490,91837,1542],[256554,91914,2612],[256995,91641,1858],[361820,105822,640],[361864,106152,652],[361073,105833,645],[361596,106475,703],[361731,106050,3341],[364565,78666,3366],[364480,78308,2835],[364390,78913,491],[364815,78265,539],[396568,76274,745],[397435,76584,772],[397765,77344,782],[398167,76638,1015],[398299,76594,772],[397820,76793,1220],[395530,75206,796],[394220,74824,762],[394753,74074,762],[395574,75525,813],[396522,75919,759],[396093,75746,1147],[270976,113378,2156],[271173,113537,1132],[270956,113760,1198],[271759,112382,1007],[271434,112058,2792],[271806,112741,995],[271345,112306,1075],[271438,112980,1101],[270861,113079,1138],[271014,114085,1378],[270715,113990,1153],[269468,114916,2842],[265583,120534,1612],[270765,113593,2563],[270488,114542,1187],[270548,114871,1402],[270123,114450,1244],[271907,113413,1128],[271500,113319,1316],[271871,113048,1315],[271294,113141,3482],[270850,114300,2414],[270230,115116,1476],[269780,114687,1214],[271580,113972,1210],[266882,120711,891],[266486,120930,884],[270394,113891,1109],[270072,114117,1161],[270484,113484,3079],[269830,115026,1280],[271090,114796,1114],[271133,115111,1119],[270850,114996,1147],[266677,119000,1245],[267022,118459,1284],[272254,112811,1082],[269398,115297,1202],[270596,115210,1440],[270620,115555,1129],[267493,119239,1235],[267530,119558,1164],[267174,119806,880],[271985,113740,1586],[266387,119932,1370],[265986,120149,883],[266307,119597,896],[266057,120450,1284],[266078,120825,892],[266491,120573,1613],[271620,114307,1143],[271318,114538,1268],[268317,118899,1219],[268587,118384,1115],[266791,120035,889],[266886,120360,1591],[266403,120267,969],[271056,114431,1329],[270816,114659,1300],[266744,119693,889],[267267,120103,1591],[268542,118018,1174],[268498,117677,1204],[268845,117407,1768],[269105,116545,1198],[267265,120483,869],[269153,116885,1237],[269199,117217,1253],[269571,116627,1115],[269882,115387,1313],[338073,87306,542],[338454,87225,550],[338178,86981,2605],[338406,86865,539],[337984,86633,542],[306464,49630,586],[307421,49556,492],[306041,50155,462],[305925,49088,602],[306012,49748,591],[305405,48703,512],[306097,49333,8178],[306929,49472,588],[306769,48104,542],[306374,48922,631],[306387,49333,6429],[306604,49488,2745],[262536,88746,437],[263387,88197,442],[262174,89009,442],[262031,88626,4922],[261355,87756,4992],[261947,87610,5638],[262296,87422,5382],[262337,88054,4778],[262920,88195,1007],[262582,87830,8524],[262461,88071,661],[262800,87555,6218],[262919,87893,7215],[262102,88629,525],[262567,88463,7145],[263225,87987,5550],[262577,86958,392],[262533,88401,1030],[262082,88301,6219],[262797,87512,592],[261684,87878,1578],[261587,87871,6209],[261355,87756,352],[398281,34000,805],[398864,33963,741],[397903,34575,672],[398561,33387,792],[398771,33273,716],[398653,33571,6083],[398776,33114,6639],[398913,32727,672],[399323,34142,712],[398576,33627,3989],[398475,33660,1901],[398625,33629,3237],[398816,33598,746],[397923,33171,726],[398303,33548,796],[398121,33239,780],[398258,33088,5616],[398325,33121,772],[398350,33034,742],[398582,32967,766],[397487,33141,652],[398723,32908,728],[398525,33685,1130],[398781,33743,809],[392180,71673,758],[390736,72786,1335],[391124,72233,1434],[391166,72589,1351],[390777,73106,1315],[401339,75149,1246],[396352,72095,716],[396893,72211,1282],[398118,73150,1355],[394538,70987,757],[392535,70009,643],[391852,71197,1392],[392922,70255,1388],[392411,71169,763],[393554,69955,1340],[393968,69784,1370],[394006,70137,1245],[398541,73321,671],[398496,72984,666],[399047,73518,683],[401127,75258,1289],[400846,75040,1356],[401089,74946,1340],[400107,74600,1359],[400059,74238,1354],[400462,74473,1330],[400771,74694,948],[396267,71419,773],[396528,71649,883],[396347,71760,1274],[399673,74401,1221],[398074,72805,1381],[397660,72625,1369],[399539,73705,638],[399089,73851,660],[398587,73663,682],[396605,72001,1313],[397175,72076,948],[392873,69895,1366],[393145,69753,1351],[393143,70047,761],[393512,69612,1384],[399625,74068,1175],[394536,70669,1320],[394993,70838,1369],[392407,70861,1284],[394012,70457,741],[396853,71895,1307],[395976,71578,1162],[395935,71224,1254],[395519,71364,1248],[401253,74791,722],[393057,69390,791],[391548,72048,1328],[392370,70548,1354],[392178,71353,1348],[394995,71176,767],[391899,71553,1376],[391915,71858,1041],[344584,50090,396],[344906,50147,4733],[345031,50367,410],[344263,50434,359],[344333,50782,282],[343910,49392,4312],[344323,49970,6095],[344707,49764,7726],[345435,50352,386],[345744,50343,282],[345313,50417,4229],[344241,49303,6182],[344491,49404,355],[344125,49402,345],[344917,49341,6354],[345297,49320,375],[345355,49603,6300],[344169,49724,365],[345345,49671,396],[345228,49764,4249],[345323,48962,4662],[344513,49270,5945],[345205,49137,5082],[345281,50096,4371],[345397,50036,440],[345323,48962,242],[343910,49392,242],[368583,81578,1674],[368549,81912,591],[352158,34843,942],[352773,34833,919],[351652,35205,902],[352367,33777,5813],[352650,33771,6098],[352639,33820,913],[352344,33805,898],[352020,33812,917],[352983,34599,942],[353109,34868,812],[353042,34859,849],[352726,34545,948],[353004,34547,889],[352780,33623,920],[351325,33781,912],[351526,33811,6150],[351663,34070,974],[352759,33440,822],[352524,33552,903],[352834,34764,6017],[352444,34491,4829],[352420,34535,1582],[352361,34513,2387],[352073,34309,985],[351885,34162,5813],[351726,34088,5855],[351861,34637,995],[351870,34864,5487],[352470,34388,1010],[351911,33741,977],[351887,34183,986],[352254,34569,3819],[352402,34668,4663],[352319,34802,3256],[352189,34606,1335],[352143,34541,5340],[352501,34517,4040],[351994,34440,5531],[352308,34534,3103],[352228,34355,993],[352460,34527,1191],[408268,86397,1262],[408685,85607,1206],[409701,84724,790],[409687,84371,1255],[409943,84307,808],[404677,84393,802],[405192,84451,1231],[405577,84679,759],[409321,84416,754],[408853,83820,828],[406483,82620,1204],[406574,81754,802],[406760,82213,1211],[406221,83078,1154],[405731,83557,1234],[405949,83163,1227],[408319,87009,802],[409074,85508,794],[409062,85178,1259],[409403,84779,1250],[407245,82795,762],[408373,83250,1202],[409238,83742,847],[410215,84370,802],[405524,84041,1193],[405124,84131,849],[406169,82718,1084],[405739,83881,742],[406771,82538,762],[409299,84104,1034],[408834,83506,1147],[405652,83207,779],[409640,84050,1193],[398252,23053,837],[398263,23168,8837],[398149,23176,7549],[398032,23420,799],[398116,23817,4742],[397780,22346,752],[398219,23506,6269],[398316,23670,850],[398302,23593,11725],[398296,23393,824],[398370,23484,4013],[399246,22432,873],[399016,22494,8534],[399081,22248,908],[398881,22987,5403],[398880,22893,975],[399110,22995,9724],[399374,23459,767],[399599,23429,4772],[399245,23509,11667],[398052,22884,878],[398377,22845,4364],[398323,23593,4651],[398639,23638,783],[398338,23735,766],[399181,23537,5291],[398688,23359,6062],[398582,23303,7707],[398741,23345,5265],[398578,23499,858],[398471,23310,5592],[398954,23535,811],[399038,23227,868],[399220,23365,4812],[399478,23383,888],[399110,23196,6592],[399066,23135,10295],[398338,23199,865],[398259,23356,5775],[398857,22825,3890],[398863,22909,7329],[398913,23210,838],[398823,22450,889],[398822,22520,847],[399335,23120,850],[399287,22755,861],[399060,22758,864],[399005,22782,5264],[398206,22702,833],[398523,22968,4810],[398558,22963,904],[398655,23600,6389],[398815,22999,7989],[398074,22414,881],[398379,22309,888],[398370,22576,7648],[398799,22668,4872],[398746,22611,5726],[398595,22835,4058],[398586,22882,1185],[398741,22776,1898],[398645,22827,3310],[398620,22612,878],[398712,22968,3065],[398794,22792,1078],[398550,22950,4650],[398907,22801,3166],[398096,22723,4852],[397934,22786,841],[398078,23206,4768],[398065,22982,6136],[397949,22733,7045],[397889,22442,835],[398359,22755,856],[399280,22719,4358],[399282,23046,885],[398773,22249,5255],[399301,22603,911],[397977,23130,797],[397977,23105,4642],[398774,22155,869],[399227,21986,1802],[398601,22847,6134],[399413,23053,5079],[399227,21986,802],[399599,23429,782],[398116,23817,712],[358688,146545,911],[358731,145682,732],[359177,146855,892],[358817,147598,757],[359882,146809,752],[358923,146914,3493],[358760,147980,692],[358766,146790,1555],[357583,146827,672],[358263,146915,812],[353878,149392,731],[354545,149938,732],[353617,150909,752],[353251,149497,725],[352672,149999,752],[353590,149029,1632],[353590,149029,722],[378162,39687,716],[379040,40227,272],[377620,40670,262],[377657,39440,340],[377187,39250,242],[378610,38816,252],[371046,41647,417],[371484,41603,465],[370921,42697,272],[370552,41385,313],[370493,41292,4262],[371322,41467,4625],[371440,41279,456],[370873,41507,4584],[371003,41328,411],[371909,41157,367],[372310,42264,262],[371884,40867,232],[370493,41292,312],[208520,109410,9285],[209550,108771,3452],[208333,109567,802],[208223,107973,832],[208672,108111,811],[208596,108179,9973],[208847,108796,8397],[208953,108839,9009],[208783,108971,8639],[209122,108544,789],[209126,108376,6244],[209387,108566,6404],[208573,108599,8215],[208494,108223,842],[208717,108424,834],[208677,107555,732],[209164,108866,749],[209174,108889,10977],[209070,108378,5515],[208840,108509,7618],[208811,108461,871],[209169,108735,838],[207921,108885,861],[207526,108330,822],[208682,108930,8075],[208702,109141,843],[208811,109129,779],[208273,108333,820],[208219,108332,8180],[207913,108101,8143],[209434,108623,761],[208754,108694,3461],[208414,109326,859],[208642,109167,9022],[208308,109016,7300],[208372,109120,964],[208191,109271,7453],[208380,108568,862],[208866,108690,4939],[208771,108781,891],[208186,108723,1286],[208365,108743,7150],[208857,108580,6638],[209073,108187,807],[208324,108674,875],[208041,108307,898],[208641,108752,1078],[208517,108829,7643],[208371,109010,876],[207830,108230,857],[208052,108880,894],[208711,108709,2672],[209550,108771,712],[400522,77964,922],[399993,80589,819],[403353,77673,807],[403305,77314,801],[404316,78072,777],[407871,87493,812],[407795,86796,1048],[402399,77562,784],[403221,77266,6086],[403054,77505,3291],[404330,85054,796],[405791,86037,1241],[403336,84625,799],[404095,83033,1241],[404810,81771,828],[400579,81439,835],[400536,81121,819],[400989,81295,1278],[401225,80516,813],[401305,80869,1273],[400346,79449,1275],[400599,78605,806],[400675,78935,1259],[405648,81129,779],[406416,79861,770],[412725,84470,776],[413691,86000,776],[413417,86437,750],[412031,86652,765],[411275,87167,767],[406947,86342,814],[404520,82917,811],[404508,82564,1300],[404897,82442,798],[405746,79696,777],[406072,79482,5756],[406056,79627,778],[412637,83824,748],[405380,79100,783],[407429,80342,769],[407522,81041,774],[408242,80958,3669],[408496,81142,789],[411144,83057,783],[411777,83311,3439],[411185,83373,772],[413921,85282,787],[414176,85639,3744],[414286,85562,730],[411233,83732,771],[412150,83867,764],[412110,83550,783],[401157,77699,788],[412597,87244,759],[411849,83672,3788],[408922,81398,760],[411813,88073,840],[402268,76596,749],[401207,78047,849],[400946,78169,1256],[400997,78529,1303],[400691,79282,844],[410339,87318,792],[411334,87484,1000],[405162,81339,1127],[405430,81522,791],[405209,81683,1153],[405423,81216,1253],[406387,86509,1170],[406050,86223,763],[407916,87829,806],[400656,81806,1239],[400911,80951,830],[406310,86149,764],[405304,85478,888],[400223,82266,914],[400744,82466,1258],[401581,83219,781],[402380,83195,918],[403208,83649,801],[402433,83527,1034],[401947,83433,1244],[402168,83311,957],[403749,83834,1260],[403761,84169,795],[401869,83084,783],[403324,84302,1225],[403256,83982,866],[401169,82673,1244],[412195,87655,1205],[407416,87239,1087],[411682,87089,835],[404883,82109,1242],[404134,83346,1204],[401090,82308,814],[400671,82145,816],[405226,82005,793],[404855,85262,1164],[404813,84919,1214],[400361,79797,838],[399979,80244,1263],[401004,78829,839],[404151,83696,808],[402472,83869,942],[402110,82959,788],[411753,87405,1251],[412106,87012,1146],[411798,87764,1215],[411366,87842,778],[399935,79925,1239],[399445,80059,820],[411421,88181,924],[400174,81946,828],[407372,86910,1081],[365872,31658,7083],[365922,31594,6442],[366212,31580,7133],[366216,31397,557],[366060,31508,611],[365948,31134,6427],[366052,30868,9807],[366083,31062,626],[366260,31405,6612],[366354,31686,452],[365349,31171,5874],[365361,31369,987],[365310,31399,6243],[366111,30935,8955],[365570,31752,7078],[365607,31485,6767],[365703,31598,9397],[365715,31555,634],[364670,30806,6614],[364620,30918,7226],[364501,30603,552],[365737,31095,678],[365629,30744,624],[364597,30951,609],[364845,31108,610],[365580,30375,612],[365942,30216,522],[365764,30612,657],[365305,31775,587],[365424,31434,4664],[364872,30835,641],[364801,30788,601],[365792,31318,8404],[365065,31680,625],[365266,31454,629],[365022,30559,6192],[364869,30744,8133],[365288,31845,6212],[365718,31430,605],[365157,30489,6060],[365165,30847,8591],[365223,31118,641],[365089,31192,655],[365515,30988,4927],[365399,31124,674],[365175,30760,622],[365116,30707,646],[365424,30671,657],[364929,30793,7278],[365649,31269,6353],[365479,31434,3918],[365529,31302,3343],[365014,31232,5811],[365584,31222,2660],[364889,31449,600],[366165,31028,523],[365758,31770,532],[365673,31069,641],[364842,32061,502],[405848,92968,765],[405803,92632,760],[406316,93195,739],[397226,84471,828],[397597,84002,838],[401568,85663,1308],[401893,85562,828],[401970,85898,1298],[396633,86764,841],[401776,91647,5308],[401468,88166,828],[401001,87972,1238],[401421,87809,826],[402261,88238,1028],[402204,87921,815],[405181,87934,763],[404710,87730,1150],[405137,87616,747],[408809,90763,735],[406992,89100,793],[406714,89179,793],[404028,93145,797],[403940,92494,765],[404359,92347,774],[400566,84937,781],[400051,84410,1252],[400526,84623,808],[400431,90277,1954],[400856,90480,1251],[400422,90591,1246],[397658,87492,1275],[395287,86201,838],[399095,83698,922],[399164,84018,1285],[398798,84196,1208],[395688,86059,1345],[395282,85888,1353],[398053,84893,842],[398460,84285,848],[398415,83965,820],[402487,91834,8361],[402888,92345,7463],[404962,93223,832],[405420,93103,1115],[402150,90832,5478],[401786,90508,924],[402597,91024,5821],[403118,91562,6940],[402713,91346,6858],[402254,91528,5632],[402248,91169,6226],[403398,92705,784],[403619,92599,833],[402749,92041,6059],[402674,91686,5658],[403311,92578,7771],[403638,92448,8302],[403950,92254,6120],[403276,92225,7921],[403671,92337,5313],[400129,90401,2950],[400072,90068,2774],[401638,91334,3941],[401703,91002,5490],[400992,91126,1956],[398449,89383,2813],[399362,89993,2909],[401465,90669,2746],[403873,91921,5654],[403667,92007,5870],[401275,90313,733],[400917,90812,1502],[398942,89122,2347],[398396,89071,2656],[403473,92128,6576],[403216,91889,7702],[397421,88651,2351],[398694,88891,2421],[398662,88562,2593],[398789,88780,823],[398354,88713,2728],[398175,88366,846],[397714,88162,819],[399077,88984,786],[399053,88670,1030],[397899,88531,2726],[397938,88844,2701],[398755,88447,967],[399844,89415,792],[399483,89543,868],[399435,89226,787],[400332,89943,1183],[399887,89749,771],[400259,89608,804],[399700,90217,2654],[399248,89320,2571],[399291,89663,2529],[399641,89872,2480],[400777,90136,779],[399832,89074,1254],[400213,89248,803],[400600,88791,795],[399009,89453,2674],[397180,87636,839],[398522,88215,1252],[398145,88035,1043],[398800,89594,2613],[395562,85380,839],[396069,85916,873],[396449,85112,1325],[396823,84940,845],[395603,85714,796],[396056,85573,1327],[405660,88175,862],[401101,85138,1304],[400203,88933,1258],[400590,88456,1285],[396730,84266,797],[397217,84143,1312],[403185,86776,807],[402559,86342,818],[402775,86228,823],[398547,84960,837],[398535,84622,1278],[399581,84237,1271],[399502,83870,834],[403427,91792,6548],[397670,87821,830],[401015,88309,806],[401888,88335,826],[399588,84540,813],[404724,88047,752],[404224,87492,1136],[402012,86215,1288],[406455,89284,778],[406441,88927,1243],[406169,89053,947],[405727,88497,1220],[405234,88268,877],[402275,86130,855],[403676,86974,1192],[404165,87172,899],[397145,83822,898],[397583,83669,1267],[398333,85097,1267],[396814,84629,1309],[395972,85235,779],[408011,91941,670],[396110,86246,827],[399179,84372,829],[401378,87492,816],[409310,90643,580],[408871,91094,977],[405903,93282,960],[397156,87302,1126],[257660,76766,474],[258320,76390,382],[256272,77590,5082],[257463,75582,8736],[257533,75828,489],[257368,75687,9317],[258098,76512,10150],[257929,76304,452],[256827,77082,5075],[256897,76894,503],[256989,76978,8798],[257143,76487,5011],[256856,76576,518],[256835,76510,753],[256986,76820,4629],[256816,76766,10072],[257717,76034,513],[257883,75959,463],[256618,76789,511],[257170,75717,494],[257524,75098,422],[257484,75481,474],[256805,76216,486],[256237,76497,502],[255525,76325,402],[257849,76483,7500],[257836,75626,438],[256836,76840,2427],[256781,76988,5083],[255944,76620,437],[255571,76400,450],[256274,76845,10386],[256280,76944,470],[256224,77417,501],[256363,76973,9417],[256456,77106,446],[256494,77437,345],[256984,77074,452],[257055,76936,10281],[257151,76869,5909],[256933,76874,3092],[256952,76843,3831],[257574,76383,507],[257620,76500,446],[257331,76456,7888],[257503,75915,7296],[257435,76066,524],[257374,75770,525],[257302,76696,504],[257298,76184,5468],[257092,76286,7668],[257182,76081,523],[257360,75734,8460],[257073,75787,529],[257087,76861,5244],[257654,75806,7493],[257858,75801,6046],[257686,75597,7218],[257785,76337,492],[257258,76377,475],[257464,76235,6741],[257259,76456,511],[257201,76486,5759],[257669,75660,497],[257606,75624,5809],[257601,76305,7298],[257495,76009,5655],[257579,76184,470],[257260,76488,6467],[256928,77126,5621],[256643,77222,460],[257132,76753,7565],[256619,77364,6288],[256272,77590,352],[319504,44408,974],[318764,44853,874],[319117,44138,1103],[317833,43577,832],[319570,44456,6877],[319792,44507,922],[318349,45064,852],[319228,43038,922],[319414,43727,991],[319459,44066,992],[319441,44005,5918],[290189,71039,831],[290865,71171,412],[289513,71907,392],[289324,71513,433],[288857,70586,6222],[289345,70694,7806],[289900,70918,3070],[289743,71111,625],[289672,70265,7285],[290119,70660,575],[290469,70563,586],[290292,70586,8899],[290316,70296,9736],[290167,69875,7282],[289909,71017,9104],[290095,70767,5951],[290069,70308,546],[289362,70410,8536],[289242,70842,528],[290167,69875,452],[288857,70586,342],[351664,48517,370],[351943,48471,292],[350543,48895,292],[351016,48572,412],[351440,48468,6437],[350708,47930,458],[350439,47532,6244],[350711,47722,4867],[351266,48205,467],[351392,48129,6393],[350663,47571,491],[351606,48306,4966],[351724,48165,6849],[351595,47745,5835],[351288,47168,6703],[350119,47501,252],[351227,47646,4994],[351580,47858,425],[351367,47532,7134],[351483,47167,350],[351518,47075,5202],[350748,48245,436],[350743,48025,4758],[350512,48618,454],[350975,48215,492],[351518,47075,252],[444200,50096,2060],[444255,50187,2012],[444132,50068,2022],[444166,49786,2149],[444009,49948,2032],[444557,49698,2113],[444520,49369,2187],[445112,49326,1982],[444839,49120,7107],[444867,49086,2012],[444989,49206,2002],[444745,48965,2042],[444502,48723,2052],[444623,48844,2042],[444121,49260,6741],[444040,48775,2233],[444381,48601,2062],[443832,49544,2175],[443502,49337,2201],[443793,49230,2208],[443524,49463,2052],[443644,49585,2052],[444455,49499,6700],[443887,49828,2052],[444534,49857,7169],[443766,49707,2052],[444261,48479,2062],[443404,49341,2062],[357691,46075,534],[358651,46461,292],[357235,46901,292],[357200,45379,340],[357902,45385,473],[357643,45712,532],[358217,45035,4112],[358119,45084,838],[357874,45159,4752],[357960,45723,679],[358179,45729,485],[356798,45467,252],[358498,46091,386],[357870,45720,3668],[358154,45142,4424],[358183,45463,1022],[358217,45035,262],[313265,59661,2739],[313687,59589,501],[313132,59823,604],[313359,59004,472],[313213,58862,5692],[313421,58788,5882],[313067,59112,6831],[313036,59158,496],[313005,58936,5692],[313408,59353,497],[312798,59010,5692],[312597,59470,5693],[312675,59592,544],[312590,59085,5512],[313550,58755,8333],[313551,59044,7822],[312694,59861,6315],[312176,59236,5672],[312670,60586,402],[312723,59940,565],[313629,58715,5962],[314093,60074,382],[313640,59244,472],[313074,59683,5891],[312383,59160,5692],[313629,58715,382],[312176,59236,382],[236456,90010,494],[236695,89927,458],[237065,90217,459],[236305,90148,426],[236637,90778,352],[235851,89585,382],[236873,89472,483],[236602,89252,431],[236997,89421,435],[236956,89807,5800],[236794,89848,7361],[236652,89611,450],[236237,89756,8024],[236249,89511,6080],[236346,89667,481],[237127,90410,377],[237866,89947,1292],[236592,89567,498],[236566,89500,5958],[237662,90023,403],[237719,89769,6138],[237727,90023,7183],[236262,89807,476],[236476,89925,8250],[237122,88899,432],[237126,88902,6557],[237061,88797,392],[236211,89449,438],[237293,89542,428],[237620,89699,438],[237562,89731,4816],[237369,89807,6280],[237089,90095,437],[237258,89232,516],[236344,89954,6137],[237227,89741,487],[237238,89799,3047],[236955,89846,490],[237338,89877,414],[237613,89728,5489],[237605,90034,432],[237374,89914,4571],[237379,90192,402],[237324,89918,3889],[237150,89971,876],[237866,89947,382],[225695,98016,430],[226647,97516,302],[225485,98283,332],[226023,97389,446],[226245,97170,6824],[226140,97489,7083],[225868,96287,362],[225579,96510,9356],[224683,97092,382],[225905,97742,7554],[226330,97546,390],[225717,97984,8901],[225622,97952,8230],[225709,97661,6411],[225437,97814,396],[225677,97537,484],[225306,96832,438],[225590,96729,473],[225648,97091,7485],[225950,96510,5366],[226070,96664,442],[225483,98158,381],[225863,96981,5164],[225777,96668,424],[225737,96415,380],[225906,96526,4544],[226280,97184,383],[225351,97165,440],[225680,97125,477],[225740,97639,7170],[225965,96754,4757],[225833,96720,443],[225918,97702,411],[226168,96977,422],[226155,96825,5966],[225997,97050,5707],[225932,96990,451],[225971,97045,2381],[225889,96635,5767],[228175,111005,485],[229068,110607,422],[227821,111425,412],[228040,110228,3056],[228040,110127,4744],[228110,110061,1139],[228087,109985,1182],[228381,110198,575],[228643,110160,641],[228871,110312,1007],[228688,110422,512],[228444,110531,829],[228566,110178,7451],[228723,110517,1310],[228486,110682,1132],[228017,110007,6140],[227974,109966,6590],[228253,109566,642],[228638,110064,510],[228077,110010,7178],[228037,109678,7046],[228270,109388,372],[227995,109682,487],[227022,110204,362],[228035,110069,5655],[228469,110538,5418],[227679,110102,575],[227983,110388,4948],[227736,110556,1180],[227580,110466,713],[227972,110267,1526],[227874,109899,838],[227717,110804,502],[325225,55903,507],[325584,55967,5469],[325550,56156,476],[325690,54950,8859],[325653,55055,414],[325418,55181,431],[325914,54843,4902],[324467,55302,342],[325835,55895,4963],[326102,55993,410],[325753,55227,5056],[325209,55148,6735],[324779,55269,414],[325133,55216,492],[325248,55473,6669],[325703,55404,461],[326005,55307,334],[325754,55772,506],[324891,56638,332],[325510,55839,505],[326350,56217,322],[325914,54843,302],[242648,86558,2798],[242386,86615,6442],[242323,86504,7487],[241696,85772,7795],[241814,85858,461],[241411,85851,372],[242625,85015,402],[242634,86079,504],[242542,85773,4851],[242646,85726,5019],[241861,86206,457],[242174,86154,7504],[242545,85402,529],[242295,86318,476],[243068,86153,430],[242934,85856,5019],[243028,85833,476],[242251,85953,549],[242246,86539,5920],[242396,86173,5936],[242905,86532,6417],[243330,86254,4912],[242225,87001,332],[242670,86387,423],[242336,86662,398],[242750,86367,2366],[242996,86331,6016],[243268,86184,5294],[242949,86340,5288],[242926,86369,4549],[242936,86457,8022],[243330,86254,322],[273500,118972,1245],[273993,119433,991],[273575,119659,1027],[273710,120657,1029],[273477,120423,3742],[273670,120307,1119],[274183,120750,1170],[273135,119225,1292],[274041,119774,1026],[273639,119958,1342],[273253,120233,1062],[273335,120912,942],[275325,119264,1200],[274313,118524,964],[273088,118888,1273],[273437,118628,1016],[274217,121104,972],[273816,118072,1078],[274893,119967,1028],[274850,119644,1032],[272708,119457,929],[275609,119408,1167],[275142,119743,1246],[275356,119593,1020],[233905,107214,610],[234087,106989,1148],[234313,107192,521],[233156,106697,5394],[233707,107601,402],[232895,106360,372],[233571,106312,545],[233833,106241,548],[233833,106501,724],[233962,106319,673],[233894,106505,1427],[233959,106462,2954],[233876,106546,5702],[233857,106575,4964],[233945,106749,5589],[234137,106464,695],[233509,106004,409],[233669,106192,7996],[233611,105891,542],[234079,105586,362],[234060,105859,499],[233745,105977,474],[234012,106052,7812],[233952,106463,8013],[234011,106169,644],[234430,106139,528],[234450,106534,493],[234922,106799,392],[234534,106772,605],[234036,106367,7538],[234387,106601,5984],[233826,106806,767],[233232,106340,7097],[233499,106559,739],[233526,106581,5317],[233245,106380,498],[233227,106704,506],[234493,106857,483],[380062,88166,1276],[380404,87761,1332],[380066,88494,718],[380610,87008,666],[380669,87334,892],[380358,87400,1354],[380023,87847,1324],[380706,87692,739],[381425,86506,1201],[381811,86065,776],[381349,86159,779],[381001,86596,1288],[381041,86953,1186],[381807,85741,1330],[382496,84855,1118],[382774,84772,738],[382512,85183,746],[382113,84937,1236],[379700,88572,825],[394438,73491,1086],[393725,74439,785],[397557,77247,1245],[396610,76590,755],[397695,76105,758],[398137,76299,1222],[396459,75282,1064],[398563,76818,772],[398547,76500,1144],[395164,75699,791],[395692,76240,1154],[395204,76033,745],[397609,77912,738],[397339,77695,1036],[397051,75682,737],[397296,75548,735],[397648,75763,729],[397249,75205,718],[396802,75479,750],[395940,74730,888],[396422,74963,1140],[395906,74417,1004],[396755,75120,746],[396705,77297,775],[397023,77127,793],[397074,77486,839],[397311,77381,1237],[396659,76952,760],[396201,76756,769],[394907,73674,958],[394945,74002,877],[398489,76175,926],[395423,74214,1142],[395438,74534,762],[395350,73883,740],[394455,73794,764],[396155,76409,783],[370864,97644,3885],[370590,97369,617],[370682,98048,641],[371063,97689,614],[231576,94181,8287],[232240,93746,832],[231033,94561,322],[231157,94423,6740],[231535,93174,7241],[231642,93118,9482],[231732,93158,444],[231828,93547,4820],[231835,93582,8406],[231546,93732,2335],[231431,93771,6090],[231484,93715,7663],[231866,93845,421],[231845,93797,5035],[231135,93284,478],[230974,93301,466],[231204,93163,7388],[231829,94004,349],[231062,93981,407],[230603,93485,427],[230935,93735,469],[231519,92884,7130],[231464,92556,362],[231700,93031,402],[231225,93077,9048],[231344,93162,448],[231351,92868,454],[231388,93478,452],[231341,93634,7183],[231232,93605,498],[231297,92827,421],[230911,93362,477],[231017,93623,457],[231079,92960,457],[231145,92870,7348],[230239,93341,352],[231476,94162,387],[231672,93537,7102],[231503,93563,501],[231744,93355,400],[231575,93709,3070],[231440,93743,840],[231805,93092,7298],[231788,93689,380],[231681,93698,4594],[231107,94324,387],[231392,93887,3693],[231277,93997,449],[231794,93507,433],[231209,94056,5767],[231481,93868,5128],[231782,93933,7812],[231445,93841,565],[230801,93579,8465],[230800,93032,429],[231416,93214,487],[232240,93746,322],[283009,126420,977],[282753,126376,3377],[282823,125930,5136],[282961,126063,987],[282507,125884,964],[282916,125717,1000],[282639,126848,993],[338251,52214,414],[339037,52418,282],[337621,52826,272],[338200,51864,6871],[338261,51932,1082],[337747,51942,388],[337699,51596,351],[338543,51695,5486],[338638,51832,371],[337633,51466,5759],[338158,51528,383],[338433,51287,4697],[338592,51500,362],[337577,51686,4564],[337197,51436,4792],[337270,51638,362],[338607,51007,4242],[338545,51149,343],[338607,51007,262],[337197,51436,352],[288545,58816,582],[289453,58746,332],[288102,59478,362],[288021,58231,512],[287391,58140,382],[288702,57428,392],[288005,57900,875],[392344,35797,531],[392303,35443,617],[392660,35311,555],[392354,35175,565],[392218,35423,2381],[392252,35108,517],[392616,34986,548],[392290,34890,5972],[392548,34705,5428],[392697,34545,542],[393122,35960,572],[392903,35309,636],[392299,35112,5752],[391894,34857,456],[391908,34803,4409],[392074,34864,523],[392669,34891,4380],[392704,34651,7725],[392205,34769,493],[392377,34701,554],[392693,35207,6545],[392052,35293,539],[392654,35016,584],[391301,34964,332],[392679,34560,551],[392027,35723,593],[392294,35807,998],[391730,36393,462],[392040,35919,528],[292490,133321,1050],[292699,132922,1042],[292123,132749,1067],[292469,132952,1436],[265281,72011,475],[265006,71739,5084],[264955,71566,483],[264365,72035,704],[264678,71804,499],[264894,72340,508],[264304,71695,510],[264679,71682,5642],[265921,71975,382],[264641,72718,372],[263905,71427,422],[264134,71442,5638],[265141,70702,432],[264589,71123,527],[264942,71906,524],[265136,72010,2138],[265072,71974,1051],[265158,71951,2528],[251222,95632,506],[252129,95198,616],[251308,96135,402],[251175,95277,530],[251604,95154,612],[251218,95470,5881],[251300,94637,6610],[251422,94657,620],[251434,94673,5153],[251696,94855,814],[251982,94681,495],[252191,94820,521],[251369,95049,707],[251406,95037,1400],[251783,94503,602],[251710,94061,392],[251907,94530,5913],[251167,95154,5776],[251220,94612,6027],[251474,94277,426],[251416,94991,2266],[251307,94339,4053],[252527,95311,432],[251653,94845,1865],[251611,95018,6930],[250479,94866,362],[250763,94997,499],[250824,94654,356],[251084,95239,543],[251154,94467,383],[239753,102927,588],[239400,102811,514],[239717,102734,593],[239112,103010,390],[239596,103766,402],[238778,102514,382],[239531,102632,5288],[239589,102636,5933],[239869,103355,655],[240818,102967,382],[239391,102490,525],[239709,102610,559],[240073,102732,550],[239332,103204,484],[239071,102664,459],[239802,102763,1186],[239351,102452,502],[239075,102582,478],[239322,102309,4591],[239472,102115,391],[238873,102610,425],[239030,102531,3997],[239105,102886,4379],[239199,102852,522],[239999,101716,402],[239794,103288,482],[324671,41698,1344],[325396,41173,6284],[325424,41497,6082],[324686,41788,7049],[324918,42610,1262],[324496,41121,1282],[325523,41528,1506],[325476,41182,1484],[325871,40704,1481],[325344,41925,4137],[325154,41941,1445],[325454,41812,5908],[325581,41885,1665],[326381,42114,1432],[325123,42030,7079],[325200,42286,1437],[325933,40666,1412],[273761,87688,801],[273784,87082,622],[274051,87469,5119],[274561,88447,868],[275093,88074,702],[274284,89107,712],[274109,87542,761],[272990,88131,682],[274173,87904,949],[285686,72305,312],[428971,39053,2362],[427003,36824,2342],[358541,145027,672],[357373,146244,622],[352038,140357,592],[352888,139512,652],[352016,140379,592],[351993,140399,582],[351969,140418,582],[351944,140435,582],[351917,140450,582],[351890,140463,582],[351862,140475,572],[351833,140485,572],[351803,140493,572],[351773,140499,572],[351743,140503,572],[351712,140505,572],[351682,140505,572],[351651,140503,572],[351621,140499,572],[351591,140493,572],[351561,140485,572],[351533,140475,572],[351504,140463,572],[351477,140449,572],[351451,140434,572],[351425,140417,572],[351401,140398,572],[290282,74913,442],[290265,74912,442],[346457,52959,372],[314609,63050,442],[314861,62950,442],[315114,62852,432],[315368,62757,432],[315623,62664,432],[316135,62486,432],[315878,62574,422],[317094,62131,422],[318056,61786,412],[319021,61450,412],[319989,61123,392],[320961,60805,392],[322913,60198,392],[321936,60497,392],[314358,63153,442],[303245,67825,452],[292721,73439,442],[278719,82366,542],[272842,80283,372],[276235,78078,352],[278316,76815,332],[278901,77989,392],[279315,81540,532],[278509,82943,552],[278467,83143,552],[275794,84701,562],[278636,82553,552],[278566,82746,552],[278814,82185,542],[278922,82011,542],[284555,78244,452],[289063,75588,432],[279042,81845,532],[279174,81688,532],[279467,81403,532],[279628,81276,552],[280727,80639,482],[290134,74947,442],[290149,74939,442],[296979,70992,432],[290165,74932,442],[290181,74925,442],[290197,74920,442],[290214,74917,442],[290231,74914,442],[290248,74912,442],[290299,74915,442],[290316,74918,442],[290333,74922,442],[290349,74928,442],[290365,74934,442],[290380,74942,442],[290395,74950,442],[290409,74960,442],[290423,74971,442],[290436,74982,442],[290448,74994,442],[290459,75008,442],[292875,74437,442],[290469,75021,442],[290478,75036,442],[300126,69279,442],[299619,69548,442],[300636,69017,442],[301151,68763,452],[301669,68517,442],[302191,68278,452],[302716,68048,452],[328220,33512,1192],[329258,35019,1192],[327735,33855,1192],[325919,35856,1372],[322980,33799,1192],[322002,34091,1142],[322529,33470,1162],[325458,35906,1372],[323484,35346,1342],[323681,35468,1352],[323886,35577,1352],[324098,35670,1362],[324316,35749,1372],[324539,35812,1372],[324766,35860,1372],[324995,35891,1372],[325227,35907,1372],[325690,35889,1372],[325701,118424,542],[325020,119427,472],[303462,103352,562],[304202,102375,592],[325003,119451,472],[303156,103519,562],[303186,103515,562],[324939,119763,472],[303127,103521,562],[324945,119792,472],[303097,103521,562],[324953,119820,472],[303067,103519,562],[324962,119848,472],[303037,103516,562],[324974,119875,472],[303008,103510,562],[324987,119902,482],[302979,103503,562],[325002,119927,482],[302951,103493,562],[325018,119952,482],[302924,103482,562],[325037,119975,482],[302897,103469,562],[325056,119997,482],[302871,103454,562],[325078,120018,482],[325100,120037,482],[302846,103438,562],[303215,103509,562],[324935,119733,472],[303244,103501,562],[324933,119704,472],[303272,103491,562],[324934,119674,472],[303299,103479,562],[324936,119645,472],[303326,103466,562],[324940,119616,472],[303351,103451,562],[324946,119587,472],[303376,103434,562],[324953,119558,472],[303399,103416,562],[324963,119530,472],[303422,103396,562],[324975,119503,472],[303443,103375,562],[324988,119477,472],[336023,132068,582],[316392,118777,632],[302573,108472,602],[279566,91344,652],[341494,138499,682],[342280,136987,562],[280037,90687,582],[279973,90038,582],[280055,90658,582],[280071,90629,582],[280055,90144,582],[280085,90598,582],[280097,90567,582],[280107,90535,582],[280120,90469,582],[280114,90502,582],[280123,90435,582],[280123,90368,582],[280124,90401,582],[280120,90334,582],[280115,90301,582],[280085,90205,582],[280107,90268,582],[280097,90236,582],[280071,90174,582],[280037,90116,582],[280018,90088,582],[279996,90062,582],[273781,85874,512],[275180,86390,552],[275387,86521,552],[274966,86271,542],[274522,86066,532],[274747,86163,542],[274292,85982,522],[274058,85910,522],[273821,85850,512],[300711,107635,622],[302308,108830,632],[300971,107292,582],[323571,124218,812],[322551,123433,762],[321529,122651,622],[320506,121871,672],[319480,121094,672],[318453,120319,692],[317423,119547,682],[341543,140975,782],[341607,140898,772],[341797,141184,782],[341862,141109,782],[343910,143003,752],[343975,142927,732],[344225,143110,712],[346260,145069,772],[344158,143185,752],[346327,144995,792],[346486,145258,792],[346557,145188,792],[342294,137591,562],[352832,149007,742],[358175,152698,662],[358133,152620,672],[358088,152545,672],[355678,152200,732],[358040,152471,682],[357989,152399,682],[357935,152330,672],[357878,152263,672],[357818,152198,672],[356028,151843,712],[357303,151693,662],[353645,148105,652],[354393,150940,752],[342314,137566,562],[342348,137514,562],[342332,137541,562],[342362,137485,562],[342399,137365,562],[342393,137396,562],[342375,137456,562],[342385,137426,562],[342403,137271,562],[342404,137302,562],[342403,137334,562],[342367,137118,562],[342388,137177,562],[342400,137239,562],[342395,137208,562],[342378,137147,562],[342338,137062,562],[342353,137089,562],[342320,137036,562],[342301,137011,562],[334795,132945,692],[335928,132015,592],[335993,132048,582],[335961,132031,582],[335538,132010,592],[335715,131974,592],[335894,132002,592],[335824,131984,592],[335859,131992,592],[335788,131978,592],[335752,131975,592],[335679,131976,592],[335607,131988,592],[335643,131981,592],[335572,131998,592],[335412,132081,602],[335473,132041,592],[335505,132024,592],[335442,132060,602],[335384,132104,592],[354743,150583,742],[356800,151199,652],[345740,92702,932],[343514,93125,802],[345687,92414,922],[343436,92795,742],[345640,92126,912],[343368,92463,682],[345601,91836,842],[343309,92129,632],[345569,91545,762],[345545,91254,712],[343259,91794,572],[343219,91457,552],[412228,30439,1252],[412047,30512,1232],[411212,29149,1182],[412402,30353,1282],[412571,30255,1282],[412732,30146,1312],[412885,30025,1342],[413028,29894,1352],[413163,29753,1382],[413287,29602,1402],[412347,27795,1562],[413400,29444,1422],[413501,29277,1452],[413590,29104,1492],[413667,28926,1522],[413731,28742,1552],[413782,28554,1552],[413820,28362,1582],[413843,28169,1602],[413853,27975,1612],[413850,27780,1622],[413832,27586,1632],[411271,30676,1172],[409779,31130,1102],[409363,29697,1092],[212250,125415,522],[216008,123105,532],[215919,122972,522],[208914,127547,542],[225516,96009,362],[207303,107998,812],[213557,99049,552],[194689,116743,1672],[194459,116620,1672],[194237,116482,1682],[255079,71701,462],[258704,74009,412],[254948,76213,392],[240277,81120,462],[256013,69861,482],[254478,70789,502],[245773,77637,472],[235157,84327,472],[226693,90152,452],[222647,92917,462],[226655,90093,462],[222400,93091,472],[218644,95645,492],[214423,98303,542],[209722,101664,642],[205079,104871,842],[209643,101561,642],[201657,107197,1032],[200203,115686,1522],[198606,116602,1542],[200264,115178,1502],[198740,116640,1532],[200167,115804,1532],[193635,115984,1702],[197932,108709,1222],[198210,116701,1552],[199715,108516,1162],[199601,108584,1162],[199483,108645,1162],[199361,108697,1172],[199236,108742,1172],[199108,108778,1182],[198847,108824,1192],[198978,108805,1182],[198581,108835,1212],[198714,108834,1212],[198449,108827,1212],[198317,108810,1222],[198187,108785,1222],[198058,108751,1222],[197810,108658,1222],[197690,108600,1212],[197575,108533,1212],[197465,108459,1202],[197360,108378,1202],[197028,108138,1192],[190242,111895,1192],[190220,111681,1192],[190255,112109,1192],[190258,112324,1192],[190251,112539,1192],[190235,112753,1192],[190209,112966,1192],[190173,113178,1192],[193060,116484,1752],[190080,113259,1192],[193824,116163,1702],[194025,116330,1702],[197732,116911,1552],[195171,116942,1672],[194927,116851,1672],[195934,117114,1642],[195421,117016,1662],[195676,117074,1652],[196194,117137,1632],[196715,117131,1612],[196454,117143,1612],[197231,117055,1582],[196974,117102,1592],[197484,116991,1572],[197975,116814,1552],[198429,116827,1552],[198522,116952,1552],[198336,117042,1552],[198242,116788,1552],[198459,117079,1552],[198357,117098,1552],[198469,116672,1542],[198628,116978,1552],[203798,112699,1222],[200352,115606,1522],[200461,115548,1522],[198459,117079,302],[198357,117098,302],[198628,116978,302],[365971,30040,512],[396563,22359,732],[406950,21506,1102],[409647,20421,1492],[411031,22219,1772],[411728,21558,1772],[412195,21926,1812],[411237,21223,1722],[410725,20920,1652],[410194,20653,1572],[406152,19831,1072],[409085,20226,1422],[408511,20070,1352],[407929,19951,1282],[407340,19872,1192],[406747,19832,1122],[351265,33468,902],[342527,36201,1392],[341927,36449,1402],[342081,37423,1502],[375782,28324,462],[374035,28756,482],[375902,28810,462],[394079,24825,652],[374155,29241,452],[278898,62413,382],[301937,49982,472],[302789,51567,402],[312350,45452,632],[322532,41520,1142],[320098,43188,992],[320259,43662,1002],[323181,43199,1142],[321992,42546,1112],[265178,70324,402],[279740,64003,332],[285454,60342,362],[287073,59467,362],[286835,59027,372],[285216,59903,372],[322153,43020,1082],[247005,102678,452],[247054,102644,452],[246886,102505,442],[326955,54973,262],[327912,54682,242],[327101,55451,282],[328057,55160,262],[299595,98925,622],[298891,99901,522],[282957,87976,562],[283687,87015,672],[282938,87999,562],[298874,99929,522],[282619,88154,562],[282649,88151,562],[298818,100245,532],[282589,88155,562],[298825,100277,532],[282559,88153,562],[298834,100308,532],[282529,88150,562],[298846,100339,532],[282499,88145,572],[298859,100369,542],[282470,88138,572],[298874,100397,542],[282441,88129,572],[298892,100425,532],[282412,88118,572],[298911,100452,532],[282385,88105,572],[298932,100477,542],[282359,88090,572],[298955,100500,542],[298979,100522,542],[282333,88074,572],[282679,88146,562],[298814,100212,532],[282709,88140,562],[298812,100180,532],[282738,88131,562],[298812,100147,532],[282766,88121,562],[282794,88108,562],[298814,100114,522],[282821,88094,562],[298818,100082,522],[282847,88079,562],[298825,100050,532],[282871,88061,562],[298834,100018,532],[282895,88042,562],[298845,99988,532],[282917,88021,562],[298858,99958,522],[395891,40226,612],[395949,40449,602],[379566,43291,332],[396360,38553,622],[397535,37371,642],[405142,35236,812],[410361,36326,1032],[364770,47557,362],[410949,37519,1052],[406904,35593,872],[421073,31517,1722],[421120,33600,1812],[421232,33562,1822],[421347,33531,1822],[421463,33508,1822],[421319,31495,1742],[421581,33494,1862],[421648,31492,1772],[421700,33488,1872],[421908,31511,1802],[421818,33490,1872],[422165,31548,1812],[421936,33500,1892],[422419,31603,1842],[422053,33519,1902],[422545,31637,1852],[422169,33545,1922],[422877,31752,1882],[422283,33580,1942],[423352,31983,1912],[422501,33672,1952],[422393,33622,1952],[423502,32075,1922],[423039,31821,1892],[423197,31898,1902],[422713,31690,1862],[422293,31573,1822],[422037,31527,1802],[421778,31499,1782],[421566,31490,1762],[421483,31490,1752],[421401,31491,1742],[421237,31500,1742],[421155,31508,1722],[348983,52182,362],[348144,53446,442],[220984,140590,492],[220973,140621,492],[212913,135136,492],[216578,137773,552],[256179,166943,682],[249523,162070,682],[220983,140295,492],[220972,140264,492],[246405,159812,642],[243156,157445,632],[239842,155080,612],[232736,149658,572],[229373,147250,552],[220656,141135,632],[209424,128500,542],[210550,133409,482],[211646,134210,482],[209330,128369,542],[209859,132903,482],[206270,130279,552],[209806,132976,482],[210497,133481,482],[252854,164461,672],[212865,135200,492],[211599,134274,492],[217093,137638,512],[216891,137779,542],[216776,137918,562],[216728,137883,572],[216915,137753,542],[216941,137729,532],[216969,137706,532],[216998,137686,532],[217028,137668,532],[217060,137652,512],[220818,140051,502],[217127,137627,502],[217474,137650,502],[217161,137618,502],[217196,137611,502],[217231,137607,502],[217267,137606,502],[217303,137607,502],[217338,137611,502],[217407,137626,502],[217373,137617,502],[217441,137637,502],[217506,137666,502],[217537,137684,502],[217566,137704,502],[235877,151953,602],[220843,140073,502],[220867,140096,502],[220889,140121,502],[220909,140147,502],[220928,140175,492],[220945,140203,492],[220960,140233,492],[220992,140327,492],[220999,140360,492],[221003,140393,492],[259396,169320,722],[221005,140426,492],[221005,140459,492],[221003,140492,492],[220999,140525,492],[220992,140558,492],[220960,140652,492],[220945,140682,492],[220929,140710,492],[220910,140738,502],[229344,147290,552],[232724,149674,572],[252842,164477,672],[262542,171646,732],[265991,174194,752],[266506,174628,752],[266473,174598,752],[266567,174694,752],[266538,174660,752],[266594,174730,752],[266618,174767,752],[266640,174806,752],[266660,174847,752],[266676,174889,752],[266690,174931,752],[266701,174975,752],[266709,175019,752],[260858,183141,922],[260913,183097,922],[264493,187881,1022],[260801,183182,922],[260740,183218,922],[260678,183251,922],[260613,183279,932],[260371,179736,832],[259460,182988,892],[257961,182977,832],[256522,186946,982],[260199,183348,922],[260269,183348,922],[260129,183343,922],[258929,183685,892],[259990,183318,922],[260059,183333,922],[259922,183298,922],[259856,183274,902],[259792,183245,902],[259730,183212,892],[259670,183175,892],[259613,183134,892],[259558,183089,892],[259507,183040,892],[261334,180452,962],[260547,183302,932],[249385,196614,1112],[250198,197652,1112],[249165,196912,1112],[257426,197444,1102],[255043,200668,1172],[254823,200966,1172],[265000,182896,982],[265037,182926,992],[267041,184434,1112],[264965,182864,982],[264932,182829,982],[264902,182792,972],[264874,182753,972],[264849,182712,972],[264827,182670,972],[264808,182626,972],[264792,182581,972],[264779,182536,962],[264769,182489,962],[264762,182442,962],[264759,182394,952],[264758,182346,952],[264761,182299,952],[264768,182251,952],[264898,181947,952],[266580,175527,762],[267309,178734,882],[264777,182205,942],[264790,182158,942],[264806,182113,942],[264824,182070,952],[264846,182027,942],[264871,181986,942],[266714,175063,762],[267339,178697,882],[267372,178661,892],[267407,178629,892],[267444,178598,892],[267483,178570,892],[267524,178545,892],[267566,178523,892],[266606,175490,762],[266683,175329,762],[266668,175371,762],[266696,175286,762],[266705,175242,762],[267892,178455,892],[267844,178455,892],[267796,178458,892],[267940,178458,892],[267988,178464,892],[268035,178474,892],[268081,178487,892],[268126,178503,892],[268170,178522,892],[268254,178569,892],[268213,178544,892],[268293,178597,892],[270253,180087,832],[271547,178335,762],[271710,178182,732],[271580,178359,772],[272535,179066,772],[272666,178889,762],[274839,180771,742],[277156,182212,712],[277025,182388,712],[283431,186868,742],[295247,195643,742],[278872,183756,792],[279003,183579,732],[281071,185383,742],[283306,187036,742],[278064,182884,762],[287812,190371,802],[285362,188558,752],[285487,188389,752],[284328,187532,752],[290300,191913,752],[290157,192106,762],[292085,193231,752],[291942,193424,762],[295126,195805,832],[295958,196427,832],[296079,196265,732],[296660,196952,892],[299623,198624,732],[299367,198969,732],[301147,199759,732],[304746,202976,962],[300890,200104,832],[305257,203357,1002],[306981,202087,942],[305449,203549,1002],[316409,166357,942],[254067,190271,1012],[260340,183344,922],[260410,183335,922],[260479,183321,922],[262091,191131,1042],[267749,178465,892],[266716,175153,762],[266716,175108,752],[266712,175198,762],[267702,178475,892],[267656,178488,892],[266650,175412,762],[266629,175452,762],[267610,178504,892],[259762,194284,1122],[251800,193342,1032],[299507,64918,332],[223334,99266,352],[223042,98877,372],[224503,97913,362],[224778,98330,352],[366155,65749,512],[359264,61139,492],[365845,66151,512],[367650,67356,522],[252428,98951,452],[252378,98985,452],[252482,98659,452],[255596,96481,432],[263460,86380,392],[257498,95150,442],[270215,86535,542],[267332,88559,482],[270460,86380,512],[270715,86241,522],[270978,86117,522],[271248,86011,522],[271805,85850,522],[271524,85922,532],[272090,85796,512],[272378,85759,502],[272668,85741,502],[272958,85741,502],[273248,85759,502],[273536,85796,512],[219752,120445,532],[151306,157800,452],[151226,157827,452],[150041,154264,452],[195848,135129,562],[200118,128661,532],[206474,125293,602],[171790,147208,452],[167587,149220,452],[169022,144673,452],[151147,157859,452],[151098,157882,452],[193853,131871,442],[198805,129361,522],[151050,157908,452],[151003,157936,452],[192521,132574,452],[180781,142770,452],[175639,141261,452],[180548,138726,452],[184873,140849,582],[181886,138045,452],[186763,135532,452],[150958,157965,452],[150914,157997,452],[154931,155724,452],[154872,155777,452],[152626,153089,452],[163996,147235,452],[154637,156095,452],[151365,153663,452],[151557,157754,452],[143624,157171,452],[144974,156568,452],[145217,160382,452],[150830,158066,452],[144993,160478,452],[163703,151281,452],[162677,147908,452],[150871,158031,452],[170322,143972,452],[174348,141937,452],[183469,141484,452],[188053,134856,452],[192335,137111,582],[151389,157779,452],[151472,157763,452],[151642,157750,452],[151727,157752,452],[151812,157760,452],[151896,157774,452],[154574,156241,452],[151978,157793,452],[154551,156317,452],[152060,157818,452],[154532,156394,452],[152139,157849,452],[154519,156472,452],[152216,157885,452],[154511,156551,452],[152290,157927,452],[154509,156631,452],[152362,157973,452],[154511,156710,452],[152430,158024,452],[154520,156789,452],[152494,158080,452],[154533,156867,452],[152554,158140,452],[154551,156945,452],[152610,158204,452],[154575,157020,452],[152661,158272,452],[154604,157095,452],[152708,158343,452],[154638,157166,452],[154676,157236,452],[156440,151121,452],[155059,155630,452],[154603,156167,452],[161766,152236,452],[157729,150482,452],[154675,156025,452],[154718,155958,452],[154765,155894,452],[154816,155834,452],[154993,155675,452],[167633,149309,452],[183909,142337,452],[185313,141702,452],[184091,142477,452],[185396,141862,452],[259207,94954,462],[259756,94587,492],[316441,195369,712],[319146,198121,862],[318791,198466,912],[318585,198668,922],[315921,195876,772],[309955,60558,342],[310884,60199,342],[310137,61024,352],[311063,60666,352],[423570,26101,1872],[424807,26973,1892],[329938,122108,542],[329634,122505,532],[326579,120163,532],[326883,119766,582],[359046,159364,782],[322026,195323,842],[356367,156500,622],[318866,193009,672],[363678,149155,632],[366223,152404,832],[363152,149652,652],[365999,152622,842],[366540,152098,802],[329586,54172,242],[330542,53880,242],[330688,54359,262],[329731,54650,262],[206755,123828,512],[207029,124246,552],[208303,122815,472],[208577,123233,502],[444290,46040,1992],[443536,45499,2002],[449333,53632,1692],[449067,52743,1702],[448743,51874,1742],[448363,51027,1762],[447928,50208,1782],[447440,49418,1792],[446902,48663,1832],[446315,47944,1862],[445682,47266,1892],[445006,46630,1962],[424931,33035,1952],[449540,54536,1672],[449774,56376,1572],[449687,55453,1612],[449800,57304,1542],[449669,59154,1392],[449765,58231,1452],[449513,60068,1412],[449022,61857,1282],[449297,60971,1312],[448690,62723,1252],[447858,64381,1212],[448301,63566,1222],[447363,65166,1172],[446817,65916,1162],[435106,80948,882],[434882,81223,872],[434657,81497,872],[434430,81769,872],[434202,82041,862],[433972,82311,862],[433741,82579,902],[433508,82847,912],[325532,83333,522],[326449,82121,502],[343424,30584,1152],[344465,31412,1092],[344179,31591,1102],[339575,31588,1312],[338812,30725,1302],[339045,31105,1312],[338893,30920,1302],[339210,31279,1302],[339387,31440,1312],[339773,31723,1302],[339980,31843,1302],[340196,31949,1292],[340418,32039,1292],[340646,32112,1272],[340878,32170,1272],[341114,32210,1262],[341353,32234,1262],[341592,32241,1252],[341930,32240,1242],[342267,32216,1212],[342601,32168,1192],[342931,32098,1162],[343255,32004,1152],[343573,31888,1122],[343881,31750,1112],[247227,102525,452],[252197,99110,452],[222150,100066,372],[221357,100589,382],[221874,99649,392],[221081,100172,412],[422965,34043,1962],[424313,32620,1942],[422671,33774,1952],[422735,33822,1962],[422796,33873,1962],[422855,33927,1962],[422911,33984,1962],[426973,36090,2142],[429671,39176,2272],[430643,86045,902],[432818,83617,922],[302436,101751,652],[302853,102692,612],[278498,83124,552],[278426,83524,552],[278440,83333,552],[278424,83716,552],[278434,83907,562],[278457,84098,562],[278493,84286,562],[278540,84472,562],[278600,84654,562],[278671,84832,562],[278754,85005,562],[278848,85172,562],[278952,85333,562],[279067,85487,562],[279192,85632,562],[279325,85770,562],[279468,85898,572],[279618,86017,572],[279776,86126,572],[303154,102293,622],[350856,138826,632],[337791,129711,502],[329659,123529,472],[329634,123513,472],[329686,123543,472],[329713,123556,472],[329799,123582,472],[329741,123567,472],[329769,123575,472],[330166,123495,472],[329828,123587,472],[329858,123590,472],[329888,123591,472],[329918,123590,472],[329948,123587,472],[330006,123575,472],[329977,123582,472],[330035,123566,472],[330063,123556,472],[330090,123543,472],[330116,123529,472],[330142,123513,472],[330249,123409,482],[330189,123475,472],[330210,123455,472],[330230,123432,482],[337704,129082,492],[338422,128116,552],[337687,129110,492],[337671,129139,492],[337658,129170,492],[337767,129689,502],[337647,129201,492],[337631,129265,492],[337638,129232,492],[337626,129298,492],[337624,129331,492],[337626,129397,492],[337624,129364,492],[337631,129429,502],[337637,129462,502],[337646,129494,502],[337658,129525,502],[337686,129584,502],[337671,129555,502],[337723,129639,502],[337704,129612,502],[337744,129665,502],[351794,138926,652],[352862,137530,692],[353702,138240,702],[351485,139320,642],[359376,149595,712],[358884,149070,692],[359486,149727,712],[359605,149850,712],[359732,149965,712],[359867,150070,712],[360334,150303,712],[360010,150166,712],[360159,150251,712],[360313,150326,712],[355848,140053,702],[354030,138517,702],[355919,139969,702],[354101,138433,722],[351165,138432,642],[353773,138156,722],[352933,137446,692],[352541,137259,682],[343425,129873,632],[343001,129549,632],[344126,130214,632],[343521,129760,632],[353399,119443,822],[340791,127816,612],[341194,128125,612],[340868,127673,652],[330990,122460,532],[356717,146927,632],[279941,86224,572],[302165,102163,622],[362793,149991,652],[362670,150085,662],[362541,150170,662],[362406,150247,662],[363603,154945,872],[362267,150315,662],[362124,150374,662],[361978,150424,662],[361828,150464,662],[361677,150495,672],[361523,150515,672],[361369,150526,682],[361214,150527,682],[361059,150518,682],[359738,150964,702],[360906,150499,692],[360754,150470,692],[360604,150432,692],[360457,150383,712],[294055,68338,422],[291697,69046,442],[294293,68778,412],[292209,69338,432],[292447,69777,402],[428669,88250,802],[418059,103217,922],[411165,103390,762],[429116,87750,842],[432632,90982,962],[403849,116096,892],[406737,107414,842],[406656,113482,912],[409480,110886,922],[407983,106244,792],[412322,108310,922],[415182,105754,922],[410521,103952,762],[401060,118730,892],[398290,121383,862],[409881,104519,772],[409245,105090,792],[408612,105665,772],[407358,106827,812],[364250,148615,632],[429819,86966,882],[289151,75734,432],[290221,75093,442],[290331,75121,442],[290241,75084,442],[290328,75116,442],[290321,75108,442],[290325,75112,442],[290309,75097,442],[290317,75104,442],[290313,75100,442],[290300,75091,442],[290304,75094,442],[290290,75086,442],[290295,75088,442],[290268,75082,442],[290279,75083,442],[290285,75085,442],[290274,75082,442],[290257,75082,442],[290263,75082,442],[290252,75082,442],[290246,75083,442],[290226,75090,442],[290236,75086,442],[290231,75088,442],[253950,93075,402],[254871,92473,432],[255144,92891,442],[254223,93493,412],[306706,61398,322],[307005,61271,322],[311692,59414,352],[311210,59594,332],[310728,59777,332],[310246,59962,332],[309287,60338,332],[309766,60149,332],[308507,60650,332],[308206,60773,332],[307905,60896,332],[307605,61020,332],[307305,61145,322],[305934,61751,302],[304396,62473,292],[305164,62109,292],[303632,62842,302],[302869,63217,282],[302110,63597,312],[308808,60529,332],[206172,130208,552],[200466,133622,622],[196296,135922,612],[196357,135946,612],[196321,135967,612],[196375,135981,612],[394186,25234,682],[394336,25809,662],[393853,25935,682],[393700,25354,1012],[394186,25234,582],[394336,25809,582],[393853,25935,302],[393700,25354,302],[292875,74437,4272],[376887,96647,4082],[380852,92275,2962],[353399,119443,852],[393947,89661,2682],[393914,89211,2632],[398060,92763,2772],[397763,92930,2622],[109839,170332,1462],[84315,182093,4622],[56356,193967,1462],[80933,183588,4622],[79290,184314,4622],[90847,179206,4622],[85658,181499,4622],[92227,178597,4622],[97198,176400,4622],[98554,175801,4622],[105022,172942,4622],[110018,170734,4622],[110124,170687,4622],[103661,173544,4622],[116519,167817,4622],[111466,170084,4622],[117862,167214,4622],[118387,166497,1462],[118568,166898,4622],[122966,164908,4622],[122940,164437,1462],[123121,164838,4622],[124311,164300,4622],[129417,161992,4622],[130773,161379,4622],[136520,158781,4622],[137840,158184,4622],[150645,151912,1462],[143023,155841,4622],[149442,152939,4622],[144370,155232,4622],[150767,152340,4622],[151603,151960,4622],[151411,151564,1462],[155771,149819,4622],[157051,149162,4622],[162012,146614,4622],[170859,141575,1462],[163330,145937,4622],[168347,143360,4622],[169661,142685,4622],[171061,141966,4622],[173670,140621,4622],[202997,125016,1462],[187383,133556,4622],[174966,139954,4622],[179877,137423,4622],[181212,136736,4622],[186088,134223,4622],[199440,127344,4262],[203013,125062,1462],[191843,131258,4622],[193182,130568,3432],[198117,128025,542],[203223,125341,1442],[203289,125360,1442],[203051,125040,1512],[45057,199557,1462],[41760,201133,1462],[41570,200736,1462],[51565,196585,1462],[47449,197938,1462],[45237,199473,1462],[44868,199160,1462],[37528,200891,1462],[37801,201385,1462],[37291,200905,1462],[37577,201848,1462],[37063,200919,1462],[47633,198338,1462],[50215,197187,1462],[56500,194385,1462],[62904,191555,1462],[57874,193778,1462],[64241,190964,1462],[69423,188674,1462],[70776,188076,1462],[77937,184911,1462],[199440,127344,462],[203013,125062,302],[202997,125016,302],[170859,141575,302],[151411,151564,302],[150645,151912,302],[122940,164437,302],[118387,166497,302],[109839,170332,302],[56356,193967,302],[47449,197938,302],[44868,199160,302],[41570,200736,302],[37801,201385,302],[37528,200891,302],[37291,200905,302],[37063,200919,302],[324056,155427,3832],[324427,154656,3582],[325475,153356,3422],[325861,152562,2962],[326068,152454,2962],[322708,157380,4352],[323304,156296,3782],[323191,156461,3822],[322619,157296,4352],[324232,154764,3702],[324344,154599,3582],[324314,154821,3812],[321870,158389,3532],[320633,160196,3812],[323108,156404,3742],[323221,156239,3782],[321989,158216,4222],[321906,158160,4222],[321787,158333,3522],[343001,129549,812],[343521,129760,1122],[343425,129873,1122],[343754,129442,2822],[350233,122953,2682],[344126,130214,652],[350436,122705,2682],[350357,122646,2682],[350141,122886,2682],[347282,126370,2702],[346993,126549,2702],[347205,126302,2722],[347070,126618,2722],[343653,129587,2822],[397364,24448,8652],[394079,24825,682],[398116,23817,7612],[400560,23612,8912],[399599,23429,7692],[401643,23328,6662],[410684,22585,1972],[411031,22219,1902],[406967,21935,1302],[406950,21506,1262],[392956,25106,4452],[391484,25470,4102],[386273,26759,7522],[384791,27125,7912],[373210,29990,6682],[358579,34042,722],[371725,30357,7242],[366354,31686,6762],[364842,32061,6862],[358289,33668,772],[359821,33303,7232],[353109,34868,1332],[351652,35205,1022],[344304,36909,1502],[342060,37870,1582],[342773,37263,1542],[342081,37423,1572],[337158,38508,1922],[336865,38611,1962],[336733,38425,1962],[337058,38087,1892],[336606,38246,1932],[341984,37446,1572],[379834,28352,7602],[378352,28719,7852],[397364,24448,582],[400560,23612,582],[401643,23328,582],[406967,21935,582],[410684,22585,582],[341984,37446,1502],[337058,38087,1812],[336606,38246,1852],[337158,38508,302],[336865,38611,302],[342060,37870,302],[358579,34042,302],[346486,145258,1022],[346327,144995,982],[346557,145188,972],[346260,145069,992],[344158,143185,1022],[343975,142927,982],[344225,143110,922],[343910,143003,982],[341797,141184,862],[341607,140898,822],[341862,141109,832],[341543,140975,832],[252428,98951,492],[252482,98659,472],[252378,98985,492],[252197,99110,492],[247227,102525,502],[246886,102505,472],[247054,102644,492],[247005,102678,492],[278221,135940,4842],[276701,138123,5122],[278139,135883,4842],[276619,138066,5122],[318001,163687,3052],[316456,166290,3052],[316353,166036,3012],[320453,160191,3812],[320135,159965,3812],[320274,159942,3812],[320192,159884,3812],[319993,160846,3532],[319903,160783,3502],[320219,160332,3812],[320309,160395,3542],[318328,163220,3052],[318238,163157,3072],[317911,163623,3012],[316131,166161,3012],[316263,165973,3012],[316409,166357,3052],[279268,131691,3432],[276896,134990,2602],[279186,131634,3232],[276815,134931,2602],[272872,140416,2542],[196359,117543,1772],[196064,117531,1742],[196194,117137,1722],[195771,117500,1852],[195934,117114,1722],[195480,117450,1852],[195676,117074,1722],[195194,117381,1882],[195421,117016,1772],[194912,117293,1852],[195171,116942,1772],[194637,117187,1912],[194927,116851,1852],[194369,117064,1922],[194689,116743,1852],[193621,116593,1922],[193060,116484,2032],[193635,115984,1802],[194237,116482,1882],[194109,116923,1952],[193860,116766,1952],[194025,116330,1842],[193824,116163,1822],[194459,116620,1852],[193226,116664,2032],[193366,116816,2432],[196454,117143,1722],[196715,117131,1722],[196654,117536,1772],[196974,117102,1692],[196948,117510,1772],[197231,117055,1692],[197239,117465,1772],[197484,116991,1682],[197527,117401,1942],[197732,116911,1682],[197810,117318,1942],[197975,116814,1612],[198087,117217,1942],[198336,117042,1622],[198357,117098,1622],[198242,116788,1602],[198210,116701,1602],[193621,116593,302],[193366,116816,302],[193860,116766,302],[194109,116923,302],[194369,117064,302],[194637,117187,302],[194912,117293,302],[195194,117381,302],[195480,117450,302],[195771,117500,302],[196064,117531,302],[196359,117543,302],[196654,117536,302],[196948,117510,302],[197239,117465,302],[197527,117401,302],[197810,117318,302],[198087,117217,302],[303548,184296,3732],[303384,184165,3732],[330564,147826,3302],[330394,147703,2992],[403757,31323,4542],[398913,32727,5392],[396028,33106,1302],[411897,27720,1962],[411755,27133,2082],[411963,27081,2302],[412347,27795,1932],[412163,27032,2302],[411212,29149,1332],[410963,28775,1382],[409363,29697,1812],[405190,30907,5162],[385483,36720,4082],[384109,37139,4082],[387110,35764,1172],[351518,47075,6702],[350119,47501,4952],[359329,44237,5552],[327384,53964,6282],[327057,54480,4972],[326946,54054,6522],[300430,64460,7352],[300277,64541,7262],[300405,64000,7482],[307653,60546,332],[307305,61145,342],[306542,61011,332],[305934,61751,1762],[305508,61485,1762],[299507,64918,6422],[295953,66770,8512],[299399,64531,6632],[294609,67470,7702],[294269,67219,6382],[303453,62463,6912],[302869,63217,6962],[302432,62966,7332],[302110,63597,7212],[301416,63478,7482],[301045,64140,7352],[290167,69875,9532],[288857,70586,7802],[285501,71995,6632],[272842,80283,412],[263460,86380,5572],[263220,86012,6322],[261355,87756,6212],[256738,90774,5452],[228270,109388,4532],[227022,110204,1522],[233370,105523,5972],[209394,121742,3952],[205365,124379,1312],[205339,124120,1462],[205225,123793,1502],[205296,123898,1312],[205140,123842,1522],[221192,114020,522],[205312,124246,1462],[205282,124282,1502],[210623,120937,2842],[215331,117856,5172],[216567,117047,5392],[222415,113219,5062],[250479,94866,5132],[232895,106360,4572],[233611,105891,5582],[234079,105586,5042],[238778,102514,3372],[239999,101716,4512],[244621,98695,4132],[245849,97892,4692],[251710,94061,5462],[255489,91591,4242],[276003,77699,492],[262577,86958,6112],[283548,73531,6542],[283175,73865,7042],[278316,76815,362],[276235,78078,392],[283587,73615,6542],[284422,73030,6942],[285686,72305,6632],[291697,69046,7772],[299977,64688,6632],[304478,61969,1792],[304396,62473,1792],[305164,62109,1782],[308769,60092,8472],[308507,60650,352],[300584,64380,7352],[300737,64300,7482],[300891,64220,7482],[301199,64061,7482],[301353,63982,7392],[310728,59777,7482],[309889,59650,8252],[311014,59219,7652],[309287,60338,7142],[303632,62842,6962],[312143,58801,8192],[311692,59414,7582],[313629,58715,7672],[313277,58394,8322],[314415,57999,8212],[312798,59010,7822],[307005,61271,342],[306706,61398,352],[307605,61020,342],[307905,60896,342],[308206,60773,342],[308808,60529,352],[309766,60149,7872],[310246,59962,7752],[311210,59594,7322],[312176,59236,7582],[312383,59160,7582],[312590,59085,6822],[313005,58936,7582],[313213,58862,7822],[313421,58788,7482],[343910,49392,5832],[326210,54287,7422],[318782,57059,8292],[317337,57516,6562],[324467,55302,6682],[325914,54843,6832],[326343,54707,6742],[327492,54391,4112],[330904,53352,5882],[332323,52920,5952],[337197,51436,5762],[338607,51007,6172],[345323,48962,5942],[371884,40867,4622],[356798,45467,5332],[358217,45035,4862],[359458,44658,5082],[363674,43372,5072],[365077,42944,5072],[370493,41292,6282],[377187,39250,4272],[378610,38816,4362],[394030,33685,5042],[391301,34964,4582],[387237,36185,1222],[395538,33248,1252],[394154,34107,1152],[392697,34545,4972],[396151,33529,1252],[397487,33141,5242],[411963,27081,582],[411897,27720,582],[410963,28775,582],[396028,33106,582],[394030,33685,302],[395538,33248,302],[387110,35764,302],[359329,44237,302],[327384,53964,302],[326946,54054,302],[326210,54287,302],[314415,57999,302],[313277,58394,302],[312143,58801,302],[311014,59219,302],[309889,59650,302],[308769,60092,302],[307653,60546,302],[306542,61011,302],[305508,61485,302],[304478,61969,302],[303453,62463,302],[302432,62966,302],[301416,63478,302],[300405,64000,302],[299399,64531,302],[294269,67219,302],[285501,71995,302],[276003,77699,302],[263220,86012,302],[233370,105523,302],[205296,123898,302],[205225,123793,302],[326343,54707,272],[327057,54480,252],[327492,54391,242],[359458,44658,222],[387237,36185,202],[394154,34107,622],[396151,33529,622],[285503,135734,2002],[345801,92988,962],[345545,91254,952],[345569,91545,952],[345687,92414,952],[343601,93452,952],[343436,92795,972],[343259,91794,962],[343514,93125,962],[343368,92463,972],[343309,92129,972],[343219,91457,962],[345640,92126,952],[345601,91836,952],[345740,92702,952],[421120,33600,2062],[410976,36624,2092],[410949,37519,2242],[422393,33622,2772],[422501,33672,2782],[422230,34029,2772],[421232,33562,2052],[422605,33729,2782],[422305,34065,2782],[422671,33774,2782],[422735,33822,11882],[422449,34150,2782],[422796,33873,11882],[422516,34200,11882],[422855,33927,11882],[422911,33984,11882],[422965,34043,11882],[422639,34312,11882],[422169,33545,2282],[422283,33580,2772],[422378,34105,2782],[422579,34254,11882],[422695,34374,11882],[422053,33519,2142],[421936,33500,2122],[421818,33490,2092],[421700,33488,2082],[421581,33494,2082],[421463,33508,2052],[421347,33531,2052],[410361,36326,1962],[393003,60152,2692],[392796,60099,1862],[393084,60846,2692],[392896,60958,2692],[340868,127673,662],[341194,128125,652],[340791,127816,752],[362409,71034,2532],[362380,70939,2532],[352933,137446,932],[352541,137259,842],[352862,137530,842],[354030,138517,872],[353702,138240,842],[354101,138433,3062],[395891,40226,792],[395949,40449,792],[219752,120445,562],[215919,122972,562],[216008,123105,582],[395875,32578,5362],[395385,32720,992],[395875,32578,582],[395385,32720,302],[289151,75734,452],[289063,75588,442],[290252,75082,452],[290246,75083,452],[290257,75082,452],[290263,75082,452],[290268,75082,452],[290274,75082,452],[290279,75083,452],[290285,75085,452],[290290,75086,452],[290295,75088,452],[290300,75091,452],[290304,75094,452],[290309,75097,452],[290313,75100,452],[290317,75104,452],[290325,75112,452],[290321,75108,452],[290328,75116,452],[290331,75121,452],[290241,75084,452],[290236,75086,452],[409557,102259,4242],[409292,102133,4242],[409354,102068,4242],[409227,102072,4242],[326449,82121,3372],[325532,83333,1492],[325515,83193,2962],[320326,78742,1472],[320188,78913,1472],[326387,82038,3372],[250654,81315,6982],[249072,82856,322],[243330,86254,7102],[218726,103261,1482],[210468,108685,9322],[213929,105898,8392],[253209,80121,7272],[251938,80455,7022],[292383,57648,1112],[279969,64367,342],[288102,59478,472],[295216,56078,452],[294017,56283,362],[301340,52800,552],[300012,53061,562],[302349,52290,1482],[301369,52331,1582],[305410,50826,512],[304384,51303,462],[306041,50155,582],[327778,42095,1482],[323319,43606,1152],[324918,42610,4132],[332366,40194,1482],[332604,39878,1482],[332733,40065,1482],[327833,41607,1482],[332212,39792,1482],[332480,39698,1482],[327627,41692,1482],[326381,42114,1502],[313297,47467,702],[318349,45064,942],[308517,49464,2062],[312248,47460,702],[323181,43199,1172],[307476,49907,602],[307421,49556,2062],[319792,44507,1102],[306440,50361,582],[313690,46863,662],[303364,51791,612],[302789,51567,1532],[276535,66305,432],[277506,65264,452],[295381,55550,452],[289453,58746,472],[262158,74373,1232],[256699,77840,8672],[259721,75576,412],[283665,61879,492],[282286,62626,452],[279740,64003,432],[276236,65983,452],[271725,68603,442],[270328,69414,442],[265921,71975,1002],[253177,80070,7272],[256272,77590,7882],[264641,72718,1042],[262387,74028,1362],[261987,74260,1302],[252980,79757,7362],[258320,76390,8642],[252943,79698,7272],[237103,90981,492],[227216,97644,402],[232240,93746,7662],[221049,101212,6412],[242225,87001,7102],[237866,89947,7272],[236637,90778,872],[231033,94561,7882],[226647,97516,6212],[225485,98283,462],[219784,102047,482],[215127,105110,7172],[209550,108771,8632],[208333,109567,8212],[207562,110595,872],[204051,113059,7092],[203798,112699,6512],[203383,112990,6572],[202163,113846,5912],[200517,115538,1652],[200264,115178,1572],[200461,115548,1622],[200510,115909,1662],[200352,115606,1622],[200203,115686,1622],[200167,115804,1622],[198606,116602,1602],[198740,116640,1602],[198628,116978,1632],[198522,116952,1622],[198469,116672,1612],[198429,116827,1622],[200641,115834,2422],[218726,103261,302],[210468,108685,302],[227216,97644,302],[237103,90981,302],[249072,82856,302],[253209,80121,302],[253177,80070,302],[256699,77840,302],[276535,66305,302],[279969,64367,302],[292383,57648,302],[295216,56078,302],[301340,52800,302],[302349,52290,302],[303364,51791,302],[304384,51303,302],[305410,50826,302],[306440,50361,302],[307476,49907,302],[308517,49464,302],[313297,47467,302],[323319,43606,302],[327778,42095,302],[332366,40194,302],[332733,40065,302],[259721,75576,372],[252943,79698,312],[252980,79757,312],[200510,115909,302],[200641,115834,302],[200517,115538,302],[204051,113059,302],[207562,110595,302],[402437,32695,762],[403162,31964,802],[402297,32215,762],[403301,32444,802],[356881,156000,642],[359586,158840,812],[359397,159023,792],[312514,39997,752],[307052,42634,562],[327452,40504,1482],[332020,39030,1482],[317316,36796,932],[317344,36669,932],[317280,36920,922],[317236,37043,922],[317185,37162,932],[317126,37277,922],[316510,37939,902],[317060,37389,922],[316988,37497,922],[316908,37599,902],[316823,37697,902],[316731,37789,902],[316634,37875,902],[291910,50575,522],[291869,50536,522],[295450,48711,522],[300882,45763,562],[285806,53958,482],[280066,57336,432],[276855,58770,452],[276900,58206,452],[276885,58144,452],[276912,58269,452],[276919,58332,452],[276922,58396,452],[276921,58459,452],[276916,58523,452],[276907,58586,452],[276893,58648,452],[276876,58710,452],[276829,58828,452],[276800,58885,452],[276768,58940,452],[276731,58992,452],[276692,59043,452],[276504,59214,452],[269565,63254,452],[276649,59090,452],[276604,59134,452],[276555,59176,452],[259151,69528,452],[258847,69711,452],[257536,68940,472],[311281,205817,1042],[308337,203259,952],[333384,30892,1522],[333347,32278,1692],[332412,32340,1832],[331860,30939,1732],[331565,31147,1792],[333333,32422,1702],[333120,33112,1792],[333051,33240,1802],[333181,32981,1772],[333232,32845,1752],[333275,32707,1732],[333309,32565,1712],[421829,19506,1692],[358400,153532,652],[358236,152829,662],[358288,152965,662],[358331,153103,652],[358364,153244,652],[358387,153387,652],[358403,153677,652],[358396,153821,652],[358379,153965,652],[358352,154108,652],[358315,154248,662],[358269,154385,662],[358213,154519,662],[358148,154648,662],[358074,154773,662],[357992,154893,672],[357902,155006,662],[393098,34882,582],[394683,34423,632],[394822,34903,632],[393237,35363,592],[348341,48356,232],[349824,47905,252],[349969,48383,272],[348486,48835,242],[230260,108503,382],[228838,109434,372],[229112,109852,402],[230534,108921,402],[213933,97525,532],[213804,97510,532],[213888,97456,532],[213577,97525,532],[213744,97418,532],[213086,97997,532],[213015,97887,532],[212935,98117,532],[212925,98100,532],[212911,98134,532],[374942,40458,252],[375088,40936,252],[375803,40195,242],[375948,40673,252],[380002,21941,612],[398932,17371,902],[404592,15331,1102],[421828,13966,1252],[430725,11517,802],[431619,14278,722],[421452,18085,1562],[419912,12177,1262],[421440,17888,1532],[421445,18053,1552],[421439,18020,1542],[421436,17987,1542],[421436,17954,1542],[421437,17921,1532],[421446,17855,1522],[421454,17823,1522],[421464,17792,1522],[421476,17761,1522],[421271,13747,1262],[421490,17731,1522],[421290,13775,1262],[421506,17702,1522],[421310,13802,1262],[421524,17674,1512],[421333,13827,1262],[421544,17647,1512],[421357,13851,1262],[421565,17622,1512],[421382,13873,1262],[421588,17598,1512],[421409,13893,1262],[421613,17576,1512],[421438,13912,1262],[421639,17556,1512],[421467,13928,1262],[421666,17537,1512],[421498,13943,1262],[421695,17520,1512],[421529,13955,1262],[421724,17505,1512],[421561,13965,1262],[421755,17492,1502],[421594,13973,1262],[421786,17481,1502],[431652,14381,722],[421795,13974,1252],[421762,13979,1252],[421728,13983,1252],[421694,13984,1262],[421661,13982,1262],[421627,13979,1262],[420438,12403,1262],[420401,12351,1262],[420420,12376,1262],[420380,12326,1262],[420357,12304,1262],[420008,12166,1272],[420282,12244,1262],[420333,12282,1262],[420308,12262,1262],[420225,12213,1262],[420254,12228,1262],[420103,12174,1272],[420196,12201,1262],[420166,12190,1272],[420135,12181,1272],[420040,12167,1272],[420072,12170,1272],[419944,12171,1262],[419976,12168,1272],[392042,18841,792],[360992,27051,682],[389862,19381,752],[384952,20541,702],[389822,19251,752],[354082,28711,832],[349983,29878,942],[336523,37578,1772],[336204,37681,1802],[361864,160305,1002],[361436,160726,1002],[451507,24162,319],[451276,24197,364],[451207,23798,115],[450480,23984,240],[445669,22538,203],[446415,22805,235],[446652,22913,417],[446213,22650,111],[448925,23487,364],[449970,23529,52],[453115,24653,89],[448466,23163,220],[451780,24087,172],[450167,23579,168],[452901,24633,163],[451080,23814,0],[430321,23631,8722],[430365,23803,8722],[429996,23895,9072],[429943,23728,8902],[430321,23631,582],[430365,23803,582],[429943,23728,582],[429996,23895,582],[428710,24676,8372],[435777,22464,2202],[428593,24242,8462],[427104,25150,8612],[425008,25732,1932],[428593,24242,582],[336733,38425,1082],[336204,37681,1632],[331565,31147,1082],[332412,32340,1102],[328220,33512,1002],[333051,33240,1112],[332020,39030,622],[331300,30774,1082],[331444,30977,1082],[327975,33156,1002],[329258,35019,972],[328101,33339,1002],[332480,39698,452],[332604,39878,382],[200470,115660,1102],[200548,115783,702],[205033,123903,312],[189816,119916,302],[184492,123415,302],[189294,120784,302],[130253,151529,302],[154810,138806,302],[189620,120352,302],[189750,119973,302],[47154,189841,302],[189519,120588,302],[189542,120552,302],[37358,194109,302],[189563,120514,302],[189597,120435,302],[117795,157892,302],[189610,120394,302],[189582,120475,302],[189493,120622,302],[189465,120654,302],[180927,125410,302],[189434,120685,302],[189402,120713,302],[189367,120739,302],[189332,120763,302],[110457,161471,302],[61038,183597,302],[178390,126782,302],[178358,126719,302],[102613,165129,302],[35137,196624,302],[35370,197035,302],[35133,197048,302],[34109,201094,302],[34902,197061,302],[31427,197258,302],[5140,198748,302],[16726,198091,302],[7604,202664,302],[3818,198823,302],[5816,202770,302],[454,199013,302],[2339,202976,302],[0,199039,302],[1893,203016,302],[2116,202996,302],[27862,197460,302],[18284,202031,302],[29109,197389,302],[30429,201312,302],[31374,201256,302],[428717,18508,582],[428329,18606,582],[423565,19536,582],[431330,17560,582],[437539,20918,582],[436053,17404,582],[433494,16900,582],[433831,16797,582],[435571,16266,582],[433830,16797,582],[432702,17142,582],[428649,18241,582],[428262,18340,582],[319540,199944,1102],[312772,206610,1132],[312422,206253,1112],[319190,199587,1022],[361264,160068,992],[360916,159709,972],[361598,159048,982],[361946,159407,992],[361224,161579,972],[359400,159725,802],[359374,159052,792],[359335,159113,792],[359354,159082,792],[359319,159145,792],[359293,159213,792],[359305,159179,792],[359283,159248,792],[359269,159393,792],[359276,159284,792],[359272,159320,792],[359269,159356,792],[359272,159429,792],[359284,159501,792],[359277,159465,792],[359294,159536,792],[359377,159697,802],[359338,159636,792],[359306,159570,792],[359321,159603,792],[359356,159667,792],[366248,152385,822],[366273,152369,822],[366300,152354,822],[366328,152341,822],[366357,152330,822],[366387,152321,822],[366417,152314,822],[366447,152310,812],[366478,152307,812],[366509,152307,812],[366540,152309,812],[366570,152313,812],[366600,152320,812],[366630,152328,812],[366659,152339,812],[366687,152351,812],[366714,152366,812],[366740,152382,812],[366765,152400,812],[366789,152420,812],[366811,152442,812],[366831,152465,812],[366850,152489,822],[367402,153019,892],[367421,153042,892],[367463,153084,892],[367441,153064,892],[367535,153136,892],[367485,153103,892],[367510,153121,892],[367673,153188,892],[367588,153163,892],[367561,153150,892],[367616,153173,892],[367644,153182,892],[367762,153196,892],[367703,153193,892],[367732,153196,892],[368101,153037,892],[367851,153187,892],[367792,153195,892],[367821,153192,892],[367908,153171,892],[367879,153180,892],[368013,153117,892],[367935,153160,892],[367962,153147,892],[367988,153133,892],[368060,153080,892],[368037,153099,892],[368081,153059,892],[368119,153014,892],[324524,199652,1122],[326002,198234,1092],[362088,162457,982],[362183,162694,982],[362108,162488,972],[362126,162520,972],[362142,162553,972],[362155,162587,982],[362167,162622,982],[362176,162658,982],[362187,162731,982],[362189,162768,982],[362188,162804,982],[362185,162841,982],[362180,162877,982],[362172,162913,982],[362162,162949,982],[362150,162984,972],[362135,163017,972],[362118,163050,972],[362099,163082,982],[362079,163112,982],[362056,163141,972],[362031,163168,972],[322313,201396,1152],[324314,199437,1052],[319480,198502,902],[319457,198478,892],[319432,198456,892],[319350,198400,892],[319406,198435,892],[319378,198417,892],[319193,198347,892],[319320,198385,892],[319257,198362,892],[319289,198372,892],[319225,198353,892],[318872,198407,902],[319160,198343,892],[319093,198342,892],[319126,198341,892],[319027,198350,892],[319060,198345,892],[318963,198366,882],[318994,198357,882],[318931,198378,892],[318901,198392,892],[318843,198425,912],[318817,198445,912],[311356,205881,1062],[425415,27382,1912],[426537,28136,1952],[453028,44443,2022],[427092,28509,1962],[366936,154569,982],[365942,154836,962],[366290,155195,982],[366588,154210,962],[317114,210987,1172],[316786,210574,1182],[316696,210515,1182],[316742,210543,1182],[316829,210607,1182],[316980,210760,1182],[317019,210813,1182],[316870,210642,1182],[317183,211242,1152],[316909,210679,1182],[316945,210719,1182],[317055,210869,1172],[317086,210927,1172],[317138,211049,1162],[317157,211112,1162],[317173,211177,1162],[317190,211308,1152],[423228,19154,1682]],"transform":{"scale":[0.001,0.001,0.001],"translate":[84616.468,447422.999,-0.452]},"extensions":{"Generic":{"url":"https://www.cityjson.org/extensions/download/generic.ext.json","version":"1.0"},"MetadataExtended":{"url":"https://raw.githubusercontent.com/cityjson/metadata-extended/0.5/metadata-extended.ext.json","version":"0.5"}},"+metadata-extended":{"datasetCharacterSet":"UTF-8","datasetTopicCategory":"geoscientificInformation","metadataStandard":"ISO 19115 - Geographic Information - Metadata","metadataStandardVersion":"ISO 19115:2014(E)","metadataCharacterSet":"UTF-8","metadataDateStamp":"2022-08-09","textures":"absent","materials":"absent","cityfeatureMetadata":{"Bridge":{"uniqueFeatureCount":3,"aggregateFeatureCount":3,"presentLoDs":{"1":3}},"LandUse":{"uniqueFeatureCount":81,"aggregateFeatureCount":81,"presentLoDs":{"1":81}},"WaterBody":{"uniqueFeatureCount":3,"aggregateFeatureCount":3,"presentLoDs":{"1":3}},"Building":{"uniqueFeatureCount":160,"aggregateFeatureCount":160,"presentLoDs":{"1":160}},"PlantCover":{"uniqueFeatureCount":126,"aggregateFeatureCount":126,"presentLoDs":{"1":126}},"Road":{"uniqueFeatureCount":143,"aggregateFeatureCount":143,"presentLoDs":{"1":143}},"+GenericCityObject":{"uniqueFeatureCount":54,"aggregateFeatureCount":54,"presentLoDs":{"1":54}}},"presentLoDs":{"1":570},"thematicModels":["Bridge","LandUse","WaterBody","Building","PlantCover","Road","+GenericCityObject"]}} \ No newline at end of file diff --git a/tests/test_metadata.py b/tests/test_metadata.py index 35842c9..f159e3f 100644 --- a/tests/test_metadata.py +++ b/tests/test_metadata.py @@ -9,12 +9,9 @@ class TestMetadata: def test_update_metadata(self, delft): delft.compute_metadata_extended() cm = copy.deepcopy(delft) - # cm.update_metadata_extended(overwrite=True) assert len(cm.j['+metadata-extended']['cityfeatureMetadata']) == len(delft.j['+metadata-extended']['cityfeatureMetadata']) for type in cm.j['+metadata-extended']['cityfeatureMetadata']: assert cm.j['+metadata-extended']['cityfeatureMetadata'][type]['uniqueFeatureCount'] == delft.j['+metadata-extended']['cityfeatureMetadata'][type]['uniqueFeatureCount'] assert cm.j['+metadata-extended']['cityfeatureMetadata'][type]['aggregateFeatureCount'] == delft.j['+metadata-extended']['cityfeatureMetadata'][type]['aggregateFeatureCount'] assert cm.j['+metadata-extended']['cityfeatureMetadata'][type]['presentLoDs']["1"] == delft.j['+metadata-extended']['cityfeatureMetadata'][type]['presentLoDs']["1"] - assert cm.j['+metadata-extended']['presentLoDs'] == delft.j['+metadata-extended']['presentLoDs'] - assert cm.j['+metadata-extended']['geographicalExtent'] == delft.j['+metadata-extended']['geographicalExtent'] \ No newline at end of file From 17d3055ae2f961d893bfe981dfd87a1bdc2aaf2c Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 11:23:06 +0200 Subject: [PATCH 76/90] Misc formatting of code --- tests/test_cityjson.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_cityjson.py b/tests/test_cityjson.py index c77429d..c959ff2 100644 --- a/tests/test_cityjson.py +++ b/tests/test_cityjson.py @@ -168,7 +168,6 @@ def test_de_compression(self, delft): cm = copy.deepcopy(delft) assert cm.decompress() == True cm2 = copy.deepcopy(cm) - cm.compress(3) assert cm.j["transform"]["scale"][0] == 0.001 assert len(delft.j["vertices"]) == len(cm.j["vertices"]) @@ -226,7 +225,7 @@ def test_merge_materials(self, materials_two): cm1, cm2 = materials_two # cm1 contains the CityObject with 'value'. During the merge, the Material Object # from cm1 is appended to the list of Materials in cm2 - assert cm2.merge([cm1, ]) + assert cm2.merge([cm1]) assert len(cm2.j['CityObjects']) == 4 # The value of 'value' in the CityObject from cm1 must be updated to point to the # correct Material Object in the materials list From c212209fd0900416137ccca51e380eb8c7f5cd73 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 11:56:07 +0200 Subject: [PATCH 77/90] Fix some parts of the readme --- README.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index be3d0eb..f78e39f 100644 --- a/README.rst +++ b/README.rst @@ -23,13 +23,13 @@ To install the latest release: pip install cjio -.. note:: The commands ``export``, ``reproject``, and ``validate`` require extra packages +.. note:: The commands ``export``, ``triangulate``, ``reproject``, and ``validate`` require extra packages that are not install by default. You can install these packages by specifying the commands for pip. .. code:: console - pip install 'cjio[export,reproject]' + pip install 'cjio[export,reproject,validate]' To install the development branch, and still develop with it: @@ -62,7 +62,7 @@ Supported CityJSON versions --------------------------- The operators (``cjio --version``) expect that your file is using the latest version `CityJSON schema `_. -If your file uses an earlier version, you can upgrade it with the ``upgrade`` operator. +If your file uses an earlier version, you can upgrade it with the ``upgrade`` operator: ``cjio old.json upgrade save newfile.city.json`` Usage of the CLI @@ -82,7 +82,7 @@ possibilities: crs_reproject Reproject to a new EPSG. crs_translate Translate the coordinates. export Export to another format. - info Output info in simple JSON. + info Output information about the dataset. lod_filter Filter only one LoD for a dataset. materials_remove Remove all materials. merge Merge the current CityJSON with other ones. @@ -100,7 +100,6 @@ possibilities: validate Validate the CityJSON: (1) against its schemas (2)... vertices_clean Remove duplicate vertices + orphan vertices - Or see the command-specific help by calling ``--help`` after a command: .. code:: console From f8bb163abf6c928e7688bffdbfc12225fac6b25b Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 11:56:20 +0200 Subject: [PATCH 78/90] Add a section about stdin and stdout in the readme --- README.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.rst b/README.rst index f78e39f..bcd40f7 100644 --- a/README.rst +++ b/README.rst @@ -142,6 +142,25 @@ Operators like ``info`` and ``validate`` output information in the console and j cjio myfile.city.json merge '/home/elvis/temp/*.city.json' save all_merged.city.json +stdin and stdout +---------------- + +Since v0.8 cjio allows to read/write from stdin/stdout. + +For reading, it accepts at this moment only `https://www.cityjson.org/specs/#text-sequences-and-streaming-with-cityjsonfeature `_. +Instead of putting the file name, ``stdin`` must be used. + +For writing, both CityJSON files and `https://www.cityjson.org/specs/#text-sequences-and-streaming-with-cityjsonfeature `_ can be piped to stdout. +Instead of putting the file name, ``stdout`` must be used. +Also, the different operators of cjio output messages/information, and those will get in the stdout stream, to avoid this add the flat ``--suppress_msg`` when reading the file, as shown below. + +.. code:: console + + cat myjsonlfile.txt | cjio --suppress_msg stdin remove_materials save stdout + cjio --suppress_msg myfile.city.json remove_materials save stdout + cat myfile.city.json | cjio stdin crs_reproject 7415 export jsonl mystream.txt + + Generating Binary glTF ---------------------- From 53caa612d58dbe194bb5f6fe99a9c1de0509dd74 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 12:02:52 +0200 Subject: [PATCH 79/90] Fix errors in the readme commands to use std/in/out --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index bcd40f7..b35bd01 100644 --- a/README.rst +++ b/README.rst @@ -156,9 +156,9 @@ Also, the different operators of cjio output messages/information, and those wil .. code:: console - cat myjsonlfile.txt | cjio --suppress_msg stdin remove_materials save stdout - cjio --suppress_msg myfile.city.json remove_materials save stdout - cat myfile.city.json | cjio stdin crs_reproject 7415 export jsonl mystream.txt + cat myjsonlfile.txt | cjio --suppress_msg stdin remove_materials save stdout + cjio --suppress_msg myfile.city.json remove_materials export jsonl stdout | less + cat myfile.city.json | cjio --suppress_msg stdin crs_reproject 7415 export jsonl mystream.txt Generating Binary glTF From f343dd11187cbd7d53cac988308d03be40342140 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 12:54:48 +0200 Subject: [PATCH 80/90] Fix copyrights and year --- LICENSE | 2 +- docs/source/conf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 4c1dbf4..fafaeaf 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 3D geoinformation group at TU Delft (https://3d.bk.tudelft.nl) +Copyright (c) 2022 3D geoinformation group at TU Delft (https://3d.bk.tudelft.nl) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/source/conf.py b/docs/source/conf.py index 8f53240..b193c7d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -18,7 +18,7 @@ # -- Project information ----------------------------------------------------- project = 'cjio' -copyright = '2021, Hugo Ledoux' +copyright = '2022, 3D geoinformation group at TU Delft' author = 'Hugo Ledoux, Balázs Dukai' # The full version, including alpha/beta/rc tags From 9366b34b93e67ffd8b0b32a465d3624078568979 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 9 Aug 2022 12:54:58 +0200 Subject: [PATCH 81/90] Fix links in the readme --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index b35bd01..f86e9bd 100644 --- a/README.rst +++ b/README.rst @@ -145,12 +145,12 @@ Operators like ``info`` and ``validate`` output information in the console and j stdin and stdout ---------------- -Since v0.8 cjio allows to read/write from stdin/stdout. +Starting from v0.8, cjio allows to read/write from stdin/stdout (standard input/output streams). -For reading, it accepts at this moment only `https://www.cityjson.org/specs/#text-sequences-and-streaming-with-cityjsonfeature `_. +For reading, it accepts at this moment only `CityJSONL (text sequences with CityJSONFeatures) `_. Instead of putting the file name, ``stdin`` must be used. -For writing, both CityJSON files and `https://www.cityjson.org/specs/#text-sequences-and-streaming-with-cityjsonfeature `_ can be piped to stdout. +For writing, both CityJSON files and `CityJSONL files `_ can be piped to stdout. Instead of putting the file name, ``stdout`` must be used. Also, the different operators of cjio output messages/information, and those will get in the stdout stream, to avoid this add the flat ``--suppress_msg`` when reading the file, as shown below. From a390b3a8d96ed5aeef17226b686f151469f532dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Fri, 26 Aug 2022 16:27:51 +0200 Subject: [PATCH 82/90] Refactor warnings and CityJSON version checking --- cjio/cityjson.py | 39 +++++++++++++++++++--- cjio/cjio.py | 65 +++++++++++++++++++------------------ cjio/errors.py | 25 +++++++++++++- tests/data/dummy/dummy.json | 16 +++++++++ tests/test_appearances.py | 2 +- 5 files changed, 109 insertions(+), 38 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 639f1c5..0b5299a 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -10,9 +10,15 @@ import shutil import copy import random +import warnings from io import StringIO + +import click from click import progressbar from datetime import datetime + +from cjio import errors + MODULE_NUMPY_AVAILABLE = True MODULE_PYPROJ_AVAILABLE = True MODULE_TRIANGLE_AVAILABLE = True @@ -44,7 +50,7 @@ from cjio import subset, geom_help, convert, models -from cjio.errors import InvalidOperation +from cjio.errors import CJInvalidOperation from cjio.metadata import generate_metadata @@ -388,6 +394,31 @@ def add_to_j(self): def get_version(self): return self.j["version"] + def check_version(self): + if not isinstance(self.get_version(), str): + str1 = "CityJSON version should be a string 'X.Y' (eg '1.0')" + raise errors.CJInvalidVersion(str1) + pattern = re.compile("^(\d\.)(\d)$") # -- correct pattern for version + pattern2 = re.compile("^(\d\.)(\d\.)(\d)$") # -- wrong pattern with X.Y.Z + if pattern.fullmatch(self.get_version()) == None: + if pattern2.fullmatch(self.get_version()) != None: + str1 = "CityJSON version should be only X.Y (eg '1.0') and not X.Y.Z (eg '1.0.1')" + raise errors.CJInvalidVersion(str1) + else: + str1 = "CityJSON version is wrongly formatted" + raise errors.CJInvalidVersion(str1) + if (self.get_version() not in CITYJSON_VERSIONS_SUPPORTED): + allv = "" + for v in CITYJSON_VERSIONS_SUPPORTED: + allv = allv + v + "/" + str1 = "CityJSON version %s not supported (only versions: %s), not every operators will work.\nPerhaps it's time to upgrade cjio? 'pip install cjio -U'" % ( + self.get_version(), allv) + raise errors.CJInvalidVersion(str1) + elif (self.get_version() != CITYJSON_VERSIONS_SUPPORTED[-1]): + str1 = "v%s is not the latest version, and not everything will work.\n" % self.get_version() + str1 += "Upgrade the file with 'upgrade' command: 'cjio input.json upgrade save out.json'" + errors.CJWarning(str1).warn() + def get_epsg(self): if "metadata" not in self.j: @@ -835,7 +866,7 @@ def update_textures_location(self, new_loc, relative=True): f = os.path.basename(t["image"]) t["image"] = os.path.join(apath, f) else: - raise InvalidOperation("Cannot update textures in a city model without textures") + raise CJInvalidOperation("Cannot update textures in a city model without textures") def copy_textures(self, new_loc, json_path): @@ -871,7 +902,7 @@ def copy_textures(self, new_loc, json_path): finally: self.path = curr_path else: - raise InvalidOperation("Cannot copy textures from a city model without textures") + raise CJInvalidOperation("Cannot copy textures from a city model without textures") def validate_textures(self): @@ -1552,7 +1583,7 @@ def export2jsonl(self): #-- TODO: remove and deal with geometry-templates here #-- they need to be deferenced if "geometry-templates" in cm2.j: - print_cmd_warning("PANIC! geometry-templates cannot be processed yet") + errors.CJWarning("PANIC! geometry-templates cannot be processed yet").warn() json_str = json.dumps(cm2.j, separators=(',',':')) out.write(json_str + '\n') for theid2 in cm2.j["CityObjects"]: diff --git a/cjio/cjio.py b/cjio/cjio.py index 9abcee2..94e9a45 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -1,15 +1,14 @@ import sys import os.path +import warnings from os import linesep import click import json import copy import glob -import re import cjio -from cjio import cityjson, utils - +from cjio import cityjson, utils, errors #-- https://stackoverflow.com/questions/47437472/in-python-click-how-do-i-see-help-for-subcommands-whose-parents-have-required @@ -79,28 +78,12 @@ def process_pipeline(processors, input, ignore_duplicate_keys, suppress_msg): else: print_cmd_status("Parsing %s" % (input)) cm = cityjson.reader(file=f, ignore_duplicate_keys=ignore_duplicate_keys) - if not isinstance(cm.get_version(), str): - str1 = "CityJSON version should be a string 'X.Y' (eg '1.0')" - raise click.ClickException(str1) - pattern = re.compile("^(\d\.)(\d)$") #-- correct pattern for version - pattern2 = re.compile("^(\d\.)(\d\.)(\d)$") #-- wrong pattern with X.Y.Z - if pattern.fullmatch(cm.get_version()) == None: - if pattern2.fullmatch(cm.get_version()) != None: - str1 = "CityJSON version should be only X.Y (eg '1.0') and not X.Y.Z (eg '1.0.1')" - raise click.ClickException(str1) - else: - str1 = "CityJSON version is wrongly formatted" - raise click.ClickException(str1) - if (cm.get_version() not in cityjson.CITYJSON_VERSIONS_SUPPORTED): - allv = "" - for v in cityjson.CITYJSON_VERSIONS_SUPPORTED: - allv = allv + v + "/" - str1 = "CityJSON version %s not supported (only versions: %s), not every operators will work.\nPerhaps it's time to upgrade cjio? 'pip install cjio -U'" % (cm.get_version(), allv) - raise click.ClickException(str1) - elif (cm.get_version() != cityjson.CITYJSON_VERSIONS_SUPPORTED[-1]): - str1 = "v%s is not the latest version, and not everything will work.\n" % cm.get_version() - str1 += "Upgrade the file with 'upgrade' command: 'cjio input.json upgrade save out.json'" - print_cmd_alert(str1) + try: + with warnings.catch_warnings(record=True) as w: + cm.check_version() + print_cmd_alert(w) + except errors.CJInvalidVersion as e: + raise click.ClickException(e.msg) except ValueError as e: raise click.ClickException('%s: "%s".' % (e, input)) except IOError as e: @@ -220,7 +203,9 @@ def exporter(cm, sloppy): #---------- JSONL ---------- elif format.lower() == 'jsonl': if stdoutoutput: - buf = cm.export2jsonl() + with warnings.catch_warnings(record=True) as w: + buf = cm.export2jsonl() + print_cmd_warning(w) buf.seek(0) for l in buf.readlines(): sys.stdout.write(l) @@ -228,7 +213,9 @@ def exporter(cm, sloppy): print_cmd_status("Exporting CityJSON to JSON Lines (%s)" % (output['path'])) try: with click.open_file(output['path'], mode='w') as fo: - re = cm.export2jsonl() + with warnings.catch_warnings(record=True) as w: + re = cm.export2jsonl() + print_cmd_warning(w) fo.write(re.getvalue()) except IOError as e: raise click.ClickException('Invalid output file: "%s".\n%s' % (output['path'], e)) @@ -738,30 +725,44 @@ def processor(cm): return processor +def _print_cmd(s, **styles): + if isinstance(s, str): + click.secho(s, **styles) + elif isinstance(s, list): + for w in s: + if isinstance(w, warnings.WarningMessage): + click.secho(w.message, **styles) + else: + raise TypeError( + "Can only print CLI warning from a string or a list of warning.WarningMessage") + else: + raise TypeError( + "Can only print CLI warning from a string or a list of warning.WarningMessage") + @click.pass_context def print_cmd_info(ctx, s): if ctx.obj["suppress_msg"] == False: - click.secho(s) + _print_cmd(s) @click.pass_context def print_cmd_status(ctx, s): if ctx.obj["suppress_msg"] == False: - click.secho(s, bg='cyan', fg='black') + _print_cmd(s, bg='cyan', fg='black') @click.pass_context def print_cmd_substatus(ctx, s): if ctx.obj["suppress_msg"] == False: - click.secho(s, fg='cyan') + _print_cmd(s, fg='cyan') @click.pass_context def print_cmd_warning(ctx, s): if ctx.obj["suppress_msg"] == False: - click.secho(s, reverse=True, fg='yellow') + _print_cmd(s, reverse=True, fg='yellow') @click.pass_context def print_cmd_alert(ctx, s): - click.secho(s, reverse=True, fg='red') + _print_cmd(s, reverse=True, fg='red') # Needed for the executable created by PyInstaller diff --git a/cjio/errors.py b/cjio/errors.py index 29ac63c..5f622ad 100644 --- a/cjio/errors.py +++ b/cjio/errors.py @@ -1,7 +1,30 @@ -class InvalidOperation(Exception): +import warnings + + +class CJInvalidOperation(Exception): def __init__(self, msg): self.msg = msg def __str__(self): return "InvalidOperation: %s" % self.msg + + +class CJInvalidVersion(Exception): + def __init__(self, msg): + self.msg = msg + + def __str__(self): + return "InvalidVersion: %s" % self.msg + + +class CJWarning(Warning): + def __init__(self, msg): + super().__init__() + self.msg = msg + + def __str__(self): + return self.msg + + def warn(self): + warnings.warn(self) diff --git a/tests/data/dummy/dummy.json b/tests/data/dummy/dummy.json index 9135e8d..af3fd51 100644 --- a/tests/data/dummy/dummy.json +++ b/tests/data/dummy/dummy.json @@ -374,6 +374,22 @@ } } ] + }, + "1243": { + "type": "SolitaryVegetationObject", + "geometry": [ + { + "type": "GeometryInstance", + "template": 0, + "boundaries": [0], + "transformationMatrix": [ + 2.0, 0.0, 0.0, 0.0, + 0.0, 2.0, 0.0, 0.0, + 0.0, 0.0, 2.0, 0.0, + 0.0, 0.0, 0.0, 1.0 + ] + } + ] } }, "vertices": diff --git a/tests/test_appearances.py b/tests/test_appearances.py index 1fec914..b8c8220 100644 --- a/tests/test_appearances.py +++ b/tests/test_appearances.py @@ -51,7 +51,7 @@ def test_update_textures_url(rotterdam_subset): assert all(p == npath for p in dirs) def test_update_textures_none(dummy_noappearance): - with pytest.raises(errors.InvalidOperation): + with pytest.raises(errors.CJInvalidOperation): dummy_noappearance.update_textures_location('somepath', relative=True) def test_remove_textures(rotterdam_subset): From 2f1489797f1228d1b10456fc3a99141f937ea3e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Mon, 29 Aug 2022 09:43:54 +0200 Subject: [PATCH 83/90] Switch to pyproj TransformerGroup Using TransformerGroup instead of Transformer, because we cannot retrieve the transformer defintion from it. See https://github.com/pyproj4/pyproj/issues/753#issuecomment-737249093 Closes #142 --- cjio/cityjson.py | 15 +++++++++------ cjio/cjio.py | 6 ++++-- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/cjio/cityjson.py b/cjio/cityjson.py index 0b5299a..349c300 100644 --- a/cjio/cityjson.py +++ b/cjio/cityjson.py @@ -10,10 +10,8 @@ import shutil import copy import random -import warnings from io import StringIO -import click from click import progressbar from datetime import datetime @@ -28,7 +26,7 @@ import numpy as np try: - import pyproj + from pyproj.transformer import TransformerGroup except ImportError as e: MODULE_PYPROJ_AVAILABLE = False try: @@ -1688,11 +1686,16 @@ def reproject(self, epsg): raise ModuleNotFoundError("Modul 'pyproj' is not available, please install it from https://pypi.org/project/pyproj/") imp_digits = math.ceil(abs(math.log(self.j["transform"]["scale"][0], 10))) self.decompress() - p1 = pyproj.Proj(init='epsg:%d' % (self.get_epsg())) - p2 = pyproj.Proj(init='epsg:%d' % (epsg)) + # Using TransformerGroup instead of Transformer, because we cannot retrieve the + # transformer defintion from it. + # See https://github.com/pyproj4/pyproj/issues/753#issuecomment-737249093 + tg = TransformerGroup(f"EPSG:{self.get_epsg():d}", + f"EPSG:{epsg:d}", + always_xy=True) + # TODO: log.info(f"Transformer: {tg.transformers[0].description}") with progressbar(self.j['vertices']) as vertices: for v in vertices: - x, y, z = pyproj.transform(p1, p2, v[0], v[1], v[2]) + x, y, z = tg.transformers[0].transform(v[0], v[1], v[2]) v[0] = x v[1] = y v[2] = z diff --git a/cjio/cjio.py b/cjio/cjio.py index 94e9a45..0b28e3a 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -473,8 +473,10 @@ def processor(cm): print_cmd_status('Reproject to EPSG:%d' % epsg) if (cm.get_epsg() == None): print_cmd_warning("WARNING: CityJSON has no EPSG defined, can't be reprojected.") - else: - cm.reproject(epsg) + else: + with warnings.catch_warnings(record=True) as w: + cm.reproject(epsg) + print_cmd_warning(w) return cm return processor From 56bcbb5dc98dd213fe6bd06cbe541c6333d4417b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Mon, 29 Aug 2022 11:39:14 +0200 Subject: [PATCH 84/90] Add reproject method to API Geometry --- cjio/models.py | 105 ++++++++++++++++++++++++++++++++++++----- tests/test_geometry.py | 8 ++++ 2 files changed, 102 insertions(+), 11 deletions(-) diff --git a/cjio/models.py b/cjio/models.py index f08c16c..1a9f2e6 100644 --- a/cjio/models.py +++ b/cjio/models.py @@ -7,6 +7,11 @@ from typing import Iterable, Mapping import warnings +from cjio.cityjson import MODULE_PYPROJ_AVAILABLE + +if MODULE_PYPROJ_AVAILABLE: + from cjio.cityjson import TransformerGroup + # TODO BD: this iteration is not really nice, maybe implement it in a way that don't need to use .items() and .values() # for co_id, co in cm.cityobjects.items(): # for geom in co.geometry: @@ -146,7 +151,7 @@ def _index_surface_boundaries(values): return surface_idx @staticmethod - def _vertex_mapper(ring, vertices, transform): + def _vertex_mapper(ring, transform, vertices=None): """Maps vertex coordinates to vertex indices and/or apply transformation on them :param ring: A ring defined as an array of vertex indices pointing to ``vertices`` :param vertices: The array of vertices from the CityJSON file @@ -177,6 +182,21 @@ def _transform_vertex(vertex, transform): z = deepcopy((vertex[2] * transform["scale"][2]) + transform["translate"][2]) return x,y,z + @staticmethod + def _reproject_vertex(vertex, transformer): + """Apply the tranformation from a Transform object to a vertex + :param vertex: A vertex with 3 coordinates, typically (x,y,z) + :type vertex: sequence + :param transformer: A pyproj Transformer instance + :return: A vertex with reprojected coordinates + :type return: sequence + """ + return transformer.transform(*vertex) + + @staticmethod + def _reproject_ring(ring, transformer): + return [Geometry._reproject_vertex(vtx, transformer) for vtx in ring] + @staticmethod def _vertex_indexer(geom, vtx_lookup, vtx_idx): @@ -205,20 +225,21 @@ def transform(self, transform: dict): if not self_cp.boundaries: return self_cp if self_cp.type.lower() == 'multipoint': - self_cp.boundaries = self_cp._vertex_mapper(self_cp.boundaries, vertices, transform) + self_cp.boundaries = self_cp._vertex_mapper(self_cp.boundaries, transform, + vertices) elif self_cp.type.lower() == 'multilinestring': - self_cp.boundaries = [self_cp._vertex_mapper(ring, vertices, transform) for ring in self_cp.boundaries] + self_cp.boundaries = [self_cp._vertex_mapper(ring, transform, vertices) for ring in self_cp.boundaries] elif self_cp.type.lower() == 'multisurface' or self_cp.type.lower() == 'compositesurface': s = list() for surface in self_cp.boundaries: - s.append([self_cp._vertex_mapper(ring, vertices, transform) for ring in surface]) + s.append([self_cp._vertex_mapper(ring, transform, vertices) for ring in surface]) self_cp.boundaries = s elif self_cp.type.lower() == 'solid': sh = list() for shell in self_cp.boundaries: s = list() for surface in shell: - s.append([self_cp._vertex_mapper(ring, vertices, transform) for ring in surface]) + s.append([self_cp._vertex_mapper(ring, transform, vertices) for ring in surface]) sh.append(s) self_cp.boundaries = sh elif self_cp.type.lower() == 'multisolid' or self_cp.type.lower() == 'compositesolid': @@ -228,7 +249,7 @@ def transform(self, transform: dict): for shell in solid: s = list() for surface in shell: - s.append([self_cp._vertex_mapper(ring, vertices, transform) for ring in surface]) + s.append([self_cp._vertex_mapper(ring, transform, vertices) for ring in surface]) sh.append(s) solids.append(sh) self_cp.boundaries = solids @@ -248,17 +269,17 @@ def _dereference_boundaries(self, btype, boundaries, vertices, transform=None): if btype.lower() == 'multipoint': if not isinstance(boundaries[0], int): raise TypeError("Boundary definition does not correspond to MultiPoint") - return self._vertex_mapper(boundaries, vertices, transform) + return self._vertex_mapper(boundaries, transform, vertices) elif btype.lower() == 'multilinestring': if not isinstance(boundaries[0][0], int): raise TypeError("Boundary definition does not correspond to MultiPoint") - return [self._vertex_mapper(b, vertices, transform) for b in boundaries] + return [self._vertex_mapper(b, transform, vertices) for b in boundaries] elif btype.lower() == 'multisurface' or btype.lower() == 'compositesurface': s = list() if not isinstance(boundaries[0][0][0], int): raise TypeError("Boundary definition does not correspond to MultiSurface or CompositeSurface") for surface in boundaries: - s.append([self._vertex_mapper(ring, vertices, transform) for ring in surface]) + s.append([self._vertex_mapper(ring, transform, vertices) for ring in surface]) return s elif btype.lower() == 'solid': sh = list() @@ -267,7 +288,7 @@ def _dereference_boundaries(self, btype, boundaries, vertices, transform=None): for shell in boundaries: s = list() for surface in shell: - s.append([self._vertex_mapper(ring, vertices, transform) for ring in surface]) + s.append([self._vertex_mapper(ring, transform, vertices) for ring in surface]) sh.append(s) return sh elif btype.lower() == 'multisolid' or btype.lower() == 'compositesolid': @@ -279,7 +300,7 @@ def _dereference_boundaries(self, btype, boundaries, vertices, transform=None): for shell in solid: s = list() for surface in shell: - s.append([self._vertex_mapper(ring, vertices, transform) for ring in surface]) + s.append([self._vertex_mapper(ring, transform, vertices) for ring in surface]) sh.append(s) solids.append(sh) return solids @@ -515,3 +536,65 @@ def to_json(self): if self.surfaces: j['semantics'] = {} return j + + def reproject(self, epsg_from, epsg_to=None, crs_to=None): + """Reproject the boundaries to 'epsg'. + + :param epsg_from: Current EPSG code of the citymodel (int) + :param epsg_to: EPSG code to convert to (int) + :param crs_to: pyproj.CRS to convert to + """ + if not MODULE_PYPROJ_AVAILABLE: + raise ModuleNotFoundError("Modul 'pyproj' is not available, please install it from https://pypi.org/project/pyproj/") + if epsg_to is not None: + _to = f"EPSG:{epsg_to:d}" + elif crs_to is not None: + _to = crs_to + else: + raise ValueError("Either epsg_to or crs_to must be provided") + tg = TransformerGroup(f"EPSG:{epsg_from:d}", _to) + transformer = tg.transformers[0] + if not self.boundaries: + return list() + if self.type.lower() == 'multipoint': + if not isinstance(self.boundaries[0], tuple): + raise TypeError("Boundary definition does not correspond to MultiPoint") + return self._reproject_ring(self.boundaries, transformer) + elif self.type.lower() == 'multilinestring': + if not isinstance(self.boundaries[0][0], tuple): + raise TypeError("Boundary definition does not correspond to MultiPoint") + return [self._reproject_ring(b, transformer) for b in self.boundaries] + elif self.type.lower() == 'multisurface' or self.type.lower() == 'compositesurface': + s = list() + if not isinstance(self.boundaries[0][0][0], tuple): + raise TypeError("Boundary definition does not correspond to MultiSurface or CompositeSurface") + for surface in self.boundaries: + s.append([self._reproject_ring(ring, transformer) for ring in surface]) + return s + elif self.type.lower() == 'solid': + sh = list() + if not isinstance(self.boundaries[0][0][0][0], tuple): + raise TypeError("Boundary definition does not correspond to Solid") + for shell in self.boundaries: + s = list() + for surface in shell: + s.append([self._reproject_ring(ring, transformer) for ring in surface]) + sh.append(s) + return sh + elif self.type.lower() == 'multisolid' or self.type.lower() == 'compositesolid': + solids = list() + if not isinstance(self.boundaries[0][0][0][0][0], tuple): + raise TypeError("Boundary definition does not correspond to MultiSolid or CompositeSolid") + for solid in self.boundaries: + sh = list() + for shell in solid: + s = list() + for surface in shell: + s.append([self._reproject_ring(ring, transformer) for ring in surface]) + sh.append(s) + solids.append(sh) + return solids + elif self.type.lower() == 'geometryinstance': + warnings.warn("Unsupported geometry type GeometryInstance", UserWarning) + else: + raise TypeError("Unknown geometry type: {}".format(self.type)) diff --git a/tests/test_geometry.py b/tests/test_geometry.py index e53a5a6..937eacd 100644 --- a/tests/test_geometry.py +++ b/tests/test_geometry.py @@ -4,6 +4,7 @@ import pytest from math import isclose +from pyproj import CRS from cjio import models @@ -489,6 +490,13 @@ def test_get_surface_parent(self, surfaces): else: pytest.xfail("surface does not have parent") + def test_reproject(self, data_geometry, data_vtx_idx): + type, boundary, result, vertex_list = data_vtx_idx + vertices = data_geometry[1] + geom = models.Geometry(type=type, boundaries=boundary, vertices=vertices) + bdry = geom.reproject(7415, crs_to=CRS("OGC:CRS84")) + print(bdry) + class TestGeometryIntegration: """Integration tests for operations on Geometry objects From 8f77049abb7740f29a7f8b9b808f31025585fec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Mon, 29 Aug 2022 15:15:12 +0200 Subject: [PATCH 85/90] Suppress alert too Otherwise we cannot pipe to stdout, because the alert message is also printed, eg. on upgrading a file. --- cjio/cjio.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cjio/cjio.py b/cjio/cjio.py index 0b28e3a..7147303 100755 --- a/cjio/cjio.py +++ b/cjio/cjio.py @@ -764,7 +764,8 @@ def print_cmd_warning(ctx, s): @click.pass_context def print_cmd_alert(ctx, s): - _print_cmd(s, reverse=True, fg='red') + if ctx.obj["suppress_msg"] == False: + _print_cmd(s, reverse=True, fg='red') # Needed for the executable created by PyInstaller From ce2c0aaf22d29a02cc4ec91fe12a76ecc43d184d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Tue, 30 Aug 2022 09:28:49 +0200 Subject: [PATCH 86/90] Require pyproj 3.0.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 43a931f..7da7548 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ 'cjvalpy' ], 'reproject': [ - 'pyproj' + 'pyproj>=3.0.0' ] }, entry_points=''' From 2af97632087d5c9aeb3dfa47abb39f6cb9015adf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Tue, 30 Aug 2022 09:38:02 +0200 Subject: [PATCH 87/90] Remove dummy/dummy-triangulated.json from tests File does not exist anymore --- tests/conftest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 28f1492..a6c38e8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -166,7 +166,6 @@ def materials_two(data_dir): params=[ ('material', 'mt-1-triangulated.json'), ('material', 'mt-2-triangulated.json'), - ('dummy', 'dummy-triangulated.json') ]) def triangulated(data_dir, request): p = os.path.join(data_dir, *request.param) From cbde59ee7ae844612dd0acd1ae83bb573902d6c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Tue, 30 Aug 2022 09:38:59 +0200 Subject: [PATCH 88/90] Update CHANGELOG.md --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 974dcd1..5f4e675 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ # Changelog -## [unreleased] +## [0.7.5] – 2022-08-80 ### Added - Subset more than one CityObject type (#9) +- `models.Geometry.reproject()` for reprojecting dereferenced geometry boundaries ### Fixed - Subset with BBOX does not modify the input model anymore (#10) @@ -16,6 +17,7 @@ ### Changed - Export format is an argument, not an option (#35), e.g. `cjio ... export obj out.obj` - NumPy is a hard requirement +- Require pyproj >= 3.0.0 (#142) ## [0.7.4] - 2022-06-20 ### Fixed From 09b0b2ea238f8018c03bc3265bd03d9f2a1ae01e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Tue, 30 Aug 2022 09:39:52 +0200 Subject: [PATCH 89/90] =?UTF-8?q?Bump=20version:=200.7.4=20=E2=86=92=200.7?= =?UTF-8?q?.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cjio/__init__.py | 2 +- docs/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cjio/__init__.py b/cjio/__init__.py index 6fb2e71..ed4e820 100644 --- a/cjio/__init__.py +++ b/cjio/__init__.py @@ -1 +1 @@ -__version__ = '0.7.4' \ No newline at end of file +__version__ = '0.7.5' \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index b193c7d..335486a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Hugo Ledoux, Balázs Dukai' # The full version, including alpha/beta/rc tags -release = '0.7.4' +release = '0.7.5' # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 3e8e4c8..cd34e23 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.4 +current_version = 0.7.5 commit = True tag = True diff --git a/setup.py b/setup.py index 7da7548..34aeafa 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='cjio', - version='0.7.4', + version='0.7.5', description='CLI to process and manipulate CityJSON files', long_description=long_description, long_description_content_type="text/x-rst", From 9ced88127b5e6039df529d1a16883a69d4f5effd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Dukai?= Date: Tue, 30 Aug 2022 10:13:33 +0200 Subject: [PATCH 90/90] Fix glb converter --- CHANGELOG.md | 6 +++++- cjio/convert.py | 25 ++++++++++++++++++------- 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f4e675..6de104c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ ### Added - Subset more than one CityObject type (#9) - `models.Geometry.reproject()` for reprojecting dereferenced geometry boundaries +- Read from `stdin` and save to `stdout` +- `--suppress_msg` to suppress all messages. Required when saving to `stdout` ### Fixed - Subset with BBOX does not modify the input model anymore (#10) @@ -13,15 +15,17 @@ - `texture` and `material` are correctly removed from the geometries of the CityObjects with `textures/materials_remove` - `vertex-texture` is removed from the CityJSON with `textures_remove` - Docker image build (#77, #132) +- Other minor fixes ### Changed - Export format is an argument, not an option (#35), e.g. `cjio ... export obj out.obj` - NumPy is a hard requirement - Require pyproj >= 3.0.0 (#142) +- Refactor warnings and alert printing (#143) ## [0.7.4] - 2022-06-20 ### Fixed -- crash wiht new version of Click (>=8.1) (#140) +- crash with new version of Click (>=8.1) (#140) ### Added - templates for bug reporting diff --git a/cjio/convert.py b/cjio/convert.py index 1c9579b..c800fa2 100644 --- a/cjio/convert.py +++ b/cjio/convert.py @@ -174,17 +174,25 @@ def to_glb(cm): triList = [] for shell in geom['boundaries']: for face in shell: - tri = geom_help.triangulate_face(face, vertexlist) - for t in tri: - triList.append(list(t)) + tri, success = geom_help.triangulate_face(face, vertexlist) + if success: + for t in tri: + triList.append(list(t)) + else: + # TODO: logging + print(f"Failed to triangulate face in CityObject {theid}") trigeom = (flatten(triList)) elif (geom['type'] == 'MultiSurface') or (geom['type'] == 'CompositeSurface'): triList = [] for face in geom['boundaries']: - tri = geom_help.triangulate_face(face, vertexlist) - for t in tri: - triList.append(t) + tri, success = geom_help.triangulate_face(face, vertexlist) + if success: + for t in tri: + triList.append(t) + else: + # TODO: logging + print(f"Failed to triangulate face in CityObject {theid}") trigeom = (flatten(triList)) flatgeom = trigeom forimax.append(flatgeom) @@ -199,7 +207,10 @@ def to_glb(cm): # Need to swap the axis, because gltf uses a right-handed coordinate # system. glTF defines +Y as up, +Z as forward, and -X as right; # the front of a glTF asset faces +Z. - vtx_np[i] = np.array((vertexlist[v][1], vertexlist[v][2], vertexlist[v][0])) + try: + vtx_np[i] = np.array((vertexlist[v][1], vertexlist[v][2], vertexlist[v][0])) + except IndexError as e: + print(i, v) vtx_idx_np[i] = i bin_vtx = vtx_np.astype(np.float32).tostring() # convert geometry indices to binary